Booster for WooCommerce - Version 4.6.1

Version Description

  • 15/11/2019 =
  • Fix - CART & CHECKOUT - Checkout Custom Fields - Preserve checkbox field value when updating order status.
  • Fix - CART & CHECKOUT - EU VAT Number - Check if EU VAT number is valid during 'woocommerce_after_checkout_validation' hook instead of trying to get the result from session.
  • Fix - CART & CHECKOUT - EU VAT Number - Fix possible white space in wcj_validate_eu_vat_number() response from ajax by using wp_send_json().
  • Fix - EMAILS & MISC. - Custom Emails - Fix bug when sending email to multiple orders at the same time using the bulk editor and when there were multiple recipients including %customer%.
  • Fix - Core - WCJ_Modules - Also check if Meta-box option is an array.
  • Fix - SHIPPING & ORDERS - Replace empty translation text with only empty text due to POT file update.
  • Fix - PRODUCTS - Add to Cart - Replace empty translation text with only empty text due to POT file update.
  • Dev - CART & CHECKOUT - Checkout Fees - Change "Cart Min" and "Max" options to "Cart Minimum" and "Maximum Quantity".
  • Dev - CART & CHECKOUT - Checkout Fees - Create "Cart Minimum" and "Maximum Total" options as Plus features.
  • Dev - CART & CHECKOUT - EU VAT Number - Add new option to show VAT field for EU countries only.
  • Dev - PRODUCTS - Product Addons - Add option to show addon fields by variation.
  • Dev - PRODUCTS - Product Visibility by Country - Add new option to overwrite country by User Billing Country on Checkout Page.
  • Dev - PRODUCTS - Product Visibility by Country - Prevents calling update_order_review_expired() if "Overwrite by Billing Country" option is enabled.
  • Tested up to: 5.3.
  • WC tested up to: 3.8.
Download this release

Release Info

Developer algoritmika
Plugin Icon 128x128 Booster for WooCommerce
Version 4.6.1
Comparing to
See all releases

Code changes from version 4.6.0 to 4.6.1

includes/class-wcj-checkout-custom-fields.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
- * @version 4.5.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -190,7 +190,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
190
  /**
191
  * update_custom_checkout_fields_order_meta.
192
  *
193
- * @version 4.5.1
194
  */
195
  function update_custom_checkout_fields_order_meta( $order_id ) {
196
  for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
@@ -203,8 +203,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
203
  $option_name = $the_section . '_' . 'wcj_checkout_field_' . $i;
204
  $option_name_label = $the_section . '_' . 'wcj_checkout_field_label_' . $i;
205
  $option_name_type = $the_section . '_' . 'wcj_checkout_field_type_' . $i;
206
- $post_value = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : '';
207
- $post_value = empty( $post_value ) && isset( $_POST[ '_'. $option_name ] ) ? $_POST[ '_'. $option_name ] : $post_value;
208
  if ( ! empty( $post_value ) || 'checkbox' === $the_type ) {
209
  update_post_meta( $order_id, '_' . $option_name_type, $the_type );
210
  update_post_meta( $order_id, '_' . $option_name_label, get_option( 'wcj_checkout_custom_field_label_' . $i ) );
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
+ * @version 4.6.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
190
  /**
191
  * update_custom_checkout_fields_order_meta.
192
  *
193
+ * @version 4.6.1
194
  */
195
  function update_custom_checkout_fields_order_meta( $order_id ) {
196
  for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
203
  $option_name = $the_section . '_' . 'wcj_checkout_field_' . $i;
204
  $option_name_label = $the_section . '_' . 'wcj_checkout_field_label_' . $i;
205
  $option_name_type = $the_section . '_' . 'wcj_checkout_field_type_' . $i;
206
+ $post_value = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : ( isset( $_POST[ '_' . $option_name ] ) ? $_POST[ '_' . $option_name ] : get_post_meta( $order_id, '_' . $option_name, true ) );
 
207
  if ( ! empty( $post_value ) || 'checkbox' === $the_type ) {
208
  update_post_meta( $order_id, '_' . $option_name_type, $the_type );
209
  update_post_meta( $order_id, '_' . $option_name_label, get_option( 'wcj_checkout_custom_field_label_' . $i ) );
includes/class-wcj-checkout-fees.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Fees
4
  *
5
- * @version 4.5.0
6
  * @since 3.7.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -58,7 +58,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
58
  /**
59
  * Validate fee without considering overlapping.
60
  *
61
- * @version 4.5.0
62
  * @since 4.5.0
63
  *
64
  * @param $fee_id
@@ -79,7 +79,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
79
  return false;
80
  }
81
 
82
- // Check cart amount
83
  if (
84
  $cart->get_cart_contents_count() < $fees[ $fee_id ]['cart_min'] ||
85
  ( $fees[ $fee_id ]['cart_max'] > 0 && $cart->get_cart_contents_count() > $fees[ $fee_id ]['cart_max'] )
@@ -87,6 +87,14 @@ class WCJ_Checkout_Fees extends WCJ_Module {
87
  return false;
88
  }
89
 
 
 
 
 
 
 
 
 
90
  // Check checkout fields
91
  if ( ! empty( $this->checkout_fields[ $fee_id ] ) ) {
92
  if ( isset( $post_data ) || isset( $_REQUEST['post_data'] ) ) {
@@ -126,7 +134,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
126
  /**
127
  * Get Fees.
128
  *
129
- * @version 4.5.0
130
  * @since 4.5.0
131
  *
132
  * @param bool $only_enabled
@@ -140,7 +148,9 @@ class WCJ_Checkout_Fees extends WCJ_Module {
140
  $types = $this->get_option( 'wcj_checkout_fees_data_types', array() );
141
  $values = $this->get_option( 'wcj_checkout_fees_data_values', array() );
142
  $cart_min = $this->get_option( 'wcj_checkout_fees_cart_min_amount', array() );
 
143
  $cart_max = $this->get_option( 'wcj_checkout_fees_cart_max_amount', array() );
 
144
  $taxable = $this->get_option( 'wcj_checkout_fees_data_taxable', array() );
145
  $checkout_fields = $this->get_option( 'wcj_checkout_fees_data_values', array() );
146
  $enabled = $this->get_option( 'wcj_checkout_fees_data_enabled', array() );
@@ -159,7 +169,9 @@ class WCJ_Checkout_Fees extends WCJ_Module {
159
  $fees[ $i ] = array(
160
  'enabled' => $enabled,
161
  'cart_min' => isset( $cart_min[ $i ] ) ? $cart_min[ $i ] : 1,
 
162
  'cart_max' => isset( $cart_max[ $i ] ) ? $cart_max[ $i ] : 0,
 
163
  'title' => isset( $titles[ $i ] ) ? $titles[ $i ] : '',
164
  'type' => isset( $types[ $i ] ) ? $types[ $i ] : 'fixed',
165
  'value' => isset( $values[ $i ] ) ? $values[ $i ] : 0,
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Fees
4
  *
5
+ * @version 4.6.1
6
  * @since 3.7.0
7
  * @author Algoritmika Ltd.
8
  */
58
  /**
59
  * Validate fee without considering overlapping.
60
  *
61
+ * @version 4.6.1
62
  * @since 4.5.0
63
  *
64
  * @param $fee_id
79
  return false;
80
  }
81
 
82
+ // Check cart quantity
83
  if (
84
  $cart->get_cart_contents_count() < $fees[ $fee_id ]['cart_min'] ||
85
  ( $fees[ $fee_id ]['cart_max'] > 0 && $cart->get_cart_contents_count() > $fees[ $fee_id ]['cart_max'] )
87
  return false;
88
  }
89
 
90
+ // Check cart total
91
+ if (
92
+ $cart->get_cart_contents_total() < $fees[ $fee_id ]['cart_min_total'] ||
93
+ ( ! empty( $fees[ $fee_id ]['cart_max_total'] ) && $fees[ $fee_id ]['cart_max_total'] > 0 && $cart->get_cart_contents_total() > $fees[ $fee_id ]['cart_max_total'] )
94
+ ) {
95
+ return false;
96
+ }
97
+
98
  // Check checkout fields
99
  if ( ! empty( $this->checkout_fields[ $fee_id ] ) ) {
100
  if ( isset( $post_data ) || isset( $_REQUEST['post_data'] ) ) {
134
  /**
135
  * Get Fees.
136
  *
137
+ * @version 4.6.1
138
  * @since 4.5.0
139
  *
140
  * @param bool $only_enabled
148
  $types = $this->get_option( 'wcj_checkout_fees_data_types', array() );
149
  $values = $this->get_option( 'wcj_checkout_fees_data_values', array() );
150
  $cart_min = $this->get_option( 'wcj_checkout_fees_cart_min_amount', array() );
151
+ $cart_min_total = $this->get_option( 'wcj_checkout_fees_cart_min_total_amount', array() );
152
  $cart_max = $this->get_option( 'wcj_checkout_fees_cart_max_amount', array() );
153
+ $cart_max_total = $this->get_option( 'wcj_checkout_fees_cart_max_total_amount', array() );
154
  $taxable = $this->get_option( 'wcj_checkout_fees_data_taxable', array() );
155
  $checkout_fields = $this->get_option( 'wcj_checkout_fees_data_values', array() );
156
  $enabled = $this->get_option( 'wcj_checkout_fees_data_enabled', array() );
169
  $fees[ $i ] = array(
170
  'enabled' => $enabled,
171
  'cart_min' => isset( $cart_min[ $i ] ) ? $cart_min[ $i ] : 1,
172
+ 'cart_min_total' => isset( $cart_min_total[ $i ] ) ? $cart_min_total[ $i ] : 0,
173
  'cart_max' => isset( $cart_max[ $i ] ) ? $cart_max[ $i ] : 0,
174
+ 'cart_max_total' => isset( $cart_max_total[ $i ] ) ? $cart_max_total[ $i ] : '',
175
  'title' => isset( $titles[ $i ] ) ? $titles[ $i ] : '',
176
  'type' => isset( $types[ $i ] ) ? $types[ $i ] : 'fixed',
177
  'value' => isset( $values[ $i ] ) ? $values[ $i ] : 0,
includes/class-wcj-eu-vat-number.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - EU VAT Number
4
  *
5
- * @version 4.6.0
6
  * @since 2.3.9
7
  * @author Algoritmika Ltd.
8
  */
@@ -364,13 +364,15 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
364
  /**
365
  * enqueue_scripts.
366
  *
367
- * @version 3.4.0
368
  */
369
  function enqueue_scripts() {
370
  if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
371
  wp_enqueue_script( 'wcj-eu-vat-number', wcj_plugin_url() . '/includes/js/wcj-eu-vat-number.js', array(), WCJ()->version, true );
372
  wp_localize_script( 'wcj-eu-vat-number', 'ajax_object', array(
373
  'ajax_url' => admin_url( 'admin-ajax.php' ),
 
 
374
  'add_progress_text' => get_option( 'wcj_eu_vat_number_add_progress_text', 'no' ),
375
  'progress_text_validating' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_validating', __( 'Validating VAT. Please wait...', 'woocommerce-jetpack' ) ) ),
376
  'progress_text_valid' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_valid', __( 'VAT is valid.', 'woocommerce-jetpack' ) ) ),
@@ -383,7 +385,7 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
383
  /**
384
  * wcj_validate_eu_vat_number.
385
  *
386
- * @version 4.6.0
387
  */
388
  function wcj_validate_eu_vat_number( $param ) {
389
  $param = wp_parse_args( $param, array(
@@ -420,8 +422,7 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
420
  $response = '2';
421
  }
422
  if ( $param['echo'] ) {
423
- echo $response;
424
- die();
425
  } else {
426
  return $response;
427
  }
@@ -489,18 +490,15 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
489
  /**
490
  * checkout_validate_vat.
491
  *
492
- * @version 3.4.0
493
  */
494
  function checkout_validate_vat( $_posted ) {
495
  if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
496
  if (
497
  ( 'yes' === get_option( 'wcj_eu_vat_number_field_required', 'no' ) && '' == $_posted['billing_eu_vat_number'] ) ||
498
  (
499
- ( '' != $_posted['billing_eu_vat_number'] ) &&
500
- (
501
- null === wcj_session_get( 'wcj_is_eu_vat_number_valid' ) || false == wcj_session_get( 'wcj_is_eu_vat_number_valid' ) ||
502
- null === wcj_session_get( 'wcj_eu_vat_number_to_check' ) || $_posted['billing_eu_vat_number'] != wcj_session_get( 'wcj_eu_vat_number_to_check' )
503
- )
504
  )
505
  ) {
506
  wc_add_notice(
2
  /**
3
  * Booster for WooCommerce - Module - EU VAT Number
4
  *
5
+ * @version 4.6.1
6
  * @since 2.3.9
7
  * @author Algoritmika Ltd.
8
  */
364
  /**
365
  * enqueue_scripts.
366
  *
367
+ * @version 4.6.1
368
  */
369
  function enqueue_scripts() {
370
  if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
371
  wp_enqueue_script( 'wcj-eu-vat-number', wcj_plugin_url() . '/includes/js/wcj-eu-vat-number.js', array(), WCJ()->version, true );
372
  wp_localize_script( 'wcj-eu-vat-number', 'ajax_object', array(
373
  'ajax_url' => admin_url( 'admin-ajax.php' ),
374
+ 'eu_countries' => wcj_get_european_union_countries(),
375
+ 'show_vat_field_for_eu_only' => get_option( 'wcj_eu_vat_number_show_vat_field_for_eu_only', 'no' ),
376
  'add_progress_text' => get_option( 'wcj_eu_vat_number_add_progress_text', 'no' ),
377
  'progress_text_validating' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_validating', __( 'Validating VAT. Please wait...', 'woocommerce-jetpack' ) ) ),
378
  'progress_text_valid' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_valid', __( 'VAT is valid.', 'woocommerce-jetpack' ) ) ),
385
  /**
386
  * wcj_validate_eu_vat_number.
387
  *
388
+ * @version 4.6.1
389
  */
390
  function wcj_validate_eu_vat_number( $param ) {
391
  $param = wp_parse_args( $param, array(
422
  $response = '2';
423
  }
424
  if ( $param['echo'] ) {
425
+ wp_send_json( array( 'result' => $response ) );
 
426
  } else {
427
  return $response;
428
  }
490
  /**
491
  * checkout_validate_vat.
492
  *
493
+ * @version 4.6.1
494
  */
495
  function checkout_validate_vat( $_posted ) {
496
  if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
497
  if (
498
  ( 'yes' === get_option( 'wcj_eu_vat_number_field_required', 'no' ) && '' == $_posted['billing_eu_vat_number'] ) ||
499
  (
500
+ '' != $_posted['billing_eu_vat_number'] ) &&
501
+ '1' !== $this->wcj_validate_eu_vat_number( array( 'wcj_eu_vat_number_to_check' => $_posted['billing_eu_vat_number'], 'echo' => false )
 
 
 
502
  )
503
  ) {
504
  wc_add_notice(
includes/class-wcj-product-addons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Addons
4
  *
5
- * @version 4.6.0
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  * @todo admin order view (names)
@@ -18,7 +18,7 @@ class WCJ_Product_Addons extends WCJ_Module {
18
  /**
19
  * Constructor.
20
  *
21
- * @version 3.9.0
22
  * @since 2.5.3
23
  * @todo (maybe) add "in progress" ajax message
24
  * @todo (maybe) for variable products - show addons only if variation is selected (e.g. move to addons from `woocommerce_before_add_to_cart_button` to variation description)
@@ -56,7 +56,7 @@ class WCJ_Product_Addons extends WCJ_Module {
56
  add_filter( 'woocommerce_add_cart_item_data', array( $this, 'add_addons_price_to_cart_item_data' ), PHP_INT_MAX, 3 );
57
  add_filter( 'woocommerce_add_cart_item', array( $this, 'add_addons_price_to_cart_item' ), PHP_INT_MAX, 2 );
58
  add_filter( 'woocommerce_get_cart_item_from_session', array( $this, 'get_cart_item_addons_price_from_session' ), PHP_INT_MAX, 3 );
59
- add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'validate_on_add_to_cart' ), PHP_INT_MAX, 2 );
60
  // Prices
61
  add_filter( WCJ_PRODUCT_GET_PRICE_FILTER, array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
62
  add_filter( 'woocommerce_product_variation_get_price', array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
@@ -198,12 +198,23 @@ class WCJ_Product_Addons extends WCJ_Module {
198
  /**
199
  * validate_on_add_to_cart.
200
  *
201
- * @version 2.5.5
202
  * @since 2.5.5
203
  */
204
- function validate_on_add_to_cart( $passed, $product_id ) {
 
 
 
205
  $addons = $this->get_product_addons( $product_id );
206
  foreach ( $addons as $addon ) {
 
 
 
 
 
 
 
 
207
  if ( 'yes' === $addon['is_required'] ) {
208
  if ( ! isset( $_POST[ $addon['checkbox_key'] ] ) ) {
209
  wc_add_notice( __( 'Some of the required addons are not selected!', 'woocommerce-jetpack' ), 'error' );
@@ -309,17 +320,19 @@ class WCJ_Product_Addons extends WCJ_Module {
309
  /**
310
  * enqueue_scripts.
311
  *
312
- * @version 4.5.0
313
  * @since 2.5.3
314
  */
315
  function enqueue_scripts() {
316
  if ( is_product() ) {
317
- $the_product = wc_get_product();
318
- $addons = $this->get_product_addons( wcj_get_product_id_or_variation_parent_id( $the_product ) );
 
319
  if ( ! empty( $addons ) ) {
320
  $is_variable_with_single_price = ( $the_product->is_type( 'variable' ) && ( $the_product->get_variation_price( 'min' ) == $the_product->get_variation_price( 'max' ) ) );
321
- wp_enqueue_script( 'wcj-product-addons', wcj_plugin_url() . '/includes/js/wcj-product-addons.js', array(), WCJ()->version, true );
322
  wp_localize_script( 'wcj-product-addons', 'ajax_object', array(
 
323
  'ajax_url' => admin_url( 'admin-ajax.php' ),
324
  'product_id' => get_the_ID(),
325
  'ignore_strikethrough_price' => get_option( 'wcj_product_addons_ajax_ignore_st_price', 'no' ),
@@ -348,7 +361,7 @@ class WCJ_Product_Addons extends WCJ_Module {
348
  /**
349
  * get_product_addons.
350
  *
351
- * @version 3.6.0
352
  * @since 2.5.3
353
  * @todo (maybe) `checkbox_key` is mislabelled, should be `key` (or maybe `value_key`)
354
  */
@@ -368,6 +381,7 @@ class WCJ_Product_Addons extends WCJ_Module {
368
  $addons[] = array(
369
  // 'scope' => 'all_products',
370
  // 'index' => $i,
 
371
  'checkbox_key' => 'wcj_product_all_products_addons_' . $i,
372
  'price_key' => 'wcj_product_all_products_addons_price_' . $i,
373
  'label_key' => 'wcj_product_all_products_addons_label_' . $i,
@@ -397,19 +411,20 @@ class WCJ_Product_Addons extends WCJ_Module {
397
  $addons[] = array(
398
  // 'scope' => 'per_product',
399
  // 'index' => $i,
400
- 'checkbox_key' => 'wcj_product_per_product_addons_' . $i,
401
- 'price_key' => 'wcj_product_per_product_addons_price_' . $i,
402
- 'label_key' => 'wcj_product_per_product_addons_label_' . $i,
403
- 'price_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_price_' . $i, true ),
404
- 'label_value' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_label_' . $i, true ) ),
405
- 'title' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_title_' . $i, true ) ),
406
- 'placeholder' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_placeholder_' . $i, true ) ),
407
- 'class' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_class_' . $i, true ),
408
- 'tooltip' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_tooltip_' . $i, true ) ),
409
- 'type' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_type_' . $i, true ),
410
- 'default' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_default_' . $i, true ),
411
- 'is_required' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_required_' . $i, true ),
412
- 'qty' => $qty,
 
413
  );
414
  }
415
  }
@@ -576,12 +591,20 @@ class WCJ_Product_Addons extends WCJ_Module {
576
  /**
577
  * add_addons_price_to_cart_item_data.
578
  *
579
- * @version 4.6.0
580
  * @since 2.5.3
581
  */
582
  function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
583
  $addons = $this->get_product_addons( $product_id );
584
  foreach ( $addons as $addon ) {
 
 
 
 
 
 
 
 
585
  $price_value = $this->replace_price_template_vars( $addon['price_value'], $variation_id ? $variation_id : $product_id );
586
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
587
  if ( ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) || ( 'text' == $addon['type'] && '' != $_POST[ $addon['checkbox_key'] ] ) ) {
2
  /**
3
  * Booster for WooCommerce - Module - Product Addons
4
  *
5
+ * @version 4.6.1
6
  * @since 2.5.3
7
  * @author Algoritmika Ltd.
8
  * @todo admin order view (names)
18
  /**
19
  * Constructor.
20
  *
21
+ * @version 4.6.1
22
  * @since 2.5.3
23
  * @todo (maybe) add "in progress" ajax message
24
  * @todo (maybe) for variable products - show addons only if variation is selected (e.g. move to addons from `woocommerce_before_add_to_cart_button` to variation description)
56
  add_filter( 'woocommerce_add_cart_item_data', array( $this, 'add_addons_price_to_cart_item_data' ), PHP_INT_MAX, 3 );
57
  add_filter( 'woocommerce_add_cart_item', array( $this, 'add_addons_price_to_cart_item' ), PHP_INT_MAX, 2 );
58
  add_filter( 'woocommerce_get_cart_item_from_session', array( $this, 'get_cart_item_addons_price_from_session' ), PHP_INT_MAX, 3 );
59
+ add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'validate_on_add_to_cart' ), PHP_INT_MAX, 4 );
60
  // Prices
61
  add_filter( WCJ_PRODUCT_GET_PRICE_FILTER, array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
62
  add_filter( 'woocommerce_product_variation_get_price', array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
198
  /**
199
  * validate_on_add_to_cart.
200
  *
201
+ * @version 4.6.1
202
  * @since 2.5.5
203
  */
204
+ function validate_on_add_to_cart( $passed, $product_id, $quantity ) {
205
+ if ( 4 === count( $args = func_get_args() ) ) {
206
+ $variation_id = $args[3];
207
+ }
208
  $addons = $this->get_product_addons( $product_id );
209
  foreach ( $addons as $addon ) {
210
+ // Prevents validation on addons if not in "enable by variation" option
211
+ if (
212
+ ! empty( $variation_id ) &&
213
+ ! empty( $addon['enable_by_variation'] ) &&
214
+ ! in_array( $variation_id, $addon['enable_by_variation'] )
215
+ ) {
216
+ continue;
217
+ }
218
  if ( 'yes' === $addon['is_required'] ) {
219
  if ( ! isset( $_POST[ $addon['checkbox_key'] ] ) ) {
220
  wc_add_notice( __( 'Some of the required addons are not selected!', 'woocommerce-jetpack' ), 'error' );
320
  /**
321
  * enqueue_scripts.
322
  *
323
+ * @version 4.6.1
324
  * @since 2.5.3
325
  */
326
  function enqueue_scripts() {
327
  if ( is_product() ) {
328
+ $the_product = wc_get_product();
329
+ $addons = $this->get_product_addons( wcj_get_product_id_or_variation_parent_id( $the_product ) );
330
+ $enable_by_variation = wp_list_pluck( $addons, 'enable_by_variation' );
331
  if ( ! empty( $addons ) ) {
332
  $is_variable_with_single_price = ( $the_product->is_type( 'variable' ) && ( $the_product->get_variation_price( 'min' ) == $the_product->get_variation_price( 'max' ) ) );
333
+ wp_enqueue_script( 'wcj-product-addons', wcj_plugin_url() . '/includes/js/wcj-product-addons.js', array(), WCJ()->version, true );
334
  wp_localize_script( 'wcj-product-addons', 'ajax_object', array(
335
+ 'enable_by_variation' => $enable_by_variation,
336
  'ajax_url' => admin_url( 'admin-ajax.php' ),
337
  'product_id' => get_the_ID(),
338
  'ignore_strikethrough_price' => get_option( 'wcj_product_addons_ajax_ignore_st_price', 'no' ),
361
  /**
362
  * get_product_addons.
363
  *
364
+ * @version 4.6.1
365
  * @since 2.5.3
366
  * @todo (maybe) `checkbox_key` is mislabelled, should be `key` (or maybe `value_key`)
367
  */
381
  $addons[] = array(
382
  // 'scope' => 'all_products',
383
  // 'index' => $i,
384
+ 'enable_by_variation' => '',
385
  'checkbox_key' => 'wcj_product_all_products_addons_' . $i,
386
  'price_key' => 'wcj_product_all_products_addons_price_' . $i,
387
  'label_key' => 'wcj_product_all_products_addons_label_' . $i,
411
  $addons[] = array(
412
  // 'scope' => 'per_product',
413
  // 'index' => $i,
414
+ 'enable_by_variation' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_enable_by_variation_' . $i, true ),
415
+ 'checkbox_key' => 'wcj_product_per_product_addons_' . $i,
416
+ 'price_key' => 'wcj_product_per_product_addons_price_' . $i,
417
+ 'label_key' => 'wcj_product_per_product_addons_label_' . $i,
418
+ 'price_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_price_' . $i, true ),
419
+ 'label_value' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_label_' . $i, true ) ),
420
+ 'title' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_title_' . $i, true ) ),
421
+ 'placeholder' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_placeholder_' . $i, true ) ),
422
+ 'class' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_class_' . $i, true ),
423
+ 'tooltip' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_tooltip_' . $i, true ) ),
424
+ 'type' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_type_' . $i, true ),
425
+ 'default' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_default_' . $i, true ),
426
+ 'is_required' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_required_' . $i, true ),
427
+ 'qty' => $qty,
428
  );
429
  }
430
  }
591
  /**
592
  * add_addons_price_to_cart_item_data.
593
  *
594
+ * @version 4.6.1
595
  * @since 2.5.3
596
  */
597
  function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
598
  $addons = $this->get_product_addons( $product_id );
599
  foreach ( $addons as $addon ) {
600
+ // Prevents adding addons to cart if not in "enable by variation" option
601
+ if (
602
+ ! empty( $variation_id ) &&
603
+ ! empty( $addon['enable_by_variation'] ) &&
604
+ ! in_array( $variation_id, $addon['enable_by_variation'] )
605
+ ) {
606
+ continue;
607
+ }
608
  $price_value = $this->replace_price_template_vars( $addon['price_value'], $variation_id ? $variation_id : $product_id );
609
  if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
610
  if ( ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) || ( 'text' == $addon['type'] && '' != $_POST[ $addon['checkbox_key'] ] ) ) {
includes/class-wcj-product-by-country.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Visibility by Country
4
  *
5
- * @version 3.6.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,7 +16,7 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 3.6.0
20
  * @since 2.5.0
21
  */
22
  function __construct() {
@@ -31,6 +31,28 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
31
 
32
  parent::__construct();
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
 
36
  /**
@@ -47,7 +69,7 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
47
  /**
48
  * get_check_option.
49
  *
50
- * @version 3.6.0
51
  * @since 3.6.0
52
  */
53
  function get_check_option() {
@@ -55,13 +77,20 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
55
  if ( '' == wcj_session_get( 'wcj_selected_country' ) ) {
56
  $country = wcj_get_country_by_ip();
57
  wcj_session_set( 'wcj_selected_country', $country );
58
- return $country;
59
  } else {
60
- return wcj_session_get( 'wcj_selected_country' );
61
  }
62
  } else {
63
- return wcj_get_country_by_ip();
64
  }
 
 
 
 
 
 
 
65
  }
66
 
67
  /**
@@ -134,6 +163,14 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
134
  'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
135
  'css' => 'min-width:250px;',
136
  ),
 
 
 
 
 
 
 
 
137
  array(
138
  'type' => 'sectionend',
139
  'id' => 'wcj_product_by_country_selection_options',
2
  /**
3
  * Booster for WooCommerce - Module - Product Visibility by Country
4
  *
5
+ * @version 4.6.1
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 4.6.1
20
  * @since 2.5.0
21
  */
22
  function __construct() {
31
 
32
  parent::__construct();
33
 
34
+ if ( $this->is_enabled() ) {
35
+ add_filter( 'woocommerce_checkout_update_order_review_expired', array( $this, 'update_order_review_expired' ) );
36
+ }
37
+
38
+ }
39
+
40
+ /**
41
+ * update_order_review_expired.
42
+ *
43
+ * @version 4.6.1
44
+ * @since 4.6.1
45
+ *
46
+ * @param $update
47
+ *
48
+ * @return bool
49
+ */
50
+ function update_order_review_expired( $update ) {
51
+ if ( 'yes' !== get_option( 'wcj_product_by_country_selection_billing_country_overwrite', 'no' ) ) {
52
+ return $update;
53
+ }
54
+ $update = false;
55
+ return $update;
56
  }
57
 
58
  /**
69
  /**
70
  * get_check_option.
71
  *
72
+ * @version 4.6.1
73
  * @since 3.6.0
74
  */
75
  function get_check_option() {
77
  if ( '' == wcj_session_get( 'wcj_selected_country' ) ) {
78
  $country = wcj_get_country_by_ip();
79
  wcj_session_set( 'wcj_selected_country', $country );
80
+ $check_option = $country;
81
  } else {
82
+ $check_option = wcj_session_get( 'wcj_selected_country' );
83
  }
84
  } else {
85
+ $check_option = wcj_get_country_by_ip();
86
  }
87
+ if ( 'yes' === get_option( 'wcj_product_by_country_selection_billing_country_overwrite', 'no' ) ) {
88
+ $billing_country = ! empty( $_REQUEST['country'] ) ? $_REQUEST['country'] : '';
89
+ if ( ! empty( $billing_country ) ) {
90
+ $check_option = $billing_country;
91
+ }
92
+ }
93
+ return $check_option;
94
  }
95
 
96
  /**
163
  'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
164
  'css' => 'min-width:250px;',
165
  ),
166
+ array(
167
+ 'title' => __( 'Overwrite by Billing Country', 'woocommerce-jetpack' ),
168
+ 'desc_tip' => __( 'Tries to overwrite Country by User Billing Country on Checkout Page.', 'woocommerce-jetpack' ),
169
+ 'desc' => __( 'Enable', 'woocommerce-jetpack' ),
170
+ 'id' => 'wcj_product_by_country_selection_billing_country_overwrite',
171
+ 'default' => 'no',
172
+ 'type' => 'checkbox',
173
+ ),
174
  array(
175
  'type' => 'sectionend',
176
  'id' => 'wcj_product_by_country_selection_options',
includes/classes/class-wcj-module.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
- * @version 4.5.0
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  * @todo [dev] maybe should be `abstract` ?
@@ -349,7 +349,7 @@ class WCJ_Module {
349
  }
350
  $is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
351
  if ( $is_enabled ) {
352
- $option_value = ( isset( $_POST[ $option['name'] ] ) ) ? $_POST[ $option['name'] ] : $option['default'];
353
  $the_post_id = ( isset( $option['product_id'] ) ) ? $option['product_id'] : $post_id;
354
  $the_meta_name = ( isset( $option['meta_name'] ) ) ? $option['meta_name'] : '_' . $option['name'];
355
  if ( isset( $option['convert'] ) && 'from_date_to_timestamp' === $option['convert'] ) {
@@ -389,7 +389,7 @@ class WCJ_Module {
389
  /**
390
  * create_meta_box.
391
  *
392
- * @version 3.3.0
393
  * @todo `placeholder` for textarea
394
  * @todo `class` for all types (now only for select)
395
  * @todo `show_value` for all types (now only for multiple select)
@@ -401,7 +401,7 @@ class WCJ_Module {
401
  $html .= '<table class="widefat striped">';
402
  foreach ( $this->get_meta_box_options() as $option ) {
403
  $is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
404
- if ( $is_enabled ) {
405
  if ( 'title' === $option['type'] ) {
406
  $html .= '<tr>';
407
  $html .= '<th colspan="3" style="' . ( isset( $option['css'] ) ? $option['css'] : 'text-align:left;font-weight:bold;' ) . '">' . $option['title'] . '</th>';
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
+ * @version 4.6.1
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  * @todo [dev] maybe should be `abstract` ?
349
  }
350
  $is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
351
  if ( $is_enabled ) {
352
+ $option_value = ( isset( $_POST[ $option['name'] ] ) ) ? $_POST[ $option['name'] ] : ( isset( $option['default'] ) ? $option['default'] : '' );
353
  $the_post_id = ( isset( $option['product_id'] ) ) ? $option['product_id'] : $post_id;
354
  $the_meta_name = ( isset( $option['meta_name'] ) ) ? $option['meta_name'] : '_' . $option['name'];
355
  if ( isset( $option['convert'] ) && 'from_date_to_timestamp' === $option['convert'] ) {
389
  /**
390
  * create_meta_box.
391
  *
392
+ * @version 4.6.1
393
  * @todo `placeholder` for textarea
394
  * @todo `class` for all types (now only for select)
395
  * @todo `show_value` for all types (now only for multiple select)
401
  $html .= '<table class="widefat striped">';
402
  foreach ( $this->get_meta_box_options() as $option ) {
403
  $is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
404
+ if ( is_array( $option ) && $is_enabled ) {
405
  if ( 'title' === $option['type'] ) {
406
  $html .= '<tr>';
407
  $html .= '<th colspan="3" style="' . ( isset( $option['css'] ) ? $option['css'] : 'text-align:left;font-weight:bold;' ) . '">' . $option['title'] . '</th>';
includes/emails/class-wc-email-wcj-custom.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * An email sent to recipient list when selected triggers are called.
6
  *
7
- * @version 4.6.0
8
  * @since 2.3.9
9
  * @author Algoritmika Ltd.
10
  * @extends WC_Email
@@ -21,12 +21,13 @@ class WC_Email_WCJ_Custom extends WC_Email {
21
  /**
22
  * Constructor
23
  *
24
- * @version 3.2.4
25
  */
26
  function __construct( $id = 1 ) {
27
 
28
  $this->id = 'wcj_custom' . '_' . $id;
29
  $this->customer_email = ( '%customer%' === $this->get_option( 'recipient' ) );
 
30
  $this->title = get_option( 'wcj_emails_custom_emails_admin_title_' . $id, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $id );
31
  $this->description = __( 'Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack' );
32
 
@@ -105,7 +106,7 @@ class WC_Email_WCJ_Custom extends WC_Email {
105
  /**
106
  * trigger.
107
  *
108
- * @version 4.6.0
109
  */
110
  function trigger( $object_id ) {
111
 
@@ -141,8 +142,8 @@ class WC_Email_WCJ_Custom extends WC_Email {
141
  } else {
142
  if ( $this->customer_email ) {
143
  $this->recipient = wcj_get_order_billing_email( $this->object );
144
- } elseif ( false !== strpos( $this->recipient, '%customer%' ) ) {
145
- $this->recipient = str_replace( '%customer%', wcj_get_order_billing_email( $this->object ), $this->recipient );
146
  }
147
 
148
  $this->find['order-date'] = '{order_date}';
4
  *
5
  * An email sent to recipient list when selected triggers are called.
6
  *
7
+ * @version 4.6.1
8
  * @since 2.3.9
9
  * @author Algoritmika Ltd.
10
  * @extends WC_Email
21
  /**
22
  * Constructor
23
  *
24
+ * @version 4.6.1
25
  */
26
  function __construct( $id = 1 ) {
27
 
28
  $this->id = 'wcj_custom' . '_' . $id;
29
  $this->customer_email = ( '%customer%' === $this->get_option( 'recipient' ) );
30
+ $this->original_recipient = $this->get_option( 'recipient' );
31
  $this->title = get_option( 'wcj_emails_custom_emails_admin_title_' . $id, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $id );
32
  $this->description = __( 'Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack' );
33
 
106
  /**
107
  * trigger.
108
  *
109
+ * @version 4.6.1
110
  */
111
  function trigger( $object_id ) {
112
 
142
  } else {
143
  if ( $this->customer_email ) {
144
  $this->recipient = wcj_get_order_billing_email( $this->object );
145
+ } elseif ( false !== strpos( $this->original_recipient, '%customer%' ) ) {
146
+ $this->recipient = str_replace( '%customer%', wcj_get_order_billing_email( $this->object ), $this->original_recipient );
147
  }
148
 
149
  $this->find['order-date'] = '{order_date}';
includes/js/wcj-eu-vat-number.js CHANGED
@@ -1,7 +1,7 @@
1
  /**
2
  * eu-vat-number.
3
  *
4
- * @version 2.7.0
5
  */
6
 
7
  var _ajax_object = ajax_object;
@@ -48,12 +48,12 @@ jQuery( function( $ ) {
48
  url: _ajax_object.ajax_url,
49
  data: data,
50
  success: function(response) {
51
- if ('1'==response) {
52
  $vatParagraph.addClass('woocommerce-validated');
53
  if ('yes'==_ajax_object.add_progress_text) {
54
  $progressText.text(_ajax_object.progress_text_valid);
55
  }
56
- } else if ('0'==response) {
57
  $vatParagraph.addClass('woocommerce-invalid');
58
  if ('yes'==_ajax_object.add_progress_text) {
59
  $progressText.text(_ajax_object.progress_text_not_valid);
@@ -82,4 +82,27 @@ jQuery( function( $ ) {
82
  $('body').trigger('update_checkout');
83
  }
84
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  });
1
  /**
2
  * eu-vat-number.
3
  *
4
+ * @version 4.6.1
5
  */
6
 
7
  var _ajax_object = ajax_object;
48
  url: _ajax_object.ajax_url,
49
  data: data,
50
  success: function(response) {
51
+ if ('1'==response.result) {
52
  $vatParagraph.addClass('woocommerce-validated');
53
  if ('yes'==_ajax_object.add_progress_text) {
54
  $progressText.text(_ajax_object.progress_text_valid);
55
  }
56
+ } else if ('0'==response.result) {
57
  $vatParagraph.addClass('woocommerce-invalid');
58
  if ('yes'==_ajax_object.add_progress_text) {
59
  $progressText.text(_ajax_object.progress_text_not_valid);
82
  $('body').trigger('update_checkout');
83
  }
84
  };
85
+
86
+ // Show VAT Field for EU countries only
87
+ var vatFieldContainer = jQuery('#billing_eu_vat_number_field');
88
+ var vatFieldWrapper = $vatInput.parent();
89
+ var vatField = null;
90
+ function showVATFieldForEUOnly(e){
91
+ var targetField = jQuery(e.target);
92
+ var selectedCountry = targetField.val();
93
+ if(_ajax_object.eu_countries.indexOf(selectedCountry) != -1){
94
+ if(vatField){
95
+ vatFieldWrapper.append(vatField);
96
+ vatFieldContainer.slideDown(400);
97
+ }
98
+ }else{
99
+ vatFieldContainer.slideUp(500,function(){
100
+ vatField = $vatInput.detach();
101
+ });
102
+ }
103
+ }
104
+ if('yes'==_ajax_object.show_vat_field_for_eu_only){
105
+ jQuery('#billing_country').on('change',showVATFieldForEUOnly);
106
+ jQuery('#billing_country').change();
107
+ }
108
  });
includes/js/wcj-product-addons.js CHANGED
@@ -1,7 +1,7 @@
1
  /**
2
  * wcj-product-addons.
3
  *
4
- * @version 4.5.0
5
  * @since 2.5.3
6
  * @todo `text` type - update price not only on change, but on each pressed key
7
  * @todo fix the issue with custom price labels module
@@ -70,6 +70,64 @@ jQuery(document).ready(function() {
70
  jQuery("[name^='wcj_product_all_products_addons_'], [name^='wcj_product_per_product_addons_']").each( function () {
71
  jQuery(this).change( change_price );
72
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  });
74
 
75
  jQuery(document.body).on('change','.variations select',change_price);
1
  /**
2
  * wcj-product-addons.
3
  *
4
+ * @version 4.6.1
5
  * @since 2.5.3
6
  * @todo `text` type - update price not only on change, but on each pressed key
7
  * @todo fix the issue with custom price labels module
70
  jQuery("[name^='wcj_product_all_products_addons_'], [name^='wcj_product_per_product_addons_']").each( function () {
71
  jQuery(this).change( change_price );
72
  });
73
+
74
+ // Handle "Enable by Variation" option
75
+ function handle_enable_by_variation() {
76
+ sanitize_variation_addon_fields_array();
77
+ var addon_pattern = 'wcj_product_per_product_addons_';
78
+ function hide_variation_addon_fields() {
79
+ for (i = 0; i < _ajax_object.enable_by_variation.length; i++) {
80
+ if (Array.isArray(_ajax_object.enable_by_variation[i])) {
81
+ var addons = jQuery('input[name="' + addon_pattern + (i + 1) + '"],label[for*="' + addon_pattern + (i + 1) + '"],*[class*="' + addon_pattern + (i + 1) + '"]');
82
+ addons.each(function () {
83
+ if (jQuery(this).is('[required]')) {
84
+ jQuery(this).removeAttr('required');
85
+ jQuery(this).attr('data-required', true);
86
+ }
87
+ });
88
+ addons.hide();
89
+ }
90
+ }
91
+ }
92
+ function show_addon_field_by_variation_id(variation_id) {
93
+ hide_variation_addon_fields();
94
+ for (i = 0; i < _ajax_object.enable_by_variation.length; i++) {
95
+ if (Array.isArray(_ajax_object.enable_by_variation[i]) && _ajax_object.enable_by_variation[i].indexOf(parseInt(variation_id)) != -1) {
96
+ var addons = jQuery('input[name="' + addon_pattern + (i + 1) + '"],label[for*="' + addon_pattern + (i + 1) + '"],*[class*="' + addon_pattern + (i + 1) + '"]');
97
+ addons.each(function() {
98
+ if(jQuery(this).is('[data-required]')){
99
+ jQuery(this).attr('required','required');
100
+ }
101
+ });
102
+ addons.show();
103
+ }
104
+ }
105
+ }
106
+ function sanitize_variation_addon_fields_array(){
107
+ if (Array.isArray(_ajax_object.enable_by_variation)) {
108
+ _ajax_object.enable_by_variation = _ajax_object.enable_by_variation.map(function (e) {
109
+ if (Array.isArray(e)) {
110
+ e = e.map(function (e) {
111
+ e = parseInt(e);
112
+ return e;
113
+ });
114
+ }
115
+ return e;
116
+ });
117
+ }
118
+ }
119
+ if (Array.isArray(_ajax_object.enable_by_variation)) {
120
+ hide_variation_addon_fields();
121
+ }
122
+ jQuery(document).on('found_variation', 'form.cart', function (event, variation) {
123
+ var variation_id = variation.variation_id;
124
+ if (Array.isArray(_ajax_object.enable_by_variation)) {
125
+ show_addon_field_by_variation_id(variation_id);
126
+ }
127
+ });
128
+ }
129
+ handle_enable_by_variation();
130
+
131
  });
132
 
133
  jQuery(document.body).on('change','.variations select',change_price);
includes/settings/meta-box/wcj-settings-meta-box-product-addons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Addons
4
  *
5
- * @version 4.6.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -28,6 +28,44 @@ $options = array(
28
  'title' => __( 'Product Addons Total Number', 'woocommerce-jetpack' ),
29
  ),
30
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  $total_number = get_post_meta( get_the_ID(), '_' . 'wcj_product_addons_per_product_total_number', true );
32
  for ( $i = 1; $i <= $total_number; $i++ ) {
33
  $options = array_merge( $options, array(
@@ -40,7 +78,7 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
40
  'yes' => __( 'Yes', 'woocommerce-jetpack' ),
41
  'no' => __( 'No', 'woocommerce-jetpack' ),
42
  ),
43
- ),
44
  array(
45
  'title' => __( 'Type', 'woocommerce-jetpack' ),
46
  'name' => 'wcj_product_addons_per_product_type_' . $i,
2
  /**
3
  * Booster for WooCommerce - Settings Meta Box - Product Addons
4
  *
5
+ * @version 4.6.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
28
  'title' => __( 'Product Addons Total Number', 'woocommerce-jetpack' ),
29
  ),
30
  );
31
+
32
+ if ( ! function_exists( 'wcj_get_product_addons_enable_by_variation_option' ) ) {
33
+ /**
34
+ * wcj_get_product_addons_enable_by_variation_option.
35
+ *
36
+ * @version 4.6.1
37
+ * @since 4.6.1
38
+ */
39
+ function wcj_get_product_addons_enable_by_variation_option( $index ) {
40
+ if (
41
+ empty( $post_id = get_the_ID() ) ||
42
+ ! is_a( $product = wc_get_product( $post_id ), 'WC_Product_Variable' )
43
+ ) {
44
+ return false;
45
+ }
46
+ $variations = $product->get_available_variations();
47
+ $variations_options = wp_list_pluck( $variations, 'variation_id', 'variation_id' );
48
+ $custom_attributes_data = apply_filters( 'booster_message', '', 'disabled' );
49
+ $custom_attributes = array();
50
+ if ( is_array( $custom_attributes_data ) ) {
51
+ foreach ( $custom_attributes_data as $attribute => $attribute_value ) {
52
+ $custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
53
+ }
54
+ }
55
+ return array(
56
+ 'name' => 'wcj_product_addons_per_product_enable_by_variation_' . $index,
57
+ 'type' => 'select',
58
+ 'multiple' => true,
59
+ 'tooltip' => apply_filters( 'booster_message', '', 'desc' ),
60
+ 'css' => 'width:100%',
61
+ 'class' => 'chosen_select',
62
+ 'options' => $variations_options,
63
+ 'custom_attributes' => implode( ' ', $custom_attributes ),
64
+ 'title' => __( 'Enable by Variation', 'woocommerce-jetpack' ),
65
+ );
66
+ }
67
+ }
68
+
69
  $total_number = get_post_meta( get_the_ID(), '_' . 'wcj_product_addons_per_product_total_number', true );
70
  for ( $i = 1; $i <= $total_number; $i++ ) {
71
  $options = array_merge( $options, array(
78
  'yes' => __( 'Yes', 'woocommerce-jetpack' ),
79
  'no' => __( 'No', 'woocommerce-jetpack' ),
80
  ),
81
+ ),wcj_get_product_addons_enable_by_variation_option($i),
82
  array(
83
  'title' => __( 'Type', 'woocommerce-jetpack' ),
84
  'name' => 'wcj_product_addons_per_product_type_' . $i,
includes/settings/wcj-settings-add-to-cart.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Add to Cart
4
  *
5
- * @version 3.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -55,7 +55,7 @@ for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_add_to_
55
  ),
56
  array(
57
  'desc' => __( 'categories', 'woocommerce-jetpack' ),
58
- 'desc_tip' => __( '', 'woocommerce-jetpack' ),
59
  'id' => 'wcj_add_to_cart_per_category_ids_group_' . $i,
60
  'default' => '',
61
  'type' => 'multiselect',
2
  /**
3
  * Booster for WooCommerce - Settings - Add to Cart
4
  *
5
+ * @version 4.6.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
55
  ),
56
  array(
57
  'desc' => __( 'categories', 'woocommerce-jetpack' ),
58
+ 'desc_tip' => '',
59
  'id' => 'wcj_add_to_cart_per_category_ids_group_' . $i,
60
  'default' => '',
61
  'type' => 'multiselect',
includes/settings/wcj-settings-checkout-fees.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Checkout Fees
4
  *
5
- * @version 4.5.0
6
  * @since 3.7.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -80,20 +80,37 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
80
  'custom_attributes' => array( 'step' => 0.000001 ),
81
  ),
82
  array(
83
- 'title' => __( 'Cart Min', 'woocommerce-jetpack' ),
84
- 'desc_tip' => __( 'Cart minimum amount', 'woocommerce-jetpack' ),
85
  'id' => "wcj_checkout_fees_cart_min_amount[$i]",
86
  'default' => 1,
87
  'type' => 'number',
88
  'custom_attributes' => array( 'min' => 1 )
89
  ),
90
  array(
91
- 'title' => __( 'Cart Max', 'woocommerce-jetpack' ),
92
- 'desc_tip' => __( 'Cart maximum amount.', 'woocommerce-jetpack' ) . '<br />' . __( 'Zero or empty values will not be considered', 'woocommerce-jetpack' ),
93
  'id' => "wcj_checkout_fees_cart_max_amount[$i]",
94
  'default' => '',
95
  'type' => 'number',
96
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  array(
98
  'title' => __( 'Checkout Field', 'woocommerce-jetpack' ),
99
  'desc_tip' => sprintf( __( 'If you want fee to be added only if some checkout field is enabled, enter field\'s key here. For example, if you have added one custom billing checkout field with Booster\'s "Checkout Custom Fields" module, enter %s here.', 'woocommerce-jetpack' ), '<em>billing_wcj_checkout_field_1</em>' ) . ' ' .
2
  /**
3
  * Booster for WooCommerce - Settings - Checkout Fees
4
  *
5
+ * @version 4.6.1
6
  * @since 3.7.0
7
  * @author Algoritmika Ltd.
8
  */
80
  'custom_attributes' => array( 'step' => 0.000001 ),
81
  ),
82
  array(
83
+ 'title' => __( 'Cart Minimum Quantity', 'woocommerce-jetpack' ),
84
+ 'desc_tip' => __( 'Minimum amount of items in cart.', 'woocommerce-jetpack' ),
85
  'id' => "wcj_checkout_fees_cart_min_amount[$i]",
86
  'default' => 1,
87
  'type' => 'number',
88
  'custom_attributes' => array( 'min' => 1 )
89
  ),
90
  array(
91
+ 'title' => __( 'Cart Maximum Quantity', 'woocommerce-jetpack' ),
92
+ 'desc_tip' => __( 'Maximum amount of items in cart.', 'woocommerce-jetpack' ) . '<br />' . __( 'Zero or empty values will not be considered', 'woocommerce-jetpack' ),
93
  'id' => "wcj_checkout_fees_cart_max_amount[$i]",
94
  'default' => '',
95
  'type' => 'number',
96
  ),
97
+ array(
98
+ 'title' => __( 'Cart Minimum Total', 'woocommerce-jetpack' ),
99
+ 'desc_tip' => __( 'Minimum total amount in cart.', 'woocommerce-jetpack' ),
100
+ 'desc' => apply_filters( 'booster_message', '', 'desc' ),
101
+ 'id' => "wcj_checkout_fees_cart_min_total_amount[$i]",
102
+ 'default' => 0,
103
+ 'type' => 'number',
104
+ 'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
105
+ ),
106
+ array(
107
+ 'title' => __( 'Cart Maximum Total', 'woocommerce-jetpack' ),
108
+ 'desc_tip' => __( 'Maximum total amount in cart.', 'woocommerce-jetpack' ),
109
+ 'desc' => apply_filters( 'booster_message', '', 'desc' ),
110
+ 'id' => "wcj_checkout_fees_cart_max_total_amount[$i]",
111
+ 'type' => 'number',
112
+ 'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
113
+ ),
114
  array(
115
  'title' => __( 'Checkout Field', 'woocommerce-jetpack' ),
116
  'desc_tip' => sprintf( __( 'If you want fee to be added only if some checkout field is enabled, enter field\'s key here. For example, if you have added one custom billing checkout field with Booster\'s "Checkout Custom Fields" module, enter %s here.', 'woocommerce-jetpack' ), '<em>billing_wcj_checkout_field_1</em>' ) . ' ' .
includes/settings/wcj-settings-eu-vat-number.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - EU VAT Number
4
  *
5
- * @version 3.2.2
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  * @todo set default value for "wcj_eu_vat_number_add_progress_text" to "yes"
@@ -111,6 +111,14 @@ $settings = array(
111
  'default' => 'no',
112
  'type' => 'checkbox',
113
  ),
 
 
 
 
 
 
 
 
114
  array(
115
  'title' => __( 'Exempt VAT by Customer\'s EU VAT', 'woocommerce-jetpack' ),
116
  'desc' => __( 'Yes', 'woocommerce-jetpack' ),
@@ -230,7 +238,7 @@ $settings = array(
230
  ),
231
  array(
232
  'title' => __( "Read '_vat_number' meta", 'woocommerce-jetpack' ),
233
- 'desc_tip' => sprintf(__( "Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> plugin, reading meta from '_vat_number' meta", 'woocommerce-jetpack' ),'https://woocommerce.com/products/eu-vat-number/'),
234
  'desc' => __( 'Enable', 'woocommerce-jetpack' ),
235
  'id' => 'wcj_eu_vat_number_read_vat_number_meta',
236
  'default' => 'no',
2
  /**
3
  * Booster for WooCommerce - Settings - EU VAT Number
4
  *
5
+ * @version 4.6.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  * @todo set default value for "wcj_eu_vat_number_add_progress_text" to "yes"
111
  'default' => 'no',
112
  'type' => 'checkbox',
113
  ),
114
+ array(
115
+ 'title' => __( 'Show VAT field for EU countries only', 'woocommerce-jetpack' ),
116
+ 'desc' => __( 'Yes', 'woocommerce-jetpack' ),
117
+ 'id' => 'wcj_eu_vat_number_show_vat_field_for_eu_only',
118
+ 'default' => 'no',
119
+ 'type' => 'checkbox',
120
+ 'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
121
+ ),
122
  array(
123
  'title' => __( 'Exempt VAT by Customer\'s EU VAT', 'woocommerce-jetpack' ),
124
  'desc' => __( 'Yes', 'woocommerce-jetpack' ),
238
  ),
239
  array(
240
  'title' => __( "Read '_vat_number' meta", 'woocommerce-jetpack' ),
241
+ 'desc_tip' => sprintf(__( "Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> plugin, reading meta from '_vat_number'.", 'woocommerce-jetpack' ),'https://woocommerce.com/products/eu-vat-number/'),
242
  'desc' => __( 'Enable', 'woocommerce-jetpack' ),
243
  'id' => 'wcj_eu_vat_number_read_vat_number_meta',
244
  'default' => 'no',
includes/settings/wcj-settings-shipping-calculator.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Shipping Calculator
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -44,7 +44,7 @@ return array(
44
  'type' => 'checkbox',
45
  ),
46
  array(
47
- 'title' => __( '', 'woocommerce-jetpack' ),
48
  'desc' => __( 'Calculate Shipping button', 'woocommerce-jetpack' ),
49
  'desc_tip' => __( 'When "Force Block Open" options is enabled, set Calculate Shipping button options.', 'woocommerce-jetpack' ),
50
  'id' => 'wcj_shipping_calculator_enable_force_block_open_button',
2
  /**
3
  * Booster for WooCommerce - Settings - Shipping Calculator
4
  *
5
+ * @version 4.6.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
44
  'type' => 'checkbox',
45
  ),
46
  array(
47
+ 'title' => '',
48
  'desc' => __( 'Calculate Shipping button', 'woocommerce-jetpack' ),
49
  'desc_tip' => __( 'When "Force Block Open" options is enabled, set Calculate Shipping button options.', 'woocommerce-jetpack' ),
50
  'id' => 'wcj_shipping_calculator_enable_force_block_open_button',
langs/woocommerce-jetpack.pot CHANGED
@@ -1,18642 +1,18970 @@
1
- #: includes/class-wcj-add-to-cart-button-visibility.php:26
2
- msgid "Add to Cart Button Visibility"
3
- msgstr ""
4
-
5
- #: includes/class-wcj-add-to-cart-button-visibility.php:27
6
- msgid "Enable/disable Add to Cart button globally or on per product basis."
7
- msgstr ""
8
-
9
- #: includes/class-wcj-add-to-cart-button-visibility.php:29
10
- #, php-format
11
- msgid ""
12
- "If you need to enable/disable Add to Cart button for some <strong>user "
13
- "roles</strong> only, we suggest using this module in conjunction with "
14
- "Booster's %s module."
15
- msgstr ""
16
-
17
- #: includes/class-wcj-add-to-cart-button-visibility.php:31
18
- #: includes/class-wcj-modules-by-user-roles.php:25
19
- msgid "Modules By User Roles"
20
- msgstr ""
21
-
22
- #: includes/class-wcj-add-to-cart.php:23
23
- msgid "Add to Cart Button Labels"
24
- msgstr ""
25
-
26
- #: includes/class-wcj-add-to-cart.php:24
27
- msgid ""
28
- "Change text for Add to Cart button by product type, by product category or "
29
- "for individual products."
30
- msgstr ""
31
-
32
- #: includes/class-wcj-address-formats.php:24
33
- msgid "Address Formats"
34
- msgstr ""
35
-
36
- #: includes/class-wcj-address-formats.php:25
37
- msgid ""
38
- "Set address format in orders on per country basis. Force base country "
39
- "display."
40
- msgstr ""
41
-
42
- #: includes/class-wcj-admin-bar.php:30
43
- msgid "Admin Bar"
44
- msgstr ""
45
-
46
- #: includes/class-wcj-admin-bar.php:31
47
- msgid "WooCommerce admin bar."
48
- msgstr ""
49
-
50
- #: includes/class-wcj-admin-bar.php:140
51
- #: includes/admin/class-wc-settings-jetpack.php:83
52
- msgid "Alphabetically"
53
- msgstr ""
54
-
55
- #: includes/class-wcj-admin-bar.php:144
56
- #: includes/admin/class-wc-settings-jetpack.php:84
57
- msgid "By Category"
58
- msgstr ""
59
-
60
- #: includes/class-wcj-admin-bar.php:148
61
- #: includes/admin/class-wc-settings-jetpack.php:85
62
- msgid "Active"
63
- msgstr ""
64
-
65
- #: includes/class-wcj-admin-bar.php:152
66
- #: includes/admin/class-wc-settings-jetpack.php:86
67
- msgid "Manage Settings"
68
- msgstr ""
69
-
70
- #: includes/class-wcj-admin-bar.php:168 includes/class-wcj-admin-bar.php:508
71
- #: includes/class-wcj-admin-bar.php:608
72
- #: includes/admin/class-wc-settings-jetpack.php:219
73
- #: includes/admin/class-wc-settings-jetpack.php:414
74
- #: includes/core/class-wcj-admin.php:113
75
- msgid "Settings"
76
- msgstr ""
77
-
78
- #: includes/class-wcj-admin-bar.php:172
79
- #: includes/admin/class-wc-settings-jetpack.php:416
80
- #: includes/classes/class-wcj-module.php:721
81
- msgid "Documentation"
82
- msgstr ""
83
-
84
- #: includes/class-wcj-admin-bar.php:214 includes/class-wcj-my-account.php:33
85
- #: includes/admin/class-wc-settings-jetpack.php:146
86
- #: includes/admin/wcj-modules-cats.php:14
87
- msgid "Dashboard"
88
- msgstr ""
89
-
90
- #: includes/class-wcj-admin-bar.php:215
91
- msgid ""
92
- "This dashboard lets you check statuses and short descriptions of all "
93
- "available Booster for WooCommerce tools. Tools can be enabled through "
94
- "WooCommerce > Settings > Booster."
95
- msgstr ""
96
-
97
- #: includes/class-wcj-admin-bar.php:245 includes/class-wcj-admin-bar.php:288
98
- #: includes/class-wcj-admin-bar.php:632
99
- #: includes/classes/class-wcj-module.php:554
100
- #: includes/settings/wcj-settings-wpml.php:82
101
- msgid "Tools"
102
- msgstr ""
103
-
104
- #: includes/class-wcj-admin-bar.php:253
105
- msgid "Booster: Active"
106
- msgstr ""
107
-
108
- #: includes/class-wcj-admin-bar.php:256
109
- msgid "Booster - Active"
110
- msgstr ""
111
-
112
- #: includes/class-wcj-admin-bar.php:276
113
- #: includes/class-wcj-checkout-files-upload.php:218
114
- #: includes/class-wcj-eu-vat-number.php:126
115
- #: includes/class-wcj-max-products-per-user.php:184
116
- #: includes/class-wcj-orders.php:124 includes/class-wcj-orders.php:153
117
- #: includes/class-wcj-payment-gateways.php:91
118
- #: includes/class-wcj-track-users.php:163
119
- #: includes/class-wcj-track-users.php:251
120
- #: includes/admin/class-wc-settings-jetpack.php:24
121
- #: includes/admin/class-wc-settings-jetpack.php:221
122
- #: includes/classes/class-wcj-module.php:381
123
- #: includes/classes/class-wcj-module.php:581
124
- #: includes/settings/wcj-settings-price-by-country.php:178
125
- msgid "Booster"
126
- msgstr ""
127
-
128
- #: includes/class-wcj-admin-bar.php:279
129
- msgid "Booster - Settings"
130
- msgstr ""
131
-
132
- #: includes/class-wcj-admin-bar.php:283
133
- msgid "Modules"
134
- msgstr ""
135
-
136
- #: includes/class-wcj-admin-bar.php:307
137
- msgid "Sales by date"
138
- msgstr ""
139
-
140
- #: includes/class-wcj-admin-bar.php:308
141
- msgid "Sales by product"
142
- msgstr ""
143
-
144
- #: includes/class-wcj-admin-bar.php:309
145
- msgid "Sales by category"
146
- msgstr ""
147
-
148
- #: includes/class-wcj-admin-bar.php:310
149
- msgid "Coupons by date"
150
- msgstr ""
151
-
152
- #: includes/class-wcj-admin-bar.php:318 includes/class-wcj-track-users.php:34
153
- #: includes/functions/wcj-functions-reports.php:62
154
- msgid "Last 7 days"
155
- msgstr ""
156
-
157
- #: includes/class-wcj-admin-bar.php:322
158
- #: includes/functions/wcj-functions-reports.php:57
159
- msgid "This month"
160
- msgstr ""
161
-
162
- #: includes/class-wcj-admin-bar.php:326
163
- #: includes/functions/wcj-functions-reports.php:52
164
- msgid "Last month"
165
- msgstr ""
166
-
167
- #: includes/class-wcj-admin-bar.php:330
168
- #: includes/functions/wcj-functions-reports.php:47
169
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:125
170
- msgid "Year"
171
- msgstr ""
172
-
173
- #: includes/class-wcj-admin-bar.php:384
174
- #: includes/admin/class-wc-settings-jetpack.php:217
175
- #: includes/settings/wcj-settings-emails-verification.php:146
176
- #: includes/settings/wcj-settings-price-by-country.php:177
177
- msgid "WooCommerce"
178
- msgstr ""
179
-
180
- #: includes/class-wcj-admin-bar.php:387
181
- msgid "WooCommerce settings"
182
- msgstr ""
183
-
184
- #: includes/class-wcj-admin-bar.php:391 includes/class-wcj-admin-bar.php:395
185
- #: includes/class-wcj-admin-bar.php:413 includes/class-wcj-my-account.php:34
186
- #: includes/class-wcj-my-account.php:42 includes/class-wcj-orders.php:26
187
- #: includes/reports/wcj-class-reports-sales-gateways.php:153
188
- #: includes/settings/wcj-settings-reports.php:21
189
- #: includes/settings/wcj-settings-reports.php:59
190
- #: includes/settings/wcj-settings-reports.php:100
191
- #: includes/settings/wcj-settings-reports.php:120
192
- msgid "Orders"
193
- msgstr ""
194
-
195
- #: includes/class-wcj-admin-bar.php:399
196
- msgid "Add order"
197
- msgstr ""
198
-
199
- #: includes/class-wcj-admin-bar.php:403 includes/class-wcj-admin-bar.php:418
200
- #: includes/settings/wcj-settings-reports.php:135
201
- #: includes/settings/wcj-settings-reports.php:141
202
- msgid "Customers"
203
- msgstr ""
204
-
205
- #: includes/class-wcj-admin-bar.php:409 includes/class-wcj-reports.php:33
206
- msgid "Reports"
207
- msgstr ""
208
-
209
- #: includes/class-wcj-admin-bar.php:422
210
- msgid "Customers vs. guests"
211
- msgstr ""
212
-
213
- #: includes/class-wcj-admin-bar.php:426
214
- msgid "Customer list"
215
- msgstr ""
216
-
217
- #: includes/class-wcj-admin-bar.php:432 includes/class-wcj-stock.php:27
218
- #: includes/reports/wcj-class-reports-stock.php:272
219
- #: includes/settings/wcj-settings-reports.php:156
220
- #: includes/settings/wcj-settings-reports.php:162
221
- #: includes/settings/wcj-settings-reports.php:168
222
- msgid "Stock"
223
- msgstr ""
224
-
225
- #: includes/class-wcj-admin-bar.php:436
226
- msgid "Low in stock"
227
- msgstr ""
228
-
229
- #: includes/class-wcj-admin-bar.php:440
230
- #: includes/settings/wcj-settings-offer-price.php:49
231
- #: includes/settings/wcj-settings-stock.php:101
232
- #: includes/shortcodes/class-wcj-shortcodes-products.php:565
233
- msgid "Out of stock"
234
- msgstr ""
235
-
236
- #: includes/class-wcj-admin-bar.php:444
237
- msgid "Most Stocked"
238
- msgstr ""
239
-
240
- #: includes/class-wcj-admin-bar.php:450
241
- #: includes/class-wcj-eu-vat-number.php:190
242
- msgid "Taxes"
243
- msgstr ""
244
-
245
- #: includes/class-wcj-admin-bar.php:454
246
- msgid "Taxes by code"
247
- msgstr ""
248
-
249
- #: includes/class-wcj-admin-bar.php:458
250
- msgid "Taxes by date"
251
- msgstr ""
252
-
253
- #: includes/class-wcj-admin-bar.php:466 includes/class-wcj-admin-bar.php:470
254
- #: includes/class-wcj-admin-bar.php:516
255
- #: includes/class-wcj-product-bulk-meta-editor.php:263
256
- #: includes/class-wcj-product-by-user.php:96
257
- #: includes/class-wcj-product-by-user.php:132
258
- #: includes/class-wcj-shipping-by-products.php:32
259
- #: includes/admin/wcj-modules-cats.php:59
260
- #: includes/settings/wcj-settings-reports.php:178
261
- #: includes/settings/wcj-settings-shipping-options.php:69
262
- msgid "Products"
263
- msgstr ""
264
-
265
- #: includes/class-wcj-admin-bar.php:474
266
- msgid "Add product"
267
- msgstr ""
268
-
269
- #: includes/class-wcj-admin-bar.php:478
270
- #: includes/class-wcj-product-bulk-price-converter.php:149
271
- #: includes/class-wcj-sku.php:538
272
- #: includes/export/class-wcj-fields-helper.php:318
273
- #: includes/settings/wcj-settings-product-by-user.php:19
274
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:182
275
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:403
276
- msgid "Categories"
277
- msgstr ""
278
-
279
- #: includes/class-wcj-admin-bar.php:483
280
- #: includes/export/class-wcj-fields-helper.php:319
281
- #: includes/settings/wcj-settings-product-by-user.php:20
282
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:183
283
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:408
284
- msgid "Tags"
285
- msgstr ""
286
-
287
- #: includes/class-wcj-admin-bar.php:488
288
- msgid "Attributes"
289
- msgstr ""
290
-
291
- #: includes/class-wcj-admin-bar.php:494 includes/class-wcj-admin-bar.php:498
292
- msgid "Coupons"
293
- msgstr ""
294
-
295
- #: includes/class-wcj-admin-bar.php:502
296
- msgid "Add coupon"
297
- msgstr ""
298
-
299
- #: includes/class-wcj-admin-bar.php:512 includes/class-wcj-admin-bar.php:520
300
- #: includes/class-wcj-general.php:24 includes/class-wcj-pdf-invoicing.php:24
301
- #: includes/settings/wcj-settings-related-products.php:38
302
- msgid "General"
303
- msgstr ""
304
-
305
- #: includes/class-wcj-admin-bar.php:524
306
- #: includes/settings/wcj-settings-eu-vat-number.php:146
307
- #: includes/settings/wcj-settings-product-msrp.php:25
308
- msgid "Display"
309
- msgstr ""
310
-
311
- #: includes/class-wcj-admin-bar.php:528
312
- msgid "Inventory"
313
- msgstr ""
314
-
315
- #: includes/class-wcj-admin-bar.php:532
316
- msgid "Downloadable products"
317
- msgstr ""
318
-
319
- #: includes/class-wcj-admin-bar.php:538
320
- msgid "Tax"
321
- msgstr ""
322
-
323
- #: includes/class-wcj-admin-bar.php:542
324
- msgid "Tax options"
325
- msgstr ""
326
-
327
- #: includes/class-wcj-admin-bar.php:546
328
- msgid "Standard rates"
329
- msgstr ""
330
-
331
- #: includes/class-wcj-admin-bar.php:552
332
- #: includes/settings/wcj-settings-checkout-custom-fields.php:193
333
- #: includes/settings/wcj-settings-checkout-custom-info.php:57
334
- #: includes/settings/wcj-settings-left-to-free-shipping.php:115
335
- #: includes/settings/wcj-settings-price-by-user-role.php:46
336
- msgid "Shipping"
337
- msgstr ""
338
-
339
- #: includes/class-wcj-admin-bar.php:556
340
- msgid "Shipping zones"
341
- msgstr ""
342
-
343
- #: includes/class-wcj-admin-bar.php:560
344
- msgid "Shipping options"
345
- msgstr ""
346
-
347
- #: includes/class-wcj-admin-bar.php:564
348
- msgid "Shipping classes"
349
- msgstr ""
350
-
351
- #: includes/class-wcj-admin-bar.php:570
352
- msgid "Checkout"
353
- msgstr ""
354
-
355
- #: includes/class-wcj-admin-bar.php:574
356
- msgid "Checkout options"
357
- msgstr ""
358
-
359
- #: includes/class-wcj-admin-bar.php:578
360
- msgid "BACS"
361
- msgstr ""
362
-
363
- #: includes/class-wcj-admin-bar.php:582
364
- msgid "Check payments"
365
- msgstr ""
366
-
367
- #: includes/class-wcj-admin-bar.php:586
368
- msgid "Cash on delivery"
369
- msgstr ""
370
-
371
- #: includes/class-wcj-admin-bar.php:590
372
- msgid "PayPal"
373
- msgstr ""
374
-
375
- #: includes/class-wcj-admin-bar.php:596
376
- #: includes/settings/wcj-settings-checkout-custom-fields.php:195
377
- msgid "Account"
378
- msgstr ""
379
-
380
- #: includes/class-wcj-admin-bar.php:600
381
- msgid "Emails"
382
- msgstr ""
383
-
384
- #: includes/class-wcj-admin-bar.php:604
385
- msgid "API"
386
- msgstr ""
387
-
388
- #: includes/class-wcj-admin-bar.php:612
389
- msgid "Keys/Apps"
390
- msgstr ""
391
-
392
- #: includes/class-wcj-admin-bar.php:616
393
- msgid "Webhooks"
394
- msgstr ""
395
-
396
- #: includes/class-wcj-admin-bar.php:624 includes/class-wcj-admin-bar.php:628
397
- msgid "System status"
398
- msgstr ""
399
-
400
- #: includes/class-wcj-admin-bar.php:636
401
- msgid "Logs"
402
- msgstr ""
403
-
404
- #: includes/class-wcj-admin-bar.php:642
405
- msgid "Extensions"
406
- msgstr ""
407
-
408
- #: includes/class-wcj-admin-orders-list.php:25
409
- msgid "Admin Orders List"
410
- msgstr ""
411
-
412
- #: includes/class-wcj-admin-orders-list.php:26
413
- msgid ""
414
- "Customize admin orders list: add custom columns; add multiple status "
415
- "filtering."
416
- msgstr ""
417
-
418
- #: includes/class-wcj-admin-orders-list.php:208
419
- msgid "Not Completed"
420
- msgstr ""
421
-
422
- #: includes/class-wcj-admin-orders-list.php:243
423
- msgid "Trash"
424
- msgstr ""
425
-
426
- #: includes/class-wcj-admin-orders-list.php:326
427
- #: includes/class-wcj-product-by-country.php:157
428
- msgid "All countries"
429
- msgstr ""
430
-
431
- #: includes/class-wcj-admin-orders-list.php:335
432
- msgid "All currencies"
433
- msgstr ""
434
-
435
- #: includes/class-wcj-admin-orders-list.php:375
436
- #: includes/export/class-wcj-fields-helper.php:44
437
- #: includes/export/class-wcj-fields-helper.php:129
438
- #: includes/export/class-wcj-fields-helper.php:214
439
- #: includes/settings/wcj-settings-admin-orders-list.php:27
440
- msgid "Billing Country"
441
- msgstr ""
442
-
443
- #: includes/class-wcj-admin-orders-list.php:378
444
- #: includes/settings/wcj-settings-admin-orders-list.php:34
445
- msgid "Currency Code"
446
- msgstr ""
447
-
448
- #: includes/class-wcj-admin-products-list.php:25
449
- msgid "Admin Products List"
450
- msgstr ""
451
-
452
- #: includes/class-wcj-admin-products-list.php:26
453
- msgid "Customize admin products list."
454
- msgstr ""
455
-
456
- #: includes/class-wcj-admin-tools.php:24
457
- msgid "Admin Tools"
458
- msgstr ""
459
-
460
- #: includes/class-wcj-admin-tools.php:25
461
- msgid "Booster for WooCommerce general back-end tools."
462
- msgstr ""
463
-
464
- #: includes/class-wcj-admin-tools.php:31
465
- msgid "Products Attributes"
466
- msgstr ""
467
-
468
- #: includes/class-wcj-admin-tools.php:32
469
- msgid "All Products and All Attributes."
470
- msgstr ""
471
-
472
- #: includes/class-wcj-admin-tools.php:126
473
- #: includes/settings/wcj-settings-export.php:157
474
- #: includes/settings/wcj-settings-export.php:236
475
- msgid "Product Meta"
476
- msgstr ""
477
-
478
- #: includes/class-wcj-admin-tools.php:143
479
- #: includes/settings/wcj-settings-export.php:86
480
- #: includes/settings/wcj-settings-export.php:154
481
- msgid "Order Meta"
482
- msgstr ""
483
-
484
- #: includes/class-wcj-admin-tools.php:177
485
- msgid "Order Items Meta"
486
- msgstr ""
487
-
488
- #: includes/class-wcj-admin-tools.php:179
489
- msgid "Item Key"
490
- msgstr ""
491
-
492
- #: includes/class-wcj-admin-tools.php:179
493
- msgid "Item Meta Key"
494
- msgstr ""
495
-
496
- #: includes/class-wcj-admin-tools.php:179
497
- msgid "Item Meta Value"
498
- msgstr ""
499
-
500
- #: includes/class-wcj-admin-tools.php:214
501
- #: includes/class-wcj-admin-tools.php:256
502
- #: includes/class-wcj-admin-tools.php:265
503
- #: includes/class-wcj-product-bulk-meta-editor.php:339
504
- #: includes/class-wcj-product-bulk-price-converter.php:148
505
- #: includes/class-wcj-sku.php:537
506
- #: includes/reports/wcj-class-reports-sales.php:197
507
- #: includes/reports/wcj-class-reports-stock.php:269
508
- msgid "Product"
509
- msgstr ""
510
-
511
- #: includes/class-wcj-admin-tools.php:215
512
- #: includes/class-wcj-admin-tools.php:257
513
- #: includes/class-wcj-admin-tools.php:266
514
- #: includes/reports/wcj-class-reports-stock.php:270
515
- msgid "Category"
516
- msgstr ""
517
-
518
- #: includes/class-wcj-admin-tools.php:282
519
- msgid "Total Products:"
520
- msgstr ""
521
-
522
- #: includes/class-wcj-breadcrumbs.php:28
523
- msgid "Breadcrumbs"
524
- msgstr ""
525
-
526
- #: includes/class-wcj-breadcrumbs.php:29
527
- msgid "Customize WooCommerce breadcrumbs."
528
- msgstr ""
529
-
530
- #: includes/class-wcj-call-for-price.php:25
531
- msgid "Call for Price"
532
- msgstr ""
533
-
534
- #: includes/class-wcj-call-for-price.php:26
535
- msgid "Create any custom price label for all products with empty price."
536
- msgstr ""
537
-
538
- #: includes/class-wcj-cart-customization.php:25
539
- msgid "Cart Customization"
540
- msgstr ""
541
-
542
- #: includes/class-wcj-cart-customization.php:26
543
- msgid ""
544
- "Customize WooCommerce cart - hide coupon field; item remove link; change "
545
- "empty cart \"Return to shop\" button text."
546
- msgstr ""
547
-
548
- #: includes/class-wcj-cart-customization.php:62
549
- #: includes/class-wcj-cart-customization.php:100
550
- #: includes/settings/wcj-settings-cart-customization.php:52
551
- #: includes/templates/cart-empty.php:33
552
- msgid "Return to shop"
553
- msgstr ""
554
-
555
- #: includes/class-wcj-cart.php:23
556
- msgid "Cart Custom Info"
557
- msgstr ""
558
-
559
- #: includes/class-wcj-cart.php:24
560
- msgid "Add custom info to the cart page."
561
- msgstr ""
562
-
563
- #: includes/class-wcj-checkout-core-fields.php:25
564
- msgid "Checkout Core Fields"
565
- msgstr ""
566
-
567
- #: includes/class-wcj-checkout-core-fields.php:26
568
- msgid ""
569
- "Customize core checkout fields. Disable/enable fields, set required, change "
570
- "labels and/or placeholders etc."
571
- msgstr ""
572
-
573
- #: includes/class-wcj-checkout-custom-fields.php:24
574
- msgid "Checkout Custom Fields"
575
- msgstr ""
576
-
577
- #: includes/class-wcj-checkout-custom-fields.php:25
578
- msgid "Add custom fields to the checkout page."
579
- msgstr ""
580
-
581
- #: includes/class-wcj-checkout-custom-info.php:24
582
- #: includes/class-wcj-cross-sells.php:31
583
- msgid "Checkout Custom Info"
584
- msgstr ""
585
-
586
- #: includes/class-wcj-checkout-custom-info.php:25
587
- msgid "Add custom info to the checkout page."
588
- msgstr ""
589
-
590
- #: includes/class-wcj-checkout-customization.php:25
591
- msgid "Checkout Customization"
592
- msgstr ""
593
-
594
- #: includes/class-wcj-checkout-customization.php:26
595
- msgid ""
596
- "Customize WooCommerce checkout - restrict countries by customer's IP; hide "
597
- "\"Order Again\" button; disable selected fields on checkout for logged users "
598
- "and more."
599
- msgstr ""
600
-
601
- #: includes/class-wcj-checkout-customization.php:157
602
- #: includes/settings/wcj-settings-checkout-customization.php:181
603
- msgid "Returning customer?"
604
- msgstr ""
605
-
606
- #: includes/class-wcj-checkout-customization.php:172
607
- #: includes/settings/wcj-settings-checkout-customization.php:159
608
- msgid "Thank you. Your order has been received."
609
- msgstr ""
610
-
611
- #: includes/class-wcj-checkout-customization.php:197
612
- #: includes/class-wcj-checkout-customization.php:227
613
- #: includes/settings/wcj-settings-checkout-customization.php:116
614
- msgid "This field can not be changed"
615
- msgstr ""
616
-
617
- #: includes/class-wcj-checkout-fees.php:26
618
- msgid "Checkout Fees"
619
- msgstr ""
620
-
621
- #: includes/class-wcj-checkout-fees.php:27
622
- msgid "Add fees to WooCommerce cart & checkout."
623
- msgstr ""
624
-
625
- #: includes/class-wcj-checkout-fees.php:219
626
- #: includes/settings/wcj-settings-checkout-fees.php:41
627
- #: includes/settings/wcj-settings-checkout-fees.php:62
628
- msgid "Fee"
629
- msgstr ""
630
-
631
- #: includes/class-wcj-checkout-files-upload.php:26
632
- msgid "Checkout Files Upload"
633
- msgstr ""
634
-
635
- #: includes/class-wcj-checkout-files-upload.php:27
636
- msgid "Let customers upload files on (or after) the checkout."
637
- msgstr ""
638
-
639
- #: includes/class-wcj-checkout-files-upload.php:69
640
- #: includes/class-wcj-checkout-files-upload.php:73
641
- #: includes/settings/wcj-settings-checkout-files-upload.php:362
642
- #: includes/settings/wcj-settings-checkout-files-upload.php:403
643
- #, php-format
644
- msgid "File: %s"
645
- msgstr ""
646
-
647
- #: includes/class-wcj-checkout-files-upload.php:180
648
- #: includes/settings/wcj-settings-checkout-files-upload.php:116
649
- msgid "File is required!"
650
- msgstr ""
651
-
652
- #: includes/class-wcj-checkout-files-upload.php:194
653
- #: includes/class-wcj-checkout-files-upload.php:200
654
- #: includes/class-wcj-checkout-files-upload.php:416
655
- #: includes/class-wcj-checkout-files-upload.php:423
656
- #: includes/settings/wcj-settings-checkout-files-upload.php:110
657
- #, php-format
658
- msgid "Wrong file type: \"%s\"!"
659
- msgstr ""
660
-
661
- #: includes/class-wcj-checkout-files-upload.php:218
662
- msgid "Uploaded Files"
663
- msgstr ""
664
-
665
- #: includes/class-wcj-checkout-files-upload.php:250
666
- msgid "No files uploaded."
667
- msgstr ""
668
-
669
- #: includes/class-wcj-checkout-files-upload.php:253
670
- msgid "Delete all files"
671
- msgstr ""
672
-
673
- #: includes/class-wcj-checkout-files-upload.php:332
674
- #: includes/settings/wcj-settings-checkout-files-upload.php:240
675
- msgid "Files were successfully removed."
676
- msgstr ""
677
-
678
- #: includes/class-wcj-checkout-files-upload.php:359
679
- msgid "Booster for WooCommerce: Checkout Files Upload: %action%"
680
- msgstr ""
681
-
682
- #: includes/class-wcj-checkout-files-upload.php:360
683
- msgid "Order ID: %order_id%; File name: %file_name%"
684
- msgstr ""
685
-
686
- #: includes/class-wcj-checkout-files-upload.php:373
687
- #: includes/class-wcj-checkout-files-upload.php:396
688
- #: includes/settings/wcj-settings-checkout-files-upload.php:136
689
- #, php-format
690
- msgid "File \"%s\" was successfully removed."
691
- msgstr ""
692
-
693
- #: includes/class-wcj-checkout-files-upload.php:380
694
- msgid "File Removed"
695
- msgstr ""
696
-
697
- #: includes/class-wcj-checkout-files-upload.php:434
698
- #: includes/settings/wcj-settings-checkout-files-upload.php:123
699
- #, php-format
700
- msgid "File \"%s\" was successfully uploaded."
701
- msgstr ""
702
-
703
- #: includes/class-wcj-checkout-files-upload.php:444
704
- msgid "File Uploaded"
705
- msgstr ""
706
-
707
- #: includes/class-wcj-checkout-files-upload.php:462
708
- #: includes/settings/wcj-settings-checkout-files-upload.php:129
709
- msgid "Please select file to upload!"
710
- msgstr ""
711
-
712
- #: includes/class-wcj-checkout-files-upload.php:736
713
- #: includes/class-wcj-checkout-files-upload.php:737
714
- #: includes/settings/wcj-settings-checkout-files-upload.php:97
715
- msgid "Upload"
716
- msgstr ""
717
-
718
- #: includes/class-wcj-checkout-files-upload.php:746
719
- #: includes/class-wcj-checkout-files-upload.php:747
720
- #: includes/settings/wcj-settings-checkout-files-upload.php:103
721
- #: includes/settings/wcj-settings-sku.php:275
722
- #: includes/settings/wcj-settings-sorting.php:144
723
- #: includes/settings/wcj-settings-stock.php:206
724
- msgid "Remove"
725
- msgstr ""
726
-
727
- #: includes/class-wcj-coupon-by-user-role.php:27
728
- msgid "Coupon by User Role"
729
- msgstr ""
730
-
731
- #: includes/class-wcj-coupon-by-user-role.php:28
732
- msgid "Coupons by user roles."
733
- msgstr ""
734
-
735
- #: includes/class-wcj-coupon-by-user-role.php:79
736
- #: includes/class-wcj-coupon-by-user-role.php:80
737
- #: includes/class-wcj-coupon-by-user-role.php:94
738
- #: includes/class-wcj-coupon-by-user-role.php:95
739
- #: includes/settings/wcj-settings-coupon-by-user-role.php:68
740
- msgid "Coupon is not valid for your user role."
741
- msgstr ""
742
-
743
- #: includes/class-wcj-coupon-code-generator.php:28
744
- msgid "Coupon Code Generator"
745
- msgstr ""
746
-
747
- #: includes/class-wcj-coupon-code-generator.php:29
748
- msgid "Coupon code generator."
749
- msgstr ""
750
-
751
- #: includes/class-wcj-cross-sells.php:26
752
- msgid "Cross-sells"
753
- msgstr ""
754
-
755
- #: includes/class-wcj-cross-sells.php:27
756
- msgid ""
757
- "Cross-sells are products which you promote in the cart, based on the current "
758
- "product."
759
- msgstr ""
760
-
761
- #: includes/class-wcj-cross-sells.php:28
762
- #, php-format
763
- msgid ""
764
- "You can also use %s shortcode to display cross-sells anywhere on your site, "
765
- "for example on checkout page with %s module."
766
- msgstr ""
767
-
768
- #: includes/class-wcj-cross-sells.php:32
769
- msgid "Customize cross-sells products display."
770
- msgstr ""
771
-
772
- #: includes/class-wcj-crowdfunding.php:25
773
- msgid "Crowdfunding"
774
- msgstr ""
775
-
776
- #: includes/class-wcj-crowdfunding.php:26
777
- msgid "Add crowdfunding products to WooCommerce."
778
- msgstr ""
779
-
780
- #: includes/class-wcj-crowdfunding.php:28
781
- msgid "When enabled, module will add Crowdfunding metabox to product edit."
782
- msgstr ""
783
-
784
- #: includes/class-wcj-crowdfunding.php:30
785
- #, php-format
786
- msgid ""
787
- "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
788
- "\">Booster's crowdfunding shortcodes</a>."
789
- msgstr ""
790
-
791
- #: includes/class-wcj-crowdfunding.php:34
792
- #, php-format
793
- msgid ""
794
- "Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
795
- "a>."
796
- msgstr ""
797
-
798
- #: includes/class-wcj-crowdfunding.php:38
799
- #, php-format
800
- msgid ""
801
- "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
802
- "module</a>."
803
- msgstr ""
804
-
805
- #: includes/class-wcj-currency-exchange-rates.php:24
806
- msgid "Currency Exchange Rates"
807
- msgstr ""
808
-
809
- #: includes/class-wcj-currency-exchange-rates.php:25
810
- msgid "Automatic currency exchange rates for WooCommerce."
811
- msgstr ""
812
-
813
- #: includes/class-wcj-currency-exchange-rates.php:181
814
- #: includes/settings/wcj-settings-currency-exchange-rates.php:46
815
- msgid "Exchange Rates Server"
816
- msgstr ""
817
-
818
- #: includes/class-wcj-currency-exchange-rates.php:186
819
- #, php-format
820
- msgid "Use default: %s"
821
- msgstr ""
822
-
823
- #: includes/class-wcj-currency-exchange-rates.php:209
824
- msgid "Exchange Rates Offset (Percent)"
825
- msgstr ""
826
-
827
- #: includes/class-wcj-currency-exchange-rates.php:214
828
- #, php-format
829
- msgid "Use default: %s%%"
830
- msgstr ""
831
-
832
- #: includes/class-wcj-currency-exchange-rates.php:215
833
- msgid "Custom offset"
834
- msgstr ""
835
-
836
- #: includes/class-wcj-currency-exchange-rates.php:219
837
- msgid "Custom offset (Percent)"
838
- msgstr ""
839
-
840
- #: includes/class-wcj-currency-exchange-rates.php:220
841
- msgid "Used when \"Custom offset\" option is selected above."
842
- msgstr ""
843
-
844
- #: includes/class-wcj-currency-external-products.php:23
845
- msgid "Currency for External Products"
846
- msgstr ""
847
-
848
- #: includes/class-wcj-currency-external-products.php:24
849
- msgid "Set different currency for external products."
850
- msgstr ""
851
-
852
- #: includes/class-wcj-currency-per-product.php:26
853
- #: includes/settings/wcj-settings-currency-per-product.php:64
854
- msgid "Currency per Product"
855
- msgstr ""
856
-
857
- #: includes/class-wcj-currency-per-product.php:27
858
- msgid "Display prices for products in different currencies."
859
- msgstr ""
860
-
861
- #: includes/class-wcj-currency-per-product.php:172
862
- #: includes/settings/wcj-settings-currency-per-product.php:43
863
- msgid ""
864
- "Only one product can be added to the cart. Clear the cart or finish the "
865
- "order, before adding another product to the cart."
866
- msgstr ""
867
-
868
- #: includes/class-wcj-currency-per-product.php:187
869
- #: includes/settings/wcj-settings-currency-per-product.php:50
870
- msgid ""
871
- "Only products with same currency can be added to the cart. Clear the cart or "
872
- "finish the order, before adding products with another currency to the cart."
873
- msgstr ""
874
-
875
- #: includes/class-wcj-currency-per-product.php:226
876
- #, php-format
877
- msgctxt "Price range: from-to"
878
- msgid "%1$s&ndash;%2$s"
879
- msgstr ""
880
-
881
- #: includes/class-wcj-currency.php:27
882
- msgid "Currencies"
883
- msgstr ""
884
-
885
- #: includes/class-wcj-currency.php:28
886
- msgid ""
887
- "Add all world currencies and cryptocurrencies to your store; change currency "
888
- "symbol."
889
- msgstr ""
890
-
891
- #: includes/class-wcj-currency.php:67
892
- msgid "Auroracoin"
893
- msgstr ""
894
-
895
- #: includes/class-wcj-currency.php:68
896
- msgid "BitConnect"
897
- msgstr ""
898
-
899
- #: includes/class-wcj-currency.php:69
900
- msgid "Bitcoin Cash"
901
- msgstr ""
902
-
903
- #: includes/class-wcj-currency.php:70
904
- msgid "Coinye"
905
- msgstr ""
906
-
907
- #: includes/class-wcj-currency.php:71
908
- msgid "DigitalNote"
909
- msgstr ""
910
-
911
- #: includes/class-wcj-currency.php:72
912
- msgid "Emercoin"
913
- msgstr ""
914
-
915
- #: includes/class-wcj-currency.php:73
916
- msgid "Ethereum Classic"
917
- msgstr ""
918
-
919
- #: includes/class-wcj-currency.php:74
920
- msgid "Ethereum"
921
- msgstr ""
922
-
923
- #: includes/class-wcj-currency.php:75
924
- msgid "Freemasoncoin"
925
- msgstr ""
926
-
927
- #: includes/class-wcj-currency.php:76
928
- msgid "Gridcoin"
929
- msgstr ""
930
-
931
- #: includes/class-wcj-currency.php:77
932
- msgid "IOTA"
933
- msgstr ""
934
-
935
- #: includes/class-wcj-currency.php:78
936
- msgid "Litecoin"
937
- msgstr ""
938
-
939
- #: includes/class-wcj-currency.php:79
940
- msgid "MazaCoin"
941
- msgstr ""
942
-
943
- #: includes/class-wcj-currency.php:80
944
- msgid "Monero"
945
- msgstr ""
946
-
947
- #: includes/class-wcj-currency.php:81
948
- msgid "Namecoin"
949
- msgstr ""
950
-
951
- #: includes/class-wcj-currency.php:82
952
- msgid "NEM"
953
- msgstr ""
954
-
955
- #: includes/class-wcj-currency.php:83
956
- msgid "Nxt"
957
- msgstr ""
958
-
959
- #: includes/class-wcj-currency.php:84
960
- msgid "Omni"
961
- msgstr ""
962
-
963
- #: includes/class-wcj-currency.php:85
964
- msgid "Peercoin"
965
- msgstr ""
966
-
967
- #: includes/class-wcj-currency.php:86
968
- msgid "PotCoin"
969
- msgstr ""
970
-
971
- #: includes/class-wcj-currency.php:87
972
- msgid "Primecoin"
973
- msgstr ""
974
-
975
- #: includes/class-wcj-currency.php:88
976
- msgid "Ripple"
977
- msgstr ""
978
-
979
- #: includes/class-wcj-currency.php:89
980
- msgid "SixEleven"
981
- msgstr ""
982
-
983
- #: includes/class-wcj-currency.php:90
984
- msgid "Synereo AMP"
985
- msgstr ""
986
-
987
- #: includes/class-wcj-currency.php:91
988
- msgid "Titcoin"
989
- msgstr ""
990
-
991
- #: includes/class-wcj-currency.php:92
992
- msgid "Ubiq"
993
- msgstr ""
994
-
995
- #: includes/class-wcj-currency.php:93
996
- msgid "Vertcoin"
997
- msgstr ""
998
-
999
- #: includes/class-wcj-currency.php:94
1000
- msgid "Zcash"
1001
- msgstr ""
1002
-
1003
- #: includes/class-wcj-currency.php:96
1004
- msgid "Special Drawing Rights"
1005
- msgstr ""
1006
-
1007
- #: includes/class-wcj-currency.php:98
1008
- msgid "myCred"
1009
- msgstr ""
1010
-
1011
- #: includes/class-wcj-currency.php:174
1012
- msgid "Booster: Currency Symbol"
1013
- msgstr ""
1014
-
1015
- #: includes/class-wcj-currency.php:175
1016
- msgid "This sets the currency symbol."
1017
- msgstr ""
1018
-
1019
- #: includes/class-wcj-custom-css.php:28
1020
- msgid "Custom CSS"
1021
- msgstr ""
1022
-
1023
- #: includes/class-wcj-custom-css.php:29
1024
- msgid "Separate custom CSS for front and back end. Per product CSS."
1025
- msgstr ""
1026
-
1027
- #: includes/class-wcj-custom-js.php:27
1028
- msgid "Custom JS"
1029
- msgstr ""
1030
-
1031
- #: includes/class-wcj-custom-js.php:28
1032
- msgid "Separate custom JS for front and back end."
1033
- msgstr ""
1034
-
1035
- #: includes/class-wcj-custom-php.php:27
1036
- #: includes/settings/wcj-settings-custom-php.php:21
1037
- msgid "Custom PHP"
1038
- msgstr ""
1039
-
1040
- #: includes/class-wcj-custom-php.php:28
1041
- msgid "Custom PHP tool."
1042
- msgstr ""
1043
-
1044
- #: includes/class-wcj-custom-php.php:30
1045
- #, php-format
1046
- msgid ""
1047
- "Please note that if you enable the module and enter non-valid PHP code here, "
1048
- "your site will become unavailable. To fix this you will have to add %s "
1049
- "attribute to the URL (you must be logged as shop manager or admin (for this "
1050
- "reason custom PHP code is not executed on %s page))."
1051
- msgstr ""
1052
-
1053
- #: includes/class-wcj-custom-php.php:32
1054
- #: includes/settings/wcj-settings-multicurrency.php:161
1055
- #: includes/settings/wcj-settings-offer-price.php:84
1056
- #, php-format
1057
- msgid "E.g.: %s"
1058
- msgstr ""
1059
-
1060
- #: includes/class-wcj-debug-tools.php:25
1061
- msgid "Debug Tools"
1062
- msgstr ""
1063
-
1064
- #: includes/class-wcj-debug-tools.php:26
1065
- msgid "Booster for WooCommerce debug and log tools."
1066
- msgstr ""
1067
-
1068
- #: includes/class-wcj-debug-tools.php:32
1069
- #: includes/settings/wcj-settings-debug-tools.php:19
1070
- msgid "Log"
1071
- msgstr ""
1072
-
1073
- #: includes/class-wcj-debug-tools.php:33
1074
- msgid "Log."
1075
- msgstr ""
1076
-
1077
- #: includes/class-wcj-debug-tools.php:55
1078
- msgid "Delete Log"
1079
- msgstr ""
1080
-
1081
- #: includes/class-wcj-debug-tools.php:58
1082
- #, php-format
1083
- msgid "Now: %s"
1084
- msgstr ""
1085
-
1086
- #: includes/class-wcj-debug-tools.php:62
1087
- msgid "Log is empty."
1088
- msgstr ""
1089
-
1090
- #: includes/class-wcj-debug-tools.php:93
1091
- msgid "NOT DEFINED"
1092
- msgstr ""
1093
-
1094
- #: includes/class-wcj-email-options.php:26
1095
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
1096
- #: includes/settings/wcj-settings-emails-verification.php:115
1097
- #: includes/settings/wcj-settings-offer-price.php:309
1098
- msgid "Email Options"
1099
- msgstr ""
1100
-
1101
- #: includes/class-wcj-email-options.php:27
1102
- msgid ""
1103
- "WooCommerce email options. E.g.: add another email recipient(s) to all "
1104
- "WooCommerce emails."
1105
- msgstr ""
1106
-
1107
- #: includes/class-wcj-email-options.php:110
1108
- msgid "Booster: Email Forwarding Options"
1109
- msgstr ""
1110
-
1111
- #: includes/class-wcj-email-options.php:111
1112
- msgid "Email Forwarding Options"
1113
- msgstr ""
1114
-
1115
- #: includes/class-wcj-email-options.php:113
1116
- msgid ""
1117
- "This section lets you add another email recipient(s) to all WooCommerce "
1118
- "emails. Leave blank to disable."
1119
- msgstr ""
1120
-
1121
- #: includes/class-wcj-email-options.php:117
1122
- msgid "Cc Email"
1123
- msgstr ""
1124
-
1125
- #: includes/class-wcj-email-options.php:118
1126
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
1127
- msgstr ""
1128
-
1129
- #: includes/class-wcj-email-options.php:124
1130
- msgid "Bcc Email"
1131
- msgstr ""
1132
-
1133
- #: includes/class-wcj-email-options.php:125
1134
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
1135
- msgstr ""
1136
-
1137
- #: includes/class-wcj-email-options.php:131
1138
- msgid "Orders Emails: Enable for Statuses"
1139
- msgstr ""
1140
-
1141
- #: includes/class-wcj-email-options.php:133
1142
- msgid ""
1143
- "If you want to forward emails for certain orders only, set order statuses "
1144
- "here. Leave blank to send for all orders statuses."
1145
- msgstr ""
1146
-
1147
- #: includes/class-wcj-emails-verification.php:25
1148
- msgid "Email Verification"
1149
- msgstr ""
1150
-
1151
- #: includes/class-wcj-emails-verification.php:26
1152
- msgid "Add WooCommerce email verification."
1153
- msgstr ""
1154
-
1155
- #: includes/class-wcj-emails-verification.php:70
1156
- msgid "Verified"
1157
- msgstr ""
1158
-
1159
- #: includes/class-wcj-emails-verification.php:83
1160
- msgid "Email verified"
1161
- msgstr ""
1162
-
1163
- #: includes/class-wcj-emails-verification.php:84
1164
- msgid "Email not verified"
1165
- msgstr ""
1166
-
1167
- #: includes/class-wcj-emails-verification.php:122
1168
- #: includes/settings/wcj-settings-emails-verification.php:78
1169
- msgid ""
1170
- "Your account has to be activated before you can login. You can resend email "
1171
- "with verification link by clicking <a href=\"%resend_verification_url%"
1172
- "\">here</a>."
1173
- msgstr ""
1174
-
1175
- #: includes/class-wcj-emails-verification.php:142
1176
- #: includes/class-wcj-emails-verification.php:144
1177
- #: includes/settings/wcj-settings-emails-verification.php:133
1178
- msgid ""
1179
- "Please click the following link to verify your email:<br><br><a href="
1180
- "\"%verification_url%\">%verification_url%</a>"
1181
- msgstr ""
1182
-
1183
- #: includes/class-wcj-emails-verification.php:147
1184
- #: includes/class-wcj-emails-verification.php:149
1185
- #: includes/settings/wcj-settings-emails-verification.php:123
1186
- msgid "Please activate your account"
1187
- msgstr ""
1188
-
1189
- #: includes/class-wcj-emails-verification.php:154
1190
- #: includes/settings/wcj-settings-emails-verification.php:155
1191
- msgid "Activate your account"
1192
- msgstr ""
1193
-
1194
- #: includes/class-wcj-emails-verification.php:171
1195
- #: includes/settings/wcj-settings-emails-verification.php:70
1196
- msgid "<strong>Success:</strong> Your account has been activated!"
1197
- msgstr ""
1198
-
1199
- #: includes/class-wcj-emails-verification.php:188
1200
- #: includes/settings/wcj-settings-emails-verification.php:86
1201
- msgid ""
1202
- "<strong>Error:</strong> Activation failed, please contact our administrator. "
1203
- "You can resend email with verification link by clicking <a href="
1204
- "\"%resend_verification_url%\">here</a>."
1205
- msgstr ""
1206
-
1207
- #: includes/class-wcj-emails-verification.php:195
1208
- #: includes/settings/wcj-settings-emails-verification.php:93
1209
- msgid ""
1210
- "<strong>Error:</strong> Activation failed, please contact our administrator."
1211
- msgstr ""
1212
-
1213
- #: includes/class-wcj-emails-verification.php:200
1214
- #: includes/settings/wcj-settings-emails-verification.php:100
1215
- msgid ""
1216
- "Thank you for your registration. Your account has to be activated before you "
1217
- "can login. Please check your email."
1218
- msgstr ""
1219
-
1220
- #: includes/class-wcj-emails-verification.php:204
1221
- #: includes/settings/wcj-settings-emails-verification.php:107
1222
- msgid ""
1223
- "<strong>Success:</strong> Your activation email has been resent. Please "
1224
- "check your email."
1225
- msgstr ""
1226
-
1227
- #: includes/class-wcj-emails.php:23
1228
- #: includes/settings/wcj-settings-emails.php:14
1229
- msgid "Custom Emails"
1230
- msgstr ""
1231
-
1232
- #: includes/class-wcj-emails.php:24
1233
- msgid "Add custom emails to WooCommerce."
1234
- msgstr ""
1235
-
1236
- #: includes/class-wcj-emails.php:57
1237
- #, php-format
1238
- msgid "Booster: Emails: %s manually sent."
1239
- msgstr ""
1240
-
1241
- #: includes/class-wcj-emails.php:58 includes/class-wcj-emails.php:76
1242
- #: includes/emails/class-wc-email-wcj-custom.php:30
1243
- #: includes/settings/wcj-settings-emails.php:37
1244
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:36
1245
- #: includes/settings/wcj-settings-shipping.php:63
1246
- #: includes/shipping/class-wc-shipping-wcj-custom.php:37
1247
- msgid "Custom"
1248
- msgstr ""
1249
-
1250
- #: includes/class-wcj-emails.php:75
1251
- #, php-format
1252
- msgid "Booster: Send Email: %s"
1253
- msgstr ""
1254
-
1255
- #: includes/class-wcj-empty-cart-button.php:25
1256
- #: includes/shortcodes/class-wcj-shortcodes-general.php:517
1257
- msgid "Empty Cart Button"
1258
- msgstr ""
1259
-
1260
- #: includes/class-wcj-empty-cart-button.php:26
1261
- msgid ""
1262
- "Add (and customize) \"Empty Cart\" button to the cart and checkout pages."
1263
- msgstr ""
1264
-
1265
- #: includes/class-wcj-eu-vat-number.php:25
1266
- #: includes/class-wcj-eu-vat-number.php:264
1267
- #: includes/settings/wcj-settings-eu-vat-number.php:22
1268
- #: includes/settings/wcj-settings-eu-vat-number.php:29
1269
- msgid "EU VAT Number"
1270
- msgstr ""
1271
-
1272
- #: includes/class-wcj-eu-vat-number.php:26
1273
- msgid ""
1274
- "Collect and validate EU VAT numbers on the checkout. Automatically disable "
1275
- "VAT for valid numbers. Add all EU countries VAT standard rates to "
1276
- "WooCommerce."
1277
- msgstr ""
1278
-
1279
- #: includes/class-wcj-eu-vat-number.php:32
1280
- msgid "EU Countries VAT Rates"
1281
- msgstr ""
1282
-
1283
- #: includes/class-wcj-eu-vat-number.php:33
1284
- msgid "Add all EU countries VAT standard rates to WooCommerce."
1285
- msgstr ""
1286
-
1287
- #: includes/class-wcj-eu-vat-number.php:178
1288
- msgid "Customer IP"
1289
- msgstr ""
1290
-
1291
- #: includes/class-wcj-eu-vat-number.php:182 includes/class-wcj-orders.php:153
1292
- #: includes/settings/wcj-settings-orders.php:126
1293
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:27
1294
- msgid "Country by IP"
1295
- msgstr ""
1296
-
1297
- #: includes/class-wcj-eu-vat-number.php:186
1298
- msgid "Customer EU VAT Number"
1299
- msgstr ""
1300
-
1301
- #: includes/class-wcj-eu-vat-number.php:196
1302
- msgid "Validate VAT and remove taxes"
1303
- msgstr ""
1304
-
1305
- #: includes/class-wcj-eu-vat-number.php:336
1306
- #: includes/settings/wcj-settings-eu-vat-number.php:165
1307
- msgid "Validating VAT. Please wait..."
1308
- msgstr ""
1309
-
1310
- #: includes/class-wcj-eu-vat-number.php:337
1311
- #: includes/settings/wcj-settings-eu-vat-number.php:172
1312
- msgid "VAT is valid."
1313
- msgstr ""
1314
-
1315
- #: includes/class-wcj-eu-vat-number.php:338
1316
- #: includes/settings/wcj-settings-eu-vat-number.php:179
1317
- msgid "VAT is not valid."
1318
- msgstr ""
1319
-
1320
- #: includes/class-wcj-eu-vat-number.php:339
1321
- #: includes/settings/wcj-settings-eu-vat-number.php:187
1322
- msgid "Validation failed. Please try again."
1323
- msgstr ""
1324
-
1325
- #: includes/class-wcj-eu-vat-number.php:436
1326
- #: includes/settings/wcj-settings-eu-vat-number.php:83
1327
- msgid "<strong>EU VAT Number</strong> is not valid."
1328
- msgstr ""
1329
-
1330
- #: includes/class-wcj-export-import.php:26
1331
- #: includes/admin/class-wc-settings-jetpack.php:294
1332
- msgid "Export"
1333
- msgstr ""
1334
-
1335
- #: includes/class-wcj-export-import.php:27
1336
- msgid "WooCommerce export tools."
1337
- msgstr ""
1338
-
1339
- #: includes/class-wcj-export-import.php:33
1340
- msgid "Export Customers"
1341
- msgstr ""
1342
-
1343
- #: includes/class-wcj-export-import.php:34
1344
- msgid "Export Customers."
1345
- msgstr ""
1346
-
1347
- #: includes/class-wcj-export-import.php:37
1348
- msgid "Export Customers from Orders"
1349
- msgstr ""
1350
-
1351
- #: includes/class-wcj-export-import.php:38
1352
- msgid "Export Customers (extracted from orders)."
1353
- msgstr ""
1354
-
1355
- #: includes/class-wcj-export-import.php:39
1356
- msgid "Customers are identified by billing email."
1357
- msgstr ""
1358
-
1359
- #: includes/class-wcj-export-import.php:42
1360
- msgid "Export Orders"
1361
- msgstr ""
1362
-
1363
- #: includes/class-wcj-export-import.php:43
1364
- msgid "Export Orders."
1365
- msgstr ""
1366
-
1367
- #: includes/class-wcj-export-import.php:46
1368
- msgid "Export Orders Items"
1369
- msgstr ""
1370
-
1371
- #: includes/class-wcj-export-import.php:47
1372
- msgid "Export Orders Items."
1373
- msgstr ""
1374
-
1375
- #: includes/class-wcj-export-import.php:50
1376
- msgid "Export Products"
1377
- msgstr ""
1378
-
1379
- #: includes/class-wcj-export-import.php:51
1380
- msgid "Export Products."
1381
- msgstr ""
1382
-
1383
- #: includes/class-wcj-export-import.php:192
1384
- #: includes/class-wcj-export-import.php:198
1385
- msgid "Filter by Billing Country"
1386
- msgstr ""
1387
-
1388
- #: includes/class-wcj-export-import.php:193
1389
- msgid "Filter by Product Title"
1390
- msgstr ""
1391
-
1392
- #: includes/class-wcj-export-import.php:212
1393
- #: includes/reports/wcj-class-reports-sales-daily.php:189
1394
- #: includes/reports/wcj-class-reports-sales-gateways.php:137
1395
- #: includes/settings/wcj-settings-orders.php:45
1396
- msgid "Filter"
1397
- msgstr ""
1398
-
1399
- #: includes/class-wcj-export-import.php:232
1400
- #: includes/class-wcj-track-users.php:36
1401
- msgid "All time"
1402
- msgstr ""
1403
-
1404
- #: includes/class-wcj-export-import.php:246
1405
- msgid "Custom:"
1406
- msgstr ""
1407
-
1408
- #: includes/class-wcj-export-import.php:251
1409
- msgid "Go"
1410
- msgstr ""
1411
-
1412
- #: includes/class-wcj-export-import.php:271
1413
- msgid "Download CSV"
1414
- msgstr ""
1415
-
1416
- #: includes/class-wcj-export-import.php:274
1417
- msgid "Download XML"
1418
- msgstr ""
1419
-
1420
- #: includes/class-wcj-export-import.php:276
1421
- msgid "Filter by All Fields"
1422
- msgstr ""
1423
-
1424
- #: includes/class-wcj-free-price.php:26
1425
- msgid "Free Price Labels"
1426
- msgstr ""
1427
-
1428
- #: includes/class-wcj-free-price.php:27
1429
- msgid "Set free price labels."
1430
- msgstr ""
1431
-
1432
- #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
1433
- #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
1434
- #: includes/settings/wcj-settings-free-price.php:27
1435
- msgid "Free!"
1436
- msgstr ""
1437
-
1438
- #: includes/class-wcj-general.php:25
1439
- msgid "Booster for WooCommerce general front-end tools."
1440
- msgstr ""
1441
-
1442
- #: includes/class-wcj-general.php:31
1443
- msgid "Add/Manage Custom Roles"
1444
- msgstr ""
1445
-
1446
- #: includes/class-wcj-general.php:32
1447
- msgid "Custom Roles"
1448
- msgstr ""
1449
-
1450
- #: includes/class-wcj-general.php:33
1451
- msgid "Manage Custom Roles."
1452
- msgstr ""
1453
-
1454
- #: includes/class-wcj-general.php:46
1455
- #, php-format
1456
- msgid "Current PHP memory limit: %s."
1457
- msgstr ""
1458
-
1459
- #: includes/class-wcj-general.php:52
1460
- #, php-format
1461
- msgid "Current PHP time limit: %s seconds."
1462
- msgstr ""
1463
-
1464
- #: includes/class-wcj-general.php:123
1465
- msgid "Booster User Role"
1466
- msgstr ""
1467
-
1468
- #: includes/class-wcj-general.php:184
1469
- msgid "All fields are required!"
1470
- msgstr ""
1471
-
1472
- #: includes/class-wcj-general.php:188
1473
- msgid "Role ID must not be numbers only!"
1474
- msgstr ""
1475
-
1476
- #: includes/class-wcj-general.php:197
1477
- msgid "Role successfully added!"
1478
- msgstr ""
1479
-
1480
- #: includes/class-wcj-general.php:199
1481
- msgid "Role already exists!"
1482
- msgstr ""
1483
-
1484
- #: includes/class-wcj-general.php:212
1485
- #, php-format
1486
- msgid "Role %s successfully deleted!"
1487
- msgstr ""
1488
-
1489
- #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:233
1490
- #: includes/class-wcj-sku.php:536
1491
- #: includes/reports/wcj-class-reports-sales.php:196
1492
- #: includes/settings/wcj-settings-cross-sells.php:43
1493
- #: includes/settings/wcj-settings-order-numbers.php:150
1494
- #: includes/settings/wcj-settings-product-by-user.php:161
1495
- #: includes/settings/wcj-settings-products-xml.php:221
1496
- #: includes/settings/wcj-settings-related-products.php:30
1497
- #: includes/settings/wcj-settings-upsells.php:43
1498
- msgid "ID"
1499
- msgstr ""
1500
-
1501
- #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:234
1502
- #: includes/class-wcj-offer-price.php:167
1503
- #: includes/export/class-wcj-fields-helper.php:282
1504
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
1505
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
1506
- msgid "Name"
1507
- msgstr ""
1508
-
1509
- #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:235
1510
- msgid "Capabilities"
1511
- msgstr ""
1512
-
1513
- #: includes/class-wcj-general.php:218
1514
- #: includes/class-wcj-product-by-user.php:197
1515
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:107
1516
- #: includes/tools/class-wcj-order-statuses-tool.php:145
1517
- #: includes/tools/class-wcj-order-statuses-tool.php:221
1518
- msgid "Actions"
1519
- msgstr ""
1520
-
1521
- #: includes/class-wcj-general.php:225
1522
- #: includes/class-wcj-payment-gateways.php:117
1523
- #: includes/class-wcj-product-bulk-meta-editor.php:367
1524
- #: includes/class-wcj-product-by-user.php:206
1525
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:140
1526
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:315
1527
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
1528
- #: includes/tools/class-wcj-order-statuses-tool.php:161
1529
- msgid "Delete"
1530
- msgstr ""
1531
-
1532
- #: includes/class-wcj-general.php:229
1533
- msgid "Existing Roles"
1534
- msgstr ""
1535
-
1536
- #: includes/class-wcj-general.php:236
1537
- msgid "Add New Role"
1538
- msgstr ""
1539
-
1540
- #: includes/class-wcj-general.php:239
1541
- #: includes/class-wcj-shipping-by-products.php:206
1542
- #: includes/settings/wcj-settings-admin-orders-list.php:134
1543
- #: includes/settings/wcj-settings-checkout-custom-fields.php:22
1544
- #: includes/settings/wcj-settings-checkout-custom-fields.php:29
1545
- #: includes/settings/wcj-settings-checkout-custom-fields.php:55
1546
- #: includes/settings/wcj-settings-checkout-custom-fields.php:217
1547
- #: includes/settings/wcj-settings-email-options.php:20
1548
- #: includes/settings/wcj-settings-eu-vat-number.php:157
1549
- #: includes/settings/wcj-settings-eu-vat-number.php:193
1550
- #: includes/settings/wcj-settings-export.php:27
1551
- #: includes/settings/wcj-settings-order-custom-statuses.php:29
1552
- #: includes/settings/wcj-settings-order-custom-statuses.php:37
1553
- #: includes/settings/wcj-settings-order-custom-statuses.php:70
1554
- #: includes/settings/wcj-settings-order-custom-statuses.php:97
1555
- #: includes/settings/wcj-settings-order-min-amount.php:53
1556
- #: includes/settings/wcj-settings-orders.php:132
1557
- #: includes/settings/wcj-settings-orders.php:159
1558
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:132
1559
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:190
1560
- #: includes/settings/wcj-settings-product-by-condition.php:107
1561
- #: includes/settings/wcj-settings-product-by-user.php:114
1562
- #: includes/settings/wcj-settings-product-open-pricing.php:123
1563
- #: includes/settings/wcj-settings-product-tabs.php:247
1564
- #: includes/settings/wcj-settings-purchase-data.php:145
1565
- #: includes/settings/wcj-settings-purchase-data.php:154
1566
- #: includes/settings/wcj-settings-purchase-data.php:173
1567
- #: includes/settings/wcj-settings-purchase-data.php:180
1568
- #: includes/settings/wcj-settings-sku.php:240
1569
- #: includes/settings/wcj-settings-sku.php:267
1570
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
1571
- #: includes/tools/class-wcj-order-statuses-tool.php:236
1572
- msgid "Add"
1573
- msgstr ""
1574
-
1575
- #: includes/class-wcj-global-discount.php:27
1576
- #: includes/admin/class-wc-settings-jetpack.php:486
1577
- #: includes/settings/wcj-settings-product-addons.php:245
1578
- msgid "Global Discount"
1579
- msgstr ""
1580
-
1581
- #: includes/class-wcj-global-discount.php:28
1582
- msgid "Add global discount to all products."
1583
- msgstr ""
1584
-
1585
- #: includes/class-wcj-left-to-free-shipping.php:25
1586
- msgid "Left to Free Shipping"
1587
- msgstr ""
1588
-
1589
- #: includes/class-wcj-left-to-free-shipping.php:26
1590
- msgid "Display \"left to free shipping\" info."
1591
- msgstr ""
1592
-
1593
- #: includes/class-wcj-left-to-free-shipping.php:62
1594
- #: includes/class-wcj-left-to-free-shipping.php:72
1595
- #: includes/class-wcj-left-to-free-shipping.php:82
1596
- #: includes/functions/wcj-functions-shipping.php:285
1597
- #: includes/settings/wcj-settings-left-to-free-shipping.php:37
1598
- #: includes/settings/wcj-settings-left-to-free-shipping.php:68
1599
- #: includes/settings/wcj-settings-left-to-free-shipping.php:102
1600
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:61
1601
- #, php-format
1602
- msgid "%left_to_free% left to free shipping"
1603
- msgstr ""
1604
-
1605
- #: includes/class-wcj-max-products-per-user.php:30
1606
- msgid "Maximum Products per User"
1607
- msgstr ""
1608
-
1609
- #: includes/class-wcj-max-products-per-user.php:31
1610
- msgid "Limit number of items your (logged) customers can buy."
1611
- msgstr ""
1612
-
1613
- #: includes/class-wcj-max-products-per-user.php:32
1614
- msgid ""
1615
- "Please note, that there is no maximum quantity set for not-logged (i.e. "
1616
- "guest) users. Product quantities are updated, when order status is changed "
1617
- "to status listed in module's \"Order Status\" option."
1618
- msgstr ""
1619
-
1620
- #: includes/class-wcj-max-products-per-user.php:113
1621
- #: includes/class-wcj-max-products-per-user.php:332
1622
- #: includes/settings/wcj-settings-max-products-per-user.php:74
1623
- msgid ""
1624
- "You can only buy maximum %max_qty% pcs. of %product_title% (you already "
1625
- "bought %qty_already_bought% pcs.)."
1626
- msgstr ""
1627
-
1628
- #: includes/class-wcj-max-products-per-user.php:131
1629
- msgid "Data re-calculated."
1630
- msgstr ""
1631
-
1632
- #: includes/class-wcj-max-products-per-user.php:132
1633
- #, php-format
1634
- msgid "%s order(s) processed."
1635
- msgstr ""
1636
-
1637
- #: includes/class-wcj-max-products-per-user.php:184
1638
- msgid "Maximum Products per User: Sales Data"
1639
- msgstr ""
1640
-
1641
- #: includes/class-wcj-max-products-per-user.php:201
1642
- msgid "User ID"
1643
- msgstr ""
1644
-
1645
- #: includes/class-wcj-max-products-per-user.php:201
1646
- msgid "User Name"
1647
- msgstr ""
1648
-
1649
- #: includes/class-wcj-max-products-per-user.php:201
1650
- msgid "Qty Bought"
1651
- msgstr ""
1652
-
1653
- #: includes/class-wcj-max-products-per-user.php:204
1654
- #: includes/functions/wcj-functions-users.php:159
1655
- #: includes/functions/wcj-functions-users.php:182
1656
- msgid "Guest"
1657
- msgstr ""
1658
-
1659
- #: includes/class-wcj-max-products-per-user.php:213
1660
- msgid "No data yet."
1661
- msgstr ""
1662
-
1663
- #: includes/class-wcj-mini-cart.php:24
1664
- msgid "Mini Cart Custom Info"
1665
- msgstr ""
1666
-
1667
- #: includes/class-wcj-mini-cart.php:25
1668
- msgid "Add custom info to the mini cart widget."
1669
- msgstr ""
1670
-
1671
- #: includes/class-wcj-modules-by-user-roles.php:26
1672
- msgid "Enable/disable Booster for WooCommerce modules by user roles."
1673
- msgstr ""
1674
-
1675
- #: includes/class-wcj-more-button-labels.php:24
1676
- msgid "More Button Labels"
1677
- msgstr ""
1678
-
1679
- #: includes/class-wcj-more-button-labels.php:25
1680
- msgid "Set \"Place order\" button label."
1681
- msgstr ""
1682
-
1683
- #: includes/class-wcj-multicurrency-product-base-price.php:25
1684
- #: includes/settings/wcj-settings-product-addons.php:243
1685
- msgid "Multicurrency Product Base Price"
1686
- msgstr ""
1687
-
1688
- #: includes/class-wcj-multicurrency-product-base-price.php:26
1689
- msgid "Enter prices for products in different currencies."
1690
- msgstr ""
1691
-
1692
- #: includes/class-wcj-multicurrency.php:30
1693
- #: includes/settings/wcj-settings-product-addons.php:244
1694
- msgid "Multicurrency (Currency Switcher)"
1695
- msgstr ""
1696
-
1697
- #: includes/class-wcj-multicurrency.php:31
1698
- msgid "Add multiple currencies (currency switcher) to WooCommerce."
1699
- msgstr ""
1700
-
1701
- #: includes/class-wcj-multicurrency.php:33
1702
- #, php-format
1703
- msgid ""
1704
- "After setting currencies in the Currencies Options section below, you can "
1705
- "add switcher to the frontend with: %s"
1706
- msgstr ""
1707
-
1708
- #: includes/class-wcj-multicurrency.php:35
1709
- #, php-format
1710
- msgid "<strong>Widget:</strong> \"%s\""
1711
- msgstr ""
1712
-
1713
- #: includes/class-wcj-multicurrency.php:36
1714
- #: includes/widgets/class-wcj-widget-multicurrency.php:27
1715
- msgid "Booster - Multicurrency Switcher"
1716
- msgstr ""
1717
-
1718
- #: includes/class-wcj-multicurrency.php:38
1719
- #, php-format
1720
- msgid "<strong>Shortcodes:</strong> %s"
1721
- msgstr ""
1722
-
1723
- #: includes/class-wcj-multicurrency.php:41
1724
- #, php-format
1725
- msgid "<strong>PHP code:</strong> by using %s function, e.g.: %s"
1726
- msgstr ""
1727
-
1728
- #: includes/class-wcj-my-account.php:27
1729
- msgid "My Account"
1730
- msgstr ""
1731
-
1732
- #: includes/class-wcj-my-account.php:28
1733
- msgid "WooCommerce \"My Account\" page customization."
1734
- msgstr ""
1735
-
1736
- #: includes/class-wcj-my-account.php:35 includes/class-wcj-my-account.php:44
1737
- msgid "Downloads"
1738
- msgstr ""
1739
-
1740
- #: includes/class-wcj-my-account.php:36 includes/class-wcj-my-account.php:46
1741
- msgid "Addresses"
1742
- msgstr ""
1743
-
1744
- #: includes/class-wcj-my-account.php:37 includes/class-wcj-my-account.php:47
1745
- #: includes/settings/wcj-settings-orders.php:112
1746
- msgid "Payment methods"
1747
- msgstr ""
1748
-
1749
- #: includes/class-wcj-my-account.php:38 includes/class-wcj-my-account.php:45
1750
- msgid "Account details"
1751
- msgstr ""
1752
-
1753
- #: includes/class-wcj-my-account.php:39 includes/class-wcj-my-account.php:49
1754
- msgid "Logout"
1755
- msgstr ""
1756
-
1757
- #: includes/class-wcj-my-account.php:43
1758
- #: includes/settings/wcj-settings-my-account.php:302
1759
- msgid "View order"
1760
- msgstr ""
1761
-
1762
- #: includes/class-wcj-my-account.php:45
1763
- msgid "Edit account"
1764
- msgstr ""
1765
-
1766
- #: includes/class-wcj-my-account.php:48
1767
- msgid "Lost password"
1768
- msgstr ""
1769
-
1770
- #: includes/class-wcj-my-account.php:227
1771
- #, php-format
1772
- msgid "Hello %1$s (not %1$s? <a href=\"%2$s\">Log out</a>)"
1773
- msgstr ""
1774
-
1775
- #: includes/class-wcj-my-account.php:237
1776
- #, php-format
1777
- msgid ""
1778
- "From your account dashboard you can view your <a href=\"%1$s\">recent "
1779
- "orders</a>, manage your <a href=\"%2$s\">shipping and billing addresses</a>, "
1780
- "and <a href=\"%3$s\">edit your password and account details</a>."
1781
- msgstr ""
1782
-
1783
- #: includes/class-wcj-my-account.php:343
1784
- msgid "User role"
1785
- msgstr ""
1786
-
1787
- #: includes/class-wcj-my-account.php:423
1788
- #: includes/class-wcj-product-bulk-meta-editor.php:279
1789
- #: includes/class-wcj-product-by-user.php:206
1790
- #: includes/class-wcj-purchase-data.php:94
1791
- #: includes/class-wcj-track-users.php:334
1792
- #: includes/classes/class-wcj-module.php:690
1793
- #: includes/functions/wcj-functions-general.php:189
1794
- #: includes/functions/wcj-functions-html.php:117
1795
- #: includes/reports/wcj-class-reports-monthly-sales.php:351
1796
- #: includes/settings/wcj-settings-empty-cart.php:85
1797
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
1798
- #: includes/tools/class-wcj-order-statuses-tool.php:161
1799
- #: includes/tools/class-wcj-order-statuses-tool.php:269
1800
- msgid "Are you sure?"
1801
- msgstr ""
1802
-
1803
- #: includes/class-wcj-offer-price.php:36
1804
- msgid "Offer Your Price"
1805
- msgstr ""
1806
-
1807
- #: includes/class-wcj-offer-price.php:37
1808
- msgid "Let your customers to suggest their price for products."
1809
- msgstr ""
1810
-
1811
- #: includes/class-wcj-offer-price.php:148
1812
- msgid "Booster: Offer Price History"
1813
- msgstr ""
1814
-
1815
- #: includes/class-wcj-offer-price.php:164
1816
- #: includes/functions/wcj-functions-reports.php:21
1817
- #: includes/settings/wcj-settings-cross-sells.php:44
1818
- #: includes/settings/wcj-settings-order-numbers.php:151
1819
- #: includes/settings/wcj-settings-products-xml.php:220
1820
- #: includes/settings/wcj-settings-related-products.php:23
1821
- #: includes/settings/wcj-settings-upsells.php:44
1822
- msgid "Date"
1823
- msgstr ""
1824
-
1825
- #: includes/class-wcj-offer-price.php:165
1826
- #: includes/export/class-wcj-fields-helper.php:288
1827
- #: includes/reports/wcj-class-reports-stock.php:271
1828
- #: includes/settings/wcj-settings-cross-sells.php:47
1829
- #: includes/settings/wcj-settings-product-add-to-cart.php:302
1830
- #: includes/settings/wcj-settings-related-products.php:33
1831
- #: includes/settings/wcj-settings-upsells.php:47
1832
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
1833
- msgid "Price"
1834
- msgstr ""
1835
-
1836
- #: includes/class-wcj-offer-price.php:166
1837
- #: includes/settings/wcj-settings-coupon-by-user-role.php:60
1838
- #: includes/settings/wcj-settings-currency-per-product.php:41
1839
- #: includes/settings/wcj-settings-currency-per-product.php:48
1840
- #: includes/settings/wcj-settings-order-quantities.php:231
1841
- #: includes/settings/wcj-settings-order-quantities.php:258
1842
- #: includes/settings/wcj-settings-product-by-time.php:69
1843
- msgid "Message"
1844
- msgstr ""
1845
-
1846
- #: includes/class-wcj-offer-price.php:168
1847
- #: includes/export/class-wcj-fields-helper.php:75
1848
- #: includes/input-fields/wcj-product-input-fields-options.php:45
1849
- #: includes/reports/wcj-class-reports-customers.php:93
1850
- #: includes/settings/wcj-settings-checkout-custom-fields.php:147
1851
- msgid "Email"
1852
- msgstr ""
1853
-
1854
- #: includes/class-wcj-offer-price.php:169
1855
- #: includes/export/class-wcj-fields-helper.php:74
1856
- msgid "Customer ID"
1857
- msgstr ""
1858
-
1859
- #: includes/class-wcj-offer-price.php:170
1860
- msgid "User IP"
1861
- msgstr ""
1862
-
1863
- #: includes/class-wcj-offer-price.php:171
1864
- msgid "User Agent"
1865
- msgstr ""
1866
-
1867
- #: includes/class-wcj-offer-price.php:172
1868
- msgid "Sent to"
1869
- msgstr ""
1870
-
1871
- #: includes/class-wcj-offer-price.php:184
1872
- msgid "No price offers yet."
1873
- msgstr ""
1874
-
1875
- #: includes/class-wcj-offer-price.php:240
1876
- #, php-format
1877
- msgid "Average offer: %s (from %s offer(s))"
1878
- msgstr ""
1879
-
1880
- #: includes/class-wcj-offer-price.php:247
1881
- msgid "Delete history"
1882
- msgstr ""
1883
-
1884
- #: includes/class-wcj-offer-price.php:248
1885
- msgid "Update product after checking the box."
1886
- msgstr ""
1887
-
1888
- #: includes/class-wcj-offer-price.php:322
1889
- #: includes/settings/wcj-settings-offer-price.php:163
1890
- #, php-format
1891
- msgid "Your price (%s)"
1892
- msgstr ""
1893
-
1894
- #: includes/class-wcj-offer-price.php:328
1895
- #: includes/settings/wcj-settings-offer-price.php:234
1896
- #, php-format
1897
- msgid "Suggest your price for %s"
1898
- msgstr ""
1899
-
1900
- #: includes/class-wcj-offer-price.php:383
1901
- #: includes/settings/wcj-settings-offer-price.php:202
1902
- msgid "Your email"
1903
- msgstr ""
1904
-
1905
- #: includes/class-wcj-offer-price.php:387
1906
- #: includes/settings/wcj-settings-offer-price.php:210
1907
- msgid "Your name"
1908
- msgstr ""
1909
-
1910
- #: includes/class-wcj-offer-price.php:391
1911
- #: includes/settings/wcj-settings-offer-price.php:218
1912
- msgid "Your message"
1913
- msgstr ""
1914
-
1915
- #: includes/class-wcj-offer-price.php:395
1916
- #: includes/settings/wcj-settings-offer-price.php:241
1917
- msgid "Send"
1918
- msgstr ""
1919
-
1920
- #: includes/class-wcj-offer-price.php:397
1921
- #: includes/settings/wcj-settings-offer-price.php:226
1922
- msgid "Send a copy to your email"
1923
- msgstr ""
1924
-
1925
- #: includes/class-wcj-offer-price.php:464
1926
- #: includes/settings/wcj-settings-offer-price.php:68
1927
- msgid "Make an offer"
1928
- msgstr ""
1929
-
1930
- #: includes/class-wcj-offer-price.php:522
1931
- #: includes/settings/wcj-settings-offer-price.php:340
1932
- #, php-format
1933
- msgid "Product: %s"
1934
- msgstr ""
1935
-
1936
- #: includes/class-wcj-offer-price.php:523
1937
- #: includes/settings/wcj-settings-offer-price.php:341
1938
- #, php-format
1939
- msgid "Offered price: %s"
1940
- msgstr ""
1941
-
1942
- #: includes/class-wcj-offer-price.php:524
1943
- #: includes/settings/wcj-settings-offer-price.php:342
1944
- #, php-format
1945
- msgid "From: %s %s"
1946
- msgstr ""
1947
-
1948
- #: includes/class-wcj-offer-price.php:525
1949
- #: includes/settings/wcj-settings-offer-price.php:343
1950
- #, php-format
1951
- msgid "Message: %s"
1952
- msgstr ""
1953
-
1954
- #: includes/class-wcj-offer-price.php:538
1955
- #: includes/settings/wcj-settings-offer-price.php:331
1956
- msgid "Price Offer"
1957
- msgstr ""
1958
-
1959
- #: includes/class-wcj-offer-price.php:548
1960
- #: includes/settings/wcj-settings-offer-price.php:262
1961
- msgid "Your price offer has been sent."
1962
- msgstr ""
1963
-
1964
- #: includes/class-wcj-old-slugs.php:23
1965
- msgid "Old Slugs"
1966
- msgstr ""
1967
-
1968
- #: includes/class-wcj-old-slugs.php:24
1969
- msgid "Remove old products slugs."
1970
- msgstr ""
1971
-
1972
- #: includes/class-wcj-old-slugs.php:30
1973
- msgid "Remove Old Slugs"
1974
- msgstr ""
1975
-
1976
- #: includes/class-wcj-old-slugs.php:31
1977
- msgid "Tool removes old slugs/permalinks from database."
1978
- msgstr ""
1979
-
1980
- #: includes/class-wcj-old-slugs.php:48
1981
- msgid "Old slug"
1982
- msgstr ""
1983
-
1984
- #: includes/class-wcj-old-slugs.php:49
1985
- msgid "Post title"
1986
- msgstr ""
1987
-
1988
- #: includes/class-wcj-old-slugs.php:50
1989
- msgid "Post id"
1990
- msgstr ""
1991
-
1992
- #: includes/class-wcj-old-slugs.php:51
1993
- msgid "Post type"
1994
- msgstr ""
1995
-
1996
- #: includes/class-wcj-old-slugs.php:52
1997
- msgid "Current slug"
1998
- msgstr ""
1999
-
2000
- #: includes/class-wcj-old-slugs.php:85
2001
- #, php-format
2002
- msgid ""
2003
- "Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
2004
- "deleted."
2005
- msgstr ""
2006
-
2007
- #: includes/class-wcj-old-slugs.php:87
2008
- msgid "Please <a href=\"\">refresh</a> the page."
2009
- msgstr ""
2010
-
2011
- #: includes/class-wcj-old-slugs.php:107
2012
- msgid "Old products slugs found:"
2013
- msgstr ""
2014
-
2015
- #: includes/class-wcj-old-slugs.php:110
2016
- msgid "Remove all old product slugs"
2017
- msgstr ""
2018
-
2019
- #: includes/class-wcj-old-slugs.php:113
2020
- msgid "Old non-products slugs found:"
2021
- msgstr ""
2022
-
2023
- #: includes/class-wcj-old-slugs.php:116
2024
- msgid "Remove all old non-product slugs"
2025
- msgstr ""
2026
-
2027
- #: includes/class-wcj-old-slugs.php:130
2028
- msgid "No old slugs found."
2029
- msgstr ""
2030
-
2031
- #: includes/class-wcj-order-custom-statuses.php:26
2032
- msgid "Order Custom Statuses"
2033
- msgstr ""
2034
-
2035
- #: includes/class-wcj-order-custom-statuses.php:27
2036
- msgid "Custom statuses for WooCommerce orders."
2037
- msgstr ""
2038
-
2039
- #: includes/class-wcj-order-custom-statuses.php:33
2040
- #: includes/settings/wcj-settings-order-custom-statuses.php:14
2041
- msgid "Custom Statuses"
2042
- msgstr ""
2043
-
2044
- #: includes/class-wcj-order-custom-statuses.php:34
2045
- msgid ""
2046
- "Tool lets you add, edit or delete any custom status for WooCommerce orders."
2047
- msgstr ""
2048
-
2049
- #: includes/class-wcj-order-custom-statuses.php:158
2050
- #, php-format
2051
- msgid "Change order status to %s"
2052
- msgstr ""
2053
-
2054
- #: includes/class-wcj-order-custom-statuses.php:168
2055
- msgid "Change status: "
2056
- msgstr ""
2057
-
2058
- #: includes/class-wcj-order-custom-statuses.php:208
2059
- msgid "Processing"
2060
- msgstr ""
2061
-
2062
- #: includes/class-wcj-order-custom-statuses.php:218
2063
- msgid "Complete"
2064
- msgstr ""
2065
-
2066
- #: includes/class-wcj-order-custom-statuses.php:323
2067
- #, php-format
2068
- msgid " <span class=\"count\">(%s)</span>"
2069
- msgid_plural " <span class=\"count\">(%s)</span>"
2070
- msgstr[0] ""
2071
- msgstr[1] ""
2072
-
2073
- #: includes/class-wcj-order-custom-statuses.php:397
2074
- #: includes/class-wcj-order-custom-statuses.php:399
2075
- msgid "Mark"
2076
- msgstr ""
2077
-
2078
- #: includes/class-wcj-order-min-amount.php:26
2079
- #: includes/settings/wcj-settings-order-min-amount.php:14
2080
- msgid "Order Minimum Amount"
2081
- msgstr ""
2082
-
2083
- #: includes/class-wcj-order-min-amount.php:27
2084
- msgid "Minimum order amount (optionally by user role)."
2085
- msgstr ""
2086
-
2087
- #: includes/class-wcj-order-numbers.php:25
2088
- #: includes/settings/wcj-settings-order-numbers.php:15
2089
- msgid "Order Numbers"
2090
- msgstr ""
2091
-
2092
- #: includes/class-wcj-order-numbers.php:26
2093
- msgid ""
2094
- "Sequential order numbering, custom order number prefix, suffix and number "
2095
- "width."
2096
- msgstr ""
2097
-
2098
- #: includes/class-wcj-order-numbers.php:32
2099
- msgid "Orders Renumerate"
2100
- msgstr ""
2101
-
2102
- #: includes/class-wcj-order-numbers.php:33
2103
- msgid "Tool renumerates all orders."
2104
- msgstr ""
2105
-
2106
- #: includes/class-wcj-order-numbers.php:244
2107
- msgid "Orders successfully renumerated!"
2108
- msgstr ""
2109
-
2110
- #: includes/class-wcj-order-numbers.php:247
2111
- #, php-format
2112
- msgid "Sequential number generation is enabled. Next order number will be %s."
2113
- msgstr ""
2114
-
2115
- #: includes/class-wcj-order-numbers.php:256
2116
- #, php-format
2117
- msgid ""
2118
- "Press the button below to renumerate all existing orders starting from order "
2119
- "counter settings in <a href=\"%s\">Order Numbers</a> module."
2120
- msgstr ""
2121
-
2122
- #: includes/class-wcj-order-numbers.php:263
2123
- msgid "Renumerate orders"
2124
- msgstr ""
2125
-
2126
- #: includes/class-wcj-order-quantities.php:30
2127
- msgid "Order Quantities"
2128
- msgstr ""
2129
-
2130
- #: includes/class-wcj-order-quantities.php:31
2131
- msgid ""
2132
- "Manage product quantities in WooCommerce order: set min, max, step; enable "
2133
- "decimal quantities etc."
2134
- msgstr ""
2135
-
2136
- #: includes/class-wcj-order-quantities.php:260
2137
- #: includes/settings/wcj-settings-order-quantities.php:260
2138
- msgid ""
2139
- "Only one item can be added to the cart. Clear the cart or finish the order, "
2140
- "before adding another item to the cart."
2141
- msgstr ""
2142
-
2143
- #: includes/class-wcj-order-quantities.php:429
2144
- #: includes/settings/wcj-settings-order-quantities.php:160
2145
- msgid ""
2146
- "Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
2147
- "order quantity is %cart_total_quantity%."
2148
- msgstr ""
2149
-
2150
- #: includes/class-wcj-order-quantities.php:437
2151
- #: includes/settings/wcj-settings-order-quantities.php:102
2152
- msgid ""
2153
- "Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
2154
- "order quantity is %cart_total_quantity%."
2155
- msgstr ""
2156
-
2157
- #: includes/class-wcj-order-quantities.php:447
2158
- #: includes/settings/wcj-settings-order-quantities.php:186
2159
- msgid ""
2160
- "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
2161
- "Your current item quantity is %item_quantity%."
2162
- msgstr ""
2163
-
2164
- #: includes/class-wcj-order-quantities.php:457
2165
- #: includes/settings/wcj-settings-order-quantities.php:128
2166
- msgid ""
2167
- "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
2168
- "Your current item quantity is %item_quantity%."
2169
- msgstr ""
2170
-
2171
- #: includes/class-wcj-order-quantities.php:467
2172
- #: includes/settings/wcj-settings-order-quantities.php:234
2173
- msgid ""
2174
- "Required step for %product_title% is %required_step%. Your current item "
2175
- "quantity is %item_quantity%."
2176
- msgstr ""
2177
-
2178
- #: includes/class-wcj-orders.php:27
2179
- msgid ""
2180
- "Orders auto-complete; admin order currency; admin order navigation; bulk "
2181
- "regenerate download permissions for orders."
2182
- msgstr ""
2183
-
2184
- #: includes/class-wcj-orders.php:124
2185
- msgid "Order Navigation"
2186
- msgstr ""
2187
-
2188
- #: includes/class-wcj-orders.php:140
2189
- msgid "Previous order"
2190
- msgstr ""
2191
-
2192
- #: includes/class-wcj-orders.php:141
2193
- msgid "Next order"
2194
- msgstr ""
2195
-
2196
- #: includes/class-wcj-orders.php:180
2197
- msgid "No data."
2198
- msgstr ""
2199
-
2200
- #: includes/class-wcj-orders.php:225
2201
- msgid "Regenerate download permissions"
2202
- msgstr ""
2203
-
2204
- #: includes/class-wcj-orders.php:239
2205
- #, php-format
2206
- msgid "Download permissions regenerated for %s order."
2207
- msgid_plural "Download permissions regenerated for %s orders."
2208
- msgstr[0] ""
2209
- msgstr[1] ""
2210
-
2211
- #: includes/class-wcj-payment-gateways-by-country.php:24
2212
- msgid "Gateways by Country, State or Postcode"
2213
- msgstr ""
2214
-
2215
- #: includes/class-wcj-payment-gateways-by-country.php:25
2216
- msgid ""
2217
- "Set countries, states or postcodes to include/exclude for payment gateways "
2218
- "to show up."
2219
- msgstr ""
2220
-
2221
- #: includes/class-wcj-payment-gateways-by-currency.php:25
2222
- msgid "Gateways by Currency"
2223
- msgstr ""
2224
-
2225
- #: includes/class-wcj-payment-gateways-by-currency.php:26
2226
- msgid "Set allowed currencies for payment gateways to show up."
2227
- msgstr ""
2228
-
2229
- #: includes/class-wcj-payment-gateways-by-shipping.php:26
2230
- msgid "Gateways by Shipping"
2231
- msgstr ""
2232
-
2233
- #: includes/class-wcj-payment-gateways-by-shipping.php:27
2234
- msgid "Set \"enable for shipping methods\" for payment gateways."
2235
- msgstr ""
2236
-
2237
- #: includes/class-wcj-payment-gateways-by-user-role.php:25
2238
- msgid "Gateways by User Role"
2239
- msgstr ""
2240
-
2241
- #: includes/class-wcj-payment-gateways-by-user-role.php:26
2242
- msgid "Set user roles to include/exclude for payment gateways to show up."
2243
- msgstr ""
2244
-
2245
- #: includes/class-wcj-payment-gateways-currency.php:25
2246
- msgid "Gateways Currency Converter"
2247
- msgstr ""
2248
-
2249
- #: includes/class-wcj-payment-gateways-currency.php:26
2250
- msgid "Currency converter for payment gateways."
2251
- msgstr ""
2252
-
2253
- #: includes/class-wcj-payment-gateways-fees.php:25
2254
- msgid "Gateways Fees and Discounts"
2255
- msgstr ""
2256
-
2257
- #: includes/class-wcj-payment-gateways-fees.php:26
2258
- msgid "Enable extra fees or discounts for payment gateways."
2259
- msgstr ""
2260
-
2261
- #: includes/class-wcj-payment-gateways-icons.php:24
2262
- msgid "Gateways Icons"
2263
- msgstr ""
2264
-
2265
- #: includes/class-wcj-payment-gateways-icons.php:25
2266
- msgid ""
2267
- "Change or completely remove icons (images) for any (default or custom) "
2268
- "payment gateway."
2269
- msgstr ""
2270
-
2271
- #: includes/class-wcj-payment-gateways-min-max.php:25
2272
- msgid "Gateways Min/Max Amounts"
2273
- msgstr ""
2274
-
2275
- #: includes/class-wcj-payment-gateways-min-max.php:26
2276
- msgid "Add min/max amounts for payment gateways to show up."
2277
- msgstr ""
2278
-
2279
- #: includes/class-wcj-payment-gateways-min-max.php:51
2280
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
2281
- msgid "Minimum amount for %gateway_title% is %min_amount%"
2282
- msgstr ""
2283
-
2284
- #: includes/class-wcj-payment-gateways-min-max.php:52
2285
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
2286
- msgid "Maximum amount for %gateway_title% is %max_amount%"
2287
- msgstr ""
2288
-
2289
- #: includes/class-wcj-payment-gateways-per-category.php:26
2290
- #: includes/admin/class-wc-settings-jetpack.php:485
2291
- msgid "Gateways per Product or Category"
2292
- msgstr ""
2293
-
2294
- #: includes/class-wcj-payment-gateways-per-category.php:27
2295
- msgid ""
2296
- "Show payment gateway only if there is selected product or product category "
2297
- "in cart."
2298
- msgstr ""
2299
-
2300
- #: includes/class-wcj-payment-gateways.php:23
2301
- msgid "Custom Gateways"
2302
- msgstr ""
2303
-
2304
- #: includes/class-wcj-payment-gateways.php:24
2305
- msgid "Add multiple custom payment gateways to WooCommerce."
2306
- msgstr ""
2307
-
2308
- #: includes/class-wcj-payment-gateways.php:67
2309
- #, php-format
2310
- msgid "<strong>%s</strong> is a required field."
2311
- msgstr ""
2312
-
2313
- #: includes/class-wcj-payment-gateways.php:91
2314
- #, php-format
2315
- msgid "%s Fields"
2316
- msgstr ""
2317
-
2318
- #: includes/class-wcj-pdf-invoicing.php:23
2319
- #: includes/settings/wcj-settings-wpml.php:15
2320
- msgid "PDF Invoicing"
2321
- msgstr ""
2322
-
2323
- #: includes/class-wcj-pdf-invoicing.php:25
2324
- msgid "Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2325
- msgstr ""
2326
-
2327
- #: includes/class-wcj-pdf-invoicing.php:31
2328
- msgid "Invoices Renumerate"
2329
- msgstr ""
2330
-
2331
- #: includes/class-wcj-pdf-invoicing.php:32
2332
- msgid ""
2333
- "Tool renumerates all invoices, proforma invoices, credit notes and packing "
2334
- "slips."
2335
- msgstr ""
2336
-
2337
- #: includes/class-wcj-pdf-invoicing.php:35
2338
- msgid "Invoices Report"
2339
- msgstr ""
2340
-
2341
- #: includes/class-wcj-pdf-invoicing.php:36
2342
- msgid "Invoices Monthly Reports."
2343
- msgstr ""
2344
-
2345
- #: includes/class-wcj-pdf-invoicing.php:93
2346
- msgid "Generate"
2347
- msgstr ""
2348
-
2349
- #: includes/class-wcj-pdf-invoicing.php:94
2350
- msgid "Download (Zip)"
2351
- msgstr ""
2352
-
2353
- #: includes/class-wcj-pdf-invoicing.php:95
2354
- msgid "Merge (Print)"
2355
- msgstr ""
2356
-
2357
- #: includes/class-wcj-pdf-invoicing.php:117
2358
- #, php-format
2359
- msgid "Document generated."
2360
- msgid_plural "%s documents generated."
2361
- msgstr[0] ""
2362
- msgstr[1] ""
2363
-
2364
- #: includes/class-wcj-pdf-invoicing.php:124
2365
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:172
2366
- #, php-format
2367
- msgid ""
2368
- "Booster: %s class is not accessible on your server. Please contact your "
2369
- "hosting provider."
2370
- msgstr ""
2371
-
2372
- #: includes/class-wcj-pdf-invoicing.php:130
2373
- msgid "Booster: ZipArchive error."
2374
- msgstr ""
2375
-
2376
- #: includes/class-wcj-pdf-invoicing.php:135
2377
- msgid "Booster: Merge PDFs: No files."
2378
- msgstr ""
2379
-
2380
- #: includes/class-wcj-pdf-invoicing.php:140
2381
- #, php-format
2382
- msgid ""
2383
- "Booster: Merge PDFs: Command requires PHP version 5.3.0 at least. You have "
2384
- "PHP version %s installed."
2385
- msgstr ""
2386
-
2387
- #: includes/class-wcj-pdf-invoicing.php:145
2388
- #, php-format
2389
- msgid "Booster: %s."
2390
- msgstr ""
2391
-
2392
- #: includes/class-wcj-pdf-invoicing.php:438
2393
- msgid "You are not allowed to view the invoice."
2394
- msgstr ""
2395
-
2396
- #: includes/class-wcj-price-by-country.php:30
2397
- msgid "Prices and Currencies by Country"
2398
- msgstr ""
2399
-
2400
- #: includes/class-wcj-price-by-country.php:31
2401
- msgid "Change product price and currency automatically by customer's country."
2402
- msgstr ""
2403
-
2404
- #: includes/class-wcj-price-by-country.php:99
2405
- msgid "Price filter widget product prices recalculated."
2406
- msgstr ""
2407
-
2408
- #: includes/class-wcj-price-by-user-role.php:26
2409
- msgid "Price based on User Role"
2410
- msgstr ""
2411
-
2412
- #: includes/class-wcj-price-by-user-role.php:27
2413
- msgid "Display products prices by user roles."
2414
- msgstr ""
2415
-
2416
- #: includes/class-wcj-price-by-user-role.php:62
2417
- msgid "user roles & variations"
2418
- msgstr ""
2419
-
2420
- #: includes/class-wcj-price-by-user-role.php:66
2421
- msgid "variations"
2422
- msgstr ""
2423
-
2424
- #: includes/class-wcj-price-by-user-role.php:70
2425
- msgid "user roles"
2426
- msgstr ""
2427
-
2428
- #: includes/class-wcj-price-by-user-role.php:83
2429
- #, php-format
2430
- msgid "Copy price to all %s"
2431
- msgstr ""
2432
-
2433
- #: includes/class-wcj-price-by-user-role.php:163
2434
- msgid ""
2435
- "Booster: Free plugin's version is limited to only one price by user role per "
2436
- "products settings product enabled at a time. You will need to get <a href="
2437
- "\"https://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
2438
- "unlimited number of price by user role per product settings products."
2439
- msgstr ""
2440
-
2441
- #: includes/class-wcj-price-formats.php:25
2442
- msgid "Price Formats"
2443
- msgstr ""
2444
-
2445
- #: includes/class-wcj-price-formats.php:26
2446
- msgid ""
2447
- "Set different price formats for different currencies. Set general price "
2448
- "format options."
2449
- msgstr ""
2450
-
2451
- #: includes/class-wcj-price-labels.php:23
2452
- msgid "Custom Price Labels"
2453
- msgstr ""
2454
-
2455
- #: includes/class-wcj-price-labels.php:24
2456
- msgid "Create any custom price label for any product."
2457
- msgstr ""
2458
-
2459
- #: includes/class-wcj-price-labels.php:32
2460
- #: includes/settings/wcj-settings-price-labels.php:99
2461
- msgid "Instead of the price"
2462
- msgstr ""
2463
-
2464
- #: includes/class-wcj-price-labels.php:33
2465
- msgid "Before the price"
2466
- msgstr ""
2467
-
2468
- #: includes/class-wcj-price-labels.php:34
2469
- msgid "Between regular and sale prices"
2470
- msgstr ""
2471
-
2472
- #: includes/class-wcj-price-labels.php:35
2473
- msgid "After the price"
2474
- msgstr ""
2475
-
2476
- #: includes/class-wcj-price-labels.php:40
2477
- #: includes/class-wcj-product-info.php:235
2478
- #: includes/class-wcj-shipping-by-products.php:195
2479
- #: includes/class-wcj-shipping-options.php:121
2480
- #: includes/settings/wcj-settings-add-to-cart.php:51
2481
- #: includes/settings/wcj-settings-address-formats.php:20
2482
- #: includes/settings/wcj-settings-admin-bar.php:20
2483
- #: includes/settings/wcj-settings-admin-bar.php:42
2484
- #: includes/settings/wcj-settings-admin-bar.php:49
2485
- #: includes/settings/wcj-settings-admin-tools.php:22
2486
- #: includes/settings/wcj-settings-admin-tools.php:29
2487
- #: includes/settings/wcj-settings-admin-tools.php:38
2488
- #: includes/settings/wcj-settings-admin-tools.php:56
2489
- #: includes/settings/wcj-settings-admin-tools.php:73
2490
- #: includes/settings/wcj-settings-admin-tools.php:81
2491
- #: includes/settings/wcj-settings-admin-tools.php:89
2492
- #: includes/settings/wcj-settings-breadcrumbs.php:20
2493
- #: includes/settings/wcj-settings-call-for-price.php:79
2494
- #: includes/settings/wcj-settings-cart-customization.php:34
2495
- #: includes/settings/wcj-settings-cart-customization.php:57
2496
- #: includes/settings/wcj-settings-checkout-core-fields.php:44
2497
- #: includes/settings/wcj-settings-checkout-custom-fields.php:122
2498
- #: includes/settings/wcj-settings-checkout-custom-fields.php:232
2499
- #: includes/settings/wcj-settings-checkout-customization.php:20
2500
- #: includes/settings/wcj-settings-checkout-customization.php:27
2501
- #: includes/settings/wcj-settings-checkout-customization.php:151
2502
- #: includes/settings/wcj-settings-checkout-customization.php:174
2503
- #: includes/settings/wcj-settings-checkout-customization.php:197
2504
- #: includes/settings/wcj-settings-checkout-customization.php:222
2505
- #: includes/settings/wcj-settings-checkout-fees.php:47
2506
- #: includes/settings/wcj-settings-checkout-fees.php:54
2507
- #: includes/settings/wcj-settings-checkout-files-upload.php:227
2508
- #: includes/settings/wcj-settings-checkout-files-upload.php:329
2509
- #: includes/settings/wcj-settings-checkout-files-upload.php:438
2510
- #: includes/settings/wcj-settings-coupon-by-user-role.php:47
2511
- #: includes/settings/wcj-settings-coupon-code-generator.php:32
2512
- #: includes/settings/wcj-settings-cross-sells.php:97
2513
- #: includes/settings/wcj-settings-cross-sells.php:115
2514
- #: includes/settings/wcj-settings-cross-sells.php:125
2515
- #: includes/settings/wcj-settings-currency-exchange-rates.php:54
2516
- #: includes/settings/wcj-settings-currency-exchange-rates.php:85
2517
- #: includes/settings/wcj-settings-currency-exchange-rates.php:93
2518
- #: includes/settings/wcj-settings-currency-per-product.php:66
2519
- #: includes/settings/wcj-settings-currency-per-product.php:83
2520
- #: includes/settings/wcj-settings-currency-per-product.php:90
2521
- #: includes/settings/wcj-settings-currency-per-product.php:97
2522
- #: includes/settings/wcj-settings-currency-per-product.php:104
2523
- #: includes/settings/wcj-settings-currency-per-product.php:258
2524
- #: includes/settings/wcj-settings-custom-css.php:44
2525
- #: includes/settings/wcj-settings-debug-tools.php:21
2526
- #: includes/settings/wcj-settings-debug-tools.php:29
2527
- #: includes/settings/wcj-settings-debug-tools.php:37
2528
- #: includes/settings/wcj-settings-emails-verification.php:28
2529
- #: includes/settings/wcj-settings-emails-verification.php:36
2530
- #: includes/settings/wcj-settings-emails-verification.php:43
2531
- #: includes/settings/wcj-settings-general.php:21
2532
- #: includes/settings/wcj-settings-general.php:73
2533
- #: includes/settings/wcj-settings-general.php:146
2534
- #: includes/settings/wcj-settings-general.php:197
2535
- #: includes/settings/wcj-settings-global-discount.php:52
2536
- #: includes/settings/wcj-settings-global-discount.php:181
2537
- #: includes/settings/wcj-settings-left-to-free-shipping.php:28
2538
- #: includes/settings/wcj-settings-left-to-free-shipping.php:57
2539
- #: includes/settings/wcj-settings-left-to-free-shipping.php:91
2540
- #: includes/settings/wcj-settings-max-products-per-user.php:80
2541
- #: includes/settings/wcj-settings-max-products-per-user.php:88
2542
- #: includes/settings/wcj-settings-more-button-labels.php:28
2543
- #: includes/settings/wcj-settings-multicurrency-base-price.php:38
2544
- #: includes/settings/wcj-settings-multicurrency-base-price.php:53
2545
- #: includes/settings/wcj-settings-multicurrency-base-price.php:70
2546
- #: includes/settings/wcj-settings-multicurrency.php:39
2547
- #: includes/settings/wcj-settings-multicurrency.php:112
2548
- #: includes/settings/wcj-settings-multicurrency.php:120
2549
- #: includes/settings/wcj-settings-multicurrency.php:127
2550
- #: includes/settings/wcj-settings-multicurrency.php:135
2551
- #: includes/settings/wcj-settings-multicurrency.php:143
2552
- #: includes/settings/wcj-settings-multicurrency.php:176
2553
- #: includes/settings/wcj-settings-my-account.php:29
2554
- #: includes/settings/wcj-settings-my-account.php:87
2555
- #: includes/settings/wcj-settings-my-account.php:104
2556
- #: includes/settings/wcj-settings-offer-price.php:27
2557
- #: includes/settings/wcj-settings-order-custom-statuses.php:45
2558
- #: includes/settings/wcj-settings-order-custom-statuses.php:88
2559
- #: includes/settings/wcj-settings-order-numbers.php:97
2560
- #: includes/settings/wcj-settings-order-numbers.php:105
2561
- #: includes/settings/wcj-settings-order-numbers.php:112
2562
- #: includes/settings/wcj-settings-order-numbers.php:119
2563
- #: includes/settings/wcj-settings-order-quantities.php:23
2564
- #: includes/settings/wcj-settings-order-quantities.php:42
2565
- #: includes/settings/wcj-settings-order-quantities.php:49
2566
- #: includes/settings/wcj-settings-order-quantities.php:117
2567
- #: includes/settings/wcj-settings-order-quantities.php:175
2568
- #: includes/settings/wcj-settings-order-quantities.php:216
2569
- #: includes/settings/wcj-settings-order-quantities.php:225
2570
- #: includes/settings/wcj-settings-orders.php:32
2571
- #: includes/settings/wcj-settings-orders.php:60
2572
- #: includes/settings/wcj-settings-orders.php:80
2573
- #: includes/settings/wcj-settings-orders.php:105
2574
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:23
2575
- #: includes/settings/wcj-settings-payment-gateways-currency.php:95
2576
- #: includes/settings/wcj-settings-payment-gateways-fees.php:67
2577
- #: includes/settings/wcj-settings-payment-gateways-fees.php:83
2578
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:25
2579
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:55
2580
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:118
2581
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
2582
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:24
2583
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
2584
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:73
2585
- #: includes/settings/wcj-settings-price-by-country.php:70
2586
- #: includes/settings/wcj-settings-price-by-country.php:90
2587
- #: includes/settings/wcj-settings-price-by-country.php:106
2588
- #: includes/settings/wcj-settings-price-by-country.php:133
2589
- #: includes/settings/wcj-settings-price-by-country.php:142
2590
- #: includes/settings/wcj-settings-price-by-user-role.php:20
2591
- #: includes/settings/wcj-settings-price-by-user-role.php:47
2592
- #: includes/settings/wcj-settings-price-formats.php:21
2593
- #: includes/settings/wcj-settings-price-labels.php:23
2594
- #: includes/settings/wcj-settings-product-add-to-cart.php:25
2595
- #: includes/settings/wcj-settings-product-add-to-cart.php:41
2596
- #: includes/settings/wcj-settings-product-add-to-cart.php:80
2597
- #: includes/settings/wcj-settings-product-add-to-cart.php:132
2598
- #: includes/settings/wcj-settings-product-add-to-cart.php:162
2599
- #: includes/settings/wcj-settings-product-add-to-cart.php:178
2600
- #: includes/settings/wcj-settings-product-add-to-cart.php:195
2601
- #: includes/settings/wcj-settings-product-add-to-cart.php:236
2602
- #: includes/settings/wcj-settings-product-add-to-cart.php:250
2603
- #: includes/settings/wcj-settings-product-add-to-cart.php:280
2604
- #: includes/settings/wcj-settings-product-add-to-cart.php:315
2605
- #: includes/settings/wcj-settings-product-addons.php:31
2606
- #: includes/settings/wcj-settings-product-addons.php:50
2607
- #: includes/settings/wcj-settings-product-addons.php:74
2608
- #: includes/settings/wcj-settings-product-addons.php:179
2609
- #: includes/settings/wcj-settings-product-addons.php:257
2610
- #: includes/settings/wcj-settings-product-bookings.php:107
2611
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
2612
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
2613
- #: includes/settings/wcj-settings-product-by-condition.php:21
2614
- #: includes/settings/wcj-settings-product-by-condition.php:29
2615
- #: includes/settings/wcj-settings-product-by-condition.php:37
2616
- #: includes/settings/wcj-settings-product-by-condition.php:44
2617
- #: includes/settings/wcj-settings-product-by-condition.php:89
2618
- #: includes/settings/wcj-settings-product-by-condition.php:96
2619
- #: includes/settings/wcj-settings-product-by-date.php:21
2620
- #: includes/settings/wcj-settings-product-by-date.php:53
2621
- #: includes/settings/wcj-settings-product-by-time.php:21
2622
- #: includes/settings/wcj-settings-product-by-time.php:53
2623
- #: includes/settings/wcj-settings-product-by-user.php:107
2624
- #: includes/settings/wcj-settings-product-info.php:35
2625
- #: includes/settings/wcj-settings-product-info.php:68
2626
- #: includes/settings/wcj-settings-product-input-fields.php:24
2627
- #: includes/settings/wcj-settings-product-input-fields.php:54
2628
- #: includes/settings/wcj-settings-product-input-fields.php:282
2629
- #: includes/settings/wcj-settings-product-input-fields.php:326
2630
- #: includes/settings/wcj-settings-product-input-fields.php:335
2631
- #: includes/settings/wcj-settings-product-input-fields.php:354
2632
- #: includes/settings/wcj-settings-product-input-fields.php:362
2633
- #: includes/settings/wcj-settings-product-open-pricing.php:102
2634
- #: includes/settings/wcj-settings-product-open-pricing.php:109
2635
- #: includes/settings/wcj-settings-product-open-pricing.php:140
2636
- #: includes/settings/wcj-settings-product-price-by-formula.php:30
2637
- #: includes/settings/wcj-settings-product-tabs.php:43
2638
- #: includes/settings/wcj-settings-product-tabs.php:232
2639
- #: includes/settings/wcj-settings-product-tabs.php:240
2640
- #: includes/settings/wcj-settings-products-xml.php:77
2641
- #: includes/settings/wcj-settings-purchase-data.php:22
2642
- #: includes/settings/wcj-settings-purchase-data.php:29
2643
- #: includes/settings/wcj-settings-purchase-data.php:36
2644
- #: includes/settings/wcj-settings-purchase-data.php:114
2645
- #: includes/settings/wcj-settings-purchase-data.php:121
2646
- #: includes/settings/wcj-settings-purchase-data.php:128
2647
- #: includes/settings/wcj-settings-purchase-data.php:196
2648
- #: includes/settings/wcj-settings-related-products.php:105
2649
- #: includes/settings/wcj-settings-related-products.php:112
2650
- #: includes/settings/wcj-settings-related-products.php:119
2651
- #: includes/settings/wcj-settings-related-products.php:149
2652
- #: includes/settings/wcj-settings-shipping-by-condition.php:26
2653
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:21
2654
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:21
2655
- #: includes/settings/wcj-settings-shipping-calculator.php:20
2656
- #: includes/settings/wcj-settings-shipping-calculator.php:27
2657
- #: includes/settings/wcj-settings-shipping-calculator.php:34
2658
- #: includes/settings/wcj-settings-shipping-calculator.php:41
2659
- #: includes/settings/wcj-settings-shipping-description.php:59
2660
- #: includes/settings/wcj-settings-shipping-icons.php:61
2661
- #: includes/settings/wcj-settings-shipping-options.php:63
2662
- #: includes/settings/wcj-settings-shipping-time.php:31
2663
- #: includes/settings/wcj-settings-shipping-time.php:40
2664
- #: includes/settings/wcj-settings-shipping.php:24
2665
- #: includes/settings/wcj-settings-sku.php:51
2666
- #: includes/settings/wcj-settings-sku.php:216
2667
- #: includes/settings/wcj-settings-sku.php:224
2668
- #: includes/settings/wcj-settings-sku.php:232
2669
- #: includes/settings/wcj-settings-sku.php:259
2670
- #: includes/settings/wcj-settings-stock.php:27
2671
- #: includes/settings/wcj-settings-stock.php:64
2672
- #: includes/settings/wcj-settings-stock.php:94
2673
- #: includes/settings/wcj-settings-stock.php:109
2674
- #: includes/settings/wcj-settings-stock.php:139
2675
- #: includes/settings/wcj-settings-stock.php:154
2676
- #: includes/settings/wcj-settings-track-users.php:47
2677
- #: includes/settings/wcj-settings-upsells.php:81
2678
- #: includes/settings/wcj-settings-wholesale-price.php:24
2679
- #: includes/settings/wcj-settings-wholesale-price.php:42
2680
- #: includes/settings/wcj-settings-wholesale-price.php:51
2681
- #: includes/settings/wcj-settings-wpml.php:28
2682
- #: includes/settings/wcj-settings-wpml.php:35
2683
- #: includes/settings/wcj-settings-wpml.php:53
2684
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:68
2685
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
2686
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:19
2687
- #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:14
2688
- msgid "Enable"
2689
- msgstr ""
2690
-
2691
- #: includes/class-wcj-price-labels.php:41
2692
- msgid "Hide on home page"
2693
- msgstr ""
2694
-
2695
- #: includes/class-wcj-price-labels.php:42
2696
- msgid "Hide on products page"
2697
- msgstr ""
2698
-
2699
- #: includes/class-wcj-price-labels.php:43
2700
- msgid "Hide on single"
2701
- msgstr ""
2702
-
2703
- #: includes/class-wcj-price-labels.php:44
2704
- msgid "Hide on all pages"
2705
- msgstr ""
2706
-
2707
- #: includes/class-wcj-price-labels.php:45
2708
- msgid "Hide on cart page only"
2709
- msgstr ""
2710
-
2711
- #: includes/class-wcj-price-labels.php:46
2712
- msgid "Hide for main price"
2713
- msgstr ""
2714
-
2715
- #: includes/class-wcj-price-labels.php:47
2716
- msgid "Hide for all variations"
2717
- msgstr ""
2718
-
2719
- #: includes/class-wcj-price-labels.php:134
2720
- msgid "Booster: Custom Price Labels"
2721
- msgstr ""
2722
-
2723
- #: includes/class-wcj-product-add-to-cart.php:26
2724
- #: includes/settings/wcj-settings-product-add-to-cart.php:306
2725
- msgid "Add to Cart"
2726
- msgstr ""
2727
-
2728
- #: includes/class-wcj-product-add-to-cart.php:27
2729
- msgid "Set any local url to redirect to on Add to Cart."
2730
- msgstr ""
2731
-
2732
- #: includes/class-wcj-product-add-to-cart.php:28
2733
- msgid "Automatically add to cart on product visit."
2734
- msgstr ""
2735
-
2736
- #: includes/class-wcj-product-add-to-cart.php:29
2737
- msgid "Display radio buttons instead of drop box for variable products."
2738
- msgstr ""
2739
-
2740
- #: includes/class-wcj-product-add-to-cart.php:30
2741
- msgid "Disable quantity input."
2742
- msgstr ""
2743
-
2744
- #: includes/class-wcj-product-add-to-cart.php:31
2745
- msgid "Open external products on add to cart in new window."
2746
- msgstr ""
2747
-
2748
- #: includes/class-wcj-product-add-to-cart.php:32
2749
- msgid ""
2750
- "Replace Add to Cart button on archives with button from single product pages."
2751
- msgstr ""
2752
-
2753
- #: includes/class-wcj-product-add-to-cart.php:33
2754
- msgid "Customize Add to Cart messages."
2755
- msgstr ""
2756
-
2757
- #: includes/class-wcj-product-add-to-cart.php:178
2758
- #, php-format
2759
- msgctxt "Item name in quotes"
2760
- msgid "&ldquo;%s&rdquo;"
2761
- msgstr ""
2762
-
2763
- #: includes/class-wcj-product-add-to-cart.php:183
2764
- #, php-format
2765
- msgid "%s has been added to your cart."
2766
- msgid_plural "%s have been added to your cart."
2767
- msgstr[0] ""
2768
- msgstr[1] ""
2769
-
2770
- #: includes/class-wcj-product-add-to-cart.php:187
2771
- #: includes/settings/wcj-settings-product-add-to-cart.php:245
2772
- msgid "Continue shopping"
2773
- msgstr ""
2774
-
2775
- #: includes/class-wcj-product-add-to-cart.php:189
2776
- #: includes/settings/wcj-settings-product-add-to-cart.php:259
2777
- msgid "View cart"
2778
- msgstr ""
2779
-
2780
- #: includes/class-wcj-product-addons.php:29
2781
- msgid "Product Addons"
2782
- msgstr ""
2783
-
2784
- #: includes/class-wcj-product-addons.php:30
2785
- msgid "Add (paid/free/discount) addons to products."
2786
- msgstr ""
2787
-
2788
- #: includes/class-wcj-product-addons.php:207
2789
- msgid "Some of the required addons are not selected!"
2790
- msgstr ""
2791
-
2792
- #: includes/class-wcj-product-addons.php:222
2793
- msgid ""
2794
- "Booster: Free plugin's version is limited to only three products with per "
2795
- "product addons enabled at a time. You will need to get <a href=\"https://"
2796
- "booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
2797
- "number of products with per product addons."
2798
- msgstr ""
2799
-
2800
- #: includes/class-wcj-product-bookings.php:25
2801
- msgid "Bookings"
2802
- msgstr ""
2803
-
2804
- #: includes/class-wcj-product-bookings.php:26
2805
- msgid "Add bookings products to WooCommerce."
2806
- msgstr ""
2807
-
2808
- #: includes/class-wcj-product-bookings.php:28
2809
- msgid ""
2810
- "When enabled, module will add new \"Booster: Bookings\" meta box to each "
2811
- "product's edit page."
2812
- msgstr ""
2813
-
2814
- #: includes/class-wcj-product-bookings.php:140
2815
- #: includes/class-wcj-product-bookings.php:247
2816
- #: includes/settings/wcj-settings-product-bookings.php:77
2817
- msgid "\"Date to\" must be after \"Date from\""
2818
- msgstr ""
2819
-
2820
- #: includes/class-wcj-product-bookings.php:151
2821
- #: includes/class-wcj-product-open-pricing.php:253
2822
- #: includes/settings/wcj-settings-add-to-cart.php:140
2823
- #: includes/settings/wcj-settings-add-to-cart.php:167
2824
- #: includes/settings/wcj-settings-add-to-cart.php:202
2825
- msgid "Read more"
2826
- msgstr ""
2827
-
2828
- #: includes/class-wcj-product-bookings.php:205
2829
- #: includes/settings/wcj-settings-product-bookings.php:49
2830
- msgid "Period"
2831
- msgstr ""
2832
-
2833
- #: includes/class-wcj-product-bookings.php:237
2834
- #: includes/settings/wcj-settings-product-bookings.php:63
2835
- msgid "\"Date from\" must be set"
2836
- msgstr ""
2837
-
2838
- #: includes/class-wcj-product-bookings.php:241
2839
- #: includes/settings/wcj-settings-product-bookings.php:70
2840
- msgid "\"Date to\" must be set"
2841
- msgstr ""
2842
-
2843
- #: includes/class-wcj-product-bookings.php:369
2844
- #: includes/settings/wcj-settings-product-bookings.php:35
2845
- msgid "Date from"
2846
- msgstr ""
2847
-
2848
- #: includes/class-wcj-product-bookings.php:373
2849
- #: includes/settings/wcj-settings-product-bookings.php:42
2850
- msgid "Date to"
2851
- msgstr ""
2852
-
2853
- #: includes/class-wcj-product-bookings.php:396
2854
- #: includes/settings/wcj-settings-product-bookings.php:56
2855
- msgid "/ day"
2856
- msgstr ""
2857
-
2858
- #: includes/class-wcj-product-bookings.php:470
2859
- msgid ""
2860
- "Booster: Free plugin's version is limited to only one bookings product "
2861
- "enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
2862
- "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
2863
- "products."
2864
- msgstr ""
2865
-
2866
- #: includes/class-wcj-product-bulk-meta-editor.php:25
2867
- #: includes/class-wcj-product-bulk-meta-editor.php:32
2868
- msgid "Product Bulk Meta Editor"
2869
- msgstr ""
2870
-
2871
- #: includes/class-wcj-product-bulk-meta-editor.php:26
2872
- msgid "Set products meta with bulk editor."
2873
- msgstr ""
2874
-
2875
- #: includes/class-wcj-product-bulk-meta-editor.php:33
2876
- msgid "Product Bulk Meta Editor Tool."
2877
- msgstr ""
2878
-
2879
- #: includes/class-wcj-product-bulk-meta-editor.php:164
2880
- msgid "Please enter meta key."
2881
- msgstr ""
2882
-
2883
- #: includes/class-wcj-product-bulk-meta-editor.php:184
2884
- #, php-format
2885
- msgid "Meta for <strong>%d</strong> product(s) was updated."
2886
- msgstr ""
2887
-
2888
- #: includes/class-wcj-product-bulk-meta-editor.php:187
2889
- #, php-format
2890
- msgid "Meta for <strong>%d</strong> product(s) was not updated."
2891
- msgstr ""
2892
-
2893
- #: includes/class-wcj-product-bulk-meta-editor.php:224
2894
- msgid "Meta key"
2895
- msgstr ""
2896
-
2897
- #: includes/class-wcj-product-bulk-meta-editor.php:226
2898
- #, php-format
2899
- msgid "for example %s"
2900
- msgstr ""
2901
-
2902
- #: includes/class-wcj-product-bulk-meta-editor.php:232
2903
- #: includes/settings/wcj-settings-product-msrp.php:31
2904
- #: includes/settings/wcj-settings-wholesale-price.php:58
2905
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:19
2906
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:38
2907
- msgid "Show"
2908
- msgstr ""
2909
-
2910
- #: includes/class-wcj-product-bulk-meta-editor.php:236
2911
- #: includes/class-wcj-product-bulk-meta-editor.php:340
2912
- #: includes/settings/wcj-settings-product-add-to-cart.php:304
2913
- msgid "Meta"
2914
- msgstr ""
2915
-
2916
- #: includes/class-wcj-product-bulk-meta-editor.php:259
2917
- msgid ""
2918
- "Hold <strong>Control</strong> key to select multiple products. Press "
2919
- "<strong>Control</strong> + <strong>A</strong> to select all products."
2920
- msgstr ""
2921
-
2922
- #: includes/class-wcj-product-bulk-meta-editor.php:294
2923
- #: includes/settings/wcj-settings-admin-orders-list.php:71
2924
- #: includes/settings/wcj-settings-admin-products-list.php:56
2925
- #: includes/settings/wcj-settings-checkout-fees.php:76
2926
- #: includes/settings/wcj-settings-export.php:91
2927
- #: includes/settings/wcj-settings-export.php:162
2928
- #: includes/settings/wcj-settings-export.php:241
2929
- #: includes/settings/wcj-settings-global-discount.php:69
2930
- msgid "Value"
2931
- msgstr ""
2932
-
2933
- #: includes/class-wcj-product-bulk-meta-editor.php:299
2934
- msgid "Set"
2935
- msgstr ""
2936
-
2937
- #: includes/class-wcj-product-bulk-meta-editor.php:303
2938
- msgid "Set Meta for All Products"
2939
- msgstr ""
2940
-
2941
- #: includes/class-wcj-product-bulk-meta-editor.php:320
2942
- msgid "Save all"
2943
- msgstr ""
2944
-
2945
- #: includes/class-wcj-product-bulk-meta-editor.php:323
2946
- msgid "Delete all"
2947
- msgstr ""
2948
-
2949
- #: includes/class-wcj-product-bulk-meta-editor.php:364
2950
- msgid "Save"
2951
- msgstr ""
2952
-
2953
- #: includes/class-wcj-product-bulk-meta-editor.php:389
2954
- #: includes/class-wcj-purchase-data.php:77
2955
- #: includes/export/class-wcj-fields-helper.php:280
2956
- #: includes/functions/wcj-functions-reports.php:24
2957
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
2958
- msgid "Product ID"
2959
- msgstr ""
2960
-
2961
- #: includes/class-wcj-product-bulk-meta-editor.php:392
2962
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
2963
- msgid "Product status"
2964
- msgstr ""
2965
-
2966
- #: includes/class-wcj-product-bulk-meta-editor.php:395
2967
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
2968
- msgid "Meta keys"
2969
- msgstr ""
2970
-
2971
- #: includes/class-wcj-product-bulk-meta-editor.php:417
2972
- msgid "Show all"
2973
- msgstr ""
2974
-
2975
- #: includes/class-wcj-product-bulk-price-converter.php:23
2976
- #: includes/class-wcj-product-bulk-price-converter.php:30
2977
- msgid "Bulk Price Converter"
2978
- msgstr ""
2979
-
2980
- #: includes/class-wcj-product-bulk-price-converter.php:24
2981
- msgid "Multiply all products prices by set value."
2982
- msgstr ""
2983
-
2984
- #: includes/class-wcj-product-bulk-price-converter.php:31
2985
- msgid "Bulk Price Converter Tool."
2986
- msgstr ""
2987
-
2988
- #: includes/class-wcj-product-bulk-price-converter.php:150
2989
- msgid "Price Type"
2990
- msgstr ""
2991
-
2992
- #: includes/class-wcj-product-bulk-price-converter.php:151
2993
- msgid "Original Price"
2994
- msgstr ""
2995
-
2996
- #: includes/class-wcj-product-bulk-price-converter.php:152
2997
- msgid "Modified Price"
2998
- msgstr ""
2999
-
3000
- #: includes/class-wcj-product-bulk-price-converter.php:207
3001
- msgid "Multiply value must be above zero."
3002
- msgstr ""
3003
-
3004
- #: includes/class-wcj-product-bulk-price-converter.php:214
3005
- msgid "Prices changed successfully!"
3006
- msgstr ""
3007
-
3008
- #: includes/class-wcj-product-bulk-price-converter.php:239
3009
- msgid "Multiply all product prices by"
3010
- msgstr ""
3011
-
3012
- #: includes/class-wcj-product-bulk-price-converter.php:247
3013
- msgid "Price type to modify"
3014
- msgstr ""
3015
-
3016
- #: includes/class-wcj-product-bulk-price-converter.php:249
3017
- msgid "Both"
3018
- msgstr ""
3019
-
3020
- #: includes/class-wcj-product-bulk-price-converter.php:251
3021
- msgid "Sale prices only"
3022
- msgstr ""
3023
-
3024
- #: includes/class-wcj-product-bulk-price-converter.php:253
3025
- msgid "Regular prices only"
3026
- msgstr ""
3027
-
3028
- #: includes/class-wcj-product-bulk-price-converter.php:260
3029
- msgid "Products category"
3030
- msgstr ""
3031
-
3032
- #: includes/class-wcj-product-bulk-price-converter.php:262
3033
- #: includes/shortcodes/class-wcj-shortcodes-products.php:354
3034
- msgid "Any"
3035
- msgstr ""
3036
-
3037
- #: includes/class-wcj-product-bulk-price-converter.php:264
3038
- #: includes/settings/wcj-settings-global-discount.php:84
3039
- msgid "None"
3040
- msgstr ""
3041
-
3042
- #: includes/class-wcj-product-bulk-price-converter.php:271
3043
- msgid "\"Pretty prices\" threshold"
3044
- msgstr ""
3045
-
3046
- #: includes/class-wcj-product-bulk-price-converter.php:271
3047
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:83
3048
- msgid "Leave zero to disable."
3049
- msgstr ""
3050
-
3051
- #: includes/class-wcj-product-bulk-price-converter.php:272
3052
- msgid ""
3053
- "Otherwise - all prices below \"threshold\" will end with 0,99 and all prices "
3054
- "above or equal to \"threshold\" will end with 9,00."
3055
- msgstr ""
3056
-
3057
- #: includes/class-wcj-product-bulk-price-converter.php:273
3058
- msgid ""
3059
- "E.g.: if you set \"threshold\" to 100, then all prices below 100 will be "
3060
- "like 45,99 and all other prices will be like 109,00."
3061
- msgstr ""
3062
-
3063
- #: includes/class-wcj-product-bulk-price-converter.php:281
3064
- msgid "Preview Prices"
3065
- msgstr ""
3066
-
3067
- #: includes/class-wcj-product-bulk-price-converter.php:288
3068
- msgid "Change Prices"
3069
- msgstr ""
3070
-
3071
- #: includes/class-wcj-product-by-country.php:25
3072
- msgid "Product Visibility by Country"
3073
- msgstr ""
3074
-
3075
- #: includes/class-wcj-product-by-country.php:26
3076
- msgid "Display products by customer's country."
3077
- msgstr ""
3078
-
3079
- #: includes/class-wcj-product-by-country.php:28
3080
- msgid ""
3081
- "When enabled, module will add new \"Booster: Product Visibility by Country\" "
3082
- "meta box to each product's edit page."
3083
- msgstr ""
3084
-
3085
- #: includes/class-wcj-product-by-country.php:30
3086
- #: includes/widgets/class-wcj-widget-country-switcher.php:69
3087
- #: includes/widgets/class-wcj-widget-selector.php:64
3088
- msgid "Countries"
3089
- msgstr ""
3090
-
3091
- #: includes/class-wcj-product-by-country.php:115
3092
- msgid "User Country Selection Options"
3093
- msgstr ""
3094
-
3095
- #: includes/class-wcj-product-by-country.php:120
3096
- msgid "User Country Selection Method"
3097
- msgstr ""
3098
-
3099
- #: includes/class-wcj-product-by-country.php:121
3100
- msgid "Possible values: \"Automatically by IP\" or \"Manually\"."
3101
- msgstr ""
3102
-
3103
- #: includes/class-wcj-product-by-country.php:123
3104
- #, php-format
3105
- msgid ""
3106
- "If \"Manually\" option is selected, you can add country selection drop box "
3107
- "to frontend with \"%s\" widget or %s shortcode."
3108
- msgstr ""
3109
-
3110
- #: includes/class-wcj-product-by-country.php:124
3111
- #: includes/class-wcj-product-custom-visibility.php:31
3112
- #: includes/widgets/class-wcj-widget-selector.php:27
3113
- msgid "Booster - Selector"
3114
- msgstr ""
3115
-
3116
- #: includes/class-wcj-product-by-country.php:131
3117
- msgid "Automatically by IP"
3118
- msgstr ""
3119
-
3120
- #: includes/class-wcj-product-by-country.php:132
3121
- #: includes/settings/wcj-settings-pdf-invoicing.php:32
3122
- msgid "Manually"
3123
- msgstr ""
3124
-
3125
- #: includes/class-wcj-product-by-country.php:142
3126
- msgid "Admin Country List Options"
3127
- msgstr ""
3128
-
3129
- #: includes/class-wcj-product-by-country.php:147
3130
- msgid "Country List"
3131
- msgstr ""
3132
-
3133
- #: includes/class-wcj-product-by-country.php:148
3134
- msgid ""
3135
- "This option sets which countries will be added to list in product's edit "
3136
- "page. Possible values: \"All countries\" or \"WooCommerce selling locations"
3137
- "\"."
3138
- msgstr ""
3139
-
3140
- #: includes/class-wcj-product-by-country.php:150
3141
- #, php-format
3142
- msgid ""
3143
- "If \"WooCommerce selling locations\" option is selected, country list will "
3144
- "be set by <a href=\"%s\">WooCommerce > Settings > General > Selling location"
3145
- "(s)</a>."
3146
- msgstr ""
3147
-
3148
- #: includes/class-wcj-product-by-country.php:158
3149
- msgid "WooCommerce selling locations"
3150
- msgstr ""
3151
-
3152
- #: includes/class-wcj-product-by-date.php:29
3153
- msgid "Product Availability by Date"
3154
- msgstr ""
3155
-
3156
- #: includes/class-wcj-product-by-date.php:30
3157
- msgid "Set product availability by date."
3158
- msgstr ""
3159
-
3160
- #: includes/class-wcj-product-by-date.php:110
3161
- #: includes/settings/wcj-settings-product-by-date.php:107
3162
- msgid "%product_title% is not available until %direct_date%."
3163
- msgstr ""
3164
-
3165
- #: includes/class-wcj-product-by-date.php:117
3166
- #: includes/class-wcj-product-by-date.php:119
3167
- #: includes/settings/wcj-settings-product-by-date.php:95
3168
- msgid ""
3169
- "<p style=\"color:red;\">%product_title% is not available this month.</p>"
3170
- msgstr ""
3171
-
3172
- #: includes/class-wcj-product-by-date.php:120
3173
- #: includes/class-wcj-product-by-date.php:122
3174
- #: includes/settings/wcj-settings-product-by-date.php:83
3175
- msgid ""
3176
- "<p style=\"color:red;\">%product_title% is available only on %date_this_month"
3177
- "% this month.</p>"
3178
- msgstr ""
3179
-
3180
- #: includes/class-wcj-product-by-time.php:29
3181
- msgid "Product Availability by Time"
3182
- msgstr ""
3183
-
3184
- #: includes/class-wcj-product-by-time.php:30
3185
- msgid "Set product availability by time."
3186
- msgstr ""
3187
-
3188
- #: includes/class-wcj-product-by-time.php:91
3189
- #: includes/class-wcj-product-by-time.php:93
3190
- #: includes/settings/wcj-settings-product-by-time.php:87
3191
- msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
3192
- msgstr ""
3193
-
3194
- #: includes/class-wcj-product-by-time.php:94
3195
- #: includes/class-wcj-product-by-time.php:96
3196
- #: includes/settings/wcj-settings-product-by-time.php:75
3197
- msgid ""
3198
- "<p style=\"color:red;\">%product_title% is available only at %time_today% "
3199
- "today.</p>"
3200
- msgstr ""
3201
-
3202
- #: includes/class-wcj-product-by-user-role.php:25
3203
- msgid "Product Visibility by User Role"
3204
- msgstr ""
3205
-
3206
- #: includes/class-wcj-product-by-user-role.php:26
3207
- msgid "Display products by customer's user role."
3208
- msgstr ""
3209
-
3210
- #: includes/class-wcj-product-by-user-role.php:28
3211
- msgid ""
3212
- "When enabled, module will add new \"Booster: Product Visibility by User Role"
3213
- "\" meta box to each product's edit page."
3214
- msgstr ""
3215
-
3216
- #: includes/class-wcj-product-by-user-role.php:30
3217
- #: includes/class-wcj-shipping-by-user-role.php:31
3218
- #: includes/settings/wcj-settings-tax-display.php:107
3219
- msgid "User Roles"
3220
- msgstr ""
3221
-
3222
- #: includes/class-wcj-product-by-user.php:26
3223
- msgid "User Products"
3224
- msgstr ""
3225
-
3226
- #: includes/class-wcj-product-by-user.php:27
3227
- msgid "Let users add new products from frontend."
3228
- msgstr ""
3229
-
3230
- #: includes/class-wcj-product-by-user.php:29
3231
- msgid ""
3232
- "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
3233
- "form to frontend."
3234
- msgstr ""
3235
-
3236
- #: includes/class-wcj-product-by-user.php:154
3237
- #: includes/class-wcj-product-by-user.php:163
3238
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:310
3239
- msgid "Wrong user ID!"
3240
- msgstr ""
3241
-
3242
- #: includes/class-wcj-product-by-user.php:197
3243
- #: includes/admin/class-wcj-tools.php:74
3244
- #: includes/export/class-wcj-fields-helper.php:294
3245
- msgid "Status"
3246
- msgstr ""
3247
-
3248
- #: includes/class-wcj-product-by-user.php:197
3249
- #: includes/class-wcj-product-tabs.php:620
3250
- #: includes/gateways/class-wc-gateway-wcj-custom.php:55
3251
- #: includes/input-fields/wcj-product-input-fields-options.php:51
3252
- #: includes/settings/wcj-settings-admin-orders-list.php:172
3253
- #: includes/settings/wcj-settings-checkout-fees.php:60
3254
- #: includes/settings/wcj-settings-cross-sells.php:42
3255
- #: includes/settings/wcj-settings-export.php:75
3256
- #: includes/settings/wcj-settings-export.php:143
3257
- #: includes/settings/wcj-settings-export.php:225
3258
- #: includes/settings/wcj-settings-my-account.php:161
3259
- #: includes/settings/wcj-settings-product-add-to-cart.php:300
3260
- #: includes/settings/wcj-settings-product-addons.php:92
3261
- #: includes/settings/wcj-settings-product-by-user.php:167
3262
- #: includes/settings/wcj-settings-product-tabs.php:72
3263
- #: includes/settings/wcj-settings-product-tabs.php:388
3264
- #: includes/settings/wcj-settings-product-tabs.php:409
3265
- #: includes/settings/wcj-settings-product-tabs.php:430
3266
- #: includes/settings/wcj-settings-products-xml.php:223
3267
- #: includes/settings/wcj-settings-purchase-data.php:77
3268
- #: includes/settings/wcj-settings-related-products.php:24
3269
- #: includes/settings/wcj-settings-upsells.php:42
3270
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:57
3271
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:176
3272
- #: includes/shipping/class-wc-shipping-wcj-custom.php:107
3273
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:334
3274
- #: includes/widgets/class-wcj-widget-country-switcher.php:62
3275
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
3276
- #: includes/widgets/class-wcj-widget-multicurrency.php:69
3277
- #: includes/widgets/class-wcj-widget-selector.php:52
3278
- msgid "Title"
3279
- msgstr ""
3280
-
3281
- #: includes/class-wcj-product-by-user.php:205
3282
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
3283
- #: includes/tools/class-wcj-order-statuses-tool.php:164
3284
- #: includes/tools/class-wcj-order-statuses-tool.php:236
3285
- msgid "Edit"
3286
- msgstr ""
3287
-
3288
- #: includes/class-wcj-product-custom-info.php:24
3289
- #: includes/admin/class-wc-settings-jetpack.php:487
3290
- #: includes/admin/class-wc-settings-jetpack.php:499
3291
- #: includes/admin/class-wc-settings-jetpack.php:508
3292
- #: includes/functions/wcj-functions-general.php:449
3293
- msgid "Product Info"
3294
- msgstr ""
3295
-
3296
- #: includes/class-wcj-product-custom-info.php:25
3297
- #: includes/class-wcj-product-info.php:102
3298
- msgid "Add additional info to category and single product pages."
3299
- msgstr ""
3300
-
3301
- #: includes/class-wcj-product-custom-visibility.php:25
3302
- msgid "Product Custom Visibility"
3303
- msgstr ""
3304
-
3305
- #: includes/class-wcj-product-custom-visibility.php:26
3306
- msgid "Display products by custom param."
3307
- msgstr ""
3308
-
3309
- #: includes/class-wcj-product-custom-visibility.php:28
3310
- msgid ""
3311
- "When enabled, module will add new \"Booster: Product Custom Visibility\" "
3312
- "meta box to each product's edit page."
3313
- msgstr ""
3314
-
3315
- #: includes/class-wcj-product-custom-visibility.php:30
3316
- #, php-format
3317
- msgid ""
3318
- "You can add selection drop box to frontend with \"%s\" widget (set \"Product "
3319
- "custom visibility\" as \"Selector Type\") or %s shortcode."
3320
- msgstr ""
3321
-
3322
- #: includes/class-wcj-product-custom-visibility.php:34
3323
- msgid "Custom Visibility"
3324
- msgstr ""
3325
-
3326
- #: includes/class-wcj-product-custom-visibility.php:92
3327
- msgid "Options List"
3328
- msgstr ""
3329
-
3330
- #: includes/class-wcj-product-custom-visibility.php:97
3331
- #: includes/settings/wcj-settings-admin-bar.php:14
3332
- #: includes/settings/wcj-settings-breadcrumbs.php:14
3333
- #: includes/settings/wcj-settings-cart-customization.php:14
3334
- #: includes/settings/wcj-settings-checkout-custom-fields.php:16
3335
- #: includes/settings/wcj-settings-checkout-files-upload.php:18
3336
- #: includes/settings/wcj-settings-coupon-code-generator.php:25
3337
- #: includes/settings/wcj-settings-cross-sells.php:14
3338
- #: includes/settings/wcj-settings-custom-css.php:14
3339
- #: includes/settings/wcj-settings-custom-js.php:14
3340
- #: includes/settings/wcj-settings-custom-php.php:16
3341
- #: includes/settings/wcj-settings-empty-cart.php:14
3342
- #: includes/settings/wcj-settings-eu-vat-number.php:15
3343
- #: includes/settings/wcj-settings-global-discount.php:19
3344
- #: includes/settings/wcj-settings-multicurrency-base-price.php:17
3345
- #: includes/settings/wcj-settings-payment-gateways-currency.php:63
3346
- #: includes/settings/wcj-settings-payment-gateways-icons.php:14
3347
- #: includes/settings/wcj-settings-price-by-user-role.php:14
3348
- #: includes/settings/wcj-settings-product-addons.php:173
3349
- #: includes/settings/wcj-settings-product-bookings.php:86
3350
- #: includes/settings/wcj-settings-product-by-user.php:59
3351
- #: includes/settings/wcj-settings-product-open-pricing.php:22
3352
- #: includes/settings/wcj-settings-products-per-page.php:14
3353
- #: includes/settings/wcj-settings-products-xml.php:20
3354
- #: includes/settings/wcj-settings-shipping-description.php:14
3355
- #: includes/settings/wcj-settings-shipping-icons.php:14
3356
- #: includes/settings/wcj-settings-track-users.php:14
3357
- #: includes/settings/wcj-settings-upsells.php:14
3358
- #: includes/settings/wcj-settings-url-coupons.php:14
3359
- #: includes/settings/wcj-settings-wholesale-price.php:15
3360
- msgid "Options"
3361
- msgstr ""
3362
-
3363
- #: includes/class-wcj-product-custom-visibility.php:98
3364
- msgid "One per line."
3365
- msgstr ""
3366
-
3367
- #: includes/class-wcj-product-custom-visibility.php:99
3368
- msgid ""
3369
- "Can not be empty. Options will be added to each product's admin edit page "
3370
- "and to the selection drop box on frontend."
3371
- msgstr ""
3372
-
3373
- #: includes/class-wcj-product-images.php:25
3374
- msgid "Product Images"
3375
- msgstr ""
3376
-
3377
- #: includes/class-wcj-product-images.php:26
3378
- msgid "Customize products images and thumbnails."
3379
- msgstr ""
3380
-
3381
- #: includes/class-wcj-product-info.php:101
3382
- msgid "Product Info V1"
3383
- msgstr ""
3384
-
3385
- #: includes/class-wcj-product-info.php:123
3386
- #: includes/settings/wcj-settings-offer-price.php:116
3387
- #: includes/settings/wcj-settings-product-add-to-cart.php:326
3388
- #: includes/settings/wcj-settings-product-custom-info.php:115
3389
- msgid "Before product"
3390
- msgstr ""
3391
-
3392
- #: includes/class-wcj-product-info.php:124
3393
- #: includes/settings/wcj-settings-product-add-to-cart.php:327
3394
- #: includes/settings/wcj-settings-product-custom-info.php:116
3395
- msgid "Before product title"
3396
- msgstr ""
3397
-
3398
- #: includes/class-wcj-product-info.php:125
3399
- #: includes/settings/wcj-settings-offer-price.php:117
3400
- #: includes/settings/wcj-settings-product-add-to-cart.php:328
3401
- #: includes/settings/wcj-settings-product-custom-info.php:119
3402
- msgid "After product"
3403
- msgstr ""
3404
-
3405
- #: includes/class-wcj-product-info.php:126
3406
- #: includes/settings/wcj-settings-product-add-to-cart.php:329
3407
- #: includes/settings/wcj-settings-product-custom-info.php:118
3408
- msgid "After product title"
3409
- msgstr ""
3410
-
3411
- #: includes/class-wcj-product-info.php:138
3412
- #: includes/settings/wcj-settings-offer-price.php:95
3413
- #: includes/settings/wcj-settings-product-add-to-cart.php:292
3414
- #: includes/settings/wcj-settings-product-custom-info.php:104
3415
- #: includes/settings/wcj-settings-upsells.php:60
3416
- msgid "Inside single product summary"
3417
- msgstr ""
3418
-
3419
- #: includes/class-wcj-product-info.php:139
3420
- #: includes/settings/wcj-settings-offer-price.php:94
3421
- #: includes/settings/wcj-settings-product-add-to-cart.php:291
3422
- #: includes/settings/wcj-settings-product-custom-info.php:103
3423
- #: includes/settings/wcj-settings-upsells.php:59
3424
- msgid "Before single product summary"
3425
- msgstr ""
3426
-
3427
- #: includes/class-wcj-product-info.php:140
3428
- #: includes/settings/wcj-settings-offer-price.php:98
3429
- #: includes/settings/wcj-settings-product-add-to-cart.php:293
3430
- #: includes/settings/wcj-settings-product-custom-info.php:105
3431
- #: includes/settings/wcj-settings-upsells.php:61
3432
- msgid "After single product summary"
3433
- msgstr ""
3434
-
3435
- #: includes/class-wcj-product-info.php:242
3436
- #: includes/settings/wcj-settings-cart.php:51
3437
- #: includes/settings/wcj-settings-checkout-custom-info.php:48
3438
- #: includes/settings/wcj-settings-checkout-files-upload.php:52
3439
- #: includes/settings/wcj-settings-left-to-free-shipping.php:42
3440
- #: includes/settings/wcj-settings-left-to-free-shipping.php:73
3441
- #: includes/settings/wcj-settings-left-to-free-shipping.php:107
3442
- #: includes/settings/wcj-settings-mini-cart.php:46
3443
- #: includes/settings/wcj-settings-my-account.php:261
3444
- #: includes/settings/wcj-settings-product-add-to-cart.php:286
3445
- #: includes/settings/wcj-settings-product-add-to-cart.php:321
3446
- #: includes/settings/wcj-settings-product-custom-info.php:96
3447
- #: includes/settings/wcj-settings-product-info.php:50
3448
- #: includes/settings/wcj-settings-product-info.php:83
3449
- #: includes/settings/wcj-settings-product-msrp.php:37
3450
- #: includes/settings/wcj-settings-products-per-page.php:36
3451
- msgid "Position"
3452
- msgstr ""
3453
-
3454
- #: includes/class-wcj-product-info.php:253
3455
- #: includes/settings/wcj-settings-checkout-custom-fields.php:180
3456
- #: includes/settings/wcj-settings-product-info.php:61
3457
- #: includes/settings/wcj-settings-product-info.php:94
3458
- #: includes/settings/wcj-settings-product-tabs.php:86
3459
- #: includes/settings/wcj-settings-product-tabs.php:398
3460
- #: includes/settings/wcj-settings-product-tabs.php:419
3461
- #: includes/settings/wcj-settings-product-tabs.php:440
3462
- msgid "Priority (i.e. Order)"
3463
- msgstr ""
3464
-
3465
- #: includes/class-wcj-product-info.php:260
3466
- msgid ""
3467
- "Number of product info fields. Click \"Save changes\" after you change this "
3468
- "number."
3469
- msgstr ""
3470
-
3471
- #: includes/class-wcj-product-info.php:282
3472
- msgid ""
3473
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
3474
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
3475
- "before=\" (\" after=\"%)\"]"
3476
- msgstr ""
3477
-
3478
- #: includes/class-wcj-product-info.php:283
3479
- msgid "[wcj_product_total_sales before=\"Total sales: \"]"
3480
- msgstr ""
3481
-
3482
- #: includes/class-wcj-product-input-fields.php:24
3483
- #: includes/admin/class-wc-settings-jetpack.php:488
3484
- #: includes/input-fields/class-wcj-product-input-fields-core.php:185
3485
- msgid "Product Input Fields"
3486
- msgstr ""
3487
-
3488
- #: includes/class-wcj-product-input-fields.php:25
3489
- msgid "Add input fields to the products."
3490
- msgstr ""
3491
-
3492
- #: includes/class-wcj-product-listings.php:27
3493
- msgid "Product Listings"
3494
- msgstr ""
3495
-
3496
- #: includes/class-wcj-product-listings.php:28
3497
- msgid ""
3498
- "Change display options for shop and category pages: show/hide categories "
3499
- "count, exclude categories, show/hide empty categories."
3500
- msgstr ""
3501
-
3502
- #: includes/class-wcj-product-msrp.php:30
3503
- msgid "Product MSRP"
3504
- msgstr ""
3505
-
3506
- #: includes/class-wcj-product-msrp.php:31
3507
- msgid ""
3508
- "The <strong>manufacturer's suggested retail price</strong> (<strong>MSRP</"
3509
- "strong>), also known as the <strong>list price</strong>, or the "
3510
- "<strong>recommended retail price</strong> (<strong>RRP</strong>), or the "
3511
- "<strong>suggested retail price</strong> (<strong>SRP</strong>), of a product "
3512
- "is the price at which the manufacturer recommends that the retailer sell the "
3513
- "product."
3514
- msgstr ""
3515
-
3516
- #: includes/class-wcj-product-msrp.php:32
3517
- #, php-format
3518
- msgid "Booster stores MSRP as product meta with %s key."
3519
- msgstr ""
3520
-
3521
- #: includes/class-wcj-product-msrp.php:33
3522
- msgid "Save and display product MSRP in WooCommerce."
3523
- msgstr ""
3524
-
3525
- #: includes/class-wcj-product-msrp.php:92
3526
- #: includes/class-wcj-product-msrp.php:123
3527
- #: includes/settings/meta-box/wcj-settings-meta-box-product-msrp.php:35
3528
- msgid "MSRP"
3529
- msgstr ""
3530
-
3531
- #: includes/class-wcj-product-open-pricing.php:25
3532
- msgid "Product Open Pricing (Name Your Price)"
3533
- msgstr ""
3534
-
3535
- #: includes/class-wcj-product-open-pricing.php:26
3536
- msgid "Let your store customers enter price for the product manually."
3537
- msgstr ""
3538
-
3539
- #: includes/class-wcj-product-open-pricing.php:71
3540
- msgid "Open Pricing"
3541
- msgstr ""
3542
-
3543
- #: includes/class-wcj-product-open-pricing.php:214
3544
- msgid ""
3545
- "Booster: Free plugin's version is limited to only one open pricing product "
3546
- "enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
3547
- "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
3548
- "products."
3549
- msgstr ""
3550
-
3551
- #: includes/class-wcj-product-open-pricing.php:326
3552
- #: includes/settings/wcj-settings-product-open-pricing.php:73
3553
- msgid "Price is required!"
3554
- msgstr ""
3555
-
3556
- #: includes/class-wcj-product-open-pricing.php:332
3557
- #: includes/settings/wcj-settings-product-open-pricing.php:81
3558
- msgid "Entered price is too small!"
3559
- msgstr ""
3560
-
3561
- #: includes/class-wcj-product-open-pricing.php:337
3562
- #: includes/settings/wcj-settings-product-open-pricing.php:89
3563
- msgid "Entered price is too big!"
3564
- msgstr ""
3565
-
3566
- #: includes/class-wcj-product-open-pricing.php:431
3567
- #: includes/settings/wcj-settings-product-open-pricing.php:29
3568
- msgid "Name Your Price"
3569
- msgstr ""
3570
-
3571
- #: includes/class-wcj-product-price-by-formula.php:26
3572
- msgid "Product Price by Formula"
3573
- msgstr ""
3574
-
3575
- #: includes/class-wcj-product-price-by-formula.php:27
3576
- msgid "Set formula for automatic product price calculation."
3577
- msgstr ""
3578
-
3579
- #: includes/class-wcj-product-price-by-formula.php:136
3580
- msgid "Error in formula"
3581
- msgstr ""
3582
-
3583
- #: includes/class-wcj-product-price-by-formula.php:228
3584
- msgid ""
3585
- "Booster: Free plugin's version is limited to only one price by formula "
3586
- "product enabled at a time. You will need to get <a href=\"https://booster.io/"
3587
- "plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price "
3588
- "by formula products."
3589
- msgstr ""
3590
-
3591
- #: includes/class-wcj-product-price-by-formula.php:262
3592
- msgid "Final Price Preview"
3593
- msgstr ""
3594
-
3595
- #: includes/class-wcj-product-tabs.php:24
3596
- msgid "Product Tabs"
3597
- msgstr ""
3598
-
3599
- #: includes/class-wcj-product-tabs.php:25
3600
- msgid ""
3601
- "Add custom product tabs - globally or per product. Customize or completely "
3602
- "remove WooCommerce default product tabs."
3603
- msgstr ""
3604
-
3605
- #: includes/class-wcj-product-tabs.php:577
3606
- msgid "Booster: Custom Tabs"
3607
- msgstr ""
3608
-
3609
- #: includes/class-wcj-product-tabs.php:604
3610
- msgid "Total number of custom tabs"
3611
- msgstr ""
3612
-
3613
- #: includes/class-wcj-product-tabs.php:610
3614
- #: includes/input-fields/class-wcj-product-input-fields-core.php:213
3615
- msgid "Click \"Update\" product after you change this number."
3616
- msgstr ""
3617
-
3618
- #: includes/class-wcj-product-tabs.php:625
3619
- #: includes/settings/wcj-settings-checkout-custom-fields.php:123
3620
- #: includes/settings/wcj-settings-product-tabs.php:79
3621
- msgid "Key"
3622
- msgstr ""
3623
-
3624
- #: includes/class-wcj-product-tabs.php:630
3625
- #: includes/input-fields/wcj-product-input-fields-options.php:21
3626
- #: includes/settings/wcj-settings-related-products.php:59
3627
- #: includes/settings/wcj-settings-related-products.php:84
3628
- msgid "Order"
3629
- msgstr ""
3630
-
3631
- #: includes/class-wcj-product-tabs.php:635
3632
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:47
3633
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:73
3634
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:122
3635
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:138
3636
- #: includes/settings/wcj-settings-cart.php:44
3637
- #: includes/settings/wcj-settings-checkout-custom-info.php:41
3638
- #: includes/settings/wcj-settings-left-to-free-shipping.php:34
3639
- #: includes/settings/wcj-settings-left-to-free-shipping.php:65
3640
- #: includes/settings/wcj-settings-left-to-free-shipping.php:99
3641
- #: includes/settings/wcj-settings-mini-cart.php:39
3642
- #: includes/settings/wcj-settings-my-account.php:166
3643
- #: includes/settings/wcj-settings-my-account.php:253
3644
- #: includes/settings/wcj-settings-product-custom-info.php:88
3645
- #: includes/settings/wcj-settings-product-tabs.php:92
3646
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:59
3647
- msgid "Content"
3648
- msgstr ""
3649
-
3650
- #: includes/class-wcj-product-tabs.php:640
3651
- #: includes/settings/wcj-settings-cart-customization.php:63
3652
- #: includes/settings/wcj-settings-product-tabs.php:100
3653
- msgid "Link"
3654
- msgstr ""
3655
-
3656
- #: includes/class-wcj-product-tabs.php:642
3657
- #: includes/settings/wcj-settings-product-tabs.php:101
3658
- msgid ""
3659
- "If you wish to forward tab to new link, enter it here. In this case content "
3660
- "is ignored. Leave blank to show content."
3661
- msgstr ""
3662
-
3663
- #: includes/class-wcj-product-tabs.php:646
3664
- #: includes/settings/wcj-settings-product-tabs.php:108
3665
- msgid "Link - Open in New Window"
3666
- msgstr ""
3667
-
3668
- #: includes/class-wcj-product-tabs.php:649
3669
- #: includes/input-fields/wcj-product-input-fields-options.php:101
3670
- #: includes/settings/wcj-settings-admin-orders-list.php:84
3671
- #: includes/settings/wcj-settings-checkout-custom-fields.php:265
3672
- #: includes/settings/wcj-settings-product-addons.php:233
3673
- #: includes/settings/wcj-settings-related-products.php:176
3674
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
3675
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:60
3676
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
3677
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:64
3678
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
3679
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:134
3680
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
3681
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
3682
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
3683
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
3684
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:117
3685
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
3686
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:35
3687
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:45
3688
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:55
3689
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
3690
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
3691
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:25
3692
- #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:20
3693
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
3694
- #: includes/widgets/class-wcj-widget-country-switcher.php:82
3695
- msgid "No"
3696
- msgstr ""
3697
-
3698
- #: includes/class-wcj-product-tabs.php:650
3699
- #: includes/input-fields/wcj-product-input-fields-options.php:94
3700
- #: includes/settings/wcj-settings-checkout-custom-fields.php:259
3701
- #: includes/settings/wcj-settings-eu-vat-number.php:50
3702
- #: includes/settings/wcj-settings-eu-vat-number.php:57
3703
- #: includes/settings/wcj-settings-eu-vat-number.php:75
3704
- #: includes/settings/wcj-settings-eu-vat-number.php:101
3705
- #: includes/settings/wcj-settings-eu-vat-number.php:111
3706
- #: includes/settings/wcj-settings-eu-vat-number.php:130
3707
- #: includes/settings/wcj-settings-product-addons.php:232
3708
- #: includes/settings/wcj-settings-related-products.php:175
3709
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
3710
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:61
3711
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
3712
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:65
3713
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:36
3714
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:133
3715
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
3716
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
3717
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
3718
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
3719
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:116
3720
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
3721
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:34
3722
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:44
3723
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:54
3724
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
3725
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
3726
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:26
3727
- #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:19
3728
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
3729
- #: includes/widgets/class-wcj-widget-country-switcher.php:83
3730
- msgid "Yes"
3731
- msgstr ""
3732
-
3733
- #: includes/class-wcj-product-tabs.php:658
3734
- #: includes/settings/wcj-settings-checkout-core-fields.php:71
3735
- #: includes/settings/wcj-settings-currency-exchange-rates.php:158
3736
- #: includes/settings/wcj-settings-order-numbers.php:46
3737
- #: includes/settings/wcj-settings-orders.php:180
3738
- #: includes/settings/wcj-settings-product-add-to-cart.php:64
3739
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:22
3740
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
3741
- msgid "Disabled"
3742
- msgstr ""
3743
-
3744
- #: includes/class-wcj-product-tabs.php:661
3745
- #: includes/settings/wcj-settings-product-tabs.php:71
3746
- #: includes/settings/wcj-settings-product-tabs.php:270
3747
- msgid "Custom Product Tab"
3748
- msgstr ""
3749
-
3750
- #: includes/class-wcj-products-per-page.php:28
3751
- msgid "Products per Page"
3752
- msgstr ""
3753
-
3754
- #: includes/class-wcj-products-per-page.php:29
3755
- msgid "Add \"products per page\" selector to WooCommerce."
3756
- msgstr ""
3757
-
3758
- #: includes/class-wcj-products-per-page.php:85
3759
- #: includes/settings/wcj-settings-products-per-page.php:63
3760
- msgid ""
3761
- "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
3762
- "Products on page %select_form%"
3763
- msgstr ""
3764
-
3765
- #: includes/class-wcj-products-xml.php:26
3766
- msgid "Products XML Feeds"
3767
- msgstr ""
3768
-
3769
- #: includes/class-wcj-products-xml.php:27
3770
- msgid "Products XML feeds."
3771
- msgstr ""
3772
-
3773
- #: includes/class-wcj-products-xml.php:95
3774
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:210
3775
- msgid "Once Weekly"
3776
- msgstr ""
3777
-
3778
- #: includes/class-wcj-products-xml.php:99
3779
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:214
3780
- msgid "Once a Minute"
3781
- msgstr ""
3782
-
3783
- #: includes/class-wcj-products-xml.php:114
3784
- msgid "An error has occurred while creating products XML file."
3785
- msgstr ""
3786
-
3787
- #: includes/class-wcj-products-xml.php:117
3788
- #, php-format
3789
- msgid "Products XML file #%s created successfully."
3790
- msgstr ""
3791
-
3792
- #: includes/class-wcj-purchase-data.php:28
3793
- msgid "Cost of Goods"
3794
- msgstr ""
3795
-
3796
- #: includes/class-wcj-purchase-data.php:29
3797
- msgid "Save product purchase costs data for admin reports."
3798
- msgstr ""
3799
-
3800
- #: includes/class-wcj-purchase-data.php:35
3801
- msgid "\"WooCommerce Cost of Goods\" Data Import"
3802
- msgstr ""
3803
-
3804
- #: includes/class-wcj-purchase-data.php:36
3805
- msgid "Import products costs from \"WooCommerce Cost of Goods\"."
3806
- msgstr ""
3807
-
3808
- #: includes/class-wcj-purchase-data.php:78
3809
- msgid "Product Title"
3810
- msgstr ""
3811
-
3812
- #: includes/class-wcj-purchase-data.php:79
3813
- msgid "WooCommerce Cost of Goods (source)"
3814
- msgstr ""
3815
-
3816
- #: includes/class-wcj-purchase-data.php:80
3817
- msgid "Booster: Product cost (destination)"
3818
- msgstr ""
3819
-
3820
- #: includes/class-wcj-purchase-data.php:93
3821
- #: includes/admin/class-wc-settings-jetpack.php:298
3822
- msgid "Import"
3823
- msgstr ""
3824
-
3825
- #: includes/class-wcj-purchase-data.php:115
3826
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:124
3827
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:194
3828
- #: includes/shipping/class-wc-shipping-wcj-custom.php:122
3829
- #: includes/shipping/class-wc-shipping-wcj-custom.php:164
3830
- msgid "Cost"
3831
- msgstr ""
3832
-
3833
- #: includes/class-wcj-purchase-data.php:118
3834
- #: includes/class-wcj-purchase-data.php:181
3835
- #: includes/class-wcj-purchase-data.php:268
3836
- #: includes/functions/wcj-functions-reports.php:28
3837
- #: includes/settings/wcj-settings-purchase-data.php:144
3838
- #: includes/settings/wcj-settings-purchase-data.php:172
3839
- msgid "Profit"
3840
- msgstr ""
3841
-
3842
- #: includes/class-wcj-purchase-data.php:184
3843
- #: includes/settings/wcj-settings-purchase-data.php:153
3844
- #: includes/settings/wcj-settings-purchase-data.php:179
3845
- msgid "Purchase Cost"
3846
- msgstr ""
3847
-
3848
- #: includes/class-wcj-purchase-data.php:266
3849
- msgid "Selling"
3850
- msgstr ""
3851
-
3852
- #: includes/class-wcj-purchase-data.php:267
3853
- msgid "Buying"
3854
- msgstr ""
3855
-
3856
- #: includes/class-wcj-purchase-data.php:275
3857
- msgid "Report"
3858
- msgstr ""
3859
-
3860
- #: includes/class-wcj-related-products.php:38
3861
- #: includes/admin/class-wc-settings-jetpack.php:490
3862
- #: includes/settings/wcj-settings-free-price.php:20
3863
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:30
3864
- msgid "Related Products"
3865
- msgstr ""
3866
-
3867
- #: includes/class-wcj-related-products.php:39
3868
- msgid ""
3869
- "Change displayed related products number, columns, order; relate by tag, "
3870
- "category, product attribute or manually on per product basis. Hide related "
3871
- "products completely."
3872
- msgstr ""
3873
-
3874
- #: includes/class-wcj-related-products.php:42
3875
- #, php-format
3876
- msgid ""
3877
- "You may need to <a href=\"%s\">clear all products transients</a> to "
3878
- "immediately see results on frontend after changing module's settings. "
3879
- "Alternatively you can just update each product individually to clear its "
3880
- "transients."
3881
- msgstr ""
3882
-
3883
- #: includes/class-wcj-reports.php:34
3884
- msgid "Stock, sales, customers etc. reports."
3885
- msgstr ""
3886
-
3887
- #: includes/class-wcj-reports.php:74
3888
- msgid "Booster: More Ranges - Months"
3889
- msgstr ""
3890
-
3891
- #: includes/class-wcj-reports.php:76 includes/class-wcj-reports.php:121
3892
- msgid "Select Range"
3893
- msgstr ""
3894
-
3895
- #: includes/class-wcj-reports.php:119
3896
- msgid "Booster: More Ranges"
3897
- msgstr ""
3898
-
3899
- #: includes/class-wcj-reports.php:222
3900
- msgid "Booster: Product Sales (Daily)"
3901
- msgstr ""
3902
-
3903
- #: includes/class-wcj-reports.php:229
3904
- msgid "Booster: Product Sales (Monthly)"
3905
- msgstr ""
3906
-
3907
- #: includes/class-wcj-reports.php:236
3908
- msgid "Booster: Monthly Sales (with Currency Conversion)"
3909
- msgstr ""
3910
-
3911
- #: includes/class-wcj-reports.php:243
3912
- msgid "Booster: Payment Gateways"
3913
- msgstr ""
3914
-
3915
- #: includes/class-wcj-reports.php:258
3916
- msgid "Booster: All in stock"
3917
- msgstr ""
3918
-
3919
- #: includes/class-wcj-reports.php:265
3920
- msgid "Booster: Understocked"
3921
- msgstr ""
3922
-
3923
- #: includes/class-wcj-reports.php:272
3924
- msgid "Booster: Overstocked"
3925
- msgstr ""
3926
-
3927
- #: includes/class-wcj-reports.php:287
3928
- msgid "Booster: Customers by Country"
3929
- msgstr ""
3930
-
3931
- #: includes/class-wcj-reports.php:294
3932
- msgid "Booster: Customers by Country Sets"
3933
- msgstr ""
3934
-
3935
- #: includes/class-wcj-sale-flash.php:28
3936
- #: includes/settings/wcj-settings-sale-flash.php:26
3937
- msgid "Sale Flash"
3938
- msgstr ""
3939
-
3940
- #: includes/class-wcj-sale-flash.php:29
3941
- msgid "Customize products sale flash."
3942
- msgstr ""
3943
-
3944
- #: includes/class-wcj-sale-flash.php:84 includes/class-wcj-sale-flash.php:120
3945
- #: includes/settings/wcj-settings-sale-flash.php:29
3946
- #: includes/settings/wcj-settings-sale-flash.php:113
3947
- #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:26
3948
- msgid "Sale!"
3949
- msgstr ""
3950
-
3951
- #: includes/class-wcj-shipping-by-cities.php:25
3952
- msgid "Shipping Methods by City or Postcode"
3953
- msgstr ""
3954
-
3955
- #: includes/class-wcj-shipping-by-cities.php:26
3956
- msgid ""
3957
- "Set shipping cities or postcodes to include/exclude for shipping methods to "
3958
- "show up."
3959
- msgstr ""
3960
-
3961
- #: includes/class-wcj-shipping-by-cities.php:31
3962
- msgid "Cities"
3963
- msgstr ""
3964
-
3965
- #: includes/class-wcj-shipping-by-cities.php:32
3966
- msgid "Otherwise enter cities one per line."
3967
- msgstr ""
3968
-
3969
- #: includes/class-wcj-shipping-by-cities.php:38
3970
- msgid "Postcodes"
3971
- msgstr ""
3972
-
3973
- #: includes/class-wcj-shipping-by-cities.php:39
3974
- msgid "Otherwise enter postcodes one per line."
3975
- msgstr ""
3976
-
3977
- #: includes/class-wcj-shipping-by-cities.php:40
3978
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:121
3979
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:131
3980
- msgid ""
3981
- "Postcodes containing wildcards (e.g. CB23*) and fully numeric ranges (e.g. "
3982
- "<code>90210...99000</code>) are also supported."
3983
- msgstr ""
3984
-
3985
- #: includes/class-wcj-shipping-by-order-amount.php:26
3986
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:33
3987
- msgid "Shipping Methods by Min/Max Order Amount"
3988
- msgstr ""
3989
-
3990
- #: includes/class-wcj-shipping-by-order-amount.php:27
3991
- msgid ""
3992
- "Set minimum and/or maximum order amount for shipping methods to show up."
3993
- msgstr ""
3994
-
3995
- #: includes/class-wcj-shipping-by-order-qty.php:26
3996
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:33
3997
- msgid "Shipping Methods by Min/Max Order Quantity"
3998
- msgstr ""
3999
-
4000
- #: includes/class-wcj-shipping-by-order-qty.php:27
4001
- msgid ""
4002
- "Set minimum and/or maximum order quantity for shipping methods to show up."
4003
- msgstr ""
4004
-
4005
- #: includes/class-wcj-shipping-by-products.php:26
4006
- #: includes/settings/wcj-settings-shipping-options.php:57
4007
- msgid "Shipping Methods by Products"
4008
- msgstr ""
4009
-
4010
- #: includes/class-wcj-shipping-by-products.php:27
4011
- msgid ""
4012
- "Set products, product categories, tags or shipping classes to include/"
4013
- "exclude for shipping methods to show up."
4014
- msgstr ""
4015
-
4016
- #: includes/class-wcj-shipping-by-products.php:33
4017
- msgid "Shipping methods by <strong>products</strong>."
4018
- msgstr ""
4019
-
4020
- #: includes/class-wcj-shipping-by-products.php:36
4021
- #: includes/settings/wcj-settings-currency-per-product.php:223
4022
- msgid "Product Categories"
4023
- msgstr ""
4024
-
4025
- #: includes/class-wcj-shipping-by-products.php:37
4026
- msgid "Shipping methods by <strong>products categories</strong>."
4027
- msgstr ""
4028
-
4029
- #: includes/class-wcj-shipping-by-products.php:40
4030
- #: includes/settings/wcj-settings-currency-per-product.php:235
4031
- msgid "Product Tags"
4032
- msgstr ""
4033
-
4034
- #: includes/class-wcj-shipping-by-products.php:41
4035
- msgid "Shipping methods by <strong>products tags</strong>."
4036
- msgstr ""
4037
-
4038
- #: includes/class-wcj-shipping-by-products.php:44
4039
- msgid "Product Shipping Classes"
4040
- msgstr ""
4041
-
4042
- #: includes/class-wcj-shipping-by-products.php:168
4043
- #: includes/functions/wcj-functions-shipping.php:108
4044
- msgid "No shipping class"
4045
- msgstr ""
4046
-
4047
- #: includes/class-wcj-shipping-by-products.php:185
4048
- msgid "\"Include\" Options"
4049
- msgstr ""
4050
-
4051
- #: includes/class-wcj-shipping-by-products.php:186
4052
- msgid ""
4053
- "Enable this checkbox if you want all products in cart to be valid (instead "
4054
- "of at least one)."
4055
- msgstr ""
4056
-
4057
- #: includes/class-wcj-shipping-by-products.php:187
4058
- msgid "Validate all"
4059
- msgstr ""
4060
-
4061
- #: includes/class-wcj-shipping-by-products.php:193
4062
- msgid "Cart instead of Package"
4063
- msgstr ""
4064
-
4065
- #: includes/class-wcj-shipping-by-products.php:194
4066
- msgid ""
4067
- "Enable this checkbox if you want to check all cart products instead of "
4068
- "package."
4069
- msgstr ""
4070
-
4071
- #: includes/class-wcj-shipping-by-products.php:203
4072
- msgid "Add Products Variations"
4073
- msgstr ""
4074
-
4075
- #: includes/class-wcj-shipping-by-products.php:204
4076
- msgid ""
4077
- "Enable this checkbox if you want to add products variations to the products "
4078
- "list."
4079
- msgstr ""
4080
-
4081
- #: includes/class-wcj-shipping-by-products.php:205
4082
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:25
4083
- #: includes/settings/wcj-settings-shipping-by-condition.php:28
4084
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:23
4085
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:23
4086
- #: includes/settings/wcj-settings-shipping-description.php:61
4087
- #: includes/settings/wcj-settings-shipping-icons.php:63
4088
- #: includes/settings/wcj-settings-shipping-time.php:33
4089
- #: includes/settings/wcj-settings-shipping-time.php:42
4090
- msgid "Save changes after enabling this option."
4091
- msgstr ""
4092
-
4093
- #: includes/class-wcj-shipping-by-time.php:27
4094
- msgid "Shipping Methods by Current Date/Time"
4095
- msgstr ""
4096
-
4097
- #: includes/class-wcj-shipping-by-time.php:28
4098
- msgid ""
4099
- "Set date and/or time to include/exclude for shipping methods to show up."
4100
- msgstr ""
4101
-
4102
- #: includes/class-wcj-shipping-by-time.php:33
4103
- msgid "Current Date/Time"
4104
- msgstr ""
4105
-
4106
- #: includes/class-wcj-shipping-by-time.php:34
4107
- #, php-format
4108
- msgid "Current time: %s."
4109
- msgstr ""
4110
-
4111
- #: includes/class-wcj-shipping-by-time.php:35
4112
- #, php-format
4113
- msgid ""
4114
- "Time <em>from</em> and time <em>to</em> must be separated with %s symbol."
4115
- msgstr ""
4116
-
4117
- #: includes/class-wcj-shipping-by-time.php:36
4118
- #, php-format
4119
- msgid ""
4120
- "Each time input must be set in format that is parsable by PHP %s function."
4121
- msgstr ""
4122
-
4123
- #: includes/class-wcj-shipping-by-time.php:38
4124
- #, php-format
4125
- msgid "Valid time input examples are: %s"
4126
- msgstr ""
4127
-
4128
- #: includes/class-wcj-shipping-by-time.php:112
4129
- #, php-format
4130
- msgid ""
4131
- "According to current time, your time input will be parsed as: from %s to %s."
4132
- msgstr ""
4133
-
4134
- #: includes/class-wcj-shipping-by-time.php:115
4135
- #, php-format
4136
- msgid "Error: %s"
4137
- msgstr ""
4138
-
4139
- #: includes/class-wcj-shipping-by-time.php:115
4140
- msgid "Time input is not parsable!"
4141
- msgstr ""
4142
-
4143
- #: includes/class-wcj-shipping-by-user-role.php:25
4144
- msgid "Shipping Methods by Users"
4145
- msgstr ""
4146
-
4147
- #: includes/class-wcj-shipping-by-user-role.php:26
4148
- msgid ""
4149
- "Set user roles, users or membership plans to include/exclude for shipping "
4150
- "methods to show up."
4151
- msgstr ""
4152
-
4153
- #: includes/class-wcj-shipping-by-user-role.php:33
4154
- #: includes/settings/wcj-settings-multicurrency.php:245
4155
- #: includes/settings/wcj-settings-order-min-amount.php:104
4156
- #: includes/settings/wcj-settings-price-by-user-role.php:90
4157
- #, php-format
4158
- msgid ""
4159
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
4160
- "<a href=\"%s\">General</a> module."
4161
- msgstr ""
4162
-
4163
- #: includes/class-wcj-shipping-by-user-role.php:38
4164
- msgid "Users"
4165
- msgstr ""
4166
-
4167
- #: includes/class-wcj-shipping-by-user-role.php:42
4168
- msgid "User Membership Plans"
4169
- msgstr ""
4170
-
4171
- #: includes/class-wcj-shipping-by-user-role.php:44
4172
- #, php-format
4173
- msgid ""
4174
- "This section requires <a target=\"_blank\" href=\"%s\">WooCommerce "
4175
- "Memberships</a> plugin."
4176
- msgstr ""
4177
-
4178
- #: includes/class-wcj-shipping-calculator.php:23
4179
- msgid "Shipping Calculator"
4180
- msgstr ""
4181
-
4182
- #: includes/class-wcj-shipping-calculator.php:24
4183
- msgid "Customize WooCommerce shipping calculator on cart page."
4184
- msgstr ""
4185
-
4186
- #: includes/class-wcj-shipping-description.php:25
4187
- msgid "Shipping Descriptions"
4188
- msgstr ""
4189
-
4190
- #: includes/class-wcj-shipping-description.php:26
4191
- msgid "Add descriptions to shipping methods on frontend."
4192
- msgstr ""
4193
-
4194
- #: includes/class-wcj-shipping-icons.php:25
4195
- msgid "Shipping Icons"
4196
- msgstr ""
4197
-
4198
- #: includes/class-wcj-shipping-icons.php:26
4199
- msgid "Add icons to shipping methods on frontend."
4200
- msgstr ""
4201
-
4202
- #: includes/class-wcj-shipping-options.php:26
4203
- msgid "Shipping Options"
4204
- msgstr ""
4205
-
4206
- #: includes/class-wcj-shipping-options.php:27
4207
- msgid "Hide shipping when free is available."
4208
- msgstr ""
4209
-
4210
- #: includes/class-wcj-shipping-options.php:28
4211
- msgid "Grant free shipping on per product basis."
4212
- msgstr ""
4213
-
4214
- #: includes/class-wcj-shipping-options.php:120
4215
- msgid "Booster: Hide when free is available"
4216
- msgstr ""
4217
-
4218
- #: includes/class-wcj-shipping-options.php:128
4219
- #: includes/settings/wcj-settings-shipping-options.php:28
4220
- msgid ""
4221
- "Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat "
4222
- "Rate\" only."
4223
- msgstr ""
4224
-
4225
- #: includes/class-wcj-shipping-options.php:132
4226
- #: includes/settings/wcj-settings-shipping-options.php:32
4227
- msgid "Hide all"
4228
- msgstr ""
4229
-
4230
- #: includes/class-wcj-shipping-options.php:133
4231
- #: includes/settings/wcj-settings-shipping-options.php:33
4232
- msgid "Hide all except \"Local Pickup\""
4233
- msgstr ""
4234
-
4235
- #: includes/class-wcj-shipping-options.php:134
4236
- #: includes/settings/wcj-settings-shipping-options.php:34
4237
- msgid "Hide \"Flat Rate\" only"
4238
- msgstr ""
4239
-
4240
- #: includes/class-wcj-shipping-time.php:25
4241
- msgid "Shipping Time"
4242
- msgstr ""
4243
-
4244
- #: includes/class-wcj-shipping-time.php:26
4245
- #, php-format
4246
- msgid ""
4247
- "After you set estimated shipping time here, you can display it on frontend "
4248
- "with %s shortcodes."
4249
- msgstr ""
4250
-
4251
- #: includes/class-wcj-shipping-time.php:28
4252
- msgid "Add delivery time estimation to shipping methods."
4253
- msgstr ""
4254
-
4255
- #: includes/class-wcj-shipping.php:23
4256
- #: includes/settings/wcj-settings-shipping.php:16
4257
- #: includes/settings/wcj-settings-shipping.php:23
4258
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:179
4259
- #: includes/shipping/class-wc-shipping-wcj-custom.php:110
4260
- msgid "Custom Shipping"
4261
- msgstr ""
4262
-
4263
- #: includes/class-wcj-shipping.php:24
4264
- msgid "Add multiple custom shipping methods to WooCommerce."
4265
- msgstr ""
4266
-
4267
- #: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:539
4268
- #: includes/export/class-wcj-fields-helper.php:283
4269
- msgid "SKU"
4270
- msgstr ""
4271
-
4272
- #: includes/class-wcj-sku.php:24
4273
- msgid "Generate SKUs automatically. Search by SKU on frontend."
4274
- msgstr ""
4275
-
4276
- #: includes/class-wcj-sku.php:30
4277
- msgid "Autogenerate SKUs"
4278
- msgstr ""
4279
-
4280
- #: includes/class-wcj-sku.php:31
4281
- msgid "The tool generates and sets product SKUs for existing products."
4282
- msgstr ""
4283
-
4284
- #: includes/class-wcj-sku.php:540
4285
- msgid "Old SKU"
4286
- msgstr ""
4287
-
4288
- #: includes/class-wcj-sku.php:546
4289
- msgid "SKUs generated and set successfully!"
4290
- msgstr ""
4291
-
4292
- #: includes/class-wcj-sku.php:556
4293
- msgid "Preview SKUs"
4294
- msgstr ""
4295
-
4296
- #: includes/class-wcj-sku.php:558
4297
- msgid "Set SKUs"
4298
- msgstr ""
4299
-
4300
- #: includes/class-wcj-sku.php:561
4301
- msgid ""
4302
- "You can optionally limit affected products by main product's ID (set option "
4303
- "to zero to ignore):"
4304
- msgstr ""
4305
-
4306
- #: includes/class-wcj-sku.php:563
4307
- msgid "Min ID"
4308
- msgstr ""
4309
-
4310
- #: includes/class-wcj-sku.php:566
4311
- msgid "Max ID"
4312
- msgstr ""
4313
-
4314
- #: includes/class-wcj-sorting.php:24
4315
- msgid "Sorting"
4316
- msgstr ""
4317
-
4318
- #: includes/class-wcj-sorting.php:25
4319
- msgid ""
4320
- "Add more sorting options; rename or remove default sorting options; "
4321
- "rearrange sorting options on frontend."
4322
- msgstr ""
4323
-
4324
- #: includes/class-wcj-sorting.php:214
4325
- msgid "Default sorting"
4326
- msgstr ""
4327
-
4328
- #: includes/class-wcj-sorting.php:215
4329
- msgid "Sort by popularity"
4330
- msgstr ""
4331
-
4332
- #: includes/class-wcj-sorting.php:216
4333
- msgid "Sort by average rating"
4334
- msgstr ""
4335
-
4336
- #: includes/class-wcj-sorting.php:217
4337
- msgid "Sort by newness"
4338
- msgstr ""
4339
-
4340
- #: includes/class-wcj-sorting.php:218
4341
- msgid "Sort by price: low to high"
4342
- msgstr ""
4343
-
4344
- #: includes/class-wcj-sorting.php:219
4345
- msgid "Sort by price: high to low"
4346
- msgstr ""
4347
-
4348
- #: includes/class-wcj-stock.php:28
4349
- msgid "Products stock display management."
4350
- msgstr ""
4351
-
4352
- #: includes/class-wcj-tax-display.php:25
4353
- msgid "Tax Display"
4354
- msgstr ""
4355
-
4356
- #: includes/class-wcj-tax-display.php:26
4357
- msgid "Customize WooCommerce tax display."
4358
- msgstr ""
4359
-
4360
- #: includes/class-wcj-template-editor.php:25
4361
- msgid "Template Editor"
4362
- msgstr ""
4363
-
4364
- #: includes/class-wcj-template-editor.php:26
4365
- msgid "WooCommerce template editor."
4366
- msgstr ""
4367
-
4368
- #: includes/class-wcj-track-users.php:26
4369
- msgid "User Tracking"
4370
- msgstr ""
4371
-
4372
- #: includes/class-wcj-track-users.php:27
4373
- msgid "Track your users in WooCommerce."
4374
- msgstr ""
4375
-
4376
- #: includes/class-wcj-track-users.php:33
4377
- msgid "Last 24 hours"
4378
- msgstr ""
4379
-
4380
- #: includes/class-wcj-track-users.php:35
4381
- msgid "Last 28 days"
4382
- msgstr ""
4383
-
4384
- #: includes/class-wcj-track-users.php:78
4385
- msgid "Referer"
4386
- msgstr ""
4387
-
4388
- #: includes/class-wcj-track-users.php:81
4389
- msgid "Referer Type"
4390
- msgstr ""
4391
-
4392
- #: includes/class-wcj-track-users.php:163
4393
- msgid "Acquisition Source"
4394
- msgstr ""
4395
-
4396
- #: includes/class-wcj-track-users.php:197
4397
- #: includes/settings/wcj-settings-products-xml.php:120
4398
- msgid "URL:"
4399
- msgstr ""
4400
-
4401
- #: includes/class-wcj-track-users.php:198
4402
- msgid "Type:"
4403
- msgstr ""
4404
-
4405
- #: includes/class-wcj-track-users.php:251
4406
- #, php-format
4407
- msgid "Top %d countries by visits"
4408
- msgstr ""
4409
-
4410
- #: includes/class-wcj-track-users.php:319
4411
- #: includes/input-fields/wcj-product-input-fields-options.php:43
4412
- #: includes/settings/wcj-settings-checkout-custom-fields.php:145
4413
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
4414
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
4415
- msgid "Country"
4416
- msgstr ""
4417
-
4418
- #: includes/class-wcj-track-users.php:319
4419
- msgid "Visits"
4420
- msgstr ""
4421
-
4422
- #: includes/class-wcj-track-users.php:329
4423
- msgid "No stats yet."
4424
- msgstr ""
4425
-
4426
- #: includes/class-wcj-track-users.php:335
4427
- msgid "Delete all tracking data"
4428
- msgstr ""
4429
-
4430
- #: includes/class-wcj-track-users.php:340
4431
- #, php-format
4432
- msgid "Stats generated at %s. Next update is scheduled at %s."
4433
- msgstr ""
4434
-
4435
- #: includes/class-wcj-track-users.php:341
4436
- msgid "Update now"
4437
- msgstr ""
4438
-
4439
- #: includes/class-wcj-upsells.php:29
4440
- msgid "Upsells"
4441
- msgstr ""
4442
-
4443
- #: includes/class-wcj-upsells.php:30
4444
- msgid ""
4445
- "Upsells are products which you recommend instead of the currently viewed "
4446
- "product, for example, products that are more profitable or better quality or "
4447
- "more expensive."
4448
- msgstr ""
4449
-
4450
- #: includes/class-wcj-upsells.php:31
4451
- msgid "Customize upsells products display."
4452
- msgstr ""
4453
-
4454
- #: includes/class-wcj-url-coupons.php:25
4455
- msgid "URL Coupons"
4456
- msgstr ""
4457
-
4458
- #: includes/class-wcj-url-coupons.php:26
4459
- msgid "WooCommerce URL coupons."
4460
- msgstr ""
4461
-
4462
- #: includes/class-wcj-wholesale-price.php:27
4463
- msgid "Wholesale Price"
4464
- msgstr ""
4465
-
4466
- #: includes/class-wcj-wholesale-price.php:28
4467
- msgid ""
4468
- "Set wholesale pricing depending on product quantity in cart (buy more pay "
4469
- "less)."
4470
- msgstr ""
4471
-
4472
- #: includes/class-wcj-wpml.php:24
4473
- msgid "Booster WPML"
4474
- msgstr ""
4475
-
4476
- #: includes/class-wcj-wpml.php:25
4477
- msgid "Booster for WooCommerce basic WPML support."
4478
- msgstr ""
4479
-
4480
- #: includes/class-wcj-wpml.php:137
4481
- msgid "File wpml-config.xml successfully regenerated!"
4482
- msgstr ""
4483
-
4484
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
4485
- msgid "Booster: Custom Add to Cart"
4486
- msgstr ""
4487
-
4488
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
4489
- msgid "Single product view"
4490
- msgstr ""
4491
-
4492
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
4493
- msgid "Product category (archive) view"
4494
- msgstr ""
4495
-
4496
- #: includes/admin/class-wc-settings-jetpack.php:190
4497
- #, php-format
4498
- msgid ""
4499
- "Please note that current <em>%s</em> module is deprecated and will be "
4500
- "removed in future updates. Please use <em>%s</em> module instead."
4501
- msgstr ""
4502
-
4503
- #: includes/admin/class-wc-settings-jetpack.php:195
4504
- msgid ""
4505
- "Module will be removed from the module's list as soon as you disable it."
4506
- msgstr ""
4507
-
4508
- #: includes/admin/class-wc-settings-jetpack.php:206
4509
- #, php-format
4510
- msgid ""
4511
- "Please note that <em>%s</em> module is currently under development. Until "
4512
- "stable module version is released, options can be changed or some options "
4513
- "can be moved to paid plugin version."
4514
- msgstr ""
4515
-
4516
- #: includes/admin/class-wc-settings-jetpack.php:270
4517
- msgid ""
4518
- "This section lets you export, import or reset all Booster's modules settings."
4519
- msgstr ""
4520
-
4521
- #: includes/admin/class-wc-settings-jetpack.php:295
4522
- msgid "Export all Booster's options to a file."
4523
- msgstr ""
4524
-
4525
- #: includes/admin/class-wc-settings-jetpack.php:300
4526
- msgid "Import all Booster's options from a file."
4527
- msgstr ""
4528
-
4529
- #: includes/admin/class-wc-settings-jetpack.php:304
4530
- msgid ""
4531
- "This will reset settings to defaults for all Booster modules. Are you sure?"
4532
- msgstr ""
4533
-
4534
- #: includes/admin/class-wc-settings-jetpack.php:305
4535
- msgid "Reset"
4536
- msgstr ""
4537
-
4538
- #: includes/admin/class-wc-settings-jetpack.php:306
4539
- msgid "Reset all Booster's options."
4540
- msgstr ""
4541
-
4542
- #: includes/admin/class-wc-settings-jetpack.php:310
4543
- msgid "This will delete all Booster meta. Are you sure?"
4544
- msgstr ""
4545
-
4546
- #: includes/admin/class-wc-settings-jetpack.php:311
4547
- msgid "Reset meta"
4548
- msgstr ""
4549
-
4550
- #: includes/admin/class-wc-settings-jetpack.php:312
4551
- msgid "Reset all Booster's meta."
4552
- msgstr ""
4553
-
4554
- #: includes/admin/class-wc-settings-jetpack.php:350
4555
- msgid "Version"
4556
- msgstr ""
4557
-
4558
- #: includes/admin/class-wc-settings-jetpack.php:371
4559
- #: includes/admin/class-wc-settings-jetpack.php:378
4560
- msgid "Select All"
4561
- msgstr ""
4562
-
4563
- #: includes/admin/class-wc-settings-jetpack.php:372
4564
- #: includes/admin/class-wc-settings-jetpack.php:379
4565
- #: includes/admin/class-wcj-tools.php:72
4566
- msgid "Module"
4567
- msgstr ""
4568
-
4569
- #: includes/admin/class-wc-settings-jetpack.php:373
4570
- #: includes/admin/class-wc-settings-jetpack.php:380
4571
- #: includes/admin/class-wcj-tools.php:73
4572
- #: includes/export/class-wcj-fields-helper.php:293
4573
- #: includes/gateways/class-wc-gateway-wcj-custom.php:63
4574
- #: includes/settings/wcj-settings-checkout-custom-fields.php:172
4575
- #: includes/settings/wcj-settings-eu-vat-number.php:34
4576
- #: includes/settings/wcj-settings-product-by-user.php:13
4577
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:176
4578
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:342
4579
- msgid "Description"
4580
- msgstr ""
4581
-
4582
- #: includes/admin/class-wc-settings-jetpack.php:427
4583
- msgid "No active modules found."
4584
- msgstr ""
4585
-
4586
- #: includes/admin/class-wc-settings-jetpack.php:430
4587
- msgid "Total Modules:"
4588
- msgstr ""
4589
-
4590
- #: includes/admin/class-wc-settings-jetpack.php:468
4591
- msgid "Autoload Booster's Options"
4592
- msgstr ""
4593
-
4594
- #: includes/admin/class-wc-settings-jetpack.php:470
4595
- msgid ""
4596
- "Choose if you want Booster's options to be autoloaded when calling "
4597
- "add_option. After saving this option, you need to Reset all Booster's "
4598
- "settings. Leave default value (i.e. Enabled) if not sure."
4599
- msgstr ""
4600
-
4601
- #: includes/admin/class-wc-settings-jetpack.php:475
4602
- msgid "Load Modules on Init Hook"
4603
- msgstr ""
4604
-
4605
- #: includes/admin/class-wc-settings-jetpack.php:477
4606
- msgid "Choose if you want to load Booster Modules on Init hook."
4607
- msgstr ""
4608
-
4609
- #: includes/admin/class-wc-settings-jetpack.php:477
4610
- msgid ""
4611
- "It will load the locale appropriately if users change it from the profile "
4612
- "page."
4613
- msgstr ""
4614
-
4615
- #: includes/admin/class-wc-settings-jetpack.php:482
4616
- msgid "Use List Instead of Comma Separated Text for Products in Settings"
4617
- msgstr ""
4618
-
4619
- #: includes/admin/class-wc-settings-jetpack.php:484
4620
- #: includes/admin/class-wc-settings-jetpack.php:498
4621
- #: includes/admin/class-wc-settings-jetpack.php:507
4622
- #, php-format
4623
- msgid "Supported modules: %s."
4624
- msgstr ""
4625
-
4626
- #: includes/admin/class-wc-settings-jetpack.php:489
4627
- msgid "Products XML"
4628
- msgstr ""
4629
-
4630
- #: includes/admin/class-wc-settings-jetpack.php:496
4631
- msgid ""
4632
- "Use List Instead of Comma Separated Text for Products Categories in Settings"
4633
- msgstr ""
4634
-
4635
- #: includes/admin/class-wc-settings-jetpack.php:505
4636
- msgid "Use List Instead of Comma Separated Text for Products Tags in Settings"
4637
- msgstr ""
4638
-
4639
- #: includes/admin/class-wc-settings-jetpack.php:532
4640
- #: includes/core/class-wcj-admin.php:97
4641
- msgid "Booster for WooCommerce"
4642
- msgstr ""
4643
-
4644
- #: includes/admin/class-wcj-settings-custom-fields.php:65
4645
- #, php-format
4646
- msgid "Grab raw %s rate from %s."
4647
- msgstr ""
4648
-
4649
- #: includes/admin/class-wcj-settings-custom-fields.php:66
4650
- msgid "Doesn't apply rounding, offset etc."
4651
- msgstr ""
4652
-
4653
- #: includes/admin/class-wcj-settings-custom-fields.php:260
4654
- #: includes/settings/wcj-settings-wpml.php:88
4655
- msgid "To use tools, module must be enabled."
4656
- msgstr ""
4657
-
4658
- #: includes/admin/class-wcj-settings-custom-fields.php:299
4659
- msgid "Save changes"
4660
- msgstr ""
4661
-
4662
- #: includes/admin/class-wcj-settings-manager.php:62
4663
- msgid "Please upload a file to import!"
4664
- msgstr ""
4665
-
4666
- #: includes/admin/class-wcj-settings-manager.php:72
4667
- #: includes/admin/class-wcj-settings-manager.php:77
4668
- msgid "Wrong file format!"
4669
- msgstr ""
4670
-
4671
- #: includes/admin/class-wcj-settings-manager.php:86
4672
- #, php-format
4673
- msgid "%d options successfully imported."
4674
- msgstr ""
4675
-
4676
- #: includes/admin/class-wcj-settings-manager.php:140
4677
- #, php-format
4678
- msgid "%d meta successfully deleted."
4679
- msgstr ""
4680
-
4681
- #: includes/admin/class-wcj-settings-manager.php:158
4682
- #, php-format
4683
- msgid "%d options successfully deleted."
4684
- msgstr ""
4685
-
4686
- #: includes/admin/class-wcj-tools.php:32
4687
- msgid "Booster for WooCommerce Tools"
4688
- msgstr ""
4689
-
4690
- #: includes/admin/class-wcj-tools.php:33
4691
- msgid "Booster Tools"
4692
- msgstr ""
4693
-
4694
- #: includes/admin/class-wcj-tools.php:51
4695
- msgid "Tools Dashboard"
4696
- msgstr ""
4697
-
4698
- #: includes/admin/class-wcj-tools.php:65
4699
- msgid "Booster for WooCommerce Tools - Dashboard"
4700
- msgstr ""
4701
-
4702
- #: includes/admin/class-wcj-tools.php:66
4703
- msgid ""
4704
- "This dashboard lets you check statuses and short descriptions of all "
4705
- "available Booster for WooCommerce tools. Tools can be enabled through "
4706
- "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
4707
- "above."
4708
- msgstr ""
4709
-
4710
- #: includes/admin/class-wcj-tools.php:71
4711
- msgid "Tool"
4712
- msgstr ""
4713
-
4714
- #: includes/admin/wcj-modules-cats.php:15
4715
- msgid ""
4716
- "This dashboard lets you enable/disable any Booster's module. Each checkbox "
4717
- "comes with short module's description. Please visit <a href=\"https://"
4718
- "booster.io\" target=\"_blank\">https://booster.io</a> for detailed info on "
4719
- "each feature."
4720
- msgstr ""
4721
-
4722
- #: includes/admin/wcj-modules-cats.php:25
4723
- msgid "Prices & Currencies"
4724
- msgstr ""
4725
-
4726
- #: includes/admin/wcj-modules-cats.php:26
4727
- msgid ""
4728
- "Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price "
4729
- "based on User Role and more."
4730
- msgstr ""
4731
-
4732
- #: includes/admin/wcj-modules-cats.php:47
4733
- msgid "Button & Price Labels"
4734
- msgstr ""
4735
-
4736
- #: includes/admin/wcj-modules-cats.php:48
4737
- msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
4738
- msgstr ""
4739
-
4740
- #: includes/admin/wcj-modules-cats.php:60
4741
- msgid ""
4742
- "Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
4743
- "Listings, Product Tabs and more."
4744
- msgstr ""
4745
-
4746
- #: includes/admin/wcj-modules-cats.php:96
4747
- msgid "Cart & Checkout"
4748
- msgstr ""
4749
-
4750
- #: includes/admin/wcj-modules-cats.php:97
4751
- msgid ""
4752
- "Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
4753
- "more."
4754
- msgstr ""
4755
-
4756
- #: includes/admin/wcj-modules-cats.php:117
4757
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:55
4758
- #: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
4759
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:37
4760
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
4761
- #: includes/settings/wcj-settings-payment-gateways-currency.php:15
4762
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:81
4763
- #: includes/settings/wcj-settings-reports.php:118
4764
- msgid "Payment Gateways"
4765
- msgstr ""
4766
-
4767
- #: includes/admin/wcj-modules-cats.php:118
4768
- msgid ""
4769
- "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
4770
- "more."
4771
- msgstr ""
4772
-
4773
- #: includes/admin/wcj-modules-cats.php:134
4774
- msgid "Shipping & Orders"
4775
- msgstr ""
4776
-
4777
- #: includes/admin/wcj-modules-cats.php:135
4778
- msgid ""
4779
- "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
4780
- "Methods and more."
4781
- msgstr ""
4782
-
4783
- #: includes/admin/wcj-modules-cats.php:162
4784
- msgid "PDF Invoicing & Packing Slips"
4785
- msgstr ""
4786
-
4787
- #: includes/admin/wcj-modules-cats.php:163
4788
- msgid "PDF Documents"
4789
- msgstr ""
4790
-
4791
- #: includes/admin/wcj-modules-cats.php:179
4792
- msgid "Emails & Misc."
4793
- msgstr ""
4794
-
4795
- #: includes/admin/wcj-modules-cats.php:180
4796
- msgid "Emails, Reports, Export, Admin Tools, General Options and more."
4797
- msgstr ""
4798
-
4799
- #: includes/classes/class-wcj-module-product-by-condition.php:116
4800
- msgid " No change "
4801
- msgstr ""
4802
-
4803
- #: includes/classes/class-wcj-module-product-by-condition.php:123
4804
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:29
4805
- msgid "Visible"
4806
- msgstr ""
4807
-
4808
- #: includes/classes/class-wcj-module-product-by-condition.php:132
4809
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:41
4810
- msgid "Invisible"
4811
- msgstr ""
4812
-
4813
- #: includes/classes/class-wcj-module.php:153
4814
- #, php-format
4815
- msgid ""
4816
- "Booster: Free plugin's version is limited to only one \"%1$s\" product with "
4817
- "settings on per product basis enabled at a time. You will need to get <a "
4818
- "href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
4819
- "\"%1$s\" products."
4820
- msgstr ""
4821
-
4822
- #: includes/classes/class-wcj-module.php:473
4823
- #, php-format
4824
- msgid "Selected: %s."
4825
- msgstr ""
4826
-
4827
- #: includes/classes/class-wcj-module.php:542
4828
- msgid "Back to Module Settings"
4829
- msgstr ""
4830
-
4831
- #: includes/classes/class-wcj-module.php:560
4832
- #: includes/settings/wcj-settings-wpml.php:87
4833
- msgid "Module Tools"
4834
- msgstr ""
4835
-
4836
- #: includes/classes/class-wcj-module.php:633
4837
- #: includes/settings/wcj-settings-checkout-core-fields.php:64
4838
- msgid "enabled"
4839
- msgstr ""
4840
-
4841
- #: includes/classes/class-wcj-module.php:634
4842
- msgid "disabled"
4843
- msgstr ""
4844
-
4845
- #: includes/classes/class-wcj-module.php:642
4846
- #: includes/settings/wcj-settings-product-tabs.php:172
4847
- #: includes/settings/wcj-settings-product-tabs.php:184
4848
- #: includes/settings/wcj-settings-product-tabs.php:196
4849
- #: includes/settings/wcj-settings-product-tabs.php:208
4850
- msgid "Deprecated"
4851
- msgstr ""
4852
-
4853
- #: includes/classes/class-wcj-module.php:680
4854
- msgid "Reset Settings"
4855
- msgstr ""
4856
-
4857
- #: includes/classes/class-wcj-module.php:686
4858
- msgid "Reset Module to Default Settings"
4859
- msgstr ""
4860
-
4861
- #: includes/classes/class-wcj-module.php:687
4862
- msgid "Reset Submodule to Default Settings"
4863
- msgstr ""
4864
-
4865
- #: includes/classes/class-wcj-module.php:691
4866
- msgid "Reset settings"
4867
- msgstr ""
4868
-
4869
- #: includes/classes/class-wcj-module.php:725
4870
- msgid "Module Options"
4871
- msgstr ""
4872
-
4873
- #: includes/classes/class-wcj-module.php:732
4874
- msgid "Enable Module"
4875
- msgstr ""
4876
-
4877
- #: includes/classes/class-wcj-pdf-invoice.php:88
4878
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:61
4879
- msgid "Company Name"
4880
- msgstr ""
4881
-
4882
- #: includes/classes/class-wcj-pdf-invoice.php:251
4883
- #: includes/functions/wcj-functions-general.php:145
4884
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:245
4885
- msgid "Unexpected error"
4886
- msgstr ""
4887
-
4888
- #: includes/classes/class-wcj-shortcodes.php:109
4889
- #: includes/shortcodes/class-wcj-shortcodes-general.php:517
4890
- #, php-format
4891
- msgid "\"%s\" module is not enabled!"
4892
- msgstr ""
4893
-
4894
- #: includes/classes/class-wcj-tcpdf.php:40
4895
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:31
4896
- msgid "Page %page_number% / %total_pages%"
4897
- msgstr ""
4898
-
4899
- #: includes/core/class-wcj-admin.php:57
4900
- msgid "Please update <strong>Booster Plus for WooCommerce</strong> plugin."
4901
- msgstr ""
4902
-
4903
- #: includes/core/class-wcj-admin.php:59
4904
- #, php-format
4905
- msgid ""
4906
- "Visit <a target=\"_blank\" href=\"%s\">your account page</a> on booster.io "
4907
- "to download the latest Booster Plus version."
4908
- msgstr ""
4909
-
4910
- #: includes/core/class-wcj-admin.php:63
4911
- #, php-format
4912
- msgid "Click <a target=\"_blank\" href=\"%s\">here</a> for more info."
4913
- msgstr ""
4914
-
4915
- #: includes/core/class-wcj-admin.php:81
4916
- #, php-format
4917
- msgid ""
4918
- "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
4919
- "rating. Thank you, we couldn't have done it without you!"
4920
- msgstr ""
4921
-
4922
- #: includes/core/class-wcj-admin.php:98
4923
- msgid "Booster Settings"
4924
- msgstr ""
4925
-
4926
- #: includes/core/class-wcj-admin.php:114
4927
- msgid "Docs"
4928
- msgstr ""
4929
-
4930
- #: includes/core/class-wcj-admin.php:117
4931
- msgid "Unlock all"
4932
- msgstr ""
4933
-
4934
- #: includes/emails/class-wc-email-wcj-custom.php:31
4935
- msgid ""
4936
- "Custom emails are sent to the recipient list when selected triggers are "
4937
- "called."
4938
- msgstr ""
4939
-
4940
- #: includes/emails/class-wc-email-wcj-custom.php:33
4941
- msgid "Custom Heading"
4942
- msgstr ""
4943
-
4944
- #: includes/emails/class-wc-email-wcj-custom.php:34
4945
- msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
4946
- msgstr ""
4947
-
4948
- #: includes/emails/class-wc-email-wcj-custom.php:219
4949
- #, php-format
4950
- msgid "New order (%s)"
4951
- msgstr ""
4952
-
4953
- #: includes/emails/class-wc-email-wcj-custom.php:220
4954
- #, php-format
4955
- msgid "Order status updated to %s"
4956
- msgstr ""
4957
-
4958
- #: includes/emails/class-wc-email-wcj-custom.php:223
4959
- #, php-format
4960
- msgid "Order status %s to %s"
4961
- msgstr ""
4962
-
4963
- #: includes/emails/class-wc-email-wcj-custom.php:230
4964
- #: includes/gateways/class-wc-gateway-wcj-custom.php:48
4965
- #: includes/settings/wcj-settings-admin-products-list.php:19
4966
- #: includes/settings/wcj-settings-admin-products-list.php:75
4967
- #: includes/settings/wcj-settings-checkout-custom-fields.php:121
4968
- #: includes/settings/wcj-settings-checkout-fees.php:46
4969
- #: includes/shipping/class-wc-shipping-wcj-custom.php:101
4970
- msgid "Enable/Disable"
4971
- msgstr ""
4972
-
4973
- #: includes/emails/class-wc-email-wcj-custom.php:232
4974
- msgid "Enable this email notification"
4975
- msgstr ""
4976
-
4977
- #: includes/emails/class-wc-email-wcj-custom.php:236
4978
- msgid "Trigger(s)"
4979
- msgstr ""
4980
-
4981
- #: includes/emails/class-wc-email-wcj-custom.php:240
4982
- msgid ""
4983
- "Please note, that all new orders in WooCommerce by default are created with "
4984
- "Pending Payment status. If you want to change the default order status - you "
4985
- "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
4986
- "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
4987
- msgstr ""
4988
-
4989
- #: includes/emails/class-wc-email-wcj-custom.php:243
4990
- msgid "New order (Any status)"
4991
- msgstr ""
4992
-
4993
- #: includes/emails/class-wc-email-wcj-custom.php:248
4994
- msgid "Reset password notification"
4995
- msgstr ""
4996
-
4997
- #: includes/emails/class-wc-email-wcj-custom.php:249
4998
- msgid "Order fully refunded notification"
4999
- msgstr ""
5000
-
5001
- #: includes/emails/class-wc-email-wcj-custom.php:250
5002
- msgid "Order partially refunded notification"
5003
- msgstr ""
5004
-
5005
- #: includes/emails/class-wc-email-wcj-custom.php:251
5006
- msgid "New customer note notification"
5007
- msgstr ""
5008
-
5009
- #: includes/emails/class-wc-email-wcj-custom.php:252
5010
- msgid "Low stock notification"
5011
- msgstr ""
5012
-
5013
- #: includes/emails/class-wc-email-wcj-custom.php:253
5014
- msgid "No stock notification"
5015
- msgstr ""
5016
-
5017
- #: includes/emails/class-wc-email-wcj-custom.php:254
5018
- msgid "Product on backorder notification"
5019
- msgstr ""
5020
-
5021
- #: includes/emails/class-wc-email-wcj-custom.php:255
5022
- msgid "Created customer notification"
5023
- msgstr ""
5024
-
5025
- #: includes/emails/class-wc-email-wcj-custom.php:262
5026
- msgid "Recipient(s)"
5027
- msgstr ""
5028
-
5029
- #: includes/emails/class-wc-email-wcj-custom.php:264
5030
- #, php-format
5031
- msgid ""
5032
- "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
5033
- "code>."
5034
- msgstr ""
5035
-
5036
- #: includes/emails/class-wc-email-wcj-custom.php:265
5037
- msgid "Or enter <code>%customer%</code> to send to customer billing email."
5038
- msgstr ""
5039
-
5040
- #: includes/emails/class-wc-email-wcj-custom.php:271
5041
- msgid "Subject"
5042
- msgstr ""
5043
-
5044
- #: includes/emails/class-wc-email-wcj-custom.php:273
5045
- #, php-format
5046
- msgid ""
5047
- "This controls the email subject line. Leave blank to use the default "
5048
- "subject: <code>%s</code>."
5049
- msgstr ""
5050
-
5051
- #: includes/emails/class-wc-email-wcj-custom.php:279
5052
- msgid "Email type"
5053
- msgstr ""
5054
-
5055
- #: includes/emails/class-wc-email-wcj-custom.php:281
5056
- msgid "Choose which format of email to send."
5057
- msgstr ""
5058
-
5059
- #: includes/emails/class-wc-email-wcj-custom.php:287
5060
- msgid "Wrap in WC Email Template"
5061
- msgstr ""
5062
-
5063
- #: includes/emails/class-wc-email-wcj-custom.php:293
5064
- msgid ""
5065
- "WC Email Heading. Used only if \"Wrap in WC Email Template\" is enabled and "
5066
- "only for HTML templates."
5067
- msgstr ""
5068
-
5069
- #: includes/emails/class-wc-email-wcj-custom.php:294
5070
- #, php-format
5071
- msgid ""
5072
- "This controls the main heading contained within the email notification. "
5073
- "Leave blank to use the default heading: <code>%s</code>."
5074
- msgstr ""
5075
-
5076
- #: includes/emails/class-wc-email-wcj-custom.php:300
5077
- msgid "HTML template"
5078
- msgstr ""
5079
-
5080
- #: includes/emails/class-wc-email-wcj-custom.php:302
5081
- #: includes/emails/class-wc-email-wcj-custom.php:311
5082
- msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
5083
- msgstr ""
5084
-
5085
- #: includes/emails/class-wc-email-wcj-custom.php:309
5086
- msgid "Plain text template"
5087
- msgstr ""
5088
-
5089
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
5090
- #: includes/settings/wcj-settings-currency-exchange-rates.php:36
5091
- #: includes/settings/wcj-settings-products-xml.php:135
5092
- msgid "Update Every Minute"
5093
- msgstr ""
5094
-
5095
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
5096
- #: includes/settings/wcj-settings-currency-exchange-rates.php:37
5097
- #: includes/settings/wcj-settings-products-xml.php:136
5098
- msgid "Update Hourly"
5099
- msgstr ""
5100
-
5101
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
5102
- #: includes/settings/wcj-settings-currency-exchange-rates.php:38
5103
- #: includes/settings/wcj-settings-products-xml.php:137
5104
- msgid "Update Twice Daily"
5105
- msgstr ""
5106
-
5107
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
5108
- #: includes/settings/wcj-settings-currency-exchange-rates.php:39
5109
- #: includes/settings/wcj-settings-products-xml.php:138
5110
- msgid "Update Daily"
5111
- msgstr ""
5112
-
5113
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
5114
- #: includes/settings/wcj-settings-currency-exchange-rates.php:40
5115
- #: includes/settings/wcj-settings-products-xml.php:139
5116
- msgid "Update Weekly"
5117
- msgstr ""
5118
-
5119
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:185
5120
- msgid "Cron job: exchange rates successfully updated"
5121
- msgstr ""
5122
-
5123
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:187
5124
- msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
5125
- msgstr ""
5126
-
5127
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:190
5128
- msgid "Cron job: exchange rates update failed"
5129
- msgstr ""
5130
-
5131
- #: includes/export/class-wcj-fields-helper.php:34
5132
- msgid "Customer Nr."
5133
- msgstr ""
5134
-
5135
- #: includes/export/class-wcj-fields-helper.php:35
5136
- #: includes/export/class-wcj-fields-helper.php:131
5137
- #: includes/export/class-wcj-fields-helper.php:216
5138
- msgid "Billing Email"
5139
- msgstr ""
5140
-
5141
- #: includes/export/class-wcj-fields-helper.php:36
5142
- #: includes/export/class-wcj-fields-helper.php:121
5143
- #: includes/export/class-wcj-fields-helper.php:206
5144
- msgid "Billing First Name"
5145
- msgstr ""
5146
-
5147
- #: includes/export/class-wcj-fields-helper.php:37
5148
- #: includes/export/class-wcj-fields-helper.php:122
5149
- #: includes/export/class-wcj-fields-helper.php:207
5150
- msgid "Billing Last Name"
5151
- msgstr ""
5152
-
5153
- #: includes/export/class-wcj-fields-helper.php:38
5154
- #: includes/export/class-wcj-fields-helper.php:123
5155
- #: includes/export/class-wcj-fields-helper.php:208
5156
- msgid "Billing Company"
5157
- msgstr ""
5158
-
5159
- #: includes/export/class-wcj-fields-helper.php:39
5160
- #: includes/export/class-wcj-fields-helper.php:124
5161
- #: includes/export/class-wcj-fields-helper.php:209
5162
- msgid "Billing Address 1"
5163
- msgstr ""
5164
-
5165
- #: includes/export/class-wcj-fields-helper.php:40
5166
- #: includes/export/class-wcj-fields-helper.php:125
5167
- #: includes/export/class-wcj-fields-helper.php:210
5168
- msgid "Billing Address 2"
5169
- msgstr ""
5170
-
5171
- #: includes/export/class-wcj-fields-helper.php:41
5172
- #: includes/export/class-wcj-fields-helper.php:126
5173
- #: includes/export/class-wcj-fields-helper.php:211
5174
- msgid "Billing City"
5175
- msgstr ""
5176
-
5177
- #: includes/export/class-wcj-fields-helper.php:42
5178
- #: includes/export/class-wcj-fields-helper.php:127
5179
- #: includes/export/class-wcj-fields-helper.php:212
5180
- msgid "Billing State"
5181
- msgstr ""
5182
-
5183
- #: includes/export/class-wcj-fields-helper.php:43
5184
- #: includes/export/class-wcj-fields-helper.php:128
5185
- #: includes/export/class-wcj-fields-helper.php:213
5186
- msgid "Billing Postcode"
5187
- msgstr ""
5188
-
5189
- #: includes/export/class-wcj-fields-helper.php:45
5190
- #: includes/export/class-wcj-fields-helper.php:130
5191
- #: includes/export/class-wcj-fields-helper.php:215
5192
- msgid "Billing Phone"
5193
- msgstr ""
5194
-
5195
- #: includes/export/class-wcj-fields-helper.php:46
5196
- msgid "Last Order Date"
5197
- msgstr ""
5198
-
5199
- #: includes/export/class-wcj-fields-helper.php:76
5200
- msgid "First Name"
5201
- msgstr ""
5202
-
5203
- #: includes/export/class-wcj-fields-helper.php:77
5204
- msgid "Last Name"
5205
- msgstr ""
5206
-
5207
- #: includes/export/class-wcj-fields-helper.php:78
5208
- msgid "Login"
5209
- msgstr ""
5210
-
5211
- #: includes/export/class-wcj-fields-helper.php:79
5212
- msgid "Nicename"
5213
- msgstr ""
5214
-
5215
- #: includes/export/class-wcj-fields-helper.php:80
5216
- #: includes/export/class-wcj-fields-helper.php:295
5217
- #: includes/gateways/class-wc-gateway-wcj-custom.php:148
5218
- msgid "URL"
5219
- msgstr ""
5220
-
5221
- #: includes/export/class-wcj-fields-helper.php:81
5222
- #: includes/reports/wcj-class-reports-customers.php:95
5223
- msgid "Registered"
5224
- msgstr ""
5225
-
5226
- #: includes/export/class-wcj-fields-helper.php:82
5227
- msgid "Display Name"
5228
- msgstr ""
5229
-
5230
- #: includes/export/class-wcj-fields-helper.php:110
5231
- #: includes/export/class-wcj-fields-helper.php:193
5232
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:40
5233
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:64
5234
- #: includes/settings/wcj-settings-order-numbers.php:27
5235
- msgid "Order ID"
5236
- msgstr ""
5237
-
5238
- #: includes/export/class-wcj-fields-helper.php:111
5239
- #: includes/export/class-wcj-fields-helper.php:194
5240
- msgid "Order Number"
5241
- msgstr ""
5242
-
5243
- #: includes/export/class-wcj-fields-helper.php:112
5244
- #: includes/export/class-wcj-fields-helper.php:195
5245
- #: includes/settings/wcj-settings-max-products-per-user.php:60
5246
- msgid "Order Status"
5247
- msgstr ""
5248
-
5249
- #: includes/export/class-wcj-fields-helper.php:113
5250
- #: includes/export/class-wcj-fields-helper.php:196
5251
- msgid "Order Date"
5252
- msgstr ""
5253
-
5254
- #: includes/export/class-wcj-fields-helper.php:114
5255
- #: includes/export/class-wcj-fields-helper.php:197
5256
- msgid "Order Time"
5257
- msgstr ""
5258
-
5259
- #: includes/export/class-wcj-fields-helper.php:115
5260
- #: includes/export/class-wcj-fields-helper.php:198
5261
- msgid "Order Item Count"
5262
- msgstr ""
5263
-
5264
- #: includes/export/class-wcj-fields-helper.php:116
5265
- #: includes/export/class-wcj-fields-helper.php:201
5266
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:47
5267
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:77
5268
- #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
5269
- msgid "Order Currency"
5270
- msgstr ""
5271
-
5272
- #: includes/export/class-wcj-fields-helper.php:117
5273
- #: includes/export/class-wcj-fields-helper.php:202
5274
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:46
5275
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:76
5276
- msgid "Order Total"
5277
- msgstr ""
5278
-
5279
- #: includes/export/class-wcj-fields-helper.php:118
5280
- #: includes/export/class-wcj-fields-helper.php:203
5281
- msgid "Order Total Tax"
5282
- msgstr ""
5283
-
5284
- #: includes/export/class-wcj-fields-helper.php:119
5285
- #: includes/export/class-wcj-fields-helper.php:204
5286
- msgid "Order Payment Method"
5287
- msgstr ""
5288
-
5289
- #: includes/export/class-wcj-fields-helper.php:120
5290
- #: includes/export/class-wcj-fields-helper.php:205
5291
- #: includes/settings/wcj-settings-checkout-custom-fields.php:194
5292
- msgid "Order Notes"
5293
- msgstr ""
5294
-
5295
- #: includes/export/class-wcj-fields-helper.php:132
5296
- #: includes/export/class-wcj-fields-helper.php:217
5297
- msgid "Shipping First Name"
5298
- msgstr ""
5299
-
5300
- #: includes/export/class-wcj-fields-helper.php:133
5301
- #: includes/export/class-wcj-fields-helper.php:218
5302
- msgid "Shipping Last Name"
5303
- msgstr ""
5304
-
5305
- #: includes/export/class-wcj-fields-helper.php:134
5306
- #: includes/export/class-wcj-fields-helper.php:219
5307
- msgid "Shipping Company"
5308
- msgstr ""
5309
-
5310
- #: includes/export/class-wcj-fields-helper.php:135
5311
- #: includes/export/class-wcj-fields-helper.php:220
5312
- msgid "Shipping Address 1"
5313
- msgstr ""
5314
-
5315
- #: includes/export/class-wcj-fields-helper.php:136
5316
- #: includes/export/class-wcj-fields-helper.php:221
5317
- msgid "Shipping Address 2"
5318
- msgstr ""
5319
-
5320
- #: includes/export/class-wcj-fields-helper.php:137
5321
- #: includes/export/class-wcj-fields-helper.php:222
5322
- msgid "Shipping City"
5323
- msgstr ""
5324
-
5325
- #: includes/export/class-wcj-fields-helper.php:138
5326
- #: includes/export/class-wcj-fields-helper.php:223
5327
- msgid "Shipping State"
5328
- msgstr ""
5329
-
5330
- #: includes/export/class-wcj-fields-helper.php:139
5331
- #: includes/export/class-wcj-fields-helper.php:224
5332
- msgid "Shipping Postcode"
5333
- msgstr ""
5334
-
5335
- #: includes/export/class-wcj-fields-helper.php:140
5336
- #: includes/export/class-wcj-fields-helper.php:225
5337
- msgid "Shipping Country"
5338
- msgstr ""
5339
-
5340
- #: includes/export/class-wcj-fields-helper.php:142
5341
- msgid "Item Name"
5342
- msgstr ""
5343
-
5344
- #: includes/export/class-wcj-fields-helper.php:143
5345
- msgid "Item Meta"
5346
- msgstr ""
5347
-
5348
- #: includes/export/class-wcj-fields-helper.php:144
5349
- msgid "Item Variation Meta"
5350
- msgstr ""
5351
-
5352
- #: includes/export/class-wcj-fields-helper.php:145
5353
- msgid "Item Quantity"
5354
- msgstr ""
5355
-
5356
- #: includes/export/class-wcj-fields-helper.php:146
5357
- msgid "Item Tax Class"
5358
- msgstr ""
5359
-
5360
- #: includes/export/class-wcj-fields-helper.php:147
5361
- msgid "Item Product ID"
5362
- msgstr ""
5363
-
5364
- #: includes/export/class-wcj-fields-helper.php:148
5365
- msgid "Item Variation ID"
5366
- msgstr ""
5367
-
5368
- #: includes/export/class-wcj-fields-helper.php:149
5369
- msgid "Item Line Subtotal"
5370
- msgstr ""
5371
-
5372
- #: includes/export/class-wcj-fields-helper.php:150
5373
- msgid "Item Line Total"
5374
- msgstr ""
5375
-
5376
- #: includes/export/class-wcj-fields-helper.php:151
5377
- msgid "Item Line Subtotal Tax"
5378
- msgstr ""
5379
-
5380
- #: includes/export/class-wcj-fields-helper.php:152
5381
- msgid "Item Line Tax"
5382
- msgstr ""
5383
-
5384
- #: includes/export/class-wcj-fields-helper.php:153
5385
- msgid "Item Line Subtotal Plus Tax"
5386
- msgstr ""
5387
-
5388
- #: includes/export/class-wcj-fields-helper.php:154
5389
- msgid "Item Line Total Plus Tax"
5390
- msgstr ""
5391
-
5392
- #: includes/export/class-wcj-fields-helper.php:155
5393
- msgid "Item Product Input Fields"
5394
- msgstr ""
5395
-
5396
- #: includes/export/class-wcj-fields-helper.php:199
5397
- msgid "Order Items"
5398
- msgstr ""
5399
-
5400
- #: includes/export/class-wcj-fields-helper.php:200
5401
- msgid "Order Items Product Input Fields"
5402
- msgstr ""
5403
-
5404
- #: includes/export/class-wcj-fields-helper.php:281
5405
- msgid "Parent Product ID"
5406
- msgstr ""
5407
-
5408
- #: includes/export/class-wcj-fields-helper.php:284
5409
- msgid "Total Stock"
5410
- msgstr ""
5411
-
5412
- #: includes/export/class-wcj-fields-helper.php:285
5413
- msgid "Stock Quantity"
5414
- msgstr ""
5415
-
5416
- #: includes/export/class-wcj-fields-helper.php:286
5417
- #: includes/price-by-country/class-wcj-price-by-country-local.php:97
5418
- #: includes/settings/wcj-settings-product-by-user.php:16
5419
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:39
5420
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:92
5421
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:179
5422
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:378
5423
- msgid "Regular Price"
5424
- msgstr ""
5425
-
5426
- #: includes/export/class-wcj-fields-helper.php:287
5427
- #: includes/price-by-country/class-wcj-price-by-country-local.php:104
5428
- #: includes/settings/wcj-settings-product-by-user.php:17
5429
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:48
5430
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:101
5431
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:180
5432
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:387
5433
- msgid "Sale Price"
5434
- msgstr ""
5435
-
5436
- #: includes/export/class-wcj-fields-helper.php:289
5437
- #: includes/input-fields/wcj-product-input-fields-options.php:28
5438
- #: includes/settings/wcj-settings-checkout-custom-fields.php:130
5439
- #: includes/settings/wcj-settings-checkout-fees.php:66
5440
- #: includes/settings/wcj-settings-export.php:81
5441
- #: includes/settings/wcj-settings-export.php:149
5442
- #: includes/settings/wcj-settings-export.php:231
5443
- #: includes/settings/wcj-settings-global-discount.php:58
5444
- #: includes/settings/wcj-settings-product-addons.php:80
5445
- #: includes/settings/wcj-settings-purchase-data.php:84
5446
- #: includes/settings/wcj-settings-shipping-options.php:77
5447
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
5448
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:184
5449
- #: includes/shipping/class-wc-shipping-wcj-custom.php:114
5450
- #: includes/widgets/class-wcj-widget-multicurrency.php:76
5451
- msgid "Type"
5452
- msgstr ""
5453
-
5454
- #: includes/export/class-wcj-fields-helper.php:291
5455
- #: includes/settings/wcj-settings-shipping-icons.php:75
5456
- msgid "Image URL"
5457
- msgstr ""
5458
-
5459
- #: includes/export/class-wcj-fields-helper.php:292
5460
- #: includes/settings/wcj-settings-product-by-user.php:14
5461
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:177
5462
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:351
5463
- msgid "Short Description"
5464
- msgstr ""
5465
-
5466
- #: includes/export/class-wcj-fields-helper.php:296
5467
- msgid "Shipping Class"
5468
- msgstr ""
5469
-
5470
- #: includes/export/class-wcj-fields-helper.php:297
5471
- msgid "Shipping Class ID"
5472
- msgstr ""
5473
-
5474
- #: includes/export/class-wcj-fields-helper.php:298
5475
- msgid "Width"
5476
- msgstr ""
5477
-
5478
- #: includes/export/class-wcj-fields-helper.php:299
5479
- #: includes/settings/wcj-settings-coupon-code-generator.php:48
5480
- msgid "Length"
5481
- msgstr ""
5482
-
5483
- #: includes/export/class-wcj-fields-helper.php:300
5484
- msgid "Height"
5485
- msgstr ""
5486
-
5487
- #: includes/export/class-wcj-fields-helper.php:301
5488
- msgid "Weight"
5489
- msgstr ""
5490
-
5491
- #: includes/export/class-wcj-fields-helper.php:302
5492
- msgid "Downloadable"
5493
- msgstr ""
5494
-
5495
- #: includes/export/class-wcj-fields-helper.php:303
5496
- msgid "Virtual"
5497
- msgstr ""
5498
-
5499
- #: includes/export/class-wcj-fields-helper.php:304
5500
- msgid "Sold Individually"
5501
- msgstr ""
5502
-
5503
- #: includes/export/class-wcj-fields-helper.php:305
5504
- msgid "Tax Status"
5505
- msgstr ""
5506
-
5507
- #: includes/export/class-wcj-fields-helper.php:306
5508
- msgid "Tax Class"
5509
- msgstr ""
5510
-
5511
- #: includes/export/class-wcj-fields-helper.php:307
5512
- msgid "Manage Stock"
5513
- msgstr ""
5514
-
5515
- #: includes/export/class-wcj-fields-helper.php:308
5516
- msgid "Stock Status"
5517
- msgstr ""
5518
-
5519
- #: includes/export/class-wcj-fields-helper.php:309
5520
- msgid "Backorders"
5521
- msgstr ""
5522
-
5523
- #: includes/export/class-wcj-fields-helper.php:310
5524
- msgid "Featured"
5525
- msgstr ""
5526
-
5527
- #: includes/export/class-wcj-fields-helper.php:311
5528
- msgid "Visibility"
5529
- msgstr ""
5530
-
5531
- #: includes/export/class-wcj-fields-helper.php:312
5532
- msgid "Price Including Tax"
5533
- msgstr ""
5534
-
5535
- #: includes/export/class-wcj-fields-helper.php:313
5536
- msgid "Price Excluding Tax"
5537
- msgstr ""
5538
-
5539
- #: includes/export/class-wcj-fields-helper.php:314
5540
- msgid "Display Price"
5541
- msgstr ""
5542
-
5543
- #: includes/export/class-wcj-fields-helper.php:315
5544
- msgid "Average Rating"
5545
- msgstr ""
5546
-
5547
- #: includes/export/class-wcj-fields-helper.php:316
5548
- msgid "Rating Count"
5549
- msgstr ""
5550
-
5551
- #: includes/export/class-wcj-fields-helper.php:317
5552
- msgid "Review Count"
5553
- msgstr ""
5554
-
5555
- #: includes/export/class-wcj-fields-helper.php:320
5556
- msgid "Dimensions"
5557
- msgstr ""
5558
-
5559
- #: includes/export/class-wcj-fields-helper.php:321
5560
- msgid "Formatted Name"
5561
- msgstr ""
5562
-
5563
- #: includes/export/class-wcj-fields-helper.php:322
5564
- msgid "Availability"
5565
- msgstr ""
5566
-
5567
- #: includes/export/class-wcj-fields-helper.php:323
5568
- msgid "Availability Class"
5569
- msgstr ""
5570
-
5571
- #: includes/functions/wcj-functions-admin.php:114
5572
- #, php-format
5573
- msgid ""
5574
- "<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
5575
- "version <strong>%s</strong>."
5576
- msgstr ""
5577
-
5578
- #: includes/functions/wcj-functions-admin.php:152
5579
- msgid "Search&hellip;"
5580
- msgstr ""
5581
-
5582
- #: includes/functions/wcj-functions-admin.php:192
5583
- msgid "Enter comma separated list of IDs."
5584
- msgstr ""
5585
-
5586
- #: includes/functions/wcj-functions-admin.php:266
5587
- #: includes/settings/wcj-settings-emails-verification.php:75
5588
- #: includes/settings/wcj-settings-emails-verification.php:83
5589
- #: includes/settings/wcj-settings-emails-verification.php:130
5590
- #, php-format
5591
- msgid "Replaced value: %s"
5592
- msgstr ""
5593
-
5594
- #: includes/functions/wcj-functions-admin.php:266
5595
- #, php-format
5596
- msgid "Replaced values: %s"
5597
- msgstr ""
5598
-
5599
- #: includes/functions/wcj-functions-admin.php:295
5600
- msgid "Install Booster Plus to unlock all features"
5601
- msgstr ""
5602
-
5603
- #: includes/functions/wcj-functions-admin.php:296
5604
- #, php-format
5605
- msgid ""
5606
- "Some settings fields are locked and you will need %s to modify all locked "
5607
- "fields."
5608
- msgstr ""
5609
-
5610
- #: includes/functions/wcj-functions-admin.php:299
5611
- msgid "Buy now"
5612
- msgstr ""
5613
-
5614
- #: includes/functions/wcj-functions-admin.php:300
5615
- msgid "Visit Booster Site"
5616
- msgstr ""
5617
-
5618
- #: includes/functions/wcj-functions-admin.php:305
5619
- #, php-format
5620
- msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
5621
- msgstr ""
5622
-
5623
- #: includes/functions/wcj-functions-admin.php:308
5624
- #, php-format
5625
- msgid ""
5626
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
5627
- "option."
5628
- msgstr ""
5629
-
5630
- #: includes/functions/wcj-functions-admin.php:311
5631
- #, php-format
5632
- msgid "Get Booster Plus to enable \"%s\" option."
5633
- msgstr ""
5634
-
5635
- #: includes/functions/wcj-functions-admin.php:314
5636
- #, php-format
5637
- msgid ""
5638
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
5639
- msgstr ""
5640
-
5641
- #: includes/functions/wcj-functions-admin.php:317
5642
- #, php-format
5643
- msgid ""
5644
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
5645
- msgstr ""
5646
-
5647
- #: includes/functions/wcj-functions-admin.php:320
5648
- msgid "Get Booster Plus to change value."
5649
- msgstr ""
5650
-
5651
- #: includes/functions/wcj-functions-country.php:167
5652
- msgid "Afghanistan"
5653
- msgstr ""
5654
-
5655
- #: includes/functions/wcj-functions-country.php:168
5656
- msgid "&#197;land Islands"
5657
- msgstr ""
5658
-
5659
- #: includes/functions/wcj-functions-country.php:169
5660
- msgid "Albania"
5661
- msgstr ""
5662
-
5663
- #: includes/functions/wcj-functions-country.php:170
5664
- msgid "Algeria"
5665
- msgstr ""
5666
-
5667
- #: includes/functions/wcj-functions-country.php:171
5668
- msgid "Andorra"
5669
- msgstr ""
5670
-
5671
- #: includes/functions/wcj-functions-country.php:172
5672
- msgid "Angola"
5673
- msgstr ""
5674
-
5675
- #: includes/functions/wcj-functions-country.php:173
5676
- msgid "Anguilla"
5677
- msgstr ""
5678
-
5679
- #: includes/functions/wcj-functions-country.php:174
5680
- msgid "Antarctica"
5681
- msgstr ""
5682
-
5683
- #: includes/functions/wcj-functions-country.php:175
5684
- msgid "Antigua and Barbuda"
5685
- msgstr ""
5686
-
5687
- #: includes/functions/wcj-functions-country.php:176
5688
- msgid "Argentina"
5689
- msgstr ""
5690
-
5691
- #: includes/functions/wcj-functions-country.php:177
5692
- msgid "Armenia"
5693
- msgstr ""
5694
-
5695
- #: includes/functions/wcj-functions-country.php:178
5696
- msgid "Aruba"
5697
- msgstr ""
5698
-
5699
- #: includes/functions/wcj-functions-country.php:179
5700
- msgid "Australia"
5701
- msgstr ""
5702
-
5703
- #: includes/functions/wcj-functions-country.php:180
5704
- msgid "Austria"
5705
- msgstr ""
5706
-
5707
- #: includes/functions/wcj-functions-country.php:181
5708
- msgid "Azerbaijan"
5709
- msgstr ""
5710
-
5711
- #: includes/functions/wcj-functions-country.php:182
5712
- msgid "Bahamas"
5713
- msgstr ""
5714
-
5715
- #: includes/functions/wcj-functions-country.php:183
5716
- msgid "Bahrain"
5717
- msgstr ""
5718
-
5719
- #: includes/functions/wcj-functions-country.php:184
5720
- msgid "Bangladesh"
5721
- msgstr ""
5722
-
5723
- #: includes/functions/wcj-functions-country.php:185
5724
- msgid "Barbados"
5725
- msgstr ""
5726
-
5727
- #: includes/functions/wcj-functions-country.php:186
5728
- msgid "Belarus"
5729
- msgstr ""
5730
-
5731
- #: includes/functions/wcj-functions-country.php:187
5732
- msgid "Belgium"
5733
- msgstr ""
5734
-
5735
- #: includes/functions/wcj-functions-country.php:188
5736
- msgid "Belau"
5737
- msgstr ""
5738
-
5739
- #: includes/functions/wcj-functions-country.php:189
5740
- msgid "Belize"
5741
- msgstr ""
5742
-
5743
- #: includes/functions/wcj-functions-country.php:190
5744
- msgid "Benin"
5745
- msgstr ""
5746
-
5747
- #: includes/functions/wcj-functions-country.php:191
5748
- msgid "Bermuda"
5749
- msgstr ""
5750
-
5751
- #: includes/functions/wcj-functions-country.php:192
5752
- msgid "Bhutan"
5753
- msgstr ""
5754
-
5755
- #: includes/functions/wcj-functions-country.php:193
5756
- msgid "Bolivia"
5757
- msgstr ""
5758
-
5759
- #: includes/functions/wcj-functions-country.php:194
5760
- msgid "Bonaire, Saint Eustatius and Saba"
5761
- msgstr ""
5762
-
5763
- #: includes/functions/wcj-functions-country.php:195
5764
- msgid "Bosnia and Herzegovina"
5765
- msgstr ""
5766
-
5767
- #: includes/functions/wcj-functions-country.php:196
5768
- msgid "Botswana"
5769
- msgstr ""
5770
-
5771
- #: includes/functions/wcj-functions-country.php:197
5772
- msgid "Bouvet Island"
5773
- msgstr ""
5774
-
5775
- #: includes/functions/wcj-functions-country.php:198
5776
- msgid "Brazil"
5777
- msgstr ""
5778
-
5779
- #: includes/functions/wcj-functions-country.php:199
5780
- msgid "British Indian Ocean Territory"
5781
- msgstr ""
5782
-
5783
- #: includes/functions/wcj-functions-country.php:200
5784
- msgid "British Virgin Islands"
5785
- msgstr ""
5786
-
5787
- #: includes/functions/wcj-functions-country.php:201
5788
- msgid "Brunei"
5789
- msgstr ""
5790
-
5791
- #: includes/functions/wcj-functions-country.php:202
5792
- msgid "Bulgaria"
5793
- msgstr ""
5794
-
5795
- #: includes/functions/wcj-functions-country.php:203
5796
- msgid "Burkina Faso"
5797
- msgstr ""
5798
-
5799
- #: includes/functions/wcj-functions-country.php:204
5800
- msgid "Burundi"
5801
- msgstr ""
5802
-
5803
- #: includes/functions/wcj-functions-country.php:205
5804
- msgid "Cambodia"
5805
- msgstr ""
5806
-
5807
- #: includes/functions/wcj-functions-country.php:206
5808
- msgid "Cameroon"
5809
- msgstr ""
5810
-
5811
- #: includes/functions/wcj-functions-country.php:207
5812
- msgid "Canada"
5813
- msgstr ""
5814
-
5815
- #: includes/functions/wcj-functions-country.php:208
5816
- msgid "Cape Verde"
5817
- msgstr ""
5818
-
5819
- #: includes/functions/wcj-functions-country.php:209
5820
- msgid "Cayman Islands"
5821
- msgstr ""
5822
-
5823
- #: includes/functions/wcj-functions-country.php:210
5824
- msgid "Central African Republic"
5825
- msgstr ""
5826
-
5827
- #: includes/functions/wcj-functions-country.php:211
5828
- msgid "Chad"
5829
- msgstr ""
5830
-
5831
- #: includes/functions/wcj-functions-country.php:212
5832
- msgid "Chile"
5833
- msgstr ""
5834
-
5835
- #: includes/functions/wcj-functions-country.php:213
5836
- msgid "China"
5837
- msgstr ""
5838
-
5839
- #: includes/functions/wcj-functions-country.php:214
5840
- msgid "Christmas Island"
5841
- msgstr ""
5842
-
5843
- #: includes/functions/wcj-functions-country.php:215
5844
- msgid "Cocos (Keeling) Islands"
5845
- msgstr ""
5846
-
5847
- #: includes/functions/wcj-functions-country.php:216
5848
- msgid "Colombia"
5849
- msgstr ""
5850
-
5851
- #: includes/functions/wcj-functions-country.php:217
5852
- msgid "Comoros"
5853
- msgstr ""
5854
-
5855
- #: includes/functions/wcj-functions-country.php:218
5856
- msgid "Congo (Brazzaville)"
5857
- msgstr ""
5858
-
5859
- #: includes/functions/wcj-functions-country.php:219
5860
- msgid "Congo (Kinshasa)"
5861
- msgstr ""
5862
-
5863
- #: includes/functions/wcj-functions-country.php:220
5864
- msgid "Cook Islands"
5865
- msgstr ""
5866
-
5867
- #: includes/functions/wcj-functions-country.php:221
5868
- msgid "Costa Rica"
5869
- msgstr ""
5870
-
5871
- #: includes/functions/wcj-functions-country.php:222
5872
- msgid "Croatia"
5873
- msgstr ""
5874
-
5875
- #: includes/functions/wcj-functions-country.php:223
5876
- msgid "Cuba"
5877
- msgstr ""
5878
-
5879
- #: includes/functions/wcj-functions-country.php:224
5880
- msgid "Cura&Ccedil;ao"
5881
- msgstr ""
5882
-
5883
- #: includes/functions/wcj-functions-country.php:225
5884
- msgid "Cyprus"
5885
- msgstr ""
5886
-
5887
- #: includes/functions/wcj-functions-country.php:226
5888
- msgid "Czech Republic"
5889
- msgstr ""
5890
-
5891
- #: includes/functions/wcj-functions-country.php:227
5892
- msgid "Denmark"
5893
- msgstr ""
5894
-
5895
- #: includes/functions/wcj-functions-country.php:228
5896
- msgid "Djibouti"
5897
- msgstr ""
5898
-
5899
- #: includes/functions/wcj-functions-country.php:229
5900
- msgid "Dominica"
5901
- msgstr ""
5902
-
5903
- #: includes/functions/wcj-functions-country.php:230
5904
- msgid "Dominican Republic"
5905
- msgstr ""
5906
-
5907
- #: includes/functions/wcj-functions-country.php:231
5908
- msgid "Ecuador"
5909
- msgstr ""
5910
-
5911
- #: includes/functions/wcj-functions-country.php:232
5912
- msgid "Egypt"
5913
- msgstr ""
5914
-
5915
- #: includes/functions/wcj-functions-country.php:233
5916
- msgid "El Salvador"
5917
- msgstr ""
5918
-
5919
- #: includes/functions/wcj-functions-country.php:234
5920
- msgid "Equatorial Guinea"
5921
- msgstr ""
5922
-
5923
- #: includes/functions/wcj-functions-country.php:235
5924
- msgid "Eritrea"
5925
- msgstr ""
5926
-
5927
- #: includes/functions/wcj-functions-country.php:236
5928
- msgid "Estonia"
5929
- msgstr ""
5930
-
5931
- #: includes/functions/wcj-functions-country.php:237
5932
- msgid "Ethiopia"
5933
- msgstr ""
5934
-
5935
- #: includes/functions/wcj-functions-country.php:238
5936
- msgid "Falkland Islands"
5937
- msgstr ""
5938
-
5939
- #: includes/functions/wcj-functions-country.php:239
5940
- msgid "Faroe Islands"
5941
- msgstr ""
5942
-
5943
- #: includes/functions/wcj-functions-country.php:240
5944
- msgid "Fiji"
5945
- msgstr ""
5946
-
5947
- #: includes/functions/wcj-functions-country.php:241
5948
- msgid "Finland"
5949
- msgstr ""
5950
-
5951
- #: includes/functions/wcj-functions-country.php:242
5952
- msgid "France"
5953
- msgstr ""
5954
-
5955
- #: includes/functions/wcj-functions-country.php:243
5956
- msgid "French Guiana"
5957
- msgstr ""
5958
-
5959
- #: includes/functions/wcj-functions-country.php:244
5960
- msgid "French Polynesia"
5961
- msgstr ""
5962
-
5963
- #: includes/functions/wcj-functions-country.php:245
5964
- msgid "French Southern Territories"
5965
- msgstr ""
5966
-
5967
- #: includes/functions/wcj-functions-country.php:246
5968
- msgid "Gabon"
5969
- msgstr ""
5970
-
5971
- #: includes/functions/wcj-functions-country.php:247
5972
- msgid "Gambia"
5973
- msgstr ""
5974
-
5975
- #: includes/functions/wcj-functions-country.php:248
5976
- msgid "Georgia"
5977
- msgstr ""
5978
-
5979
- #: includes/functions/wcj-functions-country.php:249
5980
- msgid "Germany"
5981
- msgstr ""
5982
-
5983
- #: includes/functions/wcj-functions-country.php:250
5984
- msgid "Ghana"
5985
- msgstr ""
5986
-
5987
- #: includes/functions/wcj-functions-country.php:251
5988
- msgid "Gibraltar"
5989
- msgstr ""
5990
-
5991
- #: includes/functions/wcj-functions-country.php:252
5992
- msgid "Greece"
5993
- msgstr ""
5994
-
5995
- #: includes/functions/wcj-functions-country.php:253
5996
- msgid "Greenland"
5997
- msgstr ""
5998
-
5999
- #: includes/functions/wcj-functions-country.php:254
6000
- msgid "Grenada"
6001
- msgstr ""
6002
-
6003
- #: includes/functions/wcj-functions-country.php:255
6004
- msgid "Guadeloupe"
6005
- msgstr ""
6006
-
6007
- #: includes/functions/wcj-functions-country.php:256
6008
- msgid "Guatemala"
6009
- msgstr ""
6010
-
6011
- #: includes/functions/wcj-functions-country.php:257
6012
- msgid "Guernsey"
6013
- msgstr ""
6014
-
6015
- #: includes/functions/wcj-functions-country.php:258
6016
- msgid "Guinea"
6017
- msgstr ""
6018
-
6019
- #: includes/functions/wcj-functions-country.php:259
6020
- msgid "Guinea-Bissau"
6021
- msgstr ""
6022
-
6023
- #: includes/functions/wcj-functions-country.php:260
6024
- msgid "Guyana"
6025
- msgstr ""
6026
-
6027
- #: includes/functions/wcj-functions-country.php:261
6028
- msgid "Haiti"
6029
- msgstr ""
6030
-
6031
- #: includes/functions/wcj-functions-country.php:262
6032
- msgid "Heard Island and McDonald Islands"
6033
- msgstr ""
6034
-
6035
- #: includes/functions/wcj-functions-country.php:263
6036
- msgid "Honduras"
6037
- msgstr ""
6038
-
6039
- #: includes/functions/wcj-functions-country.php:264
6040
- msgid "Hong Kong"
6041
- msgstr ""
6042
-
6043
- #: includes/functions/wcj-functions-country.php:265
6044
- msgid "Hungary"
6045
- msgstr ""
6046
-
6047
- #: includes/functions/wcj-functions-country.php:266
6048
- msgid "Iceland"
6049
- msgstr ""
6050
-
6051
- #: includes/functions/wcj-functions-country.php:267
6052
- msgid "India"
6053
- msgstr ""
6054
-
6055
- #: includes/functions/wcj-functions-country.php:268
6056
- msgid "Indonesia"
6057
- msgstr ""
6058
-
6059
- #: includes/functions/wcj-functions-country.php:269
6060
- msgid "Iran"
6061
- msgstr ""
6062
-
6063
- #: includes/functions/wcj-functions-country.php:270
6064
- msgid "Iraq"
6065
- msgstr ""
6066
-
6067
- #: includes/functions/wcj-functions-country.php:271
6068
- msgid "Republic of Ireland"
6069
- msgstr ""
6070
-
6071
- #: includes/functions/wcj-functions-country.php:272
6072
- msgid "Isle of Man"
6073
- msgstr ""
6074
-
6075
- #: includes/functions/wcj-functions-country.php:273
6076
- msgid "Israel"
6077
- msgstr ""
6078
-
6079
- #: includes/functions/wcj-functions-country.php:274
6080
- msgid "Italy"
6081
- msgstr ""
6082
-
6083
- #: includes/functions/wcj-functions-country.php:275
6084
- msgid "Ivory Coast"
6085
- msgstr ""
6086
-
6087
- #: includes/functions/wcj-functions-country.php:276
6088
- msgid "Jamaica"
6089
- msgstr ""
6090
-
6091
- #: includes/functions/wcj-functions-country.php:277
6092
- msgid "Japan"
6093
- msgstr ""
6094
-
6095
- #: includes/functions/wcj-functions-country.php:278
6096
- msgid "Jersey"
6097
- msgstr ""
6098
-
6099
- #: includes/functions/wcj-functions-country.php:279
6100
- msgid "Jordan"
6101
- msgstr ""
6102
-
6103
- #: includes/functions/wcj-functions-country.php:280
6104
- msgid "Kazakhstan"
6105
- msgstr ""
6106
-
6107
- #: includes/functions/wcj-functions-country.php:281
6108
- msgid "Kenya"
6109
- msgstr ""
6110
-
6111
- #: includes/functions/wcj-functions-country.php:282
6112
- msgid "Kiribati"
6113
- msgstr ""
6114
-
6115
- #: includes/functions/wcj-functions-country.php:283
6116
- msgid "Kuwait"
6117
- msgstr ""
6118
-
6119
- #: includes/functions/wcj-functions-country.php:284
6120
- msgid "Kyrgyzstan"
6121
- msgstr ""
6122
-
6123
- #: includes/functions/wcj-functions-country.php:285
6124
- msgid "Laos"
6125
- msgstr ""
6126
-
6127
- #: includes/functions/wcj-functions-country.php:286
6128
- msgid "Latvia"
6129
- msgstr ""
6130
-
6131
- #: includes/functions/wcj-functions-country.php:287
6132
- msgid "Lebanon"
6133
- msgstr ""
6134
-
6135
- #: includes/functions/wcj-functions-country.php:288
6136
- msgid "Lesotho"
6137
- msgstr ""
6138
-
6139
- #: includes/functions/wcj-functions-country.php:289
6140
- msgid "Liberia"
6141
- msgstr ""
6142
-
6143
- #: includes/functions/wcj-functions-country.php:290
6144
- msgid "Libya"
6145
- msgstr ""
6146
-
6147
- #: includes/functions/wcj-functions-country.php:291
6148
- msgid "Liechtenstein"
6149
- msgstr ""
6150
-
6151
- #: includes/functions/wcj-functions-country.php:292
6152
- msgid "Lithuania"
6153
- msgstr ""
6154
-
6155
- #: includes/functions/wcj-functions-country.php:293
6156
- msgid "Luxembourg"
6157
- msgstr ""
6158
-
6159
- #: includes/functions/wcj-functions-country.php:294
6160
- msgid "Macao S.A.R., China"
6161
- msgstr ""
6162
-
6163
- #: includes/functions/wcj-functions-country.php:295
6164
- msgid "Macedonia"
6165
- msgstr ""
6166
-
6167
- #: includes/functions/wcj-functions-country.php:296
6168
- msgid "Madagascar"
6169
- msgstr ""
6170
-
6171
- #: includes/functions/wcj-functions-country.php:297
6172
- msgid "Malawi"
6173
- msgstr ""
6174
-
6175
- #: includes/functions/wcj-functions-country.php:298
6176
- msgid "Malaysia"
6177
- msgstr ""
6178
-
6179
- #: includes/functions/wcj-functions-country.php:299
6180
- msgid "Maldives"
6181
- msgstr ""
6182
-
6183
- #: includes/functions/wcj-functions-country.php:300
6184
- msgid "Mali"
6185
- msgstr ""
6186
-
6187
- #: includes/functions/wcj-functions-country.php:301
6188
- msgid "Malta"
6189
- msgstr ""
6190
-
6191
- #: includes/functions/wcj-functions-country.php:302
6192
- msgid "Marshall Islands"
6193
- msgstr ""
6194
-
6195
- #: includes/functions/wcj-functions-country.php:303
6196
- msgid "Martinique"
6197
- msgstr ""
6198
-
6199
- #: includes/functions/wcj-functions-country.php:304
6200
- msgid "Mauritania"
6201
- msgstr ""
6202
-
6203
- #: includes/functions/wcj-functions-country.php:305
6204
- msgid "Mauritius"
6205
- msgstr ""
6206
-
6207
- #: includes/functions/wcj-functions-country.php:306
6208
- msgid "Mayotte"
6209
- msgstr ""
6210
-
6211
- #: includes/functions/wcj-functions-country.php:307
6212
- msgid "Mexico"
6213
- msgstr ""
6214
-
6215
- #: includes/functions/wcj-functions-country.php:308
6216
- msgid "Micronesia"
6217
- msgstr ""
6218
-
6219
- #: includes/functions/wcj-functions-country.php:309
6220
- msgid "Moldova"
6221
- msgstr ""
6222
-
6223
- #: includes/functions/wcj-functions-country.php:310
6224
- msgid "Monaco"
6225
- msgstr ""
6226
-
6227
- #: includes/functions/wcj-functions-country.php:311
6228
- msgid "Mongolia"
6229
- msgstr ""
6230
-
6231
- #: includes/functions/wcj-functions-country.php:312
6232
- msgid "Montenegro"
6233
- msgstr ""
6234
-
6235
- #: includes/functions/wcj-functions-country.php:313
6236
- msgid "Montserrat"
6237
- msgstr ""
6238
-
6239
- #: includes/functions/wcj-functions-country.php:314
6240
- msgid "Morocco"
6241
- msgstr ""
6242
-
6243
- #: includes/functions/wcj-functions-country.php:315
6244
- msgid "Mozambique"
6245
- msgstr ""
6246
-
6247
- #: includes/functions/wcj-functions-country.php:316
6248
- msgid "Myanmar"
6249
- msgstr ""
6250
-
6251
- #: includes/functions/wcj-functions-country.php:317
6252
- msgid "Namibia"
6253
- msgstr ""
6254
-
6255
- #: includes/functions/wcj-functions-country.php:318
6256
- msgid "Nauru"
6257
- msgstr ""
6258
-
6259
- #: includes/functions/wcj-functions-country.php:319
6260
- msgid "Nepal"
6261
- msgstr ""
6262
-
6263
- #: includes/functions/wcj-functions-country.php:320
6264
- msgid "Netherlands"
6265
- msgstr ""
6266
-
6267
- #: includes/functions/wcj-functions-country.php:321
6268
- msgid "Netherlands Antilles"
6269
- msgstr ""
6270
-
6271
- #: includes/functions/wcj-functions-country.php:322
6272
- msgid "New Caledonia"
6273
- msgstr ""
6274
-
6275
- #: includes/functions/wcj-functions-country.php:323
6276
- msgid "New Zealand"
6277
- msgstr ""
6278
-
6279
- #: includes/functions/wcj-functions-country.php:324
6280
- msgid "Nicaragua"
6281
- msgstr ""
6282
-
6283
- #: includes/functions/wcj-functions-country.php:325
6284
- msgid "Niger"
6285
- msgstr ""
6286
-
6287
- #: includes/functions/wcj-functions-country.php:326
6288
- msgid "Nigeria"
6289
- msgstr ""
6290
-
6291
- #: includes/functions/wcj-functions-country.php:327
6292
- msgid "Niue"
6293
- msgstr ""
6294
-
6295
- #: includes/functions/wcj-functions-country.php:328
6296
- msgid "Norfolk Island"
6297
- msgstr ""
6298
-
6299
- #: includes/functions/wcj-functions-country.php:329
6300
- msgid "North Korea"
6301
- msgstr ""
6302
-
6303
- #: includes/functions/wcj-functions-country.php:330
6304
- msgid "Norway"
6305
- msgstr ""
6306
-
6307
- #: includes/functions/wcj-functions-country.php:331
6308
- msgid "Oman"
6309
- msgstr ""
6310
-
6311
- #: includes/functions/wcj-functions-country.php:332
6312
- msgid "Pakistan"
6313
- msgstr ""
6314
-
6315
- #: includes/functions/wcj-functions-country.php:333
6316
- msgid "Palestinian Territory"
6317
- msgstr ""
6318
-
6319
- #: includes/functions/wcj-functions-country.php:334
6320
- msgid "Panama"
6321
- msgstr ""
6322
-
6323
- #: includes/functions/wcj-functions-country.php:335
6324
- msgid "Papua New Guinea"
6325
- msgstr ""
6326
-
6327
- #: includes/functions/wcj-functions-country.php:336
6328
- msgid "Paraguay"
6329
- msgstr ""
6330
-
6331
- #: includes/functions/wcj-functions-country.php:337
6332
- msgid "Peru"
6333
- msgstr ""
6334
-
6335
- #: includes/functions/wcj-functions-country.php:338
6336
- msgid "Philippines"
6337
- msgstr ""
6338
-
6339
- #: includes/functions/wcj-functions-country.php:339
6340
- msgid "Pitcairn"
6341
- msgstr ""
6342
-
6343
- #: includes/functions/wcj-functions-country.php:340
6344
- msgid "Poland"
6345
- msgstr ""
6346
-
6347
- #: includes/functions/wcj-functions-country.php:341
6348
- msgid "Portugal"
6349
- msgstr ""
6350
-
6351
- #: includes/functions/wcj-functions-country.php:342
6352
- msgid "Qatar"
6353
- msgstr ""
6354
-
6355
- #: includes/functions/wcj-functions-country.php:343
6356
- msgid "Reunion"
6357
- msgstr ""
6358
-
6359
- #: includes/functions/wcj-functions-country.php:344
6360
- msgid "Romania"
6361
- msgstr ""
6362
-
6363
- #: includes/functions/wcj-functions-country.php:345
6364
- msgid "Russia"
6365
- msgstr ""
6366
-
6367
- #: includes/functions/wcj-functions-country.php:346
6368
- msgid "Rwanda"
6369
- msgstr ""
6370
-
6371
- #: includes/functions/wcj-functions-country.php:347
6372
- msgid "Saint Barth&eacute;lemy"
6373
- msgstr ""
6374
-
6375
- #: includes/functions/wcj-functions-country.php:348
6376
- msgid "Saint Helena"
6377
- msgstr ""
6378
-
6379
- #: includes/functions/wcj-functions-country.php:349
6380
- msgid "Saint Kitts and Nevis"
6381
- msgstr ""
6382
-
6383
- #: includes/functions/wcj-functions-country.php:350
6384
- msgid "Saint Lucia"
6385
- msgstr ""
6386
-
6387
- #: includes/functions/wcj-functions-country.php:351
6388
- msgid "Saint Martin (French part)"
6389
- msgstr ""
6390
-
6391
- #: includes/functions/wcj-functions-country.php:352
6392
- msgid "Saint Martin (Dutch part)"
6393
- msgstr ""
6394
-
6395
- #: includes/functions/wcj-functions-country.php:353
6396
- msgid "Saint Pierre and Miquelon"
6397
- msgstr ""
6398
-
6399
- #: includes/functions/wcj-functions-country.php:354
6400
- msgid "Saint Vincent and the Grenadines"
6401
- msgstr ""
6402
-
6403
- #: includes/functions/wcj-functions-country.php:355
6404
- msgid "San Marino"
6405
- msgstr ""
6406
-
6407
- #: includes/functions/wcj-functions-country.php:356
6408
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
6409
- msgstr ""
6410
-
6411
- #: includes/functions/wcj-functions-country.php:357
6412
- msgid "Saudi Arabia"
6413
- msgstr ""
6414
-
6415
- #: includes/functions/wcj-functions-country.php:358
6416
- msgid "Senegal"
6417
- msgstr ""
6418
-
6419
- #: includes/functions/wcj-functions-country.php:359
6420
- msgid "Serbia"
6421
- msgstr ""
6422
-
6423
- #: includes/functions/wcj-functions-country.php:360
6424
- msgid "Seychelles"
6425
- msgstr ""
6426
-
6427
- #: includes/functions/wcj-functions-country.php:361
6428
- msgid "Sierra Leone"
6429
- msgstr ""
6430
-
6431
- #: includes/functions/wcj-functions-country.php:362
6432
- msgid "Singapore"
6433
- msgstr ""
6434
-
6435
- #: includes/functions/wcj-functions-country.php:363
6436
- msgid "Slovakia"
6437
- msgstr ""
6438
-
6439
- #: includes/functions/wcj-functions-country.php:364
6440
- msgid "Slovenia"
6441
- msgstr ""
6442
-
6443
- #: includes/functions/wcj-functions-country.php:365
6444
- msgid "Solomon Islands"
6445
- msgstr ""
6446
-
6447
- #: includes/functions/wcj-functions-country.php:366
6448
- msgid "Somalia"
6449
- msgstr ""
6450
-
6451
- #: includes/functions/wcj-functions-country.php:367
6452
- msgid "South Africa"
6453
- msgstr ""
6454
-
6455
- #: includes/functions/wcj-functions-country.php:368
6456
- msgid "South Georgia/Sandwich Islands"
6457
- msgstr ""
6458
-
6459
- #: includes/functions/wcj-functions-country.php:369
6460
- msgid "South Korea"
6461
- msgstr ""
6462
-
6463
- #: includes/functions/wcj-functions-country.php:370
6464
- msgid "South Sudan"
6465
- msgstr ""
6466
-
6467
- #: includes/functions/wcj-functions-country.php:371
6468
- msgid "Spain"
6469
- msgstr ""
6470
-
6471
- #: includes/functions/wcj-functions-country.php:372
6472
- msgid "Sri Lanka"
6473
- msgstr ""
6474
-
6475
- #: includes/functions/wcj-functions-country.php:373
6476
- msgid "Sudan"
6477
- msgstr ""
6478
-
6479
- #: includes/functions/wcj-functions-country.php:374
6480
- msgid "Suriname"
6481
- msgstr ""
6482
-
6483
- #: includes/functions/wcj-functions-country.php:375
6484
- msgid "Svalbard and Jan Mayen"
6485
- msgstr ""
6486
-
6487
- #: includes/functions/wcj-functions-country.php:376
6488
- msgid "Swaziland"
6489
- msgstr ""
6490
-
6491
- #: includes/functions/wcj-functions-country.php:377
6492
- msgid "Sweden"
6493
- msgstr ""
6494
-
6495
- #: includes/functions/wcj-functions-country.php:378
6496
- msgid "Switzerland"
6497
- msgstr ""
6498
-
6499
- #: includes/functions/wcj-functions-country.php:379
6500
- msgid "Syria"
6501
- msgstr ""
6502
-
6503
- #: includes/functions/wcj-functions-country.php:380
6504
- msgid "Taiwan"
6505
- msgstr ""
6506
-
6507
- #: includes/functions/wcj-functions-country.php:381
6508
- msgid "Tajikistan"
6509
- msgstr ""
6510
-
6511
- #: includes/functions/wcj-functions-country.php:382
6512
- msgid "Tanzania"
6513
- msgstr ""
6514
-
6515
- #: includes/functions/wcj-functions-country.php:383
6516
- msgid "Thailand"
6517
- msgstr ""
6518
-
6519
- #: includes/functions/wcj-functions-country.php:384
6520
- msgid "Timor-Leste"
6521
- msgstr ""
6522
-
6523
- #: includes/functions/wcj-functions-country.php:385
6524
- msgid "Togo"
6525
- msgstr ""
6526
-
6527
- #: includes/functions/wcj-functions-country.php:386
6528
- msgid "Tokelau"
6529
- msgstr ""
6530
-
6531
- #: includes/functions/wcj-functions-country.php:387
6532
- msgid "Tonga"
6533
- msgstr ""
6534
-
6535
- #: includes/functions/wcj-functions-country.php:388
6536
- msgid "Trinidad and Tobago"
6537
- msgstr ""
6538
-
6539
- #: includes/functions/wcj-functions-country.php:389
6540
- msgid "Tunisia"
6541
- msgstr ""
6542
-
6543
- #: includes/functions/wcj-functions-country.php:390
6544
- msgid "Turkey"
6545
- msgstr ""
6546
-
6547
- #: includes/functions/wcj-functions-country.php:391
6548
- msgid "Turkmenistan"
6549
- msgstr ""
6550
-
6551
- #: includes/functions/wcj-functions-country.php:392
6552
- msgid "Turks and Caicos Islands"
6553
- msgstr ""
6554
-
6555
- #: includes/functions/wcj-functions-country.php:393
6556
- msgid "Tuvalu"
6557
- msgstr ""
6558
-
6559
- #: includes/functions/wcj-functions-country.php:394
6560
- msgid "Uganda"
6561
- msgstr ""
6562
-
6563
- #: includes/functions/wcj-functions-country.php:395
6564
- msgid "Ukraine"
6565
- msgstr ""
6566
-
6567
- #: includes/functions/wcj-functions-country.php:396
6568
- msgid "United Arab Emirates"
6569
- msgstr ""
6570
-
6571
- #: includes/functions/wcj-functions-country.php:397
6572
- msgid "United Kingdom (UK)"
6573
- msgstr ""
6574
-
6575
- #: includes/functions/wcj-functions-country.php:398
6576
- msgid "United States (US)"
6577
- msgstr ""
6578
-
6579
- #: includes/functions/wcj-functions-country.php:399
6580
- msgid "Uruguay"
6581
- msgstr ""
6582
-
6583
- #: includes/functions/wcj-functions-country.php:400
6584
- msgid "Uzbekistan"
6585
- msgstr ""
6586
-
6587
- #: includes/functions/wcj-functions-country.php:401
6588
- msgid "Vanuatu"
6589
- msgstr ""
6590
-
6591
- #: includes/functions/wcj-functions-country.php:402
6592
- msgid "Vatican"
6593
- msgstr ""
6594
-
6595
- #: includes/functions/wcj-functions-country.php:403
6596
- msgid "Venezuela"
6597
- msgstr ""
6598
-
6599
- #: includes/functions/wcj-functions-country.php:404
6600
- msgid "Vietnam"
6601
- msgstr ""
6602
-
6603
- #: includes/functions/wcj-functions-country.php:405
6604
- msgid "Wallis and Futuna"
6605
- msgstr ""
6606
-
6607
- #: includes/functions/wcj-functions-country.php:406
6608
- msgid "Western Sahara"
6609
- msgstr ""
6610
-
6611
- #: includes/functions/wcj-functions-country.php:407
6612
- msgid "Western Samoa"
6613
- msgstr ""
6614
-
6615
- #: includes/functions/wcj-functions-country.php:408
6616
- msgid "Yemen"
6617
- msgstr ""
6618
-
6619
- #: includes/functions/wcj-functions-country.php:409
6620
- msgid "Zambia"
6621
- msgstr ""
6622
-
6623
- #: includes/functions/wcj-functions-country.php:410
6624
- msgid "Zimbabwe"
6625
- msgstr ""
6626
-
6627
- #: includes/functions/wcj-functions-country.php:411
6628
- msgid "European Union"
6629
- msgstr ""
6630
-
6631
- #: includes/functions/wcj-functions-crons.php:24
6632
- msgid "Update"
6633
- msgstr ""
6634
-
6635
- #: includes/functions/wcj-functions-crons.php:27
6636
- #, php-format
6637
- msgid "%s every minute"
6638
- msgstr ""
6639
-
6640
- #: includes/functions/wcj-functions-crons.php:28
6641
- #, php-format
6642
- msgid "%s every 5 minutes"
6643
- msgstr ""
6644
-
6645
- #: includes/functions/wcj-functions-crons.php:29
6646
- #, php-format
6647
- msgid "%s every 15 minutes"
6648
- msgstr ""
6649
-
6650
- #: includes/functions/wcj-functions-crons.php:30
6651
- #, php-format
6652
- msgid "%s every 30 minutes"
6653
- msgstr ""
6654
-
6655
- #: includes/functions/wcj-functions-crons.php:31
6656
- #, php-format
6657
- msgid "%s hourly"
6658
- msgstr ""
6659
-
6660
- #: includes/functions/wcj-functions-crons.php:32
6661
- #, php-format
6662
- msgid "%s twice daily"
6663
- msgstr ""
6664
-
6665
- #: includes/functions/wcj-functions-crons.php:33
6666
- #, php-format
6667
- msgid "%s daily"
6668
- msgstr ""
6669
-
6670
- #: includes/functions/wcj-functions-crons.php:34
6671
- #, php-format
6672
- msgid "%s weekly"
6673
- msgstr ""
6674
-
6675
- #: includes/functions/wcj-functions-crons.php:80
6676
- #, php-format
6677
- msgid "%s till next run."
6678
- msgstr ""
6679
-
6680
- #: includes/functions/wcj-functions-crons.php:82
6681
- #, php-format
6682
- msgid "%s seconds till next run."
6683
- msgstr ""
6684
-
6685
- #: includes/functions/wcj-functions-crons.php:99
6686
- msgid "Once weekly"
6687
- msgstr ""
6688
-
6689
- #: includes/functions/wcj-functions-crons.php:103
6690
- msgid "Once every 30 minutes"
6691
- msgstr ""
6692
-
6693
- #: includes/functions/wcj-functions-crons.php:107
6694
- msgid "Once every 15 minutes"
6695
- msgstr ""
6696
-
6697
- #: includes/functions/wcj-functions-crons.php:111
6698
- msgid "Once every 5 minutes"
6699
- msgstr ""
6700
-
6701
- #: includes/functions/wcj-functions-crons.php:115
6702
- msgid "Once a minute"
6703
- msgstr ""
6704
-
6705
- #: includes/functions/wcj-functions-exchange-rates.php:69
6706
- msgid "European Central Bank (ECB)"
6707
- msgstr ""
6708
-
6709
- #: includes/functions/wcj-functions-exchange-rates.php:69
6710
- msgid "recommended"
6711
- msgstr ""
6712
-
6713
- #: includes/functions/wcj-functions-exchange-rates.php:70
6714
- msgid "The Free Currency Converter API"
6715
- msgstr ""
6716
-
6717
- #: includes/functions/wcj-functions-exchange-rates.php:71
6718
- msgid "Bank of England (BOE)"
6719
- msgstr ""
6720
-
6721
- #: includes/functions/wcj-functions-exchange-rates.php:72
6722
- msgid "TCMB"
6723
- msgstr ""
6724
-
6725
- #: includes/functions/wcj-functions-exchange-rates.php:73
6726
- msgid "Coinbase"
6727
- msgstr ""
6728
-
6729
- #: includes/functions/wcj-functions-exchange-rates.php:74
6730
- msgid "CoinMarketCap"
6731
- msgstr ""
6732
-
6733
- #: includes/functions/wcj-functions-general.php:652
6734
- #: includes/settings/wcj-settings-cross-sells.php:73
6735
- #: includes/settings/wcj-settings-empty-cart.php:47
6736
- msgid "Before cart"
6737
- msgstr ""
6738
-
6739
- #: includes/functions/wcj-functions-general.php:653
6740
- msgid "Before cart table"
6741
- msgstr ""
6742
-
6743
- #: includes/functions/wcj-functions-general.php:654
6744
- msgid "Before cart contents"
6745
- msgstr ""
6746
-
6747
- #: includes/functions/wcj-functions-general.php:655
6748
- msgid "Cart contents"
6749
- msgstr ""
6750
-
6751
- #: includes/functions/wcj-functions-general.php:656
6752
- msgid "Cart coupon"
6753
- msgstr ""
6754
-
6755
- #: includes/functions/wcj-functions-general.php:657
6756
- msgid "Cart actions"
6757
- msgstr ""
6758
-
6759
- #: includes/functions/wcj-functions-general.php:658
6760
- msgid "After cart contents"
6761
- msgstr ""
6762
-
6763
- #: includes/functions/wcj-functions-general.php:659
6764
- msgid "After cart table"
6765
- msgstr ""
6766
-
6767
- #: includes/functions/wcj-functions-general.php:660
6768
- #: includes/settings/wcj-settings-cross-sells.php:74
6769
- msgid "Cart collaterals"
6770
- msgstr ""
6771
-
6772
- #: includes/functions/wcj-functions-general.php:661
6773
- #: includes/settings/wcj-settings-cross-sells.php:75
6774
- #: includes/settings/wcj-settings-empty-cart.php:56
6775
- msgid "After cart"
6776
- msgstr ""
6777
-
6778
- #: includes/functions/wcj-functions-general.php:663
6779
- msgid "Before cart totals"
6780
- msgstr ""
6781
-
6782
- #: includes/functions/wcj-functions-general.php:664
6783
- #: includes/settings/wcj-settings-empty-cart.php:49
6784
- msgid "Cart totals: Before shipping"
6785
- msgstr ""
6786
-
6787
- #: includes/functions/wcj-functions-general.php:665
6788
- #: includes/settings/wcj-settings-empty-cart.php:50
6789
- msgid "Cart totals: After shipping"
6790
- msgstr ""
6791
-
6792
- #: includes/functions/wcj-functions-general.php:666
6793
- #: includes/settings/wcj-settings-empty-cart.php:51
6794
- msgid "Cart totals: Before order total"
6795
- msgstr ""
6796
-
6797
- #: includes/functions/wcj-functions-general.php:667
6798
- #: includes/settings/wcj-settings-empty-cart.php:52
6799
- msgid "Cart totals: After order total"
6800
- msgstr ""
6801
-
6802
- #: includes/functions/wcj-functions-general.php:668
6803
- msgid "Proceed to checkout"
6804
- msgstr ""
6805
-
6806
- #: includes/functions/wcj-functions-general.php:669
6807
- msgid "After cart totals"
6808
- msgstr ""
6809
-
6810
- #: includes/functions/wcj-functions-general.php:671
6811
- msgid "Before shipping calculator"
6812
- msgstr ""
6813
-
6814
- #: includes/functions/wcj-functions-general.php:672
6815
- msgid "After shipping calculator"
6816
- msgstr ""
6817
-
6818
- #: includes/functions/wcj-functions-general.php:674
6819
- msgid "If cart is empty"
6820
- msgstr ""
6821
-
6822
- #: includes/functions/wcj-functions-invoicing.php:33
6823
- #, php-format
6824
- msgid "Current image path: %s."
6825
- msgstr ""
6826
-
6827
- #: includes/functions/wcj-functions-invoicing.php:266
6828
- msgid "Invoice"
6829
- msgstr ""
6830
-
6831
- #: includes/functions/wcj-functions-invoicing.php:272
6832
- msgid "Proforma Invoice"
6833
- msgstr ""
6834
-
6835
- #: includes/functions/wcj-functions-invoicing.php:278
6836
- msgid "Packing Slip"
6837
- msgstr ""
6838
-
6839
- #: includes/functions/wcj-functions-invoicing.php:284
6840
- msgid "Credit Note"
6841
- msgstr ""
6842
-
6843
- #: includes/functions/wcj-functions-invoicing.php:294
6844
- msgid "Custom Document"
6845
- msgstr ""
6846
-
6847
- #: includes/functions/wcj-functions-reports.php:22
6848
- msgid "Daily Total Sum"
6849
- msgstr ""
6850
-
6851
- #: includes/functions/wcj-functions-reports.php:23
6852
- msgid "Daily Total Quantity"
6853
- msgstr ""
6854
-
6855
- #: includes/functions/wcj-functions-reports.php:25
6856
- msgid "Item Title"
6857
- msgstr ""
6858
-
6859
- #: includes/functions/wcj-functions-reports.php:26
6860
- #: includes/settings/wcj-settings-product-addons.php:157
6861
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:121
6862
- msgid "Quantity"
6863
- msgstr ""
6864
-
6865
- #: includes/functions/wcj-functions-reports.php:27
6866
- msgid "Sum"
6867
- msgstr ""
6868
-
6869
- #: includes/functions/wcj-functions-reports.php:29
6870
- msgid "Last Sale Date"
6871
- msgstr ""
6872
-
6873
- #: includes/functions/wcj-functions-reports.php:30
6874
- msgid "Last Sale Order ID"
6875
- msgstr ""
6876
-
6877
- #: includes/functions/wcj-functions-reports.php:31
6878
- msgid "Last Sale Order Status"
6879
- msgstr ""
6880
-
6881
- #: includes/functions/wcj-functions-reports.php:82
6882
- msgid "Last 14 days"
6883
- msgstr ""
6884
-
6885
- #: includes/functions/wcj-functions-reports.php:87
6886
- msgid "Last 30 days"
6887
- msgstr ""
6888
-
6889
- #: includes/functions/wcj-functions-reports.php:92
6890
- msgid "Last 3 months"
6891
- msgstr ""
6892
-
6893
- #: includes/functions/wcj-functions-reports.php:97
6894
- msgid "Last 6 months"
6895
- msgstr ""
6896
-
6897
- #: includes/functions/wcj-functions-reports.php:102
6898
- msgid "Last 12 months"
6899
- msgstr ""
6900
-
6901
- #: includes/functions/wcj-functions-reports.php:107
6902
- msgid "Last 24 months"
6903
- msgstr ""
6904
-
6905
- #: includes/functions/wcj-functions-reports.php:112
6906
- msgid "Last 36 months"
6907
- msgstr ""
6908
-
6909
- #: includes/functions/wcj-functions-reports.php:117
6910
- msgid "Same days last month"
6911
- msgstr ""
6912
-
6913
- #: includes/functions/wcj-functions-reports.php:122
6914
- msgid "Same days last year"
6915
- msgstr ""
6916
-
6917
- #: includes/functions/wcj-functions-reports.php:127
6918
- msgid "Last year"
6919
- msgstr ""
6920
-
6921
- #: includes/functions/wcj-functions-reports.php:132
6922
- msgid "Yesterday"
6923
- msgstr ""
6924
-
6925
- #: includes/functions/wcj-functions-reports.php:137
6926
- msgid "Today"
6927
- msgstr ""
6928
-
6929
- #: includes/functions/wcj-functions-shipping.php:38
6930
- #, php-format
6931
- msgid "%s day(s)"
6932
- msgstr ""
6933
-
6934
- #: includes/functions/wcj-functions-shipping.php:222
6935
- #: includes/functions/wcj-functions-shipping.php:279
6936
- #: includes/settings/wcj-settings-left-to-free-shipping.php:138
6937
- msgid "You have Free delivery"
6938
- msgstr ""
6939
-
6940
- #: includes/gateways/class-wc-gateway-wcj-custom.php:50
6941
- msgid "Enable Custom Payment"
6942
- msgstr ""
6943
-
6944
- #: includes/gateways/class-wc-gateway-wcj-custom.php:57
6945
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:178
6946
- #: includes/shipping/class-wc-shipping-wcj-custom.php:109
6947
- msgid "This controls the title which the user sees during checkout."
6948
- msgstr ""
6949
-
6950
- #: includes/gateways/class-wc-gateway-wcj-custom.php:58
6951
- msgid "Custom Payment"
6952
- msgstr ""
6953
-
6954
- #: includes/gateways/class-wc-gateway-wcj-custom.php:65
6955
- msgid "Payment method description that the customer will see on your checkout."
6956
- msgstr ""
6957
-
6958
- #: includes/gateways/class-wc-gateway-wcj-custom.php:66
6959
- msgid "You can add input fields with [wcj_input_field] shortcode."
6960
- msgstr ""
6961
-
6962
- #: includes/gateways/class-wc-gateway-wcj-custom.php:67
6963
- msgid "Custom Payment Description."
6964
- msgstr ""
6965
-
6966
- #: includes/gateways/class-wc-gateway-wcj-custom.php:72
6967
- msgid "Instructions"
6968
- msgstr ""
6969
-
6970
- #: includes/gateways/class-wc-gateway-wcj-custom.php:74
6971
- msgid "Instructions that will be added to the thank you page."
6972
- msgstr ""
6973
-
6974
- #: includes/gateways/class-wc-gateway-wcj-custom.php:80
6975
- msgid "Email Instructions"
6976
- msgstr ""
6977
-
6978
- #: includes/gateways/class-wc-gateway-wcj-custom.php:82
6979
- msgid "Instructions that will be added to the emails."
6980
- msgstr ""
6981
-
6982
- #: includes/gateways/class-wc-gateway-wcj-custom.php:88
6983
- msgid "Icon"
6984
- msgstr ""
6985
-
6986
- #: includes/gateways/class-wc-gateway-wcj-custom.php:90
6987
- #: includes/settings/wcj-settings-payment-gateways-icons.php:16
6988
- msgid ""
6989
- "If you want to show an image next to the gateway's name on the frontend, "
6990
- "enter a URL to an image."
6991
- msgstr ""
6992
-
6993
- #: includes/gateways/class-wc-gateway-wcj-custom.php:97
6994
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:57
6995
- msgid "Minimum order amount"
6996
- msgstr ""
6997
-
6998
- #: includes/gateways/class-wc-gateway-wcj-custom.php:99
6999
- msgid ""
7000
- "If you want to set minimum order amount (excluding fees) to show this "
7001
- "gateway on frontend, enter a number here. Set to 0 to disable."
7002
- msgstr ""
7003
-
7004
- #: includes/gateways/class-wc-gateway-wcj-custom.php:106
7005
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:59
7006
- msgid "Enable for shipping methods"
7007
- msgstr ""
7008
-
7009
- #: includes/gateways/class-wc-gateway-wcj-custom.php:111
7010
- msgid ""
7011
- "If gateway is only available for certain shipping methods, set it up here. "
7012
- "Leave blank to enable for all methods."
7013
- msgstr ""
7014
-
7015
- #: includes/gateways/class-wc-gateway-wcj-custom.php:114
7016
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:66
7017
- msgid "Select shipping methods"
7018
- msgstr ""
7019
-
7020
- #: includes/gateways/class-wc-gateway-wcj-custom.php:118
7021
- msgid "Enable for virtual orders"
7022
- msgstr ""
7023
-
7024
- #: includes/gateways/class-wc-gateway-wcj-custom.php:119
7025
- msgid "Enable gateway if the order is virtual"
7026
- msgstr ""
7027
-
7028
- #: includes/gateways/class-wc-gateway-wcj-custom.php:125
7029
- #: includes/settings/wcj-settings-order-custom-statuses.php:19
7030
- msgid "Default Order Status"
7031
- msgstr ""
7032
-
7033
- #: includes/gateways/class-wc-gateway-wcj-custom.php:126
7034
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
7035
- msgstr ""
7036
-
7037
- #: includes/gateways/class-wc-gateway-wcj-custom.php:133
7038
- msgid "Send Additional Emails"
7039
- msgstr ""
7040
-
7041
- #: includes/gateways/class-wc-gateway-wcj-custom.php:134
7042
- msgid "Send to Admin"
7043
- msgstr ""
7044
-
7045
- #: includes/gateways/class-wc-gateway-wcj-custom.php:140
7046
- msgid "Send to Customer"
7047
- msgstr ""
7048
-
7049
- #: includes/gateways/class-wc-gateway-wcj-custom.php:141
7050
- msgid ""
7051
- "This may help if you are using pending or custom default status and not "
7052
- "getting new order emails."
7053
- msgstr ""
7054
-
7055
- #: includes/gateways/class-wc-gateway-wcj-custom.php:147
7056
- msgid "Custom Return URL (Thank You Page)"
7057
- msgstr ""
7058
-
7059
- #: includes/gateways/class-wc-gateway-wcj-custom.php:149
7060
- msgid "Enter full URL with http(s)."
7061
- msgstr ""
7062
-
7063
- #: includes/gateways/class-wc-gateway-wcj-custom.php:150
7064
- msgid "Optional. Leave blank to use default URL."
7065
- msgstr ""
7066
-
7067
- #: includes/gateways/class-wc-gateway-wcj-custom.php:346
7068
- #: includes/settings/wcj-settings-payment-gateways.php:38
7069
- msgid "Custom Gateway"
7070
- msgstr ""
7071
-
7072
- #: includes/gateways/class-wc-gateway-wcj-custom.php:347
7073
- msgid "Booster for WooCommerce: Custom Payment Gateway"
7074
- msgstr ""
7075
-
7076
- #: includes/input-fields/class-wcj-product-input-fields-core.php:168
7077
- msgid "Booster: Product Input Fields"
7078
- msgstr ""
7079
-
7080
- #: includes/input-fields/class-wcj-product-input-fields-core.php:207
7081
- msgid "Total number of "
7082
- msgstr ""
7083
-
7084
- #: includes/input-fields/class-wcj-product-input-fields-core.php:223
7085
- #: includes/input-fields/class-wcj-product-input-fields-core.php:398
7086
- #: includes/settings/wcj-settings-product-input-fields.php:84
7087
- msgid "Product Input Field"
7088
- msgstr ""
7089
-
7090
- #: includes/input-fields/class-wcj-product-input-fields-core.php:469
7091
- msgid "Wrong file type!"
7092
- msgstr ""
7093
-
7094
- #: includes/input-fields/class-wcj-product-input-fields-core.php:477
7095
- msgid "File is too big!"
7096
- msgstr ""
7097
-
7098
- #: includes/input-fields/class-wcj-product-input-fields-core.php:703
7099
- msgid "Select a country&hellip;"
7100
- msgstr ""
7101
-
7102
- #: includes/input-fields/wcj-product-input-fields-options.php:15
7103
- #: includes/settings/wcj-settings-admin-orders-list.php:57
7104
- #: includes/settings/wcj-settings-admin-products-list.php:43
7105
- #: includes/settings/wcj-settings-checkout-core-fields.php:70
7106
- #: includes/settings/wcj-settings-checkout-files-upload.php:40
7107
- #: includes/settings/wcj-settings-export.php:70
7108
- #: includes/settings/wcj-settings-export.php:138
7109
- #: includes/settings/wcj-settings-export.php:220
7110
- #: includes/settings/wcj-settings-global-discount.php:50
7111
- #: includes/settings/wcj-settings-product-by-user.php:149
7112
- #: includes/settings/wcj-settings-products-xml.php:76
7113
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:39
7114
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
7115
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
7116
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:23
7117
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
7118
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
7119
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
7120
- msgid "Enabled"
7121
- msgstr ""
7122
-
7123
- #: includes/input-fields/wcj-product-input-fields-options.php:22
7124
- msgid "Set to zero for default order."
7125
- msgstr ""
7126
-
7127
- #: includes/input-fields/wcj-product-input-fields-options.php:32
7128
- #: includes/settings/wcj-settings-cart-customization.php:50
7129
- #: includes/settings/wcj-settings-checkout-custom-fields.php:135
7130
- #: includes/settings/wcj-settings-more-button-labels.php:19
7131
- #: includes/settings/wcj-settings-product-addons.php:88
7132
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:53
7133
- msgid "Text"
7134
- msgstr ""
7135
-
7136
- #: includes/input-fields/wcj-product-input-fields-options.php:33
7137
- #: includes/settings/wcj-settings-checkout-custom-fields.php:136
7138
- msgid "Textarea"
7139
- msgstr ""
7140
-
7141
- #: includes/input-fields/wcj-product-input-fields-options.php:34
7142
- #: includes/settings/wcj-settings-checkout-custom-fields.php:137
7143
- #: includes/settings/meta-box/wcj-settings-meta-box-order-numbers.php:14
7144
- msgid "Number"
7145
- msgstr ""
7146
-
7147
- #: includes/input-fields/wcj-product-input-fields-options.php:35
7148
- #: includes/settings/wcj-settings-checkout-custom-fields.php:138
7149
- #: includes/settings/wcj-settings-product-addons.php:85
7150
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
7151
- msgid "Checkbox"
7152
- msgstr ""
7153
-
7154
- #: includes/input-fields/wcj-product-input-fields-options.php:36
7155
- #: includes/settings/wcj-settings-checkout-files-upload.php:38
7156
- msgid "File"
7157
- msgstr ""
7158
-
7159
- #: includes/input-fields/wcj-product-input-fields-options.php:37
7160
- #: includes/settings/wcj-settings-checkout-custom-fields.php:139
7161
- msgid "Datepicker"
7162
- msgstr ""
7163
-
7164
- #: includes/input-fields/wcj-product-input-fields-options.php:38
7165
- #: includes/settings/wcj-settings-checkout-custom-fields.php:140
7166
- msgid "Weekpicker"
7167
- msgstr ""
7168
-
7169
- #: includes/input-fields/wcj-product-input-fields-options.php:39
7170
- #: includes/settings/wcj-settings-checkout-custom-fields.php:141
7171
- msgid "Timepicker"
7172
- msgstr ""
7173
-
7174
- #: includes/input-fields/wcj-product-input-fields-options.php:40
7175
- #: includes/settings/wcj-settings-checkout-custom-fields.php:142
7176
- msgid "Select"
7177
- msgstr ""
7178
-
7179
- #: includes/input-fields/wcj-product-input-fields-options.php:41
7180
- #: includes/settings/wcj-settings-checkout-custom-fields.php:143
7181
- msgid "Radio"
7182
- msgstr ""
7183
-
7184
- #: includes/input-fields/wcj-product-input-fields-options.php:42
7185
- #: includes/settings/wcj-settings-checkout-custom-fields.php:144
7186
- msgid "Password"
7187
- msgstr ""
7188
-
7189
- #: includes/input-fields/wcj-product-input-fields-options.php:46
7190
- #: includes/settings/wcj-settings-checkout-custom-fields.php:148
7191
- msgid "Phone"
7192
- msgstr ""
7193
-
7194
- #: includes/input-fields/wcj-product-input-fields-options.php:57
7195
- #: includes/settings/wcj-settings-checkout-custom-fields.php:165
7196
- #: includes/settings/wcj-settings-eu-vat-number.php:27
7197
- #: includes/settings/wcj-settings-product-addons.php:130
7198
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:96
7199
- msgid "Placeholder"
7200
- msgstr ""
7201
-
7202
- #: includes/input-fields/wcj-product-input-fields-options.php:63
7203
- #: includes/settings/wcj-settings-checkout-core-fields.php:82
7204
- #: includes/settings/wcj-settings-checkout-custom-fields.php:152
7205
- #: includes/settings/wcj-settings-checkout-files-upload.php:46
7206
- #: includes/settings/wcj-settings-eu-vat-number.php:49
7207
- #: includes/settings/wcj-settings-product-by-user.php:155
7208
- msgid "Required"
7209
- msgstr ""
7210
-
7211
- #: includes/input-fields/wcj-product-input-fields-options.php:69
7212
- msgid "Message on required"
7213
- msgstr ""
7214
-
7215
- #: includes/input-fields/wcj-product-input-fields-options.php:75
7216
- #: includes/settings/wcj-settings-product-addons.php:137
7217
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:104
7218
- msgid "HTML Class"
7219
- msgstr ""
7220
-
7221
- #: includes/input-fields/wcj-product-input-fields-options.php:91
7222
- msgid "If checkbox is selected, set value for ON here"
7223
- msgstr ""
7224
-
7225
- #: includes/input-fields/wcj-product-input-fields-options.php:92
7226
- msgid "Checkbox: ON"
7227
- msgstr ""
7228
-
7229
- #: includes/input-fields/wcj-product-input-fields-options.php:98
7230
- msgid "If checkbox is selected, set value for OFF here"
7231
- msgstr ""
7232
-
7233
- #: includes/input-fields/wcj-product-input-fields-options.php:99
7234
- msgid "Checkbox: OFF"
7235
- msgstr ""
7236
-
7237
- #: includes/input-fields/wcj-product-input-fields-options.php:105
7238
- msgid "If checkbox is selected, set default value here"
7239
- msgstr ""
7240
-
7241
- #: includes/input-fields/wcj-product-input-fields-options.php:106
7242
- msgid "Checkbox: Default"
7243
- msgstr ""
7244
-
7245
- #: includes/input-fields/wcj-product-input-fields-options.php:110
7246
- #: includes/settings/wcj-settings-checkout-custom-fields.php:273
7247
- msgid "Not Checked"
7248
- msgstr ""
7249
-
7250
- #: includes/input-fields/wcj-product-input-fields-options.php:111
7251
- #: includes/settings/wcj-settings-checkout-custom-fields.php:274
7252
- #: includes/settings/wcj-settings-checkout-customization.php:53
7253
- msgid "Checked"
7254
- msgstr ""
7255
-
7256
- #: includes/input-fields/wcj-product-input-fields-options.php:116
7257
- msgid ""
7258
- "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
7259
- "\". Leave blank to accept all files"
7260
- msgstr ""
7261
-
7262
- #: includes/input-fields/wcj-product-input-fields-options.php:117
7263
- msgid ""
7264
- "Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target="
7265
- "\"_blank\">documentation on input accept attribute</a> for valid option "
7266
- "formats"
7267
- msgstr ""
7268
-
7269
- #: includes/input-fields/wcj-product-input-fields-options.php:118
7270
- msgid "File: Accepted types"
7271
- msgstr ""
7272
-
7273
- #: includes/input-fields/wcj-product-input-fields-options.php:120
7274
- msgid ".jpg,.jpeg,.png"
7275
- msgstr ""
7276
-
7277
- #: includes/input-fields/wcj-product-input-fields-options.php:124
7278
- msgid ""
7279
- "If file is selected, set max file size here. Set to zero to accept all files"
7280
- msgstr ""
7281
-
7282
- #: includes/input-fields/wcj-product-input-fields-options.php:125
7283
- msgid "File: Max size"
7284
- msgstr ""
7285
-
7286
- #: includes/input-fields/wcj-product-input-fields-options.php:131
7287
- msgid ""
7288
- "If datepicker/weekpicker is selected, set date format here. Visit <a href="
7289
- "\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank"
7290
- "\">documentation on date and time formatting</a> for valid date formats"
7291
- msgstr ""
7292
-
7293
- #: includes/input-fields/wcj-product-input-fields-options.php:132
7294
- #: includes/settings/wcj-settings-checkout-custom-fields.php:280
7295
- msgid "Leave blank to use your current WordPress format"
7296
- msgstr ""
7297
-
7298
- #: includes/input-fields/wcj-product-input-fields-options.php:133
7299
- msgid "Datepicker/Weekpicker: Date format"
7300
- msgstr ""
7301
-
7302
- #: includes/input-fields/wcj-product-input-fields-options.php:139
7303
- msgid "If datepicker/weekpicker is selected, set min date (in days) here"
7304
- msgstr ""
7305
-
7306
- #: includes/input-fields/wcj-product-input-fields-options.php:140
7307
- msgid "Datepicker/Weekpicker: Min date"
7308
- msgstr ""
7309
-
7310
- #: includes/input-fields/wcj-product-input-fields-options.php:146
7311
- msgid "If datepicker/weekpicker is selected, set max date (in days) here"
7312
- msgstr ""
7313
-
7314
- #: includes/input-fields/wcj-product-input-fields-options.php:147
7315
- msgid "Datepicker/Weekpicker: Max date"
7316
- msgstr ""
7317
-
7318
- #: includes/input-fields/wcj-product-input-fields-options.php:153
7319
- msgid ""
7320
- "If datepicker/weekpicker is selected, set if you want to add year selector"
7321
- msgstr ""
7322
-
7323
- #: includes/input-fields/wcj-product-input-fields-options.php:154
7324
- msgid "Datepicker/Weekpicker: Change year"
7325
- msgstr ""
7326
-
7327
- #: includes/input-fields/wcj-product-input-fields-options.php:160
7328
- msgid ""
7329
- "If datepicker/weekpicker is selected, and year selector is enabled, set year "
7330
- "range here"
7331
- msgstr ""
7332
-
7333
- #: includes/input-fields/wcj-product-input-fields-options.php:161
7334
- msgid "Datepicker/Weekpicker: Year range"
7335
- msgstr ""
7336
-
7337
- #: includes/input-fields/wcj-product-input-fields-options.php:168
7338
- msgid "If datepicker/weekpicker is selected, set first week day here"
7339
- msgstr ""
7340
-
7341
- #: includes/input-fields/wcj-product-input-fields-options.php:169
7342
- msgid "Datepicker/Weekpicker: First week day"
7343
- msgstr ""
7344
-
7345
- #: includes/input-fields/wcj-product-input-fields-options.php:173
7346
- #: includes/settings/wcj-settings-checkout-custom-fields.php:318
7347
- msgid "Sunday"
7348
- msgstr ""
7349
-
7350
- #: includes/input-fields/wcj-product-input-fields-options.php:174
7351
- #: includes/settings/wcj-settings-checkout-custom-fields.php:319
7352
- msgid "Monday"
7353
- msgstr ""
7354
-
7355
- #: includes/input-fields/wcj-product-input-fields-options.php:175
7356
- #: includes/settings/wcj-settings-checkout-custom-fields.php:320
7357
- msgid "Tuesday"
7358
- msgstr ""
7359
-
7360
- #: includes/input-fields/wcj-product-input-fields-options.php:176
7361
- #: includes/settings/wcj-settings-checkout-custom-fields.php:321
7362
- msgid "Wednesday"
7363
- msgstr ""
7364
-
7365
- #: includes/input-fields/wcj-product-input-fields-options.php:177
7366
- #: includes/settings/wcj-settings-checkout-custom-fields.php:322
7367
- msgid "Thursday"
7368
- msgstr ""
7369
-
7370
- #: includes/input-fields/wcj-product-input-fields-options.php:178
7371
- #: includes/settings/wcj-settings-checkout-custom-fields.php:323
7372
- msgid "Friday"
7373
- msgstr ""
7374
-
7375
- #: includes/input-fields/wcj-product-input-fields-options.php:179
7376
- #: includes/settings/wcj-settings-checkout-custom-fields.php:324
7377
- msgid "Saturday"
7378
- msgstr ""
7379
-
7380
- #: includes/input-fields/wcj-product-input-fields-options.php:184
7381
- msgid ""
7382
- "If timepicker is selected, set time format here. Visit <a href=\"http://"
7383
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7384
- "valid time formats"
7385
- msgstr ""
7386
-
7387
- #: includes/input-fields/wcj-product-input-fields-options.php:185
7388
- msgid "Timepicker: Time format"
7389
- msgstr ""
7390
-
7391
- #: includes/input-fields/wcj-product-input-fields-options.php:191
7392
- msgid ""
7393
- "If timepicker is selected, set min time here. Visit <a href=\"http://"
7394
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7395
- "valid option formats"
7396
- msgstr ""
7397
-
7398
- #: includes/input-fields/wcj-product-input-fields-options.php:192
7399
- msgid "Timepicker: Min Time"
7400
- msgstr ""
7401
-
7402
- #: includes/input-fields/wcj-product-input-fields-options.php:198
7403
- msgid ""
7404
- "If timepicker is selected, set max time here. Visit <a href=\"http://"
7405
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7406
- "valid option formats"
7407
- msgstr ""
7408
-
7409
- #: includes/input-fields/wcj-product-input-fields-options.php:199
7410
- msgid "Timepicker: Max Time"
7411
- msgstr ""
7412
-
7413
- #: includes/input-fields/wcj-product-input-fields-options.php:205
7414
- msgid "If timepicker is selected, set interval (in minutes) here"
7415
- msgstr ""
7416
-
7417
- #: includes/input-fields/wcj-product-input-fields-options.php:206
7418
- #: includes/settings/wcj-settings-checkout-custom-fields.php:335
7419
- msgid "Timepicker: Interval"
7420
- msgstr ""
7421
-
7422
- #: includes/input-fields/wcj-product-input-fields-options.php:212
7423
- msgid "If select/radio is selected, set options here. One option per line"
7424
- msgstr ""
7425
-
7426
- #: includes/input-fields/wcj-product-input-fields-options.php:213
7427
- #: includes/settings/wcj-settings-checkout-custom-fields.php:223
7428
- msgid "Select/Radio: Options"
7429
- msgstr ""
7430
-
7431
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:60
7432
- msgid "Invoices successfully renumerated!"
7433
- msgstr ""
7434
-
7435
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
7436
- msgid "Please select at least one order status."
7437
- msgstr ""
7438
-
7439
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:67
7440
- msgid "Booster - Renumerate Invoices"
7441
- msgstr ""
7442
-
7443
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:68
7444
- msgid ""
7445
- "The tool renumerates invoices from choosen date. Invoice number format is "
7446
- "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
7447
- "Numbering."
7448
- msgstr ""
7449
-
7450
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:75
7451
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
7452
- msgid "Start Date"
7453
- msgstr ""
7454
-
7455
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
7456
- msgid "Date to start renumerating. Leave blank to renumerate all invoices."
7457
- msgstr ""
7458
-
7459
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:82
7460
- msgid "End Date"
7461
- msgstr ""
7462
-
7463
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
7464
- msgid "Date to end renumerating. Leave blank to renumerate all invoices."
7465
- msgstr ""
7466
-
7467
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:89
7468
- msgid "Start Number"
7469
- msgstr ""
7470
-
7471
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:91
7472
- msgid ""
7473
- "Counter to start renumerating. Leave 0 to continue from current counter."
7474
- msgstr ""
7475
-
7476
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:96
7477
- msgid "Delete All"
7478
- msgstr ""
7479
-
7480
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:98
7481
- msgid "Clear all invoices before renumerating"
7482
- msgstr ""
7483
-
7484
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:110
7485
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:135
7486
- msgid "Document Type"
7487
- msgstr ""
7488
-
7489
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
7490
- msgid "Order Statuses"
7491
- msgstr ""
7492
-
7493
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:123
7494
- msgid "Renumerate invoices"
7495
- msgstr ""
7496
-
7497
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:135
7498
- msgid "Results"
7499
- msgstr ""
7500
-
7501
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:216
7502
- #, php-format
7503
- msgid "Total documents created: %d"
7504
- msgstr ""
7505
-
7506
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:217
7507
- #, php-format
7508
- msgid "Total documents deleted: %d"
7509
- msgstr ""
7510
-
7511
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:69
7512
- #, php-format
7513
- msgid ""
7514
- "This option is disabled with \"Disable Saving PDFs in PHP directory for "
7515
- "temporary files\" checkbox in <a href=\"%s\" target=\"_blank\">WooCommerce > "
7516
- "Settings > Booster > PDF Invoicing & Packing Slips > Advanced</a>."
7517
- msgstr ""
7518
-
7519
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:80
7520
- msgid "Sorry, but something went wrong..."
7521
- msgstr ""
7522
-
7523
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:86
7524
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:107
7525
- msgid "Please fill year and month values."
7526
- msgstr ""
7527
-
7528
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:130
7529
- msgid "Month"
7530
- msgstr ""
7531
-
7532
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:142
7533
- msgid "Display monthly documents table"
7534
- msgstr ""
7535
-
7536
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:148
7537
- msgid "Download all monthly documents PDFs in single ZIP file"
7538
- msgstr ""
7539
-
7540
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:154
7541
- msgid "Download monthly documents CSV"
7542
- msgstr ""
7543
-
7544
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
7545
- #, php-format
7546
- msgid "No documents (%s) found for %d-%02d."
7547
- msgstr ""
7548
-
7549
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:25
7550
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
7551
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
7552
- #: includes/settings/wcj-settings-multicurrency-base-price.php:63
7553
- #: includes/settings/wcj-settings-multicurrency.php:154
7554
- #: includes/settings/wcj-settings-order-min-amount.php:69
7555
- #: includes/settings/wcj-settings-price-by-country.php:160
7556
- msgid "Advanced"
7557
- msgstr ""
7558
-
7559
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:38
7560
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:62
7561
- msgid "Document Number"
7562
- msgstr ""
7563
-
7564
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:39
7565
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:63
7566
- msgid "Document Date"
7567
- msgstr ""
7568
-
7569
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:41
7570
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:65
7571
- msgid "Customer Country"
7572
- msgstr ""
7573
-
7574
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:42
7575
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:66
7576
- msgid "Customer VAT ID"
7577
- msgstr ""
7578
-
7579
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:43
7580
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:67
7581
- msgid "Tax %"
7582
- msgstr ""
7583
-
7584
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:44
7585
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:68
7586
- msgid "Order Total Excl. Tax"
7587
- msgstr ""
7588
-
7589
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:45
7590
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:69
7591
- msgid "Order Taxes"
7592
- msgstr ""
7593
-
7594
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:48
7595
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:78
7596
- msgid "Payment Gateway"
7597
- msgstr ""
7598
-
7599
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:49
7600
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:79
7601
- msgid "Refunds"
7602
- msgstr ""
7603
-
7604
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:70
7605
- msgid "Cart Total Excl. Tax"
7606
- msgstr ""
7607
-
7608
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:71
7609
- msgid "Cart Tax"
7610
- msgstr ""
7611
-
7612
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:72
7613
- msgid "Cart Tax %"
7614
- msgstr ""
7615
-
7616
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:73
7617
- msgid "Shipping Total Excl. Tax"
7618
- msgstr ""
7619
-
7620
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:74
7621
- msgid "Shipping Tax"
7622
- msgstr ""
7623
-
7624
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:75
7625
- msgid "Shipping Tax %"
7626
- msgstr ""
7627
-
7628
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
7629
- msgid "Display & Misc."
7630
- msgstr ""
7631
-
7632
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:131
7633
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:307
7634
- msgid "View"
7635
- msgstr ""
7636
-
7637
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:150
7638
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:335
7639
- msgid "Create"
7640
- msgstr ""
7641
-
7642
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:227
7643
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:98
7644
- #, php-format
7645
- msgid "Your %s:"
7646
- msgstr ""
7647
-
7648
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:272
7649
- msgid "Booster: PDF Invoices"
7650
- msgstr ""
7651
-
7652
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:292
7653
- msgid "You have no document types enabled."
7654
- msgstr ""
7655
-
7656
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:341
7657
- msgid ""
7658
- "In case of partial refund, you need to reload the page to see created "
7659
- "document in this meta box."
7660
- msgstr ""
7661
-
7662
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
7663
- #: includes/settings/wcj-settings-custom-css.php:25
7664
- #: includes/settings/wcj-settings-custom-js.php:25
7665
- msgid "Footer"
7666
- msgstr ""
7667
-
7668
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
7669
- #: includes/settings/wcj-settings-custom-css.php:24
7670
- #: includes/settings/wcj-settings-custom-js.php:24
7671
- msgid "Header"
7672
- msgstr ""
7673
-
7674
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
7675
- msgid "Numbering"
7676
- msgstr ""
7677
-
7678
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
7679
- msgid "Page Settings"
7680
- msgstr ""
7681
-
7682
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
7683
- msgid "Styling"
7684
- msgstr ""
7685
-
7686
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
7687
- #: includes/settings/wcj-settings-template-editor.php:20
7688
- msgid "Templates"
7689
- msgstr ""
7690
-
7691
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:34
7692
- msgid "Country groups successfully generated."
7693
- msgstr ""
7694
-
7695
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:37
7696
- msgid "Country groups generation failed."
7697
- msgstr ""
7698
-
7699
- #: includes/price-by-country/class-wcj-price-by-country-local.php:111
7700
- #: includes/settings/wcj-settings-price-by-country.php:338
7701
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:67
7702
- msgid "Make empty price"
7703
- msgstr ""
7704
-
7705
- #: includes/price-by-country/class-wcj-price-by-country-local.php:215
7706
- #: includes/settings/wcj-settings-add-to-cart.php:50
7707
- #: includes/settings/wcj-settings-price-by-country.php:232
7708
- #: includes/settings/wcj-settings-price-by-country.php:233
7709
- #: includes/settings/wcj-settings-price-by-country.php:238
7710
- #: includes/settings/wcj-settings-price-by-country.php:286
7711
- #: includes/settings/wcj-settings-price-by-country.php:329
7712
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:17
7713
- msgid "Group"
7714
- msgstr ""
7715
-
7716
- #: includes/reports/class-wcj-currency-reports.php:38
7717
- msgid "Reports currency:"
7718
- msgstr ""
7719
-
7720
- #: includes/reports/class-wcj-currency-reports.php:40
7721
- #: includes/reports/class-wcj-currency-reports.php:78
7722
- msgid "Show reports only in"
7723
- msgstr ""
7724
-
7725
- #: includes/reports/wcj-class-reports-customers.php:38
7726
- msgid "No customers found."
7727
- msgstr ""
7728
-
7729
- #: includes/reports/wcj-class-reports-customers.php:79
7730
- msgid "Non Available"
7731
- msgstr ""
7732
-
7733
- #: includes/reports/wcj-class-reports-customers.php:92
7734
- #: includes/settings/wcj-settings-offer-price.php:206
7735
- msgid "Customer Name"
7736
- msgstr ""
7737
-
7738
- #: includes/reports/wcj-class-reports-customers.php:94
7739
- msgid "Total Spent"
7740
- msgstr ""
7741
-
7742
- #: includes/reports/wcj-class-reports-customers.php:134
7743
- msgid "Total customers"
7744
- msgstr ""
7745
-
7746
- #: includes/reports/wcj-class-reports-customers.php:138
7747
- msgid "Country Code"
7748
- msgstr ""
7749
-
7750
- #: includes/reports/wcj-class-reports-customers.php:139
7751
- msgid "Customers Count"
7752
- msgstr ""
7753
-
7754
- #: includes/reports/wcj-class-reports-customers.php:140
7755
- msgid "Percent of total"
7756
- msgstr ""
7757
-
7758
- #: includes/reports/wcj-class-reports-customers.php:162
7759
- msgid "Report for:"
7760
- msgstr ""
7761
-
7762
- #: includes/reports/wcj-class-reports-monthly-sales.php:37
7763
- msgid "Currency rates saved."
7764
- msgstr ""
7765
-
7766
- #: includes/reports/wcj-class-reports-monthly-sales.php:41
7767
- msgid "Currency rates deleted."
7768
- msgstr ""
7769
-
7770
- #: includes/reports/wcj-class-reports-monthly-sales.php:84
7771
- msgid "Days"
7772
- msgstr ""
7773
-
7774
- #: includes/reports/wcj-class-reports-monthly-sales.php:85
7775
- msgid "Total Orders"
7776
- msgstr ""
7777
-
7778
- #: includes/reports/wcj-class-reports-monthly-sales.php:86
7779
- msgid "Orders Average / Day"
7780
- msgstr ""
7781
-
7782
- #: includes/reports/wcj-class-reports-monthly-sales.php:87
7783
- #: includes/reports/wcj-class-reports-sales.php:315
7784
- msgid "Total Sum"
7785
- msgstr ""
7786
-
7787
- #: includes/reports/wcj-class-reports-monthly-sales.php:88
7788
- msgid "Total Sum (excl. TAX)"
7789
- msgstr ""
7790
-
7791
- #: includes/reports/wcj-class-reports-monthly-sales.php:89
7792
- msgid "Average / Order (excl. TAX)"
7793
- msgstr ""
7794
-
7795
- #: includes/reports/wcj-class-reports-monthly-sales.php:90
7796
- msgid "Average / Day (excl. TAX)"
7797
- msgstr ""
7798
-
7799
- #: includes/reports/wcj-class-reports-monthly-sales.php:91
7800
- msgid "Currency Rates"
7801
- msgstr ""
7802
-
7803
- #: includes/reports/wcj-class-reports-monthly-sales.php:92
7804
- msgid "Orders by Currency"
7805
- msgstr ""
7806
-
7807
- #: includes/reports/wcj-class-reports-monthly-sales.php:200
7808
- #: includes/reports/wcj-class-reports-monthly-sales.php:213
7809
- #: includes/reports/wcj-class-reports-monthly-sales.php:280
7810
- #: includes/reports/wcj-class-reports-monthly-sales.php:282
7811
- #, php-format
7812
- msgid "Forecast: %s"
7813
- msgstr ""
7814
-
7815
- #: includes/reports/wcj-class-reports-monthly-sales.php:233
7816
- msgid "Grab average rate"
7817
- msgstr ""
7818
-
7819
- #: includes/reports/wcj-class-reports-monthly-sales.php:285
7820
- msgid "Totals"
7821
- msgstr ""
7822
-
7823
- #: includes/reports/wcj-class-reports-monthly-sales.php:329
7824
- msgid "Report currency"
7825
- msgstr ""
7826
-
7827
- #: includes/reports/wcj-class-reports-monthly-sales.php:344
7828
- #, php-format
7829
- msgid "Report generated in: %s s"
7830
- msgstr ""
7831
-
7832
- #: includes/reports/wcj-class-reports-monthly-sales.php:347
7833
- msgid "Save Currency Rates"
7834
- msgstr ""
7835
-
7836
- #: includes/reports/wcj-class-reports-monthly-sales.php:351
7837
- msgid "Reset Currency Rates"
7838
- msgstr ""
7839
-
7840
- #: includes/reports/wcj-class-reports-sales-daily.php:164
7841
- #: includes/reports/wcj-class-reports-sales-gateways.php:114
7842
- #: includes/reports/wcj-class-reports-sales.php:324
7843
- msgid "Reports Settings"
7844
- msgstr ""
7845
-
7846
- #: includes/reports/wcj-class-reports-sales-daily.php:181
7847
- #: includes/reports/wcj-class-reports-sales-gateways.php:131
7848
- msgid "From:"
7849
- msgstr ""
7850
-
7851
- #: includes/reports/wcj-class-reports-sales-daily.php:184
7852
- #: includes/reports/wcj-class-reports-sales-gateways.php:134
7853
- msgid "To:"
7854
- msgstr ""
7855
-
7856
- #: includes/reports/wcj-class-reports-sales-daily.php:187
7857
- msgid "Product:"
7858
- msgstr ""
7859
-
7860
- #: includes/reports/wcj-class-reports-sales-daily.php:276
7861
- #, php-format
7862
- msgid "Total: %d"
7863
- msgstr ""
7864
-
7865
- #: includes/reports/wcj-class-reports-sales-daily.php:280
7866
- #: includes/reports/wcj-class-reports-sales-daily.php:284
7867
- #, php-format
7868
- msgid "Total: %s"
7869
- msgstr ""
7870
-
7871
- #: includes/reports/wcj-class-reports-sales-daily.php:296
7872
- #: includes/reports/wcj-class-reports-sales-gateways.php:158
7873
- #, php-format
7874
- msgid "Total orders: %d"
7875
- msgstr ""
7876
-
7877
- #: includes/reports/wcj-class-reports-sales-daily.php:297
7878
- #: includes/reports/wcj-class-reports-sales-gateways.php:160
7879
- #: includes/reports/wcj-class-reports-sales.php:349
7880
- msgid "No sales data for current period."
7881
- msgstr ""
7882
-
7883
- #: includes/reports/wcj-class-reports-sales-gateways.php:84
7884
- #: includes/reports/wcj-class-reports-stock.php:108
7885
- #: includes/reports/wcj-class-reports-stock.php:183
7886
- msgid "N/A"
7887
- msgstr ""
7888
-
7889
- #: includes/reports/wcj-class-reports-sales-gateways.php:153
7890
- msgid "Gateway"
7891
- msgstr ""
7892
-
7893
- #: includes/reports/wcj-class-reports-sales.php:128
7894
- msgid "Variation"
7895
- msgstr ""
7896
-
7897
- #: includes/reports/wcj-class-reports-sales.php:198
7898
- msgid "Last Sale"
7899
- msgstr ""
7900
-
7901
- #: includes/reports/wcj-class-reports-sales.php:199
7902
- msgid "Total"
7903
- msgstr ""
7904
-
7905
- #: includes/reports/wcj-class-reports-sales.php:311
7906
- msgid "Total Items"
7907
- msgstr ""
7908
-
7909
- #: includes/reports/wcj-class-reports-sales.php:319
7910
- msgid "Total Profit"
7911
- msgstr ""
7912
-
7913
- #: includes/reports/wcj-class-reports-sales.php:344
7914
- msgid "Filter products"
7915
- msgstr ""
7916
-
7917
- #: includes/reports/wcj-class-reports-stock.php:33
7918
- msgid "All Products on Stock"
7919
- msgstr ""
7920
-
7921
- #: includes/reports/wcj-class-reports-stock.php:34
7922
- msgid "Report shows all products that are on stock and some sales info."
7923
- msgstr ""
7924
-
7925
- #: includes/reports/wcj-class-reports-stock.php:38
7926
- msgid "Understocked"
7927
- msgstr ""
7928
-
7929
- #: includes/reports/wcj-class-reports-stock.php:39
7930
- msgid ""
7931
- "Report shows all products that are low in stock calculated on product's "
7932
- "sales data."
7933
- msgstr ""
7934
-
7935
- #: includes/reports/wcj-class-reports-stock.php:40
7936
- msgid ""
7937
- "Threshold for minimum stock is equal to half of the sales in selected days "
7938
- "range."
7939
- msgstr ""
7940
-
7941
- #: includes/reports/wcj-class-reports-stock.php:44
7942
- msgid "Overstocked"
7943
- msgstr ""
7944
-
7945
- #: includes/reports/wcj-class-reports-stock.php:45
7946
- msgid ""
7947
- "Report shows all products that are on stock, but have no sales in selected "
7948
- "period. Only products added before the start date of selected period are "
7949
- "accounted."
7950
- msgstr ""
7951
-
7952
- #: includes/reports/wcj-class-reports-stock.php:273
7953
- msgid "Stock price"
7954
- msgstr ""
7955
-
7956
- #: includes/reports/wcj-class-reports-stock.php:274
7957
- msgid "Total stock price"
7958
- msgstr ""
7959
-
7960
- #: includes/reports/wcj-class-reports-stock.php:275
7961
- msgid "Last sale"
7962
- msgstr ""
7963
-
7964
- #: includes/reports/wcj-class-reports-stock.php:276
7965
- #, php-format
7966
- msgid "Sales in last %s days"
7967
- msgstr ""
7968
-
7969
- #: includes/reports/wcj-class-reports-stock.php:277
7970
- msgid "Total sales"
7971
- msgstr ""
7972
-
7973
- #: includes/reports/wcj-class-reports-stock.php:279
7974
- msgid "Stock to minimum"
7975
- msgstr ""
7976
-
7977
- #: includes/reports/wcj-class-reports-stock.php:308
7978
- msgid "purchase price:"
7979
- msgstr ""
7980
-
7981
- #: includes/reports/wcj-class-reports-stock.php:312
7982
- msgid "stock purchase price:"
7983
- msgstr ""
7984
-
7985
- #: includes/reports/wcj-class-reports-stock.php:317
7986
- msgid "No sales yet"
7987
- msgstr ""
7988
-
7989
- #: includes/reports/wcj-class-reports-stock.php:320
7990
- msgid "profit:"
7991
- msgstr ""
7992
-
7993
- #: includes/reports/wcj-class-reports-stock.php:340
7994
- msgid "Total current stock value"
7995
- msgstr ""
7996
-
7997
- #: includes/reports/wcj-class-reports-stock.php:341
7998
- msgid "Total stock value"
7999
- msgstr ""
8000
-
8001
- #: includes/reports/wcj-class-reports-stock.php:342
8002
- msgid "Product stock value average"
8003
- msgstr ""
8004
-
8005
- #: includes/reports/wcj-class-reports-stock.php:343
8006
- msgid "Product stock average"
8007
- msgstr ""
8008
-
8009
- #: includes/reports/wcj-class-reports-stock.php:345
8010
- msgid "Total current stock purchase price"
8011
- msgstr ""
8012
-
8013
- #: includes/reports/wcj-class-reports-stock.php:349
8014
- msgid "Report was generated in: "
8015
- msgstr ""
8016
-
8017
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:17
8018
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:22
8019
- #: includes/settings/wcj-settings-max-products-per-user.php:14
8020
- #: includes/settings/wcj-settings-max-products-per-user.php:19
8021
- #: includes/settings/wcj-settings-product-add-to-cart.php:24
8022
- #: includes/settings/wcj-settings-product-by-date.php:20
8023
- msgid "All Products"
8024
- msgstr ""
8025
-
8026
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:23
8027
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:91
8028
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:108
8029
- #: includes/settings/wcj-settings-admin-orders-list.php:21
8030
- #: includes/settings/wcj-settings-admin-orders-list.php:109
8031
- #: includes/settings/wcj-settings-admin-orders-list.php:201
8032
- #: includes/settings/wcj-settings-admin-products-list.php:20
8033
- #: includes/settings/wcj-settings-admin-products-list.php:76
8034
- #: includes/settings/wcj-settings-max-products-per-user.php:20
8035
- #: includes/settings/wcj-settings-max-products-per-user.php:43
8036
- #: includes/settings/wcj-settings-my-account.php:67
8037
- #: includes/settings/wcj-settings-my-account.php:135
8038
- #: includes/settings/wcj-settings-my-account.php:186
8039
- #: includes/settings/wcj-settings-my-account.php:227
8040
- #: includes/settings/wcj-settings-order-quantities.php:85
8041
- #: includes/settings/wcj-settings-order-quantities.php:143
8042
- #: includes/settings/wcj-settings-order-quantities.php:201
8043
- #: includes/settings/wcj-settings-order-quantities.php:249
8044
- #: includes/settings/wcj-settings-orders.php:150
8045
- #: includes/settings/wcj-settings-price-formats.php:37
8046
- #: includes/settings/wcj-settings-product-add-to-cart.php:273
8047
- #: includes/settings/wcj-settings-product-listings.php:138
8048
- #: includes/settings/wcj-settings-sale-flash.php:20
8049
- #: includes/settings/wcj-settings-sale-flash.php:65
8050
- #: includes/settings/wcj-settings-sale-flash.php:90
8051
- #: includes/settings/wcj-settings-shipping-by-condition.php:48
8052
- #: includes/settings/wcj-settings-shipping-options.php:21
8053
- #: includes/settings/wcj-settings-stock.php:20
8054
- #: includes/settings/wcj-settings-stock.php:87
8055
- #: includes/settings/wcj-settings-stock.php:132
8056
- #: includes/settings/wcj-settings-stock.php:177
8057
- #: includes/settings/wcj-settings-tax-display.php:27
8058
- #: includes/settings/wcj-settings-tax-display.php:44
8059
- #: includes/settings/wcj-settings-tax-display.php:101
8060
- msgid "Enable section"
8061
- msgstr ""
8062
-
8063
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:29
8064
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:114
8065
- msgid "Disable Buttons on Category/Archives Pages"
8066
- msgstr ""
8067
-
8068
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:30
8069
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:56
8070
- #: includes/settings/wcj-settings-general.php:30
8071
- #: includes/settings/wcj-settings-general.php:99
8072
- #: includes/settings/wcj-settings-general.php:114
8073
- #: includes/settings/wcj-settings-general.php:122
8074
- #: includes/settings/wcj-settings-general.php:130
8075
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:84
8076
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:116
8077
- #: includes/settings/wcj-settings-price-by-user-role.php:56
8078
- #: includes/settings/wcj-settings-price-by-user-role.php:96
8079
- #: includes/settings/wcj-settings-product-add-to-cart.php:131
8080
- #: includes/settings/wcj-settings-product-open-pricing.php:95
8081
- #: includes/settings/wcj-settings-sku.php:283
8082
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
8083
- msgid "Disable"
8084
- msgstr ""
8085
-
8086
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
8087
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
8088
- #: includes/settings/wcj-settings-cart-customization.php:40
8089
- msgid "Method"
8090
- msgstr ""
8091
-
8092
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:37
8093
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:63
8094
- msgid ""
8095
- "Method for disabling the buttons. Try changing if buttons are not being "
8096
- "disabled (may happen with some themes)."
8097
- msgstr ""
8098
-
8099
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:42
8100
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:68
8101
- msgid "Remove action"
8102
- msgstr ""
8103
-
8104
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:43
8105
- msgid "Add filter"
8106
- msgstr ""
8107
-
8108
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:48
8109
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:123
8110
- msgid ""
8111
- "Content to replace with on archives (can be empty). You can use HTML and/or "
8112
- "shortcodes here."
8113
- msgstr ""
8114
-
8115
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:55
8116
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:130
8117
- msgid "Disable Buttons on Single Product Pages"
8118
- msgstr ""
8119
-
8120
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:69
8121
- msgid "Add action"
8122
- msgstr ""
8123
-
8124
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:74
8125
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:139
8126
- msgid ""
8127
- "Content to replace with on single product pages (can be empty). You can use "
8128
- "HTML and/or shortcodes here."
8129
- msgstr ""
8130
-
8131
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:85
8132
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:90
8133
- #: includes/settings/wcj-settings-max-products-per-user.php:37
8134
- #: includes/settings/wcj-settings-max-products-per-user.php:42
8135
- #: includes/settings/wcj-settings-order-quantities.php:215
8136
- #: includes/settings/wcj-settings-price-labels.php:22
8137
- #: includes/settings/wcj-settings-product-add-to-cart.php:39
8138
- #: includes/settings/wcj-settings-product-by-date.php:52
8139
- #: includes/settings/wcj-settings-product-by-time.php:52
8140
- #: includes/settings/wcj-settings-sale-flash.php:59
8141
- #: includes/settings/wcj-settings-sale-flash.php:64
8142
- msgid "Per Product"
8143
- msgstr ""
8144
-
8145
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:92
8146
- #: includes/settings/wcj-settings-currency-per-product.php:65
8147
- #: includes/settings/wcj-settings-product-add-to-cart.php:179
8148
- #: includes/settings/wcj-settings-product-add-to-cart.php:196
8149
- msgid "This will add meta box to each product's edit page"
8150
- msgstr ""
8151
-
8152
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:102
8153
- #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:107
8154
- #: includes/settings/wcj-settings-sale-flash.php:81
8155
- msgid "Per Category"
8156
- msgstr ""
8157
-
8158
- #: includes/settings/wcj-settings-add-to-cart.php:14
8159
- msgid "Per Category Options"
8160
- msgstr ""
8161
-
8162
- #: includes/settings/wcj-settings-add-to-cart.php:16
8163
- msgid ""
8164
- "This sections lets you set Add to Cart button text on per category basis."
8165
- msgstr ""
8166
-
8167
- #: includes/settings/wcj-settings-add-to-cart.php:20
8168
- msgid "Per Category Labels"
8169
- msgstr ""
8170
-
8171
- #: includes/settings/wcj-settings-add-to-cart.php:21
8172
- #: includes/settings/wcj-settings-add-to-cart.php:92
8173
- #: includes/settings/wcj-settings-add-to-cart.php:110
8174
- #: includes/settings/wcj-settings-general.php:163
8175
- #: includes/settings/wcj-settings-shipping-calculator.php:69
8176
- #: includes/settings/wcj-settings-sorting.php:20
8177
- #: includes/settings/wcj-settings-sorting.php:99
8178
- #: includes/settings/wcj-settings-sorting.php:123
8179
- msgid "Enable Section"
8180
- msgstr ""
8181
-
8182
- #: includes/settings/wcj-settings-add-to-cart.php:28
8183
- msgid "Category Groups Number"
8184
- msgstr ""
8185
-
8186
- #: includes/settings/wcj-settings-add-to-cart.php:29
8187
- #: includes/settings/wcj-settings-product-tabs.php:50
8188
- msgid "Click \"Save changes\" after you change this number."
8189
- msgstr ""
8190
-
8191
- #: includes/settings/wcj-settings-add-to-cart.php:57
8192
- msgid "categories"
8193
- msgstr ""
8194
-
8195
- #: includes/settings/wcj-settings-add-to-cart.php:58
8196
- #: includes/settings/wcj-settings-shipping-calculator.php:47
8197
- msgid ""
8198
- msgstr ""
8199
-
8200
- #: includes/settings/wcj-settings-add-to-cart.php:66
8201
- msgid "Button text - single product view"
8202
- msgstr ""
8203
-
8204
- #: includes/settings/wcj-settings-add-to-cart.php:72
8205
- msgid "Button text - product archive (category) view"
8206
- msgstr ""
8207
-
8208
- #: includes/settings/wcj-settings-add-to-cart.php:85
8209
- #: includes/settings/wcj-settings-currency-per-product.php:59
8210
- #: includes/settings/wcj-settings-product-addons.php:25
8211
- #: includes/settings/wcj-settings-product-by-date.php:47
8212
- #: includes/settings/wcj-settings-product-by-time.php:47
8213
- msgid "Per Product Options"
8214
- msgstr ""
8215
-
8216
- #: includes/settings/wcj-settings-add-to-cart.php:87
8217
- msgid ""
8218
- "This section lets you set Add to Cart button text on per product basis. When "
8219
- "enabled, label for each product can be changed in \"Edit Product\"."
8220
- msgstr ""
8221
-
8222
- #: includes/settings/wcj-settings-add-to-cart.php:91
8223
- msgid "Per Product Labels"
8224
- msgstr ""
8225
-
8226
- #: includes/settings/wcj-settings-add-to-cart.php:103
8227
- msgid "Per Product Type Options"
8228
- msgstr ""
8229
-
8230
- #: includes/settings/wcj-settings-add-to-cart.php:109
8231
- msgid "Per Product Type Labels"
8232
- msgstr ""
8233
-
8234
- #: includes/settings/wcj-settings-add-to-cart.php:119
8235
- #: includes/settings/wcj-settings-product-by-user.php:93
8236
- msgid "Simple product"
8237
- msgstr ""
8238
-
8239
- #: includes/settings/wcj-settings-add-to-cart.php:120
8240
- #: includes/settings/wcj-settings-add-to-cart.php:174
8241
- #: includes/settings/wcj-settings-add-to-cart.php:181
8242
- #: includes/settings/wcj-settings-add-to-cart.php:188
8243
- #: includes/settings/wcj-settings-add-to-cart.php:195
8244
- #: includes/settings/wcj-settings-add-to-cart.php:215
8245
- #: includes/settings/wcj-settings-add-to-cart.php:216
8246
- #: includes/settings/wcj-settings-add-to-cart.php:224
8247
- #: includes/settings/wcj-settings-add-to-cart.php:225
8248
- msgid "Add to cart"
8249
- msgstr ""
8250
-
8251
- #: includes/settings/wcj-settings-add-to-cart.php:124
8252
- msgid "Variable product"
8253
- msgstr ""
8254
-
8255
- #: includes/settings/wcj-settings-add-to-cart.php:125
8256
- msgid "Select options"
8257
- msgstr ""
8258
-
8259
- #: includes/settings/wcj-settings-add-to-cart.php:129
8260
- msgid "External product"
8261
- msgstr ""
8262
-
8263
- #: includes/settings/wcj-settings-add-to-cart.php:130
8264
- msgid "Buy product"
8265
- msgstr ""
8266
-
8267
- #: includes/settings/wcj-settings-add-to-cart.php:134
8268
- msgid "Grouped product"
8269
- msgstr ""
8270
-
8271
- #: includes/settings/wcj-settings-add-to-cart.php:135
8272
- msgid "View products"
8273
- msgstr ""
8274
-
8275
- #: includes/settings/wcj-settings-add-to-cart.php:139
8276
- msgid "Other product"
8277
- msgstr ""
8278
-
8279
- #: includes/settings/wcj-settings-add-to-cart.php:148
8280
- msgid "Single product view."
8281
- msgstr ""
8282
-
8283
- #: includes/settings/wcj-settings-add-to-cart.php:149
8284
- #: includes/settings/wcj-settings-add-to-cart.php:156
8285
- #: includes/settings/wcj-settings-add-to-cart.php:213
8286
- #: includes/settings/wcj-settings-add-to-cart.php:222
8287
- #: includes/settings/wcj-settings-payment-gateways-fees.php:24
8288
- #: includes/settings/wcj-settings-product-custom-info.php:191
8289
- msgid "Leave blank to disable."
8290
- msgstr ""
8291
-
8292
- #: includes/settings/wcj-settings-add-to-cart.php:149
8293
- #: includes/settings/wcj-settings-add-to-cart.php:156
8294
- #: includes/settings/wcj-settings-add-to-cart.php:215
8295
- #: includes/settings/wcj-settings-add-to-cart.php:224
8296
- #: includes/settings/wcj-settings-sorting.php:27
8297
- #: includes/settings/wcj-settings-sorting.php:36
8298
- #: includes/settings/wcj-settings-sorting.php:45
8299
- #: includes/settings/wcj-settings-sorting.php:54
8300
- #: includes/settings/wcj-settings-sorting.php:72
8301
- #: includes/settings/wcj-settings-sorting.php:81
8302
- msgid "Default: "
8303
- msgstr ""
8304
-
8305
- #: includes/settings/wcj-settings-add-to-cart.php:155
8306
- msgid "Product category (archive) view."
8307
- msgstr ""
8308
-
8309
- #: includes/settings/wcj-settings-add-to-cart.php:164
8310
- msgid "Products not in stock. Product category (archive) view."
8311
- msgstr ""
8312
-
8313
- #: includes/settings/wcj-settings-add-to-cart.php:165
8314
- #: includes/settings/wcj-settings-add-to-cart.php:172
8315
- #: includes/settings/wcj-settings-add-to-cart.php:179
8316
- #: includes/settings/wcj-settings-add-to-cart.php:186
8317
- #: includes/settings/wcj-settings-add-to-cart.php:193
8318
- msgid "Leave blank to disable. Default: Add to cart"
8319
- msgstr ""
8320
-
8321
- #: includes/settings/wcj-settings-add-to-cart.php:171
8322
- msgid "Products on sale. Single product view."
8323
- msgstr ""
8324
-
8325
- #: includes/settings/wcj-settings-add-to-cart.php:178
8326
- msgid "Products on sale. Product category (archive) view."
8327
- msgstr ""
8328
-
8329
- #: includes/settings/wcj-settings-add-to-cart.php:185
8330
- msgid "Products with price set to 0 (i.e. free). Single product view."
8331
- msgstr ""
8332
-
8333
- #: includes/settings/wcj-settings-add-to-cart.php:192
8334
- msgid ""
8335
- "Products with price set to 0 (i.e. free). Product category (archive) view."
8336
- msgstr ""
8337
-
8338
- #: includes/settings/wcj-settings-add-to-cart.php:199
8339
- msgid "Products with empty price. Product category (archive) view."
8340
- msgstr ""
8341
-
8342
- #: includes/settings/wcj-settings-add-to-cart.php:200
8343
- msgid "Leave blank to disable. Default: Read More"
8344
- msgstr ""
8345
-
8346
- #: includes/settings/wcj-settings-add-to-cart.php:212
8347
- msgid "Already in cart. Single product view."
8348
- msgstr ""
8349
-
8350
- #: includes/settings/wcj-settings-add-to-cart.php:214
8351
- #: includes/settings/wcj-settings-add-to-cart.php:223
8352
- msgid "Try: "
8353
- msgstr ""
8354
-
8355
- #: includes/settings/wcj-settings-add-to-cart.php:214
8356
- #: includes/settings/wcj-settings-add-to-cart.php:223
8357
- msgid "Already in cart - Add Again?"
8358
- msgstr ""
8359
-
8360
- #: includes/settings/wcj-settings-add-to-cart.php:221
8361
- msgid "Already in cart. Product category (archive) view."
8362
- msgstr ""
8363
-
8364
- #: includes/settings/wcj-settings-address-formats.php:14
8365
- #: includes/settings/wcj-settings-address-formats.php:19
8366
- msgid "Force Base Country Display"
8367
- msgstr ""
8368
-
8369
- #: includes/settings/wcj-settings-address-formats.php:30
8370
- msgid "Address Formats by Country"
8371
- msgstr ""
8372
-
8373
- #: includes/settings/wcj-settings-admin-bar.php:19
8374
- msgid "\"WooCommerce\" Admin Bar"
8375
- msgstr ""
8376
-
8377
- #: includes/settings/wcj-settings-admin-bar.php:27
8378
- msgid "List product categories in \"WooCommerce > Products > Categories\""
8379
- msgstr ""
8380
-
8381
- #: includes/settings/wcj-settings-admin-bar.php:34
8382
- msgid "List product tags in \"WooCommerce > Products > Tags\""
8383
- msgstr ""
8384
-
8385
- #: includes/settings/wcj-settings-admin-bar.php:41
8386
- msgid "\"Booster\" Admin Bar"
8387
- msgstr ""
8388
-
8389
- #: includes/settings/wcj-settings-admin-bar.php:48
8390
- msgid "\"Booster: Active\" Admin Bar"
8391
- msgstr ""
8392
-
8393
- #: includes/settings/wcj-settings-admin-orders-list.php:14
8394
- #: includes/settings/wcj-settings-admin-orders-list.php:20
8395
- #: includes/settings/wcj-settings-admin-products-list.php:14
8396
- msgid "Custom Columns"
8397
- msgstr ""
8398
-
8399
- #: includes/settings/wcj-settings-admin-orders-list.php:16
8400
- msgid "This section lets you add custom columns to WooCommerce orders list."
8401
- msgstr ""
8402
-
8403
- #: includes/settings/wcj-settings-admin-orders-list.php:28
8404
- #: includes/settings/wcj-settings-admin-orders-list.php:35
8405
- msgid "Add column and filtering"
8406
- msgstr ""
8407
-
8408
- #: includes/settings/wcj-settings-admin-orders-list.php:41
8409
- #: includes/settings/wcj-settings-admin-products-list.php:26
8410
- msgid "Custom Columns Total Number"
8411
- msgstr ""
8412
-
8413
- #: includes/settings/wcj-settings-admin-orders-list.php:56
8414
- #: includes/settings/wcj-settings-admin-products-list.php:42
8415
- msgid "Custom Column"
8416
- msgstr ""
8417
-
8418
- #: includes/settings/wcj-settings-admin-orders-list.php:58
8419
- #: includes/settings/wcj-settings-admin-products-list.php:44
8420
- msgid "Key:"
8421
- msgstr ""
8422
-
8423
- #: includes/settings/wcj-settings-admin-orders-list.php:64
8424
- #: includes/settings/wcj-settings-admin-products-list.php:50
8425
- #: includes/settings/wcj-settings-checkout-custom-fields.php:158
8426
- #: includes/settings/wcj-settings-checkout-files-upload.php:81
8427
- #: includes/settings/wcj-settings-checkout-files-upload.php:305
8428
- #: includes/settings/wcj-settings-offer-price.php:65
8429
- #: includes/settings/wcj-settings-offer-price.php:159
8430
- #: includes/settings/wcj-settings-offer-price.php:199
8431
- #: includes/settings/wcj-settings-offer-price.php:207
8432
- #: includes/settings/wcj-settings-offer-price.php:215
8433
- #: includes/settings/wcj-settings-offer-price.php:223
8434
- #: includes/tools/class-wcj-order-statuses-tool.php:141
8435
- #: includes/tools/class-wcj-order-statuses-tool.php:217
8436
- msgid "Label"
8437
- msgstr ""
8438
-
8439
- #: includes/settings/wcj-settings-admin-orders-list.php:72
8440
- #: includes/settings/wcj-settings-admin-products-list.php:57
8441
- msgid "You can use shortcodes and/or HTML here."
8442
- msgstr ""
8443
-
8444
- #: includes/settings/wcj-settings-admin-orders-list.php:79
8445
- msgid "Sortable"
8446
- msgstr ""
8447
-
8448
- #: includes/settings/wcj-settings-admin-orders-list.php:85
8449
- msgid "By meta (as text)"
8450
- msgstr ""
8451
-
8452
- #: includes/settings/wcj-settings-admin-orders-list.php:86
8453
- msgid "By meta (as numbers)"
8454
- msgstr ""
8455
-
8456
- #: includes/settings/wcj-settings-admin-orders-list.php:90
8457
- msgid "Key (if sortable)"
8458
- msgstr ""
8459
-
8460
- #: includes/settings/wcj-settings-admin-orders-list.php:103
8461
- #: includes/settings/wcj-settings-admin-orders-list.php:108
8462
- msgid "Multiple Status"
8463
- msgstr ""
8464
-
8465
- #: includes/settings/wcj-settings-admin-orders-list.php:115
8466
- msgid "Multiple Status Filtering"
8467
- msgstr ""
8468
-
8469
- #: includes/settings/wcj-settings-admin-orders-list.php:120
8470
- #: includes/settings/wcj-settings-empty-cart.php:46
8471
- #: includes/settings/wcj-settings-empty-cart.php:67
8472
- #: includes/settings/wcj-settings-offer-price.php:92
8473
- #: includes/settings/wcj-settings-offer-price.php:115
8474
- msgid "Do not add"
8475
- msgstr ""
8476
-
8477
- #: includes/settings/wcj-settings-admin-orders-list.php:121
8478
- msgid "Add as multiple select"
8479
- msgstr ""
8480
-
8481
- #: includes/settings/wcj-settings-admin-orders-list.php:122
8482
- msgid "Add as checkboxes"
8483
- msgstr ""
8484
-
8485
- #: includes/settings/wcj-settings-admin-orders-list.php:126
8486
- msgid "Hide Default Statuses Menu"
8487
- msgstr ""
8488
-
8489
- #: includes/settings/wcj-settings-admin-orders-list.php:127
8490
- #: includes/settings/wcj-settings-breadcrumbs.php:34
8491
- #: includes/settings/wcj-settings-cart-customization.php:20
8492
- #: includes/settings/wcj-settings-cart-customization.php:27
8493
- #: includes/settings/wcj-settings-checkout-customization.php:68
8494
- #: includes/settings/wcj-settings-cross-sells.php:87
8495
- #: includes/settings/wcj-settings-currency.php:22
8496
- #: includes/settings/wcj-settings-my-account.php:202
8497
- #: includes/settings/wcj-settings-my-account.php:209
8498
- #: includes/settings/wcj-settings-order-custom-statuses.php:63
8499
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:48
8500
- #: includes/settings/wcj-settings-product-bookings.php:100
8501
- #: includes/settings/wcj-settings-product-images.php:20
8502
- #: includes/settings/wcj-settings-product-images.php:27
8503
- #: includes/settings/wcj-settings-product-images.php:34
8504
- #: includes/settings/wcj-settings-product-images.php:41
8505
- #: includes/settings/wcj-settings-related-products.php:184
8506
- #: includes/settings/wcj-settings-related-products.php:190
8507
- #: includes/settings/wcj-settings-sale-flash.php:35
8508
- #: includes/settings/wcj-settings-sale-flash.php:42
8509
- #: includes/settings/wcj-settings-sale-flash.php:49
8510
- #: includes/settings/wcj-settings-shipping-calculator.php:54
8511
- #: includes/settings/wcj-settings-upsells.php:74
8512
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:18
8513
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:37
8514
- msgid "Hide"
8515
- msgstr ""
8516
-
8517
- #: includes/settings/wcj-settings-admin-orders-list.php:133
8518
- msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
8519
- msgstr ""
8520
-
8521
- #: includes/settings/wcj-settings-admin-orders-list.php:140
8522
- msgid "Add Presets to Admin Menu"
8523
- msgstr ""
8524
-
8525
- #: includes/settings/wcj-settings-admin-orders-list.php:141
8526
- msgid "Add presets"
8527
- msgstr ""
8528
-
8529
- #: includes/settings/wcj-settings-admin-orders-list.php:142
8530
- msgid ""
8531
- "To add presets, \"Multiple Status Filtering\" option must be enabled (as "
8532
- "multiple select or as checkboxes)."
8533
- msgstr ""
8534
-
8535
- #: includes/settings/wcj-settings-admin-orders-list.php:148
8536
- msgid "Add order counter"
8537
- msgstr ""
8538
-
8539
- #: includes/settings/wcj-settings-admin-orders-list.php:154
8540
- msgid "Remove original \"Orders\" menu"
8541
- msgstr ""
8542
-
8543
- #: includes/settings/wcj-settings-admin-orders-list.php:160
8544
- msgid "Total Presets"
8545
- msgstr ""
8546
-
8547
- #: includes/settings/wcj-settings-admin-orders-list.php:173
8548
- #: includes/settings/wcj-settings-admin-orders-list.php:180
8549
- msgid "Must be not empty."
8550
- msgstr ""
8551
-
8552
- #: includes/settings/wcj-settings-admin-orders-list.php:175
8553
- msgid "Preset"
8554
- msgstr ""
8555
-
8556
- #: includes/settings/wcj-settings-admin-orders-list.php:179
8557
- #: includes/tools/class-wcj-order-statuses-tool.php:179
8558
- msgid "Statuses"
8559
- msgstr ""
8560
-
8561
- #: includes/settings/wcj-settings-admin-orders-list.php:195
8562
- #: includes/settings/wcj-settings-admin-orders-list.php:200
8563
- #: includes/settings/wcj-settings-admin-products-list.php:70
8564
- msgid "Columns Order"
8565
- msgstr ""
8566
-
8567
- #: includes/settings/wcj-settings-admin-orders-list.php:208
8568
- #: includes/settings/wcj-settings-admin-products-list.php:83
8569
- msgid "Default columns order"
8570
- msgstr ""
8571
-
8572
- #: includes/settings/wcj-settings-admin-products-list.php:27
8573
- #: includes/settings/wcj-settings-price-by-user-role.php:155
8574
- #: includes/settings/wcj-settings-shipping.php:51
8575
- msgid ""
8576
- "Save module's settings after changing this option to see new settings fields."
8577
- msgstr ""
8578
-
8579
- #: includes/settings/wcj-settings-admin-tools.php:14
8580
- msgid "Admin Tools Options"
8581
- msgstr ""
8582
-
8583
- #: includes/settings/wcj-settings-admin-tools.php:19
8584
- msgid "Show Booster Menus Only to Admin"
8585
- msgstr ""
8586
-
8587
- #: includes/settings/wcj-settings-admin-tools.php:20
8588
- #, php-format
8589
- msgid ""
8590
- "Will require %s capability to see Booster menus (instead of %s capability)."
8591
- msgstr ""
8592
-
8593
- #: includes/settings/wcj-settings-admin-tools.php:28
8594
- msgid "Suppress Admin Connect Notice"
8595
- msgstr ""
8596
-
8597
- #: includes/settings/wcj-settings-admin-tools.php:30
8598
- #, php-format
8599
- msgid "Will remove \"%s\" admin notice."
8600
- msgstr ""
8601
-
8602
- #: includes/settings/wcj-settings-admin-tools.php:31
8603
- msgid ""
8604
- "Connect your store to WooCommerce.com to receive extensions updates and "
8605
- "support."
8606
- msgstr ""
8607
-
8608
- #: includes/settings/wcj-settings-admin-tools.php:37
8609
- msgid "Suppress Admin Notices"
8610
- msgstr ""
8611
-
8612
- #: includes/settings/wcj-settings-admin-tools.php:39
8613
- msgid "Will remove admin notices (including the Connect notice)."
8614
- msgstr ""
8615
-
8616
- #: includes/settings/wcj-settings-admin-tools.php:49
8617
- msgid "Orders Options"
8618
- msgstr ""
8619
-
8620
- #: includes/settings/wcj-settings-admin-tools.php:54
8621
- msgid "Show Order Meta"
8622
- msgstr ""
8623
-
8624
- #: includes/settings/wcj-settings-admin-tools.php:55
8625
- msgid "Will show order meta table in meta box."
8626
- msgstr ""
8627
-
8628
- #: includes/settings/wcj-settings-admin-tools.php:66
8629
- msgid "Products Options"
8630
- msgstr ""
8631
-
8632
- #: includes/settings/wcj-settings-admin-tools.php:71
8633
- msgid "Show Product Meta"
8634
- msgstr ""
8635
-
8636
- #: includes/settings/wcj-settings-admin-tools.php:72
8637
- msgid "Will show product meta table in meta box."
8638
- msgstr ""
8639
-
8640
- #: includes/settings/wcj-settings-admin-tools.php:79
8641
- msgid "Show Variable Product Pricing Table"
8642
- msgstr ""
8643
-
8644
- #: includes/settings/wcj-settings-admin-tools.php:80
8645
- msgid "Will allow to set all variations prices in single meta box."
8646
- msgstr ""
8647
-
8648
- #: includes/settings/wcj-settings-admin-tools.php:87
8649
- msgid "Product Revisions"
8650
- msgstr ""
8651
-
8652
- #: includes/settings/wcj-settings-admin-tools.php:88
8653
- msgid "Will enable product revisions."
8654
- msgstr ""
8655
-
8656
- #: includes/settings/wcj-settings-admin-tools.php:95
8657
- msgid "JSON Product Search Limit"
8658
- msgstr ""
8659
-
8660
- #: includes/settings/wcj-settings-admin-tools.php:96
8661
- msgid ""
8662
- "This will set the maximum number of products to return on JSON search (e.g. "
8663
- "when setting Upsells and Cross-sells on product edit page)."
8664
- msgstr ""
8665
-
8666
- #: includes/settings/wcj-settings-admin-tools.php:97
8667
- #: includes/settings/wcj-settings-checkout-custom-fields.php:240
8668
- #: includes/settings/wcj-settings-checkout-custom-fields.php:249
8669
- #: includes/settings/wcj-settings-order-quantities.php:208
8670
- msgid "Ignored if set to zero."
8671
- msgstr ""
8672
-
8673
- #: includes/settings/wcj-settings-breadcrumbs.php:19
8674
- msgid "Change Breadcrumbs Home URL"
8675
- msgstr ""
8676
-
8677
- #: includes/settings/wcj-settings-breadcrumbs.php:26
8678
- msgid "Home URL"
8679
- msgstr ""
8680
-
8681
- #: includes/settings/wcj-settings-breadcrumbs.php:33
8682
- msgid "Hide Breadcrumbs"
8683
- msgstr ""
8684
-
8685
- #: includes/settings/wcj-settings-call-for-price.php:14
8686
- msgid "Call for Price Options"
8687
- msgstr ""
8688
-
8689
- #: includes/settings/wcj-settings-call-for-price.php:16
8690
- msgid ""
8691
- "Leave price empty when adding or editing products. Then set the options here."
8692
- msgstr ""
8693
-
8694
- #: includes/settings/wcj-settings-call-for-price.php:17
8695
- msgid "You can use shortcodes in options."
8696
- msgstr ""
8697
-
8698
- #: includes/settings/wcj-settings-call-for-price.php:21
8699
- msgid "Label to Show on Single"
8700
- msgstr ""
8701
-
8702
- #: includes/settings/wcj-settings-call-for-price.php:22
8703
- #: includes/settings/wcj-settings-call-for-price.php:32
8704
- #: includes/settings/wcj-settings-call-for-price.php:42
8705
- #: includes/settings/wcj-settings-call-for-price.php:52
8706
- #: includes/settings/wcj-settings-call-for-price.php:62
8707
- msgid "This sets the html to output on empty price. Leave blank to disable."
8708
- msgstr ""
8709
-
8710
- #: includes/settings/wcj-settings-call-for-price.php:31
8711
- msgid "Label to Show on Archives"
8712
- msgstr ""
8713
-
8714
- #: includes/settings/wcj-settings-call-for-price.php:41
8715
- msgid "Label to Show on Homepage"
8716
- msgstr ""
8717
-
8718
- #: includes/settings/wcj-settings-call-for-price.php:51
8719
- msgid "Label to Show on Related"
8720
- msgstr ""
8721
-
8722
- #: includes/settings/wcj-settings-call-for-price.php:61
8723
- msgid "Label to Show for Variations"
8724
- msgstr ""
8725
-
8726
- #: includes/settings/wcj-settings-call-for-price.php:71
8727
- msgid "Hide Sale! Tag"
8728
- msgstr ""
8729
-
8730
- #: includes/settings/wcj-settings-call-for-price.php:72
8731
- msgid "Hide the tag"
8732
- msgstr ""
8733
-
8734
- #: includes/settings/wcj-settings-call-for-price.php:78
8735
- msgid "Make All Products Call for Price"
8736
- msgstr ""
8737
-
8738
- #: includes/settings/wcj-settings-call-for-price.php:80
8739
- msgid ""
8740
- "Enable this to make all products prices empty. When checkbox disabled, all "
8741
- "prices go back to normal."
8742
- msgstr ""
8743
-
8744
- #: includes/settings/wcj-settings-cart-customization.php:19
8745
- msgid "Hide Coupon on Cart Page"
8746
- msgstr ""
8747
-
8748
- #: includes/settings/wcj-settings-cart-customization.php:26
8749
- msgid "Hide Item Remove Link"
8750
- msgstr ""
8751
-
8752
- #: includes/settings/wcj-settings-cart-customization.php:33
8753
- msgid "Change Empty Cart \"Return to shop\" Button Text"
8754
- msgstr ""
8755
-
8756
- #: includes/settings/wcj-settings-cart-customization.php:45
8757
- msgid "Use JavaScript"
8758
- msgstr ""
8759
-
8760
- #: includes/settings/wcj-settings-cart-customization.php:46
8761
- msgid "Replace empty cart template"
8762
- msgstr ""
8763
-
8764
- #: includes/settings/wcj-settings-cart-customization.php:56
8765
- msgid "Change Empty Cart \"Return to shop\" Button Link"
8766
- msgstr ""
8767
-
8768
- #: includes/settings/wcj-settings-cart.php:16
8769
- msgid "Cart Custom Info Blocks"
8770
- msgstr ""
8771
-
8772
- #: includes/settings/wcj-settings-cart.php:19
8773
- msgid ""
8774
- "This feature allows you to add a final checkpoint for your customers before "
8775
- "they proceed to payment."
8776
- msgstr ""
8777
-
8778
- #: includes/settings/wcj-settings-cart.php:20
8779
- msgid ""
8780
- "Show custom information at on the cart page using Booster's various "
8781
- "shortcodes and give your customers a seamless cart experience."
8782
- msgstr ""
8783
-
8784
- #: includes/settings/wcj-settings-cart.php:21
8785
- msgid ""
8786
- "For example, show them the total weight of their items, any additional fees "
8787
- "or taxes, or a confirmation of the address their products are being sent to."
8788
- msgstr ""
8789
-
8790
- #: includes/settings/wcj-settings-cart.php:24
8791
- #: includes/settings/wcj-settings-checkout-custom-info.php:20
8792
- #: includes/settings/wcj-settings-mini-cart.php:19
8793
- #: includes/settings/wcj-settings-my-account.php:233
8794
- #: includes/settings/wcj-settings-product-custom-info.php:52
8795
- msgid "Total Blocks"
8796
- msgstr ""
8797
-
8798
- #: includes/settings/wcj-settings-cart.php:39
8799
- #: includes/settings/wcj-settings-checkout-custom-info.php:36
8800
- #: includes/settings/wcj-settings-mini-cart.php:34
8801
- #: includes/settings/wcj-settings-my-account.php:248
8802
- msgid "Info Block"
8803
- msgstr ""
8804
-
8805
- #: includes/settings/wcj-settings-cart.php:58
8806
- #: includes/settings/wcj-settings-checkout-custom-info.php:85
8807
- #: includes/settings/wcj-settings-mini-cart.php:57
8808
- #: includes/settings/wcj-settings-my-account.php:306
8809
- #: includes/settings/wcj-settings-product-custom-info.php:124
8810
- msgid "Position Order (i.e. Priority)"
8811
- msgstr ""
8812
-
8813
- #: includes/settings/wcj-settings-cart.php:72
8814
- msgid "Cart Items Table Custom Info"
8815
- msgstr ""
8816
-
8817
- #: includes/settings/wcj-settings-cart.php:78
8818
- msgid "Add to Each Item Name"
8819
- msgstr ""
8820
-
8821
- #: includes/settings/wcj-settings-cart.php:79
8822
- msgid ""
8823
- "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
8824
- msgstr ""
8825
-
8826
- #: includes/settings/wcj-settings-checkout-core-fields.php:16
8827
- #: includes/settings/wcj-settings-checkout-files-upload.php:221
8828
- #: includes/settings/wcj-settings-currency-exchange-rates.php:26
8829
- #: includes/settings/wcj-settings-emails-verification.php:14
8830
- #: includes/settings/wcj-settings-max-products-per-user.php:55
8831
- #: includes/settings/wcj-settings-multicurrency.php:17
8832
- #: includes/settings/wcj-settings-my-account.php:14
8833
- #: includes/settings/wcj-settings-offer-price.php:22
8834
- #: includes/settings/wcj-settings-order-quantities.php:17
8835
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:15
8836
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:17
8837
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:15
8838
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:19
8839
- #: includes/settings/wcj-settings-price-formats.php:15
8840
- #: includes/settings/wcj-settings-product-tabs.php:15
8841
- #: includes/settings/wcj-settings-shipping-by-condition.php:20
8842
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:15
8843
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:15
8844
- #: includes/settings/wcj-settings-shipping-time.php:25
8845
- #: includes/settings/wcj-settings-wpml.php:22
8846
- msgid "General Options"
8847
- msgstr ""
8848
-
8849
- #: includes/settings/wcj-settings-checkout-core-fields.php:21
8850
- msgid "Override Default Address Fields"
8851
- msgstr ""
8852
-
8853
- #: includes/settings/wcj-settings-checkout-core-fields.php:26
8854
- #: includes/settings/wcj-settings-checkout-core-fields.php:37
8855
- msgid "Override with billing fields"
8856
- msgstr ""
8857
-
8858
- #: includes/settings/wcj-settings-checkout-core-fields.php:27
8859
- #: includes/settings/wcj-settings-checkout-core-fields.php:38
8860
- msgid "Override with shipping fields"
8861
- msgstr ""
8862
-
8863
- #: includes/settings/wcj-settings-checkout-core-fields.php:28
8864
- #: includes/settings/wcj-settings-checkout-core-fields.php:39
8865
- msgid "Do not override"
8866
- msgstr ""
8867
-
8868
- #: includes/settings/wcj-settings-checkout-core-fields.php:32
8869
- msgid "Override Country Locale Fields"
8870
- msgstr ""
8871
-
8872
- #: includes/settings/wcj-settings-checkout-core-fields.php:43
8873
- msgid "Force Fields Sort by Priority"
8874
- msgstr ""
8875
-
8876
- #: includes/settings/wcj-settings-checkout-core-fields.php:45
8877
- msgid ""
8878
- "Enable this if you are having theme related issues with \"priority (i.e. "
8879
- "order)\" options."
8880
- msgstr ""
8881
-
8882
- #: includes/settings/wcj-settings-checkout-core-fields.php:55
8883
- msgid "Fields Options"
8884
- msgstr ""
8885
-
8886
- #: includes/settings/wcj-settings-checkout-core-fields.php:69
8887
- #: includes/settings/wcj-settings-checkout-core-fields.php:81
8888
- #: includes/settings/wcj-settings-checkout-core-fields.php:118
8889
- #: includes/settings/wcj-settings-products-per-page.php:29
8890
- #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:13
8891
- msgid "Default"
8892
- msgstr ""
8893
-
8894
- #: includes/settings/wcj-settings-checkout-core-fields.php:76
8895
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:327
8896
- msgid "required"
8897
- msgstr ""
8898
-
8899
- #: includes/settings/wcj-settings-checkout-core-fields.php:83
8900
- msgid "Not Required"
8901
- msgstr ""
8902
-
8903
- #: includes/settings/wcj-settings-checkout-core-fields.php:89
8904
- msgid "label"
8905
- msgstr ""
8906
-
8907
- #: includes/settings/wcj-settings-checkout-core-fields.php:90
8908
- #: includes/settings/wcj-settings-checkout-core-fields.php:98
8909
- #: includes/settings/wcj-settings-checkout-core-fields.php:106
8910
- msgid "Leave blank for WooCommerce defaults."
8911
- msgstr ""
8912
-
8913
- #: includes/settings/wcj-settings-checkout-core-fields.php:97
8914
- msgid "placeholder"
8915
- msgstr ""
8916
-
8917
- #: includes/settings/wcj-settings-checkout-core-fields.php:105
8918
- msgid "description"
8919
- msgstr ""
8920
-
8921
- #: includes/settings/wcj-settings-checkout-core-fields.php:113
8922
- msgid "class"
8923
- msgstr ""
8924
-
8925
- #: includes/settings/wcj-settings-checkout-core-fields.php:119
8926
- msgid "Align Left"
8927
- msgstr ""
8928
-
8929
- #: includes/settings/wcj-settings-checkout-core-fields.php:120
8930
- msgid "Align Right"
8931
- msgstr ""
8932
-
8933
- #: includes/settings/wcj-settings-checkout-core-fields.php:121
8934
- msgid "Full Row"
8935
- msgstr ""
8936
-
8937
- #: includes/settings/wcj-settings-checkout-core-fields.php:126
8938
- msgid "priority (i.e. order)"
8939
- msgstr ""
8940
-
8941
- #: includes/settings/wcj-settings-checkout-core-fields.php:127
8942
- msgid "Leave zero for WooCommerce defaults."
8943
- msgstr ""
8944
-
8945
- #: includes/settings/wcj-settings-checkout-core-fields.php:135
8946
- msgid "include product categories"
8947
- msgstr ""
8948
-
8949
- #: includes/settings/wcj-settings-checkout-core-fields.php:136
8950
- msgid ""
8951
- "If not empty - selected categories products must be in cart for current "
8952
- "field to appear."
8953
- msgstr ""
8954
-
8955
- #: includes/settings/wcj-settings-checkout-core-fields.php:147
8956
- msgid "exclude product categories"
8957
- msgstr ""
8958
-
8959
- #: includes/settings/wcj-settings-checkout-core-fields.php:148
8960
- msgid ""
8961
- "If not empty - current field is hidden, if selected categories products are "
8962
- "in cart."
8963
- msgstr ""
8964
-
8965
- #: includes/settings/wcj-settings-checkout-custom-fields.php:21
8966
- msgid "Add All Fields to Admin Emails"
8967
- msgstr ""
8968
-
8969
- #: includes/settings/wcj-settings-checkout-custom-fields.php:28
8970
- msgid "Add All Fields to Customers Emails"
8971
- msgstr ""
8972
-
8973
- #: includes/settings/wcj-settings-checkout-custom-fields.php:35
8974
- msgid "Emails Fields Template"
8975
- msgstr ""
8976
-
8977
- #: includes/settings/wcj-settings-checkout-custom-fields.php:36
8978
- #: includes/settings/wcj-settings-checkout-custom-fields.php:62
8979
- msgid "Before the fields"
8980
- msgstr ""
8981
-
8982
- #: includes/settings/wcj-settings-checkout-custom-fields.php:42
8983
- #: includes/settings/wcj-settings-checkout-custom-fields.php:68
8984
- msgid "Each field"
8985
- msgstr ""
8986
-
8987
- #: includes/settings/wcj-settings-checkout-custom-fields.php:48
8988
- #: includes/settings/wcj-settings-checkout-custom-fields.php:74
8989
- msgid "After the fields"
8990
- msgstr ""
8991
-
8992
- #: includes/settings/wcj-settings-checkout-custom-fields.php:54
8993
- msgid ""
8994
- "Add All Fields to \"Order Received\" (i.e. \"Thank You\") and \"View Order\" "
8995
- "Pages"
8996
- msgstr ""
8997
-
8998
- #: includes/settings/wcj-settings-checkout-custom-fields.php:61
8999
- msgid "\"Order Received\" Fields Template"
9000
- msgstr ""
9001
-
9002
- #: includes/settings/wcj-settings-checkout-custom-fields.php:80
9003
- msgid "Textarea Field Values"
9004
- msgstr ""
9005
-
9006
- #: includes/settings/wcj-settings-checkout-custom-fields.php:81
9007
- msgid "When saving, \"clean\" textarea field values"
9008
- msgstr ""
9009
-
9010
- #: includes/settings/wcj-settings-checkout-custom-fields.php:87
9011
- msgid "Textarea Line Breaks"
9012
- msgstr ""
9013
-
9014
- #: includes/settings/wcj-settings-checkout-custom-fields.php:88
9015
- #, php-format
9016
- msgid "When displaying, replace line breaks with %s in textarea field values"
9017
- msgstr ""
9018
-
9019
- #: includes/settings/wcj-settings-checkout-custom-fields.php:89
9020
- msgid "Does <strong>not</strong> affect admin order edit page."
9021
- msgstr ""
9022
-
9023
- #: includes/settings/wcj-settings-checkout-custom-fields.php:95
9024
- msgid "Custom Fields Number"
9025
- msgstr ""
9026
-
9027
- #: includes/settings/wcj-settings-checkout-custom-fields.php:96
9028
- #: includes/settings/wcj-settings-product-input-fields.php:62
9029
- msgid "Click Save changes after you change this number."
9030
- msgstr ""
9031
-
9032
- #: includes/settings/wcj-settings-checkout-custom-fields.php:116
9033
- msgid "Custom Field"
9034
- msgstr ""
9035
-
9036
- #: includes/settings/wcj-settings-checkout-custom-fields.php:146
9037
- msgid "State"
9038
- msgstr ""
9039
-
9040
- #: includes/settings/wcj-settings-checkout-custom-fields.php:173
9041
- #: includes/settings/wcj-settings-checkout-customization.php:114
9042
- msgid "You can use HTML here."
9043
- msgstr ""
9044
-
9045
- #: includes/settings/wcj-settings-checkout-custom-fields.php:187
9046
- msgid "Section"
9047
- msgstr ""
9048
-
9049
- #: includes/settings/wcj-settings-checkout-custom-fields.php:192
9050
- #: includes/settings/wcj-settings-checkout-custom-info.php:56
9051
- #: includes/settings/wcj-settings-left-to-free-shipping.php:114
9052
- msgid "Billing"
9053
- msgstr ""
9054
-
9055
- #: includes/settings/wcj-settings-checkout-custom-fields.php:199
9056
- #: includes/settings/wcj-settings-eu-vat-number.php:63
9057
- #: includes/widgets/class-wcj-widget-multicurrency.php:100
9058
- msgid "Class"
9059
- msgstr ""
9060
-
9061
- #: includes/settings/wcj-settings-checkout-custom-fields.php:204
9062
- #: includes/settings/wcj-settings-eu-vat-number.php:68
9063
- msgid "Wide"
9064
- msgstr ""
9065
-
9066
- #: includes/settings/wcj-settings-checkout-custom-fields.php:205
9067
- #: includes/settings/wcj-settings-eu-vat-number.php:69
9068
- msgid "First"
9069
- msgstr ""
9070
-
9071
- #: includes/settings/wcj-settings-checkout-custom-fields.php:206
9072
- #: includes/settings/wcj-settings-eu-vat-number.php:70
9073
- msgid "Last"
9074
- msgstr ""
9075
-
9076
- #: includes/settings/wcj-settings-checkout-custom-fields.php:210
9077
- #: includes/settings/wcj-settings-eu-vat-number.php:56
9078
- #: includes/templates/wcj-radio-for-variations.php:24
9079
- #: includes/tools/class-wcj-order-statuses-tool.php:213
9080
- msgid "Clear"
9081
- msgstr ""
9082
-
9083
- #: includes/settings/wcj-settings-checkout-custom-fields.php:216
9084
- msgid "Customer Meta Fields"
9085
- msgstr ""
9086
-
9087
- #: includes/settings/wcj-settings-checkout-custom-fields.php:224
9088
- msgid "One option per line"
9089
- msgstr ""
9090
-
9091
- #: includes/settings/wcj-settings-checkout-custom-fields.php:231
9092
- msgid "Select: Use select2 Library"
9093
- msgstr ""
9094
-
9095
- #: includes/settings/wcj-settings-checkout-custom-fields.php:238
9096
- msgid "select2: min input length"
9097
- msgstr ""
9098
-
9099
- #: includes/settings/wcj-settings-checkout-custom-fields.php:239
9100
- msgid "select2: Number of characters necessary to start a search."
9101
- msgstr ""
9102
-
9103
- #: includes/settings/wcj-settings-checkout-custom-fields.php:247
9104
- msgid "select2: max input length"
9105
- msgstr ""
9106
-
9107
- #: includes/settings/wcj-settings-checkout-custom-fields.php:248
9108
- msgid "select2: Maximum number of characters that can be entered for an input."
9109
- msgstr ""
9110
-
9111
- #: includes/settings/wcj-settings-checkout-custom-fields.php:257
9112
- msgid "Checkbox: Value for ON"
9113
- msgstr ""
9114
-
9115
- #: includes/settings/wcj-settings-checkout-custom-fields.php:263
9116
- msgid "Checkbox: Value for OFF"
9117
- msgstr ""
9118
-
9119
- #: includes/settings/wcj-settings-checkout-custom-fields.php:269
9120
- msgid "Checkbox: Default Value"
9121
- msgstr ""
9122
-
9123
- #: includes/settings/wcj-settings-checkout-custom-fields.php:278
9124
- msgid "Datepicker/Weekpicker: Date Format"
9125
- msgstr ""
9126
-
9127
- #: includes/settings/wcj-settings-checkout-custom-fields.php:279
9128
- msgid ""
9129
- "Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
9130
- "target=\"_blank\">documentation on date and time formatting</a> for valid "
9131
- "date formats"
9132
- msgstr ""
9133
-
9134
- #: includes/settings/wcj-settings-checkout-custom-fields.php:286
9135
- msgid "Datepicker/Weekpicker: Min Date"
9136
- msgstr ""
9137
-
9138
- #: includes/settings/wcj-settings-checkout-custom-fields.php:287
9139
- #: includes/settings/wcj-settings-checkout-custom-fields.php:294
9140
- msgid "days"
9141
- msgstr ""
9142
-
9143
- #: includes/settings/wcj-settings-checkout-custom-fields.php:293
9144
- msgid "Datepicker/Weekpicker: Max Date"
9145
- msgstr ""
9146
-
9147
- #: includes/settings/wcj-settings-checkout-custom-fields.php:300
9148
- msgid "Datepicker/Weekpicker: Add Year Selector"
9149
- msgstr ""
9150
-
9151
- #: includes/settings/wcj-settings-checkout-custom-fields.php:306
9152
- msgid "Datepicker/Weekpicker: Year Selector: Year Range"
9153
- msgstr ""
9154
-
9155
- #: includes/settings/wcj-settings-checkout-custom-fields.php:307
9156
- msgid ""
9157
- "The range of years displayed in the year drop-down: either relative to "
9158
- "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
9159
- "+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
9160
- "nn\"). Note that this option only affects what appears in the drop-down, to "
9161
- "restrict which dates may be selected use the minDate and/or maxDate options."
9162
- msgstr ""
9163
-
9164
- #: includes/settings/wcj-settings-checkout-custom-fields.php:313
9165
- msgid "Datepicker/Weekpicker: First Week Day"
9166
- msgstr ""
9167
-
9168
- #: includes/settings/wcj-settings-checkout-custom-fields.php:328
9169
- msgid "Timepicker: Time Format"
9170
- msgstr ""
9171
-
9172
- #: includes/settings/wcj-settings-checkout-custom-fields.php:329
9173
- msgid ""
9174
- "Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
9175
- "options page</a> for valid time formats"
9176
- msgstr ""
9177
-
9178
- #: includes/settings/wcj-settings-checkout-custom-fields.php:336
9179
- msgid "minutes"
9180
- msgstr ""
9181
-
9182
- #: includes/settings/wcj-settings-checkout-custom-fields.php:342
9183
- #: includes/settings/wcj-settings-product-listings.php:47
9184
- msgid "Exclude Categories"
9185
- msgstr ""
9186
-
9187
- #: includes/settings/wcj-settings-checkout-custom-fields.php:343
9188
- msgid "Hide this field if there is a product of selected category in cart."
9189
- msgstr ""
9190
-
9191
- #: includes/settings/wcj-settings-checkout-custom-fields.php:351
9192
- msgid "Include Categories"
9193
- msgstr ""
9194
-
9195
- #: includes/settings/wcj-settings-checkout-custom-fields.php:352
9196
- msgid ""
9197
- "Show this field only if there is a product of selected category in cart."
9198
- msgstr ""
9199
-
9200
- #: includes/settings/wcj-settings-checkout-custom-fields.php:360
9201
- #: includes/settings/wcj-settings-global-discount.php:158
9202
- #: includes/settings/wcj-settings-payment-gateways-fees.php:125
9203
- #: includes/settings/wcj-settings-product-addons.php:149
9204
- #: includes/settings/wcj-settings-related-products.php:244
9205
- msgid "Exclude Products"
9206
- msgstr ""
9207
-
9208
- #: includes/settings/wcj-settings-checkout-custom-fields.php:361
9209
- msgid "Hide this field if there is a selected product in cart."
9210
- msgstr ""
9211
-
9212
- #: includes/settings/wcj-settings-checkout-custom-fields.php:369
9213
- #: includes/settings/wcj-settings-global-discount.php:147
9214
- #: includes/settings/wcj-settings-related-products.php:233
9215
- msgid "Include Products"
9216
- msgstr ""
9217
-
9218
- #: includes/settings/wcj-settings-checkout-custom-fields.php:370
9219
- msgid "Show this field only if there is a selected product in cart."
9220
- msgstr ""
9221
-
9222
- #: includes/settings/wcj-settings-checkout-custom-fields.php:378
9223
- msgid "Min Cart Amount"
9224
- msgstr ""
9225
-
9226
- #: includes/settings/wcj-settings-checkout-custom-fields.php:379
9227
- msgid ""
9228
- "Show this field only if cart total is at least this amount. Set zero to "
9229
- "disable."
9230
- msgstr ""
9231
-
9232
- #: includes/settings/wcj-settings-checkout-custom-fields.php:386
9233
- msgid "Max Cart Amount"
9234
- msgstr ""
9235
-
9236
- #: includes/settings/wcj-settings-checkout-custom-fields.php:387
9237
- msgid ""
9238
- "Show this field only if cart total is not more than this amount. Set zero to "
9239
- "disable."
9240
- msgstr ""
9241
-
9242
- #: includes/settings/wcj-settings-checkout-custom-info.php:15
9243
- msgid "Checkout Custom Info Blocks"
9244
- msgstr ""
9245
-
9246
- #: includes/settings/wcj-settings-checkout-custom-info.php:54
9247
- #: includes/settings/wcj-settings-checkout-files-upload.php:56
9248
- #: includes/settings/wcj-settings-empty-cart.php:68
9249
- #: includes/settings/wcj-settings-left-to-free-shipping.php:112
9250
- msgid "Before checkout form"
9251
- msgstr ""
9252
-
9253
- #: includes/settings/wcj-settings-checkout-custom-info.php:55
9254
- #: includes/settings/wcj-settings-left-to-free-shipping.php:113
9255
- msgid "Before customer details"
9256
- msgstr ""
9257
-
9258
- #: includes/settings/wcj-settings-checkout-custom-info.php:58
9259
- #: includes/settings/wcj-settings-left-to-free-shipping.php:116
9260
- msgid "After customer details"
9261
- msgstr ""
9262
-
9263
- #: includes/settings/wcj-settings-checkout-custom-info.php:59
9264
- #: includes/settings/wcj-settings-left-to-free-shipping.php:117
9265
- msgid "Before order review"
9266
- msgstr ""
9267
-
9268
- #: includes/settings/wcj-settings-checkout-custom-info.php:60
9269
- #: includes/settings/wcj-settings-left-to-free-shipping.php:118
9270
- msgid "Order review"
9271
- msgstr ""
9272
-
9273
- #: includes/settings/wcj-settings-checkout-custom-info.php:61
9274
- #: includes/settings/wcj-settings-left-to-free-shipping.php:123
9275
- msgid "After order review"
9276
- msgstr ""
9277
-
9278
- #: includes/settings/wcj-settings-checkout-custom-info.php:62
9279
- #: includes/settings/wcj-settings-checkout-files-upload.php:57
9280
- #: includes/settings/wcj-settings-empty-cart.php:69
9281
- #: includes/settings/wcj-settings-left-to-free-shipping.php:124
9282
- msgid "After checkout form"
9283
- msgstr ""
9284
-
9285
- #: includes/settings/wcj-settings-checkout-custom-info.php:81
9286
- msgid "Order Received (Thank You) page"
9287
- msgstr ""
9288
-
9289
- #: includes/settings/wcj-settings-checkout-customization.php:14
9290
- msgid "Restrict Countries by Customer's IP"
9291
- msgstr ""
9292
-
9293
- #: includes/settings/wcj-settings-checkout-customization.php:19
9294
- msgid "Restrict Billing Countries by Customer's IP"
9295
- msgstr ""
9296
-
9297
- #: includes/settings/wcj-settings-checkout-customization.php:26
9298
- msgid "Restrict Shipping Countries by Customer's IP"
9299
- msgstr ""
9300
-
9301
- #: includes/settings/wcj-settings-checkout-customization.php:28
9302
- #, php-format
9303
- msgid ""
9304
- "To restrict shipping countries, \"Shipping location(s)\" option in %s must "
9305
- "be set to \"Ship to specific countries only\" (and you can leave \"Ship to "
9306
- "specific countries\" option empty there)."
9307
- msgstr ""
9308
-
9309
- #: includes/settings/wcj-settings-checkout-customization.php:30
9310
- #: includes/settings/wcj-settings-eu-vat-number.php:109
9311
- msgid "WooCommerce > Settings > General"
9312
- msgstr ""
9313
-
9314
- #: includes/settings/wcj-settings-checkout-customization.php:41
9315
- msgid "\"Create an account?\" Checkbox Options"
9316
- msgstr ""
9317
-
9318
- #: includes/settings/wcj-settings-checkout-customization.php:46
9319
- msgid "\"Create an account?\" Checkbox"
9320
- msgstr ""
9321
-
9322
- #: includes/settings/wcj-settings-checkout-customization.php:47
9323
- msgid "\"Create an account?\" checkbox default value"
9324
- msgstr ""
9325
-
9326
- #: includes/settings/wcj-settings-checkout-customization.php:52
9327
- msgid "WooCommerce default"
9328
- msgstr ""
9329
-
9330
- #: includes/settings/wcj-settings-checkout-customization.php:54
9331
- msgid "Not checked"
9332
- msgstr ""
9333
-
9334
- #: includes/settings/wcj-settings-checkout-customization.php:62
9335
- msgid "\"Order Again\" Button Options"
9336
- msgstr ""
9337
-
9338
- #: includes/settings/wcj-settings-checkout-customization.php:67
9339
- msgid "Hide \"Order Again\" Button on \"View Order\" Page"
9340
- msgstr ""
9341
-
9342
- #: includes/settings/wcj-settings-checkout-customization.php:78
9343
- msgid "Disable Fields on Checkout for Logged Users"
9344
- msgstr ""
9345
-
9346
- #: includes/settings/wcj-settings-checkout-customization.php:83
9347
- msgid "Fields to Disable"
9348
- msgstr ""
9349
-
9350
- #: includes/settings/wcj-settings-checkout-customization.php:89
9351
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:25
9352
- msgid "Billing country"
9353
- msgstr ""
9354
-
9355
- #: includes/settings/wcj-settings-checkout-customization.php:90
9356
- msgid "Billing first name"
9357
- msgstr ""
9358
-
9359
- #: includes/settings/wcj-settings-checkout-customization.php:91
9360
- msgid "Billing last name"
9361
- msgstr ""
9362
-
9363
- #: includes/settings/wcj-settings-checkout-customization.php:92
9364
- msgid "Billing company"
9365
- msgstr ""
9366
-
9367
- #: includes/settings/wcj-settings-checkout-customization.php:93
9368
- msgid "Billing address 1"
9369
- msgstr ""
9370
-
9371
- #: includes/settings/wcj-settings-checkout-customization.php:94
9372
- msgid "Billing address 2"
9373
- msgstr ""
9374
-
9375
- #: includes/settings/wcj-settings-checkout-customization.php:95
9376
- msgid "Billing city"
9377
- msgstr ""
9378
-
9379
- #: includes/settings/wcj-settings-checkout-customization.php:96
9380
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:36
9381
- msgid "Billing state"
9382
- msgstr ""
9383
-
9384
- #: includes/settings/wcj-settings-checkout-customization.php:97
9385
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:46
9386
- msgid "Billing postcode"
9387
- msgstr ""
9388
-
9389
- #: includes/settings/wcj-settings-checkout-customization.php:98
9390
- msgid "Billing email"
9391
- msgstr ""
9392
-
9393
- #: includes/settings/wcj-settings-checkout-customization.php:99
9394
- msgid "Billing phone"
9395
- msgstr ""
9396
-
9397
- #: includes/settings/wcj-settings-checkout-customization.php:100
9398
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:26
9399
- msgid "Shipping country"
9400
- msgstr ""
9401
-
9402
- #: includes/settings/wcj-settings-checkout-customization.php:101
9403
- msgid "Shipping first name"
9404
- msgstr ""
9405
-
9406
- #: includes/settings/wcj-settings-checkout-customization.php:102
9407
- msgid "Shipping last name"
9408
- msgstr ""
9409
-
9410
- #: includes/settings/wcj-settings-checkout-customization.php:103
9411
- msgid "Shipping company"
9412
- msgstr ""
9413
-
9414
- #: includes/settings/wcj-settings-checkout-customization.php:104
9415
- msgid "Shipping address 1"
9416
- msgstr ""
9417
-
9418
- #: includes/settings/wcj-settings-checkout-customization.php:105
9419
- msgid "Shipping address 2"
9420
- msgstr ""
9421
-
9422
- #: includes/settings/wcj-settings-checkout-customization.php:106
9423
- msgid "Shipping city"
9424
- msgstr ""
9425
-
9426
- #: includes/settings/wcj-settings-checkout-customization.php:107
9427
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:37
9428
- msgid "Shipping state"
9429
- msgstr ""
9430
-
9431
- #: includes/settings/wcj-settings-checkout-customization.php:108
9432
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:47
9433
- msgid "Shipping postcode"
9434
- msgstr ""
9435
-
9436
- #: includes/settings/wcj-settings-checkout-customization.php:109
9437
- msgid "Order comments"
9438
- msgstr ""
9439
-
9440
- #: includes/settings/wcj-settings-checkout-customization.php:113
9441
- msgid "Message for Logged Users"
9442
- msgstr ""
9443
-
9444
- #: includes/settings/wcj-settings-checkout-customization.php:121
9445
- msgid "Advanced: Custom Fields (Readonly)"
9446
- msgstr ""
9447
-
9448
- #: includes/settings/wcj-settings-checkout-customization.php:123
9449
- #: includes/settings/wcj-settings-checkout-customization.php:133
9450
- #, php-format
9451
- msgid "Comma separated list of fields ids, e.g.: %s."
9452
- msgstr ""
9453
-
9454
- #: includes/settings/wcj-settings-checkout-customization.php:131
9455
- msgid "Advanced: Custom Fields (Disabled)"
9456
- msgstr ""
9457
-
9458
- #: includes/settings/wcj-settings-checkout-customization.php:145
9459
- msgid "\"Order received\" Message Options"
9460
- msgstr ""
9461
-
9462
- #: includes/settings/wcj-settings-checkout-customization.php:150
9463
- #: includes/settings/wcj-settings-checkout-customization.php:173
9464
- msgid "Customize Message"
9465
- msgstr ""
9466
-
9467
- #: includes/settings/wcj-settings-checkout-customization.php:157
9468
- #: includes/settings/wcj-settings-my-account.php:167
9469
- #: includes/settings/wcj-settings-my-account.php:194
9470
- #: includes/settings/wcj-settings-my-account.php:254
9471
- #: includes/settings/wcj-settings-sale-flash.php:27
9472
- #: includes/settings/wcj-settings-sale-flash.php:111
9473
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:30
9474
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:49
9475
- msgid "You can use HTML and/or shortcodes here."
9476
- msgstr ""
9477
-
9478
- #: includes/settings/wcj-settings-checkout-customization.php:168
9479
- msgid "\"Returning customer?\" Message Options"
9480
- msgstr ""
9481
-
9482
- #: includes/settings/wcj-settings-checkout-customization.php:190
9483
- #: includes/settings/wcj-settings-checkout-customization.php:196
9484
- msgid "Recalculate Checkout"
9485
- msgstr ""
9486
-
9487
- #: includes/settings/wcj-settings-checkout-customization.php:191
9488
- msgid ""
9489
- "Recalculate checkout right after the default calculation has been requested."
9490
- msgstr ""
9491
-
9492
- #: includes/settings/wcj-settings-checkout-customization.php:203
9493
- #: includes/settings/wcj-settings-checkout-customization.php:228
9494
- msgid "Fields"
9495
- msgstr ""
9496
-
9497
- #: includes/settings/wcj-settings-checkout-customization.php:204
9498
- msgid ""
9499
- "Required fields that need to be changed in order to recalculate checkout."
9500
- msgstr ""
9501
-
9502
- #: includes/settings/wcj-settings-checkout-customization.php:205
9503
- #: includes/settings/wcj-settings-checkout-customization.php:230
9504
- msgid "Use CSS selector syntax."
9505
- msgstr ""
9506
-
9507
- #: includes/settings/wcj-settings-checkout-customization.php:215
9508
- #: includes/settings/wcj-settings-checkout-customization.php:221
9509
- msgid "Force Checkout Update"
9510
- msgstr ""
9511
-
9512
- #: includes/settings/wcj-settings-checkout-customization.php:216
9513
- msgid "Update checkout when some field have its value changed."
9514
- msgstr ""
9515
-
9516
- #: includes/settings/wcj-settings-checkout-customization.php:229
9517
- msgid "Fields that need to be changed in order to update checkout."
9518
- msgstr ""
9519
-
9520
- #: includes/settings/wcj-settings-checkout-fees.php:14
9521
- msgid "Fees"
9522
- msgstr ""
9523
-
9524
- #: includes/settings/wcj-settings-checkout-fees.php:19
9525
- msgid "Total Fees"
9526
- msgstr ""
9527
-
9528
- #: includes/settings/wcj-settings-checkout-fees.php:53
9529
- #: includes/settings/wcj-settings-payment-gateways-fees.php:82
9530
- msgid "Taxable"
9531
- msgstr ""
9532
-
9533
- #: includes/settings/wcj-settings-checkout-fees.php:71
9534
- #: includes/settings/wcj-settings-global-discount.php:65
9535
- #: includes/settings/wcj-settings-payment-gateways-fees.php:37
9536
- #: includes/settings/wcj-settings-price-by-user-role.php:32
9537
- #: includes/settings/wcj-settings-purchase-data.php:88
9538
- #: includes/settings/wcj-settings-wholesale-price.php:78
9539
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:19
9540
- msgid "Fixed"
9541
- msgstr ""
9542
-
9543
- #: includes/settings/wcj-settings-checkout-fees.php:72
9544
- #: includes/settings/wcj-settings-global-discount.php:64
9545
- #: includes/settings/wcj-settings-payment-gateways-fees.php:38
9546
- #: includes/settings/wcj-settings-purchase-data.php:89
9547
- #: includes/settings/wcj-settings-wholesale-price.php:77
9548
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:18
9549
- msgid "Percent"
9550
- msgstr ""
9551
-
9552
- #: includes/settings/wcj-settings-checkout-fees.php:83
9553
- msgid "Cart Min"
9554
- msgstr ""
9555
-
9556
- #: includes/settings/wcj-settings-checkout-fees.php:84
9557
- msgid "Cart minimum amount"
9558
- msgstr ""
9559
-
9560
- #: includes/settings/wcj-settings-checkout-fees.php:91
9561
- msgid "Cart Max"
9562
- msgstr ""
9563
-
9564
- #: includes/settings/wcj-settings-checkout-fees.php:92
9565
- msgid "Cart maximum amount."
9566
- msgstr ""
9567
-
9568
- #: includes/settings/wcj-settings-checkout-fees.php:92
9569
- msgid "Zero or empty values will not be considered"
9570
- msgstr ""
9571
-
9572
- #: includes/settings/wcj-settings-checkout-fees.php:98
9573
- msgid "Checkout Field"
9574
- msgstr ""
9575
-
9576
- #: includes/settings/wcj-settings-checkout-fees.php:99
9577
- #, php-format
9578
- msgid ""
9579
- "If you want fee to be added only if some checkout field is enabled, enter "
9580
- "field's key here. For example, if you have added one custom billing checkout "
9581
- "field with Booster's \"Checkout Custom Fields\" module, enter %s here."
9582
- msgstr ""
9583
-
9584
- #: includes/settings/wcj-settings-checkout-fees.php:100
9585
- msgid "Ignored if empty (i.e. fee will be always added)."
9586
- msgstr ""
9587
-
9588
- #: includes/settings/wcj-settings-checkout-fees.php:106
9589
- msgid "Overlap"
9590
- msgstr ""
9591
-
9592
- #: includes/settings/wcj-settings-checkout-fees.php:107
9593
- msgid "If valid, will overlap other fee"
9594
- msgstr ""
9595
-
9596
- #: includes/settings/wcj-settings-checkout-fees.php:117
9597
- #: includes/settings/wcj-settings-product-add-to-cart.php:297
9598
- #: includes/settings/wcj-settings-product-add-to-cart.php:333
9599
- msgid "Priority"
9600
- msgstr ""
9601
-
9602
- #: includes/settings/wcj-settings-checkout-fees.php:118
9603
- msgid "The higher the number the higher the priority."
9604
- msgstr ""
9605
-
9606
- #: includes/settings/wcj-settings-checkout-fees.php:118
9607
- msgid "Will mostly make sense for overlapping."
9608
- msgstr ""
9609
-
9610
- #: includes/settings/wcj-settings-checkout-files-upload.php:23
9611
- #: includes/settings/wcj-settings-products-xml.php:25
9612
- msgid "Total Files"
9613
- msgstr ""
9614
-
9615
- #: includes/settings/wcj-settings-checkout-files-upload.php:58
9616
- msgid "Do not add on checkout"
9617
- msgstr ""
9618
-
9619
- #: includes/settings/wcj-settings-checkout-files-upload.php:62
9620
- msgid "Position order"
9621
- msgstr ""
9622
-
9623
- #: includes/settings/wcj-settings-checkout-files-upload.php:70
9624
- msgid "Add to Thank You page"
9625
- msgstr ""
9626
-
9627
- #: includes/settings/wcj-settings-checkout-files-upload.php:76
9628
- msgid "Add to My Account page"
9629
- msgstr ""
9630
-
9631
- #: includes/settings/wcj-settings-checkout-files-upload.php:82
9632
- msgid "Leave blank to disable label"
9633
- msgstr ""
9634
-
9635
- #: includes/settings/wcj-settings-checkout-files-upload.php:84
9636
- msgid "Please select file to upload"
9637
- msgstr ""
9638
-
9639
- #: includes/settings/wcj-settings-checkout-files-upload.php:88
9640
- msgid "Accepted file types"
9641
- msgstr ""
9642
-
9643
- #: includes/settings/wcj-settings-checkout-files-upload.php:89
9644
- msgid ""
9645
- "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
9646
- "files"
9647
- msgstr ""
9648
-
9649
- #: includes/settings/wcj-settings-checkout-files-upload.php:95
9650
- msgid "Label: Upload button"
9651
- msgstr ""
9652
-
9653
- #: includes/settings/wcj-settings-checkout-files-upload.php:101
9654
- msgid "Label: Remove button"
9655
- msgstr ""
9656
-
9657
- #: includes/settings/wcj-settings-checkout-files-upload.php:107
9658
- msgid "Notice: Wrong file type"
9659
- msgstr ""
9660
-
9661
- #: includes/settings/wcj-settings-checkout-files-upload.php:108
9662
- #: includes/settings/wcj-settings-checkout-files-upload.php:121
9663
- #: includes/settings/wcj-settings-checkout-files-upload.php:134
9664
- #, php-format
9665
- msgid "%s will be replaced with file name"
9666
- msgstr ""
9667
-
9668
- #: includes/settings/wcj-settings-checkout-files-upload.php:114
9669
- msgid "Notice: File is required"
9670
- msgstr ""
9671
-
9672
- #: includes/settings/wcj-settings-checkout-files-upload.php:120
9673
- msgid "Notice: File was successfully uploaded"
9674
- msgstr ""
9675
-
9676
- #: includes/settings/wcj-settings-checkout-files-upload.php:127
9677
- msgid "Notice: No file selected"
9678
- msgstr ""
9679
-
9680
- #: includes/settings/wcj-settings-checkout-files-upload.php:133
9681
- msgid "Notice: File was successfully removed"
9682
- msgstr ""
9683
-
9684
- #: includes/settings/wcj-settings-checkout-files-upload.php:140
9685
- msgid "PRODUCTS to show this field"
9686
- msgstr ""
9687
-
9688
- #: includes/settings/wcj-settings-checkout-files-upload.php:141
9689
- msgid ""
9690
- "To show this field only if at least one selected product is in cart, enter "
9691
- "products here. Leave blank to show for all products."
9692
- msgstr ""
9693
-
9694
- #: includes/settings/wcj-settings-checkout-files-upload.php:149
9695
- msgid "CATEGORIES to show this field"
9696
- msgstr ""
9697
-
9698
- #: includes/settings/wcj-settings-checkout-files-upload.php:150
9699
- msgid ""
9700
- "To show this field only if at least one product of selected category is in "
9701
- "cart, enter categories here. Leave blank to show for all products."
9702
- msgstr ""
9703
-
9704
- #: includes/settings/wcj-settings-checkout-files-upload.php:158
9705
- msgid "TAGS to show this field"
9706
- msgstr ""
9707
-
9708
- #: includes/settings/wcj-settings-checkout-files-upload.php:159
9709
- msgid ""
9710
- "To show this field only if at least one product of selected tag is in cart, "
9711
- "enter tags here. Leave blank to show for all products."
9712
- msgstr ""
9713
-
9714
- #: includes/settings/wcj-settings-checkout-files-upload.php:167
9715
- msgid "USER ROLES to show this field"
9716
- msgstr ""
9717
-
9718
- #: includes/settings/wcj-settings-checkout-files-upload.php:168
9719
- #: includes/settings/wcj-settings-checkout-files-upload.php:204
9720
- msgid "Leave blank to show for all user roles."
9721
- msgstr ""
9722
-
9723
- #: includes/settings/wcj-settings-checkout-files-upload.php:176
9724
- msgid "PRODUCTS to hide this field"
9725
- msgstr ""
9726
-
9727
- #: includes/settings/wcj-settings-checkout-files-upload.php:177
9728
- msgid ""
9729
- "To hide this field if at least one selected product is in cart, enter "
9730
- "products here. Leave blank to show for all products."
9731
- msgstr ""
9732
-
9733
- #: includes/settings/wcj-settings-checkout-files-upload.php:185
9734
- msgid "CATEGORIES to hide this field"
9735
- msgstr ""
9736
-
9737
- #: includes/settings/wcj-settings-checkout-files-upload.php:186
9738
- msgid ""
9739
- "To hide this field if at least one product of selected category is in cart, "
9740
- "enter categories here. Leave blank to show for all products."
9741
- msgstr ""
9742
-
9743
- #: includes/settings/wcj-settings-checkout-files-upload.php:194
9744
- msgid "TAGS to hide this field"
9745
- msgstr ""
9746
-
9747
- #: includes/settings/wcj-settings-checkout-files-upload.php:195
9748
- msgid ""
9749
- "To hide this field if at least one product of selected tag is in cart, enter "
9750
- "tags here. Leave blank to show for all products."
9751
- msgstr ""
9752
-
9753
- #: includes/settings/wcj-settings-checkout-files-upload.php:203
9754
- msgid "USER ROLES to hide this field"
9755
- msgstr ""
9756
-
9757
- #: includes/settings/wcj-settings-checkout-files-upload.php:226
9758
- msgid "Remove All Uploaded Files on Empty Cart"
9759
- msgstr ""
9760
-
9761
- #: includes/settings/wcj-settings-checkout-files-upload.php:233
9762
- #: includes/settings/wcj-settings-checkout-files-upload.php:431
9763
- #: includes/settings/wcj-settings-order-min-amount.php:76
9764
- msgid "Add notice"
9765
- msgstr ""
9766
-
9767
- #: includes/settings/wcj-settings-checkout-files-upload.php:250
9768
- #: includes/settings/wcj-settings-product-input-fields.php:295
9769
- msgid "Emails Options"
9770
- msgstr ""
9771
-
9772
- #: includes/settings/wcj-settings-checkout-files-upload.php:255
9773
- #: includes/settings/wcj-settings-product-input-fields.php:300
9774
- msgid "Attach Files to Admin's New Order Emails"
9775
- msgstr ""
9776
-
9777
- #: includes/settings/wcj-settings-checkout-files-upload.php:256
9778
- #: includes/settings/wcj-settings-checkout-files-upload.php:263
9779
- #: includes/settings/wcj-settings-product-input-fields.php:301
9780
- #: includes/settings/wcj-settings-product-input-fields.php:308
9781
- msgid "Attach"
9782
- msgstr ""
9783
-
9784
- #: includes/settings/wcj-settings-checkout-files-upload.php:262
9785
- #: includes/settings/wcj-settings-product-input-fields.php:307
9786
- msgid "Attach Files to Customer's Processing Order Emails"
9787
- msgstr ""
9788
-
9789
- #: includes/settings/wcj-settings-checkout-files-upload.php:269
9790
- msgid "Send Additional Email to Admin on User Actions"
9791
- msgstr ""
9792
-
9793
- #: includes/settings/wcj-settings-checkout-files-upload.php:270
9794
- #, php-format
9795
- msgid "Admin email: <em>%s</em>."
9796
- msgstr ""
9797
-
9798
- #: includes/settings/wcj-settings-checkout-files-upload.php:276
9799
- msgid "File removed on \"Thank You\" or \"My Account\" page"
9800
- msgstr ""
9801
-
9802
- #: includes/settings/wcj-settings-checkout-files-upload.php:277
9803
- msgid "File uploaded on \"Thank You\" or \"My Account\" page"
9804
- msgstr ""
9805
-
9806
- #: includes/settings/wcj-settings-checkout-files-upload.php:281
9807
- msgid "Attach file on upload action"
9808
- msgstr ""
9809
-
9810
- #: includes/settings/wcj-settings-checkout-files-upload.php:293
9811
- msgid "Form Template Options"
9812
- msgstr ""
9813
-
9814
- #: includes/settings/wcj-settings-checkout-files-upload.php:298
9815
- #: includes/settings/wcj-settings-checkout-files-upload.php:352
9816
- #: includes/settings/wcj-settings-checkout-files-upload.php:393
9817
- #: includes/settings/wcj-settings-product-addons.php:338
9818
- #: includes/settings/wcj-settings-product-addons.php:369
9819
- msgid "Before"
9820
- msgstr ""
9821
-
9822
- #: includes/settings/wcj-settings-checkout-files-upload.php:306
9823
- msgid "Replaced values: %field_id%, %field_label%, %required_html%."
9824
- msgstr ""
9825
-
9826
- #: includes/settings/wcj-settings-checkout-files-upload.php:313
9827
- #: includes/settings/wcj-settings-export.php:68
9828
- #: includes/settings/wcj-settings-export.php:136
9829
- #: includes/settings/wcj-settings-export.php:218
9830
- msgid "Field"
9831
- msgstr ""
9832
-
9833
- #: includes/settings/wcj-settings-checkout-files-upload.php:314
9834
- msgid "Replaced values: %field_html%, %button_html%."
9835
- msgstr ""
9836
-
9837
- #: includes/settings/wcj-settings-checkout-files-upload.php:321
9838
- #: includes/settings/wcj-settings-checkout-files-upload.php:367
9839
- #: includes/settings/wcj-settings-checkout-files-upload.php:408
9840
- #: includes/settings/wcj-settings-product-addons.php:353
9841
- #: includes/settings/wcj-settings-product-addons.php:384
9842
- msgid "After"
9843
- msgstr ""
9844
-
9845
- #: includes/settings/wcj-settings-checkout-files-upload.php:328
9846
- msgid "Show images in field"
9847
- msgstr ""
9848
-
9849
- #: includes/settings/wcj-settings-checkout-files-upload.php:335
9850
- #: includes/settings/wcj-settings-checkout-files-upload.php:374
9851
- msgid "Image style"
9852
- msgstr ""
9853
-
9854
- #: includes/settings/wcj-settings-checkout-files-upload.php:347
9855
- msgid "Order Template Options"
9856
- msgstr ""
9857
-
9858
- #: includes/settings/wcj-settings-checkout-files-upload.php:359
9859
- #: includes/settings/wcj-settings-checkout-files-upload.php:376
9860
- #: includes/settings/wcj-settings-checkout-files-upload.php:400
9861
- msgid "Item"
9862
- msgstr ""
9863
-
9864
- #: includes/settings/wcj-settings-checkout-files-upload.php:375
9865
- #, php-format
9866
- msgid "Ignored, if %s is not included in %s option above."
9867
- msgstr ""
9868
-
9869
- #: includes/settings/wcj-settings-checkout-files-upload.php:388
9870
- msgid "Email Template Options"
9871
- msgstr ""
9872
-
9873
- #: includes/settings/wcj-settings-checkout-files-upload.php:421
9874
- #: includes/settings/wcj-settings-currency-per-product.php:251
9875
- #: includes/settings/wcj-settings-eu-vat-number.php:203
9876
- #: includes/settings/wcj-settings-general.php:65
9877
- #: includes/settings/wcj-settings-payment-gateways.php:49
9878
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:43
9879
- #: includes/settings/wcj-settings-product-by-date.php:117
9880
- #: includes/settings/wcj-settings-product-custom-info.php:185
9881
- #: includes/settings/wcj-settings-product-input-fields.php:348
9882
- #: includes/settings/wcj-settings-shipping-by-condition.php:108
9883
- msgid "Advanced Options"
9884
- msgstr ""
9885
-
9886
- #: includes/settings/wcj-settings-checkout-files-upload.php:426
9887
- msgid "Notice Type"
9888
- msgstr ""
9889
-
9890
- #: includes/settings/wcj-settings-checkout-files-upload.php:432
9891
- #: includes/settings/wcj-settings-order-min-amount.php:75
9892
- msgid "Print notice"
9893
- msgstr ""
9894
-
9895
- #: includes/settings/wcj-settings-checkout-files-upload.php:433
9896
- msgid "Disable notice"
9897
- msgstr ""
9898
-
9899
- #: includes/settings/wcj-settings-checkout-files-upload.php:437
9900
- msgid "Block Potentially Harmful Files"
9901
- msgstr ""
9902
-
9903
- #: includes/settings/wcj-settings-checkout-files-upload.php:444
9904
- msgid "Potentially Harmful File Extensions"
9905
- msgstr ""
9906
-
9907
- #: includes/settings/wcj-settings-checkout-files-upload.php:445
9908
- #, php-format
9909
- msgid "List of file extensions separated by vertical bar %s."
9910
- msgstr ""
9911
-
9912
- #: includes/settings/wcj-settings-coupon-by-user-role.php:14
9913
- msgid "All Coupons"
9914
- msgstr ""
9915
-
9916
- #: includes/settings/wcj-settings-coupon-by-user-role.php:19
9917
- msgid "Disable All Coupons for Selected User Roles"
9918
- msgstr ""
9919
-
9920
- #: includes/settings/wcj-settings-coupon-by-user-role.php:20
9921
- msgid ""
9922
- "This will disable all coupons for selected user roles. Coupons will be "
9923
- "disabled completely, including coupon code input on the cart page."
9924
- msgstr ""
9925
-
9926
- #: includes/settings/wcj-settings-coupon-by-user-role.php:28
9927
- msgid "Invalidate All Coupons for Selected User Roles"
9928
- msgstr ""
9929
-
9930
- #: includes/settings/wcj-settings-coupon-by-user-role.php:29
9931
- msgid ""
9932
- "This will invalidate all coupons for selected user roles. Coupon code input "
9933
- "will still be available on the cart page."
9934
- msgstr ""
9935
-
9936
- #: includes/settings/wcj-settings-coupon-by-user-role.php:41
9937
- msgid "Per Coupon"
9938
- msgstr ""
9939
-
9940
- #: includes/settings/wcj-settings-coupon-by-user-role.php:46
9941
- msgid "Invalidate per Coupon"
9942
- msgstr ""
9943
-
9944
- #: includes/settings/wcj-settings-coupon-by-user-role.php:48
9945
- msgid ""
9946
- "This will add \"Booster: Coupon by User Role\" meta box to each coupon's "
9947
- "admin edit page."
9948
- msgstr ""
9949
-
9950
- #: includes/settings/wcj-settings-coupon-by-user-role.php:65
9951
- msgid "\"Coupon is not valid\" Message"
9952
- msgstr ""
9953
-
9954
- #: includes/settings/wcj-settings-coupon-by-user-role.php:66
9955
- msgid "Message that will be displayed for invalid coupons by user role."
9956
- msgstr ""
9957
-
9958
- #: includes/settings/wcj-settings-coupon-code-generator.php:15
9959
- #: includes/settings/wcj-settings-coupon-code-generator.php:16
9960
- #: includes/settings/wcj-settings-coupon-code-generator.php:17
9961
- msgid "Hash"
9962
- msgstr ""
9963
-
9964
- #: includes/settings/wcj-settings-coupon-code-generator.php:15
9965
- #: includes/settings/wcj-settings-coupon-code-generator.php:16
9966
- #: includes/settings/wcj-settings-coupon-code-generator.php:17
9967
- #: includes/settings/wcj-settings-coupon-code-generator.php:18
9968
- #: includes/settings/wcj-settings-coupon-code-generator.php:19
9969
- #: includes/settings/wcj-settings-coupon-code-generator.php:20
9970
- #, php-format
9971
- msgid "length %d"
9972
- msgstr ""
9973
-
9974
- #: includes/settings/wcj-settings-coupon-code-generator.php:18
9975
- msgid "Random letters and numbers"
9976
- msgstr ""
9977
-
9978
- #: includes/settings/wcj-settings-coupon-code-generator.php:19
9979
- msgid "Random letters"
9980
- msgstr ""
9981
-
9982
- #: includes/settings/wcj-settings-coupon-code-generator.php:20
9983
- msgid "Random numbers"
9984
- msgstr ""
9985
-
9986
- #: includes/settings/wcj-settings-coupon-code-generator.php:30
9987
- msgid "Generate Coupon Code Automatically"
9988
- msgstr ""
9989
-
9990
- #: includes/settings/wcj-settings-coupon-code-generator.php:31
9991
- msgid ""
9992
- "When enabled, this will generate coupon code automatically when adding new "
9993
- "coupon."
9994
- msgstr ""
9995
-
9996
- #: includes/settings/wcj-settings-coupon-code-generator.php:38
9997
- msgid "Algorithm"
9998
- msgstr ""
9999
-
10000
- #: includes/settings/wcj-settings-coupon-code-generator.php:43
10001
- #, php-format
10002
- msgid "Algorithms: %s."
10003
- msgstr ""
10004
-
10005
- #: includes/settings/wcj-settings-coupon-code-generator.php:49
10006
- msgid ""
10007
- "Length value will be ignored if set above the maximum length for selected "
10008
- "algorithm. Set to zero to use full length for selected algorithm."
10009
- msgstr ""
10010
-
10011
- #: includes/settings/wcj-settings-cross-sells.php:19
10012
- msgid "Cross-sells Total"
10013
- msgstr ""
10014
-
10015
- #: includes/settings/wcj-settings-cross-sells.php:20
10016
- #: includes/settings/wcj-settings-cross-sells.php:28
10017
- #: includes/settings/wcj-settings-upsells.php:20
10018
- #: includes/settings/wcj-settings-upsells.php:28
10019
- msgid "Set to zero for WooCommerce default."
10020
- msgstr ""
10021
-
10022
- #: includes/settings/wcj-settings-cross-sells.php:20
10023
- #: includes/settings/wcj-settings-upsells.php:20
10024
- msgid "Set to -1 for unlimited."
10025
- msgstr ""
10026
-
10027
- #: includes/settings/wcj-settings-cross-sells.php:27
10028
- msgid "Cross-sells Columns"
10029
- msgstr ""
10030
-
10031
- #: includes/settings/wcj-settings-cross-sells.php:35
10032
- msgid "Cross-sells Order By"
10033
- msgstr ""
10034
-
10035
- #: includes/settings/wcj-settings-cross-sells.php:40
10036
- #: includes/settings/wcj-settings-cross-sells.php:58
10037
- #: includes/settings/wcj-settings-upsells.php:40
10038
- msgid "No changes (default behaviour)"
10039
- msgstr ""
10040
-
10041
- #: includes/settings/wcj-settings-cross-sells.php:41
10042
- #: includes/settings/wcj-settings-order-numbers.php:153
10043
- #: includes/settings/wcj-settings-related-products.php:22
10044
- #: includes/settings/wcj-settings-upsells.php:41
10045
- msgid "Random"
10046
- msgstr ""
10047
-
10048
- #: includes/settings/wcj-settings-cross-sells.php:45
10049
- #: includes/settings/wcj-settings-products-xml.php:225
10050
- #: includes/settings/wcj-settings-related-products.php:31
10051
- #: includes/settings/wcj-settings-upsells.php:45
10052
- msgid "Modified"
10053
- msgstr ""
10054
-
10055
- #: includes/settings/wcj-settings-cross-sells.php:46
10056
- #: includes/settings/wcj-settings-my-account.php:95
10057
- #: includes/settings/wcj-settings-related-products.php:32
10058
- #: includes/settings/wcj-settings-upsells.php:46
10059
- msgid "Menu order"
10060
- msgstr ""
10061
-
10062
- #: includes/settings/wcj-settings-cross-sells.php:53
10063
- msgid "Cross-sells Order"
10064
- msgstr ""
10065
-
10066
- #: includes/settings/wcj-settings-cross-sells.php:59
10067
- #: includes/settings/wcj-settings-order-numbers.php:163
10068
- #: includes/settings/wcj-settings-products-xml.php:235
10069
- #: includes/settings/wcj-settings-related-products.php:91
10070
- msgid "Descending"
10071
- msgstr ""
10072
-
10073
- #: includes/settings/wcj-settings-cross-sells.php:60
10074
- #: includes/settings/wcj-settings-order-numbers.php:162
10075
- #: includes/settings/wcj-settings-products-xml.php:236
10076
- #: includes/settings/wcj-settings-related-products.php:90
10077
- msgid "Ascending"
10078
- msgstr ""
10079
-
10080
- #: includes/settings/wcj-settings-cross-sells.php:66
10081
- msgid "Cross-sells Position"
10082
- msgstr ""
10083
-
10084
- #: includes/settings/wcj-settings-cross-sells.php:67
10085
- msgid "Cross-sells position in cart."
10086
- msgstr ""
10087
-
10088
- #: includes/settings/wcj-settings-cross-sells.php:72
10089
- #: includes/settings/wcj-settings-upsells.php:57
10090
- msgid "No changes (default)"
10091
- msgstr ""
10092
-
10093
- #: includes/settings/wcj-settings-cross-sells.php:79
10094
- #: includes/settings/wcj-settings-product-input-fields.php:200
10095
- #: includes/settings/wcj-settings-upsells.php:66
10096
- msgid "Position priority"
10097
- msgstr ""
10098
-
10099
- #: includes/settings/wcj-settings-cross-sells.php:80
10100
- msgid ""
10101
- "Ignored if \"Cross-sells Position\" option above is set to \"No changes "
10102
- "(default)\"."
10103
- msgstr ""
10104
-
10105
- #: includes/settings/wcj-settings-cross-sells.php:86
10106
- msgid "Hide Cross-sells"
10107
- msgstr ""
10108
-
10109
- #: includes/settings/wcj-settings-cross-sells.php:96
10110
- msgid "Global Cross-sells"
10111
- msgstr ""
10112
-
10113
- #: includes/settings/wcj-settings-cross-sells.php:98
10114
- msgid ""
10115
- "Enable this section, if you want to add same cross-sells to all products."
10116
- msgstr ""
10117
-
10118
- #: includes/settings/wcj-settings-cross-sells.php:106
10119
- msgid "Global cross-sells"
10120
- msgstr ""
10121
-
10122
- #: includes/settings/wcj-settings-cross-sells.php:114
10123
- msgid "Exclude \"Not in Stock\" Products"
10124
- msgstr ""
10125
-
10126
- #: includes/settings/wcj-settings-cross-sells.php:116
10127
- msgid ""
10128
- "Enable this, if you want to exclude \"not in stock\" products from cross-"
10129
- "sells."
10130
- msgstr ""
10131
-
10132
- #: includes/settings/wcj-settings-cross-sells.php:124
10133
- msgid "Replace Cart Products with Cross-sells"
10134
- msgstr ""
10135
-
10136
- #: includes/settings/wcj-settings-cross-sells.php:126
10137
- msgid ""
10138
- "Enable this, if you want original products to be removed from cart and "
10139
- "replaced with cross-sells, if customer adds cross-sells on cart page."
10140
- msgstr ""
10141
-
10142
- #: includes/settings/wcj-settings-cross-sells.php:127
10143
- #, php-format
10144
- msgid ""
10145
- "Please note that this option will work only if \"%s\" option is disabled in "
10146
- "%s."
10147
- msgstr ""
10148
-
10149
- #: includes/settings/wcj-settings-cross-sells.php:128
10150
- msgid "Enable AJAX add to cart buttons on archives"
10151
- msgstr ""
10152
-
10153
- #: includes/settings/wcj-settings-cross-sells.php:129
10154
- msgid ""
10155
- "WooCommerce > Settings > Products > General > Shop pages > Add to cart "
10156
- "behaviour"
10157
- msgstr ""
10158
-
10159
- #: includes/settings/wcj-settings-currency-exchange-rates.php:18
10160
- #, php-format
10161
- msgid "%s till next update."
10162
- msgstr ""
10163
-
10164
- #: includes/settings/wcj-settings-currency-exchange-rates.php:20
10165
- #, php-format
10166
- msgid "%s seconds till next update."
10167
- msgstr ""
10168
-
10169
- #: includes/settings/wcj-settings-currency-exchange-rates.php:31
10170
- #: includes/settings/wcj-settings-currency-per-product.php:119
10171
- #: includes/settings/wcj-settings-multicurrency-base-price.php:22
10172
- #: includes/settings/wcj-settings-multicurrency.php:22
10173
- #: includes/settings/wcj-settings-payment-gateways-currency.php:68
10174
- #: includes/settings/wcj-settings-price-by-country.php:302
10175
- msgid "Exchange Rates Updates"
10176
- msgstr ""
10177
-
10178
- #: includes/settings/wcj-settings-currency-exchange-rates.php:43
10179
- msgid "Update all rates now"
10180
- msgstr ""
10181
-
10182
- #: includes/settings/wcj-settings-currency-exchange-rates.php:53
10183
- msgid "Exchange Rates Rounding"
10184
- msgstr ""
10185
-
10186
- #: includes/settings/wcj-settings-currency-exchange-rates.php:60
10187
- #: includes/settings/wcj-settings-offer-price.php:168
10188
- #: includes/settings/wcj-settings-payment-gateways-fees.php:74
10189
- #: includes/settings/wcj-settings-product-by-user.php:70
10190
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
10191
- msgid "Number of decimals"
10192
- msgstr ""
10193
-
10194
- #: includes/settings/wcj-settings-currency-exchange-rates.php:60
10195
- msgid "i.e. rounding precision"
10196
- msgstr ""
10197
-
10198
- #: includes/settings/wcj-settings-currency-exchange-rates.php:61
10199
- msgid "Rounding precision sets number of decimal digits to round to."
10200
- msgstr ""
10201
-
10202
- #: includes/settings/wcj-settings-currency-exchange-rates.php:68
10203
- msgid "Exchange Rates Offset - Percent"
10204
- msgstr ""
10205
-
10206
- #: includes/settings/wcj-settings-currency-exchange-rates.php:69
10207
- #: includes/settings/wcj-settings-currency-exchange-rates.php:77
10208
- msgid ""
10209
- "If both percent and fixed offsets are set - percent offset is applied first "
10210
- "and fixed offset after that."
10211
- msgstr ""
10212
-
10213
- #: includes/settings/wcj-settings-currency-exchange-rates.php:76
10214
- msgid "Exchange Rates Offset - Fixed"
10215
- msgstr ""
10216
-
10217
- #: includes/settings/wcj-settings-currency-exchange-rates.php:84
10218
- msgid "Calculate with Inversion"
10219
- msgstr ""
10220
-
10221
- #: includes/settings/wcj-settings-currency-exchange-rates.php:86
10222
- msgid ""
10223
- "If your currency pair have very small exchange rate, you may want to invert "
10224
- "currencies before calculating the rate."
10225
- msgstr ""
10226
-
10227
- #: includes/settings/wcj-settings-currency-exchange-rates.php:92
10228
- msgid "Always Use cURL"
10229
- msgstr ""
10230
-
10231
- #: includes/settings/wcj-settings-currency-exchange-rates.php:94
10232
- msgid ""
10233
- "If for some reason currency exchange rates are not updating, try enabling "
10234
- "this option."
10235
- msgstr ""
10236
-
10237
- #: includes/settings/wcj-settings-currency-exchange-rates.php:113
10238
- msgid "API Keys"
10239
- msgstr ""
10240
-
10241
- #: includes/settings/wcj-settings-currency-exchange-rates.php:114
10242
- msgid "API keys provided by the Exchange Rates Servers"
10243
- msgstr ""
10244
-
10245
- #: includes/settings/wcj-settings-currency-exchange-rates.php:119
10246
- msgid "Free Currency Converter API"
10247
- msgstr ""
10248
-
10249
- #: includes/settings/wcj-settings-currency-exchange-rates.php:120
10250
- #, php-format
10251
- msgid "More information at %s"
10252
- msgstr ""
10253
-
10254
- #: includes/settings/wcj-settings-currency-exchange-rates.php:129
10255
- msgid "Custom Currencies Options"
10256
- msgstr ""
10257
-
10258
- #: includes/settings/wcj-settings-currency-exchange-rates.php:131
10259
- #, php-format
10260
- msgid ""
10261
- "You can add more currencies in this section. E.g. this can be used to "
10262
- "display exchange rates with %s shortcodes."
10263
- msgstr ""
10264
-
10265
- #: includes/settings/wcj-settings-currency-exchange-rates.php:142
10266
- #: includes/settings/wcj-settings-currency.php:61
10267
- msgid "Total Custom Currencies"
10268
- msgstr ""
10269
-
10270
- #: includes/settings/wcj-settings-currency-exchange-rates.php:154
10271
- #: includes/settings/wcj-settings-currency.php:73
10272
- msgid "Custom Currency"
10273
- msgstr ""
10274
-
10275
- #: includes/settings/wcj-settings-currency-exchange-rates.php:173
10276
- #: includes/settings/wcj-settings-price-by-country.php:297
10277
- msgid "Exchange Rates"
10278
- msgstr ""
10279
-
10280
- #: includes/settings/wcj-settings-currency-exchange-rates.php:175
10281
- msgid ""
10282
- "All currencies from all <strong>enabled</strong> modules (with \"Exchange "
10283
- "Rates Updates\" set to \"Automatically via Currency Exchange Rates module\") "
10284
- "will be automatically added to the list."
10285
- msgstr ""
10286
-
10287
- #: includes/settings/wcj-settings-currency-external-products.php:14
10288
- msgid "Currency for External Products Options"
10289
- msgstr ""
10290
-
10291
- #: includes/settings/wcj-settings-currency-external-products.php:20
10292
- #: includes/settings/wcj-settings-currency-per-product.php:180
10293
- #: includes/settings/wcj-settings-multicurrency-base-price.php:131
10294
- #: includes/settings/wcj-settings-multicurrency.php:218
10295
- #: includes/settings/wcj-settings-price-by-country.php:277
10296
- #: includes/settings/wcj-settings-price-formats.php:59
10297
- msgid "Currency"
10298
- msgstr ""
10299
-
10300
- #: includes/settings/wcj-settings-currency-external-products.php:21
10301
- msgid "Set currency for all external products."
10302
- msgstr ""
10303
-
10304
- #: includes/settings/wcj-settings-currency-per-product.php:23
10305
- msgid "Cart and Checkout Behaviour Options"
10306
- msgstr ""
10307
-
10308
- #: includes/settings/wcj-settings-currency-per-product.php:28
10309
- msgid "Cart and Checkout Behaviour"
10310
- msgstr ""
10311
-
10312
- #: includes/settings/wcj-settings-currency-per-product.php:33
10313
- msgid "Convert to shop default currency"
10314
- msgstr ""
10315
-
10316
- #: includes/settings/wcj-settings-currency-per-product.php:34
10317
- #: includes/settings/wcj-settings-currency-per-product.php:41
10318
- msgid "Leave product currency (allow only one product to be added to cart)"
10319
- msgstr ""
10320
-
10321
- #: includes/settings/wcj-settings-currency-per-product.php:35
10322
- #: includes/settings/wcj-settings-currency-per-product.php:48
10323
- msgid ""
10324
- "Leave product currency (allow only same currency products to be added to "
10325
- "cart)"
10326
- msgstr ""
10327
-
10328
- #: includes/settings/wcj-settings-currency-per-product.php:36
10329
- msgid "Convert to currency of last product in cart"
10330
- msgstr ""
10331
-
10332
- #: includes/settings/wcj-settings-currency-per-product.php:37
10333
- msgid "Convert to currency of first product in cart"
10334
- msgstr ""
10335
-
10336
- #: includes/settings/wcj-settings-currency-per-product.php:76
10337
- msgid "Additional Options"
10338
- msgstr ""
10339
-
10340
- #: includes/settings/wcj-settings-currency-per-product.php:77
10341
- msgid ""
10342
- "Save module's settings after changing this options to see new settings "
10343
- "fields."
10344
- msgstr ""
10345
-
10346
- #: includes/settings/wcj-settings-currency-per-product.php:82
10347
- msgid "Currency per Product Authors"
10348
- msgstr ""
10349
-
10350
- #: includes/settings/wcj-settings-currency-per-product.php:89
10351
- msgid "Currency per Product Authors User Roles"
10352
- msgstr ""
10353
-
10354
- #: includes/settings/wcj-settings-currency-per-product.php:96
10355
- msgid "Currency per Product Categories"
10356
- msgstr ""
10357
-
10358
- #: includes/settings/wcj-settings-currency-per-product.php:103
10359
- msgid "Currency per Product Tags"
10360
- msgstr ""
10361
-
10362
- #: includes/settings/wcj-settings-currency-per-product.php:114
10363
- msgid "Exchange Rates Updates Options"
10364
- msgstr ""
10365
-
10366
- #: includes/settings/wcj-settings-currency-per-product.php:124
10367
- #: includes/settings/wcj-settings-multicurrency-base-price.php:27
10368
- #: includes/settings/wcj-settings-multicurrency.php:28
10369
- #: includes/settings/wcj-settings-payment-gateways-currency.php:73
10370
- #: includes/settings/wcj-settings-price-by-country.php:307
10371
- msgid "Enter Rates Manually"
10372
- msgstr ""
10373
-
10374
- #: includes/settings/wcj-settings-currency-per-product.php:125
10375
- #: includes/settings/wcj-settings-multicurrency-base-price.php:28
10376
- #: includes/settings/wcj-settings-multicurrency.php:29
10377
- #: includes/settings/wcj-settings-payment-gateways-currency.php:74
10378
- #: includes/settings/wcj-settings-price-by-country.php:308
10379
- msgid "Automatically via Currency Exchange Rates module"
10380
- msgstr ""
10381
-
10382
- #: includes/settings/wcj-settings-currency-per-product.php:128
10383
- #: includes/settings/wcj-settings-multicurrency-base-price.php:31
10384
- #: includes/settings/wcj-settings-multicurrency.php:32
10385
- #: includes/settings/wcj-settings-payment-gateways-currency.php:77
10386
- #: includes/settings/wcj-settings-price-by-country.php:311
10387
- msgid "Visit"
10388
- msgstr ""
10389
-
10390
- #: includes/settings/wcj-settings-currency-per-product.php:128
10391
- #: includes/settings/wcj-settings-multicurrency-base-price.php:31
10392
- #: includes/settings/wcj-settings-multicurrency.php:32
10393
- #: includes/settings/wcj-settings-payment-gateways-currency.php:79
10394
- #: includes/settings/wcj-settings-price-by-country.php:311
10395
- msgid "Currency Exchange Rates module"
10396
- msgstr ""
10397
-
10398
- #: includes/settings/wcj-settings-currency-per-product.php:138
10399
- #: includes/settings/wcj-settings-multicurrency-base-price.php:102
10400
- #: includes/settings/wcj-settings-multicurrency.php:187
10401
- msgid "Currencies Options"
10402
- msgstr ""
10403
-
10404
- #: includes/settings/wcj-settings-currency-per-product.php:139
10405
- msgid ""
10406
- "Exchange rates for currencies won't be used for products if \"Cart and "
10407
- "Checkout Behaviour\" is set to one of \"Leave product currency ...\" "
10408
- "options. However it may be used for shipping price conversion."
10409
- msgstr ""
10410
-
10411
- #: includes/settings/wcj-settings-currency-per-product.php:144
10412
- #: includes/settings/wcj-settings-multicurrency-base-price.php:107
10413
- #: includes/settings/wcj-settings-multicurrency.php:193
10414
- msgid "Total Currencies"
10415
- msgstr ""
10416
-
10417
- #: includes/settings/wcj-settings-currency-per-product.php:199
10418
- msgid "Product Authors"
10419
- msgstr ""
10420
-
10421
- #: includes/settings/wcj-settings-currency-per-product.php:211
10422
- msgid "Product Authors User Roles"
10423
- msgstr ""
10424
-
10425
- #: includes/settings/wcj-settings-currency-per-product.php:256
10426
- msgid "Advanced: Save Calculated Products Prices"
10427
- msgstr ""
10428
-
10429
- #: includes/settings/wcj-settings-currency-per-product.php:257
10430
- #: includes/settings/wcj-settings-multicurrency-base-price.php:69
10431
- msgid ""
10432
- "This may help if you are experiencing compatibility issues with other "
10433
- "plugins."
10434
- msgstr ""
10435
-
10436
- #: includes/settings/wcj-settings-currency.php:14
10437
- msgid "Currency Symbol Options"
10438
- msgstr ""
10439
-
10440
- #: includes/settings/wcj-settings-currency.php:16
10441
- #, php-format
10442
- msgid "You can use shortcodes in currency symbols, e.g.: %s."
10443
- msgstr ""
10444
-
10445
- #: includes/settings/wcj-settings-currency.php:21
10446
- msgid "Hide Currency Symbol"
10447
- msgstr ""
10448
-
10449
- #: includes/settings/wcj-settings-currency.php:23
10450
- msgid "Hides currency symbol completely."
10451
- msgstr ""
10452
-
10453
- #: includes/settings/wcj-settings-currency.php:56
10454
- msgid "Custom Currencies"
10455
- msgstr ""
10456
-
10457
- #: includes/settings/wcj-settings-currency.php:74
10458
- msgid "Currency Name (required)"
10459
- msgstr ""
10460
-
10461
- #: includes/settings/wcj-settings-currency.php:80
10462
- msgid "Currency Code (required)"
10463
- msgstr ""
10464
-
10465
- #: includes/settings/wcj-settings-currency.php:86
10466
- msgid "Currency Symbol"
10467
- msgstr ""
10468
-
10469
- #: includes/settings/wcj-settings-custom-css.php:19
10470
- #: includes/settings/wcj-settings-custom-js.php:19
10471
- msgid "Code Position"
10472
- msgstr ""
10473
-
10474
- #: includes/settings/wcj-settings-custom-css.php:29
10475
- msgid "Custom CSS - Front end (Customers)"
10476
- msgstr ""
10477
-
10478
- #: includes/settings/wcj-settings-custom-css.php:36
10479
- msgid "Custom CSS - Back end (Admin)"
10480
- msgstr ""
10481
-
10482
- #: includes/settings/wcj-settings-custom-css.php:43
10483
- msgid "Custom CSS on per Product Basis"
10484
- msgstr ""
10485
-
10486
- #: includes/settings/wcj-settings-custom-css.php:45
10487
- msgid ""
10488
- "Set product specific CSS to be loaded only on specific product's single page."
10489
- msgstr ""
10490
-
10491
- #: includes/settings/wcj-settings-custom-css.php:46
10492
- #: includes/settings/wcj-settings-order-quantities.php:118
10493
- #: includes/settings/wcj-settings-order-quantities.php:176
10494
- #: includes/settings/wcj-settings-order-quantities.php:217
10495
- #: includes/settings/wcj-settings-sale-flash.php:66
10496
- msgid "This will add meta box to each product's edit page."
10497
- msgstr ""
10498
-
10499
- #: includes/settings/wcj-settings-custom-css.php:52
10500
- msgid "Custom CSS on per Product Basis - Default Field Value"
10501
- msgstr ""
10502
-
10503
- #: includes/settings/wcj-settings-custom-js.php:29
10504
- msgid "Custom JS - Front end (Customers)"
10505
- msgstr ""
10506
-
10507
- #: includes/settings/wcj-settings-custom-js.php:36
10508
- msgid "Custom JS - Back end (Admin)"
10509
- msgstr ""
10510
-
10511
- #: includes/settings/wcj-settings-custom-php.php:27
10512
- #, php-format
10513
- msgid "Without the %s tag."
10514
- msgstr ""
10515
-
10516
- #: includes/settings/wcj-settings-custom-php.php:29
10517
- #, php-format
10518
- msgid "Automatically created file: %s."
10519
- msgstr ""
10520
-
10521
- #: includes/settings/wcj-settings-debug-tools.php:14
10522
- msgid "Debug Tools Options"
10523
- msgstr ""
10524
-
10525
- #: includes/settings/wcj-settings-debug-tools.php:20
10526
- msgid "Enables logging to Booster log."
10527
- msgstr ""
10528
-
10529
- #: includes/settings/wcj-settings-debug-tools.php:27
10530
- msgid "WooCommerce Log"
10531
- msgstr ""
10532
-
10533
- #: includes/settings/wcj-settings-debug-tools.php:28
10534
- msgid "Enables logging to WooCommerce log."
10535
- msgstr ""
10536
-
10537
- #: includes/settings/wcj-settings-debug-tools.php:35
10538
- msgid "Debug"
10539
- msgstr ""
10540
-
10541
- #: includes/settings/wcj-settings-debug-tools.php:36
10542
- msgid "Enables debug mode."
10543
- msgstr ""
10544
-
10545
- #: includes/settings/wcj-settings-debug-tools.php:43
10546
- msgid "System Info"
10547
- msgstr ""
10548
-
10549
- #: includes/settings/wcj-settings-debug-tools.php:47
10550
- msgid "Show extended info"
10551
- msgstr ""
10552
-
10553
- #: includes/settings/wcj-settings-email-options.php:14
10554
- msgid "Product Info in Item Name"
10555
- msgstr ""
10556
-
10557
- #: includes/settings/wcj-settings-email-options.php:19
10558
- msgid "Add Product Info to Item Name"
10559
- msgstr ""
10560
-
10561
- #: includes/settings/wcj-settings-email-options.php:26
10562
- #: includes/settings/wcj-settings-template-editor.php:43
10563
- #: includes/settings/wcj-settings-track-users.php:26
10564
- msgid "Info"
10565
- msgstr ""
10566
-
10567
- #: includes/settings/wcj-settings-email-options.php:27
10568
- #, php-format
10569
- msgid ""
10570
- "You can use <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</"
10571
- "a> here."
10572
- msgstr ""
10573
-
10574
- #: includes/settings/wcj-settings-emails-verification.php:19
10575
- msgid "Skip Email Verification for User Roles"
10576
- msgstr ""
10577
-
10578
- #: includes/settings/wcj-settings-emails-verification.php:27
10579
- msgid "Enable Email Verification for Already Registered Users"
10580
- msgstr ""
10581
-
10582
- #: includes/settings/wcj-settings-emails-verification.php:29
10583
- msgid ""
10584
- "If enabled, all your current users will have to verify their emails when "
10585
- "logging to your site."
10586
- msgstr ""
10587
-
10588
- #: includes/settings/wcj-settings-emails-verification.php:35
10589
- msgid "Login User After Successful Verification"
10590
- msgstr ""
10591
-
10592
- #: includes/settings/wcj-settings-emails-verification.php:42
10593
- msgid "Prevent User Login Globally"
10594
- msgstr ""
10595
-
10596
- #: includes/settings/wcj-settings-emails-verification.php:44
10597
- msgid ""
10598
- "Enable if users are logged in automattically when they should not, like "
10599
- "after registration on checkout"
10600
- msgstr ""
10601
-
10602
- #: includes/settings/wcj-settings-emails-verification.php:50
10603
- msgid "Redirect User After Successful Verification to Custom URL"
10604
- msgstr ""
10605
-
10606
- #: includes/settings/wcj-settings-emails-verification.php:51
10607
- msgid "Redirect URL. Ignored if empty."
10608
- msgstr ""
10609
-
10610
- #: includes/settings/wcj-settings-emails-verification.php:62
10611
- msgid "Messages"
10612
- msgstr ""
10613
-
10614
- #: includes/settings/wcj-settings-emails-verification.php:67
10615
- msgid "Message - Success"
10616
- msgstr ""
10617
-
10618
- #: includes/settings/wcj-settings-emails-verification.php:74
10619
- msgid "Message - Error"
10620
- msgstr ""
10621
-
10622
- #: includes/settings/wcj-settings-emails-verification.php:82
10623
- msgid "Message - Failed"
10624
- msgstr ""
10625
-
10626
- #: includes/settings/wcj-settings-emails-verification.php:90
10627
- msgid "Message - Failed (no user ID)"
10628
- msgstr ""
10629
-
10630
- #: includes/settings/wcj-settings-emails-verification.php:97
10631
- msgid "Message - Activate"
10632
- msgstr ""
10633
-
10634
- #: includes/settings/wcj-settings-emails-verification.php:104
10635
- msgid "Message - Resend"
10636
- msgstr ""
10637
-
10638
- #: includes/settings/wcj-settings-emails-verification.php:120
10639
- #: includes/settings/wcj-settings-offer-price.php:328
10640
- msgid "Email Subject"
10641
- msgstr ""
10642
-
10643
- #: includes/settings/wcj-settings-emails-verification.php:129
10644
- msgid "Email Content"
10645
- msgstr ""
10646
-
10647
- #: includes/settings/wcj-settings-emails-verification.php:139
10648
- #: includes/settings/wcj-settings-offer-price.php:335
10649
- msgid "Email Template"
10650
- msgstr ""
10651
-
10652
- #: includes/settings/wcj-settings-emails-verification.php:140
10653
- msgid "Possible values: Plain, WooCommerce."
10654
- msgstr ""
10655
-
10656
- #: includes/settings/wcj-settings-emails-verification.php:145
10657
- msgid "Plain"
10658
- msgstr ""
10659
-
10660
- #: includes/settings/wcj-settings-emails-verification.php:152
10661
- msgid "If WooCommerce template is selected, set email heading here."
10662
- msgstr ""
10663
-
10664
- #: includes/settings/wcj-settings-emails.php:18
10665
- #, php-format
10666
- msgid ""
10667
- "This section lets you set number of custom emails to add. After setting the "
10668
- "number, visit <a href=\"%s\">WooCommerce > Settings > Emails</a> to set each "
10669
- "email options."
10670
- msgstr ""
10671
-
10672
- #: includes/settings/wcj-settings-emails.php:23
10673
- msgid "Custom Emails Number"
10674
- msgstr ""
10675
-
10676
- #: includes/settings/wcj-settings-emails.php:35
10677
- msgid "Admin Title Custom Email"
10678
- msgstr ""
10679
-
10680
- #: includes/settings/wcj-settings-empty-cart.php:15
10681
- msgid ""
10682
- "You can also use <strong>[wcj_empty_cart_button]</strong> shortcode to place "
10683
- "the button anywhere on your site."
10684
- msgstr ""
10685
-
10686
- #: includes/settings/wcj-settings-empty-cart.php:20
10687
- msgid "Empty Cart Button Text"
10688
- msgstr ""
10689
-
10690
- #: includes/settings/wcj-settings-empty-cart.php:28
10691
- msgid "Wrapping DIV style"
10692
- msgstr ""
10693
-
10694
- #: includes/settings/wcj-settings-empty-cart.php:29
10695
- msgid "Style for the button's div. Default is \"float: right;\""
10696
- msgstr ""
10697
-
10698
- #: includes/settings/wcj-settings-empty-cart.php:35
10699
- msgid "Button HTML Class"
10700
- msgstr ""
10701
-
10702
- #: includes/settings/wcj-settings-empty-cart.php:41
10703
- msgid "Button position on the Cart page"
10704
- msgstr ""
10705
-
10706
- #: includes/settings/wcj-settings-empty-cart.php:48
10707
- msgid "Cart totals: Before cart totals"
10708
- msgstr ""
10709
-
10710
- #: includes/settings/wcj-settings-empty-cart.php:53
10711
- msgid "Cart totals: After proceed to checkout button"
10712
- msgstr ""
10713
-
10714
- #: includes/settings/wcj-settings-empty-cart.php:54
10715
- msgid "Cart totals: After cart totals"
10716
- msgstr ""
10717
-
10718
- #: includes/settings/wcj-settings-empty-cart.php:55
10719
- msgid "After cart collaterals"
10720
- msgstr ""
10721
-
10722
- #: includes/settings/wcj-settings-empty-cart.php:62
10723
- msgid "Button position on the Checkout page"
10724
- msgstr ""
10725
-
10726
- #: includes/settings/wcj-settings-empty-cart.php:73
10727
- msgid "Confirmation"
10728
- msgstr ""
10729
-
10730
- #: includes/settings/wcj-settings-empty-cart.php:78
10731
- msgid "No confirmation"
10732
- msgstr ""
10733
-
10734
- #: includes/settings/wcj-settings-empty-cart.php:79
10735
- msgid "Confirm by pop up box"
10736
- msgstr ""
10737
-
10738
- #: includes/settings/wcj-settings-empty-cart.php:83
10739
- msgid "Confirmation Text (if enabled)"
10740
- msgstr ""
10741
-
10742
- #: includes/settings/wcj-settings-eu-vat-number.php:20
10743
- msgid "Field Label"
10744
- msgstr ""
10745
-
10746
- #: includes/settings/wcj-settings-eu-vat-number.php:74
10747
- msgid "Validate"
10748
- msgstr ""
10749
-
10750
- #: includes/settings/wcj-settings-eu-vat-number.php:81
10751
- msgid "Message on not valid"
10752
- msgstr ""
10753
-
10754
- #: includes/settings/wcj-settings-eu-vat-number.php:88
10755
- msgid "First Validation Method"
10756
- msgstr ""
10757
-
10758
- #: includes/settings/wcj-settings-eu-vat-number.php:89
10759
- msgid ""
10760
- "Change this if you are having issues when validating VAT. This only selects "
10761
- "first method to try - if not succeeded, remaining methods will be used for "
10762
- "validation."
10763
- msgstr ""
10764
-
10765
- #: includes/settings/wcj-settings-eu-vat-number.php:94
10766
- msgid "SOAP"
10767
- msgstr ""
10768
-
10769
- #: includes/settings/wcj-settings-eu-vat-number.php:95
10770
- msgid "cURL"
10771
- msgstr ""
10772
-
10773
- #: includes/settings/wcj-settings-eu-vat-number.php:96
10774
- msgid "Simple"
10775
- msgstr ""
10776
-
10777
- #: includes/settings/wcj-settings-eu-vat-number.php:100
10778
- msgid "Exempt VAT for Valid Numbers"
10779
- msgstr ""
10780
-
10781
- #: includes/settings/wcj-settings-eu-vat-number.php:107
10782
- msgid "Preserve VAT in Base Country"
10783
- msgstr ""
10784
-
10785
- #: includes/settings/wcj-settings-eu-vat-number.php:108
10786
- #, php-format
10787
- msgid ""
10788
- "This will validate the VAT, but won't exempt VAT for base country VAT "
10789
- "numbers. Base (i.e. store) country is set in %s."
10790
- msgstr ""
10791
-
10792
- #: includes/settings/wcj-settings-eu-vat-number.php:127
10793
- msgid "Check for IP Location Country"
10794
- msgstr ""
10795
-
10796
- #: includes/settings/wcj-settings-eu-vat-number.php:128
10797
- msgid ""
10798
- "This will check if customer's country (located by customer's IP) matches the "
10799
- "country in entered VAT number."
10800
- msgstr ""
10801
-
10802
- #: includes/settings/wcj-settings-eu-vat-number.php:151
10803
- msgid "After order table"
10804
- msgstr ""
10805
-
10806
- #: includes/settings/wcj-settings-eu-vat-number.php:152
10807
- msgid "In billing address"
10808
- msgstr ""
10809
-
10810
- #: includes/settings/wcj-settings-eu-vat-number.php:156
10811
- msgid "Add Progress Messages"
10812
- msgstr ""
10813
-
10814
- #: includes/settings/wcj-settings-eu-vat-number.php:163
10815
- msgid "Progress Message: Validating"
10816
- msgstr ""
10817
-
10818
- #: includes/settings/wcj-settings-eu-vat-number.php:170
10819
- msgid "Progress Message: Valid"
10820
- msgstr ""
10821
-
10822
- #: includes/settings/wcj-settings-eu-vat-number.php:177
10823
- msgid "Progress Message: Not Valid"
10824
- msgstr ""
10825
-
10826
- #: includes/settings/wcj-settings-eu-vat-number.php:184
10827
- msgid "Progress Message: Validation Failed"
10828
- msgstr ""
10829
-
10830
- #: includes/settings/wcj-settings-eu-vat-number.php:185
10831
- msgid "Message on VAT validation server timeout etc."
10832
- msgstr ""
10833
-
10834
- #: includes/settings/wcj-settings-eu-vat-number.php:192
10835
- msgid "Add EU VAT Number Summary Meta Box to Admin Order Edit Page"
10836
- msgstr ""
10837
-
10838
- #: includes/settings/wcj-settings-eu-vat-number.php:208
10839
- msgid "Skip VAT Validation for Selected Countries"
10840
- msgstr ""
10841
-
10842
- #: includes/settings/wcj-settings-eu-vat-number.php:209
10843
- msgid ""
10844
- "List all countries you want VAT validation to be skipped for (i.e. VAT "
10845
- "always valid). Ignored if empty."
10846
- msgstr ""
10847
-
10848
- #: includes/settings/wcj-settings-eu-vat-number.php:210
10849
- #, php-format
10850
- msgid "Enter country codes as comma separated list, e.g. %s."
10851
- msgstr ""
10852
-
10853
- #: includes/settings/wcj-settings-export.php:15
10854
- msgid "Export Options"
10855
- msgstr ""
10856
-
10857
- #: includes/settings/wcj-settings-export.php:20
10858
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:183
10859
- msgid "CSV Separator"
10860
- msgstr ""
10861
-
10862
- #: includes/settings/wcj-settings-export.php:26
10863
- msgid "UTF-8 BOM"
10864
- msgstr ""
10865
-
10866
- #: includes/settings/wcj-settings-export.php:28
10867
- msgid "Add UTF-8 BOM sequence"
10868
- msgstr ""
10869
-
10870
- #: includes/settings/wcj-settings-export.php:38
10871
- msgid "Export Orders Options"
10872
- msgstr ""
10873
-
10874
- #: includes/settings/wcj-settings-export.php:43
10875
- msgid "Export Orders Fields"
10876
- msgstr ""
10877
-
10878
- #: includes/settings/wcj-settings-export.php:44
10879
- #: includes/settings/wcj-settings-export.php:112
10880
- #: includes/settings/wcj-settings-export.php:183
10881
- #: includes/settings/wcj-settings-export.php:262
10882
- #: includes/settings/wcj-settings-export.php:280
10883
- msgid "Hold \"Control\" key to select multiple fields."
10884
- msgstr ""
10885
-
10886
- #: includes/settings/wcj-settings-export.php:52
10887
- msgid "Additional Export Orders Fields"
10888
- msgstr ""
10889
-
10890
- #: includes/settings/wcj-settings-export.php:87
10891
- #: includes/settings/wcj-settings-export.php:156
10892
- msgid "Order Shortcode"
10893
- msgstr ""
10894
-
10895
- #: includes/settings/wcj-settings-export.php:92
10896
- msgid ""
10897
- "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
10898
- "(can be custom field name)."
10899
- msgstr ""
10900
-
10901
- #: includes/settings/wcj-settings-export.php:93
10902
- msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
10903
- msgstr ""
10904
-
10905
- #: includes/settings/wcj-settings-export.php:106
10906
- msgid "Export Orders Items Options"
10907
- msgstr ""
10908
-
10909
- #: includes/settings/wcj-settings-export.php:111
10910
- msgid "Export Orders Items Fields"
10911
- msgstr ""
10912
-
10913
- #: includes/settings/wcj-settings-export.php:120
10914
- msgid "Additional Export Orders Items Fields"
10915
- msgstr ""
10916
-
10917
- #: includes/settings/wcj-settings-export.php:155
10918
- msgid "Order Item Meta"
10919
- msgstr ""
10920
-
10921
- #: includes/settings/wcj-settings-export.php:158
10922
- #: includes/settings/wcj-settings-export.php:237
10923
- msgid "Product Shortcode"
10924
- msgstr ""
10925
-
10926
- #: includes/settings/wcj-settings-export.php:163
10927
- msgid ""
10928
- "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
10929
- "retrieve (can be custom field name)."
10930
- msgstr ""
10931
-
10932
- #: includes/settings/wcj-settings-export.php:164
10933
- msgid ""
10934
- "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
10935
- msgstr ""
10936
-
10937
- #: includes/settings/wcj-settings-export.php:177
10938
- msgid "Export Products Options"
10939
- msgstr ""
10940
-
10941
- #: includes/settings/wcj-settings-export.php:182
10942
- msgid "Export Products Fields"
10943
- msgstr ""
10944
-
10945
- #: includes/settings/wcj-settings-export.php:191
10946
- #: includes/settings/wcj-settings-free-price.php:14
10947
- #: includes/settings/wcj-settings-order-quantities.php:56
10948
- msgid "Variable Products"
10949
- msgstr ""
10950
-
10951
- #: includes/settings/wcj-settings-export.php:196
10952
- msgid "Export variable (main) product only"
10953
- msgstr ""
10954
-
10955
- #: includes/settings/wcj-settings-export.php:197
10956
- msgid "Export variation products only"
10957
- msgstr ""
10958
-
10959
- #: includes/settings/wcj-settings-export.php:198
10960
- msgid "Export variable (main) and variation products"
10961
- msgstr ""
10962
-
10963
- #: includes/settings/wcj-settings-export.php:202
10964
- msgid "Additional Export Products Fields"
10965
- msgstr ""
10966
-
10967
- #: includes/settings/wcj-settings-export.php:242
10968
- msgid ""
10969
- "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
10970
- "(can be custom field name)."
10971
- msgstr ""
10972
-
10973
- #: includes/settings/wcj-settings-export.php:243
10974
- msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
10975
- msgstr ""
10976
-
10977
- #: includes/settings/wcj-settings-export.php:256
10978
- msgid "Export Customers Options"
10979
- msgstr ""
10980
-
10981
- #: includes/settings/wcj-settings-export.php:261
10982
- msgid "Export Customers Fields"
10983
- msgstr ""
10984
-
10985
- #: includes/settings/wcj-settings-export.php:274
10986
- msgid "Export Customers from Orders Options"
10987
- msgstr ""
10988
-
10989
- #: includes/settings/wcj-settings-export.php:279
10990
- msgid "Export Customers from Orders Fields"
10991
- msgstr ""
10992
-
10993
- #: includes/settings/wcj-settings-free-price.php:13
10994
- msgid "Simple and Custom Products"
10995
- msgstr ""
10996
-
10997
- #: includes/settings/wcj-settings-free-price.php:15
10998
- msgid "Grouped Products"
10999
- msgstr ""
11000
-
11001
- #: includes/settings/wcj-settings-free-price.php:16
11002
- #: includes/settings/wcj-settings-product-add-to-cart.php:206
11003
- msgid "External Products"
11004
- msgstr ""
11005
-
11006
- #: includes/settings/wcj-settings-free-price.php:19
11007
- #: includes/settings/wcj-settings-product-msrp.php:13
11008
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:21
11009
- msgid "Single Product Page"
11010
- msgstr ""
11011
-
11012
- #: includes/settings/wcj-settings-free-price.php:21
11013
- msgid "Homepage"
11014
- msgstr ""
11015
-
11016
- #: includes/settings/wcj-settings-free-price.php:22
11017
- msgid "Pages (e.g. Shortcodes)"
11018
- msgstr ""
11019
-
11020
- #: includes/settings/wcj-settings-free-price.php:23
11021
- msgid "Archives (Product Categories)"
11022
- msgstr ""
11023
-
11024
- #: includes/settings/wcj-settings-free-price.php:31
11025
- msgid "Labels can contain shortcodes."
11026
- msgstr ""
11027
-
11028
- #: includes/settings/wcj-settings-free-price.php:38
11029
- #: includes/settings/wcj-settings-reports.php:179
11030
- msgid "Variations"
11031
- msgstr ""
11032
-
11033
- #: includes/settings/wcj-settings-general.php:14
11034
- msgid "Shortcodes Options"
11035
- msgstr ""
11036
-
11037
- #: includes/settings/wcj-settings-general.php:19
11038
- msgid "Shortcodes in WordPress Text Widgets"
11039
- msgstr ""
11040
-
11041
- #: includes/settings/wcj-settings-general.php:20
11042
- msgid ""
11043
- "This will enable all (including non Booster's) shortcodes in WordPress text "
11044
- "widgets."
11045
- msgstr ""
11046
-
11047
- #: includes/settings/wcj-settings-general.php:27
11048
- msgid "Booster's Shortcodes"
11049
- msgstr ""
11050
-
11051
- #: includes/settings/wcj-settings-general.php:28
11052
- #, php-format
11053
- msgid ""
11054
- "Disable all <a href=\"%s\" target=\"_blank\">Booster's shortcodes</a> (for "
11055
- "memory saving)."
11056
- msgstr ""
11057
-
11058
- #: includes/settings/wcj-settings-general.php:40
11059
- msgid "Ip Detection"
11060
- msgstr ""
11061
-
11062
- #: includes/settings/wcj-settings-general.php:45
11063
- msgid "Overwrite WooCommerce IP Detection"
11064
- msgstr ""
11065
-
11066
- #: includes/settings/wcj-settings-general.php:46
11067
- msgid "Try to overwrite WooCommerce IP detection"
11068
- msgstr ""
11069
-
11070
- #: includes/settings/wcj-settings-general.php:47
11071
- msgid ""
11072
- "The \"HTTP_X_REAL_IP\" param on $_SERVER variable will be replaced by IP "
11073
- "detected from Booster"
11074
- msgstr ""
11075
-
11076
- #: includes/settings/wcj-settings-general.php:53
11077
- msgid "Detection Methods"
11078
- msgstr ""
11079
-
11080
- #: includes/settings/wcj-settings-general.php:54
11081
- msgid ""
11082
- "IP Detection Methods used by some Booster modules when not using IP "
11083
- "detection from WooCommerce. Change order for different results."
11084
- msgstr ""
11085
-
11086
- #: includes/settings/wcj-settings-general.php:55
11087
- msgid "Default values are:"
11088
- msgstr ""
11089
-
11090
- #: includes/settings/wcj-settings-general.php:70
11091
- msgid "Recalculate Cart Totals"
11092
- msgstr ""
11093
-
11094
- #: includes/settings/wcj-settings-general.php:71
11095
- msgid "Will recalculate cart totals on every page load."
11096
- msgstr ""
11097
-
11098
- #: includes/settings/wcj-settings-general.php:72
11099
- msgid ""
11100
- "This may solve multicurrency issues with wrong currency symbol in mini-cart."
11101
- msgstr ""
11102
-
11103
- #: includes/settings/wcj-settings-general.php:79
11104
- msgid "Session Type in Booster"
11105
- msgstr ""
11106
-
11107
- #: includes/settings/wcj-settings-general.php:84
11108
- msgid "Standard PHP sessions"
11109
- msgstr ""
11110
-
11111
- #: includes/settings/wcj-settings-general.php:85
11112
- msgid "WC sessions"
11113
- msgstr ""
11114
-
11115
- #: includes/settings/wcj-settings-general.php:89
11116
- msgid "Read and Close"
11117
- msgstr ""
11118
-
11119
- #: includes/settings/wcj-settings-general.php:90
11120
- msgid ""
11121
- "Enable <strong>Read and Close</strong> parameter on <strong>session_start()</"
11122
- "strong>."
11123
- msgstr ""
11124
-
11125
- #: includes/settings/wcj-settings-general.php:91
11126
- msgid ""
11127
- "Requires Session Type option set as Standard PHP Sessions and PHP version >= "
11128
- "7.0"
11129
- msgstr ""
11130
-
11131
- #: includes/settings/wcj-settings-general.php:97
11132
- msgid "Datepicker/Weekpicker CSS Loading"
11133
- msgstr ""
11134
-
11135
- #: includes/settings/wcj-settings-general.php:98
11136
- msgid "Disables datepicker/weekpicker CSS loading."
11137
- msgstr ""
11138
-
11139
- #: includes/settings/wcj-settings-general.php:105
11140
- msgid "Datepicker/Weekpicker CSS Source"
11141
- msgstr ""
11142
-
11143
- #: includes/settings/wcj-settings-general.php:112
11144
- msgid "Datepicker/Weekpicker JavaScript Loading"
11145
- msgstr ""
11146
-
11147
- #: includes/settings/wcj-settings-general.php:113
11148
- msgid "Disables datepicker/weekpicker JavaScript loading."
11149
- msgstr ""
11150
-
11151
- #: includes/settings/wcj-settings-general.php:120
11152
- msgid "Timepicker CSS Loading"
11153
- msgstr ""
11154
-
11155
- #: includes/settings/wcj-settings-general.php:121
11156
- msgid "Disables timepicker CSS loading."
11157
- msgstr ""
11158
-
11159
- #: includes/settings/wcj-settings-general.php:128
11160
- msgid "Timepicker JavaScript Loading"
11161
- msgstr ""
11162
-
11163
- #: includes/settings/wcj-settings-general.php:129
11164
- msgid "Disables timepicker JavaScript loading."
11165
- msgstr ""
11166
-
11167
- #: includes/settings/wcj-settings-general.php:140
11168
- msgid "PayPal Email per Product Options"
11169
- msgstr ""
11170
-
11171
- #: includes/settings/wcj-settings-general.php:145
11172
- msgid "PayPal Email per Product"
11173
- msgstr ""
11174
-
11175
- #: includes/settings/wcj-settings-general.php:147
11176
- #: includes/settings/wcj-settings-max-products-per-user.php:44
11177
- #: includes/settings/wcj-settings-product-by-date.php:54
11178
- #: includes/settings/wcj-settings-product-by-time.php:54
11179
- #: includes/settings/wcj-settings-wholesale-price.php:23
11180
- msgid "This will add new meta box to each product's edit page."
11181
- msgstr ""
11182
-
11183
- #: includes/settings/wcj-settings-general.php:157
11184
- msgid "Session Expiration Options"
11185
- msgstr ""
11186
-
11187
- #: includes/settings/wcj-settings-general.php:162
11188
- #: includes/settings/wcj-settings-general.php:177
11189
- msgid "Session Expiration"
11190
- msgstr ""
11191
-
11192
- #: includes/settings/wcj-settings-general.php:169
11193
- msgid "Session Expiring"
11194
- msgstr ""
11195
-
11196
- #: includes/settings/wcj-settings-general.php:170
11197
- msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
11198
- msgstr ""
11199
-
11200
- #: includes/settings/wcj-settings-general.php:178
11201
- msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
11202
- msgstr ""
11203
-
11204
- #: includes/settings/wcj-settings-general.php:189
11205
- msgid "Booster User Roles Changer Options"
11206
- msgstr ""
11207
-
11208
- #: includes/settings/wcj-settings-general.php:190
11209
- msgid "This will add user roles changer tool to admin bar."
11210
- msgstr ""
11211
-
11212
- #: includes/settings/wcj-settings-general.php:196
11213
- msgid "Booster User Roles Changer"
11214
- msgstr ""
11215
-
11216
- #: includes/settings/wcj-settings-general.php:205
11217
- msgid "Enabled for"
11218
- msgstr ""
11219
-
11220
- #: includes/settings/wcj-settings-general.php:217
11221
- msgid "PHP Options"
11222
- msgstr ""
11223
-
11224
- #: includes/settings/wcj-settings-general.php:222
11225
- msgid "PHP Memory Limit"
11226
- msgstr ""
11227
-
11228
- #: includes/settings/wcj-settings-general.php:223
11229
- msgid "megabytes."
11230
- msgstr ""
11231
-
11232
- #: includes/settings/wcj-settings-general.php:224
11233
- #: includes/settings/wcj-settings-general.php:233
11234
- #: includes/settings/wcj-settings-offer-price.php:183
11235
- #: includes/settings/wcj-settings-offer-price.php:191
11236
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
11237
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
11238
- msgid "Set zero to disable."
11239
- msgstr ""
11240
-
11241
- #: includes/settings/wcj-settings-general.php:231
11242
- msgid "PHP Time Limit"
11243
- msgstr ""
11244
-
11245
- #: includes/settings/wcj-settings-general.php:232
11246
- msgid "seconds."
11247
- msgstr ""
11248
-
11249
- #: includes/settings/wcj-settings-global-discount.php:24
11250
- msgid "Total Groups"
11251
- msgstr ""
11252
-
11253
- #: includes/settings/wcj-settings-global-discount.php:28
11254
- #: includes/settings/wcj-settings-product-by-user.php:138
11255
- #: includes/settings/wcj-settings-products-xml.php:29
11256
- #: includes/shipping/class-wc-shipping-wcj-custom.php:148
11257
- msgid "Press Save changes after you change this number."
11258
- msgstr ""
11259
-
11260
- #: includes/settings/wcj-settings-global-discount.php:45
11261
- msgid "Discount Group"
11262
- msgstr ""
11263
-
11264
- #: includes/settings/wcj-settings-global-discount.php:51
11265
- msgid "Enabled/disables the discount group."
11266
- msgstr ""
11267
-
11268
- #: includes/settings/wcj-settings-global-discount.php:59
11269
- msgid "Can be fixed or percent."
11270
- msgstr ""
11271
-
11272
- #: includes/settings/wcj-settings-global-discount.php:70
11273
- msgid "Must be negative number."
11274
- msgstr ""
11275
-
11276
- #: includes/settings/wcj-settings-global-discount.php:77
11277
- msgid "Final Correction"
11278
- msgstr ""
11279
-
11280
- #: includes/settings/wcj-settings-global-discount.php:78
11281
- #, php-format
11282
- msgid ""
11283
- "Will apply selected function and coefficient to the final price, e.g.: %s."
11284
- msgstr ""
11285
-
11286
- #: includes/settings/wcj-settings-global-discount.php:85
11287
- #: includes/settings/wcj-settings-multicurrency.php:79
11288
- #: includes/settings/wcj-settings-price-by-country.php:83
11289
- #: includes/settings/wcj-settings-product-price-by-formula.php:70
11290
- msgid "Round"
11291
- msgstr ""
11292
-
11293
- #: includes/settings/wcj-settings-global-discount.php:86
11294
- msgid "Ceil"
11295
- msgstr ""
11296
-
11297
- #: includes/settings/wcj-settings-global-discount.php:87
11298
- msgid "Floor"
11299
- msgstr ""
11300
-
11301
- #: includes/settings/wcj-settings-global-discount.php:91
11302
- msgid "Final correction coefficient"
11303
- msgstr ""
11304
-
11305
- #: includes/settings/wcj-settings-global-discount.php:98
11306
- msgid "Product Scope"
11307
- msgstr ""
11308
-
11309
- #: includes/settings/wcj-settings-global-discount.php:99
11310
- msgid ""
11311
- "Possible values: all products, only products that are already on sale, only "
11312
- "products that are not on sale."
11313
- msgstr ""
11314
-
11315
- #: includes/settings/wcj-settings-global-discount.php:104
11316
- #: includes/settings/wcj-settings-product-add-to-cart.php:65
11317
- #: includes/settings/wcj-settings-products-xml.php:207
11318
- msgid "All products"
11319
- msgstr ""
11320
-
11321
- #: includes/settings/wcj-settings-global-discount.php:105
11322
- msgid "Only products that are already on sale"
11323
- msgstr ""
11324
-
11325
- #: includes/settings/wcj-settings-global-discount.php:106
11326
- #: includes/settings/wcj-settings-products-xml.php:209
11327
- msgid "Only products that are not on sale"
11328
- msgstr ""
11329
-
11330
- #: includes/settings/wcj-settings-global-discount.php:110
11331
- #: includes/settings/wcj-settings-related-products.php:196
11332
- msgid "Include Product Categories"
11333
- msgstr ""
11334
-
11335
- #: includes/settings/wcj-settings-global-discount.php:111
11336
- msgid ""
11337
- "Set this field to apply discount to selected product categories only. Leave "
11338
- "blank to apply to all products."
11339
- msgstr ""
11340
-
11341
- #: includes/settings/wcj-settings-global-discount.php:119
11342
- #: includes/settings/wcj-settings-related-products.php:205
11343
- msgid "Exclude Product Categories"
11344
- msgstr ""
11345
-
11346
- #: includes/settings/wcj-settings-global-discount.php:120
11347
- msgid ""
11348
- "Set this field to NOT apply discount to selected product categories. Leave "
11349
- "blank to apply to all products."
11350
- msgstr ""
11351
-
11352
- #: includes/settings/wcj-settings-global-discount.php:128
11353
- #: includes/settings/wcj-settings-related-products.php:214
11354
- msgid "Include Product Tags"
11355
- msgstr ""
11356
-
11357
- #: includes/settings/wcj-settings-global-discount.php:129
11358
- msgid ""
11359
- "Set this field to apply discount to selected product tags only. Leave blank "
11360
- "to apply to all products."
11361
- msgstr ""
11362
-
11363
- #: includes/settings/wcj-settings-global-discount.php:137
11364
- #: includes/settings/wcj-settings-related-products.php:223
11365
- msgid "Exclude Product Tags"
11366
- msgstr ""
11367
-
11368
- #: includes/settings/wcj-settings-global-discount.php:138
11369
- msgid ""
11370
- "Set this field to NOT apply discount to selected product tags. Leave blank "
11371
- "to apply to all products."
11372
- msgstr ""
11373
-
11374
- #: includes/settings/wcj-settings-global-discount.php:148
11375
- msgid ""
11376
- "Set this field to apply discount to selected products only. Leave blank to "
11377
- "apply to all products."
11378
- msgstr ""
11379
-
11380
- #: includes/settings/wcj-settings-global-discount.php:159
11381
- msgid ""
11382
- "Set this field to NOT apply discount to selected products. Leave blank to "
11383
- "apply to all products."
11384
- msgstr ""
11385
-
11386
- #: includes/settings/wcj-settings-global-discount.php:175
11387
- #: includes/settings/wcj-settings-product-price-by-formula.php:95
11388
- msgid "Advanced Settings"
11389
- msgstr ""
11390
-
11391
- #: includes/settings/wcj-settings-global-discount.php:180
11392
- msgid "Global Discount in Admin"
11393
- msgstr ""
11394
-
11395
- #: includes/settings/wcj-settings-global-discount.php:182
11396
- msgid ""
11397
- "This will enable \"global discount\" product pricing in backend. It will "
11398
- "also affect some modules, e.g.: \"Products XML Feeds\" module."
11399
- msgstr ""
11400
-
11401
- #: includes/settings/wcj-settings-global-discount.php:188
11402
- #: includes/settings/wcj-settings-multicurrency-base-price.php:76
11403
- #: includes/settings/wcj-settings-multicurrency.php:168
11404
- #: includes/settings/wcj-settings-price-by-country.php:165
11405
- #: includes/settings/wcj-settings-product-price-by-formula.php:100
11406
- msgid "Price Filters Priority"
11407
- msgstr ""
11408
-
11409
- #: includes/settings/wcj-settings-global-discount.php:189
11410
- #: includes/settings/wcj-settings-multicurrency-base-price.php:77
11411
- #: includes/settings/wcj-settings-multicurrency.php:169
11412
- #: includes/settings/wcj-settings-price-by-country.php:166
11413
- #: includes/settings/wcj-settings-price-by-user-role.php:70
11414
- #: includes/settings/wcj-settings-product-addons.php:250
11415
- #: includes/settings/wcj-settings-product-price-by-formula.php:101
11416
- #: includes/settings/wcj-settings-wholesale-price.php:121
11417
- msgid ""
11418
- "Priority for all module's price filters. Set to zero to use default priority."
11419
- msgstr ""
11420
-
11421
- #: includes/settings/wcj-settings-left-to-free-shipping.php:14
11422
- msgid "Left to Free Shipping Info Options"
11423
- msgstr ""
11424
-
11425
- #: includes/settings/wcj-settings-left-to-free-shipping.php:16
11426
- msgid ""
11427
- "This section lets you enable info on cart, mini cart and checkout pages."
11428
- msgstr ""
11429
-
11430
- #: includes/settings/wcj-settings-left-to-free-shipping.php:17
11431
- #, php-format
11432
- msgid ""
11433
- "You can also use <em>Booster - Left to Free Shipping</em> widget, %s "
11434
- "shortcode or %s function."
11435
- msgstr ""
11436
-
11437
- #: includes/settings/wcj-settings-left-to-free-shipping.php:20
11438
- #, php-format
11439
- msgid "In content replaced values are: %s, %s and %s."
11440
- msgstr ""
11441
-
11442
- #: includes/settings/wcj-settings-left-to-free-shipping.php:27
11443
- msgid "Info on Cart"
11444
- msgstr ""
11445
-
11446
- #: includes/settings/wcj-settings-left-to-free-shipping.php:35
11447
- #: includes/settings/wcj-settings-left-to-free-shipping.php:66
11448
- #: includes/settings/wcj-settings-left-to-free-shipping.php:100
11449
- #: includes/settings/wcj-settings-left-to-free-shipping.php:135
11450
- msgid "You can use HTML and/or shortcodes (e.g. [wcj_wpml]) here."
11451
- msgstr ""
11452
-
11453
- #: includes/settings/wcj-settings-left-to-free-shipping.php:43
11454
- msgid ""
11455
- "Please note, that depending on the \"Position\" you select, your customer "
11456
- "may have to reload the cart page to see the updated left to free shipping "
11457
- "value. For example, if you select \"After cart totals\" position, then left "
11458
- "to free shipping value will be updated as soon as customer updates the cart. "
11459
- "However if you select \"After cart\" position instead message will not be "
11460
- "updated, and customer will have to reload the page. In other words, message "
11461
- "position should be inside that page part that is automatically updated on "
11462
- "cart update."
11463
- msgstr ""
11464
-
11465
- #: includes/settings/wcj-settings-left-to-free-shipping.php:50
11466
- #: includes/settings/wcj-settings-left-to-free-shipping.php:84
11467
- #: includes/settings/wcj-settings-left-to-free-shipping.php:128
11468
- msgid "Position Order (Priority)"
11469
- msgstr ""
11470
-
11471
- #: includes/settings/wcj-settings-left-to-free-shipping.php:56
11472
- msgid "Info on Mini Cart"
11473
- msgstr ""
11474
-
11475
- #: includes/settings/wcj-settings-left-to-free-shipping.php:78
11476
- #: includes/settings/wcj-settings-mini-cart.php:51
11477
- msgid "Before mini cart"
11478
- msgstr ""
11479
-
11480
- #: includes/settings/wcj-settings-left-to-free-shipping.php:79
11481
- #: includes/settings/wcj-settings-mini-cart.php:52
11482
- msgid "Before buttons"
11483
- msgstr ""
11484
-
11485
- #: includes/settings/wcj-settings-left-to-free-shipping.php:80
11486
- #: includes/settings/wcj-settings-mini-cart.php:53
11487
- msgid "After mini cart"
11488
- msgstr ""
11489
-
11490
- #: includes/settings/wcj-settings-left-to-free-shipping.php:90
11491
- msgid "Info on Checkout"
11492
- msgstr ""
11493
-
11494
- #: includes/settings/wcj-settings-left-to-free-shipping.php:119
11495
- msgid "Order review: Before shipping"
11496
- msgstr ""
11497
-
11498
- #: includes/settings/wcj-settings-left-to-free-shipping.php:120
11499
- msgid "Order review: After shipping"
11500
- msgstr ""
11501
-
11502
- #: includes/settings/wcj-settings-left-to-free-shipping.php:121
11503
- msgid "Order review: Payment: Before submit button"
11504
- msgstr ""
11505
-
11506
- #: includes/settings/wcj-settings-left-to-free-shipping.php:122
11507
- msgid "Order review: Payment: After submit button"
11508
- msgstr ""
11509
-
11510
- #: includes/settings/wcj-settings-left-to-free-shipping.php:134
11511
- msgid "Message on Free Shipping Reached"
11512
- msgstr ""
11513
-
11514
- #: includes/settings/wcj-settings-left-to-free-shipping.php:136
11515
- msgid "Set empty to disable."
11516
- msgstr ""
11517
-
11518
- #: includes/settings/wcj-settings-max-products-per-user.php:26
11519
- msgid "Maximum Allowed Each Product's Quantity per User"
11520
- msgstr ""
11521
-
11522
- #: includes/settings/wcj-settings-max-products-per-user.php:61
11523
- msgid ""
11524
- "This sets when (i.e. on which order status) users' quantities should be "
11525
- "updated."
11526
- msgstr ""
11527
-
11528
- #: includes/settings/wcj-settings-max-products-per-user.php:62
11529
- msgid ""
11530
- "You can select multiple order status here - quantities will be updated only "
11531
- "once, on whichever status is triggered first."
11532
- msgstr ""
11533
-
11534
- #: includes/settings/wcj-settings-max-products-per-user.php:63
11535
- msgid "If no status are selected - \"Completed\" order status is used."
11536
- msgstr ""
11537
-
11538
- #: includes/settings/wcj-settings-max-products-per-user.php:71
11539
- #: includes/settings/wcj-settings-offer-price.php:214
11540
- msgid "Customer Message"
11541
- msgstr ""
11542
-
11543
- #: includes/settings/wcj-settings-max-products-per-user.php:79
11544
- msgid "Block Add to Cart"
11545
- msgstr ""
11546
-
11547
- #: includes/settings/wcj-settings-max-products-per-user.php:81
11548
- msgid ""
11549
- "This will stop customer from adding product to cart on exceeded quantities."
11550
- msgstr ""
11551
-
11552
- #: includes/settings/wcj-settings-max-products-per-user.php:87
11553
- msgid "Block Checkout Page"
11554
- msgstr ""
11555
-
11556
- #: includes/settings/wcj-settings-max-products-per-user.php:89
11557
- msgid ""
11558
- "This will stop customer from accessing the checkout page on exceeded "
11559
- "quantities. Customer will be redirected to the cart page."
11560
- msgstr ""
11561
-
11562
- #: includes/settings/wcj-settings-max-products-per-user.php:95
11563
- #: includes/settings/wcj-settings-max-products-per-user.php:101
11564
- msgid "Calculate Data"
11565
- msgstr ""
11566
-
11567
- #: includes/settings/wcj-settings-mini-cart.php:14
11568
- msgid "Mini Cart Custom Info Blocks"
11569
- msgstr ""
11570
-
11571
- #: includes/settings/wcj-settings-modules-by-user-roles.php:28
11572
- msgid "Enable Modules"
11573
- msgstr ""
11574
-
11575
- #: includes/settings/wcj-settings-modules-by-user-roles.php:29
11576
- msgid ""
11577
- "Select modules which should be enabled for current user role. All other "
11578
- "modules will be disabled. Ignored if left empty."
11579
- msgstr ""
11580
-
11581
- #: includes/settings/wcj-settings-modules-by-user-roles.php:37
11582
- msgid "Disable Modules"
11583
- msgstr ""
11584
-
11585
- #: includes/settings/wcj-settings-modules-by-user-roles.php:38
11586
- msgid ""
11587
- "Select modules which should be disabled for current user role. All other "
11588
- "modules will be enabled. Ignored if left empty."
11589
- msgstr ""
11590
-
11591
- #: includes/settings/wcj-settings-more-button-labels.php:14
11592
- msgid "Place order (Order now) Button"
11593
- msgstr ""
11594
-
11595
- #: includes/settings/wcj-settings-more-button-labels.php:20
11596
- msgid "Leave blank for WooCommerce default."
11597
- msgstr ""
11598
-
11599
- #: includes/settings/wcj-settings-more-button-labels.php:21
11600
- msgid "Button on the checkout page."
11601
- msgstr ""
11602
-
11603
- #: includes/settings/wcj-settings-more-button-labels.php:27
11604
- msgid "Override Default Text"
11605
- msgstr ""
11606
-
11607
- #: includes/settings/wcj-settings-more-button-labels.php:29
11608
- msgid ""
11609
- "Enable this if button text is not changing for some payment gateway (e.g. "
11610
- "PayPal)."
11611
- msgstr ""
11612
-
11613
- #: includes/settings/wcj-settings-multicurrency-base-price.php:37
11614
- msgid "Round Prices"
11615
- msgstr ""
11616
-
11617
- #: includes/settings/wcj-settings-multicurrency-base-price.php:44
11618
- #: includes/settings/wcj-settings-product-price-by-formula.php:76
11619
- msgid "rounding precision"
11620
- msgstr ""
11621
-
11622
- #: includes/settings/wcj-settings-multicurrency-base-price.php:45
11623
- msgid "Number of decimals."
11624
- msgstr ""
11625
-
11626
- #: includes/settings/wcj-settings-multicurrency-base-price.php:52
11627
- msgid "Convert Product Prices in Admin Products List"
11628
- msgstr ""
11629
-
11630
- #: includes/settings/wcj-settings-multicurrency-base-price.php:68
11631
- msgid "Save Calculated Products Prices"
11632
- msgstr ""
11633
-
11634
- #: includes/settings/wcj-settings-multicurrency-base-price.php:83
11635
- msgid "WooCommerce Price Filter Compatibility"
11636
- msgstr ""
11637
-
11638
- #: includes/settings/wcj-settings-multicurrency-base-price.php:84
11639
- msgid "Add compatibility with WooCommerce Price Filter Widget"
11640
- msgstr ""
11641
-
11642
- #: includes/settings/wcj-settings-multicurrency-base-price.php:90
11643
- msgid "Third Party Price Filter Compatibility"
11644
- msgstr ""
11645
-
11646
- #: includes/settings/wcj-settings-multicurrency-base-price.php:91
11647
- msgid "Add compatibility with Third Party Price Filter Widgets"
11648
- msgstr ""
11649
-
11650
- #: includes/settings/wcj-settings-multicurrency-base-price.php:92
11651
- msgid "Requires WooCommerce Price Filter Compatibility option enabled"
11652
- msgstr ""
11653
-
11654
- #: includes/settings/wcj-settings-multicurrency.php:23
11655
- msgid ""
11656
- "Select how you want currency exchange rates to be updated. Possible options "
11657
- "are: manually or automatically via Currency Exchange Rates module."
11658
- msgstr ""
11659
-
11660
- #: includes/settings/wcj-settings-multicurrency.php:38
11661
- msgid "Multicurrency on per Product Basis"
11662
- msgstr ""
11663
-
11664
- #: includes/settings/wcj-settings-multicurrency.php:40
11665
- msgid ""
11666
- "If you enable this option, you will be able to enter prices for products in "
11667
- "different currencies directly (i.e. without exchange rates). This will add "
11668
- "meta boxes in product edit."
11669
- msgstr ""
11670
-
11671
- #: includes/settings/wcj-settings-multicurrency.php:46
11672
- msgid "Variable products: list available/active variations only"
11673
- msgstr ""
11674
-
11675
- #: includes/settings/wcj-settings-multicurrency.php:47
11676
- msgid ""
11677
- "Defines which variations are listed on admin product edit page in "
11678
- "Multicurrency meta box. Ignored if \"Multicurrency on per Product Basis\" "
11679
- "option is disabled."
11680
- msgstr ""
11681
-
11682
- #: includes/settings/wcj-settings-multicurrency.php:53
11683
- msgid "Add option to make empty price"
11684
- msgstr ""
11685
-
11686
- #: includes/settings/wcj-settings-multicurrency.php:59
11687
- msgid "Revert Currency to Shop's Default"
11688
- msgstr ""
11689
-
11690
- #: includes/settings/wcj-settings-multicurrency.php:60
11691
- msgid ""
11692
- "Enable this if you want prices to revert back to your shop's default "
11693
- "currency, when customer reaches the cart and/or checkout page."
11694
- msgstr ""
11695
-
11696
- #: includes/settings/wcj-settings-multicurrency.php:65
11697
- msgid "Do not revert"
11698
- msgstr ""
11699
-
11700
- #: includes/settings/wcj-settings-multicurrency.php:66
11701
- msgid "Revert on cart page only"
11702
- msgstr ""
11703
-
11704
- #: includes/settings/wcj-settings-multicurrency.php:67
11705
- msgid "Revert on checkout page only"
11706
- msgstr ""
11707
-
11708
- #: includes/settings/wcj-settings-multicurrency.php:68
11709
- msgid "Revert on both cart & checkout pages"
11710
- msgstr ""
11711
-
11712
- #: includes/settings/wcj-settings-multicurrency.php:72
11713
- #: includes/settings/wcj-settings-payment-gateways-fees.php:66
11714
- #: includes/settings/wcj-settings-product-price-by-formula.php:64
11715
- msgid "Rounding"
11716
- msgstr ""
11717
-
11718
- #: includes/settings/wcj-settings-multicurrency.php:73
11719
- msgid "If using exchange rates, choose rounding here."
11720
- msgstr ""
11721
-
11722
- #: includes/settings/wcj-settings-multicurrency.php:78
11723
- #: includes/settings/wcj-settings-price-by-country.php:82
11724
- msgid "No rounding"
11725
- msgstr ""
11726
-
11727
- #: includes/settings/wcj-settings-multicurrency.php:80
11728
- #: includes/settings/wcj-settings-price-by-country.php:85
11729
- #: includes/settings/wcj-settings-product-price-by-formula.php:71
11730
- msgid "Round up"
11731
- msgstr ""
11732
-
11733
- #: includes/settings/wcj-settings-multicurrency.php:81
11734
- #: includes/settings/wcj-settings-price-by-country.php:84
11735
- #: includes/settings/wcj-settings-product-price-by-formula.php:72
11736
- msgid "Round down"
11737
- msgstr ""
11738
-
11739
- #: includes/settings/wcj-settings-multicurrency.php:85
11740
- msgid "Rounding Precision"
11741
- msgstr ""
11742
-
11743
- #: includes/settings/wcj-settings-multicurrency.php:86
11744
- msgid "If rounding is enabled, set rounding precision here."
11745
- msgstr ""
11746
-
11747
- #: includes/settings/wcj-settings-multicurrency.php:93
11748
- msgid "Currency Switcher Template"
11749
- msgstr ""
11750
-
11751
- #: includes/settings/wcj-settings-multicurrency.php:94
11752
- msgid "Set how you want currency switcher to be displayed on frontend."
11753
- msgstr ""
11754
-
11755
- #: includes/settings/wcj-settings-multicurrency.php:106
11756
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:65
11757
- #: includes/settings/wcj-settings-product-msrp.php:105
11758
- msgid "Compatibility"
11759
- msgstr ""
11760
-
11761
- #: includes/settings/wcj-settings-multicurrency.php:111
11762
- msgid "WooCommerce Coupons"
11763
- msgstr ""
11764
-
11765
- #: includes/settings/wcj-settings-multicurrency.php:113
11766
- msgid ""
11767
- "When a fixed coupon is used its value changes according to the current "
11768
- "currency"
11769
- msgstr ""
11770
-
11771
- #: includes/settings/wcj-settings-multicurrency.php:119
11772
- msgid "WooCommerce Smart Coupons"
11773
- msgstr ""
11774
-
11775
- #: includes/settings/wcj-settings-multicurrency.php:126
11776
- msgid "WooCommerce Price Filter"
11777
- msgstr ""
11778
-
11779
- #: includes/settings/wcj-settings-multicurrency.php:128
11780
- msgid "Adds Compatibility with Price Filter widget"
11781
- msgstr ""
11782
-
11783
- #: includes/settings/wcj-settings-multicurrency.php:134
11784
- msgid "Price Sorting with Per Product"
11785
- msgstr ""
11786
-
11787
- #: includes/settings/wcj-settings-multicurrency.php:136
11788
- msgid "Fixes Price Sorting if Per Product option is enabled"
11789
- msgstr ""
11790
-
11791
- #: includes/settings/wcj-settings-multicurrency.php:142
11792
- msgid "WooCommerce Import"
11793
- msgstr ""
11794
-
11795
- #: includes/settings/wcj-settings-multicurrency.php:144
11796
- msgid ""
11797
- "Fixes WooCommerce Import Tool preventing it from converting some uppercase "
11798
- "meta to lowercase"
11799
- msgstr ""
11800
-
11801
- #: includes/settings/wcj-settings-multicurrency.php:159
11802
- msgid "Additional Price Filters"
11803
- msgstr ""
11804
-
11805
- #: includes/settings/wcj-settings-multicurrency.php:160
11806
- msgid ""
11807
- "Add additional price filters here. One per line. Leave blank if not sure."
11808
- msgstr ""
11809
-
11810
- #: includes/settings/wcj-settings-multicurrency.php:175
11811
- msgid "Save Prices on Exchange Update"
11812
- msgstr ""
11813
-
11814
- #: includes/settings/wcj-settings-multicurrency.php:177
11815
- msgid ""
11816
- "Save min and max prices on exchange rate update, via background processing."
11817
- msgstr ""
11818
-
11819
- #: includes/settings/wcj-settings-multicurrency.php:177
11820
- msgid ""
11821
- "All products with \"per product\" options registered related to the currency "
11822
- "will be affected."
11823
- msgstr ""
11824
-
11825
- #: includes/settings/wcj-settings-multicurrency.php:189
11826
- msgid ""
11827
- "One currency probably should be set to current (original) shop currency with "
11828
- "an exchange rate of 1."
11829
- msgstr ""
11830
-
11831
- #: includes/settings/wcj-settings-multicurrency.php:194
11832
- msgid ""
11833
- "Press Save changes after setting this option, so new settings fields will be "
11834
- "added."
11835
- msgstr ""
11836
-
11837
- #: includes/settings/wcj-settings-multicurrency.php:243
11838
- msgid "Role Defaults"
11839
- msgstr ""
11840
-
11841
- #: includes/settings/wcj-settings-multicurrency.php:250
11842
- msgid "Roles"
11843
- msgstr ""
11844
-
11845
- #: includes/settings/wcj-settings-multicurrency.php:251
11846
- #: includes/settings/wcj-settings-wholesale-price.php:180
11847
- msgid "Save settings after you change this option. Leave blank to disable."
11848
- msgstr ""
11849
-
11850
- #: includes/settings/wcj-settings-multicurrency.php:274
11851
- msgid "No default currency"
11852
- msgstr ""
11853
-
11854
- #: includes/settings/wcj-settings-my-account.php:19
11855
- msgid "Add Order Status Actions"
11856
- msgstr ""
11857
-
11858
- #: includes/settings/wcj-settings-my-account.php:20
11859
- msgid "Let your customers change order status manually."
11860
- msgstr ""
11861
-
11862
- #: includes/settings/wcj-settings-my-account.php:28
11863
- msgid "Add User Role Selection to Registration Form"
11864
- msgstr ""
11865
-
11866
- #: includes/settings/wcj-settings-my-account.php:30
11867
- msgid "Let your customers choose their user role manually."
11868
- msgstr ""
11869
-
11870
- #: includes/settings/wcj-settings-my-account.php:36
11871
- msgid "Default user role"
11872
- msgstr ""
11873
-
11874
- #: includes/settings/wcj-settings-my-account.php:43
11875
- msgid "User roles options"
11876
- msgstr ""
11877
-
11878
- #: includes/settings/wcj-settings-my-account.php:57
11879
- msgid "Menu & Endpoints Options"
11880
- msgstr ""
11881
-
11882
- #: includes/settings/wcj-settings-my-account.php:58
11883
- msgid "Tip"
11884
- msgstr ""
11885
-
11886
- #: includes/settings/wcj-settings-my-account.php:59
11887
- #, php-format
11888
- msgid "If you wish to disable some menu items, you can do it in %s."
11889
- msgstr ""
11890
-
11891
- #: includes/settings/wcj-settings-my-account.php:61
11892
- msgid "WooCommerce > Settings > Advanced > Page setup > Account endpoints"
11893
- msgstr ""
11894
-
11895
- #: includes/settings/wcj-settings-my-account.php:66
11896
- msgid "Customize Menu & Endpoints"
11897
- msgstr ""
11898
-
11899
- #: includes/settings/wcj-settings-my-account.php:77
11900
- msgid "Sets title."
11901
- msgstr ""
11902
-
11903
- #: includes/settings/wcj-settings-my-account.php:77
11904
- msgid "Set empty, to use the default title."
11905
- msgstr ""
11906
-
11907
- #: includes/settings/wcj-settings-my-account.php:86
11908
- msgid "Customize Menu Order"
11909
- msgstr ""
11910
-
11911
- #: includes/settings/wcj-settings-my-account.php:96
11912
- #, php-format
11913
- msgid "Default: %s"
11914
- msgstr ""
11915
-
11916
- #: includes/settings/wcj-settings-my-account.php:103
11917
- msgid "Add Custom Menu Items"
11918
- msgstr ""
11919
-
11920
- #: includes/settings/wcj-settings-my-account.php:112
11921
- msgid "Custom menu items."
11922
- msgstr ""
11923
-
11924
- #: includes/settings/wcj-settings-my-account.php:113
11925
- #, php-format
11926
- msgid "Add in %s format. One per line. E.g.: %s."
11927
- msgstr ""
11928
-
11929
- #: includes/settings/wcj-settings-my-account.php:129
11930
- #: includes/settings/wcj-settings-my-account.php:134
11931
- msgid "Custom Pages"
11932
- msgstr ""
11933
-
11934
- #: includes/settings/wcj-settings-my-account.php:141
11935
- msgid "Total Pages"
11936
- msgstr ""
11937
-
11938
- #: includes/settings/wcj-settings-my-account.php:156
11939
- msgid "Custom Page"
11940
- msgstr ""
11941
-
11942
- #: includes/settings/wcj-settings-my-account.php:180
11943
- #: includes/settings/wcj-settings-my-account.php:185
11944
- msgid "Dashboard Customization"
11945
- msgstr ""
11946
-
11947
- #: includes/settings/wcj-settings-my-account.php:192
11948
- msgid "Custom Dashboard Content"
11949
- msgstr ""
11950
-
11951
- #: includes/settings/wcj-settings-my-account.php:193
11952
- msgid ""
11953
- "This will add content at the beginning of dashboard. If you need to add "
11954
- "custom content to the end of the dashboard, use <strong>Custom Info Blocks</"
11955
- "strong> section and select <strong>Account dashboard</strong> position."
11956
- msgstr ""
11957
-
11958
- #: includes/settings/wcj-settings-my-account.php:194
11959
- #: includes/settings/wcj-settings-payment-gateways-fees.php:115
11960
- #: includes/settings/wcj-settings-payment-gateways-fees.php:127
11961
- #: includes/settings/wcj-settings-stock.php:42
11962
- #: includes/settings/wcj-settings-stock.php:55
11963
- msgid "Ignored if empty."
11964
- msgstr ""
11965
-
11966
- #: includes/settings/wcj-settings-my-account.php:201
11967
- msgid "Hide \"Hello ...\" Message"
11968
- msgstr ""
11969
-
11970
- #: includes/settings/wcj-settings-my-account.php:208
11971
- msgid "Hide \"From your account dashboard ...\" Message"
11972
- msgstr ""
11973
-
11974
- #: includes/settings/wcj-settings-my-account.php:221
11975
- #: includes/settings/wcj-settings-my-account.php:226
11976
- msgid "Custom Info Blocks"
11977
- msgstr ""
11978
-
11979
- #: includes/settings/wcj-settings-my-account.php:266
11980
- msgid "Account content"
11981
- msgstr ""
11982
-
11983
- #: includes/settings/wcj-settings-my-account.php:267
11984
- msgid "Account dashboard"
11985
- msgstr ""
11986
-
11987
- #: includes/settings/wcj-settings-my-account.php:268
11988
- msgid "Account navigation"
11989
- msgstr ""
11990
-
11991
- #: includes/settings/wcj-settings-my-account.php:269
11992
- msgid "After account downloads"
11993
- msgstr ""
11994
-
11995
- #: includes/settings/wcj-settings-my-account.php:270
11996
- msgid "After account navigation"
11997
- msgstr ""
11998
-
11999
- #: includes/settings/wcj-settings-my-account.php:271
12000
- msgid "After account orders"
12001
- msgstr ""
12002
-
12003
- #: includes/settings/wcj-settings-my-account.php:272
12004
- msgid "After account payment methods"
12005
- msgstr ""
12006
-
12007
- #: includes/settings/wcj-settings-my-account.php:273
12008
- msgid "After available downloads"
12009
- msgstr ""
12010
-
12011
- #: includes/settings/wcj-settings-my-account.php:274
12012
- msgid "After customer login form"
12013
- msgstr ""
12014
-
12015
- #: includes/settings/wcj-settings-my-account.php:275
12016
- msgid "After edit account address form"
12017
- msgstr ""
12018
-
12019
- #: includes/settings/wcj-settings-my-account.php:276
12020
- msgid "After edit account form"
12021
- msgstr ""
12022
-
12023
- #: includes/settings/wcj-settings-my-account.php:277
12024
- msgid "After my account"
12025
- msgstr ""
12026
-
12027
- #: includes/settings/wcj-settings-my-account.php:278
12028
- msgid "Available download end"
12029
- msgstr ""
12030
-
12031
- #: includes/settings/wcj-settings-my-account.php:279
12032
- msgid "Available download start"
12033
- msgstr ""
12034
-
12035
- #: includes/settings/wcj-settings-my-account.php:280
12036
- msgid "Available downloads"
12037
- msgstr ""
12038
-
12039
- #: includes/settings/wcj-settings-my-account.php:281
12040
- msgid "Before account downloads"
12041
- msgstr ""
12042
-
12043
- #: includes/settings/wcj-settings-my-account.php:282
12044
- msgid "Before account navigation"
12045
- msgstr ""
12046
-
12047
- #: includes/settings/wcj-settings-my-account.php:283
12048
- msgid "Before account orders"
12049
- msgstr ""
12050
-
12051
- #: includes/settings/wcj-settings-my-account.php:284
12052
- msgid "Before account orders pagination"
12053
- msgstr ""
12054
-
12055
- #: includes/settings/wcj-settings-my-account.php:285
12056
- msgid "Before account payment methods"
12057
- msgstr ""
12058
-
12059
- #: includes/settings/wcj-settings-my-account.php:286
12060
- msgid "Before Available downloads"
12061
- msgstr ""
12062
-
12063
- #: includes/settings/wcj-settings-my-account.php:287
12064
- msgid "Before customer login form"
12065
- msgstr ""
12066
-
12067
- #: includes/settings/wcj-settings-my-account.php:288
12068
- msgid "Before edit account address form"
12069
- msgstr ""
12070
-
12071
- #: includes/settings/wcj-settings-my-account.php:289
12072
- msgid "Before edit account form"
12073
- msgstr ""
12074
-
12075
- #: includes/settings/wcj-settings-my-account.php:290
12076
- msgid "Before my account"
12077
- msgstr ""
12078
-
12079
- #: includes/settings/wcj-settings-my-account.php:291
12080
- msgid "Edit account form"
12081
- msgstr ""
12082
-
12083
- #: includes/settings/wcj-settings-my-account.php:292
12084
- msgid "Edit account form end"
12085
- msgstr ""
12086
-
12087
- #: includes/settings/wcj-settings-my-account.php:293
12088
- msgid "Edit account form start"
12089
- msgstr ""
12090
-
12091
- #: includes/settings/wcj-settings-my-account.php:294
12092
- msgid "Login form"
12093
- msgstr ""
12094
-
12095
- #: includes/settings/wcj-settings-my-account.php:295
12096
- msgid "Login form end"
12097
- msgstr ""
12098
-
12099
- #: includes/settings/wcj-settings-my-account.php:296
12100
- msgid "Login form start"
12101
- msgstr ""
12102
-
12103
- #: includes/settings/wcj-settings-my-account.php:297
12104
- msgid "Lost password form"
12105
- msgstr ""
12106
-
12107
- #: includes/settings/wcj-settings-my-account.php:298
12108
- msgid "Register form"
12109
- msgstr ""
12110
-
12111
- #: includes/settings/wcj-settings-my-account.php:299
12112
- msgid "Register form end"
12113
- msgstr ""
12114
-
12115
- #: includes/settings/wcj-settings-my-account.php:300
12116
- msgid "Register form start"
12117
- msgstr ""
12118
-
12119
- #: includes/settings/wcj-settings-my-account.php:301
12120
- msgid "Reset password form"
12121
- msgstr ""
12122
-
12123
- #: includes/settings/wcj-settings-offer-price.php:13
12124
- msgid "Enable for all products"
12125
- msgstr ""
12126
-
12127
- #: includes/settings/wcj-settings-offer-price.php:14
12128
- msgid "Enable for all products with empty price"
12129
- msgstr ""
12130
-
12131
- #: includes/settings/wcj-settings-offer-price.php:15
12132
- msgid "Enable per product"
12133
- msgstr ""
12134
-
12135
- #: includes/settings/wcj-settings-offer-price.php:16
12136
- msgid "Enable per product category"
12137
- msgstr ""
12138
-
12139
- #: includes/settings/wcj-settings-offer-price.php:17
12140
- msgid "Enable per product and per product category"
12141
- msgstr ""
12142
-
12143
- #: includes/settings/wcj-settings-offer-price.php:28
12144
- #, php-format
12145
- msgid "Possible values: %s."
12146
- msgstr ""
12147
-
12148
- #: includes/settings/wcj-settings-offer-price.php:29
12149
- msgid ""
12150
- "If enable per product is selected, this will add new meta box to each "
12151
- "product's edit page."
12152
- msgstr ""
12153
-
12154
- #: includes/settings/wcj-settings-offer-price.php:38
12155
- msgid "Product categories"
12156
- msgstr ""
12157
-
12158
- #: includes/settings/wcj-settings-offer-price.php:39
12159
- msgid "Ignored if enable per product category is not selected above."
12160
- msgstr ""
12161
-
12162
- #: includes/settings/wcj-settings-offer-price.php:48
12163
- #: includes/settings/wcj-settings-order-min-amount.php:29
12164
- #: includes/settings/wcj-settings-order-min-amount.php:36
12165
- #: includes/settings/wcj-settings-payment-gateways-fees.php:98
12166
- msgid "Exclude"
12167
- msgstr ""
12168
-
12169
- #: includes/settings/wcj-settings-offer-price.php:50
12170
- msgid "Excludes out of stock products."
12171
- msgstr ""
12172
-
12173
- #: includes/settings/wcj-settings-offer-price.php:60
12174
- msgid "Button Options"
12175
- msgstr ""
12176
-
12177
- #: includes/settings/wcj-settings-offer-price.php:72
12178
- msgid "CSS Class"
12179
- msgstr ""
12180
-
12181
- #: includes/settings/wcj-settings-offer-price.php:79
12182
- msgid "CSS Style"
12183
- msgstr ""
12184
-
12185
- #: includes/settings/wcj-settings-offer-price.php:87
12186
- msgid "Position On Single Product Page"
12187
- msgstr ""
12188
-
12189
- #: includes/settings/wcj-settings-offer-price.php:93
12190
- #: includes/settings/wcj-settings-product-custom-info.php:102
12191
- #: includes/settings/wcj-settings-upsells.php:58
12192
- msgid "Before single product"
12193
- msgstr ""
12194
-
12195
- #: includes/settings/wcj-settings-offer-price.php:96
12196
- #: includes/settings/wcj-settings-product-custom-info.php:107
12197
- msgid "Before add to cart form"
12198
- msgstr ""
12199
-
12200
- #: includes/settings/wcj-settings-offer-price.php:97
12201
- #: includes/settings/wcj-settings-product-custom-info.php:110
12202
- msgid "After add to cart form"
12203
- msgstr ""
12204
-
12205
- #: includes/settings/wcj-settings-offer-price.php:99
12206
- #: includes/settings/wcj-settings-product-custom-info.php:106
12207
- #: includes/settings/wcj-settings-upsells.php:62
12208
- msgid "After single product"
12209
- msgstr ""
12210
-
12211
- #: includes/settings/wcj-settings-offer-price.php:103
12212
- #: includes/settings/wcj-settings-offer-price.php:123
12213
- msgid "Position Priority (i.e. Order)"
12214
- msgstr ""
12215
-
12216
- #: includes/settings/wcj-settings-offer-price.php:109
12217
- msgid "Position On Archive Pages"
12218
- msgstr ""
12219
-
12220
- #: includes/settings/wcj-settings-offer-price.php:110
12221
- msgid "Possible values: Do not add; Before product; After product."
12222
- msgstr ""
12223
-
12224
- #: includes/settings/wcj-settings-offer-price.php:130
12225
- msgid "Advanced: Custom Position(s)"
12226
- msgstr ""
12227
-
12228
- #: includes/settings/wcj-settings-offer-price.php:131
12229
- msgid ""
12230
- "Add custom hook. If adding more than one hook, separate with vertical bar "
12231
- "( | ). Ignored if empty."
12232
- msgstr ""
12233
-
12234
- #: includes/settings/wcj-settings-offer-price.php:140
12235
- msgid "Custom Position Priority (i.e. Order)"
12236
- msgstr ""
12237
-
12238
- #: includes/settings/wcj-settings-offer-price.php:141
12239
- msgid ""
12240
- "Add custom hook priority. If adding more than one hook, separate with "
12241
- "vertical bar ( | )."
12242
- msgstr ""
12243
-
12244
- #: includes/settings/wcj-settings-offer-price.php:153
12245
- msgid "Form and Notice Options"
12246
- msgstr ""
12247
-
12248
- #: includes/settings/wcj-settings-offer-price.php:158
12249
- msgid "Price Input"
12250
- msgstr ""
12251
-
12252
- #: includes/settings/wcj-settings-offer-price.php:167
12253
- #: includes/settings/wcj-settings-product-by-user.php:69
12254
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:24
12255
- msgid "Price Step"
12256
- msgstr ""
12257
-
12258
- #: includes/settings/wcj-settings-offer-price.php:175
12259
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:33
12260
- msgid "Minimal Price"
12261
- msgstr ""
12262
-
12263
- #: includes/settings/wcj-settings-offer-price.php:182
12264
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:42
12265
- msgid "Maximal Price"
12266
- msgstr ""
12267
-
12268
- #: includes/settings/wcj-settings-offer-price.php:190
12269
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:51
12270
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:24
12271
- msgid "Default Price"
12272
- msgstr ""
12273
-
12274
- #: includes/settings/wcj-settings-offer-price.php:198
12275
- msgid "Customer Email"
12276
- msgstr ""
12277
-
12278
- #: includes/settings/wcj-settings-offer-price.php:222
12279
- msgid "Send a Copy to Customer Checkbox"
12280
- msgstr ""
12281
-
12282
- #: includes/settings/wcj-settings-offer-price.php:230
12283
- msgid "Form Header"
12284
- msgstr ""
12285
-
12286
- #: includes/settings/wcj-settings-offer-price.php:238
12287
- msgid "Form Button Label"
12288
- msgstr ""
12289
-
12290
- #: includes/settings/wcj-settings-offer-price.php:245
12291
- msgid "Form Footer"
12292
- msgstr ""
12293
-
12294
- #: includes/settings/wcj-settings-offer-price.php:252
12295
- msgid "Required HTML"
12296
- msgstr ""
12297
-
12298
- #: includes/settings/wcj-settings-offer-price.php:259
12299
- msgid "Customer Notice"
12300
- msgstr ""
12301
-
12302
- #: includes/settings/wcj-settings-offer-price.php:270
12303
- msgid "Styling Options"
12304
- msgstr ""
12305
-
12306
- #: includes/settings/wcj-settings-offer-price.php:275
12307
- msgid "Form Width"
12308
- msgstr ""
12309
-
12310
- #: includes/settings/wcj-settings-offer-price.php:281
12311
- msgid "Header Background Color"
12312
- msgstr ""
12313
-
12314
- #: includes/settings/wcj-settings-offer-price.php:287
12315
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:66
12316
- msgid "Header Text Color"
12317
- msgstr ""
12318
-
12319
- #: includes/settings/wcj-settings-offer-price.php:293
12320
- msgid "Footer Background Color"
12321
- msgstr ""
12322
-
12323
- #: includes/settings/wcj-settings-offer-price.php:299
12324
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:38
12325
- msgid "Footer Text Color"
12326
- msgstr ""
12327
-
12328
- #: includes/settings/wcj-settings-offer-price.php:314
12329
- msgid "Email Recipient"
12330
- msgstr ""
12331
-
12332
- #: includes/settings/wcj-settings-offer-price.php:315
12333
- msgid "Can be comma separated list."
12334
- msgstr ""
12335
-
12336
- #: includes/settings/wcj-settings-offer-price.php:317
12337
- #, php-format
12338
- msgid "Use %s to send to administrator email: %s."
12339
- msgstr ""
12340
-
12341
- #: includes/settings/wcj-settings-offer-price.php:351
12342
- #: includes/settings/wcj-settings-product-by-condition.php:57
12343
- #: includes/settings/wcj-settings-product-msrp.php:86
12344
- msgid "Admin Options"
12345
- msgstr ""
12346
-
12347
- #: includes/settings/wcj-settings-offer-price.php:356
12348
- msgid "Offer Price History Meta Box Columns"
12349
- msgstr ""
12350
-
12351
- #: includes/settings/wcj-settings-order-custom-statuses.php:20
12352
- msgid "Enable the module to add custom statuses to the list."
12353
- msgstr ""
12354
-
12355
- #: includes/settings/wcj-settings-order-custom-statuses.php:21
12356
- msgid ""
12357
- "You can change the default order status here. However payment gateways can "
12358
- "change this status immediately on order creation. E.g. BACS gateway will "
12359
- "change status to On-hold."
12360
- msgstr ""
12361
-
12362
- #: includes/settings/wcj-settings-order-custom-statuses.php:25
12363
- #: includes/settings/wcj-settings-payment-gateways-currency.php:43
12364
- msgid "No changes"
12365
- msgstr ""
12366
-
12367
- #: includes/settings/wcj-settings-order-custom-statuses.php:28
12368
- msgid "Add All Statuses to Admin Order Bulk Actions"
12369
- msgstr ""
12370
-
12371
- #: includes/settings/wcj-settings-order-custom-statuses.php:30
12372
- msgid ""
12373
- "If you wish to add custom statuses to admin Orders page bulk actions, enable "
12374
- "the checkbox here."
12375
- msgstr ""
12376
-
12377
- #: includes/settings/wcj-settings-order-custom-statuses.php:36
12378
- msgid "Add Custom Statuses to Admin Reports"
12379
- msgstr ""
12380
-
12381
- #: includes/settings/wcj-settings-order-custom-statuses.php:38
12382
- msgid ""
12383
- "If you wish to add custom statuses to admin reports, enable the checkbox "
12384
- "here."
12385
- msgstr ""
12386
-
12387
- #: includes/settings/wcj-settings-order-custom-statuses.php:44
12388
- msgid "Make Custom Status Orders Editable"
12389
- msgstr ""
12390
-
12391
- #: includes/settings/wcj-settings-order-custom-statuses.php:46
12392
- msgid ""
12393
- "By default orders with custom statuses are not editable (same like with "
12394
- "standard WooCommerce Completed status). If you wish to make custom status "
12395
- "orders editable, enable the checkbox here."
12396
- msgstr ""
12397
-
12398
- #: includes/settings/wcj-settings-order-custom-statuses.php:54
12399
- msgid "\"Processing\" and \"Complete\" Action Buttons"
12400
- msgstr ""
12401
-
12402
- #: includes/settings/wcj-settings-order-custom-statuses.php:55
12403
- msgid ""
12404
- "By default, when order has custom status, \"Processing\" and \"Complete\" "
12405
- "action buttons are hidden. You can enable it here. Possible values are: Show "
12406
- "both; Show \"Processing\" only; Show \"Complete\" only; Hide (default)."
12407
- msgstr ""
12408
-
12409
- #: includes/settings/wcj-settings-order-custom-statuses.php:60
12410
- msgid "Show both"
12411
- msgstr ""
12412
-
12413
- #: includes/settings/wcj-settings-order-custom-statuses.php:61
12414
- msgid "Show \"Processing\" only"
12415
- msgstr ""
12416
-
12417
- #: includes/settings/wcj-settings-order-custom-statuses.php:62
12418
- msgid "Show \"Complete\" only"
12419
- msgstr ""
12420
-
12421
- #: includes/settings/wcj-settings-order-custom-statuses.php:69
12422
- msgid "Add Custom Statuses to Admin Order List Action Buttons"
12423
- msgstr ""
12424
-
12425
- #: includes/settings/wcj-settings-order-custom-statuses.php:71
12426
- msgid ""
12427
- "If you wish to add custom statuses buttons to the admin Orders page action "
12428
- "buttons (Actions column), enable the checkbox here."
12429
- msgstr ""
12430
-
12431
- #: includes/settings/wcj-settings-order-custom-statuses.php:79
12432
- msgid "Enable Colors"
12433
- msgstr ""
12434
-
12435
- #: includes/settings/wcj-settings-order-custom-statuses.php:80
12436
- msgid "Choose if you want the buttons to have colors."
12437
- msgstr ""
12438
-
12439
- #: includes/settings/wcj-settings-order-custom-statuses.php:87
12440
- msgid "Enable Colors in Status Column"
12441
- msgstr ""
12442
-
12443
- #: includes/settings/wcj-settings-order-custom-statuses.php:89
12444
- msgid "Enable this if you want the statuses in Status column to have colors."
12445
- msgstr ""
12446
-
12447
- #: includes/settings/wcj-settings-order-custom-statuses.php:96
12448
- msgid "Add Custom Statuses Buttons to Admin Order Preview Actions"
12449
- msgstr ""
12450
-
12451
- #: includes/settings/wcj-settings-order-custom-statuses.php:98
12452
- msgid ""
12453
- "If you wish to add custom statuses buttons to the admin orders preview page, "
12454
- "enable the checkbox here."
12455
- msgstr ""
12456
-
12457
- #: includes/settings/wcj-settings-order-min-amount.php:16
12458
- msgid "This section lets you set minimum order amount."
12459
- msgstr ""
12460
-
12461
- #: includes/settings/wcj-settings-order-min-amount.php:20
12462
- msgid "Amount"
12463
- msgstr ""
12464
-
12465
- #: includes/settings/wcj-settings-order-min-amount.php:21
12466
- msgid "Minimum order amount. Set to 0 to disable."
12467
- msgstr ""
12468
-
12469
- #: includes/settings/wcj-settings-order-min-amount.php:28
12470
- msgid "Exclude Shipping from Cart Total"
12471
- msgstr ""
12472
-
12473
- #: includes/settings/wcj-settings-order-min-amount.php:35
12474
- msgid "Exclude Discounts from Cart Total"
12475
- msgstr ""
12476
-
12477
- #: includes/settings/wcj-settings-order-min-amount.php:42
12478
- msgid "Error message"
12479
- msgstr ""
12480
-
12481
- #: includes/settings/wcj-settings-order-min-amount.php:44
12482
- #: includes/settings/wcj-settings-order-min-amount.php:61
12483
- #, php-format
12484
- msgid ""
12485
- "Message to customer if order is below minimum amount. Default: You must have "
12486
- "an order with a minimum of %s to place your order, your current order total "
12487
- "is %s."
12488
- msgstr ""
12489
-
12490
- #: includes/settings/wcj-settings-order-min-amount.php:52
12491
- msgid "Add notice to cart page also"
12492
- msgstr ""
12493
-
12494
- #: includes/settings/wcj-settings-order-min-amount.php:59
12495
- msgid "Message on cart page"
12496
- msgstr ""
12497
-
12498
- #: includes/settings/wcj-settings-order-min-amount.php:70
12499
- msgid "Cart notice method"
12500
- msgstr ""
12501
-
12502
- #: includes/settings/wcj-settings-order-min-amount.php:80
12503
- msgid "Cart notice type"
12504
- msgstr ""
12505
-
12506
- #: includes/settings/wcj-settings-order-min-amount.php:85
12507
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:55
12508
- msgid "Notice"
12509
- msgstr ""
12510
-
12511
- #: includes/settings/wcj-settings-order-min-amount.php:86
12512
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:56
12513
- msgid "Error"
12514
- msgstr ""
12515
-
12516
- #: includes/settings/wcj-settings-order-min-amount.php:90
12517
- msgid ""
12518
- "Stop customer from seeing the Checkout page if minimum amount not reached"
12519
- msgstr ""
12520
-
12521
- #: includes/settings/wcj-settings-order-min-amount.php:91
12522
- msgid "Redirect back to Cart page"
12523
- msgstr ""
12524
-
12525
- #: includes/settings/wcj-settings-order-min-amount.php:101
12526
- msgid "Order Minimum Amount by User Role"
12527
- msgstr ""
12528
-
12529
- #: includes/settings/wcj-settings-order-numbers.php:17
12530
- msgid ""
12531
- "This section lets you enable sequential order numbering, set custom number "
12532
- "prefix, suffix and width."
12533
- msgstr ""
12534
-
12535
- #: includes/settings/wcj-settings-order-numbers.php:21
12536
- #: includes/settings/wcj-settings-sku.php:22
12537
- msgid "Number Generation"
12538
- msgstr ""
12539
-
12540
- #: includes/settings/wcj-settings-order-numbers.php:26
12541
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:22
12542
- #: includes/settings/wcj-settings-sku.php:28
12543
- msgid "Sequential"
12544
- msgstr ""
12545
-
12546
- #: includes/settings/wcj-settings-order-numbers.php:28
12547
- #: includes/settings/wcj-settings-sku.php:29
12548
- msgid "Pseudorandom - Hash (max 10 digits)"
12549
- msgstr ""
12550
-
12551
- #: includes/settings/wcj-settings-order-numbers.php:32
12552
- msgid "Sequential: Next Order Number"
12553
- msgstr ""
12554
-
12555
- #: includes/settings/wcj-settings-order-numbers.php:33
12556
- msgid "Next new order will be given this number."
12557
- msgstr ""
12558
-
12559
- #: includes/settings/wcj-settings-order-numbers.php:33
12560
- msgid "Use Renumerate Orders tool for existing orders."
12561
- msgstr ""
12562
-
12563
- #: includes/settings/wcj-settings-order-numbers.php:34
12564
- #: includes/settings/wcj-settings-order-numbers.php:41
12565
- msgid "This will be ignored if sequential order numbering is disabled."
12566
- msgstr ""
12567
-
12568
- #: includes/settings/wcj-settings-order-numbers.php:40
12569
- msgid "Sequential: Reset Counter"
12570
- msgstr ""
12571
-
12572
- #: includes/settings/wcj-settings-order-numbers.php:47
12573
- msgid "Daily"
12574
- msgstr ""
12575
-
12576
- #: includes/settings/wcj-settings-order-numbers.php:48
12577
- msgid "Monthly"
12578
- msgstr ""
12579
-
12580
- #: includes/settings/wcj-settings-order-numbers.php:49
12581
- msgid "Yearly"
12582
- msgstr ""
12583
-
12584
- #: includes/settings/wcj-settings-order-numbers.php:53
12585
- msgid "Order Number Custom Prefix"
12586
- msgstr ""
12587
-
12588
- #: includes/settings/wcj-settings-order-numbers.php:54
12589
- msgid ""
12590
- "Prefix before order number (optional). This will change the prefixes for all "
12591
- "existing orders."
12592
- msgstr ""
12593
-
12594
- #: includes/settings/wcj-settings-order-numbers.php:60
12595
- msgid "Order Number Date Prefix"
12596
- msgstr ""
12597
-
12598
- #: includes/settings/wcj-settings-order-numbers.php:62
12599
- msgid ""
12600
- "Date prefix before order number (optional). This will change the prefixes "
12601
- "for all existing orders. Value is passed directly to PHP `date` function, so "
12602
- "most of PHP date formats can be used. The only exception is using `\\` "
12603
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
12604
- "d- or mdy."
12605
- msgstr ""
12606
-
12607
- #: includes/settings/wcj-settings-order-numbers.php:69
12608
- msgid "Order Number Width"
12609
- msgstr ""
12610
-
12611
- #: includes/settings/wcj-settings-order-numbers.php:71
12612
- msgid ""
12613
- "Minimum width of number without prefix (zeros will be added to the left "
12614
- "side). This will change the minimum width of order number for all existing "
12615
- "orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
12616
- "Leave zero to disable."
12617
- msgstr ""
12618
-
12619
- #: includes/settings/wcj-settings-order-numbers.php:78
12620
- msgid "Order Number Custom Suffix"
12621
- msgstr ""
12622
-
12623
- #: includes/settings/wcj-settings-order-numbers.php:80
12624
- msgid ""
12625
- "Suffix after order number (optional). This will change the suffixes for all "
12626
- "existing orders."
12627
- msgstr ""
12628
-
12629
- #: includes/settings/wcj-settings-order-numbers.php:87
12630
- msgid "Order Number Date Suffix"
12631
- msgstr ""
12632
-
12633
- #: includes/settings/wcj-settings-order-numbers.php:89
12634
- msgid ""
12635
- "Date suffix after order number (optional). This will change the suffixes for "
12636
- "all existing orders. Value is passed directly to PHP `date` function, so "
12637
- "most of PHP date formats can be used. The only exception is using `\\` "
12638
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
12639
- "d- or mdy."
12640
- msgstr ""
12641
-
12642
- #: includes/settings/wcj-settings-order-numbers.php:96
12643
- msgid "Use MySQL Transaction"
12644
- msgstr ""
12645
-
12646
- #: includes/settings/wcj-settings-order-numbers.php:98
12647
- msgid ""
12648
- "This should be enabled if you have a lot of simultaneous orders in your shop "
12649
- "- to prevent duplicate order numbers (sequential)."
12650
- msgstr ""
12651
-
12652
- #: includes/settings/wcj-settings-order-numbers.php:104
12653
- msgid "Enable Order Tracking by Custom Number"
12654
- msgstr ""
12655
-
12656
- #: includes/settings/wcj-settings-order-numbers.php:111
12657
- msgid "Enable Order Admin Search by Custom Number"
12658
- msgstr ""
12659
-
12660
- #: includes/settings/wcj-settings-order-numbers.php:118
12661
- msgid "Enable Editable Order Number Meta Box"
12662
- msgstr ""
12663
-
12664
- #: includes/settings/wcj-settings-order-numbers.php:127
12665
- msgid "Minimal Order ID"
12666
- msgstr ""
12667
-
12668
- #: includes/settings/wcj-settings-order-numbers.php:128
12669
- msgid ""
12670
- "If you wish to disable order numbering for some (older) orders, you can set "
12671
- "order ID to start here."
12672
- msgstr ""
12673
-
12674
- #: includes/settings/wcj-settings-order-numbers.php:129
12675
- msgid "Set to zero to enable numbering for all orders."
12676
- msgstr ""
12677
-
12678
- #: includes/settings/wcj-settings-order-numbers.php:140
12679
- msgid "Orders Renumerate Tool Options"
12680
- msgstr ""
12681
-
12682
- #: includes/settings/wcj-settings-order-numbers.php:145
12683
- msgid "Sort by"
12684
- msgstr ""
12685
-
12686
- #: includes/settings/wcj-settings-order-numbers.php:152
12687
- msgid "Last modified date"
12688
- msgstr ""
12689
-
12690
- #: includes/settings/wcj-settings-order-numbers.php:157
12691
- msgid "Sort Ascending or Descending"
12692
- msgstr ""
12693
-
12694
- #: includes/settings/wcj-settings-order-quantities.php:22
12695
- msgid "Decimal Quantities"
12696
- msgstr ""
12697
-
12698
- #: includes/settings/wcj-settings-order-quantities.php:24
12699
- msgid ""
12700
- "Save module's settings after enabling this option, so you could enter "
12701
- "decimal quantities in step, min and/or max quantity options."
12702
- msgstr ""
12703
-
12704
- #: includes/settings/wcj-settings-order-quantities.php:30
12705
- msgid "Force Initial Quantity on Single Product Page"
12706
- msgstr ""
12707
-
12708
- #: includes/settings/wcj-settings-order-quantities.php:35
12709
- msgid "Do not force"
12710
- msgstr ""
12711
-
12712
- #: includes/settings/wcj-settings-order-quantities.php:36
12713
- msgid "Force to min quantity"
12714
- msgstr ""
12715
-
12716
- #: includes/settings/wcj-settings-order-quantities.php:37
12717
- msgid "Force to max quantity"
12718
- msgstr ""
12719
-
12720
- #: includes/settings/wcj-settings-order-quantities.php:41
12721
- msgid "Enable Cart Notices"
12722
- msgstr ""
12723
-
12724
- #: includes/settings/wcj-settings-order-quantities.php:48
12725
- msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
12726
- msgstr ""
12727
-
12728
- #: includes/settings/wcj-settings-order-quantities.php:50
12729
- msgid "Will be redirected to cart page."
12730
- msgstr ""
12731
-
12732
- #: includes/settings/wcj-settings-order-quantities.php:57
12733
- msgid "Action on variation change"
12734
- msgstr ""
12735
-
12736
- #: includes/settings/wcj-settings-order-quantities.php:62
12737
- #: includes/settings/wcj-settings-product-tabs.php:27
12738
- msgid "Do nothing"
12739
- msgstr ""
12740
-
12741
- #: includes/settings/wcj-settings-order-quantities.php:63
12742
- msgid "Reset to min quantity"
12743
- msgstr ""
12744
-
12745
- #: includes/settings/wcj-settings-order-quantities.php:64
12746
- msgid "Reset to max quantity"
12747
- msgstr ""
12748
-
12749
- #: includes/settings/wcj-settings-order-quantities.php:68
12750
- msgid "Force on add to cart"
12751
- msgstr ""
12752
-
12753
- #: includes/settings/wcj-settings-order-quantities.php:69
12754
- msgid "Force quantity correction on add to cart button click"
12755
- msgstr ""
12756
-
12757
- #: includes/settings/wcj-settings-order-quantities.php:79
12758
- msgid "Minimum Quantity Options"
12759
- msgstr ""
12760
-
12761
- #: includes/settings/wcj-settings-order-quantities.php:84
12762
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:37
12763
- msgid "Minimum Quantity"
12764
- msgstr ""
12765
-
12766
- #: includes/settings/wcj-settings-order-quantities.php:91
12767
- #: includes/settings/wcj-settings-order-quantities.php:149
12768
- msgid "Cart Total Quantity"
12769
- msgstr ""
12770
-
12771
- #: includes/settings/wcj-settings-order-quantities.php:92
12772
- #: includes/settings/wcj-settings-order-quantities.php:108
12773
- #: includes/settings/wcj-settings-order-quantities.php:150
12774
- #: includes/settings/wcj-settings-order-quantities.php:166
12775
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:35
12776
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:35
12777
- msgid "Set to zero to disable."
12778
- msgstr ""
12779
-
12780
- #: includes/settings/wcj-settings-order-quantities.php:99
12781
- #: includes/settings/wcj-settings-order-quantities.php:157
12782
- msgid "Message - Cart Total Quantity"
12783
- msgstr ""
12784
-
12785
- #: includes/settings/wcj-settings-order-quantities.php:107
12786
- #: includes/settings/wcj-settings-order-quantities.php:165
12787
- msgid "Per Item Quantity"
12788
- msgstr ""
12789
-
12790
- #: includes/settings/wcj-settings-order-quantities.php:116
12791
- #: includes/settings/wcj-settings-order-quantities.php:174
12792
- msgid "Per Item Quantity on Per Product Basis"
12793
- msgstr ""
12794
-
12795
- #: includes/settings/wcj-settings-order-quantities.php:125
12796
- #: includes/settings/wcj-settings-order-quantities.php:183
12797
- msgid "Message - Per Item Quantity"
12798
- msgstr ""
12799
-
12800
- #: includes/settings/wcj-settings-order-quantities.php:137
12801
- msgid "Maximum Quantity Options"
12802
- msgstr ""
12803
-
12804
- #: includes/settings/wcj-settings-order-quantities.php:142
12805
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:52
12806
- msgid "Maximum Quantity"
12807
- msgstr ""
12808
-
12809
- #: includes/settings/wcj-settings-order-quantities.php:195
12810
- msgid "Quantity Step Options"
12811
- msgstr ""
12812
-
12813
- #: includes/settings/wcj-settings-order-quantities.php:200
12814
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:68
12815
- msgid "Quantity Step"
12816
- msgstr ""
12817
-
12818
- #: includes/settings/wcj-settings-order-quantities.php:207
12819
- msgid "Step"
12820
- msgstr ""
12821
-
12822
- #: includes/settings/wcj-settings-order-quantities.php:224
12823
- msgid "Additional Validation"
12824
- msgstr ""
12825
-
12826
- #: includes/settings/wcj-settings-order-quantities.php:243
12827
- msgid "\"Single Item Cart\" Options"
12828
- msgstr ""
12829
-
12830
- #: includes/settings/wcj-settings-order-quantities.php:248
12831
- msgid "Enable \"Single Item Cart\" Mode"
12832
- msgstr ""
12833
-
12834
- #: includes/settings/wcj-settings-order-quantities.php:250
12835
- msgid ""
12836
- "When enabled, only one item will be allowed to be added to the cart "
12837
- "(quantity is not checked)."
12838
- msgstr ""
12839
-
12840
- #: includes/settings/wcj-settings-orders.php:26
12841
- #: includes/settings/wcj-settings-orders.php:31
12842
- msgid "Admin Order Currency"
12843
- msgstr ""
12844
-
12845
- #: includes/settings/wcj-settings-orders.php:33
12846
- msgid ""
12847
- "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
12848
- "page."
12849
- msgstr ""
12850
-
12851
- #: includes/settings/wcj-settings-orders.php:39
12852
- msgid "Admin Order Currency Method"
12853
- msgstr ""
12854
-
12855
- #: includes/settings/wcj-settings-orders.php:40
12856
- msgid ""
12857
- "Choose if you want changed order currency to be saved directly to DB, or if "
12858
- "you want to use filter. When using <em>filter</em> method, changes will be "
12859
- "active only when \"Admin Order Currency\" section is enabled. When using "
12860
- "<em>directly to DB</em> method, changes will be permanent, that is even if "
12861
- "Booster plugin is removed."
12862
- msgstr ""
12863
-
12864
- #: includes/settings/wcj-settings-orders.php:46
12865
- msgid "Directly to DB"
12866
- msgstr ""
12867
-
12868
- #: includes/settings/wcj-settings-orders.php:54
12869
- #: includes/settings/wcj-settings-orders.php:59
12870
- msgid "Admin Order Navigation"
12871
- msgstr ""
12872
-
12873
- #: includes/settings/wcj-settings-orders.php:61
12874
- msgid ""
12875
- "When enabled, this will add \"Booster: Order Navigation\" metabox to each "
12876
- "order's admin edit page."
12877
- msgstr ""
12878
-
12879
- #: includes/settings/wcj-settings-orders.php:62
12880
- msgid "Metabox will contain \"Previous order\" and \"Next order\" links."
12881
- msgstr ""
12882
-
12883
- #: includes/settings/wcj-settings-orders.php:72
12884
- msgid "Editable Orders"
12885
- msgstr ""
12886
-
12887
- #: includes/settings/wcj-settings-orders.php:73
12888
- msgid "This section allows you to set which order statuses are editable."
12889
- msgstr ""
12890
-
12891
- #: includes/settings/wcj-settings-orders.php:78
12892
- msgid "Editable Orders Statuses"
12893
- msgstr ""
12894
-
12895
- #: includes/settings/wcj-settings-orders.php:91
12896
- msgid "Auto-draft"
12897
- msgstr ""
12898
-
12899
- #: includes/settings/wcj-settings-orders.php:98
12900
- msgid "Orders Auto-Complete"
12901
- msgstr ""
12902
-
12903
- #: includes/settings/wcj-settings-orders.php:100
12904
- msgid "This section lets you enable orders auto-complete function."
12905
- msgstr ""
12906
-
12907
- #: includes/settings/wcj-settings-orders.php:104
12908
- msgid "Auto-complete all WooCommerce orders"
12909
- msgstr ""
12910
-
12911
- #: includes/settings/wcj-settings-orders.php:106
12912
- msgid ""
12913
- "E.g. if you sell digital products then you are not shipping anything and you "
12914
- "may want auto-complete all your orders."
12915
- msgstr ""
12916
-
12917
- #: includes/settings/wcj-settings-orders.php:113
12918
- msgid ""
12919
- "Fill this, if you want orders to be auto-completed for selected payment "
12920
- "methods only. Leave blank to auto-complete all orders."
12921
- msgstr ""
12922
-
12923
- #: includes/settings/wcj-settings-orders.php:131
12924
- msgid "Add Country by IP Meta Box"
12925
- msgstr ""
12926
-
12927
- #: includes/settings/wcj-settings-orders.php:133
12928
- msgid ""
12929
- "When enabled this will add \"Booster: Country by IP\" metabox to each "
12930
- "order's edit page."
12931
- msgstr ""
12932
-
12933
- #: includes/settings/wcj-settings-orders.php:143
12934
- msgid "Bulk Regenerate Download Permissions for Orders"
12935
- msgstr ""
12936
-
12937
- #: includes/settings/wcj-settings-orders.php:148
12938
- msgid "Bulk Regenerate Download Permissions"
12939
- msgstr ""
12940
-
12941
- #: includes/settings/wcj-settings-orders.php:157
12942
- msgid "Bulk Actions"
12943
- msgstr ""
12944
-
12945
- #: includes/settings/wcj-settings-orders.php:158
12946
- msgid ""
12947
- "When enabled this will add \"Regenerate download permissions\" action to "
12948
- "\"Bulk Actions\" select box on admin orders page."
12949
- msgstr ""
12950
-
12951
- #: includes/settings/wcj-settings-orders.php:166
12952
- msgid "All Orders - Now"
12953
- msgstr ""
12954
-
12955
- #: includes/settings/wcj-settings-orders.php:167
12956
- msgid ""
12957
- "Check this box and press \"Save changes\" button to start regeneration. "
12958
- "Please note that both module and current section must be enabled before that."
12959
- msgstr ""
12960
-
12961
- #: includes/settings/wcj-settings-orders.php:168
12962
- msgid "Regenerate now"
12963
- msgstr ""
12964
-
12965
- #: includes/settings/wcj-settings-orders.php:175
12966
- msgid "All Orders - Periodically"
12967
- msgstr ""
12968
-
12969
- #: includes/settings/wcj-settings-orders.php:181
12970
- msgid "Regenerate"
12971
- msgstr ""
12972
-
12973
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:20
12974
- msgid "Detect Country by"
12975
- msgstr ""
12976
-
12977
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:31
12978
- msgid "Detect State by"
12979
- msgstr ""
12980
-
12981
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:41
12982
- msgid "Detect Postcode by"
12983
- msgstr ""
12984
-
12985
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:57
12986
- msgid "If any field is left empty - it's ignored."
12987
- msgstr ""
12988
-
12989
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:80
12990
- msgid "Include Countries"
12991
- msgstr ""
12992
-
12993
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:90
12994
- msgid "Exclude Countries"
12995
- msgstr ""
12996
-
12997
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:100
12998
- msgid "Include States (Base Country)"
12999
- msgstr ""
13000
-
13001
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:110
13002
- msgid "Exclude States (Base Country)"
13003
- msgstr ""
13004
-
13005
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:120
13006
- msgid "Include Postcodes (one per line)"
13007
- msgstr ""
13008
-
13009
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:130
13010
- msgid "Exclude Postcodes (one per line)"
13011
- msgstr ""
13012
-
13013
- #: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
13014
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
13015
- #: includes/settings/wcj-settings-shipping-by-condition.php:43
13016
- msgid "Leave empty to disable."
13017
- msgstr ""
13018
-
13019
- #: includes/settings/wcj-settings-payment-gateways-by-currency.php:29
13020
- #, php-format
13021
- msgid "PayPal allows only these currencies: %s."
13022
- msgstr ""
13023
-
13024
- #: includes/settings/wcj-settings-payment-gateways-by-currency.php:46
13025
- msgid "Allowed Currencies"
13026
- msgstr ""
13027
-
13028
- #: includes/settings/wcj-settings-payment-gateways-by-currency.php:57
13029
- msgid "Denied Currencies"
13030
- msgstr ""
13031
-
13032
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:22
13033
- #: includes/settings/wcj-settings-shipping-by-condition.php:25
13034
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:20
13035
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:20
13036
- #: includes/settings/wcj-settings-shipping-description.php:58
13037
- #: includes/settings/wcj-settings-shipping-icons.php:60
13038
- #: includes/settings/wcj-settings-shipping-time.php:30
13039
- msgid "Use Shipping Instances"
13040
- msgstr ""
13041
-
13042
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:24
13043
- #: includes/settings/wcj-settings-shipping-by-condition.php:27
13044
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:22
13045
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:22
13046
- #: includes/settings/wcj-settings-shipping-description.php:60
13047
- #: includes/settings/wcj-settings-shipping-icons.php:62
13048
- #: includes/settings/wcj-settings-shipping-time.php:32
13049
- msgid ""
13050
- "Enable this if you want to use shipping methods instances instead of "
13051
- "shipping methods."
13052
- msgstr ""
13053
-
13054
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:39
13055
- msgid ""
13056
- "If payment gateway is only available for certain methods, set it up here. "
13057
- "Leave blank to enable for all methods."
13058
- msgstr ""
13059
-
13060
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:17
13061
- #: includes/settings/wcj-settings-product-by-user.php:79
13062
- #, php-format
13063
- msgid ""
13064
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
13065
- "<a href=\"%s\">General</a> module"
13066
- msgstr ""
13067
-
13068
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:40
13069
- msgid "Include User Roles"
13070
- msgstr ""
13071
-
13072
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:51
13073
- msgid "Exclude User Roles"
13074
- msgstr ""
13075
-
13076
- #: includes/settings/wcj-settings-payment-gateways-currency.php:17
13077
- msgid "This section lets you set different currency for each payment gateway."
13078
- msgstr ""
13079
-
13080
- #: includes/settings/wcj-settings-payment-gateways-currency.php:45
13081
- msgid "Go to payment gateway's settings"
13082
- msgstr ""
13083
-
13084
- #: includes/settings/wcj-settings-payment-gateways-currency.php:84
13085
- msgid "Show Converted Prices"
13086
- msgstr ""
13087
-
13088
- #: includes/settings/wcj-settings-payment-gateways-currency.php:89
13089
- #: includes/settings/wcj-settings-shipping-description.php:26
13090
- #: includes/settings/wcj-settings-shipping-icons.php:35
13091
- msgid "On both cart and checkout pages"
13092
- msgstr ""
13093
-
13094
- #: includes/settings/wcj-settings-payment-gateways-currency.php:90
13095
- msgid "On checkout page only"
13096
- msgstr ""
13097
-
13098
- #: includes/settings/wcj-settings-payment-gateways-currency.php:94
13099
- msgid "Advanced: Fix \"Chosen Payment Method\""
13100
- msgstr ""
13101
-
13102
- #: includes/settings/wcj-settings-payment-gateways-currency.php:96
13103
- msgid ""
13104
- "Enable this if you are having compatibility issues with some other plugins "
13105
- "or modules."
13106
- msgstr ""
13107
-
13108
- #: includes/settings/wcj-settings-payment-gateways-fees.php:23
13109
- msgid "Fee (or Discount) Title"
13110
- msgstr ""
13111
-
13112
- #: includes/settings/wcj-settings-payment-gateways-fees.php:24
13113
- msgid "Fee (or discount) title to show to customer."
13114
- msgstr ""
13115
-
13116
- #: includes/settings/wcj-settings-payment-gateways-fees.php:31
13117
- msgid "Fee (or Discount) Type"
13118
- msgstr ""
13119
-
13120
- #: includes/settings/wcj-settings-payment-gateways-fees.php:32
13121
- msgid "Percent or fixed value."
13122
- msgstr ""
13123
-
13124
- #: includes/settings/wcj-settings-payment-gateways-fees.php:42
13125
- msgid "Fee (or Discount) Value"
13126
- msgstr ""
13127
-
13128
- #: includes/settings/wcj-settings-payment-gateways-fees.php:43
13129
- msgid "The value. For discount enter a negative number."
13130
- msgstr ""
13131
-
13132
- #: includes/settings/wcj-settings-payment-gateways-fees.php:50
13133
- msgid "Minimum Cart Amount"
13134
- msgstr ""
13135
-
13136
- #: includes/settings/wcj-settings-payment-gateways-fees.php:51
13137
- msgid "Minimum cart amount for adding the fee (or discount)."
13138
- msgstr ""
13139
-
13140
- #: includes/settings/wcj-settings-payment-gateways-fees.php:51
13141
- #: includes/settings/wcj-settings-payment-gateways-fees.php:59
13142
- msgid "Set 0 to disable."
13143
- msgstr ""
13144
-
13145
- #: includes/settings/wcj-settings-payment-gateways-fees.php:58
13146
- msgid "Maximum Cart Amount"
13147
- msgstr ""
13148
-
13149
- #: includes/settings/wcj-settings-payment-gateways-fees.php:59
13150
- msgid "Maximum cart amount for adding the fee (or discount)."
13151
- msgstr ""
13152
-
13153
- #: includes/settings/wcj-settings-payment-gateways-fees.php:68
13154
- msgid "Round the fee (or discount) value before adding to the cart."
13155
- msgstr ""
13156
-
13157
- #: includes/settings/wcj-settings-payment-gateways-fees.php:75
13158
- msgid "If rounding is enabled, set precision (i.e. number of decimals) here."
13159
- msgstr ""
13160
-
13161
- #: includes/settings/wcj-settings-payment-gateways-fees.php:89
13162
- msgid "Tax class"
13163
- msgstr ""
13164
-
13165
- #: includes/settings/wcj-settings-payment-gateways-fees.php:90
13166
- msgid "If taxing is enabled, set tax class here."
13167
- msgstr ""
13168
-
13169
- #: includes/settings/wcj-settings-payment-gateways-fees.php:94
13170
- msgid "Standard Rate"
13171
- msgstr ""
13172
-
13173
- #: includes/settings/wcj-settings-payment-gateways-fees.php:97
13174
- msgid "Exclude Shipping when Calculating Total Cart Amount"
13175
- msgstr ""
13176
-
13177
- #: includes/settings/wcj-settings-payment-gateways-fees.php:99
13178
- #: includes/settings/wcj-settings-payment-gateways-fees.php:107
13179
- msgid ""
13180
- "This affects \"Percent\" type fees and \"Minimum/Maximum Cart Amount\" "
13181
- "options."
13182
- msgstr ""
13183
-
13184
- #: includes/settings/wcj-settings-payment-gateways-fees.php:105
13185
- msgid "Include Taxes"
13186
- msgstr ""
13187
-
13188
- #: includes/settings/wcj-settings-payment-gateways-fees.php:106
13189
- msgid "Include taxes when calculating Total Cart Amount"
13190
- msgstr ""
13191
-
13192
- #: includes/settings/wcj-settings-payment-gateways-fees.php:113
13193
- msgid "Require Products"
13194
- msgstr ""
13195
-
13196
- #: includes/settings/wcj-settings-payment-gateways-fees.php:114
13197
- msgid ""
13198
- "Require at least one of selected products to be in cart for fee to be "
13199
- "applied."
13200
- msgstr ""
13201
-
13202
- #: includes/settings/wcj-settings-payment-gateways-fees.php:126
13203
- msgid "Do not apply fee, if at least one of selected products is in cart."
13204
- msgstr ""
13205
-
13206
- #: includes/settings/wcj-settings-payment-gateways-icons.php:35
13207
- msgid "Leave blank to set WooCommerce default value"
13208
- msgstr ""
13209
-
13210
- #: includes/settings/wcj-settings-payment-gateways-icons.php:46
13211
- msgid "Remove Icon"
13212
- msgstr ""
13213
-
13214
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:20
13215
- msgid "Exclude Shipping"
13216
- msgstr ""
13217
-
13218
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:21
13219
- msgid ""
13220
- "Exclude shipping from total cart sum, when comparing with min/max amounts."
13221
- msgstr ""
13222
-
13223
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:27
13224
- msgid "Notices on Checkout"
13225
- msgstr ""
13226
-
13227
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:28
13228
- msgid "Enable Notices"
13229
- msgstr ""
13230
-
13231
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:34
13232
- msgid "Notice Template (Minimum Amount)"
13233
- msgstr ""
13234
-
13235
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:35
13236
- msgid "Replaced values: %gateway_title%, %min_amount%."
13237
- msgstr ""
13238
-
13239
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:42
13240
- msgid "Notice Template (Maximum Amount)"
13241
- msgstr ""
13242
-
13243
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:43
13244
- msgid "Replaced values: %gateway_title%, %max_amount%."
13245
- msgstr ""
13246
-
13247
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:50
13248
- msgid "Notice Styling"
13249
- msgstr ""
13250
-
13251
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:57
13252
- msgid "Success"
13253
- msgstr ""
13254
-
13255
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:70
13256
- #: includes/settings/wcj-settings-product-msrp.php:110
13257
- msgid "Multicurrency"
13258
- msgstr ""
13259
-
13260
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:71
13261
- #: includes/settings/wcj-settings-product-msrp.php:111
13262
- msgid "Enable compatibility with Multicurrency module"
13263
- msgstr ""
13264
-
13265
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:104
13266
- msgid "Min"
13267
- msgstr ""
13268
-
13269
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:113
13270
- msgid "Max"
13271
- msgstr ""
13272
-
13273
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:24
13274
- msgid "Use Variations"
13275
- msgstr ""
13276
-
13277
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:26
13278
- msgid "Will use variations instead of main product for variable type products."
13279
- msgstr ""
13280
-
13281
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:36
13282
- msgid "Gateways"
13283
- msgstr ""
13284
-
13285
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:49
13286
- #: includes/settings/wcj-settings-price-labels.php:125
13287
- #: includes/settings/wcj-settings-product-input-fields.php:110
13288
- msgid "Product Categories - Include"
13289
- msgstr ""
13290
-
13291
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:50
13292
- msgid ""
13293
- "Show gateway only if there is product of selected category in cart. Leave "
13294
- "blank to disable the option."
13295
- msgstr ""
13296
-
13297
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:60
13298
- #: includes/settings/wcj-settings-price-labels.php:134
13299
- #: includes/settings/wcj-settings-product-input-fields.php:121
13300
- msgid "Product Categories - Exclude"
13301
- msgstr ""
13302
-
13303
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:61
13304
- msgid ""
13305
- "Hide gateway if there is product of selected category in cart. Leave blank "
13306
- "to disable the option."
13307
- msgstr ""
13308
-
13309
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:72
13310
- #: includes/settings/wcj-settings-price-labels.php:107
13311
- #: includes/settings/wcj-settings-product-input-fields.php:155
13312
- msgid "Products - Include"
13313
- msgstr ""
13314
-
13315
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:73
13316
- msgid ""
13317
- "Show gateway only if there is selected products in cart. Leave blank to "
13318
- "disable the option."
13319
- msgstr ""
13320
-
13321
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:85
13322
- #: includes/settings/wcj-settings-price-labels.php:116
13323
- #: includes/settings/wcj-settings-product-input-fields.php:167
13324
- msgid "Products - Exclude"
13325
- msgstr ""
13326
-
13327
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:86
13328
- msgid ""
13329
- "Hide gateway if there is selected products in cart. Leave blank to disable "
13330
- "the option."
13331
- msgstr ""
13332
-
13333
- #: includes/settings/wcj-settings-payment-gateways.php:13
13334
- msgid "WooCommerce > Settings > Checkout"
13335
- msgstr ""
13336
-
13337
- #: includes/settings/wcj-settings-payment-gateways.php:16
13338
- msgid "Custom Payment Gateways Options"
13339
- msgstr ""
13340
-
13341
- #: includes/settings/wcj-settings-payment-gateways.php:19
13342
- msgid "This section lets you set number of custom payment gateways to add."
13343
- msgstr ""
13344
-
13345
- #: includes/settings/wcj-settings-payment-gateways.php:20
13346
- #, php-format
13347
- msgid "After setting the number, visit %s to set each gateway options."
13348
- msgstr ""
13349
-
13350
- #: includes/settings/wcj-settings-payment-gateways.php:23
13351
- msgid "Number of Gateways"
13352
- msgstr ""
13353
-
13354
- #: includes/settings/wcj-settings-payment-gateways.php:25
13355
- msgid ""
13356
- "Number of custom payments gateways to be added. All settings for each new "
13357
- "gateway are in WooCommerce > Settings > Checkout."
13358
- msgstr ""
13359
-
13360
- #: includes/settings/wcj-settings-payment-gateways.php:36
13361
- msgid "Admin Title Custom Gateway"
13362
- msgstr ""
13363
-
13364
- #: includes/settings/wcj-settings-payment-gateways.php:54
13365
- msgid "Gateways Input Fields"
13366
- msgstr ""
13367
-
13368
- #: includes/settings/wcj-settings-payment-gateways.php:55
13369
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:61
13370
- msgid "Add \"Delete\" button"
13371
- msgstr ""
13372
-
13373
- #: includes/settings/wcj-settings-payment-gateways.php:56
13374
- msgid ""
13375
- "This will add \"Delete\" button to custom payment gateways input fields "
13376
- "admin order meta box."
13377
- msgstr ""
13378
-
13379
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:16
13380
- msgid "Fonts download is disabled."
13381
- msgstr ""
13382
-
13383
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:19
13384
- msgid "Fonts are up to date."
13385
- msgstr ""
13386
-
13387
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:20
13388
- #, php-format
13389
- msgid "Latest successful download or version check was on %s."
13390
- msgstr ""
13391
-
13392
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:24
13393
- msgid ""
13394
- "Fonts are NOT up to date. Please try downloading by pressing the button "
13395
- "below."
13396
- msgstr ""
13397
-
13398
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:27
13399
- #, php-format
13400
- msgid "Latest successful downloaded version is %s."
13401
- msgstr ""
13402
-
13403
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:33
13404
- #, php-format
13405
- msgid "Latest download executed on %s."
13406
- msgstr ""
13407
-
13408
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:47
13409
- msgid "Hide Disabled Docs Settings"
13410
- msgstr ""
13411
-
13412
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:54
13413
- msgid "Replace Admin Order Search with Invoice Search"
13414
- msgstr ""
13415
-
13416
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:61
13417
- msgid "Default Images Directory"
13418
- msgstr ""
13419
-
13420
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:62
13421
- msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
13422
- msgstr ""
13423
-
13424
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:63
13425
- msgid ""
13426
- "Try changing this if you have issues displaying images in page background or "
13427
- "header."
13428
- msgstr ""
13429
-
13430
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:68
13431
- msgid "Empty"
13432
- msgstr ""
13433
-
13434
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:69
13435
- msgid "TCPDF Default"
13436
- msgstr ""
13437
-
13438
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:70
13439
- msgid "ABSPATH"
13440
- msgstr ""
13441
-
13442
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:71
13443
- msgid "DOCUMENT_ROOT"
13444
- msgstr ""
13445
-
13446
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:75
13447
- msgid "Temp Directory"
13448
- msgstr ""
13449
-
13450
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:76
13451
- msgid "Leave blank to use the default temp directory."
13452
- msgstr ""
13453
-
13454
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:82
13455
- msgid "Disable Saving PDFs in Temp Directory"
13456
- msgstr ""
13457
-
13458
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:83
13459
- msgid ""
13460
- "Please note that attaching invoices to emails and generating invoices report "
13461
- "zip will stop working, if you enable this checkbox."
13462
- msgstr ""
13463
-
13464
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:90
13465
- msgid "Prevent Output Buffer"
13466
- msgstr ""
13467
-
13468
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:91
13469
- msgid "Returns the content of output buffering instead of displaying it"
13470
- msgstr ""
13471
-
13472
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:101
13473
- msgid "Fonts Manager"
13474
- msgstr ""
13475
-
13476
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
13477
- msgid "Re-download"
13478
- msgstr ""
13479
-
13480
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
13481
- msgid "Download"
13482
- msgstr ""
13483
-
13484
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:115
13485
- msgid "Disable Fonts Download"
13486
- msgstr ""
13487
-
13488
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:126
13489
- msgid "General Display Options"
13490
- msgstr ""
13491
-
13492
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:131
13493
- msgid "Add PDF Invoices Meta Box to Admin Edit Order Page"
13494
- msgstr ""
13495
-
13496
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:138
13497
- msgid "Open docs in new window"
13498
- msgstr ""
13499
-
13500
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:144
13501
- msgid "Add editable numbers and dates"
13502
- msgstr ""
13503
-
13504
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:154
13505
- msgid "Report Tool Options"
13506
- msgstr ""
13507
-
13508
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:159
13509
- msgid "Reports Filename"
13510
- msgstr ""
13511
-
13512
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:167
13513
- msgid "Report Columns"
13514
- msgstr ""
13515
-
13516
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:168
13517
- msgid "Leave blank to show all columns."
13518
- msgstr ""
13519
-
13520
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:176
13521
- msgid "Tax Percent Precision"
13522
- msgstr ""
13523
-
13524
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:189
13525
- msgid "CSV UTF-8 BOM"
13526
- msgstr ""
13527
-
13528
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:196
13529
- msgid "Replace Periods with Commas in CSV Data"
13530
- msgstr ""
13531
-
13532
- #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:197
13533
- msgid "Replace"
13534
- msgstr ""
13535
-
13536
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:25
13537
- #: includes/settings/wcj-settings-price-by-country.php:284
13538
- #: includes/settings/wcj-settings-shipping.php:30
13539
- msgid "Admin Title"
13540
- msgstr ""
13541
-
13542
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:32
13543
- msgid "Admin's \"Orders\" Page"
13544
- msgstr ""
13545
-
13546
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:33
13547
- msgid "Add Column"
13548
- msgstr ""
13549
-
13550
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:40
13551
- msgid "Column Title"
13552
- msgstr ""
13553
-
13554
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:47
13555
- msgid "Add \"View\" button"
13556
- msgstr ""
13557
-
13558
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:54
13559
- msgid "Add \"Create\" button"
13560
- msgstr ""
13561
-
13562
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:68
13563
- msgid "\"Create\" button requires confirmation"
13564
- msgstr ""
13565
-
13566
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:75
13567
- msgid "\"Delete\" button requires confirmation"
13568
- msgstr ""
13569
-
13570
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:82
13571
- msgid "Thank You Page"
13572
- msgstr ""
13573
-
13574
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:83
13575
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:104
13576
- msgid "Add link"
13577
- msgstr ""
13578
-
13579
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:89
13580
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:110
13581
- msgid "Link Text"
13582
- msgstr ""
13583
-
13584
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:96
13585
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:28
13586
- msgid "HTML Template"
13587
- msgstr ""
13588
-
13589
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:103
13590
- msgid "Customer's \"My Account\" Page"
13591
- msgstr ""
13592
-
13593
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:117
13594
- msgid "Enable \"Save as\""
13595
- msgstr ""
13596
-
13597
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:119
13598
- msgid "Enable \"save as\" pdf instead of view pdf in browser"
13599
- msgstr ""
13600
-
13601
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:125
13602
- msgid "PDF File Name"
13603
- msgstr ""
13604
-
13605
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:126
13606
- #, php-format
13607
- msgid ""
13608
- "Enter file name for PDF documents. You can use shortcodes here, e.g. %s."
13609
- msgstr ""
13610
-
13611
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:134
13612
- msgid "Allowed User Roles"
13613
- msgstr ""
13614
-
13615
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:135
13616
- msgid "If set to empty - Administrator role will be used."
13617
- msgstr ""
13618
-
13619
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:53
13620
- msgid "Attach PDF to emails"
13621
- msgstr ""
13622
-
13623
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:60
13624
- msgid "Select some emails"
13625
- msgstr ""
13626
-
13627
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:63
13628
- msgid "Payment gateways to include"
13629
- msgstr ""
13630
-
13631
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:70
13632
- msgid "Select some gateways. Leave blank to include all."
13633
- msgstr ""
13634
-
13635
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:22
13636
- msgid "Enable Footer"
13637
- msgstr ""
13638
-
13639
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:29
13640
- msgid "Footer Text"
13641
- msgstr ""
13642
-
13643
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:34
13644
- msgid "You can use HTML here, as well as any WordPress shortcodes."
13645
- msgstr ""
13646
-
13647
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:45
13648
- msgid "Footer Line Color"
13649
- msgstr ""
13650
-
13651
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:52
13652
- msgid "Footer Margin"
13653
- msgstr ""
13654
-
13655
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:23
13656
- msgid "Enable Header"
13657
- msgstr ""
13658
-
13659
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:30
13660
- msgid "Header Image"
13661
- msgstr ""
13662
-
13663
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:35
13664
- #, php-format
13665
- msgid ""
13666
- "Enter a local URL to an image you want to show in the invoice's header. "
13667
- "Upload your image using the <a href=\"%s\">media uploader</a>."
13668
- msgstr ""
13669
-
13670
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:38
13671
- #, php-format
13672
- msgid ""
13673
- "If you are experiencing issues with displaying header image, please try "
13674
- "setting different values for the \"Advanced: Default Images Directory\" "
13675
- "option in %s."
13676
- msgstr ""
13677
-
13678
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:40
13679
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:86
13680
- msgid "PDF Invoicing & Packing Slips > Advanced"
13681
- msgstr ""
13682
-
13683
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:42
13684
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:88
13685
- #: includes/settings/wcj-settings-purchase-data.php:78
13686
- msgid "Leave blank to disable"
13687
- msgstr ""
13688
-
13689
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:46
13690
- msgid "Header Image Width in mm"
13691
- msgstr ""
13692
-
13693
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:52
13694
- msgid "Header Title"
13695
- msgstr ""
13696
-
13697
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:59
13698
- msgid "Header Text"
13699
- msgstr ""
13700
-
13701
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:73
13702
- msgid "Header Line Color"
13703
- msgstr ""
13704
-
13705
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:80
13706
- msgid "Header Margin"
13707
- msgstr ""
13708
-
13709
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:29
13710
- msgid "Counter"
13711
- msgstr ""
13712
-
13713
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:35
13714
- msgid "Counter Width"
13715
- msgstr ""
13716
-
13717
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:41
13718
- #: includes/settings/wcj-settings-sku.php:58
13719
- #: includes/settings/wcj-settings-sku.php:178
13720
- msgid "Prefix"
13721
- msgstr ""
13722
-
13723
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:47
13724
- #: includes/settings/wcj-settings-sku.php:72
13725
- #: includes/settings/wcj-settings-sku.php:187
13726
- msgid "Suffix"
13727
- msgstr ""
13728
-
13729
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:53
13730
- #: includes/settings/wcj-settings-sku.php:101
13731
- msgid "Template"
13732
- msgstr ""
13733
-
13734
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:22
13735
- msgid "Page Orientation"
13736
- msgstr ""
13737
-
13738
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:27
13739
- msgid "Portrait"
13740
- msgstr ""
13741
-
13742
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:28
13743
- msgid "Landscape"
13744
- msgstr ""
13745
-
13746
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:32
13747
- msgid "Page Format"
13748
- msgstr ""
13749
-
13750
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:39
13751
- msgid "Custom: width (millimeters)"
13752
- msgstr ""
13753
-
13754
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:46
13755
- msgid "Custom: height (millimeters)"
13756
- msgstr ""
13757
-
13758
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:53
13759
- msgid "Margin Left"
13760
- msgstr ""
13761
-
13762
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:59
13763
- msgid "Margin Right"
13764
- msgstr ""
13765
-
13766
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:65
13767
- msgid "Margin Top"
13768
- msgstr ""
13769
-
13770
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:71
13771
- msgid "Margin Bottom"
13772
- msgstr ""
13773
-
13774
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:77
13775
- msgid "Background Image"
13776
- msgstr ""
13777
-
13778
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:81
13779
- #, php-format
13780
- msgid ""
13781
- "Enter a local URL to an image. Upload your image using the <a href=\"%s"
13782
- "\">media uploader</a>."
13783
- msgstr ""
13784
-
13785
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:84
13786
- #, php-format
13787
- msgid ""
13788
- "If you are experiencing issues with displaying background image, please try "
13789
- "setting different values for the \"Advanced: Default Images Directory\" "
13790
- "option in %s."
13791
- msgstr ""
13792
-
13793
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:19
13794
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:37
13795
- msgid "Font Family"
13796
- msgstr ""
13797
-
13798
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:56
13799
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:24
13800
- msgid "CSS"
13801
- msgstr ""
13802
-
13803
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:66
13804
- msgid "Font Size"
13805
- msgstr ""
13806
-
13807
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:72
13808
- msgid "Make Font Shadowed"
13809
- msgstr ""
13810
-
13811
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:12
13812
- #, php-format
13813
- msgid "For the list of available shortcodes, please visit %s."
13814
- msgstr ""
13815
-
13816
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:36
13817
- msgid "Save all templates"
13818
- msgstr ""
13819
-
13820
- #: includes/settings/wcj-settings-pdf-invoicing.php:14
13821
- msgid "Documents Options"
13822
- msgstr ""
13823
-
13824
- #: includes/settings/wcj-settings-pdf-invoicing.php:23
13825
- #, php-format
13826
- msgid "Create on Order Status %s"
13827
- msgstr ""
13828
-
13829
- #: includes/settings/wcj-settings-pdf-invoicing.php:27
13830
- msgid "Create on New Order"
13831
- msgstr ""
13832
-
13833
- #: includes/settings/wcj-settings-pdf-invoicing.php:31
13834
- msgid "Create on Order Partially Refunded"
13835
- msgstr ""
13836
-
13837
- #: includes/settings/wcj-settings-pdf-invoicing.php:41
13838
- msgid "Number of Custom Documents"
13839
- msgstr ""
13840
-
13841
- #: includes/settings/wcj-settings-pdf-invoicing.php:42
13842
- msgid "Save changes after setting this number."
13843
- msgstr ""
13844
-
13845
- #: includes/settings/wcj-settings-pdf-invoicing.php:66
13846
- msgid "Do not create if order total equals zero"
13847
- msgstr ""
13848
-
13849
- #: includes/settings/wcj-settings-price-by-country.php:14
13850
- msgid "All countries and currencies"
13851
- msgstr ""
13852
-
13853
- #: includes/settings/wcj-settings-price-by-country.php:15
13854
- msgid "PayPal supported currencies only"
13855
- msgstr ""
13856
-
13857
- #: includes/settings/wcj-settings-price-by-country.php:19
13858
- msgid "Available in Booster Plus only."
13859
- msgstr ""
13860
-
13861
- #: includes/settings/wcj-settings-price-by-country.php:22
13862
- msgid ""
13863
- "All existing country groups will be deleted and new groups will be created. "
13864
- "Are you sure?"
13865
- msgstr ""
13866
-
13867
- #: includes/settings/wcj-settings-price-by-country.php:30
13868
- msgid "Price by Country Options"
13869
- msgstr ""
13870
-
13871
- #: includes/settings/wcj-settings-price-by-country.php:32
13872
- msgid ""
13873
- "Change product's price and currency by customer's country. Customer's "
13874
- "country is detected automatically by IP, or selected by customer manually."
13875
- msgstr ""
13876
-
13877
- #: includes/settings/wcj-settings-price-by-country.php:36
13878
- msgid "Customer Country Detection Method"
13879
- msgstr ""
13880
-
13881
- #: includes/settings/wcj-settings-price-by-country.php:38
13882
- msgid ""
13883
- "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
13884
- "shortcode to display country selection list on frontend."
13885
- msgstr ""
13886
-
13887
- #: includes/settings/wcj-settings-price-by-country.php:42
13888
- msgid "by IP"
13889
- msgstr ""
13890
-
13891
- #: includes/settings/wcj-settings-price-by-country.php:43
13892
- msgid "by IP, then by user selection"
13893
- msgstr ""
13894
-
13895
- #: includes/settings/wcj-settings-price-by-country.php:44
13896
- msgid "by user selection"
13897
- msgstr ""
13898
-
13899
- #: includes/settings/wcj-settings-price-by-country.php:48
13900
- msgid "Override Country Options"
13901
- msgstr ""
13902
-
13903
- #: includes/settings/wcj-settings-price-by-country.php:53
13904
- msgid "No Override"
13905
- msgstr ""
13906
-
13907
- #: includes/settings/wcj-settings-price-by-country.php:54
13908
- msgid "Override Country with Customer's Checkout Billing Country"
13909
- msgstr ""
13910
-
13911
- #: includes/settings/wcj-settings-price-by-country.php:55
13912
- msgid "Override Country with Customer's Checkout Shipping Country"
13913
- msgstr ""
13914
-
13915
- #: includes/settings/wcj-settings-price-by-country.php:59
13916
- msgid "Override Scope"
13917
- msgstr ""
13918
-
13919
- #: includes/settings/wcj-settings-price-by-country.php:64
13920
- msgid "All site"
13921
- msgstr ""
13922
-
13923
- #: includes/settings/wcj-settings-price-by-country.php:65
13924
- msgid "Checkout only"
13925
- msgstr ""
13926
-
13927
- #: includes/settings/wcj-settings-price-by-country.php:69
13928
- msgid "Revert Currency to Default on Checkout"
13929
- msgstr ""
13930
-
13931
- #: includes/settings/wcj-settings-price-by-country.php:76
13932
- msgid "Price Rounding"
13933
- msgstr ""
13934
-
13935
- #: includes/settings/wcj-settings-price-by-country.php:77
13936
- msgid "If you choose to multiply price, set rounding options here."
13937
- msgstr ""
13938
-
13939
- #: includes/settings/wcj-settings-price-by-country.php:89
13940
- msgid "Make Pretty Price"
13941
- msgstr ""
13942
-
13943
- #: includes/settings/wcj-settings-price-by-country.php:91
13944
- msgid ""
13945
- "If enabled, this will be applied if exchange rates are used. Final converted "
13946
- "price will be rounded, then decreased by smallest possible value. For "
13947
- "example: $9,75 -> $10,00 -> $9,99. Please note that as smallest possible "
13948
- "value is calculated from shop's \"Precision\" option, this option must be "
13949
- "above zero."
13950
- msgstr ""
13951
-
13952
- #: includes/settings/wcj-settings-price-by-country.php:97
13953
- msgid "Discount Min Amount Multiplier"
13954
- msgstr ""
13955
-
13956
- #: includes/settings/wcj-settings-price-by-country.php:98
13957
- msgid ""
13958
- "If \"Make Pretty Price\" is enabled, here you can set by how many smallest "
13959
- "possible values (e.g. cents) final price should be decreased."
13960
- msgstr ""
13961
-
13962
- #: includes/settings/wcj-settings-price-by-country.php:105
13963
- msgid "Price by Country on per Product Basis"
13964
- msgstr ""
13965
-
13966
- #: includes/settings/wcj-settings-price-by-country.php:107
13967
- msgid "This will add product data fields in product edit."
13968
- msgstr ""
13969
-
13970
- #: includes/settings/wcj-settings-price-by-country.php:113
13971
- msgid "Per product options - backend style"
13972
- msgstr ""
13973
-
13974
- #: includes/settings/wcj-settings-price-by-country.php:118
13975
- #: includes/settings/wcj-settings-product-msrp.php:96
13976
- msgid "Inline"
13977
- msgstr ""
13978
-
13979
- #: includes/settings/wcj-settings-price-by-country.php:119
13980
- msgid "Separate meta box"
13981
- msgstr ""
13982
-
13983
- #: includes/settings/wcj-settings-price-by-country.php:123
13984
- msgid "Per product options - backend user role visibility"
13985
- msgstr ""
13986
-
13987
- #: includes/settings/wcj-settings-price-by-country.php:124
13988
- msgid "Leave empty to show to all user roles."
13989
- msgstr ""
13990
-
13991
- #: includes/settings/wcj-settings-price-by-country.php:132
13992
- msgid "Price Filter Widget and Sorting by Price Support"
13993
- msgstr ""
13994
-
13995
- #: includes/settings/wcj-settings-price-by-country.php:135
13996
- msgid "Recalculate price filter widget and sorting by price product prices"
13997
- msgstr ""
13998
-
13999
- #: includes/settings/wcj-settings-price-by-country.php:141
14000
- msgid "Add Countries Flags Images to Select Drop-Down Box"
14001
- msgstr ""
14002
-
14003
- #: includes/settings/wcj-settings-price-by-country.php:143
14004
- msgid ""
14005
- "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: "
14006
- "Country Switcher\" widget, this will add country flags to these select boxes."
14007
- msgstr ""
14008
-
14009
- #: includes/settings/wcj-settings-price-by-country.php:149
14010
- #: includes/settings/wcj-settings-price-by-user-role.php:62
14011
- msgid "Search Engine Bots"
14012
- msgstr ""
14013
-
14014
- #: includes/settings/wcj-settings-price-by-country.php:150
14015
- msgid "Disable Price by Country for Bots"
14016
- msgstr ""
14017
-
14018
- #: includes/settings/wcj-settings-price-by-country.php:172
14019
- msgid "User IP Detection Method"
14020
- msgstr ""
14021
-
14022
- #: includes/settings/wcj-settings-price-by-country.php:182
14023
- msgid "Price Format Method"
14024
- msgstr ""
14025
-
14026
- #: includes/settings/wcj-settings-price-by-country.php:183
14027
- msgid "The moment \"Pretty Price\" and \"Rounding\" will be applied"
14028
- msgstr ""
14029
-
14030
- #: includes/settings/wcj-settings-price-by-country.php:188
14031
- msgid "get_price()"
14032
- msgstr ""
14033
-
14034
- #: includes/settings/wcj-settings-price-by-country.php:189
14035
- msgid "wc_get_price_to_display()"
14036
- msgstr ""
14037
-
14038
- #: includes/settings/wcj-settings-price-by-country.php:197
14039
- msgid "Country Groups"
14040
- msgstr ""
14041
-
14042
- #: includes/settings/wcj-settings-price-by-country.php:202
14043
- msgid "Countries Selection"
14044
- msgstr ""
14045
-
14046
- #: includes/settings/wcj-settings-price-by-country.php:203
14047
- msgid "Choose how do you want to enter countries groups in admin."
14048
- msgstr ""
14049
-
14050
- #: includes/settings/wcj-settings-price-by-country.php:208
14051
- msgid "Comma separated list"
14052
- msgstr ""
14053
-
14054
- #: includes/settings/wcj-settings-price-by-country.php:209
14055
- msgid "Multiselect"
14056
- msgstr ""
14057
-
14058
- #: includes/settings/wcj-settings-price-by-country.php:210
14059
- #: includes/settings/wcj-settings-product-by-condition.php:82
14060
- #: includes/settings/wcj-settings-related-products.php:164
14061
- msgid "Chosen select"
14062
- msgstr ""
14063
-
14064
- #: includes/settings/wcj-settings-price-by-country.php:214
14065
- msgid "Autogenerate Groups"
14066
- msgstr ""
14067
-
14068
- #: includes/settings/wcj-settings-price-by-country.php:220
14069
- msgid "Groups Number"
14070
- msgstr ""
14071
-
14072
- #: includes/settings/wcj-settings-price-by-country.php:244
14073
- msgid ""
14074
- "Countries. List of comma separated country codes.<br>For country codes and "
14075
- "predefined sets visit <a href=\"https://booster.io/country-codes/\" target="
14076
- "\"_blank\">https://booster.io/country-codes/</a>"
14077
- msgstr ""
14078
-
14079
- #: includes/settings/wcj-settings-price-by-country.php:330
14080
- msgid "Multiply Price by"
14081
- msgstr ""
14082
-
14083
- #: includes/settings/wcj-settings-price-by-user-role.php:19
14084
- msgid "Enable per Product Settings"
14085
- msgstr ""
14086
-
14087
- #: includes/settings/wcj-settings-price-by-user-role.php:21
14088
- msgid ""
14089
- "When enabled, this will add new \"Booster: Price based on User Role\" meta "
14090
- "box to each product's edit page."
14091
- msgstr ""
14092
-
14093
- #: includes/settings/wcj-settings-price-by-user-role.php:27
14094
- msgid "Per Product Settings Type"
14095
- msgstr ""
14096
-
14097
- #: includes/settings/wcj-settings-price-by-user-role.php:33
14098
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:113
14099
- msgid "Multiplier"
14100
- msgstr ""
14101
-
14102
- #: includes/settings/wcj-settings-price-by-user-role.php:37
14103
- msgid "Show Roles on per Product Settings"
14104
- msgstr ""
14105
-
14106
- #: includes/settings/wcj-settings-price-by-user-role.php:38
14107
- msgid ""
14108
- "If per product settings are enabled, you can choose which roles to show on "
14109
- "product's edit page. Leave blank to show all roles."
14110
- msgstr ""
14111
-
14112
- #: includes/settings/wcj-settings-price-by-user-role.php:48
14113
- msgid ""
14114
- "When enabled, this will apply user role multipliers to shipping calculations."
14115
- msgstr ""
14116
-
14117
- #: includes/settings/wcj-settings-price-by-user-role.php:54
14118
- msgid "Disable Price based on User Role for Regular Price"
14119
- msgstr ""
14120
-
14121
- #: includes/settings/wcj-settings-price-by-user-role.php:55
14122
- msgid ""
14123
- "Disable price by user role for regular price when using multipliers (global "
14124
- "or per product)."
14125
- msgstr ""
14126
-
14127
- #: includes/settings/wcj-settings-price-by-user-role.php:63
14128
- msgid "Disable Price based on User Role for Bots"
14129
- msgstr ""
14130
-
14131
- #: includes/settings/wcj-settings-price-by-user-role.php:69
14132
- #: includes/settings/wcj-settings-product-addons.php:249
14133
- #: includes/settings/wcj-settings-wholesale-price.php:120
14134
- msgid "Advanced: Price Filters Priority"
14135
- msgstr ""
14136
-
14137
- #: includes/settings/wcj-settings-price-by-user-role.php:76
14138
- #: includes/settings/wcj-settings-product-open-pricing.php:147
14139
- #: includes/settings/wcj-settings-wholesale-price.php:112
14140
- msgid "Advanced: Price Changes"
14141
- msgstr ""
14142
-
14143
- #: includes/settings/wcj-settings-price-by-user-role.php:77
14144
- msgid "Disable price based on user role for products with \"Price Changes\""
14145
- msgstr ""
14146
-
14147
- #: includes/settings/wcj-settings-price-by-user-role.php:78
14148
- #: includes/settings/wcj-settings-product-open-pricing.php:149
14149
- #: includes/settings/wcj-settings-wholesale-price.php:114
14150
- msgid ""
14151
- "Try enabling this checkbox, if you are having compatibility issues with "
14152
- "other plugins."
14153
- msgstr ""
14154
-
14155
- #: includes/settings/wcj-settings-price-by-user-role.php:88
14156
- msgid "Roles & Multipliers"
14157
- msgstr ""
14158
-
14159
- #: includes/settings/wcj-settings-price-by-user-role.php:95
14160
- msgid "Disable Price based on User Role for Products on Sale"
14161
- msgstr ""
14162
-
14163
- #: includes/settings/wcj-settings-price-by-user-role.php:112
14164
- #: includes/settings/wcj-settings-price-by-user-role.php:179
14165
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:63
14166
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:136
14167
- msgid "Make Empty Price"
14168
- msgstr ""
14169
-
14170
- #: includes/settings/wcj-settings-price-by-user-role.php:127
14171
- msgid "Products Categories"
14172
- msgstr ""
14173
-
14174
- #: includes/settings/wcj-settings-price-by-user-role.php:133
14175
- msgid "Products Tags"
14176
- msgstr ""
14177
-
14178
- #: includes/settings/wcj-settings-price-by-user-role.php:149
14179
- #, php-format
14180
- msgid "Price based on User Role by %s"
14181
- msgstr ""
14182
-
14183
- #: includes/settings/wcj-settings-price-by-user-role.php:172
14184
- msgid ""
14185
- "Multiplier is ignored if set to negative number (e.g.: -1). Global "
14186
- "multiplier will be used instead."
14187
- msgstr ""
14188
-
14189
- #: includes/settings/wcj-settings-price-formats.php:20
14190
- msgid "Trim Zeros in Prices"
14191
- msgstr ""
14192
-
14193
- #: includes/settings/wcj-settings-price-formats.php:31
14194
- #: includes/settings/wcj-settings-price-formats.php:36
14195
- msgid "Price Formats by Currency (or WPML)"
14196
- msgstr ""
14197
-
14198
- #: includes/settings/wcj-settings-price-formats.php:43
14199
- msgid "Total Number"
14200
- msgstr ""
14201
-
14202
- #: includes/settings/wcj-settings-price-formats.php:58
14203
- msgid "Format"
14204
- msgstr ""
14205
-
14206
- #: includes/settings/wcj-settings-price-formats.php:67
14207
- msgid "Currency Position"
14208
- msgstr ""
14209
-
14210
- #: includes/settings/wcj-settings-price-formats.php:72
14211
- #: includes/settings/wcj-settings-price-formats.php:86
14212
- msgid "Left"
14213
- msgstr ""
14214
-
14215
- #: includes/settings/wcj-settings-price-formats.php:73
14216
- #: includes/settings/wcj-settings-price-formats.php:87
14217
- msgid "Right"
14218
- msgstr ""
14219
-
14220
- #: includes/settings/wcj-settings-price-formats.php:74
14221
- #: includes/settings/wcj-settings-price-formats.php:88
14222
- msgid "Left with space"
14223
- msgstr ""
14224
-
14225
- #: includes/settings/wcj-settings-price-formats.php:75
14226
- #: includes/settings/wcj-settings-price-formats.php:89
14227
- msgid "Right with space"
14228
- msgstr ""
14229
-
14230
- #: includes/settings/wcj-settings-price-formats.php:80
14231
- msgid "Additional Currency Code Position"
14232
- msgstr ""
14233
-
14234
- #: includes/settings/wcj-settings-price-formats.php:85
14235
- msgid "Do not add currency code"
14236
- msgstr ""
14237
-
14238
- #: includes/settings/wcj-settings-price-formats.php:93
14239
- msgid "Thousand Separator"
14240
- msgstr ""
14241
-
14242
- #: includes/settings/wcj-settings-price-formats.php:101
14243
- msgid "Decimal Separator"
14244
- msgstr ""
14245
-
14246
- #: includes/settings/wcj-settings-price-formats.php:109
14247
- msgid "Number of Decimals"
14248
- msgstr ""
14249
-
14250
- #: includes/settings/wcj-settings-price-formats.php:117
14251
- msgid "WPML Language Code"
14252
- msgstr ""
14253
-
14254
- #: includes/settings/wcj-settings-price-formats.php:118
14255
- msgid ""
14256
- "Option to set different price formats for different WPML languages. Can be "
14257
- "comma separated list. Leave empty to disable."
14258
- msgstr ""
14259
-
14260
- #: includes/settings/wcj-settings-price-labels.php:17
14261
- msgid "Custom Price Labels - Per Product"
14262
- msgstr ""
14263
-
14264
- #: includes/settings/wcj-settings-price-labels.php:24
14265
- msgid "This will add metaboxes to each product's admin edit page."
14266
- msgstr ""
14267
-
14268
- #: includes/settings/wcj-settings-price-labels.php:34
14269
- msgid "Custom Price Labels - Globally"
14270
- msgstr ""
14271
-
14272
- #: includes/settings/wcj-settings-price-labels.php:36
14273
- msgid "This section lets you set price labels for all products globally."
14274
- msgstr ""
14275
-
14276
- #: includes/settings/wcj-settings-price-labels.php:40
14277
- msgid "Add before the price"
14278
- msgstr ""
14279
-
14280
- #: includes/settings/wcj-settings-price-labels.php:41
14281
- msgid "Enter text to add before all products prices. Leave blank to disable."
14282
- msgstr ""
14283
-
14284
- #: includes/settings/wcj-settings-price-labels.php:50
14285
- msgid "Add after the price"
14286
- msgstr ""
14287
-
14288
- #: includes/settings/wcj-settings-price-labels.php:51
14289
- msgid "Enter text to add after all products prices. Leave blank to disable."
14290
- msgstr ""
14291
-
14292
- #: includes/settings/wcj-settings-price-labels.php:58
14293
- msgid "Add between regular and sale prices"
14294
- msgstr ""
14295
-
14296
- #: includes/settings/wcj-settings-price-labels.php:59
14297
- msgid ""
14298
- "Enter text to add between regular and sale prices. Leave blank to disable."
14299
- msgstr ""
14300
-
14301
- #: includes/settings/wcj-settings-price-labels.php:68
14302
- msgid "Remove from price"
14303
- msgstr ""
14304
-
14305
- #: includes/settings/wcj-settings-price-labels.php:69
14306
- msgid "Enter text to remove from all products prices. Leave blank to disable."
14307
- msgstr ""
14308
-
14309
- #: includes/settings/wcj-settings-price-labels.php:78
14310
- msgid "Replace in price"
14311
- msgstr ""
14312
-
14313
- #: includes/settings/wcj-settings-price-labels.php:79
14314
- msgid "Enter text to replace in all products prices. Leave blank to disable."
14315
- msgstr ""
14316
-
14317
- #: includes/settings/wcj-settings-price-labels.php:90
14318
- msgid "Enter text to replace with. Leave blank to disable."
14319
- msgstr ""
14320
-
14321
- #: includes/settings/wcj-settings-price-labels.php:100
14322
- msgid "Enter text to display instead of the price. Leave blank to disable."
14323
- msgstr ""
14324
-
14325
- #: includes/settings/wcj-settings-price-labels.php:108
14326
- msgid ""
14327
- "Apply global price labels only for selected products. Leave blank to disable "
14328
- "the option."
14329
- msgstr ""
14330
-
14331
- #: includes/settings/wcj-settings-price-labels.php:117
14332
- msgid ""
14333
- "Do not apply global price labels only for selected products. Leave blank to "
14334
- "disable the option."
14335
- msgstr ""
14336
-
14337
- #: includes/settings/wcj-settings-price-labels.php:126
14338
- msgid ""
14339
- "Apply global price labels only for selected product categories. Leave blank "
14340
- "to disable the option."
14341
- msgstr ""
14342
-
14343
- #: includes/settings/wcj-settings-price-labels.php:135
14344
- msgid ""
14345
- "Do not apply global price labels only for selected product categories. Leave "
14346
- "blank to disable the option."
14347
- msgstr ""
14348
-
14349
- #: includes/settings/wcj-settings-price-labels.php:143
14350
- msgid "Product Types - Include"
14351
- msgstr ""
14352
-
14353
- #: includes/settings/wcj-settings-price-labels.php:144
14354
- msgid ""
14355
- "Apply global price labels only for selected product types. Leave blank to "
14356
- "disable the option."
14357
- msgstr ""
14358
-
14359
- #: includes/settings/wcj-settings-price-labels.php:149
14360
- msgid "Variable product's variation"
14361
- msgstr ""
14362
-
14363
- #: includes/settings/wcj-settings-product-add-to-cart.php:14
14364
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
14365
- msgid "Add to Cart Local Redirect"
14366
- msgstr ""
14367
-
14368
- #: includes/settings/wcj-settings-product-add-to-cart.php:16
14369
- msgid ""
14370
- "This section lets you set any local URL to redirect to after successfully "
14371
- "adding product to cart."
14372
- msgstr ""
14373
-
14374
- #: includes/settings/wcj-settings-product-add-to-cart.php:18
14375
- #, php-format
14376
- msgid ""
14377
- "For archives - \"Enable AJAX add to cart buttons on archives\" checkbox in "
14378
- "<a href=\"%s\">WooCommerce > Settings > Products > Display</a> must be "
14379
- "disabled."
14380
- msgstr ""
14381
-
14382
- #: includes/settings/wcj-settings-product-add-to-cart.php:31
14383
- msgid "URL - All Products"
14384
- msgstr ""
14385
-
14386
- #: includes/settings/wcj-settings-product-add-to-cart.php:32
14387
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
14388
- msgid ""
14389
- "Redirect URL. Leave empty to redirect to checkout page (skipping the cart "
14390
- "page)."
14391
- msgstr ""
14392
-
14393
- #: includes/settings/wcj-settings-product-add-to-cart.php:40
14394
- #: includes/settings/wcj-settings-product-tabs.php:233
14395
- msgid "This will add meta boxes to each product's edit page."
14396
- msgstr ""
14397
-
14398
- #: includes/settings/wcj-settings-product-add-to-cart.php:52
14399
- #: includes/settings/wcj-settings-product-add-to-cart.php:58
14400
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
14401
- msgid "Add to Cart on Visit"
14402
- msgstr ""
14403
-
14404
- #: includes/settings/wcj-settings-product-add-to-cart.php:54
14405
- msgid ""
14406
- "This section lets you enable automatically adding product to cart on "
14407
- "visiting the product page. Product is only added once, so if it is already "
14408
- "in cart - duplicate product is not added. "
14409
- msgstr ""
14410
-
14411
- #: includes/settings/wcj-settings-product-add-to-cart.php:59
14412
- msgid ""
14413
- "If \"Per Product\" is selected - meta box will be added to each product's "
14414
- "edit page."
14415
- msgstr ""
14416
-
14417
- #: includes/settings/wcj-settings-product-add-to-cart.php:66
14418
- msgid "Per product"
14419
- msgstr ""
14420
-
14421
- #: includes/settings/wcj-settings-product-add-to-cart.php:74
14422
- msgid "Add to Cart Variable Product"
14423
- msgstr ""
14424
-
14425
- #: includes/settings/wcj-settings-product-add-to-cart.php:79
14426
- msgid "Display Radio Buttons Instead of Drop Box"
14427
- msgstr ""
14428
-
14429
- #: includes/settings/wcj-settings-product-add-to-cart.php:88
14430
- msgid "Variation Label Template"
14431
- msgstr ""
14432
-
14433
- #: includes/settings/wcj-settings-product-add-to-cart.php:98
14434
- msgid "Variation Description Template"
14435
- msgstr ""
14436
-
14437
- #: includes/settings/wcj-settings-product-add-to-cart.php:108
14438
- msgid "Variation Radio Input td Style"
14439
- msgstr ""
14440
-
14441
- #: includes/settings/wcj-settings-product-add-to-cart.php:121
14442
- msgid "Replace Add to Cart Button on Archives with Single"
14443
- msgstr ""
14444
-
14445
- #: includes/settings/wcj-settings-product-add-to-cart.php:126
14446
- msgid ""
14447
- "Replace Add to Cart Button on Archives with Button from Single Product Pages"
14448
- msgstr ""
14449
-
14450
- #: includes/settings/wcj-settings-product-add-to-cart.php:133
14451
- msgid "Variable products only"
14452
- msgstr ""
14453
-
14454
- #: includes/settings/wcj-settings-product-add-to-cart.php:141
14455
- msgid "Add to Cart Quantity"
14456
- msgstr ""
14457
-
14458
- #: includes/settings/wcj-settings-product-add-to-cart.php:146
14459
- msgid "Disable Quantity Field for All Products"
14460
- msgstr ""
14461
-
14462
- #: includes/settings/wcj-settings-product-add-to-cart.php:147
14463
- msgid "Disable on Single Product Page"
14464
- msgstr ""
14465
-
14466
- #: includes/settings/wcj-settings-product-add-to-cart.php:154
14467
- msgid "Disable on Cart Page"
14468
- msgstr ""
14469
-
14470
- #: includes/settings/wcj-settings-product-add-to-cart.php:161
14471
- msgid "Set All Products to \"Sold individually\""
14472
- msgstr ""
14473
-
14474
- #: includes/settings/wcj-settings-product-add-to-cart.php:172
14475
- msgid "Add to Cart Button Custom URL"
14476
- msgstr ""
14477
-
14478
- #: includes/settings/wcj-settings-product-add-to-cart.php:177
14479
- msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
14480
- msgstr ""
14481
-
14482
- #: includes/settings/wcj-settings-product-add-to-cart.php:189
14483
- msgid "Add to Cart Button AJAX"
14484
- msgstr ""
14485
-
14486
- #: includes/settings/wcj-settings-product-add-to-cart.php:194
14487
- msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
14488
- msgstr ""
14489
-
14490
- #: includes/settings/wcj-settings-product-add-to-cart.php:211
14491
- msgid "Open External Products on Add to Cart in New Window"
14492
- msgstr ""
14493
-
14494
- #: includes/settings/wcj-settings-product-add-to-cart.php:212
14495
- msgid "Enable on Single Product Pages"
14496
- msgstr ""
14497
-
14498
- #: includes/settings/wcj-settings-product-add-to-cart.php:219
14499
- msgid "Enable on Category/Archive Pages"
14500
- msgstr ""
14501
-
14502
- #: includes/settings/wcj-settings-product-add-to-cart.php:230
14503
- msgid "Add to Cart Message Options"
14504
- msgstr ""
14505
-
14506
- #: includes/settings/wcj-settings-product-add-to-cart.php:235
14507
- msgid "Change \"Continue shopping\" Text"
14508
- msgstr ""
14509
-
14510
- #: includes/settings/wcj-settings-product-add-to-cart.php:249
14511
- msgid "Change \"View cart\" Text"
14512
- msgstr ""
14513
-
14514
- #: includes/settings/wcj-settings-product-add-to-cart.php:267
14515
- msgid "Add to Cart Button Position Options"
14516
- msgstr ""
14517
-
14518
- #: includes/settings/wcj-settings-product-add-to-cart.php:272
14519
- msgid "Add to Cart Button Position"
14520
- msgstr ""
14521
-
14522
- #: includes/settings/wcj-settings-product-add-to-cart.php:279
14523
- msgid "Reposition Button on Single Product Pages"
14524
- msgstr ""
14525
-
14526
- #: includes/settings/wcj-settings-product-add-to-cart.php:298
14527
- #, php-format
14528
- msgid ""
14529
- "Here are the default WooCommerce priorities for \"Inside single product "
14530
- "summary\" position: %s"
14531
- msgstr ""
14532
-
14533
- #: includes/settings/wcj-settings-product-add-to-cart.php:301
14534
- msgid "Rating"
14535
- msgstr ""
14536
-
14537
- #: includes/settings/wcj-settings-product-add-to-cart.php:303
14538
- msgid "Excerpt"
14539
- msgstr ""
14540
-
14541
- #: includes/settings/wcj-settings-product-add-to-cart.php:305
14542
- msgid "Sharing"
14543
- msgstr ""
14544
-
14545
- #: includes/settings/wcj-settings-product-add-to-cart.php:314
14546
- msgid "Reposition Button on Category/Archive Pages"
14547
- msgstr ""
14548
-
14549
- #: includes/settings/wcj-settings-product-addons.php:16
14550
- msgid "New order"
14551
- msgstr ""
14552
-
14553
- #: includes/settings/wcj-settings-product-addons.php:19
14554
- #, php-format
14555
- msgid "Order status \"%s\""
14556
- msgstr ""
14557
-
14558
- #: includes/settings/wcj-settings-product-addons.php:30
14559
- msgid "Enable per Product Addons"
14560
- msgstr ""
14561
-
14562
- #: includes/settings/wcj-settings-product-addons.php:32
14563
- msgid ""
14564
- "When enabled, this will add new \"Booster: Product Addons\" meta box to each "
14565
- "product's edit page."
14566
- msgstr ""
14567
-
14568
- #: includes/settings/wcj-settings-product-addons.php:44
14569
- msgid "All Product Options"
14570
- msgstr ""
14571
-
14572
- #: includes/settings/wcj-settings-product-addons.php:49
14573
- msgid "Enable All Products Addons"
14574
- msgstr ""
14575
-
14576
- #: includes/settings/wcj-settings-product-addons.php:51
14577
- msgid "When enabled, this will add addons below to all products."
14578
- msgstr ""
14579
-
14580
- #: includes/settings/wcj-settings-product-addons.php:57
14581
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
14582
- msgid "Product Addons Total Number"
14583
- msgstr ""
14584
-
14585
- #: includes/settings/wcj-settings-product-addons.php:58
14586
- msgid "Save changes after you change this number."
14587
- msgstr ""
14588
-
14589
- #: includes/settings/wcj-settings-product-addons.php:73
14590
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
14591
- msgid "Product Addon"
14592
- msgstr ""
14593
-
14594
- #: includes/settings/wcj-settings-product-addons.php:86
14595
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:51
14596
- msgid "Radio Buttons"
14597
- msgstr ""
14598
-
14599
- #: includes/settings/wcj-settings-product-addons.php:87
14600
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:52
14601
- msgid "Select Box"
14602
- msgstr ""
14603
-
14604
- #: includes/settings/wcj-settings-product-addons.php:98
14605
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:64
14606
- msgid "Label(s)"
14607
- msgstr ""
14608
-
14609
- #: includes/settings/wcj-settings-product-addons.php:99
14610
- #: includes/settings/wcj-settings-product-addons.php:107
14611
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:65
14612
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
14613
- msgid "For radio and select enter one value per line."
14614
- msgstr ""
14615
-
14616
- #: includes/settings/wcj-settings-product-addons.php:106
14617
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:72
14618
- msgid "Price(s)"
14619
- msgstr ""
14620
-
14621
- #: includes/settings/wcj-settings-product-addons.php:115
14622
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:80
14623
- msgid "Tooltip(s)"
14624
- msgstr ""
14625
-
14626
- #: includes/settings/wcj-settings-product-addons.php:116
14627
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:81
14628
- msgid "For radio enter one value per line."
14629
- msgstr ""
14630
-
14631
- #: includes/settings/wcj-settings-product-addons.php:123
14632
- #: includes/settings/wcj-settings-purchase-data.php:94
14633
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
14634
- msgid "Default Value"
14635
- msgstr ""
14636
-
14637
- #: includes/settings/wcj-settings-product-addons.php:124
14638
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
14639
- msgid ""
14640
- "For checkbox use 'checked'; for radio and select enter default label. Leave "
14641
- "blank for no default value."
14642
- msgstr ""
14643
-
14644
- #: includes/settings/wcj-settings-product-addons.php:131
14645
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:97
14646
- msgid "For \"Select Box\" type only."
14647
- msgstr ""
14648
-
14649
- #: includes/settings/wcj-settings-product-addons.php:143
14650
- #: includes/settings/wcj-settings-product-by-user.php:45
14651
- msgid "Is Required"
14652
- msgstr ""
14653
-
14654
- #: includes/settings/wcj-settings-product-addons.php:158
14655
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:122
14656
- msgid ""
14657
- "Leave empty to disable quantity calculation for the addon. When set to zero "
14658
- "- addon will be disabled."
14659
- msgstr ""
14660
-
14661
- #: includes/settings/wcj-settings-product-addons.php:178
14662
- msgid "Enable AJAX on Single Product Page"
14663
- msgstr ""
14664
-
14665
- #: includes/settings/wcj-settings-product-addons.php:185
14666
- #: includes/settings/wcj-settings-product-addons.php:186
14667
- msgid "Ignore Strikethrough Price"
14668
- msgstr ""
14669
-
14670
- #: includes/settings/wcj-settings-product-addons.php:187
14671
- msgid ""
14672
- "If a product has both regular and sale prices, only the sale price will be "
14673
- "updated on AJAX. The regular price will be ignored"
14674
- msgstr ""
14675
-
14676
- #: includes/settings/wcj-settings-product-addons.php:193
14677
- msgid "Decrease Quantity"
14678
- msgstr ""
14679
-
14680
- #: includes/settings/wcj-settings-product-addons.php:194
14681
- msgid ""
14682
- "If you select multiple triggers to decrease quantity, it will be decreased "
14683
- "only once (on whichever trigger is executed first)."
14684
- msgstr ""
14685
-
14686
- #: includes/settings/wcj-settings-product-addons.php:202
14687
- msgid "Admin Order Page"
14688
- msgstr ""
14689
-
14690
- #: includes/settings/wcj-settings-product-addons.php:203
14691
- msgid "Hide all addons"
14692
- msgstr ""
14693
-
14694
- #: includes/settings/wcj-settings-product-addons.php:209
14695
- msgid "Position on Frontend"
14696
- msgstr ""
14697
-
14698
- #: includes/settings/wcj-settings-product-addons.php:214
14699
- #: includes/settings/wcj-settings-product-custom-info.php:108
14700
- #: includes/settings/wcj-settings-product-input-fields.php:195
14701
- #: includes/settings/wcj-settings-product-open-pricing.php:17
14702
- msgid "Before add to cart button"
14703
- msgstr ""
14704
-
14705
- #: includes/settings/wcj-settings-product-addons.php:215
14706
- #: includes/settings/wcj-settings-product-custom-info.php:109
14707
- #: includes/settings/wcj-settings-product-input-fields.php:196
14708
- #: includes/settings/wcj-settings-product-open-pricing.php:18
14709
- msgid "After add to cart button"
14710
- msgstr ""
14711
-
14712
- #: includes/settings/wcj-settings-product-addons.php:219
14713
- msgid "Position Priority on Frontend"
14714
- msgstr ""
14715
-
14716
- #: includes/settings/wcj-settings-product-addons.php:220
14717
- #: includes/settings/wcj-settings-shipping-by-condition.php:114
14718
- #: includes/settings/wcj-settings-shipping-options.php:41
14719
- msgid "Set to zero to use the default priority."
14720
- msgstr ""
14721
-
14722
- #: includes/settings/wcj-settings-product-addons.php:226
14723
- msgid "Advanced: Apply Price Filter"
14724
- msgstr ""
14725
-
14726
- #: includes/settings/wcj-settings-product-addons.php:231
14727
- msgid "By module"
14728
- msgstr ""
14729
-
14730
- #: includes/settings/wcj-settings-product-addons.php:237
14731
- msgid ""
14732
- "If you have selected \"By module\" for \"Advanced: Apply Price Filter\" "
14733
- "option, you can set which modules to apply here. Leave empty to apply all "
14734
- "modules."
14735
- msgstr ""
14736
-
14737
- #: includes/settings/wcj-settings-product-addons.php:256
14738
- #: includes/settings/wcj-settings-product-bookings.php:106
14739
- #: includes/settings/wcj-settings-product-open-pricing.php:139
14740
- msgid "Advanced: Check for Outputted Data"
14741
- msgstr ""
14742
-
14743
- #: includes/settings/wcj-settings-product-addons.php:258
14744
- #: includes/settings/wcj-settings-product-bookings.php:108
14745
- #: includes/settings/wcj-settings-product-input-fields.php:355
14746
- #: includes/settings/wcj-settings-product-open-pricing.php:141
14747
- msgid ""
14748
- "Ensures that data outputted only once. Enable this if you see data outputted "
14749
- "on frontend twice. Disable if you see no data outputted."
14750
- msgstr ""
14751
-
14752
- #: includes/settings/wcj-settings-product-addons.php:268
14753
- msgid "Frontend Templates"
14754
- msgstr ""
14755
-
14756
- #: includes/settings/wcj-settings-product-addons.php:273
14757
- msgid "Each Addon - Title"
14758
- msgstr ""
14759
-
14760
- #: includes/settings/wcj-settings-product-addons.php:281
14761
- msgid "Each Addon - Type: Checkbox"
14762
- msgstr ""
14763
-
14764
- #: includes/settings/wcj-settings-product-addons.php:289
14765
- msgid "Each Addon - Type: Text"
14766
- msgstr ""
14767
-
14768
- #: includes/settings/wcj-settings-product-addons.php:297
14769
- msgid "Each Addon - Type: Select Box"
14770
- msgstr ""
14771
-
14772
- #: includes/settings/wcj-settings-product-addons.php:305
14773
- msgid "Each Addon - Type: Select Box (Each Option)"
14774
- msgstr ""
14775
-
14776
- #: includes/settings/wcj-settings-product-addons.php:313
14777
- msgid "Each Addon - Type: Radio Button (Each)"
14778
- msgstr ""
14779
-
14780
- #: includes/settings/wcj-settings-product-addons.php:321
14781
- msgid "All Addons - Final"
14782
- msgstr ""
14783
-
14784
- #: includes/settings/wcj-settings-product-addons.php:333
14785
- msgid "Cart Template"
14786
- msgstr ""
14787
-
14788
- #: includes/settings/wcj-settings-product-addons.php:345
14789
- #: includes/settings/wcj-settings-product-addons.php:376
14790
- msgid "Each Addon"
14791
- msgstr ""
14792
-
14793
- #: includes/settings/wcj-settings-product-addons.php:364
14794
- msgid "Order Details Table Template"
14795
- msgstr ""
14796
-
14797
- #: includes/settings/wcj-settings-product-bookings.php:28
14798
- msgid "Labels and Messages"
14799
- msgstr ""
14800
-
14801
- #: includes/settings/wcj-settings-product-bookings.php:33
14802
- msgid "Frontend Label: \"Date from\""
14803
- msgstr ""
14804
-
14805
- #: includes/settings/wcj-settings-product-bookings.php:40
14806
- msgid "Frontend Label: \"Date to\""
14807
- msgstr ""
14808
-
14809
- #: includes/settings/wcj-settings-product-bookings.php:47
14810
- msgid "Frontend Label: Period"
14811
- msgstr ""
14812
-
14813
- #: includes/settings/wcj-settings-product-bookings.php:54
14814
- msgid "Frontend Label: Price per Day"
14815
- msgstr ""
14816
-
14817
- #: includes/settings/wcj-settings-product-bookings.php:61
14818
- msgid "Message: \"Date from\" is missing"
14819
- msgstr ""
14820
-
14821
- #: includes/settings/wcj-settings-product-bookings.php:68
14822
- #: includes/settings/wcj-settings-product-bookings.php:75
14823
- msgid "Message: \"Date to\" is missing"
14824
- msgstr ""
14825
-
14826
- #: includes/settings/wcj-settings-product-bookings.php:91
14827
- msgid "Price per Day on Variable Products"
14828
- msgstr ""
14829
-
14830
- #: includes/settings/wcj-settings-product-bookings.php:92
14831
- msgid "Calculate Variable Products final price per day, according to calendar"
14832
- msgstr ""
14833
-
14834
- #: includes/settings/wcj-settings-product-bookings.php:93
14835
- msgid ""
14836
- "Disable it will make the Variable Product final price be calculated "
14837
- "regardless of the chosen days on the calendar"
14838
- msgstr ""
14839
-
14840
- #: includes/settings/wcj-settings-product-bookings.php:99
14841
- msgid "Hide Quantity Selector for Bookings Products"
14842
- msgstr ""
14843
-
14844
- #: includes/settings/wcj-settings-product-bookings.php:118
14845
- msgid "Datepicker Options"
14846
- msgstr ""
14847
-
14848
- #: includes/settings/wcj-settings-product-bookings.php:119
14849
- msgid "This settings will be applied to all your bookings products."
14850
- msgstr ""
14851
-
14852
- #: includes/settings/wcj-settings-product-bookings.php:124
14853
- msgid "Date from: Exclude Days"
14854
- msgstr ""
14855
-
14856
- #: includes/settings/wcj-settings-product-bookings.php:125
14857
- #: includes/settings/wcj-settings-product-bookings.php:134
14858
- msgid "Leave blank to include all days."
14859
- msgstr ""
14860
-
14861
- #: includes/settings/wcj-settings-product-bookings.php:133
14862
- msgid "Date to: Exclude Days"
14863
- msgstr ""
14864
-
14865
- #: includes/settings/wcj-settings-product-bookings.php:142
14866
- msgid "Date from: Exclude Months"
14867
- msgstr ""
14868
-
14869
- #: includes/settings/wcj-settings-product-bookings.php:143
14870
- #: includes/settings/wcj-settings-product-bookings.php:152
14871
- msgid "Leave blank to include all months."
14872
- msgstr ""
14873
-
14874
- #: includes/settings/wcj-settings-product-bookings.php:151
14875
- msgid "Date to: Exclude Months"
14876
- msgstr ""
14877
-
14878
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:14
14879
- msgid "Product Bulk Meta Editor Tool Options"
14880
- msgstr ""
14881
-
14882
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:19
14883
- msgid "Check if Meta Exists"
14884
- msgstr ""
14885
-
14886
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:20
14887
- msgid ""
14888
- "When enabled - meta can be changed only if it already existed for product. "
14889
- "If you want to be able to create new meta for products, disable this option."
14890
- msgstr ""
14891
-
14892
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:27
14893
- msgid "Add Variations to Products List"
14894
- msgstr ""
14895
-
14896
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:28
14897
- msgid ""
14898
- "When enabled - variations of variable products will be added to the list. If "
14899
- "you want to edit only main product's meta, disable this option."
14900
- msgstr ""
14901
-
14902
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:36
14903
- msgid "Additional Columns"
14904
- msgstr ""
14905
-
14906
- #: includes/settings/wcj-settings-product-by-condition.php:14
14907
- msgid "Visibility Options"
14908
- msgstr ""
14909
-
14910
- #: includes/settings/wcj-settings-product-by-condition.php:19
14911
- msgid "Hide Visibility"
14912
- msgstr ""
14913
-
14914
- #: includes/settings/wcj-settings-product-by-condition.php:20
14915
- msgid ""
14916
- "This will hide selected products in shop and search results. However product "
14917
- "still will be accessible via direct link."
14918
- msgstr ""
14919
-
14920
- #: includes/settings/wcj-settings-product-by-condition.php:27
14921
- msgid "Make Non-Purchasable"
14922
- msgstr ""
14923
-
14924
- #: includes/settings/wcj-settings-product-by-condition.php:28
14925
- msgid ""
14926
- "This will make selected products non-purchasable (i.e. product can't be "
14927
- "added to the cart)."
14928
- msgstr ""
14929
-
14930
- #: includes/settings/wcj-settings-product-by-condition.php:35
14931
- msgid "Modify Query"
14932
- msgstr ""
14933
-
14934
- #: includes/settings/wcj-settings-product-by-condition.php:36
14935
- msgid "This will hide selected products completely (including direct link)."
14936
- msgstr ""
14937
-
14938
- #: includes/settings/wcj-settings-product-by-condition.php:43
14939
- msgid ""
14940
- "Enable this if you are still seeing hidden products in \"Products\" widgets."
14941
- msgstr ""
14942
-
14943
- #: includes/settings/wcj-settings-product-by-condition.php:62
14944
- msgid "Visibility Method"
14945
- msgstr ""
14946
-
14947
- #: includes/settings/wcj-settings-product-by-condition.php:63
14948
- msgid "This option sets how do you want to set product's visibility."
14949
- msgstr ""
14950
-
14951
- #: includes/settings/wcj-settings-product-by-condition.php:64
14952
- msgid "Possible values: \"Set visible\", \"Set invisible\" or \"Set both\"."
14953
- msgstr ""
14954
-
14955
- #: includes/settings/wcj-settings-product-by-condition.php:69
14956
- msgid "Set visible"
14957
- msgstr ""
14958
-
14959
- #: includes/settings/wcj-settings-product-by-condition.php:70
14960
- msgid "Set invisible"
14961
- msgstr ""
14962
-
14963
- #: includes/settings/wcj-settings-product-by-condition.php:71
14964
- msgid "Set both"
14965
- msgstr ""
14966
-
14967
- #: includes/settings/wcj-settings-product-by-condition.php:77
14968
- msgid "Select Box Style"
14969
- msgstr ""
14970
-
14971
- #: includes/settings/wcj-settings-product-by-condition.php:83
14972
- #: includes/settings/wcj-settings-related-products.php:165
14973
- #: includes/shortcodes/class-wcj-shortcodes-order-items.php:189
14974
- msgid "Standard"
14975
- msgstr ""
14976
-
14977
- #: includes/settings/wcj-settings-product-by-condition.php:87
14978
- msgid "Quick Edit"
14979
- msgstr ""
14980
-
14981
- #: includes/settings/wcj-settings-product-by-condition.php:88
14982
- msgid "This will add options to the \"Quick Edit\"."
14983
- msgstr ""
14984
-
14985
- #: includes/settings/wcj-settings-product-by-condition.php:95
14986
- msgid "Bulk Edit"
14987
- msgstr ""
14988
-
14989
- #: includes/settings/wcj-settings-product-by-condition.php:100
14990
- msgid "This will add options to the \"Bulk Actions > Edit\"."
14991
- msgstr ""
14992
-
14993
- #: includes/settings/wcj-settings-product-by-condition.php:105
14994
- msgid "Products List Column"
14995
- msgstr ""
14996
-
14997
- #: includes/settings/wcj-settings-product-by-condition.php:106
14998
- msgid "This will add column to the admin products list."
14999
- msgstr ""
15000
-
15001
- #: includes/settings/wcj-settings-product-by-date.php:14
15002
- #: includes/settings/wcj-settings-product-by-time.php:14
15003
- msgid "All Products Options"
15004
- msgstr ""
15005
-
15006
- #: includes/settings/wcj-settings-product-by-date.php:15
15007
- #, php-format
15008
- msgid "Today is <code>%s</code>."
15009
- msgstr ""
15010
-
15011
- #: includes/settings/wcj-settings-product-by-date.php:22
15012
- msgid "Date formats:"
15013
- msgstr ""
15014
-
15015
- #: includes/settings/wcj-settings-product-by-date.php:60
15016
- msgid "Direct Date Admin Input Date Format"
15017
- msgstr ""
15018
-
15019
- #: includes/settings/wcj-settings-product-by-date.php:61
15020
- #, php-format
15021
- msgid "E.g. %s."
15022
- msgstr ""
15023
-
15024
- #: includes/settings/wcj-settings-product-by-date.php:62
15025
- msgid "Leave blank to use the default date format."
15026
- msgstr ""
15027
-
15028
- #: includes/settings/wcj-settings-product-by-date.php:72
15029
- #: includes/settings/wcj-settings-product-by-time.php:64
15030
- msgid "Frontend Messages Options"
15031
- msgstr ""
15032
-
15033
- #: includes/settings/wcj-settings-product-by-date.php:77
15034
- msgid "Message (Monthly)"
15035
- msgstr ""
15036
-
15037
- #: includes/settings/wcj-settings-product-by-date.php:78
15038
- msgid "Message when product is not available by date (monthly)."
15039
- msgstr ""
15040
-
15041
- #: includes/settings/wcj-settings-product-by-date.php:80
15042
- #: includes/settings/wcj-settings-product-by-date.php:92
15043
- #: includes/settings/wcj-settings-product-by-date.php:104
15044
- #: includes/settings/wcj-settings-product-by-time.php:72
15045
- #: includes/settings/wcj-settings-product-by-time.php:84
15046
- #: includes/settings/wcj-settings-stock.php:35
15047
- #: includes/settings/wcj-settings-stock.php:44
15048
- #: includes/settings/wcj-settings-stock.php:56
15049
- #: includes/settings/wcj-settings-stock.php:100
15050
- #: includes/settings/wcj-settings-stock.php:145
15051
- #: includes/settings/wcj-settings-stock.php:186
15052
- msgid "You can also use shortcodes here."
15053
- msgstr ""
15054
-
15055
- #: includes/settings/wcj-settings-product-by-date.php:89
15056
- msgid "Message (Monthly - Month Off)"
15057
- msgstr ""
15058
-
15059
- #: includes/settings/wcj-settings-product-by-date.php:90
15060
- msgid "Message when product is not available by date (month off)."
15061
- msgstr ""
15062
-
15063
- #: includes/settings/wcj-settings-product-by-date.php:101
15064
- msgid "Message (Direct Date)"
15065
- msgstr ""
15066
-
15067
- #: includes/settings/wcj-settings-product-by-date.php:102
15068
- msgid "Message when product is not available by direct date."
15069
- msgstr ""
15070
-
15071
- #: includes/settings/wcj-settings-product-by-date.php:122
15072
- msgid "Action"
15073
- msgstr ""
15074
-
15075
- #: includes/settings/wcj-settings-product-by-date.php:123
15076
- msgid "Action to be taken, when product is not available by date."
15077
- msgstr ""
15078
-
15079
- #: includes/settings/wcj-settings-product-by-date.php:128
15080
- msgid "Make product non-purchasable"
15081
- msgstr ""
15082
-
15083
- #: includes/settings/wcj-settings-product-by-date.php:129
15084
- msgid "Only output message"
15085
- msgstr ""
15086
-
15087
- #: includes/settings/wcj-settings-product-by-time.php:15
15088
- #, php-format
15089
- msgid "Local time is <code>%s</code>."
15090
- msgstr ""
15091
-
15092
- #: includes/settings/wcj-settings-product-by-time.php:20
15093
- msgid "Product by Time"
15094
- msgstr ""
15095
-
15096
- #: includes/settings/wcj-settings-product-by-time.php:22
15097
- msgid "Time formats:"
15098
- msgstr ""
15099
-
15100
- #: includes/settings/wcj-settings-product-by-time.php:70
15101
- msgid "Message when product is not available by time."
15102
- msgstr ""
15103
-
15104
- #: includes/settings/wcj-settings-product-by-time.php:71
15105
- msgid "Replaceable values:"
15106
- msgstr ""
15107
-
15108
- #: includes/settings/wcj-settings-product-by-time.php:81
15109
- msgid "Message (Day Off)"
15110
- msgstr ""
15111
-
15112
- #: includes/settings/wcj-settings-product-by-time.php:82
15113
- msgid "Message when product is not available by time (day off)."
15114
- msgstr ""
15115
-
15116
- #: includes/settings/wcj-settings-product-by-time.php:83
15117
- msgid "Replaceable value:"
15118
- msgstr ""
15119
-
15120
- #: includes/settings/wcj-settings-product-by-user.php:15
15121
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:178
15122
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:370
15123
- msgid "Image"
15124
- msgstr ""
15125
-
15126
- #: includes/settings/wcj-settings-product-by-user.php:18
15127
- msgid "Product URL (for \"External/Affiliate\" product type only)"
15128
- msgstr ""
15129
-
15130
- #: includes/settings/wcj-settings-product-by-user.php:35
15131
- msgid "Additional Fields"
15132
- msgstr ""
15133
-
15134
- #: includes/settings/wcj-settings-product-by-user.php:61
15135
- msgid "<em>Title</em> field is always enabled and required."
15136
- msgstr ""
15137
-
15138
- #: includes/settings/wcj-settings-product-by-user.php:71
15139
- msgid "Used for price fields only."
15140
- msgstr ""
15141
-
15142
- #: includes/settings/wcj-settings-product-by-user.php:78
15143
- msgid "User Visibility"
15144
- msgstr ""
15145
-
15146
- #: includes/settings/wcj-settings-product-by-user.php:88
15147
- msgid "Product Type"
15148
- msgstr ""
15149
-
15150
- #: includes/settings/wcj-settings-product-by-user.php:94
15151
- msgid "External/Affiliate product"
15152
- msgstr ""
15153
-
15154
- #: includes/settings/wcj-settings-product-by-user.php:99
15155
- msgid "Product Status"
15156
- msgstr ""
15157
-
15158
- #: includes/settings/wcj-settings-product-by-user.php:106
15159
- msgid "Require Unique Title"
15160
- msgstr ""
15161
-
15162
- #: includes/settings/wcj-settings-product-by-user.php:113
15163
- msgid "Add \"My Products\" Tab to User's My Account Page"
15164
- msgstr ""
15165
-
15166
- #: includes/settings/wcj-settings-product-by-user.php:120
15167
- msgid "Message: Product Successfully Added"
15168
- msgstr ""
15169
-
15170
- #: includes/settings/wcj-settings-product-by-user.php:122
15171
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:289
15172
- msgid "\"%product_title%\" successfully added!"
15173
- msgstr ""
15174
-
15175
- #: includes/settings/wcj-settings-product-by-user.php:127
15176
- msgid "Message: Product Successfully Edited"
15177
- msgstr ""
15178
-
15179
- #: includes/settings/wcj-settings-product-by-user.php:129
15180
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:296
15181
- msgid "\"%product_title%\" successfully edited!"
15182
- msgstr ""
15183
-
15184
- #: includes/settings/wcj-settings-product-by-user.php:134
15185
- msgid "Total Custom Taxonomies"
15186
- msgstr ""
15187
-
15188
- #: includes/settings/wcj-settings-product-by-user.php:148
15189
- msgid "Custom Taxonomy"
15190
- msgstr ""
15191
-
15192
- #: includes/settings/wcj-settings-product-custom-info.php:44
15193
- msgid "Single Product Pages"
15194
- msgstr ""
15195
-
15196
- #: includes/settings/wcj-settings-product-custom-info.php:44
15197
- #: includes/settings/wcj-settings-product-msrp.php:14
15198
- msgid "Archives"
15199
- msgstr ""
15200
-
15201
- #: includes/settings/wcj-settings-product-custom-info.php:83
15202
- #, php-format
15203
- msgid "Block #%s"
15204
- msgstr ""
15205
-
15206
- #: includes/settings/wcj-settings-product-custom-info.php:92
15207
- #: includes/settings/wcj-settings-product-images.php:49
15208
- #: includes/settings/wcj-settings-product-images.php:58
15209
- #: includes/settings/wcj-settings-product-images.php:67
15210
- #: includes/settings/wcj-settings-products-xml.php:111
15211
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
15212
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:26
15213
- msgid "You can use shortcodes here."
15214
- msgstr ""
15215
-
15216
- #: includes/settings/wcj-settings-product-custom-info.php:111
15217
- msgid "Product meta start"
15218
- msgstr ""
15219
-
15220
- #: includes/settings/wcj-settings-product-custom-info.php:112
15221
- msgid "Product meta end"
15222
- msgstr ""
15223
-
15224
- #: includes/settings/wcj-settings-product-custom-info.php:117
15225
- msgid "Inside product title"
15226
- msgstr ""
15227
-
15228
- #: includes/settings/wcj-settings-product-custom-info.php:130
15229
- #: includes/settings/wcj-settings-wholesale-price.php:95
15230
- msgid "Product Categories to Include"
15231
- msgstr ""
15232
-
15233
- #: includes/settings/wcj-settings-product-custom-info.php:131
15234
- #: includes/settings/wcj-settings-product-custom-info.php:139
15235
- #: includes/settings/wcj-settings-product-custom-info.php:147
15236
- #: includes/settings/wcj-settings-product-custom-info.php:155
15237
- #: includes/settings/wcj-settings-product-custom-info.php:163
15238
- #: includes/settings/wcj-settings-product-custom-info.php:171
15239
- msgid "Leave blank to disable the option."
15240
- msgstr ""
15241
-
15242
- #: includes/settings/wcj-settings-product-custom-info.php:138
15243
- #: includes/settings/wcj-settings-wholesale-price.php:104
15244
- msgid "Product Categories to Exclude"
15245
- msgstr ""
15246
-
15247
- #: includes/settings/wcj-settings-product-custom-info.php:146
15248
- msgid "Product Tags to Include"
15249
- msgstr ""
15250
-
15251
- #: includes/settings/wcj-settings-product-custom-info.php:154
15252
- msgid "Product Tags to Exclude"
15253
- msgstr ""
15254
-
15255
- #: includes/settings/wcj-settings-product-custom-info.php:162
15256
- #: includes/settings/wcj-settings-products-xml.php:147
15257
- #: includes/settings/wcj-settings-wholesale-price.php:82
15258
- msgid "Products to Include"
15259
- msgstr ""
15260
-
15261
- #: includes/settings/wcj-settings-product-custom-info.php:170
15262
- #: includes/settings/wcj-settings-products-xml.php:157
15263
- #: includes/settings/wcj-settings-wholesale-price.php:89
15264
- msgid "Products to Exclude"
15265
- msgstr ""
15266
-
15267
- #: includes/settings/wcj-settings-product-custom-info.php:190
15268
- msgid "Extra Filters"
15269
- msgstr ""
15270
-
15271
- #: includes/settings/wcj-settings-product-custom-info.php:192
15272
- msgid "You can add custom filters here (one per line, in filter|title format)."
15273
- msgstr ""
15274
-
15275
- #: includes/settings/wcj-settings-product-custom-info.php:193
15276
- #, php-format
15277
- msgid "E.g.: %s."
15278
- msgstr ""
15279
-
15280
- #: includes/settings/wcj-settings-product-images.php:14
15281
- msgid "Product Image and Thumbnails"
15282
- msgstr ""
15283
-
15284
- #: includes/settings/wcj-settings-product-images.php:19
15285
- msgid "Image and Thumbnails on Single"
15286
- msgstr ""
15287
-
15288
- #: includes/settings/wcj-settings-product-images.php:26
15289
- msgid "Image on Single"
15290
- msgstr ""
15291
-
15292
- #: includes/settings/wcj-settings-product-images.php:33
15293
- msgid "Thumbnails on Single"
15294
- msgstr ""
15295
-
15296
- #: includes/settings/wcj-settings-product-images.php:40
15297
- msgid "Image on Archives"
15298
- msgstr ""
15299
-
15300
- #: includes/settings/wcj-settings-product-images.php:47
15301
- msgid "Replace Image on Single"
15302
- msgstr ""
15303
-
15304
- #: includes/settings/wcj-settings-product-images.php:48
15305
- msgid ""
15306
- "Replace image on single product page with custom HTML. Leave blank to "
15307
- "disable."
15308
- msgstr ""
15309
-
15310
- #: includes/settings/wcj-settings-product-images.php:56
15311
- msgid "Replace Thumbnails on Single"
15312
- msgstr ""
15313
-
15314
- #: includes/settings/wcj-settings-product-images.php:57
15315
- msgid ""
15316
- "Replace thumbnails on single product page with custom HTML. Leave blank to "
15317
- "disable."
15318
- msgstr ""
15319
-
15320
- #: includes/settings/wcj-settings-product-images.php:65
15321
- msgid "Replace Image on Archive"
15322
- msgstr ""
15323
-
15324
- #: includes/settings/wcj-settings-product-images.php:66
15325
- msgid ""
15326
- "Replace image on archive pages with custom HTML. Leave blank to disable."
15327
- msgstr ""
15328
-
15329
- #: includes/settings/wcj-settings-product-images.php:74
15330
- msgid "Single Product Thumbnails Columns"
15331
- msgstr ""
15332
-
15333
- #: includes/settings/wcj-settings-product-images.php:84
15334
- msgid "Placeholder Image"
15335
- msgstr ""
15336
-
15337
- #: includes/settings/wcj-settings-product-images.php:89
15338
- msgid "Custom Placeholder Image URL"
15339
- msgstr ""
15340
-
15341
- #: includes/settings/wcj-settings-product-images.php:90
15342
- msgid "Leave blank to use the default placeholder image."
15343
- msgstr ""
15344
-
15345
- #: includes/settings/wcj-settings-product-images.php:101
15346
- msgid "Callbacks"
15347
- msgstr ""
15348
-
15349
- #: includes/settings/wcj-settings-product-images.php:102
15350
- msgid ""
15351
- "Callback functions used by WooCommerce and the current theme in order to "
15352
- "customize images and thumbnails"
15353
- msgstr ""
15354
-
15355
- #: includes/settings/wcj-settings-product-images.php:107
15356
- msgid "Loop Thumbnail"
15357
- msgstr ""
15358
-
15359
- #: includes/settings/wcj-settings-product-images.php:108
15360
- msgid "Used on hook <strong>woocommerce_before_shop_loop_item_title</strong>"
15361
- msgstr ""
15362
-
15363
- #: includes/settings/wcj-settings-product-images.php:114
15364
- msgid "Loop Thumbnail Priority"
15365
- msgstr ""
15366
-
15367
- #: includes/settings/wcj-settings-product-images.php:120
15368
- msgid "Show Images"
15369
- msgstr ""
15370
-
15371
- #: includes/settings/wcj-settings-product-images.php:121
15372
- msgid "Used on hook <strong>woocommerce_before_single_product_summary</strong>"
15373
- msgstr ""
15374
-
15375
- #: includes/settings/wcj-settings-product-images.php:127
15376
- msgid "Show Images Priority"
15377
- msgstr ""
15378
-
15379
- #: includes/settings/wcj-settings-product-info.php:14
15380
- msgid "Products Info"
15381
- msgstr ""
15382
-
15383
- #: includes/settings/wcj-settings-product-info.php:15
15384
- msgid ""
15385
- "For full list of short codes, please visit <a target=\"_blank\" href="
15386
- "\"https://booster.io/shortcodes/\">https://booster.io/shortcodes/</a>."
15387
- msgstr ""
15388
-
15389
- #: includes/settings/wcj-settings-product-info.php:19
15390
- #: includes/settings/wcj-settings-product-info.php:34
15391
- msgid "Product Info on Archive Pages"
15392
- msgstr ""
15393
-
15394
- #: includes/settings/wcj-settings-product-info.php:20
15395
- msgid "Product Info on Single Pages"
15396
- msgstr ""
15397
-
15398
- #: includes/settings/wcj-settings-product-info.php:29
15399
- msgid "Even More Products Info"
15400
- msgstr ""
15401
-
15402
- #: includes/settings/wcj-settings-product-info.php:42
15403
- #: includes/settings/wcj-settings-product-info.php:75
15404
- msgid "HTML info."
15405
- msgstr ""
15406
-
15407
- #: includes/settings/wcj-settings-product-info.php:44
15408
- msgid "[wcj_product_sku before=\"SKU: \"]"
15409
- msgstr ""
15410
-
15411
- #: includes/settings/wcj-settings-product-info.php:67
15412
- msgid "Product Info on Single Product Pages"
15413
- msgstr ""
15414
-
15415
- #: includes/settings/wcj-settings-product-info.php:77
15416
- msgid "Total sales: [wcj_product_total_sales]"
15417
- msgstr ""
15418
-
15419
- #: includes/settings/wcj-settings-product-info.php:100
15420
- msgid "Product IDs to exclude"
15421
- msgstr ""
15422
-
15423
- #: includes/settings/wcj-settings-product-info.php:101
15424
- msgid "Comma separated list of product IDs to exclude from product info."
15425
- msgstr ""
15426
-
15427
- #: includes/settings/wcj-settings-product-input-fields.php:16
15428
- msgid "Product Input Fields per Product Options"
15429
- msgstr ""
15430
-
15431
- #: includes/settings/wcj-settings-product-input-fields.php:18
15432
- #: includes/settings/wcj-settings-product-input-fields.php:49
15433
- msgid ""
15434
- "Add custom input fields to product's single page for customer to fill before "
15435
- "adding product to cart."
15436
- msgstr ""
15437
-
15438
- #: includes/settings/wcj-settings-product-input-fields.php:19
15439
- msgid ""
15440
- "When enabled this module will add \"Product Input Fields\" tab to each "
15441
- "product's \"Edit\" page."
15442
- msgstr ""
15443
-
15444
- #: includes/settings/wcj-settings-product-input-fields.php:23
15445
- msgid "Product Input Fields - per Product"
15446
- msgstr ""
15447
-
15448
- #: includes/settings/wcj-settings-product-input-fields.php:25
15449
- msgid "Add custom input field on per product basis."
15450
- msgstr ""
15451
-
15452
- #: includes/settings/wcj-settings-product-input-fields.php:31
15453
- msgid "Default Number of Product Input Fields per Product"
15454
- msgstr ""
15455
-
15456
- #: includes/settings/wcj-settings-product-input-fields.php:33
15457
- msgid ""
15458
- "You will be able to change this number later as well as define the fields, "
15459
- "for each product individually, in product's \"Edit\"."
15460
- msgstr ""
15461
-
15462
- #: includes/settings/wcj-settings-product-input-fields.php:47
15463
- msgid "Product Input Fields Global Options"
15464
- msgstr ""
15465
-
15466
- #: includes/settings/wcj-settings-product-input-fields.php:53
15467
- msgid "Product Input Fields - All Products"
15468
- msgstr ""
15469
-
15470
- #: includes/settings/wcj-settings-product-input-fields.php:55
15471
- msgid "Add custom input fields to all products."
15472
- msgstr ""
15473
-
15474
- #: includes/settings/wcj-settings-product-input-fields.php:61
15475
- msgid "Product Input Fields Number"
15476
- msgstr ""
15477
-
15478
- #: includes/settings/wcj-settings-product-input-fields.php:111
15479
- msgid "Product categories to include."
15480
- msgstr ""
15481
-
15482
- #: includes/settings/wcj-settings-product-input-fields.php:112
15483
- #: includes/settings/wcj-settings-product-input-fields.php:123
15484
- #: includes/settings/wcj-settings-product-input-fields.php:134
15485
- #: includes/settings/wcj-settings-product-input-fields.php:145
15486
- #: includes/settings/wcj-settings-product-input-fields.php:157
15487
- #: includes/settings/wcj-settings-product-input-fields.php:169
15488
- #: includes/settings/wcj-settings-wholesale-price.php:83
15489
- #: includes/settings/wcj-settings-wholesale-price.php:96
15490
- msgid "Leave blank to include all products."
15491
- msgstr ""
15492
-
15493
- #: includes/settings/wcj-settings-product-input-fields.php:122
15494
- msgid "Product categories to exclude."
15495
- msgstr ""
15496
-
15497
- #: includes/settings/wcj-settings-product-input-fields.php:132
15498
- msgid "Product Tags - Include"
15499
- msgstr ""
15500
-
15501
- #: includes/settings/wcj-settings-product-input-fields.php:133
15502
- msgid "Product tags to include."
15503
- msgstr ""
15504
-
15505
- #: includes/settings/wcj-settings-product-input-fields.php:143
15506
- msgid "Product Tags - Exclude"
15507
- msgstr ""
15508
-
15509
- #: includes/settings/wcj-settings-product-input-fields.php:144
15510
- msgid "Product tags to exclude."
15511
- msgstr ""
15512
-
15513
- #: includes/settings/wcj-settings-product-input-fields.php:156
15514
- msgid "Products to include."
15515
- msgstr ""
15516
-
15517
- #: includes/settings/wcj-settings-product-input-fields.php:168
15518
- msgid "Products to exclude."
15519
- msgstr ""
15520
-
15521
- #: includes/settings/wcj-settings-product-input-fields.php:185
15522
- msgid "Frontend View Options"
15523
- msgstr ""
15524
-
15525
- #: includes/settings/wcj-settings-product-input-fields.php:190
15526
- msgid "Position on Single Product Page"
15527
- msgstr ""
15528
-
15529
- #: includes/settings/wcj-settings-product-input-fields.php:206
15530
- msgid "HTML Template - Start"
15531
- msgstr ""
15532
-
15533
- #: includes/settings/wcj-settings-product-input-fields.php:213
15534
- msgid "HTML Template - Each Field"
15535
- msgstr ""
15536
-
15537
- #: includes/settings/wcj-settings-product-input-fields.php:220
15538
- msgid "HTML Template - End"
15539
- msgstr ""
15540
-
15541
- #: includes/settings/wcj-settings-product-input-fields.php:227
15542
- msgid "HTML Template - Radio Field"
15543
- msgstr ""
15544
-
15545
- #: includes/settings/wcj-settings-product-input-fields.php:234
15546
- msgid "HTML to add after required field title"
15547
- msgstr ""
15548
-
15549
- #: includes/settings/wcj-settings-product-input-fields.php:241
15550
- msgid "Cart Display Options"
15551
- msgstr ""
15552
-
15553
- #: includes/settings/wcj-settings-product-input-fields.php:242
15554
- msgid ""
15555
- "When \"Add to cart item data\" is selected, \"Cart HTML Template\" options "
15556
- "below will be ignored."
15557
- msgstr ""
15558
-
15559
- #: includes/settings/wcj-settings-product-input-fields.php:247
15560
- msgid "Add to cart item name"
15561
- msgstr ""
15562
-
15563
- #: includes/settings/wcj-settings-product-input-fields.php:248
15564
- msgid "Add to cart item data"
15565
- msgstr ""
15566
-
15567
- #: includes/settings/wcj-settings-product-input-fields.php:252
15568
- msgid "Cart HTML Template - Start"
15569
- msgstr ""
15570
-
15571
- #: includes/settings/wcj-settings-product-input-fields.php:259
15572
- msgid "Cart HTML Template - Each Field"
15573
- msgstr ""
15574
-
15575
- #: includes/settings/wcj-settings-product-input-fields.php:266
15576
- msgid "Cart HTML Template - End"
15577
- msgstr ""
15578
-
15579
- #: includes/settings/wcj-settings-product-input-fields.php:273
15580
- msgid "Order Table Template - Each Field"
15581
- msgstr ""
15582
-
15583
- #: includes/settings/wcj-settings-product-input-fields.php:274
15584
- msgid "Affects Order received page, Emails and Admin Orders View"
15585
- msgstr ""
15586
-
15587
- #: includes/settings/wcj-settings-product-input-fields.php:281
15588
- #: includes/settings/wcj-settings-product-input-fields.php:334
15589
- msgid "Preserve Line Breaks"
15590
- msgstr ""
15591
-
15592
- #: includes/settings/wcj-settings-product-input-fields.php:283
15593
- msgid ""
15594
- "Preserves line breaks on frontend, making some inputs like textarea more "
15595
- "legible"
15596
- msgstr ""
15597
-
15598
- #: includes/settings/wcj-settings-product-input-fields.php:320
15599
- msgid "Admin Order View Options"
15600
- msgstr ""
15601
-
15602
- #: includes/settings/wcj-settings-product-input-fields.php:325
15603
- msgid "Replace Field ID with Field Label"
15604
- msgstr ""
15605
-
15606
- #: includes/settings/wcj-settings-product-input-fields.php:327
15607
- #, php-format
15608
- msgid "Please note: %s"
15609
- msgstr ""
15610
-
15611
- #: includes/settings/wcj-settings-product-input-fields.php:328
15612
- msgid ""
15613
- "When checked - will disable input fields editing on admin order edit page."
15614
- msgstr ""
15615
-
15616
- #: includes/settings/wcj-settings-product-input-fields.php:336
15617
- msgid ""
15618
- "Preserves line breaks on admin, making some inputs like textarea more legible"
15619
- msgstr ""
15620
-
15621
- #: includes/settings/wcj-settings-product-input-fields.php:353
15622
- msgid "Check for Outputted Data"
15623
- msgstr ""
15624
-
15625
- #: includes/settings/wcj-settings-product-input-fields.php:361
15626
- msgid "Strip Slashes"
15627
- msgstr ""
15628
-
15629
- #: includes/settings/wcj-settings-product-input-fields.php:363
15630
- #, php-format
15631
- msgid "Enable this if you have single quotes %s converted to %s."
15632
- msgstr ""
15633
-
15634
- #: includes/settings/wcj-settings-product-listings.php:31
15635
- msgid "Shop Page Display Options"
15636
- msgstr ""
15637
-
15638
- #: includes/settings/wcj-settings-product-listings.php:34
15639
- #, php-format
15640
- msgid ""
15641
- "You can control what is shown on the product archive in <a href=\"%s"
15642
- "\">WooCommerce > Settings > Products > Display > Shop page display</a>."
15643
- msgstr ""
15644
-
15645
- #: includes/settings/wcj-settings-product-listings.php:40
15646
- msgid "Categories Count"
15647
- msgstr ""
15648
-
15649
- #: includes/settings/wcj-settings-product-listings.php:41
15650
- msgid "Hide categories count on shop page"
15651
- msgstr ""
15652
-
15653
- #: includes/settings/wcj-settings-product-listings.php:48
15654
- msgid ""
15655
- " Excludes one or more categories from the shop page. Leave blank to disable."
15656
- msgstr ""
15657
-
15658
- #: includes/settings/wcj-settings-product-listings.php:57
15659
- #: includes/settings/wcj-settings-product-listings.php:113
15660
- msgid "Hide Empty"
15661
- msgstr ""
15662
-
15663
- #: includes/settings/wcj-settings-product-listings.php:58
15664
- msgid "Hide empty categories on shop page"
15665
- msgstr ""
15666
-
15667
- #: includes/settings/wcj-settings-product-listings.php:64
15668
- #: includes/settings/wcj-settings-product-listings.php:120
15669
- msgid "Show Products"
15670
- msgstr ""
15671
-
15672
- #: includes/settings/wcj-settings-product-listings.php:65
15673
- msgid "Show products if no categories are displayed on shop page"
15674
- msgstr ""
15675
-
15676
- #: includes/settings/wcj-settings-product-listings.php:71
15677
- msgid "Exclude Categories Products"
15678
- msgstr ""
15679
-
15680
- #: includes/settings/wcj-settings-product-listings.php:72
15681
- msgid ""
15682
- " Excludes one or more categories products from the shop page. Leave blank to "
15683
- "disable."
15684
- msgstr ""
15685
-
15686
- #: includes/settings/wcj-settings-product-listings.php:85
15687
- msgid "Category Display Options"
15688
- msgstr ""
15689
-
15690
- #: includes/settings/wcj-settings-product-listings.php:88
15691
- #, php-format
15692
- msgid ""
15693
- "You can control what is shown on category archives in <a href=\"%s"
15694
- "\">WooCommerce > Settings > Products > Display > Default category display</"
15695
- "a>."
15696
- msgstr ""
15697
-
15698
- #: includes/settings/wcj-settings-product-listings.php:94
15699
- msgid "Subcategories Count"
15700
- msgstr ""
15701
-
15702
- #: includes/settings/wcj-settings-product-listings.php:95
15703
- msgid "Hide subcategories count on category pages"
15704
- msgstr ""
15705
-
15706
- #: includes/settings/wcj-settings-product-listings.php:103
15707
- msgid "Exclude Subcategories"
15708
- msgstr ""
15709
-
15710
- #: includes/settings/wcj-settings-product-listings.php:104
15711
- msgid ""
15712
- " Excludes one or more categories from the category (archive) pages. Leave "
15713
- "blank to disable."
15714
- msgstr ""
15715
-
15716
- #: includes/settings/wcj-settings-product-listings.php:114
15717
- msgid "Hide empty subcategories on category pages"
15718
- msgstr ""
15719
-
15720
- #: includes/settings/wcj-settings-product-listings.php:121
15721
- msgid "Show products if no categories are displayed on category page"
15722
- msgstr ""
15723
-
15724
- #: includes/settings/wcj-settings-product-listings.php:131
15725
- #: includes/settings/wcj-settings-product-listings.php:137
15726
- msgid "Product Shop Visibility by Price"
15727
- msgstr ""
15728
-
15729
- #: includes/settings/wcj-settings-product-listings.php:133
15730
- msgid ""
15731
- "Here you can set to hide products from shop and search results depending on "
15732
- "product's price. Products will still be accessible via direct link."
15733
- msgstr ""
15734
-
15735
- #: includes/settings/wcj-settings-product-listings.php:144
15736
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
15737
- msgid "Min Price"
15738
- msgstr ""
15739
-
15740
- #: includes/settings/wcj-settings-product-listings.php:145
15741
- msgid ""
15742
- "Products with price below this value will be hidden. Ignored if set to zero."
15743
- msgstr ""
15744
-
15745
- #: includes/settings/wcj-settings-product-listings.php:152
15746
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
15747
- msgid "Max Price"
15748
- msgstr ""
15749
-
15750
- #: includes/settings/wcj-settings-product-listings.php:153
15751
- msgid ""
15752
- "Products with price above this value will be hidden. Ignored if set to zero."
15753
- msgstr ""
15754
-
15755
- #: includes/settings/wcj-settings-product-msrp.php:20
15756
- #, php-format
15757
- msgid "%s Display Options"
15758
- msgstr ""
15759
-
15760
- #: includes/settings/wcj-settings-product-msrp.php:30
15761
- msgid "Do not show"
15762
- msgstr ""
15763
-
15764
- #: includes/settings/wcj-settings-product-msrp.php:32
15765
- msgid "Only show if MSRP is higher than the standard price"
15766
- msgstr ""
15767
-
15768
- #: includes/settings/wcj-settings-product-msrp.php:33
15769
- msgid "Only show if MSRP differs from the standard price"
15770
- msgstr ""
15771
-
15772
- #: includes/settings/wcj-settings-product-msrp.php:42
15773
- msgid "Before the standard price"
15774
- msgstr ""
15775
-
15776
- #: includes/settings/wcj-settings-product-msrp.php:43
15777
- msgid "After the standard price"
15778
- msgstr ""
15779
-
15780
- #: includes/settings/wcj-settings-product-msrp.php:47
15781
- msgid "Savings"
15782
- msgstr ""
15783
-
15784
- #: includes/settings/wcj-settings-product-msrp.php:48
15785
- #, php-format
15786
- msgid "Savings amount. To display this, use %s in \"Final Template\""
15787
- msgstr ""
15788
-
15789
- #: includes/settings/wcj-settings-product-msrp.php:55
15790
- #, php-format
15791
- msgid ""
15792
- "Savings amount in percent. To display this, use %s in \"Final Template\""
15793
- msgstr ""
15794
-
15795
- #: includes/settings/wcj-settings-product-msrp.php:62
15796
- msgid "Savings amount in percent rounding precision"
15797
- msgstr ""
15798
-
15799
- #: includes/settings/wcj-settings-product-msrp.php:69
15800
- msgid "Final Template"
15801
- msgstr ""
15802
-
15803
- #: includes/settings/wcj-settings-product-msrp.php:91
15804
- msgid "Admin MSRP Input Display"
15805
- msgstr ""
15806
-
15807
- #: includes/settings/wcj-settings-product-msrp.php:97
15808
- msgid "As separate meta box"
15809
- msgstr ""
15810
-
15811
- #: includes/settings/wcj-settings-product-open-pricing.php:27
15812
- msgid "Frontend Label"
15813
- msgstr ""
15814
-
15815
- #: includes/settings/wcj-settings-product-open-pricing.php:34
15816
- msgid "Frontend Template"
15817
- msgstr ""
15818
-
15819
- #: includes/settings/wcj-settings-product-open-pricing.php:35
15820
- msgid "Here you can use"
15821
- msgstr ""
15822
-
15823
- #: includes/settings/wcj-settings-product-open-pricing.php:43
15824
- msgid "Frontend Input Style"
15825
- msgstr ""
15826
-
15827
- #: includes/settings/wcj-settings-product-open-pricing.php:50
15828
- msgid "Frontend Input Placeholder"
15829
- msgstr ""
15830
-
15831
- #: includes/settings/wcj-settings-product-open-pricing.php:57
15832
- msgid "Frontend Input Price Step"
15833
- msgstr ""
15834
-
15835
- #: includes/settings/wcj-settings-product-open-pricing.php:64
15836
- msgid "Frontend Position"
15837
- msgstr ""
15838
-
15839
- #: includes/settings/wcj-settings-product-open-pricing.php:71
15840
- msgid "Message on Empty Price"
15841
- msgstr ""
15842
-
15843
- #: includes/settings/wcj-settings-product-open-pricing.php:78
15844
- msgid "Message on Price too Small"
15845
- msgstr ""
15846
-
15847
- #: includes/settings/wcj-settings-product-open-pricing.php:86
15848
- msgid "Message on Price too Big"
15849
- msgstr ""
15850
-
15851
- #: includes/settings/wcj-settings-product-open-pricing.php:94
15852
- msgid "Disable Quantity Input"
15853
- msgstr ""
15854
-
15855
- #: includes/settings/wcj-settings-product-open-pricing.php:101
15856
- msgid "Enable JS Min/Max Validation"
15857
- msgstr ""
15858
-
15859
- #: includes/settings/wcj-settings-product-open-pricing.php:108
15860
- msgid "Display Product Price Info in Archives"
15861
- msgstr ""
15862
-
15863
- #: includes/settings/wcj-settings-product-open-pricing.php:115
15864
- msgid ""
15865
- "Product price info in archives template. Replaceable values: <code>"
15866
- "%default_price%</code>, <code>%min_price%</code>, <code>%max_price%</code>."
15867
- msgstr ""
15868
-
15869
- #: includes/settings/wcj-settings-product-open-pricing.php:122
15870
- msgid "Add \"Open Pricing\" Column to Admin Product List"
15871
- msgstr ""
15872
-
15873
- #: includes/settings/wcj-settings-product-open-pricing.php:129
15874
- msgid "Advanced: Multicurrency (Currency Switcher) Module"
15875
- msgstr ""
15876
-
15877
- #: includes/settings/wcj-settings-product-open-pricing.php:134
15878
- msgid "Allow price entering in default shop currency only"
15879
- msgstr ""
15880
-
15881
- #: includes/settings/wcj-settings-product-open-pricing.php:135
15882
- msgid "Allow price entering in switched currency"
15883
- msgstr ""
15884
-
15885
- #: includes/settings/wcj-settings-product-open-pricing.php:148
15886
- msgid "Disable open pricing for products with \"Price Changes\""
15887
- msgstr ""
15888
-
15889
- #: includes/settings/wcj-settings-product-open-pricing.php:155
15890
- msgid "Product Bundles"
15891
- msgstr ""
15892
-
15893
- #: includes/settings/wcj-settings-product-open-pricing.php:156
15894
- msgid "For \"WPC Product Bundles for WooCommerce\" plugin."
15895
- msgstr ""
15896
-
15897
- #: includes/settings/wcj-settings-product-open-pricing.php:161
15898
- msgid "No not divide"
15899
- msgstr ""
15900
-
15901
- #: includes/settings/wcj-settings-product-open-pricing.php:162
15902
- msgid "Divide by number of products in a bundle"
15903
- msgstr ""
15904
-
15905
- #: includes/settings/wcj-settings-product-open-pricing.php:163
15906
- msgid "Divide proportionally to the original price"
15907
- msgstr ""
15908
-
15909
- #: includes/settings/wcj-settings-product-price-by-formula.php:14
15910
- msgid "Default Settings"
15911
- msgstr ""
15912
-
15913
- #: includes/settings/wcj-settings-product-price-by-formula.php:16
15914
- msgid ""
15915
- "You can set default settings here. All settings can later be changed in "
15916
- "individual product's edit page."
15917
- msgstr ""
15918
-
15919
- #: includes/settings/wcj-settings-product-price-by-formula.php:20
15920
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
15921
- msgid "Formula"
15922
- msgstr ""
15923
-
15924
- #: includes/settings/wcj-settings-product-price-by-formula.php:21
15925
- #, php-format
15926
- msgid "Use %s variable for product's base price. For example: %s."
15927
- msgstr ""
15928
-
15929
- #: includes/settings/wcj-settings-product-price-by-formula.php:29
15930
- msgid "Enable Price Calculation By Formula For All Products"
15931
- msgstr ""
15932
-
15933
- #: includes/settings/wcj-settings-product-price-by-formula.php:38
15934
- msgid "Total Params"
15935
- msgstr ""
15936
-
15937
- #: includes/settings/wcj-settings-product-price-by-formula.php:59
15938
- msgid "General Settings"
15939
- msgstr ""
15940
-
15941
- #: includes/settings/wcj-settings-product-price-by-formula.php:69
15942
- msgid "No rounding (disabled)"
15943
- msgstr ""
15944
-
15945
- #: includes/settings/wcj-settings-product-price-by-formula.php:83
15946
- msgid "Disable Admin Scope"
15947
- msgstr ""
15948
-
15949
- #: includes/settings/wcj-settings-product-price-by-formula.php:84
15950
- msgid "Disable module on Admin scope."
15951
- msgstr ""
15952
-
15953
- #: includes/settings/wcj-settings-product-price-by-formula.php:85
15954
- msgid ""
15955
- "Disable if you want to use Product Price by Formula module only on Frontend."
15956
- msgstr ""
15957
-
15958
- #: includes/settings/wcj-settings-product-price-by-formula.php:85
15959
- msgid ""
15960
- "For example if you use Cost of Goods module the profit will be correctly "
15961
- "calculated if you leave the box unticked"
15962
- msgstr ""
15963
-
15964
- #: includes/settings/wcj-settings-product-tabs.php:20
15965
- msgid "Content Processing"
15966
- msgstr ""
15967
-
15968
- #: includes/settings/wcj-settings-product-tabs.php:25
15969
- #, php-format
15970
- msgid "Apply %s filter"
15971
- msgstr ""
15972
-
15973
- #: includes/settings/wcj-settings-product-tabs.php:26
15974
- msgid "Only process shortcodes"
15975
- msgstr ""
15976
-
15977
- #: includes/settings/wcj-settings-product-tabs.php:36
15978
- #: includes/settings/wcj-settings-product-tabs.php:42
15979
- msgid "Custom Product Tabs - All Products"
15980
- msgstr ""
15981
-
15982
- #: includes/settings/wcj-settings-product-tabs.php:38
15983
- msgid "This section lets you add custom single product tabs."
15984
- msgstr ""
15985
-
15986
- #: includes/settings/wcj-settings-product-tabs.php:49
15987
- msgid "Custom Product Tabs Number"
15988
- msgstr ""
15989
-
15990
- #: includes/settings/wcj-settings-product-tabs.php:80
15991
- #: includes/settings/wcj-settings-product-tabs.php:279
15992
- msgid "Make sure it's unique for each tab."
15993
- msgstr ""
15994
-
15995
- #: includes/settings/wcj-settings-product-tabs.php:93
15996
- #: includes/settings/wcj-settings-product-tabs.php:292
15997
- msgid "You can use shortcodes here..."
15998
- msgstr ""
15999
-
16000
- #: includes/settings/wcj-settings-product-tabs.php:114
16001
- #: includes/settings/wcj-settings-product-tabs.php:313
16002
- msgid "PRODUCTS to HIDE this tab"
16003
- msgstr ""
16004
-
16005
- #: includes/settings/wcj-settings-product-tabs.php:115
16006
- #: includes/settings/wcj-settings-product-tabs.php:314
16007
- msgid "To hide this tab from some products, enter products here."
16008
- msgstr ""
16009
-
16010
- #: includes/settings/wcj-settings-product-tabs.php:123
16011
- #: includes/settings/wcj-settings-product-tabs.php:322
16012
- msgid "PRODUCTS to SHOW this tab"
16013
- msgstr ""
16014
-
16015
- #: includes/settings/wcj-settings-product-tabs.php:124
16016
- #: includes/settings/wcj-settings-product-tabs.php:323
16017
- msgid "To show this tab only for some products, enter products here."
16018
- msgstr ""
16019
-
16020
- #: includes/settings/wcj-settings-product-tabs.php:132
16021
- #: includes/settings/wcj-settings-product-tabs.php:331
16022
- msgid "CATEGORIES to HIDE this tab"
16023
- msgstr ""
16024
-
16025
- #: includes/settings/wcj-settings-product-tabs.php:133
16026
- #: includes/settings/wcj-settings-product-tabs.php:332
16027
- msgid "To hide this tab from some categories, enter categories here."
16028
- msgstr ""
16029
-
16030
- #: includes/settings/wcj-settings-product-tabs.php:141
16031
- #: includes/settings/wcj-settings-product-tabs.php:340
16032
- msgid "CATEGORIES to SHOW this tab"
16033
- msgstr ""
16034
-
16035
- #: includes/settings/wcj-settings-product-tabs.php:142
16036
- #: includes/settings/wcj-settings-product-tabs.php:341
16037
- msgid "To show this tab only for some categories, enter categories here."
16038
- msgstr ""
16039
-
16040
- #: includes/settings/wcj-settings-product-tabs.php:150
16041
- #: includes/settings/wcj-settings-product-tabs.php:349
16042
- msgid "TAGS to HIDE this tab"
16043
- msgstr ""
16044
-
16045
- #: includes/settings/wcj-settings-product-tabs.php:151
16046
- #: includes/settings/wcj-settings-product-tabs.php:350
16047
- msgid "To hide this tab from some tags, enter tags here."
16048
- msgstr ""
16049
-
16050
- #: includes/settings/wcj-settings-product-tabs.php:159
16051
- #: includes/settings/wcj-settings-product-tabs.php:358
16052
- msgid "TAGS to SHOW this tab"
16053
- msgstr ""
16054
-
16055
- #: includes/settings/wcj-settings-product-tabs.php:160
16056
- #: includes/settings/wcj-settings-product-tabs.php:359
16057
- msgid "To show this tab only for some tags, enter tags here."
16058
- msgstr ""
16059
-
16060
- #: includes/settings/wcj-settings-product-tabs.php:172
16061
- msgid "Comma separated PRODUCT IDs to HIDE this tab"
16062
- msgstr ""
16063
-
16064
- #: includes/settings/wcj-settings-product-tabs.php:173
16065
- msgid "To hide this tab from some products, enter product IDs here."
16066
- msgstr ""
16067
-
16068
- #: includes/settings/wcj-settings-product-tabs.php:184
16069
- msgid "Comma separated PRODUCT IDs to SHOW this tab"
16070
- msgstr ""
16071
-
16072
- #: includes/settings/wcj-settings-product-tabs.php:185
16073
- msgid "To show this tab only for some products, enter product IDs here."
16074
- msgstr ""
16075
-
16076
- #: includes/settings/wcj-settings-product-tabs.php:196
16077
- msgid "Comma separated CATEGORY IDs to HIDE this tab"
16078
- msgstr ""
16079
-
16080
- #: includes/settings/wcj-settings-product-tabs.php:197
16081
- msgid "To hide this tab from some categories, enter category IDs here."
16082
- msgstr ""
16083
-
16084
- #: includes/settings/wcj-settings-product-tabs.php:208
16085
- msgid "Comma separated CATEGORY IDs to SHOW this tab"
16086
- msgstr ""
16087
-
16088
- #: includes/settings/wcj-settings-product-tabs.php:209
16089
- msgid "To show this tab only for some categories, enter category IDs here."
16090
- msgstr ""
16091
-
16092
- #: includes/settings/wcj-settings-product-tabs.php:225
16093
- msgid "Custom Product Tabs - Per Product"
16094
- msgstr ""
16095
-
16096
- #: includes/settings/wcj-settings-product-tabs.php:227
16097
- msgid "This section lets you set defaults for per product custom tabs."
16098
- msgstr ""
16099
-
16100
- #: includes/settings/wcj-settings-product-tabs.php:231
16101
- msgid "Enable Per Product Custom Product Tabs"
16102
- msgstr ""
16103
-
16104
- #: includes/settings/wcj-settings-product-tabs.php:239
16105
- msgid "Use Visual Editor"
16106
- msgstr ""
16107
-
16108
- #: includes/settings/wcj-settings-product-tabs.php:246
16109
- msgid "Add Per Product Tabs Content to \"Yoast SEO\" plugin analysis"
16110
- msgstr ""
16111
-
16112
- #: includes/settings/wcj-settings-product-tabs.php:253
16113
- msgid "Default Per Product Custom Product Tabs Number"
16114
- msgstr ""
16115
-
16116
- #: includes/settings/wcj-settings-product-tabs.php:271
16117
- msgid "Default Title"
16118
- msgstr ""
16119
-
16120
- #: includes/settings/wcj-settings-product-tabs.php:278
16121
- msgid "Default Key"
16122
- msgstr ""
16123
-
16124
- #: includes/settings/wcj-settings-product-tabs.php:285
16125
- msgid "Default Priority (i.e. Order)"
16126
- msgstr ""
16127
-
16128
- #: includes/settings/wcj-settings-product-tabs.php:291
16129
- msgid "Default Content"
16130
- msgstr ""
16131
-
16132
- #: includes/settings/wcj-settings-product-tabs.php:299
16133
- msgid "Default Link"
16134
- msgstr ""
16135
-
16136
- #: includes/settings/wcj-settings-product-tabs.php:300
16137
- msgid "Leave blank for default behaviour."
16138
- msgstr ""
16139
-
16140
- #: includes/settings/wcj-settings-product-tabs.php:307
16141
- msgid "Default \"Link - Open in New Window\""
16142
- msgstr ""
16143
-
16144
- #: includes/settings/wcj-settings-product-tabs.php:375
16145
- msgid "WooCommerce Standard Product Tabs Options"
16146
- msgstr ""
16147
-
16148
- #: includes/settings/wcj-settings-product-tabs.php:377
16149
- msgid "This section lets you customize single product tabs."
16150
- msgstr ""
16151
-
16152
- #: includes/settings/wcj-settings-product-tabs.php:381
16153
- msgid "Description Tab"
16154
- msgstr ""
16155
-
16156
- #: includes/settings/wcj-settings-product-tabs.php:382
16157
- #: includes/settings/wcj-settings-product-tabs.php:403
16158
- #: includes/settings/wcj-settings-product-tabs.php:424
16159
- msgid "Remove tab from product page"
16160
- msgstr ""
16161
-
16162
- #: includes/settings/wcj-settings-product-tabs.php:389
16163
- #: includes/settings/wcj-settings-product-tabs.php:410
16164
- #: includes/settings/wcj-settings-product-tabs.php:431
16165
- msgid "Leave blank for WooCommerce defaults"
16166
- msgstr ""
16167
-
16168
- #: includes/settings/wcj-settings-product-tabs.php:402
16169
- msgid "Additional Information Tab"
16170
- msgstr ""
16171
-
16172
- #: includes/settings/wcj-settings-product-tabs.php:423
16173
- msgid "Reviews Tab"
16174
- msgstr ""
16175
-
16176
- #: includes/settings/wcj-settings-products-per-page.php:19
16177
- msgid "Select Options"
16178
- msgstr ""
16179
-
16180
- #: includes/settings/wcj-settings-products-per-page.php:20
16181
- msgid ""
16182
- "<code>Name|Number</code>; one per line; <code>-1</code> for all products;"
16183
- msgstr ""
16184
-
16185
- #: includes/settings/wcj-settings-products-per-page.php:42
16186
- msgid "Before shop loop"
16187
- msgstr ""
16188
-
16189
- #: includes/settings/wcj-settings-products-per-page.php:43
16190
- msgid "After shop loop"
16191
- msgstr ""
16192
-
16193
- #: includes/settings/wcj-settings-products-per-page.php:47
16194
- msgid "Position Priority"
16195
- msgstr ""
16196
-
16197
- #: includes/settings/wcj-settings-products-per-page.php:54
16198
- msgid "Template - Before Form"
16199
- msgstr ""
16200
-
16201
- #: includes/settings/wcj-settings-products-per-page.php:61
16202
- msgid "Template - Form"
16203
- msgstr ""
16204
-
16205
- #: includes/settings/wcj-settings-products-per-page.php:68
16206
- msgid "Template - After Form"
16207
- msgstr ""
16208
-
16209
- #: includes/settings/wcj-settings-products-per-page.php:75
16210
- msgid "Saving Method"
16211
- msgstr ""
16212
-
16213
- #: includes/settings/wcj-settings-products-per-page.php:80
16214
- msgid "Cookie"
16215
- msgstr ""
16216
-
16217
- #: includes/settings/wcj-settings-products-per-page.php:81
16218
- msgid "Session"
16219
- msgstr ""
16220
-
16221
- #: includes/settings/wcj-settings-products-xml.php:35
16222
- msgid "Advanced: Block Size"
16223
- msgstr ""
16224
-
16225
- #: includes/settings/wcj-settings-products-xml.php:36
16226
- msgid ""
16227
- "If you have large number of products you may want to modify block size for "
16228
- "WP_Query call. Leave default value if not sure."
16229
- msgstr ""
16230
-
16231
- #: includes/settings/wcj-settings-products-xml.php:55
16232
- msgid ""
16233
- "If you've made any changes in module's settings - don't forget to save "
16234
- "changes before clicking this button."
16235
- msgstr ""
16236
-
16237
- #: includes/settings/wcj-settings-products-xml.php:57
16238
- msgid "Create Now"
16239
- msgstr ""
16240
-
16241
- #: includes/settings/wcj-settings-products-xml.php:63
16242
- #, php-format
16243
- msgid "Recent file was created on %s"
16244
- msgstr ""
16245
-
16246
- #: includes/settings/wcj-settings-products-xml.php:70
16247
- msgid "XML File"
16248
- msgstr ""
16249
-
16250
- #: includes/settings/wcj-settings-products-xml.php:83
16251
- msgid "XML Header"
16252
- msgstr ""
16253
-
16254
- #: includes/settings/wcj-settings-products-xml.php:84
16255
- #, php-format
16256
- msgid "You can use shortcodes here. For example %s."
16257
- msgstr ""
16258
-
16259
- #: includes/settings/wcj-settings-products-xml.php:91
16260
- msgid "XML Item"
16261
- msgstr ""
16262
-
16263
- #: includes/settings/wcj-settings-products-xml.php:93
16264
- #, php-format
16265
- msgid ""
16266
- "You can use shortcodes here. Please take a look at <a target=\"_blank\" href="
16267
- "\"%s\">Booster's products shortcodes</a>."
16268
- msgstr ""
16269
-
16270
- #: includes/settings/wcj-settings-products-xml.php:110
16271
- msgid "XML Footer"
16272
- msgstr ""
16273
-
16274
- #: includes/settings/wcj-settings-products-xml.php:118
16275
- msgid "XML File Path and Name"
16276
- msgstr ""
16277
-
16278
- #: includes/settings/wcj-settings-products-xml.php:119
16279
- msgid "Path on server:"
16280
- msgstr ""
16281
-
16282
- #: includes/settings/wcj-settings-products-xml.php:129
16283
- msgid "Update Period"
16284
- msgstr ""
16285
-
16286
- #: includes/settings/wcj-settings-products-xml.php:141
16287
- msgid ""
16288
- "Possible update periods are: every minute, hourly, twice daily, daily and "
16289
- "weekly."
16290
- msgstr ""
16291
-
16292
- #: includes/settings/wcj-settings-products-xml.php:148
16293
- msgid ""
16294
- "To include selected products only, enter products here. Leave blank to "
16295
- "include all products."
16296
- msgstr ""
16297
-
16298
- #: includes/settings/wcj-settings-products-xml.php:158
16299
- msgid ""
16300
- "To exclude selected products, enter products here. Leave blank to include "
16301
- "all products."
16302
- msgstr ""
16303
-
16304
- #: includes/settings/wcj-settings-products-xml.php:166
16305
- msgid "Categories to Include"
16306
- msgstr ""
16307
-
16308
- #: includes/settings/wcj-settings-products-xml.php:167
16309
- msgid ""
16310
- "To include products from selected categories only, enter categories here. "
16311
- "Leave blank to include all products."
16312
- msgstr ""
16313
-
16314
- #: includes/settings/wcj-settings-products-xml.php:175
16315
- msgid "Categories to Exclude"
16316
- msgstr ""
16317
-
16318
- #: includes/settings/wcj-settings-products-xml.php:176
16319
- msgid ""
16320
- "To exclude products from selected categories, enter categories here. Leave "
16321
- "blank to include all products."
16322
- msgstr ""
16323
-
16324
- #: includes/settings/wcj-settings-products-xml.php:184
16325
- msgid "Tags to Include"
16326
- msgstr ""
16327
-
16328
- #: includes/settings/wcj-settings-products-xml.php:185
16329
- msgid ""
16330
- "To include products from selected tags only, enter tags here. Leave blank to "
16331
- "include all products."
16332
- msgstr ""
16333
-
16334
- #: includes/settings/wcj-settings-products-xml.php:193
16335
- msgid "Tags to Exclude"
16336
- msgstr ""
16337
-
16338
- #: includes/settings/wcj-settings-products-xml.php:194
16339
- msgid ""
16340
- "To exclude products from selected tags, enter tags here. Leave blank to "
16341
- "include all products."
16342
- msgstr ""
16343
-
16344
- #: includes/settings/wcj-settings-products-xml.php:202
16345
- msgid "Products Scope"
16346
- msgstr ""
16347
-
16348
- #: includes/settings/wcj-settings-products-xml.php:208
16349
- msgid "Only products that are on sale"
16350
- msgstr ""
16351
-
16352
- #: includes/settings/wcj-settings-products-xml.php:210
16353
- msgid "Only products that are featured"
16354
- msgstr ""
16355
-
16356
- #: includes/settings/wcj-settings-products-xml.php:211
16357
- msgid "Only products that are not featured"
16358
- msgstr ""
16359
-
16360
- #: includes/settings/wcj-settings-products-xml.php:215
16361
- msgid "Sort Products by"
16362
- msgstr ""
16363
-
16364
- #: includes/settings/wcj-settings-products-xml.php:222
16365
- msgid "Author"
16366
- msgstr ""
16367
-
16368
- #: includes/settings/wcj-settings-products-xml.php:224
16369
- #: includes/tools/class-wcj-order-statuses-tool.php:140
16370
- msgid "Slug"
16371
- msgstr ""
16372
-
16373
- #: includes/settings/wcj-settings-products-xml.php:226
16374
- msgid "Rand"
16375
- msgstr ""
16376
-
16377
- #: includes/settings/wcj-settings-products-xml.php:230
16378
- msgid "Sorting Order"
16379
- msgstr ""
16380
-
16381
- #: includes/settings/wcj-settings-products-xml.php:240
16382
- msgid "Max Products"
16383
- msgstr ""
16384
-
16385
- #: includes/settings/wcj-settings-products-xml.php:241
16386
- msgid "Set to -1 to include all products."
16387
- msgstr ""
16388
-
16389
- #: includes/settings/wcj-settings-purchase-data.php:15
16390
- msgid "Price Fields"
16391
- msgstr ""
16392
-
16393
- #: includes/settings/wcj-settings-purchase-data.php:17
16394
- #: includes/settings/wcj-settings-purchase-data.php:59
16395
- msgid ""
16396
- "These fields will be added to product's edit page and will be included in "
16397
- "product's purchase cost calculation."
16398
- msgstr ""
16399
-
16400
- #: includes/settings/wcj-settings-purchase-data.php:21
16401
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
16402
- msgid "Product cost (purchase) price"
16403
- msgstr ""
16404
-
16405
- #: includes/settings/wcj-settings-purchase-data.php:28
16406
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
16407
- msgid "Extra expenses (shipping etc.)"
16408
- msgstr ""
16409
-
16410
- #: includes/settings/wcj-settings-purchase-data.php:35
16411
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
16412
- msgid "Affiliate commission"
16413
- msgstr ""
16414
-
16415
- #: includes/settings/wcj-settings-purchase-data.php:42
16416
- msgid "Profit Percentage Type"
16417
- msgstr ""
16418
-
16419
- #: includes/settings/wcj-settings-purchase-data.php:43
16420
- msgid "Example:"
16421
- msgstr ""
16422
-
16423
- #: includes/settings/wcj-settings-purchase-data.php:43
16424
- msgid "Selling: $3.000 | Buying: $1.000"
16425
- msgstr ""
16426
-
16427
- #: includes/settings/wcj-settings-purchase-data.php:43
16428
- msgid "Margin: 66% | Markup: $200%"
16429
- msgstr ""
16430
-
16431
- #: includes/settings/wcj-settings-purchase-data.php:47
16432
- msgid "Margin"
16433
- msgstr ""
16434
-
16435
- #: includes/settings/wcj-settings-purchase-data.php:48
16436
- msgid "Markup"
16437
- msgstr ""
16438
-
16439
- #: includes/settings/wcj-settings-purchase-data.php:57
16440
- msgid "Custom Price Fields"
16441
- msgstr ""
16442
-
16443
- #: includes/settings/wcj-settings-purchase-data.php:63
16444
- msgid "Total Custom Price Fields"
16445
- msgstr ""
16446
-
16447
- #: includes/settings/wcj-settings-purchase-data.php:75
16448
- msgid "Custom Price Field"
16449
- msgstr ""
16450
-
16451
- #: includes/settings/wcj-settings-purchase-data.php:107
16452
- msgid "Info Fields"
16453
- msgstr ""
16454
-
16455
- #: includes/settings/wcj-settings-purchase-data.php:109
16456
- msgid "These fields will be added to product's edit page."
16457
- msgstr ""
16458
-
16459
- #: includes/settings/wcj-settings-purchase-data.php:113
16460
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
16461
- msgid "(Last) Purchase date"
16462
- msgstr ""
16463
-
16464
- #: includes/settings/wcj-settings-purchase-data.php:120
16465
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
16466
- msgid "Seller"
16467
- msgstr ""
16468
-
16469
- #: includes/settings/wcj-settings-purchase-data.php:127
16470
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
16471
- msgid "Purchase info"
16472
- msgstr ""
16473
-
16474
- #: includes/settings/wcj-settings-purchase-data.php:138
16475
- msgid "Admin Products List Custom Columns"
16476
- msgstr ""
16477
-
16478
- #: includes/settings/wcj-settings-purchase-data.php:140
16479
- msgid ""
16480
- "This section lets you add custom columns to WooCommerce admin products list."
16481
- msgstr ""
16482
-
16483
- #: includes/settings/wcj-settings-purchase-data.php:166
16484
- msgid "Admin Orders List Custom Columns"
16485
- msgstr ""
16486
-
16487
- #: includes/settings/wcj-settings-purchase-data.php:168
16488
- msgid ""
16489
- "This section lets you add custom columns to WooCommerce admin orders list."
16490
- msgstr ""
16491
-
16492
- #: includes/settings/wcj-settings-purchase-data.php:190
16493
- #: includes/settings/wcj-settings-sku.php:210
16494
- #: includes/settings/wcj-settings-stock.php:199
16495
- msgid "More Options"
16496
- msgstr ""
16497
-
16498
- #: includes/settings/wcj-settings-purchase-data.php:195
16499
- msgid "Treat Variable Products as Simple Products"
16500
- msgstr ""
16501
-
16502
- #: includes/settings/wcj-settings-related-products.php:27
16503
- msgid "Meta Value"
16504
- msgstr ""
16505
-
16506
- #: includes/settings/wcj-settings-related-products.php:28
16507
- msgid "Meta Value (Numeric)"
16508
- msgstr ""
16509
-
16510
- #: includes/settings/wcj-settings-related-products.php:43
16511
- msgid "Related Products Number"
16512
- msgstr ""
16513
-
16514
- #: includes/settings/wcj-settings-related-products.php:49
16515
- msgid "Related Products Columns"
16516
- msgstr ""
16517
-
16518
- #: includes/settings/wcj-settings-related-products.php:64
16519
- msgid "Order by"
16520
- msgstr ""
16521
-
16522
- #: includes/settings/wcj-settings-related-products.php:74
16523
- msgid "Meta Key"
16524
- msgstr ""
16525
-
16526
- #: includes/settings/wcj-settings-related-products.php:75
16527
- msgid ""
16528
- "Used only if order by \"Meta Value\" or \"Meta Value (Numeric)\" is selected "
16529
- "in \"Order by\"."
16530
- msgstr ""
16531
-
16532
- #: includes/settings/wcj-settings-related-products.php:85
16533
- msgid "Ignored if order by \"Random\" is selected in \"Order by\"."
16534
- msgstr ""
16535
-
16536
- #: includes/settings/wcj-settings-related-products.php:99
16537
- msgid "Relate"
16538
- msgstr ""
16539
-
16540
- #: includes/settings/wcj-settings-related-products.php:104
16541
- msgid "Relate by Category"
16542
- msgstr ""
16543
-
16544
- #: includes/settings/wcj-settings-related-products.php:111
16545
- msgid "Relate by Tag"
16546
- msgstr ""
16547
-
16548
- #: includes/settings/wcj-settings-related-products.php:118
16549
- msgid "Relate by Product Attribute"
16550
- msgstr ""
16551
-
16552
- #: includes/settings/wcj-settings-related-products.php:125
16553
- msgid "Attribute Type"
16554
- msgstr ""
16555
-
16556
- #: includes/settings/wcj-settings-related-products.php:126
16557
- msgid ""
16558
- "If using \"Global Attribute\" enter attribute's <em>slug</em> in \"Attribute "
16559
- "Name\""
16560
- msgstr ""
16561
-
16562
- #: includes/settings/wcj-settings-related-products.php:131
16563
- msgid "Global Attribute"
16564
- msgstr ""
16565
-
16566
- #: includes/settings/wcj-settings-related-products.php:132
16567
- msgid "Local Attribute"
16568
- msgstr ""
16569
-
16570
- #: includes/settings/wcj-settings-related-products.php:136
16571
- msgid "Attribute Name"
16572
- msgstr ""
16573
-
16574
- #: includes/settings/wcj-settings-related-products.php:142
16575
- msgid "Attribute Value"
16576
- msgstr ""
16577
-
16578
- #: includes/settings/wcj-settings-related-products.php:148
16579
- msgid "Relate Manually"
16580
- msgstr ""
16581
-
16582
- #: includes/settings/wcj-settings-related-products.php:150
16583
- msgid "This will add metabox to each product's edit page."
16584
- msgstr ""
16585
-
16586
- #: includes/settings/wcj-settings-related-products.php:151
16587
- msgid ""
16588
- "You will be able to select related products manually for each product "
16589
- "individually. There is also an option to remove related products on per "
16590
- "product basis."
16591
- msgstr ""
16592
-
16593
- #: includes/settings/wcj-settings-related-products.php:159
16594
- msgid "Relate Manually: Select box type"
16595
- msgstr ""
16596
-
16597
- #: includes/settings/wcj-settings-related-products.php:169
16598
- msgid "Default metabox value"
16599
- msgstr ""
16600
-
16601
- #: includes/settings/wcj-settings-related-products.php:170
16602
- msgid ""
16603
- "If set to \"Yes\" and no products are selected it will hide related products"
16604
- msgstr ""
16605
-
16606
- #: includes/settings/wcj-settings-related-products.php:189
16607
- msgid "Hide Related Products"
16608
- msgstr ""
16609
-
16610
- #: includes/settings/wcj-settings-related-products.php:197
16611
- msgid ""
16612
- "Set this field to hide related products on selected product categories only. "
16613
- "Leave blank to hide on all products."
16614
- msgstr ""
16615
-
16616
- #: includes/settings/wcj-settings-related-products.php:206
16617
- msgid ""
16618
- "Set this field to NOT hide related products on selected product categories. "
16619
- "Leave blank to hide on all products."
16620
- msgstr ""
16621
-
16622
- #: includes/settings/wcj-settings-related-products.php:215
16623
- msgid ""
16624
- "Set this field to hide related products on selected product tags only. Leave "
16625
- "blank to hide on all products."
16626
- msgstr ""
16627
-
16628
- #: includes/settings/wcj-settings-related-products.php:224
16629
- msgid ""
16630
- "Set this field to NOT hide related products on selected product tags. Leave "
16631
- "blank to hide on all products."
16632
- msgstr ""
16633
-
16634
- #: includes/settings/wcj-settings-related-products.php:234
16635
- msgid ""
16636
- "Set this field to hide related products on selected products only. Leave "
16637
- "blank to hide on all products."
16638
- msgstr ""
16639
-
16640
- #: includes/settings/wcj-settings-related-products.php:245
16641
- msgid ""
16642
- "Set this field to NOT hide related products on selected products. Leave "
16643
- "blank to hide on all products."
16644
- msgstr ""
16645
-
16646
- #: includes/settings/wcj-settings-reports.php:14
16647
- msgid "Orders Reports"
16648
- msgstr ""
16649
-
16650
- #: includes/settings/wcj-settings-reports.php:19
16651
- msgid "Product Sales (Daily)"
16652
- msgstr ""
16653
-
16654
- #: includes/settings/wcj-settings-reports.php:26
16655
- msgid "Report columns"
16656
- msgstr ""
16657
-
16658
- #: includes/settings/wcj-settings-reports.php:27
16659
- msgid "Set empty to include all columns."
16660
- msgstr ""
16661
-
16662
- #: includes/settings/wcj-settings-reports.php:35
16663
- msgid "Order statuses"
16664
- msgstr ""
16665
-
16666
- #: includes/settings/wcj-settings-reports.php:36
16667
- msgid "Set empty to include all statuses."
16668
- msgstr ""
16669
-
16670
- #: includes/settings/wcj-settings-reports.php:44
16671
- #: includes/settings/wcj-settings-reports.php:85
16672
- msgid "Include taxes"
16673
- msgstr ""
16674
-
16675
- #: includes/settings/wcj-settings-reports.php:51
16676
- #: includes/settings/wcj-settings-reports.php:92
16677
- msgid "Count variations for variable products"
16678
- msgstr ""
16679
-
16680
- #: includes/settings/wcj-settings-reports.php:57
16681
- msgid "Product Sales (Monthly)"
16682
- msgstr ""
16683
-
16684
- #: includes/settings/wcj-settings-reports.php:64
16685
- msgid "Display item sales"
16686
- msgstr ""
16687
-
16688
- #: includes/settings/wcj-settings-reports.php:71
16689
- msgid "Display sales sum"
16690
- msgstr ""
16691
-
16692
- #: includes/settings/wcj-settings-reports.php:78
16693
- msgid "Display profit"
16694
- msgstr ""
16695
-
16696
- #: includes/settings/wcj-settings-reports.php:98
16697
- msgid "Monthly Sales (with Currency Conversion)"
16698
- msgstr ""
16699
-
16700
- #: includes/settings/wcj-settings-reports.php:105
16701
- msgid "Include current day for current month"
16702
- msgstr ""
16703
-
16704
- #: includes/settings/wcj-settings-reports.php:112
16705
- msgid "Forecast total orders and sum (excl. TAX) for current month and year"
16706
- msgstr ""
16707
-
16708
- #: includes/settings/wcj-settings-reports.php:128
16709
- msgid "Customers Reports"
16710
- msgstr ""
16711
-
16712
- #: includes/settings/wcj-settings-reports.php:133
16713
- msgid "Customers by Country"
16714
- msgstr ""
16715
-
16716
- #: includes/settings/wcj-settings-reports.php:139
16717
- msgid "Customers by Country Sets"
16718
- msgstr ""
16719
-
16720
- #: includes/settings/wcj-settings-reports.php:149
16721
- msgid "Stock Reports"
16722
- msgstr ""
16723
-
16724
- #: includes/settings/wcj-settings-reports.php:154
16725
- msgid "All in Stock with sales data"
16726
- msgstr ""
16727
-
16728
- #: includes/settings/wcj-settings-reports.php:160
16729
- msgid "Understocked products (calculated by sales data)"
16730
- msgstr ""
16731
-
16732
- #: includes/settings/wcj-settings-reports.php:166
16733
- msgid "Overstocked products (calculated by sales data)"
16734
- msgstr ""
16735
-
16736
- #: includes/settings/wcj-settings-reports.php:173
16737
- msgid "product type"
16738
- msgstr ""
16739
-
16740
- #: includes/settings/wcj-settings-reports.php:174
16741
- msgid "Product type for all \"Stock\" reports."
16742
- msgstr ""
16743
-
16744
- #: includes/settings/wcj-settings-reports.php:180
16745
- msgid "Both products and variations"
16746
- msgstr ""
16747
-
16748
- #: includes/settings/wcj-settings-reports.php:185
16749
- msgid "Include deleted products"
16750
- msgstr ""
16751
-
16752
- #: includes/settings/wcj-settings-reports.php:186
16753
- msgid "Include deleted products in all \"Stock\" reports."
16754
- msgstr ""
16755
-
16756
- #: includes/settings/wcj-settings-reports.php:208
16757
- msgid "View report"
16758
- msgstr ""
16759
-
16760
- #: includes/settings/wcj-settings-sale-flash.php:14
16761
- #: includes/settings/wcj-settings-sale-flash.php:19
16762
- msgid "Globally"
16763
- msgstr ""
16764
-
16765
- #: includes/settings/wcj-settings-sale-flash.php:34
16766
- msgid "Hide Everywhere"
16767
- msgstr ""
16768
-
16769
- #: includes/settings/wcj-settings-sale-flash.php:41
16770
- msgid "Hide on Archives (Categories) Only"
16771
- msgstr ""
16772
-
16773
- #: includes/settings/wcj-settings-sale-flash.php:48
16774
- msgid "Hide on Single Page Only"
16775
- msgstr ""
16776
-
16777
- #: includes/settings/wcj-settings-sale-flash.php:81
16778
- msgid "Per Tag"
16779
- msgstr ""
16780
-
16781
- #: includes/settings/wcj-settings-sale-flash.php:98
16782
- msgid "Terms to Modify"
16783
- msgstr ""
16784
-
16785
- #: includes/settings/wcj-settings-sale-flash.php:99
16786
- msgid "Save changes to see new option fields."
16787
- msgstr ""
16788
-
16789
- #: includes/settings/wcj-settings-sale-flash.php:110
16790
- #, php-format
16791
- msgid "Term #%s"
16792
- msgstr ""
16793
-
16794
- #: includes/settings/wcj-settings-shipping-by-condition.php:41
16795
- #: includes/settings/wcj-settings-shipping-by-condition.php:47
16796
- #, php-format
16797
- msgid "Shipping Methods by %s"
16798
- msgstr ""
16799
-
16800
- #: includes/settings/wcj-settings-shipping-by-condition.php:77
16801
- #, php-format
16802
- msgid "Include %s"
16803
- msgstr ""
16804
-
16805
- #: includes/settings/wcj-settings-shipping-by-condition.php:88
16806
- #, php-format
16807
- msgid "Exclude %s"
16808
- msgstr ""
16809
-
16810
- #: includes/settings/wcj-settings-shipping-by-condition.php:113
16811
- msgid "Filter Priority"
16812
- msgstr ""
16813
-
16814
- #: includes/settings/wcj-settings-shipping-by-order-amount.php:65
16815
- msgid "Maximum order amount"
16816
- msgstr ""
16817
-
16818
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:57
16819
- msgid "Minimum order quantity"
16820
- msgstr ""
16821
-
16822
- #: includes/settings/wcj-settings-shipping-by-order-qty.php:65
16823
- msgid "Maximum order quantity"
16824
- msgstr ""
16825
-
16826
- #: includes/settings/wcj-settings-shipping-calculator.php:14
16827
- msgid "Shipping Calculator Options"
16828
- msgstr ""
16829
-
16830
- #: includes/settings/wcj-settings-shipping-calculator.php:19
16831
- msgid "Enable City"
16832
- msgstr ""
16833
-
16834
- #: includes/settings/wcj-settings-shipping-calculator.php:26
16835
- msgid "Enable Postcode"
16836
- msgstr ""
16837
-
16838
- #: includes/settings/wcj-settings-shipping-calculator.php:33
16839
- msgid "Enable State"
16840
- msgstr ""
16841
-
16842
- #: includes/settings/wcj-settings-shipping-calculator.php:40
16843
- msgid "Force Block Open"
16844
- msgstr ""
16845
-
16846
- #: includes/settings/wcj-settings-shipping-calculator.php:48
16847
- msgid "Calculate Shipping button"
16848
- msgstr ""
16849
-
16850
- #: includes/settings/wcj-settings-shipping-calculator.php:49
16851
- msgid ""
16852
- "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
16853
- "options."
16854
- msgstr ""
16855
-
16856
- #: includes/settings/wcj-settings-shipping-calculator.php:55
16857
- msgid "Make non clickable"
16858
- msgstr ""
16859
-
16860
- #: includes/settings/wcj-settings-shipping-calculator.php:63
16861
- msgid "Labels Options"
16862
- msgstr ""
16863
-
16864
- #: includes/settings/wcj-settings-shipping-calculator.php:68
16865
- msgid "Labels"
16866
- msgstr ""
16867
-
16868
- #: includes/settings/wcj-settings-shipping-calculator.php:77
16869
- msgid "Label for Calculate Shipping"
16870
- msgstr ""
16871
-
16872
- #: includes/settings/wcj-settings-shipping-calculator.php:79
16873
- msgid "Calculate Shipping"
16874
- msgstr ""
16875
-
16876
- #: includes/settings/wcj-settings-shipping-calculator.php:85
16877
- msgid "Label for Update Totals"
16878
- msgstr ""
16879
-
16880
- #: includes/settings/wcj-settings-shipping-calculator.php:87
16881
- msgid "Update Totals"
16882
- msgstr ""
16883
-
16884
- #: includes/settings/wcj-settings-shipping-description.php:16
16885
- #, php-format
16886
- msgid ""
16887
- "This section will allow you to add any text (e.g. description) for shipping "
16888
- "method. Text will be visible on cart and checkout pages. You can add HTML "
16889
- "tags here, e.g. try %s."
16890
- msgstr ""
16891
-
16892
- #: includes/settings/wcj-settings-shipping-description.php:21
16893
- msgid "Description Visibility"
16894
- msgstr ""
16895
-
16896
- #: includes/settings/wcj-settings-shipping-description.php:27
16897
- #: includes/settings/wcj-settings-shipping-icons.php:36
16898
- msgid "Only on cart page"
16899
- msgstr ""
16900
-
16901
- #: includes/settings/wcj-settings-shipping-description.php:28
16902
- #: includes/settings/wcj-settings-shipping-icons.php:37
16903
- msgid "Only on checkout page"
16904
- msgstr ""
16905
-
16906
- #: includes/settings/wcj-settings-shipping-description.php:30
16907
- msgid ""
16908
- "Possible values: on both cart and checkout pages; only on cart page; only on "
16909
- "checkout page."
16910
- msgstr ""
16911
-
16912
- #: includes/settings/wcj-settings-shipping-description.php:35
16913
- msgid "Description Position"
16914
- msgstr ""
16915
-
16916
- #: includes/settings/wcj-settings-shipping-description.php:40
16917
- msgid "After the label"
16918
- msgstr ""
16919
-
16920
- #: includes/settings/wcj-settings-shipping-description.php:41
16921
- msgid "Before the label"
16922
- msgstr ""
16923
-
16924
- #: includes/settings/wcj-settings-shipping-description.php:42
16925
- msgid "Instead of the label"
16926
- msgstr ""
16927
-
16928
- #: includes/settings/wcj-settings-shipping-description.php:44
16929
- msgid ""
16930
- "Possible values: after the label; before the label; instead of the label."
16931
- msgstr ""
16932
-
16933
- #: includes/settings/wcj-settings-shipping-description.php:53
16934
- msgid "Shipping Methods Descriptions"
16935
- msgstr ""
16936
-
16937
- #: includes/settings/wcj-settings-shipping-icons.php:16
16938
- msgid ""
16939
- "This section will allow you to add icons for shipping method. Icons will be "
16940
- "visible on cart and checkout pages."
16941
- msgstr ""
16942
-
16943
- #: includes/settings/wcj-settings-shipping-icons.php:20
16944
- msgid "Icon Position"
16945
- msgstr ""
16946
-
16947
- #: includes/settings/wcj-settings-shipping-icons.php:25
16948
- msgid "Before label"
16949
- msgstr ""
16950
-
16951
- #: includes/settings/wcj-settings-shipping-icons.php:26
16952
- msgid "After label"
16953
- msgstr ""
16954
-
16955
- #: includes/settings/wcj-settings-shipping-icons.php:30
16956
- msgid "Icon Visibility"
16957
- msgstr ""
16958
-
16959
- #: includes/settings/wcj-settings-shipping-icons.php:39
16960
- msgid ""
16961
- "Possible values: on both cart and checkout pages; only on cart page; only on "
16962
- "checkout page"
16963
- msgstr ""
16964
-
16965
- #: includes/settings/wcj-settings-shipping-icons.php:44
16966
- msgid "Icon Style"
16967
- msgstr ""
16968
-
16969
- #: includes/settings/wcj-settings-shipping-icons.php:45
16970
- msgid ""
16971
- "You can also style icons with CSS class \"wcj_shipping_icon\", or id "
16972
- "\"wcj_shipping_icon_method_id\""
16973
- msgstr ""
16974
-
16975
- #: includes/settings/wcj-settings-shipping-icons.php:55
16976
- msgid "Shipping Methods Icons"
16977
- msgstr ""
16978
-
16979
- #: includes/settings/wcj-settings-shipping-options.php:14
16980
- msgid "Hide if Free Shipping is Available"
16981
- msgstr ""
16982
-
16983
- #: includes/settings/wcj-settings-shipping-options.php:16
16984
- msgid ""
16985
- "This section lets you hide other shipping options when free shipping is "
16986
- "available on shop frontend."
16987
- msgstr ""
16988
-
16989
- #: includes/settings/wcj-settings-shipping-options.php:20
16990
- msgid "Hide when free is available"
16991
- msgstr ""
16992
-
16993
- #: includes/settings/wcj-settings-shipping-options.php:40
16994
- msgid "Advanced: Filter Priority"
16995
- msgstr ""
16996
-
16997
- #: includes/settings/wcj-settings-shipping-options.php:53
16998
- #: includes/settings/wcj-settings-shipping-options.php:62
16999
- msgid "Free Shipping by Product"
17000
- msgstr ""
17001
-
17002
- #: includes/settings/wcj-settings-shipping-options.php:54
17003
- msgid ""
17004
- "In this section you can select products which grant free shipping when added "
17005
- "to cart."
17006
- msgstr ""
17007
-
17008
- #: includes/settings/wcj-settings-shipping-options.php:55
17009
- #, php-format
17010
- msgid "Similar results can be achieved with %s module."
17011
- msgstr ""
17012
-
17013
- #: includes/settings/wcj-settings-shipping-options.php:78
17014
- msgid ""
17015
- "Select either <strong>all products</strong> or <strong>at least one product</"
17016
- "strong> in cart must grant free shipping."
17017
- msgstr ""
17018
-
17019
- #: includes/settings/wcj-settings-shipping-options.php:83
17020
- msgid "All products in cart must grant free shipping"
17021
- msgstr ""
17022
-
17023
- #: includes/settings/wcj-settings-shipping-options.php:84
17024
- msgid "At least one product in cart must grant free shipping"
17025
- msgstr ""
17026
-
17027
- #: includes/settings/wcj-settings-shipping-time.php:39
17028
- msgid "Use Product Shipping Classes"
17029
- msgstr ""
17030
-
17031
- #: includes/settings/wcj-settings-shipping-time.php:41
17032
- msgid ""
17033
- "Enable this if you want to set options for each shipping class separately."
17034
- msgstr ""
17035
-
17036
- #: includes/settings/wcj-settings-shipping-time.php:55
17037
- msgid "Shipping Time Options"
17038
- msgstr ""
17039
-
17040
- #: includes/settings/wcj-settings-shipping-time.php:56
17041
- msgid "Set estimated shipping time in <strong>days</strong>."
17042
- msgstr ""
17043
-
17044
- #: includes/settings/wcj-settings-shipping.php:13
17045
- msgid "WooCommerce > Settings > Shipping"
17046
- msgstr ""
17047
-
17048
- #: includes/settings/wcj-settings-shipping.php:19
17049
- msgid "This section lets you add custom shipping method."
17050
- msgstr ""
17051
-
17052
- #: includes/settings/wcj-settings-shipping.php:20
17053
- #, php-format
17054
- msgid "Visit %s to set method's options."
17055
- msgstr ""
17056
-
17057
- #: includes/settings/wcj-settings-shipping.php:32
17058
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:41
17059
- msgid "Booster: Custom Shipping"
17060
- msgstr ""
17061
-
17062
- #: includes/settings/wcj-settings-shipping.php:43
17063
- msgid "Custom Shipping (Legacy - without Shipping Zones)"
17064
- msgstr ""
17065
-
17066
- #: includes/settings/wcj-settings-shipping.php:46
17067
- msgid "This section lets you set number of custom shipping methods to add."
17068
- msgstr ""
17069
-
17070
- #: includes/settings/wcj-settings-shipping.php:47
17071
- #, php-format
17072
- msgid "After setting the number, visit %s to set each method options."
17073
- msgstr ""
17074
-
17075
- #: includes/settings/wcj-settings-shipping.php:50
17076
- msgid "Custom Shipping Methods Number"
17077
- msgstr ""
17078
-
17079
- #: includes/settings/wcj-settings-shipping.php:61
17080
- msgid "Admin Title Custom Shipping"
17081
- msgstr ""
17082
-
17083
- #: includes/settings/wcj-settings-sku.php:17
17084
- msgid "SKU Format Options"
17085
- msgstr ""
17086
-
17087
- #: includes/settings/wcj-settings-sku.php:27
17088
- msgid "From product ID"
17089
- msgstr ""
17090
-
17091
- #: includes/settings/wcj-settings-sku.php:31
17092
- msgid "Number generation method."
17093
- msgstr ""
17094
-
17095
- #: includes/settings/wcj-settings-sku.php:32
17096
- msgid "Possible values: from product ID, sequential or pseudorandom."
17097
- msgstr ""
17098
-
17099
- #: includes/settings/wcj-settings-sku.php:37
17100
- msgid "Sequential Number Generation - Counter"
17101
- msgstr ""
17102
-
17103
- #: includes/settings/wcj-settings-sku.php:38
17104
- msgid ""
17105
- "If you choose to use sequential number inside SKU, you can set current "
17106
- "sequential number counter here."
17107
- msgstr ""
17108
-
17109
- #: includes/settings/wcj-settings-sku.php:49
17110
- msgid "Sequential Number Generation - By Category"
17111
- msgstr ""
17112
-
17113
- #: includes/settings/wcj-settings-sku.php:50
17114
- msgid "Enables sequential number generation by category."
17115
- msgstr ""
17116
-
17117
- #: includes/settings/wcj-settings-sku.php:59
17118
- msgid "SKU prefix."
17119
- msgstr ""
17120
-
17121
- #: includes/settings/wcj-settings-sku.php:65
17122
- msgid "Minimum Number Length"
17123
- msgstr ""
17124
-
17125
- #: includes/settings/wcj-settings-sku.php:66
17126
- msgid "Minimum length for SKU number part."
17127
- msgstr ""
17128
-
17129
- #: includes/settings/wcj-settings-sku.php:73
17130
- msgid "SKU suffix."
17131
- msgstr ""
17132
-
17133
- #: includes/settings/wcj-settings-sku.php:79
17134
- msgid "Attributes Separator"
17135
- msgstr ""
17136
-
17137
- #: includes/settings/wcj-settings-sku.php:80
17138
- #, php-format
17139
- msgid "Used in %s, %s, %s and %s."
17140
- msgstr ""
17141
-
17142
- #: includes/settings/wcj-settings-sku.php:90
17143
- msgid "Characters Case"
17144
- msgstr ""
17145
-
17146
- #: includes/settings/wcj-settings-sku.php:95
17147
- msgid "Original (no changes)"
17148
- msgstr ""
17149
-
17150
- #: includes/settings/wcj-settings-sku.php:96
17151
- msgid "Convert to lowercase"
17152
- msgstr ""
17153
-
17154
- #: includes/settings/wcj-settings-sku.php:97
17155
- msgid "Convert to uppercase"
17156
- msgstr ""
17157
-
17158
- #: includes/settings/wcj-settings-sku.php:102
17159
- msgid "SKU template."
17160
- msgstr ""
17161
-
17162
- #: includes/settings/wcj-settings-sku.php:118
17163
- #, php-format
17164
- msgid "You can also use shortcodes here, e.g.: %s etc."
17165
- msgstr ""
17166
-
17167
- #: includes/settings/wcj-settings-sku.php:128
17168
- msgid "Variable Products Variations"
17169
- msgstr ""
17170
-
17171
- #: includes/settings/wcj-settings-sku.php:129
17172
- msgid ""
17173
- "SKU generation for variations. Please note, that if \"Generate SKU for New "
17174
- "Products Only on First Publish\" option below is not checked, then on new "
17175
- "variable product creation, variations will get same SKUs as parent product, "
17176
- "and if you want variations to have different SKUs, you will need to run "
17177
- "\"Autogenerate SKUs\" tool manually."
17178
- msgstr ""
17179
-
17180
- #: includes/settings/wcj-settings-sku.php:130
17181
- msgid ""
17182
- "Possible values: SKU same as parent's product; Generate different SKU for "
17183
- "each variation; SKU same as parent's product + variation letter suffix."
17184
- msgstr ""
17185
-
17186
- #: includes/settings/wcj-settings-sku.php:135
17187
- msgid "SKU same as parent's product"
17188
- msgstr ""
17189
-
17190
- #: includes/settings/wcj-settings-sku.php:136
17191
- msgid "Generate different SKU for each variation"
17192
- msgstr ""
17193
-
17194
- #: includes/settings/wcj-settings-sku.php:137
17195
- msgid "SKU same as parent's product + variation letter suffix"
17196
- msgstr ""
17197
-
17198
- #: includes/settings/wcj-settings-sku.php:149
17199
- msgid "Categories Options"
17200
- msgstr ""
17201
-
17202
- #: includes/settings/wcj-settings-sku.php:154
17203
- msgid "Multiple Categories"
17204
- msgstr ""
17205
-
17206
- #: includes/settings/wcj-settings-sku.php:155
17207
- msgid ""
17208
- "This options defines how to handle category prefixes and suffixes, if "
17209
- "product has multiple categories."
17210
- msgstr ""
17211
-
17212
- #: includes/settings/wcj-settings-sku.php:160
17213
- msgid "Use first category"
17214
- msgstr ""
17215
-
17216
- #: includes/settings/wcj-settings-sku.php:161
17217
- msgid "\"Glue\" categories"
17218
- msgstr ""
17219
-
17220
- #: includes/settings/wcj-settings-sku.php:165
17221
- msgid "Category separator (i.e. \"glue\")"
17222
- msgstr ""
17223
-
17224
- #: includes/settings/wcj-settings-sku.php:166
17225
- msgid "Ignored if \"Use first category\" is selected above."
17226
- msgstr ""
17227
-
17228
- #: includes/settings/wcj-settings-sku.php:194
17229
- msgid "Counter (Sequential)"
17230
- msgstr ""
17231
-
17232
- #: includes/settings/wcj-settings-sku.php:215
17233
- msgid "Automatically Generate SKU for New Products"
17234
- msgstr ""
17235
-
17236
- #: includes/settings/wcj-settings-sku.php:217
17237
- msgid "Alternatively you can use Autogenerate SKUs tool."
17238
- msgstr ""
17239
-
17240
- #: includes/settings/wcj-settings-sku.php:223
17241
- msgid "Generate SKU for New Products Only on First Publish"
17242
- msgstr ""
17243
-
17244
- #: includes/settings/wcj-settings-sku.php:225
17245
- msgid ""
17246
- "This is important if, for example, you are using category prefix and don't "
17247
- "want SKU generated too early, before you set the category."
17248
- msgstr ""
17249
-
17250
- #: includes/settings/wcj-settings-sku.php:231
17251
- msgid "Allow Duplicate SKUs"
17252
- msgstr ""
17253
-
17254
- #: includes/settings/wcj-settings-sku.php:233
17255
- msgid ""
17256
- "If you wish to set SKUs manually, and you need to have same SKUs for "
17257
- "different products, you can enable allow duplicate SKUs option here (which "
17258
- "is disabled in WooCommerce by default)."
17259
- msgstr ""
17260
-
17261
- #: includes/settings/wcj-settings-sku.php:239
17262
- msgid "Search by SKU"
17263
- msgstr ""
17264
-
17265
- #: includes/settings/wcj-settings-sku.php:241
17266
- msgid "Add product searching by SKU on frontend."
17267
- msgstr ""
17268
-
17269
- #: includes/settings/wcj-settings-sku.php:247
17270
- msgid "Advanced: Search by SKU Hook"
17271
- msgstr ""
17272
-
17273
- #: includes/settings/wcj-settings-sku.php:248
17274
- msgid ""
17275
- "If you are experiencing any issues with searching by SKU, try changing this "
17276
- "option."
17277
- msgstr ""
17278
-
17279
- #: includes/settings/wcj-settings-sku.php:258
17280
- msgid "Generate SKUs Only for Products with Empty SKU"
17281
- msgstr ""
17282
-
17283
- #: includes/settings/wcj-settings-sku.php:260
17284
- msgid ""
17285
- "This may help if you are going to use Autogenerate SKUs tool, but don't want "
17286
- "to change your existing SKUs."
17287
- msgstr ""
17288
-
17289
- #: includes/settings/wcj-settings-sku.php:266
17290
- msgid "Add SKU to Customer Emails"
17291
- msgstr ""
17292
-
17293
- #: includes/settings/wcj-settings-sku.php:268
17294
- msgid "Adds product SKU to customer's emails."
17295
- msgstr ""
17296
-
17297
- #: includes/settings/wcj-settings-sku.php:274
17298
- msgid "Remove SKU from Admin Emails"
17299
- msgstr ""
17300
-
17301
- #: includes/settings/wcj-settings-sku.php:276
17302
- msgid "Removes product SKU from admin's emails."
17303
- msgstr ""
17304
-
17305
- #: includes/settings/wcj-settings-sku.php:282
17306
- msgid "Disable SKUs"
17307
- msgstr ""
17308
-
17309
- #: includes/settings/wcj-settings-sku.php:284
17310
- msgid ""
17311
- "Enable this option if you are not going to use SKUs in your shop at all."
17312
- msgstr ""
17313
-
17314
- #: includes/settings/wcj-settings-sorting.php:14
17315
- msgid "Add Custom Sorting"
17316
- msgstr ""
17317
-
17318
- #: includes/settings/wcj-settings-sorting.php:19
17319
- msgid "Add More Sorting"
17320
- msgstr ""
17321
-
17322
- #: includes/settings/wcj-settings-sorting.php:26
17323
- msgid "Sort by Name"
17324
- msgstr ""
17325
-
17326
- #: includes/settings/wcj-settings-sorting.php:27
17327
- #: includes/settings/wcj-settings-sorting.php:30
17328
- msgid "Sort by title: A to Z"
17329
- msgstr ""
17330
-
17331
- #: includes/settings/wcj-settings-sorting.php:28
17332
- #: includes/settings/wcj-settings-sorting.php:37
17333
- #: includes/settings/wcj-settings-sorting.php:46
17334
- #: includes/settings/wcj-settings-sorting.php:55
17335
- #: includes/settings/wcj-settings-sorting.php:73
17336
- #: includes/settings/wcj-settings-sorting.php:82
17337
- msgid "Text to show on frontend. Leave blank to disable."
17338
- msgstr ""
17339
-
17340
- #: includes/settings/wcj-settings-sorting.php:36
17341
- #: includes/settings/wcj-settings-sorting.php:39
17342
- msgid "Sort by title: Z to A"
17343
- msgstr ""
17344
-
17345
- #: includes/settings/wcj-settings-sorting.php:44
17346
- msgid "Sort by SKU"
17347
- msgstr ""
17348
-
17349
- #: includes/settings/wcj-settings-sorting.php:45
17350
- #: includes/settings/wcj-settings-sorting.php:48
17351
- msgid "Sort by SKU: low to high"
17352
- msgstr ""
17353
-
17354
- #: includes/settings/wcj-settings-sorting.php:54
17355
- #: includes/settings/wcj-settings-sorting.php:57
17356
- msgid "Sort by SKU: high to low"
17357
- msgstr ""
17358
-
17359
- #: includes/settings/wcj-settings-sorting.php:63
17360
- msgid "Sort SKUs as numbers instead of as texts"
17361
- msgstr ""
17362
-
17363
- #: includes/settings/wcj-settings-sorting.php:71
17364
- msgid "Sort by stock quantity"
17365
- msgstr ""
17366
-
17367
- #: includes/settings/wcj-settings-sorting.php:72
17368
- #: includes/settings/wcj-settings-sorting.php:75
17369
- msgid "Sort by stock quantity: low to high"
17370
- msgstr ""
17371
-
17372
- #: includes/settings/wcj-settings-sorting.php:81
17373
- #: includes/settings/wcj-settings-sorting.php:84
17374
- msgid "Sort by stock quantity: high to low"
17375
- msgstr ""
17376
-
17377
- #: includes/settings/wcj-settings-sorting.php:93
17378
- #: includes/settings/wcj-settings-sorting.php:98
17379
- #: includes/settings/wcj-settings-sorting.php:105
17380
- msgid "Rearrange Sorting"
17381
- msgstr ""
17382
-
17383
- #: includes/settings/wcj-settings-sorting.php:107
17384
- msgid "Default:"
17385
- msgstr ""
17386
-
17387
- #: includes/settings/wcj-settings-sorting.php:117
17388
- msgid "Default WooCommerce Sorting"
17389
- msgstr ""
17390
-
17391
- #: includes/settings/wcj-settings-sorting.php:122
17392
- msgid "Default Sorting Options"
17393
- msgstr ""
17394
-
17395
- #: includes/settings/wcj-settings-sorting.php:156
17396
- #: includes/settings/wcj-settings-sorting.php:161
17397
- msgid "Remove All Sorting"
17398
- msgstr ""
17399
-
17400
- #: includes/settings/wcj-settings-sorting.php:162
17401
- msgid "Remove all sorting (including WooCommerce default) from shop's frontend"
17402
- msgstr ""
17403
-
17404
- #: includes/settings/wcj-settings-sorting.php:174
17405
- msgid "Restore Default WooCommerce Sorting"
17406
- msgstr ""
17407
-
17408
- #: includes/settings/wcj-settings-sorting.php:175
17409
- msgid "Replaces theme's sorting by default WooCommerce sorting"
17410
- msgstr ""
17411
-
17412
- #: includes/settings/wcj-settings-sorting.php:181
17413
- #: includes/settings/wcj-settings-sorting.php:182
17414
- msgid "Restore"
17415
- msgstr ""
17416
-
17417
- #: includes/settings/wcj-settings-sorting.php:187
17418
- msgid "Theme"
17419
- msgstr ""
17420
-
17421
- #: includes/settings/wcj-settings-sorting.php:188
17422
- msgid "Theme that will have its sorting replaced."
17423
- msgstr ""
17424
-
17425
- #: includes/settings/wcj-settings-sorting.php:191
17426
- msgid "Avada"
17427
- msgstr ""
17428
-
17429
- #: includes/settings/wcj-settings-stock.php:14
17430
- msgid "Custom \"In Stock\" Options"
17431
- msgstr ""
17432
-
17433
- #: includes/settings/wcj-settings-stock.php:19
17434
- msgid "Custom \"In Stock\""
17435
- msgstr ""
17436
-
17437
- #: includes/settings/wcj-settings-stock.php:26
17438
- msgid "Custom \"In Stock\" Text"
17439
- msgstr ""
17440
-
17441
- #: includes/settings/wcj-settings-stock.php:33
17442
- msgid "\"In Stock\" text."
17443
- msgstr ""
17444
-
17445
- #: includes/settings/wcj-settings-stock.php:34
17446
- #: includes/settings/wcj-settings-stock.php:43
17447
- #, php-format
17448
- msgid "If needed, use %s to insert stock quantity."
17449
- msgstr ""
17450
-
17451
- #: includes/settings/wcj-settings-stock.php:42
17452
- msgid "\"Low amount\" text."
17453
- msgstr ""
17454
-
17455
- #: includes/settings/wcj-settings-stock.php:45
17456
- #, php-format
17457
- msgid "Used only if %s is selected for %s in %s."
17458
- msgstr ""
17459
-
17460
- #: includes/settings/wcj-settings-stock.php:46
17461
- msgid "Only show quantity remaining in stock when low"
17462
- msgstr ""
17463
-
17464
- #: includes/settings/wcj-settings-stock.php:47
17465
- msgid "Stock display format"
17466
- msgstr ""
17467
-
17468
- #: includes/settings/wcj-settings-stock.php:48
17469
- msgid "WooCommerce > Settings > Products > Inventory"
17470
- msgstr ""
17471
-
17472
- #: includes/settings/wcj-settings-stock.php:55
17473
- msgid "\"Can be backordered\" text."
17474
- msgstr ""
17475
-
17476
- #: includes/settings/wcj-settings-stock.php:63
17477
- msgid "Custom \"In Stock\" Class"
17478
- msgstr ""
17479
-
17480
- #: includes/settings/wcj-settings-stock.php:70
17481
- #: includes/settings/wcj-settings-stock.php:101
17482
- #: includes/settings/wcj-settings-stock.php:115
17483
- #: includes/settings/wcj-settings-stock.php:160
17484
- #, php-format
17485
- msgid "Default: %s."
17486
- msgstr ""
17487
-
17488
- #: includes/settings/wcj-settings-stock.php:81
17489
- msgid "Custom \"Out of Stock\" Options"
17490
- msgstr ""
17491
-
17492
- #: includes/settings/wcj-settings-stock.php:86
17493
- msgid "Custom \"Out of Stock\""
17494
- msgstr ""
17495
-
17496
- #: includes/settings/wcj-settings-stock.php:93
17497
- msgid "Custom \"Out of Stock\" Text"
17498
- msgstr ""
17499
-
17500
- #: includes/settings/wcj-settings-stock.php:108
17501
- msgid "Custom \"Out of Stock\" Class"
17502
- msgstr ""
17503
-
17504
- #: includes/settings/wcj-settings-stock.php:126
17505
- msgid "Custom \"Available on backorder\" Options"
17506
- msgstr ""
17507
-
17508
- #: includes/settings/wcj-settings-stock.php:131
17509
- msgid "Custom \"Available on backorder\""
17510
- msgstr ""
17511
-
17512
- #: includes/settings/wcj-settings-stock.php:138
17513
- msgid "Custom \"Available on backorder\" Text"
17514
- msgstr ""
17515
-
17516
- #: includes/settings/wcj-settings-stock.php:146
17517
- #, php-format
17518
- msgid "Default: %s or empty string."
17519
- msgstr ""
17520
-
17521
- #: includes/settings/wcj-settings-stock.php:146
17522
- msgid "Available on backorder"
17523
- msgstr ""
17524
-
17525
- #: includes/settings/wcj-settings-stock.php:153
17526
- msgid "Custom \"Available on backorder\" Class"
17527
- msgstr ""
17528
-
17529
- #: includes/settings/wcj-settings-stock.php:171
17530
- #: includes/settings/wcj-settings-stock.php:176
17531
- msgid "Custom Stock HTML"
17532
- msgstr ""
17533
-
17534
- #: includes/settings/wcj-settings-stock.php:185
17535
- #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:24
17536
- msgid "HTML"
17537
- msgstr ""
17538
-
17539
- #: includes/settings/wcj-settings-stock.php:204
17540
- msgid "Remove Stock Display"
17541
- msgstr ""
17542
-
17543
- #: includes/settings/wcj-settings-stock.php:205
17544
- msgid "This will remove stock display from frontend."
17545
- msgstr ""
17546
-
17547
- #: includes/settings/wcj-settings-tax-display.php:20
17548
- msgid "TAX Display - Toggle Button"
17549
- msgstr ""
17550
-
17551
- #: includes/settings/wcj-settings-tax-display.php:22
17552
- #, php-format
17553
- msgid "Use %s shortcode to display the button on frontend."
17554
- msgstr ""
17555
-
17556
- #: includes/settings/wcj-settings-tax-display.php:26
17557
- msgid "TAX Toggle Button"
17558
- msgstr ""
17559
-
17560
- #: includes/settings/wcj-settings-tax-display.php:37
17561
- #: includes/settings/wcj-settings-tax-display.php:43
17562
- msgid "TAX Display by Product"
17563
- msgstr ""
17564
-
17565
- #: includes/settings/wcj-settings-tax-display.php:39
17566
- msgid ""
17567
- "If you want to display part of your products including TAX and another part "
17568
- "excluding TAX, you can set it here."
17569
- msgstr ""
17570
-
17571
- #: includes/settings/wcj-settings-tax-display.php:50
17572
- msgid "Products - Including TAX"
17573
- msgstr ""
17574
-
17575
- #: includes/settings/wcj-settings-tax-display.php:52
17576
- msgid "Select products to display including TAX."
17577
- msgstr ""
17578
-
17579
- #: includes/settings/wcj-settings-tax-display.php:60
17580
- msgid "Products - Excluding TAX"
17581
- msgstr ""
17582
-
17583
- #: includes/settings/wcj-settings-tax-display.php:62
17584
- msgid "Select products to display excluding TAX."
17585
- msgstr ""
17586
-
17587
- #: includes/settings/wcj-settings-tax-display.php:70
17588
- msgid "Product Categories - Including TAX"
17589
- msgstr ""
17590
-
17591
- #: includes/settings/wcj-settings-tax-display.php:72
17592
- msgid "Select product categories to display including TAX."
17593
- msgstr ""
17594
-
17595
- #: includes/settings/wcj-settings-tax-display.php:80
17596
- msgid "Product Categories - Excluding TAX"
17597
- msgstr ""
17598
-
17599
- #: includes/settings/wcj-settings-tax-display.php:82
17600
- msgid "Select product categories to display excluding TAX."
17601
- msgstr ""
17602
-
17603
- #: includes/settings/wcj-settings-tax-display.php:94
17604
- #: includes/settings/wcj-settings-tax-display.php:100
17605
- msgid "TAX Display by User Role"
17606
- msgstr ""
17607
-
17608
- #: includes/settings/wcj-settings-tax-display.php:96
17609
- msgid ""
17610
- "If you want to display prices including TAX or excluding TAX for different "
17611
- "user roles, you can set it here."
17612
- msgstr ""
17613
-
17614
- #: includes/settings/wcj-settings-tax-display.php:108
17615
- msgid ""
17616
- "Save changes after you change this option and new settings fields will "
17617
- "appear."
17618
- msgstr ""
17619
-
17620
- #: includes/settings/wcj-settings-tax-display.php:109
17621
- #, php-format
17622
- msgid ""
17623
- "Select user roles that you want to change tax display for. For all remaining "
17624
- "(i.e. not selected) user roles - default TAX display (set in %s) will be "
17625
- "applied."
17626
- msgstr ""
17627
-
17628
- #: includes/settings/wcj-settings-tax-display.php:110
17629
- msgid "WooCommerce > Settings > Tax"
17630
- msgstr ""
17631
-
17632
- #: includes/settings/wcj-settings-tax-display.php:122
17633
- #, php-format
17634
- msgid "Role: %s - shop"
17635
- msgstr ""
17636
-
17637
- #: includes/settings/wcj-settings-tax-display.php:124
17638
- msgid "Setup how taxes will be applied during in the shop."
17639
- msgstr ""
17640
-
17641
- #: includes/settings/wcj-settings-tax-display.php:128
17642
- #: includes/settings/wcj-settings-tax-display.php:140
17643
- msgid "Default TAX display (no changes)"
17644
- msgstr ""
17645
-
17646
- #: includes/settings/wcj-settings-tax-display.php:129
17647
- #: includes/settings/wcj-settings-tax-display.php:141
17648
- msgid "Including tax"
17649
- msgstr ""
17650
-
17651
- #: includes/settings/wcj-settings-tax-display.php:130
17652
- #: includes/settings/wcj-settings-tax-display.php:142
17653
- msgid "Excluding tax"
17654
- msgstr ""
17655
-
17656
- #: includes/settings/wcj-settings-tax-display.php:134
17657
- #, php-format
17658
- msgid "Role: %s - cart"
17659
- msgstr ""
17660
-
17661
- #: includes/settings/wcj-settings-tax-display.php:136
17662
- msgid "Setup how taxes will be applied during cart and checkout."
17663
- msgstr ""
17664
-
17665
- #: includes/settings/wcj-settings-template-editor.php:25
17666
- msgid "Templates to Edit"
17667
- msgstr ""
17668
-
17669
- #: includes/settings/wcj-settings-template-editor.php:26
17670
- msgid "Save changes after you set this option to see new options fields."
17671
- msgstr ""
17672
-
17673
- #: includes/settings/wcj-settings-template-editor.php:45
17674
- msgid "Default template path"
17675
- msgstr ""
17676
-
17677
- #: includes/settings/wcj-settings-template-editor.php:46
17678
- msgid "Replaced template path"
17679
- msgstr ""
17680
-
17681
- #: includes/settings/wcj-settings-track-users.php:19
17682
- msgid "Countries by Visits"
17683
- msgstr ""
17684
-
17685
- #: includes/settings/wcj-settings-track-users.php:20
17686
- msgid "Enable admin dashboard widget"
17687
- msgstr ""
17688
-
17689
- #: includes/settings/wcj-settings-track-users.php:27
17690
- msgid "Select which info to show in admin dashboard widget."
17691
- msgstr ""
17692
-
17693
- #: includes/settings/wcj-settings-track-users.php:35
17694
- msgid "Top Countries"
17695
- msgstr ""
17696
-
17697
- #: includes/settings/wcj-settings-track-users.php:36
17698
- msgid "Select how many top countries to show."
17699
- msgstr ""
17700
-
17701
- #: includes/settings/wcj-settings-track-users.php:43
17702
- msgid "Track Orders"
17703
- msgstr ""
17704
-
17705
- #: includes/settings/wcj-settings-track-users.php:44
17706
- msgid "Save customer's acquisition source (i.e. HTTP referer) for orders."
17707
- msgstr ""
17708
-
17709
- #: includes/settings/wcj-settings-track-users.php:45
17710
- msgid ""
17711
- "This will add \"Booster: Acquisition Source\" meta box to each order's edit "
17712
- "page."
17713
- msgstr ""
17714
-
17715
- #: includes/settings/wcj-settings-track-users.php:54
17716
- msgid "Order List Columns: Referer"
17717
- msgstr ""
17718
-
17719
- #: includes/settings/wcj-settings-track-users.php:55
17720
- #, php-format
17721
- msgid "This will add \"Referer\" column to the <a href=\"%s\">orders list</a>."
17722
- msgstr ""
17723
-
17724
- #: includes/settings/wcj-settings-track-users.php:64
17725
- msgid "Order List Columns: Referer Type"
17726
- msgstr ""
17727
-
17728
- #: includes/settings/wcj-settings-track-users.php:65
17729
- #, php-format
17730
- msgid ""
17731
- "This will add \"Referer Type\" column to the <a href=\"%s\">orders list</a>."
17732
- msgstr ""
17733
-
17734
- #: includes/settings/wcj-settings-upsells.php:19
17735
- msgid "Upsells Total"
17736
- msgstr ""
17737
-
17738
- #: includes/settings/wcj-settings-upsells.php:27
17739
- msgid "Upsells Columns"
17740
- msgstr ""
17741
-
17742
- #: includes/settings/wcj-settings-upsells.php:35
17743
- msgid "Upsells Order By"
17744
- msgstr ""
17745
-
17746
- #: includes/settings/wcj-settings-upsells.php:51
17747
- msgid "Upsells Position"
17748
- msgstr ""
17749
-
17750
- #: includes/settings/wcj-settings-upsells.php:52
17751
- msgid "Upsells position on single product page."
17752
- msgstr ""
17753
-
17754
- #: includes/settings/wcj-settings-upsells.php:67
17755
- msgid ""
17756
- "Ignored if \"Upsells Position\" option above is set to \"No changes "
17757
- "(default)\"."
17758
- msgstr ""
17759
-
17760
- #: includes/settings/wcj-settings-upsells.php:73
17761
- msgid "Hide Upsells"
17762
- msgstr ""
17763
-
17764
- #: includes/settings/wcj-settings-upsells.php:80
17765
- msgid "Global Upsells"
17766
- msgstr ""
17767
-
17768
- #: includes/settings/wcj-settings-upsells.php:82
17769
- msgid "Enable this section if you want to add same upsells to all products."
17770
- msgstr ""
17771
-
17772
- #: includes/settings/wcj-settings-upsells.php:90
17773
- msgid "Global upsells"
17774
- msgstr ""
17775
-
17776
- #: includes/settings/wcj-settings-url-coupons.php:15
17777
- #, php-format
17778
- msgid ""
17779
- "Additionally you can hide standard coupon field on cart page in Booster's <a "
17780
- "href=\"%s\">Cart Customization</a> module."
17781
- msgstr ""
17782
-
17783
- #: includes/settings/wcj-settings-url-coupons.php:21
17784
- msgid "URL Coupons Key"
17785
- msgstr ""
17786
-
17787
- #: includes/settings/wcj-settings-url-coupons.php:22
17788
- msgid ""
17789
- "URL key. If you change this, make sure it's unique and is not used anywhere "
17790
- "on your site (e.g. by another plugin)."
17791
- msgstr ""
17792
-
17793
- #: includes/settings/wcj-settings-url-coupons.php:23
17794
- #, php-format
17795
- msgid ""
17796
- "Your users can apply shop's standard coupons, by visiting URL. E.g.: %s."
17797
- msgstr ""
17798
-
17799
- #: includes/settings/wcj-settings-url-coupons.php:30
17800
- msgid "Redirect URL"
17801
- msgstr ""
17802
-
17803
- #: includes/settings/wcj-settings-url-coupons.php:31
17804
- msgid ""
17805
- "Possible values: No redirect; redirect to cart; redirect to checkout; "
17806
- "redirect to custom local URL."
17807
- msgstr ""
17808
-
17809
- #: includes/settings/wcj-settings-url-coupons.php:36
17810
- msgid "No redirect"
17811
- msgstr ""
17812
-
17813
- #: includes/settings/wcj-settings-url-coupons.php:37
17814
- msgid "Redirect to cart"
17815
- msgstr ""
17816
-
17817
- #: includes/settings/wcj-settings-url-coupons.php:38
17818
- msgid "Redirect to checkout"
17819
- msgstr ""
17820
-
17821
- #: includes/settings/wcj-settings-url-coupons.php:39
17822
- msgid "Redirect to custom local URL"
17823
- msgstr ""
17824
-
17825
- #: includes/settings/wcj-settings-url-coupons.php:45
17826
- msgid "Custom Local URL"
17827
- msgstr ""
17828
-
17829
- #: includes/settings/wcj-settings-url-coupons.php:46
17830
- msgid "If redirect to custom local URL is selected, set URL here."
17831
- msgstr ""
17832
-
17833
- #: includes/settings/wcj-settings-url-coupons.php:53
17834
- msgid "\"Fixed product discount\" Coupons"
17835
- msgstr ""
17836
-
17837
- #: includes/settings/wcj-settings-url-coupons.php:54
17838
- msgid "Automatically add coupon's products to the cart"
17839
- msgstr ""
17840
-
17841
- #: includes/settings/wcj-settings-wholesale-price.php:17
17842
- #, php-format
17843
- msgid "If you want to display prices table on frontend, use %s shortcode."
17844
- msgstr ""
17845
-
17846
- #: includes/settings/wcj-settings-wholesale-price.php:22
17847
- msgid "Enable per Product"
17848
- msgstr ""
17849
-
17850
- #: includes/settings/wcj-settings-wholesale-price.php:30
17851
- msgid "Quantity Calculation"
17852
- msgstr ""
17853
-
17854
- #: includes/settings/wcj-settings-wholesale-price.php:35
17855
- msgid "Product quantity"
17856
- msgstr ""
17857
-
17858
- #: includes/settings/wcj-settings-wholesale-price.php:36
17859
- msgid "Total cart quantity (wholesale products only)"
17860
- msgstr ""
17861
-
17862
- #: includes/settings/wcj-settings-wholesale-price.php:37
17863
- msgid "Total cart quantity"
17864
- msgstr ""
17865
-
17866
- #: includes/settings/wcj-settings-wholesale-price.php:41
17867
- msgid "Exclusive Use Only"
17868
- msgstr ""
17869
-
17870
- #: includes/settings/wcj-settings-wholesale-price.php:43
17871
- msgid "Apply wholesale discount only if no other cart discounts were applied."
17872
- msgstr ""
17873
-
17874
- #: includes/settings/wcj-settings-wholesale-price.php:49
17875
- msgid "Round Single Product Price"
17876
- msgstr ""
17877
-
17878
- #: includes/settings/wcj-settings-wholesale-price.php:50
17879
- msgid ""
17880
- "If enabled will round single product price with precision set in WooCommerce "
17881
- "> Settings > General > Number of decimals."
17882
- msgstr ""
17883
-
17884
- #: includes/settings/wcj-settings-wholesale-price.php:57
17885
- msgid "Discount Info on Cart Page"
17886
- msgstr ""
17887
-
17888
- #: includes/settings/wcj-settings-wholesale-price.php:64
17889
- msgid "If show discount info on cart page is enabled, set format here."
17890
- msgstr ""
17891
-
17892
- #: includes/settings/wcj-settings-wholesale-price.php:72
17893
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
17894
- msgid "Discount Type"
17895
- msgstr ""
17896
-
17897
- #: includes/settings/wcj-settings-wholesale-price.php:113
17898
- msgid "Disable wholesale pricing for products with \"Price Changes\""
17899
- msgstr ""
17900
-
17901
- #: includes/settings/wcj-settings-wholesale-price.php:131
17902
- msgid "Wholesale Levels Options"
17903
- msgstr ""
17904
-
17905
- #: includes/settings/wcj-settings-wholesale-price.php:136
17906
- #: includes/settings/wcj-settings-wholesale-price.php:193
17907
- msgid "Number of Levels"
17908
- msgstr ""
17909
-
17910
- #: includes/settings/wcj-settings-wholesale-price.php:150
17911
- #: includes/settings/wcj-settings-wholesale-price.php:207
17912
- msgid "Min Quantity"
17913
- msgstr ""
17914
-
17915
- #: includes/settings/wcj-settings-wholesale-price.php:151
17916
- #: includes/settings/wcj-settings-wholesale-price.php:208
17917
- msgid "Minimum quantity to apply discount"
17918
- msgstr ""
17919
-
17920
- #: includes/settings/wcj-settings-wholesale-price.php:158
17921
- #: includes/settings/wcj-settings-wholesale-price.php:159
17922
- #: includes/settings/wcj-settings-wholesale-price.php:215
17923
- #: includes/settings/wcj-settings-wholesale-price.php:216
17924
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
17925
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
17926
- msgid "Discount"
17927
- msgstr ""
17928
-
17929
- #: includes/settings/wcj-settings-wholesale-price.php:173
17930
- msgid "Additional User Roles Options"
17931
- msgstr ""
17932
-
17933
- #: includes/settings/wcj-settings-wholesale-price.php:175
17934
- msgid ""
17935
- "If you want to set different wholesale pricing options for different user "
17936
- "roles, fill this section. Please note that you can also use Booster's "
17937
- "\"Price based on User Role\" module without filling this section."
17938
- msgstr ""
17939
-
17940
- #: includes/settings/wcj-settings-wholesale-price.php:179
17941
- msgid "User Roles Settings"
17942
- msgstr ""
17943
-
17944
- #: includes/settings/wcj-settings-wpml.php:27
17945
- msgid "Use Translation Product IDs"
17946
- msgstr ""
17947
-
17948
- #: includes/settings/wcj-settings-wpml.php:34
17949
- msgid "Auto Switch Booster Currency"
17950
- msgstr ""
17951
-
17952
- #: includes/settings/wcj-settings-wpml.php:36
17953
- msgid ""
17954
- "Try to automatically switch Booster currency according to WPML. It's "
17955
- "necessary to enable MultiCurrency module"
17956
- msgstr ""
17957
-
17958
- #: includes/settings/wcj-settings-wpml.php:46
17959
- msgid "WPML Language Configuration File Options"
17960
- msgstr ""
17961
-
17962
- #: includes/settings/wcj-settings-wpml.php:48
17963
- #, php-format
17964
- msgid "Options for regenerating %s file."
17965
- msgstr ""
17966
-
17967
- #: includes/settings/wcj-settings-wpml.php:52
17968
- msgid "Automatically Regenerate"
17969
- msgstr ""
17970
-
17971
- #: includes/settings/wcj-settings-wpml.php:54
17972
- #, php-format
17973
- msgid "Automatically regenerate %s file on each Booster version update."
17974
- msgstr ""
17975
-
17976
- #: includes/settings/wcj-settings-wpml.php:60
17977
- msgid "Modules to Skip"
17978
- msgstr ""
17979
-
17980
- #: includes/settings/wcj-settings-wpml.php:61
17981
- msgid ""
17982
- "Select modules, which options you wish to exclude from wpml-config.xml file."
17983
- msgstr ""
17984
-
17985
- #: includes/settings/wcj-settings-wpml.php:69
17986
- msgid "Option IDs to Skip"
17987
- msgstr ""
17988
-
17989
- #: includes/settings/wcj-settings-wpml.php:70
17990
- msgid "Select options, which you wish to exclude from wpml-config.xml file."
17991
- msgstr ""
17992
-
17993
- #: includes/settings/wcj-settings-wpml.php:71
17994
- #, php-format
17995
- msgid "Full or part of option ID. Separated by vertical bar %s."
17996
- msgstr ""
17997
-
17998
- #: includes/settings/wcj-settings-wpml.php:93
17999
- #: includes/settings/wcj-settings-wpml.php:95
18000
- msgid "Regenerate wpml-config.xml file"
18001
- msgstr ""
18002
-
18003
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:29
18004
- msgid "Content to replace add to cart button on single product page."
18005
- msgstr ""
18006
-
18007
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:40
18008
- msgid "Category/Archives"
18009
- msgstr ""
18010
-
18011
- #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:48
18012
- msgid "Content to replace add to cart button on category/archives."
18013
- msgstr ""
18014
-
18015
- #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:19
18016
- #, php-format
18017
- msgid "Product ID: %s"
18018
- msgstr ""
18019
-
18020
- #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:26
18021
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:45
18022
- msgid "Regular price"
18023
- msgstr ""
18024
-
18025
- #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:34
18026
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:54
18027
- msgid "Sale price"
18028
- msgstr ""
18029
-
18030
- #: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:14
18031
- msgid "Invalidate for roles"
18032
- msgstr ""
18033
-
18034
- #: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:15
18035
- msgid "Invalidate coupon for selected user roles."
18036
- msgstr ""
18037
-
18038
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
18039
- msgid "Goal"
18040
- msgstr ""
18041
-
18042
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
18043
- msgid "Deadline"
18044
- msgstr ""
18045
-
18046
- #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:25
18047
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
18048
- msgid "Product Currency"
18049
- msgstr ""
18050
-
18051
- #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:27
18052
- msgid "Update product after you change this field's value."
18053
- msgstr ""
18054
-
18055
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
18056
- msgid "Add CSS"
18057
- msgstr ""
18058
-
18059
- #: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
18060
- msgid "PayPal Email"
18061
- msgstr ""
18062
-
18063
- #: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:14
18064
- msgid "Max Qty"
18065
- msgstr ""
18066
-
18067
- #: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:18
18068
- msgid ""
18069
- "If set to zero, and \"All Products\" section is enabled - global maximum "
18070
- "quantity will be used; in case if \"All Products\" section is disabled - no "
18071
- "maximum quantity will be used."
18072
- msgstr ""
18073
-
18074
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
18075
- msgid "Enable Offer Price"
18076
- msgstr ""
18077
-
18078
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
18079
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
18080
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
18081
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
18082
- msgid "Leave blank to use global value."
18083
- msgstr ""
18084
-
18085
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:42
18086
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:57
18087
- msgid "Set 0 to use global settings. Set -1 to disable."
18088
- msgstr ""
18089
-
18090
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:69
18091
- msgid "All variations"
18092
- msgstr ""
18093
-
18094
- #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:73
18095
- msgid "Set 0 to use global settings."
18096
- msgstr ""
18097
-
18098
- #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
18099
- msgid "Save order after you change this field."
18100
- msgstr ""
18101
-
18102
- #: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:24
18103
- #, php-format
18104
- msgid "%s number"
18105
- msgstr ""
18106
-
18107
- #: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:30
18108
- #, php-format
18109
- msgid "%s date"
18110
- msgstr ""
18111
-
18112
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:29
18113
- msgid "Per Product Settings (press Update after changing)"
18114
- msgstr ""
18115
-
18116
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
18117
- msgid "Add to Cart Local Redirect URL"
18118
- msgstr ""
18119
-
18120
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:55
18121
- msgid "Custom Add to Cart Button URL (Category/Archives)"
18122
- msgstr ""
18123
-
18124
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
18125
- msgid "As shop default (no changes)"
18126
- msgstr ""
18127
-
18128
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:70
18129
- msgid "Disable Add to Cart Button AJAX"
18130
- msgstr ""
18131
-
18132
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
18133
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
18134
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
18135
- msgid "Save product after you change this number."
18136
- msgstr ""
18137
-
18138
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
18139
- msgid "Is required"
18140
- msgstr ""
18141
-
18142
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:14
18143
- msgid ""
18144
- "Use \"Control\" key to select/deselect multiple options. Hold \"Control\" "
18145
- "and \"A\" to select all options. Leave empty to disable."
18146
- msgstr ""
18147
-
18148
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:17
18149
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
18150
- msgid "Enable/Disable per Product Settings"
18151
- msgstr ""
18152
-
18153
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:28
18154
- msgid "Direct Date"
18155
- msgstr ""
18156
-
18157
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:32
18158
- msgid ""
18159
- "Fill this if you want to set one date from which the product will be "
18160
- "available."
18161
- msgstr ""
18162
-
18163
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:33
18164
- msgid "If this field is filled in, monthly settings fields are ignored."
18165
- msgstr ""
18166
-
18167
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
18168
- msgid "Replace image with custom HTML on single product page"
18169
- msgstr ""
18170
-
18171
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
18172
- msgid "Replace image with custom HTML on archives"
18173
- msgstr ""
18174
-
18175
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:37
18176
- msgid "Hide Image on Single"
18177
- msgstr ""
18178
-
18179
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:47
18180
- msgid "Hide Thumbnails on Single"
18181
- msgstr ""
18182
-
18183
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:57
18184
- msgid "Hide Image on Archives"
18185
- msgstr ""
18186
-
18187
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
18188
- msgid ""
18189
- "'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
18190
- "Products' option is checked in module's settings."
18191
- msgstr ""
18192
-
18193
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
18194
- msgid "Use values below"
18195
- msgstr ""
18196
-
18197
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
18198
- msgid "Use default values"
18199
- msgstr ""
18200
-
18201
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
18202
- msgid "Calculation"
18203
- msgstr ""
18204
-
18205
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
18206
- msgid "Number of Parameters"
18207
- msgstr ""
18208
-
18209
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:20
18210
- msgid ""
18211
- "If enabled and no products selected - will hide related products section on "
18212
- "frontend for current product."
18213
- msgstr ""
18214
-
18215
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:31
18216
- msgid ""
18217
- "Hold Control (Ctrl) key to select multiple products. Ctrl and \"A\" to "
18218
- "select all products."
18219
- msgstr ""
18220
-
18221
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
18222
- msgid "Price directly"
18223
- msgstr ""
18224
-
18225
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
18226
- msgid "Enable per Product Levels"
18227
- msgstr ""
18228
-
18229
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
18230
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
18231
- msgid "Number of levels"
18232
- msgstr ""
18233
-
18234
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
18235
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
18236
- msgid ""
18237
- "Free Booster's version is limited to one level maximum. Please visit https://"
18238
- "booster.io to get full version."
18239
- msgstr ""
18240
-
18241
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
18242
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
18243
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
18244
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
18245
- msgid "Level"
18246
- msgstr ""
18247
-
18248
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
18249
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
18250
- msgid "Min quantity"
18251
- msgstr ""
18252
-
18253
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:42
18254
- #: includes/shipping/class-wc-shipping-wcj-custom.php:38
18255
- msgid "Booster: Custom Shipping Method"
18256
- msgstr ""
18257
-
18258
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:116
18259
- #: includes/shipping/class-wc-shipping-wcj-custom.php:157
18260
- msgid "Max Weight or Quantity"
18261
- msgstr ""
18262
-
18263
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
18264
- msgid "Flat rate"
18265
- msgstr ""
18266
-
18267
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:167
18268
- msgid "By total cart weight"
18269
- msgstr ""
18270
-
18271
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:168
18272
- msgid "By total cart weight table"
18273
- msgstr ""
18274
-
18275
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:169
18276
- msgid "By total cart quantity"
18277
- msgstr ""
18278
-
18279
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:172
18280
- msgid "By total cart quantity table"
18281
- msgstr ""
18282
-
18283
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:186
18284
- #: includes/shipping/class-wc-shipping-wcj-custom.php:116
18285
- msgid "Cost calculation type."
18286
- msgstr ""
18287
-
18288
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:187
18289
- #: includes/shipping/class-wc-shipping-wcj-custom.php:97
18290
- #: includes/shipping/class-wc-shipping-wcj-custom.php:116
18291
- msgid "By Total Cart Quantity Table"
18292
- msgstr ""
18293
-
18294
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:196
18295
- #: includes/shipping/class-wc-shipping-wcj-custom.php:124
18296
- msgid ""
18297
- "Cost. If calculating by weight - then cost per one weight unit. If "
18298
- "calculating by quantity - then cost per one piece."
18299
- msgstr ""
18300
-
18301
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:202
18302
- #: includes/shipping/class-wc-shipping-wcj-custom.php:130
18303
- msgid "Min Weight"
18304
- msgstr ""
18305
-
18306
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:204
18307
- #: includes/shipping/class-wc-shipping-wcj-custom.php:132
18308
- msgid "Minimum total cart weight. Set zero to disable."
18309
- msgstr ""
18310
-
18311
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:211
18312
- #: includes/shipping/class-wc-shipping-wcj-custom.php:138
18313
- msgid "Max Weight"
18314
- msgstr ""
18315
-
18316
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:213
18317
- #: includes/shipping/class-wc-shipping-wcj-custom.php:140
18318
- msgid "Maximum total cart weight. Set zero to disable."
18319
- msgstr ""
18320
-
18321
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:220
18322
- msgid "Apply Formula and Shortcodes to Costs"
18323
- msgstr ""
18324
-
18325
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:221
18326
- #, php-format
18327
- msgid ""
18328
- "You can use %s and %s params in formula, e.g.: %s. Also you can use "
18329
- "shortcodes, e.g.: %s."
18330
- msgstr ""
18331
-
18332
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:230
18333
- #: includes/shipping/class-wc-shipping-wcj-custom.php:146
18334
- msgid "Table Total Rows"
18335
- msgstr ""
18336
-
18337
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:232
18338
- msgid ""
18339
- "Press \"Save changes\" and reload the page after you change this number."
18340
- msgstr ""
18341
-
18342
- #: includes/shipping/class-wc-shipping-wcj-custom.php:91
18343
- msgid "Flat Rate"
18344
- msgstr ""
18345
-
18346
- #: includes/shipping/class-wc-shipping-wcj-custom.php:92
18347
- msgid "By Total Cart Weight"
18348
- msgstr ""
18349
-
18350
- #: includes/shipping/class-wc-shipping-wcj-custom.php:93
18351
- msgid "By Total Cart Weight Table"
18352
- msgstr ""
18353
-
18354
- #: includes/shipping/class-wc-shipping-wcj-custom.php:94
18355
- msgid "By Total Cart Quantity"
18356
- msgstr ""
18357
-
18358
- #: includes/shipping/class-wc-shipping-wcj-custom.php:103
18359
- msgid "Enable Custom Shipping"
18360
- msgstr ""
18361
-
18362
- #: includes/shortcodes/class-wcj-shortcodes-general.php:95
18363
- msgid "Tax toggle (incl.)"
18364
- msgstr ""
18365
-
18366
- #: includes/shortcodes/class-wcj-shortcodes-general.php:96
18367
- msgid "Tax toggle (excl.)"
18368
- msgstr ""
18369
-
18370
- #: includes/shortcodes/class-wcj-shortcodes-input-field.php:51
18371
- msgid "Attribute \"name\" is required!"
18372
- msgstr ""
18373
-
18374
- #: includes/shortcodes/class-wcj-shortcodes-orders.php:333
18375
- #, php-format
18376
- msgid "Refund #%1$s - %2$s"
18377
- msgstr ""
18378
-
18379
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:54
18380
- msgid "Product by User"
18381
- msgstr ""
18382
-
18383
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:163
18384
- msgid "Title is required!"
18385
- msgstr ""
18386
-
18387
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:171
18388
- msgid "Product exists!"
18389
- msgstr ""
18390
-
18391
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:181
18392
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:396
18393
- msgid "Product URL"
18394
- msgstr ""
18395
-
18396
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:197
18397
- #, php-format
18398
- msgid "%s is required!"
18399
- msgstr ""
18400
-
18401
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:203
18402
- msgid "Sale price must be less than the regular price!"
18403
- msgstr ""
18404
-
18405
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:281
18406
- msgid "Error!"
18407
- msgstr ""
18408
-
18409
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:322
18410
- msgid "Add New Product"
18411
- msgstr ""
18412
-
18413
- #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:322
18414
- msgid "Edit Product"
18415
- msgstr ""
18416
-
18417
- #: includes/shortcodes/class-wcj-shortcodes-products.php:328
18418
- #, php-format
18419
- msgid "%s ago"
18420
- msgstr ""
18421
-
18422
- #: includes/shortcodes/class-wcj-shortcodes-products.php:335
18423
- msgid "No sales yet."
18424
- msgstr ""
18425
-
18426
- #: includes/shortcodes/class-wcj-shortcodes-products.php:562
18427
- msgid "In stock"
18428
- msgstr ""
18429
-
18430
- #: includes/templates/wcj-radio-for-variations.php:16
18431
- msgid "This product is currently out of stock and unavailable."
18432
- msgstr ""
18433
-
18434
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:41
18435
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:68
18436
- msgid "VAT"
18437
- msgstr ""
18438
-
18439
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
18440
- msgid "Add EU Countries VAT Rates"
18441
- msgstr ""
18442
-
18443
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
18444
- msgid "Note: will add duplicates."
18445
- msgstr ""
18446
-
18447
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:83
18448
- msgid "List of EU VAT rates to be added"
18449
- msgstr ""
18450
-
18451
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:89
18452
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:103
18453
- msgid "Rate"
18454
- msgstr ""
18455
-
18456
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:97
18457
- msgid "Current standard tax rates"
18458
- msgstr ""
18459
-
18460
- #: includes/tools/class-wcj-order-statuses-tool.php:35
18461
- msgid "Status slug is empty. Status was not added!"
18462
- msgstr ""
18463
-
18464
- #: includes/tools/class-wcj-order-statuses-tool.php:38
18465
- msgid ""
18466
- "The length of status slug must be 17 or less characters (excluding prefix). "
18467
- "Status was not added!"
18468
- msgstr ""
18469
-
18470
- #: includes/tools/class-wcj-order-statuses-tool.php:42
18471
- msgid "Status label is empty. Status was not added!"
18472
- msgstr ""
18473
-
18474
- #: includes/tools/class-wcj-order-statuses-tool.php:48
18475
- msgid "Duplicate slug. Status was not added!"
18476
- msgstr ""
18477
-
18478
- #: includes/tools/class-wcj-order-statuses-tool.php:60
18479
- #, php-format
18480
- msgid "%s status has been successfully added."
18481
- msgstr ""
18482
-
18483
- #: includes/tools/class-wcj-order-statuses-tool.php:62
18484
- #, php-format
18485
- msgid "%s status was not added!"
18486
- msgstr ""
18487
-
18488
- #: includes/tools/class-wcj-order-statuses-tool.php:75
18489
- msgid "Status label is empty. Status was not edited!"
18490
- msgstr ""
18491
-
18492
- #: includes/tools/class-wcj-order-statuses-tool.php:86
18493
- #, php-format
18494
- msgid "%s status has been successfully edited!"
18495
- msgstr ""
18496
-
18497
- #: includes/tools/class-wcj-order-statuses-tool.php:88
18498
- #, php-format
18499
- msgid "%s status was not edited!"
18500
- msgstr ""
18501
-
18502
- #: includes/tools/class-wcj-order-statuses-tool.php:108
18503
- #, php-format
18504
- msgid "%s status has been successfully deleted."
18505
- msgstr ""
18506
-
18507
- #: includes/tools/class-wcj-order-statuses-tool.php:110
18508
- #, php-format
18509
- msgid "%s status delete failed!"
18510
- msgstr ""
18511
-
18512
- #: includes/tools/class-wcj-order-statuses-tool.php:142
18513
- #: includes/tools/class-wcj-order-statuses-tool.php:218
18514
- msgid "Icon Code"
18515
- msgstr ""
18516
-
18517
- #: includes/tools/class-wcj-order-statuses-tool.php:143
18518
- #: includes/tools/class-wcj-order-statuses-tool.php:219
18519
- msgid "Color"
18520
- msgstr ""
18521
-
18522
- #: includes/tools/class-wcj-order-statuses-tool.php:144
18523
- #: includes/tools/class-wcj-order-statuses-tool.php:220
18524
- msgid "Text Color"
18525
- msgstr ""
18526
-
18527
- #: includes/tools/class-wcj-order-statuses-tool.php:163
18528
- msgid "Get Booster Plus to enable."
18529
- msgstr ""
18530
-
18531
- #: includes/tools/class-wcj-order-statuses-tool.php:206
18532
- #, php-format
18533
- msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
18534
- msgstr ""
18535
-
18536
- #: includes/tools/class-wcj-order-statuses-tool.php:211
18537
- msgid "Edit custom status"
18538
- msgstr ""
18539
-
18540
- #: includes/tools/class-wcj-order-statuses-tool.php:211
18541
- msgid "Add new custom status"
18542
- msgstr ""
18543
-
18544
- #: includes/tools/class-wcj-order-statuses-tool.php:216
18545
- msgid "Slug (without <code>wc-</code> prefix)"
18546
- msgstr ""
18547
-
18548
- #: includes/tools/class-wcj-order-statuses-tool.php:269
18549
- msgid "Delete All Custom Statuses"
18550
- msgstr ""
18551
-
18552
- #: includes/widgets/class-wcj-widget-country-switcher.php:27
18553
- msgid "Booster - Country Switcher"
18554
- msgstr ""
18555
-
18556
- #: includes/widgets/class-wcj-widget-country-switcher.php:29
18557
- msgid "Booster: Country Switcher Widget"
18558
- msgstr ""
18559
-
18560
- #: includes/widgets/class-wcj-widget-country-switcher.php:41
18561
- msgid "Prices and Currencies by Country module not enabled!"
18562
- msgstr ""
18563
-
18564
- #: includes/widgets/class-wcj-widget-country-switcher.php:43
18565
- msgid "Customer Country Detection Method must include \"by user selection\"!"
18566
- msgstr ""
18567
-
18568
- #: includes/widgets/class-wcj-widget-country-switcher.php:76
18569
- msgid "Replace with currency"
18570
- msgstr ""
18571
-
18572
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:27
18573
- msgid "Booster - Left to Free Shipping"
18574
- msgstr ""
18575
-
18576
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:29
18577
- msgid "Booster: Left to Free Shipping Widget"
18578
- msgstr ""
18579
-
18580
- #: includes/widgets/class-wcj-widget-multicurrency.php:29
18581
- msgid "Booster: Multicurrency Switcher Widget"
18582
- msgstr ""
18583
-
18584
- #: includes/widgets/class-wcj-widget-multicurrency.php:41
18585
- msgid "Multicurrency module not enabled!"
18586
- msgstr ""
18587
-
18588
- #: includes/widgets/class-wcj-widget-multicurrency.php:81
18589
- msgid "Drop down"
18590
- msgstr ""
18591
-
18592
- #: includes/widgets/class-wcj-widget-multicurrency.php:82
18593
- msgid "Radio list"
18594
- msgstr ""
18595
-
18596
- #: includes/widgets/class-wcj-widget-multicurrency.php:83
18597
- msgid "Link list"
18598
- msgstr ""
18599
-
18600
- #: includes/widgets/class-wcj-widget-multicurrency.php:88
18601
- msgid "Form Method"
18602
- msgstr ""
18603
-
18604
- #: includes/widgets/class-wcj-widget-multicurrency.php:89
18605
- msgid "HTML form method for \"Drop down\" and \"Radio list\" types."
18606
- msgstr ""
18607
-
18608
- #: includes/widgets/class-wcj-widget-multicurrency.php:94
18609
- msgid "Post"
18610
- msgstr ""
18611
-
18612
- #: includes/widgets/class-wcj-widget-multicurrency.php:95
18613
- msgid "Get"
18614
- msgstr ""
18615
-
18616
- #: includes/widgets/class-wcj-widget-multicurrency.php:101
18617
- msgid "HTML class for \"Drop down\" type."
18618
- msgstr ""
18619
-
18620
- #: includes/widgets/class-wcj-widget-multicurrency.php:108
18621
- msgid "Style"
18622
- msgstr ""
18623
-
18624
- #: includes/widgets/class-wcj-widget-multicurrency.php:109
18625
- msgid "HTML style for \"Drop down\" type."
18626
- msgstr ""
18627
-
18628
- #: includes/widgets/class-wcj-widget-selector.php:29
18629
- msgid "Booster: Selector Widget"
18630
- msgstr ""
18631
-
18632
- #: includes/widgets/class-wcj-widget-selector.php:29
18633
- msgid "currently for \"Product Visibility by Country\" module only"
18634
- msgstr ""
18635
-
18636
- #: includes/widgets/class-wcj-widget-selector.php:59
18637
- msgid "Selector Type"
18638
- msgstr ""
18639
-
18640
- #: includes/widgets/class-wcj-widget-selector.php:65
18641
- msgid "Product custom visibility"
18642
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Booster for WooCommerce\n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
17
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;eschtml_e;esc_html_x:1,2c;"
18
+ "esc_html_e\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: assets\n"
21
+ "X-Poedit-SearchPathExcluded-1: .idea\n"
22
+ "X-Poedit-SearchPathExcluded-2: .git\n"
23
+
24
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
25
+ msgid "Booster: Custom Add to Cart"
26
+ msgstr ""
27
+
28
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
29
+ msgid "Single product view"
30
+ msgstr ""
31
+
32
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
33
+ msgid "Product category (archive) view"
34
+ msgstr ""
35
+
36
+ #: includes/admin/class-wc-settings-jetpack.php:24
37
+ #: includes/admin/class-wc-settings-jetpack.php:221
38
+ #: includes/class-wcj-admin-bar.php:276
39
+ #: includes/class-wcj-checkout-files-upload.php:218
40
+ #: includes/class-wcj-eu-vat-number.php:165
41
+ #: includes/class-wcj-max-products-per-user.php:184
42
+ #: includes/class-wcj-orders.php:124 includes/class-wcj-orders.php:153
43
+ #: includes/class-wcj-payment-gateways.php:91
44
+ #: includes/class-wcj-track-users.php:163
45
+ #: includes/class-wcj-track-users.php:251
46
+ #: includes/classes/class-wcj-module.php:381
47
+ #: includes/classes/class-wcj-module.php:581
48
+ #: includes/settings/wcj-settings-price-by-country.php:178
49
+ msgid "Booster"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wc-settings-jetpack.php:83
53
+ #: includes/class-wcj-admin-bar.php:140
54
+ msgid "Alphabetically"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wc-settings-jetpack.php:84
58
+ #: includes/class-wcj-admin-bar.php:144
59
+ msgid "By Category"
60
+ msgstr ""
61
+
62
+ #: includes/admin/class-wc-settings-jetpack.php:85
63
+ #: includes/class-wcj-admin-bar.php:148
64
+ msgid "Active"
65
+ msgstr ""
66
+
67
+ #: includes/admin/class-wc-settings-jetpack.php:86
68
+ #: includes/class-wcj-admin-bar.php:152
69
+ msgid "Manage Settings"
70
+ msgstr ""
71
+
72
+ #: includes/admin/class-wc-settings-jetpack.php:146
73
+ #: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
74
+ #: includes/class-wcj-my-account.php:33
75
+ msgid "Dashboard"
76
+ msgstr ""
77
+
78
+ #: includes/admin/class-wc-settings-jetpack.php:190
79
+ #, php-format
80
+ msgid ""
81
+ "Please note that current <em>%s</em> module is deprecated and will be "
82
+ "removed in future updates. Please use <em>%s</em> module instead."
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wc-settings-jetpack.php:195
86
+ msgid ""
87
+ "Module will be removed from the module's list as soon as you disable it."
88
+ msgstr ""
89
+
90
+ #: includes/admin/class-wc-settings-jetpack.php:206
91
+ #, php-format
92
+ msgid ""
93
+ "Please note that <em>%s</em> module is currently under development. Until "
94
+ "stable module version is released, options can be changed or some options "
95
+ "can be moved to paid plugin version."
96
+ msgstr ""
97
+
98
+ #: includes/admin/class-wc-settings-jetpack.php:217
99
+ #: includes/class-wcj-admin-bar.php:384
100
+ #: includes/settings/wcj-settings-emails-verification.php:146
101
+ #: includes/settings/wcj-settings-price-by-country.php:177
102
+ msgid "WooCommerce"
103
+ msgstr ""
104
+
105
+ #: includes/admin/class-wc-settings-jetpack.php:219
106
+ #: includes/admin/class-wc-settings-jetpack.php:414
107
+ #: includes/class-wcj-admin-bar.php:168 includes/class-wcj-admin-bar.php:508
108
+ #: includes/class-wcj-admin-bar.php:608 includes/core/class-wcj-admin.php:113
109
+ msgid "Settings"
110
+ msgstr ""
111
+
112
+ #: includes/admin/class-wc-settings-jetpack.php:270
113
+ msgid ""
114
+ "This section lets you export, import or reset all Booster's modules settings."
115
+ msgstr ""
116
+
117
+ #: includes/admin/class-wc-settings-jetpack.php:294
118
+ #: includes/class-wcj-export-import.php:26
119
+ msgid "Export"
120
+ msgstr ""
121
+
122
+ #: includes/admin/class-wc-settings-jetpack.php:295
123
+ msgid "Export all Booster's options to a file."
124
+ msgstr ""
125
+
126
+ #: includes/admin/class-wc-settings-jetpack.php:298
127
+ #: includes/class-wcj-purchase-data.php:93
128
+ msgid "Import"
129
+ msgstr ""
130
+
131
+ #: includes/admin/class-wc-settings-jetpack.php:300
132
+ msgid "Import all Booster's options from a file."
133
+ msgstr ""
134
+
135
+ #: includes/admin/class-wc-settings-jetpack.php:304
136
+ msgid ""
137
+ "This will reset settings to defaults for all Booster modules. Are you sure?"
138
+ msgstr ""
139
+
140
+ #: includes/admin/class-wc-settings-jetpack.php:305
141
+ msgid "Reset"
142
+ msgstr ""
143
+
144
+ #: includes/admin/class-wc-settings-jetpack.php:306
145
+ msgid "Reset all Booster's options."
146
+ msgstr ""
147
+
148
+ #: includes/admin/class-wc-settings-jetpack.php:310
149
+ msgid "This will delete all Booster meta. Are you sure?"
150
+ msgstr ""
151
+
152
+ #: includes/admin/class-wc-settings-jetpack.php:311
153
+ msgid "Reset meta"
154
+ msgstr ""
155
+
156
+ #: includes/admin/class-wc-settings-jetpack.php:312
157
+ msgid "Reset all Booster's meta."
158
+ msgstr ""
159
+
160
+ #: includes/admin/class-wc-settings-jetpack.php:350
161
+ msgid "Version"
162
+ msgstr ""
163
+
164
+ #: includes/admin/class-wc-settings-jetpack.php:371
165
+ #: includes/admin/class-wc-settings-jetpack.php:378
166
+ msgid "Select All"
167
+ msgstr ""
168
+
169
+ #: includes/admin/class-wc-settings-jetpack.php:372
170
+ #: includes/admin/class-wc-settings-jetpack.php:379
171
+ #: includes/admin/class-wcj-tools.php:72
172
+ msgid "Module"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wc-settings-jetpack.php:373
176
+ #: includes/admin/class-wc-settings-jetpack.php:380
177
+ #: includes/admin/class-wcj-tools.php:73
178
+ #: includes/export/class-wcj-fields-helper.php:293
179
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:63
180
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:172
181
+ #: includes/settings/wcj-settings-eu-vat-number.php:34
182
+ #: includes/settings/wcj-settings-product-by-user.php:13
183
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:176
184
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:342
185
+ msgid "Description"
186
+ msgstr ""
187
+
188
+ #: includes/admin/class-wc-settings-jetpack.php:416
189
+ #: includes/class-wcj-admin-bar.php:172
190
+ #: includes/classes/class-wcj-module.php:721
191
+ msgid "Documentation"
192
+ msgstr ""
193
+
194
+ #: includes/admin/class-wc-settings-jetpack.php:427
195
+ msgid "No active modules found."
196
+ msgstr ""
197
+
198
+ #: includes/admin/class-wc-settings-jetpack.php:430
199
+ msgid "Total Modules:"
200
+ msgstr ""
201
+
202
+ #: includes/admin/class-wc-settings-jetpack.php:468
203
+ msgid "Autoload Booster's Options"
204
+ msgstr ""
205
+
206
+ #: includes/admin/class-wc-settings-jetpack.php:470
207
+ msgid ""
208
+ "Choose if you want Booster's options to be autoloaded when calling "
209
+ "add_option. After saving this option, you need to Reset all Booster's "
210
+ "settings. Leave default value (i.e. Enabled) if not sure."
211
+ msgstr ""
212
+
213
+ #: includes/admin/class-wc-settings-jetpack.php:475
214
+ msgid "Load Modules on Init Hook"
215
+ msgstr ""
216
+
217
+ #: includes/admin/class-wc-settings-jetpack.php:477
218
+ msgid "Choose if you want to load Booster Modules on Init hook."
219
+ msgstr ""
220
+
221
+ #: includes/admin/class-wc-settings-jetpack.php:477
222
+ msgid ""
223
+ "It will load the locale appropriately if users change it from the profile "
224
+ "page."
225
+ msgstr ""
226
+
227
+ #: includes/admin/class-wc-settings-jetpack.php:482
228
+ msgid "Use List Instead of Comma Separated Text for Products in Settings"
229
+ msgstr ""
230
+
231
+ #: includes/admin/class-wc-settings-jetpack.php:484
232
+ #: includes/admin/class-wc-settings-jetpack.php:498
233
+ #: includes/admin/class-wc-settings-jetpack.php:507
234
+ #, php-format
235
+ msgid "Supported modules: %s."
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wc-settings-jetpack.php:485
239
+ #: includes/class-wcj-payment-gateways-per-category.php:26
240
+ msgid "Gateways per Product or Category"
241
+ msgstr ""
242
+
243
+ #: includes/admin/class-wc-settings-jetpack.php:486
244
+ #: includes/class-wcj-global-discount.php:27
245
+ #: includes/settings/wcj-settings-product-addons.php:245
246
+ msgid "Global Discount"
247
+ msgstr ""
248
+
249
+ #: includes/admin/class-wc-settings-jetpack.php:487
250
+ #: includes/admin/class-wc-settings-jetpack.php:499
251
+ #: includes/admin/class-wc-settings-jetpack.php:508
252
+ #: includes/class-wcj-product-custom-info.php:24
253
+ #: includes/functions/wcj-functions-general.php:449
254
+ msgid "Product Info"
255
+ msgstr ""
256
+
257
+ #: includes/admin/class-wc-settings-jetpack.php:488
258
+ #: includes/class-wcj-product-input-fields.php:24
259
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:185
260
+ msgid "Product Input Fields"
261
+ msgstr ""
262
+
263
+ #: includes/admin/class-wc-settings-jetpack.php:489
264
+ msgid "Products XML"
265
+ msgstr ""
266
+
267
+ #: includes/admin/class-wc-settings-jetpack.php:490
268
+ #: includes/class-wcj-related-products.php:38
269
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:30
270
+ #: includes/settings/wcj-settings-free-price.php:20
271
+ msgid "Related Products"
272
+ msgstr ""
273
+
274
+ #: includes/admin/class-wc-settings-jetpack.php:496
275
+ msgid ""
276
+ "Use List Instead of Comma Separated Text for Products Categories in Settings"
277
+ msgstr ""
278
+
279
+ #: includes/admin/class-wc-settings-jetpack.php:505
280
+ msgid "Use List Instead of Comma Separated Text for Products Tags in Settings"
281
+ msgstr ""
282
+
283
+ #: includes/admin/class-wc-settings-jetpack.php:532
284
+ #: includes/core/class-wcj-admin.php:97
285
+ msgid "Booster for WooCommerce"
286
+ msgstr ""
287
+
288
+ #: includes/admin/class-wcj-settings-custom-fields.php:65
289
+ #, php-format
290
+ msgid "Grab raw %s rate from %s."
291
+ msgstr ""
292
+
293
+ #: includes/admin/class-wcj-settings-custom-fields.php:66
294
+ msgid "Doesn't apply rounding, offset etc."
295
+ msgstr ""
296
+
297
+ #: includes/admin/class-wcj-settings-custom-fields.php:260
298
+ #: includes/settings/wcj-settings-wpml.php:88
299
+ msgid "To use tools, module must be enabled."
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wcj-settings-custom-fields.php:299
303
+ msgid "Save changes"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wcj-settings-manager.php:62
307
+ msgid "Please upload a file to import!"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wcj-settings-manager.php:72
311
+ #: includes/admin/class-wcj-settings-manager.php:77
312
+ msgid "Wrong file format!"
313
+ msgstr ""
314
+
315
+ #: includes/admin/class-wcj-settings-manager.php:86
316
+ #, php-format
317
+ msgid "%d options successfully imported."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wcj-settings-manager.php:140
321
+ #, php-format
322
+ msgid "%d meta successfully deleted."
323
+ msgstr ""
324
+
325
+ #: includes/admin/class-wcj-settings-manager.php:158
326
+ #, php-format
327
+ msgid "%d options successfully deleted."
328
+ msgstr ""
329
+
330
+ #: includes/admin/class-wcj-tools.php:32
331
+ msgid "Booster for WooCommerce Tools"
332
+ msgstr ""
333
+
334
+ #: includes/admin/class-wcj-tools.php:33
335
+ msgid "Booster Tools"
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wcj-tools.php:51
339
+ msgid "Tools Dashboard"
340
+ msgstr ""
341
+
342
+ #: includes/admin/class-wcj-tools.php:65
343
+ msgid "Booster for WooCommerce Tools - Dashboard"
344
+ msgstr ""
345
+
346
+ #: includes/admin/class-wcj-tools.php:66
347
+ msgid ""
348
+ "This dashboard lets you check statuses and short descriptions of all "
349
+ "available Booster for WooCommerce tools. Tools can be enabled through "
350
+ "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
351
+ "above."
352
+ msgstr ""
353
+
354
+ #: includes/admin/class-wcj-tools.php:71
355
+ msgid "Tool"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wcj-tools.php:74
359
+ #: includes/class-wcj-product-by-user.php:197
360
+ #: includes/export/class-wcj-fields-helper.php:294
361
+ msgid "Status"
362
+ msgstr ""
363
+
364
+ #: includes/admin/wcj-modules-cats.php:15
365
+ msgid ""
366
+ "This dashboard lets you enable/disable any Booster's module. Each checkbox "
367
+ "comes with short module's description. Please visit <a href=\"https://"
368
+ "booster.io\" target=\"_blank\">https://booster.io</a> for detailed info on "
369
+ "each feature."
370
+ msgstr ""
371
+
372
+ #: includes/admin/wcj-modules-cats.php:25
373
+ msgid "Prices & Currencies"
374
+ msgstr ""
375
+
376
+ #: includes/admin/wcj-modules-cats.php:26
377
+ msgid ""
378
+ "Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price "
379
+ "based on User Role and more."
380
+ msgstr ""
381
+
382
+ #: includes/admin/wcj-modules-cats.php:47
383
+ msgid "Button & Price Labels"
384
+ msgstr ""
385
+
386
+ #: includes/admin/wcj-modules-cats.php:48
387
+ msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
388
+ msgstr ""
389
+
390
+ #: includes/admin/wcj-modules-cats.php:59 includes/class-wcj-admin-bar.php:466
391
+ #: includes/class-wcj-admin-bar.php:470 includes/class-wcj-admin-bar.php:516
392
+ #: includes/class-wcj-product-bulk-meta-editor.php:263
393
+ #: includes/class-wcj-product-by-user.php:96
394
+ #: includes/class-wcj-product-by-user.php:132
395
+ #: includes/class-wcj-shipping-by-products.php:32
396
+ #: includes/settings/wcj-settings-reports.php:178
397
+ #: includes/settings/wcj-settings-shipping-options.php:69
398
+ msgid "Products"
399
+ msgstr ""
400
+
401
+ #: includes/admin/wcj-modules-cats.php:60
402
+ msgid ""
403
+ "Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
404
+ "Listings, Product Tabs and more."
405
+ msgstr ""
406
+
407
+ #: includes/admin/wcj-modules-cats.php:96
408
+ msgid "Cart & Checkout"
409
+ msgstr ""
410
+
411
+ #: includes/admin/wcj-modules-cats.php:97
412
+ msgid ""
413
+ "Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
414
+ "more."
415
+ msgstr ""
416
+
417
+ #: includes/admin/wcj-modules-cats.php:117
418
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:55
419
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
420
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:37
421
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
422
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:15
423
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:81
424
+ #: includes/settings/wcj-settings-reports.php:118
425
+ msgid "Payment Gateways"
426
+ msgstr ""
427
+
428
+ #: includes/admin/wcj-modules-cats.php:118
429
+ msgid ""
430
+ "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
431
+ "more."
432
+ msgstr ""
433
+
434
+ #: includes/admin/wcj-modules-cats.php:134
435
+ msgid "Shipping & Orders"
436
+ msgstr ""
437
+
438
+ #: includes/admin/wcj-modules-cats.php:135
439
+ msgid ""
440
+ "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
441
+ "Methods and more."
442
+ msgstr ""
443
+
444
+ #: includes/admin/wcj-modules-cats.php:162
445
+ msgid "PDF Invoicing & Packing Slips"
446
+ msgstr ""
447
+
448
+ #: includes/admin/wcj-modules-cats.php:163
449
+ msgid "PDF Documents"
450
+ msgstr ""
451
+
452
+ #: includes/admin/wcj-modules-cats.php:179
453
+ msgid "Emails & Misc."
454
+ msgstr ""
455
+
456
+ #: includes/admin/wcj-modules-cats.php:180
457
+ msgid "Emails, Reports, Export, Admin Tools, General Options and more."
458
+ msgstr ""
459
+
460
+ #: includes/class-wcj-add-to-cart-button-visibility.php:26
461
+ msgid "Add to Cart Button Visibility"
462
+ msgstr ""
463
+
464
+ #: includes/class-wcj-add-to-cart-button-visibility.php:27
465
+ msgid "Enable/disable Add to Cart button globally or on per product basis."
466
+ msgstr ""
467
+
468
+ #: includes/class-wcj-add-to-cart-button-visibility.php:29
469
+ #, php-format
470
+ msgid ""
471
+ "If you need to enable/disable Add to Cart button for some <strong>user "
472
+ "roles</strong> only, we suggest using this module in conjunction with "
473
+ "Booster's %s module."
474
+ msgstr ""
475
+
476
+ #: includes/class-wcj-add-to-cart-button-visibility.php:31
477
+ #: includes/class-wcj-modules-by-user-roles.php:25
478
+ msgid "Modules By User Roles"
479
+ msgstr ""
480
+
481
+ #: includes/class-wcj-add-to-cart.php:23
482
+ msgid "Add to Cart Button Labels"
483
+ msgstr ""
484
+
485
+ #: includes/class-wcj-add-to-cart.php:24
486
+ msgid ""
487
+ "Change text for Add to Cart button by product type, by product category or "
488
+ "for individual products."
489
+ msgstr ""
490
+
491
+ #: includes/class-wcj-address-formats.php:24
492
+ msgid "Address Formats"
493
+ msgstr ""
494
+
495
+ #: includes/class-wcj-address-formats.php:25
496
+ msgid ""
497
+ "Set address format in orders on per country basis. Force base country "
498
+ "display."
499
+ msgstr ""
500
+
501
+ #: includes/class-wcj-admin-bar.php:30
502
+ msgid "Admin Bar"
503
+ msgstr ""
504
+
505
+ #: includes/class-wcj-admin-bar.php:31
506
+ msgid "WooCommerce admin bar."
507
+ msgstr ""
508
+
509
+ #: includes/class-wcj-admin-bar.php:215
510
+ msgid ""
511
+ "This dashboard lets you check statuses and short descriptions of all "
512
+ "available Booster for WooCommerce tools. Tools can be enabled through "
513
+ "WooCommerce > Settings > Booster."
514
+ msgstr ""
515
+
516
+ #: includes/class-wcj-admin-bar.php:245 includes/class-wcj-admin-bar.php:288
517
+ #: includes/class-wcj-admin-bar.php:632
518
+ #: includes/classes/class-wcj-module.php:554
519
+ #: includes/settings/wcj-settings-wpml.php:82
520
+ msgid "Tools"
521
+ msgstr ""
522
+
523
+ #: includes/class-wcj-admin-bar.php:253
524
+ msgid "Booster: Active"
525
+ msgstr ""
526
+
527
+ #: includes/class-wcj-admin-bar.php:256
528
+ msgid "Booster - Active"
529
+ msgstr ""
530
+
531
+ #: includes/class-wcj-admin-bar.php:279
532
+ msgid "Booster - Settings"
533
+ msgstr ""
534
+
535
+ #: includes/class-wcj-admin-bar.php:283
536
+ msgid "Modules"
537
+ msgstr ""
538
+
539
+ #: includes/class-wcj-admin-bar.php:307
540
+ msgid "Sales by date"
541
+ msgstr ""
542
+
543
+ #: includes/class-wcj-admin-bar.php:308
544
+ msgid "Sales by product"
545
+ msgstr ""
546
+
547
+ #: includes/class-wcj-admin-bar.php:309
548
+ msgid "Sales by category"
549
+ msgstr ""
550
+
551
+ #: includes/class-wcj-admin-bar.php:310
552
+ msgid "Coupons by date"
553
+ msgstr ""
554
+
555
+ #: includes/class-wcj-admin-bar.php:318 includes/class-wcj-track-users.php:34
556
+ #: includes/functions/wcj-functions-reports.php:62
557
+ msgid "Last 7 days"
558
+ msgstr ""
559
+
560
+ #: includes/class-wcj-admin-bar.php:322
561
+ #: includes/functions/wcj-functions-reports.php:57
562
+ msgid "This month"
563
+ msgstr ""
564
+
565
+ #: includes/class-wcj-admin-bar.php:326
566
+ #: includes/functions/wcj-functions-reports.php:52
567
+ msgid "Last month"
568
+ msgstr ""
569
+
570
+ #: includes/class-wcj-admin-bar.php:330
571
+ #: includes/functions/wcj-functions-reports.php:47
572
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:125
573
+ msgid "Year"
574
+ msgstr ""
575
+
576
+ #: includes/class-wcj-admin-bar.php:387
577
+ msgid "WooCommerce settings"
578
+ msgstr ""
579
+
580
+ #: includes/class-wcj-admin-bar.php:391 includes/class-wcj-admin-bar.php:395
581
+ #: includes/class-wcj-admin-bar.php:413 includes/class-wcj-my-account.php:34
582
+ #: includes/class-wcj-my-account.php:42 includes/class-wcj-orders.php:26
583
+ #: includes/reports/wcj-class-reports-sales-gateways.php:153
584
+ #: includes/settings/wcj-settings-reports.php:21
585
+ #: includes/settings/wcj-settings-reports.php:59
586
+ #: includes/settings/wcj-settings-reports.php:100
587
+ #: includes/settings/wcj-settings-reports.php:120
588
+ msgid "Orders"
589
+ msgstr ""
590
+
591
+ #: includes/class-wcj-admin-bar.php:399
592
+ msgid "Add order"
593
+ msgstr ""
594
+
595
+ #: includes/class-wcj-admin-bar.php:403 includes/class-wcj-admin-bar.php:418
596
+ #: includes/settings/wcj-settings-reports.php:135
597
+ #: includes/settings/wcj-settings-reports.php:141
598
+ msgid "Customers"
599
+ msgstr ""
600
+
601
+ #: includes/class-wcj-admin-bar.php:409 includes/class-wcj-reports.php:33
602
+ msgid "Reports"
603
+ msgstr ""
604
+
605
+ #: includes/class-wcj-admin-bar.php:422
606
+ msgid "Customers vs. guests"
607
+ msgstr ""
608
+
609
+ #: includes/class-wcj-admin-bar.php:426
610
+ msgid "Customer list"
611
+ msgstr ""
612
+
613
+ #: includes/class-wcj-admin-bar.php:432 includes/class-wcj-stock.php:27
614
+ #: includes/reports/wcj-class-reports-stock.php:272
615
+ #: includes/settings/wcj-settings-reports.php:156
616
+ #: includes/settings/wcj-settings-reports.php:162
617
+ #: includes/settings/wcj-settings-reports.php:168
618
+ msgid "Stock"
619
+ msgstr ""
620
+
621
+ #: includes/class-wcj-admin-bar.php:436
622
+ msgid "Low in stock"
623
+ msgstr ""
624
+
625
+ #: includes/class-wcj-admin-bar.php:440
626
+ #: includes/settings/wcj-settings-offer-price.php:49
627
+ #: includes/settings/wcj-settings-stock.php:101
628
+ #: includes/shortcodes/class-wcj-shortcodes-products.php:565
629
+ msgid "Out of stock"
630
+ msgstr ""
631
+
632
+ #: includes/class-wcj-admin-bar.php:444
633
+ msgid "Most Stocked"
634
+ msgstr ""
635
+
636
+ #: includes/class-wcj-admin-bar.php:450
637
+ #: includes/class-wcj-eu-vat-number.php:229
638
+ msgid "Taxes"
639
+ msgstr ""
640
+
641
+ #: includes/class-wcj-admin-bar.php:454
642
+ msgid "Taxes by code"
643
+ msgstr ""
644
+
645
+ #: includes/class-wcj-admin-bar.php:458
646
+ msgid "Taxes by date"
647
+ msgstr ""
648
+
649
+ #: includes/class-wcj-admin-bar.php:474
650
+ msgid "Add product"
651
+ msgstr ""
652
+
653
+ #: includes/class-wcj-admin-bar.php:478
654
+ #: includes/class-wcj-product-bulk-price-converter.php:149
655
+ #: includes/class-wcj-sku.php:538
656
+ #: includes/export/class-wcj-fields-helper.php:318
657
+ #: includes/settings/wcj-settings-product-by-user.php:19
658
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:182
659
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:403
660
+ msgid "Categories"
661
+ msgstr ""
662
+
663
+ #: includes/class-wcj-admin-bar.php:483
664
+ #: includes/export/class-wcj-fields-helper.php:319
665
+ #: includes/settings/wcj-settings-product-by-user.php:20
666
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:183
667
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:408
668
+ msgid "Tags"
669
+ msgstr ""
670
+
671
+ #: includes/class-wcj-admin-bar.php:488
672
+ msgid "Attributes"
673
+ msgstr ""
674
+
675
+ #: includes/class-wcj-admin-bar.php:494 includes/class-wcj-admin-bar.php:498
676
+ msgid "Coupons"
677
+ msgstr ""
678
+
679
+ #: includes/class-wcj-admin-bar.php:502
680
+ msgid "Add coupon"
681
+ msgstr ""
682
+
683
+ #: includes/class-wcj-admin-bar.php:512 includes/class-wcj-admin-bar.php:520
684
+ #: includes/class-wcj-general.php:24 includes/class-wcj-pdf-invoicing.php:24
685
+ #: includes/settings/wcj-settings-related-products.php:38
686
+ msgid "General"
687
+ msgstr ""
688
+
689
+ #: includes/class-wcj-admin-bar.php:524
690
+ #: includes/settings/wcj-settings-eu-vat-number.php:170
691
+ #: includes/settings/wcj-settings-product-msrp.php:25
692
+ msgid "Display"
693
+ msgstr ""
694
+
695
+ #: includes/class-wcj-admin-bar.php:528
696
+ msgid "Inventory"
697
+ msgstr ""
698
+
699
+ #: includes/class-wcj-admin-bar.php:532
700
+ msgid "Downloadable products"
701
+ msgstr ""
702
+
703
+ #: includes/class-wcj-admin-bar.php:538
704
+ msgid "Tax"
705
+ msgstr ""
706
+
707
+ #: includes/class-wcj-admin-bar.php:542
708
+ msgid "Tax options"
709
+ msgstr ""
710
+
711
+ #: includes/class-wcj-admin-bar.php:546
712
+ msgid "Standard rates"
713
+ msgstr ""
714
+
715
+ #: includes/class-wcj-admin-bar.php:552
716
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:193
717
+ #: includes/settings/wcj-settings-checkout-custom-info.php:57
718
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:115
719
+ #: includes/settings/wcj-settings-price-by-user-role.php:46
720
+ msgid "Shipping"
721
+ msgstr ""
722
+
723
+ #: includes/class-wcj-admin-bar.php:556
724
+ msgid "Shipping zones"
725
+ msgstr ""
726
+
727
+ #: includes/class-wcj-admin-bar.php:560
728
+ msgid "Shipping options"
729
+ msgstr ""
730
+
731
+ #: includes/class-wcj-admin-bar.php:564
732
+ msgid "Shipping classes"
733
+ msgstr ""
734
+
735
+ #: includes/class-wcj-admin-bar.php:570
736
+ msgid "Checkout"
737
+ msgstr ""
738
+
739
+ #: includes/class-wcj-admin-bar.php:574
740
+ msgid "Checkout options"
741
+ msgstr ""
742
+
743
+ #: includes/class-wcj-admin-bar.php:578
744
+ msgid "BACS"
745
+ msgstr ""
746
+
747
+ #: includes/class-wcj-admin-bar.php:582
748
+ msgid "Check payments"
749
+ msgstr ""
750
+
751
+ #: includes/class-wcj-admin-bar.php:586
752
+ msgid "Cash on delivery"
753
+ msgstr ""
754
+
755
+ #: includes/class-wcj-admin-bar.php:590
756
+ msgid "PayPal"
757
+ msgstr ""
758
+
759
+ #: includes/class-wcj-admin-bar.php:596
760
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:195
761
+ msgid "Account"
762
+ msgstr ""
763
+
764
+ #: includes/class-wcj-admin-bar.php:600
765
+ msgid "Emails"
766
+ msgstr ""
767
+
768
+ #: includes/class-wcj-admin-bar.php:604
769
+ msgid "API"
770
+ msgstr ""
771
+
772
+ #: includes/class-wcj-admin-bar.php:612
773
+ msgid "Keys/Apps"
774
+ msgstr ""
775
+
776
+ #: includes/class-wcj-admin-bar.php:616
777
+ msgid "Webhooks"
778
+ msgstr ""
779
+
780
+ #: includes/class-wcj-admin-bar.php:624 includes/class-wcj-admin-bar.php:628
781
+ msgid "System status"
782
+ msgstr ""
783
+
784
+ #: includes/class-wcj-admin-bar.php:636
785
+ msgid "Logs"
786
+ msgstr ""
787
+
788
+ #: includes/class-wcj-admin-bar.php:642
789
+ msgid "Extensions"
790
+ msgstr ""
791
+
792
+ #: includes/class-wcj-admin-orders-list.php:25
793
+ msgid "Admin Orders List"
794
+ msgstr ""
795
+
796
+ #: includes/class-wcj-admin-orders-list.php:26
797
+ msgid ""
798
+ "Customize admin orders list: add custom columns; add multiple status "
799
+ "filtering."
800
+ msgstr ""
801
+
802
+ #: includes/class-wcj-admin-orders-list.php:208
803
+ msgid "Not Completed"
804
+ msgstr ""
805
+
806
+ #: includes/class-wcj-admin-orders-list.php:243
807
+ msgid "Trash"
808
+ msgstr ""
809
+
810
+ #: includes/class-wcj-admin-orders-list.php:326
811
+ #: includes/class-wcj-product-by-country.php:194
812
+ msgid "All countries"
813
+ msgstr ""
814
+
815
+ #: includes/class-wcj-admin-orders-list.php:335
816
+ msgid "All currencies"
817
+ msgstr ""
818
+
819
+ #: includes/class-wcj-admin-orders-list.php:375
820
+ #: includes/export/class-wcj-fields-helper.php:44
821
+ #: includes/export/class-wcj-fields-helper.php:129
822
+ #: includes/export/class-wcj-fields-helper.php:214
823
+ #: includes/settings/wcj-settings-admin-orders-list.php:27
824
+ msgid "Billing Country"
825
+ msgstr ""
826
+
827
+ #: includes/class-wcj-admin-orders-list.php:378
828
+ #: includes/settings/wcj-settings-admin-orders-list.php:34
829
+ msgid "Currency Code"
830
+ msgstr ""
831
+
832
+ #: includes/class-wcj-admin-products-list.php:25
833
+ msgid "Admin Products List"
834
+ msgstr ""
835
+
836
+ #: includes/class-wcj-admin-products-list.php:26
837
+ msgid "Customize admin products list."
838
+ msgstr ""
839
+
840
+ #: includes/class-wcj-admin-tools.php:24
841
+ msgid "Admin Tools"
842
+ msgstr ""
843
+
844
+ #: includes/class-wcj-admin-tools.php:25
845
+ msgid "Booster for WooCommerce general back-end tools."
846
+ msgstr ""
847
+
848
+ #: includes/class-wcj-admin-tools.php:31
849
+ msgid "Products Attributes"
850
+ msgstr ""
851
+
852
+ #: includes/class-wcj-admin-tools.php:32
853
+ msgid "All Products and All Attributes."
854
+ msgstr ""
855
+
856
+ #: includes/class-wcj-admin-tools.php:126
857
+ #: includes/settings/wcj-settings-export.php:157
858
+ #: includes/settings/wcj-settings-export.php:236
859
+ msgid "Product Meta"
860
+ msgstr ""
861
+
862
+ #: includes/class-wcj-admin-tools.php:143
863
+ #: includes/settings/wcj-settings-export.php:86
864
+ #: includes/settings/wcj-settings-export.php:154
865
+ msgid "Order Meta"
866
+ msgstr ""
867
+
868
+ #: includes/class-wcj-admin-tools.php:177
869
+ msgid "Order Items Meta"
870
+ msgstr ""
871
+
872
+ #: includes/class-wcj-admin-tools.php:179
873
+ msgid "Item Key"
874
+ msgstr ""
875
+
876
+ #: includes/class-wcj-admin-tools.php:179
877
+ msgid "Item Meta Key"
878
+ msgstr ""
879
+
880
+ #: includes/class-wcj-admin-tools.php:179
881
+ msgid "Item Meta Value"
882
+ msgstr ""
883
+
884
+ #: includes/class-wcj-admin-tools.php:214
885
+ #: includes/class-wcj-admin-tools.php:256
886
+ #: includes/class-wcj-admin-tools.php:265
887
+ #: includes/class-wcj-product-bulk-meta-editor.php:339
888
+ #: includes/class-wcj-product-bulk-price-converter.php:148
889
+ #: includes/class-wcj-sku.php:537
890
+ #: includes/reports/wcj-class-reports-sales.php:197
891
+ #: includes/reports/wcj-class-reports-stock.php:269
892
+ msgid "Product"
893
+ msgstr ""
894
+
895
+ #: includes/class-wcj-admin-tools.php:215
896
+ #: includes/class-wcj-admin-tools.php:257
897
+ #: includes/class-wcj-admin-tools.php:266
898
+ #: includes/reports/wcj-class-reports-stock.php:270
899
+ msgid "Category"
900
+ msgstr ""
901
+
902
+ #: includes/class-wcj-admin-tools.php:282
903
+ msgid "Total Products:"
904
+ msgstr ""
905
+
906
+ #: includes/class-wcj-breadcrumbs.php:28
907
+ msgid "Breadcrumbs"
908
+ msgstr ""
909
+
910
+ #: includes/class-wcj-breadcrumbs.php:29
911
+ msgid "Customize WooCommerce breadcrumbs."
912
+ msgstr ""
913
+
914
+ #: includes/class-wcj-call-for-price.php:25
915
+ msgid "Call for Price"
916
+ msgstr ""
917
+
918
+ #: includes/class-wcj-call-for-price.php:26
919
+ msgid "Create any custom price label for all products with empty price."
920
+ msgstr ""
921
+
922
+ #: includes/class-wcj-cart-customization.php:25
923
+ msgid "Cart Customization"
924
+ msgstr ""
925
+
926
+ #: includes/class-wcj-cart-customization.php:26
927
+ msgid ""
928
+ "Customize WooCommerce cart - hide coupon field; item remove link; change "
929
+ "empty cart \"Return to shop\" button text."
930
+ msgstr ""
931
+
932
+ #: includes/class-wcj-cart-customization.php:62
933
+ #: includes/class-wcj-cart-customization.php:100
934
+ #: includes/settings/wcj-settings-cart-customization.php:52
935
+ #: includes/templates/cart-empty.php:33
936
+ msgid "Return to shop"
937
+ msgstr ""
938
+
939
+ #: includes/class-wcj-cart.php:23
940
+ msgid "Cart Custom Info"
941
+ msgstr ""
942
+
943
+ #: includes/class-wcj-cart.php:24
944
+ msgid "Add custom info to the cart page."
945
+ msgstr ""
946
+
947
+ #: includes/class-wcj-checkout-core-fields.php:25
948
+ msgid "Checkout Core Fields"
949
+ msgstr ""
950
+
951
+ #: includes/class-wcj-checkout-core-fields.php:26
952
+ msgid ""
953
+ "Customize core checkout fields. Disable/enable fields, set required, change "
954
+ "labels and/or placeholders etc."
955
+ msgstr ""
956
+
957
+ #: includes/class-wcj-checkout-custom-fields.php:24
958
+ msgid "Checkout Custom Fields"
959
+ msgstr ""
960
+
961
+ #: includes/class-wcj-checkout-custom-fields.php:25
962
+ msgid "Add custom fields to the checkout page."
963
+ msgstr ""
964
+
965
+ #: includes/class-wcj-checkout-custom-info.php:24
966
+ #: includes/class-wcj-cross-sells.php:31
967
+ msgid "Checkout Custom Info"
968
+ msgstr ""
969
+
970
+ #: includes/class-wcj-checkout-custom-info.php:25
971
+ msgid "Add custom info to the checkout page."
972
+ msgstr ""
973
+
974
+ #: includes/class-wcj-checkout-customization.php:25
975
+ msgid "Checkout Customization"
976
+ msgstr ""
977
+
978
+ #: includes/class-wcj-checkout-customization.php:26
979
+ msgid ""
980
+ "Customize WooCommerce checkout - restrict countries by customer's IP; hide "
981
+ "\"Order Again\" button; disable selected fields on checkout for logged users "
982
+ "and more."
983
+ msgstr ""
984
+
985
+ #: includes/class-wcj-checkout-customization.php:200
986
+ #: includes/settings/wcj-settings-checkout-customization.php:220
987
+ msgid "Returning customer?"
988
+ msgstr ""
989
+
990
+ #: includes/class-wcj-checkout-customization.php:215
991
+ #: includes/settings/wcj-settings-checkout-customization.php:198
992
+ msgid "Thank you. Your order has been received."
993
+ msgstr ""
994
+
995
+ #: includes/class-wcj-checkout-customization.php:240
996
+ #: includes/class-wcj-checkout-customization.php:270
997
+ #: includes/settings/wcj-settings-checkout-customization.php:155
998
+ msgid "This field can not be changed"
999
+ msgstr ""
1000
+
1001
+ #: includes/class-wcj-checkout-fees.php:26
1002
+ msgid "Checkout Fees"
1003
+ msgstr ""
1004
+
1005
+ #: includes/class-wcj-checkout-fees.php:27
1006
+ msgid "Add fees to WooCommerce cart & checkout."
1007
+ msgstr ""
1008
+
1009
+ #: includes/class-wcj-checkout-fees.php:231
1010
+ #: includes/settings/wcj-settings-checkout-fees.php:41
1011
+ #: includes/settings/wcj-settings-checkout-fees.php:62
1012
+ msgid "Fee"
1013
+ msgstr ""
1014
+
1015
+ #: includes/class-wcj-checkout-files-upload.php:26
1016
+ msgid "Checkout Files Upload"
1017
+ msgstr ""
1018
+
1019
+ #: includes/class-wcj-checkout-files-upload.php:27
1020
+ msgid "Let customers upload files on (or after) the checkout."
1021
+ msgstr ""
1022
+
1023
+ #: includes/class-wcj-checkout-files-upload.php:69
1024
+ #: includes/class-wcj-checkout-files-upload.php:73
1025
+ #: includes/settings/wcj-settings-checkout-files-upload.php:362
1026
+ #: includes/settings/wcj-settings-checkout-files-upload.php:403
1027
+ #, php-format
1028
+ msgid "File: %s"
1029
+ msgstr ""
1030
+
1031
+ #: includes/class-wcj-checkout-files-upload.php:180
1032
+ #: includes/settings/wcj-settings-checkout-files-upload.php:116
1033
+ msgid "File is required!"
1034
+ msgstr ""
1035
+
1036
+ #: includes/class-wcj-checkout-files-upload.php:194
1037
+ #: includes/class-wcj-checkout-files-upload.php:200
1038
+ #: includes/class-wcj-checkout-files-upload.php:416
1039
+ #: includes/class-wcj-checkout-files-upload.php:423
1040
+ #: includes/settings/wcj-settings-checkout-files-upload.php:110
1041
+ #, php-format
1042
+ msgid "Wrong file type: \"%s\"!"
1043
+ msgstr ""
1044
+
1045
+ #: includes/class-wcj-checkout-files-upload.php:218
1046
+ msgid "Uploaded Files"
1047
+ msgstr ""
1048
+
1049
+ #: includes/class-wcj-checkout-files-upload.php:250
1050
+ msgid "No files uploaded."
1051
+ msgstr ""
1052
+
1053
+ #: includes/class-wcj-checkout-files-upload.php:253
1054
+ msgid "Delete all files"
1055
+ msgstr ""
1056
+
1057
+ #: includes/class-wcj-checkout-files-upload.php:332
1058
+ #: includes/settings/wcj-settings-checkout-files-upload.php:240
1059
+ msgid "Files were successfully removed."
1060
+ msgstr ""
1061
+
1062
+ #: includes/class-wcj-checkout-files-upload.php:359
1063
+ msgid "Booster for WooCommerce: Checkout Files Upload: %action%"
1064
+ msgstr ""
1065
+
1066
+ #: includes/class-wcj-checkout-files-upload.php:360
1067
+ msgid "Order ID: %order_id%; File name: %file_name%"
1068
+ msgstr ""
1069
+
1070
+ #: includes/class-wcj-checkout-files-upload.php:373
1071
+ #: includes/class-wcj-checkout-files-upload.php:396
1072
+ #: includes/settings/wcj-settings-checkout-files-upload.php:136
1073
+ #, php-format
1074
+ msgid "File \"%s\" was successfully removed."
1075
+ msgstr ""
1076
+
1077
+ #: includes/class-wcj-checkout-files-upload.php:380
1078
+ msgid "File Removed"
1079
+ msgstr ""
1080
+
1081
+ #: includes/class-wcj-checkout-files-upload.php:434
1082
+ #: includes/settings/wcj-settings-checkout-files-upload.php:123
1083
+ #, php-format
1084
+ msgid "File \"%s\" was successfully uploaded."
1085
+ msgstr ""
1086
+
1087
+ #: includes/class-wcj-checkout-files-upload.php:444
1088
+ msgid "File Uploaded"
1089
+ msgstr ""
1090
+
1091
+ #: includes/class-wcj-checkout-files-upload.php:462
1092
+ #: includes/settings/wcj-settings-checkout-files-upload.php:129
1093
+ msgid "Please select file to upload!"
1094
+ msgstr ""
1095
+
1096
+ #: includes/class-wcj-checkout-files-upload.php:736
1097
+ #: includes/class-wcj-checkout-files-upload.php:737
1098
+ #: includes/settings/wcj-settings-checkout-files-upload.php:97
1099
+ msgid "Upload"
1100
+ msgstr ""
1101
+
1102
+ #: includes/class-wcj-checkout-files-upload.php:746
1103
+ #: includes/class-wcj-checkout-files-upload.php:747
1104
+ #: includes/settings/wcj-settings-checkout-files-upload.php:103
1105
+ #: includes/settings/wcj-settings-price-by-user-role.php:78
1106
+ #: includes/settings/wcj-settings-price-by-user-role.php:86
1107
+ #: includes/settings/wcj-settings-product-open-pricing.php:166
1108
+ #: includes/settings/wcj-settings-sku.php:275
1109
+ #: includes/settings/wcj-settings-sorting.php:144
1110
+ #: includes/settings/wcj-settings-stock.php:206
1111
+ msgid "Remove"
1112
+ msgstr ""
1113
+
1114
+ #: includes/class-wcj-coupon-by-user-role.php:27
1115
+ msgid "Coupon by User Role"
1116
+ msgstr ""
1117
+
1118
+ #: includes/class-wcj-coupon-by-user-role.php:28
1119
+ msgid "Coupons by user roles."
1120
+ msgstr ""
1121
+
1122
+ #: includes/class-wcj-coupon-by-user-role.php:79
1123
+ #: includes/class-wcj-coupon-by-user-role.php:80
1124
+ #: includes/class-wcj-coupon-by-user-role.php:94
1125
+ #: includes/class-wcj-coupon-by-user-role.php:95
1126
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:68
1127
+ msgid "Coupon is not valid for your user role."
1128
+ msgstr ""
1129
+
1130
+ #: includes/class-wcj-coupon-code-generator.php:28
1131
+ msgid "Coupon Code Generator"
1132
+ msgstr ""
1133
+
1134
+ #: includes/class-wcj-coupon-code-generator.php:29
1135
+ msgid "Coupon code generator."
1136
+ msgstr ""
1137
+
1138
+ #: includes/class-wcj-cross-sells.php:26
1139
+ msgid "Cross-sells"
1140
+ msgstr ""
1141
+
1142
+ #: includes/class-wcj-cross-sells.php:27
1143
+ msgid ""
1144
+ "Cross-sells are products which you promote in the cart, based on the current "
1145
+ "product."
1146
+ msgstr ""
1147
+
1148
+ #: includes/class-wcj-cross-sells.php:28
1149
+ #, php-format
1150
+ msgid ""
1151
+ "You can also use %s shortcode to display cross-sells anywhere on your site, "
1152
+ "for example on checkout page with %s module."
1153
+ msgstr ""
1154
+
1155
+ #: includes/class-wcj-cross-sells.php:32
1156
+ msgid "Customize cross-sells products display."
1157
+ msgstr ""
1158
+
1159
+ #: includes/class-wcj-crowdfunding.php:25
1160
+ msgid "Crowdfunding"
1161
+ msgstr ""
1162
+
1163
+ #: includes/class-wcj-crowdfunding.php:26
1164
+ msgid "Add crowdfunding products to WooCommerce."
1165
+ msgstr ""
1166
+
1167
+ #: includes/class-wcj-crowdfunding.php:28
1168
+ msgid "When enabled, module will add Crowdfunding metabox to product edit."
1169
+ msgstr ""
1170
+
1171
+ #: includes/class-wcj-crowdfunding.php:30
1172
+ #, php-format
1173
+ msgid ""
1174
+ "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
1175
+ "\">Booster's crowdfunding shortcodes</a>."
1176
+ msgstr ""
1177
+
1178
+ #: includes/class-wcj-crowdfunding.php:34
1179
+ #, php-format
1180
+ msgid ""
1181
+ "Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
1182
+ "a>."
1183
+ msgstr ""
1184
+
1185
+ #: includes/class-wcj-crowdfunding.php:38
1186
+ #, php-format
1187
+ msgid ""
1188
+ "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
1189
+ "module</a>."
1190
+ msgstr ""
1191
+
1192
+ #: includes/class-wcj-currency-exchange-rates.php:24
1193
+ msgid "Currency Exchange Rates"
1194
+ msgstr ""
1195
+
1196
+ #: includes/class-wcj-currency-exchange-rates.php:25
1197
+ msgid "Automatic currency exchange rates for WooCommerce."
1198
+ msgstr ""
1199
+
1200
+ #: includes/class-wcj-currency-exchange-rates.php:181
1201
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:46
1202
+ msgid "Exchange Rates Server"
1203
+ msgstr ""
1204
+
1205
+ #: includes/class-wcj-currency-exchange-rates.php:186
1206
+ #, php-format
1207
+ msgid "Use default: %s"
1208
+ msgstr ""
1209
+
1210
+ #: includes/class-wcj-currency-exchange-rates.php:209
1211
+ msgid "Exchange Rates Offset (Percent)"
1212
+ msgstr ""
1213
+
1214
+ #: includes/class-wcj-currency-exchange-rates.php:214
1215
+ #, php-format
1216
+ msgid "Use default: %s%%"
1217
+ msgstr ""
1218
+
1219
+ #: includes/class-wcj-currency-exchange-rates.php:215
1220
+ msgid "Custom offset"
1221
+ msgstr ""
1222
+
1223
+ #: includes/class-wcj-currency-exchange-rates.php:219
1224
+ msgid "Custom offset (Percent)"
1225
+ msgstr ""
1226
+
1227
+ #: includes/class-wcj-currency-exchange-rates.php:220
1228
+ msgid "Used when \"Custom offset\" option is selected above."
1229
+ msgstr ""
1230
+
1231
+ #: includes/class-wcj-currency-external-products.php:23
1232
+ msgid "Currency for External Products"
1233
+ msgstr ""
1234
+
1235
+ #: includes/class-wcj-currency-external-products.php:24
1236
+ msgid "Set different currency for external products."
1237
+ msgstr ""
1238
+
1239
+ #: includes/class-wcj-currency-per-product.php:26
1240
+ #: includes/settings/wcj-settings-currency-per-product.php:64
1241
+ msgid "Currency per Product"
1242
+ msgstr ""
1243
+
1244
+ #: includes/class-wcj-currency-per-product.php:27
1245
+ msgid "Display prices for products in different currencies."
1246
+ msgstr ""
1247
+
1248
+ #: includes/class-wcj-currency-per-product.php:172
1249
+ #: includes/settings/wcj-settings-currency-per-product.php:43
1250
+ msgid ""
1251
+ "Only one product can be added to the cart. Clear the cart or finish the "
1252
+ "order, before adding another product to the cart."
1253
+ msgstr ""
1254
+
1255
+ #: includes/class-wcj-currency-per-product.php:187
1256
+ #: includes/settings/wcj-settings-currency-per-product.php:50
1257
+ msgid ""
1258
+ "Only products with same currency can be added to the cart. Clear the cart or "
1259
+ "finish the order, before adding products with another currency to the cart."
1260
+ msgstr ""
1261
+
1262
+ #: includes/class-wcj-currency-per-product.php:226
1263
+ #, php-format
1264
+ msgctxt "Price range: from-to"
1265
+ msgid "%1$s&ndash;%2$s"
1266
+ msgstr ""
1267
+
1268
+ #: includes/class-wcj-currency.php:27
1269
+ msgid "Currencies"
1270
+ msgstr ""
1271
+
1272
+ #: includes/class-wcj-currency.php:28
1273
+ msgid ""
1274
+ "Add all world currencies and cryptocurrencies to your store; change currency "
1275
+ "symbol."
1276
+ msgstr ""
1277
+
1278
+ #: includes/class-wcj-currency.php:67
1279
+ msgid "Auroracoin"
1280
+ msgstr ""
1281
+
1282
+ #: includes/class-wcj-currency.php:68
1283
+ msgid "BitConnect"
1284
+ msgstr ""
1285
+
1286
+ #: includes/class-wcj-currency.php:69
1287
+ msgid "Bitcoin Cash"
1288
+ msgstr ""
1289
+
1290
+ #: includes/class-wcj-currency.php:70
1291
+ msgid "Coinye"
1292
+ msgstr ""
1293
+
1294
+ #: includes/class-wcj-currency.php:71
1295
+ msgid "DigitalNote"
1296
+ msgstr ""
1297
+
1298
+ #: includes/class-wcj-currency.php:72
1299
+ msgid "Emercoin"
1300
+ msgstr ""
1301
+
1302
+ #: includes/class-wcj-currency.php:73
1303
+ msgid "Ethereum Classic"
1304
+ msgstr ""
1305
+
1306
+ #: includes/class-wcj-currency.php:74
1307
+ msgid "Ethereum"
1308
+ msgstr ""
1309
+
1310
+ #: includes/class-wcj-currency.php:75
1311
+ msgid "Freemasoncoin"
1312
+ msgstr ""
1313
+
1314
+ #: includes/class-wcj-currency.php:76
1315
+ msgid "Gridcoin"
1316
+ msgstr ""
1317
+
1318
+ #: includes/class-wcj-currency.php:77
1319
+ msgid "IOTA"
1320
+ msgstr ""
1321
+
1322
+ #: includes/class-wcj-currency.php:78
1323
+ msgid "Litecoin"
1324
+ msgstr ""
1325
+
1326
+ #: includes/class-wcj-currency.php:79
1327
+ msgid "MazaCoin"
1328
+ msgstr ""
1329
+
1330
+ #: includes/class-wcj-currency.php:80
1331
+ msgid "Monero"
1332
+ msgstr ""
1333
+
1334
+ #: includes/class-wcj-currency.php:81
1335
+ msgid "Namecoin"
1336
+ msgstr ""
1337
+
1338
+ #: includes/class-wcj-currency.php:82
1339
+ msgid "NEM"
1340
+ msgstr ""
1341
+
1342
+ #: includes/class-wcj-currency.php:83
1343
+ msgid "Nxt"
1344
+ msgstr ""
1345
+
1346
+ #: includes/class-wcj-currency.php:84
1347
+ msgid "Omni"
1348
+ msgstr ""
1349
+
1350
+ #: includes/class-wcj-currency.php:85
1351
+ msgid "Peercoin"
1352
+ msgstr ""
1353
+
1354
+ #: includes/class-wcj-currency.php:86
1355
+ msgid "PotCoin"
1356
+ msgstr ""
1357
+
1358
+ #: includes/class-wcj-currency.php:87
1359
+ msgid "Primecoin"
1360
+ msgstr ""
1361
+
1362
+ #: includes/class-wcj-currency.php:88
1363
+ msgid "Ripple"
1364
+ msgstr ""
1365
+
1366
+ #: includes/class-wcj-currency.php:89
1367
+ msgid "SixEleven"
1368
+ msgstr ""
1369
+
1370
+ #: includes/class-wcj-currency.php:90
1371
+ msgid "Synereo AMP"
1372
+ msgstr ""
1373
+
1374
+ #: includes/class-wcj-currency.php:91
1375
+ msgid "Titcoin"
1376
+ msgstr ""
1377
+
1378
+ #: includes/class-wcj-currency.php:92
1379
+ msgid "Ubiq"
1380
+ msgstr ""
1381
+
1382
+ #: includes/class-wcj-currency.php:93
1383
+ msgid "Vertcoin"
1384
+ msgstr ""
1385
+
1386
+ #: includes/class-wcj-currency.php:94
1387
+ msgid "Zcash"
1388
+ msgstr ""
1389
+
1390
+ #: includes/class-wcj-currency.php:96
1391
+ msgid "Special Drawing Rights"
1392
+ msgstr ""
1393
+
1394
+ #: includes/class-wcj-currency.php:98
1395
+ msgid "myCred"
1396
+ msgstr ""
1397
+
1398
+ #: includes/class-wcj-currency.php:174
1399
+ msgid "Booster: Currency Symbol"
1400
+ msgstr ""
1401
+
1402
+ #: includes/class-wcj-currency.php:175
1403
+ msgid "This sets the currency symbol."
1404
+ msgstr ""
1405
+
1406
+ #: includes/class-wcj-custom-css.php:28
1407
+ msgid "Custom CSS"
1408
+ msgstr ""
1409
+
1410
+ #: includes/class-wcj-custom-css.php:29
1411
+ msgid "Separate custom CSS for front and back end. Per product CSS."
1412
+ msgstr ""
1413
+
1414
+ #: includes/class-wcj-custom-js.php:27
1415
+ msgid "Custom JS"
1416
+ msgstr ""
1417
+
1418
+ #: includes/class-wcj-custom-js.php:28
1419
+ msgid "Separate custom JS for front and back end."
1420
+ msgstr ""
1421
+
1422
+ #: includes/class-wcj-custom-php.php:27
1423
+ #: includes/settings/wcj-settings-custom-php.php:21
1424
+ msgid "Custom PHP"
1425
+ msgstr ""
1426
+
1427
+ #: includes/class-wcj-custom-php.php:28
1428
+ msgid "Custom PHP tool."
1429
+ msgstr ""
1430
+
1431
+ #: includes/class-wcj-custom-php.php:30
1432
+ #, php-format
1433
+ msgid ""
1434
+ "Please note that if you enable the module and enter non-valid PHP code here, "
1435
+ "your site will become unavailable. To fix this you will have to add %s "
1436
+ "attribute to the URL (you must be logged as shop manager or admin (for this "
1437
+ "reason custom PHP code is not executed on %s page))."
1438
+ msgstr ""
1439
+
1440
+ #: includes/class-wcj-custom-php.php:32
1441
+ #: includes/settings/wcj-settings-multicurrency.php:169
1442
+ #: includes/settings/wcj-settings-offer-price.php:84
1443
+ #, php-format
1444
+ msgid "E.g.: %s"
1445
+ msgstr ""
1446
+
1447
+ #: includes/class-wcj-debug-tools.php:25
1448
+ msgid "Debug Tools"
1449
+ msgstr ""
1450
+
1451
+ #: includes/class-wcj-debug-tools.php:26
1452
+ msgid "Booster for WooCommerce debug and log tools."
1453
+ msgstr ""
1454
+
1455
+ #: includes/class-wcj-debug-tools.php:32
1456
+ #: includes/settings/wcj-settings-debug-tools.php:19
1457
+ msgid "Log"
1458
+ msgstr ""
1459
+
1460
+ #: includes/class-wcj-debug-tools.php:33
1461
+ msgid "Log."
1462
+ msgstr ""
1463
+
1464
+ #: includes/class-wcj-debug-tools.php:55
1465
+ msgid "Delete Log"
1466
+ msgstr ""
1467
+
1468
+ #: includes/class-wcj-debug-tools.php:58
1469
+ #, php-format
1470
+ msgid "Now: %s"
1471
+ msgstr ""
1472
+
1473
+ #: includes/class-wcj-debug-tools.php:62
1474
+ msgid "Log is empty."
1475
+ msgstr ""
1476
+
1477
+ #: includes/class-wcj-debug-tools.php:93
1478
+ msgid "NOT DEFINED"
1479
+ msgstr ""
1480
+
1481
+ #: includes/class-wcj-email-options.php:26
1482
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
1483
+ #: includes/settings/wcj-settings-emails-verification.php:115
1484
+ #: includes/settings/wcj-settings-offer-price.php:309
1485
+ msgid "Email Options"
1486
+ msgstr ""
1487
+
1488
+ #: includes/class-wcj-email-options.php:27
1489
+ msgid ""
1490
+ "WooCommerce email options. E.g.: add another email recipient(s) to all "
1491
+ "WooCommerce emails."
1492
+ msgstr ""
1493
+
1494
+ #: includes/class-wcj-email-options.php:110
1495
+ msgid "Booster: Email Forwarding Options"
1496
+ msgstr ""
1497
+
1498
+ #: includes/class-wcj-email-options.php:111
1499
+ msgid "Email Forwarding Options"
1500
+ msgstr ""
1501
+
1502
+ #: includes/class-wcj-email-options.php:113
1503
+ msgid ""
1504
+ "This section lets you add another email recipient(s) to all WooCommerce "
1505
+ "emails. Leave blank to disable."
1506
+ msgstr ""
1507
+
1508
+ #: includes/class-wcj-email-options.php:117
1509
+ msgid "Cc Email"
1510
+ msgstr ""
1511
+
1512
+ #: includes/class-wcj-email-options.php:118
1513
+ msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
1514
+ msgstr ""
1515
+
1516
+ #: includes/class-wcj-email-options.php:124
1517
+ msgid "Bcc Email"
1518
+ msgstr ""
1519
+
1520
+ #: includes/class-wcj-email-options.php:125
1521
+ msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
1522
+ msgstr ""
1523
+
1524
+ #: includes/class-wcj-email-options.php:131
1525
+ msgid "Orders Emails: Enable for Statuses"
1526
+ msgstr ""
1527
+
1528
+ #: includes/class-wcj-email-options.php:133
1529
+ msgid ""
1530
+ "If you want to forward emails for certain orders only, set order statuses "
1531
+ "here. Leave blank to send for all orders statuses."
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wcj-emails-verification.php:25
1535
+ msgid "Email Verification"
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wcj-emails-verification.php:26
1539
+ msgid "Add WooCommerce email verification."
1540
+ msgstr ""
1541
+
1542
+ #: includes/class-wcj-emails-verification.php:70
1543
+ msgid "Verified"
1544
+ msgstr ""
1545
+
1546
+ #: includes/class-wcj-emails-verification.php:83
1547
+ msgid "Email verified"
1548
+ msgstr ""
1549
+
1550
+ #: includes/class-wcj-emails-verification.php:84
1551
+ msgid "Email not verified"
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wcj-emails-verification.php:122
1555
+ #: includes/settings/wcj-settings-emails-verification.php:78
1556
+ msgid ""
1557
+ "Your account has to be activated before you can login. You can resend email "
1558
+ "with verification link by clicking <a href=\"%resend_verification_url%"
1559
+ "\">here</a>."
1560
+ msgstr ""
1561
+
1562
+ #: includes/class-wcj-emails-verification.php:142
1563
+ #: includes/class-wcj-emails-verification.php:144
1564
+ #: includes/settings/wcj-settings-emails-verification.php:133
1565
+ msgid ""
1566
+ "Please click the following link to verify your email:<br><br><a href="
1567
+ "\"%verification_url%\">%verification_url%</a>"
1568
+ msgstr ""
1569
+
1570
+ #: includes/class-wcj-emails-verification.php:147
1571
+ #: includes/class-wcj-emails-verification.php:149
1572
+ #: includes/settings/wcj-settings-emails-verification.php:123
1573
+ msgid "Please activate your account"
1574
+ msgstr ""
1575
+
1576
+ #: includes/class-wcj-emails-verification.php:154
1577
+ #: includes/settings/wcj-settings-emails-verification.php:155
1578
+ msgid "Activate your account"
1579
+ msgstr ""
1580
+
1581
+ #: includes/class-wcj-emails-verification.php:171
1582
+ #: includes/settings/wcj-settings-emails-verification.php:70
1583
+ msgid "<strong>Success:</strong> Your account has been activated!"
1584
+ msgstr ""
1585
+
1586
+ #: includes/class-wcj-emails-verification.php:188
1587
+ #: includes/settings/wcj-settings-emails-verification.php:86
1588
+ msgid ""
1589
+ "<strong>Error:</strong> Activation failed, please contact our administrator. "
1590
+ "You can resend email with verification link by clicking <a href="
1591
+ "\"%resend_verification_url%\">here</a>."
1592
+ msgstr ""
1593
+
1594
+ #: includes/class-wcj-emails-verification.php:195
1595
+ #: includes/settings/wcj-settings-emails-verification.php:93
1596
+ msgid ""
1597
+ "<strong>Error:</strong> Activation failed, please contact our administrator."
1598
+ msgstr ""
1599
+
1600
+ #: includes/class-wcj-emails-verification.php:200
1601
+ #: includes/settings/wcj-settings-emails-verification.php:100
1602
+ msgid ""
1603
+ "Thank you for your registration. Your account has to be activated before you "
1604
+ "can login. Please check your email."
1605
+ msgstr ""
1606
+
1607
+ #: includes/class-wcj-emails-verification.php:204
1608
+ #: includes/settings/wcj-settings-emails-verification.php:107
1609
+ msgid ""
1610
+ "<strong>Success:</strong> Your activation email has been resent. Please "
1611
+ "check your email."
1612
+ msgstr ""
1613
+
1614
+ #: includes/class-wcj-emails.php:23
1615
+ #: includes/settings/wcj-settings-emails.php:14
1616
+ msgid "Custom Emails"
1617
+ msgstr ""
1618
+
1619
+ #: includes/class-wcj-emails.php:24
1620
+ msgid "Add custom emails to WooCommerce."
1621
+ msgstr ""
1622
+
1623
+ #: includes/class-wcj-emails.php:57
1624
+ #, php-format
1625
+ msgid "Booster: Emails: %s manually sent."
1626
+ msgstr ""
1627
+
1628
+ #: includes/class-wcj-emails.php:58 includes/class-wcj-emails.php:76
1629
+ #: includes/emails/class-wc-email-wcj-custom.php:31
1630
+ #: includes/settings/wcj-settings-emails.php:37
1631
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:36
1632
+ #: includes/settings/wcj-settings-shipping.php:63
1633
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:37
1634
+ msgid "Custom"
1635
+ msgstr ""
1636
+
1637
+ #: includes/class-wcj-emails.php:75
1638
+ #, php-format
1639
+ msgid "Booster: Send Email: %s"
1640
+ msgstr ""
1641
+
1642
+ #: includes/class-wcj-empty-cart-button.php:25
1643
+ #: includes/shortcodes/class-wcj-shortcodes-general.php:517
1644
+ msgid "Empty Cart Button"
1645
+ msgstr ""
1646
+
1647
+ #: includes/class-wcj-empty-cart-button.php:26
1648
+ msgid ""
1649
+ "Add (and customize) \"Empty Cart\" button to the cart and checkout pages."
1650
+ msgstr ""
1651
+
1652
+ #: includes/class-wcj-eu-vat-number.php:25
1653
+ #: includes/class-wcj-eu-vat-number.php:303
1654
+ #: includes/settings/wcj-settings-eu-vat-number.php:22
1655
+ #: includes/settings/wcj-settings-eu-vat-number.php:29
1656
+ msgid "EU VAT Number"
1657
+ msgstr ""
1658
+
1659
+ #: includes/class-wcj-eu-vat-number.php:26
1660
+ msgid ""
1661
+ "Collect and validate EU VAT numbers on the checkout. Automatically disable "
1662
+ "VAT for valid numbers. Add all EU countries VAT standard rates to "
1663
+ "WooCommerce."
1664
+ msgstr ""
1665
+
1666
+ #: includes/class-wcj-eu-vat-number.php:32
1667
+ msgid "EU Countries VAT Rates"
1668
+ msgstr ""
1669
+
1670
+ #: includes/class-wcj-eu-vat-number.php:33
1671
+ msgid "Add all EU countries VAT standard rates to WooCommerce."
1672
+ msgstr ""
1673
+
1674
+ #: includes/class-wcj-eu-vat-number.php:217
1675
+ msgid "Customer IP"
1676
+ msgstr ""
1677
+
1678
+ #: includes/class-wcj-eu-vat-number.php:221 includes/class-wcj-orders.php:153
1679
+ #: includes/settings/wcj-settings-orders.php:126
1680
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:27
1681
+ msgid "Country by IP"
1682
+ msgstr ""
1683
+
1684
+ #: includes/class-wcj-eu-vat-number.php:225
1685
+ msgid "Customer EU VAT Number"
1686
+ msgstr ""
1687
+
1688
+ #: includes/class-wcj-eu-vat-number.php:235
1689
+ msgid "Validate VAT and remove taxes"
1690
+ msgstr ""
1691
+
1692
+ #: includes/class-wcj-eu-vat-number.php:377
1693
+ #: includes/settings/wcj-settings-eu-vat-number.php:189
1694
+ msgid "Validating VAT. Please wait..."
1695
+ msgstr ""
1696
+
1697
+ #: includes/class-wcj-eu-vat-number.php:378
1698
+ #: includes/settings/wcj-settings-eu-vat-number.php:196
1699
+ msgid "VAT is valid."
1700
+ msgstr ""
1701
+
1702
+ #: includes/class-wcj-eu-vat-number.php:379
1703
+ #: includes/settings/wcj-settings-eu-vat-number.php:203
1704
+ msgid "VAT is not valid."
1705
+ msgstr ""
1706
+
1707
+ #: includes/class-wcj-eu-vat-number.php:380
1708
+ #: includes/settings/wcj-settings-eu-vat-number.php:211
1709
+ msgid "Validation failed. Please try again."
1710
+ msgstr ""
1711
+
1712
+ #: includes/class-wcj-eu-vat-number.php:505
1713
+ #: includes/settings/wcj-settings-eu-vat-number.php:83
1714
+ msgid "<strong>EU VAT Number</strong> is not valid."
1715
+ msgstr ""
1716
+
1717
+ #: includes/class-wcj-export-import.php:27
1718
+ msgid "WooCommerce export tools."
1719
+ msgstr ""
1720
+
1721
+ #: includes/class-wcj-export-import.php:33
1722
+ msgid "Export Customers"
1723
+ msgstr ""
1724
+
1725
+ #: includes/class-wcj-export-import.php:34
1726
+ msgid "Export Customers."
1727
+ msgstr ""
1728
+
1729
+ #: includes/class-wcj-export-import.php:37
1730
+ msgid "Export Customers from Orders"
1731
+ msgstr ""
1732
+
1733
+ #: includes/class-wcj-export-import.php:38
1734
+ msgid "Export Customers (extracted from orders)."
1735
+ msgstr ""
1736
+
1737
+ #: includes/class-wcj-export-import.php:39
1738
+ msgid "Customers are identified by billing email."
1739
+ msgstr ""
1740
+
1741
+ #: includes/class-wcj-export-import.php:42
1742
+ msgid "Export Orders"
1743
+ msgstr ""
1744
+
1745
+ #: includes/class-wcj-export-import.php:43
1746
+ msgid "Export Orders."
1747
+ msgstr ""
1748
+
1749
+ #: includes/class-wcj-export-import.php:46
1750
+ msgid "Export Orders Items"
1751
+ msgstr ""
1752
+
1753
+ #: includes/class-wcj-export-import.php:47
1754
+ msgid "Export Orders Items."
1755
+ msgstr ""
1756
+
1757
+ #: includes/class-wcj-export-import.php:50
1758
+ msgid "Export Products"
1759
+ msgstr ""
1760
+
1761
+ #: includes/class-wcj-export-import.php:51
1762
+ msgid "Export Products."
1763
+ msgstr ""
1764
+
1765
+ #: includes/class-wcj-export-import.php:192
1766
+ #: includes/class-wcj-export-import.php:198
1767
+ msgid "Filter by Billing Country"
1768
+ msgstr ""
1769
+
1770
+ #: includes/class-wcj-export-import.php:193
1771
+ msgid "Filter by Product Title"
1772
+ msgstr ""
1773
+
1774
+ #: includes/class-wcj-export-import.php:212
1775
+ #: includes/reports/wcj-class-reports-sales-daily.php:189
1776
+ #: includes/reports/wcj-class-reports-sales-gateways.php:137
1777
+ #: includes/settings/wcj-settings-orders.php:45
1778
+ msgid "Filter"
1779
+ msgstr ""
1780
+
1781
+ #: includes/class-wcj-export-import.php:232
1782
+ #: includes/class-wcj-track-users.php:36
1783
+ msgid "All time"
1784
+ msgstr ""
1785
+
1786
+ #: includes/class-wcj-export-import.php:246
1787
+ msgid "Custom:"
1788
+ msgstr ""
1789
+
1790
+ #: includes/class-wcj-export-import.php:251
1791
+ msgid "Go"
1792
+ msgstr ""
1793
+
1794
+ #: includes/class-wcj-export-import.php:271
1795
+ msgid "Download CSV"
1796
+ msgstr ""
1797
+
1798
+ #: includes/class-wcj-export-import.php:274
1799
+ msgid "Download XML"
1800
+ msgstr ""
1801
+
1802
+ #: includes/class-wcj-export-import.php:276
1803
+ msgid "Filter by All Fields"
1804
+ msgstr ""
1805
+
1806
+ #: includes/class-wcj-free-price.php:26
1807
+ msgid "Free Price Labels"
1808
+ msgstr ""
1809
+
1810
+ #: includes/class-wcj-free-price.php:27
1811
+ msgid "Set free price labels."
1812
+ msgstr ""
1813
+
1814
+ #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
1815
+ #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
1816
+ #: includes/settings/wcj-settings-free-price.php:27
1817
+ msgid "Free!"
1818
+ msgstr ""
1819
+
1820
+ #: includes/class-wcj-general.php:25
1821
+ msgid "Booster for WooCommerce general front-end tools."
1822
+ msgstr ""
1823
+
1824
+ #: includes/class-wcj-general.php:31
1825
+ msgid "Add/Manage Custom Roles"
1826
+ msgstr ""
1827
+
1828
+ #: includes/class-wcj-general.php:32
1829
+ msgid "Custom Roles"
1830
+ msgstr ""
1831
+
1832
+ #: includes/class-wcj-general.php:33
1833
+ msgid "Manage Custom Roles."
1834
+ msgstr ""
1835
+
1836
+ #: includes/class-wcj-general.php:46
1837
+ #, php-format
1838
+ msgid "Current PHP memory limit: %s."
1839
+ msgstr ""
1840
+
1841
+ #: includes/class-wcj-general.php:52
1842
+ #, php-format
1843
+ msgid "Current PHP time limit: %s seconds."
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-wcj-general.php:123
1847
+ msgid "Booster User Role"
1848
+ msgstr ""
1849
+
1850
+ #: includes/class-wcj-general.php:184
1851
+ msgid "All fields are required!"
1852
+ msgstr ""
1853
+
1854
+ #: includes/class-wcj-general.php:188
1855
+ msgid "Role ID must not be numbers only!"
1856
+ msgstr ""
1857
+
1858
+ #: includes/class-wcj-general.php:197
1859
+ msgid "Role successfully added!"
1860
+ msgstr ""
1861
+
1862
+ #: includes/class-wcj-general.php:199
1863
+ msgid "Role already exists!"
1864
+ msgstr ""
1865
+
1866
+ #: includes/class-wcj-general.php:212
1867
+ #, php-format
1868
+ msgid "Role %s successfully deleted!"
1869
+ msgstr ""
1870
+
1871
+ #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:233
1872
+ #: includes/class-wcj-sku.php:536
1873
+ #: includes/reports/wcj-class-reports-sales.php:196
1874
+ #: includes/settings/wcj-settings-cross-sells.php:43
1875
+ #: includes/settings/wcj-settings-order-numbers.php:150
1876
+ #: includes/settings/wcj-settings-product-by-user.php:161
1877
+ #: includes/settings/wcj-settings-products-xml.php:221
1878
+ #: includes/settings/wcj-settings-related-products.php:30
1879
+ #: includes/settings/wcj-settings-upsells.php:43
1880
+ msgid "ID"
1881
+ msgstr ""
1882
+
1883
+ #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:234
1884
+ #: includes/class-wcj-offer-price.php:167
1885
+ #: includes/export/class-wcj-fields-helper.php:282
1886
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
1887
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
1888
+ msgid "Name"
1889
+ msgstr ""
1890
+
1891
+ #: includes/class-wcj-general.php:218 includes/class-wcj-general.php:235
1892
+ msgid "Capabilities"
1893
+ msgstr ""
1894
+
1895
+ #: includes/class-wcj-general.php:218
1896
+ #: includes/class-wcj-product-by-user.php:197
1897
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:107
1898
+ #: includes/tools/class-wcj-order-statuses-tool.php:145
1899
+ #: includes/tools/class-wcj-order-statuses-tool.php:221
1900
+ msgid "Actions"
1901
+ msgstr ""
1902
+
1903
+ #: includes/class-wcj-general.php:225
1904
+ #: includes/class-wcj-payment-gateways.php:117
1905
+ #: includes/class-wcj-product-bulk-meta-editor.php:367
1906
+ #: includes/class-wcj-product-by-user.php:206
1907
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:140
1908
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:315
1909
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
1910
+ #: includes/tools/class-wcj-order-statuses-tool.php:161
1911
+ msgid "Delete"
1912
+ msgstr ""
1913
+
1914
+ #: includes/class-wcj-general.php:229
1915
+ msgid "Existing Roles"
1916
+ msgstr ""
1917
+
1918
+ #: includes/class-wcj-general.php:236
1919
+ msgid "Add New Role"
1920
+ msgstr ""
1921
+
1922
+ #: includes/class-wcj-general.php:239
1923
+ #: includes/class-wcj-shipping-by-products.php:206
1924
+ #: includes/settings/wcj-settings-admin-orders-list.php:134
1925
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:22
1926
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:29
1927
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:55
1928
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:217
1929
+ #: includes/settings/wcj-settings-email-options.php:20
1930
+ #: includes/settings/wcj-settings-eu-vat-number.php:181
1931
+ #: includes/settings/wcj-settings-eu-vat-number.php:217
1932
+ #: includes/settings/wcj-settings-export.php:27
1933
+ #: includes/settings/wcj-settings-order-custom-statuses.php:29
1934
+ #: includes/settings/wcj-settings-order-custom-statuses.php:37
1935
+ #: includes/settings/wcj-settings-order-custom-statuses.php:70
1936
+ #: includes/settings/wcj-settings-order-custom-statuses.php:97
1937
+ #: includes/settings/wcj-settings-order-min-amount.php:53
1938
+ #: includes/settings/wcj-settings-orders.php:132
1939
+ #: includes/settings/wcj-settings-orders.php:159
1940
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:132
1941
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:190
1942
+ #: includes/settings/wcj-settings-product-by-condition.php:107
1943
+ #: includes/settings/wcj-settings-product-by-user.php:114
1944
+ #: includes/settings/wcj-settings-product-open-pricing.php:123
1945
+ #: includes/settings/wcj-settings-product-tabs.php:247
1946
+ #: includes/settings/wcj-settings-purchase-data.php:145
1947
+ #: includes/settings/wcj-settings-purchase-data.php:154
1948
+ #: includes/settings/wcj-settings-purchase-data.php:173
1949
+ #: includes/settings/wcj-settings-purchase-data.php:180
1950
+ #: includes/settings/wcj-settings-sku.php:240
1951
+ #: includes/settings/wcj-settings-sku.php:267
1952
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
1953
+ #: includes/tools/class-wcj-order-statuses-tool.php:236
1954
+ msgid "Add"
1955
+ msgstr ""
1956
+
1957
+ #: includes/class-wcj-global-discount.php:28
1958
+ msgid "Add global discount to all products."
1959
+ msgstr ""
1960
+
1961
+ #: includes/class-wcj-left-to-free-shipping.php:25
1962
+ msgid "Left to Free Shipping"
1963
+ msgstr ""
1964
+
1965
+ #: includes/class-wcj-left-to-free-shipping.php:26
1966
+ msgid "Display \"left to free shipping\" info."
1967
+ msgstr ""
1968
+
1969
+ #: includes/class-wcj-left-to-free-shipping.php:62
1970
+ #: includes/class-wcj-left-to-free-shipping.php:72
1971
+ #: includes/class-wcj-left-to-free-shipping.php:82
1972
+ #: includes/functions/wcj-functions-shipping.php:285
1973
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:37
1974
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:68
1975
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:102
1976
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:61
1977
+ #, php-format
1978
+ msgid "%left_to_free% left to free shipping"
1979
+ msgstr ""
1980
+
1981
+ #: includes/class-wcj-max-products-per-user.php:30
1982
+ msgid "Maximum Products per User"
1983
+ msgstr ""
1984
+
1985
+ #: includes/class-wcj-max-products-per-user.php:31
1986
+ msgid "Limit number of items your (logged) customers can buy."
1987
+ msgstr ""
1988
+
1989
+ #: includes/class-wcj-max-products-per-user.php:32
1990
+ msgid ""
1991
+ "Please note, that there is no maximum quantity set for not-logged (i.e. "
1992
+ "guest) users. Product quantities are updated, when order status is changed "
1993
+ "to status listed in module's \"Order Status\" option."
1994
+ msgstr ""
1995
+
1996
+ #: includes/class-wcj-max-products-per-user.php:113
1997
+ #: includes/class-wcj-max-products-per-user.php:332
1998
+ #: includes/settings/wcj-settings-max-products-per-user.php:74
1999
+ msgid ""
2000
+ "You can only buy maximum %max_qty% pcs. of %product_title% (you already "
2001
+ "bought %qty_already_bought% pcs.)."
2002
+ msgstr ""
2003
+
2004
+ #: includes/class-wcj-max-products-per-user.php:131
2005
+ msgid "Data re-calculated."
2006
+ msgstr ""
2007
+
2008
+ #: includes/class-wcj-max-products-per-user.php:132
2009
+ #, php-format
2010
+ msgid "%s order(s) processed."
2011
+ msgstr ""
2012
+
2013
+ #: includes/class-wcj-max-products-per-user.php:184
2014
+ msgid "Maximum Products per User: Sales Data"
2015
+ msgstr ""
2016
+
2017
+ #: includes/class-wcj-max-products-per-user.php:201
2018
+ msgid "User ID"
2019
+ msgstr ""
2020
+
2021
+ #: includes/class-wcj-max-products-per-user.php:201
2022
+ msgid "User Name"
2023
+ msgstr ""
2024
+
2025
+ #: includes/class-wcj-max-products-per-user.php:201
2026
+ msgid "Qty Bought"
2027
+ msgstr ""
2028
+
2029
+ #: includes/class-wcj-max-products-per-user.php:204
2030
+ #: includes/functions/wcj-functions-users.php:159
2031
+ #: includes/functions/wcj-functions-users.php:182
2032
+ msgid "Guest"
2033
+ msgstr ""
2034
+
2035
+ #: includes/class-wcj-max-products-per-user.php:213
2036
+ msgid "No data yet."
2037
+ msgstr ""
2038
+
2039
+ #: includes/class-wcj-mini-cart.php:24
2040
+ msgid "Mini Cart Custom Info"
2041
+ msgstr ""
2042
+
2043
+ #: includes/class-wcj-mini-cart.php:25
2044
+ msgid "Add custom info to the mini cart widget."
2045
+ msgstr ""
2046
+
2047
+ #: includes/class-wcj-modules-by-user-roles.php:26
2048
+ msgid "Enable/disable Booster for WooCommerce modules by user roles."
2049
+ msgstr ""
2050
+
2051
+ #: includes/class-wcj-more-button-labels.php:24
2052
+ msgid "More Button Labels"
2053
+ msgstr ""
2054
+
2055
+ #: includes/class-wcj-more-button-labels.php:25
2056
+ msgid "Set \"Place order\" button label."
2057
+ msgstr ""
2058
+
2059
+ #: includes/class-wcj-multicurrency-product-base-price.php:25
2060
+ #: includes/settings/wcj-settings-product-addons.php:243
2061
+ msgid "Multicurrency Product Base Price"
2062
+ msgstr ""
2063
+
2064
+ #: includes/class-wcj-multicurrency-product-base-price.php:26
2065
+ msgid "Enter prices for products in different currencies."
2066
+ msgstr ""
2067
+
2068
+ #: includes/class-wcj-multicurrency.php:30
2069
+ #: includes/settings/wcj-settings-product-addons.php:244
2070
+ msgid "Multicurrency (Currency Switcher)"
2071
+ msgstr ""
2072
+
2073
+ #: includes/class-wcj-multicurrency.php:31
2074
+ msgid "Add multiple currencies (currency switcher) to WooCommerce."
2075
+ msgstr ""
2076
+
2077
+ #: includes/class-wcj-multicurrency.php:33
2078
+ #, php-format
2079
+ msgid ""
2080
+ "After setting currencies in the Currencies Options section below, you can "
2081
+ "add switcher to the frontend with: %s"
2082
+ msgstr ""
2083
+
2084
+ #: includes/class-wcj-multicurrency.php:35
2085
+ #, php-format
2086
+ msgid "<strong>Widget:</strong> \"%s\""
2087
+ msgstr ""
2088
+
2089
+ #: includes/class-wcj-multicurrency.php:36
2090
+ #: includes/widgets/class-wcj-widget-multicurrency.php:27
2091
+ msgid "Booster - Multicurrency Switcher"
2092
+ msgstr ""
2093
+
2094
+ #: includes/class-wcj-multicurrency.php:38
2095
+ #, php-format
2096
+ msgid "<strong>Shortcodes:</strong> %s"
2097
+ msgstr ""
2098
+
2099
+ #: includes/class-wcj-multicurrency.php:41
2100
+ #, php-format
2101
+ msgid "<strong>PHP code:</strong> by using %s function, e.g.: %s"
2102
+ msgstr ""
2103
+
2104
+ #: includes/class-wcj-my-account.php:27
2105
+ msgid "My Account"
2106
+ msgstr ""
2107
+
2108
+ #: includes/class-wcj-my-account.php:28
2109
+ msgid "WooCommerce \"My Account\" page customization."
2110
+ msgstr ""
2111
+
2112
+ #: includes/class-wcj-my-account.php:35 includes/class-wcj-my-account.php:44
2113
+ msgid "Downloads"
2114
+ msgstr ""
2115
+
2116
+ #: includes/class-wcj-my-account.php:36 includes/class-wcj-my-account.php:46
2117
+ msgid "Addresses"
2118
+ msgstr ""
2119
+
2120
+ #: includes/class-wcj-my-account.php:37 includes/class-wcj-my-account.php:47
2121
+ #: includes/settings/wcj-settings-orders.php:112
2122
+ msgid "Payment methods"
2123
+ msgstr ""
2124
+
2125
+ #: includes/class-wcj-my-account.php:38 includes/class-wcj-my-account.php:45
2126
+ msgid "Account details"
2127
+ msgstr ""
2128
+
2129
+ #: includes/class-wcj-my-account.php:39 includes/class-wcj-my-account.php:49
2130
+ msgid "Logout"
2131
+ msgstr ""
2132
+
2133
+ #: includes/class-wcj-my-account.php:43
2134
+ #: includes/settings/wcj-settings-my-account.php:302
2135
+ msgid "View order"
2136
+ msgstr ""
2137
+
2138
+ #: includes/class-wcj-my-account.php:45
2139
+ msgid "Edit account"
2140
+ msgstr ""
2141
+
2142
+ #: includes/class-wcj-my-account.php:48
2143
+ msgid "Lost password"
2144
+ msgstr ""
2145
+
2146
+ #: includes/class-wcj-my-account.php:227
2147
+ #, php-format
2148
+ msgid "Hello %1$s (not %1$s? <a href=\"%2$s\">Log out</a>)"
2149
+ msgstr ""
2150
+
2151
+ #: includes/class-wcj-my-account.php:237
2152
+ #, php-format
2153
+ msgid ""
2154
+ "From your account dashboard you can view your <a href=\"%1$s\">recent "
2155
+ "orders</a>, manage your <a href=\"%2$s\">shipping and billing addresses</a>, "
2156
+ "and <a href=\"%3$s\">edit your password and account details</a>."
2157
+ msgstr ""
2158
+
2159
+ #: includes/class-wcj-my-account.php:343
2160
+ msgid "User role"
2161
+ msgstr ""
2162
+
2163
+ #: includes/class-wcj-my-account.php:423
2164
+ #: includes/class-wcj-product-bulk-meta-editor.php:279
2165
+ #: includes/class-wcj-product-by-user.php:206
2166
+ #: includes/class-wcj-purchase-data.php:94
2167
+ #: includes/class-wcj-track-users.php:334
2168
+ #: includes/classes/class-wcj-module.php:690
2169
+ #: includes/functions/wcj-functions-general.php:189
2170
+ #: includes/functions/wcj-functions-html.php:117
2171
+ #: includes/reports/wcj-class-reports-monthly-sales.php:351
2172
+ #: includes/settings/wcj-settings-empty-cart.php:85
2173
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
2174
+ #: includes/tools/class-wcj-order-statuses-tool.php:161
2175
+ #: includes/tools/class-wcj-order-statuses-tool.php:269
2176
+ msgid "Are you sure?"
2177
+ msgstr ""
2178
+
2179
+ #: includes/class-wcj-offer-price.php:36
2180
+ msgid "Offer Your Price"
2181
+ msgstr ""
2182
+
2183
+ #: includes/class-wcj-offer-price.php:37
2184
+ msgid "Let your customers to suggest their price for products."
2185
+ msgstr ""
2186
+
2187
+ #: includes/class-wcj-offer-price.php:148
2188
+ msgid "Booster: Offer Price History"
2189
+ msgstr ""
2190
+
2191
+ #: includes/class-wcj-offer-price.php:164
2192
+ #: includes/functions/wcj-functions-reports.php:21
2193
+ #: includes/settings/wcj-settings-cross-sells.php:44
2194
+ #: includes/settings/wcj-settings-order-numbers.php:151
2195
+ #: includes/settings/wcj-settings-products-xml.php:220
2196
+ #: includes/settings/wcj-settings-related-products.php:23
2197
+ #: includes/settings/wcj-settings-upsells.php:44
2198
+ msgid "Date"
2199
+ msgstr ""
2200
+
2201
+ #: includes/class-wcj-offer-price.php:165
2202
+ #: includes/export/class-wcj-fields-helper.php:288
2203
+ #: includes/reports/wcj-class-reports-stock.php:271
2204
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
2205
+ #: includes/settings/wcj-settings-cross-sells.php:47
2206
+ #: includes/settings/wcj-settings-product-add-to-cart.php:302
2207
+ #: includes/settings/wcj-settings-related-products.php:33
2208
+ #: includes/settings/wcj-settings-upsells.php:47
2209
+ msgid "Price"
2210
+ msgstr ""
2211
+
2212
+ #: includes/class-wcj-offer-price.php:166
2213
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:60
2214
+ #: includes/settings/wcj-settings-currency-per-product.php:41
2215
+ #: includes/settings/wcj-settings-currency-per-product.php:48
2216
+ #: includes/settings/wcj-settings-order-quantities.php:231
2217
+ #: includes/settings/wcj-settings-order-quantities.php:258
2218
+ #: includes/settings/wcj-settings-product-by-time.php:69
2219
+ msgid "Message"
2220
+ msgstr ""
2221
+
2222
+ #: includes/class-wcj-offer-price.php:168
2223
+ #: includes/export/class-wcj-fields-helper.php:75
2224
+ #: includes/input-fields/wcj-product-input-fields-options.php:45
2225
+ #: includes/reports/wcj-class-reports-customers.php:93
2226
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:147
2227
+ msgid "Email"
2228
+ msgstr ""
2229
+
2230
+ #: includes/class-wcj-offer-price.php:169
2231
+ #: includes/export/class-wcj-fields-helper.php:74
2232
+ msgid "Customer ID"
2233
+ msgstr ""
2234
+
2235
+ #: includes/class-wcj-offer-price.php:170
2236
+ msgid "User IP"
2237
+ msgstr ""
2238
+
2239
+ #: includes/class-wcj-offer-price.php:171
2240
+ msgid "User Agent"
2241
+ msgstr ""
2242
+
2243
+ #: includes/class-wcj-offer-price.php:172
2244
+ msgid "Sent to"
2245
+ msgstr ""
2246
+
2247
+ #: includes/class-wcj-offer-price.php:184
2248
+ msgid "No price offers yet."
2249
+ msgstr ""
2250
+
2251
+ #: includes/class-wcj-offer-price.php:240
2252
+ #, php-format
2253
+ msgid "Average offer: %s (from %s offer(s))"
2254
+ msgstr ""
2255
+
2256
+ #: includes/class-wcj-offer-price.php:247
2257
+ msgid "Delete history"
2258
+ msgstr ""
2259
+
2260
+ #: includes/class-wcj-offer-price.php:248
2261
+ msgid "Update product after checking the box."
2262
+ msgstr ""
2263
+
2264
+ #: includes/class-wcj-offer-price.php:322
2265
+ #: includes/settings/wcj-settings-offer-price.php:163
2266
+ #, php-format
2267
+ msgid "Your price (%s)"
2268
+ msgstr ""
2269
+
2270
+ #: includes/class-wcj-offer-price.php:328
2271
+ #: includes/settings/wcj-settings-offer-price.php:234
2272
+ #, php-format
2273
+ msgid "Suggest your price for %s"
2274
+ msgstr ""
2275
+
2276
+ #: includes/class-wcj-offer-price.php:383
2277
+ #: includes/settings/wcj-settings-offer-price.php:202
2278
+ msgid "Your email"
2279
+ msgstr ""
2280
+
2281
+ #: includes/class-wcj-offer-price.php:387
2282
+ #: includes/settings/wcj-settings-offer-price.php:210
2283
+ msgid "Your name"
2284
+ msgstr ""
2285
+
2286
+ #: includes/class-wcj-offer-price.php:391
2287
+ #: includes/settings/wcj-settings-offer-price.php:218
2288
+ msgid "Your message"
2289
+ msgstr ""
2290
+
2291
+ #: includes/class-wcj-offer-price.php:395
2292
+ #: includes/settings/wcj-settings-offer-price.php:241
2293
+ msgid "Send"
2294
+ msgstr ""
2295
+
2296
+ #: includes/class-wcj-offer-price.php:397
2297
+ #: includes/settings/wcj-settings-offer-price.php:226
2298
+ msgid "Send a copy to your email"
2299
+ msgstr ""
2300
+
2301
+ #: includes/class-wcj-offer-price.php:464
2302
+ #: includes/settings/wcj-settings-offer-price.php:68
2303
+ msgid "Make an offer"
2304
+ msgstr ""
2305
+
2306
+ #: includes/class-wcj-offer-price.php:522
2307
+ #: includes/settings/wcj-settings-offer-price.php:340
2308
+ #, php-format
2309
+ msgid "Product: %s"
2310
+ msgstr ""
2311
+
2312
+ #: includes/class-wcj-offer-price.php:523
2313
+ #: includes/settings/wcj-settings-offer-price.php:341
2314
+ #, php-format
2315
+ msgid "Offered price: %s"
2316
+ msgstr ""
2317
+
2318
+ #: includes/class-wcj-offer-price.php:524
2319
+ #: includes/settings/wcj-settings-offer-price.php:342
2320
+ #, php-format
2321
+ msgid "From: %s %s"
2322
+ msgstr ""
2323
+
2324
+ #: includes/class-wcj-offer-price.php:525
2325
+ #: includes/settings/wcj-settings-offer-price.php:343
2326
+ #, php-format
2327
+ msgid "Message: %s"
2328
+ msgstr ""
2329
+
2330
+ #: includes/class-wcj-offer-price.php:538
2331
+ #: includes/settings/wcj-settings-offer-price.php:331
2332
+ msgid "Price Offer"
2333
+ msgstr ""
2334
+
2335
+ #: includes/class-wcj-offer-price.php:548
2336
+ #: includes/settings/wcj-settings-offer-price.php:262
2337
+ msgid "Your price offer has been sent."
2338
+ msgstr ""
2339
+
2340
+ #: includes/class-wcj-old-slugs.php:23
2341
+ msgid "Old Slugs"
2342
+ msgstr ""
2343
+
2344
+ #: includes/class-wcj-old-slugs.php:24
2345
+ msgid "Remove old products slugs."
2346
+ msgstr ""
2347
+
2348
+ #: includes/class-wcj-old-slugs.php:30
2349
+ msgid "Remove Old Slugs"
2350
+ msgstr ""
2351
+
2352
+ #: includes/class-wcj-old-slugs.php:31
2353
+ msgid "Tool removes old slugs/permalinks from database."
2354
+ msgstr ""
2355
+
2356
+ #: includes/class-wcj-old-slugs.php:48
2357
+ msgid "Old slug"
2358
+ msgstr ""
2359
+
2360
+ #: includes/class-wcj-old-slugs.php:49
2361
+ msgid "Post title"
2362
+ msgstr ""
2363
+
2364
+ #: includes/class-wcj-old-slugs.php:50
2365
+ msgid "Post id"
2366
+ msgstr ""
2367
+
2368
+ #: includes/class-wcj-old-slugs.php:51
2369
+ msgid "Post type"
2370
+ msgstr ""
2371
+
2372
+ #: includes/class-wcj-old-slugs.php:52
2373
+ msgid "Current slug"
2374
+ msgstr ""
2375
+
2376
+ #: includes/class-wcj-old-slugs.php:85
2377
+ #, php-format
2378
+ msgid ""
2379
+ "Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
2380
+ "deleted."
2381
+ msgstr ""
2382
+
2383
+ #: includes/class-wcj-old-slugs.php:87
2384
+ msgid "Please <a href=\"\">refresh</a> the page."
2385
+ msgstr ""
2386
+
2387
+ #: includes/class-wcj-old-slugs.php:107
2388
+ msgid "Old products slugs found:"
2389
+ msgstr ""
2390
+
2391
+ #: includes/class-wcj-old-slugs.php:110
2392
+ msgid "Remove all old product slugs"
2393
+ msgstr ""
2394
+
2395
+ #: includes/class-wcj-old-slugs.php:113
2396
+ msgid "Old non-products slugs found:"
2397
+ msgstr ""
2398
+
2399
+ #: includes/class-wcj-old-slugs.php:116
2400
+ msgid "Remove all old non-product slugs"
2401
+ msgstr ""
2402
+
2403
+ #: includes/class-wcj-old-slugs.php:130
2404
+ msgid "No old slugs found."
2405
+ msgstr ""
2406
+
2407
+ #: includes/class-wcj-order-custom-statuses.php:26
2408
+ msgid "Order Custom Statuses"
2409
+ msgstr ""
2410
+
2411
+ #: includes/class-wcj-order-custom-statuses.php:27
2412
+ msgid "Custom statuses for WooCommerce orders."
2413
+ msgstr ""
2414
+
2415
+ #: includes/class-wcj-order-custom-statuses.php:33
2416
+ #: includes/settings/wcj-settings-order-custom-statuses.php:14
2417
+ msgid "Custom Statuses"
2418
+ msgstr ""
2419
+
2420
+ #: includes/class-wcj-order-custom-statuses.php:34
2421
+ msgid ""
2422
+ "Tool lets you add, edit or delete any custom status for WooCommerce orders."
2423
+ msgstr ""
2424
+
2425
+ #: includes/class-wcj-order-custom-statuses.php:158
2426
+ #, php-format
2427
+ msgid "Change order status to %s"
2428
+ msgstr ""
2429
+
2430
+ #: includes/class-wcj-order-custom-statuses.php:168
2431
+ msgid "Change status: "
2432
+ msgstr ""
2433
+
2434
+ #: includes/class-wcj-order-custom-statuses.php:208
2435
+ msgid "Processing"
2436
+ msgstr ""
2437
+
2438
+ #: includes/class-wcj-order-custom-statuses.php:218
2439
+ msgid "Complete"
2440
+ msgstr ""
2441
+
2442
+ #: includes/class-wcj-order-custom-statuses.php:323
2443
+ #, php-format
2444
+ msgid " <span class=\"count\">(%s)</span>"
2445
+ msgid_plural " <span class=\"count\">(%s)</span>"
2446
+ msgstr[0] ""
2447
+ msgstr[1] ""
2448
+
2449
+ #: includes/class-wcj-order-custom-statuses.php:397
2450
+ #: includes/class-wcj-order-custom-statuses.php:399
2451
+ msgid "Mark"
2452
+ msgstr ""
2453
+
2454
+ #: includes/class-wcj-order-min-amount.php:26
2455
+ #: includes/settings/wcj-settings-order-min-amount.php:14
2456
+ msgid "Order Minimum Amount"
2457
+ msgstr ""
2458
+
2459
+ #: includes/class-wcj-order-min-amount.php:27
2460
+ msgid "Minimum order amount (optionally by user role)."
2461
+ msgstr ""
2462
+
2463
+ #: includes/class-wcj-order-numbers.php:25
2464
+ #: includes/settings/wcj-settings-order-numbers.php:15
2465
+ msgid "Order Numbers"
2466
+ msgstr ""
2467
+
2468
+ #: includes/class-wcj-order-numbers.php:26
2469
+ msgid ""
2470
+ "Sequential order numbering, custom order number prefix, suffix and number "
2471
+ "width."
2472
+ msgstr ""
2473
+
2474
+ #: includes/class-wcj-order-numbers.php:32
2475
+ msgid "Orders Renumerate"
2476
+ msgstr ""
2477
+
2478
+ #: includes/class-wcj-order-numbers.php:33
2479
+ msgid "Tool renumerates all orders."
2480
+ msgstr ""
2481
+
2482
+ #: includes/class-wcj-order-numbers.php:244
2483
+ msgid "Orders successfully renumerated!"
2484
+ msgstr ""
2485
+
2486
+ #: includes/class-wcj-order-numbers.php:247
2487
+ #, php-format
2488
+ msgid "Sequential number generation is enabled. Next order number will be %s."
2489
+ msgstr ""
2490
+
2491
+ #: includes/class-wcj-order-numbers.php:256
2492
+ #, php-format
2493
+ msgid ""
2494
+ "Press the button below to renumerate all existing orders starting from order "
2495
+ "counter settings in <a href=\"%s\">Order Numbers</a> module."
2496
+ msgstr ""
2497
+
2498
+ #: includes/class-wcj-order-numbers.php:263
2499
+ msgid "Renumerate orders"
2500
+ msgstr ""
2501
+
2502
+ #: includes/class-wcj-order-quantities.php:30
2503
+ msgid "Order Quantities"
2504
+ msgstr ""
2505
+
2506
+ #: includes/class-wcj-order-quantities.php:31
2507
+ msgid ""
2508
+ "Manage product quantities in WooCommerce order: set min, max, step; enable "
2509
+ "decimal quantities etc."
2510
+ msgstr ""
2511
+
2512
+ #: includes/class-wcj-order-quantities.php:260
2513
+ #: includes/settings/wcj-settings-order-quantities.php:260
2514
+ msgid ""
2515
+ "Only one item can be added to the cart. Clear the cart or finish the order, "
2516
+ "before adding another item to the cart."
2517
+ msgstr ""
2518
+
2519
+ #: includes/class-wcj-order-quantities.php:429
2520
+ #: includes/settings/wcj-settings-order-quantities.php:160
2521
+ msgid ""
2522
+ "Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
2523
+ "order quantity is %cart_total_quantity%."
2524
+ msgstr ""
2525
+
2526
+ #: includes/class-wcj-order-quantities.php:437
2527
+ #: includes/settings/wcj-settings-order-quantities.php:102
2528
+ msgid ""
2529
+ "Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
2530
+ "order quantity is %cart_total_quantity%."
2531
+ msgstr ""
2532
+
2533
+ #: includes/class-wcj-order-quantities.php:447
2534
+ #: includes/settings/wcj-settings-order-quantities.php:186
2535
+ msgid ""
2536
+ "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
2537
+ "Your current item quantity is %item_quantity%."
2538
+ msgstr ""
2539
+
2540
+ #: includes/class-wcj-order-quantities.php:457
2541
+ #: includes/settings/wcj-settings-order-quantities.php:128
2542
+ msgid ""
2543
+ "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
2544
+ "Your current item quantity is %item_quantity%."
2545
+ msgstr ""
2546
+
2547
+ #: includes/class-wcj-order-quantities.php:467
2548
+ #: includes/settings/wcj-settings-order-quantities.php:234
2549
+ msgid ""
2550
+ "Required step for %product_title% is %required_step%. Your current item "
2551
+ "quantity is %item_quantity%."
2552
+ msgstr ""
2553
+
2554
+ #: includes/class-wcj-orders.php:27
2555
+ msgid ""
2556
+ "Orders auto-complete; admin order currency; admin order navigation; bulk "
2557
+ "regenerate download permissions for orders."
2558
+ msgstr ""
2559
+
2560
+ #: includes/class-wcj-orders.php:124
2561
+ msgid "Order Navigation"
2562
+ msgstr ""
2563
+
2564
+ #: includes/class-wcj-orders.php:140
2565
+ msgid "Previous order"
2566
+ msgstr ""
2567
+
2568
+ #: includes/class-wcj-orders.php:141
2569
+ msgid "Next order"
2570
+ msgstr ""
2571
+
2572
+ #: includes/class-wcj-orders.php:180
2573
+ msgid "No data."
2574
+ msgstr ""
2575
+
2576
+ #: includes/class-wcj-orders.php:225
2577
+ msgid "Regenerate download permissions"
2578
+ msgstr ""
2579
+
2580
+ #: includes/class-wcj-orders.php:239
2581
+ #, php-format
2582
+ msgid "Download permissions regenerated for %s order."
2583
+ msgid_plural "Download permissions regenerated for %s orders."
2584
+ msgstr[0] ""
2585
+ msgstr[1] ""
2586
+
2587
+ #: includes/class-wcj-payment-gateways-by-country.php:24
2588
+ msgid "Gateways by Country, State or Postcode"
2589
+ msgstr ""
2590
+
2591
+ #: includes/class-wcj-payment-gateways-by-country.php:25
2592
+ msgid ""
2593
+ "Set countries, states or postcodes to include/exclude for payment gateways "
2594
+ "to show up."
2595
+ msgstr ""
2596
+
2597
+ #: includes/class-wcj-payment-gateways-by-currency.php:25
2598
+ msgid "Gateways by Currency"
2599
+ msgstr ""
2600
+
2601
+ #: includes/class-wcj-payment-gateways-by-currency.php:26
2602
+ msgid "Set allowed currencies for payment gateways to show up."
2603
+ msgstr ""
2604
+
2605
+ #: includes/class-wcj-payment-gateways-by-shipping.php:26
2606
+ msgid "Gateways by Shipping"
2607
+ msgstr ""
2608
+
2609
+ #: includes/class-wcj-payment-gateways-by-shipping.php:27
2610
+ msgid "Set \"enable for shipping methods\" for payment gateways."
2611
+ msgstr ""
2612
+
2613
+ #: includes/class-wcj-payment-gateways-by-user-role.php:25
2614
+ msgid "Gateways by User Role"
2615
+ msgstr ""
2616
+
2617
+ #: includes/class-wcj-payment-gateways-by-user-role.php:26
2618
+ msgid "Set user roles to include/exclude for payment gateways to show up."
2619
+ msgstr ""
2620
+
2621
+ #: includes/class-wcj-payment-gateways-currency.php:25
2622
+ msgid "Gateways Currency Converter"
2623
+ msgstr ""
2624
+
2625
+ #: includes/class-wcj-payment-gateways-currency.php:26
2626
+ msgid "Currency converter for payment gateways."
2627
+ msgstr ""
2628
+
2629
+ #: includes/class-wcj-payment-gateways-fees.php:25
2630
+ msgid "Gateways Fees and Discounts"
2631
+ msgstr ""
2632
+
2633
+ #: includes/class-wcj-payment-gateways-fees.php:26
2634
+ msgid "Enable extra fees or discounts for payment gateways."
2635
+ msgstr ""
2636
+
2637
+ #: includes/class-wcj-payment-gateways-icons.php:24
2638
+ msgid "Gateways Icons"
2639
+ msgstr ""
2640
+
2641
+ #: includes/class-wcj-payment-gateways-icons.php:25
2642
+ msgid ""
2643
+ "Change or completely remove icons (images) for any (default or custom) "
2644
+ "payment gateway."
2645
+ msgstr ""
2646
+
2647
+ #: includes/class-wcj-payment-gateways-min-max.php:25
2648
+ msgid "Gateways Min/Max Amounts"
2649
+ msgstr ""
2650
+
2651
+ #: includes/class-wcj-payment-gateways-min-max.php:26
2652
+ msgid "Add min/max amounts for payment gateways to show up."
2653
+ msgstr ""
2654
+
2655
+ #: includes/class-wcj-payment-gateways-min-max.php:51
2656
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
2657
+ msgid "Minimum amount for %gateway_title% is %min_amount%"
2658
+ msgstr ""
2659
+
2660
+ #: includes/class-wcj-payment-gateways-min-max.php:52
2661
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
2662
+ msgid "Maximum amount for %gateway_title% is %max_amount%"
2663
+ msgstr ""
2664
+
2665
+ #: includes/class-wcj-payment-gateways-per-category.php:27
2666
+ msgid ""
2667
+ "Show payment gateway only if there is selected product or product category "
2668
+ "in cart."
2669
+ msgstr ""
2670
+
2671
+ #: includes/class-wcj-payment-gateways.php:23
2672
+ msgid "Custom Gateways"
2673
+ msgstr ""
2674
+
2675
+ #: includes/class-wcj-payment-gateways.php:24
2676
+ msgid "Add multiple custom payment gateways to WooCommerce."
2677
+ msgstr ""
2678
+
2679
+ #: includes/class-wcj-payment-gateways.php:67
2680
+ #, php-format
2681
+ msgid "<strong>%s</strong> is a required field."
2682
+ msgstr ""
2683
+
2684
+ #: includes/class-wcj-payment-gateways.php:91
2685
+ #, php-format
2686
+ msgid "%s Fields"
2687
+ msgstr ""
2688
+
2689
+ #: includes/class-wcj-pdf-invoicing.php:23
2690
+ #: includes/settings/wcj-settings-wpml.php:15
2691
+ msgid "PDF Invoicing"
2692
+ msgstr ""
2693
+
2694
+ #: includes/class-wcj-pdf-invoicing.php:25
2695
+ msgid "Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2696
+ msgstr ""
2697
+
2698
+ #: includes/class-wcj-pdf-invoicing.php:31
2699
+ msgid "Invoices Renumerate"
2700
+ msgstr ""
2701
+
2702
+ #: includes/class-wcj-pdf-invoicing.php:32
2703
+ msgid ""
2704
+ "Tool renumerates all invoices, proforma invoices, credit notes and packing "
2705
+ "slips."
2706
+ msgstr ""
2707
+
2708
+ #: includes/class-wcj-pdf-invoicing.php:35
2709
+ msgid "Invoices Report"
2710
+ msgstr ""
2711
+
2712
+ #: includes/class-wcj-pdf-invoicing.php:36
2713
+ msgid "Invoices Monthly Reports."
2714
+ msgstr ""
2715
+
2716
+ #: includes/class-wcj-pdf-invoicing.php:93
2717
+ msgid "Generate"
2718
+ msgstr ""
2719
+
2720
+ #: includes/class-wcj-pdf-invoicing.php:94
2721
+ msgid "Download (Zip)"
2722
+ msgstr ""
2723
+
2724
+ #: includes/class-wcj-pdf-invoicing.php:95
2725
+ msgid "Merge (Print)"
2726
+ msgstr ""
2727
+
2728
+ #: includes/class-wcj-pdf-invoicing.php:117
2729
+ #, php-format
2730
+ msgid "Document generated."
2731
+ msgid_plural "%s documents generated."
2732
+ msgstr[0] ""
2733
+ msgstr[1] ""
2734
+
2735
+ #: includes/class-wcj-pdf-invoicing.php:124
2736
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:172
2737
+ #, php-format
2738
+ msgid ""
2739
+ "Booster: %s class is not accessible on your server. Please contact your "
2740
+ "hosting provider."
2741
+ msgstr ""
2742
+
2743
+ #: includes/class-wcj-pdf-invoicing.php:130
2744
+ msgid "Booster: ZipArchive error."
2745
+ msgstr ""
2746
+
2747
+ #: includes/class-wcj-pdf-invoicing.php:135
2748
+ msgid "Booster: Merge PDFs: No files."
2749
+ msgstr ""
2750
+
2751
+ #: includes/class-wcj-pdf-invoicing.php:140
2752
+ #, php-format
2753
+ msgid ""
2754
+ "Booster: Merge PDFs: Command requires PHP version 5.3.0 at least. You have "
2755
+ "PHP version %s installed."
2756
+ msgstr ""
2757
+
2758
+ #: includes/class-wcj-pdf-invoicing.php:145
2759
+ #, php-format
2760
+ msgid "Booster: %s."
2761
+ msgstr ""
2762
+
2763
+ #: includes/class-wcj-pdf-invoicing.php:438
2764
+ msgid "You are not allowed to view the invoice."
2765
+ msgstr ""
2766
+
2767
+ #: includes/class-wcj-price-by-country.php:30
2768
+ msgid "Prices and Currencies by Country"
2769
+ msgstr ""
2770
+
2771
+ #: includes/class-wcj-price-by-country.php:31
2772
+ msgid "Change product price and currency automatically by customer's country."
2773
+ msgstr ""
2774
+
2775
+ #: includes/class-wcj-price-by-country.php:99
2776
+ msgid "Price filter widget product prices recalculated."
2777
+ msgstr ""
2778
+
2779
+ #: includes/class-wcj-price-by-user-role.php:26
2780
+ msgid "Price based on User Role"
2781
+ msgstr ""
2782
+
2783
+ #: includes/class-wcj-price-by-user-role.php:27
2784
+ msgid "Display products prices by user roles."
2785
+ msgstr ""
2786
+
2787
+ #: includes/class-wcj-price-by-user-role.php:143
2788
+ msgid "user roles & variations"
2789
+ msgstr ""
2790
+
2791
+ #: includes/class-wcj-price-by-user-role.php:147
2792
+ msgid "variations"
2793
+ msgstr ""
2794
+
2795
+ #: includes/class-wcj-price-by-user-role.php:151
2796
+ msgid "user roles"
2797
+ msgstr ""
2798
+
2799
+ #: includes/class-wcj-price-by-user-role.php:164
2800
+ #, php-format
2801
+ msgid "Copy price to all %s"
2802
+ msgstr ""
2803
+
2804
+ #: includes/class-wcj-price-by-user-role.php:244
2805
+ msgid ""
2806
+ "Booster: Free plugin's version is limited to only one price by user role per "
2807
+ "products settings product enabled at a time. You will need to get <a href="
2808
+ "\"https://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
2809
+ "unlimited number of price by user role per product settings products."
2810
+ msgstr ""
2811
+
2812
+ #: includes/class-wcj-price-formats.php:25
2813
+ msgid "Price Formats"
2814
+ msgstr ""
2815
+
2816
+ #: includes/class-wcj-price-formats.php:26
2817
+ msgid ""
2818
+ "Set different price formats for different currencies. Set general price "
2819
+ "format options."
2820
+ msgstr ""
2821
+
2822
+ #: includes/class-wcj-price-labels.php:23
2823
+ msgid "Custom Price Labels"
2824
+ msgstr ""
2825
+
2826
+ #: includes/class-wcj-price-labels.php:24
2827
+ msgid "Create any custom price label for any product."
2828
+ msgstr ""
2829
+
2830
+ #: includes/class-wcj-price-labels.php:32
2831
+ #: includes/settings/wcj-settings-price-labels.php:99
2832
+ msgid "Instead of the price"
2833
+ msgstr ""
2834
+
2835
+ #: includes/class-wcj-price-labels.php:33
2836
+ msgid "Before the price"
2837
+ msgstr ""
2838
+
2839
+ #: includes/class-wcj-price-labels.php:34
2840
+ msgid "Between regular and sale prices"
2841
+ msgstr ""
2842
+
2843
+ #: includes/class-wcj-price-labels.php:35
2844
+ msgid "After the price"
2845
+ msgstr ""
2846
+
2847
+ #: includes/class-wcj-price-labels.php:40
2848
+ #: includes/class-wcj-product-by-country.php:169
2849
+ #: includes/class-wcj-product-info.php:235
2850
+ #: includes/class-wcj-shipping-by-products.php:195
2851
+ #: includes/class-wcj-shipping-options.php:121
2852
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:68
2853
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
2854
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:19
2855
+ #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:14
2856
+ #: includes/settings/wcj-settings-add-to-cart.php:51
2857
+ #: includes/settings/wcj-settings-address-formats.php:20
2858
+ #: includes/settings/wcj-settings-admin-bar.php:20
2859
+ #: includes/settings/wcj-settings-admin-bar.php:42
2860
+ #: includes/settings/wcj-settings-admin-bar.php:49
2861
+ #: includes/settings/wcj-settings-admin-tools.php:22
2862
+ #: includes/settings/wcj-settings-admin-tools.php:29
2863
+ #: includes/settings/wcj-settings-admin-tools.php:38
2864
+ #: includes/settings/wcj-settings-admin-tools.php:56
2865
+ #: includes/settings/wcj-settings-admin-tools.php:73
2866
+ #: includes/settings/wcj-settings-admin-tools.php:81
2867
+ #: includes/settings/wcj-settings-admin-tools.php:89
2868
+ #: includes/settings/wcj-settings-breadcrumbs.php:20
2869
+ #: includes/settings/wcj-settings-call-for-price.php:79
2870
+ #: includes/settings/wcj-settings-cart-customization.php:34
2871
+ #: includes/settings/wcj-settings-cart-customization.php:57
2872
+ #: includes/settings/wcj-settings-checkout-core-fields.php:44
2873
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:122
2874
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:232
2875
+ #: includes/settings/wcj-settings-checkout-customization.php:20
2876
+ #: includes/settings/wcj-settings-checkout-customization.php:27
2877
+ #: includes/settings/wcj-settings-checkout-customization.php:38
2878
+ #: includes/settings/wcj-settings-checkout-customization.php:47
2879
+ #: includes/settings/wcj-settings-checkout-customization.php:56
2880
+ #: includes/settings/wcj-settings-checkout-customization.php:190
2881
+ #: includes/settings/wcj-settings-checkout-customization.php:213
2882
+ #: includes/settings/wcj-settings-checkout-customization.php:236
2883
+ #: includes/settings/wcj-settings-checkout-customization.php:261
2884
+ #: includes/settings/wcj-settings-checkout-fees.php:47
2885
+ #: includes/settings/wcj-settings-checkout-fees.php:54
2886
+ #: includes/settings/wcj-settings-checkout-files-upload.php:227
2887
+ #: includes/settings/wcj-settings-checkout-files-upload.php:329
2888
+ #: includes/settings/wcj-settings-checkout-files-upload.php:438
2889
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:47
2890
+ #: includes/settings/wcj-settings-coupon-code-generator.php:32
2891
+ #: includes/settings/wcj-settings-cross-sells.php:97
2892
+ #: includes/settings/wcj-settings-cross-sells.php:115
2893
+ #: includes/settings/wcj-settings-cross-sells.php:125
2894
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:54
2895
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:85
2896
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:93
2897
+ #: includes/settings/wcj-settings-currency-per-product.php:66
2898
+ #: includes/settings/wcj-settings-currency-per-product.php:83
2899
+ #: includes/settings/wcj-settings-currency-per-product.php:90
2900
+ #: includes/settings/wcj-settings-currency-per-product.php:97
2901
+ #: includes/settings/wcj-settings-currency-per-product.php:104
2902
+ #: includes/settings/wcj-settings-currency-per-product.php:258
2903
+ #: includes/settings/wcj-settings-custom-css.php:44
2904
+ #: includes/settings/wcj-settings-debug-tools.php:21
2905
+ #: includes/settings/wcj-settings-debug-tools.php:29
2906
+ #: includes/settings/wcj-settings-debug-tools.php:37
2907
+ #: includes/settings/wcj-settings-emails-verification.php:28
2908
+ #: includes/settings/wcj-settings-emails-verification.php:36
2909
+ #: includes/settings/wcj-settings-emails-verification.php:43
2910
+ #: includes/settings/wcj-settings-eu-vat-number.php:242
2911
+ #: includes/settings/wcj-settings-general.php:21
2912
+ #: includes/settings/wcj-settings-general.php:73
2913
+ #: includes/settings/wcj-settings-general.php:146
2914
+ #: includes/settings/wcj-settings-general.php:197
2915
+ #: includes/settings/wcj-settings-global-discount.php:52
2916
+ #: includes/settings/wcj-settings-global-discount.php:181
2917
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:28
2918
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:57
2919
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:91
2920
+ #: includes/settings/wcj-settings-max-products-per-user.php:80
2921
+ #: includes/settings/wcj-settings-max-products-per-user.php:88
2922
+ #: includes/settings/wcj-settings-more-button-labels.php:28
2923
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:38
2924
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:53
2925
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:70
2926
+ #: includes/settings/wcj-settings-multicurrency.php:39
2927
+ #: includes/settings/wcj-settings-multicurrency.php:112
2928
+ #: includes/settings/wcj-settings-multicurrency.php:120
2929
+ #: includes/settings/wcj-settings-multicurrency.php:127
2930
+ #: includes/settings/wcj-settings-multicurrency.php:135
2931
+ #: includes/settings/wcj-settings-multicurrency.php:143
2932
+ #: includes/settings/wcj-settings-multicurrency.php:151
2933
+ #: includes/settings/wcj-settings-multicurrency.php:184
2934
+ #: includes/settings/wcj-settings-multicurrency.php:193
2935
+ #: includes/settings/wcj-settings-my-account.php:29
2936
+ #: includes/settings/wcj-settings-my-account.php:87
2937
+ #: includes/settings/wcj-settings-my-account.php:104
2938
+ #: includes/settings/wcj-settings-offer-price.php:27
2939
+ #: includes/settings/wcj-settings-order-custom-statuses.php:45
2940
+ #: includes/settings/wcj-settings-order-custom-statuses.php:88
2941
+ #: includes/settings/wcj-settings-order-numbers.php:97
2942
+ #: includes/settings/wcj-settings-order-numbers.php:105
2943
+ #: includes/settings/wcj-settings-order-numbers.php:112
2944
+ #: includes/settings/wcj-settings-order-numbers.php:119
2945
+ #: includes/settings/wcj-settings-order-quantities.php:23
2946
+ #: includes/settings/wcj-settings-order-quantities.php:42
2947
+ #: includes/settings/wcj-settings-order-quantities.php:49
2948
+ #: includes/settings/wcj-settings-order-quantities.php:117
2949
+ #: includes/settings/wcj-settings-order-quantities.php:175
2950
+ #: includes/settings/wcj-settings-order-quantities.php:216
2951
+ #: includes/settings/wcj-settings-order-quantities.php:225
2952
+ #: includes/settings/wcj-settings-orders.php:32
2953
+ #: includes/settings/wcj-settings-orders.php:60
2954
+ #: includes/settings/wcj-settings-orders.php:80
2955
+ #: includes/settings/wcj-settings-orders.php:105
2956
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:23
2957
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:95
2958
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:67
2959
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:83
2960
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:25
2961
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:55
2962
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:118
2963
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
2964
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:24
2965
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
2966
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:73
2967
+ #: includes/settings/wcj-settings-price-by-country.php:70
2968
+ #: includes/settings/wcj-settings-price-by-country.php:90
2969
+ #: includes/settings/wcj-settings-price-by-country.php:106
2970
+ #: includes/settings/wcj-settings-price-by-country.php:133
2971
+ #: includes/settings/wcj-settings-price-by-country.php:142
2972
+ #: includes/settings/wcj-settings-price-by-user-role.php:20
2973
+ #: includes/settings/wcj-settings-price-by-user-role.php:47
2974
+ #: includes/settings/wcj-settings-price-by-user-role.php:119
2975
+ #: includes/settings/wcj-settings-price-formats.php:21
2976
+ #: includes/settings/wcj-settings-price-labels.php:23
2977
+ #: includes/settings/wcj-settings-product-add-to-cart.php:25
2978
+ #: includes/settings/wcj-settings-product-add-to-cart.php:41
2979
+ #: includes/settings/wcj-settings-product-add-to-cart.php:80
2980
+ #: includes/settings/wcj-settings-product-add-to-cart.php:132
2981
+ #: includes/settings/wcj-settings-product-add-to-cart.php:162
2982
+ #: includes/settings/wcj-settings-product-add-to-cart.php:178
2983
+ #: includes/settings/wcj-settings-product-add-to-cart.php:195
2984
+ #: includes/settings/wcj-settings-product-add-to-cart.php:236
2985
+ #: includes/settings/wcj-settings-product-add-to-cart.php:250
2986
+ #: includes/settings/wcj-settings-product-add-to-cart.php:280
2987
+ #: includes/settings/wcj-settings-product-add-to-cart.php:315
2988
+ #: includes/settings/wcj-settings-product-addons.php:31
2989
+ #: includes/settings/wcj-settings-product-addons.php:50
2990
+ #: includes/settings/wcj-settings-product-addons.php:74
2991
+ #: includes/settings/wcj-settings-product-addons.php:179
2992
+ #: includes/settings/wcj-settings-product-addons.php:257
2993
+ #: includes/settings/wcj-settings-product-bookings.php:107
2994
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
2995
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
2996
+ #: includes/settings/wcj-settings-product-by-condition.php:21
2997
+ #: includes/settings/wcj-settings-product-by-condition.php:29
2998
+ #: includes/settings/wcj-settings-product-by-condition.php:37
2999
+ #: includes/settings/wcj-settings-product-by-condition.php:44
3000
+ #: includes/settings/wcj-settings-product-by-condition.php:89
3001
+ #: includes/settings/wcj-settings-product-by-condition.php:96
3002
+ #: includes/settings/wcj-settings-product-by-date.php:21
3003
+ #: includes/settings/wcj-settings-product-by-date.php:53
3004
+ #: includes/settings/wcj-settings-product-by-time.php:21
3005
+ #: includes/settings/wcj-settings-product-by-time.php:53
3006
+ #: includes/settings/wcj-settings-product-by-user.php:107
3007
+ #: includes/settings/wcj-settings-product-info.php:35
3008
+ #: includes/settings/wcj-settings-product-info.php:68
3009
+ #: includes/settings/wcj-settings-product-input-fields.php:24
3010
+ #: includes/settings/wcj-settings-product-input-fields.php:54
3011
+ #: includes/settings/wcj-settings-product-input-fields.php:282
3012
+ #: includes/settings/wcj-settings-product-input-fields.php:326
3013
+ #: includes/settings/wcj-settings-product-input-fields.php:335
3014
+ #: includes/settings/wcj-settings-product-input-fields.php:354
3015
+ #: includes/settings/wcj-settings-product-input-fields.php:362
3016
+ #: includes/settings/wcj-settings-product-open-pricing.php:102
3017
+ #: includes/settings/wcj-settings-product-open-pricing.php:109
3018
+ #: includes/settings/wcj-settings-product-open-pricing.php:140
3019
+ #: includes/settings/wcj-settings-product-price-by-formula.php:30
3020
+ #: includes/settings/wcj-settings-product-tabs.php:43
3021
+ #: includes/settings/wcj-settings-product-tabs.php:232
3022
+ #: includes/settings/wcj-settings-product-tabs.php:240
3023
+ #: includes/settings/wcj-settings-products-xml.php:77
3024
+ #: includes/settings/wcj-settings-purchase-data.php:22
3025
+ #: includes/settings/wcj-settings-purchase-data.php:29
3026
+ #: includes/settings/wcj-settings-purchase-data.php:36
3027
+ #: includes/settings/wcj-settings-purchase-data.php:114
3028
+ #: includes/settings/wcj-settings-purchase-data.php:121
3029
+ #: includes/settings/wcj-settings-purchase-data.php:128
3030
+ #: includes/settings/wcj-settings-purchase-data.php:196
3031
+ #: includes/settings/wcj-settings-related-products.php:105
3032
+ #: includes/settings/wcj-settings-related-products.php:112
3033
+ #: includes/settings/wcj-settings-related-products.php:119
3034
+ #: includes/settings/wcj-settings-related-products.php:149
3035
+ #: includes/settings/wcj-settings-shipping-by-condition.php:26
3036
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:21
3037
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:21
3038
+ #: includes/settings/wcj-settings-shipping-calculator.php:20
3039
+ #: includes/settings/wcj-settings-shipping-calculator.php:27
3040
+ #: includes/settings/wcj-settings-shipping-calculator.php:34
3041
+ #: includes/settings/wcj-settings-shipping-calculator.php:41
3042
+ #: includes/settings/wcj-settings-shipping-description.php:59
3043
+ #: includes/settings/wcj-settings-shipping-icons.php:61
3044
+ #: includes/settings/wcj-settings-shipping-options.php:63
3045
+ #: includes/settings/wcj-settings-shipping-time.php:31
3046
+ #: includes/settings/wcj-settings-shipping-time.php:40
3047
+ #: includes/settings/wcj-settings-shipping.php:24
3048
+ #: includes/settings/wcj-settings-sku.php:51
3049
+ #: includes/settings/wcj-settings-sku.php:216
3050
+ #: includes/settings/wcj-settings-sku.php:224
3051
+ #: includes/settings/wcj-settings-sku.php:232
3052
+ #: includes/settings/wcj-settings-sku.php:259
3053
+ #: includes/settings/wcj-settings-stock.php:27
3054
+ #: includes/settings/wcj-settings-stock.php:64
3055
+ #: includes/settings/wcj-settings-stock.php:94
3056
+ #: includes/settings/wcj-settings-stock.php:109
3057
+ #: includes/settings/wcj-settings-stock.php:139
3058
+ #: includes/settings/wcj-settings-stock.php:154
3059
+ #: includes/settings/wcj-settings-track-users.php:47
3060
+ #: includes/settings/wcj-settings-upsells.php:81
3061
+ #: includes/settings/wcj-settings-wholesale-price.php:24
3062
+ #: includes/settings/wcj-settings-wholesale-price.php:42
3063
+ #: includes/settings/wcj-settings-wholesale-price.php:51
3064
+ #: includes/settings/wcj-settings-wpml.php:28
3065
+ #: includes/settings/wcj-settings-wpml.php:35
3066
+ #: includes/settings/wcj-settings-wpml.php:53
3067
+ msgid "Enable"
3068
+ msgstr ""
3069
+
3070
+ #: includes/class-wcj-price-labels.php:41
3071
+ msgid "Hide on home page"
3072
+ msgstr ""
3073
+
3074
+ #: includes/class-wcj-price-labels.php:42
3075
+ msgid "Hide on products page"
3076
+ msgstr ""
3077
+
3078
+ #: includes/class-wcj-price-labels.php:43
3079
+ msgid "Hide on single"
3080
+ msgstr ""
3081
+
3082
+ #: includes/class-wcj-price-labels.php:44
3083
+ msgid "Hide on all pages"
3084
+ msgstr ""
3085
+
3086
+ #: includes/class-wcj-price-labels.php:45
3087
+ msgid "Hide on cart page only"
3088
+ msgstr ""
3089
+
3090
+ #: includes/class-wcj-price-labels.php:46
3091
+ msgid "Hide for main price"
3092
+ msgstr ""
3093
+
3094
+ #: includes/class-wcj-price-labels.php:47
3095
+ msgid "Hide for all variations"
3096
+ msgstr ""
3097
+
3098
+ #: includes/class-wcj-price-labels.php:134
3099
+ msgid "Booster: Custom Price Labels"
3100
+ msgstr ""
3101
+
3102
+ #: includes/class-wcj-product-add-to-cart.php:26
3103
+ #: includes/settings/wcj-settings-product-add-to-cart.php:306
3104
+ msgid "Add to Cart"
3105
+ msgstr ""
3106
+
3107
+ #: includes/class-wcj-product-add-to-cart.php:27
3108
+ msgid "Set any local url to redirect to on Add to Cart."
3109
+ msgstr ""
3110
+
3111
+ #: includes/class-wcj-product-add-to-cart.php:28
3112
+ msgid "Automatically add to cart on product visit."
3113
+ msgstr ""
3114
+
3115
+ #: includes/class-wcj-product-add-to-cart.php:29
3116
+ msgid "Display radio buttons instead of drop box for variable products."
3117
+ msgstr ""
3118
+
3119
+ #: includes/class-wcj-product-add-to-cart.php:30
3120
+ msgid "Disable quantity input."
3121
+ msgstr ""
3122
+
3123
+ #: includes/class-wcj-product-add-to-cart.php:31
3124
+ msgid "Open external products on add to cart in new window."
3125
+ msgstr ""
3126
+
3127
+ #: includes/class-wcj-product-add-to-cart.php:32
3128
+ msgid ""
3129
+ "Replace Add to Cart button on archives with button from single product pages."
3130
+ msgstr ""
3131
+
3132
+ #: includes/class-wcj-product-add-to-cart.php:33
3133
+ msgid "Customize Add to Cart messages."
3134
+ msgstr ""
3135
+
3136
+ #: includes/class-wcj-product-add-to-cart.php:178
3137
+ #, php-format
3138
+ msgctxt "Item name in quotes"
3139
+ msgid "&ldquo;%s&rdquo;"
3140
+ msgstr ""
3141
+
3142
+ #: includes/class-wcj-product-add-to-cart.php:183
3143
+ #, php-format
3144
+ msgid "%s has been added to your cart."
3145
+ msgid_plural "%s have been added to your cart."
3146
+ msgstr[0] ""
3147
+ msgstr[1] ""
3148
+
3149
+ #: includes/class-wcj-product-add-to-cart.php:187
3150
+ #: includes/settings/wcj-settings-product-add-to-cart.php:245
3151
+ msgid "Continue shopping"
3152
+ msgstr ""
3153
+
3154
+ #: includes/class-wcj-product-add-to-cart.php:189
3155
+ #: includes/settings/wcj-settings-product-add-to-cart.php:259
3156
+ msgid "View cart"
3157
+ msgstr ""
3158
+
3159
+ #: includes/class-wcj-product-addons.php:30
3160
+ msgid "Product Addons"
3161
+ msgstr ""
3162
+
3163
+ #: includes/class-wcj-product-addons.php:31
3164
+ msgid "Add (paid/free/discount) addons to products."
3165
+ msgstr ""
3166
+
3167
+ #: includes/class-wcj-product-addons.php:220
3168
+ msgid "Some of the required addons are not selected!"
3169
+ msgstr ""
3170
+
3171
+ #: includes/class-wcj-product-addons.php:235
3172
+ msgid ""
3173
+ "Booster: Free plugin's version is limited to only three products with per "
3174
+ "product addons enabled at a time. You will need to get <a href=\"https://"
3175
+ "booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
3176
+ "number of products with per product addons."
3177
+ msgstr ""
3178
+
3179
+ #: includes/class-wcj-product-bookings.php:25
3180
+ msgid "Bookings"
3181
+ msgstr ""
3182
+
3183
+ #: includes/class-wcj-product-bookings.php:26
3184
+ msgid "Add bookings products to WooCommerce."
3185
+ msgstr ""
3186
+
3187
+ #: includes/class-wcj-product-bookings.php:28
3188
+ msgid ""
3189
+ "When enabled, module will add new \"Booster: Bookings\" meta box to each "
3190
+ "product's edit page."
3191
+ msgstr ""
3192
+
3193
+ #: includes/class-wcj-product-bookings.php:140
3194
+ #: includes/class-wcj-product-bookings.php:247
3195
+ #: includes/settings/wcj-settings-product-bookings.php:77
3196
+ msgid "\"Date to\" must be after \"Date from\""
3197
+ msgstr ""
3198
+
3199
+ #: includes/class-wcj-product-bookings.php:151
3200
+ #: includes/class-wcj-product-open-pricing.php:261
3201
+ #: includes/settings/wcj-settings-add-to-cart.php:140
3202
+ #: includes/settings/wcj-settings-add-to-cart.php:167
3203
+ #: includes/settings/wcj-settings-add-to-cart.php:202
3204
+ msgid "Read more"
3205
+ msgstr ""
3206
+
3207
+ #: includes/class-wcj-product-bookings.php:205
3208
+ #: includes/settings/wcj-settings-product-bookings.php:49
3209
+ msgid "Period"
3210
+ msgstr ""
3211
+
3212
+ #: includes/class-wcj-product-bookings.php:237
3213
+ #: includes/settings/wcj-settings-product-bookings.php:63
3214
+ msgid "\"Date from\" must be set"
3215
+ msgstr ""
3216
+
3217
+ #: includes/class-wcj-product-bookings.php:241
3218
+ #: includes/settings/wcj-settings-product-bookings.php:70
3219
+ msgid "\"Date to\" must be set"
3220
+ msgstr ""
3221
+
3222
+ #: includes/class-wcj-product-bookings.php:370
3223
+ #: includes/settings/wcj-settings-product-bookings.php:35
3224
+ msgid "Date from"
3225
+ msgstr ""
3226
+
3227
+ #: includes/class-wcj-product-bookings.php:374
3228
+ #: includes/settings/wcj-settings-product-bookings.php:42
3229
+ msgid "Date to"
3230
+ msgstr ""
3231
+
3232
+ #: includes/class-wcj-product-bookings.php:397
3233
+ #: includes/settings/wcj-settings-product-bookings.php:56
3234
+ msgid "/ day"
3235
+ msgstr ""
3236
+
3237
+ #: includes/class-wcj-product-bookings.php:471
3238
+ msgid ""
3239
+ "Booster: Free plugin's version is limited to only one bookings product "
3240
+ "enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
3241
+ "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
3242
+ "products."
3243
+ msgstr ""
3244
+
3245
+ #: includes/class-wcj-product-bulk-meta-editor.php:25
3246
+ #: includes/class-wcj-product-bulk-meta-editor.php:32
3247
+ msgid "Product Bulk Meta Editor"
3248
+ msgstr ""
3249
+
3250
+ #: includes/class-wcj-product-bulk-meta-editor.php:26
3251
+ msgid "Set products meta with bulk editor."
3252
+ msgstr ""
3253
+
3254
+ #: includes/class-wcj-product-bulk-meta-editor.php:33
3255
+ msgid "Product Bulk Meta Editor Tool."
3256
+ msgstr ""
3257
+
3258
+ #: includes/class-wcj-product-bulk-meta-editor.php:164
3259
+ msgid "Please enter meta key."
3260
+ msgstr ""
3261
+
3262
+ #: includes/class-wcj-product-bulk-meta-editor.php:184
3263
+ #, php-format
3264
+ msgid "Meta for <strong>%d</strong> product(s) was updated."
3265
+ msgstr ""
3266
+
3267
+ #: includes/class-wcj-product-bulk-meta-editor.php:187
3268
+ #, php-format
3269
+ msgid "Meta for <strong>%d</strong> product(s) was not updated."
3270
+ msgstr ""
3271
+
3272
+ #: includes/class-wcj-product-bulk-meta-editor.php:224
3273
+ msgid "Meta key"
3274
+ msgstr ""
3275
+
3276
+ #: includes/class-wcj-product-bulk-meta-editor.php:226
3277
+ #, php-format
3278
+ msgid "for example %s"
3279
+ msgstr ""
3280
+
3281
+ #: includes/class-wcj-product-bulk-meta-editor.php:232
3282
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:19
3283
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:38
3284
+ #: includes/settings/wcj-settings-price-by-user-role.php:70
3285
+ #: includes/settings/wcj-settings-product-msrp.php:31
3286
+ #: includes/settings/wcj-settings-wholesale-price.php:58
3287
+ msgid "Show"
3288
+ msgstr ""
3289
+
3290
+ #: includes/class-wcj-product-bulk-meta-editor.php:236
3291
+ #: includes/class-wcj-product-bulk-meta-editor.php:340
3292
+ #: includes/settings/wcj-settings-product-add-to-cart.php:304
3293
+ msgid "Meta"
3294
+ msgstr ""
3295
+
3296
+ #: includes/class-wcj-product-bulk-meta-editor.php:259
3297
+ msgid ""
3298
+ "Hold <strong>Control</strong> key to select multiple products. Press "
3299
+ "<strong>Control</strong> + <strong>A</strong> to select all products."
3300
+ msgstr ""
3301
+
3302
+ #: includes/class-wcj-product-bulk-meta-editor.php:294
3303
+ #: includes/settings/wcj-settings-admin-orders-list.php:71
3304
+ #: includes/settings/wcj-settings-admin-products-list.php:56
3305
+ #: includes/settings/wcj-settings-checkout-fees.php:76
3306
+ #: includes/settings/wcj-settings-export.php:91
3307
+ #: includes/settings/wcj-settings-export.php:162
3308
+ #: includes/settings/wcj-settings-export.php:241
3309
+ #: includes/settings/wcj-settings-global-discount.php:69
3310
+ msgid "Value"
3311
+ msgstr ""
3312
+
3313
+ #: includes/class-wcj-product-bulk-meta-editor.php:299
3314
+ msgid "Set"
3315
+ msgstr ""
3316
+
3317
+ #: includes/class-wcj-product-bulk-meta-editor.php:303
3318
+ msgid "Set Meta for All Products"
3319
+ msgstr ""
3320
+
3321
+ #: includes/class-wcj-product-bulk-meta-editor.php:320
3322
+ msgid "Save all"
3323
+ msgstr ""
3324
+
3325
+ #: includes/class-wcj-product-bulk-meta-editor.php:323
3326
+ msgid "Delete all"
3327
+ msgstr ""
3328
+
3329
+ #: includes/class-wcj-product-bulk-meta-editor.php:364
3330
+ msgid "Save"
3331
+ msgstr ""
3332
+
3333
+ #: includes/class-wcj-product-bulk-meta-editor.php:389
3334
+ #: includes/class-wcj-purchase-data.php:77
3335
+ #: includes/export/class-wcj-fields-helper.php:280
3336
+ #: includes/functions/wcj-functions-reports.php:24
3337
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
3338
+ msgid "Product ID"
3339
+ msgstr ""
3340
+
3341
+ #: includes/class-wcj-product-bulk-meta-editor.php:392
3342
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
3343
+ msgid "Product status"
3344
+ msgstr ""
3345
+
3346
+ #: includes/class-wcj-product-bulk-meta-editor.php:395
3347
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
3348
+ msgid "Meta keys"
3349
+ msgstr ""
3350
+
3351
+ #: includes/class-wcj-product-bulk-meta-editor.php:417
3352
+ msgid "Show all"
3353
+ msgstr ""
3354
+
3355
+ #: includes/class-wcj-product-bulk-price-converter.php:23
3356
+ #: includes/class-wcj-product-bulk-price-converter.php:30
3357
+ msgid "Bulk Price Converter"
3358
+ msgstr ""
3359
+
3360
+ #: includes/class-wcj-product-bulk-price-converter.php:24
3361
+ msgid "Multiply all products prices by set value."
3362
+ msgstr ""
3363
+
3364
+ #: includes/class-wcj-product-bulk-price-converter.php:31
3365
+ msgid "Bulk Price Converter Tool."
3366
+ msgstr ""
3367
+
3368
+ #: includes/class-wcj-product-bulk-price-converter.php:150
3369
+ msgid "Price Type"
3370
+ msgstr ""
3371
+
3372
+ #: includes/class-wcj-product-bulk-price-converter.php:151
3373
+ msgid "Original Price"
3374
+ msgstr ""
3375
+
3376
+ #: includes/class-wcj-product-bulk-price-converter.php:152
3377
+ msgid "Modified Price"
3378
+ msgstr ""
3379
+
3380
+ #: includes/class-wcj-product-bulk-price-converter.php:207
3381
+ msgid "Multiply value must be above zero."
3382
+ msgstr ""
3383
+
3384
+ #: includes/class-wcj-product-bulk-price-converter.php:214
3385
+ msgid "Prices changed successfully!"
3386
+ msgstr ""
3387
+
3388
+ #: includes/class-wcj-product-bulk-price-converter.php:239
3389
+ msgid "Multiply all product prices by"
3390
+ msgstr ""
3391
+
3392
+ #: includes/class-wcj-product-bulk-price-converter.php:247
3393
+ msgid "Price type to modify"
3394
+ msgstr ""
3395
+
3396
+ #: includes/class-wcj-product-bulk-price-converter.php:249
3397
+ msgid "Both"
3398
+ msgstr ""
3399
+
3400
+ #: includes/class-wcj-product-bulk-price-converter.php:251
3401
+ msgid "Sale prices only"
3402
+ msgstr ""
3403
+
3404
+ #: includes/class-wcj-product-bulk-price-converter.php:253
3405
+ msgid "Regular prices only"
3406
+ msgstr ""
3407
+
3408
+ #: includes/class-wcj-product-bulk-price-converter.php:260
3409
+ msgid "Products category"
3410
+ msgstr ""
3411
+
3412
+ #: includes/class-wcj-product-bulk-price-converter.php:262
3413
+ #: includes/shortcodes/class-wcj-shortcodes-products.php:354
3414
+ msgid "Any"
3415
+ msgstr ""
3416
+
3417
+ #: includes/class-wcj-product-bulk-price-converter.php:264
3418
+ #: includes/settings/wcj-settings-global-discount.php:84
3419
+ msgid "None"
3420
+ msgstr ""
3421
+
3422
+ #: includes/class-wcj-product-bulk-price-converter.php:271
3423
+ msgid "\"Pretty prices\" threshold"
3424
+ msgstr ""
3425
+
3426
+ #: includes/class-wcj-product-bulk-price-converter.php:271
3427
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:83
3428
+ msgid "Leave zero to disable."
3429
+ msgstr ""
3430
+
3431
+ #: includes/class-wcj-product-bulk-price-converter.php:272
3432
+ msgid ""
3433
+ "Otherwise - all prices below \"threshold\" will end with 0,99 and all prices "
3434
+ "above or equal to \"threshold\" will end with 9,00."
3435
+ msgstr ""
3436
+
3437
+ #: includes/class-wcj-product-bulk-price-converter.php:273
3438
+ msgid ""
3439
+ "E.g.: if you set \"threshold\" to 100, then all prices below 100 will be "
3440
+ "like 45,99 and all other prices will be like 109,00."
3441
+ msgstr ""
3442
+
3443
+ #: includes/class-wcj-product-bulk-price-converter.php:281
3444
+ msgid "Preview Prices"
3445
+ msgstr ""
3446
+
3447
+ #: includes/class-wcj-product-bulk-price-converter.php:288
3448
+ msgid "Change Prices"
3449
+ msgstr ""
3450
+
3451
+ #: includes/class-wcj-product-by-country.php:25
3452
+ msgid "Product Visibility by Country"
3453
+ msgstr ""
3454
+
3455
+ #: includes/class-wcj-product-by-country.php:26
3456
+ msgid "Display products by customer's country."
3457
+ msgstr ""
3458
+
3459
+ #: includes/class-wcj-product-by-country.php:28
3460
+ msgid ""
3461
+ "When enabled, module will add new \"Booster: Product Visibility by Country\" "
3462
+ "meta box to each product's edit page."
3463
+ msgstr ""
3464
+
3465
+ #: includes/class-wcj-product-by-country.php:30
3466
+ #: includes/widgets/class-wcj-widget-country-switcher.php:69
3467
+ #: includes/widgets/class-wcj-widget-selector.php:64
3468
+ msgid "Countries"
3469
+ msgstr ""
3470
+
3471
+ #: includes/class-wcj-product-by-country.php:144
3472
+ msgid "User Country Selection Options"
3473
+ msgstr ""
3474
+
3475
+ #: includes/class-wcj-product-by-country.php:149
3476
+ msgid "User Country Selection Method"
3477
+ msgstr ""
3478
+
3479
+ #: includes/class-wcj-product-by-country.php:150
3480
+ msgid "Possible values: \"Automatically by IP\" or \"Manually\"."
3481
+ msgstr ""
3482
+
3483
+ #: includes/class-wcj-product-by-country.php:152
3484
+ #, php-format
3485
+ msgid ""
3486
+ "If \"Manually\" option is selected, you can add country selection drop box "
3487
+ "to frontend with \"%s\" widget or %s shortcode."
3488
+ msgstr ""
3489
+
3490
+ #: includes/class-wcj-product-by-country.php:153
3491
+ #: includes/class-wcj-product-custom-visibility.php:31
3492
+ #: includes/widgets/class-wcj-widget-selector.php:27
3493
+ msgid "Booster - Selector"
3494
+ msgstr ""
3495
+
3496
+ #: includes/class-wcj-product-by-country.php:160
3497
+ msgid "Automatically by IP"
3498
+ msgstr ""
3499
+
3500
+ #: includes/class-wcj-product-by-country.php:161
3501
+ #: includes/settings/wcj-settings-pdf-invoicing.php:32
3502
+ msgid "Manually"
3503
+ msgstr ""
3504
+
3505
+ #: includes/class-wcj-product-by-country.php:167
3506
+ msgid "Overwrite by Billing Country"
3507
+ msgstr ""
3508
+
3509
+ #: includes/class-wcj-product-by-country.php:168
3510
+ msgid "Tries to overwrite Country by User Billing Country on Checkout Page."
3511
+ msgstr ""
3512
+
3513
+ #: includes/class-wcj-product-by-country.php:179
3514
+ msgid "Admin Country List Options"
3515
+ msgstr ""
3516
+
3517
+ #: includes/class-wcj-product-by-country.php:184
3518
+ msgid "Country List"
3519
+ msgstr ""
3520
+
3521
+ #: includes/class-wcj-product-by-country.php:185
3522
+ msgid ""
3523
+ "This option sets which countries will be added to list in product's edit "
3524
+ "page. Possible values: \"All countries\" or \"WooCommerce selling locations"
3525
+ "\"."
3526
+ msgstr ""
3527
+
3528
+ #: includes/class-wcj-product-by-country.php:187
3529
+ #, php-format
3530
+ msgid ""
3531
+ "If \"WooCommerce selling locations\" option is selected, country list will "
3532
+ "be set by <a href=\"%s\">WooCommerce > Settings > General > Selling "
3533
+ "location(s)</a>."
3534
+ msgstr ""
3535
+
3536
+ #: includes/class-wcj-product-by-country.php:195
3537
+ msgid "WooCommerce selling locations"
3538
+ msgstr ""
3539
+
3540
+ #: includes/class-wcj-product-by-date.php:29
3541
+ msgid "Product Availability by Date"
3542
+ msgstr ""
3543
+
3544
+ #: includes/class-wcj-product-by-date.php:30
3545
+ msgid "Set product availability by date."
3546
+ msgstr ""
3547
+
3548
+ #: includes/class-wcj-product-by-date.php:110
3549
+ #: includes/settings/wcj-settings-product-by-date.php:107
3550
+ msgid "%product_title% is not available until %direct_date%."
3551
+ msgstr ""
3552
+
3553
+ #: includes/class-wcj-product-by-date.php:117
3554
+ #: includes/class-wcj-product-by-date.php:119
3555
+ #: includes/settings/wcj-settings-product-by-date.php:95
3556
+ msgid ""
3557
+ "<p style=\"color:red;\">%product_title% is not available this month.</p>"
3558
+ msgstr ""
3559
+
3560
+ #: includes/class-wcj-product-by-date.php:120
3561
+ #: includes/class-wcj-product-by-date.php:122
3562
+ #: includes/settings/wcj-settings-product-by-date.php:83
3563
+ msgid ""
3564
+ "<p style=\"color:red;\">%product_title% is available only on %date_this_month"
3565
+ "% this month.</p>"
3566
+ msgstr ""
3567
+
3568
+ #: includes/class-wcj-product-by-time.php:29
3569
+ msgid "Product Availability by Time"
3570
+ msgstr ""
3571
+
3572
+ #: includes/class-wcj-product-by-time.php:30
3573
+ msgid "Set product availability by time."
3574
+ msgstr ""
3575
+
3576
+ #: includes/class-wcj-product-by-time.php:91
3577
+ #: includes/class-wcj-product-by-time.php:93
3578
+ #: includes/settings/wcj-settings-product-by-time.php:87
3579
+ msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
3580
+ msgstr ""
3581
+
3582
+ #: includes/class-wcj-product-by-time.php:94
3583
+ #: includes/class-wcj-product-by-time.php:96
3584
+ #: includes/settings/wcj-settings-product-by-time.php:75
3585
+ msgid ""
3586
+ "<p style=\"color:red;\">%product_title% is available only at %time_today% "
3587
+ "today.</p>"
3588
+ msgstr ""
3589
+
3590
+ #: includes/class-wcj-product-by-user-role.php:25
3591
+ msgid "Product Visibility by User Role"
3592
+ msgstr ""
3593
+
3594
+ #: includes/class-wcj-product-by-user-role.php:26
3595
+ msgid "Display products by customer's user role."
3596
+ msgstr ""
3597
+
3598
+ #: includes/class-wcj-product-by-user-role.php:28
3599
+ msgid ""
3600
+ "When enabled, module will add new \"Booster: Product Visibility by User Role"
3601
+ "\" meta box to each product's edit page."
3602
+ msgstr ""
3603
+
3604
+ #: includes/class-wcj-product-by-user-role.php:30
3605
+ #: includes/class-wcj-shipping-by-user-role.php:31
3606
+ #: includes/settings/wcj-settings-tax-display.php:107
3607
+ msgid "User Roles"
3608
+ msgstr ""
3609
+
3610
+ #: includes/class-wcj-product-by-user.php:26
3611
+ msgid "User Products"
3612
+ msgstr ""
3613
+
3614
+ #: includes/class-wcj-product-by-user.php:27
3615
+ msgid "Let users add new products from frontend."
3616
+ msgstr ""
3617
+
3618
+ #: includes/class-wcj-product-by-user.php:29
3619
+ msgid ""
3620
+ "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
3621
+ "form to frontend."
3622
+ msgstr ""
3623
+
3624
+ #: includes/class-wcj-product-by-user.php:154
3625
+ #: includes/class-wcj-product-by-user.php:163
3626
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:310
3627
+ msgid "Wrong user ID!"
3628
+ msgstr ""
3629
+
3630
+ #: includes/class-wcj-product-by-user.php:197
3631
+ #: includes/class-wcj-product-tabs.php:620
3632
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:55
3633
+ #: includes/input-fields/wcj-product-input-fields-options.php:51
3634
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:95
3635
+ #: includes/settings/wcj-settings-admin-orders-list.php:172
3636
+ #: includes/settings/wcj-settings-checkout-fees.php:60
3637
+ #: includes/settings/wcj-settings-cross-sells.php:42
3638
+ #: includes/settings/wcj-settings-export.php:75
3639
+ #: includes/settings/wcj-settings-export.php:143
3640
+ #: includes/settings/wcj-settings-export.php:225
3641
+ #: includes/settings/wcj-settings-my-account.php:161
3642
+ #: includes/settings/wcj-settings-product-add-to-cart.php:300
3643
+ #: includes/settings/wcj-settings-product-addons.php:92
3644
+ #: includes/settings/wcj-settings-product-by-user.php:167
3645
+ #: includes/settings/wcj-settings-product-tabs.php:72
3646
+ #: includes/settings/wcj-settings-product-tabs.php:388
3647
+ #: includes/settings/wcj-settings-product-tabs.php:409
3648
+ #: includes/settings/wcj-settings-product-tabs.php:430
3649
+ #: includes/settings/wcj-settings-products-xml.php:223
3650
+ #: includes/settings/wcj-settings-purchase-data.php:77
3651
+ #: includes/settings/wcj-settings-related-products.php:24
3652
+ #: includes/settings/wcj-settings-upsells.php:42
3653
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:191
3654
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:107
3655
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:334
3656
+ #: includes/widgets/class-wcj-widget-country-switcher.php:62
3657
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
3658
+ #: includes/widgets/class-wcj-widget-multicurrency.php:69
3659
+ #: includes/widgets/class-wcj-widget-selector.php:52
3660
+ msgid "Title"
3661
+ msgstr ""
3662
+
3663
+ #: includes/class-wcj-product-by-user.php:205
3664
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
3665
+ #: includes/tools/class-wcj-order-statuses-tool.php:164
3666
+ #: includes/tools/class-wcj-order-statuses-tool.php:236
3667
+ msgid "Edit"
3668
+ msgstr ""
3669
+
3670
+ #: includes/class-wcj-product-custom-info.php:25
3671
+ #: includes/class-wcj-product-info.php:102
3672
+ msgid "Add additional info to category and single product pages."
3673
+ msgstr ""
3674
+
3675
+ #: includes/class-wcj-product-custom-visibility.php:25
3676
+ msgid "Product Custom Visibility"
3677
+ msgstr ""
3678
+
3679
+ #: includes/class-wcj-product-custom-visibility.php:26
3680
+ msgid "Display products by custom param."
3681
+ msgstr ""
3682
+
3683
+ #: includes/class-wcj-product-custom-visibility.php:28
3684
+ msgid ""
3685
+ "When enabled, module will add new \"Booster: Product Custom Visibility\" "
3686
+ "meta box to each product's edit page."
3687
+ msgstr ""
3688
+
3689
+ #: includes/class-wcj-product-custom-visibility.php:30
3690
+ #, php-format
3691
+ msgid ""
3692
+ "You can add selection drop box to frontend with \"%s\" widget (set \"Product "
3693
+ "custom visibility\" as \"Selector Type\") or %s shortcode."
3694
+ msgstr ""
3695
+
3696
+ #: includes/class-wcj-product-custom-visibility.php:34
3697
+ msgid "Custom Visibility"
3698
+ msgstr ""
3699
+
3700
+ #: includes/class-wcj-product-custom-visibility.php:92
3701
+ msgid "Options List"
3702
+ msgstr ""
3703
+
3704
+ #: includes/class-wcj-product-custom-visibility.php:97
3705
+ #: includes/settings/wcj-settings-admin-bar.php:14
3706
+ #: includes/settings/wcj-settings-breadcrumbs.php:14
3707
+ #: includes/settings/wcj-settings-cart-customization.php:14
3708
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:16
3709
+ #: includes/settings/wcj-settings-checkout-files-upload.php:18
3710
+ #: includes/settings/wcj-settings-coupon-code-generator.php:25
3711
+ #: includes/settings/wcj-settings-cross-sells.php:14
3712
+ #: includes/settings/wcj-settings-custom-css.php:14
3713
+ #: includes/settings/wcj-settings-custom-js.php:14
3714
+ #: includes/settings/wcj-settings-custom-php.php:16
3715
+ #: includes/settings/wcj-settings-empty-cart.php:14
3716
+ #: includes/settings/wcj-settings-eu-vat-number.php:15
3717
+ #: includes/settings/wcj-settings-global-discount.php:19
3718
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:17
3719
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:63
3720
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:14
3721
+ #: includes/settings/wcj-settings-price-by-user-role.php:14
3722
+ #: includes/settings/wcj-settings-product-addons.php:173
3723
+ #: includes/settings/wcj-settings-product-bookings.php:86
3724
+ #: includes/settings/wcj-settings-product-by-user.php:59
3725
+ #: includes/settings/wcj-settings-product-open-pricing.php:22
3726
+ #: includes/settings/wcj-settings-products-per-page.php:14
3727
+ #: includes/settings/wcj-settings-products-xml.php:20
3728
+ #: includes/settings/wcj-settings-shipping-description.php:14
3729
+ #: includes/settings/wcj-settings-shipping-icons.php:14
3730
+ #: includes/settings/wcj-settings-track-users.php:14
3731
+ #: includes/settings/wcj-settings-upsells.php:14
3732
+ #: includes/settings/wcj-settings-url-coupons.php:14
3733
+ #: includes/settings/wcj-settings-wholesale-price.php:15
3734
+ msgid "Options"
3735
+ msgstr ""
3736
+
3737
+ #: includes/class-wcj-product-custom-visibility.php:98
3738
+ msgid "One per line."
3739
+ msgstr ""
3740
+
3741
+ #: includes/class-wcj-product-custom-visibility.php:99
3742
+ msgid ""
3743
+ "Can not be empty. Options will be added to each product's admin edit page "
3744
+ "and to the selection drop box on frontend."
3745
+ msgstr ""
3746
+
3747
+ #: includes/class-wcj-product-images.php:25
3748
+ msgid "Product Images"
3749
+ msgstr ""
3750
+
3751
+ #: includes/class-wcj-product-images.php:26
3752
+ msgid "Customize products images and thumbnails."
3753
+ msgstr ""
3754
+
3755
+ #: includes/class-wcj-product-info.php:101
3756
+ msgid "Product Info V1"
3757
+ msgstr ""
3758
+
3759
+ #: includes/class-wcj-product-info.php:123
3760
+ #: includes/settings/wcj-settings-offer-price.php:116
3761
+ #: includes/settings/wcj-settings-product-add-to-cart.php:326
3762
+ #: includes/settings/wcj-settings-product-custom-info.php:115
3763
+ msgid "Before product"
3764
+ msgstr ""
3765
+
3766
+ #: includes/class-wcj-product-info.php:124
3767
+ #: includes/settings/wcj-settings-product-add-to-cart.php:327
3768
+ #: includes/settings/wcj-settings-product-custom-info.php:116
3769
+ msgid "Before product title"
3770
+ msgstr ""
3771
+
3772
+ #: includes/class-wcj-product-info.php:125
3773
+ #: includes/settings/wcj-settings-offer-price.php:117
3774
+ #: includes/settings/wcj-settings-product-add-to-cart.php:328
3775
+ #: includes/settings/wcj-settings-product-custom-info.php:119
3776
+ msgid "After product"
3777
+ msgstr ""
3778
+
3779
+ #: includes/class-wcj-product-info.php:126
3780
+ #: includes/settings/wcj-settings-product-add-to-cart.php:329
3781
+ #: includes/settings/wcj-settings-product-custom-info.php:118
3782
+ msgid "After product title"
3783
+ msgstr ""
3784
+
3785
+ #: includes/class-wcj-product-info.php:138
3786
+ #: includes/settings/wcj-settings-offer-price.php:95
3787
+ #: includes/settings/wcj-settings-product-add-to-cart.php:292
3788
+ #: includes/settings/wcj-settings-product-custom-info.php:104
3789
+ #: includes/settings/wcj-settings-upsells.php:60
3790
+ msgid "Inside single product summary"
3791
+ msgstr ""
3792
+
3793
+ #: includes/class-wcj-product-info.php:139
3794
+ #: includes/settings/wcj-settings-offer-price.php:94
3795
+ #: includes/settings/wcj-settings-product-add-to-cart.php:291
3796
+ #: includes/settings/wcj-settings-product-custom-info.php:103
3797
+ #: includes/settings/wcj-settings-upsells.php:59
3798
+ msgid "Before single product summary"
3799
+ msgstr ""
3800
+
3801
+ #: includes/class-wcj-product-info.php:140
3802
+ #: includes/settings/wcj-settings-offer-price.php:98
3803
+ #: includes/settings/wcj-settings-product-add-to-cart.php:293
3804
+ #: includes/settings/wcj-settings-product-custom-info.php:105
3805
+ #: includes/settings/wcj-settings-upsells.php:61
3806
+ msgid "After single product summary"
3807
+ msgstr ""
3808
+
3809
+ #: includes/class-wcj-product-info.php:242
3810
+ #: includes/settings/wcj-settings-cart.php:51
3811
+ #: includes/settings/wcj-settings-checkout-custom-info.php:48
3812
+ #: includes/settings/wcj-settings-checkout-files-upload.php:52
3813
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:42
3814
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:73
3815
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:107
3816
+ #: includes/settings/wcj-settings-mini-cart.php:46
3817
+ #: includes/settings/wcj-settings-my-account.php:261
3818
+ #: includes/settings/wcj-settings-product-add-to-cart.php:286
3819
+ #: includes/settings/wcj-settings-product-add-to-cart.php:321
3820
+ #: includes/settings/wcj-settings-product-custom-info.php:96
3821
+ #: includes/settings/wcj-settings-product-info.php:50
3822
+ #: includes/settings/wcj-settings-product-info.php:83
3823
+ #: includes/settings/wcj-settings-product-msrp.php:37
3824
+ #: includes/settings/wcj-settings-products-per-page.php:36
3825
+ msgid "Position"
3826
+ msgstr ""
3827
+
3828
+ #: includes/class-wcj-product-info.php:253
3829
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:180
3830
+ #: includes/settings/wcj-settings-product-info.php:61
3831
+ #: includes/settings/wcj-settings-product-info.php:94
3832
+ #: includes/settings/wcj-settings-product-tabs.php:86
3833
+ #: includes/settings/wcj-settings-product-tabs.php:398
3834
+ #: includes/settings/wcj-settings-product-tabs.php:419
3835
+ #: includes/settings/wcj-settings-product-tabs.php:440
3836
+ msgid "Priority (i.e. Order)"
3837
+ msgstr ""
3838
+
3839
+ #: includes/class-wcj-product-info.php:260
3840
+ msgid ""
3841
+ "Number of product info fields. Click \"Save changes\" after you change this "
3842
+ "number."
3843
+ msgstr ""
3844
+
3845
+ #: includes/class-wcj-product-info.php:282
3846
+ msgid ""
3847
+ "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
3848
+ "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
3849
+ "before=\" (\" after=\"%)\"]"
3850
+ msgstr ""
3851
+
3852
+ #: includes/class-wcj-product-info.php:283
3853
+ msgid "[wcj_product_total_sales before=\"Total sales: \"]"
3854
+ msgstr ""
3855
+
3856
+ #: includes/class-wcj-product-input-fields.php:25
3857
+ msgid "Add input fields to the products."
3858
+ msgstr ""
3859
+
3860
+ #: includes/class-wcj-product-listings.php:27
3861
+ msgid "Product Listings"
3862
+ msgstr ""
3863
+
3864
+ #: includes/class-wcj-product-listings.php:28
3865
+ msgid ""
3866
+ "Change display options for shop and category pages: show/hide categories "
3867
+ "count, exclude categories, show/hide empty categories."
3868
+ msgstr ""
3869
+
3870
+ #: includes/class-wcj-product-msrp.php:30
3871
+ msgid "Product MSRP"
3872
+ msgstr ""
3873
+
3874
+ #: includes/class-wcj-product-msrp.php:31
3875
+ msgid ""
3876
+ "The <strong>manufacturer's suggested retail price</strong> (<strong>MSRP</"
3877
+ "strong>), also known as the <strong>list price</strong>, or the "
3878
+ "<strong>recommended retail price</strong> (<strong>RRP</strong>), or the "
3879
+ "<strong>suggested retail price</strong> (<strong>SRP</strong>), of a product "
3880
+ "is the price at which the manufacturer recommends that the retailer sell the "
3881
+ "product."
3882
+ msgstr ""
3883
+
3884
+ #: includes/class-wcj-product-msrp.php:32
3885
+ #, php-format
3886
+ msgid "Booster stores MSRP as product meta with %s key."
3887
+ msgstr ""
3888
+
3889
+ #: includes/class-wcj-product-msrp.php:33
3890
+ msgid "Save and display product MSRP in WooCommerce."
3891
+ msgstr ""
3892
+
3893
+ #: includes/class-wcj-product-msrp.php:92
3894
+ #: includes/class-wcj-product-msrp.php:123
3895
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-msrp.php:35
3896
+ msgid "MSRP"
3897
+ msgstr ""
3898
+
3899
+ #: includes/class-wcj-product-open-pricing.php:25
3900
+ msgid "Product Open Pricing (Name Your Price)"
3901
+ msgstr ""
3902
+
3903
+ #: includes/class-wcj-product-open-pricing.php:26
3904
+ msgid "Let your store customers enter price for the product manually."
3905
+ msgstr ""
3906
+
3907
+ #: includes/class-wcj-product-open-pricing.php:78
3908
+ msgid "Open Pricing"
3909
+ msgstr ""
3910
+
3911
+ #: includes/class-wcj-product-open-pricing.php:222
3912
+ msgid ""
3913
+ "Booster: Free plugin's version is limited to only one open pricing product "
3914
+ "enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
3915
+ "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
3916
+ "products."
3917
+ msgstr ""
3918
+
3919
+ #: includes/class-wcj-product-open-pricing.php:334
3920
+ #: includes/settings/wcj-settings-product-open-pricing.php:73
3921
+ msgid "Price is required!"
3922
+ msgstr ""
3923
+
3924
+ #: includes/class-wcj-product-open-pricing.php:340
3925
+ #: includes/settings/wcj-settings-product-open-pricing.php:81
3926
+ msgid "Entered price is too small!"
3927
+ msgstr ""
3928
+
3929
+ #: includes/class-wcj-product-open-pricing.php:345
3930
+ #: includes/settings/wcj-settings-product-open-pricing.php:89
3931
+ msgid "Entered price is too big!"
3932
+ msgstr ""
3933
+
3934
+ #: includes/class-wcj-product-open-pricing.php:439
3935
+ #: includes/settings/wcj-settings-product-open-pricing.php:29
3936
+ msgid "Name Your Price"
3937
+ msgstr ""
3938
+
3939
+ #: includes/class-wcj-product-price-by-formula.php:26
3940
+ msgid "Product Price by Formula"
3941
+ msgstr ""
3942
+
3943
+ #: includes/class-wcj-product-price-by-formula.php:27
3944
+ msgid "Set formula for automatic product price calculation."
3945
+ msgstr ""
3946
+
3947
+ #: includes/class-wcj-product-price-by-formula.php:136
3948
+ msgid "Error in formula"
3949
+ msgstr ""
3950
+
3951
+ #: includes/class-wcj-product-price-by-formula.php:228
3952
+ msgid ""
3953
+ "Booster: Free plugin's version is limited to only one price by formula "
3954
+ "product enabled at a time. You will need to get <a href=\"https://booster.io/"
3955
+ "plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price "
3956
+ "by formula products."
3957
+ msgstr ""
3958
+
3959
+ #: includes/class-wcj-product-price-by-formula.php:262
3960
+ msgid "Final Price Preview"
3961
+ msgstr ""
3962
+
3963
+ #: includes/class-wcj-product-tabs.php:24
3964
+ msgid "Product Tabs"
3965
+ msgstr ""
3966
+
3967
+ #: includes/class-wcj-product-tabs.php:25
3968
+ msgid ""
3969
+ "Add custom product tabs - globally or per product. Customize or completely "
3970
+ "remove WooCommerce default product tabs."
3971
+ msgstr ""
3972
+
3973
+ #: includes/class-wcj-product-tabs.php:577
3974
+ msgid "Booster: Custom Tabs"
3975
+ msgstr ""
3976
+
3977
+ #: includes/class-wcj-product-tabs.php:604
3978
+ msgid "Total number of custom tabs"
3979
+ msgstr ""
3980
+
3981
+ #: includes/class-wcj-product-tabs.php:610
3982
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:213
3983
+ msgid "Click \"Update\" product after you change this number."
3984
+ msgstr ""
3985
+
3986
+ #: includes/class-wcj-product-tabs.php:625
3987
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:123
3988
+ #: includes/settings/wcj-settings-product-tabs.php:79
3989
+ msgid "Key"
3990
+ msgstr ""
3991
+
3992
+ #: includes/class-wcj-product-tabs.php:630
3993
+ #: includes/input-fields/wcj-product-input-fields-options.php:21
3994
+ #: includes/settings/wcj-settings-related-products.php:59
3995
+ #: includes/settings/wcj-settings-related-products.php:84
3996
+ msgid "Order"
3997
+ msgstr ""
3998
+
3999
+ #: includes/class-wcj-product-tabs.php:635
4000
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:47
4001
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:73
4002
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:122
4003
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:138
4004
+ #: includes/settings/wcj-settings-cart.php:44
4005
+ #: includes/settings/wcj-settings-checkout-custom-info.php:41
4006
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:34
4007
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:65
4008
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:99
4009
+ #: includes/settings/wcj-settings-mini-cart.php:39
4010
+ #: includes/settings/wcj-settings-my-account.php:166
4011
+ #: includes/settings/wcj-settings-my-account.php:253
4012
+ #: includes/settings/wcj-settings-product-custom-info.php:88
4013
+ #: includes/settings/wcj-settings-product-tabs.php:92
4014
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:59
4015
+ msgid "Content"
4016
+ msgstr ""
4017
+
4018
+ #: includes/class-wcj-product-tabs.php:640
4019
+ #: includes/settings/wcj-settings-cart-customization.php:63
4020
+ #: includes/settings/wcj-settings-product-tabs.php:100
4021
+ msgid "Link"
4022
+ msgstr ""
4023
+
4024
+ #: includes/class-wcj-product-tabs.php:642
4025
+ #: includes/settings/wcj-settings-product-tabs.php:101
4026
+ msgid ""
4027
+ "If you wish to forward tab to new link, enter it here. In this case content "
4028
+ "is ignored. Leave blank to show content."
4029
+ msgstr ""
4030
+
4031
+ #: includes/class-wcj-product-tabs.php:646
4032
+ #: includes/settings/wcj-settings-product-tabs.php:108
4033
+ msgid "Link - Open in New Window"
4034
+ msgstr ""
4035
+
4036
+ #: includes/class-wcj-product-tabs.php:649
4037
+ #: includes/input-fields/wcj-product-input-fields-options.php:101
4038
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
4039
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:60
4040
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
4041
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:64
4042
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
4043
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:134
4044
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
4045
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
4046
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
4047
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:79
4048
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:155
4049
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
4050
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:35
4051
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:45
4052
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:55
4053
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
4054
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
4055
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:25
4056
+ #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:20
4057
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
4058
+ #: includes/settings/wcj-settings-admin-orders-list.php:84
4059
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:265
4060
+ #: includes/settings/wcj-settings-product-addons.php:233
4061
+ #: includes/settings/wcj-settings-related-products.php:176
4062
+ #: includes/widgets/class-wcj-widget-country-switcher.php:82
4063
+ msgid "No"
4064
+ msgstr ""
4065
+
4066
+ #: includes/class-wcj-product-tabs.php:650
4067
+ #: includes/input-fields/wcj-product-input-fields-options.php:94
4068
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
4069
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:61
4070
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
4071
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:65
4072
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:36
4073
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:133
4074
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
4075
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
4076
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
4077
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:78
4078
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:154
4079
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
4080
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:34
4081
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:44
4082
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:54
4083
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
4084
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
4085
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:26
4086
+ #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:19
4087
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
4088
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:259
4089
+ #: includes/settings/wcj-settings-eu-vat-number.php:50
4090
+ #: includes/settings/wcj-settings-eu-vat-number.php:57
4091
+ #: includes/settings/wcj-settings-eu-vat-number.php:75
4092
+ #: includes/settings/wcj-settings-eu-vat-number.php:101
4093
+ #: includes/settings/wcj-settings-eu-vat-number.php:108
4094
+ #: includes/settings/wcj-settings-eu-vat-number.php:116
4095
+ #: includes/settings/wcj-settings-eu-vat-number.php:124
4096
+ #: includes/settings/wcj-settings-eu-vat-number.php:135
4097
+ #: includes/settings/wcj-settings-eu-vat-number.php:154
4098
+ #: includes/settings/wcj-settings-product-addons.php:232
4099
+ #: includes/settings/wcj-settings-related-products.php:175
4100
+ #: includes/widgets/class-wcj-widget-country-switcher.php:83
4101
+ msgid "Yes"
4102
+ msgstr ""
4103
+
4104
+ #: includes/class-wcj-product-tabs.php:658
4105
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:22
4106
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
4107
+ #: includes/settings/wcj-settings-checkout-core-fields.php:71
4108
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:158
4109
+ #: includes/settings/wcj-settings-order-numbers.php:46
4110
+ #: includes/settings/wcj-settings-orders.php:180
4111
+ #: includes/settings/wcj-settings-product-add-to-cart.php:64
4112
+ msgid "Disabled"
4113
+ msgstr ""
4114
+
4115
+ #: includes/class-wcj-product-tabs.php:661
4116
+ #: includes/settings/wcj-settings-product-tabs.php:71
4117
+ #: includes/settings/wcj-settings-product-tabs.php:270
4118
+ msgid "Custom Product Tab"
4119
+ msgstr ""
4120
+
4121
+ #: includes/class-wcj-products-per-page.php:28
4122
+ msgid "Products per Page"
4123
+ msgstr ""
4124
+
4125
+ #: includes/class-wcj-products-per-page.php:29
4126
+ msgid "Add \"products per page\" selector to WooCommerce."
4127
+ msgstr ""
4128
+
4129
+ #: includes/class-wcj-products-per-page.php:85
4130
+ #: includes/settings/wcj-settings-products-per-page.php:63
4131
+ msgid ""
4132
+ "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
4133
+ "Products on page %select_form%"
4134
+ msgstr ""
4135
+
4136
+ #: includes/class-wcj-products-xml.php:26
4137
+ msgid "Products XML Feeds"
4138
+ msgstr ""
4139
+
4140
+ #: includes/class-wcj-products-xml.php:27
4141
+ msgid "Products XML feeds."
4142
+ msgstr ""
4143
+
4144
+ #: includes/class-wcj-products-xml.php:95
4145
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:210
4146
+ msgid "Once Weekly"
4147
+ msgstr ""
4148
+
4149
+ #: includes/class-wcj-products-xml.php:99
4150
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:214
4151
+ msgid "Once a Minute"
4152
+ msgstr ""
4153
+
4154
+ #: includes/class-wcj-products-xml.php:114
4155
+ msgid "An error has occurred while creating products XML file."
4156
+ msgstr ""
4157
+
4158
+ #: includes/class-wcj-products-xml.php:117
4159
+ #, php-format
4160
+ msgid "Products XML file #%s created successfully."
4161
+ msgstr ""
4162
+
4163
+ #: includes/class-wcj-purchase-data.php:28
4164
+ msgid "Cost of Goods"
4165
+ msgstr ""
4166
+
4167
+ #: includes/class-wcj-purchase-data.php:29
4168
+ msgid "Save product purchase costs data for admin reports."
4169
+ msgstr ""
4170
+
4171
+ #: includes/class-wcj-purchase-data.php:35
4172
+ msgid "\"WooCommerce Cost of Goods\" Data Import"
4173
+ msgstr ""
4174
+
4175
+ #: includes/class-wcj-purchase-data.php:36
4176
+ msgid "Import products costs from \"WooCommerce Cost of Goods\"."
4177
+ msgstr ""
4178
+
4179
+ #: includes/class-wcj-purchase-data.php:78
4180
+ msgid "Product Title"
4181
+ msgstr ""
4182
+
4183
+ #: includes/class-wcj-purchase-data.php:79
4184
+ msgid "WooCommerce Cost of Goods (source)"
4185
+ msgstr ""
4186
+
4187
+ #: includes/class-wcj-purchase-data.php:80
4188
+ msgid "Booster: Product cost (destination)"
4189
+ msgstr ""
4190
+
4191
+ #: includes/class-wcj-purchase-data.php:115
4192
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:139
4193
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:209
4194
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:122
4195
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:164
4196
+ msgid "Cost"
4197
+ msgstr ""
4198
+
4199
+ #: includes/class-wcj-purchase-data.php:118
4200
+ #: includes/class-wcj-purchase-data.php:181
4201
+ #: includes/class-wcj-purchase-data.php:268
4202
+ #: includes/functions/wcj-functions-reports.php:28
4203
+ #: includes/settings/wcj-settings-purchase-data.php:144
4204
+ #: includes/settings/wcj-settings-purchase-data.php:172
4205
+ msgid "Profit"
4206
+ msgstr ""
4207
+
4208
+ #: includes/class-wcj-purchase-data.php:184
4209
+ #: includes/settings/wcj-settings-purchase-data.php:153
4210
+ #: includes/settings/wcj-settings-purchase-data.php:179
4211
+ msgid "Purchase Cost"
4212
+ msgstr ""
4213
+
4214
+ #: includes/class-wcj-purchase-data.php:266
4215
+ msgid "Selling"
4216
+ msgstr ""
4217
+
4218
+ #: includes/class-wcj-purchase-data.php:267
4219
+ msgid "Buying"
4220
+ msgstr ""
4221
+
4222
+ #: includes/class-wcj-purchase-data.php:275
4223
+ msgid "Report"
4224
+ msgstr ""
4225
+
4226
+ #: includes/class-wcj-related-products.php:39
4227
+ msgid ""
4228
+ "Change displayed related products number, columns, order; relate by tag, "
4229
+ "category, product attribute or manually on per product basis. Hide related "
4230
+ "products completely."
4231
+ msgstr ""
4232
+
4233
+ #: includes/class-wcj-related-products.php:42
4234
+ #, php-format
4235
+ msgid ""
4236
+ "You may need to <a href=\"%s\">clear all products transients</a> to "
4237
+ "immediately see results on frontend after changing module's settings. "
4238
+ "Alternatively you can just update each product individually to clear its "
4239
+ "transients."
4240
+ msgstr ""
4241
+
4242
+ #: includes/class-wcj-reports.php:34
4243
+ msgid "Stock, sales, customers etc. reports."
4244
+ msgstr ""
4245
+
4246
+ #: includes/class-wcj-reports.php:74
4247
+ msgid "Booster: More Ranges - Months"
4248
+ msgstr ""
4249
+
4250
+ #: includes/class-wcj-reports.php:76 includes/class-wcj-reports.php:121
4251
+ msgid "Select Range"
4252
+ msgstr ""
4253
+
4254
+ #: includes/class-wcj-reports.php:119
4255
+ msgid "Booster: More Ranges"
4256
+ msgstr ""
4257
+
4258
+ #: includes/class-wcj-reports.php:222
4259
+ msgid "Booster: Product Sales (Daily)"
4260
+ msgstr ""
4261
+
4262
+ #: includes/class-wcj-reports.php:229
4263
+ msgid "Booster: Product Sales (Monthly)"
4264
+ msgstr ""
4265
+
4266
+ #: includes/class-wcj-reports.php:236
4267
+ msgid "Booster: Monthly Sales (with Currency Conversion)"
4268
+ msgstr ""
4269
+
4270
+ #: includes/class-wcj-reports.php:243
4271
+ msgid "Booster: Payment Gateways"
4272
+ msgstr ""
4273
+
4274
+ #: includes/class-wcj-reports.php:258
4275
+ msgid "Booster: All in stock"
4276
+ msgstr ""
4277
+
4278
+ #: includes/class-wcj-reports.php:265
4279
+ msgid "Booster: Understocked"
4280
+ msgstr ""
4281
+
4282
+ #: includes/class-wcj-reports.php:272
4283
+ msgid "Booster: Overstocked"
4284
+ msgstr ""
4285
+
4286
+ #: includes/class-wcj-reports.php:287
4287
+ msgid "Booster: Customers by Country"
4288
+ msgstr ""
4289
+
4290
+ #: includes/class-wcj-reports.php:294
4291
+ msgid "Booster: Customers by Country Sets"
4292
+ msgstr ""
4293
+
4294
+ #: includes/class-wcj-sale-flash.php:28
4295
+ #: includes/settings/wcj-settings-sale-flash.php:26
4296
+ msgid "Sale Flash"
4297
+ msgstr ""
4298
+
4299
+ #: includes/class-wcj-sale-flash.php:29
4300
+ msgid "Customize products sale flash."
4301
+ msgstr ""
4302
+
4303
+ #: includes/class-wcj-sale-flash.php:84 includes/class-wcj-sale-flash.php:120
4304
+ #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:26
4305
+ #: includes/settings/wcj-settings-sale-flash.php:29
4306
+ #: includes/settings/wcj-settings-sale-flash.php:113
4307
+ msgid "Sale!"
4308
+ msgstr ""
4309
+
4310
+ #: includes/class-wcj-shipping-by-cities.php:25
4311
+ msgid "Shipping Methods by City or Postcode"
4312
+ msgstr ""
4313
+
4314
+ #: includes/class-wcj-shipping-by-cities.php:26
4315
+ msgid ""
4316
+ "Set shipping cities or postcodes to include/exclude for shipping methods to "
4317
+ "show up."
4318
+ msgstr ""
4319
+
4320
+ #: includes/class-wcj-shipping-by-cities.php:31
4321
+ msgid "Cities"
4322
+ msgstr ""
4323
+
4324
+ #: includes/class-wcj-shipping-by-cities.php:32
4325
+ msgid "Otherwise enter cities one per line."
4326
+ msgstr ""
4327
+
4328
+ #: includes/class-wcj-shipping-by-cities.php:38
4329
+ msgid "Postcodes"
4330
+ msgstr ""
4331
+
4332
+ #: includes/class-wcj-shipping-by-cities.php:39
4333
+ msgid "Otherwise enter postcodes one per line."
4334
+ msgstr ""
4335
+
4336
+ #: includes/class-wcj-shipping-by-cities.php:40
4337
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:121
4338
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:131
4339
+ msgid ""
4340
+ "Postcodes containing wildcards (e.g. CB23*) and fully numeric ranges (e.g. "
4341
+ "<code>90210...99000</code>) are also supported."
4342
+ msgstr ""
4343
+
4344
+ #: includes/class-wcj-shipping-by-order-amount.php:26
4345
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:33
4346
+ msgid "Shipping Methods by Min/Max Order Amount"
4347
+ msgstr ""
4348
+
4349
+ #: includes/class-wcj-shipping-by-order-amount.php:27
4350
+ msgid ""
4351
+ "Set minimum and/or maximum order amount for shipping methods to show up."
4352
+ msgstr ""
4353
+
4354
+ #: includes/class-wcj-shipping-by-order-qty.php:26
4355
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:33
4356
+ msgid "Shipping Methods by Min/Max Order Quantity"
4357
+ msgstr ""
4358
+
4359
+ #: includes/class-wcj-shipping-by-order-qty.php:27
4360
+ msgid ""
4361
+ "Set minimum and/or maximum order quantity for shipping methods to show up."
4362
+ msgstr ""
4363
+
4364
+ #: includes/class-wcj-shipping-by-products.php:26
4365
+ #: includes/settings/wcj-settings-shipping-options.php:57
4366
+ msgid "Shipping Methods by Products"
4367
+ msgstr ""
4368
+
4369
+ #: includes/class-wcj-shipping-by-products.php:27
4370
+ msgid ""
4371
+ "Set products, product categories, tags or shipping classes to include/"
4372
+ "exclude for shipping methods to show up."
4373
+ msgstr ""
4374
+
4375
+ #: includes/class-wcj-shipping-by-products.php:33
4376
+ msgid "Shipping methods by <strong>products</strong>."
4377
+ msgstr ""
4378
+
4379
+ #: includes/class-wcj-shipping-by-products.php:36
4380
+ #: includes/settings/wcj-settings-currency-per-product.php:223
4381
+ msgid "Product Categories"
4382
+ msgstr ""
4383
+
4384
+ #: includes/class-wcj-shipping-by-products.php:37
4385
+ msgid "Shipping methods by <strong>products categories</strong>."
4386
+ msgstr ""
4387
+
4388
+ #: includes/class-wcj-shipping-by-products.php:40
4389
+ #: includes/settings/wcj-settings-currency-per-product.php:235
4390
+ msgid "Product Tags"
4391
+ msgstr ""
4392
+
4393
+ #: includes/class-wcj-shipping-by-products.php:41
4394
+ msgid "Shipping methods by <strong>products tags</strong>."
4395
+ msgstr ""
4396
+
4397
+ #: includes/class-wcj-shipping-by-products.php:44
4398
+ msgid "Product Shipping Classes"
4399
+ msgstr ""
4400
+
4401
+ #: includes/class-wcj-shipping-by-products.php:168
4402
+ #: includes/functions/wcj-functions-shipping.php:108
4403
+ msgid "No shipping class"
4404
+ msgstr ""
4405
+
4406
+ #: includes/class-wcj-shipping-by-products.php:185
4407
+ msgid "\"Include\" Options"
4408
+ msgstr ""
4409
+
4410
+ #: includes/class-wcj-shipping-by-products.php:186
4411
+ msgid ""
4412
+ "Enable this checkbox if you want all products in cart to be valid (instead "
4413
+ "of at least one)."
4414
+ msgstr ""
4415
+
4416
+ #: includes/class-wcj-shipping-by-products.php:187
4417
+ msgid "Validate all"
4418
+ msgstr ""
4419
+
4420
+ #: includes/class-wcj-shipping-by-products.php:193
4421
+ msgid "Cart instead of Package"
4422
+ msgstr ""
4423
+
4424
+ #: includes/class-wcj-shipping-by-products.php:194
4425
+ msgid ""
4426
+ "Enable this checkbox if you want to check all cart products instead of "
4427
+ "package."
4428
+ msgstr ""
4429
+
4430
+ #: includes/class-wcj-shipping-by-products.php:203
4431
+ msgid "Add Products Variations"
4432
+ msgstr ""
4433
+
4434
+ #: includes/class-wcj-shipping-by-products.php:204
4435
+ msgid ""
4436
+ "Enable this checkbox if you want to add products variations to the products "
4437
+ "list."
4438
+ msgstr ""
4439
+
4440
+ #: includes/class-wcj-shipping-by-products.php:205
4441
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:25
4442
+ #: includes/settings/wcj-settings-shipping-by-condition.php:28
4443
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:23
4444
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:23
4445
+ #: includes/settings/wcj-settings-shipping-description.php:61
4446
+ #: includes/settings/wcj-settings-shipping-icons.php:63
4447
+ #: includes/settings/wcj-settings-shipping-time.php:33
4448
+ #: includes/settings/wcj-settings-shipping-time.php:42
4449
+ msgid "Save changes after enabling this option."
4450
+ msgstr ""
4451
+
4452
+ #: includes/class-wcj-shipping-by-time.php:27
4453
+ msgid "Shipping Methods by Current Date/Time"
4454
+ msgstr ""
4455
+
4456
+ #: includes/class-wcj-shipping-by-time.php:28
4457
+ msgid ""
4458
+ "Set date and/or time to include/exclude for shipping methods to show up."
4459
+ msgstr ""
4460
+
4461
+ #: includes/class-wcj-shipping-by-time.php:33
4462
+ msgid "Current Date/Time"
4463
+ msgstr ""
4464
+
4465
+ #: includes/class-wcj-shipping-by-time.php:34
4466
+ #, php-format
4467
+ msgid "Current time: %s."
4468
+ msgstr ""
4469
+
4470
+ #: includes/class-wcj-shipping-by-time.php:35
4471
+ #, php-format
4472
+ msgid ""
4473
+ "Time <em>from</em> and time <em>to</em> must be separated with %s symbol."
4474
+ msgstr ""
4475
+
4476
+ #: includes/class-wcj-shipping-by-time.php:36
4477
+ #, php-format
4478
+ msgid ""
4479
+ "Each time input must be set in format that is parsable by PHP %s function."
4480
+ msgstr ""
4481
+
4482
+ #: includes/class-wcj-shipping-by-time.php:38
4483
+ #, php-format
4484
+ msgid "Valid time input examples are: %s"
4485
+ msgstr ""
4486
+
4487
+ #: includes/class-wcj-shipping-by-time.php:112
4488
+ #, php-format
4489
+ msgid ""
4490
+ "According to current time, your time input will be parsed as: from %s to %s."
4491
+ msgstr ""
4492
+
4493
+ #: includes/class-wcj-shipping-by-time.php:115
4494
+ #, php-format
4495
+ msgid "Error: %s"
4496
+ msgstr ""
4497
+
4498
+ #: includes/class-wcj-shipping-by-time.php:115
4499
+ msgid "Time input is not parsable!"
4500
+ msgstr ""
4501
+
4502
+ #: includes/class-wcj-shipping-by-user-role.php:25
4503
+ msgid "Shipping Methods by Users"
4504
+ msgstr ""
4505
+
4506
+ #: includes/class-wcj-shipping-by-user-role.php:26
4507
+ msgid ""
4508
+ "Set user roles, users or membership plans to include/exclude for shipping "
4509
+ "methods to show up."
4510
+ msgstr ""
4511
+
4512
+ #: includes/class-wcj-shipping-by-user-role.php:33
4513
+ #: includes/settings/wcj-settings-multicurrency.php:261
4514
+ #: includes/settings/wcj-settings-order-min-amount.php:104
4515
+ #: includes/settings/wcj-settings-price-by-user-role.php:134
4516
+ #, php-format
4517
+ msgid ""
4518
+ "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
4519
+ "<a href=\"%s\">General</a> module."
4520
+ msgstr ""
4521
+
4522
+ #: includes/class-wcj-shipping-by-user-role.php:38
4523
+ msgid "Users"
4524
+ msgstr ""
4525
+
4526
+ #: includes/class-wcj-shipping-by-user-role.php:42
4527
+ msgid "User Membership Plans"
4528
+ msgstr ""
4529
+
4530
+ #: includes/class-wcj-shipping-by-user-role.php:44
4531
+ #, php-format
4532
+ msgid ""
4533
+ "This section requires <a target=\"_blank\" href=\"%s\">WooCommerce "
4534
+ "Memberships</a> plugin."
4535
+ msgstr ""
4536
+
4537
+ #: includes/class-wcj-shipping-calculator.php:23
4538
+ msgid "Shipping Calculator"
4539
+ msgstr ""
4540
+
4541
+ #: includes/class-wcj-shipping-calculator.php:24
4542
+ msgid "Customize WooCommerce shipping calculator on cart page."
4543
+ msgstr ""
4544
+
4545
+ #: includes/class-wcj-shipping-description.php:25
4546
+ msgid "Shipping Descriptions"
4547
+ msgstr ""
4548
+
4549
+ #: includes/class-wcj-shipping-description.php:26
4550
+ msgid "Add descriptions to shipping methods on frontend."
4551
+ msgstr ""
4552
+
4553
+ #: includes/class-wcj-shipping-icons.php:25
4554
+ msgid "Shipping Icons"
4555
+ msgstr ""
4556
+
4557
+ #: includes/class-wcj-shipping-icons.php:26
4558
+ msgid "Add icons to shipping methods on frontend."
4559
+ msgstr ""
4560
+
4561
+ #: includes/class-wcj-shipping-options.php:26
4562
+ msgid "Shipping Options"
4563
+ msgstr ""
4564
+
4565
+ #: includes/class-wcj-shipping-options.php:27
4566
+ msgid "Hide shipping when free is available."
4567
+ msgstr ""
4568
+
4569
+ #: includes/class-wcj-shipping-options.php:28
4570
+ msgid "Grant free shipping on per product basis."
4571
+ msgstr ""
4572
+
4573
+ #: includes/class-wcj-shipping-options.php:120
4574
+ msgid "Booster: Hide when free is available"
4575
+ msgstr ""
4576
+
4577
+ #: includes/class-wcj-shipping-options.php:128
4578
+ #: includes/settings/wcj-settings-shipping-options.php:28
4579
+ msgid ""
4580
+ "Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat "
4581
+ "Rate\" only."
4582
+ msgstr ""
4583
+
4584
+ #: includes/class-wcj-shipping-options.php:132
4585
+ #: includes/settings/wcj-settings-shipping-options.php:32
4586
+ msgid "Hide all"
4587
+ msgstr ""
4588
+
4589
+ #: includes/class-wcj-shipping-options.php:133
4590
+ #: includes/settings/wcj-settings-shipping-options.php:33
4591
+ msgid "Hide all except \"Local Pickup\""
4592
+ msgstr ""
4593
+
4594
+ #: includes/class-wcj-shipping-options.php:134
4595
+ #: includes/settings/wcj-settings-shipping-options.php:34
4596
+ msgid "Hide \"Flat Rate\" only"
4597
+ msgstr ""
4598
+
4599
+ #: includes/class-wcj-shipping-time.php:25
4600
+ msgid "Shipping Time"
4601
+ msgstr ""
4602
+
4603
+ #: includes/class-wcj-shipping-time.php:26
4604
+ #, php-format
4605
+ msgid ""
4606
+ "After you set estimated shipping time here, you can display it on frontend "
4607
+ "with %s shortcodes."
4608
+ msgstr ""
4609
+
4610
+ #: includes/class-wcj-shipping-time.php:28
4611
+ msgid "Add delivery time estimation to shipping methods."
4612
+ msgstr ""
4613
+
4614
+ #: includes/class-wcj-shipping.php:23
4615
+ #: includes/settings/wcj-settings-shipping.php:16
4616
+ #: includes/settings/wcj-settings-shipping.php:23
4617
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:194
4618
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:110
4619
+ msgid "Custom Shipping"
4620
+ msgstr ""
4621
+
4622
+ #: includes/class-wcj-shipping.php:24
4623
+ msgid "Add multiple custom shipping methods to WooCommerce."
4624
+ msgstr ""
4625
+
4626
+ #: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:539
4627
+ #: includes/export/class-wcj-fields-helper.php:283
4628
+ msgid "SKU"
4629
+ msgstr ""
4630
+
4631
+ #: includes/class-wcj-sku.php:24
4632
+ msgid "Generate SKUs automatically. Search by SKU on frontend."
4633
+ msgstr ""
4634
+
4635
+ #: includes/class-wcj-sku.php:30
4636
+ msgid "Autogenerate SKUs"
4637
+ msgstr ""
4638
+
4639
+ #: includes/class-wcj-sku.php:31
4640
+ msgid "The tool generates and sets product SKUs for existing products."
4641
+ msgstr ""
4642
+
4643
+ #: includes/class-wcj-sku.php:540
4644
+ msgid "Old SKU"
4645
+ msgstr ""
4646
+
4647
+ #: includes/class-wcj-sku.php:546
4648
+ msgid "SKUs generated and set successfully!"
4649
+ msgstr ""
4650
+
4651
+ #: includes/class-wcj-sku.php:556
4652
+ msgid "Preview SKUs"
4653
+ msgstr ""
4654
+
4655
+ #: includes/class-wcj-sku.php:558
4656
+ msgid "Set SKUs"
4657
+ msgstr ""
4658
+
4659
+ #: includes/class-wcj-sku.php:561
4660
+ msgid ""
4661
+ "You can optionally limit affected products by main product's ID (set option "
4662
+ "to zero to ignore):"
4663
+ msgstr ""
4664
+
4665
+ #: includes/class-wcj-sku.php:563
4666
+ msgid "Min ID"
4667
+ msgstr ""
4668
+
4669
+ #: includes/class-wcj-sku.php:566
4670
+ msgid "Max ID"
4671
+ msgstr ""
4672
+
4673
+ #: includes/class-wcj-sorting.php:24
4674
+ msgid "Sorting"
4675
+ msgstr ""
4676
+
4677
+ #: includes/class-wcj-sorting.php:25
4678
+ msgid ""
4679
+ "Add more sorting options; rename or remove default sorting options; "
4680
+ "rearrange sorting options on frontend."
4681
+ msgstr ""
4682
+
4683
+ #: includes/class-wcj-sorting.php:214
4684
+ msgid "Default sorting"
4685
+ msgstr ""
4686
+
4687
+ #: includes/class-wcj-sorting.php:215
4688
+ msgid "Sort by popularity"
4689
+ msgstr ""
4690
+
4691
+ #: includes/class-wcj-sorting.php:216
4692
+ msgid "Sort by average rating"
4693
+ msgstr ""
4694
+
4695
+ #: includes/class-wcj-sorting.php:217
4696
+ msgid "Sort by newness"
4697
+ msgstr ""
4698
+
4699
+ #: includes/class-wcj-sorting.php:218
4700
+ msgid "Sort by price: low to high"
4701
+ msgstr ""
4702
+
4703
+ #: includes/class-wcj-sorting.php:219
4704
+ msgid "Sort by price: high to low"
4705
+ msgstr ""
4706
+
4707
+ #: includes/class-wcj-stock.php:28
4708
+ msgid "Products stock display management."
4709
+ msgstr ""
4710
+
4711
+ #: includes/class-wcj-tax-display.php:25
4712
+ msgid "Tax Display"
4713
+ msgstr ""
4714
+
4715
+ #: includes/class-wcj-tax-display.php:26
4716
+ msgid "Customize WooCommerce tax display."
4717
+ msgstr ""
4718
+
4719
+ #: includes/class-wcj-template-editor.php:25
4720
+ msgid "Template Editor"
4721
+ msgstr ""
4722
+
4723
+ #: includes/class-wcj-template-editor.php:26
4724
+ msgid "WooCommerce template editor."
4725
+ msgstr ""
4726
+
4727
+ #: includes/class-wcj-track-users.php:26
4728
+ msgid "User Tracking"
4729
+ msgstr ""
4730
+
4731
+ #: includes/class-wcj-track-users.php:27
4732
+ msgid "Track your users in WooCommerce."
4733
+ msgstr ""
4734
+
4735
+ #: includes/class-wcj-track-users.php:33
4736
+ msgid "Last 24 hours"
4737
+ msgstr ""
4738
+
4739
+ #: includes/class-wcj-track-users.php:35
4740
+ msgid "Last 28 days"
4741
+ msgstr ""
4742
+
4743
+ #: includes/class-wcj-track-users.php:78
4744
+ msgid "Referer"
4745
+ msgstr ""
4746
+
4747
+ #: includes/class-wcj-track-users.php:81
4748
+ msgid "Referer Type"
4749
+ msgstr ""
4750
+
4751
+ #: includes/class-wcj-track-users.php:163
4752
+ msgid "Acquisition Source"
4753
+ msgstr ""
4754
+
4755
+ #: includes/class-wcj-track-users.php:197
4756
+ #: includes/settings/wcj-settings-products-xml.php:120
4757
+ msgid "URL:"
4758
+ msgstr ""
4759
+
4760
+ #: includes/class-wcj-track-users.php:198
4761
+ msgid "Type:"
4762
+ msgstr ""
4763
+
4764
+ #: includes/class-wcj-track-users.php:251
4765
+ #, php-format
4766
+ msgid "Top %d countries by visits"
4767
+ msgstr ""
4768
+
4769
+ #: includes/class-wcj-track-users.php:319
4770
+ #: includes/input-fields/wcj-product-input-fields-options.php:43
4771
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:145
4772
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
4773
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
4774
+ msgid "Country"
4775
+ msgstr ""
4776
+
4777
+ #: includes/class-wcj-track-users.php:319
4778
+ msgid "Visits"
4779
+ msgstr ""
4780
+
4781
+ #: includes/class-wcj-track-users.php:329
4782
+ msgid "No stats yet."
4783
+ msgstr ""
4784
+
4785
+ #: includes/class-wcj-track-users.php:335
4786
+ msgid "Delete all tracking data"
4787
+ msgstr ""
4788
+
4789
+ #: includes/class-wcj-track-users.php:340
4790
+ #, php-format
4791
+ msgid "Stats generated at %s. Next update is scheduled at %s."
4792
+ msgstr ""
4793
+
4794
+ #: includes/class-wcj-track-users.php:341
4795
+ msgid "Update now"
4796
+ msgstr ""
4797
+
4798
+ #: includes/class-wcj-upsells.php:29
4799
+ msgid "Upsells"
4800
+ msgstr ""
4801
+
4802
+ #: includes/class-wcj-upsells.php:30
4803
+ msgid ""
4804
+ "Upsells are products which you recommend instead of the currently viewed "
4805
+ "product, for example, products that are more profitable or better quality or "
4806
+ "more expensive."
4807
+ msgstr ""
4808
+
4809
+ #: includes/class-wcj-upsells.php:31
4810
+ msgid "Customize upsells products display."
4811
+ msgstr ""
4812
+
4813
+ #: includes/class-wcj-url-coupons.php:25
4814
+ msgid "URL Coupons"
4815
+ msgstr ""
4816
+
4817
+ #: includes/class-wcj-url-coupons.php:26
4818
+ msgid "WooCommerce URL coupons."
4819
+ msgstr ""
4820
+
4821
+ #: includes/class-wcj-wholesale-price.php:27
4822
+ msgid "Wholesale Price"
4823
+ msgstr ""
4824
+
4825
+ #: includes/class-wcj-wholesale-price.php:28
4826
+ msgid ""
4827
+ "Set wholesale pricing depending on product quantity in cart (buy more pay "
4828
+ "less)."
4829
+ msgstr ""
4830
+
4831
+ #: includes/class-wcj-wpml.php:24
4832
+ msgid "Booster WPML"
4833
+ msgstr ""
4834
+
4835
+ #: includes/class-wcj-wpml.php:25
4836
+ msgid "Booster for WooCommerce basic WPML support."
4837
+ msgstr ""
4838
+
4839
+ #: includes/class-wcj-wpml.php:137
4840
+ msgid "File wpml-config.xml successfully regenerated!"
4841
+ msgstr ""
4842
+
4843
+ #: includes/classes/class-wcj-module-product-by-condition.php:116
4844
+ msgid "— No change —"
4845
+ msgstr ""
4846
+
4847
+ #: includes/classes/class-wcj-module-product-by-condition.php:123
4848
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:29
4849
+ msgid "Visible"
4850
+ msgstr ""
4851
+
4852
+ #: includes/classes/class-wcj-module-product-by-condition.php:132
4853
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:41
4854
+ msgid "Invisible"
4855
+ msgstr ""
4856
+
4857
+ #: includes/classes/class-wcj-module.php:153
4858
+ #, php-format
4859
+ msgid ""
4860
+ "Booster: Free plugin's version is limited to only one \"%1$s\" product with "
4861
+ "settings on per product basis enabled at a time. You will need to get <a "
4862
+ "href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
4863
+ "\"%1$s\" products."
4864
+ msgstr ""
4865
+
4866
+ #: includes/classes/class-wcj-module.php:473
4867
+ #, php-format
4868
+ msgid "Selected: %s."
4869
+ msgstr ""
4870
+
4871
+ #: includes/classes/class-wcj-module.php:542
4872
+ msgid "Back to Module Settings"
4873
+ msgstr ""
4874
+
4875
+ #: includes/classes/class-wcj-module.php:560
4876
+ #: includes/settings/wcj-settings-wpml.php:87
4877
+ msgid "Module Tools"
4878
+ msgstr ""
4879
+
4880
+ #: includes/classes/class-wcj-module.php:633
4881
+ #: includes/settings/wcj-settings-checkout-core-fields.php:64
4882
+ msgid "enabled"
4883
+ msgstr ""
4884
+
4885
+ #: includes/classes/class-wcj-module.php:634
4886
+ msgid "disabled"
4887
+ msgstr ""
4888
+
4889
+ #: includes/classes/class-wcj-module.php:642
4890
+ #: includes/settings/wcj-settings-product-tabs.php:172
4891
+ #: includes/settings/wcj-settings-product-tabs.php:184
4892
+ #: includes/settings/wcj-settings-product-tabs.php:196
4893
+ #: includes/settings/wcj-settings-product-tabs.php:208
4894
+ msgid "Deprecated"
4895
+ msgstr ""
4896
+
4897
+ #: includes/classes/class-wcj-module.php:680
4898
+ msgid "Reset Settings"
4899
+ msgstr ""
4900
+
4901
+ #: includes/classes/class-wcj-module.php:686
4902
+ msgid "Reset Module to Default Settings"
4903
+ msgstr ""
4904
+
4905
+ #: includes/classes/class-wcj-module.php:687
4906
+ msgid "Reset Submodule to Default Settings"
4907
+ msgstr ""
4908
+
4909
+ #: includes/classes/class-wcj-module.php:691
4910
+ msgid "Reset settings"
4911
+ msgstr ""
4912
+
4913
+ #: includes/classes/class-wcj-module.php:725
4914
+ msgid "Module Options"
4915
+ msgstr ""
4916
+
4917
+ #: includes/classes/class-wcj-module.php:732
4918
+ msgid "Enable Module"
4919
+ msgstr ""
4920
+
4921
+ #: includes/classes/class-wcj-pdf-invoice.php:88
4922
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:61
4923
+ msgid "Company Name"
4924
+ msgstr ""
4925
+
4926
+ #: includes/classes/class-wcj-pdf-invoice.php:251
4927
+ #: includes/functions/wcj-functions-general.php:145
4928
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:245
4929
+ msgid "Unexpected error"
4930
+ msgstr ""
4931
+
4932
+ #: includes/classes/class-wcj-shortcodes.php:109
4933
+ #: includes/shortcodes/class-wcj-shortcodes-general.php:517
4934
+ #, php-format
4935
+ msgid "\"%s\" module is not enabled!"
4936
+ msgstr ""
4937
+
4938
+ #: includes/classes/class-wcj-tcpdf.php:40
4939
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:31
4940
+ msgid "Page %page_number% / %total_pages%"
4941
+ msgstr ""
4942
+
4943
+ #: includes/core/class-wcj-admin.php:57
4944
+ msgid "Please update <strong>Booster Plus for WooCommerce</strong> plugin."
4945
+ msgstr ""
4946
+
4947
+ #: includes/core/class-wcj-admin.php:59
4948
+ #, php-format
4949
+ msgid ""
4950
+ "Visit <a target=\"_blank\" href=\"%s\">your account page</a> on booster.io "
4951
+ "to download the latest Booster Plus version."
4952
+ msgstr ""
4953
+
4954
+ #: includes/core/class-wcj-admin.php:63
4955
+ #, php-format
4956
+ msgid "Click <a target=\"_blank\" href=\"%s\">here</a> for more info."
4957
+ msgstr ""
4958
+
4959
+ #: includes/core/class-wcj-admin.php:81
4960
+ #, php-format
4961
+ msgid ""
4962
+ "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
4963
+ "rating. Thank you, we couldn't have done it without you!"
4964
+ msgstr ""
4965
+
4966
+ #: includes/core/class-wcj-admin.php:98
4967
+ msgid "Booster Settings"
4968
+ msgstr ""
4969
+
4970
+ #: includes/core/class-wcj-admin.php:114
4971
+ msgid "Docs"
4972
+ msgstr ""
4973
+
4974
+ #: includes/core/class-wcj-admin.php:117
4975
+ msgid "Unlock all"
4976
+ msgstr ""
4977
+
4978
+ #: includes/emails/class-wc-email-wcj-custom.php:32
4979
+ msgid ""
4980
+ "Custom emails are sent to the recipient list when selected triggers are "
4981
+ "called."
4982
+ msgstr ""
4983
+
4984
+ #: includes/emails/class-wc-email-wcj-custom.php:34
4985
+ msgid "Custom Heading"
4986
+ msgstr ""
4987
+
4988
+ #: includes/emails/class-wc-email-wcj-custom.php:35
4989
+ msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
4990
+ msgstr ""
4991
+
4992
+ #: includes/emails/class-wc-email-wcj-custom.php:225
4993
+ #, php-format
4994
+ msgid "New order (%s)"
4995
+ msgstr ""
4996
+
4997
+ #: includes/emails/class-wc-email-wcj-custom.php:226
4998
+ #, php-format
4999
+ msgid "Order status updated to %s"
5000
+ msgstr ""
5001
+
5002
+ #: includes/emails/class-wc-email-wcj-custom.php:229
5003
+ #, php-format
5004
+ msgid "Order status %s to %s"
5005
+ msgstr ""
5006
+
5007
+ #: includes/emails/class-wc-email-wcj-custom.php:236
5008
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:48
5009
+ #: includes/settings/wcj-settings-admin-products-list.php:19
5010
+ #: includes/settings/wcj-settings-admin-products-list.php:75
5011
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:121
5012
+ #: includes/settings/wcj-settings-checkout-fees.php:46
5013
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:101
5014
+ msgid "Enable/Disable"
5015
+ msgstr ""
5016
+
5017
+ #: includes/emails/class-wc-email-wcj-custom.php:238
5018
+ msgid "Enable this email notification"
5019
+ msgstr ""
5020
+
5021
+ #: includes/emails/class-wc-email-wcj-custom.php:242
5022
+ msgid "Trigger(s)"
5023
+ msgstr ""
5024
+
5025
+ #: includes/emails/class-wc-email-wcj-custom.php:246
5026
+ msgid ""
5027
+ "Please note, that all new orders in WooCommerce by default are created with "
5028
+ "Pending Payment status. If you want to change the default order status - you "
5029
+ "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
5030
+ "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
5031
+ msgstr ""
5032
+
5033
+ #: includes/emails/class-wc-email-wcj-custom.php:249
5034
+ msgid "New order (Any status)"
5035
+ msgstr ""
5036
+
5037
+ #: includes/emails/class-wc-email-wcj-custom.php:254
5038
+ msgid "Reset password notification"
5039
+ msgstr ""
5040
+
5041
+ #: includes/emails/class-wc-email-wcj-custom.php:255
5042
+ msgid "Order fully refunded notification"
5043
+ msgstr ""
5044
+
5045
+ #: includes/emails/class-wc-email-wcj-custom.php:256
5046
+ msgid "Order partially refunded notification"
5047
+ msgstr ""
5048
+
5049
+ #: includes/emails/class-wc-email-wcj-custom.php:257
5050
+ msgid "New customer note notification"
5051
+ msgstr ""
5052
+
5053
+ #: includes/emails/class-wc-email-wcj-custom.php:258
5054
+ msgid "Low stock notification"
5055
+ msgstr ""
5056
+
5057
+ #: includes/emails/class-wc-email-wcj-custom.php:259
5058
+ msgid "No stock notification"
5059
+ msgstr ""
5060
+
5061
+ #: includes/emails/class-wc-email-wcj-custom.php:260
5062
+ msgid "Product on backorder notification"
5063
+ msgstr ""
5064
+
5065
+ #: includes/emails/class-wc-email-wcj-custom.php:261
5066
+ msgid "Created customer notification"
5067
+ msgstr ""
5068
+
5069
+ #: includes/emails/class-wc-email-wcj-custom.php:268
5070
+ msgid "Recipient(s)"
5071
+ msgstr ""
5072
+
5073
+ #: includes/emails/class-wc-email-wcj-custom.php:270
5074
+ #, php-format
5075
+ msgid ""
5076
+ "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
5077
+ "code>."
5078
+ msgstr ""
5079
+
5080
+ #: includes/emails/class-wc-email-wcj-custom.php:271
5081
+ msgid "Or enter <code>%customer%</code> to send to customer billing email."
5082
+ msgstr ""
5083
+
5084
+ #: includes/emails/class-wc-email-wcj-custom.php:277
5085
+ msgid "Subject"
5086
+ msgstr ""
5087
+
5088
+ #: includes/emails/class-wc-email-wcj-custom.php:279
5089
+ #, php-format
5090
+ msgid ""
5091
+ "This controls the email subject line. Leave blank to use the default "
5092
+ "subject: <code>%s</code>."
5093
+ msgstr ""
5094
+
5095
+ #: includes/emails/class-wc-email-wcj-custom.php:285
5096
+ msgid "Email type"
5097
+ msgstr ""
5098
+
5099
+ #: includes/emails/class-wc-email-wcj-custom.php:287
5100
+ msgid "Choose which format of email to send."
5101
+ msgstr ""
5102
+
5103
+ #: includes/emails/class-wc-email-wcj-custom.php:293
5104
+ msgid "Wrap in WC Email Template"
5105
+ msgstr ""
5106
+
5107
+ #: includes/emails/class-wc-email-wcj-custom.php:299
5108
+ msgid ""
5109
+ "WC Email Heading. Used only if \"Wrap in WC Email Template\" is enabled and "
5110
+ "only for HTML templates."
5111
+ msgstr ""
5112
+
5113
+ #: includes/emails/class-wc-email-wcj-custom.php:300
5114
+ #, php-format
5115
+ msgid ""
5116
+ "This controls the main heading contained within the email notification. "
5117
+ "Leave blank to use the default heading: <code>%s</code>."
5118
+ msgstr ""
5119
+
5120
+ #: includes/emails/class-wc-email-wcj-custom.php:306
5121
+ msgid "HTML template"
5122
+ msgstr ""
5123
+
5124
+ #: includes/emails/class-wc-email-wcj-custom.php:308
5125
+ #: includes/emails/class-wc-email-wcj-custom.php:317
5126
+ msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
5127
+ msgstr ""
5128
+
5129
+ #: includes/emails/class-wc-email-wcj-custom.php:315
5130
+ msgid "Plain text template"
5131
+ msgstr ""
5132
+
5133
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
5134
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:36
5135
+ #: includes/settings/wcj-settings-products-xml.php:135
5136
+ msgid "Update Every Minute"
5137
+ msgstr ""
5138
+
5139
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
5140
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:37
5141
+ #: includes/settings/wcj-settings-products-xml.php:136
5142
+ msgid "Update Hourly"
5143
+ msgstr ""
5144
+
5145
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
5146
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:38
5147
+ #: includes/settings/wcj-settings-products-xml.php:137
5148
+ msgid "Update Twice Daily"
5149
+ msgstr ""
5150
+
5151
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
5152
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:39
5153
+ #: includes/settings/wcj-settings-products-xml.php:138
5154
+ msgid "Update Daily"
5155
+ msgstr ""
5156
+
5157
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
5158
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:40
5159
+ #: includes/settings/wcj-settings-products-xml.php:139
5160
+ msgid "Update Weekly"
5161
+ msgstr ""
5162
+
5163
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:185
5164
+ msgid "Cron job: exchange rates successfully updated"
5165
+ msgstr ""
5166
+
5167
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:187
5168
+ msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
5169
+ msgstr ""
5170
+
5171
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:190
5172
+ msgid "Cron job: exchange rates update failed"
5173
+ msgstr ""
5174
+
5175
+ #: includes/export/class-wcj-fields-helper.php:34
5176
+ msgid "Customer Nr."
5177
+ msgstr ""
5178
+
5179
+ #: includes/export/class-wcj-fields-helper.php:35
5180
+ #: includes/export/class-wcj-fields-helper.php:131
5181
+ #: includes/export/class-wcj-fields-helper.php:216
5182
+ msgid "Billing Email"
5183
+ msgstr ""
5184
+
5185
+ #: includes/export/class-wcj-fields-helper.php:36
5186
+ #: includes/export/class-wcj-fields-helper.php:121
5187
+ #: includes/export/class-wcj-fields-helper.php:206
5188
+ msgid "Billing First Name"
5189
+ msgstr ""
5190
+
5191
+ #: includes/export/class-wcj-fields-helper.php:37
5192
+ #: includes/export/class-wcj-fields-helper.php:122
5193
+ #: includes/export/class-wcj-fields-helper.php:207
5194
+ msgid "Billing Last Name"
5195
+ msgstr ""
5196
+
5197
+ #: includes/export/class-wcj-fields-helper.php:38
5198
+ #: includes/export/class-wcj-fields-helper.php:123
5199
+ #: includes/export/class-wcj-fields-helper.php:208
5200
+ msgid "Billing Company"
5201
+ msgstr ""
5202
+
5203
+ #: includes/export/class-wcj-fields-helper.php:39
5204
+ #: includes/export/class-wcj-fields-helper.php:124
5205
+ #: includes/export/class-wcj-fields-helper.php:209
5206
+ msgid "Billing Address 1"
5207
+ msgstr ""
5208
+
5209
+ #: includes/export/class-wcj-fields-helper.php:40
5210
+ #: includes/export/class-wcj-fields-helper.php:125
5211
+ #: includes/export/class-wcj-fields-helper.php:210
5212
+ msgid "Billing Address 2"
5213
+ msgstr ""
5214
+
5215
+ #: includes/export/class-wcj-fields-helper.php:41
5216
+ #: includes/export/class-wcj-fields-helper.php:126
5217
+ #: includes/export/class-wcj-fields-helper.php:211
5218
+ msgid "Billing City"
5219
+ msgstr ""
5220
+
5221
+ #: includes/export/class-wcj-fields-helper.php:42
5222
+ #: includes/export/class-wcj-fields-helper.php:127
5223
+ #: includes/export/class-wcj-fields-helper.php:212
5224
+ msgid "Billing State"
5225
+ msgstr ""
5226
+
5227
+ #: includes/export/class-wcj-fields-helper.php:43
5228
+ #: includes/export/class-wcj-fields-helper.php:128
5229
+ #: includes/export/class-wcj-fields-helper.php:213
5230
+ msgid "Billing Postcode"
5231
+ msgstr ""
5232
+
5233
+ #: includes/export/class-wcj-fields-helper.php:45
5234
+ #: includes/export/class-wcj-fields-helper.php:130
5235
+ #: includes/export/class-wcj-fields-helper.php:215
5236
+ msgid "Billing Phone"
5237
+ msgstr ""
5238
+
5239
+ #: includes/export/class-wcj-fields-helper.php:46
5240
+ msgid "Last Order Date"
5241
+ msgstr ""
5242
+
5243
+ #: includes/export/class-wcj-fields-helper.php:76
5244
+ msgid "First Name"
5245
+ msgstr ""
5246
+
5247
+ #: includes/export/class-wcj-fields-helper.php:77
5248
+ msgid "Last Name"
5249
+ msgstr ""
5250
+
5251
+ #: includes/export/class-wcj-fields-helper.php:78
5252
+ msgid "Login"
5253
+ msgstr ""
5254
+
5255
+ #: includes/export/class-wcj-fields-helper.php:79
5256
+ msgid "Nicename"
5257
+ msgstr ""
5258
+
5259
+ #: includes/export/class-wcj-fields-helper.php:80
5260
+ #: includes/export/class-wcj-fields-helper.php:295
5261
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:148
5262
+ msgid "URL"
5263
+ msgstr ""
5264
+
5265
+ #: includes/export/class-wcj-fields-helper.php:81
5266
+ #: includes/reports/wcj-class-reports-customers.php:95
5267
+ msgid "Registered"
5268
+ msgstr ""
5269
+
5270
+ #: includes/export/class-wcj-fields-helper.php:82
5271
+ msgid "Display Name"
5272
+ msgstr ""
5273
+
5274
+ #: includes/export/class-wcj-fields-helper.php:110
5275
+ #: includes/export/class-wcj-fields-helper.php:193
5276
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:40
5277
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:64
5278
+ #: includes/settings/wcj-settings-order-numbers.php:27
5279
+ msgid "Order ID"
5280
+ msgstr ""
5281
+
5282
+ #: includes/export/class-wcj-fields-helper.php:111
5283
+ #: includes/export/class-wcj-fields-helper.php:194
5284
+ msgid "Order Number"
5285
+ msgstr ""
5286
+
5287
+ #: includes/export/class-wcj-fields-helper.php:112
5288
+ #: includes/export/class-wcj-fields-helper.php:195
5289
+ #: includes/settings/wcj-settings-max-products-per-user.php:60
5290
+ msgid "Order Status"
5291
+ msgstr ""
5292
+
5293
+ #: includes/export/class-wcj-fields-helper.php:113
5294
+ #: includes/export/class-wcj-fields-helper.php:196
5295
+ msgid "Order Date"
5296
+ msgstr ""
5297
+
5298
+ #: includes/export/class-wcj-fields-helper.php:114
5299
+ #: includes/export/class-wcj-fields-helper.php:197
5300
+ msgid "Order Time"
5301
+ msgstr ""
5302
+
5303
+ #: includes/export/class-wcj-fields-helper.php:115
5304
+ #: includes/export/class-wcj-fields-helper.php:198
5305
+ msgid "Order Item Count"
5306
+ msgstr ""
5307
+
5308
+ #: includes/export/class-wcj-fields-helper.php:116
5309
+ #: includes/export/class-wcj-fields-helper.php:201
5310
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:47
5311
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:77
5312
+ #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
5313
+ msgid "Order Currency"
5314
+ msgstr ""
5315
+
5316
+ #: includes/export/class-wcj-fields-helper.php:117
5317
+ #: includes/export/class-wcj-fields-helper.php:202
5318
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:46
5319
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:76
5320
+ msgid "Order Total"
5321
+ msgstr ""
5322
+
5323
+ #: includes/export/class-wcj-fields-helper.php:118
5324
+ #: includes/export/class-wcj-fields-helper.php:203
5325
+ msgid "Order Total Tax"
5326
+ msgstr ""
5327
+
5328
+ #: includes/export/class-wcj-fields-helper.php:119
5329
+ #: includes/export/class-wcj-fields-helper.php:204
5330
+ msgid "Order Payment Method"
5331
+ msgstr ""
5332
+
5333
+ #: includes/export/class-wcj-fields-helper.php:120
5334
+ #: includes/export/class-wcj-fields-helper.php:205
5335
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:194
5336
+ msgid "Order Notes"
5337
+ msgstr ""
5338
+
5339
+ #: includes/export/class-wcj-fields-helper.php:132
5340
+ #: includes/export/class-wcj-fields-helper.php:217
5341
+ msgid "Shipping First Name"
5342
+ msgstr ""
5343
+
5344
+ #: includes/export/class-wcj-fields-helper.php:133
5345
+ #: includes/export/class-wcj-fields-helper.php:218
5346
+ msgid "Shipping Last Name"
5347
+ msgstr ""
5348
+
5349
+ #: includes/export/class-wcj-fields-helper.php:134
5350
+ #: includes/export/class-wcj-fields-helper.php:219
5351
+ msgid "Shipping Company"
5352
+ msgstr ""
5353
+
5354
+ #: includes/export/class-wcj-fields-helper.php:135
5355
+ #: includes/export/class-wcj-fields-helper.php:220
5356
+ msgid "Shipping Address 1"
5357
+ msgstr ""
5358
+
5359
+ #: includes/export/class-wcj-fields-helper.php:136
5360
+ #: includes/export/class-wcj-fields-helper.php:221
5361
+ msgid "Shipping Address 2"
5362
+ msgstr ""
5363
+
5364
+ #: includes/export/class-wcj-fields-helper.php:137
5365
+ #: includes/export/class-wcj-fields-helper.php:222
5366
+ msgid "Shipping City"
5367
+ msgstr ""
5368
+
5369
+ #: includes/export/class-wcj-fields-helper.php:138
5370
+ #: includes/export/class-wcj-fields-helper.php:223
5371
+ msgid "Shipping State"
5372
+ msgstr ""
5373
+
5374
+ #: includes/export/class-wcj-fields-helper.php:139
5375
+ #: includes/export/class-wcj-fields-helper.php:224
5376
+ msgid "Shipping Postcode"
5377
+ msgstr ""
5378
+
5379
+ #: includes/export/class-wcj-fields-helper.php:140
5380
+ #: includes/export/class-wcj-fields-helper.php:225
5381
+ msgid "Shipping Country"
5382
+ msgstr ""
5383
+
5384
+ #: includes/export/class-wcj-fields-helper.php:142
5385
+ msgid "Item Name"
5386
+ msgstr ""
5387
+
5388
+ #: includes/export/class-wcj-fields-helper.php:143
5389
+ msgid "Item Meta"
5390
+ msgstr ""
5391
+
5392
+ #: includes/export/class-wcj-fields-helper.php:144
5393
+ msgid "Item Variation Meta"
5394
+ msgstr ""
5395
+
5396
+ #: includes/export/class-wcj-fields-helper.php:145
5397
+ msgid "Item Quantity"
5398
+ msgstr ""
5399
+
5400
+ #: includes/export/class-wcj-fields-helper.php:146
5401
+ msgid "Item Tax Class"
5402
+ msgstr ""
5403
+
5404
+ #: includes/export/class-wcj-fields-helper.php:147
5405
+ msgid "Item Product ID"
5406
+ msgstr ""
5407
+
5408
+ #: includes/export/class-wcj-fields-helper.php:148
5409
+ msgid "Item Variation ID"
5410
+ msgstr ""
5411
+
5412
+ #: includes/export/class-wcj-fields-helper.php:149
5413
+ msgid "Item Line Subtotal"
5414
+ msgstr ""
5415
+
5416
+ #: includes/export/class-wcj-fields-helper.php:150
5417
+ msgid "Item Line Total"
5418
+ msgstr ""
5419
+
5420
+ #: includes/export/class-wcj-fields-helper.php:151
5421
+ msgid "Item Line Subtotal Tax"
5422
+ msgstr ""
5423
+
5424
+ #: includes/export/class-wcj-fields-helper.php:152
5425
+ msgid "Item Line Tax"
5426
+ msgstr ""
5427
+
5428
+ #: includes/export/class-wcj-fields-helper.php:153
5429
+ msgid "Item Line Subtotal Plus Tax"
5430
+ msgstr ""
5431
+
5432
+ #: includes/export/class-wcj-fields-helper.php:154
5433
+ msgid "Item Line Total Plus Tax"
5434
+ msgstr ""
5435
+
5436
+ #: includes/export/class-wcj-fields-helper.php:155
5437
+ msgid "Item Product Input Fields"
5438
+ msgstr ""
5439
+
5440
+ #: includes/export/class-wcj-fields-helper.php:199
5441
+ msgid "Order Items"
5442
+ msgstr ""
5443
+
5444
+ #: includes/export/class-wcj-fields-helper.php:200
5445
+ msgid "Order Items Product Input Fields"
5446
+ msgstr ""
5447
+
5448
+ #: includes/export/class-wcj-fields-helper.php:281
5449
+ msgid "Parent Product ID"
5450
+ msgstr ""
5451
+
5452
+ #: includes/export/class-wcj-fields-helper.php:284
5453
+ msgid "Total Stock"
5454
+ msgstr ""
5455
+
5456
+ #: includes/export/class-wcj-fields-helper.php:285
5457
+ msgid "Stock Quantity"
5458
+ msgstr ""
5459
+
5460
+ #: includes/export/class-wcj-fields-helper.php:286
5461
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:97
5462
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:39
5463
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:92
5464
+ #: includes/settings/wcj-settings-product-by-user.php:16
5465
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:179
5466
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:378
5467
+ msgid "Regular Price"
5468
+ msgstr ""
5469
+
5470
+ #: includes/export/class-wcj-fields-helper.php:287
5471
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:104
5472
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:48
5473
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:101
5474
+ #: includes/settings/wcj-settings-product-by-user.php:17
5475
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:180
5476
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:387
5477
+ msgid "Sale Price"
5478
+ msgstr ""
5479
+
5480
+ #: includes/export/class-wcj-fields-helper.php:289
5481
+ #: includes/input-fields/wcj-product-input-fields-options.php:28
5482
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:83
5483
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:130
5484
+ #: includes/settings/wcj-settings-checkout-fees.php:66
5485
+ #: includes/settings/wcj-settings-export.php:81
5486
+ #: includes/settings/wcj-settings-export.php:149
5487
+ #: includes/settings/wcj-settings-export.php:231
5488
+ #: includes/settings/wcj-settings-global-discount.php:58
5489
+ #: includes/settings/wcj-settings-product-addons.php:80
5490
+ #: includes/settings/wcj-settings-purchase-data.php:84
5491
+ #: includes/settings/wcj-settings-shipping-options.php:77
5492
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:199
5493
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:114
5494
+ #: includes/widgets/class-wcj-widget-multicurrency.php:76
5495
+ msgid "Type"
5496
+ msgstr ""
5497
+
5498
+ #: includes/export/class-wcj-fields-helper.php:291
5499
+ #: includes/settings/wcj-settings-shipping-icons.php:75
5500
+ msgid "Image URL"
5501
+ msgstr ""
5502
+
5503
+ #: includes/export/class-wcj-fields-helper.php:292
5504
+ #: includes/settings/wcj-settings-product-by-user.php:14
5505
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:177
5506
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:351
5507
+ msgid "Short Description"
5508
+ msgstr ""
5509
+
5510
+ #: includes/export/class-wcj-fields-helper.php:296
5511
+ msgid "Shipping Class"
5512
+ msgstr ""
5513
+
5514
+ #: includes/export/class-wcj-fields-helper.php:297
5515
+ msgid "Shipping Class ID"
5516
+ msgstr ""
5517
+
5518
+ #: includes/export/class-wcj-fields-helper.php:298
5519
+ msgid "Width"
5520
+ msgstr ""
5521
+
5522
+ #: includes/export/class-wcj-fields-helper.php:299
5523
+ #: includes/settings/wcj-settings-coupon-code-generator.php:48
5524
+ msgid "Length"
5525
+ msgstr ""
5526
+
5527
+ #: includes/export/class-wcj-fields-helper.php:300
5528
+ msgid "Height"
5529
+ msgstr ""
5530
+
5531
+ #: includes/export/class-wcj-fields-helper.php:301
5532
+ msgid "Weight"
5533
+ msgstr ""
5534
+
5535
+ #: includes/export/class-wcj-fields-helper.php:302
5536
+ msgid "Downloadable"
5537
+ msgstr ""
5538
+
5539
+ #: includes/export/class-wcj-fields-helper.php:303
5540
+ msgid "Virtual"
5541
+ msgstr ""
5542
+
5543
+ #: includes/export/class-wcj-fields-helper.php:304
5544
+ msgid "Sold Individually"
5545
+ msgstr ""
5546
+
5547
+ #: includes/export/class-wcj-fields-helper.php:305
5548
+ msgid "Tax Status"
5549
+ msgstr ""
5550
+
5551
+ #: includes/export/class-wcj-fields-helper.php:306
5552
+ msgid "Tax Class"
5553
+ msgstr ""
5554
+
5555
+ #: includes/export/class-wcj-fields-helper.php:307
5556
+ msgid "Manage Stock"
5557
+ msgstr ""
5558
+
5559
+ #: includes/export/class-wcj-fields-helper.php:308
5560
+ msgid "Stock Status"
5561
+ msgstr ""
5562
+
5563
+ #: includes/export/class-wcj-fields-helper.php:309
5564
+ msgid "Backorders"
5565
+ msgstr ""
5566
+
5567
+ #: includes/export/class-wcj-fields-helper.php:310
5568
+ msgid "Featured"
5569
+ msgstr ""
5570
+
5571
+ #: includes/export/class-wcj-fields-helper.php:311
5572
+ msgid "Visibility"
5573
+ msgstr ""
5574
+
5575
+ #: includes/export/class-wcj-fields-helper.php:312
5576
+ msgid "Price Including Tax"
5577
+ msgstr ""
5578
+
5579
+ #: includes/export/class-wcj-fields-helper.php:313
5580
+ msgid "Price Excluding Tax"
5581
+ msgstr ""
5582
+
5583
+ #: includes/export/class-wcj-fields-helper.php:314
5584
+ msgid "Display Price"
5585
+ msgstr ""
5586
+
5587
+ #: includes/export/class-wcj-fields-helper.php:315
5588
+ msgid "Average Rating"
5589
+ msgstr ""
5590
+
5591
+ #: includes/export/class-wcj-fields-helper.php:316
5592
+ msgid "Rating Count"
5593
+ msgstr ""
5594
+
5595
+ #: includes/export/class-wcj-fields-helper.php:317
5596
+ msgid "Review Count"
5597
+ msgstr ""
5598
+
5599
+ #: includes/export/class-wcj-fields-helper.php:320
5600
+ msgid "Dimensions"
5601
+ msgstr ""
5602
+
5603
+ #: includes/export/class-wcj-fields-helper.php:321
5604
+ msgid "Formatted Name"
5605
+ msgstr ""
5606
+
5607
+ #: includes/export/class-wcj-fields-helper.php:322
5608
+ msgid "Availability"
5609
+ msgstr ""
5610
+
5611
+ #: includes/export/class-wcj-fields-helper.php:323
5612
+ msgid "Availability Class"
5613
+ msgstr ""
5614
+
5615
+ #: includes/functions/wcj-functions-admin.php:114
5616
+ #, php-format
5617
+ msgid ""
5618
+ "<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
5619
+ "version <strong>%s</strong>."
5620
+ msgstr ""
5621
+
5622
+ #: includes/functions/wcj-functions-admin.php:152
5623
+ msgid "Search&hellip;"
5624
+ msgstr ""
5625
+
5626
+ #: includes/functions/wcj-functions-admin.php:192
5627
+ msgid "Enter comma separated list of IDs."
5628
+ msgstr ""
5629
+
5630
+ #: includes/functions/wcj-functions-admin.php:266
5631
+ #: includes/settings/wcj-settings-emails-verification.php:75
5632
+ #: includes/settings/wcj-settings-emails-verification.php:83
5633
+ #: includes/settings/wcj-settings-emails-verification.php:130
5634
+ #, php-format
5635
+ msgid "Replaced value: %s"
5636
+ msgstr ""
5637
+
5638
+ #: includes/functions/wcj-functions-admin.php:266
5639
+ #, php-format
5640
+ msgid "Replaced values: %s"
5641
+ msgstr ""
5642
+
5643
+ #: includes/functions/wcj-functions-admin.php:295
5644
+ msgid "Install Booster Plus to unlock all features"
5645
+ msgstr ""
5646
+
5647
+ #: includes/functions/wcj-functions-admin.php:296
5648
+ #, php-format
5649
+ msgid ""
5650
+ "Some settings fields are locked and you will need %s to modify all locked "
5651
+ "fields."
5652
+ msgstr ""
5653
+
5654
+ #: includes/functions/wcj-functions-admin.php:299
5655
+ msgid "Buy now"
5656
+ msgstr ""
5657
+
5658
+ #: includes/functions/wcj-functions-admin.php:300
5659
+ msgid "Visit Booster Site"
5660
+ msgstr ""
5661
+
5662
+ #: includes/functions/wcj-functions-admin.php:305
5663
+ #, php-format
5664
+ msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
5665
+ msgstr ""
5666
+
5667
+ #: includes/functions/wcj-functions-admin.php:308
5668
+ #, php-format
5669
+ msgid ""
5670
+ "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
5671
+ "option."
5672
+ msgstr ""
5673
+
5674
+ #: includes/functions/wcj-functions-admin.php:311
5675
+ #, php-format
5676
+ msgid "Get Booster Plus to enable \"%s\" option."
5677
+ msgstr ""
5678
+
5679
+ #: includes/functions/wcj-functions-admin.php:314
5680
+ #, php-format
5681
+ msgid ""
5682
+ "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
5683
+ msgstr ""
5684
+
5685
+ #: includes/functions/wcj-functions-admin.php:317
5686
+ #, php-format
5687
+ msgid ""
5688
+ "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
5689
+ msgstr ""
5690
+
5691
+ #: includes/functions/wcj-functions-admin.php:320
5692
+ msgid "Get Booster Plus to change value."
5693
+ msgstr ""
5694
+
5695
+ #: includes/functions/wcj-functions-country.php:167
5696
+ msgid "Afghanistan"
5697
+ msgstr ""
5698
+
5699
+ #: includes/functions/wcj-functions-country.php:168
5700
+ msgid "&#197;land Islands"
5701
+ msgstr ""
5702
+
5703
+ #: includes/functions/wcj-functions-country.php:169
5704
+ msgid "Albania"
5705
+ msgstr ""
5706
+
5707
+ #: includes/functions/wcj-functions-country.php:170
5708
+ msgid "Algeria"
5709
+ msgstr ""
5710
+
5711
+ #: includes/functions/wcj-functions-country.php:171
5712
+ msgid "Andorra"
5713
+ msgstr ""
5714
+
5715
+ #: includes/functions/wcj-functions-country.php:172
5716
+ msgid "Angola"
5717
+ msgstr ""
5718
+
5719
+ #: includes/functions/wcj-functions-country.php:173
5720
+ msgid "Anguilla"
5721
+ msgstr ""
5722
+
5723
+ #: includes/functions/wcj-functions-country.php:174
5724
+ msgid "Antarctica"
5725
+ msgstr ""
5726
+
5727
+ #: includes/functions/wcj-functions-country.php:175
5728
+ msgid "Antigua and Barbuda"
5729
+ msgstr ""
5730
+
5731
+ #: includes/functions/wcj-functions-country.php:176
5732
+ msgid "Argentina"
5733
+ msgstr ""
5734
+
5735
+ #: includes/functions/wcj-functions-country.php:177
5736
+ msgid "Armenia"
5737
+ msgstr ""
5738
+
5739
+ #: includes/functions/wcj-functions-country.php:178
5740
+ msgid "Aruba"
5741
+ msgstr ""
5742
+
5743
+ #: includes/functions/wcj-functions-country.php:179
5744
+ msgid "Australia"
5745
+ msgstr ""
5746
+
5747
+ #: includes/functions/wcj-functions-country.php:180
5748
+ msgid "Austria"
5749
+ msgstr ""
5750
+
5751
+ #: includes/functions/wcj-functions-country.php:181
5752
+ msgid "Azerbaijan"
5753
+ msgstr ""
5754
+
5755
+ #: includes/functions/wcj-functions-country.php:182
5756
+ msgid "Bahamas"
5757
+ msgstr ""
5758
+
5759
+ #: includes/functions/wcj-functions-country.php:183
5760
+ msgid "Bahrain"
5761
+ msgstr ""
5762
+
5763
+ #: includes/functions/wcj-functions-country.php:184
5764
+ msgid "Bangladesh"
5765
+ msgstr ""
5766
+
5767
+ #: includes/functions/wcj-functions-country.php:185
5768
+ msgid "Barbados"
5769
+ msgstr ""
5770
+
5771
+ #: includes/functions/wcj-functions-country.php:186
5772
+ msgid "Belarus"
5773
+ msgstr ""
5774
+
5775
+ #: includes/functions/wcj-functions-country.php:187
5776
+ msgid "Belgium"
5777
+ msgstr ""
5778
+
5779
+ #: includes/functions/wcj-functions-country.php:188
5780
+ msgid "Belau"
5781
+ msgstr ""
5782
+
5783
+ #: includes/functions/wcj-functions-country.php:189
5784
+ msgid "Belize"
5785
+ msgstr ""
5786
+
5787
+ #: includes/functions/wcj-functions-country.php:190
5788
+ msgid "Benin"
5789
+ msgstr ""
5790
+
5791
+ #: includes/functions/wcj-functions-country.php:191
5792
+ msgid "Bermuda"
5793
+ msgstr ""
5794
+
5795
+ #: includes/functions/wcj-functions-country.php:192
5796
+ msgid "Bhutan"
5797
+ msgstr ""
5798
+
5799
+ #: includes/functions/wcj-functions-country.php:193
5800
+ msgid "Bolivia"
5801
+ msgstr ""
5802
+
5803
+ #: includes/functions/wcj-functions-country.php:194
5804
+ msgid "Bonaire, Saint Eustatius and Saba"
5805
+ msgstr ""
5806
+
5807
+ #: includes/functions/wcj-functions-country.php:195
5808
+ msgid "Bosnia and Herzegovina"
5809
+ msgstr ""
5810
+
5811
+ #: includes/functions/wcj-functions-country.php:196
5812
+ msgid "Botswana"
5813
+ msgstr ""
5814
+
5815
+ #: includes/functions/wcj-functions-country.php:197
5816
+ msgid "Bouvet Island"
5817
+ msgstr ""
5818
+
5819
+ #: includes/functions/wcj-functions-country.php:198
5820
+ msgid "Brazil"
5821
+ msgstr ""
5822
+
5823
+ #: includes/functions/wcj-functions-country.php:199
5824
+ msgid "British Indian Ocean Territory"
5825
+ msgstr ""
5826
+
5827
+ #: includes/functions/wcj-functions-country.php:200
5828
+ msgid "British Virgin Islands"
5829
+ msgstr ""
5830
+
5831
+ #: includes/functions/wcj-functions-country.php:201
5832
+ msgid "Brunei"
5833
+ msgstr ""
5834
+
5835
+ #: includes/functions/wcj-functions-country.php:202
5836
+ msgid "Bulgaria"
5837
+ msgstr ""
5838
+
5839
+ #: includes/functions/wcj-functions-country.php:203
5840
+ msgid "Burkina Faso"
5841
+ msgstr ""
5842
+
5843
+ #: includes/functions/wcj-functions-country.php:204
5844
+ msgid "Burundi"
5845
+ msgstr ""
5846
+
5847
+ #: includes/functions/wcj-functions-country.php:205
5848
+ msgid "Cambodia"
5849
+ msgstr ""
5850
+
5851
+ #: includes/functions/wcj-functions-country.php:206
5852
+ msgid "Cameroon"
5853
+ msgstr ""
5854
+
5855
+ #: includes/functions/wcj-functions-country.php:207
5856
+ msgid "Canada"
5857
+ msgstr ""
5858
+
5859
+ #: includes/functions/wcj-functions-country.php:208
5860
+ msgid "Cape Verde"
5861
+ msgstr ""
5862
+
5863
+ #: includes/functions/wcj-functions-country.php:209
5864
+ msgid "Cayman Islands"
5865
+ msgstr ""
5866
+
5867
+ #: includes/functions/wcj-functions-country.php:210
5868
+ msgid "Central African Republic"
5869
+ msgstr ""
5870
+
5871
+ #: includes/functions/wcj-functions-country.php:211
5872
+ msgid "Chad"
5873
+ msgstr ""
5874
+
5875
+ #: includes/functions/wcj-functions-country.php:212
5876
+ msgid "Chile"
5877
+ msgstr ""
5878
+
5879
+ #: includes/functions/wcj-functions-country.php:213
5880
+ msgid "China"
5881
+ msgstr ""
5882
+
5883
+ #: includes/functions/wcj-functions-country.php:214
5884
+ msgid "Christmas Island"
5885
+ msgstr ""
5886
+
5887
+ #: includes/functions/wcj-functions-country.php:215
5888
+ msgid "Cocos (Keeling) Islands"
5889
+ msgstr ""
5890
+
5891
+ #: includes/functions/wcj-functions-country.php:216
5892
+ msgid "Colombia"
5893
+ msgstr ""
5894
+
5895
+ #: includes/functions/wcj-functions-country.php:217
5896
+ msgid "Comoros"
5897
+ msgstr ""
5898
+
5899
+ #: includes/functions/wcj-functions-country.php:218
5900
+ msgid "Congo (Brazzaville)"
5901
+ msgstr ""
5902
+
5903
+ #: includes/functions/wcj-functions-country.php:219
5904
+ msgid "Congo (Kinshasa)"
5905
+ msgstr ""
5906
+
5907
+ #: includes/functions/wcj-functions-country.php:220
5908
+ msgid "Cook Islands"
5909
+ msgstr ""
5910
+
5911
+ #: includes/functions/wcj-functions-country.php:221
5912
+ msgid "Costa Rica"
5913
+ msgstr ""
5914
+
5915
+ #: includes/functions/wcj-functions-country.php:222
5916
+ msgid "Croatia"
5917
+ msgstr ""
5918
+
5919
+ #: includes/functions/wcj-functions-country.php:223
5920
+ msgid "Cuba"
5921
+ msgstr ""
5922
+
5923
+ #: includes/functions/wcj-functions-country.php:224
5924
+ msgid "Cura&Ccedil;ao"
5925
+ msgstr ""
5926
+
5927
+ #: includes/functions/wcj-functions-country.php:225
5928
+ msgid "Cyprus"
5929
+ msgstr ""
5930
+
5931
+ #: includes/functions/wcj-functions-country.php:226
5932
+ msgid "Czech Republic"
5933
+ msgstr ""
5934
+
5935
+ #: includes/functions/wcj-functions-country.php:227
5936
+ msgid "Denmark"
5937
+ msgstr ""
5938
+
5939
+ #: includes/functions/wcj-functions-country.php:228
5940
+ msgid "Djibouti"
5941
+ msgstr ""
5942
+
5943
+ #: includes/functions/wcj-functions-country.php:229
5944
+ msgid "Dominica"
5945
+ msgstr ""
5946
+
5947
+ #: includes/functions/wcj-functions-country.php:230
5948
+ msgid "Dominican Republic"
5949
+ msgstr ""
5950
+
5951
+ #: includes/functions/wcj-functions-country.php:231
5952
+ msgid "Ecuador"
5953
+ msgstr ""
5954
+
5955
+ #: includes/functions/wcj-functions-country.php:232
5956
+ msgid "Egypt"
5957
+ msgstr ""
5958
+
5959
+ #: includes/functions/wcj-functions-country.php:233
5960
+ msgid "El Salvador"
5961
+ msgstr ""
5962
+
5963
+ #: includes/functions/wcj-functions-country.php:234
5964
+ msgid "Equatorial Guinea"
5965
+ msgstr ""
5966
+
5967
+ #: includes/functions/wcj-functions-country.php:235
5968
+ msgid "Eritrea"
5969
+ msgstr ""
5970
+
5971
+ #: includes/functions/wcj-functions-country.php:236
5972
+ msgid "Estonia"
5973
+ msgstr ""
5974
+
5975
+ #: includes/functions/wcj-functions-country.php:237
5976
+ msgid "Ethiopia"
5977
+ msgstr ""
5978
+
5979
+ #: includes/functions/wcj-functions-country.php:238
5980
+ msgid "Falkland Islands"
5981
+ msgstr ""
5982
+
5983
+ #: includes/functions/wcj-functions-country.php:239
5984
+ msgid "Faroe Islands"
5985
+ msgstr ""
5986
+
5987
+ #: includes/functions/wcj-functions-country.php:240
5988
+ msgid "Fiji"
5989
+ msgstr ""
5990
+
5991
+ #: includes/functions/wcj-functions-country.php:241
5992
+ msgid "Finland"
5993
+ msgstr ""
5994
+
5995
+ #: includes/functions/wcj-functions-country.php:242
5996
+ msgid "France"
5997
+ msgstr ""
5998
+
5999
+ #: includes/functions/wcj-functions-country.php:243
6000
+ msgid "French Guiana"
6001
+ msgstr ""
6002
+
6003
+ #: includes/functions/wcj-functions-country.php:244
6004
+ msgid "French Polynesia"
6005
+ msgstr ""
6006
+
6007
+ #: includes/functions/wcj-functions-country.php:245
6008
+ msgid "French Southern Territories"
6009
+ msgstr ""
6010
+
6011
+ #: includes/functions/wcj-functions-country.php:246
6012
+ msgid "Gabon"
6013
+ msgstr ""
6014
+
6015
+ #: includes/functions/wcj-functions-country.php:247
6016
+ msgid "Gambia"
6017
+ msgstr ""
6018
+
6019
+ #: includes/functions/wcj-functions-country.php:248
6020
+ msgid "Georgia"
6021
+ msgstr ""
6022
+
6023
+ #: includes/functions/wcj-functions-country.php:249
6024
+ msgid "Germany"
6025
+ msgstr ""
6026
+
6027
+ #: includes/functions/wcj-functions-country.php:250
6028
+ msgid "Ghana"
6029
+ msgstr ""
6030
+
6031
+ #: includes/functions/wcj-functions-country.php:251
6032
+ msgid "Gibraltar"
6033
+ msgstr ""
6034
+
6035
+ #: includes/functions/wcj-functions-country.php:252
6036
+ msgid "Greece"
6037
+ msgstr ""
6038
+
6039
+ #: includes/functions/wcj-functions-country.php:253
6040
+ msgid "Greenland"
6041
+ msgstr ""
6042
+
6043
+ #: includes/functions/wcj-functions-country.php:254
6044
+ msgid "Grenada"
6045
+ msgstr ""
6046
+
6047
+ #: includes/functions/wcj-functions-country.php:255
6048
+ msgid "Guadeloupe"
6049
+ msgstr ""
6050
+
6051
+ #: includes/functions/wcj-functions-country.php:256
6052
+ msgid "Guatemala"
6053
+ msgstr ""
6054
+
6055
+ #: includes/functions/wcj-functions-country.php:257
6056
+ msgid "Guernsey"
6057
+ msgstr ""
6058
+
6059
+ #: includes/functions/wcj-functions-country.php:258
6060
+ msgid "Guinea"
6061
+ msgstr ""
6062
+
6063
+ #: includes/functions/wcj-functions-country.php:259
6064
+ msgid "Guinea-Bissau"
6065
+ msgstr ""
6066
+
6067
+ #: includes/functions/wcj-functions-country.php:260
6068
+ msgid "Guyana"
6069
+ msgstr ""
6070
+
6071
+ #: includes/functions/wcj-functions-country.php:261
6072
+ msgid "Haiti"
6073
+ msgstr ""
6074
+
6075
+ #: includes/functions/wcj-functions-country.php:262
6076
+ msgid "Heard Island and McDonald Islands"
6077
+ msgstr ""
6078
+
6079
+ #: includes/functions/wcj-functions-country.php:263
6080
+ msgid "Honduras"
6081
+ msgstr ""
6082
+
6083
+ #: includes/functions/wcj-functions-country.php:264
6084
+ msgid "Hong Kong"
6085
+ msgstr ""
6086
+
6087
+ #: includes/functions/wcj-functions-country.php:265
6088
+ msgid "Hungary"
6089
+ msgstr ""
6090
+
6091
+ #: includes/functions/wcj-functions-country.php:266
6092
+ msgid "Iceland"
6093
+ msgstr ""
6094
+
6095
+ #: includes/functions/wcj-functions-country.php:267
6096
+ msgid "India"
6097
+ msgstr ""
6098
+
6099
+ #: includes/functions/wcj-functions-country.php:268
6100
+ msgid "Indonesia"
6101
+ msgstr ""
6102
+
6103
+ #: includes/functions/wcj-functions-country.php:269
6104
+ msgid "Iran"
6105
+ msgstr ""
6106
+
6107
+ #: includes/functions/wcj-functions-country.php:270
6108
+ msgid "Iraq"
6109
+ msgstr ""
6110
+
6111
+ #: includes/functions/wcj-functions-country.php:271
6112
+ msgid "Republic of Ireland"
6113
+ msgstr ""
6114
+
6115
+ #: includes/functions/wcj-functions-country.php:272
6116
+ msgid "Isle of Man"
6117
+ msgstr ""
6118
+
6119
+ #: includes/functions/wcj-functions-country.php:273
6120
+ msgid "Israel"
6121
+ msgstr ""
6122
+
6123
+ #: includes/functions/wcj-functions-country.php:274
6124
+ msgid "Italy"
6125
+ msgstr ""
6126
+
6127
+ #: includes/functions/wcj-functions-country.php:275
6128
+ msgid "Ivory Coast"
6129
+ msgstr ""
6130
+
6131
+ #: includes/functions/wcj-functions-country.php:276
6132
+ msgid "Jamaica"
6133
+ msgstr ""
6134
+
6135
+ #: includes/functions/wcj-functions-country.php:277
6136
+ msgid "Japan"
6137
+ msgstr ""
6138
+
6139
+ #: includes/functions/wcj-functions-country.php:278
6140
+ msgid "Jersey"
6141
+ msgstr ""
6142
+
6143
+ #: includes/functions/wcj-functions-country.php:279
6144
+ msgid "Jordan"
6145
+ msgstr ""
6146
+
6147
+ #: includes/functions/wcj-functions-country.php:280
6148
+ msgid "Kazakhstan"
6149
+ msgstr ""
6150
+
6151
+ #: includes/functions/wcj-functions-country.php:281
6152
+ msgid "Kenya"
6153
+ msgstr ""
6154
+
6155
+ #: includes/functions/wcj-functions-country.php:282
6156
+ msgid "Kiribati"
6157
+ msgstr ""
6158
+
6159
+ #: includes/functions/wcj-functions-country.php:283
6160
+ msgid "Kuwait"
6161
+ msgstr ""
6162
+
6163
+ #: includes/functions/wcj-functions-country.php:284
6164
+ msgid "Kyrgyzstan"
6165
+ msgstr ""
6166
+
6167
+ #: includes/functions/wcj-functions-country.php:285
6168
+ msgid "Laos"
6169
+ msgstr ""
6170
+
6171
+ #: includes/functions/wcj-functions-country.php:286
6172
+ msgid "Latvia"
6173
+ msgstr ""
6174
+
6175
+ #: includes/functions/wcj-functions-country.php:287
6176
+ msgid "Lebanon"
6177
+ msgstr ""
6178
+
6179
+ #: includes/functions/wcj-functions-country.php:288
6180
+ msgid "Lesotho"
6181
+ msgstr ""
6182
+
6183
+ #: includes/functions/wcj-functions-country.php:289
6184
+ msgid "Liberia"
6185
+ msgstr ""
6186
+
6187
+ #: includes/functions/wcj-functions-country.php:290
6188
+ msgid "Libya"
6189
+ msgstr ""
6190
+
6191
+ #: includes/functions/wcj-functions-country.php:291
6192
+ msgid "Liechtenstein"
6193
+ msgstr ""
6194
+
6195
+ #: includes/functions/wcj-functions-country.php:292
6196
+ msgid "Lithuania"
6197
+ msgstr ""
6198
+
6199
+ #: includes/functions/wcj-functions-country.php:293
6200
+ msgid "Luxembourg"
6201
+ msgstr ""
6202
+
6203
+ #: includes/functions/wcj-functions-country.php:294
6204
+ msgid "Macao S.A.R., China"
6205
+ msgstr ""
6206
+
6207
+ #: includes/functions/wcj-functions-country.php:295
6208
+ msgid "Macedonia"
6209
+ msgstr ""
6210
+
6211
+ #: includes/functions/wcj-functions-country.php:296
6212
+ msgid "Madagascar"
6213
+ msgstr ""
6214
+
6215
+ #: includes/functions/wcj-functions-country.php:297
6216
+ msgid "Malawi"
6217
+ msgstr ""
6218
+
6219
+ #: includes/functions/wcj-functions-country.php:298
6220
+ msgid "Malaysia"
6221
+ msgstr ""
6222
+
6223
+ #: includes/functions/wcj-functions-country.php:299
6224
+ msgid "Maldives"
6225
+ msgstr ""
6226
+
6227
+ #: includes/functions/wcj-functions-country.php:300
6228
+ msgid "Mali"
6229
+ msgstr ""
6230
+
6231
+ #: includes/functions/wcj-functions-country.php:301
6232
+ msgid "Malta"
6233
+ msgstr ""
6234
+
6235
+ #: includes/functions/wcj-functions-country.php:302
6236
+ msgid "Marshall Islands"
6237
+ msgstr ""
6238
+
6239
+ #: includes/functions/wcj-functions-country.php:303
6240
+ msgid "Martinique"
6241
+ msgstr ""
6242
+
6243
+ #: includes/functions/wcj-functions-country.php:304
6244
+ msgid "Mauritania"
6245
+ msgstr ""
6246
+
6247
+ #: includes/functions/wcj-functions-country.php:305
6248
+ msgid "Mauritius"
6249
+ msgstr ""
6250
+
6251
+ #: includes/functions/wcj-functions-country.php:306
6252
+ msgid "Mayotte"
6253
+ msgstr ""
6254
+
6255
+ #: includes/functions/wcj-functions-country.php:307
6256
+ msgid "Mexico"
6257
+ msgstr ""
6258
+
6259
+ #: includes/functions/wcj-functions-country.php:308
6260
+ msgid "Micronesia"
6261
+ msgstr ""
6262
+
6263
+ #: includes/functions/wcj-functions-country.php:309
6264
+ msgid "Moldova"
6265
+ msgstr ""
6266
+
6267
+ #: includes/functions/wcj-functions-country.php:310
6268
+ msgid "Monaco"
6269
+ msgstr ""
6270
+
6271
+ #: includes/functions/wcj-functions-country.php:311
6272
+ msgid "Mongolia"
6273
+ msgstr ""
6274
+
6275
+ #: includes/functions/wcj-functions-country.php:312
6276
+ msgid "Montenegro"
6277
+ msgstr ""
6278
+
6279
+ #: includes/functions/wcj-functions-country.php:313
6280
+ msgid "Montserrat"
6281
+ msgstr ""
6282
+
6283
+ #: includes/functions/wcj-functions-country.php:314
6284
+ msgid "Morocco"
6285
+ msgstr ""
6286
+
6287
+ #: includes/functions/wcj-functions-country.php:315
6288
+ msgid "Mozambique"
6289
+ msgstr ""
6290
+
6291
+ #: includes/functions/wcj-functions-country.php:316
6292
+ msgid "Myanmar"
6293
+ msgstr ""
6294
+
6295
+ #: includes/functions/wcj-functions-country.php:317
6296
+ msgid "Namibia"
6297
+ msgstr ""
6298
+
6299
+ #: includes/functions/wcj-functions-country.php:318
6300
+ msgid "Nauru"
6301
+ msgstr ""
6302
+
6303
+ #: includes/functions/wcj-functions-country.php:319
6304
+ msgid "Nepal"
6305
+ msgstr ""
6306
+
6307
+ #: includes/functions/wcj-functions-country.php:320
6308
+ msgid "Netherlands"
6309
+ msgstr ""
6310
+
6311
+ #: includes/functions/wcj-functions-country.php:321
6312
+ msgid "Netherlands Antilles"
6313
+ msgstr ""
6314
+
6315
+ #: includes/functions/wcj-functions-country.php:322
6316
+ msgid "New Caledonia"
6317
+ msgstr ""
6318
+
6319
+ #: includes/functions/wcj-functions-country.php:323
6320
+ msgid "New Zealand"
6321
+ msgstr ""
6322
+
6323
+ #: includes/functions/wcj-functions-country.php:324
6324
+ msgid "Nicaragua"
6325
+ msgstr ""
6326
+
6327
+ #: includes/functions/wcj-functions-country.php:325
6328
+ msgid "Niger"
6329
+ msgstr ""
6330
+
6331
+ #: includes/functions/wcj-functions-country.php:326
6332
+ msgid "Nigeria"
6333
+ msgstr ""
6334
+
6335
+ #: includes/functions/wcj-functions-country.php:327
6336
+ msgid "Niue"
6337
+ msgstr ""
6338
+
6339
+ #: includes/functions/wcj-functions-country.php:328
6340
+ msgid "Norfolk Island"
6341
+ msgstr ""
6342
+
6343
+ #: includes/functions/wcj-functions-country.php:329
6344
+ msgid "North Korea"
6345
+ msgstr ""
6346
+
6347
+ #: includes/functions/wcj-functions-country.php:330
6348
+ msgid "Norway"
6349
+ msgstr ""
6350
+
6351
+ #: includes/functions/wcj-functions-country.php:331
6352
+ msgid "Oman"
6353
+ msgstr ""
6354
+
6355
+ #: includes/functions/wcj-functions-country.php:332
6356
+ msgid "Pakistan"
6357
+ msgstr ""
6358
+
6359
+ #: includes/functions/wcj-functions-country.php:333
6360
+ msgid "Palestinian Territory"
6361
+ msgstr ""
6362
+
6363
+ #: includes/functions/wcj-functions-country.php:334
6364
+ msgid "Panama"
6365
+ msgstr ""
6366
+
6367
+ #: includes/functions/wcj-functions-country.php:335
6368
+ msgid "Papua New Guinea"
6369
+ msgstr ""
6370
+
6371
+ #: includes/functions/wcj-functions-country.php:336
6372
+ msgid "Paraguay"
6373
+ msgstr ""
6374
+
6375
+ #: includes/functions/wcj-functions-country.php:337
6376
+ msgid "Peru"
6377
+ msgstr ""
6378
+
6379
+ #: includes/functions/wcj-functions-country.php:338
6380
+ msgid "Philippines"
6381
+ msgstr ""
6382
+
6383
+ #: includes/functions/wcj-functions-country.php:339
6384
+ msgid "Pitcairn"
6385
+ msgstr ""
6386
+
6387
+ #: includes/functions/wcj-functions-country.php:340
6388
+ msgid "Poland"
6389
+ msgstr ""
6390
+
6391
+ #: includes/functions/wcj-functions-country.php:341
6392
+ msgid "Portugal"
6393
+ msgstr ""
6394
+
6395
+ #: includes/functions/wcj-functions-country.php:342
6396
+ msgid "Qatar"
6397
+ msgstr ""
6398
+
6399
+ #: includes/functions/wcj-functions-country.php:343
6400
+ msgid "Reunion"
6401
+ msgstr ""
6402
+
6403
+ #: includes/functions/wcj-functions-country.php:344
6404
+ msgid "Romania"
6405
+ msgstr ""
6406
+
6407
+ #: includes/functions/wcj-functions-country.php:345
6408
+ msgid "Russia"
6409
+ msgstr ""
6410
+
6411
+ #: includes/functions/wcj-functions-country.php:346
6412
+ msgid "Rwanda"
6413
+ msgstr ""
6414
+
6415
+ #: includes/functions/wcj-functions-country.php:347
6416
+ msgid "Saint Barth&eacute;lemy"
6417
+ msgstr ""
6418
+
6419
+ #: includes/functions/wcj-functions-country.php:348
6420
+ msgid "Saint Helena"
6421
+ msgstr ""
6422
+
6423
+ #: includes/functions/wcj-functions-country.php:349
6424
+ msgid "Saint Kitts and Nevis"
6425
+ msgstr ""
6426
+
6427
+ #: includes/functions/wcj-functions-country.php:350
6428
+ msgid "Saint Lucia"
6429
+ msgstr ""
6430
+
6431
+ #: includes/functions/wcj-functions-country.php:351
6432
+ msgid "Saint Martin (French part)"
6433
+ msgstr ""
6434
+
6435
+ #: includes/functions/wcj-functions-country.php:352
6436
+ msgid "Saint Martin (Dutch part)"
6437
+ msgstr ""
6438
+
6439
+ #: includes/functions/wcj-functions-country.php:353
6440
+ msgid "Saint Pierre and Miquelon"
6441
+ msgstr ""
6442
+
6443
+ #: includes/functions/wcj-functions-country.php:354
6444
+ msgid "Saint Vincent and the Grenadines"
6445
+ msgstr ""
6446
+
6447
+ #: includes/functions/wcj-functions-country.php:355
6448
+ msgid "San Marino"
6449
+ msgstr ""
6450
+
6451
+ #: includes/functions/wcj-functions-country.php:356
6452
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
6453
+ msgstr ""
6454
+
6455
+ #: includes/functions/wcj-functions-country.php:357
6456
+ msgid "Saudi Arabia"
6457
+ msgstr ""
6458
+
6459
+ #: includes/functions/wcj-functions-country.php:358
6460
+ msgid "Senegal"
6461
+ msgstr ""
6462
+
6463
+ #: includes/functions/wcj-functions-country.php:359
6464
+ msgid "Serbia"
6465
+ msgstr ""
6466
+
6467
+ #: includes/functions/wcj-functions-country.php:360
6468
+ msgid "Seychelles"
6469
+ msgstr ""
6470
+
6471
+ #: includes/functions/wcj-functions-country.php:361
6472
+ msgid "Sierra Leone"
6473
+ msgstr ""
6474
+
6475
+ #: includes/functions/wcj-functions-country.php:362
6476
+ msgid "Singapore"
6477
+ msgstr ""
6478
+
6479
+ #: includes/functions/wcj-functions-country.php:363
6480
+ msgid "Slovakia"
6481
+ msgstr ""
6482
+
6483
+ #: includes/functions/wcj-functions-country.php:364
6484
+ msgid "Slovenia"
6485
+ msgstr ""
6486
+
6487
+ #: includes/functions/wcj-functions-country.php:365
6488
+ msgid "Solomon Islands"
6489
+ msgstr ""
6490
+
6491
+ #: includes/functions/wcj-functions-country.php:366
6492
+ msgid "Somalia"
6493
+ msgstr ""
6494
+
6495
+ #: includes/functions/wcj-functions-country.php:367
6496
+ msgid "South Africa"
6497
+ msgstr ""
6498
+
6499
+ #: includes/functions/wcj-functions-country.php:368
6500
+ msgid "South Georgia/Sandwich Islands"
6501
+ msgstr ""
6502
+
6503
+ #: includes/functions/wcj-functions-country.php:369
6504
+ msgid "South Korea"
6505
+ msgstr ""
6506
+
6507
+ #: includes/functions/wcj-functions-country.php:370
6508
+ msgid "South Sudan"
6509
+ msgstr ""
6510
+
6511
+ #: includes/functions/wcj-functions-country.php:371
6512
+ msgid "Spain"
6513
+ msgstr ""
6514
+
6515
+ #: includes/functions/wcj-functions-country.php:372
6516
+ msgid "Sri Lanka"
6517
+ msgstr ""
6518
+
6519
+ #: includes/functions/wcj-functions-country.php:373
6520
+ msgid "Sudan"
6521
+ msgstr ""
6522
+
6523
+ #: includes/functions/wcj-functions-country.php:374
6524
+ msgid "Suriname"
6525
+ msgstr ""
6526
+
6527
+ #: includes/functions/wcj-functions-country.php:375
6528
+ msgid "Svalbard and Jan Mayen"
6529
+ msgstr ""
6530
+
6531
+ #: includes/functions/wcj-functions-country.php:376
6532
+ msgid "Swaziland"
6533
+ msgstr ""
6534
+
6535
+ #: includes/functions/wcj-functions-country.php:377
6536
+ msgid "Sweden"
6537
+ msgstr ""
6538
+
6539
+ #: includes/functions/wcj-functions-country.php:378
6540
+ msgid "Switzerland"
6541
+ msgstr ""
6542
+
6543
+ #: includes/functions/wcj-functions-country.php:379
6544
+ msgid "Syria"
6545
+ msgstr ""
6546
+
6547
+ #: includes/functions/wcj-functions-country.php:380
6548
+ msgid "Taiwan"
6549
+ msgstr ""
6550
+
6551
+ #: includes/functions/wcj-functions-country.php:381
6552
+ msgid "Tajikistan"
6553
+ msgstr ""
6554
+
6555
+ #: includes/functions/wcj-functions-country.php:382
6556
+ msgid "Tanzania"
6557
+ msgstr ""
6558
+
6559
+ #: includes/functions/wcj-functions-country.php:383
6560
+ msgid "Thailand"
6561
+ msgstr ""
6562
+
6563
+ #: includes/functions/wcj-functions-country.php:384
6564
+ msgid "Timor-Leste"
6565
+ msgstr ""
6566
+
6567
+ #: includes/functions/wcj-functions-country.php:385
6568
+ msgid "Togo"
6569
+ msgstr ""
6570
+
6571
+ #: includes/functions/wcj-functions-country.php:386
6572
+ msgid "Tokelau"
6573
+ msgstr ""
6574
+
6575
+ #: includes/functions/wcj-functions-country.php:387
6576
+ msgid "Tonga"
6577
+ msgstr ""
6578
+
6579
+ #: includes/functions/wcj-functions-country.php:388
6580
+ msgid "Trinidad and Tobago"
6581
+ msgstr ""
6582
+
6583
+ #: includes/functions/wcj-functions-country.php:389
6584
+ msgid "Tunisia"
6585
+ msgstr ""
6586
+
6587
+ #: includes/functions/wcj-functions-country.php:390
6588
+ msgid "Turkey"
6589
+ msgstr ""
6590
+
6591
+ #: includes/functions/wcj-functions-country.php:391
6592
+ msgid "Turkmenistan"
6593
+ msgstr ""
6594
+
6595
+ #: includes/functions/wcj-functions-country.php:392
6596
+ msgid "Turks and Caicos Islands"
6597
+ msgstr ""
6598
+
6599
+ #: includes/functions/wcj-functions-country.php:393
6600
+ msgid "Tuvalu"
6601
+ msgstr ""
6602
+
6603
+ #: includes/functions/wcj-functions-country.php:394
6604
+ msgid "Uganda"
6605
+ msgstr ""
6606
+
6607
+ #: includes/functions/wcj-functions-country.php:395
6608
+ msgid "Ukraine"
6609
+ msgstr ""
6610
+
6611
+ #: includes/functions/wcj-functions-country.php:396
6612
+ msgid "United Arab Emirates"
6613
+ msgstr ""
6614
+
6615
+ #: includes/functions/wcj-functions-country.php:397
6616
+ msgid "United Kingdom (UK)"
6617
+ msgstr ""
6618
+
6619
+ #: includes/functions/wcj-functions-country.php:398
6620
+ msgid "United States (US)"
6621
+ msgstr ""
6622
+
6623
+ #: includes/functions/wcj-functions-country.php:399
6624
+ msgid "Uruguay"
6625
+ msgstr ""
6626
+
6627
+ #: includes/functions/wcj-functions-country.php:400
6628
+ msgid "Uzbekistan"
6629
+ msgstr ""
6630
+
6631
+ #: includes/functions/wcj-functions-country.php:401
6632
+ msgid "Vanuatu"
6633
+ msgstr ""
6634
+
6635
+ #: includes/functions/wcj-functions-country.php:402
6636
+ msgid "Vatican"
6637
+ msgstr ""
6638
+
6639
+ #: includes/functions/wcj-functions-country.php:403
6640
+ msgid "Venezuela"
6641
+ msgstr ""
6642
+
6643
+ #: includes/functions/wcj-functions-country.php:404
6644
+ msgid "Vietnam"
6645
+ msgstr ""
6646
+
6647
+ #: includes/functions/wcj-functions-country.php:405
6648
+ msgid "Wallis and Futuna"
6649
+ msgstr ""
6650
+
6651
+ #: includes/functions/wcj-functions-country.php:406
6652
+ msgid "Western Sahara"
6653
+ msgstr ""
6654
+
6655
+ #: includes/functions/wcj-functions-country.php:407
6656
+ msgid "Western Samoa"
6657
+ msgstr ""
6658
+
6659
+ #: includes/functions/wcj-functions-country.php:408
6660
+ msgid "Yemen"
6661
+ msgstr ""
6662
+
6663
+ #: includes/functions/wcj-functions-country.php:409
6664
+ msgid "Zambia"
6665
+ msgstr ""
6666
+
6667
+ #: includes/functions/wcj-functions-country.php:410
6668
+ msgid "Zimbabwe"
6669
+ msgstr ""
6670
+
6671
+ #: includes/functions/wcj-functions-country.php:411
6672
+ msgid "European Union"
6673
+ msgstr ""
6674
+
6675
+ #: includes/functions/wcj-functions-crons.php:24
6676
+ msgid "Update"
6677
+ msgstr ""
6678
+
6679
+ #: includes/functions/wcj-functions-crons.php:27
6680
+ #, php-format
6681
+ msgid "%s every minute"
6682
+ msgstr ""
6683
+
6684
+ #: includes/functions/wcj-functions-crons.php:28
6685
+ #, php-format
6686
+ msgid "%s every 5 minutes"
6687
+ msgstr ""
6688
+
6689
+ #: includes/functions/wcj-functions-crons.php:29
6690
+ #, php-format
6691
+ msgid "%s every 15 minutes"
6692
+ msgstr ""
6693
+
6694
+ #: includes/functions/wcj-functions-crons.php:30
6695
+ #, php-format
6696
+ msgid "%s every 30 minutes"
6697
+ msgstr ""
6698
+
6699
+ #: includes/functions/wcj-functions-crons.php:31
6700
+ #, php-format
6701
+ msgid "%s hourly"
6702
+ msgstr ""
6703
+
6704
+ #: includes/functions/wcj-functions-crons.php:32
6705
+ #, php-format
6706
+ msgid "%s twice daily"
6707
+ msgstr ""
6708
+
6709
+ #: includes/functions/wcj-functions-crons.php:33
6710
+ #, php-format
6711
+ msgid "%s daily"
6712
+ msgstr ""
6713
+
6714
+ #: includes/functions/wcj-functions-crons.php:34
6715
+ #, php-format
6716
+ msgid "%s weekly"
6717
+ msgstr ""
6718
+
6719
+ #: includes/functions/wcj-functions-crons.php:80
6720
+ #, php-format
6721
+ msgid "%s till next run."
6722
+ msgstr ""
6723
+
6724
+ #: includes/functions/wcj-functions-crons.php:82
6725
+ #, php-format
6726
+ msgid "%s seconds till next run."
6727
+ msgstr ""
6728
+
6729
+ #: includes/functions/wcj-functions-crons.php:99
6730
+ msgid "Once weekly"
6731
+ msgstr ""
6732
+
6733
+ #: includes/functions/wcj-functions-crons.php:103
6734
+ msgid "Once every 30 minutes"
6735
+ msgstr ""
6736
+
6737
+ #: includes/functions/wcj-functions-crons.php:107
6738
+ msgid "Once every 15 minutes"
6739
+ msgstr ""
6740
+
6741
+ #: includes/functions/wcj-functions-crons.php:111
6742
+ msgid "Once every 5 minutes"
6743
+ msgstr ""
6744
+
6745
+ #: includes/functions/wcj-functions-crons.php:115
6746
+ msgid "Once a minute"
6747
+ msgstr ""
6748
+
6749
+ #: includes/functions/wcj-functions-exchange-rates.php:69
6750
+ msgid "European Central Bank (ECB)"
6751
+ msgstr ""
6752
+
6753
+ #: includes/functions/wcj-functions-exchange-rates.php:69
6754
+ msgid "recommended"
6755
+ msgstr ""
6756
+
6757
+ #: includes/functions/wcj-functions-exchange-rates.php:70
6758
+ msgid "The Free Currency Converter API"
6759
+ msgstr ""
6760
+
6761
+ #: includes/functions/wcj-functions-exchange-rates.php:71
6762
+ msgid "Bank of England (BOE)"
6763
+ msgstr ""
6764
+
6765
+ #: includes/functions/wcj-functions-exchange-rates.php:72
6766
+ msgid "TCMB"
6767
+ msgstr ""
6768
+
6769
+ #: includes/functions/wcj-functions-exchange-rates.php:73
6770
+ msgid "Coinbase"
6771
+ msgstr ""
6772
+
6773
+ #: includes/functions/wcj-functions-exchange-rates.php:74
6774
+ msgid "CoinMarketCap"
6775
+ msgstr ""
6776
+
6777
+ #: includes/functions/wcj-functions-general.php:652
6778
+ #: includes/settings/wcj-settings-cross-sells.php:73
6779
+ #: includes/settings/wcj-settings-empty-cart.php:47
6780
+ msgid "Before cart"
6781
+ msgstr ""
6782
+
6783
+ #: includes/functions/wcj-functions-general.php:653
6784
+ msgid "Before cart table"
6785
+ msgstr ""
6786
+
6787
+ #: includes/functions/wcj-functions-general.php:654
6788
+ msgid "Before cart contents"
6789
+ msgstr ""
6790
+
6791
+ #: includes/functions/wcj-functions-general.php:655
6792
+ msgid "Cart contents"
6793
+ msgstr ""
6794
+
6795
+ #: includes/functions/wcj-functions-general.php:656
6796
+ msgid "Cart coupon"
6797
+ msgstr ""
6798
+
6799
+ #: includes/functions/wcj-functions-general.php:657
6800
+ msgid "Cart actions"
6801
+ msgstr ""
6802
+
6803
+ #: includes/functions/wcj-functions-general.php:658
6804
+ msgid "After cart contents"
6805
+ msgstr ""
6806
+
6807
+ #: includes/functions/wcj-functions-general.php:659
6808
+ msgid "After cart table"
6809
+ msgstr ""
6810
+
6811
+ #: includes/functions/wcj-functions-general.php:660
6812
+ #: includes/settings/wcj-settings-cross-sells.php:74
6813
+ msgid "Cart collaterals"
6814
+ msgstr ""
6815
+
6816
+ #: includes/functions/wcj-functions-general.php:661
6817
+ #: includes/settings/wcj-settings-cross-sells.php:75
6818
+ #: includes/settings/wcj-settings-empty-cart.php:56
6819
+ msgid "After cart"
6820
+ msgstr ""
6821
+
6822
+ #: includes/functions/wcj-functions-general.php:663
6823
+ msgid "Before cart totals"
6824
+ msgstr ""
6825
+
6826
+ #: includes/functions/wcj-functions-general.php:664
6827
+ #: includes/settings/wcj-settings-empty-cart.php:49
6828
+ msgid "Cart totals: Before shipping"
6829
+ msgstr ""
6830
+
6831
+ #: includes/functions/wcj-functions-general.php:665
6832
+ #: includes/settings/wcj-settings-empty-cart.php:50
6833
+ msgid "Cart totals: After shipping"
6834
+ msgstr ""
6835
+
6836
+ #: includes/functions/wcj-functions-general.php:666
6837
+ #: includes/settings/wcj-settings-empty-cart.php:51
6838
+ msgid "Cart totals: Before order total"
6839
+ msgstr ""
6840
+
6841
+ #: includes/functions/wcj-functions-general.php:667
6842
+ #: includes/settings/wcj-settings-empty-cart.php:52
6843
+ msgid "Cart totals: After order total"
6844
+ msgstr ""
6845
+
6846
+ #: includes/functions/wcj-functions-general.php:668
6847
+ msgid "Proceed to checkout"
6848
+ msgstr ""
6849
+
6850
+ #: includes/functions/wcj-functions-general.php:669
6851
+ msgid "After cart totals"
6852
+ msgstr ""
6853
+
6854
+ #: includes/functions/wcj-functions-general.php:671
6855
+ msgid "Before shipping calculator"
6856
+ msgstr ""
6857
+
6858
+ #: includes/functions/wcj-functions-general.php:672
6859
+ msgid "After shipping calculator"
6860
+ msgstr ""
6861
+
6862
+ #: includes/functions/wcj-functions-general.php:674
6863
+ msgid "If cart is empty"
6864
+ msgstr ""
6865
+
6866
+ #: includes/functions/wcj-functions-invoicing.php:33
6867
+ #, php-format
6868
+ msgid "Current image path: %s."
6869
+ msgstr ""
6870
+
6871
+ #: includes/functions/wcj-functions-invoicing.php:266
6872
+ msgid "Invoice"
6873
+ msgstr ""
6874
+
6875
+ #: includes/functions/wcj-functions-invoicing.php:272
6876
+ msgid "Proforma Invoice"
6877
+ msgstr ""
6878
+
6879
+ #: includes/functions/wcj-functions-invoicing.php:278
6880
+ msgid "Packing Slip"
6881
+ msgstr ""
6882
+
6883
+ #: includes/functions/wcj-functions-invoicing.php:284
6884
+ msgid "Credit Note"
6885
+ msgstr ""
6886
+
6887
+ #: includes/functions/wcj-functions-invoicing.php:294
6888
+ msgid "Custom Document"
6889
+ msgstr ""
6890
+
6891
+ #: includes/functions/wcj-functions-reports.php:22
6892
+ msgid "Daily Total Sum"
6893
+ msgstr ""
6894
+
6895
+ #: includes/functions/wcj-functions-reports.php:23
6896
+ msgid "Daily Total Quantity"
6897
+ msgstr ""
6898
+
6899
+ #: includes/functions/wcj-functions-reports.php:25
6900
+ msgid "Item Title"
6901
+ msgstr ""
6902
+
6903
+ #: includes/functions/wcj-functions-reports.php:26
6904
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:159
6905
+ #: includes/settings/wcj-settings-product-addons.php:157
6906
+ msgid "Quantity"
6907
+ msgstr ""
6908
+
6909
+ #: includes/functions/wcj-functions-reports.php:27
6910
+ msgid "Sum"
6911
+ msgstr ""
6912
+
6913
+ #: includes/functions/wcj-functions-reports.php:29
6914
+ msgid "Last Sale Date"
6915
+ msgstr ""
6916
+
6917
+ #: includes/functions/wcj-functions-reports.php:30
6918
+ msgid "Last Sale Order ID"
6919
+ msgstr ""
6920
+
6921
+ #: includes/functions/wcj-functions-reports.php:31
6922
+ msgid "Last Sale Order Status"
6923
+ msgstr ""
6924
+
6925
+ #: includes/functions/wcj-functions-reports.php:82
6926
+ msgid "Last 14 days"
6927
+ msgstr ""
6928
+
6929
+ #: includes/functions/wcj-functions-reports.php:87
6930
+ msgid "Last 30 days"
6931
+ msgstr ""
6932
+
6933
+ #: includes/functions/wcj-functions-reports.php:92
6934
+ msgid "Last 3 months"
6935
+ msgstr ""
6936
+
6937
+ #: includes/functions/wcj-functions-reports.php:97
6938
+ msgid "Last 6 months"
6939
+ msgstr ""
6940
+
6941
+ #: includes/functions/wcj-functions-reports.php:102
6942
+ msgid "Last 12 months"
6943
+ msgstr ""
6944
+
6945
+ #: includes/functions/wcj-functions-reports.php:107
6946
+ msgid "Last 24 months"
6947
+ msgstr ""
6948
+
6949
+ #: includes/functions/wcj-functions-reports.php:112
6950
+ msgid "Last 36 months"
6951
+ msgstr ""
6952
+
6953
+ #: includes/functions/wcj-functions-reports.php:117
6954
+ msgid "Same days last month"
6955
+ msgstr ""
6956
+
6957
+ #: includes/functions/wcj-functions-reports.php:122
6958
+ msgid "Same days last year"
6959
+ msgstr ""
6960
+
6961
+ #: includes/functions/wcj-functions-reports.php:127
6962
+ msgid "Last year"
6963
+ msgstr ""
6964
+
6965
+ #: includes/functions/wcj-functions-reports.php:132
6966
+ msgid "Yesterday"
6967
+ msgstr ""
6968
+
6969
+ #: includes/functions/wcj-functions-reports.php:137
6970
+ msgid "Today"
6971
+ msgstr ""
6972
+
6973
+ #: includes/functions/wcj-functions-shipping.php:38
6974
+ #, php-format
6975
+ msgid "%s day(s)"
6976
+ msgstr ""
6977
+
6978
+ #: includes/functions/wcj-functions-shipping.php:222
6979
+ #: includes/functions/wcj-functions-shipping.php:279
6980
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:138
6981
+ msgid "You have Free delivery"
6982
+ msgstr ""
6983
+
6984
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:50
6985
+ msgid "Enable Custom Payment"
6986
+ msgstr ""
6987
+
6988
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:57
6989
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:193
6990
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:109
6991
+ msgid "This controls the title which the user sees during checkout."
6992
+ msgstr ""
6993
+
6994
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:58
6995
+ msgid "Custom Payment"
6996
+ msgstr ""
6997
+
6998
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:65
6999
+ msgid "Payment method description that the customer will see on your checkout."
7000
+ msgstr ""
7001
+
7002
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:66
7003
+ msgid "You can add input fields with [wcj_input_field] shortcode."
7004
+ msgstr ""
7005
+
7006
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:67
7007
+ msgid "Custom Payment Description."
7008
+ msgstr ""
7009
+
7010
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:72
7011
+ msgid "Instructions"
7012
+ msgstr ""
7013
+
7014
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:74
7015
+ msgid "Instructions that will be added to the thank you page."
7016
+ msgstr ""
7017
+
7018
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:80
7019
+ msgid "Email Instructions"
7020
+ msgstr ""
7021
+
7022
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:82
7023
+ msgid "Instructions that will be added to the emails."
7024
+ msgstr ""
7025
+
7026
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:88
7027
+ msgid "Icon"
7028
+ msgstr ""
7029
+
7030
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:90
7031
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:16
7032
+ msgid ""
7033
+ "If you want to show an image next to the gateway's name on the frontend, "
7034
+ "enter a URL to an image."
7035
+ msgstr ""
7036
+
7037
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:97
7038
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:57
7039
+ msgid "Minimum order amount"
7040
+ msgstr ""
7041
+
7042
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:99
7043
+ msgid ""
7044
+ "If you want to set minimum order amount (excluding fees) to show this "
7045
+ "gateway on frontend, enter a number here. Set to 0 to disable."
7046
+ msgstr ""
7047
+
7048
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:106
7049
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:59
7050
+ msgid "Enable for shipping methods"
7051
+ msgstr ""
7052
+
7053
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:111
7054
+ msgid ""
7055
+ "If gateway is only available for certain shipping methods, set it up here. "
7056
+ "Leave blank to enable for all methods."
7057
+ msgstr ""
7058
+
7059
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:114
7060
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:66
7061
+ msgid "Select shipping methods"
7062
+ msgstr ""
7063
+
7064
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:118
7065
+ msgid "Enable for virtual orders"
7066
+ msgstr ""
7067
+
7068
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:119
7069
+ msgid "Enable gateway if the order is virtual"
7070
+ msgstr ""
7071
+
7072
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:125
7073
+ #: includes/settings/wcj-settings-order-custom-statuses.php:19
7074
+ msgid "Default Order Status"
7075
+ msgstr ""
7076
+
7077
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:126
7078
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
7079
+ msgstr ""
7080
+
7081
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:133
7082
+ msgid "Send Additional Emails"
7083
+ msgstr ""
7084
+
7085
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:134
7086
+ msgid "Send to Admin"
7087
+ msgstr ""
7088
+
7089
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:140
7090
+ msgid "Send to Customer"
7091
+ msgstr ""
7092
+
7093
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:141
7094
+ msgid ""
7095
+ "This may help if you are using pending or custom default status and not "
7096
+ "getting new order emails."
7097
+ msgstr ""
7098
+
7099
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:147
7100
+ msgid "Custom Return URL (Thank You Page)"
7101
+ msgstr ""
7102
+
7103
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:149
7104
+ msgid "Enter full URL with http(s)."
7105
+ msgstr ""
7106
+
7107
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:150
7108
+ msgid "Optional. Leave blank to use default URL."
7109
+ msgstr ""
7110
+
7111
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:346
7112
+ #: includes/settings/wcj-settings-payment-gateways.php:38
7113
+ msgid "Custom Gateway"
7114
+ msgstr ""
7115
+
7116
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:347
7117
+ msgid "Booster for WooCommerce: Custom Payment Gateway"
7118
+ msgstr ""
7119
+
7120
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:168
7121
+ msgid "Booster: Product Input Fields"
7122
+ msgstr ""
7123
+
7124
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:207
7125
+ msgid "Total number of "
7126
+ msgstr ""
7127
+
7128
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:223
7129
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:398
7130
+ #: includes/settings/wcj-settings-product-input-fields.php:84
7131
+ msgid "Product Input Field"
7132
+ msgstr ""
7133
+
7134
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:469
7135
+ msgid "Wrong file type!"
7136
+ msgstr ""
7137
+
7138
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:477
7139
+ msgid "File is too big!"
7140
+ msgstr ""
7141
+
7142
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:703
7143
+ msgid "Select a country&hellip;"
7144
+ msgstr ""
7145
+
7146
+ #: includes/input-fields/wcj-product-input-fields-options.php:15
7147
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:39
7148
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
7149
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
7150
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:23
7151
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
7152
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
7153
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
7154
+ #: includes/settings/wcj-settings-admin-orders-list.php:57
7155
+ #: includes/settings/wcj-settings-admin-products-list.php:43
7156
+ #: includes/settings/wcj-settings-checkout-core-fields.php:70
7157
+ #: includes/settings/wcj-settings-checkout-files-upload.php:40
7158
+ #: includes/settings/wcj-settings-export.php:70
7159
+ #: includes/settings/wcj-settings-export.php:138
7160
+ #: includes/settings/wcj-settings-export.php:220
7161
+ #: includes/settings/wcj-settings-global-discount.php:50
7162
+ #: includes/settings/wcj-settings-product-by-user.php:149
7163
+ #: includes/settings/wcj-settings-products-xml.php:76
7164
+ msgid "Enabled"
7165
+ msgstr ""
7166
+
7167
+ #: includes/input-fields/wcj-product-input-fields-options.php:22
7168
+ msgid "Set to zero for default order."
7169
+ msgstr ""
7170
+
7171
+ #: includes/input-fields/wcj-product-input-fields-options.php:32
7172
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:91
7173
+ #: includes/settings/wcj-settings-cart-customization.php:50
7174
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:135
7175
+ #: includes/settings/wcj-settings-more-button-labels.php:19
7176
+ #: includes/settings/wcj-settings-product-addons.php:88
7177
+ msgid "Text"
7178
+ msgstr ""
7179
+
7180
+ #: includes/input-fields/wcj-product-input-fields-options.php:33
7181
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:136
7182
+ msgid "Textarea"
7183
+ msgstr ""
7184
+
7185
+ #: includes/input-fields/wcj-product-input-fields-options.php:34
7186
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-numbers.php:14
7187
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:137
7188
+ msgid "Number"
7189
+ msgstr ""
7190
+
7191
+ #: includes/input-fields/wcj-product-input-fields-options.php:35
7192
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
7193
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:138
7194
+ #: includes/settings/wcj-settings-product-addons.php:85
7195
+ msgid "Checkbox"
7196
+ msgstr ""
7197
+
7198
+ #: includes/input-fields/wcj-product-input-fields-options.php:36
7199
+ #: includes/settings/wcj-settings-checkout-files-upload.php:38
7200
+ msgid "File"
7201
+ msgstr ""
7202
+
7203
+ #: includes/input-fields/wcj-product-input-fields-options.php:37
7204
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:139
7205
+ msgid "Datepicker"
7206
+ msgstr ""
7207
+
7208
+ #: includes/input-fields/wcj-product-input-fields-options.php:38
7209
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:140
7210
+ msgid "Weekpicker"
7211
+ msgstr ""
7212
+
7213
+ #: includes/input-fields/wcj-product-input-fields-options.php:39
7214
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:141
7215
+ msgid "Timepicker"
7216
+ msgstr ""
7217
+
7218
+ #: includes/input-fields/wcj-product-input-fields-options.php:40
7219
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:142
7220
+ msgid "Select"
7221
+ msgstr ""
7222
+
7223
+ #: includes/input-fields/wcj-product-input-fields-options.php:41
7224
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:143
7225
+ msgid "Radio"
7226
+ msgstr ""
7227
+
7228
+ #: includes/input-fields/wcj-product-input-fields-options.php:42
7229
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:144
7230
+ msgid "Password"
7231
+ msgstr ""
7232
+
7233
+ #: includes/input-fields/wcj-product-input-fields-options.php:46
7234
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:148
7235
+ msgid "Phone"
7236
+ msgstr ""
7237
+
7238
+ #: includes/input-fields/wcj-product-input-fields-options.php:57
7239
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:134
7240
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:165
7241
+ #: includes/settings/wcj-settings-eu-vat-number.php:27
7242
+ #: includes/settings/wcj-settings-product-addons.php:130
7243
+ msgid "Placeholder"
7244
+ msgstr ""
7245
+
7246
+ #: includes/input-fields/wcj-product-input-fields-options.php:63
7247
+ #: includes/settings/wcj-settings-checkout-core-fields.php:82
7248
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:152
7249
+ #: includes/settings/wcj-settings-checkout-files-upload.php:46
7250
+ #: includes/settings/wcj-settings-eu-vat-number.php:49
7251
+ #: includes/settings/wcj-settings-product-by-user.php:155
7252
+ msgid "Required"
7253
+ msgstr ""
7254
+
7255
+ #: includes/input-fields/wcj-product-input-fields-options.php:69
7256
+ msgid "Message on required"
7257
+ msgstr ""
7258
+
7259
+ #: includes/input-fields/wcj-product-input-fields-options.php:75
7260
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:142
7261
+ #: includes/settings/wcj-settings-product-addons.php:137
7262
+ msgid "HTML Class"
7263
+ msgstr ""
7264
+
7265
+ #: includes/input-fields/wcj-product-input-fields-options.php:91
7266
+ msgid "If checkbox is selected, set value for ON here"
7267
+ msgstr ""
7268
+
7269
+ #: includes/input-fields/wcj-product-input-fields-options.php:92
7270
+ msgid "Checkbox: ON"
7271
+ msgstr ""
7272
+
7273
+ #: includes/input-fields/wcj-product-input-fields-options.php:98
7274
+ msgid "If checkbox is selected, set value for OFF here"
7275
+ msgstr ""
7276
+
7277
+ #: includes/input-fields/wcj-product-input-fields-options.php:99
7278
+ msgid "Checkbox: OFF"
7279
+ msgstr ""
7280
+
7281
+ #: includes/input-fields/wcj-product-input-fields-options.php:105
7282
+ msgid "If checkbox is selected, set default value here"
7283
+ msgstr ""
7284
+
7285
+ #: includes/input-fields/wcj-product-input-fields-options.php:106
7286
+ msgid "Checkbox: Default"
7287
+ msgstr ""
7288
+
7289
+ #: includes/input-fields/wcj-product-input-fields-options.php:110
7290
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:273
7291
+ msgid "Not Checked"
7292
+ msgstr ""
7293
+
7294
+ #: includes/input-fields/wcj-product-input-fields-options.php:111
7295
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:274
7296
+ #: includes/settings/wcj-settings-checkout-customization.php:92
7297
+ msgid "Checked"
7298
+ msgstr ""
7299
+
7300
+ #: includes/input-fields/wcj-product-input-fields-options.php:116
7301
+ msgid ""
7302
+ "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
7303
+ "\". Leave blank to accept all files"
7304
+ msgstr ""
7305
+
7306
+ #: includes/input-fields/wcj-product-input-fields-options.php:117
7307
+ msgid ""
7308
+ "Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target="
7309
+ "\"_blank\">documentation on input accept attribute</a> for valid option "
7310
+ "formats"
7311
+ msgstr ""
7312
+
7313
+ #: includes/input-fields/wcj-product-input-fields-options.php:118
7314
+ msgid "File: Accepted types"
7315
+ msgstr ""
7316
+
7317
+ #: includes/input-fields/wcj-product-input-fields-options.php:120
7318
+ msgid ".jpg,.jpeg,.png"
7319
+ msgstr ""
7320
+
7321
+ #: includes/input-fields/wcj-product-input-fields-options.php:124
7322
+ msgid ""
7323
+ "If file is selected, set max file size here. Set to zero to accept all files"
7324
+ msgstr ""
7325
+
7326
+ #: includes/input-fields/wcj-product-input-fields-options.php:125
7327
+ msgid "File: Max size"
7328
+ msgstr ""
7329
+
7330
+ #: includes/input-fields/wcj-product-input-fields-options.php:131
7331
+ msgid ""
7332
+ "If datepicker/weekpicker is selected, set date format here. Visit <a href="
7333
+ "\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank"
7334
+ "\">documentation on date and time formatting</a> for valid date formats"
7335
+ msgstr ""
7336
+
7337
+ #: includes/input-fields/wcj-product-input-fields-options.php:132
7338
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:280
7339
+ msgid "Leave blank to use your current WordPress format"
7340
+ msgstr ""
7341
+
7342
+ #: includes/input-fields/wcj-product-input-fields-options.php:133
7343
+ msgid "Datepicker/Weekpicker: Date format"
7344
+ msgstr ""
7345
+
7346
+ #: includes/input-fields/wcj-product-input-fields-options.php:139
7347
+ msgid "If datepicker/weekpicker is selected, set min date (in days) here"
7348
+ msgstr ""
7349
+
7350
+ #: includes/input-fields/wcj-product-input-fields-options.php:140
7351
+ msgid "Datepicker/Weekpicker: Min date"
7352
+ msgstr ""
7353
+
7354
+ #: includes/input-fields/wcj-product-input-fields-options.php:146
7355
+ msgid "If datepicker/weekpicker is selected, set max date (in days) here"
7356
+ msgstr ""
7357
+
7358
+ #: includes/input-fields/wcj-product-input-fields-options.php:147
7359
+ msgid "Datepicker/Weekpicker: Max date"
7360
+ msgstr ""
7361
+
7362
+ #: includes/input-fields/wcj-product-input-fields-options.php:153
7363
+ msgid ""
7364
+ "If datepicker/weekpicker is selected, set if you want to add year selector"
7365
+ msgstr ""
7366
+
7367
+ #: includes/input-fields/wcj-product-input-fields-options.php:154
7368
+ msgid "Datepicker/Weekpicker: Change year"
7369
+ msgstr ""
7370
+
7371
+ #: includes/input-fields/wcj-product-input-fields-options.php:160
7372
+ msgid ""
7373
+ "If datepicker/weekpicker is selected, and year selector is enabled, set year "
7374
+ "range here"
7375
+ msgstr ""
7376
+
7377
+ #: includes/input-fields/wcj-product-input-fields-options.php:161
7378
+ msgid "Datepicker/Weekpicker: Year range"
7379
+ msgstr ""
7380
+
7381
+ #: includes/input-fields/wcj-product-input-fields-options.php:168
7382
+ msgid "If datepicker/weekpicker is selected, set first week day here"
7383
+ msgstr ""
7384
+
7385
+ #: includes/input-fields/wcj-product-input-fields-options.php:169
7386
+ msgid "Datepicker/Weekpicker: First week day"
7387
+ msgstr ""
7388
+
7389
+ #: includes/input-fields/wcj-product-input-fields-options.php:173
7390
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:318
7391
+ msgid "Sunday"
7392
+ msgstr ""
7393
+
7394
+ #: includes/input-fields/wcj-product-input-fields-options.php:174
7395
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:319
7396
+ msgid "Monday"
7397
+ msgstr ""
7398
+
7399
+ #: includes/input-fields/wcj-product-input-fields-options.php:175
7400
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:320
7401
+ msgid "Tuesday"
7402
+ msgstr ""
7403
+
7404
+ #: includes/input-fields/wcj-product-input-fields-options.php:176
7405
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:321
7406
+ msgid "Wednesday"
7407
+ msgstr ""
7408
+
7409
+ #: includes/input-fields/wcj-product-input-fields-options.php:177
7410
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:322
7411
+ msgid "Thursday"
7412
+ msgstr ""
7413
+
7414
+ #: includes/input-fields/wcj-product-input-fields-options.php:178
7415
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:323
7416
+ msgid "Friday"
7417
+ msgstr ""
7418
+
7419
+ #: includes/input-fields/wcj-product-input-fields-options.php:179
7420
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:324
7421
+ msgid "Saturday"
7422
+ msgstr ""
7423
+
7424
+ #: includes/input-fields/wcj-product-input-fields-options.php:184
7425
+ msgid ""
7426
+ "If timepicker is selected, set time format here. Visit <a href=\"http://"
7427
+ "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7428
+ "valid time formats"
7429
+ msgstr ""
7430
+
7431
+ #: includes/input-fields/wcj-product-input-fields-options.php:185
7432
+ msgid "Timepicker: Time format"
7433
+ msgstr ""
7434
+
7435
+ #: includes/input-fields/wcj-product-input-fields-options.php:191
7436
+ msgid ""
7437
+ "If timepicker is selected, set min time here. Visit <a href=\"http://"
7438
+ "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7439
+ "valid option formats"
7440
+ msgstr ""
7441
+
7442
+ #: includes/input-fields/wcj-product-input-fields-options.php:192
7443
+ msgid "Timepicker: Min Time"
7444
+ msgstr ""
7445
+
7446
+ #: includes/input-fields/wcj-product-input-fields-options.php:198
7447
+ msgid ""
7448
+ "If timepicker is selected, set max time here. Visit <a href=\"http://"
7449
+ "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
7450
+ "valid option formats"
7451
+ msgstr ""
7452
+
7453
+ #: includes/input-fields/wcj-product-input-fields-options.php:199
7454
+ msgid "Timepicker: Max Time"
7455
+ msgstr ""
7456
+
7457
+ #: includes/input-fields/wcj-product-input-fields-options.php:205
7458
+ msgid "If timepicker is selected, set interval (in minutes) here"
7459
+ msgstr ""
7460
+
7461
+ #: includes/input-fields/wcj-product-input-fields-options.php:206
7462
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:335
7463
+ msgid "Timepicker: Interval"
7464
+ msgstr ""
7465
+
7466
+ #: includes/input-fields/wcj-product-input-fields-options.php:212
7467
+ msgid "If select/radio is selected, set options here. One option per line"
7468
+ msgstr ""
7469
+
7470
+ #: includes/input-fields/wcj-product-input-fields-options.php:213
7471
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:223
7472
+ msgid "Select/Radio: Options"
7473
+ msgstr ""
7474
+
7475
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:60
7476
+ msgid "Invoices successfully renumerated!"
7477
+ msgstr ""
7478
+
7479
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
7480
+ msgid "Please select at least one order status."
7481
+ msgstr ""
7482
+
7483
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:67
7484
+ msgid "Booster - Renumerate Invoices"
7485
+ msgstr ""
7486
+
7487
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:68
7488
+ msgid ""
7489
+ "The tool renumerates invoices from choosen date. Invoice number format is "
7490
+ "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
7491
+ "Numbering."
7492
+ msgstr ""
7493
+
7494
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:75
7495
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
7496
+ msgid "Start Date"
7497
+ msgstr ""
7498
+
7499
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
7500
+ msgid "Date to start renumerating. Leave blank to renumerate all invoices."
7501
+ msgstr ""
7502
+
7503
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:82
7504
+ msgid "End Date"
7505
+ msgstr ""
7506
+
7507
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
7508
+ msgid "Date to end renumerating. Leave blank to renumerate all invoices."
7509
+ msgstr ""
7510
+
7511
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:89
7512
+ msgid "Start Number"
7513
+ msgstr ""
7514
+
7515
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:91
7516
+ msgid ""
7517
+ "Counter to start renumerating. Leave 0 to continue from current counter."
7518
+ msgstr ""
7519
+
7520
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:96
7521
+ msgid "Delete All"
7522
+ msgstr ""
7523
+
7524
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:98
7525
+ msgid "Clear all invoices before renumerating"
7526
+ msgstr ""
7527
+
7528
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:110
7529
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:135
7530
+ msgid "Document Type"
7531
+ msgstr ""
7532
+
7533
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
7534
+ msgid "Order Statuses"
7535
+ msgstr ""
7536
+
7537
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:123
7538
+ msgid "Renumerate invoices"
7539
+ msgstr ""
7540
+
7541
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:135
7542
+ msgid "Results"
7543
+ msgstr ""
7544
+
7545
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:216
7546
+ #, php-format
7547
+ msgid "Total documents created: %d"
7548
+ msgstr ""
7549
+
7550
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:217
7551
+ #, php-format
7552
+ msgid "Total documents deleted: %d"
7553
+ msgstr ""
7554
+
7555
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:69
7556
+ #, php-format
7557
+ msgid ""
7558
+ "This option is disabled with \"Disable Saving PDFs in PHP directory for "
7559
+ "temporary files\" checkbox in <a href=\"%s\" target=\"_blank\">WooCommerce > "
7560
+ "Settings > Booster > PDF Invoicing & Packing Slips > Advanced</a>."
7561
+ msgstr ""
7562
+
7563
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:80
7564
+ msgid "Sorry, but something went wrong..."
7565
+ msgstr ""
7566
+
7567
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:86
7568
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:107
7569
+ msgid "Please fill year and month values."
7570
+ msgstr ""
7571
+
7572
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:130
7573
+ msgid "Month"
7574
+ msgstr ""
7575
+
7576
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:142
7577
+ msgid "Display monthly documents table"
7578
+ msgstr ""
7579
+
7580
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:148
7581
+ msgid "Download all monthly documents PDFs in single ZIP file"
7582
+ msgstr ""
7583
+
7584
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:154
7585
+ msgid "Download monthly documents CSV"
7586
+ msgstr ""
7587
+
7588
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
7589
+ #, php-format
7590
+ msgid "No documents (%s) found for %d-%02d."
7591
+ msgstr ""
7592
+
7593
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:25
7594
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
7595
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
7596
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:63
7597
+ #: includes/settings/wcj-settings-multicurrency.php:162
7598
+ #: includes/settings/wcj-settings-order-min-amount.php:69
7599
+ #: includes/settings/wcj-settings-price-by-country.php:160
7600
+ #: includes/settings/wcj-settings-price-by-user-role.php:98
7601
+ msgid "Advanced"
7602
+ msgstr ""
7603
+
7604
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:38
7605
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:62
7606
+ msgid "Document Number"
7607
+ msgstr ""
7608
+
7609
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:39
7610
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:63
7611
+ msgid "Document Date"
7612
+ msgstr ""
7613
+
7614
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:41
7615
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:65
7616
+ msgid "Customer Country"
7617
+ msgstr ""
7618
+
7619
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:42
7620
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:66
7621
+ msgid "Customer VAT ID"
7622
+ msgstr ""
7623
+
7624
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:43
7625
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:67
7626
+ msgid "Tax %"
7627
+ msgstr ""
7628
+
7629
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:44
7630
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:68
7631
+ msgid "Order Total Excl. Tax"
7632
+ msgstr ""
7633
+
7634
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:45
7635
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:69
7636
+ msgid "Order Taxes"
7637
+ msgstr ""
7638
+
7639
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:48
7640
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:78
7641
+ msgid "Payment Gateway"
7642
+ msgstr ""
7643
+
7644
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:49
7645
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:79
7646
+ msgid "Refunds"
7647
+ msgstr ""
7648
+
7649
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:70
7650
+ msgid "Cart Total Excl. Tax"
7651
+ msgstr ""
7652
+
7653
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:71
7654
+ msgid "Cart Tax"
7655
+ msgstr ""
7656
+
7657
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:72
7658
+ msgid "Cart Tax %"
7659
+ msgstr ""
7660
+
7661
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:73
7662
+ msgid "Shipping Total Excl. Tax"
7663
+ msgstr ""
7664
+
7665
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:74
7666
+ msgid "Shipping Tax"
7667
+ msgstr ""
7668
+
7669
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:75
7670
+ msgid "Shipping Tax %"
7671
+ msgstr ""
7672
+
7673
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
7674
+ msgid "Display & Misc."
7675
+ msgstr ""
7676
+
7677
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:131
7678
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:307
7679
+ msgid "View"
7680
+ msgstr ""
7681
+
7682
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:150
7683
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:335
7684
+ msgid "Create"
7685
+ msgstr ""
7686
+
7687
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:227
7688
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:98
7689
+ #, php-format
7690
+ msgid "Your %s:"
7691
+ msgstr ""
7692
+
7693
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:272
7694
+ msgid "Booster: PDF Invoices"
7695
+ msgstr ""
7696
+
7697
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:292
7698
+ msgid "You have no document types enabled."
7699
+ msgstr ""
7700
+
7701
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:341
7702
+ msgid ""
7703
+ "In case of partial refund, you need to reload the page to see created "
7704
+ "document in this meta box."
7705
+ msgstr ""
7706
+
7707
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
7708
+ #: includes/settings/wcj-settings-custom-css.php:25
7709
+ #: includes/settings/wcj-settings-custom-js.php:25
7710
+ msgid "Footer"
7711
+ msgstr ""
7712
+
7713
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
7714
+ #: includes/settings/wcj-settings-custom-css.php:24
7715
+ #: includes/settings/wcj-settings-custom-js.php:24
7716
+ msgid "Header"
7717
+ msgstr ""
7718
+
7719
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
7720
+ msgid "Numbering"
7721
+ msgstr ""
7722
+
7723
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
7724
+ msgid "Page Settings"
7725
+ msgstr ""
7726
+
7727
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
7728
+ msgid "Styling"
7729
+ msgstr ""
7730
+
7731
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
7732
+ #: includes/settings/wcj-settings-template-editor.php:20
7733
+ msgid "Templates"
7734
+ msgstr ""
7735
+
7736
+ #: includes/plus/class-wcj-plus-site-key-manager.php:79
7737
+ #, php-format
7738
+ msgid "Status last checked at %s."
7739
+ msgstr ""
7740
+
7741
+ #: includes/plus/class-wcj-plus-site-key-manager.php:80
7742
+ #, php-format
7743
+ msgid "Cron scheduled at %s."
7744
+ msgstr ""
7745
+
7746
+ #: includes/plus/class-wcj-plus-site-key-manager.php:81
7747
+ #, php-format
7748
+ msgid "Cron last run at %s."
7749
+ msgstr ""
7750
+
7751
+ #: includes/plus/class-wcj-plus-site-key-manager.php:122
7752
+ msgid "No key set."
7753
+ msgstr ""
7754
+
7755
+ #: includes/plus/class-wcj-plus-site-key-manager.php:123
7756
+ #, php-format
7757
+ msgid ""
7758
+ "To get the key, please visit <a target=\"_blank\" href=\"%s\">your account "
7759
+ "page at %s</a>."
7760
+ msgstr ""
7761
+
7762
+ #: includes/plus/class-wcj-plus-site-key-manager.php:126
7763
+ #, php-format
7764
+ msgid "No response from server. Please <a href=\"%s\">try again</a> later."
7765
+ msgstr ""
7766
+
7767
+ #: includes/plus/class-wcj-plus-site-key-manager.php:128
7768
+ #, php-format
7769
+ msgid "Server error. Please <a href=\"%s\">try again</a> later."
7770
+ msgstr ""
7771
+
7772
+ #: includes/plus/class-wcj-plus-site-key-section.php:46
7773
+ msgid "Manage site key"
7774
+ msgstr ""
7775
+
7776
+ #: includes/plus/class-wcj-plus-site-key-section.php:59
7777
+ #: includes/plus/class-wcj-plus-site-key-section.php:73
7778
+ #: includes/plus/class-wcj-plus-site-key-section.php:81
7779
+ msgid "Site Key"
7780
+ msgstr ""
7781
+
7782
+ #: includes/plus/class-wcj-plus-site-key-section.php:74
7783
+ msgid ""
7784
+ "This section lets you manage site key for paid Booster Plus for WooCommerce "
7785
+ "plugin."
7786
+ msgstr ""
7787
+
7788
+ #: includes/plus/class-wcj-plus-site-key-section.php:75
7789
+ #, php-format
7790
+ msgid ""
7791
+ "To get the key, please go to <a target=\"_blank\" href=\"%s\">your account "
7792
+ "page at %s</a>."
7793
+ msgstr ""
7794
+
7795
+ #: includes/plus/class-wcj-plus-site-key-section.php:78
7796
+ msgid "Check site key now"
7797
+ msgstr ""
7798
+
7799
+ #: includes/plus/class-wcj-plus-site-key-section.php:82
7800
+ #, php-format
7801
+ msgid "Site URL: %s"
7802
+ msgstr ""
7803
+
7804
+ #: includes/plus/lib/plugin-update-checker/github-checker.php:119
7805
+ msgid "There is no changelog available."
7806
+ msgstr ""
7807
+
7808
+ #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:763
7809
+ msgid "Check for updates"
7810
+ msgstr ""
7811
+
7812
+ #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:807
7813
+ msgid "This plugin is up to date."
7814
+ msgstr ""
7815
+
7816
+ #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:809
7817
+ msgid "A new version of this plugin is available."
7818
+ msgstr ""
7819
+
7820
+ #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:811
7821
+ #, php-format
7822
+ msgid "Unknown update checker status \"%s\""
7823
+ msgstr ""
7824
+
7825
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:34
7826
+ msgid "Country groups successfully generated."
7827
+ msgstr ""
7828
+
7829
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:37
7830
+ msgid "Country groups generation failed."
7831
+ msgstr ""
7832
+
7833
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:111
7834
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:67
7835
+ #: includes/settings/wcj-settings-price-by-country.php:338
7836
+ msgid "Make empty price"
7837
+ msgstr ""
7838
+
7839
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:215
7840
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:17
7841
+ #: includes/settings/wcj-settings-add-to-cart.php:50
7842
+ #: includes/settings/wcj-settings-price-by-country.php:232
7843
+ #: includes/settings/wcj-settings-price-by-country.php:233
7844
+ #: includes/settings/wcj-settings-price-by-country.php:238
7845
+ #: includes/settings/wcj-settings-price-by-country.php:286
7846
+ #: includes/settings/wcj-settings-price-by-country.php:329
7847
+ msgid "Group"
7848
+ msgstr ""
7849
+
7850
+ #: includes/reports/class-wcj-currency-reports.php:38
7851
+ msgid "Reports currency:"
7852
+ msgstr ""
7853
+
7854
+ #: includes/reports/class-wcj-currency-reports.php:40
7855
+ #: includes/reports/class-wcj-currency-reports.php:78
7856
+ msgid "Show reports only in"
7857
+ msgstr ""
7858
+
7859
+ #: includes/reports/wcj-class-reports-customers.php:38
7860
+ msgid "No customers found."
7861
+ msgstr ""
7862
+
7863
+ #: includes/reports/wcj-class-reports-customers.php:79
7864
+ msgid "Non Available"
7865
+ msgstr ""
7866
+
7867
+ #: includes/reports/wcj-class-reports-customers.php:92
7868
+ #: includes/settings/wcj-settings-offer-price.php:206
7869
+ msgid "Customer Name"
7870
+ msgstr ""
7871
+
7872
+ #: includes/reports/wcj-class-reports-customers.php:94
7873
+ msgid "Total Spent"
7874
+ msgstr ""
7875
+
7876
+ #: includes/reports/wcj-class-reports-customers.php:134
7877
+ msgid "Total customers"
7878
+ msgstr ""
7879
+
7880
+ #: includes/reports/wcj-class-reports-customers.php:138
7881
+ msgid "Country Code"
7882
+ msgstr ""
7883
+
7884
+ #: includes/reports/wcj-class-reports-customers.php:139
7885
+ msgid "Customers Count"
7886
+ msgstr ""
7887
+
7888
+ #: includes/reports/wcj-class-reports-customers.php:140
7889
+ msgid "Percent of total"
7890
+ msgstr ""
7891
+
7892
+ #: includes/reports/wcj-class-reports-customers.php:162
7893
+ msgid "Report for:"
7894
+ msgstr ""
7895
+
7896
+ #: includes/reports/wcj-class-reports-monthly-sales.php:37
7897
+ msgid "Currency rates saved."
7898
+ msgstr ""
7899
+
7900
+ #: includes/reports/wcj-class-reports-monthly-sales.php:41
7901
+ msgid "Currency rates deleted."
7902
+ msgstr ""
7903
+
7904
+ #: includes/reports/wcj-class-reports-monthly-sales.php:84
7905
+ msgid "Days"
7906
+ msgstr ""
7907
+
7908
+ #: includes/reports/wcj-class-reports-monthly-sales.php:85
7909
+ msgid "Total Orders"
7910
+ msgstr ""
7911
+
7912
+ #: includes/reports/wcj-class-reports-monthly-sales.php:86
7913
+ msgid "Orders Average / Day"
7914
+ msgstr ""
7915
+
7916
+ #: includes/reports/wcj-class-reports-monthly-sales.php:87
7917
+ #: includes/reports/wcj-class-reports-sales.php:315
7918
+ msgid "Total Sum"
7919
+ msgstr ""
7920
+
7921
+ #: includes/reports/wcj-class-reports-monthly-sales.php:88
7922
+ msgid "Total Sum (excl. TAX)"
7923
+ msgstr ""
7924
+
7925
+ #: includes/reports/wcj-class-reports-monthly-sales.php:89
7926
+ msgid "Average / Order (excl. TAX)"
7927
+ msgstr ""
7928
+
7929
+ #: includes/reports/wcj-class-reports-monthly-sales.php:90
7930
+ msgid "Average / Day (excl. TAX)"
7931
+ msgstr ""
7932
+
7933
+ #: includes/reports/wcj-class-reports-monthly-sales.php:91
7934
+ msgid "Currency Rates"
7935
+ msgstr ""
7936
+
7937
+ #: includes/reports/wcj-class-reports-monthly-sales.php:92
7938
+ msgid "Orders by Currency"
7939
+ msgstr ""
7940
+
7941
+ #: includes/reports/wcj-class-reports-monthly-sales.php:200
7942
+ #: includes/reports/wcj-class-reports-monthly-sales.php:213
7943
+ #: includes/reports/wcj-class-reports-monthly-sales.php:280
7944
+ #: includes/reports/wcj-class-reports-monthly-sales.php:282
7945
+ #, php-format
7946
+ msgid "Forecast: %s"
7947
+ msgstr ""
7948
+
7949
+ #: includes/reports/wcj-class-reports-monthly-sales.php:233
7950
+ msgid "Grab average rate"
7951
+ msgstr ""
7952
+
7953
+ #: includes/reports/wcj-class-reports-monthly-sales.php:285
7954
+ msgid "Totals"
7955
+ msgstr ""
7956
+
7957
+ #: includes/reports/wcj-class-reports-monthly-sales.php:329
7958
+ msgid "Report currency"
7959
+ msgstr ""
7960
+
7961
+ #: includes/reports/wcj-class-reports-monthly-sales.php:344
7962
+ #, php-format
7963
+ msgid "Report generated in: %s s"
7964
+ msgstr ""
7965
+
7966
+ #: includes/reports/wcj-class-reports-monthly-sales.php:347
7967
+ msgid "Save Currency Rates"
7968
+ msgstr ""
7969
+
7970
+ #: includes/reports/wcj-class-reports-monthly-sales.php:351
7971
+ msgid "Reset Currency Rates"
7972
+ msgstr ""
7973
+
7974
+ #: includes/reports/wcj-class-reports-sales-daily.php:164
7975
+ #: includes/reports/wcj-class-reports-sales-gateways.php:114
7976
+ #: includes/reports/wcj-class-reports-sales.php:324
7977
+ msgid "Reports Settings"
7978
+ msgstr ""
7979
+
7980
+ #: includes/reports/wcj-class-reports-sales-daily.php:181
7981
+ #: includes/reports/wcj-class-reports-sales-gateways.php:131
7982
+ msgid "From:"
7983
+ msgstr ""
7984
+
7985
+ #: includes/reports/wcj-class-reports-sales-daily.php:184
7986
+ #: includes/reports/wcj-class-reports-sales-gateways.php:134
7987
+ msgid "To:"
7988
+ msgstr ""
7989
+
7990
+ #: includes/reports/wcj-class-reports-sales-daily.php:187
7991
+ msgid "Product:"
7992
+ msgstr ""
7993
+
7994
+ #: includes/reports/wcj-class-reports-sales-daily.php:276
7995
+ #, php-format
7996
+ msgid "Total: %d"
7997
+ msgstr ""
7998
+
7999
+ #: includes/reports/wcj-class-reports-sales-daily.php:280
8000
+ #: includes/reports/wcj-class-reports-sales-daily.php:284
8001
+ #, php-format
8002
+ msgid "Total: %s"
8003
+ msgstr ""
8004
+
8005
+ #: includes/reports/wcj-class-reports-sales-daily.php:296
8006
+ #: includes/reports/wcj-class-reports-sales-gateways.php:158
8007
+ #, php-format
8008
+ msgid "Total orders: %d"
8009
+ msgstr ""
8010
+
8011
+ #: includes/reports/wcj-class-reports-sales-daily.php:297
8012
+ #: includes/reports/wcj-class-reports-sales-gateways.php:160
8013
+ #: includes/reports/wcj-class-reports-sales.php:349
8014
+ msgid "No sales data for current period."
8015
+ msgstr ""
8016
+
8017
+ #: includes/reports/wcj-class-reports-sales-gateways.php:84
8018
+ #: includes/reports/wcj-class-reports-stock.php:108
8019
+ #: includes/reports/wcj-class-reports-stock.php:183
8020
+ msgid "N/A"
8021
+ msgstr ""
8022
+
8023
+ #: includes/reports/wcj-class-reports-sales-gateways.php:153
8024
+ msgid "Gateway"
8025
+ msgstr ""
8026
+
8027
+ #: includes/reports/wcj-class-reports-sales.php:128
8028
+ msgid "Variation"
8029
+ msgstr ""
8030
+
8031
+ #: includes/reports/wcj-class-reports-sales.php:198
8032
+ msgid "Last Sale"
8033
+ msgstr ""
8034
+
8035
+ #: includes/reports/wcj-class-reports-sales.php:199
8036
+ msgid "Total"
8037
+ msgstr ""
8038
+
8039
+ #: includes/reports/wcj-class-reports-sales.php:311
8040
+ msgid "Total Items"
8041
+ msgstr ""
8042
+
8043
+ #: includes/reports/wcj-class-reports-sales.php:319
8044
+ msgid "Total Profit"
8045
+ msgstr ""
8046
+
8047
+ #: includes/reports/wcj-class-reports-sales.php:344
8048
+ msgid "Filter products"
8049
+ msgstr ""
8050
+
8051
+ #: includes/reports/wcj-class-reports-stock.php:33
8052
+ msgid "All Products on Stock"
8053
+ msgstr ""
8054
+
8055
+ #: includes/reports/wcj-class-reports-stock.php:34
8056
+ msgid "Report shows all products that are on stock and some sales info."
8057
+ msgstr ""
8058
+
8059
+ #: includes/reports/wcj-class-reports-stock.php:38
8060
+ msgid "Understocked"
8061
+ msgstr ""
8062
+
8063
+ #: includes/reports/wcj-class-reports-stock.php:39
8064
+ msgid ""
8065
+ "Report shows all products that are low in stock calculated on product's "
8066
+ "sales data."
8067
+ msgstr ""
8068
+
8069
+ #: includes/reports/wcj-class-reports-stock.php:40
8070
+ msgid ""
8071
+ "Threshold for minimum stock is equal to half of the sales in selected days "
8072
+ "range."
8073
+ msgstr ""
8074
+
8075
+ #: includes/reports/wcj-class-reports-stock.php:44
8076
+ msgid "Overstocked"
8077
+ msgstr ""
8078
+
8079
+ #: includes/reports/wcj-class-reports-stock.php:45
8080
+ msgid ""
8081
+ "Report shows all products that are on stock, but have no sales in selected "
8082
+ "period. Only products added before the start date of selected period are "
8083
+ "accounted."
8084
+ msgstr ""
8085
+
8086
+ #: includes/reports/wcj-class-reports-stock.php:273
8087
+ msgid "Stock price"
8088
+ msgstr ""
8089
+
8090
+ #: includes/reports/wcj-class-reports-stock.php:274
8091
+ msgid "Total stock price"
8092
+ msgstr ""
8093
+
8094
+ #: includes/reports/wcj-class-reports-stock.php:275
8095
+ msgid "Last sale"
8096
+ msgstr ""
8097
+
8098
+ #: includes/reports/wcj-class-reports-stock.php:276
8099
+ #, php-format
8100
+ msgid "Sales in last %s days"
8101
+ msgstr ""
8102
+
8103
+ #: includes/reports/wcj-class-reports-stock.php:277
8104
+ msgid "Total sales"
8105
+ msgstr ""
8106
+
8107
+ #: includes/reports/wcj-class-reports-stock.php:279
8108
+ msgid "Stock to minimum"
8109
+ msgstr ""
8110
+
8111
+ #: includes/reports/wcj-class-reports-stock.php:308
8112
+ msgid "purchase price:"
8113
+ msgstr ""
8114
+
8115
+ #: includes/reports/wcj-class-reports-stock.php:312
8116
+ msgid "stock purchase price:"
8117
+ msgstr ""
8118
+
8119
+ #: includes/reports/wcj-class-reports-stock.php:317
8120
+ msgid "No sales yet"
8121
+ msgstr ""
8122
+
8123
+ #: includes/reports/wcj-class-reports-stock.php:320
8124
+ msgid "profit:"
8125
+ msgstr ""
8126
+
8127
+ #: includes/reports/wcj-class-reports-stock.php:340
8128
+ msgid "Total current stock value"
8129
+ msgstr ""
8130
+
8131
+ #: includes/reports/wcj-class-reports-stock.php:341
8132
+ msgid "Total stock value"
8133
+ msgstr ""
8134
+
8135
+ #: includes/reports/wcj-class-reports-stock.php:342
8136
+ msgid "Product stock value average"
8137
+ msgstr ""
8138
+
8139
+ #: includes/reports/wcj-class-reports-stock.php:343
8140
+ msgid "Product stock average"
8141
+ msgstr ""
8142
+
8143
+ #: includes/reports/wcj-class-reports-stock.php:345
8144
+ msgid "Total current stock purchase price"
8145
+ msgstr ""
8146
+
8147
+ #: includes/reports/wcj-class-reports-stock.php:349
8148
+ msgid "Report was generated in: "
8149
+ msgstr ""
8150
+
8151
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:18
8152
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:37
8153
+ #: includes/settings/wcj-settings-admin-orders-list.php:127
8154
+ #: includes/settings/wcj-settings-breadcrumbs.php:34
8155
+ #: includes/settings/wcj-settings-cart-customization.php:20
8156
+ #: includes/settings/wcj-settings-cart-customization.php:27
8157
+ #: includes/settings/wcj-settings-checkout-customization.php:107
8158
+ #: includes/settings/wcj-settings-cross-sells.php:87
8159
+ #: includes/settings/wcj-settings-currency.php:22
8160
+ #: includes/settings/wcj-settings-my-account.php:202
8161
+ #: includes/settings/wcj-settings-my-account.php:209
8162
+ #: includes/settings/wcj-settings-order-custom-statuses.php:63
8163
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:48
8164
+ #: includes/settings/wcj-settings-product-addons.php:274
8165
+ #: includes/settings/wcj-settings-product-bookings.php:100
8166
+ #: includes/settings/wcj-settings-product-images.php:20
8167
+ #: includes/settings/wcj-settings-product-images.php:27
8168
+ #: includes/settings/wcj-settings-product-images.php:34
8169
+ #: includes/settings/wcj-settings-product-images.php:41
8170
+ #: includes/settings/wcj-settings-related-products.php:184
8171
+ #: includes/settings/wcj-settings-related-products.php:190
8172
+ #: includes/settings/wcj-settings-sale-flash.php:35
8173
+ #: includes/settings/wcj-settings-sale-flash.php:42
8174
+ #: includes/settings/wcj-settings-sale-flash.php:49
8175
+ #: includes/settings/wcj-settings-shipping-calculator.php:54
8176
+ #: includes/settings/wcj-settings-upsells.php:74
8177
+ msgid "Hide"
8178
+ msgstr ""
8179
+
8180
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:21
8181
+ #: includes/settings/wcj-settings-free-price.php:19
8182
+ #: includes/settings/wcj-settings-product-msrp.php:13
8183
+ msgid "Single Product Page"
8184
+ msgstr ""
8185
+
8186
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:29
8187
+ msgid "Content to replace add to cart button on single product page."
8188
+ msgstr ""
8189
+
8190
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:30
8191
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:49
8192
+ #: includes/settings/wcj-settings-checkout-customization.php:196
8193
+ #: includes/settings/wcj-settings-my-account.php:167
8194
+ #: includes/settings/wcj-settings-my-account.php:194
8195
+ #: includes/settings/wcj-settings-my-account.php:254
8196
+ #: includes/settings/wcj-settings-sale-flash.php:27
8197
+ #: includes/settings/wcj-settings-sale-flash.php:111
8198
+ msgid "You can use HTML and/or shortcodes here."
8199
+ msgstr ""
8200
+
8201
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:40
8202
+ msgid "Category/Archives"
8203
+ msgstr ""
8204
+
8205
+ #: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:48
8206
+ msgid "Content to replace add to cart button on category/archives."
8207
+ msgstr ""
8208
+
8209
+ #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:19
8210
+ #, php-format
8211
+ msgid "Product ID: %s"
8212
+ msgstr ""
8213
+
8214
+ #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:26
8215
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:45
8216
+ msgid "Regular price"
8217
+ msgstr ""
8218
+
8219
+ #: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:34
8220
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:54
8221
+ msgid "Sale price"
8222
+ msgstr ""
8223
+
8224
+ #: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:14
8225
+ msgid "Invalidate for roles"
8226
+ msgstr ""
8227
+
8228
+ #: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:15
8229
+ msgid "Invalidate coupon for selected user roles."
8230
+ msgstr ""
8231
+
8232
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
8233
+ msgid "Goal"
8234
+ msgstr ""
8235
+
8236
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
8237
+ msgid "Deadline"
8238
+ msgstr ""
8239
+
8240
+ #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:13
8241
+ #: includes/settings/wcj-settings-checkout-core-fields.php:69
8242
+ #: includes/settings/wcj-settings-checkout-core-fields.php:81
8243
+ #: includes/settings/wcj-settings-checkout-core-fields.php:118
8244
+ #: includes/settings/wcj-settings-products-per-page.php:29
8245
+ msgid "Default"
8246
+ msgstr ""
8247
+
8248
+ #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:25
8249
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
8250
+ msgid "Product Currency"
8251
+ msgstr ""
8252
+
8253
+ #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:27
8254
+ msgid "Update product after you change this field's value."
8255
+ msgstr ""
8256
+
8257
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
8258
+ msgid "Add CSS"
8259
+ msgstr ""
8260
+
8261
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:24
8262
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:56
8263
+ msgid "CSS"
8264
+ msgstr ""
8265
+
8266
+ #: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
8267
+ msgid "PayPal Email"
8268
+ msgstr ""
8269
+
8270
+ #: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:14
8271
+ msgid "Max Qty"
8272
+ msgstr ""
8273
+
8274
+ #: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:18
8275
+ msgid ""
8276
+ "If set to zero, and \"All Products\" section is enabled - global maximum "
8277
+ "quantity will be used; in case if \"All Products\" section is disabled - no "
8278
+ "maximum quantity will be used."
8279
+ msgstr ""
8280
+
8281
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:63
8282
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:136
8283
+ #: includes/settings/wcj-settings-price-by-user-role.php:156
8284
+ #: includes/settings/wcj-settings-price-by-user-role.php:225
8285
+ msgid "Make Empty Price"
8286
+ msgstr ""
8287
+
8288
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
8289
+ msgid "Enable Offer Price"
8290
+ msgstr ""
8291
+
8292
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:24
8293
+ #: includes/settings/wcj-settings-offer-price.php:167
8294
+ #: includes/settings/wcj-settings-product-by-user.php:69
8295
+ msgid "Price Step"
8296
+ msgstr ""
8297
+
8298
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
8299
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:60
8300
+ #: includes/settings/wcj-settings-offer-price.php:168
8301
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:74
8302
+ #: includes/settings/wcj-settings-product-by-user.php:70
8303
+ msgid "Number of decimals"
8304
+ msgstr ""
8305
+
8306
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
8307
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
8308
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
8309
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
8310
+ msgid "Leave blank to use global value."
8311
+ msgstr ""
8312
+
8313
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:33
8314
+ #: includes/settings/wcj-settings-offer-price.php:175
8315
+ msgid "Minimal Price"
8316
+ msgstr ""
8317
+
8318
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:42
8319
+ #: includes/settings/wcj-settings-offer-price.php:182
8320
+ msgid "Maximal Price"
8321
+ msgstr ""
8322
+
8323
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
8324
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
8325
+ #: includes/settings/wcj-settings-general.php:224
8326
+ #: includes/settings/wcj-settings-general.php:233
8327
+ #: includes/settings/wcj-settings-offer-price.php:183
8328
+ #: includes/settings/wcj-settings-offer-price.php:191
8329
+ msgid "Set zero to disable."
8330
+ msgstr ""
8331
+
8332
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:51
8333
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:24
8334
+ #: includes/settings/wcj-settings-offer-price.php:190
8335
+ msgid "Default Price"
8336
+ msgstr ""
8337
+
8338
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:37
8339
+ #: includes/settings/wcj-settings-order-quantities.php:84
8340
+ msgid "Minimum Quantity"
8341
+ msgstr ""
8342
+
8343
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:42
8344
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:57
8345
+ msgid "Set 0 to use global settings. Set -1 to disable."
8346
+ msgstr ""
8347
+
8348
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:52
8349
+ #: includes/settings/wcj-settings-order-quantities.php:142
8350
+ msgid "Maximum Quantity"
8351
+ msgstr ""
8352
+
8353
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:68
8354
+ #: includes/settings/wcj-settings-order-quantities.php:200
8355
+ msgid "Quantity Step"
8356
+ msgstr ""
8357
+
8358
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:69
8359
+ msgid "All variations"
8360
+ msgstr ""
8361
+
8362
+ #: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:73
8363
+ msgid "Set 0 to use global settings."
8364
+ msgstr ""
8365
+
8366
+ #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
8367
+ msgid "Save order after you change this field."
8368
+ msgstr ""
8369
+
8370
+ #: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:24
8371
+ #, php-format
8372
+ msgid "%s number"
8373
+ msgstr ""
8374
+
8375
+ #: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:30
8376
+ #, php-format
8377
+ msgid "%s date"
8378
+ msgstr ""
8379
+
8380
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:29
8381
+ msgid "Per Product Settings (press Update after changing)"
8382
+ msgstr ""
8383
+
8384
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:113
8385
+ #: includes/settings/wcj-settings-price-by-user-role.php:33
8386
+ msgid "Multiplier"
8387
+ msgstr ""
8388
+
8389
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
8390
+ #: includes/settings/wcj-settings-product-add-to-cart.php:14
8391
+ msgid "Add to Cart Local Redirect"
8392
+ msgstr ""
8393
+
8394
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
8395
+ #: includes/settings/wcj-settings-product-add-to-cart.php:32
8396
+ msgid ""
8397
+ "Redirect URL. Leave empty to redirect to checkout page (skipping the cart "
8398
+ "page)."
8399
+ msgstr ""
8400
+
8401
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
8402
+ msgid "Add to Cart Local Redirect URL"
8403
+ msgstr ""
8404
+
8405
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
8406
+ #: includes/settings/wcj-settings-product-add-to-cart.php:52
8407
+ #: includes/settings/wcj-settings-product-add-to-cart.php:58
8408
+ msgid "Add to Cart on Visit"
8409
+ msgstr ""
8410
+
8411
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:55
8412
+ msgid "Custom Add to Cart Button URL (Category/Archives)"
8413
+ msgstr ""
8414
+
8415
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
8416
+ msgid "As shop default (no changes)"
8417
+ msgstr ""
8418
+
8419
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
8420
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:30
8421
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:56
8422
+ #: includes/settings/wcj-settings-general.php:30
8423
+ #: includes/settings/wcj-settings-general.php:99
8424
+ #: includes/settings/wcj-settings-general.php:114
8425
+ #: includes/settings/wcj-settings-general.php:122
8426
+ #: includes/settings/wcj-settings-general.php:130
8427
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:84
8428
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:116
8429
+ #: includes/settings/wcj-settings-price-by-user-role.php:56
8430
+ #: includes/settings/wcj-settings-price-by-user-role.php:140
8431
+ #: includes/settings/wcj-settings-product-add-to-cart.php:131
8432
+ #: includes/settings/wcj-settings-product-open-pricing.php:95
8433
+ #: includes/settings/wcj-settings-sku.php:283
8434
+ msgid "Disable"
8435
+ msgstr ""
8436
+
8437
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:70
8438
+ msgid "Disable Add to Cart Button AJAX"
8439
+ msgstr ""
8440
+
8441
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
8442
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
8443
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
8444
+ msgid "Save product after you change this number."
8445
+ msgstr ""
8446
+
8447
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
8448
+ #: includes/settings/wcj-settings-product-addons.php:57
8449
+ msgid "Product Addons Total Number"
8450
+ msgstr ""
8451
+
8452
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:64
8453
+ msgid "Enable by Variation"
8454
+ msgstr ""
8455
+
8456
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
8457
+ #: includes/settings/wcj-settings-product-addons.php:73
8458
+ msgid "Product Addon"
8459
+ msgstr ""
8460
+
8461
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
8462
+ #: includes/settings/wcj-settings-product-addons.php:86
8463
+ msgid "Radio Buttons"
8464
+ msgstr ""
8465
+
8466
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:90
8467
+ #: includes/settings/wcj-settings-product-addons.php:87
8468
+ msgid "Select Box"
8469
+ msgstr ""
8470
+
8471
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:102
8472
+ #: includes/settings/wcj-settings-product-addons.php:98
8473
+ msgid "Label(s)"
8474
+ msgstr ""
8475
+
8476
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:103
8477
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
8478
+ #: includes/settings/wcj-settings-product-addons.php:99
8479
+ #: includes/settings/wcj-settings-product-addons.php:107
8480
+ msgid "For radio and select enter one value per line."
8481
+ msgstr ""
8482
+
8483
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:110
8484
+ #: includes/settings/wcj-settings-product-addons.php:106
8485
+ msgid "Price(s)"
8486
+ msgstr ""
8487
+
8488
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
8489
+ #: includes/settings/wcj-settings-product-addons.php:107
8490
+ msgid ""
8491
+ "You can use the % symbol to set a percentage of product's price, like 10%"
8492
+ msgstr ""
8493
+
8494
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:118
8495
+ #: includes/settings/wcj-settings-product-addons.php:115
8496
+ msgid "Tooltip(s)"
8497
+ msgstr ""
8498
+
8499
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:119
8500
+ #: includes/settings/wcj-settings-product-addons.php:116
8501
+ msgid "For radio enter one value per line."
8502
+ msgstr ""
8503
+
8504
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:126
8505
+ #: includes/settings/wcj-settings-product-addons.php:123
8506
+ #: includes/settings/wcj-settings-purchase-data.php:94
8507
+ msgid "Default Value"
8508
+ msgstr ""
8509
+
8510
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:127
8511
+ #: includes/settings/wcj-settings-product-addons.php:124
8512
+ msgid ""
8513
+ "For checkbox use 'checked'; for radio and select enter default label. Leave "
8514
+ "blank for no default value."
8515
+ msgstr ""
8516
+
8517
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:135
8518
+ #: includes/settings/wcj-settings-product-addons.php:131
8519
+ msgid "For \"Select Box\" type only."
8520
+ msgstr ""
8521
+
8522
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:149
8523
+ msgid "Is required"
8524
+ msgstr ""
8525
+
8526
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:160
8527
+ #: includes/settings/wcj-settings-product-addons.php:158
8528
+ msgid ""
8529
+ "Leave empty to disable quantity calculation for the addon. When set to zero "
8530
+ "- addon will be disabled."
8531
+ msgstr ""
8532
+
8533
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:14
8534
+ msgid ""
8535
+ "Use \"Control\" key to select/deselect multiple options. Hold \"Control\" "
8536
+ "and \"A\" to select all options. Leave empty to disable."
8537
+ msgstr ""
8538
+
8539
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:17
8540
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
8541
+ msgid "Enable/Disable per Product Settings"
8542
+ msgstr ""
8543
+
8544
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:28
8545
+ msgid "Direct Date"
8546
+ msgstr ""
8547
+
8548
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:32
8549
+ msgid ""
8550
+ "Fill this if you want to set one date from which the product will be "
8551
+ "available."
8552
+ msgstr ""
8553
+
8554
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:33
8555
+ msgid "If this field is filled in, monthly settings fields are ignored."
8556
+ msgstr ""
8557
+
8558
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
8559
+ msgid "Replace image with custom HTML on single product page"
8560
+ msgstr ""
8561
+
8562
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
8563
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:26
8564
+ #: includes/settings/wcj-settings-product-custom-info.php:92
8565
+ #: includes/settings/wcj-settings-product-images.php:49
8566
+ #: includes/settings/wcj-settings-product-images.php:58
8567
+ #: includes/settings/wcj-settings-product-images.php:67
8568
+ #: includes/settings/wcj-settings-products-xml.php:111
8569
+ msgid "You can use shortcodes here."
8570
+ msgstr ""
8571
+
8572
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
8573
+ msgid "Replace image with custom HTML on archives"
8574
+ msgstr ""
8575
+
8576
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:37
8577
+ msgid "Hide Image on Single"
8578
+ msgstr ""
8579
+
8580
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:47
8581
+ msgid "Hide Thumbnails on Single"
8582
+ msgstr ""
8583
+
8584
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:57
8585
+ msgid "Hide Image on Archives"
8586
+ msgstr ""
8587
+
8588
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
8589
+ #: includes/settings/wcj-settings-product-listings.php:144
8590
+ msgid "Min Price"
8591
+ msgstr ""
8592
+
8593
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
8594
+ #: includes/settings/wcj-settings-product-listings.php:152
8595
+ msgid "Max Price"
8596
+ msgstr ""
8597
+
8598
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
8599
+ msgid ""
8600
+ "'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
8601
+ "Products' option is checked in module's settings."
8602
+ msgstr ""
8603
+
8604
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
8605
+ msgid "Use values below"
8606
+ msgstr ""
8607
+
8608
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
8609
+ msgid "Use default values"
8610
+ msgstr ""
8611
+
8612
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
8613
+ msgid "Calculation"
8614
+ msgstr ""
8615
+
8616
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
8617
+ #: includes/settings/wcj-settings-product-price-by-formula.php:20
8618
+ msgid "Formula"
8619
+ msgstr ""
8620
+
8621
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
8622
+ msgid "Number of Parameters"
8623
+ msgstr ""
8624
+
8625
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
8626
+ #: includes/settings/wcj-settings-purchase-data.php:21
8627
+ msgid "Product cost (purchase) price"
8628
+ msgstr ""
8629
+
8630
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
8631
+ #: includes/settings/wcj-settings-purchase-data.php:28
8632
+ msgid "Extra expenses (shipping etc.)"
8633
+ msgstr ""
8634
+
8635
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
8636
+ #: includes/settings/wcj-settings-purchase-data.php:35
8637
+ msgid "Affiliate commission"
8638
+ msgstr ""
8639
+
8640
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
8641
+ #: includes/settings/wcj-settings-purchase-data.php:113
8642
+ msgid "(Last) Purchase date"
8643
+ msgstr ""
8644
+
8645
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
8646
+ #: includes/settings/wcj-settings-purchase-data.php:120
8647
+ msgid "Seller"
8648
+ msgstr ""
8649
+
8650
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
8651
+ #: includes/settings/wcj-settings-purchase-data.php:127
8652
+ msgid "Purchase info"
8653
+ msgstr ""
8654
+
8655
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:20
8656
+ msgid ""
8657
+ "If enabled and no products selected - will hide related products section on "
8658
+ "frontend for current product."
8659
+ msgstr ""
8660
+
8661
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:31
8662
+ msgid ""
8663
+ "Hold Control (Ctrl) key to select multiple products. Ctrl and \"A\" to "
8664
+ "select all products."
8665
+ msgstr ""
8666
+
8667
+ #: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:24
8668
+ #: includes/settings/wcj-settings-stock.php:185
8669
+ msgid "HTML"
8670
+ msgstr ""
8671
+
8672
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:18
8673
+ #: includes/settings/wcj-settings-checkout-fees.php:72
8674
+ #: includes/settings/wcj-settings-global-discount.php:64
8675
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:38
8676
+ #: includes/settings/wcj-settings-purchase-data.php:89
8677
+ #: includes/settings/wcj-settings-wholesale-price.php:77
8678
+ msgid "Percent"
8679
+ msgstr ""
8680
+
8681
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:19
8682
+ #: includes/settings/wcj-settings-checkout-fees.php:71
8683
+ #: includes/settings/wcj-settings-global-discount.php:65
8684
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:37
8685
+ #: includes/settings/wcj-settings-price-by-user-role.php:32
8686
+ #: includes/settings/wcj-settings-purchase-data.php:88
8687
+ #: includes/settings/wcj-settings-wholesale-price.php:78
8688
+ msgid "Fixed"
8689
+ msgstr ""
8690
+
8691
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
8692
+ msgid "Price directly"
8693
+ msgstr ""
8694
+
8695
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
8696
+ msgid "Enable per Product Levels"
8697
+ msgstr ""
8698
+
8699
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
8700
+ #: includes/settings/wcj-settings-wholesale-price.php:72
8701
+ msgid "Discount Type"
8702
+ msgstr ""
8703
+
8704
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
8705
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
8706
+ msgid "Number of levels"
8707
+ msgstr ""
8708
+
8709
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
8710
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
8711
+ msgid ""
8712
+ "Free Booster's version is limited to one level maximum. Please visit https://"
8713
+ "booster.io to get full version."
8714
+ msgstr ""
8715
+
8716
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
8717
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
8718
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
8719
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
8720
+ msgid "Level"
8721
+ msgstr ""
8722
+
8723
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
8724
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
8725
+ msgid "Min quantity"
8726
+ msgstr ""
8727
+
8728
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
8729
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
8730
+ #: includes/settings/wcj-settings-wholesale-price.php:158
8731
+ #: includes/settings/wcj-settings-wholesale-price.php:159
8732
+ #: includes/settings/wcj-settings-wholesale-price.php:215
8733
+ #: includes/settings/wcj-settings-wholesale-price.php:216
8734
+ msgid "Discount"
8735
+ msgstr ""
8736
+
8737
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:17
8738
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:22
8739
+ #: includes/settings/wcj-settings-max-products-per-user.php:14
8740
+ #: includes/settings/wcj-settings-max-products-per-user.php:19
8741
+ #: includes/settings/wcj-settings-product-add-to-cart.php:24
8742
+ #: includes/settings/wcj-settings-product-by-date.php:20
8743
+ msgid "All Products"
8744
+ msgstr ""
8745
+
8746
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:23
8747
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:91
8748
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:108
8749
+ #: includes/settings/wcj-settings-admin-orders-list.php:21
8750
+ #: includes/settings/wcj-settings-admin-orders-list.php:109
8751
+ #: includes/settings/wcj-settings-admin-orders-list.php:201
8752
+ #: includes/settings/wcj-settings-admin-products-list.php:20
8753
+ #: includes/settings/wcj-settings-admin-products-list.php:76
8754
+ #: includes/settings/wcj-settings-max-products-per-user.php:20
8755
+ #: includes/settings/wcj-settings-max-products-per-user.php:43
8756
+ #: includes/settings/wcj-settings-my-account.php:67
8757
+ #: includes/settings/wcj-settings-my-account.php:135
8758
+ #: includes/settings/wcj-settings-my-account.php:186
8759
+ #: includes/settings/wcj-settings-my-account.php:227
8760
+ #: includes/settings/wcj-settings-order-quantities.php:85
8761
+ #: includes/settings/wcj-settings-order-quantities.php:143
8762
+ #: includes/settings/wcj-settings-order-quantities.php:201
8763
+ #: includes/settings/wcj-settings-order-quantities.php:249
8764
+ #: includes/settings/wcj-settings-orders.php:150
8765
+ #: includes/settings/wcj-settings-price-formats.php:37
8766
+ #: includes/settings/wcj-settings-product-add-to-cart.php:273
8767
+ #: includes/settings/wcj-settings-product-listings.php:138
8768
+ #: includes/settings/wcj-settings-sale-flash.php:20
8769
+ #: includes/settings/wcj-settings-sale-flash.php:65
8770
+ #: includes/settings/wcj-settings-sale-flash.php:90
8771
+ #: includes/settings/wcj-settings-shipping-by-condition.php:48
8772
+ #: includes/settings/wcj-settings-shipping-options.php:21
8773
+ #: includes/settings/wcj-settings-stock.php:20
8774
+ #: includes/settings/wcj-settings-stock.php:87
8775
+ #: includes/settings/wcj-settings-stock.php:132
8776
+ #: includes/settings/wcj-settings-stock.php:177
8777
+ #: includes/settings/wcj-settings-tax-display.php:27
8778
+ #: includes/settings/wcj-settings-tax-display.php:44
8779
+ #: includes/settings/wcj-settings-tax-display.php:101
8780
+ msgid "Enable section"
8781
+ msgstr ""
8782
+
8783
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:29
8784
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:114
8785
+ msgid "Disable Buttons on Category/Archives Pages"
8786
+ msgstr ""
8787
+
8788
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
8789
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
8790
+ #: includes/settings/wcj-settings-cart-customization.php:40
8791
+ msgid "Method"
8792
+ msgstr ""
8793
+
8794
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:37
8795
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:63
8796
+ msgid ""
8797
+ "Method for disabling the buttons. Try changing if buttons are not being "
8798
+ "disabled (may happen with some themes)."
8799
+ msgstr ""
8800
+
8801
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:42
8802
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:68
8803
+ msgid "Remove action"
8804
+ msgstr ""
8805
+
8806
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:43
8807
+ msgid "Add filter"
8808
+ msgstr ""
8809
+
8810
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:48
8811
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:123
8812
+ msgid ""
8813
+ "Content to replace with on archives (can be empty). You can use HTML and/or "
8814
+ "shortcodes here."
8815
+ msgstr ""
8816
+
8817
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:55
8818
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:130
8819
+ msgid "Disable Buttons on Single Product Pages"
8820
+ msgstr ""
8821
+
8822
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:69
8823
+ msgid "Add action"
8824
+ msgstr ""
8825
+
8826
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:74
8827
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:139
8828
+ msgid ""
8829
+ "Content to replace with on single product pages (can be empty). You can use "
8830
+ "HTML and/or shortcodes here."
8831
+ msgstr ""
8832
+
8833
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:85
8834
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:90
8835
+ #: includes/settings/wcj-settings-max-products-per-user.php:37
8836
+ #: includes/settings/wcj-settings-max-products-per-user.php:42
8837
+ #: includes/settings/wcj-settings-order-quantities.php:215
8838
+ #: includes/settings/wcj-settings-price-labels.php:22
8839
+ #: includes/settings/wcj-settings-product-add-to-cart.php:39
8840
+ #: includes/settings/wcj-settings-product-by-date.php:52
8841
+ #: includes/settings/wcj-settings-product-by-time.php:52
8842
+ #: includes/settings/wcj-settings-sale-flash.php:59
8843
+ #: includes/settings/wcj-settings-sale-flash.php:64
8844
+ msgid "Per Product"
8845
+ msgstr ""
8846
+
8847
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:92
8848
+ #: includes/settings/wcj-settings-currency-per-product.php:65
8849
+ #: includes/settings/wcj-settings-product-add-to-cart.php:179
8850
+ #: includes/settings/wcj-settings-product-add-to-cart.php:196
8851
+ msgid "This will add meta box to each product's edit page"
8852
+ msgstr ""
8853
+
8854
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:102
8855
+ #: includes/settings/wcj-settings-add-to-cart-button-visibility.php:107
8856
+ #: includes/settings/wcj-settings-sale-flash.php:81
8857
+ msgid "Per Category"
8858
+ msgstr ""
8859
+
8860
+ #: includes/settings/wcj-settings-add-to-cart.php:14
8861
+ msgid "Per Category Options"
8862
+ msgstr ""
8863
+
8864
+ #: includes/settings/wcj-settings-add-to-cart.php:16
8865
+ msgid ""
8866
+ "This sections lets you set Add to Cart button text on per category basis."
8867
+ msgstr ""
8868
+
8869
+ #: includes/settings/wcj-settings-add-to-cart.php:20
8870
+ msgid "Per Category Labels"
8871
+ msgstr ""
8872
+
8873
+ #: includes/settings/wcj-settings-add-to-cart.php:21
8874
+ #: includes/settings/wcj-settings-add-to-cart.php:92
8875
+ #: includes/settings/wcj-settings-add-to-cart.php:110
8876
+ #: includes/settings/wcj-settings-general.php:163
8877
+ #: includes/settings/wcj-settings-shipping-calculator.php:69
8878
+ #: includes/settings/wcj-settings-sorting.php:20
8879
+ #: includes/settings/wcj-settings-sorting.php:99
8880
+ #: includes/settings/wcj-settings-sorting.php:123
8881
+ msgid "Enable Section"
8882
+ msgstr ""
8883
+
8884
+ #: includes/settings/wcj-settings-add-to-cart.php:28
8885
+ msgid "Category Groups Number"
8886
+ msgstr ""
8887
+
8888
+ #: includes/settings/wcj-settings-add-to-cart.php:29
8889
+ #: includes/settings/wcj-settings-product-tabs.php:50
8890
+ msgid "Click \"Save changes\" after you change this number."
8891
+ msgstr ""
8892
+
8893
+ #: includes/settings/wcj-settings-add-to-cart.php:57
8894
+ msgid "categories"
8895
+ msgstr ""
8896
+
8897
+ #: includes/settings/wcj-settings-add-to-cart.php:66
8898
+ msgid "Button text - single product view"
8899
+ msgstr ""
8900
+
8901
+ #: includes/settings/wcj-settings-add-to-cart.php:72
8902
+ msgid "Button text - product archive (category) view"
8903
+ msgstr ""
8904
+
8905
+ #: includes/settings/wcj-settings-add-to-cart.php:85
8906
+ #: includes/settings/wcj-settings-currency-per-product.php:59
8907
+ #: includes/settings/wcj-settings-product-addons.php:25
8908
+ #: includes/settings/wcj-settings-product-by-date.php:47
8909
+ #: includes/settings/wcj-settings-product-by-time.php:47
8910
+ msgid "Per Product Options"
8911
+ msgstr ""
8912
+
8913
+ #: includes/settings/wcj-settings-add-to-cart.php:87
8914
+ msgid ""
8915
+ "This section lets you set Add to Cart button text on per product basis. When "
8916
+ "enabled, label for each product can be changed in \"Edit Product\"."
8917
+ msgstr ""
8918
+
8919
+ #: includes/settings/wcj-settings-add-to-cart.php:91
8920
+ msgid "Per Product Labels"
8921
+ msgstr ""
8922
+
8923
+ #: includes/settings/wcj-settings-add-to-cart.php:103
8924
+ msgid "Per Product Type Options"
8925
+ msgstr ""
8926
+
8927
+ #: includes/settings/wcj-settings-add-to-cart.php:109
8928
+ msgid "Per Product Type Labels"
8929
+ msgstr ""
8930
+
8931
+ #: includes/settings/wcj-settings-add-to-cart.php:119
8932
+ #: includes/settings/wcj-settings-product-by-user.php:93
8933
+ msgid "Simple product"
8934
+ msgstr ""
8935
+
8936
+ #: includes/settings/wcj-settings-add-to-cart.php:120
8937
+ #: includes/settings/wcj-settings-add-to-cart.php:174
8938
+ #: includes/settings/wcj-settings-add-to-cart.php:181
8939
+ #: includes/settings/wcj-settings-add-to-cart.php:188
8940
+ #: includes/settings/wcj-settings-add-to-cart.php:195
8941
+ #: includes/settings/wcj-settings-add-to-cart.php:215
8942
+ #: includes/settings/wcj-settings-add-to-cart.php:216
8943
+ #: includes/settings/wcj-settings-add-to-cart.php:224
8944
+ #: includes/settings/wcj-settings-add-to-cart.php:225
8945
+ msgid "Add to cart"
8946
+ msgstr ""
8947
+
8948
+ #: includes/settings/wcj-settings-add-to-cart.php:124
8949
+ msgid "Variable product"
8950
+ msgstr ""
8951
+
8952
+ #: includes/settings/wcj-settings-add-to-cart.php:125
8953
+ msgid "Select options"
8954
+ msgstr ""
8955
+
8956
+ #: includes/settings/wcj-settings-add-to-cart.php:129
8957
+ msgid "External product"
8958
+ msgstr ""
8959
+
8960
+ #: includes/settings/wcj-settings-add-to-cart.php:130
8961
+ msgid "Buy product"
8962
+ msgstr ""
8963
+
8964
+ #: includes/settings/wcj-settings-add-to-cart.php:134
8965
+ msgid "Grouped product"
8966
+ msgstr ""
8967
+
8968
+ #: includes/settings/wcj-settings-add-to-cart.php:135
8969
+ msgid "View products"
8970
+ msgstr ""
8971
+
8972
+ #: includes/settings/wcj-settings-add-to-cart.php:139
8973
+ msgid "Other product"
8974
+ msgstr ""
8975
+
8976
+ #: includes/settings/wcj-settings-add-to-cart.php:148
8977
+ msgid "Single product view."
8978
+ msgstr ""
8979
+
8980
+ #: includes/settings/wcj-settings-add-to-cart.php:149
8981
+ #: includes/settings/wcj-settings-add-to-cart.php:156
8982
+ #: includes/settings/wcj-settings-add-to-cart.php:213
8983
+ #: includes/settings/wcj-settings-add-to-cart.php:222
8984
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:24
8985
+ #: includes/settings/wcj-settings-product-custom-info.php:191
8986
+ msgid "Leave blank to disable."
8987
+ msgstr ""
8988
+
8989
+ #: includes/settings/wcj-settings-add-to-cart.php:149
8990
+ #: includes/settings/wcj-settings-add-to-cart.php:156
8991
+ #: includes/settings/wcj-settings-add-to-cart.php:215
8992
+ #: includes/settings/wcj-settings-add-to-cart.php:224
8993
+ #: includes/settings/wcj-settings-sorting.php:27
8994
+ #: includes/settings/wcj-settings-sorting.php:36
8995
+ #: includes/settings/wcj-settings-sorting.php:45
8996
+ #: includes/settings/wcj-settings-sorting.php:54
8997
+ #: includes/settings/wcj-settings-sorting.php:72
8998
+ #: includes/settings/wcj-settings-sorting.php:81
8999
+ msgid "Default: "
9000
+ msgstr ""
9001
+
9002
+ #: includes/settings/wcj-settings-add-to-cart.php:155
9003
+ msgid "Product category (archive) view."
9004
+ msgstr ""
9005
+
9006
+ #: includes/settings/wcj-settings-add-to-cart.php:164
9007
+ msgid "Products not in stock. Product category (archive) view."
9008
+ msgstr ""
9009
+
9010
+ #: includes/settings/wcj-settings-add-to-cart.php:165
9011
+ #: includes/settings/wcj-settings-add-to-cart.php:172
9012
+ #: includes/settings/wcj-settings-add-to-cart.php:179
9013
+ #: includes/settings/wcj-settings-add-to-cart.php:186
9014
+ #: includes/settings/wcj-settings-add-to-cart.php:193
9015
+ msgid "Leave blank to disable. Default: Add to cart"
9016
+ msgstr ""
9017
+
9018
+ #: includes/settings/wcj-settings-add-to-cart.php:171
9019
+ msgid "Products on sale. Single product view."
9020
+ msgstr ""
9021
+
9022
+ #: includes/settings/wcj-settings-add-to-cart.php:178
9023
+ msgid "Products on sale. Product category (archive) view."
9024
+ msgstr ""
9025
+
9026
+ #: includes/settings/wcj-settings-add-to-cart.php:185
9027
+ msgid "Products with price set to 0 (i.e. free). Single product view."
9028
+ msgstr ""
9029
+
9030
+ #: includes/settings/wcj-settings-add-to-cart.php:192
9031
+ msgid ""
9032
+ "Products with price set to 0 (i.e. free). Product category (archive) view."
9033
+ msgstr ""
9034
+
9035
+ #: includes/settings/wcj-settings-add-to-cart.php:199
9036
+ msgid "Products with empty price. Product category (archive) view."
9037
+ msgstr ""
9038
+
9039
+ #: includes/settings/wcj-settings-add-to-cart.php:200
9040
+ msgid "Leave blank to disable. Default: Read More"
9041
+ msgstr ""
9042
+
9043
+ #: includes/settings/wcj-settings-add-to-cart.php:212
9044
+ msgid "Already in cart. Single product view."
9045
+ msgstr ""
9046
+
9047
+ #: includes/settings/wcj-settings-add-to-cart.php:214
9048
+ #: includes/settings/wcj-settings-add-to-cart.php:223
9049
+ msgid "Try: "
9050
+ msgstr ""
9051
+
9052
+ #: includes/settings/wcj-settings-add-to-cart.php:214
9053
+ #: includes/settings/wcj-settings-add-to-cart.php:223
9054
+ msgid "Already in cart - Add Again?"
9055
+ msgstr ""
9056
+
9057
+ #: includes/settings/wcj-settings-add-to-cart.php:221
9058
+ msgid "Already in cart. Product category (archive) view."
9059
+ msgstr ""
9060
+
9061
+ #: includes/settings/wcj-settings-address-formats.php:14
9062
+ #: includes/settings/wcj-settings-address-formats.php:19
9063
+ msgid "Force Base Country Display"
9064
+ msgstr ""
9065
+
9066
+ #: includes/settings/wcj-settings-address-formats.php:30
9067
+ msgid "Address Formats by Country"
9068
+ msgstr ""
9069
+
9070
+ #: includes/settings/wcj-settings-admin-bar.php:19
9071
+ msgid "\"WooCommerce\" Admin Bar"
9072
+ msgstr ""
9073
+
9074
+ #: includes/settings/wcj-settings-admin-bar.php:27
9075
+ msgid "List product categories in \"WooCommerce > Products > Categories\""
9076
+ msgstr ""
9077
+
9078
+ #: includes/settings/wcj-settings-admin-bar.php:34
9079
+ msgid "List product tags in \"WooCommerce > Products > Tags\""
9080
+ msgstr ""
9081
+
9082
+ #: includes/settings/wcj-settings-admin-bar.php:41
9083
+ msgid "\"Booster\" Admin Bar"
9084
+ msgstr ""
9085
+
9086
+ #: includes/settings/wcj-settings-admin-bar.php:48
9087
+ msgid "\"Booster: Active\" Admin Bar"
9088
+ msgstr ""
9089
+
9090
+ #: includes/settings/wcj-settings-admin-orders-list.php:14
9091
+ #: includes/settings/wcj-settings-admin-orders-list.php:20
9092
+ #: includes/settings/wcj-settings-admin-products-list.php:14
9093
+ msgid "Custom Columns"
9094
+ msgstr ""
9095
+
9096
+ #: includes/settings/wcj-settings-admin-orders-list.php:16
9097
+ msgid "This section lets you add custom columns to WooCommerce orders list."
9098
+ msgstr ""
9099
+
9100
+ #: includes/settings/wcj-settings-admin-orders-list.php:28
9101
+ #: includes/settings/wcj-settings-admin-orders-list.php:35
9102
+ msgid "Add column and filtering"
9103
+ msgstr ""
9104
+
9105
+ #: includes/settings/wcj-settings-admin-orders-list.php:41
9106
+ #: includes/settings/wcj-settings-admin-products-list.php:26
9107
+ msgid "Custom Columns Total Number"
9108
+ msgstr ""
9109
+
9110
+ #: includes/settings/wcj-settings-admin-orders-list.php:56
9111
+ #: includes/settings/wcj-settings-admin-products-list.php:42
9112
+ msgid "Custom Column"
9113
+ msgstr ""
9114
+
9115
+ #: includes/settings/wcj-settings-admin-orders-list.php:58
9116
+ #: includes/settings/wcj-settings-admin-products-list.php:44
9117
+ msgid "Key:"
9118
+ msgstr ""
9119
+
9120
+ #: includes/settings/wcj-settings-admin-orders-list.php:64
9121
+ #: includes/settings/wcj-settings-admin-products-list.php:50
9122
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:158
9123
+ #: includes/settings/wcj-settings-checkout-files-upload.php:81
9124
+ #: includes/settings/wcj-settings-checkout-files-upload.php:305
9125
+ #: includes/settings/wcj-settings-offer-price.php:65
9126
+ #: includes/settings/wcj-settings-offer-price.php:159
9127
+ #: includes/settings/wcj-settings-offer-price.php:199
9128
+ #: includes/settings/wcj-settings-offer-price.php:207
9129
+ #: includes/settings/wcj-settings-offer-price.php:215
9130
+ #: includes/settings/wcj-settings-offer-price.php:223
9131
+ #: includes/tools/class-wcj-order-statuses-tool.php:141
9132
+ #: includes/tools/class-wcj-order-statuses-tool.php:217
9133
+ msgid "Label"
9134
+ msgstr ""
9135
+
9136
+ #: includes/settings/wcj-settings-admin-orders-list.php:72
9137
+ #: includes/settings/wcj-settings-admin-products-list.php:57
9138
+ msgid "You can use shortcodes and/or HTML here."
9139
+ msgstr ""
9140
+
9141
+ #: includes/settings/wcj-settings-admin-orders-list.php:79
9142
+ msgid "Sortable"
9143
+ msgstr ""
9144
+
9145
+ #: includes/settings/wcj-settings-admin-orders-list.php:85
9146
+ msgid "By meta (as text)"
9147
+ msgstr ""
9148
+
9149
+ #: includes/settings/wcj-settings-admin-orders-list.php:86
9150
+ msgid "By meta (as numbers)"
9151
+ msgstr ""
9152
+
9153
+ #: includes/settings/wcj-settings-admin-orders-list.php:90
9154
+ msgid "Key (if sortable)"
9155
+ msgstr ""
9156
+
9157
+ #: includes/settings/wcj-settings-admin-orders-list.php:103
9158
+ #: includes/settings/wcj-settings-admin-orders-list.php:108
9159
+ msgid "Multiple Status"
9160
+ msgstr ""
9161
+
9162
+ #: includes/settings/wcj-settings-admin-orders-list.php:115
9163
+ msgid "Multiple Status Filtering"
9164
+ msgstr ""
9165
+
9166
+ #: includes/settings/wcj-settings-admin-orders-list.php:120
9167
+ #: includes/settings/wcj-settings-empty-cart.php:46
9168
+ #: includes/settings/wcj-settings-empty-cart.php:67
9169
+ #: includes/settings/wcj-settings-offer-price.php:92
9170
+ #: includes/settings/wcj-settings-offer-price.php:115
9171
+ msgid "Do not add"
9172
+ msgstr ""
9173
+
9174
+ #: includes/settings/wcj-settings-admin-orders-list.php:121
9175
+ msgid "Add as multiple select"
9176
+ msgstr ""
9177
+
9178
+ #: includes/settings/wcj-settings-admin-orders-list.php:122
9179
+ msgid "Add as checkboxes"
9180
+ msgstr ""
9181
+
9182
+ #: includes/settings/wcj-settings-admin-orders-list.php:126
9183
+ msgid "Hide Default Statuses Menu"
9184
+ msgstr ""
9185
+
9186
+ #: includes/settings/wcj-settings-admin-orders-list.php:133
9187
+ msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
9188
+ msgstr ""
9189
+
9190
+ #: includes/settings/wcj-settings-admin-orders-list.php:140
9191
+ msgid "Add Presets to Admin Menu"
9192
+ msgstr ""
9193
+
9194
+ #: includes/settings/wcj-settings-admin-orders-list.php:141
9195
+ msgid "Add presets"
9196
+ msgstr ""
9197
+
9198
+ #: includes/settings/wcj-settings-admin-orders-list.php:142
9199
+ msgid ""
9200
+ "To add presets, \"Multiple Status Filtering\" option must be enabled (as "
9201
+ "multiple select or as checkboxes)."
9202
+ msgstr ""
9203
+
9204
+ #: includes/settings/wcj-settings-admin-orders-list.php:148
9205
+ msgid "Add order counter"
9206
+ msgstr ""
9207
+
9208
+ #: includes/settings/wcj-settings-admin-orders-list.php:154
9209
+ msgid "Remove original \"Orders\" menu"
9210
+ msgstr ""
9211
+
9212
+ #: includes/settings/wcj-settings-admin-orders-list.php:160
9213
+ msgid "Total Presets"
9214
+ msgstr ""
9215
+
9216
+ #: includes/settings/wcj-settings-admin-orders-list.php:173
9217
+ #: includes/settings/wcj-settings-admin-orders-list.php:180
9218
+ msgid "Must be not empty."
9219
+ msgstr ""
9220
+
9221
+ #: includes/settings/wcj-settings-admin-orders-list.php:175
9222
+ msgid "Preset"
9223
+ msgstr ""
9224
+
9225
+ #: includes/settings/wcj-settings-admin-orders-list.php:179
9226
+ #: includes/tools/class-wcj-order-statuses-tool.php:179
9227
+ msgid "Statuses"
9228
+ msgstr ""
9229
+
9230
+ #: includes/settings/wcj-settings-admin-orders-list.php:195
9231
+ #: includes/settings/wcj-settings-admin-orders-list.php:200
9232
+ #: includes/settings/wcj-settings-admin-products-list.php:70
9233
+ msgid "Columns Order"
9234
+ msgstr ""
9235
+
9236
+ #: includes/settings/wcj-settings-admin-orders-list.php:208
9237
+ #: includes/settings/wcj-settings-admin-products-list.php:83
9238
+ msgid "Default columns order"
9239
+ msgstr ""
9240
+
9241
+ #: includes/settings/wcj-settings-admin-products-list.php:27
9242
+ #: includes/settings/wcj-settings-price-by-user-role.php:201
9243
+ #: includes/settings/wcj-settings-shipping.php:51
9244
+ msgid ""
9245
+ "Save module's settings after changing this option to see new settings fields."
9246
+ msgstr ""
9247
+
9248
+ #: includes/settings/wcj-settings-admin-tools.php:14
9249
+ msgid "Admin Tools Options"
9250
+ msgstr ""
9251
+
9252
+ #: includes/settings/wcj-settings-admin-tools.php:19
9253
+ msgid "Show Booster Menus Only to Admin"
9254
+ msgstr ""
9255
+
9256
+ #: includes/settings/wcj-settings-admin-tools.php:20
9257
+ #, php-format
9258
+ msgid ""
9259
+ "Will require %s capability to see Booster menus (instead of %s capability)."
9260
+ msgstr ""
9261
+
9262
+ #: includes/settings/wcj-settings-admin-tools.php:28
9263
+ msgid "Suppress Admin Connect Notice"
9264
+ msgstr ""
9265
+
9266
+ #: includes/settings/wcj-settings-admin-tools.php:30
9267
+ #, php-format
9268
+ msgid "Will remove \"%s\" admin notice."
9269
+ msgstr ""
9270
+
9271
+ #: includes/settings/wcj-settings-admin-tools.php:31
9272
+ msgid ""
9273
+ "Connect your store to WooCommerce.com to receive extensions updates and "
9274
+ "support."
9275
+ msgstr ""
9276
+
9277
+ #: includes/settings/wcj-settings-admin-tools.php:37
9278
+ msgid "Suppress Admin Notices"
9279
+ msgstr ""
9280
+
9281
+ #: includes/settings/wcj-settings-admin-tools.php:39
9282
+ msgid "Will remove admin notices (including the Connect notice)."
9283
+ msgstr ""
9284
+
9285
+ #: includes/settings/wcj-settings-admin-tools.php:49
9286
+ msgid "Orders Options"
9287
+ msgstr ""
9288
+
9289
+ #: includes/settings/wcj-settings-admin-tools.php:54
9290
+ msgid "Show Order Meta"
9291
+ msgstr ""
9292
+
9293
+ #: includes/settings/wcj-settings-admin-tools.php:55
9294
+ msgid "Will show order meta table in meta box."
9295
+ msgstr ""
9296
+
9297
+ #: includes/settings/wcj-settings-admin-tools.php:66
9298
+ msgid "Products Options"
9299
+ msgstr ""
9300
+
9301
+ #: includes/settings/wcj-settings-admin-tools.php:71
9302
+ msgid "Show Product Meta"
9303
+ msgstr ""
9304
+
9305
+ #: includes/settings/wcj-settings-admin-tools.php:72
9306
+ msgid "Will show product meta table in meta box."
9307
+ msgstr ""
9308
+
9309
+ #: includes/settings/wcj-settings-admin-tools.php:79
9310
+ msgid "Show Variable Product Pricing Table"
9311
+ msgstr ""
9312
+
9313
+ #: includes/settings/wcj-settings-admin-tools.php:80
9314
+ msgid "Will allow to set all variations prices in single meta box."
9315
+ msgstr ""
9316
+
9317
+ #: includes/settings/wcj-settings-admin-tools.php:87
9318
+ msgid "Product Revisions"
9319
+ msgstr ""
9320
+
9321
+ #: includes/settings/wcj-settings-admin-tools.php:88
9322
+ msgid "Will enable product revisions."
9323
+ msgstr ""
9324
+
9325
+ #: includes/settings/wcj-settings-admin-tools.php:95
9326
+ msgid "JSON Product Search Limit"
9327
+ msgstr ""
9328
+
9329
+ #: includes/settings/wcj-settings-admin-tools.php:96
9330
+ msgid ""
9331
+ "This will set the maximum number of products to return on JSON search (e.g. "
9332
+ "when setting Upsells and Cross-sells on product edit page)."
9333
+ msgstr ""
9334
+
9335
+ #: includes/settings/wcj-settings-admin-tools.php:97
9336
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:240
9337
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:249
9338
+ #: includes/settings/wcj-settings-order-quantities.php:208
9339
+ msgid "Ignored if set to zero."
9340
+ msgstr ""
9341
+
9342
+ #: includes/settings/wcj-settings-breadcrumbs.php:19
9343
+ msgid "Change Breadcrumbs Home URL"
9344
+ msgstr ""
9345
+
9346
+ #: includes/settings/wcj-settings-breadcrumbs.php:26
9347
+ msgid "Home URL"
9348
+ msgstr ""
9349
+
9350
+ #: includes/settings/wcj-settings-breadcrumbs.php:33
9351
+ msgid "Hide Breadcrumbs"
9352
+ msgstr ""
9353
+
9354
+ #: includes/settings/wcj-settings-call-for-price.php:14
9355
+ msgid "Call for Price Options"
9356
+ msgstr ""
9357
+
9358
+ #: includes/settings/wcj-settings-call-for-price.php:16
9359
+ msgid ""
9360
+ "Leave price empty when adding or editing products. Then set the options here."
9361
+ msgstr ""
9362
+
9363
+ #: includes/settings/wcj-settings-call-for-price.php:17
9364
+ msgid "You can use shortcodes in options."
9365
+ msgstr ""
9366
+
9367
+ #: includes/settings/wcj-settings-call-for-price.php:21
9368
+ msgid "Label to Show on Single"
9369
+ msgstr ""
9370
+
9371
+ #: includes/settings/wcj-settings-call-for-price.php:22
9372
+ #: includes/settings/wcj-settings-call-for-price.php:32
9373
+ #: includes/settings/wcj-settings-call-for-price.php:42
9374
+ #: includes/settings/wcj-settings-call-for-price.php:52
9375
+ #: includes/settings/wcj-settings-call-for-price.php:62
9376
+ msgid "This sets the html to output on empty price. Leave blank to disable."
9377
+ msgstr ""
9378
+
9379
+ #: includes/settings/wcj-settings-call-for-price.php:31
9380
+ msgid "Label to Show on Archives"
9381
+ msgstr ""
9382
+
9383
+ #: includes/settings/wcj-settings-call-for-price.php:41
9384
+ msgid "Label to Show on Homepage"
9385
+ msgstr ""
9386
+
9387
+ #: includes/settings/wcj-settings-call-for-price.php:51
9388
+ msgid "Label to Show on Related"
9389
+ msgstr ""
9390
+
9391
+ #: includes/settings/wcj-settings-call-for-price.php:61
9392
+ msgid "Label to Show for Variations"
9393
+ msgstr ""
9394
+
9395
+ #: includes/settings/wcj-settings-call-for-price.php:71
9396
+ msgid "Hide Sale! Tag"
9397
+ msgstr ""
9398
+
9399
+ #: includes/settings/wcj-settings-call-for-price.php:72
9400
+ msgid "Hide the tag"
9401
+ msgstr ""
9402
+
9403
+ #: includes/settings/wcj-settings-call-for-price.php:78
9404
+ msgid "Make All Products Call for Price"
9405
+ msgstr ""
9406
+
9407
+ #: includes/settings/wcj-settings-call-for-price.php:80
9408
+ msgid ""
9409
+ "Enable this to make all products prices empty. When checkbox disabled, all "
9410
+ "prices go back to normal."
9411
+ msgstr ""
9412
+
9413
+ #: includes/settings/wcj-settings-cart-customization.php:19
9414
+ msgid "Hide Coupon on Cart Page"
9415
+ msgstr ""
9416
+
9417
+ #: includes/settings/wcj-settings-cart-customization.php:26
9418
+ msgid "Hide Item Remove Link"
9419
+ msgstr ""
9420
+
9421
+ #: includes/settings/wcj-settings-cart-customization.php:33
9422
+ msgid "Change Empty Cart \"Return to shop\" Button Text"
9423
+ msgstr ""
9424
+
9425
+ #: includes/settings/wcj-settings-cart-customization.php:45
9426
+ msgid "Use JavaScript"
9427
+ msgstr ""
9428
+
9429
+ #: includes/settings/wcj-settings-cart-customization.php:46
9430
+ msgid "Replace empty cart template"
9431
+ msgstr ""
9432
+
9433
+ #: includes/settings/wcj-settings-cart-customization.php:56
9434
+ msgid "Change Empty Cart \"Return to shop\" Button Link"
9435
+ msgstr ""
9436
+
9437
+ #: includes/settings/wcj-settings-cart.php:16
9438
+ msgid "Cart Custom Info Blocks"
9439
+ msgstr ""
9440
+
9441
+ #: includes/settings/wcj-settings-cart.php:19
9442
+ msgid ""
9443
+ "This feature allows you to add a final checkpoint for your customers before "
9444
+ "they proceed to payment."
9445
+ msgstr ""
9446
+
9447
+ #: includes/settings/wcj-settings-cart.php:20
9448
+ msgid ""
9449
+ "Show custom information at on the cart page using Booster's various "
9450
+ "shortcodes and give your customers a seamless cart experience."
9451
+ msgstr ""
9452
+
9453
+ #: includes/settings/wcj-settings-cart.php:21
9454
+ msgid ""
9455
+ "For example, show them the total weight of their items, any additional fees "
9456
+ "or taxes, or a confirmation of the address their products are being sent to."
9457
+ msgstr ""
9458
+
9459
+ #: includes/settings/wcj-settings-cart.php:24
9460
+ #: includes/settings/wcj-settings-checkout-custom-info.php:20
9461
+ #: includes/settings/wcj-settings-mini-cart.php:19
9462
+ #: includes/settings/wcj-settings-my-account.php:233
9463
+ #: includes/settings/wcj-settings-product-custom-info.php:52
9464
+ msgid "Total Blocks"
9465
+ msgstr ""
9466
+
9467
+ #: includes/settings/wcj-settings-cart.php:39
9468
+ #: includes/settings/wcj-settings-checkout-custom-info.php:36
9469
+ #: includes/settings/wcj-settings-mini-cart.php:34
9470
+ #: includes/settings/wcj-settings-my-account.php:248
9471
+ msgid "Info Block"
9472
+ msgstr ""
9473
+
9474
+ #: includes/settings/wcj-settings-cart.php:58
9475
+ #: includes/settings/wcj-settings-checkout-custom-info.php:85
9476
+ #: includes/settings/wcj-settings-mini-cart.php:57
9477
+ #: includes/settings/wcj-settings-my-account.php:306
9478
+ #: includes/settings/wcj-settings-product-custom-info.php:124
9479
+ msgid "Position Order (i.e. Priority)"
9480
+ msgstr ""
9481
+
9482
+ #: includes/settings/wcj-settings-cart.php:72
9483
+ msgid "Cart Items Table Custom Info"
9484
+ msgstr ""
9485
+
9486
+ #: includes/settings/wcj-settings-cart.php:78
9487
+ msgid "Add to Each Item Name"
9488
+ msgstr ""
9489
+
9490
+ #: includes/settings/wcj-settings-cart.php:79
9491
+ msgid ""
9492
+ "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
9493
+ msgstr ""
9494
+
9495
+ #: includes/settings/wcj-settings-checkout-core-fields.php:16
9496
+ #: includes/settings/wcj-settings-checkout-files-upload.php:221
9497
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:26
9498
+ #: includes/settings/wcj-settings-emails-verification.php:14
9499
+ #: includes/settings/wcj-settings-max-products-per-user.php:55
9500
+ #: includes/settings/wcj-settings-multicurrency.php:17
9501
+ #: includes/settings/wcj-settings-my-account.php:14
9502
+ #: includes/settings/wcj-settings-offer-price.php:22
9503
+ #: includes/settings/wcj-settings-order-quantities.php:17
9504
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:15
9505
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:17
9506
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:15
9507
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:19
9508
+ #: includes/settings/wcj-settings-price-formats.php:15
9509
+ #: includes/settings/wcj-settings-product-tabs.php:15
9510
+ #: includes/settings/wcj-settings-shipping-by-condition.php:20
9511
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:15
9512
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:15
9513
+ #: includes/settings/wcj-settings-shipping-time.php:25
9514
+ #: includes/settings/wcj-settings-wpml.php:22
9515
+ msgid "General Options"
9516
+ msgstr ""
9517
+
9518
+ #: includes/settings/wcj-settings-checkout-core-fields.php:21
9519
+ msgid "Override Default Address Fields"
9520
+ msgstr ""
9521
+
9522
+ #: includes/settings/wcj-settings-checkout-core-fields.php:26
9523
+ #: includes/settings/wcj-settings-checkout-core-fields.php:37
9524
+ msgid "Override with billing fields"
9525
+ msgstr ""
9526
+
9527
+ #: includes/settings/wcj-settings-checkout-core-fields.php:27
9528
+ #: includes/settings/wcj-settings-checkout-core-fields.php:38
9529
+ msgid "Override with shipping fields"
9530
+ msgstr ""
9531
+
9532
+ #: includes/settings/wcj-settings-checkout-core-fields.php:28
9533
+ #: includes/settings/wcj-settings-checkout-core-fields.php:39
9534
+ msgid "Do not override"
9535
+ msgstr ""
9536
+
9537
+ #: includes/settings/wcj-settings-checkout-core-fields.php:32
9538
+ msgid "Override Country Locale Fields"
9539
+ msgstr ""
9540
+
9541
+ #: includes/settings/wcj-settings-checkout-core-fields.php:43
9542
+ msgid "Force Fields Sort by Priority"
9543
+ msgstr ""
9544
+
9545
+ #: includes/settings/wcj-settings-checkout-core-fields.php:45
9546
+ msgid ""
9547
+ "Enable this if you are having theme related issues with \"priority (i.e. "
9548
+ "order)\" options."
9549
+ msgstr ""
9550
+
9551
+ #: includes/settings/wcj-settings-checkout-core-fields.php:55
9552
+ msgid "Fields Options"
9553
+ msgstr ""
9554
+
9555
+ #: includes/settings/wcj-settings-checkout-core-fields.php:76
9556
+ #: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:327
9557
+ msgid "required"
9558
+ msgstr ""
9559
+
9560
+ #: includes/settings/wcj-settings-checkout-core-fields.php:83
9561
+ msgid "Not Required"
9562
+ msgstr ""
9563
+
9564
+ #: includes/settings/wcj-settings-checkout-core-fields.php:89
9565
+ msgid "label"
9566
+ msgstr ""
9567
+
9568
+ #: includes/settings/wcj-settings-checkout-core-fields.php:90
9569
+ #: includes/settings/wcj-settings-checkout-core-fields.php:98
9570
+ #: includes/settings/wcj-settings-checkout-core-fields.php:106
9571
+ msgid "Leave blank for WooCommerce defaults."
9572
+ msgstr ""
9573
+
9574
+ #: includes/settings/wcj-settings-checkout-core-fields.php:97
9575
+ msgid "placeholder"
9576
+ msgstr ""
9577
+
9578
+ #: includes/settings/wcj-settings-checkout-core-fields.php:105
9579
+ msgid "description"
9580
+ msgstr ""
9581
+
9582
+ #: includes/settings/wcj-settings-checkout-core-fields.php:113
9583
+ msgid "class"
9584
+ msgstr ""
9585
+
9586
+ #: includes/settings/wcj-settings-checkout-core-fields.php:119
9587
+ msgid "Align Left"
9588
+ msgstr ""
9589
+
9590
+ #: includes/settings/wcj-settings-checkout-core-fields.php:120
9591
+ msgid "Align Right"
9592
+ msgstr ""
9593
+
9594
+ #: includes/settings/wcj-settings-checkout-core-fields.php:121
9595
+ msgid "Full Row"
9596
+ msgstr ""
9597
+
9598
+ #: includes/settings/wcj-settings-checkout-core-fields.php:126
9599
+ msgid "priority (i.e. order)"
9600
+ msgstr ""
9601
+
9602
+ #: includes/settings/wcj-settings-checkout-core-fields.php:127
9603
+ msgid "Leave zero for WooCommerce defaults."
9604
+ msgstr ""
9605
+
9606
+ #: includes/settings/wcj-settings-checkout-core-fields.php:135
9607
+ msgid "include product categories"
9608
+ msgstr ""
9609
+
9610
+ #: includes/settings/wcj-settings-checkout-core-fields.php:136
9611
+ msgid ""
9612
+ "If not empty - selected categories products must be in cart for current "
9613
+ "field to appear."
9614
+ msgstr ""
9615
+
9616
+ #: includes/settings/wcj-settings-checkout-core-fields.php:147
9617
+ msgid "exclude product categories"
9618
+ msgstr ""
9619
+
9620
+ #: includes/settings/wcj-settings-checkout-core-fields.php:148
9621
+ msgid ""
9622
+ "If not empty - current field is hidden, if selected categories products are "
9623
+ "in cart."
9624
+ msgstr ""
9625
+
9626
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:21
9627
+ msgid "Add All Fields to Admin Emails"
9628
+ msgstr ""
9629
+
9630
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:28
9631
+ msgid "Add All Fields to Customers Emails"
9632
+ msgstr ""
9633
+
9634
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:35
9635
+ msgid "Emails Fields Template"
9636
+ msgstr ""
9637
+
9638
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:36
9639
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:62
9640
+ msgid "Before the fields"
9641
+ msgstr ""
9642
+
9643
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:42
9644
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:68
9645
+ msgid "Each field"
9646
+ msgstr ""
9647
+
9648
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:48
9649
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:74
9650
+ msgid "After the fields"
9651
+ msgstr ""
9652
+
9653
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:54
9654
+ msgid ""
9655
+ "Add All Fields to \"Order Received\" (i.e. \"Thank You\") and \"View Order\" "
9656
+ "Pages"
9657
+ msgstr ""
9658
+
9659
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:61
9660
+ msgid "\"Order Received\" Fields Template"
9661
+ msgstr ""
9662
+
9663
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:80
9664
+ msgid "Textarea Field Values"
9665
+ msgstr ""
9666
+
9667
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:81
9668
+ msgid "When saving, \"clean\" textarea field values"
9669
+ msgstr ""
9670
+
9671
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:87
9672
+ msgid "Textarea Line Breaks"
9673
+ msgstr ""
9674
+
9675
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:88
9676
+ #, php-format
9677
+ msgid "When displaying, replace line breaks with %s in textarea field values"
9678
+ msgstr ""
9679
+
9680
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:89
9681
+ msgid "Does <strong>not</strong> affect admin order edit page."
9682
+ msgstr ""
9683
+
9684
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:95
9685
+ msgid "Custom Fields Number"
9686
+ msgstr ""
9687
+
9688
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:96
9689
+ #: includes/settings/wcj-settings-product-input-fields.php:62
9690
+ msgid "Click Save changes after you change this number."
9691
+ msgstr ""
9692
+
9693
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:116
9694
+ msgid "Custom Field"
9695
+ msgstr ""
9696
+
9697
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:146
9698
+ msgid "State"
9699
+ msgstr ""
9700
+
9701
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:173
9702
+ #: includes/settings/wcj-settings-checkout-customization.php:153
9703
+ msgid "You can use HTML here."
9704
+ msgstr ""
9705
+
9706
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:187
9707
+ msgid "Section"
9708
+ msgstr ""
9709
+
9710
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:192
9711
+ #: includes/settings/wcj-settings-checkout-custom-info.php:56
9712
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:114
9713
+ msgid "Billing"
9714
+ msgstr ""
9715
+
9716
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:199
9717
+ #: includes/settings/wcj-settings-eu-vat-number.php:63
9718
+ #: includes/widgets/class-wcj-widget-multicurrency.php:100
9719
+ msgid "Class"
9720
+ msgstr ""
9721
+
9722
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:204
9723
+ #: includes/settings/wcj-settings-eu-vat-number.php:68
9724
+ msgid "Wide"
9725
+ msgstr ""
9726
+
9727
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:205
9728
+ #: includes/settings/wcj-settings-eu-vat-number.php:69
9729
+ msgid "First"
9730
+ msgstr ""
9731
+
9732
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:206
9733
+ #: includes/settings/wcj-settings-eu-vat-number.php:70
9734
+ msgid "Last"
9735
+ msgstr ""
9736
+
9737
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:210
9738
+ #: includes/settings/wcj-settings-eu-vat-number.php:56
9739
+ #: includes/templates/wcj-radio-for-variations.php:24
9740
+ #: includes/tools/class-wcj-order-statuses-tool.php:213
9741
+ msgid "Clear"
9742
+ msgstr ""
9743
+
9744
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:216
9745
+ msgid "Customer Meta Fields"
9746
+ msgstr ""
9747
+
9748
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:224
9749
+ msgid "One option per line"
9750
+ msgstr ""
9751
+
9752
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:231
9753
+ msgid "Select: Use select2 Library"
9754
+ msgstr ""
9755
+
9756
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:238
9757
+ msgid "select2: min input length"
9758
+ msgstr ""
9759
+
9760
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:239
9761
+ msgid "select2: Number of characters necessary to start a search."
9762
+ msgstr ""
9763
+
9764
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:247
9765
+ msgid "select2: max input length"
9766
+ msgstr ""
9767
+
9768
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:248
9769
+ msgid "select2: Maximum number of characters that can be entered for an input."
9770
+ msgstr ""
9771
+
9772
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:257
9773
+ msgid "Checkbox: Value for ON"
9774
+ msgstr ""
9775
+
9776
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:263
9777
+ msgid "Checkbox: Value for OFF"
9778
+ msgstr ""
9779
+
9780
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:269
9781
+ msgid "Checkbox: Default Value"
9782
+ msgstr ""
9783
+
9784
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:278
9785
+ msgid "Datepicker/Weekpicker: Date Format"
9786
+ msgstr ""
9787
+
9788
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:279
9789
+ msgid ""
9790
+ "Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
9791
+ "target=\"_blank\">documentation on date and time formatting</a> for valid "
9792
+ "date formats"
9793
+ msgstr ""
9794
+
9795
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:286
9796
+ msgid "Datepicker/Weekpicker: Min Date"
9797
+ msgstr ""
9798
+
9799
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:287
9800
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:294
9801
+ msgid "days"
9802
+ msgstr ""
9803
+
9804
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:293
9805
+ msgid "Datepicker/Weekpicker: Max Date"
9806
+ msgstr ""
9807
+
9808
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:300
9809
+ msgid "Datepicker/Weekpicker: Add Year Selector"
9810
+ msgstr ""
9811
+
9812
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:306
9813
+ msgid "Datepicker/Weekpicker: Year Selector: Year Range"
9814
+ msgstr ""
9815
+
9816
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:307
9817
+ msgid ""
9818
+ "The range of years displayed in the year drop-down: either relative to "
9819
+ "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
9820
+ "+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
9821
+ "nn\"). Note that this option only affects what appears in the drop-down, to "
9822
+ "restrict which dates may be selected use the minDate and/or maxDate options."
9823
+ msgstr ""
9824
+
9825
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:313
9826
+ msgid "Datepicker/Weekpicker: First Week Day"
9827
+ msgstr ""
9828
+
9829
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:328
9830
+ msgid "Timepicker: Time Format"
9831
+ msgstr ""
9832
+
9833
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:329
9834
+ msgid ""
9835
+ "Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
9836
+ "options page</a> for valid time formats"
9837
+ msgstr ""
9838
+
9839
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:336
9840
+ msgid "minutes"
9841
+ msgstr ""
9842
+
9843
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:342
9844
+ #: includes/settings/wcj-settings-product-listings.php:47
9845
+ msgid "Exclude Categories"
9846
+ msgstr ""
9847
+
9848
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:343
9849
+ msgid "Hide this field if there is a product of selected category in cart."
9850
+ msgstr ""
9851
+
9852
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:351
9853
+ msgid "Include Categories"
9854
+ msgstr ""
9855
+
9856
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:352
9857
+ msgid ""
9858
+ "Show this field only if there is a product of selected category in cart."
9859
+ msgstr ""
9860
+
9861
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:360
9862
+ #: includes/settings/wcj-settings-global-discount.php:158
9863
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:125
9864
+ #: includes/settings/wcj-settings-product-addons.php:149
9865
+ #: includes/settings/wcj-settings-related-products.php:244
9866
+ msgid "Exclude Products"
9867
+ msgstr ""
9868
+
9869
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:361
9870
+ msgid "Hide this field if there is a selected product in cart."
9871
+ msgstr ""
9872
+
9873
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:369
9874
+ #: includes/settings/wcj-settings-global-discount.php:147
9875
+ #: includes/settings/wcj-settings-related-products.php:233
9876
+ msgid "Include Products"
9877
+ msgstr ""
9878
+
9879
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:370
9880
+ msgid "Show this field only if there is a selected product in cart."
9881
+ msgstr ""
9882
+
9883
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:378
9884
+ msgid "Min Cart Amount"
9885
+ msgstr ""
9886
+
9887
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:379
9888
+ msgid ""
9889
+ "Show this field only if cart total is at least this amount. Set zero to "
9890
+ "disable."
9891
+ msgstr ""
9892
+
9893
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:386
9894
+ msgid "Max Cart Amount"
9895
+ msgstr ""
9896
+
9897
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:387
9898
+ msgid ""
9899
+ "Show this field only if cart total is not more than this amount. Set zero to "
9900
+ "disable."
9901
+ msgstr ""
9902
+
9903
+ #: includes/settings/wcj-settings-checkout-custom-info.php:15
9904
+ msgid "Checkout Custom Info Blocks"
9905
+ msgstr ""
9906
+
9907
+ #: includes/settings/wcj-settings-checkout-custom-info.php:54
9908
+ #: includes/settings/wcj-settings-checkout-files-upload.php:56
9909
+ #: includes/settings/wcj-settings-empty-cart.php:68
9910
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:112
9911
+ msgid "Before checkout form"
9912
+ msgstr ""
9913
+
9914
+ #: includes/settings/wcj-settings-checkout-custom-info.php:55
9915
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:113
9916
+ msgid "Before customer details"
9917
+ msgstr ""
9918
+
9919
+ #: includes/settings/wcj-settings-checkout-custom-info.php:58
9920
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:116
9921
+ msgid "After customer details"
9922
+ msgstr ""
9923
+
9924
+ #: includes/settings/wcj-settings-checkout-custom-info.php:59
9925
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:117
9926
+ msgid "Before order review"
9927
+ msgstr ""
9928
+
9929
+ #: includes/settings/wcj-settings-checkout-custom-info.php:60
9930
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:118
9931
+ msgid "Order review"
9932
+ msgstr ""
9933
+
9934
+ #: includes/settings/wcj-settings-checkout-custom-info.php:61
9935
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:123
9936
+ msgid "After order review"
9937
+ msgstr ""
9938
+
9939
+ #: includes/settings/wcj-settings-checkout-custom-info.php:62
9940
+ #: includes/settings/wcj-settings-checkout-files-upload.php:57
9941
+ #: includes/settings/wcj-settings-empty-cart.php:69
9942
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:124
9943
+ msgid "After checkout form"
9944
+ msgstr ""
9945
+
9946
+ #: includes/settings/wcj-settings-checkout-custom-info.php:81
9947
+ msgid "Order Received (Thank You) page"
9948
+ msgstr ""
9949
+
9950
+ #: includes/settings/wcj-settings-checkout-customization.php:14
9951
+ msgid "Restrict Countries by Customer's IP"
9952
+ msgstr ""
9953
+
9954
+ #: includes/settings/wcj-settings-checkout-customization.php:19
9955
+ msgid "Restrict Billing Countries by Customer's IP"
9956
+ msgstr ""
9957
+
9958
+ #: includes/settings/wcj-settings-checkout-customization.php:26
9959
+ msgid "Restrict Shipping Countries by Customer's IP"
9960
+ msgstr ""
9961
+
9962
+ #: includes/settings/wcj-settings-checkout-customization.php:28
9963
+ #, php-format
9964
+ msgid ""
9965
+ "To restrict shipping countries, \"Shipping location(s)\" option in %s must "
9966
+ "be set to \"Ship to specific countries only\" (and you can leave \"Ship to "
9967
+ "specific countries\" option empty there)."
9968
+ msgstr ""
9969
+
9970
+ #: includes/settings/wcj-settings-checkout-customization.php:30
9971
+ #: includes/settings/wcj-settings-eu-vat-number.php:133
9972
+ msgid "WooCommerce > Settings > General"
9973
+ msgstr ""
9974
+
9975
+ #: includes/settings/wcj-settings-checkout-customization.php:37
9976
+ msgid "Ignore on Admin"
9977
+ msgstr ""
9978
+
9979
+ #: includes/settings/wcj-settings-checkout-customization.php:39
9980
+ msgid "Ignores restriction on admin"
9981
+ msgstr ""
9982
+
9983
+ #: includes/settings/wcj-settings-checkout-customization.php:46
9984
+ msgid "Restrict By Customer's Billing Country"
9985
+ msgstr ""
9986
+
9987
+ #: includes/settings/wcj-settings-checkout-customization.php:48
9988
+ msgid ""
9989
+ "Restricts based on Customer's Billing Country, ignoring other restrictions"
9990
+ msgstr ""
9991
+
9992
+ #: includes/settings/wcj-settings-checkout-customization.php:55
9993
+ msgid "Restrict based on a YITH manual order"
9994
+ msgstr ""
9995
+
9996
+ #: includes/settings/wcj-settings-checkout-customization.php:57
9997
+ msgid ""
9998
+ "Enable if you are creating a manual order using \"YITH WooCommerce Request a "
9999
+ "Quote\" plugin and selecting the billing country manually"
10000
+ msgstr ""
10001
+
10002
+ #: includes/settings/wcj-settings-checkout-customization.php:64
10003
+ msgid "Conditions"
10004
+ msgstr ""
10005
+
10006
+ #: includes/settings/wcj-settings-checkout-customization.php:65
10007
+ msgid "The restriction will work only if some condition is true."
10008
+ msgstr ""
10009
+
10010
+ #: includes/settings/wcj-settings-checkout-customization.php:65
10011
+ msgid "Leave it empty if you want to restrict countries everywhere."
10012
+ msgstr ""
10013
+
10014
+ #: includes/settings/wcj-settings-checkout-customization.php:71
10015
+ msgid "Is Cart"
10016
+ msgstr ""
10017
+
10018
+ #: includes/settings/wcj-settings-checkout-customization.php:72
10019
+ msgid "Is Checkout"
10020
+ msgstr ""
10021
+
10022
+ #: includes/settings/wcj-settings-checkout-customization.php:80
10023
+ msgid "\"Create an account?\" Checkbox Options"
10024
+ msgstr ""
10025
+
10026
+ #: includes/settings/wcj-settings-checkout-customization.php:85
10027
+ msgid "\"Create an account?\" Checkbox"
10028
+ msgstr ""
10029
+
10030
+ #: includes/settings/wcj-settings-checkout-customization.php:86
10031
+ msgid "\"Create an account?\" checkbox default value"
10032
+ msgstr ""
10033
+
10034
+ #: includes/settings/wcj-settings-checkout-customization.php:91
10035
+ msgid "WooCommerce default"
10036
+ msgstr ""
10037
+
10038
+ #: includes/settings/wcj-settings-checkout-customization.php:93
10039
+ msgid "Not checked"
10040
+ msgstr ""
10041
+
10042
+ #: includes/settings/wcj-settings-checkout-customization.php:101
10043
+ msgid "\"Order Again\" Button Options"
10044
+ msgstr ""
10045
+
10046
+ #: includes/settings/wcj-settings-checkout-customization.php:106
10047
+ msgid "Hide \"Order Again\" Button on \"View Order\" Page"
10048
+ msgstr ""
10049
+
10050
+ #: includes/settings/wcj-settings-checkout-customization.php:117
10051
+ msgid "Disable Fields on Checkout for Logged Users"
10052
+ msgstr ""
10053
+
10054
+ #: includes/settings/wcj-settings-checkout-customization.php:122
10055
+ msgid "Fields to Disable"
10056
+ msgstr ""
10057
+
10058
+ #: includes/settings/wcj-settings-checkout-customization.php:128
10059
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:25
10060
+ msgid "Billing country"
10061
+ msgstr ""
10062
+
10063
+ #: includes/settings/wcj-settings-checkout-customization.php:129
10064
+ msgid "Billing first name"
10065
+ msgstr ""
10066
+
10067
+ #: includes/settings/wcj-settings-checkout-customization.php:130
10068
+ msgid "Billing last name"
10069
+ msgstr ""
10070
+
10071
+ #: includes/settings/wcj-settings-checkout-customization.php:131
10072
+ msgid "Billing company"
10073
+ msgstr ""
10074
+
10075
+ #: includes/settings/wcj-settings-checkout-customization.php:132
10076
+ msgid "Billing address 1"
10077
+ msgstr ""
10078
+
10079
+ #: includes/settings/wcj-settings-checkout-customization.php:133
10080
+ msgid "Billing address 2"
10081
+ msgstr ""
10082
+
10083
+ #: includes/settings/wcj-settings-checkout-customization.php:134
10084
+ msgid "Billing city"
10085
+ msgstr ""
10086
+
10087
+ #: includes/settings/wcj-settings-checkout-customization.php:135
10088
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:36
10089
+ msgid "Billing state"
10090
+ msgstr ""
10091
+
10092
+ #: includes/settings/wcj-settings-checkout-customization.php:136
10093
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:46
10094
+ msgid "Billing postcode"
10095
+ msgstr ""
10096
+
10097
+ #: includes/settings/wcj-settings-checkout-customization.php:137
10098
+ msgid "Billing email"
10099
+ msgstr ""
10100
+
10101
+ #: includes/settings/wcj-settings-checkout-customization.php:138
10102
+ msgid "Billing phone"
10103
+ msgstr ""
10104
+
10105
+ #: includes/settings/wcj-settings-checkout-customization.php:139
10106
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:26
10107
+ msgid "Shipping country"
10108
+ msgstr ""
10109
+
10110
+ #: includes/settings/wcj-settings-checkout-customization.php:140
10111
+ msgid "Shipping first name"
10112
+ msgstr ""
10113
+
10114
+ #: includes/settings/wcj-settings-checkout-customization.php:141
10115
+ msgid "Shipping last name"
10116
+ msgstr ""
10117
+
10118
+ #: includes/settings/wcj-settings-checkout-customization.php:142
10119
+ msgid "Shipping company"
10120
+ msgstr ""
10121
+
10122
+ #: includes/settings/wcj-settings-checkout-customization.php:143
10123
+ msgid "Shipping address 1"
10124
+ msgstr ""
10125
+
10126
+ #: includes/settings/wcj-settings-checkout-customization.php:144
10127
+ msgid "Shipping address 2"
10128
+ msgstr ""
10129
+
10130
+ #: includes/settings/wcj-settings-checkout-customization.php:145
10131
+ msgid "Shipping city"
10132
+ msgstr ""
10133
+
10134
+ #: includes/settings/wcj-settings-checkout-customization.php:146
10135
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:37
10136
+ msgid "Shipping state"
10137
+ msgstr ""
10138
+
10139
+ #: includes/settings/wcj-settings-checkout-customization.php:147
10140
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:47
10141
+ msgid "Shipping postcode"
10142
+ msgstr ""
10143
+
10144
+ #: includes/settings/wcj-settings-checkout-customization.php:148
10145
+ msgid "Order comments"
10146
+ msgstr ""
10147
+
10148
+ #: includes/settings/wcj-settings-checkout-customization.php:152
10149
+ msgid "Message for Logged Users"
10150
+ msgstr ""
10151
+
10152
+ #: includes/settings/wcj-settings-checkout-customization.php:160
10153
+ msgid "Advanced: Custom Fields (Readonly)"
10154
+ msgstr ""
10155
+
10156
+ #: includes/settings/wcj-settings-checkout-customization.php:162
10157
+ #: includes/settings/wcj-settings-checkout-customization.php:172
10158
+ #, php-format
10159
+ msgid "Comma separated list of fields ids, e.g.: %s."
10160
+ msgstr ""
10161
+
10162
+ #: includes/settings/wcj-settings-checkout-customization.php:170
10163
+ msgid "Advanced: Custom Fields (Disabled)"
10164
+ msgstr ""
10165
+
10166
+ #: includes/settings/wcj-settings-checkout-customization.php:184
10167
+ msgid "\"Order received\" Message Options"
10168
+ msgstr ""
10169
+
10170
+ #: includes/settings/wcj-settings-checkout-customization.php:189
10171
+ #: includes/settings/wcj-settings-checkout-customization.php:212
10172
+ msgid "Customize Message"
10173
+ msgstr ""
10174
+
10175
+ #: includes/settings/wcj-settings-checkout-customization.php:207
10176
+ msgid "\"Returning customer?\" Message Options"
10177
+ msgstr ""
10178
+
10179
+ #: includes/settings/wcj-settings-checkout-customization.php:229
10180
+ #: includes/settings/wcj-settings-checkout-customization.php:235
10181
+ msgid "Recalculate Checkout"
10182
+ msgstr ""
10183
+
10184
+ #: includes/settings/wcj-settings-checkout-customization.php:230
10185
+ msgid ""
10186
+ "Recalculate checkout right after the default calculation has been requested."
10187
+ msgstr ""
10188
+
10189
+ #: includes/settings/wcj-settings-checkout-customization.php:242
10190
+ #: includes/settings/wcj-settings-checkout-customization.php:267
10191
+ msgid "Fields"
10192
+ msgstr ""
10193
+
10194
+ #: includes/settings/wcj-settings-checkout-customization.php:243
10195
+ msgid ""
10196
+ "Required fields that need to be changed in order to recalculate checkout."
10197
+ msgstr ""
10198
+
10199
+ #: includes/settings/wcj-settings-checkout-customization.php:244
10200
+ #: includes/settings/wcj-settings-checkout-customization.php:269
10201
+ msgid "Use CSS selector syntax."
10202
+ msgstr ""
10203
+
10204
+ #: includes/settings/wcj-settings-checkout-customization.php:254
10205
+ #: includes/settings/wcj-settings-checkout-customization.php:260
10206
+ msgid "Force Checkout Update"
10207
+ msgstr ""
10208
+
10209
+ #: includes/settings/wcj-settings-checkout-customization.php:255
10210
+ msgid "Update checkout when some field have its value changed."
10211
+ msgstr ""
10212
+
10213
+ #: includes/settings/wcj-settings-checkout-customization.php:268
10214
+ msgid "Fields that need to be changed in order to update checkout."
10215
+ msgstr ""
10216
+
10217
+ #: includes/settings/wcj-settings-checkout-fees.php:14
10218
+ msgid "Fees"
10219
+ msgstr ""
10220
+
10221
+ #: includes/settings/wcj-settings-checkout-fees.php:19
10222
+ msgid "Total Fees"
10223
+ msgstr ""
10224
+
10225
+ #: includes/settings/wcj-settings-checkout-fees.php:53
10226
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:82
10227
+ msgid "Taxable"
10228
+ msgstr ""
10229
+
10230
+ #: includes/settings/wcj-settings-checkout-fees.php:83
10231
+ msgid "Cart Minimum Quantity"
10232
+ msgstr ""
10233
+
10234
+ #: includes/settings/wcj-settings-checkout-fees.php:84
10235
+ msgid "Minimum amount of items in cart."
10236
+ msgstr ""
10237
+
10238
+ #: includes/settings/wcj-settings-checkout-fees.php:91
10239
+ msgid "Cart Maximum Quantity"
10240
+ msgstr ""
10241
+
10242
+ #: includes/settings/wcj-settings-checkout-fees.php:92
10243
+ msgid "Maximum amount of items in cart."
10244
+ msgstr ""
10245
+
10246
+ #: includes/settings/wcj-settings-checkout-fees.php:92
10247
+ msgid "Zero or empty values will not be considered"
10248
+ msgstr ""
10249
+
10250
+ #: includes/settings/wcj-settings-checkout-fees.php:98
10251
+ msgid "Cart Minimum Total"
10252
+ msgstr ""
10253
+
10254
+ #: includes/settings/wcj-settings-checkout-fees.php:99
10255
+ msgid "Minimum total amount in cart."
10256
+ msgstr ""
10257
+
10258
+ #: includes/settings/wcj-settings-checkout-fees.php:107
10259
+ msgid "Cart Maximum Total"
10260
+ msgstr ""
10261
+
10262
+ #: includes/settings/wcj-settings-checkout-fees.php:108
10263
+ msgid "Maximum total amount in cart."
10264
+ msgstr ""
10265
+
10266
+ #: includes/settings/wcj-settings-checkout-fees.php:115
10267
+ msgid "Checkout Field"
10268
+ msgstr ""
10269
+
10270
+ #: includes/settings/wcj-settings-checkout-fees.php:116
10271
+ #, php-format
10272
+ msgid ""
10273
+ "If you want fee to be added only if some checkout field is enabled, enter "
10274
+ "field's key here. For example, if you have added one custom billing checkout "
10275
+ "field with Booster's \"Checkout Custom Fields\" module, enter %s here."
10276
+ msgstr ""
10277
+
10278
+ #: includes/settings/wcj-settings-checkout-fees.php:117
10279
+ msgid "Ignored if empty (i.e. fee will be always added)."
10280
+ msgstr ""
10281
+
10282
+ #: includes/settings/wcj-settings-checkout-fees.php:123
10283
+ msgid "Overlap"
10284
+ msgstr ""
10285
+
10286
+ #: includes/settings/wcj-settings-checkout-fees.php:124
10287
+ msgid "If valid, will overlap other fee"
10288
+ msgstr ""
10289
+
10290
+ #: includes/settings/wcj-settings-checkout-fees.php:134
10291
+ #: includes/settings/wcj-settings-product-add-to-cart.php:297
10292
+ #: includes/settings/wcj-settings-product-add-to-cart.php:333
10293
+ msgid "Priority"
10294
+ msgstr ""
10295
+
10296
+ #: includes/settings/wcj-settings-checkout-fees.php:135
10297
+ msgid "The higher the number the higher the priority."
10298
+ msgstr ""
10299
+
10300
+ #: includes/settings/wcj-settings-checkout-fees.php:135
10301
+ msgid "Will mostly make sense for overlapping."
10302
+ msgstr ""
10303
+
10304
+ #: includes/settings/wcj-settings-checkout-files-upload.php:23
10305
+ #: includes/settings/wcj-settings-products-xml.php:25
10306
+ msgid "Total Files"
10307
+ msgstr ""
10308
+
10309
+ #: includes/settings/wcj-settings-checkout-files-upload.php:58
10310
+ msgid "Do not add on checkout"
10311
+ msgstr ""
10312
+
10313
+ #: includes/settings/wcj-settings-checkout-files-upload.php:62
10314
+ msgid "Position order"
10315
+ msgstr ""
10316
+
10317
+ #: includes/settings/wcj-settings-checkout-files-upload.php:70
10318
+ msgid "Add to Thank You page"
10319
+ msgstr ""
10320
+
10321
+ #: includes/settings/wcj-settings-checkout-files-upload.php:76
10322
+ msgid "Add to My Account page"
10323
+ msgstr ""
10324
+
10325
+ #: includes/settings/wcj-settings-checkout-files-upload.php:82
10326
+ msgid "Leave blank to disable label"
10327
+ msgstr ""
10328
+
10329
+ #: includes/settings/wcj-settings-checkout-files-upload.php:84
10330
+ msgid "Please select file to upload"
10331
+ msgstr ""
10332
+
10333
+ #: includes/settings/wcj-settings-checkout-files-upload.php:88
10334
+ msgid "Accepted file types"
10335
+ msgstr ""
10336
+
10337
+ #: includes/settings/wcj-settings-checkout-files-upload.php:89
10338
+ msgid ""
10339
+ "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
10340
+ "files"
10341
+ msgstr ""
10342
+
10343
+ #: includes/settings/wcj-settings-checkout-files-upload.php:95
10344
+ msgid "Label: Upload button"
10345
+ msgstr ""
10346
+
10347
+ #: includes/settings/wcj-settings-checkout-files-upload.php:101
10348
+ msgid "Label: Remove button"
10349
+ msgstr ""
10350
+
10351
+ #: includes/settings/wcj-settings-checkout-files-upload.php:107
10352
+ msgid "Notice: Wrong file type"
10353
+ msgstr ""
10354
+
10355
+ #: includes/settings/wcj-settings-checkout-files-upload.php:108
10356
+ #: includes/settings/wcj-settings-checkout-files-upload.php:121
10357
+ #: includes/settings/wcj-settings-checkout-files-upload.php:134
10358
+ #, php-format
10359
+ msgid "%s will be replaced with file name"
10360
+ msgstr ""
10361
+
10362
+ #: includes/settings/wcj-settings-checkout-files-upload.php:114
10363
+ msgid "Notice: File is required"
10364
+ msgstr ""
10365
+
10366
+ #: includes/settings/wcj-settings-checkout-files-upload.php:120
10367
+ msgid "Notice: File was successfully uploaded"
10368
+ msgstr ""
10369
+
10370
+ #: includes/settings/wcj-settings-checkout-files-upload.php:127
10371
+ msgid "Notice: No file selected"
10372
+ msgstr ""
10373
+
10374
+ #: includes/settings/wcj-settings-checkout-files-upload.php:133
10375
+ msgid "Notice: File was successfully removed"
10376
+ msgstr ""
10377
+
10378
+ #: includes/settings/wcj-settings-checkout-files-upload.php:140
10379
+ msgid "PRODUCTS to show this field"
10380
+ msgstr ""
10381
+
10382
+ #: includes/settings/wcj-settings-checkout-files-upload.php:141
10383
+ msgid ""
10384
+ "To show this field only if at least one selected product is in cart, enter "
10385
+ "products here. Leave blank to show for all products."
10386
+ msgstr ""
10387
+
10388
+ #: includes/settings/wcj-settings-checkout-files-upload.php:149
10389
+ msgid "CATEGORIES to show this field"
10390
+ msgstr ""
10391
+
10392
+ #: includes/settings/wcj-settings-checkout-files-upload.php:150
10393
+ msgid ""
10394
+ "To show this field only if at least one product of selected category is in "
10395
+ "cart, enter categories here. Leave blank to show for all products."
10396
+ msgstr ""
10397
+
10398
+ #: includes/settings/wcj-settings-checkout-files-upload.php:158
10399
+ msgid "TAGS to show this field"
10400
+ msgstr ""
10401
+
10402
+ #: includes/settings/wcj-settings-checkout-files-upload.php:159
10403
+ msgid ""
10404
+ "To show this field only if at least one product of selected tag is in cart, "
10405
+ "enter tags here. Leave blank to show for all products."
10406
+ msgstr ""
10407
+
10408
+ #: includes/settings/wcj-settings-checkout-files-upload.php:167
10409
+ msgid "USER ROLES to show this field"
10410
+ msgstr ""
10411
+
10412
+ #: includes/settings/wcj-settings-checkout-files-upload.php:168
10413
+ #: includes/settings/wcj-settings-checkout-files-upload.php:204
10414
+ msgid "Leave blank to show for all user roles."
10415
+ msgstr ""
10416
+
10417
+ #: includes/settings/wcj-settings-checkout-files-upload.php:176
10418
+ msgid "PRODUCTS to hide this field"
10419
+ msgstr ""
10420
+
10421
+ #: includes/settings/wcj-settings-checkout-files-upload.php:177
10422
+ msgid ""
10423
+ "To hide this field if at least one selected product is in cart, enter "
10424
+ "products here. Leave blank to show for all products."
10425
+ msgstr ""
10426
+
10427
+ #: includes/settings/wcj-settings-checkout-files-upload.php:185
10428
+ msgid "CATEGORIES to hide this field"
10429
+ msgstr ""
10430
+
10431
+ #: includes/settings/wcj-settings-checkout-files-upload.php:186
10432
+ msgid ""
10433
+ "To hide this field if at least one product of selected category is in cart, "
10434
+ "enter categories here. Leave blank to show for all products."
10435
+ msgstr ""
10436
+
10437
+ #: includes/settings/wcj-settings-checkout-files-upload.php:194
10438
+ msgid "TAGS to hide this field"
10439
+ msgstr ""
10440
+
10441
+ #: includes/settings/wcj-settings-checkout-files-upload.php:195
10442
+ msgid ""
10443
+ "To hide this field if at least one product of selected tag is in cart, enter "
10444
+ "tags here. Leave blank to show for all products."
10445
+ msgstr ""
10446
+
10447
+ #: includes/settings/wcj-settings-checkout-files-upload.php:203
10448
+ msgid "USER ROLES to hide this field"
10449
+ msgstr ""
10450
+
10451
+ #: includes/settings/wcj-settings-checkout-files-upload.php:226
10452
+ msgid "Remove All Uploaded Files on Empty Cart"
10453
+ msgstr ""
10454
+
10455
+ #: includes/settings/wcj-settings-checkout-files-upload.php:233
10456
+ #: includes/settings/wcj-settings-checkout-files-upload.php:431
10457
+ #: includes/settings/wcj-settings-order-min-amount.php:76
10458
+ msgid "Add notice"
10459
+ msgstr ""
10460
+
10461
+ #: includes/settings/wcj-settings-checkout-files-upload.php:250
10462
+ #: includes/settings/wcj-settings-product-input-fields.php:295
10463
+ msgid "Emails Options"
10464
+ msgstr ""
10465
+
10466
+ #: includes/settings/wcj-settings-checkout-files-upload.php:255
10467
+ #: includes/settings/wcj-settings-product-input-fields.php:300
10468
+ msgid "Attach Files to Admin's New Order Emails"
10469
+ msgstr ""
10470
+
10471
+ #: includes/settings/wcj-settings-checkout-files-upload.php:256
10472
+ #: includes/settings/wcj-settings-checkout-files-upload.php:263
10473
+ #: includes/settings/wcj-settings-product-input-fields.php:301
10474
+ #: includes/settings/wcj-settings-product-input-fields.php:308
10475
+ msgid "Attach"
10476
+ msgstr ""
10477
+
10478
+ #: includes/settings/wcj-settings-checkout-files-upload.php:262
10479
+ #: includes/settings/wcj-settings-product-input-fields.php:307
10480
+ msgid "Attach Files to Customer's Processing Order Emails"
10481
+ msgstr ""
10482
+
10483
+ #: includes/settings/wcj-settings-checkout-files-upload.php:269
10484
+ msgid "Send Additional Email to Admin on User Actions"
10485
+ msgstr ""
10486
+
10487
+ #: includes/settings/wcj-settings-checkout-files-upload.php:270
10488
+ #, php-format
10489
+ msgid "Admin email: <em>%s</em>."
10490
+ msgstr ""
10491
+
10492
+ #: includes/settings/wcj-settings-checkout-files-upload.php:276
10493
+ msgid "File removed on \"Thank You\" or \"My Account\" page"
10494
+ msgstr ""
10495
+
10496
+ #: includes/settings/wcj-settings-checkout-files-upload.php:277
10497
+ msgid "File uploaded on \"Thank You\" or \"My Account\" page"
10498
+ msgstr ""
10499
+
10500
+ #: includes/settings/wcj-settings-checkout-files-upload.php:281
10501
+ msgid "Attach file on upload action"
10502
+ msgstr ""
10503
+
10504
+ #: includes/settings/wcj-settings-checkout-files-upload.php:293
10505
+ msgid "Form Template Options"
10506
+ msgstr ""
10507
+
10508
+ #: includes/settings/wcj-settings-checkout-files-upload.php:298
10509
+ #: includes/settings/wcj-settings-checkout-files-upload.php:352
10510
+ #: includes/settings/wcj-settings-checkout-files-upload.php:393
10511
+ #: includes/settings/wcj-settings-product-addons.php:346
10512
+ #: includes/settings/wcj-settings-product-addons.php:377
10513
+ msgid "Before"
10514
+ msgstr ""
10515
+
10516
+ #: includes/settings/wcj-settings-checkout-files-upload.php:306
10517
+ msgid "Replaced values: %field_id%, %field_label%, %required_html%."
10518
+ msgstr ""
10519
+
10520
+ #: includes/settings/wcj-settings-checkout-files-upload.php:313
10521
+ #: includes/settings/wcj-settings-export.php:68
10522
+ #: includes/settings/wcj-settings-export.php:136
10523
+ #: includes/settings/wcj-settings-export.php:218
10524
+ msgid "Field"
10525
+ msgstr ""
10526
+
10527
+ #: includes/settings/wcj-settings-checkout-files-upload.php:314
10528
+ msgid "Replaced values: %field_html%, %button_html%."
10529
+ msgstr ""
10530
+
10531
+ #: includes/settings/wcj-settings-checkout-files-upload.php:321
10532
+ #: includes/settings/wcj-settings-checkout-files-upload.php:367
10533
+ #: includes/settings/wcj-settings-checkout-files-upload.php:408
10534
+ #: includes/settings/wcj-settings-product-addons.php:361
10535
+ #: includes/settings/wcj-settings-product-addons.php:392
10536
+ msgid "After"
10537
+ msgstr ""
10538
+
10539
+ #: includes/settings/wcj-settings-checkout-files-upload.php:328
10540
+ msgid "Show images in field"
10541
+ msgstr ""
10542
+
10543
+ #: includes/settings/wcj-settings-checkout-files-upload.php:335
10544
+ #: includes/settings/wcj-settings-checkout-files-upload.php:374
10545
+ msgid "Image style"
10546
+ msgstr ""
10547
+
10548
+ #: includes/settings/wcj-settings-checkout-files-upload.php:347
10549
+ msgid "Order Template Options"
10550
+ msgstr ""
10551
+
10552
+ #: includes/settings/wcj-settings-checkout-files-upload.php:359
10553
+ #: includes/settings/wcj-settings-checkout-files-upload.php:376
10554
+ #: includes/settings/wcj-settings-checkout-files-upload.php:400
10555
+ msgid "Item"
10556
+ msgstr ""
10557
+
10558
+ #: includes/settings/wcj-settings-checkout-files-upload.php:375
10559
+ #, php-format
10560
+ msgid "Ignored, if %s is not included in %s option above."
10561
+ msgstr ""
10562
+
10563
+ #: includes/settings/wcj-settings-checkout-files-upload.php:388
10564
+ msgid "Email Template Options"
10565
+ msgstr ""
10566
+
10567
+ #: includes/settings/wcj-settings-checkout-files-upload.php:421
10568
+ #: includes/settings/wcj-settings-currency-per-product.php:251
10569
+ #: includes/settings/wcj-settings-eu-vat-number.php:227
10570
+ #: includes/settings/wcj-settings-general.php:65
10571
+ #: includes/settings/wcj-settings-payment-gateways.php:49
10572
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:43
10573
+ #: includes/settings/wcj-settings-product-by-date.php:117
10574
+ #: includes/settings/wcj-settings-product-custom-info.php:185
10575
+ #: includes/settings/wcj-settings-product-input-fields.php:348
10576
+ #: includes/settings/wcj-settings-shipping-by-condition.php:108
10577
+ msgid "Advanced Options"
10578
+ msgstr ""
10579
+
10580
+ #: includes/settings/wcj-settings-checkout-files-upload.php:426
10581
+ msgid "Notice Type"
10582
+ msgstr ""
10583
+
10584
+ #: includes/settings/wcj-settings-checkout-files-upload.php:432
10585
+ #: includes/settings/wcj-settings-order-min-amount.php:75
10586
+ msgid "Print notice"
10587
+ msgstr ""
10588
+
10589
+ #: includes/settings/wcj-settings-checkout-files-upload.php:433
10590
+ msgid "Disable notice"
10591
+ msgstr ""
10592
+
10593
+ #: includes/settings/wcj-settings-checkout-files-upload.php:437
10594
+ msgid "Block Potentially Harmful Files"
10595
+ msgstr ""
10596
+
10597
+ #: includes/settings/wcj-settings-checkout-files-upload.php:444
10598
+ msgid "Potentially Harmful File Extensions"
10599
+ msgstr ""
10600
+
10601
+ #: includes/settings/wcj-settings-checkout-files-upload.php:445
10602
+ #, php-format
10603
+ msgid "List of file extensions separated by vertical bar %s."
10604
+ msgstr ""
10605
+
10606
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:14
10607
+ msgid "All Coupons"
10608
+ msgstr ""
10609
+
10610
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:19
10611
+ msgid "Disable All Coupons for Selected User Roles"
10612
+ msgstr ""
10613
+
10614
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:20
10615
+ msgid ""
10616
+ "This will disable all coupons for selected user roles. Coupons will be "
10617
+ "disabled completely, including coupon code input on the cart page."
10618
+ msgstr ""
10619
+
10620
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:28
10621
+ msgid "Invalidate All Coupons for Selected User Roles"
10622
+ msgstr ""
10623
+
10624
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:29
10625
+ msgid ""
10626
+ "This will invalidate all coupons for selected user roles. Coupon code input "
10627
+ "will still be available on the cart page."
10628
+ msgstr ""
10629
+
10630
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:41
10631
+ msgid "Per Coupon"
10632
+ msgstr ""
10633
+
10634
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:46
10635
+ msgid "Invalidate per Coupon"
10636
+ msgstr ""
10637
+
10638
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:48
10639
+ msgid ""
10640
+ "This will add \"Booster: Coupon by User Role\" meta box to each coupon's "
10641
+ "admin edit page."
10642
+ msgstr ""
10643
+
10644
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:65
10645
+ msgid "\"Coupon is not valid\" Message"
10646
+ msgstr ""
10647
+
10648
+ #: includes/settings/wcj-settings-coupon-by-user-role.php:66
10649
+ msgid "Message that will be displayed for invalid coupons by user role."
10650
+ msgstr ""
10651
+
10652
+ #: includes/settings/wcj-settings-coupon-code-generator.php:15
10653
+ #: includes/settings/wcj-settings-coupon-code-generator.php:16
10654
+ #: includes/settings/wcj-settings-coupon-code-generator.php:17
10655
+ msgid "Hash"
10656
+ msgstr ""
10657
+
10658
+ #: includes/settings/wcj-settings-coupon-code-generator.php:15
10659
+ #: includes/settings/wcj-settings-coupon-code-generator.php:16
10660
+ #: includes/settings/wcj-settings-coupon-code-generator.php:17
10661
+ #: includes/settings/wcj-settings-coupon-code-generator.php:18
10662
+ #: includes/settings/wcj-settings-coupon-code-generator.php:19
10663
+ #: includes/settings/wcj-settings-coupon-code-generator.php:20
10664
+ #, php-format
10665
+ msgid "length %d"
10666
+ msgstr ""
10667
+
10668
+ #: includes/settings/wcj-settings-coupon-code-generator.php:18
10669
+ msgid "Random letters and numbers"
10670
+ msgstr ""
10671
+
10672
+ #: includes/settings/wcj-settings-coupon-code-generator.php:19
10673
+ msgid "Random letters"
10674
+ msgstr ""
10675
+
10676
+ #: includes/settings/wcj-settings-coupon-code-generator.php:20
10677
+ msgid "Random numbers"
10678
+ msgstr ""
10679
+
10680
+ #: includes/settings/wcj-settings-coupon-code-generator.php:30
10681
+ msgid "Generate Coupon Code Automatically"
10682
+ msgstr ""
10683
+
10684
+ #: includes/settings/wcj-settings-coupon-code-generator.php:31
10685
+ msgid ""
10686
+ "When enabled, this will generate coupon code automatically when adding new "
10687
+ "coupon."
10688
+ msgstr ""
10689
+
10690
+ #: includes/settings/wcj-settings-coupon-code-generator.php:38
10691
+ msgid "Algorithm"
10692
+ msgstr ""
10693
+
10694
+ #: includes/settings/wcj-settings-coupon-code-generator.php:43
10695
+ #, php-format
10696
+ msgid "Algorithms: %s."
10697
+ msgstr ""
10698
+
10699
+ #: includes/settings/wcj-settings-coupon-code-generator.php:49
10700
+ msgid ""
10701
+ "Length value will be ignored if set above the maximum length for selected "
10702
+ "algorithm. Set to zero to use full length for selected algorithm."
10703
+ msgstr ""
10704
+
10705
+ #: includes/settings/wcj-settings-cross-sells.php:19
10706
+ msgid "Cross-sells Total"
10707
+ msgstr ""
10708
+
10709
+ #: includes/settings/wcj-settings-cross-sells.php:20
10710
+ #: includes/settings/wcj-settings-cross-sells.php:28
10711
+ #: includes/settings/wcj-settings-upsells.php:20
10712
+ #: includes/settings/wcj-settings-upsells.php:28
10713
+ msgid "Set to zero for WooCommerce default."
10714
+ msgstr ""
10715
+
10716
+ #: includes/settings/wcj-settings-cross-sells.php:20
10717
+ #: includes/settings/wcj-settings-upsells.php:20
10718
+ msgid "Set to -1 for unlimited."
10719
+ msgstr ""
10720
+
10721
+ #: includes/settings/wcj-settings-cross-sells.php:27
10722
+ msgid "Cross-sells Columns"
10723
+ msgstr ""
10724
+
10725
+ #: includes/settings/wcj-settings-cross-sells.php:35
10726
+ msgid "Cross-sells Order By"
10727
+ msgstr ""
10728
+
10729
+ #: includes/settings/wcj-settings-cross-sells.php:40
10730
+ #: includes/settings/wcj-settings-cross-sells.php:58
10731
+ #: includes/settings/wcj-settings-upsells.php:40
10732
+ msgid "No changes (default behaviour)"
10733
+ msgstr ""
10734
+
10735
+ #: includes/settings/wcj-settings-cross-sells.php:41
10736
+ #: includes/settings/wcj-settings-order-numbers.php:153
10737
+ #: includes/settings/wcj-settings-related-products.php:22
10738
+ #: includes/settings/wcj-settings-upsells.php:41
10739
+ msgid "Random"
10740
+ msgstr ""
10741
+
10742
+ #: includes/settings/wcj-settings-cross-sells.php:45
10743
+ #: includes/settings/wcj-settings-products-xml.php:225
10744
+ #: includes/settings/wcj-settings-related-products.php:31
10745
+ #: includes/settings/wcj-settings-upsells.php:45
10746
+ msgid "Modified"
10747
+ msgstr ""
10748
+
10749
+ #: includes/settings/wcj-settings-cross-sells.php:46
10750
+ #: includes/settings/wcj-settings-my-account.php:95
10751
+ #: includes/settings/wcj-settings-related-products.php:32
10752
+ #: includes/settings/wcj-settings-upsells.php:46
10753
+ msgid "Menu order"
10754
+ msgstr ""
10755
+
10756
+ #: includes/settings/wcj-settings-cross-sells.php:53
10757
+ msgid "Cross-sells Order"
10758
+ msgstr ""
10759
+
10760
+ #: includes/settings/wcj-settings-cross-sells.php:59
10761
+ #: includes/settings/wcj-settings-order-numbers.php:163
10762
+ #: includes/settings/wcj-settings-products-xml.php:235
10763
+ #: includes/settings/wcj-settings-related-products.php:91
10764
+ msgid "Descending"
10765
+ msgstr ""
10766
+
10767
+ #: includes/settings/wcj-settings-cross-sells.php:60
10768
+ #: includes/settings/wcj-settings-order-numbers.php:162
10769
+ #: includes/settings/wcj-settings-products-xml.php:236
10770
+ #: includes/settings/wcj-settings-related-products.php:90
10771
+ msgid "Ascending"
10772
+ msgstr ""
10773
+
10774
+ #: includes/settings/wcj-settings-cross-sells.php:66
10775
+ msgid "Cross-sells Position"
10776
+ msgstr ""
10777
+
10778
+ #: includes/settings/wcj-settings-cross-sells.php:67
10779
+ msgid "Cross-sells position in cart."
10780
+ msgstr ""
10781
+
10782
+ #: includes/settings/wcj-settings-cross-sells.php:72
10783
+ #: includes/settings/wcj-settings-upsells.php:57
10784
+ msgid "No changes (default)"
10785
+ msgstr ""
10786
+
10787
+ #: includes/settings/wcj-settings-cross-sells.php:79
10788
+ #: includes/settings/wcj-settings-product-input-fields.php:200
10789
+ #: includes/settings/wcj-settings-upsells.php:66
10790
+ msgid "Position priority"
10791
+ msgstr ""
10792
+
10793
+ #: includes/settings/wcj-settings-cross-sells.php:80
10794
+ msgid ""
10795
+ "Ignored if \"Cross-sells Position\" option above is set to \"No changes "
10796
+ "(default)\"."
10797
+ msgstr ""
10798
+
10799
+ #: includes/settings/wcj-settings-cross-sells.php:86
10800
+ msgid "Hide Cross-sells"
10801
+ msgstr ""
10802
+
10803
+ #: includes/settings/wcj-settings-cross-sells.php:96
10804
+ msgid "Global Cross-sells"
10805
+ msgstr ""
10806
+
10807
+ #: includes/settings/wcj-settings-cross-sells.php:98
10808
+ msgid ""
10809
+ "Enable this section, if you want to add same cross-sells to all products."
10810
+ msgstr ""
10811
+
10812
+ #: includes/settings/wcj-settings-cross-sells.php:106
10813
+ msgid "Global cross-sells"
10814
+ msgstr ""
10815
+
10816
+ #: includes/settings/wcj-settings-cross-sells.php:114
10817
+ msgid "Exclude \"Not in Stock\" Products"
10818
+ msgstr ""
10819
+
10820
+ #: includes/settings/wcj-settings-cross-sells.php:116
10821
+ msgid ""
10822
+ "Enable this, if you want to exclude \"not in stock\" products from cross-"
10823
+ "sells."
10824
+ msgstr ""
10825
+
10826
+ #: includes/settings/wcj-settings-cross-sells.php:124
10827
+ msgid "Replace Cart Products with Cross-sells"
10828
+ msgstr ""
10829
+
10830
+ #: includes/settings/wcj-settings-cross-sells.php:126
10831
+ msgid ""
10832
+ "Enable this, if you want original products to be removed from cart and "
10833
+ "replaced with cross-sells, if customer adds cross-sells on cart page."
10834
+ msgstr ""
10835
+
10836
+ #: includes/settings/wcj-settings-cross-sells.php:127
10837
+ #, php-format
10838
+ msgid ""
10839
+ "Please note that this option will work only if \"%s\" option is disabled in "
10840
+ "%s."
10841
+ msgstr ""
10842
+
10843
+ #: includes/settings/wcj-settings-cross-sells.php:128
10844
+ msgid "Enable AJAX add to cart buttons on archives"
10845
+ msgstr ""
10846
+
10847
+ #: includes/settings/wcj-settings-cross-sells.php:129
10848
+ msgid ""
10849
+ "WooCommerce > Settings > Products > General > Shop pages > Add to cart "
10850
+ "behaviour"
10851
+ msgstr ""
10852
+
10853
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:18
10854
+ #, php-format
10855
+ msgid "%s till next update."
10856
+ msgstr ""
10857
+
10858
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:20
10859
+ #, php-format
10860
+ msgid "%s seconds till next update."
10861
+ msgstr ""
10862
+
10863
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:31
10864
+ #: includes/settings/wcj-settings-currency-per-product.php:119
10865
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:22
10866
+ #: includes/settings/wcj-settings-multicurrency.php:22
10867
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:68
10868
+ #: includes/settings/wcj-settings-price-by-country.php:302
10869
+ msgid "Exchange Rates Updates"
10870
+ msgstr ""
10871
+
10872
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:43
10873
+ msgid "Update all rates now"
10874
+ msgstr ""
10875
+
10876
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:53
10877
+ msgid "Exchange Rates Rounding"
10878
+ msgstr ""
10879
+
10880
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:60
10881
+ msgid "i.e. rounding precision"
10882
+ msgstr ""
10883
+
10884
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:61
10885
+ msgid "Rounding precision sets number of decimal digits to round to."
10886
+ msgstr ""
10887
+
10888
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:68
10889
+ msgid "Exchange Rates Offset - Percent"
10890
+ msgstr ""
10891
+
10892
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:69
10893
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:77
10894
+ msgid ""
10895
+ "If both percent and fixed offsets are set - percent offset is applied first "
10896
+ "and fixed offset after that."
10897
+ msgstr ""
10898
+
10899
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:76
10900
+ msgid "Exchange Rates Offset - Fixed"
10901
+ msgstr ""
10902
+
10903
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:84
10904
+ msgid "Calculate with Inversion"
10905
+ msgstr ""
10906
+
10907
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:86
10908
+ msgid ""
10909
+ "If your currency pair have very small exchange rate, you may want to invert "
10910
+ "currencies before calculating the rate."
10911
+ msgstr ""
10912
+
10913
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:92
10914
+ msgid "Always Use cURL"
10915
+ msgstr ""
10916
+
10917
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:94
10918
+ msgid ""
10919
+ "If for some reason currency exchange rates are not updating, try enabling "
10920
+ "this option."
10921
+ msgstr ""
10922
+
10923
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:113
10924
+ msgid "API Keys"
10925
+ msgstr ""
10926
+
10927
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:114
10928
+ msgid "API keys provided by the Exchange Rates Servers"
10929
+ msgstr ""
10930
+
10931
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:119
10932
+ msgid "Free Currency Converter API"
10933
+ msgstr ""
10934
+
10935
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:120
10936
+ #, php-format
10937
+ msgid "More information at %s"
10938
+ msgstr ""
10939
+
10940
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:129
10941
+ msgid "Custom Currencies Options"
10942
+ msgstr ""
10943
+
10944
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:131
10945
+ #, php-format
10946
+ msgid ""
10947
+ "You can add more currencies in this section. E.g. this can be used to "
10948
+ "display exchange rates with %s shortcodes."
10949
+ msgstr ""
10950
+
10951
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:142
10952
+ #: includes/settings/wcj-settings-currency.php:61
10953
+ msgid "Total Custom Currencies"
10954
+ msgstr ""
10955
+
10956
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:154
10957
+ #: includes/settings/wcj-settings-currency.php:73
10958
+ msgid "Custom Currency"
10959
+ msgstr ""
10960
+
10961
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:173
10962
+ #: includes/settings/wcj-settings-price-by-country.php:297
10963
+ msgid "Exchange Rates"
10964
+ msgstr ""
10965
+
10966
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:175
10967
+ msgid ""
10968
+ "All currencies from all <strong>enabled</strong> modules (with \"Exchange "
10969
+ "Rates Updates\" set to \"Automatically via Currency Exchange Rates module\") "
10970
+ "will be automatically added to the list."
10971
+ msgstr ""
10972
+
10973
+ #: includes/settings/wcj-settings-currency-external-products.php:14
10974
+ msgid "Currency for External Products Options"
10975
+ msgstr ""
10976
+
10977
+ #: includes/settings/wcj-settings-currency-external-products.php:20
10978
+ #: includes/settings/wcj-settings-currency-per-product.php:180
10979
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:131
10980
+ #: includes/settings/wcj-settings-multicurrency.php:234
10981
+ #: includes/settings/wcj-settings-price-by-country.php:277
10982
+ #: includes/settings/wcj-settings-price-formats.php:59
10983
+ msgid "Currency"
10984
+ msgstr ""
10985
+
10986
+ #: includes/settings/wcj-settings-currency-external-products.php:21
10987
+ msgid "Set currency for all external products."
10988
+ msgstr ""
10989
+
10990
+ #: includes/settings/wcj-settings-currency-per-product.php:23
10991
+ msgid "Cart and Checkout Behaviour Options"
10992
+ msgstr ""
10993
+
10994
+ #: includes/settings/wcj-settings-currency-per-product.php:28
10995
+ msgid "Cart and Checkout Behaviour"
10996
+ msgstr ""
10997
+
10998
+ #: includes/settings/wcj-settings-currency-per-product.php:33
10999
+ msgid "Convert to shop default currency"
11000
+ msgstr ""
11001
+
11002
+ #: includes/settings/wcj-settings-currency-per-product.php:34
11003
+ #: includes/settings/wcj-settings-currency-per-product.php:41
11004
+ msgid "Leave product currency (allow only one product to be added to cart)"
11005
+ msgstr ""
11006
+
11007
+ #: includes/settings/wcj-settings-currency-per-product.php:35
11008
+ #: includes/settings/wcj-settings-currency-per-product.php:48
11009
+ msgid ""
11010
+ "Leave product currency (allow only same currency products to be added to "
11011
+ "cart)"
11012
+ msgstr ""
11013
+
11014
+ #: includes/settings/wcj-settings-currency-per-product.php:36
11015
+ msgid "Convert to currency of last product in cart"
11016
+ msgstr ""
11017
+
11018
+ #: includes/settings/wcj-settings-currency-per-product.php:37
11019
+ msgid "Convert to currency of first product in cart"
11020
+ msgstr ""
11021
+
11022
+ #: includes/settings/wcj-settings-currency-per-product.php:76
11023
+ msgid "Additional Options"
11024
+ msgstr ""
11025
+
11026
+ #: includes/settings/wcj-settings-currency-per-product.php:77
11027
+ msgid ""
11028
+ "Save module's settings after changing this options to see new settings "
11029
+ "fields."
11030
+ msgstr ""
11031
+
11032
+ #: includes/settings/wcj-settings-currency-per-product.php:82
11033
+ msgid "Currency per Product Authors"
11034
+ msgstr ""
11035
+
11036
+ #: includes/settings/wcj-settings-currency-per-product.php:89
11037
+ msgid "Currency per Product Authors User Roles"
11038
+ msgstr ""
11039
+
11040
+ #: includes/settings/wcj-settings-currency-per-product.php:96
11041
+ msgid "Currency per Product Categories"
11042
+ msgstr ""
11043
+
11044
+ #: includes/settings/wcj-settings-currency-per-product.php:103
11045
+ msgid "Currency per Product Tags"
11046
+ msgstr ""
11047
+
11048
+ #: includes/settings/wcj-settings-currency-per-product.php:114
11049
+ msgid "Exchange Rates Updates Options"
11050
+ msgstr ""
11051
+
11052
+ #: includes/settings/wcj-settings-currency-per-product.php:124
11053
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:27
11054
+ #: includes/settings/wcj-settings-multicurrency.php:28
11055
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:73
11056
+ #: includes/settings/wcj-settings-price-by-country.php:307
11057
+ msgid "Enter Rates Manually"
11058
+ msgstr ""
11059
+
11060
+ #: includes/settings/wcj-settings-currency-per-product.php:125
11061
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:28
11062
+ #: includes/settings/wcj-settings-multicurrency.php:29
11063
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:74
11064
+ #: includes/settings/wcj-settings-price-by-country.php:308
11065
+ msgid "Automatically via Currency Exchange Rates module"
11066
+ msgstr ""
11067
+
11068
+ #: includes/settings/wcj-settings-currency-per-product.php:128
11069
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:31
11070
+ #: includes/settings/wcj-settings-multicurrency.php:32
11071
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:77
11072
+ #: includes/settings/wcj-settings-price-by-country.php:311
11073
+ msgid "Visit"
11074
+ msgstr ""
11075
+
11076
+ #: includes/settings/wcj-settings-currency-per-product.php:128
11077
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:31
11078
+ #: includes/settings/wcj-settings-multicurrency.php:32
11079
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:79
11080
+ #: includes/settings/wcj-settings-price-by-country.php:311
11081
+ msgid "Currency Exchange Rates module"
11082
+ msgstr ""
11083
+
11084
+ #: includes/settings/wcj-settings-currency-per-product.php:138
11085
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:102
11086
+ #: includes/settings/wcj-settings-multicurrency.php:203
11087
+ msgid "Currencies Options"
11088
+ msgstr ""
11089
+
11090
+ #: includes/settings/wcj-settings-currency-per-product.php:139
11091
+ msgid ""
11092
+ "Exchange rates for currencies won't be used for products if \"Cart and "
11093
+ "Checkout Behaviour\" is set to one of \"Leave product currency ...\" "
11094
+ "options. However it may be used for shipping price conversion."
11095
+ msgstr ""
11096
+
11097
+ #: includes/settings/wcj-settings-currency-per-product.php:144
11098
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:107
11099
+ #: includes/settings/wcj-settings-multicurrency.php:209
11100
+ msgid "Total Currencies"
11101
+ msgstr ""
11102
+
11103
+ #: includes/settings/wcj-settings-currency-per-product.php:199
11104
+ msgid "Product Authors"
11105
+ msgstr ""
11106
+
11107
+ #: includes/settings/wcj-settings-currency-per-product.php:211
11108
+ msgid "Product Authors User Roles"
11109
+ msgstr ""
11110
+
11111
+ #: includes/settings/wcj-settings-currency-per-product.php:256
11112
+ msgid "Advanced: Save Calculated Products Prices"
11113
+ msgstr ""
11114
+
11115
+ #: includes/settings/wcj-settings-currency-per-product.php:257
11116
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:69
11117
+ #: includes/settings/wcj-settings-multicurrency.php:192
11118
+ msgid ""
11119
+ "This may help if you are experiencing compatibility issues with other "
11120
+ "plugins."
11121
+ msgstr ""
11122
+
11123
+ #: includes/settings/wcj-settings-currency.php:14
11124
+ msgid "Currency Symbol Options"
11125
+ msgstr ""
11126
+
11127
+ #: includes/settings/wcj-settings-currency.php:16
11128
+ #, php-format
11129
+ msgid "You can use shortcodes in currency symbols, e.g.: %s."
11130
+ msgstr ""
11131
+
11132
+ #: includes/settings/wcj-settings-currency.php:21
11133
+ msgid "Hide Currency Symbol"
11134
+ msgstr ""
11135
+
11136
+ #: includes/settings/wcj-settings-currency.php:23
11137
+ msgid "Hides currency symbol completely."
11138
+ msgstr ""
11139
+
11140
+ #: includes/settings/wcj-settings-currency.php:56
11141
+ msgid "Custom Currencies"
11142
+ msgstr ""
11143
+
11144
+ #: includes/settings/wcj-settings-currency.php:74
11145
+ msgid "Currency Name (required)"
11146
+ msgstr ""
11147
+
11148
+ #: includes/settings/wcj-settings-currency.php:80
11149
+ msgid "Currency Code (required)"
11150
+ msgstr ""
11151
+
11152
+ #: includes/settings/wcj-settings-currency.php:86
11153
+ msgid "Currency Symbol"
11154
+ msgstr ""
11155
+
11156
+ #: includes/settings/wcj-settings-custom-css.php:19
11157
+ #: includes/settings/wcj-settings-custom-js.php:19
11158
+ msgid "Code Position"
11159
+ msgstr ""
11160
+
11161
+ #: includes/settings/wcj-settings-custom-css.php:29
11162
+ msgid "Custom CSS - Front end (Customers)"
11163
+ msgstr ""
11164
+
11165
+ #: includes/settings/wcj-settings-custom-css.php:36
11166
+ msgid "Custom CSS - Back end (Admin)"
11167
+ msgstr ""
11168
+
11169
+ #: includes/settings/wcj-settings-custom-css.php:43
11170
+ msgid "Custom CSS on per Product Basis"
11171
+ msgstr ""
11172
+
11173
+ #: includes/settings/wcj-settings-custom-css.php:45
11174
+ msgid ""
11175
+ "Set product specific CSS to be loaded only on specific product's single page."
11176
+ msgstr ""
11177
+
11178
+ #: includes/settings/wcj-settings-custom-css.php:46
11179
+ #: includes/settings/wcj-settings-order-quantities.php:118
11180
+ #: includes/settings/wcj-settings-order-quantities.php:176
11181
+ #: includes/settings/wcj-settings-order-quantities.php:217
11182
+ #: includes/settings/wcj-settings-sale-flash.php:66
11183
+ msgid "This will add meta box to each product's edit page."
11184
+ msgstr ""
11185
+
11186
+ #: includes/settings/wcj-settings-custom-css.php:52
11187
+ msgid "Custom CSS on per Product Basis - Default Field Value"
11188
+ msgstr ""
11189
+
11190
+ #: includes/settings/wcj-settings-custom-js.php:29
11191
+ msgid "Custom JS - Front end (Customers)"
11192
+ msgstr ""
11193
+
11194
+ #: includes/settings/wcj-settings-custom-js.php:36
11195
+ msgid "Custom JS - Back end (Admin)"
11196
+ msgstr ""
11197
+
11198
+ #: includes/settings/wcj-settings-custom-php.php:27
11199
+ #, php-format
11200
+ msgid "Without the %s tag."
11201
+ msgstr ""
11202
+
11203
+ #: includes/settings/wcj-settings-custom-php.php:29
11204
+ #, php-format
11205
+ msgid "Automatically created file: %s."
11206
+ msgstr ""
11207
+
11208
+ #: includes/settings/wcj-settings-debug-tools.php:14
11209
+ msgid "Debug Tools Options"
11210
+ msgstr ""
11211
+
11212
+ #: includes/settings/wcj-settings-debug-tools.php:20
11213
+ msgid "Enables logging to Booster log."
11214
+ msgstr ""
11215
+
11216
+ #: includes/settings/wcj-settings-debug-tools.php:27
11217
+ msgid "WooCommerce Log"
11218
+ msgstr ""
11219
+
11220
+ #: includes/settings/wcj-settings-debug-tools.php:28
11221
+ msgid "Enables logging to WooCommerce log."
11222
+ msgstr ""
11223
+
11224
+ #: includes/settings/wcj-settings-debug-tools.php:35
11225
+ msgid "Debug"
11226
+ msgstr ""
11227
+
11228
+ #: includes/settings/wcj-settings-debug-tools.php:36
11229
+ msgid "Enables debug mode."
11230
+ msgstr ""
11231
+
11232
+ #: includes/settings/wcj-settings-debug-tools.php:43
11233
+ msgid "System Info"
11234
+ msgstr ""
11235
+
11236
+ #: includes/settings/wcj-settings-debug-tools.php:47
11237
+ msgid "Show extended info"
11238
+ msgstr ""
11239
+
11240
+ #: includes/settings/wcj-settings-email-options.php:14
11241
+ msgid "Product Info in Item Name"
11242
+ msgstr ""
11243
+
11244
+ #: includes/settings/wcj-settings-email-options.php:19
11245
+ msgid "Add Product Info to Item Name"
11246
+ msgstr ""
11247
+
11248
+ #: includes/settings/wcj-settings-email-options.php:26
11249
+ #: includes/settings/wcj-settings-template-editor.php:43
11250
+ #: includes/settings/wcj-settings-track-users.php:26
11251
+ msgid "Info"
11252
+ msgstr ""
11253
+
11254
+ #: includes/settings/wcj-settings-email-options.php:27
11255
+ #, php-format
11256
+ msgid ""
11257
+ "You can use <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</"
11258
+ "a> here."
11259
+ msgstr ""
11260
+
11261
+ #: includes/settings/wcj-settings-emails-verification.php:19
11262
+ msgid "Skip Email Verification for User Roles"
11263
+ msgstr ""
11264
+
11265
+ #: includes/settings/wcj-settings-emails-verification.php:27
11266
+ msgid "Enable Email Verification for Already Registered Users"
11267
+ msgstr ""
11268
+
11269
+ #: includes/settings/wcj-settings-emails-verification.php:29
11270
+ msgid ""
11271
+ "If enabled, all your current users will have to verify their emails when "
11272
+ "logging to your site."
11273
+ msgstr ""
11274
+
11275
+ #: includes/settings/wcj-settings-emails-verification.php:35
11276
+ msgid "Login User After Successful Verification"
11277
+ msgstr ""
11278
+
11279
+ #: includes/settings/wcj-settings-emails-verification.php:42
11280
+ msgid "Prevent User Login Globally"
11281
+ msgstr ""
11282
+
11283
+ #: includes/settings/wcj-settings-emails-verification.php:44
11284
+ msgid ""
11285
+ "Enable if users are logged in automattically when they should not, like "
11286
+ "after registration on checkout"
11287
+ msgstr ""
11288
+
11289
+ #: includes/settings/wcj-settings-emails-verification.php:50
11290
+ msgid "Redirect User After Successful Verification to Custom URL"
11291
+ msgstr ""
11292
+
11293
+ #: includes/settings/wcj-settings-emails-verification.php:51
11294
+ msgid "Redirect URL. Ignored if empty."
11295
+ msgstr ""
11296
+
11297
+ #: includes/settings/wcj-settings-emails-verification.php:62
11298
+ msgid "Messages"
11299
+ msgstr ""
11300
+
11301
+ #: includes/settings/wcj-settings-emails-verification.php:67
11302
+ msgid "Message - Success"
11303
+ msgstr ""
11304
+
11305
+ #: includes/settings/wcj-settings-emails-verification.php:74
11306
+ msgid "Message - Error"
11307
+ msgstr ""
11308
+
11309
+ #: includes/settings/wcj-settings-emails-verification.php:82
11310
+ msgid "Message - Failed"
11311
+ msgstr ""
11312
+
11313
+ #: includes/settings/wcj-settings-emails-verification.php:90
11314
+ msgid "Message - Failed (no user ID)"
11315
+ msgstr ""
11316
+
11317
+ #: includes/settings/wcj-settings-emails-verification.php:97
11318
+ msgid "Message - Activate"
11319
+ msgstr ""
11320
+
11321
+ #: includes/settings/wcj-settings-emails-verification.php:104
11322
+ msgid "Message - Resend"
11323
+ msgstr ""
11324
+
11325
+ #: includes/settings/wcj-settings-emails-verification.php:120
11326
+ #: includes/settings/wcj-settings-offer-price.php:328
11327
+ msgid "Email Subject"
11328
+ msgstr ""
11329
+
11330
+ #: includes/settings/wcj-settings-emails-verification.php:129
11331
+ msgid "Email Content"
11332
+ msgstr ""
11333
+
11334
+ #: includes/settings/wcj-settings-emails-verification.php:139
11335
+ #: includes/settings/wcj-settings-offer-price.php:335
11336
+ msgid "Email Template"
11337
+ msgstr ""
11338
+
11339
+ #: includes/settings/wcj-settings-emails-verification.php:140
11340
+ msgid "Possible values: Plain, WooCommerce."
11341
+ msgstr ""
11342
+
11343
+ #: includes/settings/wcj-settings-emails-verification.php:145
11344
+ msgid "Plain"
11345
+ msgstr ""
11346
+
11347
+ #: includes/settings/wcj-settings-emails-verification.php:152
11348
+ msgid "If WooCommerce template is selected, set email heading here."
11349
+ msgstr ""
11350
+
11351
+ #: includes/settings/wcj-settings-emails.php:18
11352
+ #, php-format
11353
+ msgid ""
11354
+ "This section lets you set number of custom emails to add. After setting the "
11355
+ "number, visit <a href=\"%s\">WooCommerce > Settings > Emails</a> to set each "
11356
+ "email options."
11357
+ msgstr ""
11358
+
11359
+ #: includes/settings/wcj-settings-emails.php:23
11360
+ msgid "Custom Emails Number"
11361
+ msgstr ""
11362
+
11363
+ #: includes/settings/wcj-settings-emails.php:35
11364
+ msgid "Admin Title Custom Email"
11365
+ msgstr ""
11366
+
11367
+ #: includes/settings/wcj-settings-empty-cart.php:15
11368
+ msgid ""
11369
+ "You can also use <strong>[wcj_empty_cart_button]</strong> shortcode to place "
11370
+ "the button anywhere on your site."
11371
+ msgstr ""
11372
+
11373
+ #: includes/settings/wcj-settings-empty-cart.php:20
11374
+ msgid "Empty Cart Button Text"
11375
+ msgstr ""
11376
+
11377
+ #: includes/settings/wcj-settings-empty-cart.php:28
11378
+ msgid "Wrapping DIV style"
11379
+ msgstr ""
11380
+
11381
+ #: includes/settings/wcj-settings-empty-cart.php:29
11382
+ msgid "Style for the button's div. Default is \"float: right;\""
11383
+ msgstr ""
11384
+
11385
+ #: includes/settings/wcj-settings-empty-cart.php:35
11386
+ msgid "Button HTML Class"
11387
+ msgstr ""
11388
+
11389
+ #: includes/settings/wcj-settings-empty-cart.php:41
11390
+ msgid "Button position on the Cart page"
11391
+ msgstr ""
11392
+
11393
+ #: includes/settings/wcj-settings-empty-cart.php:48
11394
+ msgid "Cart totals: Before cart totals"
11395
+ msgstr ""
11396
+
11397
+ #: includes/settings/wcj-settings-empty-cart.php:53
11398
+ msgid "Cart totals: After proceed to checkout button"
11399
+ msgstr ""
11400
+
11401
+ #: includes/settings/wcj-settings-empty-cart.php:54
11402
+ msgid "Cart totals: After cart totals"
11403
+ msgstr ""
11404
+
11405
+ #: includes/settings/wcj-settings-empty-cart.php:55
11406
+ msgid "After cart collaterals"
11407
+ msgstr ""
11408
+
11409
+ #: includes/settings/wcj-settings-empty-cart.php:62
11410
+ msgid "Button position on the Checkout page"
11411
+ msgstr ""
11412
+
11413
+ #: includes/settings/wcj-settings-empty-cart.php:73
11414
+ msgid "Confirmation"
11415
+ msgstr ""
11416
+
11417
+ #: includes/settings/wcj-settings-empty-cart.php:78
11418
+ msgid "No confirmation"
11419
+ msgstr ""
11420
+
11421
+ #: includes/settings/wcj-settings-empty-cart.php:79
11422
+ msgid "Confirm by pop up box"
11423
+ msgstr ""
11424
+
11425
+ #: includes/settings/wcj-settings-empty-cart.php:83
11426
+ msgid "Confirmation Text (if enabled)"
11427
+ msgstr ""
11428
+
11429
+ #: includes/settings/wcj-settings-eu-vat-number.php:20
11430
+ msgid "Field Label"
11431
+ msgstr ""
11432
+
11433
+ #: includes/settings/wcj-settings-eu-vat-number.php:74
11434
+ msgid "Validate"
11435
+ msgstr ""
11436
+
11437
+ #: includes/settings/wcj-settings-eu-vat-number.php:81
11438
+ msgid "Message on not valid"
11439
+ msgstr ""
11440
+
11441
+ #: includes/settings/wcj-settings-eu-vat-number.php:88
11442
+ msgid "First Validation Method"
11443
+ msgstr ""
11444
+
11445
+ #: includes/settings/wcj-settings-eu-vat-number.php:89
11446
+ msgid ""
11447
+ "Change this if you are having issues when validating VAT. This only selects "
11448
+ "first method to try - if not succeeded, remaining methods will be used for "
11449
+ "validation."
11450
+ msgstr ""
11451
+
11452
+ #: includes/settings/wcj-settings-eu-vat-number.php:94
11453
+ msgid "SOAP"
11454
+ msgstr ""
11455
+
11456
+ #: includes/settings/wcj-settings-eu-vat-number.php:95
11457
+ msgid "cURL"
11458
+ msgstr ""
11459
+
11460
+ #: includes/settings/wcj-settings-eu-vat-number.php:96
11461
+ msgid "Simple"
11462
+ msgstr ""
11463
+
11464
+ #: includes/settings/wcj-settings-eu-vat-number.php:100
11465
+ msgid "Exempt VAT for Valid Numbers"
11466
+ msgstr ""
11467
+
11468
+ #: includes/settings/wcj-settings-eu-vat-number.php:107
11469
+ msgid "Exempt VAT on Cart"
11470
+ msgstr ""
11471
+
11472
+ #: includes/settings/wcj-settings-eu-vat-number.php:109
11473
+ msgid "Exempts VAT even on Cart page."
11474
+ msgstr ""
11475
+
11476
+ #: includes/settings/wcj-settings-eu-vat-number.php:115
11477
+ msgid "Show VAT field for EU countries only"
11478
+ msgstr ""
11479
+
11480
+ #: includes/settings/wcj-settings-eu-vat-number.php:123
11481
+ msgid "Exempt VAT by Customer's EU VAT"
11482
+ msgstr ""
11483
+
11484
+ #: includes/settings/wcj-settings-eu-vat-number.php:125
11485
+ msgid ""
11486
+ "Exempts VAT by checking previously registered EU VAT numbers from customers."
11487
+ msgstr ""
11488
+
11489
+ #: includes/settings/wcj-settings-eu-vat-number.php:131
11490
+ msgid "Preserve VAT in Base Country"
11491
+ msgstr ""
11492
+
11493
+ #: includes/settings/wcj-settings-eu-vat-number.php:132
11494
+ #, php-format
11495
+ msgid ""
11496
+ "This will validate the VAT, but won't exempt VAT for base country VAT "
11497
+ "numbers. Base (i.e. store) country is set in %s."
11498
+ msgstr ""
11499
+
11500
+ #: includes/settings/wcj-settings-eu-vat-number.php:151
11501
+ msgid "Check for IP Location Country"
11502
+ msgstr ""
11503
+
11504
+ #: includes/settings/wcj-settings-eu-vat-number.php:152
11505
+ msgid ""
11506
+ "This will check if customer's country (located by customer's IP) matches the "
11507
+ "country in entered VAT number."
11508
+ msgstr ""
11509
+
11510
+ #: includes/settings/wcj-settings-eu-vat-number.php:175
11511
+ msgid "After order table"
11512
+ msgstr ""
11513
+
11514
+ #: includes/settings/wcj-settings-eu-vat-number.php:176
11515
+ msgid "In billing address"
11516
+ msgstr ""
11517
+
11518
+ #: includes/settings/wcj-settings-eu-vat-number.php:180
11519
+ msgid "Add Progress Messages"
11520
+ msgstr ""
11521
+
11522
+ #: includes/settings/wcj-settings-eu-vat-number.php:187
11523
+ msgid "Progress Message: Validating"
11524
+ msgstr ""
11525
+
11526
+ #: includes/settings/wcj-settings-eu-vat-number.php:194
11527
+ msgid "Progress Message: Valid"
11528
+ msgstr ""
11529
+
11530
+ #: includes/settings/wcj-settings-eu-vat-number.php:201
11531
+ msgid "Progress Message: Not Valid"
11532
+ msgstr ""
11533
+
11534
+ #: includes/settings/wcj-settings-eu-vat-number.php:208
11535
+ msgid "Progress Message: Validation Failed"
11536
+ msgstr ""
11537
+
11538
+ #: includes/settings/wcj-settings-eu-vat-number.php:209
11539
+ msgid "Message on VAT validation server timeout etc."
11540
+ msgstr ""
11541
+
11542
+ #: includes/settings/wcj-settings-eu-vat-number.php:216
11543
+ msgid "Add EU VAT Number Summary Meta Box to Admin Order Edit Page"
11544
+ msgstr ""
11545
+
11546
+ #: includes/settings/wcj-settings-eu-vat-number.php:232
11547
+ msgid "Skip VAT Validation for Selected Countries"
11548
+ msgstr ""
11549
+
11550
+ #: includes/settings/wcj-settings-eu-vat-number.php:233
11551
+ msgid ""
11552
+ "List all countries you want VAT validation to be skipped for (i.e. VAT "
11553
+ "always valid). Ignored if empty."
11554
+ msgstr ""
11555
+
11556
+ #: includes/settings/wcj-settings-eu-vat-number.php:234
11557
+ #, php-format
11558
+ msgid "Enter country codes as comma separated list, e.g. %s."
11559
+ msgstr ""
11560
+
11561
+ #: includes/settings/wcj-settings-eu-vat-number.php:240
11562
+ msgid "Read '_vat_number' meta"
11563
+ msgstr ""
11564
+
11565
+ #: includes/settings/wcj-settings-eu-vat-number.php:241
11566
+ #, php-format
11567
+ msgid ""
11568
+ "Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> "
11569
+ "plugin, reading meta from '_vat_number'."
11570
+ msgstr ""
11571
+
11572
+ #: includes/settings/wcj-settings-export.php:15
11573
+ msgid "Export Options"
11574
+ msgstr ""
11575
+
11576
+ #: includes/settings/wcj-settings-export.php:20
11577
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:183
11578
+ msgid "CSV Separator"
11579
+ msgstr ""
11580
+
11581
+ #: includes/settings/wcj-settings-export.php:26
11582
+ msgid "UTF-8 BOM"
11583
+ msgstr ""
11584
+
11585
+ #: includes/settings/wcj-settings-export.php:28
11586
+ msgid "Add UTF-8 BOM sequence"
11587
+ msgstr ""
11588
+
11589
+ #: includes/settings/wcj-settings-export.php:38
11590
+ msgid "Export Orders Options"
11591
+ msgstr ""
11592
+
11593
+ #: includes/settings/wcj-settings-export.php:43
11594
+ msgid "Export Orders Fields"
11595
+ msgstr ""
11596
+
11597
+ #: includes/settings/wcj-settings-export.php:44
11598
+ #: includes/settings/wcj-settings-export.php:112
11599
+ #: includes/settings/wcj-settings-export.php:183
11600
+ #: includes/settings/wcj-settings-export.php:262
11601
+ #: includes/settings/wcj-settings-export.php:280
11602
+ msgid "Hold \"Control\" key to select multiple fields."
11603
+ msgstr ""
11604
+
11605
+ #: includes/settings/wcj-settings-export.php:52
11606
+ msgid "Additional Export Orders Fields"
11607
+ msgstr ""
11608
+
11609
+ #: includes/settings/wcj-settings-export.php:87
11610
+ #: includes/settings/wcj-settings-export.php:156
11611
+ msgid "Order Shortcode"
11612
+ msgstr ""
11613
+
11614
+ #: includes/settings/wcj-settings-export.php:92
11615
+ msgid ""
11616
+ "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
11617
+ "(can be custom field name)."
11618
+ msgstr ""
11619
+
11620
+ #: includes/settings/wcj-settings-export.php:93
11621
+ msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
11622
+ msgstr ""
11623
+
11624
+ #: includes/settings/wcj-settings-export.php:106
11625
+ msgid "Export Orders Items Options"
11626
+ msgstr ""
11627
+
11628
+ #: includes/settings/wcj-settings-export.php:111
11629
+ msgid "Export Orders Items Fields"
11630
+ msgstr ""
11631
+
11632
+ #: includes/settings/wcj-settings-export.php:120
11633
+ msgid "Additional Export Orders Items Fields"
11634
+ msgstr ""
11635
+
11636
+ #: includes/settings/wcj-settings-export.php:155
11637
+ msgid "Order Item Meta"
11638
+ msgstr ""
11639
+
11640
+ #: includes/settings/wcj-settings-export.php:158
11641
+ #: includes/settings/wcj-settings-export.php:237
11642
+ msgid "Product Shortcode"
11643
+ msgstr ""
11644
+
11645
+ #: includes/settings/wcj-settings-export.php:163
11646
+ msgid ""
11647
+ "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
11648
+ "retrieve (can be custom field name)."
11649
+ msgstr ""
11650
+
11651
+ #: includes/settings/wcj-settings-export.php:164
11652
+ msgid ""
11653
+ "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
11654
+ msgstr ""
11655
+
11656
+ #: includes/settings/wcj-settings-export.php:177
11657
+ msgid "Export Products Options"
11658
+ msgstr ""
11659
+
11660
+ #: includes/settings/wcj-settings-export.php:182
11661
+ msgid "Export Products Fields"
11662
+ msgstr ""
11663
+
11664
+ #: includes/settings/wcj-settings-export.php:191
11665
+ #: includes/settings/wcj-settings-free-price.php:14
11666
+ #: includes/settings/wcj-settings-order-quantities.php:56
11667
+ msgid "Variable Products"
11668
+ msgstr ""
11669
+
11670
+ #: includes/settings/wcj-settings-export.php:196
11671
+ msgid "Export variable (main) product only"
11672
+ msgstr ""
11673
+
11674
+ #: includes/settings/wcj-settings-export.php:197
11675
+ msgid "Export variation products only"
11676
+ msgstr ""
11677
+
11678
+ #: includes/settings/wcj-settings-export.php:198
11679
+ msgid "Export variable (main) and variation products"
11680
+ msgstr ""
11681
+
11682
+ #: includes/settings/wcj-settings-export.php:202
11683
+ msgid "Additional Export Products Fields"
11684
+ msgstr ""
11685
+
11686
+ #: includes/settings/wcj-settings-export.php:242
11687
+ msgid ""
11688
+ "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
11689
+ "(can be custom field name)."
11690
+ msgstr ""
11691
+
11692
+ #: includes/settings/wcj-settings-export.php:243
11693
+ msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
11694
+ msgstr ""
11695
+
11696
+ #: includes/settings/wcj-settings-export.php:256
11697
+ msgid "Export Customers Options"
11698
+ msgstr ""
11699
+
11700
+ #: includes/settings/wcj-settings-export.php:261
11701
+ msgid "Export Customers Fields"
11702
+ msgstr ""
11703
+
11704
+ #: includes/settings/wcj-settings-export.php:274
11705
+ msgid "Export Customers from Orders Options"
11706
+ msgstr ""
11707
+
11708
+ #: includes/settings/wcj-settings-export.php:279
11709
+ msgid "Export Customers from Orders Fields"
11710
+ msgstr ""
11711
+
11712
+ #: includes/settings/wcj-settings-free-price.php:13
11713
+ msgid "Simple and Custom Products"
11714
+ msgstr ""
11715
+
11716
+ #: includes/settings/wcj-settings-free-price.php:15
11717
+ msgid "Grouped Products"
11718
+ msgstr ""
11719
+
11720
+ #: includes/settings/wcj-settings-free-price.php:16
11721
+ #: includes/settings/wcj-settings-product-add-to-cart.php:206
11722
+ msgid "External Products"
11723
+ msgstr ""
11724
+
11725
+ #: includes/settings/wcj-settings-free-price.php:21
11726
+ msgid "Homepage"
11727
+ msgstr ""
11728
+
11729
+ #: includes/settings/wcj-settings-free-price.php:22
11730
+ msgid "Pages (e.g. Shortcodes)"
11731
+ msgstr ""
11732
+
11733
+ #: includes/settings/wcj-settings-free-price.php:23
11734
+ msgid "Archives (Product Categories)"
11735
+ msgstr ""
11736
+
11737
+ #: includes/settings/wcj-settings-free-price.php:31
11738
+ msgid "Labels can contain shortcodes."
11739
+ msgstr ""
11740
+
11741
+ #: includes/settings/wcj-settings-free-price.php:38
11742
+ #: includes/settings/wcj-settings-reports.php:179
11743
+ msgid "Variations"
11744
+ msgstr ""
11745
+
11746
+ #: includes/settings/wcj-settings-general.php:14
11747
+ msgid "Shortcodes Options"
11748
+ msgstr ""
11749
+
11750
+ #: includes/settings/wcj-settings-general.php:19
11751
+ msgid "Shortcodes in WordPress Text Widgets"
11752
+ msgstr ""
11753
+
11754
+ #: includes/settings/wcj-settings-general.php:20
11755
+ msgid ""
11756
+ "This will enable all (including non Booster's) shortcodes in WordPress text "
11757
+ "widgets."
11758
+ msgstr ""
11759
+
11760
+ #: includes/settings/wcj-settings-general.php:27
11761
+ msgid "Booster's Shortcodes"
11762
+ msgstr ""
11763
+
11764
+ #: includes/settings/wcj-settings-general.php:28
11765
+ #, php-format
11766
+ msgid ""
11767
+ "Disable all <a href=\"%s\" target=\"_blank\">Booster's shortcodes</a> (for "
11768
+ "memory saving)."
11769
+ msgstr ""
11770
+
11771
+ #: includes/settings/wcj-settings-general.php:40
11772
+ msgid "Ip Detection"
11773
+ msgstr ""
11774
+
11775
+ #: includes/settings/wcj-settings-general.php:45
11776
+ msgid "Overwrite WooCommerce IP Detection"
11777
+ msgstr ""
11778
+
11779
+ #: includes/settings/wcj-settings-general.php:46
11780
+ msgid "Try to overwrite WooCommerce IP detection"
11781
+ msgstr ""
11782
+
11783
+ #: includes/settings/wcj-settings-general.php:47
11784
+ msgid ""
11785
+ "The \"HTTP_X_REAL_IP\" param on $_SERVER variable will be replaced by IP "
11786
+ "detected from Booster"
11787
+ msgstr ""
11788
+
11789
+ #: includes/settings/wcj-settings-general.php:53
11790
+ msgid "Detection Methods"
11791
+ msgstr ""
11792
+
11793
+ #: includes/settings/wcj-settings-general.php:54
11794
+ msgid ""
11795
+ "IP Detection Methods used by some Booster modules when not using IP "
11796
+ "detection from WooCommerce. Change order for different results."
11797
+ msgstr ""
11798
+
11799
+ #: includes/settings/wcj-settings-general.php:55
11800
+ msgid "Default values are:"
11801
+ msgstr ""
11802
+
11803
+ #: includes/settings/wcj-settings-general.php:70
11804
+ msgid "Recalculate Cart Totals"
11805
+ msgstr ""
11806
+
11807
+ #: includes/settings/wcj-settings-general.php:71
11808
+ msgid "Will recalculate cart totals on every page load."
11809
+ msgstr ""
11810
+
11811
+ #: includes/settings/wcj-settings-general.php:72
11812
+ msgid ""
11813
+ "This may solve multicurrency issues with wrong currency symbol in mini-cart."
11814
+ msgstr ""
11815
+
11816
+ #: includes/settings/wcj-settings-general.php:79
11817
+ msgid "Session Type in Booster"
11818
+ msgstr ""
11819
+
11820
+ #: includes/settings/wcj-settings-general.php:84
11821
+ msgid "Standard PHP sessions"
11822
+ msgstr ""
11823
+
11824
+ #: includes/settings/wcj-settings-general.php:85
11825
+ msgid "WC sessions"
11826
+ msgstr ""
11827
+
11828
+ #: includes/settings/wcj-settings-general.php:89
11829
+ msgid "Read and Close"
11830
+ msgstr ""
11831
+
11832
+ #: includes/settings/wcj-settings-general.php:90
11833
+ msgid ""
11834
+ "Enable <strong>Read and Close</strong> parameter on <strong>session_start()</"
11835
+ "strong>."
11836
+ msgstr ""
11837
+
11838
+ #: includes/settings/wcj-settings-general.php:91
11839
+ msgid ""
11840
+ "Requires Session Type option set as Standard PHP Sessions and PHP version >= "
11841
+ "7.0"
11842
+ msgstr ""
11843
+
11844
+ #: includes/settings/wcj-settings-general.php:97
11845
+ msgid "Datepicker/Weekpicker CSS Loading"
11846
+ msgstr ""
11847
+
11848
+ #: includes/settings/wcj-settings-general.php:98
11849
+ msgid "Disables datepicker/weekpicker CSS loading."
11850
+ msgstr ""
11851
+
11852
+ #: includes/settings/wcj-settings-general.php:105
11853
+ msgid "Datepicker/Weekpicker CSS Source"
11854
+ msgstr ""
11855
+
11856
+ #: includes/settings/wcj-settings-general.php:112
11857
+ msgid "Datepicker/Weekpicker JavaScript Loading"
11858
+ msgstr ""
11859
+
11860
+ #: includes/settings/wcj-settings-general.php:113
11861
+ msgid "Disables datepicker/weekpicker JavaScript loading."
11862
+ msgstr ""
11863
+
11864
+ #: includes/settings/wcj-settings-general.php:120
11865
+ msgid "Timepicker CSS Loading"
11866
+ msgstr ""
11867
+
11868
+ #: includes/settings/wcj-settings-general.php:121
11869
+ msgid "Disables timepicker CSS loading."
11870
+ msgstr ""
11871
+
11872
+ #: includes/settings/wcj-settings-general.php:128
11873
+ msgid "Timepicker JavaScript Loading"
11874
+ msgstr ""
11875
+
11876
+ #: includes/settings/wcj-settings-general.php:129
11877
+ msgid "Disables timepicker JavaScript loading."
11878
+ msgstr ""
11879
+
11880
+ #: includes/settings/wcj-settings-general.php:140
11881
+ msgid "PayPal Email per Product Options"
11882
+ msgstr ""
11883
+
11884
+ #: includes/settings/wcj-settings-general.php:145
11885
+ msgid "PayPal Email per Product"
11886
+ msgstr ""
11887
+
11888
+ #: includes/settings/wcj-settings-general.php:147
11889
+ #: includes/settings/wcj-settings-max-products-per-user.php:44
11890
+ #: includes/settings/wcj-settings-product-by-date.php:54
11891
+ #: includes/settings/wcj-settings-product-by-time.php:54
11892
+ #: includes/settings/wcj-settings-wholesale-price.php:23
11893
+ msgid "This will add new meta box to each product's edit page."
11894
+ msgstr ""
11895
+
11896
+ #: includes/settings/wcj-settings-general.php:157
11897
+ msgid "Session Expiration Options"
11898
+ msgstr ""
11899
+
11900
+ #: includes/settings/wcj-settings-general.php:162
11901
+ #: includes/settings/wcj-settings-general.php:177
11902
+ msgid "Session Expiration"
11903
+ msgstr ""
11904
+
11905
+ #: includes/settings/wcj-settings-general.php:169
11906
+ msgid "Session Expiring"
11907
+ msgstr ""
11908
+
11909
+ #: includes/settings/wcj-settings-general.php:170
11910
+ msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
11911
+ msgstr ""
11912
+
11913
+ #: includes/settings/wcj-settings-general.php:178
11914
+ msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
11915
+ msgstr ""
11916
+
11917
+ #: includes/settings/wcj-settings-general.php:189
11918
+ msgid "Booster User Roles Changer Options"
11919
+ msgstr ""
11920
+
11921
+ #: includes/settings/wcj-settings-general.php:190
11922
+ msgid "This will add user roles changer tool to admin bar."
11923
+ msgstr ""
11924
+
11925
+ #: includes/settings/wcj-settings-general.php:196
11926
+ msgid "Booster User Roles Changer"
11927
+ msgstr ""
11928
+
11929
+ #: includes/settings/wcj-settings-general.php:205
11930
+ msgid "Enabled for"
11931
+ msgstr ""
11932
+
11933
+ #: includes/settings/wcj-settings-general.php:217
11934
+ msgid "PHP Options"
11935
+ msgstr ""
11936
+
11937
+ #: includes/settings/wcj-settings-general.php:222
11938
+ msgid "PHP Memory Limit"
11939
+ msgstr ""
11940
+
11941
+ #: includes/settings/wcj-settings-general.php:223
11942
+ msgid "megabytes."
11943
+ msgstr ""
11944
+
11945
+ #: includes/settings/wcj-settings-general.php:231
11946
+ msgid "PHP Time Limit"
11947
+ msgstr ""
11948
+
11949
+ #: includes/settings/wcj-settings-general.php:232
11950
+ msgid "seconds."
11951
+ msgstr ""
11952
+
11953
+ #: includes/settings/wcj-settings-global-discount.php:24
11954
+ msgid "Total Groups"
11955
+ msgstr ""
11956
+
11957
+ #: includes/settings/wcj-settings-global-discount.php:28
11958
+ #: includes/settings/wcj-settings-product-by-user.php:138
11959
+ #: includes/settings/wcj-settings-products-xml.php:29
11960
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:148
11961
+ msgid "Press Save changes after you change this number."
11962
+ msgstr ""
11963
+
11964
+ #: includes/settings/wcj-settings-global-discount.php:45
11965
+ msgid "Discount Group"
11966
+ msgstr ""
11967
+
11968
+ #: includes/settings/wcj-settings-global-discount.php:51
11969
+ msgid "Enabled/disables the discount group."
11970
+ msgstr ""
11971
+
11972
+ #: includes/settings/wcj-settings-global-discount.php:59
11973
+ msgid "Can be fixed or percent."
11974
+ msgstr ""
11975
+
11976
+ #: includes/settings/wcj-settings-global-discount.php:70
11977
+ msgid "Must be negative number."
11978
+ msgstr ""
11979
+
11980
+ #: includes/settings/wcj-settings-global-discount.php:77
11981
+ msgid "Final Correction"
11982
+ msgstr ""
11983
+
11984
+ #: includes/settings/wcj-settings-global-discount.php:78
11985
+ #, php-format
11986
+ msgid ""
11987
+ "Will apply selected function and coefficient to the final price, e.g.: %s."
11988
+ msgstr ""
11989
+
11990
+ #: includes/settings/wcj-settings-global-discount.php:85
11991
+ #: includes/settings/wcj-settings-multicurrency.php:79
11992
+ #: includes/settings/wcj-settings-price-by-country.php:83
11993
+ #: includes/settings/wcj-settings-product-price-by-formula.php:70
11994
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:224
11995
+ msgid "Round"
11996
+ msgstr ""
11997
+
11998
+ #: includes/settings/wcj-settings-global-discount.php:86
11999
+ msgid "Ceil"
12000
+ msgstr ""
12001
+
12002
+ #: includes/settings/wcj-settings-global-discount.php:87
12003
+ msgid "Floor"
12004
+ msgstr ""
12005
+
12006
+ #: includes/settings/wcj-settings-global-discount.php:91
12007
+ msgid "Final correction coefficient"
12008
+ msgstr ""
12009
+
12010
+ #: includes/settings/wcj-settings-global-discount.php:98
12011
+ msgid "Product Scope"
12012
+ msgstr ""
12013
+
12014
+ #: includes/settings/wcj-settings-global-discount.php:99
12015
+ msgid ""
12016
+ "Possible values: all products, only products that are already on sale, only "
12017
+ "products that are not on sale."
12018
+ msgstr ""
12019
+
12020
+ #: includes/settings/wcj-settings-global-discount.php:104
12021
+ #: includes/settings/wcj-settings-product-add-to-cart.php:65
12022
+ #: includes/settings/wcj-settings-products-xml.php:207
12023
+ msgid "All products"
12024
+ msgstr ""
12025
+
12026
+ #: includes/settings/wcj-settings-global-discount.php:105
12027
+ msgid "Only products that are already on sale"
12028
+ msgstr ""
12029
+
12030
+ #: includes/settings/wcj-settings-global-discount.php:106
12031
+ #: includes/settings/wcj-settings-products-xml.php:209
12032
+ msgid "Only products that are not on sale"
12033
+ msgstr ""
12034
+
12035
+ #: includes/settings/wcj-settings-global-discount.php:110
12036
+ #: includes/settings/wcj-settings-related-products.php:196
12037
+ msgid "Include Product Categories"
12038
+ msgstr ""
12039
+
12040
+ #: includes/settings/wcj-settings-global-discount.php:111
12041
+ msgid ""
12042
+ "Set this field to apply discount to selected product categories only. Leave "
12043
+ "blank to apply to all products."
12044
+ msgstr ""
12045
+
12046
+ #: includes/settings/wcj-settings-global-discount.php:119
12047
+ #: includes/settings/wcj-settings-related-products.php:205
12048
+ msgid "Exclude Product Categories"
12049
+ msgstr ""
12050
+
12051
+ #: includes/settings/wcj-settings-global-discount.php:120
12052
+ msgid ""
12053
+ "Set this field to NOT apply discount to selected product categories. Leave "
12054
+ "blank to apply to all products."
12055
+ msgstr ""
12056
+
12057
+ #: includes/settings/wcj-settings-global-discount.php:128
12058
+ #: includes/settings/wcj-settings-related-products.php:214
12059
+ msgid "Include Product Tags"
12060
+ msgstr ""
12061
+
12062
+ #: includes/settings/wcj-settings-global-discount.php:129
12063
+ msgid ""
12064
+ "Set this field to apply discount to selected product tags only. Leave blank "
12065
+ "to apply to all products."
12066
+ msgstr ""
12067
+
12068
+ #: includes/settings/wcj-settings-global-discount.php:137
12069
+ #: includes/settings/wcj-settings-related-products.php:223
12070
+ msgid "Exclude Product Tags"
12071
+ msgstr ""
12072
+
12073
+ #: includes/settings/wcj-settings-global-discount.php:138
12074
+ msgid ""
12075
+ "Set this field to NOT apply discount to selected product tags. Leave blank "
12076
+ "to apply to all products."
12077
+ msgstr ""
12078
+
12079
+ #: includes/settings/wcj-settings-global-discount.php:148
12080
+ msgid ""
12081
+ "Set this field to apply discount to selected products only. Leave blank to "
12082
+ "apply to all products."
12083
+ msgstr ""
12084
+
12085
+ #: includes/settings/wcj-settings-global-discount.php:159
12086
+ msgid ""
12087
+ "Set this field to NOT apply discount to selected products. Leave blank to "
12088
+ "apply to all products."
12089
+ msgstr ""
12090
+
12091
+ #: includes/settings/wcj-settings-global-discount.php:175
12092
+ #: includes/settings/wcj-settings-product-price-by-formula.php:95
12093
+ msgid "Advanced Settings"
12094
+ msgstr ""
12095
+
12096
+ #: includes/settings/wcj-settings-global-discount.php:180
12097
+ msgid "Global Discount in Admin"
12098
+ msgstr ""
12099
+
12100
+ #: includes/settings/wcj-settings-global-discount.php:182
12101
+ msgid ""
12102
+ "This will enable \"global discount\" product pricing in backend. It will "
12103
+ "also affect some modules, e.g.: \"Products XML Feeds\" module."
12104
+ msgstr ""
12105
+
12106
+ #: includes/settings/wcj-settings-global-discount.php:188
12107
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:76
12108
+ #: includes/settings/wcj-settings-multicurrency.php:176
12109
+ #: includes/settings/wcj-settings-price-by-country.php:165
12110
+ #: includes/settings/wcj-settings-price-by-user-role.php:103
12111
+ #: includes/settings/wcj-settings-product-price-by-formula.php:100
12112
+ msgid "Price Filters Priority"
12113
+ msgstr ""
12114
+
12115
+ #: includes/settings/wcj-settings-global-discount.php:189
12116
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:77
12117
+ #: includes/settings/wcj-settings-multicurrency.php:177
12118
+ #: includes/settings/wcj-settings-price-by-country.php:166
12119
+ #: includes/settings/wcj-settings-price-by-user-role.php:104
12120
+ #: includes/settings/wcj-settings-product-addons.php:250
12121
+ #: includes/settings/wcj-settings-product-price-by-formula.php:101
12122
+ #: includes/settings/wcj-settings-wholesale-price.php:121
12123
+ msgid ""
12124
+ "Priority for all module's price filters. Set to zero to use default priority."
12125
+ msgstr ""
12126
+
12127
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:14
12128
+ msgid "Left to Free Shipping Info Options"
12129
+ msgstr ""
12130
+
12131
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:16
12132
+ msgid ""
12133
+ "This section lets you enable info on cart, mini cart and checkout pages."
12134
+ msgstr ""
12135
+
12136
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:17
12137
+ #, php-format
12138
+ msgid ""
12139
+ "You can also use <em>Booster - Left to Free Shipping</em> widget, %s "
12140
+ "shortcode or %s function."
12141
+ msgstr ""
12142
+
12143
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:20
12144
+ #, php-format
12145
+ msgid "In content replaced values are: %s, %s and %s."
12146
+ msgstr ""
12147
+
12148
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:27
12149
+ msgid "Info on Cart"
12150
+ msgstr ""
12151
+
12152
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:35
12153
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:66
12154
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:100
12155
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:135
12156
+ msgid "You can use HTML and/or shortcodes (e.g. [wcj_wpml]) here."
12157
+ msgstr ""
12158
+
12159
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:43
12160
+ msgid ""
12161
+ "Please note, that depending on the \"Position\" you select, your customer "
12162
+ "may have to reload the cart page to see the updated left to free shipping "
12163
+ "value. For example, if you select \"After cart totals\" position, then left "
12164
+ "to free shipping value will be updated as soon as customer updates the cart. "
12165
+ "However if you select \"After cart\" position instead – message will not be "
12166
+ "updated, and customer will have to reload the page. In other words, message "
12167
+ "position should be inside that page part that is automatically updated on "
12168
+ "cart update."
12169
+ msgstr ""
12170
+
12171
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:50
12172
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:84
12173
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:128
12174
+ msgid "Position Order (Priority)"
12175
+ msgstr ""
12176
+
12177
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:56
12178
+ msgid "Info on Mini Cart"
12179
+ msgstr ""
12180
+
12181
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:78
12182
+ #: includes/settings/wcj-settings-mini-cart.php:51
12183
+ msgid "Before mini cart"
12184
+ msgstr ""
12185
+
12186
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:79
12187
+ #: includes/settings/wcj-settings-mini-cart.php:52
12188
+ msgid "Before buttons"
12189
+ msgstr ""
12190
+
12191
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:80
12192
+ #: includes/settings/wcj-settings-mini-cart.php:53
12193
+ msgid "After mini cart"
12194
+ msgstr ""
12195
+
12196
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:90
12197
+ msgid "Info on Checkout"
12198
+ msgstr ""
12199
+
12200
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:119
12201
+ msgid "Order review: Before shipping"
12202
+ msgstr ""
12203
+
12204
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:120
12205
+ msgid "Order review: After shipping"
12206
+ msgstr ""
12207
+
12208
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:121
12209
+ msgid "Order review: Payment: Before submit button"
12210
+ msgstr ""
12211
+
12212
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:122
12213
+ msgid "Order review: Payment: After submit button"
12214
+ msgstr ""
12215
+
12216
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:134
12217
+ msgid "Message on Free Shipping Reached"
12218
+ msgstr ""
12219
+
12220
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:136
12221
+ msgid "Set empty to disable."
12222
+ msgstr ""
12223
+
12224
+ #: includes/settings/wcj-settings-max-products-per-user.php:26
12225
+ msgid "Maximum Allowed Each Product's Quantity per User"
12226
+ msgstr ""
12227
+
12228
+ #: includes/settings/wcj-settings-max-products-per-user.php:61
12229
+ msgid ""
12230
+ "This sets when (i.e. on which order status) users' quantities should be "
12231
+ "updated."
12232
+ msgstr ""
12233
+
12234
+ #: includes/settings/wcj-settings-max-products-per-user.php:62
12235
+ msgid ""
12236
+ "You can select multiple order status here - quantities will be updated only "
12237
+ "once, on whichever status is triggered first."
12238
+ msgstr ""
12239
+
12240
+ #: includes/settings/wcj-settings-max-products-per-user.php:63
12241
+ msgid "If no status are selected - \"Completed\" order status is used."
12242
+ msgstr ""
12243
+
12244
+ #: includes/settings/wcj-settings-max-products-per-user.php:71
12245
+ #: includes/settings/wcj-settings-offer-price.php:214
12246
+ msgid "Customer Message"
12247
+ msgstr ""
12248
+
12249
+ #: includes/settings/wcj-settings-max-products-per-user.php:79
12250
+ msgid "Block Add to Cart"
12251
+ msgstr ""
12252
+
12253
+ #: includes/settings/wcj-settings-max-products-per-user.php:81
12254
+ msgid ""
12255
+ "This will stop customer from adding product to cart on exceeded quantities."
12256
+ msgstr ""
12257
+
12258
+ #: includes/settings/wcj-settings-max-products-per-user.php:87
12259
+ msgid "Block Checkout Page"
12260
+ msgstr ""
12261
+
12262
+ #: includes/settings/wcj-settings-max-products-per-user.php:89
12263
+ msgid ""
12264
+ "This will stop customer from accessing the checkout page on exceeded "
12265
+ "quantities. Customer will be redirected to the cart page."
12266
+ msgstr ""
12267
+
12268
+ #: includes/settings/wcj-settings-max-products-per-user.php:95
12269
+ #: includes/settings/wcj-settings-max-products-per-user.php:101
12270
+ msgid "Calculate Data"
12271
+ msgstr ""
12272
+
12273
+ #: includes/settings/wcj-settings-mini-cart.php:14
12274
+ msgid "Mini Cart Custom Info Blocks"
12275
+ msgstr ""
12276
+
12277
+ #: includes/settings/wcj-settings-modules-by-user-roles.php:28
12278
+ msgid "Enable Modules"
12279
+ msgstr ""
12280
+
12281
+ #: includes/settings/wcj-settings-modules-by-user-roles.php:29
12282
+ msgid ""
12283
+ "Select modules which should be enabled for current user role. All other "
12284
+ "modules will be disabled. Ignored if left empty."
12285
+ msgstr ""
12286
+
12287
+ #: includes/settings/wcj-settings-modules-by-user-roles.php:37
12288
+ msgid "Disable Modules"
12289
+ msgstr ""
12290
+
12291
+ #: includes/settings/wcj-settings-modules-by-user-roles.php:38
12292
+ msgid ""
12293
+ "Select modules which should be disabled for current user role. All other "
12294
+ "modules will be enabled. Ignored if left empty."
12295
+ msgstr ""
12296
+
12297
+ #: includes/settings/wcj-settings-more-button-labels.php:14
12298
+ msgid "Place order (Order now) Button"
12299
+ msgstr ""
12300
+
12301
+ #: includes/settings/wcj-settings-more-button-labels.php:20
12302
+ msgid "Leave blank for WooCommerce default."
12303
+ msgstr ""
12304
+
12305
+ #: includes/settings/wcj-settings-more-button-labels.php:21
12306
+ msgid "Button on the checkout page."
12307
+ msgstr ""
12308
+
12309
+ #: includes/settings/wcj-settings-more-button-labels.php:27
12310
+ msgid "Override Default Text"
12311
+ msgstr ""
12312
+
12313
+ #: includes/settings/wcj-settings-more-button-labels.php:29
12314
+ msgid ""
12315
+ "Enable this if button text is not changing for some payment gateway (e.g. "
12316
+ "PayPal)."
12317
+ msgstr ""
12318
+
12319
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:37
12320
+ msgid "Round Prices"
12321
+ msgstr ""
12322
+
12323
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:44
12324
+ #: includes/settings/wcj-settings-product-price-by-formula.php:76
12325
+ msgid "rounding precision"
12326
+ msgstr ""
12327
+
12328
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:45
12329
+ msgid "Number of decimals."
12330
+ msgstr ""
12331
+
12332
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:52
12333
+ msgid "Convert Product Prices in Admin Products List"
12334
+ msgstr ""
12335
+
12336
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:68
12337
+ #: includes/settings/wcj-settings-multicurrency.php:191
12338
+ msgid "Save Calculated Products Prices"
12339
+ msgstr ""
12340
+
12341
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:83
12342
+ msgid "WooCommerce Price Filter Compatibility"
12343
+ msgstr ""
12344
+
12345
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:84
12346
+ msgid "Add compatibility with WooCommerce Price Filter Widget"
12347
+ msgstr ""
12348
+
12349
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:90
12350
+ msgid "Third Party Price Filter Compatibility"
12351
+ msgstr ""
12352
+
12353
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:91
12354
+ msgid "Add compatibility with Third Party Price Filter Widgets"
12355
+ msgstr ""
12356
+
12357
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:92
12358
+ msgid "Requires WooCommerce Price Filter Compatibility option enabled"
12359
+ msgstr ""
12360
+
12361
+ #: includes/settings/wcj-settings-multicurrency.php:23
12362
+ msgid ""
12363
+ "Select how you want currency exchange rates to be updated. Possible options "
12364
+ "are: manually or automatically via Currency Exchange Rates module."
12365
+ msgstr ""
12366
+
12367
+ #: includes/settings/wcj-settings-multicurrency.php:38
12368
+ msgid "Multicurrency on per Product Basis"
12369
+ msgstr ""
12370
+
12371
+ #: includes/settings/wcj-settings-multicurrency.php:40
12372
+ msgid ""
12373
+ "If you enable this option, you will be able to enter prices for products in "
12374
+ "different currencies directly (i.e. without exchange rates). This will add "
12375
+ "meta boxes in product edit."
12376
+ msgstr ""
12377
+
12378
+ #: includes/settings/wcj-settings-multicurrency.php:46
12379
+ msgid "Variable products: list available/active variations only"
12380
+ msgstr ""
12381
+
12382
+ #: includes/settings/wcj-settings-multicurrency.php:47
12383
+ msgid ""
12384
+ "Defines which variations are listed on admin product edit page in "
12385
+ "Multicurrency meta box. Ignored if \"Multicurrency on per Product Basis\" "
12386
+ "option is disabled."
12387
+ msgstr ""
12388
+
12389
+ #: includes/settings/wcj-settings-multicurrency.php:53
12390
+ msgid "Add option to make empty price"
12391
+ msgstr ""
12392
+
12393
+ #: includes/settings/wcj-settings-multicurrency.php:59
12394
+ msgid "Revert Currency to Shop's Default"
12395
+ msgstr ""
12396
+
12397
+ #: includes/settings/wcj-settings-multicurrency.php:60
12398
+ msgid ""
12399
+ "Enable this if you want prices to revert back to your shop's default "
12400
+ "currency, when customer reaches the cart and/or checkout page."
12401
+ msgstr ""
12402
+
12403
+ #: includes/settings/wcj-settings-multicurrency.php:65
12404
+ msgid "Do not revert"
12405
+ msgstr ""
12406
+
12407
+ #: includes/settings/wcj-settings-multicurrency.php:66
12408
+ msgid "Revert on cart page only"
12409
+ msgstr ""
12410
+
12411
+ #: includes/settings/wcj-settings-multicurrency.php:67
12412
+ msgid "Revert on checkout page only"
12413
+ msgstr ""
12414
+
12415
+ #: includes/settings/wcj-settings-multicurrency.php:68
12416
+ msgid "Revert on both cart & checkout pages"
12417
+ msgstr ""
12418
+
12419
+ #: includes/settings/wcj-settings-multicurrency.php:72
12420
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:66
12421
+ #: includes/settings/wcj-settings-product-price-by-formula.php:64
12422
+ msgid "Rounding"
12423
+ msgstr ""
12424
+
12425
+ #: includes/settings/wcj-settings-multicurrency.php:73
12426
+ msgid "If using exchange rates, choose rounding here."
12427
+ msgstr ""
12428
+
12429
+ #: includes/settings/wcj-settings-multicurrency.php:78
12430
+ #: includes/settings/wcj-settings-price-by-country.php:82
12431
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:223
12432
+ msgid "No rounding"
12433
+ msgstr ""
12434
+
12435
+ #: includes/settings/wcj-settings-multicurrency.php:80
12436
+ #: includes/settings/wcj-settings-price-by-country.php:85
12437
+ #: includes/settings/wcj-settings-product-price-by-formula.php:71
12438
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:225
12439
+ msgid "Round up"
12440
+ msgstr ""
12441
+
12442
+ #: includes/settings/wcj-settings-multicurrency.php:81
12443
+ #: includes/settings/wcj-settings-price-by-country.php:84
12444
+ #: includes/settings/wcj-settings-product-price-by-formula.php:72
12445
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:226
12446
+ msgid "Round down"
12447
+ msgstr ""
12448
+
12449
+ #: includes/settings/wcj-settings-multicurrency.php:85
12450
+ msgid "Rounding Precision"
12451
+ msgstr ""
12452
+
12453
+ #: includes/settings/wcj-settings-multicurrency.php:86
12454
+ msgid "If rounding is enabled, set rounding precision here."
12455
+ msgstr ""
12456
+
12457
+ #: includes/settings/wcj-settings-multicurrency.php:93
12458
+ msgid "Currency Switcher Template"
12459
+ msgstr ""
12460
+
12461
+ #: includes/settings/wcj-settings-multicurrency.php:94
12462
+ msgid "Set how you want currency switcher to be displayed on frontend."
12463
+ msgstr ""
12464
+
12465
+ #: includes/settings/wcj-settings-multicurrency.php:106
12466
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:65
12467
+ #: includes/settings/wcj-settings-product-msrp.php:105
12468
+ msgid "Compatibility"
12469
+ msgstr ""
12470
+
12471
+ #: includes/settings/wcj-settings-multicurrency.php:111
12472
+ msgid "WooCommerce Coupons"
12473
+ msgstr ""
12474
+
12475
+ #: includes/settings/wcj-settings-multicurrency.php:113
12476
+ msgid ""
12477
+ "When a fixed coupon is used its value changes according to the current "
12478
+ "currency"
12479
+ msgstr ""
12480
+
12481
+ #: includes/settings/wcj-settings-multicurrency.php:119
12482
+ msgid "WooCommerce Smart Coupons"
12483
+ msgstr ""
12484
+
12485
+ #: includes/settings/wcj-settings-multicurrency.php:126
12486
+ msgid "WooCommerce Price Filter"
12487
+ msgstr ""
12488
+
12489
+ #: includes/settings/wcj-settings-multicurrency.php:128
12490
+ msgid "Adds Compatibility with Price Filter widget"
12491
+ msgstr ""
12492
+
12493
+ #: includes/settings/wcj-settings-multicurrency.php:134
12494
+ msgid "Price Sorting with Per Product"
12495
+ msgstr ""
12496
+
12497
+ #: includes/settings/wcj-settings-multicurrency.php:136
12498
+ msgid "Fixes Price Sorting if Per Product option is enabled"
12499
+ msgstr ""
12500
+
12501
+ #: includes/settings/wcj-settings-multicurrency.php:142
12502
+ msgid "WooCommerce Import"
12503
+ msgstr ""
12504
+
12505
+ #: includes/settings/wcj-settings-multicurrency.php:144
12506
+ msgid ""
12507
+ "Fixes WooCommerce Import Tool preventing it from converting some uppercase "
12508
+ "meta to lowercase"
12509
+ msgstr ""
12510
+
12511
+ #: includes/settings/wcj-settings-multicurrency.php:150
12512
+ msgid "WPC Product Bundles"
12513
+ msgstr ""
12514
+
12515
+ #: includes/settings/wcj-settings-multicurrency.php:152
12516
+ #, php-format
12517
+ msgid ""
12518
+ "Adds compatibility with <a href=\"%s\" target=\"_blank\">WPC Product "
12519
+ "Bundles</a> plugin"
12520
+ msgstr ""
12521
+
12522
+ #: includes/settings/wcj-settings-multicurrency.php:167
12523
+ msgid "Additional Price Filters"
12524
+ msgstr ""
12525
+
12526
+ #: includes/settings/wcj-settings-multicurrency.php:168
12527
+ msgid ""
12528
+ "Add additional price filters here. One per line. Leave blank if not sure."
12529
+ msgstr ""
12530
+
12531
+ #: includes/settings/wcj-settings-multicurrency.php:183
12532
+ msgid "Save Prices on Exchange Update"
12533
+ msgstr ""
12534
+
12535
+ #: includes/settings/wcj-settings-multicurrency.php:185
12536
+ msgid ""
12537
+ "Save min and max prices on exchange rate update, via background processing."
12538
+ msgstr ""
12539
+
12540
+ #: includes/settings/wcj-settings-multicurrency.php:185
12541
+ msgid ""
12542
+ "All products with \"per product\" options registered related to the currency "
12543
+ "will be affected."
12544
+ msgstr ""
12545
+
12546
+ #: includes/settings/wcj-settings-multicurrency.php:205
12547
+ msgid ""
12548
+ "One currency probably should be set to current (original) shop currency with "
12549
+ "an exchange rate of 1."
12550
+ msgstr ""
12551
+
12552
+ #: includes/settings/wcj-settings-multicurrency.php:210
12553
+ msgid ""
12554
+ "Press Save changes after setting this option, so new settings fields will be "
12555
+ "added."
12556
+ msgstr ""
12557
+
12558
+ #: includes/settings/wcj-settings-multicurrency.php:259
12559
+ msgid "Role Defaults"
12560
+ msgstr ""
12561
+
12562
+ #: includes/settings/wcj-settings-multicurrency.php:266
12563
+ msgid "Roles"
12564
+ msgstr ""
12565
+
12566
+ #: includes/settings/wcj-settings-multicurrency.php:267
12567
+ #: includes/settings/wcj-settings-wholesale-price.php:180
12568
+ msgid "Save settings after you change this option. Leave blank to disable."
12569
+ msgstr ""
12570
+
12571
+ #: includes/settings/wcj-settings-multicurrency.php:290
12572
+ msgid "No default currency"
12573
+ msgstr ""
12574
+
12575
+ #: includes/settings/wcj-settings-my-account.php:19
12576
+ msgid "Add Order Status Actions"
12577
+ msgstr ""
12578
+
12579
+ #: includes/settings/wcj-settings-my-account.php:20
12580
+ msgid "Let your customers change order status manually."
12581
+ msgstr ""
12582
+
12583
+ #: includes/settings/wcj-settings-my-account.php:28
12584
+ msgid "Add User Role Selection to Registration Form"
12585
+ msgstr ""
12586
+
12587
+ #: includes/settings/wcj-settings-my-account.php:30
12588
+ msgid "Let your customers choose their user role manually."
12589
+ msgstr ""
12590
+
12591
+ #: includes/settings/wcj-settings-my-account.php:36
12592
+ msgid "Default user role"
12593
+ msgstr ""
12594
+
12595
+ #: includes/settings/wcj-settings-my-account.php:43
12596
+ msgid "User roles options"
12597
+ msgstr ""
12598
+
12599
+ #: includes/settings/wcj-settings-my-account.php:57
12600
+ msgid "Menu & Endpoints Options"
12601
+ msgstr ""
12602
+
12603
+ #: includes/settings/wcj-settings-my-account.php:58
12604
+ msgid "Tip"
12605
+ msgstr ""
12606
+
12607
+ #: includes/settings/wcj-settings-my-account.php:59
12608
+ #, php-format
12609
+ msgid "If you wish to disable some menu items, you can do it in %s."
12610
+ msgstr ""
12611
+
12612
+ #: includes/settings/wcj-settings-my-account.php:61
12613
+ msgid "WooCommerce > Settings > Advanced > Page setup > Account endpoints"
12614
+ msgstr ""
12615
+
12616
+ #: includes/settings/wcj-settings-my-account.php:66
12617
+ msgid "Customize Menu & Endpoints"
12618
+ msgstr ""
12619
+
12620
+ #: includes/settings/wcj-settings-my-account.php:77
12621
+ msgid "Sets title."
12622
+ msgstr ""
12623
+
12624
+ #: includes/settings/wcj-settings-my-account.php:77
12625
+ msgid "Set empty, to use the default title."
12626
+ msgstr ""
12627
+
12628
+ #: includes/settings/wcj-settings-my-account.php:86
12629
+ msgid "Customize Menu Order"
12630
+ msgstr ""
12631
+
12632
+ #: includes/settings/wcj-settings-my-account.php:96
12633
+ #, php-format
12634
+ msgid "Default: %s"
12635
+ msgstr ""
12636
+
12637
+ #: includes/settings/wcj-settings-my-account.php:103
12638
+ msgid "Add Custom Menu Items"
12639
+ msgstr ""
12640
+
12641
+ #: includes/settings/wcj-settings-my-account.php:112
12642
+ msgid "Custom menu items."
12643
+ msgstr ""
12644
+
12645
+ #: includes/settings/wcj-settings-my-account.php:113
12646
+ #, php-format
12647
+ msgid "Add in %s format. One per line. E.g.: %s."
12648
+ msgstr ""
12649
+
12650
+ #: includes/settings/wcj-settings-my-account.php:129
12651
+ #: includes/settings/wcj-settings-my-account.php:134
12652
+ msgid "Custom Pages"
12653
+ msgstr ""
12654
+
12655
+ #: includes/settings/wcj-settings-my-account.php:141
12656
+ msgid "Total Pages"
12657
+ msgstr ""
12658
+
12659
+ #: includes/settings/wcj-settings-my-account.php:156
12660
+ msgid "Custom Page"
12661
+ msgstr ""
12662
+
12663
+ #: includes/settings/wcj-settings-my-account.php:180
12664
+ #: includes/settings/wcj-settings-my-account.php:185
12665
+ msgid "Dashboard Customization"
12666
+ msgstr ""
12667
+
12668
+ #: includes/settings/wcj-settings-my-account.php:192
12669
+ msgid "Custom Dashboard Content"
12670
+ msgstr ""
12671
+
12672
+ #: includes/settings/wcj-settings-my-account.php:193
12673
+ msgid ""
12674
+ "This will add content at the beginning of dashboard. If you need to add "
12675
+ "custom content to the end of the dashboard, use <strong>Custom Info Blocks</"
12676
+ "strong> section and select <strong>Account dashboard</strong> position."
12677
+ msgstr ""
12678
+
12679
+ #: includes/settings/wcj-settings-my-account.php:194
12680
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:115
12681
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:127
12682
+ #: includes/settings/wcj-settings-stock.php:42
12683
+ #: includes/settings/wcj-settings-stock.php:55
12684
+ msgid "Ignored if empty."
12685
+ msgstr ""
12686
+
12687
+ #: includes/settings/wcj-settings-my-account.php:201
12688
+ msgid "Hide \"Hello ...\" Message"
12689
+ msgstr ""
12690
+
12691
+ #: includes/settings/wcj-settings-my-account.php:208
12692
+ msgid "Hide \"From your account dashboard ...\" Message"
12693
+ msgstr ""
12694
+
12695
+ #: includes/settings/wcj-settings-my-account.php:221
12696
+ #: includes/settings/wcj-settings-my-account.php:226
12697
+ msgid "Custom Info Blocks"
12698
+ msgstr ""
12699
+
12700
+ #: includes/settings/wcj-settings-my-account.php:266
12701
+ msgid "Account content"
12702
+ msgstr ""
12703
+
12704
+ #: includes/settings/wcj-settings-my-account.php:267
12705
+ msgid "Account dashboard"
12706
+ msgstr ""
12707
+
12708
+ #: includes/settings/wcj-settings-my-account.php:268
12709
+ msgid "Account navigation"
12710
+ msgstr ""
12711
+
12712
+ #: includes/settings/wcj-settings-my-account.php:269
12713
+ msgid "After account downloads"
12714
+ msgstr ""
12715
+
12716
+ #: includes/settings/wcj-settings-my-account.php:270
12717
+ msgid "After account navigation"
12718
+ msgstr ""
12719
+
12720
+ #: includes/settings/wcj-settings-my-account.php:271
12721
+ msgid "After account orders"
12722
+ msgstr ""
12723
+
12724
+ #: includes/settings/wcj-settings-my-account.php:272
12725
+ msgid "After account payment methods"
12726
+ msgstr ""
12727
+
12728
+ #: includes/settings/wcj-settings-my-account.php:273
12729
+ msgid "After available downloads"
12730
+ msgstr ""
12731
+
12732
+ #: includes/settings/wcj-settings-my-account.php:274
12733
+ msgid "After customer login form"
12734
+ msgstr ""
12735
+
12736
+ #: includes/settings/wcj-settings-my-account.php:275
12737
+ msgid "After edit account address form"
12738
+ msgstr ""
12739
+
12740
+ #: includes/settings/wcj-settings-my-account.php:276
12741
+ msgid "After edit account form"
12742
+ msgstr ""
12743
+
12744
+ #: includes/settings/wcj-settings-my-account.php:277
12745
+ msgid "After my account"
12746
+ msgstr ""
12747
+
12748
+ #: includes/settings/wcj-settings-my-account.php:278
12749
+ msgid "Available download end"
12750
+ msgstr ""
12751
+
12752
+ #: includes/settings/wcj-settings-my-account.php:279
12753
+ msgid "Available download start"
12754
+ msgstr ""
12755
+
12756
+ #: includes/settings/wcj-settings-my-account.php:280
12757
+ msgid "Available downloads"
12758
+ msgstr ""
12759
+
12760
+ #: includes/settings/wcj-settings-my-account.php:281
12761
+ msgid "Before account downloads"
12762
+ msgstr ""
12763
+
12764
+ #: includes/settings/wcj-settings-my-account.php:282
12765
+ msgid "Before account navigation"
12766
+ msgstr ""
12767
+
12768
+ #: includes/settings/wcj-settings-my-account.php:283
12769
+ msgid "Before account orders"
12770
+ msgstr ""
12771
+
12772
+ #: includes/settings/wcj-settings-my-account.php:284
12773
+ msgid "Before account orders pagination"
12774
+ msgstr ""
12775
+
12776
+ #: includes/settings/wcj-settings-my-account.php:285
12777
+ msgid "Before account payment methods"
12778
+ msgstr ""
12779
+
12780
+ #: includes/settings/wcj-settings-my-account.php:286
12781
+ msgid "Before Available downloads"
12782
+ msgstr ""
12783
+
12784
+ #: includes/settings/wcj-settings-my-account.php:287
12785
+ msgid "Before customer login form"
12786
+ msgstr ""
12787
+
12788
+ #: includes/settings/wcj-settings-my-account.php:288
12789
+ msgid "Before edit account address form"
12790
+ msgstr ""
12791
+
12792
+ #: includes/settings/wcj-settings-my-account.php:289
12793
+ msgid "Before edit account form"
12794
+ msgstr ""
12795
+
12796
+ #: includes/settings/wcj-settings-my-account.php:290
12797
+ msgid "Before my account"
12798
+ msgstr ""
12799
+
12800
+ #: includes/settings/wcj-settings-my-account.php:291
12801
+ msgid "Edit account form"
12802
+ msgstr ""
12803
+
12804
+ #: includes/settings/wcj-settings-my-account.php:292
12805
+ msgid "Edit account form end"
12806
+ msgstr ""
12807
+
12808
+ #: includes/settings/wcj-settings-my-account.php:293
12809
+ msgid "Edit account form start"
12810
+ msgstr ""
12811
+
12812
+ #: includes/settings/wcj-settings-my-account.php:294
12813
+ msgid "Login form"
12814
+ msgstr ""
12815
+
12816
+ #: includes/settings/wcj-settings-my-account.php:295
12817
+ msgid "Login form end"
12818
+ msgstr ""
12819
+
12820
+ #: includes/settings/wcj-settings-my-account.php:296
12821
+ msgid "Login form start"
12822
+ msgstr ""
12823
+
12824
+ #: includes/settings/wcj-settings-my-account.php:297
12825
+ msgid "Lost password form"
12826
+ msgstr ""
12827
+
12828
+ #: includes/settings/wcj-settings-my-account.php:298
12829
+ msgid "Register form"
12830
+ msgstr ""
12831
+
12832
+ #: includes/settings/wcj-settings-my-account.php:299
12833
+ msgid "Register form end"
12834
+ msgstr ""
12835
+
12836
+ #: includes/settings/wcj-settings-my-account.php:300
12837
+ msgid "Register form start"
12838
+ msgstr ""
12839
+
12840
+ #: includes/settings/wcj-settings-my-account.php:301
12841
+ msgid "Reset password form"
12842
+ msgstr ""
12843
+
12844
+ #: includes/settings/wcj-settings-offer-price.php:13
12845
+ msgid "Enable for all products"
12846
+ msgstr ""
12847
+
12848
+ #: includes/settings/wcj-settings-offer-price.php:14
12849
+ msgid "Enable for all products with empty price"
12850
+ msgstr ""
12851
+
12852
+ #: includes/settings/wcj-settings-offer-price.php:15
12853
+ msgid "Enable per product"
12854
+ msgstr ""
12855
+
12856
+ #: includes/settings/wcj-settings-offer-price.php:16
12857
+ msgid "Enable per product category"
12858
+ msgstr ""
12859
+
12860
+ #: includes/settings/wcj-settings-offer-price.php:17
12861
+ msgid "Enable per product and per product category"
12862
+ msgstr ""
12863
+
12864
+ #: includes/settings/wcj-settings-offer-price.php:28
12865
+ #, php-format
12866
+ msgid "Possible values: %s."
12867
+ msgstr ""
12868
+
12869
+ #: includes/settings/wcj-settings-offer-price.php:29
12870
+ msgid ""
12871
+ "If enable per product is selected, this will add new meta box to each "
12872
+ "product's edit page."
12873
+ msgstr ""
12874
+
12875
+ #: includes/settings/wcj-settings-offer-price.php:38
12876
+ msgid "Product categories"
12877
+ msgstr ""
12878
+
12879
+ #: includes/settings/wcj-settings-offer-price.php:39
12880
+ msgid "Ignored if enable per product category is not selected above."
12881
+ msgstr ""
12882
+
12883
+ #: includes/settings/wcj-settings-offer-price.php:48
12884
+ #: includes/settings/wcj-settings-order-min-amount.php:29
12885
+ #: includes/settings/wcj-settings-order-min-amount.php:36
12886
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:98
12887
+ msgid "Exclude"
12888
+ msgstr ""
12889
+
12890
+ #: includes/settings/wcj-settings-offer-price.php:50
12891
+ msgid "Excludes out of stock products."
12892
+ msgstr ""
12893
+
12894
+ #: includes/settings/wcj-settings-offer-price.php:60
12895
+ msgid "Button Options"
12896
+ msgstr ""
12897
+
12898
+ #: includes/settings/wcj-settings-offer-price.php:72
12899
+ msgid "CSS Class"
12900
+ msgstr ""
12901
+
12902
+ #: includes/settings/wcj-settings-offer-price.php:79
12903
+ msgid "CSS Style"
12904
+ msgstr ""
12905
+
12906
+ #: includes/settings/wcj-settings-offer-price.php:87
12907
+ msgid "Position On Single Product Page"
12908
+ msgstr ""
12909
+
12910
+ #: includes/settings/wcj-settings-offer-price.php:93
12911
+ #: includes/settings/wcj-settings-product-custom-info.php:102
12912
+ #: includes/settings/wcj-settings-upsells.php:58
12913
+ msgid "Before single product"
12914
+ msgstr ""
12915
+
12916
+ #: includes/settings/wcj-settings-offer-price.php:96
12917
+ #: includes/settings/wcj-settings-product-custom-info.php:107
12918
+ msgid "Before add to cart form"
12919
+ msgstr ""
12920
+
12921
+ #: includes/settings/wcj-settings-offer-price.php:97
12922
+ #: includes/settings/wcj-settings-product-custom-info.php:110
12923
+ msgid "After add to cart form"
12924
+ msgstr ""
12925
+
12926
+ #: includes/settings/wcj-settings-offer-price.php:99
12927
+ #: includes/settings/wcj-settings-product-custom-info.php:106
12928
+ #: includes/settings/wcj-settings-upsells.php:62
12929
+ msgid "After single product"
12930
+ msgstr ""
12931
+
12932
+ #: includes/settings/wcj-settings-offer-price.php:103
12933
+ #: includes/settings/wcj-settings-offer-price.php:123
12934
+ msgid "Position Priority (i.e. Order)"
12935
+ msgstr ""
12936
+
12937
+ #: includes/settings/wcj-settings-offer-price.php:109
12938
+ msgid "Position On Archive Pages"
12939
+ msgstr ""
12940
+
12941
+ #: includes/settings/wcj-settings-offer-price.php:110
12942
+ msgid "Possible values: Do not add; Before product; After product."
12943
+ msgstr ""
12944
+
12945
+ #: includes/settings/wcj-settings-offer-price.php:130
12946
+ msgid "Advanced: Custom Position(s)"
12947
+ msgstr ""
12948
+
12949
+ #: includes/settings/wcj-settings-offer-price.php:131
12950
+ msgid ""
12951
+ "Add custom hook. If adding more than one hook, separate with vertical bar "
12952
+ "( | ). Ignored if empty."
12953
+ msgstr ""
12954
+
12955
+ #: includes/settings/wcj-settings-offer-price.php:140
12956
+ msgid "Custom Position Priority (i.e. Order)"
12957
+ msgstr ""
12958
+
12959
+ #: includes/settings/wcj-settings-offer-price.php:141
12960
+ msgid ""
12961
+ "Add custom hook priority. If adding more than one hook, separate with "
12962
+ "vertical bar ( | )."
12963
+ msgstr ""
12964
+
12965
+ #: includes/settings/wcj-settings-offer-price.php:153
12966
+ msgid "Form and Notice Options"
12967
+ msgstr ""
12968
+
12969
+ #: includes/settings/wcj-settings-offer-price.php:158
12970
+ msgid "Price Input"
12971
+ msgstr ""
12972
+
12973
+ #: includes/settings/wcj-settings-offer-price.php:198
12974
+ msgid "Customer Email"
12975
+ msgstr ""
12976
+
12977
+ #: includes/settings/wcj-settings-offer-price.php:222
12978
+ msgid "Send a Copy to Customer Checkbox"
12979
+ msgstr ""
12980
+
12981
+ #: includes/settings/wcj-settings-offer-price.php:230
12982
+ msgid "Form Header"
12983
+ msgstr ""
12984
+
12985
+ #: includes/settings/wcj-settings-offer-price.php:238
12986
+ msgid "Form Button Label"
12987
+ msgstr ""
12988
+
12989
+ #: includes/settings/wcj-settings-offer-price.php:245
12990
+ msgid "Form Footer"
12991
+ msgstr ""
12992
+
12993
+ #: includes/settings/wcj-settings-offer-price.php:252
12994
+ msgid "Required HTML"
12995
+ msgstr ""
12996
+
12997
+ #: includes/settings/wcj-settings-offer-price.php:259
12998
+ msgid "Customer Notice"
12999
+ msgstr ""
13000
+
13001
+ #: includes/settings/wcj-settings-offer-price.php:270
13002
+ msgid "Styling Options"
13003
+ msgstr ""
13004
+
13005
+ #: includes/settings/wcj-settings-offer-price.php:275
13006
+ msgid "Form Width"
13007
+ msgstr ""
13008
+
13009
+ #: includes/settings/wcj-settings-offer-price.php:281
13010
+ msgid "Header Background Color"
13011
+ msgstr ""
13012
+
13013
+ #: includes/settings/wcj-settings-offer-price.php:287
13014
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:66
13015
+ msgid "Header Text Color"
13016
+ msgstr ""
13017
+
13018
+ #: includes/settings/wcj-settings-offer-price.php:293
13019
+ msgid "Footer Background Color"
13020
+ msgstr ""
13021
+
13022
+ #: includes/settings/wcj-settings-offer-price.php:299
13023
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:38
13024
+ msgid "Footer Text Color"
13025
+ msgstr ""
13026
+
13027
+ #: includes/settings/wcj-settings-offer-price.php:314
13028
+ msgid "Email Recipient"
13029
+ msgstr ""
13030
+
13031
+ #: includes/settings/wcj-settings-offer-price.php:315
13032
+ msgid "Can be comma separated list."
13033
+ msgstr ""
13034
+
13035
+ #: includes/settings/wcj-settings-offer-price.php:317
13036
+ #, php-format
13037
+ msgid "Use %s to send to administrator email: %s."
13038
+ msgstr ""
13039
+
13040
+ #: includes/settings/wcj-settings-offer-price.php:351
13041
+ #: includes/settings/wcj-settings-product-by-condition.php:57
13042
+ #: includes/settings/wcj-settings-product-msrp.php:86
13043
+ msgid "Admin Options"
13044
+ msgstr ""
13045
+
13046
+ #: includes/settings/wcj-settings-offer-price.php:356
13047
+ msgid "Offer Price History Meta Box Columns"
13048
+ msgstr ""
13049
+
13050
+ #: includes/settings/wcj-settings-order-custom-statuses.php:20
13051
+ msgid "Enable the module to add custom statuses to the list."
13052
+ msgstr ""
13053
+
13054
+ #: includes/settings/wcj-settings-order-custom-statuses.php:21
13055
+ msgid ""
13056
+ "You can change the default order status here. However payment gateways can "
13057
+ "change this status immediately on order creation. E.g. BACS gateway will "
13058
+ "change status to On-hold."
13059
+ msgstr ""
13060
+
13061
+ #: includes/settings/wcj-settings-order-custom-statuses.php:25
13062
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:43
13063
+ msgid "No changes"
13064
+ msgstr ""
13065
+
13066
+ #: includes/settings/wcj-settings-order-custom-statuses.php:28
13067
+ msgid "Add All Statuses to Admin Order Bulk Actions"
13068
+ msgstr ""
13069
+
13070
+ #: includes/settings/wcj-settings-order-custom-statuses.php:30
13071
+ msgid ""
13072
+ "If you wish to add custom statuses to admin Orders page bulk actions, enable "
13073
+ "the checkbox here."
13074
+ msgstr ""
13075
+
13076
+ #: includes/settings/wcj-settings-order-custom-statuses.php:36
13077
+ msgid "Add Custom Statuses to Admin Reports"
13078
+ msgstr ""
13079
+
13080
+ #: includes/settings/wcj-settings-order-custom-statuses.php:38
13081
+ msgid ""
13082
+ "If you wish to add custom statuses to admin reports, enable the checkbox "
13083
+ "here."
13084
+ msgstr ""
13085
+
13086
+ #: includes/settings/wcj-settings-order-custom-statuses.php:44
13087
+ msgid "Make Custom Status Orders Editable"
13088
+ msgstr ""
13089
+
13090
+ #: includes/settings/wcj-settings-order-custom-statuses.php:46
13091
+ msgid ""
13092
+ "By default orders with custom statuses are not editable (same like with "
13093
+ "standard WooCommerce Completed status). If you wish to make custom status "
13094
+ "orders editable, enable the checkbox here."
13095
+ msgstr ""
13096
+
13097
+ #: includes/settings/wcj-settings-order-custom-statuses.php:54
13098
+ msgid "\"Processing\" and \"Complete\" Action Buttons"
13099
+ msgstr ""
13100
+
13101
+ #: includes/settings/wcj-settings-order-custom-statuses.php:55
13102
+ msgid ""
13103
+ "By default, when order has custom status, \"Processing\" and \"Complete\" "
13104
+ "action buttons are hidden. You can enable it here. Possible values are: Show "
13105
+ "both; Show \"Processing\" only; Show \"Complete\" only; Hide (default)."
13106
+ msgstr ""
13107
+
13108
+ #: includes/settings/wcj-settings-order-custom-statuses.php:60
13109
+ msgid "Show both"
13110
+ msgstr ""
13111
+
13112
+ #: includes/settings/wcj-settings-order-custom-statuses.php:61
13113
+ msgid "Show \"Processing\" only"
13114
+ msgstr ""
13115
+
13116
+ #: includes/settings/wcj-settings-order-custom-statuses.php:62
13117
+ msgid "Show \"Complete\" only"
13118
+ msgstr ""
13119
+
13120
+ #: includes/settings/wcj-settings-order-custom-statuses.php:69
13121
+ msgid "Add Custom Statuses to Admin Order List Action Buttons"
13122
+ msgstr ""
13123
+
13124
+ #: includes/settings/wcj-settings-order-custom-statuses.php:71
13125
+ msgid ""
13126
+ "If you wish to add custom statuses buttons to the admin Orders page action "
13127
+ "buttons (Actions column), enable the checkbox here."
13128
+ msgstr ""
13129
+
13130
+ #: includes/settings/wcj-settings-order-custom-statuses.php:79
13131
+ msgid "Enable Colors"
13132
+ msgstr ""
13133
+
13134
+ #: includes/settings/wcj-settings-order-custom-statuses.php:80
13135
+ msgid "Choose if you want the buttons to have colors."
13136
+ msgstr ""
13137
+
13138
+ #: includes/settings/wcj-settings-order-custom-statuses.php:87
13139
+ msgid "Enable Colors in Status Column"
13140
+ msgstr ""
13141
+
13142
+ #: includes/settings/wcj-settings-order-custom-statuses.php:89
13143
+ msgid "Enable this if you want the statuses in Status column to have colors."
13144
+ msgstr ""
13145
+
13146
+ #: includes/settings/wcj-settings-order-custom-statuses.php:96
13147
+ msgid "Add Custom Statuses Buttons to Admin Order Preview Actions"
13148
+ msgstr ""
13149
+
13150
+ #: includes/settings/wcj-settings-order-custom-statuses.php:98
13151
+ msgid ""
13152
+ "If you wish to add custom statuses buttons to the admin orders preview page, "
13153
+ "enable the checkbox here."
13154
+ msgstr ""
13155
+
13156
+ #: includes/settings/wcj-settings-order-min-amount.php:16
13157
+ msgid "This section lets you set minimum order amount."
13158
+ msgstr ""
13159
+
13160
+ #: includes/settings/wcj-settings-order-min-amount.php:20
13161
+ msgid "Amount"
13162
+ msgstr ""
13163
+
13164
+ #: includes/settings/wcj-settings-order-min-amount.php:21
13165
+ msgid "Minimum order amount. Set to 0 to disable."
13166
+ msgstr ""
13167
+
13168
+ #: includes/settings/wcj-settings-order-min-amount.php:28
13169
+ msgid "Exclude Shipping from Cart Total"
13170
+ msgstr ""
13171
+
13172
+ #: includes/settings/wcj-settings-order-min-amount.php:35
13173
+ msgid "Exclude Discounts from Cart Total"
13174
+ msgstr ""
13175
+
13176
+ #: includes/settings/wcj-settings-order-min-amount.php:42
13177
+ msgid "Error message"
13178
+ msgstr ""
13179
+
13180
+ #: includes/settings/wcj-settings-order-min-amount.php:44
13181
+ #: includes/settings/wcj-settings-order-min-amount.php:61
13182
+ #, php-format
13183
+ msgid ""
13184
+ "Message to customer if order is below minimum amount. Default: You must have "
13185
+ "an order with a minimum of %s to place your order, your current order total "
13186
+ "is %s."
13187
+ msgstr ""
13188
+
13189
+ #: includes/settings/wcj-settings-order-min-amount.php:52
13190
+ msgid "Add notice to cart page also"
13191
+ msgstr ""
13192
+
13193
+ #: includes/settings/wcj-settings-order-min-amount.php:59
13194
+ msgid "Message on cart page"
13195
+ msgstr ""
13196
+
13197
+ #: includes/settings/wcj-settings-order-min-amount.php:70
13198
+ msgid "Cart notice method"
13199
+ msgstr ""
13200
+
13201
+ #: includes/settings/wcj-settings-order-min-amount.php:80
13202
+ msgid "Cart notice type"
13203
+ msgstr ""
13204
+
13205
+ #: includes/settings/wcj-settings-order-min-amount.php:85
13206
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:55
13207
+ msgid "Notice"
13208
+ msgstr ""
13209
+
13210
+ #: includes/settings/wcj-settings-order-min-amount.php:86
13211
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:56
13212
+ msgid "Error"
13213
+ msgstr ""
13214
+
13215
+ #: includes/settings/wcj-settings-order-min-amount.php:90
13216
+ msgid ""
13217
+ "Stop customer from seeing the Checkout page if minimum amount not reached"
13218
+ msgstr ""
13219
+
13220
+ #: includes/settings/wcj-settings-order-min-amount.php:91
13221
+ msgid "Redirect back to Cart page"
13222
+ msgstr ""
13223
+
13224
+ #: includes/settings/wcj-settings-order-min-amount.php:101
13225
+ msgid "Order Minimum Amount by User Role"
13226
+ msgstr ""
13227
+
13228
+ #: includes/settings/wcj-settings-order-numbers.php:17
13229
+ msgid ""
13230
+ "This section lets you enable sequential order numbering, set custom number "
13231
+ "prefix, suffix and width."
13232
+ msgstr ""
13233
+
13234
+ #: includes/settings/wcj-settings-order-numbers.php:21
13235
+ #: includes/settings/wcj-settings-sku.php:22
13236
+ msgid "Number Generation"
13237
+ msgstr ""
13238
+
13239
+ #: includes/settings/wcj-settings-order-numbers.php:26
13240
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:22
13241
+ #: includes/settings/wcj-settings-sku.php:28
13242
+ msgid "Sequential"
13243
+ msgstr ""
13244
+
13245
+ #: includes/settings/wcj-settings-order-numbers.php:28
13246
+ #: includes/settings/wcj-settings-sku.php:29
13247
+ msgid "Pseudorandom - Hash (max 10 digits)"
13248
+ msgstr ""
13249
+
13250
+ #: includes/settings/wcj-settings-order-numbers.php:32
13251
+ msgid "Sequential: Next Order Number"
13252
+ msgstr ""
13253
+
13254
+ #: includes/settings/wcj-settings-order-numbers.php:33
13255
+ msgid "Next new order will be given this number."
13256
+ msgstr ""
13257
+
13258
+ #: includes/settings/wcj-settings-order-numbers.php:33
13259
+ msgid "Use Renumerate Orders tool for existing orders."
13260
+ msgstr ""
13261
+
13262
+ #: includes/settings/wcj-settings-order-numbers.php:34
13263
+ #: includes/settings/wcj-settings-order-numbers.php:41
13264
+ msgid "This will be ignored if sequential order numbering is disabled."
13265
+ msgstr ""
13266
+
13267
+ #: includes/settings/wcj-settings-order-numbers.php:40
13268
+ msgid "Sequential: Reset Counter"
13269
+ msgstr ""
13270
+
13271
+ #: includes/settings/wcj-settings-order-numbers.php:47
13272
+ msgid "Daily"
13273
+ msgstr ""
13274
+
13275
+ #: includes/settings/wcj-settings-order-numbers.php:48
13276
+ msgid "Monthly"
13277
+ msgstr ""
13278
+
13279
+ #: includes/settings/wcj-settings-order-numbers.php:49
13280
+ msgid "Yearly"
13281
+ msgstr ""
13282
+
13283
+ #: includes/settings/wcj-settings-order-numbers.php:53
13284
+ msgid "Order Number Custom Prefix"
13285
+ msgstr ""
13286
+
13287
+ #: includes/settings/wcj-settings-order-numbers.php:54
13288
+ msgid ""
13289
+ "Prefix before order number (optional). This will change the prefixes for all "
13290
+ "existing orders."
13291
+ msgstr ""
13292
+
13293
+ #: includes/settings/wcj-settings-order-numbers.php:60
13294
+ msgid "Order Number Date Prefix"
13295
+ msgstr ""
13296
+
13297
+ #: includes/settings/wcj-settings-order-numbers.php:62
13298
+ msgid ""
13299
+ "Date prefix before order number (optional). This will change the prefixes "
13300
+ "for all existing orders. Value is passed directly to PHP `date` function, so "
13301
+ "most of PHP date formats can be used. The only exception is using `\\` "
13302
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
13303
+ "d- or mdy."
13304
+ msgstr ""
13305
+
13306
+ #: includes/settings/wcj-settings-order-numbers.php:69
13307
+ msgid "Order Number Width"
13308
+ msgstr ""
13309
+
13310
+ #: includes/settings/wcj-settings-order-numbers.php:71
13311
+ msgid ""
13312
+ "Minimum width of number without prefix (zeros will be added to the left "
13313
+ "side). This will change the minimum width of order number for all existing "
13314
+ "orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
13315
+ "Leave zero to disable."
13316
+ msgstr ""
13317
+
13318
+ #: includes/settings/wcj-settings-order-numbers.php:78
13319
+ msgid "Order Number Custom Suffix"
13320
+ msgstr ""
13321
+
13322
+ #: includes/settings/wcj-settings-order-numbers.php:80
13323
+ msgid ""
13324
+ "Suffix after order number (optional). This will change the suffixes for all "
13325
+ "existing orders."
13326
+ msgstr ""
13327
+
13328
+ #: includes/settings/wcj-settings-order-numbers.php:87
13329
+ msgid "Order Number Date Suffix"
13330
+ msgstr ""
13331
+
13332
+ #: includes/settings/wcj-settings-order-numbers.php:89
13333
+ msgid ""
13334
+ "Date suffix after order number (optional). This will change the suffixes for "
13335
+ "all existing orders. Value is passed directly to PHP `date` function, so "
13336
+ "most of PHP date formats can be used. The only exception is using `\\` "
13337
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
13338
+ "d- or mdy."
13339
+ msgstr ""
13340
+
13341
+ #: includes/settings/wcj-settings-order-numbers.php:96
13342
+ msgid "Use MySQL Transaction"
13343
+ msgstr ""
13344
+
13345
+ #: includes/settings/wcj-settings-order-numbers.php:98
13346
+ msgid ""
13347
+ "This should be enabled if you have a lot of simultaneous orders in your shop "
13348
+ "- to prevent duplicate order numbers (sequential)."
13349
+ msgstr ""
13350
+
13351
+ #: includes/settings/wcj-settings-order-numbers.php:104
13352
+ msgid "Enable Order Tracking by Custom Number"
13353
+ msgstr ""
13354
+
13355
+ #: includes/settings/wcj-settings-order-numbers.php:111
13356
+ msgid "Enable Order Admin Search by Custom Number"
13357
+ msgstr ""
13358
+
13359
+ #: includes/settings/wcj-settings-order-numbers.php:118
13360
+ msgid "Enable Editable Order Number Meta Box"
13361
+ msgstr ""
13362
+
13363
+ #: includes/settings/wcj-settings-order-numbers.php:127
13364
+ msgid "Minimal Order ID"
13365
+ msgstr ""
13366
+
13367
+ #: includes/settings/wcj-settings-order-numbers.php:128
13368
+ msgid ""
13369
+ "If you wish to disable order numbering for some (older) orders, you can set "
13370
+ "order ID to start here."
13371
+ msgstr ""
13372
+
13373
+ #: includes/settings/wcj-settings-order-numbers.php:129
13374
+ msgid "Set to zero to enable numbering for all orders."
13375
+ msgstr ""
13376
+
13377
+ #: includes/settings/wcj-settings-order-numbers.php:140
13378
+ msgid "Orders Renumerate Tool Options"
13379
+ msgstr ""
13380
+
13381
+ #: includes/settings/wcj-settings-order-numbers.php:145
13382
+ msgid "Sort by"
13383
+ msgstr ""
13384
+
13385
+ #: includes/settings/wcj-settings-order-numbers.php:152
13386
+ msgid "Last modified date"
13387
+ msgstr ""
13388
+
13389
+ #: includes/settings/wcj-settings-order-numbers.php:157
13390
+ msgid "Sort Ascending or Descending"
13391
+ msgstr ""
13392
+
13393
+ #: includes/settings/wcj-settings-order-quantities.php:22
13394
+ msgid "Decimal Quantities"
13395
+ msgstr ""
13396
+
13397
+ #: includes/settings/wcj-settings-order-quantities.php:24
13398
+ msgid ""
13399
+ "Save module's settings after enabling this option, so you could enter "
13400
+ "decimal quantities in step, min and/or max quantity options."
13401
+ msgstr ""
13402
+
13403
+ #: includes/settings/wcj-settings-order-quantities.php:30
13404
+ msgid "Force Initial Quantity on Single Product Page"
13405
+ msgstr ""
13406
+
13407
+ #: includes/settings/wcj-settings-order-quantities.php:35
13408
+ msgid "Do not force"
13409
+ msgstr ""
13410
+
13411
+ #: includes/settings/wcj-settings-order-quantities.php:36
13412
+ msgid "Force to min quantity"
13413
+ msgstr ""
13414
+
13415
+ #: includes/settings/wcj-settings-order-quantities.php:37
13416
+ msgid "Force to max quantity"
13417
+ msgstr ""
13418
+
13419
+ #: includes/settings/wcj-settings-order-quantities.php:41
13420
+ msgid "Enable Cart Notices"
13421
+ msgstr ""
13422
+
13423
+ #: includes/settings/wcj-settings-order-quantities.php:48
13424
+ msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
13425
+ msgstr ""
13426
+
13427
+ #: includes/settings/wcj-settings-order-quantities.php:50
13428
+ msgid "Will be redirected to cart page."
13429
+ msgstr ""
13430
+
13431
+ #: includes/settings/wcj-settings-order-quantities.php:57
13432
+ msgid "Action on variation change"
13433
+ msgstr ""
13434
+
13435
+ #: includes/settings/wcj-settings-order-quantities.php:62
13436
+ #: includes/settings/wcj-settings-product-tabs.php:27
13437
+ msgid "Do nothing"
13438
+ msgstr ""
13439
+
13440
+ #: includes/settings/wcj-settings-order-quantities.php:63
13441
+ msgid "Reset to min quantity"
13442
+ msgstr ""
13443
+
13444
+ #: includes/settings/wcj-settings-order-quantities.php:64
13445
+ msgid "Reset to max quantity"
13446
+ msgstr ""
13447
+
13448
+ #: includes/settings/wcj-settings-order-quantities.php:68
13449
+ msgid "Force on add to cart"
13450
+ msgstr ""
13451
+
13452
+ #: includes/settings/wcj-settings-order-quantities.php:69
13453
+ msgid "Force quantity correction on add to cart button click"
13454
+ msgstr ""
13455
+
13456
+ #: includes/settings/wcj-settings-order-quantities.php:79
13457
+ msgid "Minimum Quantity Options"
13458
+ msgstr ""
13459
+
13460
+ #: includes/settings/wcj-settings-order-quantities.php:91
13461
+ #: includes/settings/wcj-settings-order-quantities.php:149
13462
+ msgid "Cart Total Quantity"
13463
+ msgstr ""
13464
+
13465
+ #: includes/settings/wcj-settings-order-quantities.php:92
13466
+ #: includes/settings/wcj-settings-order-quantities.php:108
13467
+ #: includes/settings/wcj-settings-order-quantities.php:150
13468
+ #: includes/settings/wcj-settings-order-quantities.php:166
13469
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:35
13470
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:35
13471
+ msgid "Set to zero to disable."
13472
+ msgstr ""
13473
+
13474
+ #: includes/settings/wcj-settings-order-quantities.php:99
13475
+ #: includes/settings/wcj-settings-order-quantities.php:157
13476
+ msgid "Message - Cart Total Quantity"
13477
+ msgstr ""
13478
+
13479
+ #: includes/settings/wcj-settings-order-quantities.php:107
13480
+ #: includes/settings/wcj-settings-order-quantities.php:165
13481
+ msgid "Per Item Quantity"
13482
+ msgstr ""
13483
+
13484
+ #: includes/settings/wcj-settings-order-quantities.php:116
13485
+ #: includes/settings/wcj-settings-order-quantities.php:174
13486
+ msgid "Per Item Quantity on Per Product Basis"
13487
+ msgstr ""
13488
+
13489
+ #: includes/settings/wcj-settings-order-quantities.php:125
13490
+ #: includes/settings/wcj-settings-order-quantities.php:183
13491
+ msgid "Message - Per Item Quantity"
13492
+ msgstr ""
13493
+
13494
+ #: includes/settings/wcj-settings-order-quantities.php:137
13495
+ msgid "Maximum Quantity Options"
13496
+ msgstr ""
13497
+
13498
+ #: includes/settings/wcj-settings-order-quantities.php:195
13499
+ msgid "Quantity Step Options"
13500
+ msgstr ""
13501
+
13502
+ #: includes/settings/wcj-settings-order-quantities.php:207
13503
+ msgid "Step"
13504
+ msgstr ""
13505
+
13506
+ #: includes/settings/wcj-settings-order-quantities.php:224
13507
+ msgid "Additional Validation"
13508
+ msgstr ""
13509
+
13510
+ #: includes/settings/wcj-settings-order-quantities.php:243
13511
+ msgid "\"Single Item Cart\" Options"
13512
+ msgstr ""
13513
+
13514
+ #: includes/settings/wcj-settings-order-quantities.php:248
13515
+ msgid "Enable \"Single Item Cart\" Mode"
13516
+ msgstr ""
13517
+
13518
+ #: includes/settings/wcj-settings-order-quantities.php:250
13519
+ msgid ""
13520
+ "When enabled, only one item will be allowed to be added to the cart "
13521
+ "(quantity is not checked)."
13522
+ msgstr ""
13523
+
13524
+ #: includes/settings/wcj-settings-orders.php:26
13525
+ #: includes/settings/wcj-settings-orders.php:31
13526
+ msgid "Admin Order Currency"
13527
+ msgstr ""
13528
+
13529
+ #: includes/settings/wcj-settings-orders.php:33
13530
+ msgid ""
13531
+ "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
13532
+ "page."
13533
+ msgstr ""
13534
+
13535
+ #: includes/settings/wcj-settings-orders.php:39
13536
+ msgid "Admin Order Currency Method"
13537
+ msgstr ""
13538
+
13539
+ #: includes/settings/wcj-settings-orders.php:40
13540
+ msgid ""
13541
+ "Choose if you want changed order currency to be saved directly to DB, or if "
13542
+ "you want to use filter. When using <em>filter</em> method, changes will be "
13543
+ "active only when \"Admin Order Currency\" section is enabled. When using "
13544
+ "<em>directly to DB</em> method, changes will be permanent, that is even if "
13545
+ "Booster plugin is removed."
13546
+ msgstr ""
13547
+
13548
+ #: includes/settings/wcj-settings-orders.php:46
13549
+ msgid "Directly to DB"
13550
+ msgstr ""
13551
+
13552
+ #: includes/settings/wcj-settings-orders.php:54
13553
+ #: includes/settings/wcj-settings-orders.php:59
13554
+ msgid "Admin Order Navigation"
13555
+ msgstr ""
13556
+
13557
+ #: includes/settings/wcj-settings-orders.php:61
13558
+ msgid ""
13559
+ "When enabled, this will add \"Booster: Order Navigation\" metabox to each "
13560
+ "order's admin edit page."
13561
+ msgstr ""
13562
+
13563
+ #: includes/settings/wcj-settings-orders.php:62
13564
+ msgid "Metabox will contain \"Previous order\" and \"Next order\" links."
13565
+ msgstr ""
13566
+
13567
+ #: includes/settings/wcj-settings-orders.php:72
13568
+ msgid "Editable Orders"
13569
+ msgstr ""
13570
+
13571
+ #: includes/settings/wcj-settings-orders.php:73
13572
+ msgid "This section allows you to set which order statuses are editable."
13573
+ msgstr ""
13574
+
13575
+ #: includes/settings/wcj-settings-orders.php:78
13576
+ msgid "Editable Orders Statuses"
13577
+ msgstr ""
13578
+
13579
+ #: includes/settings/wcj-settings-orders.php:91
13580
+ msgid "Auto-draft"
13581
+ msgstr ""
13582
+
13583
+ #: includes/settings/wcj-settings-orders.php:98
13584
+ msgid "Orders Auto-Complete"
13585
+ msgstr ""
13586
+
13587
+ #: includes/settings/wcj-settings-orders.php:100
13588
+ msgid "This section lets you enable orders auto-complete function."
13589
+ msgstr ""
13590
+
13591
+ #: includes/settings/wcj-settings-orders.php:104
13592
+ msgid "Auto-complete all WooCommerce orders"
13593
+ msgstr ""
13594
+
13595
+ #: includes/settings/wcj-settings-orders.php:106
13596
+ msgid ""
13597
+ "E.g. if you sell digital products then you are not shipping anything and you "
13598
+ "may want auto-complete all your orders."
13599
+ msgstr ""
13600
+
13601
+ #: includes/settings/wcj-settings-orders.php:113
13602
+ msgid ""
13603
+ "Fill this, if you want orders to be auto-completed for selected payment "
13604
+ "methods only. Leave blank to auto-complete all orders."
13605
+ msgstr ""
13606
+
13607
+ #: includes/settings/wcj-settings-orders.php:131
13608
+ msgid "Add Country by IP Meta Box"
13609
+ msgstr ""
13610
+
13611
+ #: includes/settings/wcj-settings-orders.php:133
13612
+ msgid ""
13613
+ "When enabled this will add \"Booster: Country by IP\" metabox to each "
13614
+ "order's edit page."
13615
+ msgstr ""
13616
+
13617
+ #: includes/settings/wcj-settings-orders.php:143
13618
+ msgid "Bulk Regenerate Download Permissions for Orders"
13619
+ msgstr ""
13620
+
13621
+ #: includes/settings/wcj-settings-orders.php:148
13622
+ msgid "Bulk Regenerate Download Permissions"
13623
+ msgstr ""
13624
+
13625
+ #: includes/settings/wcj-settings-orders.php:157
13626
+ msgid "Bulk Actions"
13627
+ msgstr ""
13628
+
13629
+ #: includes/settings/wcj-settings-orders.php:158
13630
+ msgid ""
13631
+ "When enabled this will add \"Regenerate download permissions\" action to "
13632
+ "\"Bulk Actions\" select box on admin orders page."
13633
+ msgstr ""
13634
+
13635
+ #: includes/settings/wcj-settings-orders.php:166
13636
+ msgid "All Orders - Now"
13637
+ msgstr ""
13638
+
13639
+ #: includes/settings/wcj-settings-orders.php:167
13640
+ msgid ""
13641
+ "Check this box and press \"Save changes\" button to start regeneration. "
13642
+ "Please note that both module and current section must be enabled before that."
13643
+ msgstr ""
13644
+
13645
+ #: includes/settings/wcj-settings-orders.php:168
13646
+ msgid "Regenerate now"
13647
+ msgstr ""
13648
+
13649
+ #: includes/settings/wcj-settings-orders.php:175
13650
+ msgid "All Orders - Periodically"
13651
+ msgstr ""
13652
+
13653
+ #: includes/settings/wcj-settings-orders.php:181
13654
+ msgid "Regenerate"
13655
+ msgstr ""
13656
+
13657
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:20
13658
+ msgid "Detect Country by"
13659
+ msgstr ""
13660
+
13661
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:31
13662
+ msgid "Detect State by"
13663
+ msgstr ""
13664
+
13665
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:41
13666
+ msgid "Detect Postcode by"
13667
+ msgstr ""
13668
+
13669
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:57
13670
+ msgid "If any field is left empty - it's ignored."
13671
+ msgstr ""
13672
+
13673
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:80
13674
+ msgid "Include Countries"
13675
+ msgstr ""
13676
+
13677
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:90
13678
+ msgid "Exclude Countries"
13679
+ msgstr ""
13680
+
13681
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:100
13682
+ msgid "Include States (Base Country)"
13683
+ msgstr ""
13684
+
13685
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:110
13686
+ msgid "Exclude States (Base Country)"
13687
+ msgstr ""
13688
+
13689
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:120
13690
+ msgid "Include Postcodes (one per line)"
13691
+ msgstr ""
13692
+
13693
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:130
13694
+ msgid "Exclude Postcodes (one per line)"
13695
+ msgstr ""
13696
+
13697
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
13698
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
13699
+ #: includes/settings/wcj-settings-shipping-by-condition.php:43
13700
+ msgid "Leave empty to disable."
13701
+ msgstr ""
13702
+
13703
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:29
13704
+ #, php-format
13705
+ msgid "PayPal allows only these currencies: %s."
13706
+ msgstr ""
13707
+
13708
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:46
13709
+ msgid "Allowed Currencies"
13710
+ msgstr ""
13711
+
13712
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:57
13713
+ msgid "Denied Currencies"
13714
+ msgstr ""
13715
+
13716
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:22
13717
+ #: includes/settings/wcj-settings-shipping-by-condition.php:25
13718
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:20
13719
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:20
13720
+ #: includes/settings/wcj-settings-shipping-description.php:58
13721
+ #: includes/settings/wcj-settings-shipping-icons.php:60
13722
+ #: includes/settings/wcj-settings-shipping-time.php:30
13723
+ msgid "Use Shipping Instances"
13724
+ msgstr ""
13725
+
13726
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:24
13727
+ #: includes/settings/wcj-settings-shipping-by-condition.php:27
13728
+ #: includes/settings/wcj-settings-shipping-by-order-amount.php:22
13729
+ #: includes/settings/wcj-settings-shipping-by-order-qty.php:22
13730
+ #: includes/settings/wcj-settings-shipping-description.php:60
13731
+ #: includes/settings/wcj-settings-shipping-icons.php:62
13732
+ #: includes/settings/wcj-settings-shipping-time.php:32
13733
+ msgid ""
13734
+ "Enable this if you want to use shipping methods instances instead of "
13735
+ "shipping methods."
13736
+ msgstr ""
13737
+
13738
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:39
13739
+ msgid ""
13740
+ "If payment gateway is only available for certain methods, set it up here. "
13741
+ "Leave blank to enable for all methods."
13742
+ msgstr ""
13743
+
13744
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:17
13745
+ #: includes/settings/wcj-settings-product-by-user.php:79
13746
+ #, php-format
13747
+ msgid ""
13748
+ "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
13749
+ "<a href=\"%s\">General</a> module"
13750
+ msgstr ""
13751
+
13752
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:40
13753
+ msgid "Include User Roles"
13754
+ msgstr ""
13755
+
13756
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:51
13757
+ msgid "Exclude User Roles"
13758
+ msgstr ""
13759
+
13760
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:17
13761
+ msgid "This section lets you set different currency for each payment gateway."
13762
+ msgstr ""
13763
+
13764
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:45
13765
+ msgid "Go to payment gateway's settings"
13766
+ msgstr ""
13767
+
13768
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:84
13769
+ msgid "Show Converted Prices"
13770
+ msgstr ""
13771
+
13772
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:89
13773
+ #: includes/settings/wcj-settings-shipping-description.php:26
13774
+ #: includes/settings/wcj-settings-shipping-icons.php:35
13775
+ msgid "On both cart and checkout pages"
13776
+ msgstr ""
13777
+
13778
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:90
13779
+ msgid "On checkout page only"
13780
+ msgstr ""
13781
+
13782
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:94
13783
+ msgid "Advanced: Fix \"Chosen Payment Method\""
13784
+ msgstr ""
13785
+
13786
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:96
13787
+ msgid ""
13788
+ "Enable this if you are having compatibility issues with some other plugins "
13789
+ "or modules."
13790
+ msgstr ""
13791
+
13792
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:23
13793
+ msgid "Fee (or Discount) Title"
13794
+ msgstr ""
13795
+
13796
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:24
13797
+ msgid "Fee (or discount) title to show to customer."
13798
+ msgstr ""
13799
+
13800
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:31
13801
+ msgid "Fee (or Discount) Type"
13802
+ msgstr ""
13803
+
13804
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:32
13805
+ msgid "Percent or fixed value."
13806
+ msgstr ""
13807
+
13808
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:42
13809
+ msgid "Fee (or Discount) Value"
13810
+ msgstr ""
13811
+
13812
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:43
13813
+ msgid "The value. For discount enter a negative number."
13814
+ msgstr ""
13815
+
13816
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:50
13817
+ msgid "Minimum Cart Amount"
13818
+ msgstr ""
13819
+
13820
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:51
13821
+ msgid "Minimum cart amount for adding the fee (or discount)."
13822
+ msgstr ""
13823
+
13824
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:51
13825
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:59
13826
+ msgid "Set 0 to disable."
13827
+ msgstr ""
13828
+
13829
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:58
13830
+ msgid "Maximum Cart Amount"
13831
+ msgstr ""
13832
+
13833
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:59
13834
+ msgid "Maximum cart amount for adding the fee (or discount)."
13835
+ msgstr ""
13836
+
13837
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:68
13838
+ msgid "Round the fee (or discount) value before adding to the cart."
13839
+ msgstr ""
13840
+
13841
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:75
13842
+ msgid "If rounding is enabled, set precision (i.e. number of decimals) here."
13843
+ msgstr ""
13844
+
13845
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:89
13846
+ msgid "Tax class"
13847
+ msgstr ""
13848
+
13849
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:90
13850
+ msgid "If taxing is enabled, set tax class here."
13851
+ msgstr ""
13852
+
13853
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:94
13854
+ msgid "Standard Rate"
13855
+ msgstr ""
13856
+
13857
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:97
13858
+ msgid "Exclude Shipping when Calculating Total Cart Amount"
13859
+ msgstr ""
13860
+
13861
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:99
13862
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:107
13863
+ msgid ""
13864
+ "This affects \"Percent\" type fees and \"Minimum/Maximum Cart Amount\" "
13865
+ "options."
13866
+ msgstr ""
13867
+
13868
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:105
13869
+ msgid "Include Taxes"
13870
+ msgstr ""
13871
+
13872
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:106
13873
+ msgid "Include taxes when calculating Total Cart Amount"
13874
+ msgstr ""
13875
+
13876
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:113
13877
+ msgid "Require Products"
13878
+ msgstr ""
13879
+
13880
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:114
13881
+ msgid ""
13882
+ "Require at least one of selected products to be in cart for fee to be "
13883
+ "applied."
13884
+ msgstr ""
13885
+
13886
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:126
13887
+ msgid "Do not apply fee, if at least one of selected products is in cart."
13888
+ msgstr ""
13889
+
13890
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:35
13891
+ msgid "Leave blank to set WooCommerce default value"
13892
+ msgstr ""
13893
+
13894
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:46
13895
+ msgid "Remove Icon"
13896
+ msgstr ""
13897
+
13898
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:20
13899
+ msgid "Exclude Shipping"
13900
+ msgstr ""
13901
+
13902
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:21
13903
+ msgid ""
13904
+ "Exclude shipping from total cart sum, when comparing with min/max amounts."
13905
+ msgstr ""
13906
+
13907
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:27
13908
+ msgid "Notices on Checkout"
13909
+ msgstr ""
13910
+
13911
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:28
13912
+ msgid "Enable Notices"
13913
+ msgstr ""
13914
+
13915
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:34
13916
+ msgid "Notice Template (Minimum Amount)"
13917
+ msgstr ""
13918
+
13919
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:35
13920
+ msgid "Replaced values: %gateway_title%, %min_amount%."
13921
+ msgstr ""
13922
+
13923
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:42
13924
+ msgid "Notice Template (Maximum Amount)"
13925
+ msgstr ""
13926
+
13927
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:43
13928
+ msgid "Replaced values: %gateway_title%, %max_amount%."
13929
+ msgstr ""
13930
+
13931
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:50
13932
+ msgid "Notice Styling"
13933
+ msgstr ""
13934
+
13935
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:57
13936
+ msgid "Success"
13937
+ msgstr ""
13938
+
13939
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:70
13940
+ #: includes/settings/wcj-settings-product-msrp.php:110
13941
+ msgid "Multicurrency"
13942
+ msgstr ""
13943
+
13944
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:71
13945
+ #: includes/settings/wcj-settings-product-msrp.php:111
13946
+ msgid "Enable compatibility with Multicurrency module"
13947
+ msgstr ""
13948
+
13949
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:104
13950
+ msgid "Min"
13951
+ msgstr ""
13952
+
13953
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:113
13954
+ msgid "Max"
13955
+ msgstr ""
13956
+
13957
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:24
13958
+ msgid "Use Variations"
13959
+ msgstr ""
13960
+
13961
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:26
13962
+ msgid "Will use variations instead of main product for variable type products."
13963
+ msgstr ""
13964
+
13965
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:36
13966
+ msgid "Gateways"
13967
+ msgstr ""
13968
+
13969
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:49
13970
+ #: includes/settings/wcj-settings-price-labels.php:125
13971
+ #: includes/settings/wcj-settings-product-input-fields.php:110
13972
+ msgid "Product Categories - Include"
13973
+ msgstr ""
13974
+
13975
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:50
13976
+ msgid ""
13977
+ "Show gateway only if there is product of selected category in cart. Leave "
13978
+ "blank to disable the option."
13979
+ msgstr ""
13980
+
13981
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:60
13982
+ #: includes/settings/wcj-settings-price-labels.php:134
13983
+ #: includes/settings/wcj-settings-product-input-fields.php:121
13984
+ msgid "Product Categories - Exclude"
13985
+ msgstr ""
13986
+
13987
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:61
13988
+ msgid ""
13989
+ "Hide gateway if there is product of selected category in cart. Leave blank "
13990
+ "to disable the option."
13991
+ msgstr ""
13992
+
13993
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:72
13994
+ #: includes/settings/wcj-settings-price-labels.php:107
13995
+ #: includes/settings/wcj-settings-product-input-fields.php:155
13996
+ msgid "Products - Include"
13997
+ msgstr ""
13998
+
13999
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:73
14000
+ msgid ""
14001
+ "Show gateway only if there is selected products in cart. Leave blank to "
14002
+ "disable the option."
14003
+ msgstr ""
14004
+
14005
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:85
14006
+ #: includes/settings/wcj-settings-price-labels.php:116
14007
+ #: includes/settings/wcj-settings-product-input-fields.php:167
14008
+ msgid "Products - Exclude"
14009
+ msgstr ""
14010
+
14011
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:86
14012
+ msgid ""
14013
+ "Hide gateway if there is selected products in cart. Leave blank to disable "
14014
+ "the option."
14015
+ msgstr ""
14016
+
14017
+ #: includes/settings/wcj-settings-payment-gateways.php:13
14018
+ msgid "WooCommerce > Settings > Checkout"
14019
+ msgstr ""
14020
+
14021
+ #: includes/settings/wcj-settings-payment-gateways.php:16
14022
+ msgid "Custom Payment Gateways Options"
14023
+ msgstr ""
14024
+
14025
+ #: includes/settings/wcj-settings-payment-gateways.php:19
14026
+ msgid "This section lets you set number of custom payment gateways to add."
14027
+ msgstr ""
14028
+
14029
+ #: includes/settings/wcj-settings-payment-gateways.php:20
14030
+ #, php-format
14031
+ msgid "After setting the number, visit %s to set each gateway options."
14032
+ msgstr ""
14033
+
14034
+ #: includes/settings/wcj-settings-payment-gateways.php:23
14035
+ msgid "Number of Gateways"
14036
+ msgstr ""
14037
+
14038
+ #: includes/settings/wcj-settings-payment-gateways.php:25
14039
+ msgid ""
14040
+ "Number of custom payments gateways to be added. All settings for each new "
14041
+ "gateway are in WooCommerce > Settings > Checkout."
14042
+ msgstr ""
14043
+
14044
+ #: includes/settings/wcj-settings-payment-gateways.php:36
14045
+ msgid "Admin Title Custom Gateway"
14046
+ msgstr ""
14047
+
14048
+ #: includes/settings/wcj-settings-payment-gateways.php:54
14049
+ msgid "Gateways Input Fields"
14050
+ msgstr ""
14051
+
14052
+ #: includes/settings/wcj-settings-payment-gateways.php:55
14053
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:61
14054
+ msgid "Add \"Delete\" button"
14055
+ msgstr ""
14056
+
14057
+ #: includes/settings/wcj-settings-payment-gateways.php:56
14058
+ msgid ""
14059
+ "This will add \"Delete\" button to custom payment gateways input fields "
14060
+ "admin order meta box."
14061
+ msgstr ""
14062
+
14063
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:16
14064
+ msgid "Fonts download is disabled."
14065
+ msgstr ""
14066
+
14067
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:19
14068
+ msgid "Fonts are up to date."
14069
+ msgstr ""
14070
+
14071
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:20
14072
+ #, php-format
14073
+ msgid "Latest successful download or version check was on %s."
14074
+ msgstr ""
14075
+
14076
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:24
14077
+ msgid ""
14078
+ "Fonts are NOT up to date. Please try downloading by pressing the button "
14079
+ "below."
14080
+ msgstr ""
14081
+
14082
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:27
14083
+ #, php-format
14084
+ msgid "Latest successful downloaded version is %s."
14085
+ msgstr ""
14086
+
14087
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:33
14088
+ #, php-format
14089
+ msgid "Latest download executed on %s."
14090
+ msgstr ""
14091
+
14092
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:47
14093
+ msgid "Hide Disabled Docs Settings"
14094
+ msgstr ""
14095
+
14096
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:54
14097
+ msgid "Replace Admin Order Search with Invoice Search"
14098
+ msgstr ""
14099
+
14100
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:61
14101
+ msgid "Default Images Directory"
14102
+ msgstr ""
14103
+
14104
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:62
14105
+ msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
14106
+ msgstr ""
14107
+
14108
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:63
14109
+ msgid ""
14110
+ "Try changing this if you have issues displaying images in page background or "
14111
+ "header."
14112
+ msgstr ""
14113
+
14114
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:68
14115
+ msgid "Empty"
14116
+ msgstr ""
14117
+
14118
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:69
14119
+ msgid "TCPDF Default"
14120
+ msgstr ""
14121
+
14122
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:70
14123
+ msgid "ABSPATH"
14124
+ msgstr ""
14125
+
14126
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:71
14127
+ msgid "DOCUMENT_ROOT"
14128
+ msgstr ""
14129
+
14130
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:75
14131
+ msgid "Temp Directory"
14132
+ msgstr ""
14133
+
14134
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:76
14135
+ msgid "Leave blank to use the default temp directory."
14136
+ msgstr ""
14137
+
14138
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:82
14139
+ msgid "Disable Saving PDFs in Temp Directory"
14140
+ msgstr ""
14141
+
14142
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:83
14143
+ msgid ""
14144
+ "Please note that attaching invoices to emails and generating invoices report "
14145
+ "zip will stop working, if you enable this checkbox."
14146
+ msgstr ""
14147
+
14148
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:90
14149
+ msgid "Prevent Output Buffer"
14150
+ msgstr ""
14151
+
14152
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:91
14153
+ msgid "Returns the content of output buffering instead of displaying it"
14154
+ msgstr ""
14155
+
14156
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:101
14157
+ msgid "Fonts Manager"
14158
+ msgstr ""
14159
+
14160
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
14161
+ msgid "Re-download"
14162
+ msgstr ""
14163
+
14164
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
14165
+ msgid "Download"
14166
+ msgstr ""
14167
+
14168
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:115
14169
+ msgid "Disable Fonts Download"
14170
+ msgstr ""
14171
+
14172
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:126
14173
+ msgid "General Display Options"
14174
+ msgstr ""
14175
+
14176
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:131
14177
+ msgid "Add PDF Invoices Meta Box to Admin Edit Order Page"
14178
+ msgstr ""
14179
+
14180
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:138
14181
+ msgid "Open docs in new window"
14182
+ msgstr ""
14183
+
14184
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:144
14185
+ msgid "Add editable numbers and dates"
14186
+ msgstr ""
14187
+
14188
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:154
14189
+ msgid "Report Tool Options"
14190
+ msgstr ""
14191
+
14192
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:159
14193
+ msgid "Reports Filename"
14194
+ msgstr ""
14195
+
14196
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:167
14197
+ msgid "Report Columns"
14198
+ msgstr ""
14199
+
14200
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:168
14201
+ msgid "Leave blank to show all columns."
14202
+ msgstr ""
14203
+
14204
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:176
14205
+ msgid "Tax Percent Precision"
14206
+ msgstr ""
14207
+
14208
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:189
14209
+ msgid "CSV UTF-8 BOM"
14210
+ msgstr ""
14211
+
14212
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:196
14213
+ msgid "Replace Periods with Commas in CSV Data"
14214
+ msgstr ""
14215
+
14216
+ #: includes/settings/wcj-settings-pdf-invoicing-advanced.php:197
14217
+ #: includes/settings/wcj-settings-product-open-pricing.php:174
14218
+ msgid "Replace"
14219
+ msgstr ""
14220
+
14221
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:25
14222
+ #: includes/settings/wcj-settings-price-by-country.php:284
14223
+ #: includes/settings/wcj-settings-shipping.php:30
14224
+ msgid "Admin Title"
14225
+ msgstr ""
14226
+
14227
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:32
14228
+ msgid "Admin's \"Orders\" Page"
14229
+ msgstr ""
14230
+
14231
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:33
14232
+ msgid "Add Column"
14233
+ msgstr ""
14234
+
14235
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:40
14236
+ msgid "Column Title"
14237
+ msgstr ""
14238
+
14239
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:47
14240
+ msgid "Add \"View\" button"
14241
+ msgstr ""
14242
+
14243
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:54
14244
+ msgid "Add \"Create\" button"
14245
+ msgstr ""
14246
+
14247
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:68
14248
+ msgid "\"Create\" button requires confirmation"
14249
+ msgstr ""
14250
+
14251
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:75
14252
+ msgid "\"Delete\" button requires confirmation"
14253
+ msgstr ""
14254
+
14255
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:82
14256
+ msgid "Thank You Page"
14257
+ msgstr ""
14258
+
14259
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:83
14260
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:104
14261
+ msgid "Add link"
14262
+ msgstr ""
14263
+
14264
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:89
14265
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:110
14266
+ msgid "Link Text"
14267
+ msgstr ""
14268
+
14269
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:96
14270
+ #: includes/settings/wcj-settings-pdf-invoicing-templates.php:28
14271
+ msgid "HTML Template"
14272
+ msgstr ""
14273
+
14274
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:103
14275
+ msgid "Customer's \"My Account\" Page"
14276
+ msgstr ""
14277
+
14278
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:117
14279
+ msgid "Enable \"Save as\""
14280
+ msgstr ""
14281
+
14282
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:119
14283
+ msgid "Enable \"save as\" pdf instead of view pdf in browser"
14284
+ msgstr ""
14285
+
14286
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:125
14287
+ msgid "PDF File Name"
14288
+ msgstr ""
14289
+
14290
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:126
14291
+ #, php-format
14292
+ msgid ""
14293
+ "Enter file name for PDF documents. You can use shortcodes here, e.g. %s."
14294
+ msgstr ""
14295
+
14296
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:134
14297
+ msgid "Allowed User Roles"
14298
+ msgstr ""
14299
+
14300
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:135
14301
+ msgid "If set to empty - Administrator role will be used."
14302
+ msgstr ""
14303
+
14304
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:53
14305
+ msgid "Attach PDF to emails"
14306
+ msgstr ""
14307
+
14308
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:60
14309
+ msgid "Select some emails"
14310
+ msgstr ""
14311
+
14312
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:63
14313
+ msgid "Payment gateways to include"
14314
+ msgstr ""
14315
+
14316
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:70
14317
+ msgid "Select some gateways. Leave blank to include all."
14318
+ msgstr ""
14319
+
14320
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:22
14321
+ msgid "Enable Footer"
14322
+ msgstr ""
14323
+
14324
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:29
14325
+ msgid "Footer Text"
14326
+ msgstr ""
14327
+
14328
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:34
14329
+ msgid "You can use HTML here, as well as any WordPress shortcodes."
14330
+ msgstr ""
14331
+
14332
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:45
14333
+ msgid "Footer Line Color"
14334
+ msgstr ""
14335
+
14336
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:52
14337
+ msgid "Footer Margin"
14338
+ msgstr ""
14339
+
14340
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:23
14341
+ msgid "Enable Header"
14342
+ msgstr ""
14343
+
14344
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:30
14345
+ msgid "Header Image"
14346
+ msgstr ""
14347
+
14348
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:35
14349
+ #, php-format
14350
+ msgid ""
14351
+ "Enter a local URL to an image you want to show in the invoice's header. "
14352
+ "Upload your image using the <a href=\"%s\">media uploader</a>."
14353
+ msgstr ""
14354
+
14355
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:38
14356
+ #, php-format
14357
+ msgid ""
14358
+ "If you are experiencing issues with displaying header image, please try "
14359
+ "setting different val