Booster for WooCommerce - Version 3.2.0

Version Description

  • 20/10/2017 =
  • Dev - WooCommerce v3.2 compatibility - SHIPPING & ORDERS - Left to Free Shipping - "WC_Cart->taxes function is deprecated since version 3.2" notice fixed.
  • Dev - WooCommerce v3.2 compatibility - EMAILS & MISC. - Custom Emails - Custom emails added to order actions.
  • Dev - WooCommerce v3.2 compatibility - Shipping Taxes - PRICES & CURRENCIES - Currency per Product.
  • Dev - WooCommerce v3.2 compatibility - Shipping Taxes - PRICES & CURRENCIES - Price by User Role.
  • Dev - WooCommerce v3.2 compatibility - Shipping Taxes - PRICES & CURRENCIES - Prices and Currencies by Country.
  • Dev - WooCommerce v3.2 compatibility - Shipping Taxes - PAYMENT GATEWAYS - Gateways Currency Converter.
  • Dev - WooCommerce v3.2 compatibility - Admin settings - select type options fixed; text with class widefat options fixed.
  • Fix - PRICES & CURRENCIES - Currency per Product - Shipping calculation fixed.
  • Dev - PRICES & CURRENCIES - Multicurrency (Currency Switcher) - Code refactoring.
  • Dev - PRICES & CURRENCIES - Price by User Role - Roles & Multipliers - "Disable Price by User Role for Regular Price" option added.
  • Dev - PRODUCTS - Product Listings - "TAX Display in the Shop - by User Role" section added.
  • Dev - CART & CHECKOUT - Checkout Custom Fields - "Select: Use select2 Library" options added.
  • Dev - SHIPPING & ORDERS - Orders - "Bulk Regenerate Download Permissions for Orders" section added.
  • Dev - SHIPPING & ORDERS - Order Numbers - "Orders Renumerate Tool Options" admin settings section added.
  • Dev - SHIPPING & ORDERS - Shipping Methods by Products - Initial module release.
  • Dev - SHIPPING & ORDERS - Shipping Methods by Users - Module renamed from "Shipping Methods by User Role". Major code refactoring. "Shipping Methods by User Membership" section added.
  • Dev - PDF INVOICING & PACKING SLIPS - General - Now invoices can be created on multiple statuses.
  • Dev - PDF INVOICING & PACKING SLIPS - Header - Header Image - Shortcodes processing added.
  • Dev - PDF INVOICING & PACKING SLIPS - Email Options - Getting full emails list directly from WooCommerce (instead of using manually defined list).
  • Dev - PDF INVOICING & PACKING SLIPS - Invoices Report - "Payment Gateway" column added.
  • Dev - Shortcodes - Orders - [wcj_order_custom_field] - key attribute added.
  • Fix - Shortcodes - Orders - [wcj_order_items_table] - product_meta and product_post_meta columns fixed.
  • Dev - Shortcodes - Orders - [wcj_order_items_table] - Major code refactoring and cleanup.
  • Dev - Shortcodes - Orders - [wcj_order_items_table] - "Multicolumns" functionality added.
  • Dev - Functions - Country - wcj_get_european_union_countries_with_vat() - GR changed to 24; RO changed to 19.
  • Dev - Plugin update checker - "Check site key now" now saves the key before checking.
  • Dev - es_ES translation files added.
Download this release

Release Info

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

Code changes from version 3.1.3 to 3.2.0

Files changed (40) hide show
  1. includes/admin/wcj-modules-cats.php +2 -1
  2. includes/class-wcj-checkout-custom-fields.php +42 -2
  3. includes/class-wcj-currency-per-product.php +4 -16
  4. includes/class-wcj-emails.php +50 -4
  5. includes/class-wcj-multicurrency.php +3 -24
  6. includes/class-wcj-order-numbers.php +6 -5
  7. includes/class-wcj-orders.php +115 -2
  8. includes/class-wcj-payment-gateways-currency.php +3 -15
  9. includes/class-wcj-pdf-invoicing.php +19 -19
  10. includes/class-wcj-price-by-user-role.php +42 -21
  11. includes/class-wcj-product-listings.php +25 -2
  12. includes/class-wcj-shipping-by-products.php +102 -0
  13. includes/class-wcj-shipping-by-user-role.php +82 -25
  14. includes/classes/class-wcj-module-shipping-by-condition.php +156 -0
  15. includes/classes/class-wcj-module.php +22 -3
  16. includes/classes/class-wcj-pdf-invoice.php +4 -4
  17. includes/constants/wcj-constants.php +12 -1
  18. includes/functions/wcj-country-functions.php +5 -7
  19. includes/functions/wcj-general-functions.php +5 -5
  20. includes/functions/wcj-invoicing-functions.php +37 -3
  21. includes/functions/wcj-price-currency-functions.php +33 -1
  22. includes/functions/wcj-product-functions.php +3 -1
  23. includes/js/wcj-checkout-custom-fields.js +12 -0
  24. includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php +4 -2
  25. includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php +4 -4
  26. includes/price-by-country/class-wcj-price-by-country-core.php +3 -15
  27. includes/settings/wcj-settings-checkout-custom-fields.php +8 -1
  28. includes/settings/wcj-settings-currency-per-product.php +2 -2
  29. includes/settings/wcj-settings-order-numbers.php +32 -1
  30. includes/settings/wcj-settings-orders.php +37 -1
  31. includes/settings/wcj-settings-pdf-invoicing-emails.php +9 -2
  32. includes/settings/wcj-settings-pdf-invoicing.php +5 -6
  33. includes/settings/wcj-settings-price-by-user-role.php +9 -1
  34. includes/settings/wcj-settings-product-listings.php +50 -3
  35. includes/settings/wcj-settings-shipping-by-user-role.php +0 -68
  36. includes/shortcodes/class-wcj-order-items-shortcodes.php +342 -356
  37. includes/shortcodes/class-wcj-orders-shortcodes.php +10 -4
  38. langs/woocommerce-jetpack-es_ES.mo +0 -0
  39. langs/woocommerce-jetpack-es_ES.po +13688 -0
  40. langs/woocommerce-jetpack.pot +2761 -13686
includes/admin/wcj-modules-cats.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
- * @version 3.1.3
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -128,6 +128,7 @@ return apply_filters( 'wcj_modules', array(
128
  'left_to_free_shipping',
129
  'shipping_calculator',
130
  'shipping_by_user_role',
 
131
  'address_formats',
132
  'orders',
133
  'order_min_amount',
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
+ * @version 3.2.0
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
128
  'left_to_free_shipping',
129
  'shipping_calculator',
130
  'shipping_by_user_role',
131
+ 'shipping_by_products',
132
  'address_formats',
133
  'orders',
134
  'order_min_amount',
includes/class-wcj-checkout-custom-fields.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
- * @version 2.8.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 2.8.0
19
  */
20
  function __construct() {
21
 
@@ -57,6 +57,46 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
57
  add_filter( 'default_checkout_' . $the_name, array( $this, 'add_default_checkout_custom_fields' ), PHP_INT_MAX, 2 );
58
  }
59
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
  }
62
 
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.0
19
  */
20
  function __construct() {
21
 
57
  add_filter( 'default_checkout_' . $the_name, array( $this, 'add_default_checkout_custom_fields' ), PHP_INT_MAX, 2 );
58
  }
59
  }
60
+
61
+ // select2 script
62
+ add_action( 'wp_enqueue_scripts', array( $this, 'maybe_enqueue_scripts' ) );
63
+ }
64
+ }
65
+
66
+ /**
67
+ * maybe_enqueue_scripts.
68
+ *
69
+ * @version 3.2.0
70
+ * @since 3.2.0
71
+ */
72
+ function maybe_enqueue_scripts( $fields ) {
73
+ if ( is_checkout() ) {
74
+ $select2_fields = array();
75
+ for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
76
+ if ( 'yes' === get_option( 'wcj_checkout_custom_field_enabled_' . $i, 'no' ) ) {
77
+ if ( 'select' === get_option( 'wcj_checkout_custom_field_type_' . $i, 'text' ) ) {
78
+ if ( 'yes' === get_option( 'wcj_checkout_custom_field_select_select2_' . $i, 'no' ) ) {
79
+ $select2_fields[] = get_option( 'wcj_checkout_custom_field_section_' . $i, 'billing' ) . '_' . 'wcj_checkout_field_' . $i;
80
+ }
81
+ }
82
+ }
83
+ }
84
+ if ( ! empty( $select2_fields ) ) {
85
+ wp_enqueue_script(
86
+ 'wcj-checkout-custom-fields',
87
+ wcj_plugin_url() . '/includes/js/wcj-checkout-custom-fields.js',
88
+ array( 'jquery' ),
89
+ WCJ()->version,
90
+ true
91
+ );
92
+ wp_localize_script(
93
+ 'wcj-checkout-custom-fields',
94
+ 'wcj_checkout_custom_fields',
95
+ array(
96
+ 'select2_fields' => $select2_fields,
97
+ )
98
+ );
99
+ }
100
  }
101
  }
102
 
includes/class-wcj-currency-per-product.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Currency per Product
4
  *
5
- * @version 2.9.0
6
  * @since 2.5.2
7
  * @author Algoritmika Ltd.
8
  */
@@ -61,11 +61,11 @@ class WCJ_Currency_Per_Product extends WCJ_Module {
61
  /**
62
  * change_shipping_price.
63
  *
64
- * @version 2.7.0
65
  * @since 2.7.0
66
  */
67
  function change_shipping_price( $package_rates, $package ) {
68
- if ( $this->is_cart_or_checkout_or_ajax() ) {
69
  if ( WC()->cart->is_empty() ) {
70
  return $package_rates;
71
  }
@@ -80,19 +80,7 @@ class WCJ_Currency_Per_Product extends WCJ_Module {
80
  $currency_exchange_rate = $this->get_currency_exchange_rate( $_currency );
81
  if ( 0 != $currency_exchange_rate && 1 != $currency_exchange_rate ) {
82
  $currency_exchange_rate = 1 / $currency_exchange_rate;
83
- $modified_package_rates = array();
84
- foreach ( $package_rates as $id => $package_rate ) {
85
- if ( isset( $package_rate->cost ) ) {
86
- $package_rate->cost = $package_rate->cost * $currency_exchange_rate;
87
- if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
88
- foreach ( $package_rate->taxes as $tax_id => $tax ) {
89
- $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $currency_exchange_rate;
90
- }
91
- }
92
- }
93
- $modified_package_rates[ $id ] = $package_rate;
94
- }
95
- return $modified_package_rates;
96
  } else {
97
  return $package_rates;
98
  }
2
  /**
3
  * Booster for WooCommerce - Module - Currency per Product
4
  *
5
+ * @version 3.2.0
6
  * @since 2.5.2
7
  * @author Algoritmika Ltd.
8
  */
61
  /**
62
  * change_shipping_price.
63
  *
64
+ * @version 3.2.0
65
  * @since 2.7.0
66
  */
67
  function change_shipping_price( $package_rates, $package ) {
68
+ if ( isset( WC()->cart ) ) {
69
  if ( WC()->cart->is_empty() ) {
70
  return $package_rates;
71
  }
80
  $currency_exchange_rate = $this->get_currency_exchange_rate( $_currency );
81
  if ( 0 != $currency_exchange_rate && 1 != $currency_exchange_rate ) {
82
  $currency_exchange_rate = 1 / $currency_exchange_rate;
83
+ return wcj_change_price_shipping_package_rates( $package_rates, $currency_exchange_rate );
 
 
 
 
 
 
 
 
 
 
 
 
84
  } else {
85
  return $package_rates;
86
  }
includes/class-wcj-emails.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * Booster for WooCommerce - Module - Emails
4
  *
5
- * @version 2.9.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_Emails extends WCJ_Module {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 2.9.1
19
  */
20
  function __construct() {
21
 
@@ -26,11 +26,57 @@ class WCJ_Emails extends WCJ_Module {
26
  parent::__construct();
27
 
28
  if ( $this->is_enabled() ) {
29
- // Custom Emails
30
  add_filter( 'woocommerce_email_actions', array( $this, 'add_custom_woocommerce_email_actions' ) );
31
  add_filter( 'woocommerce_email_classes', array( $this, 'add_custom_emails_to_wc' ) );
32
  add_filter( 'woocommerce_resend_order_emails_available', array( $this, 'add_custom_emails_to_wc_resend_order_emails' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
 
34
  }
35
 
36
  /**
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Module - Custom Emails
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.0
19
  */
20
  function __construct() {
21
 
26
  parent::__construct();
27
 
28
  if ( $this->is_enabled() ) {
 
29
  add_filter( 'woocommerce_email_actions', array( $this, 'add_custom_woocommerce_email_actions' ) );
30
  add_filter( 'woocommerce_email_classes', array( $this, 'add_custom_emails_to_wc' ) );
31
  add_filter( 'woocommerce_resend_order_emails_available', array( $this, 'add_custom_emails_to_wc_resend_order_emails' ) );
32
+ if ( ! WCJ_IS_WC_VERSION_BELOW_3_2_0 ) {
33
+ add_filter( 'woocommerce_order_actions', array( $this, 'add_custom_emails_order_actions' ), PHP_INT_MAX, 1 );
34
+ for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_emails_custom_emails_total_number', 1 ) ); $i++ ) {
35
+ add_action( 'woocommerce_order_action_' . 'wcj_send_email_custom' . '_' . $i,
36
+ array( $this, 'do_custom_emails_order_actions' ), PHP_INT_MAX, 1 );
37
+ }
38
+ }
39
+ }
40
+ }
41
+
42
+ /**
43
+ * do_custom_emails_order_actions.
44
+ *
45
+ * @version 3.2.0
46
+ * @since 3.2.0
47
+ */
48
+ function do_custom_emails_order_actions( $order ) {
49
+ $booster_action_prefix = 'woocommerce_order_action_' . 'wcj_send_email_custom' . '_';
50
+ $_current_filter = current_filter();
51
+ if ( substr( $_current_filter, 0, strlen( $booster_action_prefix ) ) === $booster_action_prefix ) {
52
+ $email_nr = substr( $_current_filter, strlen( $booster_action_prefix ) );
53
+ WC()->payment_gateways();
54
+ WC()->shipping();
55
+ WC()->mailer()->emails[ 'WC_Email_WCJ_Custom_' . $email_nr ]->trigger( $order->get_id(), $order );
56
+ $order->add_order_note(
57
+ sprintf( __( 'Booster: Emails: %s manually sent.', 'woocommerce-jetpack' ),
58
+ get_option( 'wcj_emails_custom_emails_admin_title_' . $email_nr, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $email_nr ) ),
59
+ false,
60
+ true
61
+ );
62
+ }
63
+ }
64
+
65
+ /**
66
+ * add_custom_emails_order_actions.
67
+ *
68
+ * @version 3.2.0
69
+ * @since 3.2.0
70
+ * @todo (maybe) add "Add Custom Email(s) to Order Actions" option (in WC >= 3.2.0); same to `woocommerce_order_action_`
71
+ */
72
+ function add_custom_emails_order_actions( $actions ) {
73
+ for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_emails_custom_emails_total_number', 1 ) ); $i++ ) {
74
+ $actions[ 'wcj_send_email_custom' . '_' . $i ] = sprintf( apply_filters( 'wcj_emails_custom_emails_order_action_text',
75
+ __( 'Booster: Send Email: %s', 'woocommerce-jetpack' ), $i ),
76
+ get_option( 'wcj_emails_custom_emails_admin_title_' . $i, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $i )
77
+ );
78
  }
79
+ return $actions;
80
  }
81
 
82
  /**
includes/class-wcj-multicurrency.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Multicurrency (Currency Switcher)
4
  *
5
- * @version 3.1.2
6
  * @since 2.4.3
7
  * @author Algoritmika Ltd.
8
  */
@@ -303,35 +303,14 @@ class WCJ_Multicurrency extends WCJ_Module {
303
  /**
304
  * change_price_shipping.
305
  *
306
- * @version 3.1.2
307
  */
308
  function change_price_shipping( $package_rates, $package ) {
309
  if ( $this->do_revert() ) {
310
  return $package_rates;
311
  }
312
  $currency_exchange_rate = $this->get_currency_exchange_rate( $this->get_current_currency_code() );
313
- $modified_package_rates = array();
314
- $is_wc_version_at_least_3_2 = version_compare( WCJ_WC_VERSION, '3.2.0', '>=' );
315
- foreach ( $package_rates as $id => $package_rate ) {
316
- if ( 1 != $currency_exchange_rate && isset( $package_rate->cost ) ) {
317
- $package_rate->cost = $package_rate->cost * $currency_exchange_rate;
318
- if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
319
- if ( $is_wc_version_at_least_3_2 ) {
320
- $rate_taxes = $package_rate->taxes;
321
- foreach ( $rate_taxes as &$tax ) {
322
- $tax *= $currency_exchange_rate;
323
- }
324
- $package_rate->taxes = $rate_taxes;
325
- } else {
326
- foreach ( $package_rate->taxes as $tax_id => $tax ) {
327
- $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $currency_exchange_rate;
328
- }
329
- }
330
- }
331
- }
332
- $modified_package_rates[ $id ] = $package_rate;
333
- }
334
- return $modified_package_rates;
335
  }
336
 
337
  }
2
  /**
3
  * Booster for WooCommerce - Module - Multicurrency (Currency Switcher)
4
  *
5
+ * @version 3.2.0
6
  * @since 2.4.3
7
  * @author Algoritmika Ltd.
8
  */
303
  /**
304
  * change_price_shipping.
305
  *
306
+ * @version 3.2.0
307
  */
308
  function change_price_shipping( $package_rates, $package ) {
309
  if ( $this->do_revert() ) {
310
  return $package_rates;
311
  }
312
  $currency_exchange_rate = $this->get_currency_exchange_rate( $this->get_current_currency_code() );
313
+ return wcj_change_price_shipping_package_rates( $package_rates, $currency_exchange_rate );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  }
315
 
316
  }
includes/class-wcj-order-numbers.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Order Numbers
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -222,9 +222,10 @@ class WCJ_Order_Numbers extends WCJ_Module {
222
  /**
223
  * Renumerate orders function.
224
  *
225
- * @version 3.1.0
226
  * @todo renumerate in date range only
227
- * @todo (maybe) `orderby` set to `ID`
 
228
  */
229
  function renumerate_orders() {
230
  $offset = 0;
@@ -234,8 +235,8 @@ class WCJ_Order_Numbers extends WCJ_Module {
234
  'post_type' => 'shop_order',
235
  'post_status' => 'any',
236
  'posts_per_page' => $block_size,
237
- 'orderby' => 'date',
238
- 'order' => 'ASC',
239
  'offset' => $offset,
240
  'fields' => 'ids',
241
  );
2
  /**
3
  * Booster for WooCommerce - Module - Order Numbers
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
222
  /**
223
  * Renumerate orders function.
224
  *
225
+ * @version 3.2.0
226
  * @todo renumerate in date range only
227
+ * @todo (maybe) selectable `post_status`
228
+ * @todo (maybe) set default value for `wcj_order_numbers_renumerate_tool_orderby` to `ID` (instead of `date`)
229
  */
230
  function renumerate_orders() {
231
  $offset = 0;
235
  'post_type' => 'shop_order',
236
  'post_status' => 'any',
237
  'posts_per_page' => $block_size,
238
+ 'orderby' => get_option( 'wcj_order_numbers_renumerate_tool_orderby', 'date' ),
239
+ 'order' => get_option( 'wcj_order_numbers_renumerate_tool_order', 'ASC' ),
240
  'offset' => $offset,
241
  'fields' => 'ids',
242
  );
includes/class-wcj-orders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Orders
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_Orders extends WCJ_Module {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 2.9.0
19
  */
20
  function __construct() {
21
 
@@ -74,6 +74,119 @@ class WCJ_Orders extends WCJ_Module {
74
  // Maybe make sortable custom columns
75
  add_filter( 'manage_edit-shop_order_sortable_columns', array( $this, 'shop_order_sortable_columns' ) );
76
  add_action( 'pre_get_posts', array( $this, 'shop_order_pre_get_posts_order_by_column' ), 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  }
78
  }
79
 
2
  /**
3
  * Booster for WooCommerce - Module - Orders
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.0
19
  */
20
  function __construct() {
21
 
74
  // Maybe make sortable custom columns
75
  add_filter( 'manage_edit-shop_order_sortable_columns', array( $this, 'shop_order_sortable_columns' ) );
76
  add_action( 'pre_get_posts', array( $this, 'shop_order_pre_get_posts_order_by_column' ), 1 );
77
+
78
+ // Bulk Regenerate Download Permissions
79
+ if ( 'yes' === apply_filters( 'booster_get_option', 'no', get_option( 'wcj_order_bulk_regenerate_download_permissions_enabled', 'no' ) ) ) {
80
+ // Actions
81
+ if ( 'yes' === get_option( 'wcj_order_bulk_regenerate_download_permissions_actions', 'no' ) ) {
82
+ add_filter( 'bulk_actions-edit-shop_order', array( $this, 'register_bulk_actions_regenerate_download_permissions' ), PHP_INT_MAX );
83
+ add_filter( 'handle_bulk_actions-edit-shop_order', array( $this, 'handle_bulk_actions_regenerate_download_permissions' ), 10, 3 );
84
+ }
85
+ // All orders
86
+ add_action( 'woojetpack_after_settings_save', array( $this, 'maybe_bulk_regenerate_download_permissions_all_orders' ) );
87
+ // Admin notices
88
+ add_filter( 'admin_notices', array( $this, 'admin_notice_regenerate_download_permissions' ) );
89
+ }
90
+
91
+ }
92
+ }
93
+
94
+ /**
95
+ * handle_bulk_actions_regenerate_download_permissions.
96
+ *
97
+ * @version 3.2.0
98
+ * @since 3.2.0
99
+ * @see https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/
100
+ * @todo (maybe) "bulk actions" for for WP < 4.7
101
+ */
102
+ function handle_bulk_actions_regenerate_download_permissions( $redirect_to, $doaction, $post_ids ) {
103
+ if ( $doaction !== 'wcj_regenerate_download_permissions' ) {
104
+ return $redirect_to;
105
+ }
106
+ $data_store = WC_Data_Store::load( 'customer-download' );
107
+ foreach ( $post_ids as $post_id ) {
108
+ $data_store->delete_by_order_id( $post_id );
109
+ wc_downloadable_product_permissions( $post_id, true );
110
+ }
111
+ $redirect_to = add_query_arg( 'wcj_bulk_regenerated_download_permissions', count( $post_ids ), $redirect_to );
112
+ return $redirect_to;
113
+ }
114
+
115
+ /**
116
+ * register_bulk_actions_regenerate_download_permissions.
117
+ *
118
+ * @version 3.2.0
119
+ * @since 3.2.0
120
+ */
121
+ function register_bulk_actions_regenerate_download_permissions( $bulk_actions ) {
122
+ $bulk_actions['wcj_regenerate_download_permissions'] = __( 'Regenerate download permissions', 'woocommerce-jetpack' );
123
+ return $bulk_actions;
124
+ }
125
+
126
+ /**
127
+ * admin_notice_regenerate_download_permissions.
128
+ *
129
+ * @version 3.2.0
130
+ * @since 3.2.0
131
+ */
132
+ function admin_notice_regenerate_download_permissions() {
133
+ if ( ! empty( $_REQUEST['wcj_bulk_regenerated_download_permissions'] ) ) {
134
+ $orders_count = intval( $_REQUEST['wcj_bulk_regenerated_download_permissions'] );
135
+ $message = sprintf(
136
+ _n( 'Download permissions regenerated for %s order.', 'Download permissions regenerated for %s orders.', $orders_count, 'woocommerce-jetpack' ),
137
+ '<strong>' . $orders_count . '</strong>'
138
+ );
139
+ echo '<div class="notice notice-success is-dismissible"><p>' . $message . '</p></div>';
140
+ }
141
+ }
142
+
143
+ /**
144
+ * bulk_regenerate_download_permissions_all_orders.
145
+ *
146
+ * @version 3.2.0
147
+ * @since 3.2.0
148
+ */
149
+ function bulk_regenerate_download_permissions_all_orders() {
150
+ $data_store = WC_Data_Store::load( 'customer-download' );
151
+ $block_size = 512;
152
+ $offset = 0;
153
+ $total_orders = 0;
154
+ while( true ) {
155
+ $args = array(
156
+ 'post_type' => 'shop_order',
157
+ 'post_status' => 'any',
158
+ 'posts_per_page' => $block_size,
159
+ 'offset' => $offset,
160
+ 'orderby' => 'ID',
161
+ 'order' => 'DESC',
162
+ 'fields' => 'ids',
163
+ );
164
+ $loop = new WP_Query( $args );
165
+ if ( ! $loop->have_posts() ) {
166
+ break;
167
+ }
168
+ foreach ( $loop->posts as $post_id ) {
169
+ $data_store->delete_by_order_id( $post_id );
170
+ wc_downloadable_product_permissions( $post_id, true );
171
+ $total_orders++;
172
+ }
173
+ $offset += $block_size;
174
+ }
175
+ return $total_orders;
176
+ }
177
+
178
+ /**
179
+ * maybe_bulk_regenerate_download_permissions_all_orders.
180
+ *
181
+ * @version 3.2.0
182
+ * @since 3.2.0
183
+ */
184
+ function maybe_bulk_regenerate_download_permissions_all_orders() {
185
+ if ( 'yes' === get_option( 'wcj_order_bulk_regenerate_download_permissions_all_orders', 'no' ) ) {
186
+ update_option( 'wcj_order_bulk_regenerate_download_permissions_all_orders', 'no' );
187
+ $total_orders = $this->bulk_regenerate_download_permissions_all_orders();
188
+ wp_safe_redirect( add_query_arg( 'wcj_bulk_regenerated_download_permissions', $total_orders ) );
189
+ exit;
190
  }
191
  }
192
 
includes/class-wcj-payment-gateways-currency.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Gateways Currency
4
  *
5
- * @version 3.0.0
6
  * @since 2.3.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -59,7 +59,7 @@ class WCJ_Payment_Gateways_Currency extends WCJ_Module {
59
  /**
60
  * change_shipping_price_by_gateway.
61
  *
62
- * @version 2.4.8
63
  * @since 2.4.8
64
  */
65
  function change_shipping_price_by_gateway( $package_rates, $package ) {
@@ -68,19 +68,7 @@ class WCJ_Payment_Gateways_Currency extends WCJ_Module {
68
  $current_gateway = $woocommerce->session->chosen_payment_method;
69
  if ( '' != $current_gateway ) {
70
  $gateway_currency_exchange_rate = get_option( 'wcj_gateways_currency_exchange_rate_' . $current_gateway );
71
- $modified_package_rates = array();
72
- foreach ( $package_rates as $id => $package_rate ) {
73
- if ( 1 != $gateway_currency_exchange_rate && isset( $package_rate->cost ) ) {
74
- $package_rate->cost = $package_rate->cost * $gateway_currency_exchange_rate;
75
- if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
76
- foreach ( $package_rate->taxes as $tax_id => $tax ) {
77
- $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $gateway_currency_exchange_rate;
78
- }
79
- }
80
- }
81
- $modified_package_rates[ $id ] = $package_rate;
82
- }
83
- return $modified_package_rates;
84
  }
85
  }
86
  return $package_rates;
2
  /**
3
  * Booster for WooCommerce - Module - Gateways Currency
4
  *
5
+ * @version 3.2.0
6
  * @since 2.3.0
7
  * @author Algoritmika Ltd.
8
  */
59
  /**
60
  * change_shipping_price_by_gateway.
61
  *
62
+ * @version 3.2.0
63
  * @since 2.4.8
64
  */
65
  function change_shipping_price_by_gateway( $package_rates, $package ) {
68
  $current_gateway = $woocommerce->session->chosen_payment_method;
69
  if ( '' != $current_gateway ) {
70
  $gateway_currency_exchange_rate = get_option( 'wcj_gateways_currency_exchange_rate_' . $current_gateway );
71
+ return wcj_change_price_shipping_package_rates( $package_rates, $gateway_currency_exchange_rate );
 
 
 
 
 
 
 
 
 
 
 
 
72
  }
73
  }
74
  return $package_rates;
includes/class-wcj-pdf-invoicing.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - PDF Invoicing
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 3.1.0
19
  */
20
  function __construct() {
21
 
@@ -51,18 +51,16 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
51
 
52
  $invoice_types = wcj_get_enabled_invoice_types();
53
  foreach ( $invoice_types as $invoice_type ) {
54
- $the_hook = get_option( 'wcj_invoicing_' . $invoice_type['id'] . '_create_on', 'woocommerce_new_order' );
55
- if ( 'disabled' != $the_hook && 'manual' != $the_hook && '' != $the_hook ) {
56
- add_action( $the_hook, array( $this, 'create_document_hook' ) );
57
- if ( 'woocommerce_new_order' === $the_hook ) {
58
- add_action( 'woocommerce_api_create_order', array( $this, 'create_document_hook' ) );
59
- add_action( 'woocommerce_cli_create_order', array( $this, 'create_document_hook' ) );
60
- add_action( 'kco_before_confirm_order', array( $this, 'create_document_hook' ) );
61
- add_action( 'woocommerce_checkout_order_processed', array( $this, 'create_document_hook' ) );
62
- }
63
- if ( 'wcj_pdf_invoicing_create_on_any_refund' === $the_hook ) {
64
- add_action( 'woocommerce_order_status_refunded', array( $this, 'create_document_hook' ) );
65
- add_action( 'woocommerce_order_partially_refunded_notification', array( $this, 'create_document_hook' ) );
66
  }
67
  }
68
  }
@@ -278,7 +276,7 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
278
  /**
279
  * create_document_hook.
280
  *
281
- * @version 2.7.0
282
  * @since 2.7.0
283
  */
284
  function create_document_hook( $order_id ) {
@@ -290,10 +288,12 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
290
  }
291
  $invoice_types = wcj_get_enabled_invoice_types();
292
  foreach ( $invoice_types as $invoice_type ) {
293
- $the_hook = get_option( 'wcj_invoicing_' . $invoice_type['id'] . '_create_on', 'woocommerce_new_order' );
294
- if ( 'disabled' != $the_hook && 'manual' != $the_hook && '' != $the_hook ) {
295
- if ( $current_filter === $the_hook ) {
296
- $this->create_document( $order_id, $invoice_type['id'] );
 
 
297
  }
298
  }
299
  }
2
  /**
3
  * Booster for WooCommerce - Module - PDF Invoicing
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.0
19
  */
20
  function __construct() {
21
 
51
 
52
  $invoice_types = wcj_get_enabled_invoice_types();
53
  foreach ( $invoice_types as $invoice_type ) {
54
+ $the_hooks = wcj_get_invoice_create_on( $invoice_type['id'] );
55
+ foreach ( $the_hooks as $the_hook ) {
56
+ if ( 'manual' != $the_hook ) {
57
+ add_action( $the_hook, array( $this, 'create_document_hook' ) );
58
+ if ( 'woocommerce_new_order' === $the_hook ) {
59
+ add_action( 'woocommerce_api_create_order', array( $this, 'create_document_hook' ) );
60
+ add_action( 'woocommerce_cli_create_order', array( $this, 'create_document_hook' ) );
61
+ add_action( 'kco_before_confirm_order', array( $this, 'create_document_hook' ) );
62
+ add_action( 'woocommerce_checkout_order_processed', array( $this, 'create_document_hook' ) );
63
+ }
 
 
64
  }
65
  }
66
  }
276
  /**
277
  * create_document_hook.
278
  *
279
+ * @version 3.2.0
280
  * @since 2.7.0
281
  */
282
  function create_document_hook( $order_id ) {
288
  }
289
  $invoice_types = wcj_get_enabled_invoice_types();
290
  foreach ( $invoice_types as $invoice_type ) {
291
+ $the_hooks = wcj_get_invoice_create_on( $invoice_type['id'] );
292
+ foreach ( $the_hooks as $the_hook ) {
293
+ if ( 'manual' != $the_hook ) {
294
+ if ( $current_filter === $the_hook ) {
295
+ $this->create_document( $order_id, $invoice_type['id'] );
296
+ }
297
  }
298
  }
299
  }
includes/class-wcj-price-by-user-role.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Price by User Role
4
  *
5
- * @version 2.9.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  * @todo Fix "Make Empty Price" option for variable products
@@ -17,7 +17,7 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
17
  /**
18
  * Constructor.
19
  *
20
- * @version 2.8.0
21
  * @since 2.5.0
22
  */
23
  function __construct() {
@@ -36,6 +36,9 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
36
  if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
37
  if ( 'no' === get_option( 'wcj_price_by_user_role_for_bots_disabled', 'no' ) || ! wcj_is_bot() ) {
38
  wcj_add_change_price_hooks( $this, PHP_INT_MAX - 200 );
 
 
 
39
  }
40
  }
41
  add_filter( 'wcj_save_meta_box_value', array( $this, 'save_meta_box_value' ), PHP_INT_MAX, 3 );
@@ -43,6 +46,16 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
43
  }
44
  }
45
 
 
 
 
 
 
 
 
 
 
 
46
  /**
47
  * save_meta_box_value.
48
  *
@@ -106,26 +119,14 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
106
  /**
107
  * change_price_shipping.
108
  *
109
- * @version 2.7.0
110
  * @since 2.5.0
111
  */
112
  function change_price_shipping( $package_rates, $package ) {
113
  if ( 'yes' === get_option( 'wcj_price_by_user_role_shipping_enabled', 'no' ) ) {
114
  $current_user_role = wcj_get_current_user_first_role();
115
  $koef = get_option( 'wcj_price_by_user_role_' . $current_user_role, 1 );
116
- $modified_package_rates = array();
117
- foreach ( $package_rates as $id => $package_rate ) {
118
- if ( 1 != $koef && isset( $package_rate->cost ) ) {
119
- $package_rate->cost = $package_rate->cost * $koef;
120
- if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
121
- foreach ( $package_rate->taxes as $tax_id => $tax ) {
122
- $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $koef;
123
- }
124
- }
125
- }
126
- $modified_package_rates[ $id ] = $package_rate;
127
- }
128
- return $modified_package_rates;
129
  }
130
  return $package_rates;
131
  }
@@ -157,12 +158,13 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
157
  /**
158
  * change_price.
159
  *
160
- * @version 2.9.0
161
  * @since 2.5.0
162
  */
163
  function change_price( $price, $_product ) {
164
 
165
  $current_user_role = wcj_get_current_user_first_role();
 
166
 
167
  // Per product
168
  if ( 'yes' === get_option( 'wcj_price_by_user_role_per_product_enabled', 'yes' ) ) {
@@ -173,10 +175,17 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
173
  }
174
  if ( 'multiplier' === get_option( 'wcj_price_by_user_role_per_product_type', 'fixed' ) ) {
175
  if ( '' !== ( $multiplier_per_product = get_post_meta( $_product_id, '_' . 'wcj_price_by_user_role_multiplier_' . $current_user_role, true ) ) ) {
 
 
 
 
 
 
 
 
176
  return ( '' === $price ) ? $price : $price * $multiplier_per_product;
177
  }
178
  } elseif ( '' != ( $regular_price_per_product = get_post_meta( $_product_id, '_' . 'wcj_price_by_user_role_regular_price_' . $current_user_role, true ) ) ) {
179
- $_current_filter = current_filter();
180
  if ( in_array( $_current_filter, array(
181
  'woocommerce_get_price_including_tax',
182
  'woocommerce_get_price_excluding_tax'
@@ -208,7 +217,7 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
208
  }
209
  }
210
 
211
- // Maybe disable for_products on sale
212
  if ( 'yes' === get_option( 'wcj_price_by_user_role_disable_for_products_on_sale', 'no' ) ) {
213
  wcj_remove_change_price_hooks( $this, PHP_INT_MAX - 200 );
214
  if ( $_product && $_product->is_on_sale() ) {
@@ -219,6 +228,15 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
219
  }
220
  }
221
 
 
 
 
 
 
 
 
 
 
222
  // By category
223
  $categories = apply_filters( 'booster_get_option', '', get_option( 'wcj_price_by_user_role_categories', '' ) );
224
  if ( ! empty( $categories ) ) {
@@ -230,7 +248,8 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
230
  if ( 'yes' === get_option( 'wcj_price_by_user_role_cat_empty_price_' . $category . '_' . $current_user_role, 'no' ) ) {
231
  return '';
232
  }
233
- return ( '' === $price ) ? $price : $price * get_option( 'wcj_price_by_user_role_cat_' . $category . '_' . $current_user_role, 1 );
 
234
  }
235
  }
236
  }
@@ -252,7 +271,7 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
252
  /**
253
  * get_variation_prices_hash.
254
  *
255
- * @version 2.8.2
256
  * @since 2.5.0
257
  * @todo only hash categories that is relevant to the product
258
  */
@@ -265,6 +284,8 @@ class WCJ_Price_By_User_Role extends WCJ_Module {
265
  get_option( 'wcj_price_by_user_role_empty_price_' . $user_role, 'no' ),
266
  get_option( 'wcj_price_by_user_role_per_product_enabled', 'yes' ),
267
  get_option( 'wcj_price_by_user_role_per_product_type', 'fixed' ),
 
 
268
  $categories,
269
  );
270
  if ( ! empty( $categories ) ) {
2
  /**
3
  * Booster for WooCommerce - Module - Price by User Role
4
  *
5
+ * @version 3.2.0
6
  * @since 2.5.0
7
  * @author Algoritmika Ltd.
8
  * @todo Fix "Make Empty Price" option for variable products
17
  /**
18
  * Constructor.
19
  *
20
+ * @version 3.2.0
21
  * @since 2.5.0
22
  */
23
  function __construct() {
36
  if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
37
  if ( 'no' === get_option( 'wcj_price_by_user_role_for_bots_disabled', 'no' ) || ! wcj_is_bot() ) {
38
  wcj_add_change_price_hooks( $this, PHP_INT_MAX - 200 );
39
+ if ( ( $this->disable_for_regular_price = ( 'yes' === get_option( 'wcj_price_by_user_role_disable_for_regular_price', 'no' ) ) ) ) {
40
+ add_filter( 'woocommerce_product_is_on_sale', array( $this, 'maybe_make_on_sale' ), PHP_INT_MAX, 2 );
41
+ }
42
  }
43
  }
44
  add_filter( 'wcj_save_meta_box_value', array( $this, 'save_meta_box_value' ), PHP_INT_MAX, 3 );
46
  }
47
  }
48
 
49
+ /**
50
+ * maybe_make_on_sale.
51
+ *
52
+ * @version 3.2.0
53
+ * @since 3.2.0
54
+ */
55
+ function maybe_make_on_sale( $on_sale, $product ) {
56
+ return ( $product->get_price() < $product->get_regular_price() ? true : $on_sale );
57
+ }
58
+
59
  /**
60
  * save_meta_box_value.
61
  *
119
  /**
120
  * change_price_shipping.
121
  *
122
+ * @version 3.2.0
123
  * @since 2.5.0
124
  */
125
  function change_price_shipping( $package_rates, $package ) {
126
  if ( 'yes' === get_option( 'wcj_price_by_user_role_shipping_enabled', 'no' ) ) {
127
  $current_user_role = wcj_get_current_user_first_role();
128
  $koef = get_option( 'wcj_price_by_user_role_' . $current_user_role, 1 );
129
+ return wcj_change_price_shipping_package_rates( $package_rates, $koef );
 
 
 
 
 
 
 
 
 
 
 
 
130
  }
131
  return $package_rates;
132
  }
158
  /**
159
  * change_price.
160
  *
161
+ * @version 3.2.0
162
  * @since 2.5.0
163
  */
164
  function change_price( $price, $_product ) {
165
 
166
  $current_user_role = wcj_get_current_user_first_role();
167
+ $_current_filter = current_filter();
168
 
169
  // Per product
170
  if ( 'yes' === get_option( 'wcj_price_by_user_role_per_product_enabled', 'yes' ) ) {
175
  }
176
  if ( 'multiplier' === get_option( 'wcj_price_by_user_role_per_product_type', 'fixed' ) ) {
177
  if ( '' !== ( $multiplier_per_product = get_post_meta( $_product_id, '_' . 'wcj_price_by_user_role_multiplier_' . $current_user_role, true ) ) ) {
178
+ // Maybe disable for regular price hooks
179
+ if ( $this->disable_for_regular_price && in_array( $_current_filter, array(
180
+ WCJ_PRODUCT_GET_REGULAR_PRICE_FILTER,
181
+ 'woocommerce_variation_prices_regular_price',
182
+ 'woocommerce_product_variation_get_regular_price'
183
+ ) ) ) {
184
+ return $price;
185
+ }
186
  return ( '' === $price ) ? $price : $price * $multiplier_per_product;
187
  }
188
  } elseif ( '' != ( $regular_price_per_product = get_post_meta( $_product_id, '_' . 'wcj_price_by_user_role_regular_price_' . $current_user_role, true ) ) ) {
 
189
  if ( in_array( $_current_filter, array(
190
  'woocommerce_get_price_including_tax',
191
  'woocommerce_get_price_excluding_tax'
217
  }
218
  }
219
 
220
+ // Maybe disable for products on sale
221
  if ( 'yes' === get_option( 'wcj_price_by_user_role_disable_for_products_on_sale', 'no' ) ) {
222
  wcj_remove_change_price_hooks( $this, PHP_INT_MAX - 200 );
223
  if ( $_product && $_product->is_on_sale() ) {
228
  }
229
  }
230
 
231
+ // Maybe disable for regular price hooks
232
+ if ( $this->disable_for_regular_price && in_array( $_current_filter, array(
233
+ WCJ_PRODUCT_GET_REGULAR_PRICE_FILTER,
234
+ 'woocommerce_variation_prices_regular_price',
235
+ 'woocommerce_product_variation_get_regular_price'
236
+ ) ) ) {
237
+ return $price;
238
+ }
239
+
240
  // By category
241
  $categories = apply_filters( 'booster_get_option', '', get_option( 'wcj_price_by_user_role_categories', '' ) );
242
  if ( ! empty( $categories ) ) {
248
  if ( 'yes' === get_option( 'wcj_price_by_user_role_cat_empty_price_' . $category . '_' . $current_user_role, 'no' ) ) {
249
  return '';
250
  }
251
+ $koef_category = get_option( 'wcj_price_by_user_role_cat_' . $category . '_' . $current_user_role, 1 );
252
+ return ( '' === $price ) ? $price : $price * $koef_category;
253
  }
254
  }
255
  }
271
  /**
272
  * get_variation_prices_hash.
273
  *
274
+ * @version 3.2.0
275
  * @since 2.5.0
276
  * @todo only hash categories that is relevant to the product
277
  */
284
  get_option( 'wcj_price_by_user_role_empty_price_' . $user_role, 'no' ),
285
  get_option( 'wcj_price_by_user_role_per_product_enabled', 'yes' ),
286
  get_option( 'wcj_price_by_user_role_per_product_type', 'fixed' ),
287
+ get_option( 'wcj_price_by_user_role_disable_for_products_on_sale', 'no' ),
288
+ $this->disable_for_regular_price,
289
  $categories,
290
  );
291
  if ( ! empty( $categories ) ) {
includes/class-wcj-product-listings.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Product Listings
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_Product_Listings extends WCJ_Module {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 2.9.0
19
  */
20
  function __construct() {
21
  $this->id = 'product_listings';
@@ -38,6 +38,11 @@ class WCJ_Product_Listings extends WCJ_Module {
38
  // Tax Incl./Excl. by product/category
39
  add_filter( 'option_woocommerce_tax_display_shop', array( $this, 'tax_display' ), PHP_INT_MAX );
40
 
 
 
 
 
 
41
  // Admin list - custom columns
42
  if ( 'yes' === get_option( 'wcj_products_admin_list_custom_columns_enabled', 'no' ) ) {
43
  add_filter( 'manage_edit-product_columns', array( $this, 'add_product_columns' ), PHP_INT_MAX );
@@ -130,6 +135,24 @@ class WCJ_Product_Listings extends WCJ_Module {
130
  }
131
  }
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  /**
134
  * tax_display.
135
  *
2
  /**
3
  * Booster for WooCommerce - Module - Product Listings
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.0
19
  */
20
  function __construct() {
21
  $this->id = 'product_listings';
38
  // Tax Incl./Excl. by product/category
39
  add_filter( 'option_woocommerce_tax_display_shop', array( $this, 'tax_display' ), PHP_INT_MAX );
40
 
41
+ // Tax Incl./Excl. by user role
42
+ if ( 'yes' === get_option( 'wcj_product_listings_display_taxes_by_user_role_enabled', 'no' ) ) {
43
+ add_filter( 'option_woocommerce_tax_display_shop', array( $this, 'tax_display_by_user_role' ), PHP_INT_MAX );
44
+ }
45
+
46
  // Admin list - custom columns
47
  if ( 'yes' === get_option( 'wcj_products_admin_list_custom_columns_enabled', 'no' ) ) {
48
  add_filter( 'manage_edit-product_columns', array( $this, 'add_product_columns' ), PHP_INT_MAX );
135
  }
136
  }
137
 
138
+ /**
139
+ * tax_display_by_user_role.
140
+ *
141
+ * @version 3.2.0
142
+ * @since 3.2.0
143
+ */
144
+ function tax_display_by_user_role( $value ) {
145
+ if ( '' != ( $display_taxes_by_user_role_roles = get_option( 'wcj_product_listings_display_taxes_by_user_role_roles', '' ) ) ) {
146
+ $current_user_first_role = wcj_get_current_user_first_role();
147
+ if ( in_array( $current_user_first_role, $display_taxes_by_user_role_roles ) ) {
148
+ if ( 'no_changes' != ( $tax_display = get_option( 'wcj_product_listings_display_taxes_by_user_role_' . $current_user_first_role, 'no_changes' ) ) ) {
149
+ return $tax_display;
150
+ }
151
+ }
152
+ }
153
+ return $value;
154
+ }
155
+
156
  /**
157
  * tax_display.
158
  *
includes/class-wcj-shipping-by-products.php ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Module - Shipping by Products
4
+ *
5
+ * @version 3.2.0
6
+ * @since 3.2.0
7
+ * @author Algoritmika Ltd.
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
+
12
+ if ( ! class_exists( 'WCJ_Shipping_By_Products' ) ) :
13
+
14
+ class WCJ_Shipping_By_Products extends WCJ_Module_Shipping_By_Condition {
15
+
16
+ /**
17
+ * Constructor.
18
+ *
19
+ * @version 3.2.0
20
+ * @since 3.2.0
21
+ */
22
+ function __construct() {
23
+
24
+ $this->id = 'shipping_by_products';
25
+ $this->short_desc = __( 'Shipping Methods by Products', 'woocommerce-jetpack' );
26
+ $this->desc = __( 'Set products, product categories or tags to include/exclude for WooCommerce shipping methods to show up.', 'woocommerce-jetpack' );
27
+ $this->link_slug = 'woocommerce-shipping-methods-by-products';
28
+
29
+ $this->condition_options = array(
30
+ 'products' => array(
31
+ 'title' => __( 'Products', 'woocommerce-jetpack' ),
32
+ 'desc' => __( 'Shipping methods by <strong>products</strong>.', 'woocommerce-jetpack' ),
33
+ ),
34
+ 'product_cats' => array(
35
+ 'title' => __( 'Product Categories', 'woocommerce-jetpack' ),
36
+ 'desc' => __( 'Shipping methods by <strong>products categories</strong>.', 'woocommerce-jetpack' ),
37
+ ),
38
+ 'product_tags' => array(
39
+ 'title' => __( 'Product Tags', 'woocommerce-jetpack' ),
40
+ 'desc' => __( 'Shipping methods by <strong>products tags</strong>.', 'woocommerce-jetpack' ),
41
+ ),
42
+ );
43
+
44
+ parent::__construct();
45
+ }
46
+
47
+ /**
48
+ * check.
49
+ *
50
+ * @version 3.2.0
51
+ * @since 3.2.0
52
+ */
53
+ function check( $options_id, $products_or_cats_or_tags ) {
54
+ if ( ! isset( WC()->cart ) || WC()->cart->is_empty() ) {
55
+ return true;
56
+ }
57
+ foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) {
58
+ switch( $options_id ) {
59
+ case 'products':
60
+ if ( in_array( $values['product_id'], $products_or_cats_or_tags ) ) {
61
+ return true;
62
+ }
63
+ break;
64
+ case 'product_cats':
65
+ case 'product_tags':
66
+ $product_terms = get_the_terms( $values['product_id'], ( 'product_cats' === $options_id ? 'product_cat' : 'product_tag' ) );
67
+ if ( empty( $product_terms ) ) {
68
+ continue;
69
+ }
70
+ foreach( $product_terms as $product_term ) {
71
+ if ( in_array( $product_term->term_id, $products_or_cats_or_tags ) ) {
72
+ return true;
73
+ }
74
+ }
75
+ break;
76
+ }
77
+ }
78
+ return false;
79
+ }
80
+
81
+ /**
82
+ * get_condition_options.
83
+ *
84
+ * @version 3.2.0
85
+ * @since 3.2.0
86
+ */
87
+ function get_condition_options( $options_id ) {
88
+ switch( $options_id ) {
89
+ case 'products':
90
+ return wcj_get_products();
91
+ case 'product_cats':
92
+ return wcj_get_terms( 'product_cat' );
93
+ case 'product_tags':
94
+ return wcj_get_terms( 'product_tag' );
95
+ }
96
+ }
97
+
98
+ }
99
+
100
+ endif;
101
+
102
+ return new WCJ_Shipping_By_Products();
includes/class-wcj-shipping-by-user-role.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by User Role
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -11,49 +11,106 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
12
  if ( ! class_exists( 'WCJ_Shipping_By_User_Role' ) ) :
13
 
14
- class WCJ_Shipping_By_User_Role extends WCJ_Module {
15
 
16
  /**
17
  * Constructor.
18
  *
19
- * @version 2.8.0
20
  * @since 2.8.0
21
  */
22
  function __construct() {
23
 
24
  $this->id = 'shipping_by_user_role';
25
- $this->short_desc = __( 'Shipping Methods by User Role', 'woocommerce-jetpack' );
26
- $this->desc = __( 'Set user roles to include/exclude for WooCommerce shipping methods to show up.', 'woocommerce-jetpack' );
27
  $this->link_slug = 'woocommerce-shipping-methods-by-user-role';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  parent::__construct();
29
 
30
- if ( $this->is_enabled() ) {
31
- add_filter( 'woocommerce_package_rates', array( $this, 'available_shipping_methods' ), PHP_INT_MAX, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
  }
34
 
35
  /**
36
- * available_shipping_methods.
37
  *
38
- * @version 2.8.0
39
- * @since 2.8.0
40
- * @todo apply_filters( 'booster_get_option' )
41
  */
42
- function available_shipping_methods( $rates, $package ) {
43
- foreach ( $rates as $rate_key => $rate ) {
44
- $customer_role = wcj_get_current_user_first_role();
45
- $include_roles = get_option( 'wcj_shipping_user_roles_include_' . $rate->method_id, '' );
46
- if ( ! empty( $include_roles ) && ! in_array( $customer_role, $include_roles ) ) {
47
- unset( $rates[ $rate_key ] );
48
- continue;
49
- }
50
- $exclude_roles = get_option( 'wcj_shipping_user_roles_exclude_' . $rate->method_id, '' );
51
- if ( ! empty( $exclude_roles ) && in_array( $customer_role, $exclude_roles ) ) {
52
- unset( $rates[ $rate_key ] );
53
- continue;
54
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  }
56
- return $rates;
57
  }
58
 
59
  }
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by User Role
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
11
 
12
  if ( ! class_exists( 'WCJ_Shipping_By_User_Role' ) ) :
13
 
14
+ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
15
 
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 3.2.0
20
  * @since 2.8.0
21
  */
22
  function __construct() {
23
 
24
  $this->id = 'shipping_by_user_role';
25
+ $this->short_desc = __( 'Shipping Methods by Users', 'woocommerce-jetpack' );
26
+ $this->desc = __( 'Set user roles or membership plans to include/exclude for WooCommerce shipping methods to show up.', 'woocommerce-jetpack' );
27
  $this->link_slug = 'woocommerce-shipping-methods-by-user-role';
28
+
29
+ $this->condition_options = array(
30
+ 'user_roles' => array(
31
+ 'title' => __( 'User Roles', 'woocommerce-jetpack' ),
32
+ 'desc' => sprintf(
33
+ __( 'Custom roles can be added via "Add/Manage Custom Roles" tool in Booster\'s <a href="%s">General</a> module.', 'woocommerce-jetpack' ),
34
+ admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=emails_and_misc&section=general' )
35
+ ),
36
+ ),
37
+ 'user_membership' => array(
38
+ 'title' => __( 'User Membership Plans', 'woocommerce-jetpack' ),
39
+ 'desc' => sprintf(
40
+ __( 'This section requires <a target="_blank" href="%s">WooCommerce Memberships</a> plugin.', 'woocommerce-jetpack' ),
41
+ 'https://woocommerce.com/products/woocommerce-memberships/'
42
+ ),
43
+ ),
44
+ );
45
+
46
  parent::__construct();
47
 
48
+ }
49
+
50
+ /**
51
+ * check.
52
+ *
53
+ * @version 3.2.0
54
+ * @since 3.2.0
55
+ */
56
+ function check( $options_id, $user_roles_or_membership_plans ) {
57
+ switch( $options_id ) {
58
+ case 'user_roles':
59
+ if ( ! isset( $this->customer_role ) ) {
60
+ $this->customer_role = wcj_get_current_user_first_role();
61
+ }
62
+ return in_array( $this->customer_role, $user_roles_or_membership_plans );
63
+ case 'user_membership':
64
+ if ( ! isset( $this->user_id ) ) {
65
+ $this->user_id = get_current_user_id();
66
+ }
67
+ if ( ! function_exists( 'wc_memberships_is_user_active_member' ) ) {
68
+ return false;
69
+ }
70
+ foreach ( $user_roles_or_membership_plans as $membership_plan ) {
71
+ if ( wc_memberships_is_user_active_member( $this->user_id, $membership_plan ) ) {
72
+ return true;
73
+ }
74
+ }
75
+ return false;
76
  }
77
  }
78
 
79
  /**
80
+ * get_condition_options.
81
  *
82
+ * @version 3.2.0
83
+ * @since 3.2.0
 
84
  */
85
+ function get_condition_options( $options_id ) {
86
+ switch( $options_id ) {
87
+ case 'user_roles':
88
+ return wcj_get_user_roles_options();
89
+ case 'user_membership':
90
+ $membership_plans = array();
91
+ $block_size = 512;
92
+ $offset = 0;
93
+ while( true ) {
94
+ $args = array(
95
+ 'post_type' => 'wc_membership_plan',
96
+ 'post_status' => 'any',
97
+ 'posts_per_page' => $block_size,
98
+ 'offset' => $offset,
99
+ 'orderby' => 'title',
100
+ 'order' => 'ASC',
101
+ 'fields' => 'ids',
102
+ );
103
+ $loop = new WP_Query( $args );
104
+ if ( ! $loop->have_posts() ) {
105
+ break;
106
+ }
107
+ foreach ( $loop->posts as $post_id ) {
108
+ $membership_plans[ $post_id ] = get_the_title( $post_id );
109
+ }
110
+ $offset += $block_size;
111
+ }
112
+ return $membership_plans;
113
  }
 
114
  }
115
 
116
  }
includes/classes/class-wcj-module-shipping-by-condition.php ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Module - Shipping by Condition
4
+ *
5
+ * @version 3.2.0
6
+ * @since 3.2.0
7
+ * @author Algoritmika Ltd.
8
+ * @todo (maybe) `abstract class WCJ_Module_Shipping_By_Condition`
9
+ * @todo (maybe) add "Shipping Methods by Date/Time" module
10
+ */
11
+
12
+ if ( ! defined( 'ABSPATH' ) ) exit;
13
+
14
+ if ( ! class_exists( 'WCJ_Module_Shipping_By_Condition' ) ) :
15
+
16
+ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
17
+
18
+ /**
19
+ * Constructor.
20
+ *
21
+ * @version 3.2.0
22
+ * @since 3.2.0
23
+ */
24
+ function __construct( $type = 'module' ) {
25
+ parent::__construct( $type );
26
+ add_filter( 'wcj_' . $this->id . '_settings', array( $this, 'generate_settings' ) );
27
+ if ( $this->is_enabled() ) {
28
+ add_filter( 'woocommerce_package_rates', array( $this, 'available_shipping_methods' ), PHP_INT_MAX, 2 );
29
+ }
30
+ }
31
+
32
+ /**
33
+ * available_shipping_methods.
34
+ *
35
+ * @version 3.2.0
36
+ * @since 3.2.0
37
+ * @todo apply_filters( 'booster_get_option' )
38
+ */
39
+ function available_shipping_methods( $rates, $package ) {
40
+ foreach ( $rates as $rate_key => $rate ) {
41
+ foreach ( $this->condition_options as $options_id => $options_data ) {
42
+ if ( 'no' === get_option( 'wcj_shipping_by_' . $options_id . '_section_enabled', 'yes' ) ) {
43
+ continue;
44
+ }
45
+ $include = get_option( 'wcj_shipping_' . $options_id . '_include_' . $rate->method_id, '' );
46
+ if ( ! empty( $include ) && ! $this->check( $options_id, $include ) ) {
47
+ unset( $rates[ $rate_key ] );
48
+ break;
49
+ }
50
+ $exclude = get_option( 'wcj_shipping_' . $options_id . '_exclude_' . $rate->method_id, '' );
51
+ if ( ! empty( $exclude ) && $this->check( $options_id, $exclude ) ) {
52
+ unset( $rates[ $rate_key ] );
53
+ break;
54
+ }
55
+ }
56
+ }
57
+ return $rates;
58
+ }
59
+
60
+ /**
61
+ * generate_settings.
62
+ *
63
+ * @version 3.2.0
64
+ * @since 3.2.0
65
+ */
66
+ function generate_settings() {
67
+ $settings = array();
68
+ if ( ! function_exists( 'WC' ) ) {
69
+ return array();
70
+ }
71
+ foreach ( $this->condition_options as $options_id => $options_data ) {
72
+ $settings = array_merge( $settings, array(
73
+ array(
74
+ 'title' => sprintf( __( 'Shipping Methods by %s', 'woocommerce-jetpack' ), $options_data['title'] ),
75
+ 'type' => 'title',
76
+ 'desc' => __( 'Leave empty to disable.', 'woocommerce-jetpack' ) . ' ' . $options_data['desc'],
77
+ 'id' => 'wcj_shipping_by_' . $options_id . '_options',
78
+ ),
79
+ array(
80
+ 'title' => sprintf( __( 'Shipping Methods by %s', 'woocommerce-jetpack' ), $options_data['title'] ),
81
+ 'desc' => __( 'Enable section', 'woocommerce-jetpack' ),
82
+ 'id' => 'wcj_shipping_by_' . $options_id . '_section_enabled',
83
+ 'type' => 'checkbox',
84
+ 'default' => 'yes',
85
+ ),
86
+ ) );
87
+ foreach ( WC()->shipping()->load_shipping_methods() as $method ) {
88
+ if ( ! in_array( $method->id, array( 'flat_rate', 'local_pickup' ) ) ) {
89
+ $custom_attributes = apply_filters( 'booster_get_message', '', 'disabled' );
90
+ if ( '' == $custom_attributes ) {
91
+ $custom_attributes = array();
92
+ }
93
+ $desc_tip = apply_filters( 'booster_get_message', '', 'desc_no_link' );
94
+ } else {
95
+ $custom_attributes = array();
96
+ $desc_tip = '';
97
+ }
98
+ $settings = array_merge( $settings, array(
99
+ array(
100
+ 'title' => $method->get_method_title(),
101
+ 'desc_tip' => $desc_tip,
102
+ 'desc' => sprintf( __( 'Include %s', 'woocommerce-jetpack' ), $options_data['title'] ),
103
+ 'id' => 'wcj_shipping_' . $options_id . '_include_' . $method->id,
104
+ 'default' => '',
105
+ 'type' => 'multiselect',
106
+ 'class' => 'chosen_select',
107
+ 'css' => 'width: 450px;',
108
+ 'options' => $this->get_condition_options( $options_id ),
109
+ 'custom_attributes' => $custom_attributes,
110
+ ),
111
+ array(
112
+ 'desc_tip' => $desc_tip,
113
+ 'desc' => sprintf( __( 'Exclude %s', 'woocommerce-jetpack' ), $options_data['title'] ),
114
+ 'id' => 'wcj_shipping_' . $options_id . '_exclude_' . $method->id,
115
+ 'default' => '',
116
+ 'type' => 'multiselect',
117
+ 'class' => 'chosen_select',
118
+ 'css' => 'width: 450px;',
119
+ 'options' => $this->get_condition_options( $options_id ),
120
+ 'custom_attributes' => $custom_attributes,
121
+ ),
122
+ ) );
123
+ }
124
+ $settings = array_merge( $settings, array(
125
+ array(
126
+ 'type' => 'sectionend',
127
+ 'id' => 'wcj_shipping_by_' . $options_id . '_options',
128
+ ),
129
+ ) );
130
+ }
131
+ return $settings;
132
+ }
133
+
134
+ /**
135
+ * check.
136
+ *
137
+ * @version 3.2.0
138
+ * @since 3.2.0
139
+ */
140
+ function check( $options_id, $args ) {
141
+ return true;
142
+ }
143
+
144
+ /**
145
+ * get_condition_options.
146
+ *
147
+ * @version 3.2.0
148
+ * @since 3.2.0
149
+ */
150
+ function get_condition_options( $options_id ) {
151
+ return array();
152
+ }
153
+
154
+ }
155
+
156
+ endif;
includes/classes/class-wcj-module.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
- * @version 3.1.1
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -111,12 +111,31 @@ if ( ! class_exists( 'WCJ_Module' ) ) :
111
  /**
112
  * add_settings_from_file.
113
  *
114
- * @version 2.8.0
115
  * @since 2.8.0
116
  */
117
  function add_settings_from_file( $settings ) {
118
  $filename = wcj_plugin_path() . '/includes/settings/wcj-settings-' . str_replace( '_', '-', $this->id ) . '.php';
119
- return ( file_exists ( $filename ) ? require( $filename ) : $settings );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  }
121
 
122
  /*
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
+ * @version 3.2.0
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
111
  /**
112
  * add_settings_from_file.
113
  *
114
+ * @version 3.2.0
115
  * @since 2.8.0
116
  */
117
  function add_settings_from_file( $settings ) {
118
  $filename = wcj_plugin_path() . '/includes/settings/wcj-settings-' . str_replace( '_', '-', $this->id ) . '.php';
119
+ $settings = ( file_exists ( $filename ) ? require( $filename ) : $settings );
120
+ if ( ! WCJ_IS_WC_VERSION_BELOW_3_2_0 ) {
121
+ foreach ( $settings as &$setting ) {
122
+ if ( isset( $setting['type'] ) && 'select' === $setting['type'] ) {
123
+ if ( ! isset( $setting['class'] ) || '' === $setting['class'] ) {
124
+ $setting['class'] = 'wc-enhanced-select';
125
+ } else {
126
+ $setting['class'] .= ' ' . 'wc-enhanced-select';
127
+ }
128
+ }
129
+ if ( isset( $setting['type'] ) && 'text' === $setting['type'] && isset( $setting['class'] ) && 'widefat' === $setting['class'] ) {
130
+ if ( ! isset( $setting['css'] ) || '' === $setting['css'] ) {
131
+ $setting['css'] = 'width:100%;';
132
+ } else {
133
+ $setting['css'] .= ' ' . 'width:100%;';
134
+ }
135
+ }
136
+ }
137
+ }
138
+ return $settings;
139
  }
140
 
141
  /*
includes/classes/class-wcj-pdf-invoice.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce PDF Invoice
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -22,7 +22,7 @@ class WCJ_PDF_Invoice extends WCJ_Invoice {
22
  /**
23
  * prepare_pdf.
24
  *
25
- * @version 3.1.0
26
  */
27
  function prepare_pdf() {
28
 
@@ -63,8 +63,8 @@ class WCJ_PDF_Invoice extends WCJ_Invoice {
63
  if ( 'yes' === get_option( 'wcj_invoicing_' . $invoice_type . '_header_enabled', 'yes' ) ) {
64
  $the_logo = '';
65
  $the_logo_width_mm = 0;
66
- if ( '' != get_option( 'wcj_invoicing_' . $invoice_type . '_header_image', '' ) ) {
67
- $the_logo = parse_url( get_option( 'wcj_invoicing_' . $invoice_type . '_header_image', '' ), PHP_URL_PATH );
68
  $the_logo_width_mm = get_option( 'wcj_invoicing_' . $invoice_type . '_header_image_width_mm', 50 );
69
  }
70
  $pdf->SetHeaderData(
2
  /**
3
  * Booster for WooCommerce PDF Invoice
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
22
  /**
23
  * prepare_pdf.
24
  *
25
+ * @version 3.2.0
26
  */
27
  function prepare_pdf() {
28
 
63
  if ( 'yes' === get_option( 'wcj_invoicing_' . $invoice_type . '_header_enabled', 'yes' ) ) {
64
  $the_logo = '';
65
  $the_logo_width_mm = 0;
66
+ if ( '' != ( $header_image = do_shortcode( get_option( 'wcj_invoicing_' . $invoice_type . '_header_image', '' ) ) ) ) {
67
+ $the_logo = parse_url( $header_image, PHP_URL_PATH );
68
  $the_logo_width_mm = get_option( 'wcj_invoicing_' . $invoice_type . '_header_image_width_mm', 50 );
69
  }
70
  $pdf->SetHeaderData(
includes/constants/wcj-constants.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Constants
4
  *
5
- * @version 3.1.0
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -31,6 +31,17 @@ if ( ! defined( 'WCJ_IS_WC_VERSION_BELOW_3' ) ) {
31
  define( 'WCJ_IS_WC_VERSION_BELOW_3', version_compare( WCJ_WC_VERSION, '3.0.0', '<' ) );
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
34
  if ( ! defined( 'WCJ_PRODUCT_GET_PRICE_FILTER' ) ) {
35
  /**
36
  * Price filters - price.
2
  /**
3
  * Booster for WooCommerce Constants
4
  *
5
+ * @version 3.2.0
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
31
  define( 'WCJ_IS_WC_VERSION_BELOW_3', version_compare( WCJ_WC_VERSION, '3.0.0', '<' ) );
32
  }
33
 
34
+ if ( ! defined( 'WCJ_IS_WC_VERSION_BELOW_3_2_0' ) ) {
35
+ /**
36
+ * WooCommerce version - is below version 3.2.0.
37
+ *
38
+ * @version 3.2.0
39
+ * @since 3.2.0
40
+ * @author Algoritmika Ltd.
41
+ */
42
+ define( 'WCJ_IS_WC_VERSION_BELOW_3_2_0', version_compare( WCJ_WC_VERSION, '3.2.0', '<' ) );
43
+ }
44
+
45
  if ( ! defined( 'WCJ_PRODUCT_GET_PRICE_FILTER' ) ) {
46
  /**
47
  * Price filters - price.
includes/functions/wcj-country-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions - Country
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -57,8 +57,9 @@ if ( ! function_exists( 'wcj_get_european_union_countries_with_vat' ) ) {
57
  /**
58
  * wcj_get_european_union_countries_with_vat.
59
  *
60
- * @version 2.4.0
61
  * @return array
 
62
  */
63
  function wcj_get_european_union_countries_with_vat() {
64
  return array(
@@ -74,7 +75,7 @@ if ( ! function_exists( 'wcj_get_european_union_countries_with_vat' ) ) {
74
  'FI' => 24,
75
  'FR' => 20,
76
  'GB' => 20,
77
- 'GR' => 23,
78
  'HU' => 27,
79
  'HR' => 25,
80
  'IE' => 23,
@@ -86,13 +87,10 @@ if ( ! function_exists( 'wcj_get_european_union_countries_with_vat' ) ) {
86
  'NL' => 21,
87
  'PL' => 23,
88
  'PT' => 23,
89
- 'RO' => 20,//24,
90
  'SE' => 25,
91
  'SI' => 22,
92
  'SK' => 20,
93
-
94
- //'MC' => ,
95
- //'IM' => ,
96
  );
97
  }
98
  }
2
  /**
3
  * Booster for WooCommerce - Functions - Country
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
57
  /**
58
  * wcj_get_european_union_countries_with_vat.
59
  *
60
+ * @version 3.2.0
61
  * @return array
62
+ * @todo check `MC`, `IM`
63
  */
64
  function wcj_get_european_union_countries_with_vat() {
65
  return array(
75
  'FI' => 24,
76
  'FR' => 20,
77
  'GB' => 20,
78
+ 'GR' => 24, // 23
79
  'HU' => 27,
80
  'HR' => 25,
81
  'IE' => 23,
87
  'NL' => 21,
88
  'PL' => 23,
89
  'PT' => 23,
90
+ 'RO' => 19, // 20 // 24
91
  'SE' => 25,
92
  'SI' => 22,
93
  'SK' => 20,
 
 
 
94
  );
95
  }
96
  }
includes/functions/wcj-general-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -312,7 +312,7 @@ if ( ! function_exists( 'wcj_get_left_to_free_shipping' ) ) {
312
  /*
313
  * wcj_get_left_to_free_shipping.
314
  *
315
- * @version 2.5.8
316
  * @since 2.4.4
317
  * @return string
318
  */
@@ -321,8 +321,7 @@ if ( ! function_exists( 'wcj_get_left_to_free_shipping' ) ) {
321
  $content = __( '%left_to_free% left to free shipping', 'woocommerce-jetpack' );
322
  }
323
  $min_free_shipping_amount = 0;
324
- $current_wc_version = get_option( 'woocommerce_version', null );
325
- if ( version_compare( $current_wc_version, '2.6.0', '<' ) ) {
326
  $free_shipping = new WC_Shipping_Free_Shipping();
327
  if ( in_array( $free_shipping->requires, array( 'min_amount', 'either', 'both' ) ) ) {
328
  $min_free_shipping_amount = $free_shipping->min_amount;
@@ -356,7 +355,8 @@ if ( ! function_exists( 'wcj_get_left_to_free_shipping' ) ) {
356
  }
357
  if ( 0 != $min_free_shipping_amount ) {
358
  if ( isset( WC()->cart->cart_contents_total ) ) {
359
- $total = ( WC()->cart->prices_include_tax ) ? WC()->cart->cart_contents_total + array_sum( WC()->cart->taxes ) : WC()->cart->cart_contents_total;
 
360
  if ( $total >= $min_free_shipping_amount ) {
361
  return do_shortcode( get_option( 'wcj_shipping_left_to_free_info_content_reached', __( 'You have Free delivery', 'woocommerce-jetpack' ) ) );
362
  } else {
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
312
  /*
313
  * wcj_get_left_to_free_shipping.
314
  *
315
+ * @version 3.2.0
316
  * @since 2.4.4
317
  * @return string
318
  */
321
  $content = __( '%left_to_free% left to free shipping', 'woocommerce-jetpack' );
322
  }
323
  $min_free_shipping_amount = 0;
324
+ if ( version_compare( WCJ_WC_VERSION, '2.6.0', '<' ) ) {
 
325
  $free_shipping = new WC_Shipping_Free_Shipping();
326
  if ( in_array( $free_shipping->requires, array( 'min_amount', 'either', 'both' ) ) ) {
327
  $min_free_shipping_amount = $free_shipping->min_amount;
355
  }
356
  if ( 0 != $min_free_shipping_amount ) {
357
  if ( isset( WC()->cart->cart_contents_total ) ) {
358
+ $cart_taxes = ( WCJ_IS_WC_VERSION_BELOW_3_2_0 ? WC()->cart->taxes : WC()->cart->get_cart_contents_taxes() );
359
+ $total = ( WC()->cart->prices_include_tax ) ? WC()->cart->cart_contents_total + array_sum( $cart_taxes ) : WC()->cart->cart_contents_total;
360
  if ( $total >= $min_free_shipping_amount ) {
361
  return do_shortcode( get_option( 'wcj_shipping_left_to_free_info_content_reached', __( 'You have Free delivery', 'woocommerce-jetpack' ) ) );
362
  } else {
includes/functions/wcj-invoicing-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions - Invoicing
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -245,17 +245,51 @@ if ( ! function_exists( 'wcj_get_invoice_types' ) ) {
245
  }
246
  }
247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  if ( ! function_exists( 'wcj_get_enabled_invoice_types' ) ) {
249
  /*
250
  * wcj_get_enabled_invoice_types.
 
 
251
  */
252
  function wcj_get_enabled_invoice_types() {
253
  $invoice_types = wcj_get_invoice_types();
254
  $enabled_invoice_types = array();
255
  foreach ( $invoice_types as $k => $invoice_type ) {
256
- $z = ( 0 === $k ) ? get_option( 'wcj_invoicing_' . $invoice_type['id'] . '_create_on' ) : apply_filters( 'booster_get_option', 'disabled', get_option( 'wcj_invoicing_' . $invoice_type['id'] . '_create_on' ) );
257
- if ( 'disabled' === $z )
258
  continue;
 
259
  $enabled_invoice_types[] = $invoice_type;
260
  }
261
  return $enabled_invoice_types;
2
  /**
3
  * Booster for WooCommerce - Functions - Invoicing
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
245
  }
246
  }
247
 
248
+ if ( ! function_exists( 'wcj_get_invoice_create_on' ) ) {
249
+ /*
250
+ * wcj_get_invoice_create_on.
251
+ *
252
+ * @version 3.2.0
253
+ * @since 3.2.0
254
+ */
255
+ function wcj_get_invoice_create_on( $invoice_type ) {
256
+ $create_on = get_option( 'wcj_invoicing_' . $invoice_type . '_create_on', '' );
257
+ if ( empty( $create_on ) ) {
258
+ return array();
259
+ }
260
+ if ( ! is_array( $create_on ) ) {
261
+ // Backward compatibility with Booster version <= 3.1.3
262
+ if ( 'disabled' === $create_on ) {
263
+ update_option( 'wcj_invoicing_' . $invoice_type . '_create_on', '' );
264
+ return array();
265
+ } elseif ( 'wcj_pdf_invoicing_create_on_any_refund' === $create_on ) {
266
+ $create_on = array( 'woocommerce_order_status_refunded', 'woocommerce_order_partially_refunded_notification' );
267
+ update_option( 'wcj_invoicing_' . $invoice_type . '_create_on', $create_on );
268
+ return $create_on;
269
+ } else {
270
+ $create_on = array( $create_on );
271
+ update_option( 'wcj_invoicing_' . $invoice_type . '_create_on', $create_on );
272
+ return $create_on;
273
+ }
274
+ }
275
+ return $create_on;
276
+ }
277
+ }
278
+
279
  if ( ! function_exists( 'wcj_get_enabled_invoice_types' ) ) {
280
  /*
281
  * wcj_get_enabled_invoice_types.
282
+ *
283
+ * @version 3.2.0
284
  */
285
  function wcj_get_enabled_invoice_types() {
286
  $invoice_types = wcj_get_invoice_types();
287
  $enabled_invoice_types = array();
288
  foreach ( $invoice_types as $k => $invoice_type ) {
289
+ $z = ( 0 === $k ) ? wcj_get_invoice_create_on( $invoice_type['id'] ) : apply_filters( 'booster_get_option', '', wcj_get_invoice_create_on( $invoice_type['id'] ) );
290
+ if ( empty( $z ) ) {
291
  continue;
292
+ }
293
  $enabled_invoice_types[] = $invoice_type;
294
  }
295
  return $enabled_invoice_types;
includes/functions/wcj-price-currency-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions - Price and Currency
4
  *
5
- * @version 3.1.2
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -74,6 +74,38 @@ if ( ! function_exists( 'wcj_remove_change_price_hooks' ) ) {
74
  }
75
  }
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  if ( ! function_exists( 'wcj_get_currency_exchange_rate_product_base_currency' ) ) {
78
  /**
79
  * wcj_get_currency_exchange_rate_product_base_currency.
2
  /**
3
  * Booster for WooCommerce - Functions - Price and Currency
4
  *
5
+ * @version 3.2.0
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
74
  }
75
  }
76
 
77
+ if ( ! function_exists( 'wcj_change_price_shipping_package_rates' ) ) {
78
+ /**
79
+ * wcj_change_price_shipping_package_rates.
80
+ *
81
+ * @version 3.2.0
82
+ * @since 3.2.0
83
+ */
84
+ function wcj_change_price_shipping_package_rates( $package_rates, $multiplier ) {
85
+ $modified_package_rates = array();
86
+ foreach ( $package_rates as $id => $package_rate ) {
87
+ if ( 1 != $multiplier && isset( $package_rate->cost ) ) {
88
+ $package_rate->cost = $package_rate->cost * $multiplier;
89
+ if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
90
+ if ( ! WCJ_IS_WC_VERSION_BELOW_3_2_0 ) {
91
+ $rate_taxes = $package_rate->taxes;
92
+ foreach ( $rate_taxes as &$tax ) {
93
+ $tax *= $multiplier;
94
+ }
95
+ $package_rate->taxes = $rate_taxes;
96
+ } else {
97
+ foreach ( $package_rate->taxes as $tax_id => $tax ) {
98
+ $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $multiplier;
99
+ }
100
+ }
101
+ }
102
+ }
103
+ $modified_package_rates[ $id ] = $package_rate;
104
+ }
105
+ return $modified_package_rates;
106
+ }
107
+ }
108
+
109
  if ( ! function_exists( 'wcj_get_currency_exchange_rate_product_base_currency' ) ) {
110
  /**
111
  * wcj_get_currency_exchange_rate_product_base_currency.
includes/functions/wcj-product-functions.php CHANGED
@@ -62,7 +62,9 @@ if ( ! function_exists( 'wcj_get_product' ) ) {
62
  * wcj_get_product.
63
  */
64
  function wcj_get_product( $product_id = 0 ) {
65
- if ( 0 == $product_id ) $product_id = get_the_ID();
 
 
66
  $the_product = new WCJ_Product( $product_id );
67
  return $the_product;
68
  }
62
  * wcj_get_product.
63
  */
64
  function wcj_get_product( $product_id = 0 ) {
65
+ if ( 0 == $product_id ) {
66
+ $product_id = get_the_ID();
67
+ }
68
  $the_product = new WCJ_Product( $product_id );
69
  return $the_product;
70
  }
includes/js/wcj-checkout-custom-fields.js ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * wcj-checkout-custom-fields.
3
+ *
4
+ * @version 3.2.0
5
+ * @since 3.2.0
6
+ */
7
+
8
+ jQuery(document).ready(function() {
9
+ for (var i = 0, len = wcj_checkout_custom_fields.select2_fields.length; i < len; i++) {
10
+ jQuery("#"+wcj_checkout_custom_fields.select2_fields[i]).select2();
11
+ }
12
+ });
includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - PDF Invoicing - Report Tool
4
  *
5
- * @version 3.1.0
6
  * @since 2.2.1
7
  * @author Algoritmika Ltd.
8
  */
@@ -295,7 +295,7 @@ class WCJ_PDF_Invoicing_Report_Tool {
295
  /**
296
  * Invoices Report Data function.
297
  *
298
- * @version 3.1.0
299
  * @since 2.5.7
300
  */
301
  function get_invoices_report_data( $year, $month, $invoice_type_id ) {
@@ -310,6 +310,7 @@ class WCJ_PDF_Invoicing_Report_Tool {
310
  __( 'Order Taxes', 'woocommerce-jetpack' ),
311
  __( 'Order Total', 'woocommerce-jetpack' ),
312
  __( 'Order Currency', 'woocommerce-jetpack' ),
 
313
  __( 'Refunds', 'woocommerce-jetpack' ),
314
  );
315
 
@@ -382,6 +383,7 @@ class WCJ_PDF_Invoicing_Report_Tool {
382
  $order_tax_html,
383
  sprintf( '%.2f', $order_total ),
384
  wcj_get_order_currency( $the_order ),
 
385
  $the_order->get_total_refunded(),
386
  );
387
  }
2
  /**
3
  * Booster for WooCommerce - PDF Invoicing - Report Tool
4
  *
5
+ * @version 3.2.0
6
  * @since 2.2.1
7
  * @author Algoritmika Ltd.
8
  */
295
  /**
296
  * Invoices Report Data function.
297
  *
298
+ * @version 3.2.0
299
  * @since 2.5.7
300
  */
301
  function get_invoices_report_data( $year, $month, $invoice_type_id ) {
310
  __( 'Order Taxes', 'woocommerce-jetpack' ),
311
  __( 'Order Total', 'woocommerce-jetpack' ),
312
  __( 'Order Currency', 'woocommerce-jetpack' ),
313
+ __( 'Payment Gateway', 'woocommerce-jetpack' ),
314
  __( 'Refunds', 'woocommerce-jetpack' ),
315
  );
316
 
383
  $order_tax_html,
384
  sprintf( '%.2f', $order_total ),
385
  wcj_get_order_currency( $the_order ),
386
+ get_post_meta( $order_id, '_payment_method_title', true ),
387
  $the_order->get_total_refunded(),
388
  );
389
  }
includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - PDF Invoicing - Display
4
  *
5
- * @version 3.1.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -276,7 +276,7 @@ class WCJ_PDF_Invoicing_Display extends WCJ_Module {
276
  /**
277
  * create_invoices_meta_box.
278
  *
279
- * @version 3.1.0
280
  * @since 2.8.0
281
  */
282
  function create_invoices_meta_box() {
@@ -310,8 +310,8 @@ class WCJ_PDF_Invoicing_Display extends WCJ_Module {
310
  $actions = array( '<a class="wcj_need_confirmation" href="' . $the_url . '">' . $the_name . '</a>' );
311
  }
312
  $maybe_toolptip = '';
313
- $_hook = get_option( 'wcj_invoicing_' . $invoice_type['id'] . '_create_on', 'woocommerce_new_order' );
314
- if ( in_array( $_hook, array( 'woocommerce_order_partially_refunded_notification', 'wcj_pdf_invoicing_create_on_any_refund' ) ) ) {
315
  $maybe_toolptip = wc_help_tip( __( 'In case of partial refund, you need to reload the page to see created document in this meta box.', 'woocommerce-jetpack' ), true );
316
  }
317
  $table_data[] = array( '<span class="dashicons dashicons-media-default" style="color:' . $invoice_type['color'] . ';"></span>' . ' ' .
2
  /**
3
  * Booster for WooCommerce - PDF Invoicing - Display
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
276
  /**
277
  * create_invoices_meta_box.
278
  *
279
+ * @version 3.2.0
280
  * @since 2.8.0
281
  */
282
  function create_invoices_meta_box() {
310
  $actions = array( '<a class="wcj_need_confirmation" href="' . $the_url . '">' . $the_name . '</a>' );
311
  }
312
  $maybe_toolptip = '';
313
+ $_hooks = wcj_get_invoice_create_on( $invoice_type['id'] );
314
+ if ( in_array( 'woocommerce_order_partially_refunded_notification', $_hooks ) ) {
315
  $maybe_toolptip = wc_help_tip( __( 'In case of partial refund, you need to reload the page to see created document in this meta box.', 'woocommerce-jetpack' ), true );
316
  }
317
  $table_data[] = array( '<span class="dashicons dashicons-media-default" style="color:' . $invoice_type['color'] . ';"></span>' . ' ' .
includes/price-by-country/class-wcj-price-by-country-core.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Price by Country - Core
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -203,24 +203,12 @@ class WCJ_Price_by_Country_Core {
203
  /**
204
  * change_price_shipping.
205
  *
206
- * @version 2.7.0
207
  */
208
  function change_price_shipping( $package_rates, $package ) {
209
  if ( null != ( $group_id = $this->get_customer_country_group_id() ) ) {
210
  $country_exchange_rate = get_option( 'wcj_price_by_country_exchange_rate_group_' . $group_id, 1 );
211
- $modified_package_rates = array();
212
- foreach ( $package_rates as $id => $package_rate ) {
213
- if ( 1 != $country_exchange_rate && isset( $package_rate->cost ) ) {
214
- $package_rate->cost = $package_rate->cost * $country_exchange_rate;
215
- if ( isset( $package_rate->taxes ) && ! empty( $package_rate->taxes ) ) {
216
- foreach ( $package_rate->taxes as $tax_id => $tax ) {
217
- $package_rate->taxes[ $tax_id ] = $package_rate->taxes[ $tax_id ] * $country_exchange_rate;
218
- }
219
- }
220
- }
221
- $modified_package_rates[ $id ] = $package_rate;
222
- }
223
- return $modified_package_rates;
224
  } else {
225
  return $package_rates;
226
  }
2
  /**
3
  * Booster for WooCommerce - Price by Country - Core
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
203
  /**
204
  * change_price_shipping.
205
  *
206
+ * @version 3.2.0
207
  */
208
  function change_price_shipping( $package_rates, $package ) {
209
  if ( null != ( $group_id = $this->get_customer_country_group_id() ) ) {
210
  $country_exchange_rate = get_option( 'wcj_price_by_country_exchange_rate_group_' . $group_id, 1 );
211
+ return wcj_change_price_shipping_package_rates( $package_rates, $country_exchange_rate );
 
 
 
 
 
 
 
 
 
 
 
 
212
  } else {
213
  return $package_rates;
214
  }
includes/settings/wcj-settings-checkout-custom-fields.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Checkout Custom Fields
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -159,6 +159,13 @@ for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_che
159
  'type' => 'textarea',
160
  'css' => 'min-width:300px;height:150px;',
161
  ),
 
 
 
 
 
 
 
162
  array(
163
  'id' => 'wcj_checkout_custom_field_checkbox_yes_' . $i,
164
  'title' => __( 'Checkbox: Value for ON', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - Checkout Custom Fields
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
159
  'type' => 'textarea',
160
  'css' => 'min-width:300px;height:150px;',
161
  ),
162
+ array(
163
+ 'title' => __( 'Select: Use select2 Library', 'woocommerce-jetpack' ),
164
+ 'desc' => __( 'Enable', 'woocommerce-jetpack' ),
165
+ 'id' => 'wcj_checkout_custom_field_select_select2_' . $i,
166
+ 'default' => 'no',
167
+ 'type' => 'checkbox',
168
+ ),
169
  array(
170
  'id' => 'wcj_checkout_custom_field_checkbox_yes_' . $i,
171
  'title' => __( 'Checkbox: Value for ON', 'woocommerce-jetpack' ),
includes/settings/wcj-settings-currency-per-product.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Currency per Product
4
  *
5
- * @version 2.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -119,7 +119,7 @@ $settings = array(
119
  ),
120
  array(
121
  'title' => __( 'Currencies Options', 'woocommerce-jetpack' ),
122
- 'desc' => __( 'Exchange rates for currencies won\'t be used if "Cart and Checkout Behaviour" is set to one of "Leave product currency ..." options.', 'woocommerce-jetpack' ),
123
  'type' => 'title',
124
  'id' => 'wcj_currency_per_product_currencies_options',
125
  ),
2
  /**
3
  * Booster for WooCommerce - Settings - Currency per Product
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
119
  ),
120
  array(
121
  'title' => __( 'Currencies Options', 'woocommerce-jetpack' ),
122
+ 'desc' => __( 'Exchange rates for currencies won\'t be used for products if "Cart and Checkout Behaviour" is set to one of "Leave product currency ..." options. However it may be used for shipping price conversion.', 'woocommerce-jetpack' ),
123
  'type' => 'title',
124
  'id' => 'wcj_currency_per_product_currencies_options',
125
  ),
includes/settings/wcj-settings-order-numbers.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Order Numbers
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -109,4 +109,35 @@ return array(
109
  'type' => 'sectionend',
110
  'id' => 'wcj_order_numbers_options',
111
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  );
2
  /**
3
  * Booster for WooCommerce - Settings - Order Numbers
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
109
  'type' => 'sectionend',
110
  'id' => 'wcj_order_numbers_options',
111
  ),
112
+ array(
113
+ 'title' => __( 'Orders Renumerate Tool Options', 'woocommerce-jetpack' ),
114
+ 'type' => 'title',
115
+ 'id' => 'wcj_order_numbers_renumerate_tool_options',
116
+ ),
117
+ array(
118
+ 'title' => __( 'Sort by', 'woocommerce-jetpack' ),
119
+ 'id' => 'wcj_order_numbers_renumerate_tool_orderby',
120
+ 'default' => 'date',
121
+ 'type' => 'select',
122
+ 'options' => array(
123
+ 'ID' => __( 'ID', 'woocommerce-jetpack' ),
124
+ 'date' => __( 'Date', 'woocommerce-jetpack' ),
125
+ 'modified' => __( 'Last modified date', 'woocommerce-jetpack' ),
126
+ 'rand' => __( 'Random', 'woocommerce-jetpack' ),
127
+ ),
128
+ ),
129
+ array(
130
+ 'title' => __( 'Sort Ascending or Descending', 'woocommerce-jetpack' ),
131
+ 'id' => 'wcj_order_numbers_renumerate_tool_order',
132
+ 'default' => 'ASC',
133
+ 'type' => 'select',
134
+ 'options' => array(
135
+ 'ASC' => __( 'Ascending', 'woocommerce-jetpack' ),
136
+ 'DESC' => __( 'Descending', 'woocommerce-jetpack' ),
137
+ ),
138
+ ),
139
+ array(
140
+ 'type' => 'sectionend',
141
+ 'id' => 'wcj_order_numbers_renumerate_tool_options',
142
+ ),
143
  );
includes/settings/wcj-settings-orders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Settings - Orders
4
  *
5
- * @version 2.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -197,5 +197,41 @@ $settings = array_merge( $settings, array(
197
  'type' => 'sectionend',
198
  'id' => 'wcj_order_admin_list_columns_order_options',
199
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  ) );
201
  return $settings;
2
  /**
3
  * Booster for WooCommerce Settings - Orders
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
197
  'type' => 'sectionend',
198
  'id' => 'wcj_order_admin_list_columns_order_options',
199
  ),
200
+ array(
201
+ 'title' => __( 'Bulk Regenerate Download Permissions for Orders', 'woocommerce-jetpack' ),
202
+ 'type' => 'title',
203
+ 'id' => 'wcj_order_bulk_regenerate_download_permissions_options',
204
+ ),
205
+ array(
206
+ 'title' => __( 'Bulk Regenerate Download Permissions', 'woocommerce-jetpack' ),
207
+ 'desc_tip' => apply_filters( 'booster_get_message', '', 'desc' ),
208
+ 'desc' => '<strong>' . __( 'Enable section', 'woocommerce-jetpack' ) . '</strong>',
209
+ 'id' => 'wcj_order_bulk_regenerate_download_permissions_enabled',
210
+ 'default' => 'no',
211
+ 'type' => 'checkbox',
212
+ 'custom_attributes' => apply_filters( 'booster_get_message', '', 'disabled' ),
213
+ ),
214
+ array(
215
+ 'title' => __( 'Add Regenerate Download Permissions to Bulk Actions', 'woocommerce-jetpack' ),
216
+ 'desc_tip' => __( 'When enabled this will add "Regenerate download permissions" action to "Bulk Actions" select box on admin orders page.', 'woocommerce-jetpack' ) . ' ' . apply_filters( 'booster_get_message', '', 'desc' ),
217
+ 'desc' => __( 'Add', 'woocommerce-jetpack' ),
218
+ 'id' => 'wcj_order_bulk_regenerate_download_permissions_actions',
219
+ 'default' => 'no',
220
+ 'type' => 'checkbox',
221
+ 'custom_attributes' => apply_filters( 'booster_get_message', '', 'disabled' ),
222
+ ),
223
+ array(
224
+ 'title' => __( 'Regenerate Download Permissions for All Orders', 'woocommerce-jetpack' ),
225
+ 'desc_tip' => __( 'Check this box and press "Save changes" button to start regeneration. Please note that both module and current section must be enabled.', 'woocommerce-jetpack' ) . ' ' . apply_filters( 'booster_get_message', '', 'desc' ),
226
+ 'desc' => __( 'Regenerate', 'woocommerce-jetpack' ),
227
+ 'id' => 'wcj_order_bulk_regenerate_download_permissions_all_orders',
228
+ 'default' => 'no',
229
+ 'type' => 'checkbox',
230
+ 'custom_attributes' => apply_filters( 'booster_get_message', '', 'disabled' ),
231
+ ),
232
+ array(
233
+ 'type' => 'sectionend',
234
+ 'id' => 'wcj_order_bulk_regenerate_download_permissions_options',
235
+ ),
236
  ) );
237
  return $settings;
includes/settings/wcj-settings-pdf-invoicing-emails.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Email Options
4
  *
5
- * @version 3.1.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -13,7 +13,7 @@ $available_gateways = WC()->payment_gateways->payment_gateways();
13
  foreach ( $available_gateways as $key => $gateway ) {
14
  $available_gateways_options_array[ $key ] = $gateway->title;
15
  }
16
- $available_emails = array(
17
  'new_order' => __( 'Admin - New Order', 'woocommerce-jetpack' ),
18
  'cancelled_order' => __( 'Admin - Cancelled Order', 'woocommerce-jetpack' ),
19
  'failed_order' => __( 'Admin - Failed Order', 'woocommerce-jetpack' ),
@@ -31,6 +31,13 @@ if ( wcj_is_module_enabled( 'emails' ) ) {
31
  for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_emails_custom_emails_total_number', 1 ) ); $i++ ) {
32
  $available_emails[ 'wcj_custom' . '_' . $i ] = __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $i;
33
  }
 
 
 
 
 
 
 
34
  }
35
  $settings = array();
36
  $invoice_types = ( 'yes' === get_option( 'wcj_invoicing_hide_disabled_docs_settings', 'no' ) ) ? wcj_get_enabled_invoice_types() : wcj_get_invoice_types();
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Email Options
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
13
  foreach ( $available_gateways as $key => $gateway ) {
14
  $available_gateways_options_array[ $key ] = $gateway->title;
15
  }
16
+ /* $available_emails = array(
17
  'new_order' => __( 'Admin - New Order', 'woocommerce-jetpack' ),
18
  'cancelled_order' => __( 'Admin - Cancelled Order', 'woocommerce-jetpack' ),
19
  'failed_order' => __( 'Admin - Failed Order', 'woocommerce-jetpack' ),
31
  for ( $i = 1; $i <= apply_filters( 'booster_get_option', 1, get_option( 'wcj_emails_custom_emails_total_number', 1 ) ); $i++ ) {
32
  $available_emails[ 'wcj_custom' . '_' . $i ] = __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $i;
33
  }
34
+ } */
35
+ $available_emails = array();
36
+ $wc_emails = WC()->mailer()->get_emails();
37
+ foreach ( $wc_emails as $wc_email ) {
38
+ if ( isset( $wc_email->id ) && isset( $wc_email->title ) ) {
39
+ $available_emails[ $wc_email->id ] = $wc_email->title;
40
+ }
41
  }
42
  $settings = array();
43
  $invoice_types = ( 'yes' === get_option( 'wcj_invoicing_hide_disabled_docs_settings', 'no' ) ) ? wcj_get_enabled_invoice_types() : wcj_get_invoice_types();
includes/settings/wcj-settings-pdf-invoicing.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - General
4
  *
5
- * @version 3.1.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -24,14 +24,12 @@ foreach ( $order_statuses as $status => $desc ) {
24
  }
25
  $create_on_array = array_merge(
26
  array(
27
- 'disabled' => __( 'Disabled', 'woocommerce-jetpack' ),
28
  'woocommerce_new_order' => __( 'Create on New Order', 'woocommerce-jetpack' ),
29
  ),
30
  $status_change_hooks,
31
  array(
32
- 'wcj_pdf_invoicing_create_on_any_refund' => __( 'Create on Order Status Refunded and/or Order Partially Refunded', 'woocommerce-jetpack' ),
33
  'woocommerce_order_partially_refunded_notification' => __( 'Create on Order Partially Refunded', 'woocommerce-jetpack' ),
34
- 'manual' => __( 'Manual Only', 'woocommerce-jetpack' ),
35
  )
36
  );
37
  // Settings
@@ -49,12 +47,13 @@ foreach ( $invoice_types as $k => $invoice_type ) {
49
  ),
50
  ) );
51
  }
 
52
  $settings = array_merge( $settings, array(
53
  array(
54
  'title' => $invoice_type['title'],
55
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_create_on',
56
- 'default' => 'disabled',
57
- 'type' => 'select',
58
  'class' => 'chosen_select',
59
  'options' => $create_on_array,
60
  'desc' => ( 0 === $k ) ? '' : apply_filters( 'booster_get_message', '', 'desc' ),
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - General
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
24
  }
25
  $create_on_array = array_merge(
26
  array(
 
27
  'woocommerce_new_order' => __( 'Create on New Order', 'woocommerce-jetpack' ),
28
  ),
29
  $status_change_hooks,
30
  array(
 
31
  'woocommerce_order_partially_refunded_notification' => __( 'Create on Order Partially Refunded', 'woocommerce-jetpack' ),
32
+ 'manual' => __( 'Manually', 'woocommerce-jetpack' ),
33
  )
34
  );
35
  // Settings
47
  ),
48
  ) );
49
  }
50
+ $create_on_value = wcj_get_invoice_create_on( $invoice_type['id'] ); // for conversion (i.e. backward compatibility with Booster version <= 3.1.3)
51
  $settings = array_merge( $settings, array(
52
  array(
53
  'title' => $invoice_type['title'],
54
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_create_on',
55
+ 'default' => '',
56
+ 'type' => 'multiselect',
57
  'class' => 'chosen_select',
58
  'options' => $create_on_array,
59
  'desc' => ( 0 === $k ) ? '' : apply_filters( 'booster_get_message', '', 'desc' ),
includes/settings/wcj-settings-price-by-user-role.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Price by User Role
4
  *
5
- * @version 2.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -50,6 +50,14 @@ $settings = array(
50
  'id' => 'wcj_price_by_user_role_shipping_enabled',
51
  'default' => 'no',
52
  ),
 
 
 
 
 
 
 
 
53
  array(
54
  'title' => __( 'Search Engine Bots', 'woocommerce-jetpack' ),
55
  'desc' => __( 'Disable Price by User Role for Bots', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - Price by User Role
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
50
  'id' => 'wcj_price_by_user_role_shipping_enabled',
51
  'default' => 'no',
52
  ),
53
+ array(
54
+ 'title' => __( 'Disable Price by User Role for Regular Price', 'woocommerce-jetpack' ),
55
+ 'desc_tip' => __( 'Disable price by user role for regular price when using multipliers (global or per product).', 'woocommerce-jetpack' ),
56
+ 'desc' => __( 'Disable', 'woocommerce-jetpack' ),
57
+ 'id' => 'wcj_price_by_user_role_disable_for_regular_price',
58
+ 'default' => 'no',
59
+ 'type' => 'checkbox',
60
+ ),
61
  array(
62
  'title' => __( 'Search Engine Bots', 'woocommerce-jetpack' ),
63
  'desc' => __( 'Disable Price by User Role for Bots', 'woocommerce-jetpack' ),
includes/settings/wcj-settings-product-listings.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Admin Tools
4
  *
5
- * @version 2.9.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -121,7 +121,7 @@ $settings = array(
121
  'id' => 'wcj_product_listings_archive_pages_options',
122
  ),
123
  array(
124
- 'title' => __( 'TAX Display Prices in the Shop', 'woocommerce-jetpack' ),
125
  'type' => 'title',
126
  'desc' => __( 'If you want to display part of your products including TAX and another part excluding TAX, you can set it here.', 'woocommerce-jetpack' ),
127
  'id' => 'wcj_product_listings_display_taxes_options',
@@ -170,6 +170,53 @@ $settings = array(
170
  'type' => 'sectionend',
171
  'id' => 'wcj_product_listings_display_taxes_options',
172
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  array(
174
  'title' => __( 'Admin Products List - Custom Columns', 'woocommerce-jetpack' ),
175
  'type' => 'title',
@@ -194,7 +241,7 @@ $settings = array(
194
  array( 'step' => '1', 'min' => '0', )
195
  ),
196
  ),
197
- );
198
  $total_number = apply_filters( 'booster_get_option', 1, get_option( 'wcj_products_admin_list_custom_columns_total_number', 1 ) );
199
  for ( $i = 1; $i <= $total_number; $i++ ) {
200
  $settings = array_merge( $settings, array(
2
  /**
3
  * Booster for WooCommerce - Settings - Admin Tools
4
  *
5
+ * @version 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
121
  'id' => 'wcj_product_listings_archive_pages_options',
122
  ),
123
  array(
124
+ 'title' => __( 'TAX Display in the Shop - by Product', 'woocommerce-jetpack' ),
125
  'type' => 'title',
126
  'desc' => __( 'If you want to display part of your products including TAX and another part excluding TAX, you can set it here.', 'woocommerce-jetpack' ),
127
  'id' => 'wcj_product_listings_display_taxes_options',
170
  'type' => 'sectionend',
171
  'id' => 'wcj_product_listings_display_taxes_options',
172
  ),
173
+ array(
174
+ 'title' => __( 'TAX Display in the Shop - by User Role', 'woocommerce-jetpack' ),
175
+ 'type' => 'title',
176
+ 'desc' => __( 'If you want to display prices including TAX or excluding TAX for different user roles, you can set it here.', 'woocommerce-jetpack' ),
177
+ 'id' => 'wcj_product_listings_display_taxes_by_user_role_options',
178
+ ),
179
+ array(
180
+ 'title' => __( 'TAX Display by User Role', 'woocommerce-jetpack' ),
181
+ 'desc' => __( 'Enable section', 'woocommerce-jetpack' ),
182
+ 'id' => 'wcj_product_listings_display_taxes_by_user_role_enabled',
183
+ 'type' => 'checkbox',
184
+ 'default' => 'no',
185
+ ),
186
+ array(
187
+ 'title' => __( 'User Roles', 'woocommerce-jetpack' ),
188
+ 'desc_tip' => __( 'Save changes after you change this option and new settings fields will appear.', 'woocommerce-jetpack' ),
189
+ 'desc' => '<br>' . sprintf( __( 'Select user roles that you want to change tax display for. For all remaining (i.e. not selected) user roles - default TAX display (set in %s) will be applied.', 'woocommerce-jetpack' ),
190
+ '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=tax' ) . '">' . __( 'WooCommerce > Settings > Tax', 'woocommerce-jetpack' ) . '</a>' ),
191
+ 'id' => 'wcj_product_listings_display_taxes_by_user_role_roles',
192
+ 'type' => 'multiselect',
193
+ 'class' => 'chosen_select',
194
+ 'default' => '',
195
+ 'options' => wcj_get_user_roles_options(),
196
+ ),
197
+ );
198
+ if ( '' != ( $display_taxes_by_user_role_roles = get_option( 'wcj_product_listings_display_taxes_by_user_role_roles', '' ) ) ) {
199
+ foreach ( $display_taxes_by_user_role_roles as $display_taxes_by_user_role_role ) {
200
+ $settings = array_merge( $settings, array(
201
+ array(
202
+ 'title' => sprintf( __( 'Role: %s', 'woocommerce-jetpack' ), $display_taxes_by_user_role_role ),
203
+ 'id' => 'wcj_product_listings_display_taxes_by_user_role_' . $display_taxes_by_user_role_role,
204
+ 'default' => 'no_changes',
205
+ 'type' => 'select',
206
+ 'options' => array(
207
+ 'no_changes' => __( 'Default TAX display (no changes)', 'woocommerce-jetpack' ),
208
+ 'incl' => __( 'Including tax', 'woocommerce-jetpack' ),
209
+ 'excl' => __( 'Excluding tax', 'woocommerce-jetpack' ),
210
+ ),
211
+ ),
212
+ ) );
213
+ }
214
+ }
215
+ $settings = array_merge( $settings, array(
216
+ array(
217
+ 'type' => 'sectionend',
218
+ 'id' => 'wcj_product_listings_display_taxes_by_user_role_options',
219
+ ),
220
  array(
221
  'title' => __( 'Admin Products List - Custom Columns', 'woocommerce-jetpack' ),
222
  'type' => 'title',
241
  array( 'step' => '1', 'min' => '0', )
242
  ),
243
  ),
244
+ ) );
245
  $total_number = apply_filters( 'booster_get_option', 1, get_option( 'wcj_products_admin_list_custom_columns_total_number', 1 ) );
246
  for ( $i = 1; $i <= $total_number; $i++ ) {
247
  $settings = array_merge( $settings, array(
includes/settings/wcj-settings-shipping-by-user-role.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- /**
3
- * Booster for WooCommerce Settings - Shipping by User Role
4
- *
5
- * @version 2.8.0
6
- * @since 2.8.0
7
- * @author Algoritmika Ltd.
8
- */
9
-
10
- if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
-
12
- $settings = array(
13
- array(
14
- 'title' => __( 'Shipping Methods', 'woocommerce-jetpack' ),
15
- 'type' => 'title',
16
- 'desc' => __( 'Leave empty to disable.', 'woocommerce-jetpack' ) . ' ' .
17
- sprintf(
18
- __( 'Custom roles can be added via "Add/Manage Custom Roles" tool in Booster\'s <a href="%s">General</a> module', 'woocommerce-jetpack' ),
19
- admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=emails_and_misc&section=general' )
20
- ),
21
- 'id' => 'wcj_shipping_by_user_role_methods_options',
22
- ),
23
- );
24
- $user_roles = wcj_get_user_roles_options();
25
- foreach ( WC()->shipping()->load_shipping_methods() as $method ) {
26
- if ( ! in_array( $method->id, array( 'flat_rate', 'local_pickup' ) ) ) {
27
- $custom_attributes = apply_filters( 'booster_get_message', '', 'disabled' );
28
- if ( '' == $custom_attributes ) {
29
- $custom_attributes = array();
30
- }
31
- $desc_tip = apply_filters( 'booster_get_message', '', 'desc_no_link' );
32
- } else {
33
- $custom_attributes = array();
34
- $desc_tip = '';
35
- }
36
- $settings = array_merge( $settings, array(
37
- array(
38
- 'title' => $method->get_method_title(),
39
- 'desc_tip' => $desc_tip,
40
- 'desc' => __( 'Include User Roles', 'woocommerce-jetpack' ),
41
- 'id' => 'wcj_shipping_user_roles_include_' . $method->id,
42
- 'default' => '',
43
- 'type' => 'multiselect',
44
- 'class' => 'chosen_select',
45
- 'css' => 'width: 450px;',
46
- 'options' => $user_roles,
47
- 'custom_attributes' => $custom_attributes,
48
- ),
49
- array(
50
- 'desc_tip' => $desc_tip,
51
- 'desc' => __( 'Exclude User Roles', 'woocommerce-jetpack' ),
52
- 'id' => 'wcj_shipping_user_roles_exclude_' . $method->id,
53
- 'default' => '',
54
- 'type' => 'multiselect',
55
- 'class' => 'chosen_select',
56
- 'css' => 'width: 450px;',
57
- 'options' => $user_roles,
58
- 'custom_attributes' => $custom_attributes,
59
- ),
60
- ) );
61
- }
62
- $settings = array_merge( $settings, array(
63
- array(
64
- 'type' => 'sectionend',
65
- 'id' => 'wcj_shipping_by_user_role_methods_options',
66
- ),
67
- ) );
68
- return $settings;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/shortcodes/class-wcj-order-items-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Order Items
4
  *
5
- * @version 3.1.2
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -16,32 +16,30 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
16
  * Constructor.
17
  */
18
  function __construct() {
19
-
20
  $this->the_shortcodes = array(
21
  'wcj_order_items_table',
22
  );
23
-
24
  parent::__construct();
25
  }
26
 
27
  /**
28
  * add_extra_atts.
29
  *
30
- * @version 3.1.2
31
  */
32
  function add_extra_atts( $atts ) {
33
  $modified_atts = array_merge( array(
34
  'order_id' => ( isset( $_GET['order_id'] ) ) ? $_GET['order_id'] : get_the_ID(),
35
  'hide_currency' => 'no',
36
  'table_class' => '',
37
- 'shipping_as_item' => '', // __( 'Shipping', 'woocommerce-jetpack' ),
38
- 'discount_as_item' => '', // __( 'Discount', 'woocommerce-jetpack' ),
39
  'columns' => '',
40
  'columns_titles' => '',
41
  'columns_styles' => '',
42
  'tax_percent_format' => '%.2f %%',
43
- 'item_image_width' => 0, // deprecated
44
- 'item_image_height' => 0, // deprecated
45
  'product_image_width' => 0,
46
  'product_image_height' => 0,
47
  'price_prefix' => '',
@@ -60,6 +58,7 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
60
  'multiply_profit' => 1,
61
  'refunded_items_table' => 'no',
62
  'hide_zero_prices' => 'no',
 
63
  ), $atts );
64
  return $modified_atts;
65
  }
@@ -71,7 +70,9 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
71
  */
72
  function init_atts( $atts ) {
73
  $this->the_order = ( 'shop_order' === get_post_type( $atts['order_id'] ) ) ? wc_get_order( $atts['order_id'] ) : null;
74
- if ( ! $this->the_order ) return false;
 
 
75
  if ( 0 != $atts['item_image_width'] ) {
76
  $atts['product_image_width'] = $atts['item_image_width'];
77
  }
@@ -89,8 +90,8 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
89
  */
90
  function extra_check( $atts ) {
91
  if ( '' != $atts['order_user_roles'] ) {
92
- $user_info = get_userdata( $this->the_order->customer_user );
93
- $user_roles = $user_info->roles;
94
  $user_roles_to_check = explode( ',', $atts['order_user_roles'] );
95
  foreach ( $user_roles_to_check as $user_role_to_check ) {
96
  if ( in_array( $user_role_to_check, $user_roles ) ) {
@@ -173,39 +174,6 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
173
  return $items;
174
  }
175
 
176
- /**
177
- * wcj_order_get_cart_discount_tax.
178
- */
179
- /* function wcj_order_get_cart_discount_tax() {
180
-
181
- $the_cart_discount = $this->the_order->get_cart_discount();
182
- $is_discount_taxable = ( $the_cart_discount > 0 ) ? true : false;
183
-
184
- if ( $is_discount_taxable ) {
185
-
186
- /* $order_total_incl_tax = $this->the_order->get_total();
187
- $order_total_tax = $this->the_order->get_total_tax(); *//*
188
-
189
- $order_total_incl_tax = 0;
190
- $order_total_tax = 0;
191
- $items = $this->the_order->get_items();
192
- foreach ( $items as $item ) {
193
- $order_total_incl_tax += $item['line_total'] + $item['line_tax'];
194
- $order_total_tax += $item['line_tax'];
195
- }
196
-
197
- if ( 0 != $order_total_incl_tax ) {
198
-
199
- $order_tax_rate = $order_total_tax / $order_total_incl_tax;
200
- $the_tax = $the_cart_discount * $order_tax_rate;
201
-
202
- return $the_tax;
203
- }
204
- }
205
-
206
- return false;
207
- } */
208
-
209
  /**
210
  * get_tax_class_name.
211
  *
@@ -277,23 +245,22 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
277
  /**
278
  * wcj_order_items_table.
279
  *
280
- * @version 3.1.2
 
281
  */
282
  function wcj_order_items_table( $atts, $content = '' ) {
283
 
284
- $html = '';
285
  $the_order = $this->the_order;
286
 
287
  // Get columns
288
  $columns = explode( '|', $atts['columns'] );
289
- if ( empty( $columns ) ) return '';
290
- $columns_total_number = count( $columns );
291
- // Check all possible args
 
 
292
  $columns_titles = ( '' == $atts['columns_titles'] ) ? array() : explode( '|', $atts['columns_titles'] );
293
  $columns_styles = ( '' == $atts['columns_styles'] ) ? array() : explode( '|', $atts['columns_styles'] );
294
- /* if ( $columns_total_number !== count( $columns_titles ) || $columns_total_number !== count( $columns_styles ) ) {
295
- return __( 'Please recheck that there is the same number of columns in "columns", "columns_titles" and "columns_styles" attributes.', 'woocommerce-jetpack' );
296
- } */
297
 
298
  // The Items
299
  $the_items = array();
@@ -310,8 +277,15 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
310
  $name = str_replace( '%shipping_method_name%', $the_order->get_shipping_method(), $atts['shipping_as_item'] );
311
  $total_shipping_tax_excl = $the_order->get_total_shipping();
312
  $shipping_tax = $the_order->get_shipping_tax();
313
-
314
- $the_items = $this->add_item( $the_items, array( 'name' => $name, 'qty' => 1, 'line_subtotal' => $total_shipping_tax_excl, 'line_total' => $total_shipping_tax_excl, 'line_tax' => $shipping_tax, 'line_subtotal_tax' => $shipping_tax, 'type' => 'shipping' ) );
 
 
 
 
 
 
 
315
  }
316
 
317
  // Discount as item
@@ -319,23 +293,24 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
319
  $name = $atts['discount_as_item'];
320
  $total_discount_tax_excl = $the_order->get_total_discount( true );
321
  $discount_tax = $the_order->get_total_discount( false ) - $total_discount_tax_excl;
322
-
323
- /* if ( false != ( $the_tax = $this->wcj_order_get_cart_discount_tax() ) ) {
324
- $total_discount_tax_excl -= $the_tax;
325
- $discount_tax += $the_tax;
326
- } */
327
-
328
  $total_discount_tax_excl *= -1;
329
- $discount_tax *= -1;
330
-
331
- $the_items = $this->add_item( $the_items, array( 'name' => $name, 'qty' => 1, 'line_subtotal' => $total_discount_tax_excl, 'line_total' => $total_discount_tax_excl, 'line_tax' => $discount_tax, 'line_subtotal_tax' => $discount_tax, 'type' => 'discount' ) );
 
 
 
 
 
 
 
332
  }
333
 
334
  // Items to data[]
335
  $data = array();
336
  $item_counter = 0;
337
  foreach ( $the_items as $item_id => $item ) {
338
- $item['is_custom'] = ( isset( $item['is_custom'] ) ) ? true : false; // $item['is_custom'] may be defined only if WCJ_IS_WC_VERSION_BELOW_3
339
  $the_product = ( true === $item['is_custom'] ) ? null : $the_order->get_product_from_item( $item );
340
  // Check if it's not excluded by category
341
  if ( '' != $atts['exclude_by_categories'] && $the_product ) {
@@ -350,7 +325,7 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
350
  }
351
  }
352
  // Check if it's not excluded by product attribute
353
- if ( $the_product && '' != $atts['exclude_by_attribute__name'] /* && '' != $atts['exclude_by_attribute__value'] */ ) {
354
  $product_attributes = $the_product->get_attributes();
355
  if ( isset( $product_attributes[ $atts['exclude_by_attribute__name'] ] ) ) {
356
  $product_attribute = $product_attributes[ $atts['exclude_by_attribute__name'] ];
@@ -365,298 +340,31 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
365
  }
366
  $item_counter++;
367
  // Columns
368
- foreach( $columns as $column ) {
369
- $column_param = '';
370
- if ( false !== ( $pos = strpos( $column, '=' ) ) ) {
371
- $column_param = substr( $column, $pos + 1 );
372
- $column = substr( $column, 0, $pos );
373
- }
374
- $cell_data = '';
375
- switch ( $column ) {
376
- case 'item_debug':
377
- case 'debug':
378
- $cell_data = print_r( $item, true );
379
- break;
380
- case 'item_regular_price':
381
- case 'product_regular_price':
382
- $cell_data = ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_regular_price(), $atts ) : '';
383
- break;
384
- case 'item_sale_price':
385
- case 'product_sale_price':
386
- $cell_data = ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_sale_price(), $atts ) : '';
387
- break;
388
- case 'item_regular_price_multiply_qty':
389
- case 'product_regular_price_multiply_qty':
390
- $cell_data = ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_regular_price() * $item['qty'], $atts ) : '';
391
- break;
392
- case 'item_sale_price_multiply_qty':
393
- case 'product_sale_price_multiply_qty':
394
- $cell_data = ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_sale_price() * $item['qty'], $atts ) : '';
395
- break;
396
- case 'product_categories':
397
- $cell_data = ( is_object( $the_product ) ) ?
398
- strip_tags( ( WCJ_IS_WC_VERSION_BELOW_3 ? $the_product->get_categories() : wc_get_product_category_list( $item['product_id'] ) ) ) :
399
- '';
400
- break;
401
- case 'item_tax_class':
402
- case 'tax_class':
403
- $cell_data = ( isset( $item['tax_class'] ) ) ? $this->get_tax_class_name( $item['tax_class'] ) : '';
404
- break;
405
- case 'item_number':
406
- $cell_data = $item_counter;
407
- break;
408
- case 'item_meta':
409
- $cell_data = wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, false, $the_product );
410
- break;
411
- case 'item_name':
412
- case 'product_name': // "product_" because of possible variation
413
- if ( true === $item['is_custom'] ) {
414
- $cell_data = $item['name'];
415
- } else {
416
- $the_item_title = $item['name'];
417
- // Variation (if needed)
418
- if ( 'yes' === $atts['add_variation_info_to_item_name'] && isset( $item['variation_id'] ) && 0 != $item['variation_id'] && ! in_array( 'item_variation', $columns ) ) {
419
- $the_item_title .= '<div style="' . $atts['style_item_name_variation'] . '">';
420
- if ( 'yes' === $atts['variation_as_metadata'] ) {
421
- $the_item_title .= wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, true, $the_product );
422
- } elseif ( is_object( $the_product ) && $the_product->is_type( 'variation' ) ) {
423
- $the_item_title .= str_replace( 'pa_', '', urldecode( wcj_get_product_formatted_variation( $the_product, true ) ) ); // todo - do we need pa_ replacement?
424
- }
425
- $the_item_title .= '</div>';
426
- }
427
- // "WooCommerce TM Extra Product Options" plugin options
428
- // todo - this will show options prices in shop's default currency only (must use 'price_per_currency' to show prices in order's currency).
429
- $tmcartepo_data = ( WCJ_IS_WC_VERSION_BELOW_3 ?
430
- ( isset( $item['tmcartepo_data'] ) ? maybe_unserialize( $item['tmcartepo_data'] ) : '' ) :
431
- $item->get_meta( '_tmcartepo_data' )
432
- );
433
- if ( ! empty( $tmcartepo_data ) ) {
434
- $options_prices = array();
435
- // $order_currency = wcj_get_order_currency( $the_order );
436
- foreach ( $tmcartepo_data as $option ) {
437
- /* if ( isset( $option['price_per_currency'][ $order_currency ] ) ) {
438
- $options_prices[] = $this->wcj_price_shortcode( $option['price_per_currency'][ $order_currency ], $atts );
439
- } */
440
- $option_info = '';
441
- if ( isset( $option['name'] ) && '' != $option['name'] ) {
442
- $option_info .= $option['name'] . ': ';
443
- }
444
- if ( isset( $option['value'] ) && '' != $option['value'] ) {
445
- $option_info .= $option['value'];
446
- }
447
- if ( isset( $option['price'] ) && 'yes' === $atts['wc_extra_product_options_show_price'] ) { // todo - wc_extra_product_options_show_price is temporary, until price_per_currency issue is solved
448
- $option_info .= ( $option['price'] > 0 ) ? ' +' . wc_price( $option['price'] ) : ' ' . wc_price( $option['price'] );
449
- }
450
- if ( '' != $option_info ) {
451
- $options_prices[] = $option_info;
452
- }
453
- }
454
- $the_item_title .= '<div style="' . $atts['style_item_name_variation'] . '">' . implode( '<br>', $options_prices ) . '</div>';
455
- }
456
- $cell_data = $the_item_title;
457
- }
458
- break;
459
- case 'item_product_input_fields':
460
- $cell_data = wcj_get_product_input_fields( $item );
461
- break;
462
- case 'item_product_addons':
463
- $cell_data = wcj_get_product_addons( $item, wcj_get_order_currency( $this->the_order ) );
464
- break;
465
- case 'item_key':
466
- if ( isset( $column_param ) && '' != $column_param && isset( $item[ $column_param ] ) ) {
467
- $maybe_unserialized_value = maybe_unserialize( $item[ $column_param ] );
468
- if ( is_array( $maybe_unserialized_value ) ) {
469
- $cell_data = isset( $maybe_unserialized_value['name'] ) ? $maybe_unserialized_value['name'] : '';
470
- } else {
471
- $cell_data = $maybe_unserialized_value;
472
- }
473
- } else {
474
- $cell_data = '';
475
- }
476
- break;
477
- case 'item_attribute':
478
- case 'product_attribute':
479
- if ( isset( $column_param ) && '' != $column_param && is_object( $the_product ) ) {
480
- $cell_data = $the_product->get_attribute( $column_param );
481
- if ( '' === $cell_data && $the_product->is_type( 'variation' ) ) {
482
- $parent_product = wc_get_product( $the_product->get_parent_id() );
483
- $cell_data = $parent_product->get_attribute( $column_param );
484
- }
485
- } else {
486
- $cell_data = '';
487
- }
488
- break;
489
- case 'item_excerpt':
490
- case 'product_excerpt':
491
- if ( true === $item['is_custom'] || ! isset( $item['product_id'] ) ) {
492
- $cell_data = '';
493
- } else {
494
- global $post;
495
- $post = get_post( $item['product_id'] );
496
- setup_postdata( $post );
497
- $the_excerpt = get_the_excerpt();
498
- wp_reset_postdata();
499
- $cell_data = $the_excerpt;
500
- }
501
- break;
502
- case 'item_short_description':
503
- case 'product_short_description':
504
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : ( WCJ_IS_WC_VERSION_BELOW_3 ? $the_product->post->post_excerpt : $the_product->get_short_description() );
505
- break;
506
- case 'item_variation':
507
- case 'product_variation':
508
- if ( 0 != $item['variation_id'] ) {
509
- if ( 'yes' === $atts['variation_as_metadata'] ) {
510
- $cell_data = wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, true, $the_product );
511
- } elseif ( is_object( $the_product ) && $the_product->is_type( 'variation' ) ) {
512
- $cell_data = str_replace( 'pa_', '', urldecode( wcj_get_product_formatted_variation( $the_product, true ) ) ); // todo - do we need pa_ replacement?
513
- }
514
- } else {
515
- $cell_data = '';
516
- }
517
- break;
518
- case 'item_thumbnail':
519
- case 'product_thumbnail':
520
- // $cell_data = $the_product->get_image();
521
- $image_id = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? 0 : $the_product->get_image_id();
522
- $image_src = ( 0 != $image_id ) ? wp_get_attachment_image_src( $image_id ) : wc_placeholder_img_src();
523
- if ( is_array( $image_src ) ) $image_src = $image_src[0];
524
- $maybe_width = ( 0 != $atts['product_image_width'] ) ? ' width="' . $atts['product_image_width'] . '"' : '';
525
- $maybe_height = ( 0 != $atts['product_image_height'] ) ? ' height="' . $atts['product_image_height'] . '"' : '';
526
- $cell_data = '<img src="' . $image_src . '"' . $maybe_width . $maybe_height . '>';
527
- break;
528
- case 'item_sku':
529
- case 'product_sku':
530
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_sku();
531
- break;
532
- case 'item_quantity':
533
- $cell_data = $atts['quantity_prefix'] . $item['qty'];
534
- break;
535
- case 'item_quantity_refunded':
536
- $cell_data = ( ! $item['is_custom'] && $item_id ? $this->the_order->get_qty_refunded_for_item( $item_id ) : '' );
537
- break;
538
- case 'item_quantity_excl_refunded':
539
- $cell_data = ( ! $item['is_custom'] && $item_id ? ( $item['qty'] + $this->the_order->get_qty_refunded_for_item( $item_id ) ) : '' );
540
- break;
541
- case 'item_total_refunded':
542
- $cell_data = ( ! $item['is_custom'] && $item_id ? $this->wcj_price_shortcode( $this->the_order->get_total_refunded_for_item( $item_id ), $atts ) : '' );
543
- break;
544
- case 'item_total_tax_excl':
545
- $cell_data = $this->wcj_price_shortcode( $the_order->get_item_total( $item, false, true ), $atts );
546
- break;
547
- case 'item_total_tax_incl':
548
- $cell_data = $this->wcj_price_shortcode( $the_order->get_item_total( $item, true, true ), $atts );
549
- break;
550
- case 'item_subtotal_tax_excl':
551
- $cell_data = $this->wcj_price_shortcode( $the_order->get_item_subtotal( $item, false, true ), $atts );
552
- break;
553
- case 'item_subtotal_tax_incl':
554
- $cell_data = $this->wcj_price_shortcode( $the_order->get_item_subtotal( $item, true, true ), $atts );
555
- break;
556
- case 'item_tax':
557
- $cell_data = $this->wcj_price_shortcode( $the_order->get_item_tax( $item, true ), $atts );
558
- break;
559
- case 'line_total_tax_excl':
560
- $line_total_tax_excl = $the_order->get_line_total( $item, false, true );
561
- $line_total_tax_excl = apply_filters( 'wcj_line_total_tax_excl', $line_total_tax_excl, $the_order );
562
- $cell_data = $this->wcj_price_shortcode( $line_total_tax_excl, $atts );
563
- break;
564
- case 'line_total_tax_incl':
565
- $cell_data = $this->wcj_price_shortcode( $the_order->get_line_total( $item, true, true ), $atts );
566
- break;
567
- case 'line_subtotal_tax_excl':
568
- $cell_data = $this->wcj_price_shortcode( $the_order->get_line_subtotal( $item, false, true ), $atts );
569
- break;
570
- case 'line_subtotal_tax_incl':
571
- $cell_data = $this->wcj_price_shortcode( $the_order->get_line_subtotal( $item, true, true ), $atts );
572
- break;
573
- case 'line_tax':
574
- $line_tax = $the_order->get_line_tax( $item );
575
- $line_tax = apply_filters( 'wcj_line_tax', $line_tax, $the_order );
576
- $cell_data = $this->wcj_price_shortcode( $line_tax, $atts );
577
- break;
578
- case 'line_subtax':
579
- $line_subtax = $the_order->get_line_subtotal( $item, true, false ) - $the_order->get_line_subtotal( $item, false, false );
580
- $cell_data = $this->wcj_price_shortcode( $line_subtax, $atts );
581
- break;
582
- case 'item_tax_percent':
583
- case 'line_tax_percent':
584
- $item_total = $the_order->get_item_total( $item, false, /* true */ false );
585
- $item_tax_percent = ( 0 != $item_total ) ? $the_order->get_item_tax( $item, false ) / $item_total * 100 : 0;
586
- $item_tax_percent = apply_filters( 'wcj_line_tax_percent', $item_tax_percent, $the_order );
587
- $cell_data = sprintf( $atts['tax_percent_format'], $item_tax_percent );
588
- /* $tax_labels = array();
589
- foreach ( $the_order->get_taxes() as $the_tax ) {
590
- $tax_labels[] = $the_tax['label'];
591
- }
592
- $cell_data = implode( ', ', $tax_labels ); */
593
- break;
594
- /* case 'line_tax_percent':
595
- $line_total = $the_order->get_line_total( $item, false, true );
596
- $line_tax_percent = ( 0 != $line_total ) ? $the_order->get_line_tax( $item ) / $line_total * 100 : 0;
597
- $line_tax_percent = apply_filters( 'wcj_line_tax_percent', $line_tax_percent, $the_order );
598
- $cell_data = sprintf( $atts['tax_percent_format'], $line_tax_percent );
599
- break; */
600
- case 'item_weight':
601
- case 'product_weight':
602
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_weight();
603
- break;
604
- case 'item_width':
605
- case 'product_width':
606
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_width();
607
- break;
608
- case 'item_height':
609
- case 'product_height':
610
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_height();
611
- break;
612
- case 'item_length':
613
- case 'product_length':
614
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_length();
615
- break;
616
- case 'product_cost':
617
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' :
618
- wc_price( $atts['multiply_cost'] * wc_get_product_purchase_price( $the_product->get_id() ) );
619
- break;
620
- case 'product_profit':
621
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' :
622
- wc_price( $atts['multiply_profit'] * ( $the_product->get_price() - wc_get_product_purchase_price( $the_product->get_id() ) ) );
623
- break;
624
- case 'line_cost':
625
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' :
626
- wc_price( $atts['multiply_cost'] * $item['qty'] * wc_get_product_purchase_price( $the_product->get_id() ) );
627
- break;
628
- case 'line_profit':
629
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' :
630
- wc_price( $atts['multiply_profit'] * $item['qty'] * ( $the_product->get_price() - wc_get_product_purchase_price( $the_product->get_id() ) ) );
631
- break;
632
- case 'product_id':
633
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ? '' : $the_product->get_id();
634
- break;
635
- case 'item_product_id':
636
- $cell_data = ( true === $item['is_custom'] ) ? '' : $item['product_id'];
637
- break;
638
- case 'product_meta':
639
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) || ! isset( $column_param ) || '' == $column_param ) ?
640
- '' : $the_product->get_meta( $column_param );
641
- case 'product_post_meta':
642
- $cell_data = ( true === $item['is_custom'] || ! isset( $column_param ) || '' == $column_param ) ?
643
- '' : get_post_meta( $item['product_id'], $column_param, true );
644
- case 'product_purchase_note':
645
- $cell_data = ( true === $item['is_custom'] || ! is_object( $the_product ) ) ?
646
- '' : $the_product->get_purchase_note();
647
- break;
648
- default:
649
- $cell_data = ''; // $column;
650
  }
651
- $data[ $item_counter ][] = apply_filters( 'wcj_pdf_invoicing_cell_data', $cell_data, array(
652
- 'column' => $column,
653
- 'column_param' => $column_param,
654
- 'item' => $item,
655
- 'item_id' => $item_id,
656
- 'item_counter' => $item_counter,
657
- 'product' => $the_product,
658
- 'order' => $this->the_order,
659
- ) );
660
  }
661
  }
662
 
@@ -664,6 +372,7 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
664
  return '';
665
  }
666
 
 
667
  $table_html_args = array(
668
  'table_class' => $atts['table_class'],
669
  'table_heading_type' => 'horizontal',
@@ -694,6 +403,283 @@ class WCJ_Order_Items_Shortcodes extends WCJ_Shortcodes {
694
 
695
  return $html;
696
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
697
  }
698
 
699
  endif;
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Order Items
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
16
  * Constructor.
17
  */
18
  function __construct() {
 
19
  $this->the_shortcodes = array(
20
  'wcj_order_items_table',
21
  );
 
22
  parent::__construct();
23
  }
24
 
25
  /**
26
  * add_extra_atts.
27
  *
28
+ * @version 3.2.0
29
  */
30
  function add_extra_atts( $atts ) {
31
  $modified_atts = array_merge( array(
32
  'order_id' => ( isset( $_GET['order_id'] ) ) ? $_GET['order_id'] : get_the_ID(),
33
  'hide_currency' => 'no',
34
  'table_class' => '',
35
+ 'shipping_as_item' => '', // e.g.: 'Shipping'
36
+ 'discount_as_item' => '', // e.g.: 'Discount'
37
  'columns' => '',
38
  'columns_titles' => '',
39
  'columns_styles' => '',
40
  'tax_percent_format' => '%.2f %%',
41
+ 'item_image_width' => 0, // deprecated (use `product_image_width` instead)
42
+ 'item_image_height' => 0, // deprecated (use `product_image_height` instead)
43
  'product_image_width' => 0,
44
  'product_image_height' => 0,
45
  'price_prefix' => '',
58
  'multiply_profit' => 1,
59
  'refunded_items_table' => 'no',
60
  'hide_zero_prices' => 'no',
61
+ 'multicolumns_glue' => '<br>',
62
  ), $atts );
63
  return $modified_atts;
64
  }
70
  */
71
  function init_atts( $atts ) {
72
  $this->the_order = ( 'shop_order' === get_post_type( $atts['order_id'] ) ) ? wc_get_order( $atts['order_id'] ) : null;
73
+ if ( ! $this->the_order ) {
74
+ return false;
75
+ }
76
  if ( 0 != $atts['item_image_width'] ) {
77
  $atts['product_image_width'] = $atts['item_image_width'];
78
  }
90
  */
91
  function extra_check( $atts ) {
92
  if ( '' != $atts['order_user_roles'] ) {
93
+ $user_info = get_userdata( $this->the_order->customer_user );
94
+ $user_roles = $user_info->roles;
95
  $user_roles_to_check = explode( ',', $atts['order_user_roles'] );
96
  foreach ( $user_roles_to_check as $user_role_to_check ) {
97
  if ( in_array( $user_role_to_check, $user_roles ) ) {
174
  return $items;
175
  }
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  /**
178
  * get_tax_class_name.
179
  *
245
  /**
246
  * wcj_order_items_table.
247
  *
248
+ * @version 3.2.0
249
+ * @todo (maybe) `if ( $columns_total_number !== count( $columns_titles ) || $columns_total_number !== count( $columns_styles ) ) { return __( 'Please recheck that there is the same number of columns in "columns", "columns_titles" and "columns_styles" attributes.', 'woocommerce-jetpack' ); }`
250
  */
251
  function wcj_order_items_table( $atts, $content = '' ) {
252
 
 
253
  $the_order = $this->the_order;
254
 
255
  // Get columns
256
  $columns = explode( '|', $atts['columns'] );
257
+ if ( empty( $columns ) ) {
258
+ return '';
259
+ }
260
+
261
+ // Column titles and styles
262
  $columns_titles = ( '' == $atts['columns_titles'] ) ? array() : explode( '|', $atts['columns_titles'] );
263
  $columns_styles = ( '' == $atts['columns_styles'] ) ? array() : explode( '|', $atts['columns_styles'] );
 
 
 
264
 
265
  // The Items
266
  $the_items = array();
277
  $name = str_replace( '%shipping_method_name%', $the_order->get_shipping_method(), $atts['shipping_as_item'] );
278
  $total_shipping_tax_excl = $the_order->get_total_shipping();
279
  $shipping_tax = $the_order->get_shipping_tax();
280
+ $the_items = $this->add_item( $the_items, array(
281
+ 'name' => $name,
282
+ 'qty' => 1,
283
+ 'line_subtotal' => $total_shipping_tax_excl,
284
+ 'line_total' => $total_shipping_tax_excl,
285
+ 'line_tax' => $shipping_tax,
286
+ 'line_subtotal_tax' => $shipping_tax,
287
+ 'type' => 'shipping',
288
+ ) );
289
  }
290
 
291
  // Discount as item
293
  $name = $atts['discount_as_item'];
294
  $total_discount_tax_excl = $the_order->get_total_discount( true );
295
  $discount_tax = $the_order->get_total_discount( false ) - $total_discount_tax_excl;
 
 
 
 
 
 
296
  $total_discount_tax_excl *= -1;
297
+ $discount_tax *= -1;
298
+ $the_items = $this->add_item( $the_items, array(
299
+ 'name' => $name,
300
+ 'qty' => 1,
301
+ 'line_subtotal' => $total_discount_tax_excl,
302
+ 'line_total' => $total_discount_tax_excl,
303
+ 'line_tax' => $discount_tax,
304
+ 'line_subtotal_tax' => $discount_tax,
305
+ 'type' => 'discount'
306
+ ) );
307
  }
308
 
309
  // Items to data[]
310
  $data = array();
311
  $item_counter = 0;
312
  foreach ( $the_items as $item_id => $item ) {
313
+ $item['is_custom'] = ( isset( $item['is_custom'] ) ); // $item['is_custom'] may be defined only if WCJ_IS_WC_VERSION_BELOW_3
314
  $the_product = ( true === $item['is_custom'] ) ? null : $the_order->get_product_from_item( $item );
315
  // Check if it's not excluded by category
316
  if ( '' != $atts['exclude_by_categories'] && $the_product ) {
325
  }
326
  }
327
  // Check if it's not excluded by product attribute
328
+ if ( $the_product && '' != $atts['exclude_by_attribute__name'] ) {
329
  $product_attributes = $the_product->get_attributes();
330
  if ( isset( $product_attributes[ $atts['exclude_by_attribute__name'] ] ) ) {
331
  $product_attribute = $product_attributes[ $atts['exclude_by_attribute__name'] ];
340
  }
341
  $item_counter++;
342
  // Columns
343
+ foreach( $columns as $cell_columns ) {
344
+ $cell_columns = explode( ',', $cell_columns );
345
+ $cell_data = array();
346
+ foreach ( $cell_columns as $column ) {
347
+ $column_param = '';
348
+ if ( false !== ( $pos = strpos( $column, '=' ) ) ) {
349
+ $column_param = substr( $column, $pos + 1 );
350
+ $column = substr( $column, 0, $pos );
351
+ }
352
+ $column_cell_data = $this->get_cell( $column, $column_param, $atts, $the_order, $columns, $item_counter, $item_id, $item, $the_product );
353
+ $column_cell_data = apply_filters( 'wcj_pdf_invoicing_cell_data', $column_cell_data, array(
354
+ 'column' => $column,
355
+ 'column_param' => $column_param,
356
+ 'item' => $item,
357
+ 'item_id' => $item_id,
358
+ 'item_counter' => $item_counter,
359
+ 'product' => $the_product,
360
+ 'order' => $this->the_order,
361
+ ) );
362
+ if ( '' !== $column_cell_data ) { // todo - this may be optional?
363
+ $cell_data[] = $column_cell_data;
364
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  }
366
+ $cell_data = ( empty( $cell_data ) ? '' : implode( $atts['multicolumns_glue'], $cell_data ) );
367
+ $data[ $item_counter ][] = $cell_data;
 
 
 
 
 
 
 
368
  }
369
  }
370
 
372
  return '';
373
  }
374
 
375
+ $html = '';
376
  $table_html_args = array(
377
  'table_class' => $atts['table_class'],
378
  'table_heading_type' => 'horizontal',
403
 
404
  return $html;
405
  }
406
+
407
+ /**
408
+ * get_cell.
409
+ *
410
+ * @version 3.2.0
411
+ * @since 3.2.0
412
+ */
413
+ function get_cell( $column, $column_param, $atts, $the_order, $columns, $item_counter, $item_id, $item, $the_product ) {
414
+
415
+ switch ( $column ) {
416
+
417
+ case 'item_debug':
418
+ case 'debug':
419
+ return print_r( $item, true );
420
+
421
+ case 'item_regular_price':
422
+ case 'product_regular_price':
423
+ return ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_regular_price(), $atts ) : '';
424
+
425
+ case 'item_sale_price':
426
+ case 'product_sale_price':
427
+ return ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_sale_price(), $atts ) : '';
428
+
429
+ case 'item_regular_price_multiply_qty':
430
+ case 'product_regular_price_multiply_qty':
431
+ return ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_regular_price() * $item['qty'], $atts ) : '';
432
+
433
+ case 'item_sale_price_multiply_qty':
434
+ case 'product_sale_price_multiply_qty':
435
+ return ( is_object( $the_product ) ) ? $this->wcj_price_shortcode( $the_product->get_sale_price() * $item['qty'], $atts ) : '';
436
+
437
+ case 'product_categories':
438
+ return ( is_object( $the_product ) ) ?
439
+ strip_tags( ( WCJ_IS_WC_VERSION_BELOW_3 ? $the_product->get_categories() : wc_get_product_category_list( $item['product_id'] ) ) ) :
440
+ '';
441
+
442
+ case 'item_tax_class':
443
+ case 'tax_class':
444
+ return ( isset( $item['tax_class'] ) ) ? $this->get_tax_class_name( $item['tax_class'] ) : '';
445
+
446
+ case 'item_number':
447
+ return $item_counter;
448
+
449
+ case 'item_meta':
450
+ return wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, false, $the_product );
451
+
452
+ case 'item_name':
453
+ case 'product_name': // "product_" because of possible variation
454
+ if ( true === $item['is_custom'] ) {
455
+ return $item['name'];
456
+ } else {
457
+ $the_item_title = $item['name'];
458
+ // Variation (if needed)
459
+ if ( 'yes' === $atts['add_variation_info_to_item_name'] && isset( $item['variation_id'] ) && 0 != $item['variation_id'] && ! in_array( 'item_variation', $columns ) ) {
460
+ $the_item_title .= '<div style="' . $atts['style_item_name_variation'] . '">';
461
+ if ( 'yes' === $atts['variation_as_metadata'] ) {
462
+ $the_item_title .= wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, true, $the_product );
463
+ } elseif ( is_object( $the_product ) && $the_product->is_type( 'variation' ) ) {
464
+ $the_item_title .= str_replace( 'pa_', '', urldecode( wcj_get_product_formatted_variation( $the_product, true ) ) ); // todo - do we need pa_ replacement?
465
+ }
466
+ $the_item_title .= '</div>';
467
+ }
468
+ // "WooCommerce TM Extra Product Options" plugin options
469
+ // todo - this will show options prices in shop's default currency only (must use 'price_per_currency' to show prices in order's currency).
470
+ $tmcartepo_data = ( WCJ_IS_WC_VERSION_BELOW_3 ?
471
+ ( isset( $item['tmcartepo_data'] ) ? maybe_unserialize( $item['tmcartepo_data'] ) : '' ) :
472
+ $item->get_meta( '_tmcartepo_data' )
473
+ );
474
+ if ( ! empty( $tmcartepo_data ) ) {
475
+ $options_prices = array();
476
+ foreach ( $tmcartepo_data as $option ) {
477
+ $option_info = '';
478
+ if ( isset( $option['name'] ) && '' != $option['name'] ) {
479
+ $option_info .= $option['name'] . ': ';
480
+ }
481
+ if ( isset( $option['value'] ) && '' != $option['value'] ) {
482
+ $option_info .= $option['value'];
483
+ }
484
+ if ( isset( $option['price'] ) && 'yes' === $atts['wc_extra_product_options_show_price'] ) { // todo - wc_extra_product_options_show_price is temporary, until price_per_currency issue is solved
485
+ $option_info .= ( $option['price'] > 0 ) ? ' +' . wc_price( $option['price'] ) : ' ' . wc_price( $option['price'] );
486
+ }
487
+ if ( '' != $option_info ) {
488
+ $options_prices[] = $option_info;
489
+ }
490
+ }
491
+ $the_item_title .= '<div style="' . $atts['style_item_name_variation'] . '">' . implode( '<br>', $options_prices ) . '</div>';
492
+ }
493
+ return $the_item_title;
494
+ }
495
+
496
+ case 'item_product_input_fields':
497
+ return wcj_get_product_input_fields( $item );
498
+
499
+ case 'item_product_addons':
500
+ return wcj_get_product_addons( $item, wcj_get_order_currency( $this->the_order ) );
501
+
502
+ case 'item_key':
503
+ if ( isset( $column_param ) && '' != $column_param && isset( $item[ $column_param ] ) ) {
504
+ $maybe_unserialized_value = maybe_unserialize( $item[ $column_param ] );
505
+ if ( is_array( $maybe_unserialized_value ) ) {
506
+ return isset( $maybe_unserialized_value['name'] ) ? $maybe_unserialized_value['name'] : '';
507
+ } else {
508
+ return $maybe_unserialized_value;
509
+ }
510
+ } else {
511
+ return '';
512
+ }
513
+
514
+ case 'item_attribute':
515
+ case 'product_attribute':
516
+ if ( isset( $column_param ) && '' != $column_param && is_object( $the_product ) ) {
517
+ $product_attribute = $the_product->get_attribute( $column_param );
518
+ if ( '' === $product_attribute && $the_product->is_type( 'variation' ) ) {
519
+ $parent_product = wc_get_product( $the_product->get_parent_id() );
520
+ $product_attribute = $parent_product->get_attribute( $column_param );
521
+ }
522
+ return $product_attribute;
523
+ } else {
524
+ return '';
525
+ }
526
+
527
+ case 'item_excerpt':
528
+ case 'product_excerpt':
529
+ if ( true === $item['is_custom'] || ! isset( $item['product_id'] ) ) {
530
+ return '';
531
+ } else {
532
+ global $post;
533
+ $post = get_post( $item['product_id'] );
534
+ setup_postdata( $post );
535
+ $the_excerpt = get_the_excerpt();
536
+ wp_reset_postdata();
537
+ return $the_excerpt;
538
+ }
539
+
540
+ case 'item_short_description':
541
+ case 'product_short_description':
542
+ return ( ! is_object( $the_product ) ) ? '' : ( WCJ_IS_WC_VERSION_BELOW_3 ? $the_product->post->post_excerpt : $the_product->get_short_description() );
543
+
544
+ case 'item_variation':
545
+ case 'product_variation':
546
+ if ( 0 != $item['variation_id'] ) {
547
+ if ( 'yes' === $atts['variation_as_metadata'] ) {
548
+ return wcj_get_order_item_meta_info( $item_id, $item, $this->the_order, true, $the_product );
549
+ } elseif ( is_object( $the_product ) && $the_product->is_type( 'variation' ) ) {
550
+ return str_replace( 'pa_', '', urldecode( wcj_get_product_formatted_variation( $the_product, true ) ) ); // todo - do we need pa_ replacement?
551
+ } else {
552
+ return '';
553
+ }
554
+ } else {
555
+ return '';
556
+ }
557
+
558
+ case 'item_thumbnail':
559
+ case 'product_thumbnail':
560
+ $image_id = ( ! is_object( $the_product ) ) ? 0 : $the_product->get_image_id();
561
+ $image_src = ( 0 != $image_id ) ? wp_get_attachment_image_src( $image_id ) : wc_placeholder_img_src();
562
+ if ( is_array( $image_src ) ) {
563
+ $image_src = $image_src[0];
564
+ }
565
+ $maybe_width = ( 0 != $atts['product_image_width'] ) ? ' width="' . $atts['product_image_width'] . '"' : '';
566
+ $maybe_height = ( 0 != $atts['product_image_height'] ) ? ' height="' . $atts['product_image_height'] . '"' : '';
567
+ return '<img src="' . $image_src . '"' . $maybe_width . $maybe_height . '>';
568
+
569
+ case 'item_sku':
570
+ case 'product_sku':
571
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_sku();
572
+
573
+ case 'item_quantity':
574
+ return $atts['quantity_prefix'] . $item['qty'];
575
+
576
+ case 'item_quantity_refunded':
577
+ return ( ! $item['is_custom'] && $item_id ? $this->the_order->get_qty_refunded_for_item( $item_id ) : '' );
578
+
579
+ case 'item_quantity_excl_refunded':
580
+ return ( ! $item['is_custom'] && $item_id ? ( $item['qty'] + $this->the_order->get_qty_refunded_for_item( $item_id ) ) : '' );
581
+
582
+ case 'item_total_refunded':
583
+ return ( ! $item['is_custom'] && $item_id ? $this->wcj_price_shortcode( $this->the_order->get_total_refunded_for_item( $item_id ), $atts ) : '' );
584
+
585
+ case 'item_total_tax_excl':
586
+ return $this->wcj_price_shortcode( $the_order->get_item_total( $item, false, true ), $atts );
587
+
588
+ case 'item_total_tax_incl':
589
+ return $this->wcj_price_shortcode( $the_order->get_item_total( $item, true, true ), $atts );
590
+
591
+ case 'item_subtotal_tax_excl':
592
+ return $this->wcj_price_shortcode( $the_order->get_item_subtotal( $item, false, true ), $atts );
593
+
594
+ case 'item_subtotal_tax_incl':
595
+ return $this->wcj_price_shortcode( $the_order->get_item_subtotal( $item, true, true ), $atts );
596
+
597
+ case 'item_tax':
598
+ return $this->wcj_price_shortcode( $the_order->get_item_tax( $item, true ), $atts );
599
+
600
+ case 'line_total_tax_excl':
601
+ $line_total_tax_excl = $the_order->get_line_total( $item, false, true );
602
+ $line_total_tax_excl = apply_filters( 'wcj_line_total_tax_excl', $line_total_tax_excl, $the_order );
603
+ return $this->wcj_price_shortcode( $line_total_tax_excl, $atts );
604
+
605
+ case 'line_total_tax_incl':
606
+ return $this->wcj_price_shortcode( $the_order->get_line_total( $item, true, true ), $atts );
607
+
608
+ case 'line_subtotal_tax_excl':
609
+ return $this->wcj_price_shortcode( $the_order->get_line_subtotal( $item, false, true ), $atts );
610
+
611
+ case 'line_subtotal_tax_incl':
612
+ return $this->wcj_price_shortcode( $the_order->get_line_subtotal( $item, true, true ), $atts );
613
+
614
+ case 'line_tax':
615
+ $line_tax = $the_order->get_line_tax( $item );
616
+ $line_tax = apply_filters( 'wcj_line_tax', $line_tax, $the_order );
617
+ return $this->wcj_price_shortcode( $line_tax, $atts );
618
+
619
+ case 'line_subtax':
620
+ $line_subtax = $the_order->get_line_subtotal( $item, true, false ) - $the_order->get_line_subtotal( $item, false, false );
621
+ return $this->wcj_price_shortcode( $line_subtax, $atts );
622
+
623
+ case 'item_tax_percent':
624
+ case 'line_tax_percent':
625
+ $item_total = $the_order->get_item_total( $item, false, false );
626
+ $item_tax_percent = ( 0 != $item_total ) ? $the_order->get_item_tax( $item, false ) / $item_total * 100 : 0;
627
+ $item_tax_percent = apply_filters( 'wcj_line_tax_percent', $item_tax_percent, $the_order );
628
+ return sprintf( $atts['tax_percent_format'], $item_tax_percent );
629
+
630
+ case 'item_weight':
631
+ case 'product_weight':
632
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_weight();
633
+
634
+ case 'item_width':
635
+ case 'product_width':
636
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_width();
637
+
638
+ case 'item_height':
639
+ case 'product_height':
640
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_height();
641
+
642
+ case 'item_length':
643
+ case 'product_length':
644
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_length();
645
+
646
+ case 'product_cost':
647
+ return ( ! is_object( $the_product ) ) ? '' :
648
+ wc_price( $atts['multiply_cost'] * wc_get_product_purchase_price( $the_product->get_id() ) );
649
+
650
+ case 'product_profit':
651
+ return ( ! is_object( $the_product ) ) ? '' :
652
+ wc_price( $atts['multiply_profit'] * ( $the_product->get_price() - wc_get_product_purchase_price( $the_product->get_id() ) ) );
653
+
654
+ case 'line_cost':
655
+ return ( ! is_object( $the_product ) ) ? '' :
656
+ wc_price( $atts['multiply_cost'] * $item['qty'] * wc_get_product_purchase_price( $the_product->get_id() ) );
657
+
658
+ case 'line_profit':
659
+ return ( ! is_object( $the_product ) ) ? '' :
660
+ wc_price( $atts['multiply_profit'] * $item['qty'] * ( $the_product->get_price() - wc_get_product_purchase_price( $the_product->get_id() ) ) );
661
+
662
+ case 'product_id':
663
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_id();
664
+
665
+ case 'item_product_id':
666
+ return ( true === $item['is_custom'] ) ? '' : $item['product_id'];
667
+
668
+ case 'product_meta':
669
+ return ( ! is_object( $the_product ) || ! isset( $column_param ) || '' == $column_param ) ? '' : $the_product->get_meta( $column_param );
670
+
671
+ case 'product_post_meta':
672
+ return ( true === $item['is_custom'] || ! isset( $column_param ) || '' == $column_param ) ? '' : get_post_meta( $item['product_id'], $column_param, true );
673
+
674
+ case 'product_purchase_note':
675
+ return ( ! is_object( $the_product ) ) ? '' : $the_product->get_purchase_note();
676
+
677
+ default:
678
+ return '';
679
+ }
680
+
681
+ }
682
+
683
  }
684
 
685
  endif;
includes/shortcodes/class-wcj-orders-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Orders
4
  *
5
- * @version 3.1.2
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -92,7 +92,7 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
92
  /**
93
  * add_extra_atts.
94
  *
95
- * @version 3.1.2
96
  */
97
  function add_extra_atts( $atts ) {
98
  $modified_atts = array_merge( array(
@@ -126,6 +126,7 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
126
  'price_prefix' => '',
127
  'display_refunded' => 'yes',
128
  'insert_page_break' => '',
 
129
  ), $atts );
130
 
131
  return $modified_atts;
@@ -377,13 +378,18 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
377
  /**
378
  * Get order custom field.
379
  *
380
- * @version 2.4.8
381
  * @since 2.4.8
382
  * @return string
383
  */
384
  function wcj_order_custom_field( $atts ) {
385
  $order_custom_fields = get_post_custom( $atts['order_id'] );
386
- return ( isset( $order_custom_fields[ $atts['name'] ][0] ) ) ? $order_custom_fields[ $atts['name'] ][0] : '';
 
 
 
 
 
387
  }
388
 
389
  /**
2
  /**
3
  * Booster for WooCommerce - Shortcodes - Orders
4
  *
5
+ * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
92
  /**
93
  * add_extra_atts.
94
  *
95
+ * @version 3.2.0
96
  */
97
  function add_extra_atts( $atts ) {
98
  $modified_atts = array_merge( array(
126
  'price_prefix' => '',
127
  'display_refunded' => 'yes',
128
  'insert_page_break' => '',
129
+ 'key' => null,
130
  ), $atts );
131
 
132
  return $modified_atts;
378
  /**
379
  * Get order custom field.
380
  *
381
+ * @version 3.2.0
382
  * @since 2.4.8
383
  * @return string
384
  */
385
  function wcj_order_custom_field( $atts ) {
386
  $order_custom_fields = get_post_custom( $atts['order_id'] );
387
+ $return = ( isset( $order_custom_fields[ $atts['name'] ][0] ) ) ? $order_custom_fields[ $atts['name'] ][0] : '';
388
+ if ( null !== $atts['key'] ) {
389
+ $return = maybe_unserialize( $return );
390
+ return ( isset( $return[ $atts['key'] ] ) ? $return[ $atts['key'] ] : '' );
391
+ }
392
+ return $return;
393
  }
394
 
395
  /**
langs/woocommerce-jetpack-es_ES.mo ADDED
Binary file
langs/woocommerce-jetpack-es_ES.po ADDED
@@ -0,0 +1,13688 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Booster for WooCommerce - Development (trunk) in Spanish (Spain)
2
+ # This file is distributed under the same license as the Plugins - Booster for WooCommerce - Development (trunk) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-10-18 08:43:32+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: es\n"
12
+ "Project-Id-Version: Plugins - Booster for WooCommerce - Development (trunk)\n"
13
+
14
+ #: includes/settings/wcj-settings-url-coupons.php:46
15
+ msgid "If redirect to custom local URL is selected, set URL here."
16
+ msgstr ""
17
+
18
+ #: includes/settings/wcj-settings-track-users.php:35
19
+ msgid "Top Countries"
20
+ msgstr ""
21
+
22
+ #: includes/settings/wcj-settings-sku.php:206
23
+ msgid "Enable this option if you are not going to use SKUs in your shop at all."
24
+ msgstr ""
25
+
26
+ #: includes/settings/wcj-settings-sku.php:198
27
+ msgid "Adds product SKU to customer's emails."
28
+ msgstr ""
29
+
30
+ #: includes/settings/wcj-settings-sku.php:190
31
+ msgid "This may help if you are going to use Autogenerate SKUs tool, but don't want to change your existing SKUs."
32
+ msgstr ""
33
+
34
+ #: includes/settings/wcj-settings-sku.php:174
35
+ msgid "If you wish to set SKUs manually, and you need to have same SKUs for different products, you can enable allow duplicate SKUs option here (which is disabled in WooCommerce by default)."
36
+ msgstr ""
37
+
38
+ #: includes/settings/wcj-settings-sku.php:166
39
+ msgid "This is important if, for example, you are using category prefix and don't want SKU generated too early, before you set the category."
40
+ msgstr ""
41
+
42
+ #: includes/settings/wcj-settings-sku.php:164
43
+ msgid "Generate SKU for New Products Only on First Publish"
44
+ msgstr ""
45
+
46
+ #: includes/settings/wcj-settings-sku.php:89
47
+ msgid "Possible values: SKU same as parent's product; Generate different SKU for each variation; SKU same as parent's product + variation letter suffix."
48
+ msgstr ""
49
+
50
+ #: includes/settings/wcj-settings-sku.php:88
51
+ msgid "SKU generation for variations. Please note, that if \"Generate SKU for New Products Only on First Publish\" option below is not checked, then on new variable product creation, variations will get same SKUs as parent product, and if you want variations to have different SKUs, you will need to run \"Autogenerate SKUs\" tool manually."
52
+ msgstr ""
53
+
54
+ #: includes/settings/wcj-settings-sku.php:79
55
+ msgid "SKU template."
56
+ msgstr ""
57
+
58
+ #: includes/settings/wcj-settings-sku.php:72
59
+ msgid "SKU suffix."
60
+ msgstr ""
61
+
62
+ #: includes/settings/wcj-settings-sku.php:65
63
+ msgid "Minimum length for SKU number part."
64
+ msgstr ""
65
+
66
+ #: includes/settings/wcj-settings-sku.php:58
67
+ msgid "SKU prefix."
68
+ msgstr ""
69
+
70
+ #: includes/settings/wcj-settings-sku.php:49
71
+ msgid "Enables sequential number generation by category."
72
+ msgstr ""
73
+
74
+ #: includes/settings/wcj-settings-sku.php:37
75
+ msgid "If you choose to use sequential number inside SKU, you can set current sequential number counter here."
76
+ msgstr ""
77
+
78
+ #: includes/settings/wcj-settings-sku.php:30
79
+ msgid "Number generation method."
80
+ msgstr ""
81
+
82
+ #: includes/settings/wcj-settings-price-formats.php:31
83
+ #: includes/settings/wcj-settings-price-formats.php:36
84
+ msgid "Price Formats by Currency (or WPML)"
85
+ msgstr ""
86
+
87
+ #: includes/settings/wcj-settings-price-formats.php:20
88
+ msgid "Trim Zeros in Prices"
89
+ msgstr ""
90
+
91
+ #: includes/settings/wcj-settings-order-custom-statuses.php:80
92
+ msgid "Choose if you want the buttons to have colors."
93
+ msgstr "Elige si quieres que los botones tengan colores."
94
+
95
+ #: includes/settings/wcj-settings-order-custom-statuses.php:71
96
+ msgid "If you wish to add custom statuses buttons to the admin Orders page action buttons (Actions column), enable the checkbox here."
97
+ msgstr ""
98
+
99
+ #: includes/settings/wcj-settings-order-custom-statuses.php:46
100
+ msgid "By default orders with custom statuses are not editable (same like with standard WooCommerce Completed status). If you wish to make custom status orders editable, enable the checkbox here."
101
+ msgstr ""
102
+
103
+ #: includes/settings/wcj-settings-order-custom-statuses.php:38
104
+ msgid "If you wish to add custom statuses to admin reports, enable the checkbox here."
105
+ msgstr ""
106
+
107
+ #: includes/settings/wcj-settings-order-custom-statuses.php:30
108
+ msgid "If you wish to add custom statuses to admin Orders page bulk actions, enable the checkbox here."
109
+ msgstr ""
110
+
111
+ #: includes/settings/wcj-settings-multicurrency.php:104
112
+ msgid "Press Save changes after setting this option, so new settings fields will be added."
113
+ msgstr ""
114
+
115
+ #: includes/settings/wcj-settings-multicurrency.php:76
116
+ msgid "Set how you want currency switcher to be displayed on frontend."
117
+ msgstr ""
118
+
119
+ #: includes/settings/wcj-settings-multicurrency.php:68
120
+ msgid "If rounding is enabled, set rounding precision here."
121
+ msgstr ""
122
+
123
+ #: includes/settings/wcj-settings-multicurrency.php:47
124
+ msgid "Enable this if you want prices to revert back to your shop's default currency, when customer reaches the checkout page."
125
+ msgstr ""
126
+
127
+ #: includes/settings/wcj-settings-multicurrency.php:40
128
+ msgid "If you enable this option, you will be able to enter prices for products in different currencies directly (i.e. without exchange rates). This will add meta boxes in product edit."
129
+ msgstr ""
130
+
131
+ #: includes/settings/wcj-settings-multicurrency.php:23
132
+ msgid "Select how you want currency exchange rates to be updated. Possible options are: manually or automatically via Currency Exchange Rates module."
133
+ msgstr ""
134
+
135
+ #: includes/settings/wcj-settings-global-discount.php:78
136
+ msgid "Possible values: all products, only products that are already on sale, only products that are not on sale."
137
+ msgstr "Valores posibles: todos los productos, sólo productos que están en venta, sólo productos que no están en venta."
138
+
139
+ #: includes/settings/wcj-settings-global-discount.php:59
140
+ msgid "Can be fixed or percent."
141
+ msgstr ""
142
+
143
+ #: includes/settings/wcj-settings-global-discount.php:51
144
+ msgid "Enabled/disables the discount group."
145
+ msgstr ""
146
+
147
+ #: includes/settings/wcj-settings-general.php:227
148
+ msgid "When enabled, this will generate coupon code automatically when adding new coupon."
149
+ msgstr "Cuando está activo, generará un código de cupón automático al añadir un cupón nuevo."
150
+
151
+ #: includes/settings/wcj-settings-general.php:226
152
+ msgid "Generate Coupon Code Automatically"
153
+ msgstr ""
154
+
155
+ #: includes/settings/wcj-settings-general.php:221
156
+ msgid "Coupons Options"
157
+ msgstr ""
158
+
159
+ #: includes/class-wcj-track-users.php:27
160
+ msgid "Track your users in WooCommerce."
161
+ msgstr ""
162
+
163
+ #: includes/class-wcj-track-users.php:26
164
+ msgid "User Tracking"
165
+ msgstr "Seguimiento del usuario"
166
+
167
+ #: includes/class-wcj-price-formats.php:26
168
+ msgid "Set different WooCommerce price formats for different currencies. Set general price format options."
169
+ msgstr "Establecer diferentes formatos de precio en WooCommerce para diferentes monedas. Establecer opciones generales del formato de precio."
170
+
171
+ #: includes/settings/wcj-settings-order-custom-statuses.php:44
172
+ msgid "Make Custom Status Orders Editable"
173
+ msgstr "Hacer editable el estado personalizado de los pedidos"
174
+
175
+ #: includes/settings/wcj-settings-multicurrency.php:86
176
+ msgid "E.g.: %s"
177
+ msgstr "Ej.:%s"
178
+
179
+ #: includes/settings/wcj-settings-multicurrency.php:85
180
+ msgid "Add additional price filters here. One per line. Leave blank if not sure."
181
+ msgstr ""
182
+
183
+ #: includes/settings/wcj-settings-multicurrency.php:84
184
+ msgid "Advanced: Additional Price Filters"
185
+ msgstr "Avanzado: Filtros de precios adicionales"
186
+
187
+ #: includes/class-wcj-multicurrency.php:27
188
+ msgid "After setting currencies in the Currencies Options section below, use %s <strong>widget</strong>, or %s <strong>shortcode</strong>. If you want to insert switcher in your <strong>PHP code</strong>, just use %s code."
189
+ msgstr "Después de configurar las monedas en la siguiente sección Opciones de monedas, usa %s <strong>widget</strong>, o %s <strong>shortcode</strong>. Si deseas insertar un selector en tu <strong>código PHP</strong>, simplemente usa el código %s."
190
+
191
+ #: includes/settings/wcj-settings-related-products.php:224
192
+ msgid "Set this field to NOT hide related products on selected products. Leave blank to hide on all products."
193
+ msgstr "Marca este campo para NO ocultar los productos relacionados en los productos seleccionados. Déjalo en blanco para ocultar todos los productos."
194
+
195
+ #: includes/settings/wcj-settings-related-products.php:213
196
+ msgid "Set this field to hide related products on selected products only. Leave blank to hide on all products."
197
+ msgstr "Marca este campo para ocultar productos relacionados sólo en los productos seleccionados. Déjalo en blanco para ocultar todos los productos."
198
+
199
+ #: includes/settings/wcj-settings-related-products.php:203
200
+ msgid "Set this field to NOT hide related products on selected product tags. Leave blank to hide on all products."
201
+ msgstr "Marca este campo para NO ocultar los productos relacionados en las etiquetas de producto seleccionadas. Déjalo en blanco para ocultar todos los productos."
202
+
203
+ #: includes/settings/wcj-settings-related-products.php:194
204
+ msgid "Set this field to hide related products on selected product tags only. Leave blank to hide on all products."
205
+ msgstr "Marca este campo para ocultar los productos relacionados sólo en las etiquetas de producto seleccionadas. Déjalo en blanco para ocultar todos los productos"
206
+
207
+ #: includes/settings/wcj-settings-related-products.php:185
208
+ msgid "Set this field to NOT hide related products on selected product categories. Leave blank to hide on all products."
209
+ msgstr "Marca este campo para NO ocultar productos relacionados en las categorías de productos seleccionadas. Déjalo en blanco para ocultar todos los productos."
210
+
211
+ #: includes/settings/wcj-settings-related-products.php:176
212
+ msgid "Set this field to hide related products on selected product categories only. Leave blank to hide on all products."
213
+ msgstr "Marca este campo para ocultar los productos relacionados sólo en las categorías de productos seleccionadas. Déjalo en blanco para ocultar todos los productos."
214
+
215
+ #: includes/settings/wcj-settings-product-by-country.php:101
216
+ msgid "Set both"
217
+ msgstr "Establecer ambos"
218
+
219
+ #: includes/settings/wcj-settings-product-by-country.php:100
220
+ msgid "Set invisible countries"
221
+ msgstr "Establecer países invisibles"
222
+
223
+ #: includes/settings/wcj-settings-product-by-country.php:99
224
+ msgid "Set visible countries"
225
+ msgstr "Establecer países visibles"
226
+
227
+ #: includes/settings/wcj-settings-product-by-country.php:94
228
+ msgid "This option sets how do you want to set product's visibility. Possible values: \"Set visible countries\", \"Set invisible countries\" or \"Set both\"."
229
+ msgstr "Esta opción determina cómo deseas marcar la visibilidad del producto. Valores posibles: \"Marcar países visibles\", \"Marcar países invisibles\" o \"Marcar ambos\"."
230
+
231
+ #: includes/settings/wcj-settings-product-by-country.php:93
232
+ msgid "Visibility Method"
233
+ msgstr "Método de visibilidad"
234
+
235
+ #: includes/settings/wcj-settings-product-by-country.php:87
236
+ msgid "WooCommerce selling locations"
237
+ msgstr "Ubicaciones de venta de WooCommerce"
238
+
239
+ #: includes/settings/wcj-settings-product-by-country.php:80
240
+ msgid "If \"WooCommerce selling locations\" option is selected, country list will be set by <a href=\"%s\">WooCommerce > Settings > General > Selling location(s)</a>."
241
+ msgstr "Si está seleccionada la opción \"Ubicaciones de venta de WooCommerce\", la lista de países se configurará en <a href=\"%s\">WooCommerce > Ajustes > General > Ubicación(es) de venta</a>."
242
+
243
+ #: includes/settings/wcj-settings-product-by-country.php:79
244
+ msgid "This option sets which countries will be added to list in product's edit page. Possible values: \"All countries\" or \"WooCommerce selling locations\"."
245
+ msgstr ""
246
+
247
+ #: includes/settings/wcj-settings-product-by-country.php:78
248
+ msgid "Country List"
249
+ msgstr "Lista de países"
250
+
251
+ #: includes/settings/wcj-settings-global-discount.php:108
252
+ msgid "Set this field to apply discount to selected product tags only. Leave blank to apply to all products."
253
+ msgstr "Marca este campo para aplicar el descuento sólo a las etiquetas de producto seleccionadas. Déjalo en blanco para aplicar a todos los productos."
254
+
255
+ #: includes/settings/wcj-settings-global-discount.php:90
256
+ msgid "Set this field to apply discount to selected product categories only. Leave blank to apply to all products."
257
+ msgstr "Marca este campo para aplicar el descuento sólo a las categorías de productos seleccionadas. Déjalo en blanco para aplicar a todos los productos."
258
+
259
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-country.php:34
260
+ msgid "Invisible in Countries"
261
+ msgstr "Invisible en los países"
262
+
263
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-country.php:19
264
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-country.php:35
265
+ msgid "Use \"Control\" key to select/deselect multiple countries. Hold \"Control\" and \"A\" to select all countries. Leave empty to disable."
266
+ msgstr "Usa la tecla \"Control\" para seleccionar/deseleccionar varios países. Mantén \"Control\" y \"A\" para seleccionar todos los países. Déjalo vacío para desactivar."
267
+
268
+ #: includes/classes/class-wcj-module.php:357
269
+ msgid "Selected: %s."
270
+ msgstr "Seleccionado: %s."
271
+
272
+ #: woocommerce-jetpack.php:188
273
+ msgid "There is new version of <strong>Booster Plus for WooCommerce</strong> plugin available. We recommend upgrading. Please visit <a target=\"_blank\" href=\"%s\">your account page</a> on booster.io to download the latest Booster Plus version."
274
+ msgstr "Hay una nueva versión del plugin <strong>Booster Plus for WooCommerce</strong> disponible. Recomendamos actualizar. Visita <a target=\"_blank\" href=\"%s\"> tu página de cuenta</a> en booster.io para descargar la última versión de Booster Plus."
275
+
276
+ #: includes/widgets/class-wcj-widget-selector.php:59
277
+ msgid "Selector Type"
278
+ msgstr "Tipo de selector"
279
+
280
+ #: includes/widgets/class-wcj-widget-selector.php:29
281
+ msgid "currently for \"Product Visibility by Country\" module only"
282
+ msgstr "actualmente sólo para el módulo \"Visibilidad del producto por país\""
283
+
284
+ #: includes/widgets/class-wcj-widget-selector.php:29
285
+ msgid "Booster: Selector Widget"
286
+ msgstr ""
287
+
288
+ #: includes/settings/wcj-settings-product-tabs.php:251
289
+ msgid "Default Key"
290
+ msgstr ""
291
+
292
+ #: includes/settings/wcj-settings-product-tabs.php:60
293
+ #: includes/settings/wcj-settings-product-tabs.php:252
294
+ msgid "Make sure it's unique for each tab."
295
+ msgstr "Asegúrate de que sea único para cada pestaña."
296
+
297
+ #: includes/settings/wcj-settings-product-tabs.php:16
298
+ #: includes/settings/wcj-settings-product-tabs.php:22
299
+ msgid "Custom Product Tabs - All Products"
300
+ msgstr "Pestañas personalizadas del producto - Todos los productos"
301
+
302
+ #: includes/settings/wcj-settings-product-input-fields.php:199
303
+ msgid "Position priority"
304
+ msgstr "Prioridad de posición"
305
+
306
+ #: includes/settings/wcj-settings-product-input-fields.php:189
307
+ msgid "Position on Single Product Page"
308
+ msgstr "Posición en página de producto"
309
+
310
+ #: includes/settings/wcj-settings-product-input-fields.php:167
311
+ msgid "Products to exclude."
312
+ msgstr "Productos a excluir."
313
+
314
+ #: includes/settings/wcj-settings-product-input-fields.php:155
315
+ msgid "Products to include."
316
+ msgstr "Productos a incluir."
317
+
318
+ #: includes/settings/wcj-settings-product-input-fields.php:143
319
+ msgid "Product tags to exclude."
320
+ msgstr "Etiquetas de producto a excluir."
321
+
322
+ #: includes/settings/wcj-settings-product-input-fields.php:142
323
+ msgid "Product Tags - Exclude"
324
+ msgstr "Etiquetas de producto - Excluir"
325
+
326
+ #: includes/settings/wcj-settings-product-input-fields.php:132
327
+ msgid "Product tags to include."
328
+ msgstr "Etiquetas de producto a incluir."
329
+
330
+ #: includes/settings/wcj-settings-product-input-fields.php:131
331
+ msgid "Product Tags - Include"
332
+ msgstr "Etiquetas de producto - Incluir"
333
+
334
+ #: includes/settings/wcj-settings-product-input-fields.php:121
335
+ msgid "Product categories to exclude."
336
+ msgstr "Categorías de producto a excluir."
337
+
338
+ #: includes/settings/wcj-settings-product-input-fields.php:110
339
+ msgid "Product categories to include."
340
+ msgstr "Categorías de productos a incluir."
341
+
342
+ #: includes/settings/wcj-settings-product-custom-info.php:195
343
+ msgid "You can add custom filters here (one per line, in filter|title format). E.g.: <code>rehub_woo_after_compact_grid_title|Rehub: After title</code>."
344
+ msgstr "Puedes agregar filtros personalizados aquí (uno por línea, en formato filtro|título). Por ejemplo: <code>rehub_woo_after_compact_grid_title|Rehub: After title</code>."
345
+
346
+ #: includes/settings/wcj-settings-product-custom-info.php:193
347
+ msgid "Extra Filters"
348
+ msgstr "Filtros adicionales"
349
+
350
+ #: includes/settings/wcj-settings-product-by-country.php:109
351
+ msgid "This will add \"Countries\" column to the admin products list."
352
+ msgstr "Esto añadirá la columna \"Países\" a la lista de productos del administrador."
353
+
354
+ #: includes/settings/wcj-settings-product-by-country.php:73
355
+ msgid "Admin Options"
356
+ msgstr "Opciones de administrador"
357
+
358
+ #: includes/settings/wcj-settings-product-by-country.php:63
359
+ msgid "Manually"
360
+ msgstr "Manualmente"
361
+
362
+ #: includes/settings/wcj-settings-product-by-country.php:62
363
+ msgid "Automatically by IP"
364
+ msgstr "Automáticamente por IP"
365
+
366
+ #: includes/settings/wcj-settings-product-by-country.php:56
367
+ #: includes/widgets/class-wcj-widget-selector.php:27
368
+ msgid "Booster - Selector"
369
+ msgstr "Booster - Selector"
370
+
371
+ #: includes/settings/wcj-settings-product-by-country.php:55
372
+ msgid "If \"Manually\" option is selected, you can add country selection drop box to frontend with \"%s\" widget or %s shortcode."
373
+ msgstr ""
374
+
375
+ #: includes/settings/wcj-settings-product-by-country.php:53
376
+ msgid "Possible values: \"Automatically by IP\" or \"Manually\"."
377
+ msgstr "Posibles valores: \"Automáticamente por IP\" or \"Manualmente\"."
378
+
379
+ #: includes/settings/wcj-settings-product-by-country.php:52
380
+ msgid "User Country Selection Method"
381
+ msgstr "Método de selección de país de usuario"
382
+
383
+ #: includes/settings/wcj-settings-product-by-country.php:47
384
+ msgid "User Country Selection Options"
385
+ msgstr "Opciones de selección de países de usuario"
386
+
387
+ #: includes/settings/wcj-settings-product-by-country.php:36
388
+ #: includes/settings/wcj-settings-product-by-user-role.php:36
389
+ msgid "This will hide selected products completely (including direct link)."
390
+ msgstr "Esto ocultará los productos seleccionados completamente (incluyendo el enlace directo)"
391
+
392
+ #: includes/settings/wcj-settings-product-by-country.php:28
393
+ #: includes/settings/wcj-settings-product-by-user-role.php:28
394
+ msgid "This will make selected products non-purchasable (i.e. product can't be added to the cart)."
395
+ msgstr "Esta opción configurará los productos seleccionados como no comprables (estos productos no se podrán añadir al carrito)."
396
+
397
+ #: includes/settings/wcj-settings-product-by-country.php:20
398
+ #: includes/settings/wcj-settings-product-by-user-role.php:20
399
+ msgid "This will hide selected products in shop and search results. However product still will be accessible via direct link."
400
+ msgstr "Esta opción ocultará los productos seleccionados en la tienda y en los resultados de búsquedas. Sin embargo los productos estarán aún accesibles a través de sus enlaces directos."
401
+
402
+ #: includes/settings/wcj-settings-product-by-country.php:14
403
+ msgid "Visibility Options"
404
+ msgstr "Opciones de visibilidad"
405
+
406
+ #: includes/settings/wcj-settings-product-add-to-cart.php:108
407
+ msgid "Variation Radio Input td Style"
408
+ msgstr ""
409
+
410
+ #: includes/settings/wcj-settings-product-add-to-cart.php:98
411
+ msgid "Variation Description Template"
412
+ msgstr "Plantilla de descripción de variación"
413
+
414
+ #: includes/settings/wcj-settings-product-add-to-cart.php:88
415
+ msgid "Variation Label Template"
416
+ msgstr "Plantilla de etiquetas de variación"
417
+
418
+ #: includes/settings/wcj-settings-pdf-invoicing.php:112
419
+ msgid "Replace"
420
+ msgstr "Reemplazar"
421
+
422
+ #: includes/settings/wcj-settings-pdf-invoicing.php:111
423
+ msgid "Replace Periods with Commas in CSV Data"
424
+ msgstr ""
425
+
426
+ #: includes/settings/wcj-settings-pdf-invoicing.php:104
427
+ msgid "CSV UTF-8 BOM"
428
+ msgstr ""
429
+
430
+ #: includes/settings/wcj-settings-pdf-invoicing.php:90
431
+ msgid "Reports Filename"
432
+ msgstr "Nombre del archivo de los informes"
433
+
434
+ #: includes/settings/wcj-settings-pdf-invoicing.php:85
435
+ msgid "Report Tool Options"
436
+ msgstr "Opciones de la herramienta de informes"
437
+
438
+ #: includes/settings/wcj-settings-pdf-invoicing.php:33
439
+ msgid "Create on Order Partially Refunded"
440
+ msgstr "Crear en pedido parcialmente reembolsado"
441
+
442
+ #: includes/settings/wcj-settings-pdf-invoicing.php:32
443
+ msgid "Create on Order Status Refunded and/or Order Partially Refunded"
444
+ msgstr "Crear en el estado del pedido reembolsado y/o pedido parcialmente reembolsado"
445
+
446
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:34
447
+ msgid "You can use HTML here, as well as any WordPress shortcodes."
448
+ msgstr "Puedes usar HTML aquí, así como cualquier shortcode de WordPress."
449
+
450
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:25
451
+ msgid "Customer - Partially Refunded Order"
452
+ msgstr "Cliente - Pedido reembolsado parcialmente"
453
+
454
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:121
455
+ msgid "Enter file name for PDF documents. You can use shortcodes here, e.g. %s."
456
+ msgstr "Escribe el nombre de archivo de los documentos PDF. Puedes utilizar shortcodes aquí, por ej. %s."
457
+
458
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:54
459
+ msgid "This may help if you are experiencing compatibility issues with other plugins."
460
+ msgstr "Esto puede ayudar si experimentas problemas de compatibilidad con otros plugins."
461
+
462
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:53
463
+ msgid "Advanced: Saved Calculated Products Prices"
464
+ msgstr ""
465
+
466
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:46
467
+ msgid "rounding precision"
468
+ msgstr "precisión de redondeo"
469
+
470
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:39
471
+ msgid "Round Prices"
472
+ msgstr "Redondear precios"
473
+
474
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:20
475
+ msgid "In content replaced values are: %s and %s."
476
+ msgstr "En el contenido los valores reemplazados son: %s y %s."
477
+
478
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:17
479
+ msgid "You can also use <em>Booster - Left to Free Shipping</em> widget, %s shortcode or %s function."
480
+ msgstr ""
481
+
482
+ #: includes/settings/wcj-settings-global-discount.php:138
483
+ msgid "Set this field to NOT apply discount to selected products. Leave blank to apply to all products."
484
+ msgstr "Marca este campo para NO aplicar descuento a los productos seleccionados. Déjalo en blanco para aplicar a todos los productos."
485
+
486
+ #: includes/settings/wcj-settings-global-discount.php:117
487
+ msgid "Set this field to NOT apply discount to selected product tags. Leave blank to apply to all products."
488
+ msgstr "Marca este campo para NO aplicar descuento a las etiquetas de producto seleccionadas. Déjalo en blanco para aplicar a todos los productos."
489
+
490
+ #: includes/settings/wcj-settings-global-discount.php:107
491
+ #: includes/settings/wcj-settings-related-products.php:193
492
+ msgid "Include Product Tags"
493
+ msgstr "Incluir etiquetas de producto"
494
+
495
+ #: includes/settings/wcj-settings-global-discount.php:99
496
+ msgid "Set this field to NOT apply discount to selected product categories. Leave blank to apply to all products."
497
+ msgstr "Marca este campo para NO aplicar descuento a las categorías de producto seleccionadas. Déjalo en blanco para aplicar a todos los productos."
498
+
499
+ #: includes/settings/wcj-settings-global-discount.php:98
500
+ #: includes/settings/wcj-settings-related-products.php:184
501
+ msgid "Exclude Product Categories"
502
+ msgstr "Excluir categorías de producto"
503
+
504
+ #: includes/settings/wcj-settings-global-discount.php:116
505
+ #: includes/settings/wcj-settings-related-products.php:202
506
+ msgid "Exclude Product Tags"
507
+ msgstr "Excluir etiquetas de producto"
508
+
509
+ #: includes/settings/wcj-settings-general.php:94
510
+ msgid "WC sessions"
511
+ msgstr ""
512
+
513
+ #: includes/settings/wcj-settings-general.php:93
514
+ msgid "Standard PHP sessions"
515
+ msgstr ""
516
+
517
+ #: includes/settings/wcj-settings-general.php:88
518
+ msgid "Session Type in Booster"
519
+ msgstr ""
520
+
521
+ #: includes/settings/wcj-settings-emails-verification.php:129
522
+ msgid "If WooCommerce template is selected, set email heading here."
523
+ msgstr ""
524
+
525
+ #: includes/settings/wcj-settings-emails-verification.php:122
526
+ msgid "Plain"
527
+ msgstr ""
528
+
529
+ #: includes/settings/wcj-settings-emails-verification.php:117
530
+ msgid "Possible values: Plain, WooCommerce."
531
+ msgstr ""
532
+
533
+ #: includes/settings/wcj-settings-emails-verification.php:106
534
+ msgid "Email Content"
535
+ msgstr ""
536
+
537
+ #: includes/settings/wcj-settings-emails-verification.php:81
538
+ msgid "Message - Resend"
539
+ msgstr ""
540
+
541
+ #: includes/settings/wcj-settings-emails-verification.php:74
542
+ msgid "Message - Activate"
543
+ msgstr ""
544
+
545
+ #: includes/settings/wcj-settings-emails-verification.php:66
546
+ msgid "Message - Failed"
547
+ msgstr ""
548
+
549
+ #: includes/settings/wcj-settings-emails-verification.php:58
550
+ msgid "Message - Error"
551
+ msgstr ""
552
+
553
+ #: includes/settings/wcj-settings-emails-verification.php:51
554
+ msgid "Message - Success"
555
+ msgstr ""
556
+
557
+ #: includes/settings/wcj-settings-emails-verification.php:46
558
+ msgid "Messages"
559
+ msgstr ""
560
+
561
+ #: includes/settings/wcj-settings-checkout-customization.php:84
562
+ msgid "You can use HTML and/or shortcodes here."
563
+ msgstr "Puedes usar HTML y/o shortcodes aquí."
564
+
565
+ #: includes/settings/wcj-settings-checkout-customization.php:77
566
+ msgid "Customize \"order received\" message"
567
+ msgstr "Personalizar mensaje \"pedido recibido\""
568
+
569
+ #: includes/settings/wcj-settings-checkout-core-fields.php:45
570
+ msgid "Fields Options"
571
+ msgstr ""
572
+
573
+ #: includes/settings/wcj-settings-checkout-core-fields.php:30
574
+ msgid "Override Country Locale Fields"
575
+ msgstr ""
576
+
577
+ #: includes/settings/wcj-settings-checkout-core-fields.php:26
578
+ #: includes/settings/wcj-settings-checkout-core-fields.php:37
579
+ msgid "Do not override"
580
+ msgstr "No sobreescribir"
581
+
582
+ #: includes/settings/wcj-settings-checkout-core-fields.php:25
583
+ #: includes/settings/wcj-settings-checkout-core-fields.php:36
584
+ msgid "Override with shipping fields"
585
+ msgstr ""
586
+
587
+ #: includes/settings/wcj-settings-checkout-core-fields.php:24
588
+ #: includes/settings/wcj-settings-checkout-core-fields.php:35
589
+ msgid "Override with billing fields"
590
+ msgstr ""
591
+
592
+ #: includes/settings/wcj-settings-checkout-core-fields.php:19
593
+ msgid "Override Default Address Fields"
594
+ msgstr ""
595
+
596
+ #: includes/settings/wcj-settings-cart-customization.php:46
597
+ msgid "Replace empty cart template"
598
+ msgstr "Reemplazar la plantilla de carrito vacío"
599
+
600
+ #: includes/settings/wcj-settings-cart-customization.php:45
601
+ msgid "Use JavaScript"
602
+ msgstr "Usar JavaScript"
603
+
604
+ #: includes/settings/wcj-settings-cart-customization.php:40
605
+ msgid "Method"
606
+ msgstr ""
607
+
608
+ #: includes/settings/wcj-settings-admin-bar.php:33
609
+ msgid "\"Booster: Active\" Admin Bar"
610
+ msgstr ""
611
+
612
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:315
613
+ msgid "In case of partial refund, you need to reload the page to see created document in this meta box."
614
+ msgstr ""
615
+
616
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:309
617
+ msgid "Order Total Tax Excluding"
618
+ msgstr "Pedido total impuestos excluídos"
619
+
620
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:303
621
+ msgid "Document Number"
622
+ msgstr "Número de documento"
623
+
624
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:242
625
+ msgid "No documents (%s) found for %d-%02d."
626
+ msgstr ""
627
+
628
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:54
629
+ msgid "This option is disabled with \"Disable Saving PDFs in PHP directory for temporary files\" checkbox in <a href=\"%s\" target=\"_blank\">WooCommerce > Settings > Booster > Emails & Misc. > General > Advanced Options</a>."
630
+ msgstr ""
631
+
632
+ #: includes/input-fields/wcj-product-input-fields-options.php:22
633
+ msgid "Set to zero for default order."
634
+ msgstr ""
635
+
636
+ #: includes/emails/class-wc-email-wcj-custom.php:288
637
+ msgid "WC Email Heading. Used only if \"Wrap in WC Email Template\" is enabled and only for HTML templates."
638
+ msgstr ""
639
+
640
+ #: includes/emails/class-wc-email-wcj-custom.php:282
641
+ msgid "Wrap in WC Email Template"
642
+ msgstr ""
643
+
644
+ #: includes/class-wcj-pdf-invoicing.php:130
645
+ msgid "Booster: ZipArchive error."
646
+ msgstr ""
647
+
648
+ #: includes/class-wcj-pdf-invoicing.php:124
649
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:157
650
+ msgid "Booster: %s class is not accessible on your server. Please contact your hosting provider."
651
+ msgstr ""
652
+
653
+ #: includes/class-wcj-order-numbers.php:163
654
+ msgid "Press the button below to renumerate all existing orders starting from order counter settings in <a href=\"%s\">Order Numbers</a> module."
655
+ msgstr ""
656
+
657
+ #: includes/class-wcj-emails-verification.php:135
658
+ #: includes/settings/wcj-settings-emails-verification.php:132
659
+ msgid "Activate your account"
660
+ msgstr ""
661
+
662
+ #: includes/class-wcj-emails-verification.php:63
663
+ msgid "Email not verified"
664
+ msgstr ""
665
+
666
+ #: includes/class-wcj-emails-verification.php:62
667
+ msgid "Email verified"
668
+ msgstr ""
669
+
670
+ #: includes/class-wcj-emails-verification.php:49
671
+ msgid "Verified"
672
+ msgstr ""
673
+
674
+ #: includes/class-wcj-checkout-customization.php:84
675
+ #: includes/settings/wcj-settings-checkout-customization.php:86
676
+ msgid "Thank you. Your order has been received."
677
+ msgstr ""
678
+
679
+ #: includes/class-wcj-admin-bar.php:245
680
+ msgid "Booster: Active"
681
+ msgstr ""
682
+
683
+ #: includes/settings/wcj-settings-cart-customization.php:56
684
+ msgid "Change Empty Cart \"Return to shop\" Button Link"
685
+ msgstr ""
686
+
687
+ #: includes/class-wcj-payment-gateways.php:51
688
+ msgid "<strong>%s</strong> is a required field."
689
+ msgstr ""
690
+
691
+ #: includes/settings/wcj-settings-product-bookings.php:135
692
+ msgid "Date to: Exclude Months"
693
+ msgstr ""
694
+
695
+ #: includes/settings/wcj-settings-product-bookings.php:127
696
+ #: includes/settings/wcj-settings-product-bookings.php:136
697
+ msgid "Leave blank to include all months."
698
+ msgstr ""
699
+
700
+ #: includes/settings/wcj-settings-product-bookings.php:126
701
+ msgid "Date from: Exclude Months"
702
+ msgstr ""
703
+
704
+ #: includes/settings/wcj-settings-product-bookings.php:117
705
+ msgid "Date to: Exclude Days"
706
+ msgstr ""
707
+
708
+ #: includes/settings/wcj-settings-product-bookings.php:109
709
+ #: includes/settings/wcj-settings-product-bookings.php:118
710
+ msgid "Leave blank to include all days."
711
+ msgstr ""
712
+
713
+ #: includes/settings/wcj-settings-product-bookings.php:108
714
+ msgid "Date from: Exclude Days"
715
+ msgstr ""
716
+
717
+ #: includes/settings/wcj-settings-product-bookings.php:103
718
+ msgid "This settings will be applied to all your bookings products."
719
+ msgstr ""
720
+
721
+ #: includes/settings/wcj-settings-product-bookings.php:102
722
+ msgid "Datepicker Options"
723
+ msgstr ""
724
+
725
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:55
726
+ msgid "Denied Currencies"
727
+ msgstr ""
728
+
729
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:44
730
+ msgid "Allowed Currencies"
731
+ msgstr ""
732
+
733
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:27
734
+ msgid "PayPal allows only these currencies:<br>%s."
735
+ msgstr ""
736
+
737
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:91
738
+ #: includes/settings/wcj-settings-product-addons.php:126
739
+ msgid "For \"Select Box\" type only."
740
+ msgstr ""
741
+
742
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:63
743
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:70
744
+ #: includes/settings/wcj-settings-product-addons.php:93
745
+ #: includes/settings/wcj-settings-product-addons.php:101
746
+ msgid "For radio and select enter one value per line."
747
+ msgstr ""
748
+
749
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:52
750
+ #: includes/settings/wcj-settings-product-addons.php:81
751
+ msgid "Select Box"
752
+ msgstr ""
753
+
754
+ #: includes/class-wcj-payment-gateways-currency.php:25
755
+ msgid "Currency converter for WooCommerce payment gateways."
756
+ msgstr ""
757
+
758
+ #: includes/class-wcj-payment-gateways-currency.php:24
759
+ msgid "Gateways Currency Converter"
760
+ msgstr ""
761
+
762
+ #: includes/class-wcj-payment-gateways-by-currency.php:26
763
+ msgid "Set allowed currencies for WooCommerce payment gateways to show up."
764
+ msgstr ""
765
+
766
+ #: includes/class-wcj-export-import.php:251
767
+ msgid "Go"
768
+ msgstr ""
769
+
770
+ #: includes/class-wcj-export-import.php:246
771
+ msgid "Custom:"
772
+ msgstr ""
773
+
774
+ #: includes/settings/wcj-settings-url-coupons.php:54
775
+ msgid "Automatically add coupon's products to the cart"
776
+ msgstr "Añadir automáticamente los productos de cupón al carrito"
777
+
778
+ #: includes/settings/wcj-settings-url-coupons.php:53
779
+ msgid "\"Fixed product discount\" Coupons"
780
+ msgstr ""
781
+
782
+ #: includes/settings/wcj-settings-url-coupons.php:45
783
+ msgid "Custom Local URL"
784
+ msgstr ""
785
+
786
+ #: includes/settings/wcj-settings-url-coupons.php:39
787
+ msgid "Redirect to custom local URL"
788
+ msgstr ""
789
+
790
+ #: includes/settings/wcj-settings-url-coupons.php:38
791
+ msgid "Redirect to checkout"
792
+ msgstr ""
793
+
794
+ #: includes/settings/wcj-settings-url-coupons.php:37
795
+ msgid "Redirect to cart"
796
+ msgstr ""
797
+
798
+ #: includes/settings/wcj-settings-url-coupons.php:36
799
+ msgid "No redirect"
800
+ msgstr ""
801
+
802
+ #: includes/settings/wcj-settings-url-coupons.php:31
803
+ msgid "Possible values: No redirect; redirect to cart; redirect to checkout; redirect to custom local URL."
804
+ msgstr ""
805
+
806
+ #: includes/settings/wcj-settings-url-coupons.php:30
807
+ msgid "Redirect URL"
808
+ msgstr ""
809
+
810
+ #: includes/settings/wcj-settings-shipping-options.php:14
811
+ msgid "Hide if Free Shipping is Available"
812
+ msgstr ""
813
+
814
+ #: includes/settings/wcj-settings-reports.php:107
815
+ msgid "Forecast total orders and sum (excl. TAX) for current month"
816
+ msgstr ""
817
+
818
+ #: includes/settings/wcj-settings-reports.php:100
819
+ msgid "Include current day for current month"
820
+ msgstr ""
821
+
822
+ #: includes/settings/wcj-settings-url-coupons.php:23
823
+ msgid "Your users can apply shop's standard coupons, by visiting URL. E.g.: %s."
824
+ msgstr ""
825
+
826
+ #: includes/settings/wcj-settings-product-by-date.php:82
827
+ msgid "Message when product is not available by date (month off)."
828
+ msgstr ""
829
+
830
+ #: includes/settings/wcj-settings-product-by-date.php:81
831
+ msgid "Message (Month Off)"
832
+ msgstr ""
833
+
834
+ #: includes/settings/wcj-settings-product-by-date.php:70
835
+ msgid "Message when product is not available by date."
836
+ msgstr ""
837
+
838
+ #: includes/settings/wcj-settings-product-by-date.php:64
839
+ #: includes/settings/wcj-settings-product-by-time.php:64
840
+ msgid "Frontend Messages Options"
841
+ msgstr ""
842
+
843
+ #: includes/settings/wcj-settings-product-by-date.php:22
844
+ msgid "Date formats:"
845
+ msgstr ""
846
+
847
+ #: includes/settings/wcj-settings-product-by-date.php:15
848
+ msgid "Today is <code>%s</code>."
849
+ msgstr ""
850
+
851
+ #: includes/settings/wcj-settings-product-by-date.php:14
852
+ #: includes/settings/wcj-settings-product-by-time.php:14
853
+ msgid "All Products Options"
854
+ msgstr ""
855
+
856
+ #: includes/settings/wcj-settings-track-users.php:45
857
+ msgid "This will add \"Booster: Acquisition Source\" meta box to each order's edit page."
858
+ msgstr ""
859
+
860
+ #: includes/settings/wcj-settings-track-users.php:44
861
+ msgid "Save customer's acquisition source (i.e. HTTP referer) for orders."
862
+ msgstr ""
863
+
864
+ #: includes/settings/wcj-settings-track-users.php:43
865
+ msgid "Track Orders"
866
+ msgstr ""
867
+
868
+ #: includes/settings/wcj-settings-track-users.php:36
869
+ msgid "Select how many top countries to show."
870
+ msgstr ""
871
+
872
+ #: includes/settings/wcj-settings-track-users.php:27
873
+ msgid "Select which info to show in admin dashboard widget."
874
+ msgstr ""
875
+
876
+ #: includes/settings/wcj-settings-track-users.php:20
877
+ msgid "Enable admin dashboard widget"
878
+ msgstr ""
879
+
880
+ #: includes/settings/wcj-settings-track-users.php:19
881
+ msgid "Countries by Visits"
882
+ msgstr ""
883
+
884
+ #: includes/settings/wcj-settings-admin-tools.php:26
885
+ msgid "WooCommerce Log"
886
+ msgstr ""
887
+
888
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:14
889
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
890
+ msgid "Enable/Disable per Product Settings"
891
+ msgstr ""
892
+
893
+ #: includes/reports/wcj-class-reports-stock.php:330
894
+ msgid "Total current stock purchase price"
895
+ msgstr "Precio total de la compra del inventario actual"
896
+
897
+ #: includes/reports/wcj-class-reports-monthly-sales.php:330
898
+ msgid "Save Currency Rates"
899
+ msgstr ""
900
+
901
+ #: includes/reports/wcj-class-reports-monthly-sales.php:93
902
+ msgid "Orders by Currency"
903
+ msgstr "Pedidos por moneda"
904
+
905
+ #: includes/reports/wcj-class-reports-monthly-sales.php:37
906
+ msgid "Currency rates saved."
907
+ msgstr "Tasas de monedas guardadas"
908
+
909
+ #: includes/functions/wcj-admin-functions.php:29
910
+ msgid "Enter comma separated list of IDs."
911
+ msgstr ""
912
+
913
+ #: includes/classes/class-wcj-module.php:94
914
+ msgid "Booster: Free plugin's version is limited to only one \"%1$s\" product with settings on per product basis enabled at a time. You will need to get <a href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of \"%1$s\" products."
915
+ msgstr ""
916
+
917
+ #: includes/class-wcj-url-coupons.php:26
918
+ msgid "WooCommerce URL coupons."
919
+ msgstr ""
920
+
921
+ #: includes/class-wcj-shipping-options.php:185
922
+ #: includes/settings/wcj-settings-shipping-options.php:34
923
+ msgid "Hide \"Flat Rate\" only"
924
+ msgstr ""
925
+
926
+ #: includes/class-wcj-shipping-options.php:184
927
+ #: includes/settings/wcj-settings-shipping-options.php:33
928
+ msgid "Hide all except \"Local Pickup\""
929
+ msgstr ""
930
+
931
+ #: includes/class-wcj-shipping-options.php:183
932
+ #: includes/settings/wcj-settings-shipping-options.php:32
933
+ msgid "Hide all"
934
+ msgstr ""
935
+
936
+ #: includes/class-wcj-shipping-options.php:179
937
+ #: includes/settings/wcj-settings-shipping-options.php:28
938
+ msgid "Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat Rate\" only."
939
+ msgstr ""
940
+
941
+ #: includes/class-wcj-shipping-options.php:171
942
+ msgid "Booster: Hide when free is available"
943
+ msgstr ""
944
+
945
+ #: includes/class-wcj-shipping-options.php:25
946
+ msgid "Shipping Options"
947
+ msgstr ""
948
+
949
+ #: includes/class-wcj-reports.php:221
950
+ msgid "Booster: Monthly Sales (with Currency Conversion)"
951
+ msgstr "Booster: Ventas mensuales (con la conversión de moneda)"
952
+
953
+ #: includes/class-wcj-product-by-date.php:98
954
+ #: includes/class-wcj-product-by-date.php:100
955
+ #: includes/settings/wcj-settings-product-by-date.php:75
956
+ msgid "<p style=\"color:red;\">%product_title% is available only on %date_this_month% this month.</p>"
957
+ msgstr ""
958
+
959
+ #: includes/class-wcj-product-by-date.php:95
960
+ #: includes/class-wcj-product-by-date.php:97
961
+ #: includes/settings/wcj-settings-product-by-date.php:87
962
+ msgid "<p style=\"color:red;\">%product_title% is not available this month.</p>"
963
+ msgstr ""
964
+
965
+ #: includes/class-wcj-product-by-date.php:30
966
+ msgid "WooCommerce product availability by date."
967
+ msgstr ""
968
+
969
+ #: includes/class-wcj-product-by-date.php:29
970
+ msgid "Product Availability by Date"
971
+ msgstr ""
972
+
973
+ #: includes/class-wcj-track-users.php:303
974
+ msgid "Update now"
975
+ msgstr ""
976
+
977
+ #: includes/class-wcj-track-users.php:302
978
+ msgid "Stats generated at %s. Next update is scheduled at %s."
979
+ msgstr ""
980
+
981
+ #: includes/class-wcj-track-users.php:297
982
+ msgid "Delete all tracking data"
983
+ msgstr ""
984
+
985
+ #: includes/class-wcj-track-users.php:291
986
+ msgid "No stats yet."
987
+ msgstr ""
988
+
989
+ #: includes/class-wcj-track-users.php:281
990
+ msgid "Visits"
991
+ msgstr ""
992
+
993
+ #: includes/class-wcj-track-users.php:213
994
+ msgid "Top %d countries by visits"
995
+ msgstr ""
996
+
997
+ #: includes/class-wcj-track-users.php:142
998
+ msgid "Other"
999
+ msgstr ""
1000
+
1001
+ #: includes/class-wcj-track-users.php:117
1002
+ msgid "Acquisition Source"
1003
+ msgstr ""
1004
+
1005
+ #: includes/class-wcj-export-import.php:233
1006
+ #: includes/class-wcj-track-users.php:36
1007
+ msgid "All time"
1008
+ msgstr ""
1009
+
1010
+ #: includes/class-wcj-track-users.php:35
1011
+ msgid "Last 28 days"
1012
+ msgstr "Últimos 28 días"
1013
+
1014
+ #: includes/class-wcj-track-users.php:33
1015
+ msgid "Last 24 hours"
1016
+ msgstr ""
1017
+
1018
+ #: includes/class-wcj-emails.php:24
1019
+ msgid "Add custom emails to WooCommerce."
1020
+ msgstr ""
1021
+
1022
+ #: includes/class-wcj-email-options.php:27
1023
+ msgid "WooCommerce email options. E.g.: add another email recipient(s) to all WooCommerce emails."
1024
+ msgstr ""
1025
+
1026
+ #: includes/class-wcj-admin-bar.php:269
1027
+ msgid "Modules"
1028
+ msgstr ""
1029
+
1030
+ #: includes/admin/class-wc-settings-jetpack.php:457
1031
+ msgid "Supported modules: %s."
1032
+ msgstr ""
1033
+
1034
+ #: includes/admin/class-wc-settings-jetpack.php:455
1035
+ msgid "Use List Instead of Comma Separated Text for Products in Settings"
1036
+ msgstr ""
1037
+
1038
+ #: includes/settings/wcj-settings-sku.php:204
1039
+ msgid "Disable SKUs"
1040
+ msgstr ""
1041
+
1042
+ #: includes/settings/wcj-settings-sku.php:182
1043
+ msgid "Add product searching by SKU on frontend."
1044
+ msgstr ""
1045
+
1046
+ #: includes/settings/wcj-settings-sku.php:180
1047
+ msgid "Search by SKU"
1048
+ msgstr ""
1049
+
1050
+ #: includes/settings/wcj-settings-sku.php:135
1051
+ msgid "Counter (Sequential)"
1052
+ msgstr ""
1053
+
1054
+ #: includes/settings/wcj-settings-sku.php:78
1055
+ msgid "Template"
1056
+ msgstr ""
1057
+
1058
+ #: includes/settings/wcj-settings-sku.php:48
1059
+ msgid "Sequential Number Generation - By Category"
1060
+ msgstr ""
1061
+
1062
+ #: includes/settings/wcj-settings-sku.php:31
1063
+ msgid "Possible values: from product ID, sequential or pseudorandom."
1064
+ msgstr ""
1065
+
1066
+ #: includes/settings/wcj-settings-reports.php:52
1067
+ msgid "Product Sales (Monthly)"
1068
+ msgstr "Productos vendidos (mensualmente)"
1069
+
1070
+ #: includes/settings/wcj-settings-reports.php:31
1071
+ msgid "Set empty to include all statuses."
1072
+ msgstr ""
1073
+
1074
+ #: includes/settings/wcj-settings-reports.php:30
1075
+ msgid "Order statuses"
1076
+ msgstr "Estados de los pedidos"
1077
+
1078
+ #: includes/settings/wcj-settings-reports.php:22
1079
+ msgid "Set empty to include all columns."
1080
+ msgstr "Dejar vacío para incluir todas las columnas"
1081
+
1082
+ #: includes/settings/wcj-settings-reports.php:21
1083
+ msgid "Report columns"
1084
+ msgstr "Columnas de informes"
1085
+
1086
+ #: includes/settings/wcj-settings-reports.php:14
1087
+ msgid "Product Sales (Daily)"
1088
+ msgstr "Ventas de producto (Diaria)"
1089
+
1090
+ #: includes/settings/wcj-settings-purchase-data.php:129
1091
+ msgid "This section lets you add custom columns to WooCommerce admin products list."
1092
+ msgstr ""
1093
+
1094
+ #: includes/settings/wcj-settings-purchase-data.php:127
1095
+ msgid "Admin Products List Custom Columns"
1096
+ msgstr ""
1097
+
1098
+ #: includes/settings/wcj-settings-products-per-page.php:68
1099
+ msgid "Template - After Form"
1100
+ msgstr ""
1101
+
1102
+ #: includes/settings/wcj-settings-products-per-page.php:61
1103
+ msgid "Template - Form"
1104
+ msgstr ""
1105
+
1106
+ #: includes/settings/wcj-settings-products-per-page.php:54
1107
+ msgid "Template - Before Form"
1108
+ msgstr ""
1109
+
1110
+ #: includes/settings/wcj-settings-product-open-pricing.php:79
1111
+ msgid "Disable Quantity Input"
1112
+ msgstr ""
1113
+
1114
+ #: includes/settings/wcj-settings-product-listings.php:232
1115
+ msgid "Admin Products List - Columns Order"
1116
+ msgstr ""
1117
+
1118
+ #: includes/settings/wcj-settings-product-listings.php:174
1119
+ msgid "Admin Products List - Custom Columns"
1120
+ msgstr ""
1121
+
1122
+ #: includes/settings/wcj-settings-product-input-fields.php:266
1123
+ msgid "Affects Order received page, Emails and Admin Orders View"
1124
+ msgstr ""
1125
+
1126
+ #: includes/settings/wcj-settings-product-input-fields.php:265
1127
+ msgid "Order Table Template - Each Field"
1128
+ msgstr ""
1129
+
1130
+ #: includes/settings/wcj-settings-product-input-fields.php:258
1131
+ msgid "Cart HTML Template - End"
1132
+ msgstr ""
1133
+
1134
+ #: includes/settings/wcj-settings-product-input-fields.php:251
1135
+ msgid "Cart HTML Template - Each Field"
1136
+ msgstr ""
1137
+
1138
+ #: includes/settings/wcj-settings-product-input-fields.php:244
1139
+ msgid "Cart HTML Template - Start"
1140
+ msgstr ""
1141
+
1142
+ #: includes/settings/wcj-settings-product-input-fields.php:240
1143
+ msgid "Add to cart item data"
1144
+ msgstr ""
1145
+
1146
+ #: includes/settings/wcj-settings-product-input-fields.php:239
1147
+ msgid "Add to cart item name"
1148
+ msgstr ""
1149
+
1150
+ #: includes/settings/wcj-settings-product-input-fields.php:234
1151
+ msgid "When \"Add to cart item data\" is selected, \"Cart HTML Template\" options below will be ignored."
1152
+ msgstr ""
1153
+
1154
+ #: includes/settings/wcj-settings-product-input-fields.php:233
1155
+ msgid "Cart Display Options"
1156
+ msgstr ""
1157
+
1158
+ #: includes/settings/wcj-settings-product-custom-info.php:149
1159
+ msgid "Product Tags to Exclude"
1160
+ msgstr ""
1161
+
1162
+ #: includes/settings/wcj-settings-product-custom-info.php:139
1163
+ msgid "Product Tags to Include"
1164
+ msgstr ""
1165
+
1166
+ #: includes/settings/wcj-settings-product-custom-info.php:129
1167
+ msgid "Product Categories to Exclude"
1168
+ msgstr ""
1169
+
1170
+ #: includes/settings/wcj-settings-product-custom-info.php:119
1171
+ msgid "Product Categories to Include"
1172
+ msgstr ""
1173
+
1174
+ #: includes/settings/wcj-settings-product-by-country.php:108
1175
+ msgid "Admin Products List Column"
1176
+ msgstr ""
1177
+
1178
+ #: includes/settings/wcj-settings-product-by-country.php:35
1179
+ #: includes/settings/wcj-settings-product-by-user-role.php:35
1180
+ msgid "Modify Query"
1181
+ msgstr ""
1182
+
1183
+ #: includes/settings/wcj-settings-product-by-country.php:27
1184
+ #: includes/settings/wcj-settings-product-by-user-role.php:27
1185
+ msgid "Make Non-purchasable"
1186
+ msgstr ""
1187
+
1188
+ #: includes/settings/wcj-settings-product-by-country.php:19
1189
+ #: includes/settings/wcj-settings-product-by-user-role.php:19
1190
+ msgid "Hide Visibility"
1191
+ msgstr "Ocultar visibilidad"
1192
+
1193
+ #: includes/settings/wcj-settings-product-add-to-cart.php:39
1194
+ #: includes/settings/wcj-settings-product-by-date.php:52
1195
+ #: includes/settings/wcj-settings-product-by-time.php:52
1196
+ msgid "Per Product"
1197
+ msgstr ""
1198
+
1199
+ #: includes/settings/wcj-settings-product-add-to-cart.php:31
1200
+ msgid "URL - All Products"
1201
+ msgstr ""
1202
+
1203
+ #: includes/settings/wcj-settings-product-add-to-cart.php:16
1204
+ msgid "This section lets you set any local URL to redirect to after successfully adding product to cart."
1205
+ msgstr ""
1206
+
1207
+ #: includes/settings/wcj-settings-price-by-user-role.php:72
1208
+ msgid "Disable Price by User Role for Products on Sale"
1209
+ msgstr ""
1210
+
1211
+ #: includes/settings/wcj-settings-pdf-invoicing-templates.php:29
1212
+ msgid "Save all templates"
1213
+ msgstr ""
1214
+
1215
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:124
1216
+ msgid "Disable Fonts Download"
1217
+ msgstr ""
1218
+
1219
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:119
1220
+ msgid "Re-download"
1221
+ msgstr ""
1222
+
1223
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:110
1224
+ msgid "Fonts Manager"
1225
+ msgstr ""
1226
+
1227
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:101
1228
+ msgid "Latest download executed on %s."
1229
+ msgstr ""
1230
+
1231
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:95
1232
+ msgid "Latest successful downloaded version is %s."
1233
+ msgstr ""
1234
+
1235
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:92
1236
+ msgid "Fonts are NOT up to date. Please try downloading by pressing the button below."
1237
+ msgstr ""
1238
+
1239
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:88
1240
+ msgid "Latest successful download or version check was on %s."
1241
+ msgstr ""
1242
+
1243
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:87
1244
+ msgid "Fonts are up to date."
1245
+ msgstr ""
1246
+
1247
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:84
1248
+ msgid "Fonts download is disabled."
1249
+ msgstr ""
1250
+
1251
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:130
1252
+ msgid "If set to empty - Administrator role will be used."
1253
+ msgstr ""
1254
+
1255
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:129
1256
+ msgid "Allowed User Roles"
1257
+ msgstr ""
1258
+
1259
+ #: includes/settings/wcj-settings-orders.php:130
1260
+ msgid "Key (if sortable)"
1261
+ msgstr ""
1262
+
1263
+ #: includes/settings/wcj-settings-orders.php:125
1264
+ msgid "By meta (as numbers)"
1265
+ msgstr ""
1266
+
1267
+ #: includes/settings/wcj-settings-orders.php:124
1268
+ msgid "By meta (as text)"
1269
+ msgstr ""
1270
+
1271
+ #: includes/settings/wcj-settings-orders.php:118
1272
+ msgid "Sortable"
1273
+ msgstr ""
1274
+
1275
+ #: includes/settings/wcj-settings-orders.php:97
1276
+ #: includes/settings/wcj-settings-product-listings.php:204
1277
+ msgid "Key:"
1278
+ msgstr ""
1279
+
1280
+ #: includes/settings/wcj-settings-order-quantities.php:127
1281
+ msgid "Will be redirected to cart page"
1282
+ msgstr ""
1283
+
1284
+ #: includes/settings/wcj-settings-order-quantities.php:125
1285
+ msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
1286
+ msgstr ""
1287
+
1288
+ #: includes/settings/wcj-settings-order-quantities.php:118
1289
+ msgid "Enable Cart Notices"
1290
+ msgstr ""
1291
+
1292
+ #: includes/settings/wcj-settings-order-quantities.php:69
1293
+ msgid "Maximum Quantity"
1294
+ msgstr ""
1295
+
1296
+ #: includes/settings/wcj-settings-order-quantities.php:64
1297
+ msgid "Maximum Quantity Options"
1298
+ msgstr ""
1299
+
1300
+ #: includes/settings/wcj-settings-order-quantities.php:52
1301
+ #: includes/settings/wcj-settings-order-quantities.php:101
1302
+ msgid "Message - Per Item Quantity"
1303
+ msgstr ""
1304
+
1305
+ #: includes/settings/wcj-settings-order-quantities.php:43
1306
+ #: includes/settings/wcj-settings-order-quantities.php:92
1307
+ msgid "Per Item Quantity"
1308
+ msgstr ""
1309
+
1310
+ #: includes/settings/wcj-settings-order-quantities.php:35
1311
+ #: includes/settings/wcj-settings-order-quantities.php:84
1312
+ msgid "Message - Cart Total Quantity"
1313
+ msgstr ""
1314
+
1315
+ #: includes/settings/wcj-settings-order-quantities.php:28
1316
+ #: includes/settings/wcj-settings-order-quantities.php:44
1317
+ #: includes/settings/wcj-settings-order-quantities.php:77
1318
+ #: includes/settings/wcj-settings-order-quantities.php:93
1319
+ msgid "Set to zero to disable."
1320
+ msgstr ""
1321
+
1322
+ #: includes/settings/wcj-settings-order-quantities.php:27
1323
+ #: includes/settings/wcj-settings-order-quantities.php:76
1324
+ msgid "Cart Total Quantity"
1325
+ msgstr ""
1326
+
1327
+ #: includes/settings/wcj-settings-order-quantities.php:20
1328
+ msgid "Minimum Quantity"
1329
+ msgstr ""
1330
+
1331
+ #: includes/settings/wcj-settings-order-quantities.php:15
1332
+ msgid "Minimum Quantity Options"
1333
+ msgstr ""
1334
+
1335
+ #: includes/settings/wcj-settings-order-min-amount.php:73
1336
+ msgid "Cart notice type"
1337
+ msgstr ""
1338
+
1339
+ #: includes/settings/wcj-settings-order-min-amount.php:69
1340
+ msgid "Add notice"
1341
+ msgstr ""
1342
+
1343
+ #: includes/settings/wcj-settings-order-min-amount.php:68
1344
+ msgid "Print notice"
1345
+ msgstr ""
1346
+
1347
+ #: includes/settings/wcj-settings-order-min-amount.php:63
1348
+ msgid "Cart notice method"
1349
+ msgstr ""
1350
+
1351
+ #: includes/settings/wcj-settings-order-min-amount.php:62
1352
+ msgid "Advanced"
1353
+ msgstr ""
1354
+
1355
+ #: includes/settings/wcj-settings-emails-verification.php:116
1356
+ #: includes/settings/wcj-settings-offer-price.php:252
1357
+ msgid "Email Template"
1358
+ msgstr ""
1359
+
1360
+ #: includes/settings/wcj-settings-emails-verification.php:97
1361
+ #: includes/settings/wcj-settings-offer-price.php:245
1362
+ msgid "Email Subject"
1363
+ msgstr ""
1364
+
1365
+ #: includes/settings/wcj-settings-offer-price.php:234
1366
+ msgid "Use %s to send to administrator email: %s."
1367
+ msgstr ""
1368
+
1369
+ #: includes/settings/wcj-settings-offer-price.php:232
1370
+ msgid "Can be comma separated list."
1371
+ msgstr ""
1372
+
1373
+ #: includes/settings/wcj-settings-offer-price.php:231
1374
+ msgid "Email Recipient"
1375
+ msgstr ""
1376
+
1377
+ #: includes/settings/wcj-settings-offer-price.php:215
1378
+ msgid "Customer Notice"
1379
+ msgstr ""
1380
+
1381
+ #: includes/settings/wcj-settings-offer-price.php:208
1382
+ msgid "Required HTML"
1383
+ msgstr ""
1384
+
1385
+ #: includes/settings/wcj-settings-offer-price.php:201
1386
+ msgid "Form Footer"
1387
+ msgstr ""
1388
+
1389
+ #: includes/settings/wcj-settings-offer-price.php:194
1390
+ msgid "Form Button Label"
1391
+ msgstr ""
1392
+
1393
+ #: includes/settings/wcj-settings-offer-price.php:186
1394
+ msgid "Form Header"
1395
+ msgstr ""
1396
+
1397
+ #: includes/settings/wcj-settings-offer-price.php:178
1398
+ msgid "Send a Copy to Customer Checkbox"
1399
+ msgstr ""
1400
+
1401
+ #: includes/settings/wcj-settings-offer-price.php:170
1402
+ msgid "Customer Message"
1403
+ msgstr ""
1404
+
1405
+ #: includes/settings/wcj-settings-offer-price.php:114
1406
+ msgid "Price Input"
1407
+ msgstr ""
1408
+
1409
+ #: includes/settings/wcj-settings-offer-price.php:109
1410
+ msgid "Form and Notice Options"
1411
+ msgstr ""
1412
+
1413
+ #: includes/settings/wcj-settings-offer-price.php:85
1414
+ msgid "Possible values: Do not add; Before product; After product."
1415
+ msgstr ""
1416
+
1417
+ #: includes/settings/wcj-settings-offer-price.php:84
1418
+ msgid "Position On Archive Pages"
1419
+ msgstr ""
1420
+
1421
+ #: includes/settings/wcj-settings-offer-price.php:78
1422
+ #: includes/settings/wcj-settings-offer-price.php:98
1423
+ msgid "Position Priority (i.e. Order)"
1424
+ msgstr ""
1425
+
1426
+ #: includes/settings/wcj-settings-offer-price.php:64
1427
+ msgid "Position On Single Product Page"
1428
+ msgstr ""
1429
+
1430
+ #: includes/settings/wcj-settings-offer-price.php:57
1431
+ msgid "CSS Style"
1432
+ msgstr ""
1433
+
1434
+ #: includes/settings/wcj-settings-offer-price.php:50
1435
+ msgid "CSS Class"
1436
+ msgstr ""
1437
+
1438
+ #: includes/settings/wcj-settings-offer-price.php:38
1439
+ msgid "Button Options"
1440
+ msgstr ""
1441
+
1442
+ #: includes/settings/wcj-settings-offer-price.php:28
1443
+ msgid "Enable per product"
1444
+ msgstr ""
1445
+
1446
+ #: includes/settings/wcj-settings-offer-price.php:27
1447
+ msgid "Enable for all products with empty price"
1448
+ msgstr "Habilitar para todos los productos sin precio"
1449
+
1450
+ #: includes/settings/wcj-settings-offer-price.php:26
1451
+ msgid "Enable for all products"
1452
+ msgstr ""
1453
+
1454
+ #: includes/settings/wcj-settings-offer-price.php:21
1455
+ msgid "If Enable per product is selected, this will add new meta box to each product's edit page."
1456
+ msgstr ""
1457
+
1458
+ #: includes/settings/wcj-settings-offer-price.php:20
1459
+ msgid "Possible values: Enable for all products; Enable for all products with empty price; Enable per product."
1460
+ msgstr ""
1461
+
1462
+ #: includes/settings/wcj-settings-my-account.php:20
1463
+ msgid "Let your customers change order status manually."
1464
+ msgstr ""
1465
+
1466
+ #: includes/settings/wcj-settings-my-account.php:19
1467
+ msgid "Add Order Status Actions"
1468
+ msgstr ""
1469
+
1470
+ #: includes/settings/wcj-settings-general.php:209
1471
+ msgid "Enabled for"
1472
+ msgstr ""
1473
+
1474
+ #: includes/settings/wcj-settings-general.php:200
1475
+ msgid "Booster User Roles Changer"
1476
+ msgstr ""
1477
+
1478
+ #: includes/settings/wcj-settings-general.php:194
1479
+ msgid "This will add user roles changer tool to admin bar."
1480
+ msgstr ""
1481
+
1482
+ #: includes/settings/wcj-settings-general.php:193
1483
+ msgid "Booster User Roles Changer Options"
1484
+ msgstr ""
1485
+
1486
+ #: includes/settings/wcj-settings-eu-vat-number.php:97
1487
+ msgid "Simple"
1488
+ msgstr ""
1489
+
1490
+ #: includes/settings/wcj-settings-eu-vat-number.php:96
1491
+ msgid "cURL"
1492
+ msgstr ""
1493
+
1494
+ #: includes/settings/wcj-settings-eu-vat-number.php:95
1495
+ msgid "SOAP"
1496
+ msgstr ""
1497
+
1498
+ #: includes/settings/wcj-settings-eu-vat-number.php:90
1499
+ msgid "Change this if you are having issues when validating VAT. This only selects first method to try - if not succeeded, remaining methods will be used for validation."
1500
+ msgstr ""
1501
+
1502
+ #: includes/settings/wcj-settings-eu-vat-number.php:89
1503
+ msgid "First Validation Method"
1504
+ msgstr ""
1505
+
1506
+ #: includes/settings/wcj-settings-emails-verification.php:29
1507
+ msgid "If enabled, all your current users will have to verify their emails when logging to your site."
1508
+ msgstr ""
1509
+
1510
+ #: includes/settings/wcj-settings-emails-verification.php:27
1511
+ msgid "Enable Email Verification for Already Registered Users"
1512
+ msgstr ""
1513
+
1514
+ #: includes/settings/wcj-settings-emails-verification.php:19
1515
+ msgid "Skip Email Verification for User Roles"
1516
+ msgstr ""
1517
+
1518
+ #: includes/settings/wcj-settings-currency-per-product.php:220
1519
+ msgid "Product Tags"
1520
+ msgstr ""
1521
+
1522
+ #: includes/settings/wcj-settings-currency-per-product.php:208
1523
+ msgid "Product Categories"
1524
+ msgstr ""
1525
+
1526
+ #: includes/settings/wcj-settings-currency-per-product.php:196
1527
+ msgid "Product Authors User Roles"
1528
+ msgstr ""
1529
+
1530
+ #: includes/settings/wcj-settings-currency-per-product.php:184
1531
+ msgid "Product Authors"
1532
+ msgstr ""
1533
+
1534
+ #: includes/settings/wcj-settings-currency-per-product.php:86
1535
+ msgid "Currency per Product Tags"
1536
+ msgstr ""
1537
+
1538
+ #: includes/settings/wcj-settings-currency-per-product.php:79
1539
+ msgid "Currency per Product Categories"
1540
+ msgstr ""
1541
+
1542
+ #: includes/settings/wcj-settings-currency-per-product.php:72
1543
+ msgid "Currency per Product Authors User Roles"
1544
+ msgstr ""
1545
+
1546
+ #: includes/settings/wcj-settings-currency-per-product.php:65
1547
+ msgid "Currency per Product Authors"
1548
+ msgstr ""
1549
+
1550
+ #: includes/settings/wcj-settings-currency-per-product.php:60
1551
+ msgid "Save module's settings after changing this options to see new settings fields."
1552
+ msgstr ""
1553
+
1554
+ #: includes/settings/wcj-settings-currency-per-product.php:59
1555
+ msgid "Additional Options"
1556
+ msgstr ""
1557
+
1558
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:114
1559
+ msgid "You can add more currencies in this section. E.g. this can be used to display exchange rates with %s shortcodes."
1560
+ msgstr ""
1561
+
1562
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:112
1563
+ msgid "Custom Currencies Options"
1564
+ msgstr ""
1565
+
1566
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:53
1567
+ msgid "Exchange Rates Rounding"
1568
+ msgstr ""
1569
+
1570
+ #: includes/settings/wcj-settings-checkout-customization.php:70
1571
+ msgid "You can use HTML here."
1572
+ msgstr ""
1573
+
1574
+ #: includes/settings/wcj-settings-checkout-customization.php:69
1575
+ msgid "Message for logged users"
1576
+ msgstr ""
1577
+
1578
+ #: includes/settings/wcj-settings-checkout-customization.php:65
1579
+ msgid "Order comments"
1580
+ msgstr ""
1581
+
1582
+ #: includes/settings/wcj-settings-checkout-customization.php:63
1583
+ msgid "Shipping postcode"
1584
+ msgstr ""
1585
+
1586
+ #: includes/settings/wcj-settings-checkout-customization.php:62
1587
+ msgid "Shipping state"
1588
+ msgstr ""
1589
+
1590
+ #: includes/settings/wcj-settings-checkout-customization.php:61
1591
+ msgid "Shipping city"
1592
+ msgstr ""
1593
+
1594
+ #: includes/settings/wcj-settings-checkout-customization.php:60
1595
+ msgid "Shipping address 2"
1596
+ msgstr ""
1597
+
1598
+ #: includes/settings/wcj-settings-checkout-customization.php:59
1599
+ msgid "Shipping address 1"
1600
+ msgstr ""
1601
+
1602
+ #: includes/settings/wcj-settings-checkout-customization.php:58
1603
+ msgid "Shipping company"
1604
+ msgstr ""
1605
+
1606
+ #: includes/settings/wcj-settings-checkout-customization.php:57
1607
+ msgid "Shipping last name"
1608
+ msgstr ""
1609
+
1610
+ #: includes/settings/wcj-settings-checkout-customization.php:56
1611
+ msgid "Shipping first name"
1612
+ msgstr ""
1613
+
1614
+ #: includes/settings/wcj-settings-checkout-customization.php:54
1615
+ msgid "Billing phone"
1616
+ msgstr ""
1617
+
1618
+ #: includes/settings/wcj-settings-checkout-customization.php:53
1619
+ msgid "Billing email"
1620
+ msgstr ""
1621
+
1622
+ #: includes/settings/wcj-settings-checkout-customization.php:52
1623
+ msgid "Billing postcode"
1624
+ msgstr ""
1625
+
1626
+ #: includes/settings/wcj-settings-checkout-customization.php:51
1627
+ msgid "Billing state"
1628
+ msgstr ""
1629
+
1630
+ #: includes/settings/wcj-settings-checkout-customization.php:50
1631
+ msgid "Billing city"
1632
+ msgstr ""
1633
+
1634
+ #: includes/settings/wcj-settings-checkout-customization.php:49
1635
+ msgid "Billing address 2"
1636
+ msgstr ""
1637
+
1638
+ #: includes/settings/wcj-settings-checkout-customization.php:48
1639
+ msgid "Billing address 1"
1640
+ msgstr ""
1641
+
1642
+ #: includes/settings/wcj-settings-checkout-customization.php:47
1643
+ msgid "Billing company"
1644
+ msgstr ""
1645
+
1646
+ #: includes/settings/wcj-settings-checkout-customization.php:46
1647
+ msgid "Billing last name"
1648
+ msgstr ""
1649
+
1650
+ #: includes/settings/wcj-settings-checkout-customization.php:45
1651
+ msgid "Billing first name"
1652
+ msgstr ""
1653
+
1654
+ #: includes/settings/wcj-settings-checkout-customization.php:38
1655
+ msgid "Disable Fields on Checkout for Logged Users"
1656
+ msgstr ""
1657
+
1658
+ #: includes/settings/wcj-settings-breadcrumbs.php:33
1659
+ msgid "Hide Breadcrumbs"
1660
+ msgstr ""
1661
+
1662
+ #: includes/settings/wcj-settings-breadcrumbs.php:26
1663
+ msgid "Home URL"
1664
+ msgstr ""
1665
+
1666
+ #: includes/settings/wcj-settings-breadcrumbs.php:19
1667
+ msgid "Change Breadcrumbs Home URL"
1668
+ msgstr ""
1669
+
1670
+ #: includes/settings/wcj-settings-admin-bar.php:26
1671
+ msgid "\"Booster\" Admin Bar"
1672
+ msgstr ""
1673
+
1674
+ #: includes/settings/wcj-settings-admin-bar.php:19
1675
+ msgid "\"WooCommerce\" Admin Bar"
1676
+ msgstr ""
1677
+
1678
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
1679
+ msgid "Add to Cart Local Redirect URL"
1680
+ msgstr ""
1681
+
1682
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
1683
+ #: includes/settings/wcj-settings-product-add-to-cart.php:32
1684
+ msgid "Redirect URL. Leave empty to redirect to checkout page (skipping the cart page)."
1685
+ msgstr ""
1686
+
1687
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
1688
+ #: includes/settings/wcj-settings-product-add-to-cart.php:14
1689
+ msgid "Add to Cart Local Redirect"
1690
+ msgstr ""
1691
+
1692
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:42
1693
+ #: includes/settings/wcj-settings-offer-price.php:138
1694
+ msgid "Maximal Price"
1695
+ msgstr ""
1696
+
1697
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:33
1698
+ #: includes/settings/wcj-settings-offer-price.php:131
1699
+ msgid "Minimal Price"
1700
+ msgstr ""
1701
+
1702
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
1703
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
1704
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
1705
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
1706
+ msgid "Leave blank to use global value."
1707
+ msgstr ""
1708
+
1709
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
1710
+ msgid "Enable Offer Price"
1711
+ msgstr ""
1712
+
1713
+ #: includes/reports/wcj-class-reports-sales-daily.php:295
1714
+ msgid "Total orders: %d"
1715
+ msgstr "Total pedidos: %d"
1716
+
1717
+ #: includes/reports/wcj-class-reports-sales-daily.php:279
1718
+ #: includes/reports/wcj-class-reports-sales-daily.php:283
1719
+ msgid "Total: %s"
1720
+ msgstr ""
1721
+
1722
+ #: includes/reports/wcj-class-reports-sales-daily.php:275
1723
+ msgid "Total: %d"
1724
+ msgstr ""
1725
+
1726
+ #: includes/reports/wcj-class-reports-sales-daily.php:186
1727
+ msgid "Product:"
1728
+ msgstr ""
1729
+
1730
+ #: includes/reports/wcj-class-reports-sales-daily.php:183
1731
+ msgid "To:"
1732
+ msgstr ""
1733
+
1734
+ #: includes/reports/wcj-class-reports-sales-daily.php:180
1735
+ msgid "From:"
1736
+ msgstr ""
1737
+
1738
+ #: includes/functions/wcj-reports-functions.php:135
1739
+ msgid "Today"
1740
+ msgstr "Hoy"
1741
+
1742
+ #: includes/functions/wcj-reports-functions.php:130
1743
+ msgid "Yesterday"
1744
+ msgstr "Mañana"
1745
+
1746
+ #: includes/functions/wcj-reports-functions.php:32
1747
+ msgid "Last Sale Order Status"
1748
+ msgstr "Estado del último pedido de ventas"
1749
+
1750
+ #: includes/functions/wcj-reports-functions.php:31
1751
+ msgid "Last Sale Order ID"
1752
+ msgstr "ID del último pedido de ventas"
1753
+
1754
+ #: includes/functions/wcj-reports-functions.php:30
1755
+ msgid "Last Sale Date"
1756
+ msgstr "Fecha de la última venta"
1757
+
1758
+ #: includes/functions/wcj-reports-functions.php:28
1759
+ msgid "Sum"
1760
+ msgstr "Suma"
1761
+
1762
+ #: includes/functions/wcj-reports-functions.php:27
1763
+ msgid "Quantity"
1764
+ msgstr "Cantidad"
1765
+
1766
+ #: includes/functions/wcj-reports-functions.php:26
1767
+ msgid "Item Title"
1768
+ msgstr "Título del artículo"
1769
+
1770
+ #: includes/functions/wcj-reports-functions.php:23
1771
+ msgid "Daily Total Quantity"
1772
+ msgstr "Cantidad diaria total"
1773
+
1774
+ #: includes/functions/wcj-reports-functions.php:22
1775
+ msgid "Daily Total Sum"
1776
+ msgstr "Suma total diaria"
1777
+
1778
+ #: includes/functions/wcj-currencies.php:178
1779
+ msgid "myCred"
1780
+ msgstr ""
1781
+
1782
+ #: includes/functions/wcj-currencies.php:177
1783
+ msgid "Ethereum"
1784
+ msgstr ""
1785
+
1786
+ #: includes/functions/wcj-currencies.php:176
1787
+ msgid "Bitcoin"
1788
+ msgstr "Bitcoin"
1789
+
1790
+ #: includes/functions/wcj-country-functions.php:393
1791
+ msgid "European Union"
1792
+ msgstr ""
1793
+
1794
+ #: includes/functions/wcj-admin-functions.php:150
1795
+ msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
1796
+ msgstr ""
1797
+
1798
+ #: includes/functions/wcj-admin-functions.php:147
1799
+ msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
1800
+ msgstr ""
1801
+
1802
+ #: includes/functions/wcj-admin-functions.php:138
1803
+ msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
1804
+ msgstr ""
1805
+
1806
+ #: includes/functions/wcj-admin-functions.php:103
1807
+ msgid "Replaced values: %s"
1808
+ msgstr ""
1809
+
1810
+ #: includes/functions/wcj-admin-functions.php:103
1811
+ #: includes/settings/wcj-settings-emails-verification.php:59
1812
+ #: includes/settings/wcj-settings-emails-verification.php:67
1813
+ #: includes/settings/wcj-settings-emails-verification.php:107
1814
+ msgid "Replaced value: %s"
1815
+ msgstr ""
1816
+
1817
+ #: includes/classes/class-wcj-tcpdf.php:34
1818
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:31
1819
+ msgid "Page %page_number% / %total_pages%"
1820
+ msgstr ""
1821
+
1822
+ #: includes/class-wcj-sku.php:24
1823
+ msgid "Generate WooCommerce SKUs automatically. Search by SKU on frontend."
1824
+ msgstr ""
1825
+
1826
+ #: includes/class-wcj-shipping-options.php:28
1827
+ msgid "Grant free shipping on per product basis."
1828
+ msgstr ""
1829
+
1830
+ #: includes/class-wcj-reports.php:214
1831
+ msgid "Booster: Product Sales (Monthly)"
1832
+ msgstr "Booster: Ventas de productos (mensualmente)"
1833
+
1834
+ #: includes/class-wcj-reports.php:207
1835
+ msgid "Booster: Product Sales (Daily)"
1836
+ msgstr "Booster: Ventas de productos (diariamente)"
1837
+
1838
+ #: includes/class-wcj-purchase-data.php:79
1839
+ msgid "Booster: Product cost (destination)"
1840
+ msgstr ""
1841
+
1842
+ #: includes/class-wcj-purchase-data.php:78
1843
+ msgid "WooCommerce Cost of Goods (source)"
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-wcj-purchase-data.php:77
1847
+ msgid "Product Title"
1848
+ msgstr ""
1849
+
1850
+ #: includes/class-wcj-purchase-data.php:35
1851
+ msgid "Import products costs from \"WooCommerce Cost of Goods\"."
1852
+ msgstr ""
1853
+
1854
+ #: includes/class-wcj-purchase-data.php:34
1855
+ msgid "\"WooCommerce Cost of Goods\" Data Import"
1856
+ msgstr ""
1857
+
1858
+ #: includes/class-wcj-purchase-data.php:27
1859
+ msgid "Cost of Goods"
1860
+ msgstr ""
1861
+
1862
+ #: includes/class-wcj-product-by-country.php:65
1863
+ #: includes/widgets/class-wcj-widget-country-switcher.php:69
1864
+ #: includes/widgets/class-wcj-widget-selector.php:64
1865
+ msgid "Countries"
1866
+ msgstr ""
1867
+
1868
+ #: includes/class-wcj-pdf-invoicing.php:377
1869
+ msgid "You are not allowed to view the invoice."
1870
+ msgstr ""
1871
+
1872
+ #: includes/class-wcj-order-quantities.php:123
1873
+ #: includes/settings/wcj-settings-order-quantities.php:55
1874
+ msgid "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. Your current item quantity is %item_quantity%."
1875
+ msgstr ""
1876
+
1877
+ #: includes/class-wcj-order-quantities.php:113
1878
+ #: includes/settings/wcj-settings-order-quantities.php:104
1879
+ msgid "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. Your current item quantity is %item_quantity%."
1880
+ msgstr ""
1881
+
1882
+ #: includes/class-wcj-order-quantities.php:103
1883
+ #: includes/settings/wcj-settings-order-quantities.php:38
1884
+ msgid "Minimum allowed order quantity is %min_cart_total_quantity%. Your current order quantity is %cart_total_quantity%."
1885
+ msgstr ""
1886
+
1887
+ #: includes/class-wcj-order-quantities.php:95
1888
+ #: includes/settings/wcj-settings-order-quantities.php:87
1889
+ msgid "Maximum allowed order quantity is %max_cart_total_quantity%. Your current order quantity is %cart_total_quantity%."
1890
+ msgstr ""
1891
+
1892
+ #: includes/class-wcj-order-quantities.php:29
1893
+ msgid "Set min/max product quantities in WooCommerce order."
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-wcj-order-quantities.php:28
1897
+ msgid "Order Min/Max Quantities"
1898
+ msgstr ""
1899
+
1900
+ #: includes/class-wcj-offer-price.php:421
1901
+ #: includes/settings/wcj-settings-offer-price.php:218
1902
+ msgid "Your price offer has been sent."
1903
+ msgstr ""
1904
+
1905
+ #: includes/class-wcj-offer-price.php:411
1906
+ #: includes/settings/wcj-settings-offer-price.php:248
1907
+ msgid "Price Offer"
1908
+ msgstr ""
1909
+
1910
+ #: includes/class-wcj-offer-price.php:400
1911
+ #: includes/settings/wcj-settings-offer-price.php:260
1912
+ msgid "Message: %s"
1913
+ msgstr ""
1914
+
1915
+ #: includes/class-wcj-offer-price.php:399
1916
+ #: includes/settings/wcj-settings-offer-price.php:259
1917
+ msgid "From: %s %s"
1918
+ msgstr ""
1919
+
1920
+ #: includes/class-wcj-offer-price.php:398
1921
+ #: includes/settings/wcj-settings-offer-price.php:258
1922
+ msgid "Offered price: %s"
1923
+ msgstr ""
1924
+
1925
+ #: includes/class-wcj-offer-price.php:397
1926
+ #: includes/settings/wcj-settings-offer-price.php:257
1927
+ msgid "Product: %s"
1928
+ msgstr ""
1929
+
1930
+ #: includes/class-wcj-offer-price.php:344
1931
+ #: includes/settings/wcj-settings-offer-price.php:46
1932
+ msgid "Make an offer"
1933
+ msgstr ""
1934
+
1935
+ #: includes/class-wcj-offer-price.php:294
1936
+ #: includes/settings/wcj-settings-offer-price.php:182
1937
+ msgid "Send a copy to your email"
1938
+ msgstr ""
1939
+
1940
+ #: includes/class-wcj-offer-price.php:292
1941
+ #: includes/settings/wcj-settings-offer-price.php:197
1942
+ msgid "Send"
1943
+ msgstr ""
1944
+
1945
+ #: includes/class-wcj-offer-price.php:288
1946
+ #: includes/settings/wcj-settings-offer-price.php:174
1947
+ msgid "Your message"
1948
+ msgstr ""
1949
+
1950
+ #: includes/class-wcj-offer-price.php:284
1951
+ #: includes/settings/wcj-settings-offer-price.php:166
1952
+ msgid "Your name"
1953
+ msgstr ""
1954
+
1955
+ #: includes/class-wcj-offer-price.php:280
1956
+ #: includes/settings/wcj-settings-offer-price.php:158
1957
+ msgid "Your email"
1958
+ msgstr ""
1959
+
1960
+ #: includes/class-wcj-offer-price.php:225
1961
+ #: includes/settings/wcj-settings-offer-price.php:190
1962
+ msgid "Suggest your price for %s"
1963
+ msgstr ""
1964
+
1965
+ #: includes/class-wcj-offer-price.php:219
1966
+ #: includes/settings/wcj-settings-offer-price.php:119
1967
+ msgid "Your price (%s)"
1968
+ msgstr ""
1969
+
1970
+ #: includes/class-wcj-offer-price.php:149
1971
+ msgid "Update product after checking the box."
1972
+ msgstr ""
1973
+
1974
+ #: includes/class-wcj-offer-price.php:148
1975
+ msgid "Delete history"
1976
+ msgstr ""
1977
+
1978
+ #: includes/class-wcj-offer-price.php:141
1979
+ msgid "Average offer: %s (from %s offer(s))"
1980
+ msgstr ""
1981
+
1982
+ #: includes/class-wcj-offer-price.php:119
1983
+ msgid "Sent to"
1984
+ msgstr ""
1985
+
1986
+ #: includes/class-wcj-offer-price.php:108
1987
+ msgid "No price offers yet."
1988
+ msgstr ""
1989
+
1990
+ #: includes/class-wcj-offer-price.php:92
1991
+ msgid "Booster: Offer Price History"
1992
+ msgstr ""
1993
+
1994
+ #: includes/class-wcj-offer-price.php:37
1995
+ msgid "Let your customers to suggest their price for products in WooCommerce."
1996
+ msgstr ""
1997
+
1998
+ #: includes/class-wcj-offer-price.php:36
1999
+ msgid "Offer Your Price"
2000
+ msgstr ""
2001
+
2002
+ #: includes/class-wcj-my-account.php:26
2003
+ msgid "WooCommerce \"My Account\" page customization."
2004
+ msgstr ""
2005
+
2006
+ #: includes/class-wcj-my-account.php:25
2007
+ msgid "My Account"
2008
+ msgstr ""
2009
+
2010
+ #: includes/class-wcj-general.php:171
2011
+ msgid "Booster User Role"
2012
+ msgstr ""
2013
+
2014
+ #: includes/class-wcj-emails-verification.php:161
2015
+ #: includes/settings/wcj-settings-emails-verification.php:70
2016
+ msgid "<strong>Error:</strong> Activation failed, please contact our administrator. You can resend email with verification link by clicking <a href=\"%resend_verification_url%\">here</a>."
2017
+ msgstr ""
2018
+
2019
+ #: includes/class-wcj-checkout-customization.php:103
2020
+ #: includes/settings/wcj-settings-checkout-customization.php:72
2021
+ msgid "This field can not be changed"
2022
+ msgstr ""
2023
+
2024
+ #: includes/class-wcj-checkout-customization.php:30
2025
+ msgid "Customize WooCommerce checkout - hide \"Order Again\" button; disable selected fields on checkout for logged users and more."
2026
+ msgstr ""
2027
+
2028
+ #: includes/class-wcj-breadcrumbs.php:29
2029
+ msgid "Customize WooCommerce breadcrumbs."
2030
+ msgstr ""
2031
+
2032
+ #: includes/class-wcj-breadcrumbs.php:28
2033
+ msgid "Breadcrumbs"
2034
+ msgstr ""
2035
+
2036
+ #: includes/class-wcj-admin-tools.php:148
2037
+ msgid "Now: %s"
2038
+ msgstr ""
2039
+
2040
+ #: includes/class-wcj-admin-bar.php:595
2041
+ msgid "Extensions"
2042
+ msgstr ""
2043
+
2044
+ #: includes/class-wcj-admin-bar.php:589
2045
+ msgid "Logs"
2046
+ msgstr ""
2047
+
2048
+ #: includes/class-wcj-admin-bar.php:577 includes/class-wcj-admin-bar.php:581
2049
+ msgid "System status"
2050
+ msgstr ""
2051
+
2052
+ #: includes/class-wcj-admin-bar.php:569
2053
+ msgid "Webhooks"
2054
+ msgstr ""
2055
+
2056
+ #: includes/class-wcj-admin-bar.php:565
2057
+ msgid "Keys/Apps"
2058
+ msgstr ""
2059
+
2060
+ #: includes/class-wcj-admin-bar.php:557
2061
+ msgid "API"
2062
+ msgstr ""
2063
+
2064
+ #: includes/class-wcj-admin-bar.php:543
2065
+ msgid "PayPal"
2066
+ msgstr ""
2067
+
2068
+ #: includes/class-wcj-admin-bar.php:539
2069
+ msgid "Cash on delivery"
2070
+ msgstr ""
2071
+
2072
+ #: includes/class-wcj-admin-bar.php:535
2073
+ msgid "Check payments"
2074
+ msgstr ""
2075
+
2076
+ #: includes/class-wcj-admin-bar.php:531
2077
+ msgid "BACS"
2078
+ msgstr ""
2079
+
2080
+ #: includes/class-wcj-admin-bar.php:527
2081
+ msgid "Checkout options"
2082
+ msgstr ""
2083
+
2084
+ #: includes/class-wcj-admin-bar.php:523
2085
+ msgid "Checkout"
2086
+ msgstr ""
2087
+
2088
+ #: includes/class-wcj-admin-bar.php:509
2089
+ msgid "Shipping zones"
2090
+ msgstr ""
2091
+
2092
+ #: includes/class-wcj-admin-bar.php:499
2093
+ msgid "Standard rates"
2094
+ msgstr ""
2095
+
2096
+ #: includes/class-wcj-admin-bar.php:495
2097
+ msgid "Tax options"
2098
+ msgstr ""
2099
+
2100
+ #: includes/class-wcj-admin-bar.php:491
2101
+ msgid "Tax"
2102
+ msgstr ""
2103
+
2104
+ #: includes/class-wcj-admin-bar.php:485
2105
+ msgid "Downloadable products"
2106
+ msgstr ""
2107
+
2108
+ #: includes/class-wcj-admin-bar.php:481
2109
+ msgid "Inventory"
2110
+ msgstr ""
2111
+
2112
+ #: includes/class-wcj-admin-bar.php:455
2113
+ msgid "Add coupon"
2114
+ msgstr ""
2115
+
2116
+ #: includes/class-wcj-admin-bar.php:447 includes/class-wcj-admin-bar.php:451
2117
+ msgid "Coupons"
2118
+ msgstr ""
2119
+
2120
+ #: includes/class-wcj-admin-bar.php:441
2121
+ msgid "Attributes"
2122
+ msgstr ""
2123
+
2124
+ #: includes/class-wcj-admin-bar.php:429
2125
+ msgid "Add product"
2126
+ msgstr ""
2127
+
2128
+ #: includes/class-wcj-admin-bar.php:413
2129
+ msgid "Taxes by date"
2130
+ msgstr ""
2131
+
2132
+ #: includes/class-wcj-admin-bar.php:409
2133
+ msgid "Taxes by code"
2134
+ msgstr ""
2135
+
2136
+ #: includes/class-wcj-admin-bar.php:399
2137
+ msgid "Most Stocked"
2138
+ msgstr ""
2139
+
2140
+ #: includes/class-wcj-admin-bar.php:395
2141
+ msgid "Out of stock"
2142
+ msgstr ""
2143
+
2144
+ #: includes/class-wcj-admin-bar.php:391
2145
+ msgid "Low in stock"
2146
+ msgstr ""
2147
+
2148
+ #: includes/class-wcj-admin-bar.php:381
2149
+ msgid "Customer list"
2150
+ msgstr ""
2151
+
2152
+ #: includes/class-wcj-admin-bar.php:377
2153
+ msgid "Customers vs. guests"
2154
+ msgstr ""
2155
+
2156
+ #: includes/class-wcj-admin-bar.php:358 includes/class-wcj-admin-bar.php:373
2157
+ #: includes/settings/wcj-settings-reports.php:115
2158
+ #: includes/settings/wcj-settings-reports.php:121
2159
+ msgid "Customers"
2160
+ msgstr "Clientes"
2161
+
2162
+ #: includes/class-wcj-admin-bar.php:354
2163
+ msgid "Add order"
2164
+ msgstr ""
2165
+
2166
+ #: includes/class-wcj-admin-bar.php:342
2167
+ msgid "WooCommerce settings"
2168
+ msgstr ""
2169
+
2170
+ #: includes/class-wcj-admin-bar.php:312
2171
+ #: includes/functions/wcj-reports-functions.php:52
2172
+ msgid "Last month"
2173
+ msgstr "Último mes"
2174
+
2175
+ #: includes/class-wcj-admin-bar.php:308
2176
+ #: includes/functions/wcj-reports-functions.php:57
2177
+ msgid "This month"
2178
+ msgstr "Este mes"
2179
+
2180
+ #: includes/class-wcj-admin-bar.php:304 includes/class-wcj-track-users.php:34
2181
+ #: includes/functions/wcj-reports-functions.php:62
2182
+ msgid "Last 7 days"
2183
+ msgstr "Últimos 7 días"
2184
+
2185
+ #: includes/class-wcj-admin-bar.php:296
2186
+ msgid "Coupons by date"
2187
+ msgstr ""
2188
+
2189
+ #: includes/class-wcj-admin-bar.php:295
2190
+ msgid "Sales by category"
2191
+ msgstr ""
2192
+
2193
+ #: includes/class-wcj-admin-bar.php:294
2194
+ msgid "Sales by product"
2195
+ msgstr ""
2196
+
2197
+ #: includes/class-wcj-admin-bar.php:293
2198
+ msgid "Sales by date"
2199
+ msgstr ""
2200
+
2201
+ #: includes/class-wcj-admin-bar.php:265
2202
+ msgid "Booster - Settings"
2203
+ msgstr ""
2204
+
2205
+ #: includes/class-wcj-admin-bar.php:213
2206
+ msgid "This dashboard lets you check statuses and short descriptions of all available Booster for WooCommerce tools. Tools can be enabled through WooCommerce > Settings > Booster."
2207
+ msgstr ""
2208
+
2209
+ #: includes/class-wcj-admin-bar.php:31
2210
+ msgid "WooCommerce admin bar."
2211
+ msgstr ""
2212
+
2213
+ #: includes/class-wcj-admin-bar.php:30
2214
+ msgid "Admin Bar"
2215
+ msgstr ""
2216
+
2217
+ #: includes/admin/class-wc-settings-jetpack.php:198
2218
+ msgid "Please note that <em>%s</em> module is currently under development. Until stable module version is released, options can be changed or some options can be moved to paid plugin version."
2219
+ msgstr ""
2220
+
2221
+ #: includes/admin/class-wc-settings-jetpack.php:187
2222
+ msgid "Module will be removed from the module's list as soon as you disable it."
2223
+ msgstr ""
2224
+
2225
+ #: includes/class-wcj-admin-bar.php:517
2226
+ msgid "Shipping classes"
2227
+ msgstr ""
2228
+
2229
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:100
2230
+ msgid "This affects \"Percent\" type fees and \"Minimum/Maximum Cart Amount\" options."
2231
+ msgstr ""
2232
+
2233
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:98
2234
+ msgid "Exclude Shipping when Calculating Total Cart Amount"
2235
+ msgstr ""
2236
+
2237
+ #: woocommerce-jetpack.php:507
2238
+ msgid "<strong>Booster for WooCommerce</strong> plugin was successfully updated to version <strong>%s</strong>."
2239
+ msgstr ""
2240
+
2241
+ #: includes/functions/wcj-admin-functions.php:144
2242
+ msgid "Get Booster Plus to enable \"%s\" option."
2243
+ msgstr ""
2244
+
2245
+ #: includes/functions/wcj-admin-functions.php:141
2246
+ msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" option."
2247
+ msgstr ""
2248
+
2249
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:184
2250
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:399
2251
+ msgid "Product URL"
2252
+ msgstr ""
2253
+
2254
+ #: includes/shortcodes/class-wcj-general-shortcodes.php:183
2255
+ #: includes/shortcodes/class-wcj-shortcodes.php:107
2256
+ msgid "\"%s\" module is not enabled!"
2257
+ msgstr ""
2258
+
2259
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:196
2260
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:155
2261
+ msgid "Table Total Rows"
2262
+ msgstr ""
2263
+
2264
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:153
2265
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
2266
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:106
2267
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:125
2268
+ msgid "By Total Cart Quantity Table"
2269
+ msgstr ""
2270
+
2271
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:98
2272
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:166
2273
+ msgid "Max Weight or Quantity"
2274
+ msgstr ""
2275
+
2276
+ #: includes/settings/wcj-settings-stock.php:42
2277
+ msgid "Custom Out of Stock Class"
2278
+ msgstr ""
2279
+
2280
+ #: includes/settings/wcj-settings-stock.php:29
2281
+ msgid "Custom Out of Stock HTML"
2282
+ msgstr ""
2283
+
2284
+ #: includes/settings/wcj-settings-price-formats.php:37
2285
+ #: includes/settings/wcj-settings-product-listings.php:180
2286
+ #: includes/settings/wcj-settings-product-listings.php:238
2287
+ #: includes/settings/wcj-settings-shipping-options.php:21
2288
+ #: includes/settings/wcj-settings-stock.php:23
2289
+ msgid "Enable section"
2290
+ msgstr ""
2291
+
2292
+ #: includes/settings/wcj-settings-stock.php:22
2293
+ msgid "Custom Out of Stock"
2294
+ msgstr ""
2295
+
2296
+ #: includes/settings/wcj-settings-stock.php:17
2297
+ msgid "Custom Out of Stock Options"
2298
+ msgstr ""
2299
+
2300
+ #: includes/settings/wcj-settings-related-products.php:32
2301
+ msgid "Menu order"
2302
+ msgstr ""
2303
+
2304
+ #: includes/settings/wcj-settings-related-products.php:31
2305
+ msgid "Modified"
2306
+ msgstr ""
2307
+
2308
+ #: includes/settings/wcj-settings-product-tabs.php:280
2309
+ msgid "Default \"Link - Open in New Window\""
2310
+ msgstr ""
2311
+
2312
+ #: includes/settings/wcj-settings-product-tabs.php:273
2313
+ msgid "Leave blank for default behaviour."
2314
+ msgstr ""
2315
+
2316
+ #: includes/settings/wcj-settings-product-tabs.php:272
2317
+ msgid "Default Link"
2318
+ msgstr ""
2319
+
2320
+ #: includes/settings/wcj-settings-product-open-pricing.php:107
2321
+ msgid "Add \"Open Pricing\" Column to Admin Product List"
2322
+ msgstr ""
2323
+
2324
+ #: includes/settings/wcj-settings-product-open-pricing.php:100
2325
+ msgid "Product price info in archives template. Replaceable values: <code>%default_price%</code>, <code>%min_price%</code>, <code>%max_price%</code>."
2326
+ msgstr ""
2327
+
2328
+ #: includes/settings/wcj-settings-product-open-pricing.php:93
2329
+ msgid "Display Product Price Info in Archives"
2330
+ msgstr ""
2331
+
2332
+ #: includes/settings/wcj-settings-product-input-fields.php:219
2333
+ msgid "HTML Template - End"
2334
+ msgstr ""
2335
+
2336
+ #: includes/settings/wcj-settings-product-input-fields.php:212
2337
+ msgid "HTML Template - Each Field"
2338
+ msgstr ""
2339
+
2340
+ #: includes/settings/wcj-settings-product-input-fields.php:205
2341
+ msgid "HTML Template - Start"
2342
+ msgstr ""
2343
+
2344
+ #: includes/settings/wcj-settings-product-images.php:120
2345
+ msgid "Hide on Single Page Only"
2346
+ msgstr ""
2347
+
2348
+ #: includes/settings/wcj-settings-product-images.php:108
2349
+ msgid "Hide Everywhere"
2350
+ msgstr ""
2351
+
2352
+ #: includes/settings/wcj-settings-product-by-user.php:148
2353
+ msgid "Custom Taxonomy"
2354
+ msgstr ""
2355
+
2356
+ #: includes/settings/wcj-settings-product-by-user.php:134
2357
+ msgid "Total Custom Taxonomies"
2358
+ msgstr ""
2359
+
2360
+ #: includes/settings/wcj-settings-product-by-user.php:94
2361
+ msgid "External/Affiliate product"
2362
+ msgstr ""
2363
+
2364
+ #: includes/settings/wcj-settings-product-by-user.php:88
2365
+ msgid "Product Type"
2366
+ msgstr ""
2367
+
2368
+ #: includes/settings/wcj-settings-product-by-user.php:71
2369
+ msgid "Used for price fields only."
2370
+ msgstr ""
2371
+
2372
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
2373
+ #: includes/settings/wcj-settings-offer-price.php:124
2374
+ #: includes/settings/wcj-settings-product-by-user.php:70
2375
+ msgid "Number of decimals"
2376
+ msgstr ""
2377
+
2378
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:24
2379
+ #: includes/settings/wcj-settings-offer-price.php:123
2380
+ #: includes/settings/wcj-settings-product-by-user.php:69
2381
+ msgid "Price Step"
2382
+ msgstr ""
2383
+
2384
+ #: includes/settings/wcj-settings-product-by-user.php:18
2385
+ msgid "Product URL (for \"External/Affiliate\" product type only)"
2386
+ msgstr ""
2387
+
2388
+ #: includes/settings/wcj-settings-product-by-time.php:83
2389
+ msgid "Replaceable value:"
2390
+ msgstr ""
2391
+
2392
+ #: includes/settings/wcj-settings-product-by-time.php:82
2393
+ msgid "Message when product is not available by time (day off)."
2394
+ msgstr ""
2395
+
2396
+ #: includes/settings/wcj-settings-product-by-time.php:81
2397
+ msgid "Message (Day Off)"
2398
+ msgstr ""
2399
+
2400
+ #: includes/settings/wcj-settings-product-by-date.php:72
2401
+ #: includes/settings/wcj-settings-product-by-date.php:84
2402
+ #: includes/settings/wcj-settings-product-by-time.php:72
2403
+ #: includes/settings/wcj-settings-product-by-time.php:84
2404
+ msgid "You can also use shortcodes here."
2405
+ msgstr ""
2406
+
2407
+ #: includes/settings/wcj-settings-product-by-time.php:71
2408
+ msgid "Replaceable values:"
2409
+ msgstr ""
2410
+
2411
+ #: includes/settings/wcj-settings-product-by-time.php:70
2412
+ msgid "Message when product is not available by time."
2413
+ msgstr ""
2414
+
2415
+ #: includes/settings/wcj-settings-product-by-time.php:22
2416
+ msgid "Time formats:"
2417
+ msgstr ""
2418
+
2419
+ #: includes/settings/wcj-settings-product-by-time.php:20
2420
+ msgid "Product by Time"
2421
+ msgstr ""
2422
+
2423
+ #: includes/settings/wcj-settings-product-by-time.php:15
2424
+ msgid "Local time is <code>%s</code>."
2425
+ msgstr ""
2426
+
2427
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:36
2428
+ msgid "Additional Columns"
2429
+ msgstr ""
2430
+
2431
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:28
2432
+ msgid "When enabled - variations of variable products will be added to the list. If you want to edit only main product's meta, disable this option."
2433
+ msgstr ""
2434
+
2435
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:27
2436
+ msgid "Add Variations to Products List"
2437
+ msgstr ""
2438
+
2439
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:20
2440
+ msgid "When enabled - meta can be changed only if it already existed for product. If you want to be able to create new meta for products, disable this option."
2441
+ msgstr ""
2442
+
2443
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:19
2444
+ msgid "Check if Meta Exists"
2445
+ msgstr ""
2446
+
2447
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:14
2448
+ msgid "Product Bulk Meta Editor Tool Options"
2449
+ msgstr ""
2450
+
2451
+ #: includes/settings/wcj-settings-product-add-to-cart.php:273
2452
+ msgid "Change \"View cart\" Text"
2453
+ msgstr ""
2454
+
2455
+ #: includes/settings/wcj-settings-product-add-to-cart.php:259
2456
+ msgid "Change \"Continue shopping\" Text"
2457
+ msgstr ""
2458
+
2459
+ #: includes/settings/wcj-settings-product-add-to-cart.php:254
2460
+ msgid "Add to Cart Message Options"
2461
+ msgstr ""
2462
+
2463
+ #: includes/settings/wcj-settings-price-by-user-role.php:115
2464
+ #: includes/settings/wcj-settings-product-listings.php:187
2465
+ #: includes/settings/wcj-settings-shipping.php:51
2466
+ msgid "Save module's settings after changing this option to see new settings fields."
2467
+ msgstr ""
2468
+
2469
+ #: includes/settings/wcj-settings-price-by-user-role.php:109
2470
+ msgid "Price by User Role by Products Categories"
2471
+ msgstr ""
2472
+
2473
+ #: includes/settings/wcj-settings-price-by-user-role.php:27
2474
+ msgid "Per Product Settings Type"
2475
+ msgstr ""
2476
+
2477
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:150
2478
+ msgid "Add PDF Invoices Meta Box to Admin Edit Order Page"
2479
+ msgstr ""
2480
+
2481
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:145
2482
+ msgid "General Display Options"
2483
+ msgstr ""
2484
+
2485
+ #: includes/settings/wcj-settings-orders.php:111
2486
+ #: includes/settings/wcj-settings-product-listings.php:218
2487
+ msgid "You can use shortcodes and/or HTML here."
2488
+ msgstr ""
2489
+
2490
+ #: includes/settings/wcj-settings-orders.php:67
2491
+ #: includes/settings/wcj-settings-orders.php:74
2492
+ msgid "Add column and filtering"
2493
+ msgstr ""
2494
+
2495
+ #: includes/settings/wcj-settings-order-custom-statuses.php:62
2496
+ msgid "Show \"Complete\" only"
2497
+ msgstr ""
2498
+
2499
+ #: includes/settings/wcj-settings-order-custom-statuses.php:61
2500
+ msgid "Show \"Processing\" only"
2501
+ msgstr ""
2502
+
2503
+ #: includes/settings/wcj-settings-order-custom-statuses.php:60
2504
+ msgid "Show both"
2505
+ msgstr ""
2506
+
2507
+ #: includes/settings/wcj-settings-order-custom-statuses.php:55
2508
+ msgid "By default, when order has custom status, \"Processing\" and \"Complete\" action buttons are hidden. You can enable it here. Possible values are: Show both; Show \"Processing\" only; Show \"Complete\" only; Hide (default)."
2509
+ msgstr ""
2510
+
2511
+ #: includes/settings/wcj-settings-order-custom-statuses.php:54
2512
+ msgid "\"Processing\" and \"Complete\" Action Buttons"
2513
+ msgstr ""
2514
+
2515
+ #: includes/settings/wcj-settings-order-custom-statuses.php:20
2516
+ msgid "Enable the module to add custom statuses to the list."
2517
+ msgstr ""
2518
+
2519
+ #: includes/settings/wcj-settings-multicurrency.php:75
2520
+ msgid "Currency Switcher Template"
2521
+ msgstr ""
2522
+
2523
+ #: includes/settings/wcj-settings-empty-cart.php:15
2524
+ msgid "You can also use <strong>[wcj_empty_cart_button]</strong> shortcode to place the button anywhere on your site."
2525
+ msgstr ""
2526
+
2527
+ #: includes/settings/wcj-settings-emails-verification.php:35
2528
+ msgid "Redirect to \"My Account\" Page After Successful Verification"
2529
+ msgstr ""
2530
+
2531
+ #: includes/settings/wcj-settings-custom-js.php:26
2532
+ msgid "Custom JS - Back end (Admin)"
2533
+ msgstr ""
2534
+
2535
+ #: includes/settings/wcj-settings-custom-js.php:19
2536
+ msgid "Custom JS - Front end (Customers)"
2537
+ msgstr ""
2538
+
2539
+ #: includes/settings/wcj-settings-custom-css.php:42
2540
+ msgid "Custom CSS on per Product Basis - Default Field Value"
2541
+ msgstr ""
2542
+
2543
+ #: includes/settings/wcj-settings-custom-css.php:35
2544
+ msgid "Set product specific CSS to be loaded only on specific product's single page."
2545
+ msgstr ""
2546
+
2547
+ #: includes/settings/wcj-settings-custom-css.php:33
2548
+ msgid "Custom CSS on per Product Basis"
2549
+ msgstr ""
2550
+
2551
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:276
2552
+ #: includes/settings/wcj-settings-global-discount.php:126
2553
+ #: includes/settings/wcj-settings-related-products.php:212
2554
+ msgid "Include Products"
2555
+ msgstr ""
2556
+
2557
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:268
2558
+ msgid "Hide this field if there is a selected product in cart."
2559
+ msgstr ""
2560
+
2561
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:267
2562
+ #: includes/settings/wcj-settings-global-discount.php:137
2563
+ #: includes/settings/wcj-settings-product-addons.php:139
2564
+ #: includes/settings/wcj-settings-related-products.php:223
2565
+ msgid "Exclude Products"
2566
+ msgstr ""
2567
+
2568
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:258
2569
+ msgid "Include Categories"
2570
+ msgstr ""
2571
+
2572
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:250
2573
+ msgid "Hide this field if there is a product of selected category in cart."
2574
+ msgstr ""
2575
+
2576
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:243
2577
+ msgid "minutes"
2578
+ msgstr ""
2579
+
2580
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:236
2581
+ msgid "Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for valid time formats"
2582
+ msgstr ""
2583
+
2584
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:235
2585
+ msgid "Timepicker: Time Format"
2586
+ msgstr ""
2587
+
2588
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:220
2589
+ msgid "Datepicker/Weekpicker: First Week Day"
2590
+ msgstr ""
2591
+
2592
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:213
2593
+ msgid "Datepicker/Weekpicker: Year Selector: Year Range"
2594
+ msgstr ""
2595
+
2596
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:207
2597
+ msgid "Datepicker/Weekpicker: Add Year Selector"
2598
+ msgstr ""
2599
+
2600
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:200
2601
+ msgid "Datepicker/Weekpicker: Max Date"
2602
+ msgstr ""
2603
+
2604
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:193
2605
+ msgid "Datepicker/Weekpicker: Min Date"
2606
+ msgstr ""
2607
+
2608
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:186
2609
+ msgid "Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">documentation on date and time formatting</a> for valid date formats"
2610
+ msgstr ""
2611
+
2612
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:185
2613
+ msgid "Datepicker/Weekpicker: Date Format"
2614
+ msgstr ""
2615
+
2616
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:176
2617
+ msgid "Checkbox: Default Value"
2618
+ msgstr ""
2619
+
2620
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:170
2621
+ msgid "Checkbox: Value for OFF"
2622
+ msgstr ""
2623
+
2624
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:164
2625
+ msgid "Checkbox: Value for ON"
2626
+ msgstr ""
2627
+
2628
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:156
2629
+ msgid "One option per line"
2630
+ msgstr "Una opción por línea"
2631
+
2632
+ #: includes/class-wcj-product-tabs.php:560
2633
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:70
2634
+ #: includes/settings/wcj-settings-product-tabs.php:59
2635
+ msgid "Key"
2636
+ msgstr ""
2637
+
2638
+ #: includes/settings/wcj-settings-checkout-core-fields.php:109
2639
+ msgid "Leave zero for WooCommerce defaults."
2640
+ msgstr ""
2641
+
2642
+ #: includes/settings/wcj-settings-checkout-core-fields.php:108
2643
+ msgid "priority (i.e. order)"
2644
+ msgstr ""
2645
+
2646
+ #: includes/settings/wcj-settings-cart-customization.php:33
2647
+ msgid "Change Empty Cart \"Return to shop\" Button Text"
2648
+ msgstr ""
2649
+
2650
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:76
2651
+ #: includes/settings/wcj-settings-price-by-user-role.php:33
2652
+ msgid "Multiplier"
2653
+ msgstr ""
2654
+
2655
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
2656
+ msgid "Add CSS"
2657
+ msgstr ""
2658
+
2659
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:267
2660
+ msgid "Booster: PDF Invoices"
2661
+ msgstr ""
2662
+
2663
+ #: includes/class-wcj-stock.php:27
2664
+ msgid "WooCommerce products stock management."
2665
+ msgstr ""
2666
+
2667
+ #: includes/class-wcj-shipping-by-user-role.php:26
2668
+ msgid "Set user roles to include/exclude for WooCommerce shipping methods to show up."
2669
+ msgstr ""
2670
+
2671
+ #: includes/class-wcj-shipping-by-user-role.php:25
2672
+ msgid "Shipping Methods by User Role"
2673
+ msgstr ""
2674
+
2675
+ #: includes/functions/wcj-reports-functions.php:110
2676
+ msgid "Last 36 months"
2677
+ msgstr "Últimos 36 meses"
2678
+
2679
+ #: includes/class-wcj-product-tabs.php:581
2680
+ #: includes/settings/wcj-settings-product-tabs.php:88
2681
+ msgid "Link - Open in New Window"
2682
+ msgstr ""
2683
+
2684
+ #: includes/class-wcj-product-tabs.php:577
2685
+ #: includes/settings/wcj-settings-product-tabs.php:81
2686
+ msgid "If you wish to forward tab to new link, enter it here. In this case content is ignored. Leave blank to show content."
2687
+ msgstr ""
2688
+
2689
+ #: includes/class-wcj-product-tabs.php:575
2690
+ #: includes/settings/wcj-settings-cart-customization.php:63
2691
+ #: includes/settings/wcj-settings-product-tabs.php:80
2692
+ msgid "Link"
2693
+ msgstr ""
2694
+
2695
+ #: includes/class-wcj-product-open-pricing.php:69
2696
+ msgid "Open Pricing"
2697
+ msgstr ""
2698
+
2699
+ #: includes/class-wcj-product-by-user.php:29
2700
+ msgid "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload form to frontend."
2701
+ msgstr ""
2702
+
2703
+ #: includes/class-wcj-product-by-time.php:94
2704
+ #: includes/class-wcj-product-by-time.php:96
2705
+ #: includes/settings/wcj-settings-product-by-time.php:75
2706
+ msgid "<p style=\"color:red;\">%product_title% is available only at %time_today% today.</p>"
2707
+ msgstr ""
2708
+
2709
+ #: includes/class-wcj-product-by-time.php:91
2710
+ #: includes/class-wcj-product-by-time.php:93
2711
+ #: includes/settings/wcj-settings-product-by-time.php:87
2712
+ msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
2713
+ msgstr ""
2714
+
2715
+ #: includes/class-wcj-product-by-time.php:30
2716
+ msgid "WooCommerce product availability by time."
2717
+ msgstr ""
2718
+
2719
+ #: includes/class-wcj-product-by-time.php:29
2720
+ msgid "Product Availability by Time"
2721
+ msgstr ""
2722
+
2723
+ #: includes/class-wcj-product-bulk-meta-editor.php:417
2724
+ msgid "Show all"
2725
+ msgstr ""
2726
+
2727
+ #: includes/class-wcj-product-bulk-meta-editor.php:395
2728
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
2729
+ msgid "Meta keys"
2730
+ msgstr ""
2731
+
2732
+ #: includes/class-wcj-product-bulk-meta-editor.php:392
2733
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
2734
+ msgid "Product status"
2735
+ msgstr ""
2736
+
2737
+ #: includes/class-wcj-product-bulk-meta-editor.php:364
2738
+ msgid "Save"
2739
+ msgstr ""
2740
+
2741
+ #: includes/class-wcj-product-bulk-meta-editor.php:323
2742
+ msgid "Delete all"
2743
+ msgstr ""
2744
+
2745
+ #: includes/class-wcj-product-bulk-meta-editor.php:320
2746
+ msgid "Save all"
2747
+ msgstr ""
2748
+
2749
+ #: includes/class-wcj-product-bulk-meta-editor.php:303
2750
+ msgid "Set Meta for All Products"
2751
+ msgstr ""
2752
+
2753
+ #: includes/class-wcj-product-bulk-meta-editor.php:299
2754
+ msgid "Set"
2755
+ msgstr ""
2756
+
2757
+ #: includes/class-wcj-product-bulk-meta-editor.php:259
2758
+ msgid "Hold <strong>Control</strong> key to select multiple products. Press <strong>Control</strong> + <strong>A</strong> to select all products."
2759
+ msgstr ""
2760
+
2761
+ #: includes/class-wcj-product-bulk-meta-editor.php:226
2762
+ msgid "for example %s"
2763
+ msgstr ""
2764
+
2765
+ #: includes/class-wcj-product-bulk-meta-editor.php:224
2766
+ msgid "Meta key"
2767
+ msgstr ""
2768
+
2769
+ #: includes/class-wcj-product-bulk-meta-editor.php:187
2770
+ msgid "Meta for <strong>%d</strong> product(s) was not updated."
2771
+ msgstr ""
2772
+
2773
+ #: includes/class-wcj-product-bulk-meta-editor.php:184
2774
+ msgid "Meta for <strong>%d</strong> product(s) was updated."
2775
+ msgstr ""
2776
+
2777
+ #: includes/class-wcj-product-bulk-meta-editor.php:164
2778
+ msgid "Please enter meta key."
2779
+ msgstr ""
2780
+
2781
+ #: includes/class-wcj-product-bulk-meta-editor.php:33
2782
+ msgid "Product Bulk Meta Editor Tool."
2783
+ msgstr ""
2784
+
2785
+ #: includes/class-wcj-product-bulk-meta-editor.php:26
2786
+ msgid "Set WooCommerce products meta with bulk editor."
2787
+ msgstr ""
2788
+
2789
+ #: includes/class-wcj-product-bulk-meta-editor.php:25
2790
+ #: includes/class-wcj-product-bulk-meta-editor.php:32
2791
+ msgid "Product Bulk Meta Editor"
2792
+ msgstr ""
2793
+
2794
+ #: includes/class-wcj-product-add-to-cart.php:153
2795
+ #: includes/settings/wcj-settings-product-add-to-cart.php:283
2796
+ msgid "View cart"
2797
+ msgstr "Ver carrito"
2798
+
2799
+ #: includes/class-wcj-product-add-to-cart.php:151
2800
+ #: includes/settings/wcj-settings-product-add-to-cart.php:269
2801
+ msgid "Continue shopping"
2802
+ msgstr ""
2803
+
2804
+ #: includes/class-wcj-product-add-to-cart.php:147
2805
+ msgid "%s has been added to your cart."
2806
+ msgid_plural "%s have been added to your cart."
2807
+ msgstr[0] ""
2808
+ msgstr[1] ""
2809
+
2810
+ #: includes/class-wcj-product-add-to-cart.php:142
2811
+ msgctxt "Item name in quotes"
2812
+ msgid "&ldquo;%s&rdquo;"
2813
+ msgstr ""
2814
+
2815
+ #: includes/class-wcj-product-add-to-cart.php:32
2816
+ msgid "Customize Add to Cart messages."
2817
+ msgstr ""
2818
+
2819
+ #: includes/class-wcj-orders.php:354
2820
+ #: includes/settings/wcj-settings-orders.php:73
2821
+ msgid "Currency Code"
2822
+ msgstr ""
2823
+
2824
+ #: includes/class-wcj-orders.php:311
2825
+ msgid "All currencies"
2826
+ msgstr ""
2827
+
2828
+ #: includes/class-wcj-order-custom-statuses.php:130
2829
+ msgid "Complete"
2830
+ msgstr ""
2831
+
2832
+ #: includes/class-wcj-order-custom-statuses.php:123
2833
+ msgid "Processing"
2834
+ msgstr ""
2835
+
2836
+ #: includes/class-wcj-old-slugs.php:116
2837
+ msgid "Remove all old non-product slugs"
2838
+ msgstr ""
2839
+
2840
+ #: includes/class-wcj-old-slugs.php:113
2841
+ msgid "Old non-products slugs found:"
2842
+ msgstr ""
2843
+
2844
+ #: includes/class-wcj-old-slugs.php:110
2845
+ msgid "Remove all old product slugs"
2846
+ msgstr ""
2847
+
2848
+ #: includes/class-wcj-old-slugs.php:87
2849
+ msgid "Please <a href=\"\">refresh</a> the page."
2850
+ msgstr ""
2851
+
2852
+ #: includes/class-wcj-old-slugs.php:85
2853
+ msgid "Removing old slugs from database finished! <strong>%d</strong> old slug(s) deleted."
2854
+ msgstr ""
2855
+
2856
+ #: includes/class-wcj-old-slugs.php:52
2857
+ msgid "Current slug"
2858
+ msgstr ""
2859
+
2860
+ #: includes/class-wcj-old-slugs.php:51
2861
+ msgid "Post type"
2862
+ msgstr ""
2863
+
2864
+ #: includes/class-wcj-old-slugs.php:50
2865
+ msgid "Post id"
2866
+ msgstr ""
2867
+
2868
+ #: includes/class-wcj-old-slugs.php:49
2869
+ msgid "Post title"
2870
+ msgstr ""
2871
+
2872
+ #: includes/class-wcj-old-slugs.php:48
2873
+ msgid "Old slug"
2874
+ msgstr ""
2875
+
2876
+ #: includes/class-wcj-emails-verification.php:175
2877
+ #: includes/settings/wcj-settings-emails-verification.php:84
2878
+ msgid "<strong>Success:</strong> Your activation email has been resend. Please check your email."
2879
+ msgstr ""
2880
+
2881
+ #: includes/class-wcj-emails-verification.php:170
2882
+ #: includes/settings/wcj-settings-emails-verification.php:77
2883
+ msgid "Thank you for your registration. Your account has to be activated before you can login. Please check your email."
2884
+ msgstr ""
2885
+
2886
+ #: includes/class-wcj-emails-verification.php:152
2887
+ #: includes/settings/wcj-settings-emails-verification.php:54
2888
+ msgid "<strong>Success:</strong> Your account has been activated!"
2889
+ msgstr ""
2890
+
2891
+ #: includes/class-wcj-emails-verification.php:128
2892
+ #: includes/class-wcj-emails-verification.php:130
2893
+ #: includes/settings/wcj-settings-emails-verification.php:100
2894
+ msgid "Please activate your account"
2895
+ msgstr ""
2896
+
2897
+ #: includes/class-wcj-emails-verification.php:123
2898
+ #: includes/class-wcj-emails-verification.php:125
2899
+ #: includes/settings/wcj-settings-emails-verification.php:110
2900
+ msgid "Please click the following link to verify your email:<br><br><a href=\"%verification_url%\">%verification_url%</a>"
2901
+ msgstr ""
2902
+
2903
+ #: includes/class-wcj-emails-verification.php:102
2904
+ #: includes/settings/wcj-settings-emails-verification.php:62
2905
+ msgid "Your account has to be activated before you can login. You can resend email with verification link by clicking <a href=\"%resend_verification_url%\">here</a>."
2906
+ msgstr ""
2907
+
2908
+ #: includes/class-wcj-emails-verification.php:27
2909
+ msgid "Add WooCommerce email verification."
2910
+ msgstr ""
2911
+
2912
+ #: includes/class-wcj-emails-verification.php:26
2913
+ msgid "Email Verification"
2914
+ msgstr ""
2915
+
2916
+ #: includes/class-wcj-custom-js.php:28
2917
+ msgid "Custom JS"
2918
+ msgstr ""
2919
+
2920
+ #: includes/class-wcj-custom-css.php:29
2921
+ msgid "Separate custom CSS for front and back end. Per product CSS."
2922
+ msgstr ""
2923
+
2924
+ #: includes/class-wcj-cart-customization.php:62
2925
+ #: includes/class-wcj-cart-customization.php:100
2926
+ #: includes/settings/wcj-settings-cart-customization.php:52
2927
+ #: includes/templates/cart-empty.php:33
2928
+ msgid "Return to shop"
2929
+ msgstr ""
2930
+
2931
+ #: includes/class-wcj-cart-customization.php:26
2932
+ msgid "Customize WooCommerce cart - hide coupon field; item remove link; change empty cart \"Return to shop\" button text."
2933
+ msgstr ""
2934
+
2935
+ #: includes/class-wcj-general.php:28
2936
+ msgid "Custom roles tool. Shortcodes in WordPress text widgets."
2937
+ msgstr ""
2938
+
2939
+ #: includes/class-wcj-custom-js.php:29
2940
+ msgid "Separate custom JS for front and back end."
2941
+ msgstr ""
2942
+
2943
+ #: includes/input-fields/wcj-product-input-fields-options.php:193
2944
+ msgid "Timepicker: Max Time"
2945
+ msgstr ""
2946
+
2947
+ #: includes/input-fields/wcj-product-input-fields-options.php:192
2948
+ msgid "If timepicker is selected, set max time here. Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for valid option formats"
2949
+ msgstr ""
2950
+
2951
+ #: includes/input-fields/wcj-product-input-fields-options.php:186
2952
+ msgid "Timepicker: Min Time"
2953
+ msgstr ""
2954
+
2955
+ #: includes/input-fields/wcj-product-input-fields-options.php:185
2956
+ msgid "If timepicker is selected, set min time here. Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for valid option formats"
2957
+ msgstr ""
2958
+
2959
+ #: includes/input-fields/wcj-product-input-fields-options.php:178
2960
+ msgid "If timepicker is selected, set time format here. Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for valid time formats"
2961
+ msgstr ""
2962
+
2963
+ #: includes/input-fields/wcj-product-input-fields-options.php:125
2964
+ msgid "If datepicker/weekpicker is selected, set date format here. Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">documentation on date and time formatting</a> for valid date formats"
2965
+ msgstr ""
2966
+
2967
+ #: includes/input-fields/wcj-product-input-fields-options.php:111
2968
+ msgid "Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target=\"_blank\">documentation on input accept attribute</a> for valid option formats"
2969
+ msgstr ""
2970
+
2971
+ #: includes/settings/wcj-settings-sku.php:188
2972
+ msgid "Generate SKUs Only for Products with Empty SKU"
2973
+ msgstr ""
2974
+
2975
+ #: includes/settings/wcj-settings-sku.php:158
2976
+ msgid "Alternatively you can use Autogenerate SKUs tool."
2977
+ msgstr ""
2978
+
2979
+ #: includes/class-wcj-sku.php:337
2980
+ msgid "Old SKU"
2981
+ msgstr ""
2982
+
2983
+ #: includes/functions/wcj-reports-functions.php:120
2984
+ msgid "Same days last year"
2985
+ msgstr "Mismos días el último año"
2986
+
2987
+ #: includes/class-wcj-products-per-page.php:29
2988
+ msgid "Add \"products per page\" selector to WooCommerce."
2989
+ msgstr ""
2990
+
2991
+ #: includes/settings/wcj-settings-product-listings.php:97
2992
+ msgid " Excludes one or more categories from the category (archive) pages. Leave blank to disable."
2993
+ msgstr ""
2994
+
2995
+ #: includes/settings/wcj-settings-product-listings.php:81
2996
+ msgid "You can control what is shown on category archives in <a href=\"%s\">WooCommerce > Settings > Products > Display > Default category display</a>."
2997
+ msgstr ""
2998
+
2999
+ #: includes/settings/wcj-settings-product-listings.php:51
3000
+ msgid " Excludes one or more categories from the shop page. Leave blank to disable."
3001
+ msgstr ""
3002
+
3003
+ #: includes/settings/wcj-settings-product-listings.php:37
3004
+ msgid "You can control what is shown on the product archive in <a href=\"%s\">WooCommerce > Settings > Products > Display > Shop page display</a>."
3005
+ msgstr ""
3006
+
3007
+ #: includes/settings/wcj-settings-product-add-to-cart.php:18
3008
+ msgid "For archives - \"Enable AJAX add to cart buttons on archives\" checkbox in <a href=\"%s\">WooCommerce > Settings > Products > Display</a> must be disabled."
3009
+ msgstr ""
3010
+
3011
+ #: includes/settings/wcj-settings-price-labels.php:89
3012
+ msgid "Enter text to display instead of the price. Leave blank to disable."
3013
+ msgstr ""
3014
+
3015
+ #: includes/settings/wcj-settings-price-by-country.php:64
3016
+ msgid "Checkout only"
3017
+ msgstr ""
3018
+
3019
+ #: includes/settings/wcj-settings-price-by-country.php:62
3020
+ msgid "All site"
3021
+ msgstr ""
3022
+
3023
+ #: includes/settings/wcj-settings-price-by-country.php:57
3024
+ msgid "Override Scope"
3025
+ msgstr ""
3026
+
3027
+ #: includes/settings/wcj-settings-pdf-invoicing.php:44
3028
+ msgid "Save changes after setting this number."
3029
+ msgstr ""
3030
+
3031
+ #: includes/settings/wcj-settings-pdf-invoicing.php:43
3032
+ msgid "Number of Custom Documents"
3033
+ msgstr ""
3034
+
3035
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:91
3036
+ msgid "If Taxing is enabled, set tax class here."
3037
+ msgstr ""
3038
+
3039
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:84
3040
+ msgid "Taxable"
3041
+ msgstr ""
3042
+
3043
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:83
3044
+ msgid "Taxing"
3045
+ msgstr ""
3046
+
3047
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:59
3048
+ msgid "Maximum Cart Amount"
3049
+ msgstr ""
3050
+
3051
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:50
3052
+ msgid "Minimum Cart Amount"
3053
+ msgstr ""
3054
+
3055
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:23
3056
+ msgid "Fee (or Discount) Title"
3057
+ msgstr ""
3058
+
3059
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:23
3060
+ msgid "If payment gateway is only available for certain methods, set it up here. Leave blank to enable for all methods."
3061
+ msgstr ""
3062
+
3063
+ #: includes/class-wcj-payment-gateways-by-shipping.php:26
3064
+ msgid "Set \"enable for shipping methods\" for WooCommerce payment gateways."
3065
+ msgstr ""
3066
+
3067
+ #: includes/class-wcj-payment-gateways-by-shipping.php:25
3068
+ msgid "Gateways by Shipping"
3069
+ msgstr ""
3070
+
3071
+ #: includes/settings/wcj-settings-order-numbers.php:27
3072
+ #: includes/settings/wcj-settings-sku.php:28
3073
+ msgid "Pseudorandom - Hash (max 10 digits)"
3074
+ msgstr ""
3075
+
3076
+ #: includes/class-wcj-mini-cart.php:25
3077
+ msgid "Add custom info to WooCommerce mini cart widget."
3078
+ msgstr ""
3079
+
3080
+ #: includes/class-wcj-mini-cart.php:24
3081
+ msgid "Mini Cart Custom Info"
3082
+ msgstr ""
3083
+
3084
+ #: includes/settings/wcj-settings-url-coupons.php:22
3085
+ msgid "URL key. If you change this, make sure it's unique and is not used anywhere on your site (e.g. by another plugin)."
3086
+ msgstr ""
3087
+
3088
+ #: includes/settings/wcj-settings-url-coupons.php:21
3089
+ msgid "URL Coupons Key"
3090
+ msgstr ""
3091
+
3092
+ #: includes/class-wcj-url-coupons.php:25
3093
+ msgid "URL Coupons"
3094
+ msgstr ""
3095
+
3096
+ #: includes/settings/wcj-settings-url-coupons.php:15
3097
+ msgid "Additionally you can hide standard coupon field on cart page in Booster's <a href=\"%s\">Cart Customization</a> module."
3098
+ msgstr ""
3099
+
3100
+ #: includes/class-wcj-general.php:34
3101
+ msgid "Products Attributes"
3102
+ msgstr ""
3103
+
3104
+ #: includes/settings/wcj-settings-email-options.php:27
3105
+ msgid "You can use <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</a> here."
3106
+ msgstr ""
3107
+
3108
+ #: includes/settings/wcj-settings-email-options.php:26
3109
+ #: includes/settings/wcj-settings-track-users.php:26
3110
+ msgid "Info"
3111
+ msgstr ""
3112
+
3113
+ #: includes/settings/wcj-settings-email-options.php:19
3114
+ msgid "Add Product Info to Item Name"
3115
+ msgstr ""
3116
+
3117
+ #: includes/settings/wcj-settings-email-options.php:14
3118
+ msgid "Product Info in Item Name"
3119
+ msgstr ""
3120
+
3121
+ #: includes/class-wcj-custom-css.php:28
3122
+ msgid "Custom CSS"
3123
+ msgstr ""
3124
+
3125
+ #: includes/settings/wcj-settings-currency-per-product.php:122
3126
+ msgid "Exchange rates for currencies won't be used if \"Cart and Checkout Behaviour\" is set to one of \"Leave product currency ...\" options."
3127
+ msgstr ""
3128
+
3129
+ #: includes/settings/wcj-settings-currency-per-product.php:97
3130
+ msgid "Exchange Rates Updates Options"
3131
+ msgstr ""
3132
+
3133
+ #: includes/class-wcj-offer-price.php:115
3134
+ #: includes/settings/wcj-settings-currency-per-product.php:41
3135
+ #: includes/settings/wcj-settings-currency-per-product.php:48
3136
+ #: includes/settings/wcj-settings-product-by-date.php:69
3137
+ #: includes/settings/wcj-settings-product-by-time.php:69
3138
+ msgid "Message"
3139
+ msgstr ""
3140
+
3141
+ #: includes/settings/wcj-settings-currency-per-product.php:37
3142
+ msgid "Convert to currency of first product in cart"
3143
+ msgstr ""
3144
+
3145
+ #: includes/settings/wcj-settings-currency-per-product.php:36
3146
+ msgid "Convert to currency of last product in cart"
3147
+ msgstr ""
3148
+
3149
+ #: includes/settings/wcj-settings-currency-per-product.php:35
3150
+ #: includes/settings/wcj-settings-currency-per-product.php:48
3151
+ msgid "Leave product currency (allow only same currency products to be added to cart)"
3152
+ msgstr ""
3153
+
3154
+ #: includes/settings/wcj-settings-currency-per-product.php:34
3155
+ #: includes/settings/wcj-settings-currency-per-product.php:41
3156
+ msgid "Leave product currency (allow only one product to be added to cart)"
3157
+ msgstr ""
3158
+
3159
+ #: includes/settings/wcj-settings-currency-per-product.php:33
3160
+ msgid "Convert to shop default currency"
3161
+ msgstr ""
3162
+
3163
+ #: includes/settings/wcj-settings-currency-per-product.php:28
3164
+ msgid "Cart and Checkout Behaviour"
3165
+ msgstr ""
3166
+
3167
+ #: includes/settings/wcj-settings-currency-per-product.php:23
3168
+ msgid "Cart and Checkout Behaviour Options"
3169
+ msgstr ""
3170
+
3171
+ #: includes/class-wcj-currency-per-product.php:211
3172
+ #: includes/settings/wcj-settings-currency-per-product.php:50
3173
+ msgid "Only products with same currency can be added to the cart. Clear the cart or finish the order, before adding products with another currency to the cart."
3174
+ msgstr ""
3175
+
3176
+ #: includes/class-wcj-currency-per-product.php:196
3177
+ #: includes/settings/wcj-settings-currency-per-product.php:43
3178
+ msgid "Only one product can be added to the cart. Clear the cart or finish the order, before adding another product to the cart."
3179
+ msgstr ""
3180
+
3181
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:93
3182
+ msgid "If for some reason currency exchange rates are not updating, try enabling this option."
3183
+ msgstr ""
3184
+
3185
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:91
3186
+ msgid "Always Use cURL"
3187
+ msgstr ""
3188
+
3189
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:85
3190
+ msgid "If your currency pair have very small exchange rate, you may want to invert currencies before calculating the rate."
3191
+ msgstr ""
3192
+
3193
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:83
3194
+ msgid "Calculate with Inversion"
3195
+ msgstr ""
3196
+
3197
+ #: includes/class-wcj-crowdfunding.php:37
3198
+ msgid "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels module</a>."
3199
+ msgstr ""
3200
+
3201
+ #: includes/class-wcj-crowdfunding.php:33
3202
+ msgid "Shortcodes could be used for example in <a href=\"%s\">Product Info module</a>."
3203
+ msgstr ""
3204
+
3205
+ #: includes/class-wcj-crowdfunding.php:29
3206
+ msgid "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank\">Booster's crowdfunding shortcodes</a>."
3207
+ msgstr ""
3208
+
3209
+ #: includes/settings/wcj-settings-checkout-customization.php:27
3210
+ msgid "Not checked"
3211
+ msgstr ""
3212
+
3213
+ #: includes/settings/wcj-settings-checkout-customization.php:25
3214
+ msgid "WooCommerce default"
3215
+ msgstr ""
3216
+
3217
+ #: includes/settings/wcj-settings-checkout-customization.php:20
3218
+ msgid "\"Create an account?\" checkbox default value"
3219
+ msgstr ""
3220
+
3221
+ #: includes/settings/wcj-settings-checkout-customization.php:19
3222
+ msgid "\"Create an account?\" Checkbox"
3223
+ msgstr ""
3224
+
3225
+ #: includes/class-wcj-checkout-customization.php:29
3226
+ msgid "Checkout Customization"
3227
+ msgstr ""
3228
+
3229
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:43
3230
+ #: includes/settings/wcj-settings-product-input-fields.php:60
3231
+ msgid "Click Save changes after you change this number."
3232
+ msgstr ""
3233
+
3234
+ #: includes/settings/wcj-settings-cart-customization.php:26
3235
+ msgid "Hide Item Remove Link"
3236
+ msgstr ""
3237
+
3238
+ #: includes/class-wcj-cart-customization.php:25
3239
+ msgid "Cart Customization"
3240
+ msgstr ""
3241
+
3242
+ #: includes/settings/wcj-settings-call-for-price.php:17
3243
+ msgid "You can use shortcodes in options."
3244
+ msgstr ""
3245
+
3246
+ #: includes/admin/wcj-modules-cats.php:158
3247
+ msgid "Emails, Reports, Export, Admin Tools, General Options and more."
3248
+ msgstr ""
3249
+
3250
+ #: includes/admin/wcj-modules-cats.php:142
3251
+ msgid "PDF Documents"
3252
+ msgstr ""
3253
+
3254
+ #: includes/admin/wcj-modules-cats.php:124
3255
+ msgid "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping Methods and more."
3256
+ msgstr ""
3257
+
3258
+ #: includes/admin/wcj-modules-cats.php:107
3259
+ msgid "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and more."
3260
+ msgstr ""
3261
+
3262
+ #: includes/admin/wcj-modules-cats.php:90
3263
+ msgid "Cart and Checkout Customization, Empty Cart Button, Mini Cart and more."
3264
+ msgstr ""
3265
+
3266
+ #: includes/admin/wcj-modules-cats.php:61
3267
+ msgid "Bookings, Crowdfunding Products, Product Addons and Input Fields, Product Listings, Product Tabs and more."
3268
+ msgstr ""
3269
+
3270
+ #: includes/admin/wcj-modules-cats.php:49
3271
+ msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
3272
+ msgstr ""
3273
+
3274
+ #: includes/admin/wcj-modules-cats.php:27
3275
+ msgid "Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price by User Role and more."
3276
+ msgstr ""
3277
+
3278
+ #: includes/admin/class-wcj-settings-custom-fields.php:198
3279
+ #: includes/settings/wcj-settings-wpml.php:21
3280
+ msgid "To use tools, module must be enabled."
3281
+ msgstr ""
3282
+
3283
+ #: includes/reports/wcj-class-reports-sales-daily.php:163
3284
+ #: includes/reports/wcj-class-reports-sales.php:331
3285
+ msgid "Reports Settings"
3286
+ msgstr "Ajustes de los informes"
3287
+
3288
+ #: includes/reports/wcj-class-reports-sales.php:328
3289
+ msgid "Total Profit"
3290
+ msgstr ""
3291
+
3292
+ #: includes/reports/wcj-class-reports-sales.php:322
3293
+ msgid "Total Items"
3294
+ msgstr ""
3295
+
3296
+ #: includes/reports/wcj-class-reports-sales.php:194
3297
+ msgid "Total"
3298
+ msgstr ""
3299
+
3300
+ #: includes/functions/wcj-exchange-rates-functions.php:23
3301
+ msgid "TCMB"
3302
+ msgstr ""
3303
+
3304
+ #: includes/functions/wcj-exchange-rates-functions.php:22
3305
+ msgid "European Central Bank (ECB)"
3306
+ msgstr ""
3307
+
3308
+ #: includes/functions/wcj-exchange-rates-functions.php:21
3309
+ msgid "Yahoo"
3310
+ msgstr ""
3311
+
3312
+ #: includes/export/class-wcj-fields-helper.php:281
3313
+ msgid "Parent Product ID"
3314
+ msgstr ""
3315
+
3316
+ #: includes/exchange-rates/class-wcj-exchange-rates.php:102
3317
+ msgid "Grab %s rate from %s"
3318
+ msgstr ""
3319
+
3320
+ #: includes/settings/wcj-settings-sorting.php:162
3321
+ msgid "Remove all sorting (including WooCommerce default) from shop's frontend"
3322
+ msgstr ""
3323
+
3324
+ #: includes/settings/wcj-settings-sorting.php:122
3325
+ msgid "Default Sorting Options"
3326
+ msgstr ""
3327
+
3328
+ #: includes/settings/wcj-settings-sorting.php:117
3329
+ msgid "Default WooCommerce Sorting"
3330
+ msgstr ""
3331
+
3332
+ #: includes/settings/wcj-settings-sorting.php:107
3333
+ msgid "Default:"
3334
+ msgstr ""
3335
+
3336
+ #: includes/settings/wcj-settings-sorting.php:93
3337
+ #: includes/settings/wcj-settings-sorting.php:98
3338
+ #: includes/settings/wcj-settings-sorting.php:105
3339
+ msgid "Rearrange Sorting"
3340
+ msgstr ""
3341
+
3342
+ #: includes/settings/wcj-settings-sorting.php:14
3343
+ msgid "Add Custom Sorting"
3344
+ msgstr ""
3345
+
3346
+ #: includes/class-wcj-sorting.php:171
3347
+ msgid "Sort by price: high to low"
3348
+ msgstr ""
3349
+
3350
+ #: includes/class-wcj-sorting.php:170
3351
+ msgid "Sort by price: low to high"
3352
+ msgstr ""
3353
+
3354
+ #: includes/class-wcj-sorting.php:169
3355
+ msgid "Sort by newness"
3356
+ msgstr ""
3357
+
3358
+ #: includes/class-wcj-sorting.php:168
3359
+ msgid "Sort by average rating"
3360
+ msgstr ""
3361
+
3362
+ #: includes/class-wcj-sorting.php:167
3363
+ msgid "Sort by popularity"
3364
+ msgstr "Ordenar por popularidad"
3365
+
3366
+ #: includes/class-wcj-sorting.php:166
3367
+ msgid "Default sorting"
3368
+ msgstr ""
3369
+
3370
+ #: includes/class-wcj-sorting.php:25
3371
+ msgid "Add more WooCommerce sorting options; rename or remove default sorting options; rearrange sorting options on frontend."
3372
+ msgstr ""
3373
+
3374
+ #: includes/settings/wcj-settings-shipping-options.php:155
3375
+ msgid "Icon Visibility"
3376
+ msgstr ""
3377
+
3378
+ #: includes/settings/wcj-settings-shipping-options.php:108
3379
+ #: includes/settings/wcj-settings-shipping-options.php:164
3380
+ msgid "Possible values: on both cart and checkout pages; only on cart page; only on checkout page"
3381
+ msgstr ""
3382
+
3383
+ #: includes/settings/wcj-settings-shipping-options.php:106
3384
+ #: includes/settings/wcj-settings-shipping-options.php:162
3385
+ msgid "Only on checkout page"
3386
+ msgstr ""
3387
+
3388
+ #: includes/settings/wcj-settings-shipping-options.php:105
3389
+ #: includes/settings/wcj-settings-shipping-options.php:161
3390
+ msgid "Only on cart page"
3391
+ msgstr ""
3392
+
3393
+ #: includes/settings/wcj-settings-shipping-options.php:104
3394
+ #: includes/settings/wcj-settings-shipping-options.php:160
3395
+ msgid "On both cart and checkout pages"
3396
+ msgstr ""
3397
+
3398
+ #: includes/settings/wcj-settings-shipping-options.php:99
3399
+ msgid "Description Visibility"
3400
+ msgstr ""
3401
+
3402
+ #: includes/settings/wcj-settings-shipping-options.php:74
3403
+ msgid "At least one product in cart must grant free shipping"
3404
+ msgstr ""
3405
+
3406
+ #: includes/settings/wcj-settings-shipping-options.php:73
3407
+ msgid "All products in cart must grant free shipping"
3408
+ msgstr ""
3409
+
3410
+ #: includes/settings/wcj-settings-shipping-options.php:68
3411
+ msgid "Select either <strong>all products</strong> or <strong>at least one product</strong> in cart must grant free shipping."
3412
+ msgstr ""
3413
+
3414
+ #: includes/settings/wcj-settings-shipping-options.php:47
3415
+ msgid "In this section you can select products which grant free shipping when added to cart."
3416
+ msgstr ""
3417
+
3418
+ #: includes/settings/wcj-settings-shipping-options.php:46
3419
+ #: includes/settings/wcj-settings-shipping-options.php:52
3420
+ msgid "Free Shipping by Product"
3421
+ msgstr ""
3422
+
3423
+ #: includes/settings/wcj-settings-reports.php:46
3424
+ #: includes/settings/wcj-settings-reports.php:87
3425
+ msgid "Count variations for variable products"
3426
+ msgstr ""
3427
+
3428
+ #: includes/settings/wcj-settings-reports.php:39
3429
+ #: includes/settings/wcj-settings-reports.php:80
3430
+ msgid "Include taxes"
3431
+ msgstr ""
3432
+
3433
+ #: includes/settings/wcj-settings-reports.php:73
3434
+ msgid "Display profit"
3435
+ msgstr ""
3436
+
3437
+ #: includes/settings/wcj-settings-reports.php:66
3438
+ msgid "Display sales sum"
3439
+ msgstr ""
3440
+
3441
+ #: includes/settings/wcj-settings-reports.php:59
3442
+ msgid "Display item sales"
3443
+ msgstr ""
3444
+
3445
+ #: includes/class-wcj-related-products.php:42
3446
+ msgid "You may need to <a class=\"button\" href=\"%s\">clear all products transients</a> to immediately see results on frontend after changing module's settings. Alternatively you can just update each product individually to clear its transients."
3447
+ msgstr ""
3448
+
3449
+ #: includes/settings/wcj-settings-related-products.php:151
3450
+ msgid "You will be able to select related products manually for each product individually. There is also an option to remove related products on per product basis."
3451
+ msgstr ""
3452
+
3453
+ #: includes/settings/wcj-settings-related-products.php:150
3454
+ msgid "This will add metabox to each product's edit page."
3455
+ msgstr ""
3456
+
3457
+ #: includes/settings/wcj-settings-related-products.php:148
3458
+ msgid "Relate Manually"
3459
+ msgstr ""
3460
+
3461
+ #: includes/settings/wcj-settings-related-products.php:142
3462
+ msgid "Attribute Value"
3463
+ msgstr ""
3464
+
3465
+ #: includes/settings/wcj-settings-related-products.php:136
3466
+ msgid "Attribute Name"
3467
+ msgstr ""
3468
+
3469
+ #: includes/settings/wcj-settings-related-products.php:132
3470
+ msgid "Local Attribute"
3471
+ msgstr ""
3472
+
3473
+ #: includes/settings/wcj-settings-related-products.php:131
3474
+ msgid "Global Attribute"
3475
+ msgstr ""
3476
+
3477
+ #: includes/settings/wcj-settings-related-products.php:126
3478
+ msgid "If using \"Global Attribute\" enter attribute's <em>slug</em> in \"Attribute Name\""
3479
+ msgstr ""
3480
+
3481
+ #: includes/settings/wcj-settings-related-products.php:125
3482
+ msgid "Attribute Type"
3483
+ msgstr ""
3484
+
3485
+ #: includes/settings/wcj-settings-related-products.php:118
3486
+ msgid "Relate by Product Attribute"
3487
+ msgstr ""
3488
+
3489
+ #: includes/settings/wcj-settings-related-products.php:99
3490
+ msgid "Relate"
3491
+ msgstr ""
3492
+
3493
+ #: includes/settings/wcj-settings-related-products.php:85
3494
+ msgid "Ignored if order by \"Random\" is selected in \"Order by\"."
3495
+ msgstr ""
3496
+
3497
+ #: includes/settings/wcj-settings-related-products.php:75
3498
+ msgid "Used only if order by \"Meta Value\" or \"Meta Value (Numeric)\" is selected in \"Order by\"."
3499
+ msgstr ""
3500
+
3501
+ #: includes/settings/wcj-settings-related-products.php:74
3502
+ msgid "Meta Key"
3503
+ msgstr ""
3504
+
3505
+ #: includes/settings/wcj-settings-related-products.php:28
3506
+ msgid "Meta Value (Numeric)"
3507
+ msgstr ""
3508
+
3509
+ #: includes/settings/wcj-settings-related-products.php:27
3510
+ msgid "Meta Value"
3511
+ msgstr ""
3512
+
3513
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:29
3514
+ msgid "Hold Control (Ctrl) key to select multiple products."
3515
+ msgstr ""
3516
+
3517
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:18
3518
+ msgid "If enabled and no products selected - will hide related products section on frontend for current product."
3519
+ msgstr ""
3520
+
3521
+ #: includes/class-wcj-related-products.php:39
3522
+ msgid "Change displayed WooCommerce related products number, columns, order; relate by tag, category, product attribute or manually on per product basis. Hide related products completely."
3523
+ msgstr ""
3524
+
3525
+ #: includes/settings/wcj-settings-purchase-data.php:184
3526
+ msgid "Treat Variable Products as Simple Products"
3527
+ msgstr ""
3528
+
3529
+ #: includes/settings/wcj-settings-purchase-data.php:157
3530
+ msgid "This section lets you add custom columns to WooCommerce admin orders list."
3531
+ msgstr ""
3532
+
3533
+ #: includes/class-wcj-purchase-data.php:153
3534
+ #: includes/settings/wcj-settings-purchase-data.php:142
3535
+ #: includes/settings/wcj-settings-purchase-data.php:168
3536
+ msgid "Purchase Cost"
3537
+ msgstr ""
3538
+
3539
+ #: includes/settings/wcj-settings-products-xml.php:201
3540
+ msgid "Only products that are not featured"
3541
+ msgstr ""
3542
+
3543
+ #: includes/settings/wcj-settings-products-xml.php:200
3544
+ msgid "Only products that are featured"
3545
+ msgstr ""
3546
+
3547
+ #: includes/settings/wcj-settings-products-xml.php:198
3548
+ msgid "Only products that are on sale"
3549
+ msgstr ""
3550
+
3551
+ #: includes/settings/wcj-settings-products-xml.php:192
3552
+ msgid "Products Scope"
3553
+ msgstr ""
3554
+
3555
+ #: includes/settings/wcj-settings-products-xml.php:184
3556
+ msgid "To exclude products from selected tags, enter tags here. Leave blank to include all products."
3557
+ msgstr ""
3558
+
3559
+ #: includes/settings/wcj-settings-products-xml.php:183
3560
+ msgid "Tags to Exclude"
3561
+ msgstr ""
3562
+
3563
+ #: includes/settings/wcj-settings-products-xml.php:175
3564
+ msgid "To include products from selected tags only, enter tags here. Leave blank to include all products."
3565
+ msgstr ""
3566
+
3567
+ #: includes/settings/wcj-settings-products-xml.php:174
3568
+ msgid "Tags to Include"
3569
+ msgstr ""
3570
+
3571
+ #: includes/settings/wcj-settings-products-xml.php:166
3572
+ msgid "To exclude products from selected categories, enter categories here. Leave blank to include all products."
3573
+ msgstr ""
3574
+
3575
+ #: includes/settings/wcj-settings-products-xml.php:165
3576
+ msgid "Categories to Exclude"
3577
+ msgstr ""
3578
+
3579
+ #: includes/settings/wcj-settings-products-xml.php:157
3580
+ msgid "To include products from selected categories only, enter categories here. Leave blank to include all products."
3581
+ msgstr ""
3582
+
3583
+ #: includes/settings/wcj-settings-products-xml.php:156
3584
+ msgid "Categories to Include"
3585
+ msgstr ""
3586
+
3587
+ #: includes/settings/wcj-settings-products-xml.php:148
3588
+ msgid "To exclude selected products, enter products here. Leave blank to include all products."
3589
+ msgstr ""
3590
+
3591
+ #: includes/settings/wcj-settings-products-xml.php:139
3592
+ msgid "To include selected products only, enter products here. Leave blank to include all products."
3593
+ msgstr ""
3594
+
3595
+ #: includes/settings/wcj-settings-products-xml.php:79
3596
+ msgid "You can use shortcodes here. For example [wcj_current_datetime]."
3597
+ msgstr ""
3598
+
3599
+ #: includes/settings/wcj-settings-products-xml.php:58
3600
+ msgid "Recent file was created on %s"
3601
+ msgstr ""
3602
+
3603
+ #: includes/settings/wcj-settings-products-xml.php:33
3604
+ msgid "If you have large number of products you may want to modify block size for WP_Query call. Leave default value if not sure."
3605
+ msgstr ""
3606
+
3607
+ #: includes/settings/wcj-settings-products-xml.php:32
3608
+ msgid "Advanced: Block Size"
3609
+ msgstr ""
3610
+
3611
+ #: includes/class-wcj-products-per-page.php:28
3612
+ msgid "Products per Page"
3613
+ msgstr ""
3614
+
3615
+ #: includes/settings/wcj-settings-product-price-by-formula.php:29
3616
+ msgid "Enable Price Calculation By Formula For All Products"
3617
+ msgstr ""
3618
+
3619
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
3620
+ msgid "'Enabled' option is ignored if 'Enable Price Calculation By Formula For All Products' option is checked in module's settings."
3621
+ msgstr ""
3622
+
3623
+ #: includes/settings/wcj-settings-product-open-pricing.php:86
3624
+ msgid "Enable JS Min/Max Validation"
3625
+ msgstr ""
3626
+
3627
+ #: includes/settings/wcj-settings-product-open-pricing.php:51
3628
+ msgid "Frontend Input Price Step"
3629
+ msgstr ""
3630
+
3631
+ #: includes/settings/wcj-settings-product-open-pricing.php:44
3632
+ msgid "Frontend Input Placeholder"
3633
+ msgstr ""
3634
+
3635
+ #: includes/settings/wcj-settings-product-open-pricing.php:37
3636
+ msgid "Frontend Input Style"
3637
+ msgstr ""
3638
+
3639
+ #: includes/settings/wcj-settings-product-add-to-cart.php:185
3640
+ msgid "Disable Add to Cart Buttons on All Single Product Pages"
3641
+ msgstr ""
3642
+
3643
+ #: includes/settings/wcj-settings-product-add-to-cart.php:179
3644
+ #: includes/settings/wcj-settings-product-add-to-cart.php:186
3645
+ msgid "Disable Buttons"
3646
+ msgstr ""
3647
+
3648
+ #: includes/settings/wcj-settings-product-add-to-cart.php:178
3649
+ msgid "Disable Add to Cart Buttons on All Category/Archives Pages"
3650
+ msgstr ""
3651
+
3652
+ #: includes/settings/wcj-settings-product-add-to-cart.php:133
3653
+ msgid "Variable products only"
3654
+ msgstr ""
3655
+
3656
+ #: includes/settings/wcj-settings-product-add-to-cart.php:126
3657
+ msgid "Replace Add to Cart Button on Archives with Button from Single Product Pages"
3658
+ msgstr ""
3659
+
3660
+ #: includes/settings/wcj-settings-product-add-to-cart.php:121
3661
+ msgid "Replace Add to Cart Button on Archives with Single"
3662
+ msgstr ""
3663
+
3664
+ #: includes/settings/wcj-settings-product-add-to-cart.php:66
3665
+ msgid "Per product"
3666
+ msgstr ""
3667
+
3668
+ #: includes/settings/wcj-settings-product-add-to-cart.php:24
3669
+ #: includes/settings/wcj-settings-product-by-date.php:20
3670
+ msgid "All Products"
3671
+ msgstr ""
3672
+
3673
+ #: includes/settings/wcj-settings-product-add-to-cart.php:59
3674
+ msgid "If \"Per Product\" is selected - meta box will be added to each product's edit page."
3675
+ msgstr ""
3676
+
3677
+ #: includes/class-wcj-product-add-to-cart.php:31
3678
+ msgid "Replace Add to Cart button on archives with button from single product pages."
3679
+ msgstr ""
3680
+
3681
+ #: includes/settings/wcj-settings-price-by-country.php:194
3682
+ msgid "Countries. List of comma separated country codes.<br>For country codes and predifined sets visit <a href=\"http://booster.io/country-codes/\" target=\"_blank\">http://booster.io/country-codes/</a>"
3683
+ msgstr ""
3684
+
3685
+ #: includes/settings/wcj-settings-price-by-country.php:97
3686
+ msgid "If \"Make Pretty Price\" is enabled, here you can set by how many smallest possible values (e.g. cents) final price should be decreased."
3687
+ msgstr ""
3688
+
3689
+ #: includes/settings/wcj-settings-price-by-country.php:96
3690
+ msgid "Discount Min Amount Multiplier"
3691
+ msgstr ""
3692
+
3693
+ #: includes/settings/wcj-settings-price-by-country.php:90
3694
+ msgid "If enabled, this will be applied if exchange rates are used. Final converted price will be rounded, then decreased by smallest possible value. For example: $9,75 -> $10,00 -> $9,99. Please note that as smallest possible value is calculated from shop's \"Precision\" option, this option must be above zero."
3695
+ msgstr ""
3696
+
3697
+ #: includes/settings/wcj-settings-order-min-amount.php:79
3698
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:56
3699
+ msgid "Error"
3700
+ msgstr ""
3701
+
3702
+ #: includes/settings/wcj-settings-order-min-amount.php:78
3703
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:55
3704
+ msgid "Notice"
3705
+ msgstr ""
3706
+
3707
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:50
3708
+ msgid "Notice Styling"
3709
+ msgstr ""
3710
+
3711
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:43
3712
+ msgid "Replaced values: %gateway_title%, %max_amount%."
3713
+ msgstr ""
3714
+
3715
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:42
3716
+ msgid "Notice Template (Maximum Amount)"
3717
+ msgstr ""
3718
+
3719
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:35
3720
+ msgid "Replaced values: %gateway_title%, %min_amount%."
3721
+ msgstr ""
3722
+
3723
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:34
3724
+ msgid "Notice Template (Minimum Amount)"
3725
+ msgstr ""
3726
+
3727
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:28
3728
+ msgid "Enable Notices"
3729
+ msgstr ""
3730
+
3731
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:27
3732
+ msgid "Notices on Checkout"
3733
+ msgstr ""
3734
+
3735
+ #: includes/class-wcj-payment-gateways-min-max.php:42
3736
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
3737
+ msgid "Maximum amount for %gateway_title% is %max_amount%"
3738
+ msgstr ""
3739
+
3740
+ #: includes/class-wcj-payment-gateways-min-max.php:41
3741
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
3742
+ msgid "Minimum amount for %gateway_title% is %min_amount%"
3743
+ msgstr ""
3744
+
3745
+ #: includes/settings/wcj-settings-price-by-country.php:88
3746
+ msgid "Make Pretty Price"
3747
+ msgstr ""
3748
+
3749
+ #: includes/class-wcj-payment-gateways-min-max.php:24
3750
+ msgid "Gateways Min/Max Amounts"
3751
+ msgstr ""
3752
+
3753
+ #: includes/settings/wcj-settings-order-numbers.php:102
3754
+ msgid "Enable Order Admin Search by Custom Number"
3755
+ msgstr ""
3756
+
3757
+ #: includes/settings/wcj-settings-order-custom-statuses.php:79
3758
+ msgid "Enable Colors"
3759
+ msgstr ""
3760
+
3761
+ #: includes/settings/wcj-settings-order-custom-statuses.php:69
3762
+ msgid "Add Custom Statuses to Admin Order List Action Buttons"
3763
+ msgstr ""
3764
+
3765
+ #: includes/class-wcj-order-custom-statuses.php:432
3766
+ msgid "Edit custom status"
3767
+ msgstr ""
3768
+
3769
+ #: includes/class-wcj-order-custom-statuses.php:398
3770
+ msgid "Get Booster Plus to enable."
3771
+ msgstr ""
3772
+
3773
+ #: includes/class-wcj-order-custom-statuses.php:350
3774
+ msgid "Status was not edited."
3775
+ msgstr ""
3776
+
3777
+ #: includes/class-wcj-order-custom-statuses.php:348
3778
+ msgid "Status has been successfully edited!"
3779
+ msgstr ""
3780
+
3781
+ #: includes/class-wcj-order-custom-statuses.php:338
3782
+ msgid "Status label is empty. Status was not edited!"
3783
+ msgstr ""
3784
+
3785
+ #: includes/class-wcj-order-custom-statuses.php:307
3786
+ msgid "Duplicate slug (default WooCommerce status). Status was not added!"
3787
+ msgstr ""
3788
+
3789
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:145
3790
+ msgid "Set empty to disable."
3791
+ msgstr ""
3792
+
3793
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:35
3794
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:70
3795
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:109
3796
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:144
3797
+ msgid "You can use HTML and/or shortcodes (e.g. [wcj_wpml]) here."
3798
+ msgstr ""
3799
+
3800
+ #: includes/settings/wcj-settings-global-discount.php:85
3801
+ #: includes/settings/wcj-settings-products-xml.php:199
3802
+ msgid "Only products that are not on sale"
3803
+ msgstr ""
3804
+
3805
+ #: includes/settings/wcj-settings-checkout-customization.php:31
3806
+ msgid "Hide \"Order Again\" Button on \"View Order\" Page"
3807
+ msgstr ""
3808
+
3809
+ #: includes/settings/wcj-settings-cart-customization.php:19
3810
+ msgid "Hide Coupon on Cart Page"
3811
+ msgstr ""
3812
+
3813
+ #: includes/settings/wcj-settings-export.php:197
3814
+ msgid "Export variable (main) and variation products"
3815
+ msgstr ""
3816
+
3817
+ #: includes/settings/wcj-settings-export.php:196
3818
+ msgid "Export variation products only"
3819
+ msgstr ""
3820
+
3821
+ #: includes/settings/wcj-settings-export.php:195
3822
+ msgid "Export variable (main) product only"
3823
+ msgstr ""
3824
+
3825
+ #: includes/settings/wcj-settings-eu-vat-number.php:192
3826
+ msgid "Add EU VAT Number Summary Metabox to Order Edit Page"
3827
+ msgstr ""
3828
+
3829
+ #: includes/settings/wcj-settings-eu-vat-number.php:185
3830
+ msgid "Message on VAT validation server timeout etc."
3831
+ msgstr ""
3832
+
3833
+ #: includes/settings/wcj-settings-eu-vat-number.php:184
3834
+ msgid "Progress Message: Validation Failed"
3835
+ msgstr ""
3836
+
3837
+ #: includes/settings/wcj-settings-eu-vat-number.php:177
3838
+ msgid "Progress Message: Not Valid"
3839
+ msgstr ""
3840
+
3841
+ #: includes/settings/wcj-settings-eu-vat-number.php:170
3842
+ msgid "Progress Message: Valid"
3843
+ msgstr ""
3844
+
3845
+ #: includes/settings/wcj-settings-eu-vat-number.php:163
3846
+ msgid "Progress Message: Validating"
3847
+ msgstr ""
3848
+
3849
+ #: includes/settings/wcj-settings-eu-vat-number.php:156
3850
+ msgid "Add Progress Messages"
3851
+ msgstr ""
3852
+
3853
+ #: includes/class-wcj-eu-vat-number.php:300
3854
+ #: includes/settings/wcj-settings-eu-vat-number.php:187
3855
+ msgid "Validation failed. Please try again."
3856
+ msgstr ""
3857
+
3858
+ #: includes/class-wcj-eu-vat-number.php:299
3859
+ #: includes/settings/wcj-settings-eu-vat-number.php:179
3860
+ msgid "VAT is not valid."
3861
+ msgstr ""
3862
+
3863
+ #: includes/class-wcj-eu-vat-number.php:298
3864
+ #: includes/settings/wcj-settings-eu-vat-number.php:172
3865
+ msgid "VAT is valid."
3866
+ msgstr ""
3867
+
3868
+ #: includes/class-wcj-eu-vat-number.php:297
3869
+ #: includes/settings/wcj-settings-eu-vat-number.php:165
3870
+ msgid "Validating VAT. Please wait..."
3871
+ msgstr ""
3872
+
3873
+ #: includes/class-wcj-eu-vat-number.php:146
3874
+ msgid "Customer EU VAT Number"
3875
+ msgstr ""
3876
+
3877
+ #: includes/class-wcj-eu-vat-number.php:142
3878
+ msgid "Country by IP"
3879
+ msgstr ""
3880
+
3881
+ #: includes/class-wcj-eu-vat-number.php:138
3882
+ msgid "Customer IP"
3883
+ msgstr ""
3884
+
3885
+ #: includes/class-wcj-empty-cart-button.php:26
3886
+ msgid "Add (and customize) \"Empty Cart\" button to WooCommerce cart and checkout pages."
3887
+ msgstr ""
3888
+
3889
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:75
3890
+ msgid "Exchange Rates Offset - Fixed"
3891
+ msgstr ""
3892
+
3893
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:68
3894
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:76
3895
+ msgid "If both percent and fixed offsets are set - percent offset is applied first and fixed offset after that."
3896
+ msgstr ""
3897
+
3898
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:67
3899
+ msgid "Exchange Rates Offset - Percent"
3900
+ msgstr ""
3901
+
3902
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:46
3903
+ msgid "Exchange Rates Server"
3904
+ msgstr ""
3905
+
3906
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:28
3907
+ msgid "All currencies from all <strong>enabled</strong> modules (with \"Exchange Rates Updates\" set to \"Automatically via Currency Exchange Rates module\") will be automatically added to the list."
3908
+ msgstr ""
3909
+
3910
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:18
3911
+ msgid "%s till next update."
3912
+ msgstr ""
3913
+
3914
+ #: includes/settings/wcj-settings-checkout-custom-info.php:80
3915
+ msgid "Order Received (Thank You) page"
3916
+ msgstr ""
3917
+
3918
+ #: includes/class-wcj-cart.php:23
3919
+ msgid "Cart Custom Info"
3920
+ msgstr ""
3921
+
3922
+ #: includes/settings/wcj-settings-admin-tools.php:50
3923
+ msgid "seconds."
3924
+ msgstr ""
3925
+
3926
+ #: includes/settings/wcj-settings-admin-tools.php:49
3927
+ msgid "PHP Time Limit"
3928
+ msgstr ""
3929
+
3930
+ #: includes/class-wcj-admin-tools.php:48
3931
+ msgid "Current PHP time limit: %s seconds."
3932
+ msgstr ""
3933
+
3934
+ #: includes/admin/class-wc-settings-jetpack.php:450
3935
+ msgid "Choose if you want Booster's options to be autoloaded when calling add_option. After saving this option, you need to Reset all Booster's settings. Leave default value (i.e. Enabled) if not sure."
3936
+ msgstr ""
3937
+
3938
+ #: includes/admin/class-wc-settings-jetpack.php:448
3939
+ msgid "Autoload Booster's Options"
3940
+ msgstr ""
3941
+
3942
+ #: includes/admin/class-wc-settings-jetpack.php:300
3943
+ msgid "Reset all Booster's options."
3944
+ msgstr ""
3945
+
3946
+ #: includes/admin/class-wc-settings-jetpack.php:296
3947
+ msgid "Import all Booster's options from a file."
3948
+ msgstr ""
3949
+
3950
+ #: includes/admin/class-wc-settings-jetpack.php:291
3951
+ msgid "Export all Booster's options to a file."
3952
+ msgstr ""
3953
+
3954
+ #: woocommerce-jetpack.php:184
3955
+ msgid "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin. Visit <a target=\"_blank\" href=\"%s\">your account page</a> on booster.io to download the latest Booster Plus version."
3956
+ msgstr ""
3957
+
3958
+ #: includes/export/class-wcj-fields-helper.php:323
3959
+ msgid "Availability Class"
3960
+ msgstr ""
3961
+
3962
+ #: includes/export/class-wcj-fields-helper.php:322
3963
+ msgid "Availability"
3964
+ msgstr ""
3965
+
3966
+ #: includes/export/class-wcj-fields-helper.php:321
3967
+ msgid "Formatted Name"
3968
+ msgstr ""
3969
+
3970
+ #: includes/export/class-wcj-fields-helper.php:320
3971
+ msgid "Dimensions"
3972
+ msgstr ""
3973
+
3974
+ #: includes/export/class-wcj-fields-helper.php:317
3975
+ msgid "Review Count"
3976
+ msgstr ""
3977
+
3978
+ #: includes/export/class-wcj-fields-helper.php:316
3979
+ msgid "Rating Count"
3980
+ msgstr ""
3981
+
3982
+ #: includes/export/class-wcj-fields-helper.php:315
3983
+ msgid "Average Rating"
3984
+ msgstr ""
3985
+
3986
+ #: includes/export/class-wcj-fields-helper.php:314
3987
+ msgid "Display Price"
3988
+ msgstr ""
3989
+
3990
+ #: includes/export/class-wcj-fields-helper.php:313
3991
+ msgid "Price Excluding Tax"
3992
+ msgstr ""
3993
+
3994
+ #: includes/export/class-wcj-fields-helper.php:312
3995
+ msgid "Price Including Tax"
3996
+ msgstr ""
3997
+
3998
+ #: includes/export/class-wcj-fields-helper.php:155
3999
+ msgid "Item Product Input Fields"
4000
+ msgstr ""
4001
+
4002
+ #: includes/export/class-wcj-fields-helper.php:154
4003
+ msgid "Item Line Total Plus Tax"
4004
+ msgstr ""
4005
+
4006
+ #: includes/export/class-wcj-fields-helper.php:153
4007
+ msgid "Item Line Subtotal Plus Tax"
4008
+ msgstr ""
4009
+
4010
+ #: includes/export/class-wcj-fields-helper.php:152
4011
+ msgid "Item Line Tax"
4012
+ msgstr ""
4013
+
4014
+ #: includes/export/class-wcj-fields-helper.php:151
4015
+ msgid "Item Line Subtotal Tax"
4016
+ msgstr ""
4017
+
4018
+ #: includes/export/class-wcj-fields-helper.php:150
4019
+ msgid "Item Line Total"
4020
+ msgstr ""
4021
+
4022
+ #: includes/export/class-wcj-fields-helper.php:149
4023
+ msgid "Item Line Subtotal"
4024
+ msgstr ""
4025
+
4026
+ #: includes/export/class-wcj-fields-helper.php:148
4027
+ msgid "Item Variation ID"
4028
+ msgstr ""
4029
+
4030
+ #: includes/export/class-wcj-fields-helper.php:147
4031
+ msgid "Item Product ID"
4032
+ msgstr ""
4033
+
4034
+ #: includes/export/class-wcj-fields-helper.php:146
4035
+ msgid "Item Tax Class"
4036
+ msgstr ""
4037
+
4038
+ #: includes/export/class-wcj-fields-helper.php:145
4039
+ msgid "Item Quantity"
4040
+ msgstr ""
4041
+
4042
+ #: includes/export/class-wcj-fields-helper.php:144
4043
+ msgid "Item Variation Meta"
4044
+ msgstr ""
4045
+
4046
+ #: includes/export/class-wcj-fields-helper.php:143
4047
+ msgid "Item Meta"
4048
+ msgstr ""
4049
+
4050
+ #: includes/export/class-wcj-fields-helper.php:82
4051
+ msgid "Display Name"
4052
+ msgstr ""
4053
+
4054
+ #: includes/export/class-wcj-fields-helper.php:79
4055
+ msgid "Nicename"
4056
+ msgstr ""
4057
+
4058
+ #: includes/export/class-wcj-fields-helper.php:78
4059
+ msgid "Login"
4060
+ msgstr ""
4061
+
4062
+ #: includes/export/class-wcj-fields-helper.php:34
4063
+ msgid "Customer Nr."
4064
+ msgstr ""
4065
+
4066
+ #: includes/settings/wcj-settings-pdf-invoicing.php:67
4067
+ msgid "Do not create if order total equals zero"
4068
+ msgstr ""
4069
+
4070
+ #: includes/class-wcj-left-to-free-shipping.php:26
4071
+ msgid "Display \"left to free shipping\" info in WooCommerce."
4072
+ msgstr ""
4073
+
4074
+ #: includes/settings/wcj-settings-free-price.php:38
4075
+ msgid "Variations"
4076
+ msgstr ""
4077
+
4078
+ #: includes/settings/wcj-settings-free-price.php:23
4079
+ msgid "Archives (Product Categories)"
4080
+ msgstr ""
4081
+
4082
+ #: includes/settings/wcj-settings-free-price.php:22
4083
+ msgid "Pages (e.g. Shortcodes)"
4084
+ msgstr ""
4085
+
4086
+ #: includes/settings/wcj-settings-free-price.php:21
4087
+ msgid "Homepage"
4088
+ msgstr ""
4089
+
4090
+ #: includes/settings/wcj-settings-free-price.php:19
4091
+ msgid "Single Product Page"
4092
+ msgstr ""
4093
+
4094
+ #: includes/settings/wcj-settings-free-price.php:15
4095
+ msgid "Grouped Products"
4096
+ msgstr ""
4097
+
4098
+ #: includes/settings/wcj-settings-export.php:190
4099
+ #: includes/settings/wcj-settings-free-price.php:14
4100
+ msgid "Variable Products"
4101
+ msgstr ""
4102
+
4103
+ #: includes/settings/wcj-settings-free-price.php:13
4104
+ msgid "Simple and Custom Products"
4105
+ msgstr ""
4106
+
4107
+ #: includes/settings/wcj-settings-free-price.php:31
4108
+ msgid "Labels can contain shortcodes."
4109
+ msgstr ""
4110
+
4111
+ #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
4112
+ #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
4113
+ #: includes/settings/wcj-settings-free-price.php:27
4114
+ msgid "Free!"
4115
+ msgstr ""
4116
+
4117
+ #: includes/class-wcj-free-price.php:27
4118
+ msgid "WooCommerce free price labels."
4119
+ msgstr ""
4120
+
4121
+ #: includes/class-wcj-free-price.php:26
4122
+ msgid "Free Price Labels"
4123
+ msgstr ""
4124
+
4125
+ #: includes/settings/wcj-settings-export.php:278
4126
+ msgid "Export Customers from Orders Fields"
4127
+ msgstr ""
4128
+
4129
+ #: includes/settings/wcj-settings-export.php:273
4130
+ msgid "Export Customers from Orders Options"
4131
+ msgstr ""
4132
+
4133
+ #: includes/settings/wcj-settings-export.php:260
4134
+ msgid "Export Customers Fields"
4135
+ msgstr ""
4136
+
4137
+ #: includes/settings/wcj-settings-export.php:255
4138
+ msgid "Export Customers Options"
4139
+ msgstr ""
4140
+
4141
+ #: includes/settings/wcj-settings-export.php:242
4142
+ msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
4143
+ msgstr ""
4144
+
4145
+ #: includes/settings/wcj-settings-export.php:176
4146
+ msgid "Export Products Options"
4147
+ msgstr ""
4148
+
4149
+ #: includes/settings/wcj-settings-export.php:163
4150
+ msgid "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
4151
+ msgstr ""
4152
+
4153
+ #: includes/settings/wcj-settings-export.php:162
4154
+ msgid "If field's \"Type\" is set to \"Meta\", enter order/product meta key to retrieve (can be custom field name)."
4155
+ msgstr ""
4156
+
4157
+ #: includes/settings/wcj-settings-export.php:157
4158
+ #: includes/settings/wcj-settings-export.php:236
4159
+ msgid "Product Shortcode"
4160
+ msgstr ""
4161
+
4162
+ #: includes/settings/wcj-settings-export.php:120
4163
+ msgid "Additional Export Orders Items Fields"
4164
+ msgstr ""
4165
+
4166
+ #: includes/settings/wcj-settings-export.php:111
4167
+ msgid "Export Orders Items Fields"
4168
+ msgstr ""
4169
+
4170
+ #: includes/settings/wcj-settings-export.php:106
4171
+ msgid "Export Orders Items Options"
4172
+ msgstr ""
4173
+
4174
+ #: includes/settings/wcj-settings-export.php:93
4175
+ msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
4176
+ msgstr ""
4177
+
4178
+ #: includes/settings/wcj-settings-export.php:92
4179
+ msgid "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve (can be custom field name)."
4180
+ msgstr ""
4181
+
4182
+ #: includes/settings/wcj-settings-export.php:87
4183
+ #: includes/settings/wcj-settings-export.php:155
4184
+ msgid "Order Shortcode"
4185
+ msgstr ""
4186
+
4187
+ #: includes/settings/wcj-settings-export.php:52
4188
+ msgid "Additional Export Orders Fields"
4189
+ msgstr ""
4190
+
4191
+ #: includes/settings/wcj-settings-export.php:44
4192
+ #: includes/settings/wcj-settings-export.php:112
4193
+ #: includes/settings/wcj-settings-export.php:182
4194
+ #: includes/settings/wcj-settings-export.php:261
4195
+ #: includes/settings/wcj-settings-export.php:279
4196
+ msgid "Hold \"Control\" key to select multiple fields."
4197
+ msgstr ""
4198
+
4199
+ #: includes/settings/wcj-settings-export.php:38
4200
+ msgid "Export Orders Options"
4201
+ msgstr ""
4202
+
4203
+ #: includes/class-wcj-export-import.php:274
4204
+ msgid "Filter by All Fields"
4205
+ msgstr ""
4206
+
4207
+ #: includes/class-wcj-export-import.php:273
4208
+ msgid "Download XML"
4209
+ msgstr ""
4210
+
4211
+ #: includes/class-wcj-export-import.php:46
4212
+ msgid "Export Orders Items."
4213
+ msgstr ""
4214
+
4215
+ #: includes/class-wcj-export-import.php:45
4216
+ msgid "Export Orders Items"
4217
+ msgstr ""
4218
+
4219
+ #: includes/class-wcj-export-import.php:38
4220
+ msgid "Customers are identified by billing email."
4221
+ msgstr ""
4222
+
4223
+ #: includes/reports/wcj-class-reports-sales-daily.php:296
4224
+ #: includes/reports/wcj-class-reports-sales.php:352
4225
+ msgid "No sales data for current period."
4226
+ msgstr ""
4227
+
4228
+ #: includes/reports/wcj-class-reports-sales.php:347
4229
+ msgid "Filter products"
4230
+ msgstr "Filtrar productos"
4231
+
4232
+ #: includes/reports/wcj-class-reports-sales.php:193
4233
+ msgid "Last Sale"
4234
+ msgstr ""
4235
+
4236
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:28
4237
+ msgid "Customer - Reset Password"
4238
+ msgstr ""
4239
+
4240
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:27
4241
+ msgid "Customer - New Account"
4242
+ msgstr ""
4243
+
4244
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:26
4245
+ msgid "Customer - Note"
4246
+ msgstr ""
4247
+
4248
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:21
4249
+ msgid "Customer - On-Hold Order"
4250
+ msgstr ""
4251
+
4252
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:19
4253
+ msgid "Admin - Failed Order"
4254
+ msgstr ""
4255
+
4256
+ #: includes/settings/wcj-settings-price-formats.php:105
4257
+ msgid "Option to set different price formats for different WPML languages. Can be comma separated list. Leave empty to disable."
4258
+ msgstr ""
4259
+
4260
+ #: includes/settings/wcj-settings-price-formats.php:104
4261
+ msgid "WPML Language Code"
4262
+ msgstr ""
4263
+
4264
+ #: includes/settings/wcj-settings-price-by-country.php:106
4265
+ msgid "This will add product data fields in product edit."
4266
+ msgstr ""
4267
+
4268
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:60
4269
+ #: includes/settings/wcj-settings-multicurrency.php:67
4270
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:75
4271
+ msgid "Rounding Precision"
4272
+ msgstr ""
4273
+
4274
+ #: includes/settings/wcj-settings-multicurrency.php:55
4275
+ msgid "If using exchange rates, choose rounding here."
4276
+ msgstr ""
4277
+
4278
+ #: includes/settings/wcj-settings-multicurrency.php:54
4279
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:68
4280
+ msgid "Rounding"
4281
+ msgstr ""
4282
+
4283
+ #: includes/settings/wcj-settings-checkout-files-upload.php:202
4284
+ msgid "To hide this field if at least one product of selected tag is in cart, enter tags here. Leave blank to show for all products."
4285
+ msgstr ""
4286
+
4287
+ #: includes/settings/wcj-settings-checkout-files-upload.php:201
4288
+ msgid "TAGS to hide this field"
4289
+ msgstr ""
4290
+
4291
+ #: includes/settings/wcj-settings-checkout-files-upload.php:192
4292
+ msgid "To hide this field if at least one product of selected category is in cart, enter categories here. Leave blank to show for all products."
4293
+ msgstr ""
4294
+
4295
+ #: includes/settings/wcj-settings-checkout-files-upload.php:191
4296
+ msgid "CATEGORIES to hide this field"
4297
+ msgstr ""
4298
+
4299
+ #: includes/settings/wcj-settings-checkout-files-upload.php:182
4300
+ msgid "To hide this field if at least one selected product is in cart, enter products here. Leave blank to show for all products."
4301
+ msgstr ""
4302
+
4303
+ #: includes/settings/wcj-settings-checkout-files-upload.php:181
4304
+ msgid "PRODUCTS to hide this field"
4305
+ msgstr ""
4306
+
4307
+ #: includes/settings/wcj-settings-admin-tools.php:80
4308
+ msgid "Show Product Meta"
4309
+ msgstr ""
4310
+
4311
+ #: includes/settings/wcj-settings-admin-tools.php:73
4312
+ msgid "Show Order Meta"
4313
+ msgstr ""
4314
+
4315
+ #: includes/class-wcj-admin-tools.php:122
4316
+ msgid "Order Items Meta"
4317
+ msgstr ""
4318
+
4319
+ #: includes/class-wcj-admin-tools.php:86
4320
+ #: includes/settings/wcj-settings-export.php:86
4321
+ #: includes/settings/wcj-settings-export.php:154
4322
+ msgid "Order Meta"
4323
+ msgstr ""
4324
+
4325
+ #: includes/class-wcj-admin-tools.php:69
4326
+ #: includes/settings/wcj-settings-export.php:156
4327
+ #: includes/settings/wcj-settings-export.php:235
4328
+ msgid "Product Meta"
4329
+ msgstr ""
4330
+
4331
+ #: includes/shortcodes/class-wcj-order-items-shortcodes.php:218
4332
+ msgid "Standard"
4333
+ msgstr "Estándar"
4334
+
4335
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:198
4336
+ msgid "Press \"Save changes\" and reload the page after you change this number."
4337
+ msgstr ""
4338
+
4339
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:190
4340
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:149
4341
+ msgid "Maximum total cart weight. Set zero to disable."
4342
+ msgstr "Peso total máximo del carrito. Poner cero para deshabilitar."
4343
+
4344
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:182
4345
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:141
4346
+ msgid "Minimum total cart weight. Set zero to disable."
4347
+ msgstr "Peso total mínimo del carrito. Poner cero para deshabilitar."
4348
+
4349
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:180
4350
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:139
4351
+ msgid "Min Weight"
4352
+ msgstr "Peso mínimo"
4353
+
4354
+ #: includes/reports/wcj-class-reports-sales.php:124
4355
+ msgid "Variation"
4356
+ msgstr "Variación "
4357
+
4358
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:140
4359
+ msgid "Download monthly documents CSV"
4360
+ msgstr ""
4361
+
4362
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
4363
+ msgid "Price directly"
4364
+ msgstr ""
4365
+
4366
+ #: includes/settings/wcj-settings-shipping-calculator.php:87
4367
+ msgid "Update Totals"
4368
+ msgstr "Actualizar totales"
4369
+
4370
+ #: includes/settings/wcj-settings-shipping-calculator.php:85
4371
+ msgid "Label for Update Totals"
4372
+ msgstr ""
4373
+
4374
+ #: includes/settings/wcj-settings-shipping-calculator.php:79
4375
+ msgid "Calculate Shipping"
4376
+ msgstr "Calcular envío"
4377
+
4378
+ #: includes/settings/wcj-settings-shipping-calculator.php:77
4379
+ msgid "Label for Calculate Shipping"
4380
+ msgstr ""
4381
+
4382
+ #: includes/settings/wcj-settings-shipping-calculator.php:68
4383
+ msgid "Labels"
4384
+ msgstr ""
4385
+
4386
+ #: includes/settings/wcj-settings-shipping-calculator.php:63
4387
+ msgid "Labels Options"
4388
+ msgstr ""
4389
+
4390
+ #: includes/settings/wcj-settings-products-xml.php:134
4391
+ msgid "Possible update periods are: every minute, hourly, twice daily, daily and weekly."
4392
+ msgstr ""
4393
+
4394
+ #: includes/settings/wcj-settings-products-xml.php:122
4395
+ msgid "Update Period"
4396
+ msgstr ""
4397
+
4398
+ #: includes/class-wcj-track-users.php:159
4399
+ #: includes/settings/wcj-settings-products-xml.php:115
4400
+ msgid "URL:"
4401
+ msgstr "URL:"
4402
+
4403
+ #: includes/settings/wcj-settings-products-xml.php:114
4404
+ msgid "Path on server:"
4405
+ msgstr ""
4406
+
4407
+ #: includes/settings/wcj-settings-products-xml.php:113
4408
+ msgid "XML File Path and Name"
4409
+ msgstr ""
4410
+
4411
+ #: includes/settings/wcj-settings-products-xml.php:105
4412
+ msgid "XML Footer"
4413
+ msgstr ""
4414
+
4415
+ #: includes/settings/wcj-settings-products-xml.php:88
4416
+ msgid "You can use shortcodes here. Please take a look at <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</a>."
4417
+ msgstr ""
4418
+
4419
+ #: includes/settings/wcj-settings-products-xml.php:86
4420
+ msgid "XML Item"
4421
+ msgstr ""
4422
+
4423
+ #: includes/settings/wcj-settings-products-xml.php:78
4424
+ msgid "XML Header"
4425
+ msgstr ""
4426
+
4427
+ #: includes/settings/wcj-settings-products-xml.php:65
4428
+ msgid "XML File"
4429
+ msgstr ""
4430
+
4431
+ #: includes/settings/wcj-settings-products-xml.php:53
4432
+ msgid "Create Now"
4433
+ msgstr ""
4434
+
4435
+ #: includes/class-wcj-products-xml.php:120
4436
+ msgid "An error has occurred while creating products XML file."
4437
+ msgstr ""
4438
+
4439
+ #: includes/class-wcj-products-xml.php:110
4440
+ msgid "Products XML file created successfully."
4441
+ msgstr ""
4442
+
4443
+ #: includes/class-wcj-products-xml.php:27
4444
+ msgid "WooCommerce products XML feed."
4445
+ msgstr ""
4446
+
4447
+ #: includes/class-wcj-products-xml.php:26
4448
+ msgid "Products XML"
4449
+ msgstr ""
4450
+
4451
+ #: includes/settings/wcj-settings-price-by-user-role.php:55
4452
+ msgid "Disable Price by User Role for Bots"
4453
+ msgstr ""
4454
+
4455
+ #: includes/class-wcj-pdf-invoicing.php:117
4456
+ msgid "Document generated."
4457
+ msgid_plural "%s documents generated."
4458
+ msgstr[0] ""
4459
+ msgstr[1] ""
4460
+
4461
+ #: includes/class-wcj-pdf-invoicing.php:99
4462
+ #: includes/class-wcj-pdf-invoicing.php:100
4463
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:119
4464
+ msgid "Download"
4465
+ msgstr "Descargar"
4466
+
4467
+ #: includes/settings/wcj-settings-orders.php:191
4468
+ #: includes/settings/wcj-settings-product-listings.php:245
4469
+ msgid "Default columns order"
4470
+ msgstr ""
4471
+
4472
+ #: includes/settings/wcj-settings-orders.php:183
4473
+ msgid "Columns Order"
4474
+ msgstr ""
4475
+
4476
+ #: includes/settings/wcj-settings-orders.php:178
4477
+ msgid "Admin Orders List Columns Order"
4478
+ msgstr ""
4479
+
4480
+ #: includes/settings/wcj-settings-orders.php:167
4481
+ msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
4482
+ msgstr ""
4483
+
4484
+ #: includes/settings/wcj-settings-orders.php:160
4485
+ msgid "Hide Default Statuses Menu"
4486
+ msgstr ""
4487
+
4488
+ #: includes/settings/wcj-settings-orders.php:156
4489
+ msgid "Add as checkboxes"
4490
+ msgstr ""
4491
+
4492
+ #: includes/settings/wcj-settings-orders.php:155
4493
+ msgid "Add as multiple select"
4494
+ msgstr ""
4495
+
4496
+ #: includes/settings/wcj-settings-orders.php:149
4497
+ msgid "Multiple Status Filtering"
4498
+ msgstr ""
4499
+
4500
+ #: includes/settings/wcj-settings-orders.php:144
4501
+ msgid "Admin Orders List Multiple Status"
4502
+ msgstr ""
4503
+
4504
+ #: includes/settings/wcj-settings-orders.php:60
4505
+ #: includes/settings/wcj-settings-purchase-data.php:155
4506
+ msgid "Admin Orders List Custom Columns"
4507
+ msgstr ""
4508
+
4509
+ #: includes/class-wcj-orders.php:176
4510
+ msgid "Not Completed"
4511
+ msgstr ""
4512
+
4513
+ #: includes/class-wcj-orders.php:24
4514
+ msgid "Orders auto-complete. Custom admin order list columns. Admin order currency. Admin order list multiple status filtering."
4515
+ msgstr ""
4516
+
4517
+ #: includes/class-wcj-order-min-amount.php:27
4518
+ msgid "Minimum WooCommerce order amount (optionally by user role)."
4519
+ msgstr ""
4520
+
4521
+ #: includes/class-wcj-order-custom-statuses.php:432
4522
+ msgid "Add new custom status"
4523
+ msgstr ""
4524
+
4525
+ #: includes/class-wcj-order-custom-statuses.php:293
4526
+ msgid "The length of status slug must be 17 or less characters. Status was not added!"
4527
+ msgstr ""
4528
+
4529
+ #: includes/settings/wcj-settings-global-discount.php:127
4530
+ msgid "Set this field to apply discount to selected products only. Leave blank to apply to all products."
4531
+ msgstr ""
4532
+
4533
+ #: includes/settings/wcj-settings-global-discount.php:89
4534
+ #: includes/settings/wcj-settings-related-products.php:175
4535
+ msgid "Include Product Categories"
4536
+ msgstr ""
4537
+
4538
+ #: includes/settings/wcj-settings-global-discount.php:84
4539
+ msgid "Only products that are already on sale"
4540
+ msgstr ""
4541
+
4542
+ #: includes/settings/wcj-settings-global-discount.php:83
4543
+ #: includes/settings/wcj-settings-product-add-to-cart.php:65
4544
+ #: includes/settings/wcj-settings-products-xml.php:197
4545
+ msgid "All products"
4546
+ msgstr ""
4547
+
4548
+ #: includes/settings/wcj-settings-global-discount.php:77
4549
+ msgid "Product Scope"
4550
+ msgstr ""
4551
+
4552
+ #: includes/settings/wcj-settings-global-discount.php:70
4553
+ msgid "Must be negative number."
4554
+ msgstr ""
4555
+
4556
+ #: includes/settings/wcj-settings-global-discount.php:45
4557
+ msgid "Discount Group"
4558
+ msgstr ""
4559
+
4560
+ #: includes/settings/wcj-settings-global-discount.php:24
4561
+ msgid "Total Groups"
4562
+ msgstr ""
4563
+
4564
+ #: includes/class-wcj-global-discount.php:28
4565
+ msgid "Add global discount to all WooCommerce products."
4566
+ msgstr ""
4567
+
4568
+ #: includes/settings/wcj-settings-general.php:182
4569
+ msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
4570
+ msgstr ""
4571
+
4572
+ #: includes/settings/wcj-settings-general.php:174
4573
+ msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
4574
+ msgstr ""
4575
+
4576
+ #: includes/settings/wcj-settings-general.php:173
4577
+ msgid "Session Expiring"
4578
+ msgstr ""
4579
+
4580
+ #: includes/settings/wcj-settings-general.php:166
4581
+ #: includes/settings/wcj-settings-general.php:181
4582
+ msgid "Session Expiration"
4583
+ msgstr ""
4584
+
4585
+ #: includes/settings/wcj-settings-general.php:161
4586
+ msgid "Session Expiration Options"
4587
+ msgstr ""
4588
+
4589
+ #: includes/settings/wcj-settings-export.php:241
4590
+ msgid "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve (can be custom field name)."
4591
+ msgstr ""
4592
+
4593
+ #: includes/class-wcj-product-bulk-meta-editor.php:236
4594
+ #: includes/class-wcj-product-bulk-meta-editor.php:340
4595
+ msgid "Meta"
4596
+ msgstr ""
4597
+
4598
+ #: includes/settings/wcj-settings-export.php:201
4599
+ msgid "Additional Export Products Fields"
4600
+ msgstr ""
4601
+
4602
+ #: includes/settings/wcj-settings-export.php:181
4603
+ msgid "Export Products Fields"
4604
+ msgstr ""
4605
+
4606
+ #: includes/settings/wcj-settings-export.php:28
4607
+ msgid "Add UTF-8 BOM sequence"
4608
+ msgstr ""
4609
+
4610
+ #: includes/settings/wcj-settings-export.php:26
4611
+ msgid "UTF-8 BOM"
4612
+ msgstr ""
4613
+
4614
+ #: includes/export/class-wcj-fields-helper.php:311
4615
+ msgid "Visibility"
4616
+ msgstr ""
4617
+
4618
+ #: includes/export/class-wcj-fields-helper.php:310
4619
+ msgid "Featured"
4620
+ msgstr ""
4621
+
4622
+ #: includes/export/class-wcj-fields-helper.php:309
4623
+ msgid "Backorders"
4624
+ msgstr ""
4625
+
4626
+ #: includes/export/class-wcj-fields-helper.php:308
4627
+ msgid "Stock Status"
4628
+ msgstr ""
4629
+
4630
+ #: includes/export/class-wcj-fields-helper.php:307
4631
+ msgid "Manage Stock"
4632
+ msgstr ""
4633
+
4634
+ #: includes/export/class-wcj-fields-helper.php:306
4635
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:90
4636
+ msgid "Tax Class"
4637
+ msgstr ""
4638
+
4639
+ #: includes/export/class-wcj-fields-helper.php:305
4640
+ msgid "Tax Status"
4641
+ msgstr ""
4642
+
4643
+ #: includes/export/class-wcj-fields-helper.php:304
4644
+ msgid "Sold Individually"
4645
+ msgstr ""
4646
+
4647
+ #: includes/export/class-wcj-fields-helper.php:303
4648
+ msgid "Virtual"
4649
+ msgstr ""
4650
+
4651
+ #: includes/export/class-wcj-fields-helper.php:302
4652
+ msgid "Downloadable"
4653
+ msgstr ""
4654
+
4655
+ #: includes/export/class-wcj-fields-helper.php:301
4656
+ msgid "Weight"
4657
+ msgstr ""
4658
+
4659
+ #: includes/export/class-wcj-fields-helper.php:300
4660
+ msgid "Height"
4661
+ msgstr ""
4662
+
4663
+ #: includes/export/class-wcj-fields-helper.php:299
4664
+ msgid "Length"
4665
+ msgstr ""
4666
+
4667
+ #: includes/export/class-wcj-fields-helper.php:298
4668
+ msgid "Width"
4669
+ msgstr ""
4670
+
4671
+ #: includes/export/class-wcj-fields-helper.php:297
4672
+ msgid "Shipping Class ID"
4673
+ msgstr ""
4674
+
4675
+ #: includes/export/class-wcj-fields-helper.php:296
4676
+ msgid "Shipping Class"
4677
+ msgstr ""
4678
+
4679
+ #: includes/export/class-wcj-fields-helper.php:285
4680
+ msgid "Stock Quantity"
4681
+ msgstr ""
4682
+
4683
+ #: includes/export/class-wcj-fields-helper.php:284
4684
+ msgid "Total Stock"
4685
+ msgstr ""
4686
+
4687
+ #: includes/settings/wcj-settings-call-for-price.php:70
4688
+ msgid "Enable this to make all products (except variable) prices empty. When checkbox disabled, all prices go back to normal."
4689
+ msgstr ""
4690
+
4691
+ #: includes/settings/wcj-settings-call-for-price.php:68
4692
+ msgid "Make All Products Call for Price"
4693
+ msgstr ""
4694
+
4695
+ #: includes/settings/wcj-settings-admin-tools.php:66
4696
+ msgid "System Info"
4697
+ msgstr ""
4698
+
4699
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
4700
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
4701
+ #: includes/settings/wcj-settings-admin-tools.php:42
4702
+ #: includes/settings/wcj-settings-admin-tools.php:51
4703
+ #: includes/settings/wcj-settings-offer-price.php:139
4704
+ #: includes/settings/wcj-settings-offer-price.php:147
4705
+ msgid "Set zero to disable."
4706
+ msgstr ""
4707
+
4708
+ #: includes/settings/wcj-settings-admin-tools.php:41
4709
+ msgid "megabytes."
4710
+ msgstr ""
4711
+
4712
+ #: includes/settings/wcj-settings-admin-tools.php:40
4713
+ msgid "PHP Memory Limit"
4714
+ msgstr ""
4715
+
4716
+ #: includes/class-wcj-admin-tools.php:178
4717
+ msgid "NOT DEFINED"
4718
+ msgstr ""
4719
+
4720
+ #: includes/class-wcj-admin-tools.php:43
4721
+ msgid "Current PHP memory limit: %s."
4722
+ msgstr ""
4723
+
4724
+ #: includes/emails/class-wc-email-wcj-custom.php:250
4725
+ msgid "Created customer notification"
4726
+ msgstr ""
4727
+
4728
+ #: includes/emails/class-wc-email-wcj-custom.php:249
4729
+ msgid "Product on backorder notification"
4730
+ msgstr ""
4731
+
4732
+ #: includes/emails/class-wc-email-wcj-custom.php:248
4733
+ msgid "No stock notification"
4734
+ msgstr ""
4735
+
4736
+ #: includes/emails/class-wc-email-wcj-custom.php:247
4737
+ msgid "Low stock notification"
4738
+ msgstr "Notificación de stock bajo"
4739
+
4740
+ #: includes/settings/wcj-settings-wholesale-price.php:50
4741
+ msgid "Replaced values: %old_price%, %price%, %discount_value%."
4742
+ msgstr ""
4743
+
4744
+ #: includes/export/class-wcj-fields-helper.php:291
4745
+ #: includes/settings/wcj-settings-shipping-options.php:181
4746
+ msgid "Image URL"
4747
+ msgstr "URL de la imagen"
4748
+
4749
+ #: includes/settings/wcj-settings-shipping-options.php:170
4750
+ msgid "You can also style icons with CSS class \"wcj_shipping_icon\", or id \"wcj_shipping_icon_method_id\""
4751
+ msgstr ""
4752
+
4753
+ #: includes/settings/wcj-settings-shipping-options.php:169
4754
+ msgid "Icon Style"
4755
+ msgstr "Estilo del icono"
4756
+
4757
+ #: includes/settings/wcj-settings-shipping-options.php:151
4758
+ msgid "After label"
4759
+ msgstr "Después de la etiqueta"
4760
+
4761
+ #: includes/settings/wcj-settings-shipping-options.php:150
4762
+ msgid "Before label"
4763
+ msgstr "Antes de la etiqueta"
4764
+
4765
+ #: includes/settings/wcj-settings-shipping-options.php:145
4766
+ msgid "Icon Position"
4767
+ msgstr "Posición del icono"
4768
+
4769
+ #: includes/settings/wcj-settings-shipping-options.php:134
4770
+ msgid "This section will allow you to add icons for shipping method. Icons will be visible on cart and checkout pages."
4771
+ msgstr "Esta sección te permite añadir iconos para el método de envío. Los iconos serán visibles en el carro y la página de compra."
4772
+
4773
+ #: includes/settings/wcj-settings-shipping-options.php:132
4774
+ #: includes/settings/wcj-settings-shipping-options.php:138
4775
+ msgid "Shipping Icons"
4776
+ msgstr "Iconos de envío"
4777
+
4778
+ #: includes/settings/wcj-settings-shipping-options.php:88
4779
+ msgid "This section will allow you to add any text (e.g. description) for shipping method. Text will be visible on cart and checkout pages. You can add HTML tags here, e.g. try \"%s\""
4780
+ msgstr "Esta sección te permite añadir cualquier texto (p. ej. una descripción) para el método de envío. El texto será visible en el carro y la página de checkout. Puedes añadir etiquetas HTML aquí (p. ej. prueba \"%s\")"
4781
+
4782
+ #: includes/settings/wcj-settings-shipping-options.php:86
4783
+ #: includes/settings/wcj-settings-shipping-options.php:92
4784
+ msgid "Shipping Descriptions"
4785
+ msgstr ""
4786
+
4787
+ #: includes/settings/wcj-settings-shipping.php:43
4788
+ msgid "Custom Shipping (Legacy - without Shipping Zones)"
4789
+ msgstr ""
4790
+
4791
+ #: includes/settings/wcj-settings-shipping.php:32
4792
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:49
4793
+ msgid "Booster: Custom Shipping"
4794
+ msgstr "Booster: Envío personalizado"
4795
+
4796
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:25
4797
+ #: includes/settings/wcj-settings-shipping.php:30
4798
+ msgid "Admin Title"
4799
+ msgstr ""
4800
+
4801
+ #: includes/settings/wcj-settings-shipping.php:20
4802
+ msgid "Visit %s to set method's options."
4803
+ msgstr ""
4804
+
4805
+ #: includes/settings/wcj-settings-shipping.php:19
4806
+ msgid "This section lets you add custom shipping method."
4807
+ msgstr "Esta sección te permite añadir un método de envío personalizado."
4808
+
4809
+ #: includes/class-wcj-shipping-options.php:26
4810
+ msgid "Add descriptions and icons to shipping methods on frontend."
4811
+ msgstr ""
4812
+
4813
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-user-role.php:20
4814
+ msgid "Hold Control (Ctrl) key to select multiple roles."
4815
+ msgstr "Mantén pulsada la tecla Control (Ctrl) para seleccionar varios roles."
4816
+
4817
+ #: includes/settings/wcj-settings-product-addons.php:215
4818
+ msgid "Hide all addons"
4819
+ msgstr "Ocultar todos los addons"
4820
+
4821
+ #: includes/settings/wcj-settings-product-addons.php:214
4822
+ msgid "Admin Order Page"
4823
+ msgstr ""
4824
+
4825
+ #: includes/settings/wcj-settings-product-addons.php:191
4826
+ msgid "Addon in Order Details Table Format"
4827
+ msgstr ""
4828
+
4829
+ #: includes/settings/wcj-settings-product-addons.php:177
4830
+ #: includes/settings/wcj-settings-product-addons.php:200
4831
+ msgid "You can use %addon_label% and %addon_price%."
4832
+ msgstr ""
4833
+
4834
+ #: includes/settings/wcj-settings-product-addons.php:176
4835
+ #: includes/settings/wcj-settings-product-addons.php:199
4836
+ msgid "Each Addon"
4837
+ msgstr ""
4838
+
4839
+ #: includes/settings/wcj-settings-product-addons.php:168
4840
+ msgid "Addon in Cart Format"
4841
+ msgstr ""
4842
+
4843
+ #: includes/settings/wcj-settings-product-add-to-cart.php:213
4844
+ msgid "Add to Cart Button AJAX"
4845
+ msgstr ""
4846
+
4847
+ #: includes/settings/wcj-settings-product-add-to-cart.php:201
4848
+ msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
4849
+ msgstr ""
4850
+
4851
+ #: includes/settings/wcj-settings-product-add-to-cart.php:196
4852
+ msgid "Add to Cart Button Custom URL"
4853
+ msgstr ""
4854
+
4855
+ #: includes/settings/wcj-settings-product-add-to-cart.php:165
4856
+ msgid "Add to Cart Button Disabling"
4857
+ msgstr ""
4858
+
4859
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:94
4860
+ msgid "Disable Add to Cart Button AJAX"
4861
+ msgstr "Desactivar el AJAX en el botón de añadir al carro"
4862
+
4863
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:90
4864
+ msgid "As shop default (no changes)"
4865
+ msgstr ""
4866
+
4867
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:79
4868
+ msgid "Custom Add to Cart Button URL (Category/Archives)"
4869
+ msgstr ""
4870
+
4871
+ #: includes/settings/wcj-settings-price-by-country.php:130
4872
+ msgid "Disable Price by Country for Bots"
4873
+ msgstr "Desactivar \"precio por país\" para robots"
4874
+
4875
+ #: includes/settings/wcj-settings-price-by-country.php:129
4876
+ #: includes/settings/wcj-settings-price-by-user-role.php:54
4877
+ msgid "Search Engine Bots"
4878
+ msgstr "Robots de motores de búsqueda"
4879
+
4880
+ #: includes/settings/wcj-settings-price-by-country.php:115
4881
+ msgid "Recalculate price filter widget and sorting by price product prices"
4882
+ msgstr ""
4883
+
4884
+ #: includes/settings/wcj-settings-price-by-country.php:112
4885
+ msgid "Price Filter Widget and Sorting by Price Support"
4886
+ msgstr ""
4887
+
4888
+ #: includes/settings/wcj-settings-price-by-country.php:53
4889
+ msgid "Override Country with Customer's Checkout Shipping Country"
4890
+ msgstr ""
4891
+
4892
+ #: includes/settings/wcj-settings-price-by-country.php:51
4893
+ msgid "No Override"
4894
+ msgstr ""
4895
+
4896
+ #: includes/settings/wcj-settings-price-by-country.php:46
4897
+ msgid "Override Country Options"
4898
+ msgstr ""
4899
+
4900
+ #: includes/class-wcj-price-by-country.php:90
4901
+ msgid "Price filter widget product prices recalculated."
4902
+ msgstr ""
4903
+
4904
+ #: includes/settings/wcj-settings-orders.php:34
4905
+ msgid "Directly to DB"
4906
+ msgstr "Directo a base de datos"
4907
+
4908
+ #: includes/settings/wcj-settings-orders.php:28
4909
+ msgid "Choose if you want changed order currency to be saved directly to DB, or if you want to use filter. When using <em>filter</em> method, changes will be active only when \"Admin Order Currency\" section is enabled. When using <em>directly to DB</em> method, changes will be permanent, that is even if Booster plugin is removed."
4910
+ msgstr ""
4911
+
4912
+ #: includes/settings/wcj-settings-orders.php:27
4913
+ msgid "Admin Order Currency Method"
4914
+ msgstr ""
4915
+
4916
+ #: includes/settings/wcj-settings-orders.php:21
4917
+ msgid "When enabled this will add \"Booster: Orders\" metabox to each order's edit page."
4918
+ msgstr ""
4919
+
4920
+ #: includes/settings/wcj-settings-orders.php:14
4921
+ #: includes/settings/wcj-settings-orders.php:19
4922
+ msgid "Admin Order Currency"
4923
+ msgstr ""
4924
+
4925
+ #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
4926
+ msgid "Save order after you change this field."
4927
+ msgstr ""
4928
+
4929
+ #: includes/settings/wcj-settings-export.php:43
4930
+ msgid "Export Orders Fields"
4931
+ msgstr ""
4932
+
4933
+ #: includes/export/class-wcj-fields-helper.php:200
4934
+ msgid "Order Items Product Input Fields"
4935
+ msgstr ""
4936
+
4937
+ #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:26
4938
+ msgid "Update product after you change this field's value."
4939
+ msgstr ""
4940
+
4941
+ #: includes/settings/wcj-settings-checkout-files-upload.php:272
4942
+ #: includes/settings/wcj-settings-product-addons.php:184
4943
+ #: includes/settings/wcj-settings-product-addons.php:207
4944
+ msgid "After"
4945
+ msgstr "Después"
4946
+
4947
+ #: includes/settings/wcj-settings-checkout-files-upload.php:265
4948
+ msgid "Replaced values: %field_html%, %button_html%."
4949
+ msgstr ""
4950
+
4951
+ #: includes/settings/wcj-settings-checkout-files-upload.php:264
4952
+ #: includes/settings/wcj-settings-export.php:68
4953
+ #: includes/settings/wcj-settings-export.php:136
4954
+ #: includes/settings/wcj-settings-export.php:217
4955
+ msgid "Field"
4956
+ msgstr "Campo"
4957
+
4958
+ #: includes/settings/wcj-settings-checkout-files-upload.php:257
4959
+ msgid "Replaced values: %field_id%, %field_label%, %required_html%."
4960
+ msgstr ""
4961
+
4962
+ #: includes/settings/wcj-settings-checkout-files-upload.php:249
4963
+ #: includes/settings/wcj-settings-product-addons.php:169
4964
+ #: includes/settings/wcj-settings-product-addons.php:192
4965
+ msgid "Before"
4966
+ msgstr "Antes"
4967
+
4968
+ #: includes/settings/wcj-settings-checkout-files-upload.php:244
4969
+ msgid "Form Template Options"
4970
+ msgstr ""
4971
+
4972
+ #: includes/class-wcj-checkout-files-upload.php:170
4973
+ msgid "No files uploaded."
4974
+ msgstr "No se han subido archivos."
4975
+
4976
+ #: includes/widgets/class-wcj-widget-country-switcher.php:76
4977
+ msgid "Replace with currency"
4978
+ msgstr "Reemplazar con la moneda"
4979
+
4980
+ #: includes/settings/wcj-settings-wholesale-price.php:136
4981
+ msgid "User Roles Settings"
4982
+ msgstr ""
4983
+
4984
+ #: includes/settings/wcj-settings-wholesale-price.php:132
4985
+ msgid "If you want to set different wholesale pricing options for different user roles, fill this section. Please note that you can also use Booster's \"Price by User Role\" module without filling this section."
4986
+ msgstr ""
4987
+
4988
+ #: includes/settings/wcj-settings-wholesale-price.php:130
4989
+ msgid "Additional User Roles Options"
4990
+ msgstr ""
4991
+
4992
+ #: includes/settings/wcj-settings-wholesale-price.php:88
4993
+ msgid "Wholesale Levels Options"
4994
+ msgstr ""
4995
+
4996
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
4997
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
4998
+ msgid "Free Booster's version is limited to one level maximum. Please visit http://booster.io to get full version."
4999
+ msgstr ""
5000
+
5001
+ #: includes/settings/wcj-settings-sku.php:196
5002
+ msgid "Add SKU to Customer Emails"
5003
+ msgstr "Añadir SKU a los correos de los clientes"
5004
+
5005
+ #: includes/settings/wcj-settings-sku.php:156
5006
+ msgid "Automatically Generate SKU for New Products"
5007
+ msgstr "Generar automáticamente los SKU para productos nuevos"
5008
+
5009
+ #: includes/settings/wcj-settings-product-listings.php:162
5010
+ msgid "Select product categories to display excluding TAX."
5011
+ msgstr "Selecciona categorías de producto para mostrar sin impuestos."
5012
+
5013
+ #: includes/settings/wcj-settings-product-listings.php:160
5014
+ msgid "Product Categories - Excluding TAX"
5015
+ msgstr "Categorías de productos - Sin impuestos"
5016
+
5017
+ #: includes/settings/wcj-settings-product-listings.php:152
5018
+ msgid "Select product categories to display including TAX."
5019
+ msgstr "Selecciona categorías de producto para mostrar con impuestos."
5020
+
5021
+ #: includes/settings/wcj-settings-product-listings.php:150
5022
+ msgid "Product Categories - Including TAX"
5023
+ msgstr "Categorías de productos - Con impuestos"
5024
+
5025
+ #: includes/settings/wcj-settings-product-listings.php:142
5026
+ msgid "Select products to display excluding TAX."
5027
+ msgstr "Selecciona productos para mostrar sin impuestos."
5028
+
5029
+ #: includes/settings/wcj-settings-product-listings.php:140
5030
+ msgid "Products - Excluding TAX"
5031
+ msgstr "Productos - Sin impuestos"
5032
+
5033
+ #: includes/settings/wcj-settings-product-listings.php:132
5034
+ msgid "Select products to display including TAX."
5035
+ msgstr "Selecciona productos para mostrar con impuestos."
5036
+
5037
+ #: includes/settings/wcj-settings-product-listings.php:130
5038
+ msgid "Products - Including TAX"
5039
+ msgstr "Productos - Con impuestos"
5040
+
5041
+ #: includes/settings/wcj-settings-product-listings.php:126
5042
+ msgid "If you want to display part of your products including TAX and another part excluding TAX, you can set it here."
5043
+ msgstr "Si quieres mostrar parte de tus productos con impuestos y otra parte sin impuestos, puedes configurarlo aquí."
5044
+
5045
+ #: includes/settings/wcj-settings-product-listings.php:124
5046
+ msgid "TAX Display Prices in the Shop"
5047
+ msgstr ""
5048
+
5049
+ #: includes/class-wcj-product-by-user.php:26
5050
+ msgid "User Products"
5051
+ msgstr "Productos de usuario"
5052
+
5053
+ #: includes/class-wcj-product-by-user-role.php:29
5054
+ msgid "When enabled, module will add new \"Booster: Product Visibility by User Role\" meta box to each product's edit page."
5055
+ msgstr ""
5056
+
5057
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-user-role.php:19
5058
+ msgid "Visible for User Roles"
5059
+ msgstr "Visible para roles de usuario"
5060
+
5061
+ #: includes/class-wcj-product-by-user-role.php:27
5062
+ msgid "Display WooCommerce products by customer's user role."
5063
+ msgstr "Mostrar productos de WooCommerce dependiendo del rol de usuario."
5064
+
5065
+ #: includes/class-wcj-product-by-user-role.php:26
5066
+ msgid "Product Visibility by User Role"
5067
+ msgstr "Visibilidad de producto por rol de usuario"
5068
+
5069
+ #: includes/class-wcj-product-by-country.php:25
5070
+ msgid "Product Visibility by Country"
5071
+ msgstr "Visibilidad de producto por país"
5072
+
5073
+ #: includes/settings/wcj-settings-product-addons.php:51
5074
+ msgid "Save changes after you change this number."
5075
+ msgstr "Guarda los cambios cuando modifiques este número."
5076
+
5077
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:97
5078
+ msgid "Is required"
5079
+ msgstr "Requerido"
5080
+
5081
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:84
5082
+ #: includes/settings/wcj-settings-product-addons.php:118
5083
+ msgid "For checkbox use 'checked'; for radio and select enter default label. Leave blank for no default value."
5084
+ msgstr ""
5085
+
5086
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:76
5087
+ #: includes/settings/wcj-settings-product-addons.php:109
5088
+ msgid "Tooltip(s)"
5089
+ msgstr "Sugerencia(s)"
5090
+
5091
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:69
5092
+ #: includes/settings/wcj-settings-product-addons.php:100
5093
+ msgid "Price(s)"
5094
+ msgstr "Precio(s)"
5095
+
5096
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:77
5097
+ #: includes/settings/wcj-settings-product-addons.php:110
5098
+ msgid "For radio enter one value per line."
5099
+ msgstr "Para botones de radio, introduce un valor por línea."
5100
+
5101
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:62
5102
+ #: includes/settings/wcj-settings-product-addons.php:92
5103
+ msgid "Label(s)"
5104
+ msgstr "Etiqueta(s)"
5105
+
5106
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:51
5107
+ #: includes/settings/wcj-settings-product-addons.php:80
5108
+ msgid "Radio Buttons"
5109
+ msgstr "Botones radio"
5110
+
5111
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
5112
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
5113
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
5114
+ msgid "Save product after you change this number."
5115
+ msgstr "Guarda el producto después de modificar este número."
5116
+
5117
+ #: includes/class-wcj-product-addons.php:100
5118
+ msgid "Some of the required addons are not selected!"
5119
+ msgstr "No has seleccionado algunos de los addons requeridos!"
5120
+
5121
+ #: includes/settings/wcj-settings-price-labels.php:143
5122
+ msgid "Variable product's variation"
5123
+ msgstr "Variación del producto variable"
5124
+
5125
+ #: includes/settings/wcj-settings-price-labels.php:137
5126
+ msgid "Apply global price labels only for selected product types. Leave blank to disable the option."
5127
+ msgstr "Aplicar etiquetas de precio globales solo para determinados tipos de producto. Déjalo en blanco para desactivar esta opción."
5128
+
5129
+ #: includes/settings/wcj-settings-price-labels.php:136
5130
+ msgid "Product Types - Include"
5131
+ msgstr "Tipos de producto - Incluir"
5132
+
5133
+ #: includes/settings/wcj-settings-price-by-user-role.php:38
5134
+ msgid "If per product settings are enabled, you can choose which roles to show on product's edit page. Leave blank to show all roles."
5135
+ msgstr ""
5136
+
5137
+ #: includes/settings/wcj-settings-price-by-user-role.php:37
5138
+ msgid "Show Roles on per Product Settings"
5139
+ msgstr ""
5140
+
5141
+ #: includes/settings/wcj-settings-order-min-amount.php:29
5142
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:99
5143
+ msgid "Exclude"
5144
+ msgstr ""
5145
+
5146
+ #: includes/settings/wcj-settings-order-min-amount.php:28
5147
+ msgid "Exclude Shipping from Cart Total"
5148
+ msgstr ""
5149
+
5150
+ #: includes/settings/wcj-settings-multicurrency.php:186
5151
+ msgid "No default currency"
5152
+ msgstr "No establecer moneda por defecto"
5153
+
5154
+ #: includes/settings/wcj-settings-multicurrency.php:163
5155
+ #: includes/settings/wcj-settings-wholesale-price.php:137
5156
+ msgid "Save settings after you change this option. Leave blank to disable."
5157
+ msgstr "Guarda los cambios si modificas esta opción. Déjalo en blanco para desactivarlo."
5158
+
5159
+ #: includes/settings/wcj-settings-multicurrency.php:162
5160
+ msgid "Roles"
5161
+ msgstr "Roles"
5162
+
5163
+ #: includes/settings/wcj-settings-multicurrency.php:155
5164
+ msgid "Role Defaults"
5165
+ msgstr ""
5166
+
5167
+ #: includes/export/class-wcj-fields-helper.php:199
5168
+ msgid "Order Items"
5169
+ msgstr "Artículos del pedido"
5170
+
5171
+ #: includes/class-wcj-export-import.php:195
5172
+ msgid "Filter by Product Title"
5173
+ msgstr "Filtrar por título de producto"
5174
+
5175
+ #: includes/class-wcj-export-import.php:194
5176
+ #: includes/class-wcj-export-import.php:200
5177
+ msgid "Filter by Billing Country"
5178
+ msgstr "Filtrar por país de facturación"
5179
+
5180
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:20
5181
+ #: includes/settings/wcj-settings-products-xml.php:50
5182
+ msgid "%s seconds till next update."
5183
+ msgstr "%s segundos hasta la próxima actualización."
5184
+
5185
+ #: includes/settings/wcj-settings-export.php:20
5186
+ #: includes/settings/wcj-settings-pdf-invoicing.php:98
5187
+ msgid "CSV Separator"
5188
+ msgstr "Separador de CSV"
5189
+
5190
+ #: includes/export/class-wcj-fields-helper.php:135
5191
+ #: includes/export/class-wcj-fields-helper.php:220
5192
+ msgid "Shipping Address 1"
5193
+ msgstr "Dirección de envío 1"
5194
+
5195
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:287
5196
+ msgid "No sales yet."
5197
+ msgstr "Todavía no hay ventas."
5198
+
5199
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:174
5200
+ msgid "Product exists!"
5201
+ msgstr "¡El producto ya existe!"
5202
+
5203
+ #: includes/settings/wcj-settings-wholesale-price.php:76
5204
+ msgid "Products to exclude"
5205
+ msgstr "Productos a excluir"
5206
+
5207
+ #: includes/settings/wcj-settings-product-by-user.php:129
5208
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:298
5209
+ msgid "\"%product_title%\" successfully edited!"
5210
+ msgstr "¡Se ha editado correctamente \"%product_title%\"!"
5211
+
5212
+ #: includes/settings/wcj-settings-product-by-user.php:127
5213
+ msgid "Message: Product Successfully Edited"
5214
+ msgstr "Mensaje: Producto editado correctamente"
5215
+
5216
+ #: includes/settings/wcj-settings-product-by-user.php:122
5217
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:291
5218
+ msgid "\"%product_title%\" successfully added!"
5219
+ msgstr "¡Se ha añadido correctamente \"%product_title%\"!"
5220
+
5221
+ #: includes/settings/wcj-settings-product-by-user.php:120
5222
+ msgid "Message: Product Successfully Added"
5223
+ msgstr "Mensaje: Producto añadido correctamente"
5224
+
5225
+ #: includes/settings/wcj-settings-product-by-user.php:106
5226
+ msgid "Require Unique Title"
5227
+ msgstr "Requerir título único"
5228
+
5229
+ #: includes/settings/wcj-settings-price-by-country.php:123
5230
+ msgid "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: Country Switcher\" widget, this will add country flags to these select boxes."
5231
+ msgstr ""
5232
+
5233
+ #: includes/settings/wcj-settings-price-by-country.php:121
5234
+ msgid "Add Countries Flags Images to Select Drop-Down Box"
5235
+ msgstr "Añadir banderas de países a la lista de selección"
5236
+
5237
+ #: includes/export/class-wcj-fields-helper.php:140
5238
+ #: includes/export/class-wcj-fields-helper.php:225
5239
+ msgid "Shipping Country"
5240
+ msgstr "País de envío"
5241
+
5242
+ #: includes/export/class-wcj-fields-helper.php:139
5243
+ #: includes/export/class-wcj-fields-helper.php:224
5244
+ msgid "Shipping Postcode"
5245
+ msgstr "Código postal de envío"
5246
+
5247
+ #: includes/export/class-wcj-fields-helper.php:138
5248
+ #: includes/export/class-wcj-fields-helper.php:223
5249
+ msgid "Shipping State"
5250
+ msgstr "Estado/provincia de envío"
5251
+
5252
+ #: includes/export/class-wcj-fields-helper.php:134
5253
+ #: includes/export/class-wcj-fields-helper.php:219
5254
+ msgid "Shipping Company"
5255
+ msgstr "Empresa de envío"
5256
+
5257
+ #: includes/export/class-wcj-fields-helper.php:133
5258
+ #: includes/export/class-wcj-fields-helper.php:218
5259
+ msgid "Shipping Last Name"
5260
+ msgstr "Apellido de envío"
5261
+
5262
+ #: includes/export/class-wcj-fields-helper.php:132
5263
+ #: includes/export/class-wcj-fields-helper.php:217
5264
+ msgid "Shipping First Name"
5265
+ msgstr "Nombre de envío"
5266
+
5267
+ #: includes/export/class-wcj-fields-helper.php:35
5268
+ #: includes/export/class-wcj-fields-helper.php:131
5269
+ #: includes/export/class-wcj-fields-helper.php:216
5270
+ msgid "Billing Email"
5271
+ msgstr "Email de facturación"
5272
+
5273
+ #: includes/export/class-wcj-fields-helper.php:45
5274
+ #: includes/export/class-wcj-fields-helper.php:130
5275
+ #: includes/export/class-wcj-fields-helper.php:215
5276
+ msgid "Billing Phone"
5277
+ msgstr "Teléfono de facturación"
5278
+
5279
+ #: includes/class-wcj-orders.php:351
5280
+ #: includes/export/class-wcj-fields-helper.php:44
5281
+ #: includes/export/class-wcj-fields-helper.php:129
5282
+ #: includes/export/class-wcj-fields-helper.php:214
5283
+ #: includes/settings/wcj-settings-orders.php:66
5284
+ msgid "Billing Country"
5285
+ msgstr "País de facturación"
5286
+
5287
+ #: includes/export/class-wcj-fields-helper.php:43
5288
+ #: includes/export/class-wcj-fields-helper.php:128
5289
+ #: includes/export/class-wcj-fields-helper.php:213
5290
+ msgid "Billing Postcode"
5291
+ msgstr "Código postal de facturación"
5292
+
5293
+ #: includes/export/class-wcj-fields-helper.php:42
5294
+ #: includes/export/class-wcj-fields-helper.php:127
5295
+ #: includes/export/class-wcj-fields-helper.php:212
5296
+ msgid "Billing State"
5297
+ msgstr "Estado/provincia de facturación"
5298
+
5299
+ #: includes/export/class-wcj-fields-helper.php:41
5300
+ #: includes/export/class-wcj-fields-helper.php:126
5301
+ #: includes/export/class-wcj-fields-helper.php:211
5302
+ msgid "Billing City"
5303
+ msgstr ""
5304
+
5305
+ #: includes/export/class-wcj-fields-helper.php:40
5306
+ #: includes/export/class-wcj-fields-helper.php:125
5307
+ #: includes/export/class-wcj-fields-helper.php:210
5308
+ msgid "Billing Address 2"
5309
+ msgstr ""
5310
+
5311
+ #: includes/export/class-wcj-fields-helper.php:39
5312
+ #: includes/export/class-wcj-fields-helper.php:124
5313
+ #: includes/export/class-wcj-fields-helper.php:209
5314
+ msgid "Billing Address 1"
5315
+ msgstr ""
5316
+
5317
+ #: includes/export/class-wcj-fields-helper.php:38
5318
+ #: includes/export/class-wcj-fields-helper.php:123
5319
+ #: includes/export/class-wcj-fields-helper.php:208
5320
+ msgid "Billing Company"
5321
+ msgstr ""
5322
+
5323
+ #: includes/export/class-wcj-fields-helper.php:37
5324
+ #: includes/export/class-wcj-fields-helper.php:122
5325
+ #: includes/export/class-wcj-fields-helper.php:207
5326
+ msgid "Billing Last Name"
5327
+ msgstr ""
5328
+
5329
+ #: includes/export/class-wcj-fields-helper.php:36
5330
+ #: includes/export/class-wcj-fields-helper.php:121
5331
+ #: includes/export/class-wcj-fields-helper.php:206
5332
+ msgid "Billing First Name"
5333
+ msgstr ""
5334
+
5335
+ #: includes/export/class-wcj-fields-helper.php:119
5336
+ #: includes/export/class-wcj-fields-helper.php:204
5337
+ msgid "Order Payment Method"
5338
+ msgstr "Método de pago del pedido"
5339
+
5340
+ #: includes/export/class-wcj-fields-helper.php:115
5341
+ #: includes/export/class-wcj-fields-helper.php:198
5342
+ msgid "Order Item Count"
5343
+ msgstr "Número de artículos en el pedido"
5344
+
5345
+ #: includes/export/class-wcj-fields-helper.php:112
5346
+ #: includes/export/class-wcj-fields-helper.php:195
5347
+ msgid "Order Status"
5348
+ msgstr "Estado del pedido"
5349
+
5350
+ #: includes/export/class-wcj-fields-helper.php:111
5351
+ #: includes/export/class-wcj-fields-helper.php:194
5352
+ msgid "Order Number"
5353
+ msgstr "Número de pedido"
5354
+
5355
+ #: includes/class-wcj-export-import.php:27
5356
+ msgid "WooCommerce export tools."
5357
+ msgstr "Herramientas de exportación de WooCommerce."
5358
+
5359
+ #: includes/export/class-wcj-fields-helper.php:137
5360
+ #: includes/export/class-wcj-fields-helper.php:222
5361
+ msgid "Shipping City"
5362
+ msgstr ""
5363
+
5364
+ #: woocommerce-jetpack.php:208
5365
+ msgid "If you like <strong>Booster for WooCommerce</strong> please leave us a %s rating. Thank you, we couldn't have done it without you!"
5366
+ msgstr "Si te gusta <strong>Booster for WooCommerce</strong>, por favor, puntúanos con %s. ¡Gracias, no podríamos haberlo hecho sin ti!"
5367
+
5368
+ #: includes/reports/wcj-class-reports-monthly-sales.php:334
5369
+ msgid "Reset Currency Rates"
5370
+ msgstr "Restablecer tasas de monedas"
5371
+
5372
+ #: includes/reports/wcj-class-reports-monthly-sales.php:327
5373
+ msgid "Report generated in: %s s"
5374
+ msgstr "Informe generado en: %s s"
5375
+
5376
+ #: includes/reports/wcj-class-reports-monthly-sales.php:92
5377
+ msgid "Currency Rates"
5378
+ msgstr "Tipos de cambio"
5379
+
5380
+ #: includes/reports/wcj-class-reports-monthly-sales.php:90
5381
+ msgid "Average / Order (excl. TAX)"
5382
+ msgstr "Media / Pedido (excl. impuestos)"
5383
+
5384
+ #: includes/reports/wcj-class-reports-monthly-sales.php:87
5385
+ msgid "Orders Average / Day"
5386
+ msgstr "Media de pedidos / día"
5387
+
5388
+ #: includes/reports/wcj-class-reports-monthly-sales.php:85
5389
+ msgid "Days"
5390
+ msgstr "Días"
5391
+
5392
+ #: includes/reports/wcj-class-reports-monthly-sales.php:41
5393
+ msgid "Currency rates deleted."
5394
+ msgstr ""
5395
+
5396
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:313
5397
+ msgid "Refunds"
5398
+ msgstr "Devoluciones"
5399
+
5400
+ #: includes/settings/wcj-settings-sku.php:172
5401
+ msgid "Allow Duplicate SKUs"
5402
+ msgstr "Permitir SKUs duplicados"
5403
+
5404
+ #: includes/settings/wcj-settings-purchase-data.php:179
5405
+ #: includes/settings/wcj-settings-sku.php:151
5406
+ msgid "More Options"
5407
+ msgstr "Más opciones"
5408
+
5409
+ #: includes/settings/wcj-settings-products-per-page.php:47
5410
+ msgid "Position Priority"
5411
+ msgstr "Prioridad de posiciones"
5412
+
5413
+ #: includes/settings/wcj-settings-products-per-page.php:43
5414
+ msgid "After shop loop"
5415
+ msgstr "Después del bucle de la tienda"
5416
+
5417
+ #: includes/settings/wcj-settings-products-per-page.php:42
5418
+ msgid "Before shop loop"
5419
+ msgstr "Antes del bucle de la tienda"
5420
+
5421
+ #: includes/settings/wcj-settings-products-per-page.php:20
5422
+ msgid "Name|Number; one per line; -1 for all products"
5423
+ msgstr "Nombre|Número; uno por línea; -1 para todos los productos"
5424
+
5425
+ #: includes/settings/wcj-settings-products-per-page.php:19
5426
+ msgid "Select Options"
5427
+ msgstr "Selecciona opciones"
5428
+
5429
+ #: includes/class-wcj-products-per-page.php:92
5430
+ #: includes/settings/wcj-settings-products-per-page.php:63
5431
+ msgid "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. Products on page %select_form%"
5432
+ msgstr "Productos <strong>%from% - %to%</strong> de <strong>%total%</strong>. Productos en la página %select_form%"
5433
+
5434
+ #: includes/settings/wcj-settings-product-bookings.php:91
5435
+ msgid "Hide Quantity Selector for Bookings Products"
5436
+ msgstr ""
5437
+
5438
+ #: includes/settings/wcj-settings-product-addons.php:161
5439
+ msgid "Enable AJAX on Single Product Page"
5440
+ msgstr "Activar AJAX en la página individual de producto"
5441
+
5442
+ #: includes/settings/wcj-settings-product-addons.php:44
5443
+ msgid "When enabled, this will add addons below to all products."
5444
+ msgstr "Cuando esté activado, esto añadirá los addons debajo de todos los productos."
5445
+
5446
+ #: includes/settings/wcj-settings-product-addons.php:42
5447
+ msgid "Enable All Products Addons"
5448
+ msgstr "Activar addons para todos los productos"
5449
+
5450
+ #: includes/settings/wcj-settings-product-addons.php:37
5451
+ msgid "All Product Options"
5452
+ msgstr "Opciones para todos los productos"
5453
+
5454
+ #: includes/settings/wcj-settings-product-addons.php:25
5455
+ msgid "When enabled, this will add new \"Booster: Product Addons\" meta box to each product's edit page."
5456
+ msgstr ""
5457
+
5458
+ #: includes/settings/wcj-settings-product-addons.php:23
5459
+ msgid "Enable per Product Addons"
5460
+ msgstr ""
5461
+
5462
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
5463
+ #: includes/settings/wcj-settings-product-addons.php:66
5464
+ msgid "Product Addon"
5465
+ msgstr ""
5466
+
5467
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
5468
+ #: includes/settings/wcj-settings-product-addons.php:50
5469
+ msgid "Product Addons Total Number"
5470
+ msgstr ""
5471
+
5472
+ #: includes/class-wcj-product-addons.php:115
5473
+ msgid "Booster: Free plugin's version is limited to only three products with per product addons enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of products with per product addons."
5474
+ msgstr ""
5475
+
5476
+ #: includes/class-wcj-product-addons.php:29
5477
+ msgid "Add (paid/free/discount) addons to WooCommerce products."
5478
+ msgstr ""
5479
+
5480
+ #: includes/class-wcj-product-addons.php:28
5481
+ msgid "Product Addons"
5482
+ msgstr ""
5483
+
5484
+ #: includes/settings/wcj-settings-product-add-to-cart.php:243
5485
+ msgid "Enable on Category/Archive Pages"
5486
+ msgstr "Activar en páginas de Categorías/Archivos"
5487
+
5488
+ #: includes/settings/wcj-settings-product-add-to-cart.php:236
5489
+ msgid "Enable on Single Product Pages"
5490
+ msgstr "Activar en página individual de producto"
5491
+
5492
+ #: includes/settings/wcj-settings-product-add-to-cart.php:235
5493
+ msgid "Open External Products on Add to Cart in New Window"
5494
+ msgstr ""
5495
+
5496
+ #: includes/settings/wcj-settings-free-price.php:16
5497
+ #: includes/settings/wcj-settings-product-add-to-cart.php:230
5498
+ msgid "External Products"
5499
+ msgstr "Productos externos"
5500
+
5501
+ #: includes/settings/wcj-settings-product-add-to-cart.php:218
5502
+ msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
5503
+ msgstr ""
5504
+
5505
+ #: includes/class-wcj-product-add-to-cart.php:30
5506
+ msgid "Open external products on add to cart in new window."
5507
+ msgstr ""
5508
+
5509
+ #: includes/class-wcj-product-add-to-cart.php:29
5510
+ msgid "Disable add to cart button on per product basis."
5511
+ msgstr ""
5512
+
5513
+ #: includes/class-wcj-product-add-to-cart.php:28
5514
+ msgid "Disable quantity input."
5515
+ msgstr ""
5516
+
5517
+ #: includes/class-wcj-product-add-to-cart.php:27
5518
+ msgid "Display radio buttons instead of drop box for variable products."
5519
+ msgstr ""
5520
+
5521
+ #: includes/class-wcj-product-add-to-cart.php:26
5522
+ msgid "Automatically add to cart on product visit."
5523
+ msgstr ""
5524
+
5525
+ #: includes/class-wcj-product-add-to-cart.php:25
5526
+ msgid "Set any local url to redirect to on WooCommerce Add to Cart."
5527
+ msgstr ""
5528
+
5529
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:51
5530
+ #: includes/settings/wcj-settings-shipping-by-user-role.php:51
5531
+ msgid "Exclude User Roles"
5532
+ msgstr ""
5533
+
5534
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:40
5535
+ #: includes/settings/wcj-settings-shipping-by-user-role.php:40
5536
+ msgid "Include User Roles"
5537
+ msgstr ""
5538
+
5539
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:17
5540
+ #: includes/settings/wcj-settings-product-by-user.php:79
5541
+ #: includes/settings/wcj-settings-shipping-by-user-role.php:18
5542
+ msgid "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's <a href=\"%s\">General</a> module"
5543
+ msgstr ""
5544
+
5545
+ #: includes/class-wcj-payment-gateways-by-user-role.php:26
5546
+ msgid "Set user roles to include/exclude for WooCommerce payment gateways to show up."
5547
+ msgstr ""
5548
+
5549
+ #: includes/class-wcj-payment-gateways-by-user-role.php:25
5550
+ msgid "Gateways by User Role"
5551
+ msgstr "Pasarelas de pago por rol de usuario"
5552
+
5553
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
5554
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
5555
+ #: includes/settings/wcj-settings-product-custom-info.php:81
5556
+ #: includes/settings/wcj-settings-product-images.php:55
5557
+ #: includes/settings/wcj-settings-product-images.php:64
5558
+ #: includes/settings/wcj-settings-product-images.php:73
5559
+ #: includes/settings/wcj-settings-products-xml.php:106
5560
+ msgid "You can use shortcodes here."
5561
+ msgstr "Puedes usar shortcodes aquí."
5562
+
5563
+ #: includes/class-wcj-product-bulk-meta-editor.php:294
5564
+ #: includes/settings/wcj-settings-export.php:91
5565
+ #: includes/settings/wcj-settings-export.php:161
5566
+ #: includes/settings/wcj-settings-export.php:240
5567
+ #: includes/settings/wcj-settings-global-discount.php:69
5568
+ #: includes/settings/wcj-settings-orders.php:110
5569
+ #: includes/settings/wcj-settings-product-listings.php:217
5570
+ msgid "Value"
5571
+ msgstr "Valor"
5572
+
5573
+ #: includes/settings/wcj-settings-orders.php:95
5574
+ #: includes/settings/wcj-settings-product-listings.php:202
5575
+ msgid "Custom Column"
5576
+ msgstr "Columna personalizada"
5577
+
5578
+ #: includes/settings/wcj-settings-orders.php:80
5579
+ #: includes/settings/wcj-settings-product-listings.php:186
5580
+ msgid "Custom Columns Total Number"
5581
+ msgstr "Número total de columnas personalizadas"
5582
+
5583
+ #: includes/settings/wcj-settings-multicurrency.php:157
5584
+ #: includes/settings/wcj-settings-order-min-amount.php:97
5585
+ #: includes/settings/wcj-settings-price-by-user-role.php:67
5586
+ msgid "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's <a href=\"%s\">General</a> module."
5587
+ msgstr "Puedes añadir roles con la herramienta \"Añadir/Administrar roles personalizados\" en el módulo <a href=\"%s\">General</a> de Booster."
5588
+
5589
+ #: includes/settings/wcj-settings-order-min-amount.php:94
5590
+ msgid "Order Minimum Amount by User Role"
5591
+ msgstr ""
5592
+
5593
+ #: includes/class-wcj-product-bulk-meta-editor.php:389
5594
+ #: includes/class-wcj-purchase-data.php:76
5595
+ #: includes/export/class-wcj-fields-helper.php:280
5596
+ #: includes/functions/wcj-reports-functions.php:25
5597
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
5598
+ msgid "Product ID"
5599
+ msgstr "ID de producto"
5600
+
5601
+ #: includes/class-wcj-export-import.php:50
5602
+ msgid "Export Products."
5603
+ msgstr ""
5604
+
5605
+ #: includes/class-wcj-export-import.php:49
5606
+ msgid "Export Products"
5607
+ msgstr "Exportar productos"
5608
+
5609
+ #: includes/admin/class-wcj-settings-manager.php:141
5610
+ msgid "%d options successfully deleted."
5611
+ msgstr ""
5612
+
5613
+ #: includes/admin/class-wcj-settings-manager.php:76
5614
+ msgid "%d options successfully imported."
5615
+ msgstr ""
5616
+
5617
+ #: includes/admin/class-wcj-settings-manager.php:64
5618
+ #: includes/admin/class-wcj-settings-manager.php:69
5619
+ msgid "Wrong file format!"
5620
+ msgstr "¡Formato de archivo incorrecto!"
5621
+
5622
+ #: includes/admin/class-wcj-settings-manager.php:56
5623
+ msgid "Please upload a file to import!"
5624
+ msgstr "¡Por favor, sube un archivo para importar!"
5625
+
5626
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:325
5627
+ msgid "Edit Product"
5628
+ msgstr "Editar producto"
5629
+
5630
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:206
5631
+ msgid "Sale price must be less than the regular price!"
5632
+ msgstr "¡El precio de oferta debe ser menor que el precio normal!"
5633
+
5634
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:200
5635
+ msgid "%s is required!"
5636
+ msgstr ""
5637
+
5638
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:166
5639
+ msgid "Title is required!"
5640
+ msgstr "¡El título es obligatorio!"
5641
+
5642
+ #: includes/shortcodes/class-wcj-input-field-shortcodes.php:51
5643
+ msgid "Attribute \"name\" is required!"
5644
+ msgstr "¡El atributo \"nombre\" es obligatorio!"
5645
+
5646
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:188
5647
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:147
5648
+ msgid "Max Weight"
5649
+ msgstr "Peso máximo"
5650
+
5651
+ #: includes/settings/wcj-settings-global-discount.php:28
5652
+ #: includes/settings/wcj-settings-product-by-user.php:138
5653
+ #: includes/settings/wcj-settings-products-xml.php:26
5654
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:157
5655
+ msgid "Press Save changes after you change this number."
5656
+ msgstr "Pulsa Guardar Cambios después de modificar este número."
5657
+
5658
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:149
5659
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:102
5660
+ msgid "By Total Cart Weight Table"
5661
+ msgstr ""
5662
+
5663
+ #: includes/settings/wcj-settings-pdf-invoicing-templates.php:44
5664
+ msgid "For the list of available shortcodes, please visit %s."
5665
+ msgstr "Para ver la lista de shortcodes disponibles, por favor ve a %s."
5666
+
5667
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:91
5668
+ msgid "\"Delete\" button requires confirmation"
5669
+ msgstr ""
5670
+
5671
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:84
5672
+ msgid "\"Create\" button requires confirmation"
5673
+ msgstr ""
5674
+
5675
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:304
5676
+ msgid "Document Date"
5677
+ msgstr "Fecha de documento"
5678
+
5679
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:402
5680
+ msgid "File is too big!"
5681
+ msgstr "¡El archivo es demasiado grande!"
5682
+
5683
+ #: includes/input-fields/wcj-product-input-fields-options.php:119
5684
+ msgid "File: Max size"
5685
+ msgstr "Tamaño máximo de archivo"
5686
+
5687
+ #: includes/input-fields/wcj-product-input-fields-options.php:118
5688
+ msgid "If file is selected, set max file size here. Set to zero to accept all files"
5689
+ msgstr ""
5690
+
5691
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:77
5692
+ msgid "You can add input fields with [wcj_input_field] shortcode."
5693
+ msgstr ""
5694
+
5695
+ #: includes/settings/wcj-settings-sku.php:36
5696
+ msgid "Sequential Number Generation - Counter"
5697
+ msgstr ""
5698
+
5699
+ #: includes/settings/wcj-settings-sku.php:26
5700
+ msgid "From product ID"
5701
+ msgstr "De ID de producto"
5702
+
5703
+ #: includes/settings/wcj-settings-order-numbers.php:20
5704
+ #: includes/settings/wcj-settings-sku.php:21
5705
+ msgid "Number Generation"
5706
+ msgstr "Generación de números"
5707
+
5708
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:55
5709
+ msgid "Hide Image on Archives"
5710
+ msgstr "Ocultar imagen en Archivos"
5711
+
5712
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:45
5713
+ msgid "Hide Thumbnails on Single"
5714
+ msgstr "Ocultar vistas previas en página individual"
5715
+
5716
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:35
5717
+ msgid "Hide Image on Single"
5718
+ msgstr "Ocultar imagen en página individual"
5719
+
5720
+ #: includes/settings/wcj-settings-product-by-user.php:113
5721
+ msgid "Add \"My Products\" Tab to User's My Account Page"
5722
+ msgstr ""
5723
+
5724
+ #: includes/settings/wcj-settings-product-by-user.php:99
5725
+ msgid "Product Status"
5726
+ msgstr "Estado de producto"
5727
+
5728
+ #: includes/settings/wcj-settings-product-by-user.php:78
5729
+ msgid "User Visibility"
5730
+ msgstr "Visibilidad de usuario"
5731
+
5732
+ #: includes/settings/wcj-settings-product-by-user.php:61
5733
+ msgid "<em>Title</em> field is always enabled and required."
5734
+ msgstr "El campo <em>Título</em> siempre está activo y es obligatorio."
5735
+
5736
+ #: includes/settings/wcj-settings-product-addons.php:133
5737
+ #: includes/settings/wcj-settings-product-by-user.php:45
5738
+ msgid "Is Required"
5739
+ msgstr "Es obligatorio"
5740
+
5741
+ #: includes/settings/wcj-settings-product-by-user.php:35
5742
+ msgid "Additional Fields"
5743
+ msgstr "Campos adicionales"
5744
+
5745
+ #: includes/settings/wcj-settings-product-by-user.php:15
5746
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:181
5747
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:373
5748
+ msgid "Image"
5749
+ msgstr "Imagen"
5750
+
5751
+ #: includes/class-wcj-order-custom-statuses.php:398
5752
+ #: includes/class-wcj-order-custom-statuses.php:422
5753
+ #: includes/class-wcj-product-by-user.php:205
5754
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
5755
+ msgid "Edit"
5756
+ msgstr "Editar"
5757
+
5758
+ #: includes/class-wcj-product-by-user.php:154
5759
+ #: includes/class-wcj-product-by-user.php:163
5760
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:313
5761
+ msgid "Wrong user ID!"
5762
+ msgstr "¡ID de usuario incorrecto!"
5763
+
5764
+ #: includes/class-wcj-product-by-user.php:27
5765
+ msgid "Let users add new WooCommerce products from frontend."
5766
+ msgstr "Permitir que los usuarios añadan nuevos productos de WooCommerce desde la portada."
5767
+
5768
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:53
5769
+ msgid "Product by User"
5770
+ msgstr "Producto por usuario"
5771
+
5772
+ #: includes/settings/wcj-settings-product-bookings.php:68
5773
+ #: includes/settings/wcj-settings-product-bookings.php:75
5774
+ msgid "Message: \"Date to\" is missing"
5775
+ msgstr "Mensaje: Falta \"Hasta fecha\""
5776
+
5777
+ #: includes/settings/wcj-settings-product-bookings.php:61
5778
+ msgid "Message: \"Date from\" is missing"
5779
+ msgstr "Mensaje: Falta \"Desde fecha\""
5780
+
5781
+ #: includes/settings/wcj-settings-product-bookings.php:54
5782
+ msgid "Frontend Label: Price per Day"
5783
+ msgstr "Etiqueta de portada: Precio por día"
5784
+
5785
+ #: includes/settings/wcj-settings-product-bookings.php:47
5786
+ msgid "Frontend Label: Period"
5787
+ msgstr ""
5788
+
5789
+ #: includes/settings/wcj-settings-product-bookings.php:40
5790
+ msgid "Frontend Label: \"Date to\""
5791
+ msgstr ""
5792
+
5793
+ #: includes/settings/wcj-settings-product-bookings.php:33
5794
+ msgid "Frontend Label: \"Date from\""
5795
+ msgstr ""
5796
+
5797
+ #: includes/class-wcj-product-bookings.php:326
5798
+ #: includes/settings/wcj-settings-product-bookings.php:56
5799
+ msgid "/ day"
5800
+ msgstr "/ día"
5801
+
5802
+ #: includes/settings/wcj-settings-custom-css.php:36
5803
+ #: includes/settings/wcj-settings-product-add-to-cart.php:172
5804
+ #: includes/settings/wcj-settings-product-add-to-cart.php:203
5805
+ #: includes/settings/wcj-settings-product-add-to-cart.php:220
5806
+ msgid "This will add meta box to each product's edit page"
5807
+ msgstr ""
5808
+
5809
+ #: includes/settings/wcj-settings-product-add-to-cart.php:170
5810
+ msgid "Disable Add to Cart Buttons on per Product Basis"
5811
+ msgstr ""
5812
+
5813
+ #: includes/settings/wcj-settings-product-add-to-cart.php:154
5814
+ msgid "Disable on Cart Page"
5815
+ msgstr "Desactivar en página de carrito"
5816
+
5817
+ #: includes/settings/wcj-settings-product-add-to-cart.php:147
5818
+ msgid "Disable on Single Product Page"
5819
+ msgstr "Desactivar en página individual de producto"
5820
+
5821
+ #: includes/settings/wcj-settings-product-add-to-cart.php:146
5822
+ msgid "Disable Quantity Field for All Products"
5823
+ msgstr "Desactivar el campo de cantidad para todos los productos"
5824
+
5825
+ #: includes/settings/wcj-settings-product-add-to-cart.php:141
5826
+ msgid "Add to Cart Quantity"
5827
+ msgstr ""
5828
+
5829
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:69
5830
+ msgid "Disable Add to Cart Button (Category/Archives)"
5831
+ msgstr "Desactivar el botón de añadir al carrito (Categorías/Archivos)"
5832
+
5833
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:59
5834
+ msgid "Disable Add to Cart Button (Single Product Page)"
5835
+ msgstr "Desactivar el botón de añadir al carrito (Página individual de producto)"
5836
+
5837
+ #: includes/settings/wcj-settings-price-formats.php:96
5838
+ msgid "Number of Decimals"
5839
+ msgstr "Número de decimales"
5840
+
5841
+ #: includes/settings/wcj-settings-price-formats.php:88
5842
+ msgid "Decimal Separator"
5843
+ msgstr "Separador de decimales"
5844
+
5845
+ #: includes/settings/wcj-settings-price-formats.php:80
5846
+ msgid "Thousand Separator"
5847
+ msgstr "Separador de miles"
5848
+
5849
+ #: includes/settings/wcj-settings-price-formats.php:75
5850
+ msgid "Right with space"
5851
+ msgstr ""
5852
+
5853
+ #: includes/settings/wcj-settings-price-formats.php:74
5854
+ msgid "Left with space"
5855
+ msgstr ""
5856
+
5857
+ #: includes/settings/wcj-settings-price-formats.php:73
5858
+ msgid "Right"
5859
+ msgstr "Derecha"
5860
+
5861
+ #: includes/settings/wcj-settings-price-formats.php:72
5862
+ msgid "Left"
5863
+ msgstr "Izquierda"
5864
+
5865
+ #: includes/settings/wcj-settings-price-formats.php:67
5866
+ msgid "Currency Position"
5867
+ msgstr "Posición del símbolo de moneda"
5868
+
5869
+ #: includes/settings/wcj-settings-price-formats.php:58
5870
+ msgid "Format"
5871
+ msgstr "Formato"
5872
+
5873
+ #: includes/settings/wcj-settings-price-formats.php:43
5874
+ msgid "Total Number"
5875
+ msgstr "Número total"
5876
+
5877
+ #: includes/class-wcj-price-formats.php:25
5878
+ msgid "Price Formats"
5879
+ msgstr "Formatos de precio"
5880
+
5881
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:99
5882
+ #: includes/settings/wcj-settings-price-by-user-role.php:89
5883
+ #: includes/settings/wcj-settings-price-by-user-role.php:138
5884
+ msgid "Make Empty Price"
5885
+ msgstr "Hacer precio vacío"
5886
+
5887
+ #: includes/class-wcj-payment-gateways.php:75
5888
+ msgid "%s Fields"
5889
+ msgstr "Campos %s"
5890
+
5891
+ #: includes/settings/wcj-settings-order-numbers.php:95
5892
+ msgid "Enable Order Tracking by Custom Number"
5893
+ msgstr "Activar seguimiento del pedido por número personalizado"
5894
+
5895
+ #: includes/class-wcj-order-custom-statuses.php:429
5896
+ msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
5897
+ msgstr "Puedes ver los códigos de iconos <a target=\"_blank\" href=\"%s\">aquí</a>."
5898
+
5899
+ #: includes/class-wcj-order-custom-statuses.php:374
5900
+ #: includes/class-wcj-order-custom-statuses.php:430
5901
+ msgid "Icon Color"
5902
+ msgstr "Color de icono"
5903
+
5904
+ #: includes/class-wcj-order-custom-statuses.php:373
5905
+ #: includes/class-wcj-order-custom-statuses.php:428
5906
+ msgid "Icon Code"
5907
+ msgstr "Código de icono"
5908
+
5909
+ #: includes/settings/wcj-settings-general.php:151
5910
+ #: includes/settings/wcj-settings-product-by-date.php:54
5911
+ #: includes/settings/wcj-settings-product-by-time.php:54
5912
+ msgid "This will add new meta box to each product's edit page."
5913
+ msgstr ""
5914
+
5915
+ #: includes/settings/wcj-settings-general.php:149
5916
+ msgid "PayPal Email per Product"
5917
+ msgstr "Email de PayPal por producto"
5918
+
5919
+ #: includes/settings/wcj-settings-general.php:144
5920
+ msgid "PayPal Email per Product Options"
5921
+ msgstr ""
5922
+
5923
+ #: includes/settings/wcj-settings-general.php:81
5924
+ msgid "Recalculate Cart Totals on Every Page Load"
5925
+ msgstr ""
5926
+
5927
+ #: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
5928
+ msgid "PayPal Email"
5929
+ msgstr ""
5930
+
5931
+ #: includes/settings/wcj-settings-eu-vat-number.php:152
5932
+ msgid "In billing address"
5933
+ msgstr ""
5934
+
5935
+ #: includes/settings/wcj-settings-eu-vat-number.php:151
5936
+ msgid "After order table"
5937
+ msgstr ""
5938
+
5939
+ #: includes/class-wcj-admin-bar.php:477
5940
+ #: includes/settings/wcj-settings-eu-vat-number.php:146
5941
+ msgid "Display"
5942
+ msgstr ""
5943
+
5944
+ #: includes/class-wcj-currency-per-product.php:257
5945
+ msgctxt "Price range: from-to"
5946
+ msgid "%1$s&ndash;%2$s"
5947
+ msgstr ""
5948
+
5949
+ #: includes/class-wcj-currency-per-product.php:26
5950
+ msgid "Display prices for WooCommerce products in different currencies."
5951
+ msgstr "Mostrar precios para productos de WooCommerce en diferentes monedas."
5952
+
5953
+ #: includes/class-wcj-currency-per-product.php:25
5954
+ msgid "Currency per Product"
5955
+ msgstr "Moneda por producto"
5956
+
5957
+ #: includes/admin/class-wc-settings-jetpack.php:418
5958
+ msgid "No active modules found."
5959
+ msgstr "No se han encontrado módulos activos."
5960
+
5961
+ #: includes/admin/class-wc-settings-jetpack.php:299
5962
+ msgid "Reset"
5963
+ msgstr ""
5964
+
5965
+ #: includes/admin/class-wc-settings-jetpack.php:299
5966
+ msgid "This will reset settings to defaults for all Booster modules. Are you sure?"
5967
+ msgstr ""
5968
+
5969
+ #: includes/admin/class-wc-settings-jetpack.php:294
5970
+ #: includes/class-wcj-purchase-data.php:92
5971
+ msgid "Import"
5972
+ msgstr "Importar"
5973
+
5974
+ #: includes/admin/class-wc-settings-jetpack.php:290
5975
+ #: includes/class-wcj-export-import.php:26
5976
+ msgid "Export"
5977
+ msgstr "Exportar"
5978
+
5979
+ #: includes/admin/class-wc-settings-jetpack.php:262
5980
+ msgid "This section lets you export, import or reset all Booster's modules settings."
5981
+ msgstr "Esta sección te permite exportar, importar o restablecer todas las opciones de módulos de Booster."
5982
+
5983
+ #: includes/admin/class-wc-settings-jetpack.php:85
5984
+ #: includes/class-wcj-admin-bar.php:150
5985
+ msgid "Manage Settings"
5986
+ msgstr ""
5987
+
5988
+ #: includes/settings/wcj-settings-product-open-pricing.php:29
5989
+ msgid "Here you can use"
5990
+ msgstr "Aquí puedes usar"
5991
+
5992
+ #: includes/settings/wcj-settings-product-open-pricing.php:28
5993
+ msgid "Frontend Template"
5994
+ msgstr ""
5995
+
5996
+ #. #-#-#-#-# woocommerce-jetpack-code.pot (Booster for WooCommerce 3.1.3)
5997
+ #. #-#-#-#-#
5998
+ #. Plugin URI of the plugin/theme
5999
+ #. #-#-#-#-# woocommerce-jetpack-code.pot (Booster for WooCommerce 3.1.3)
6000
+ #. #-#-#-#-#
6001
+ #. Author URI of the plugin/theme
6002
+ msgid "https://booster.io"
6003
+ msgstr ""
6004
+
6005
+ #: includes/functions/wcj-admin-functions.php:134
6006
+ msgid "Visit Booster Site"
6007
+ msgstr "Visita el sitio web de Booster"
6008
+
6009
+ #: includes/widgets/class-wcj-widget-multicurrency.php:77
6010
+ msgid "Link list"
6011
+ msgstr "Lista de enlaces"
6012
+
6013
+ #: includes/widgets/class-wcj-widget-multicurrency.php:76
6014
+ msgid "Radio list"
6015
+ msgstr "Lista de botones radio"
6016
+
6017
+ #: includes/widgets/class-wcj-widget-multicurrency.php:75
6018
+ msgid "Drop down"
6019
+ msgstr "Lista desplegable"
6020
+
6021
+ #: includes/class-wcj-track-users.php:160
6022
+ msgid "Type:"
6023
+ msgstr "Tipo:"
6024
+
6025
+ #: includes/widgets/class-wcj-widget-multicurrency.php:41
6026
+ msgid "Multicurrency module not enabled!"
6027
+ msgstr "¡El módulo multimoneda no está activado!"
6028
+
6029
+ #: includes/class-wcj-multicurrency.php:28
6030
+ #: includes/widgets/class-wcj-widget-multicurrency.php:27
6031
+ msgid "Booster - Multicurrency Switcher"
6032
+ msgstr ""
6033
+
6034
+ #: includes/widgets/class-wcj-widget-multicurrency.php:29
6035
+ msgid "Booster: Multicurrency Switcher Widget"
6036
+ msgstr ""
6037
+
6038
+ #: includes/class-wcj-left-to-free-shipping.php:25
6039
+ msgid "Left to Free Shipping"
6040
+ msgstr ""
6041
+
6042
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:27
6043
+ msgid "Booster - Left to Free Shipping"
6044
+ msgstr ""
6045
+
6046
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:29
6047
+ msgid "Booster: Left to Free Shipping Widget"
6048
+ msgstr ""
6049
+
6050
+ #: includes/widgets/class-wcj-widget-country-switcher.php:43
6051
+ msgid "Customer Country Detection Method must include \"by user selection\"!"
6052
+ msgstr ""
6053
+
6054
+ #: includes/widgets/class-wcj-widget-country-switcher.php:41
6055
+ msgid "Prices and Currencies by Country module not enabled!"
6056
+ msgstr ""
6057
+
6058
+ #: includes/widgets/class-wcj-widget-country-switcher.php:27
6059
+ msgid "Booster - Country Switcher"
6060
+ msgstr ""
6061
+
6062
+ #: includes/widgets/class-wcj-widget-country-switcher.php:29
6063
+ msgid "Booster: Country Switcher Widget"
6064
+ msgstr ""
6065
+
6066
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:97
6067
+ msgid "Current standard tax rates"
6068
+ msgstr ""
6069
+
6070
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:89
6071
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:103
6072
+ msgid "Rate"
6073
+ msgstr "Tasa"
6074
+
6075
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:83
6076
+ msgid "List of EU VAT rates to be added"
6077
+ msgstr ""
6078
+
6079
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
6080
+ msgid "Note: will add duplicates."
6081
+ msgstr "Nota: se añadirán duplicados."
6082
+
6083
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
6084
+ msgid "Add EU Countries VAT Rates"
6085
+ msgstr ""
6086
+
6087
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:41
6088
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:68
6089
+ msgid "VAT"
6090
+ msgstr "IVA"
6091
+
6092
+ #: includes/templates/wcj-add-to-cart-variable.php:24
6093
+ msgid "This product is currently out of stock and unavailable."
6094
+ msgstr "Este producto está actualmente sin existencias y no está disponible."
6095
+
6096
+ #: includes/class-wcj-admin-bar.php:437
6097
+ #: includes/export/class-wcj-fields-helper.php:319
6098
+ #: includes/settings/wcj-settings-product-by-user.php:20
6099
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:186
6100
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:411
6101
+ msgid "Tags"
6102
+ msgstr "Etiquetas"
6103
+
6104
+ #: includes/export/class-wcj-fields-helper.php:292
6105
+ #: includes/settings/wcj-settings-product-by-user.php:14
6106
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:180
6107
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:354
6108
+ msgid "Short Description"
6109
+ msgstr "Descripción corta"
6110
+
6111
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:325
6112
+ msgid "Add New Product"
6113
+ msgstr "Añadir nuevo producto"
6114
+
6115
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:57
6116
+ msgid "Success"
6117
+ msgstr ""
6118
+
6119
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:283
6120
+ msgid "Error!"
6121
+ msgstr "¡Error!"
6122
+
6123
+ #: includes/shortcodes/class-wcj-orders-shortcodes.php:109
6124
+ msgid "Cents"
6125
+ msgstr "Céntimos"
6126
+
6127
+ #: includes/shortcodes/class-wcj-orders-shortcodes.php:108
6128
+ msgid "Dollars"
6129
+ msgstr "Dólares"
6130
+
6131
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:174
6132
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:133
6133
+ msgid "Cost. If calculating by weight - then cost per one weight unit. If calculating by quantity - then cost per one piece."
6134
+ msgstr ""
6135
+
6136
+ #: includes/class-wcj-purchase-data.php:114
6137
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:105
6138
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:172
6139
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:131
6140
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:173
6141
+ msgid "Cost"
6142
+ msgstr "Coste"
6143
+
6144
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:150
6145
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:103
6146
+ msgid "By Total Cart Quantity"
6147
+ msgstr "Por cantidad total en el carrito"
6148
+
6149
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:148
6150
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:101
6151
+ msgid "By Total Cart Weight"
6152
+ msgstr "Por peso total en el carrito"
6153
+
6154
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:147
6155
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:100
6156
+ msgid "Flat Rate"
6157
+ msgstr ""
6158
+
6159
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
6160
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:125
6161
+ msgid "Cost calculation type."
6162
+ msgstr "Tipo de cálculo del coste."
6163
+
6164
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:50
6165
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:47
6166
+ msgid "Booster: Custom Shipping Method"
6167
+ msgstr "Booster: Método de envío personalizado"
6168
+
6169
+ #: includes/reports/wcj-class-reports-stock.php:173
6170
+ msgid "deleted"
6171
+ msgstr "eliminado"
6172
+
6173
+ #: includes/class-wcj-export-import.php:214
6174
+ #: includes/reports/wcj-class-reports-sales-daily.php:188
6175
+ #: includes/settings/wcj-settings-orders.php:33
6176
+ msgid "Filter"
6177
+ msgstr "Filtro"
6178
+
6179
+ #: includes/reports/wcj-class-reports-monthly-sales.php:312
6180
+ msgid "Report currency"
6181
+ msgstr "Moneda del informe"
6182
+
6183
+ #: includes/reports/wcj-class-reports-monthly-sales.php:91
6184
+ msgid "Average / Day (excl. TAX)"
6185
+ msgstr "Media / día (excl. impuestos)"
6186
+
6187
+ #: includes/reports/wcj-class-reports-monthly-sales.php:89
6188
+ msgid "Total Sum (excl. TAX)"
6189
+ msgstr "Suma total (impuestos excl.)"
6190
+
6191
+ #: includes/reports/wcj-class-reports-monthly-sales.php:88
6192
+ #: includes/reports/wcj-class-reports-sales.php:325
6193
+ msgid "Total Sum"
6194
+ msgstr "Suma total"
6195
+
6196
+ #: includes/reports/wcj-class-reports-monthly-sales.php:86
6197
+ msgid "Total Orders"
6198
+ msgstr "Total de pedidos"
6199
+
6200
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:122
6201
+ msgid "Country Groups Generated."
6202
+ msgstr ""
6203
+
6204
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:94
6205
+ msgid "Confirm"
6206
+ msgstr "Confirmar"
6207
+
6208
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:93
6209
+ msgid "All existing country groups will be deleted and %s new groups will be created. Are you sure?"
6210
+ msgstr "Se eliminarán todos los grupos de países y se crearán %s grupos nuevos. ¿Estás seguro?"
6211
+
6212
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:87
6213
+ msgid "Create All Country Groups Failed. Wrong parameter."
6214
+ msgstr ""
6215
+
6216
+ #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:75
6217
+ msgid "Create All Country Groups Failed."
6218
+ msgstr ""
6219
+
6220
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:102
6221
+ msgid "DOCUMENT_ROOT"
6222
+ msgstr ""
6223
+
6224
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:101
6225
+ msgid "ABSPATH"
6226
+ msgstr ""
6227
+
6228
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:100
6229
+ msgid "TCPDF Default"
6230
+ msgstr ""
6231
+
6232
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:99
6233
+ msgid "Empty"
6234
+ msgstr "Vacío"
6235
+
6236
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:94
6237
+ msgid "Try changing this if you have issues displaying image in header."
6238
+ msgstr "Prueba a cambiar esto si tienes problemas al mostrar la imagen en la cabecera."
6239
+
6240
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:93
6241
+ msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
6242
+ msgstr ""
6243
+
6244
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:92
6245
+ msgid "Default Images Directory"
6246
+ msgstr "Directorio de imágenes por defecto"
6247
+
6248
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:87
6249
+ msgid "PDF Invoicing Header General Options"
6250
+ msgstr ""
6251
+
6252
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:105
6253
+ msgid "Link Text"
6254
+ msgstr "Texto del enlace"
6255
+
6256
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:77
6257
+ msgid "Add \"Delete\" button"
6258
+ msgstr ""
6259
+
6260
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:70
6261
+ msgid "Add \"Create\" button"
6262
+ msgstr "Añadir botón \"Crear\""
6263
+
6264
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:63
6265
+ msgid "Add \"View\" button"
6266
+ msgstr ""
6267
+
6268
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:40
6269
+ msgid "Column Title"
6270
+ msgstr ""
6271
+
6272
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:129
6273
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:296
6274
+ msgid "View"
6275
+ msgstr ""
6276
+
6277
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
6278
+ msgid "Display & Misc."
6279
+ msgstr ""
6280
+
6281
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:307
6282
+ msgid "Customer VAT ID"
6283
+ msgstr ""
6284
+
6285
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:134
6286
+ msgid "Download all monthly documents PDFs in single ZIP file"
6287
+ msgstr ""
6288
+
6289
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:128
6290
+ msgid "Display monthly documents table"
6291
+ msgstr ""
6292
+
6293
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:65
6294
+ msgid "Sorry, but something went wrong..."
6295
+ msgstr ""
6296
+
6297
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
6298
+ msgid "Date to end renumerating. Leave blank to renumerate all invoices."
6299
+ msgstr ""
6300
+
6301
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:76
6302
+ msgid "End Date"
6303
+ msgstr ""
6304
+
6305
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:106
6306
+ msgid "Booster: Product Input Fields"
6307
+ msgstr ""
6308
+
6309
+ #: includes/input-fields/wcj-product-input-fields-options.php:200
6310
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:242
6311
+ msgid "Timepicker: Interval"
6312
+ msgstr ""
6313
+
6314
+ #: includes/input-fields/wcj-product-input-fields-options.php:179
6315
+ msgid "Timepicker: Time format"
6316
+ msgstr ""
6317
+
6318
+ #: includes/input-fields/wcj-product-input-fields-options.php:163
6319
+ msgid "Datepicker/Weekpicker: First week day"
6320
+ msgstr ""
6321
+
6322
+ #: includes/input-fields/wcj-product-input-fields-options.php:155
6323
+ msgid "Datepicker/Weekpicker: Year range"
6324
+ msgstr ""
6325
+
6326
+ #: includes/input-fields/wcj-product-input-fields-options.php:148
6327
+ msgid "Datepicker/Weekpicker: Change year"
6328
+ msgstr ""
6329
+
6330
+ #: includes/input-fields/wcj-product-input-fields-options.php:141
6331
+ msgid "Datepicker/Weekpicker: Max date"
6332
+ msgstr ""
6333
+
6334
+ #: includes/input-fields/wcj-product-input-fields-options.php:134
6335
+ msgid "Datepicker/Weekpicker: Min date"
6336
+ msgstr ""
6337
+
6338
+ #: includes/input-fields/wcj-product-input-fields-options.php:127
6339
+ msgid "Datepicker/Weekpicker: Date format"
6340
+ msgstr ""
6341
+
6342
+ #: includes/input-fields/wcj-product-input-fields-options.php:100
6343
+ msgid "Checkbox: Default"
6344
+ msgstr ""
6345
+
6346
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:163
6347
+ msgid "Optional. Leave blank to use default URL."
6348
+ msgstr ""
6349
+
6350
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:162
6351
+ msgid "Enter full URL with http(s)."
6352
+ msgstr ""
6353
+
6354
+ #: includes/export/class-wcj-fields-helper.php:80
6355
+ #: includes/export/class-wcj-fields-helper.php:295
6356
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:161
6357
+ msgid "URL"
6358
+ msgstr ""
6359
+
6360
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:160
6361
+ msgid "Custom Return URL (Thank You Page)"
6362
+ msgstr ""
6363
+
6364
+ #: includes/emails/class-wc-email-wcj-custom.php:304
6365
+ msgid "Plain text template"
6366
+ msgstr ""
6367
+
6368
+ #: includes/emails/class-wc-email-wcj-custom.php:297
6369
+ #: includes/emails/class-wc-email-wcj-custom.php:306
6370
+ msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
6371
+ msgstr ""
6372
+
6373
+ #: includes/emails/class-wc-email-wcj-custom.php:295
6374
+ msgid "HTML template"
6375
+ msgstr ""
6376
+
6377
+ #: includes/emails/class-wc-email-wcj-custom.php:276
6378
+ msgid "Choose which format of email to send."
6379
+ msgstr ""
6380
+
6381
+ #: includes/emails/class-wc-email-wcj-custom.php:274
6382
+ msgid "Email type"
6383
+ msgstr ""
6384
+
6385
+ #: includes/emails/class-wc-email-wcj-custom.php:289
6386
+ msgid "This controls the main heading contained within the email notification. Leave blank to use the default heading: <code>%s</code>."
6387
+ msgstr ""
6388
+
6389
+ #: includes/emails/class-wc-email-wcj-custom.php:268
6390
+ msgid "This controls the email subject line. Leave blank to use the default subject: <code>%s</code>."
6391
+ msgstr ""
6392
+
6393
+ #: includes/emails/class-wc-email-wcj-custom.php:266
6394
+ msgid "Subject"
6395
+ msgstr ""
6396
+
6397
+ #: includes/emails/class-wc-email-wcj-custom.php:260
6398
+ msgid "Or enter <code>%customer%</code> to send to customer billing email."
6399
+ msgstr ""
6400
+
6401
+ #: includes/emails/class-wc-email-wcj-custom.php:259
6402
+ msgid "Enter recipients (comma separated) for this email. Defaults to <code>%s</code>."
6403
+ msgstr ""
6404
+
6405
+ #: includes/emails/class-wc-email-wcj-custom.php:257
6406
+ msgid "Recipient(s)"
6407
+ msgstr ""
6408
+
6409
+ #: includes/emails/class-wc-email-wcj-custom.php:246
6410
+ msgid "New customer note notification"
6411
+ msgstr ""
6412
+
6413
+ #: includes/emails/class-wc-email-wcj-custom.php:245
6414
+ msgid "Order partially refunded notification"
6415
+ msgstr ""
6416
+
6417
+ #: includes/emails/class-wc-email-wcj-custom.php:244
6418
+ msgid "Order fully refunded notification"
6419
+ msgstr ""
6420
+
6421
+ #: includes/emails/class-wc-email-wcj-custom.php:243
6422
+ msgid "Reset password notification"
6423
+ msgstr ""
6424
+
6425
+ #: includes/emails/class-wc-email-wcj-custom.php:238
6426
+ msgid "New order (Any status)"
6427
+ msgstr ""
6428
+
6429
+ #: includes/emails/class-wc-email-wcj-custom.php:235
6430
+ msgid "Please note, that all new orders in WooCommerce by default are created with Pending Payment status. If you want to change the default order status - you can use Booster's \"Order Custom Statuses\" module (in WooCommerce > Settings > Booster > Shipping & Orders > Order Custom Statuses)."
6431
+ msgstr ""
6432
+
6433
+ #: includes/emails/class-wc-email-wcj-custom.php:231
6434
+ msgid "Trigger(s)"
6435
+ msgstr ""
6436
+
6437
+ #: includes/emails/class-wc-email-wcj-custom.php:227
6438
+ msgid "Enable this email notification"
6439
+ msgstr ""
6440
+
6441
+ #: includes/emails/class-wc-email-wcj-custom.php:218
6442
+ msgid "Order status %s to %s"
6443
+ msgstr ""
6444
+
6445
+ #: includes/emails/class-wc-email-wcj-custom.php:215
6446
+ msgid "Order status updated to %s"
6447
+ msgstr ""
6448
+
6449
+ #: includes/emails/class-wc-email-wcj-custom.php:214
6450
+ msgid "New order (%s)"
6451
+ msgstr ""
6452
+
6453
+ #: includes/emails/class-wc-email-wcj-custom.php:34
6454
+ msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
6455
+ msgstr ""
6456
+
6457
+ #: includes/emails/class-wc-email-wcj-custom.php:33
6458
+ msgid "Custom Heading"
6459
+ msgstr ""
6460
+
6461
+ #: includes/emails/class-wc-email-wcj-custom.php:31
6462
+ msgid "Custom emails are sent to the recipient list when selected triggers are called."
6463
+ msgstr ""
6464
+
6465
+ #: includes/functions/wcj-currencies.php:162
6466
+ msgid "US Dollars"
6467
+ msgstr ""
6468
+
6469
+ #: includes/functions/wcj-currencies.php:157
6470
+ msgid "Taiwan New Dollars"
6471
+ msgstr ""
6472
+
6473
+ #: includes/functions/wcj-currencies.php:155
6474
+ msgid "Turkish Lira"
6475
+ msgstr ""
6476
+
6477
+ #: includes/functions/wcj-currencies.php:129
6478
+ msgid "Paraguayan Guaraní"
6479
+ msgstr ""
6480
+
6481
+ #: includes/functions/wcj-currencies.php:119
6482
+ msgid "Nepali Rupee"
6483
+ msgstr ""
6484
+
6485
+ #: includes/functions/wcj-currencies.php:113
6486
+ msgid "Malaysian Ringgits"
6487
+ msgstr ""
6488
+
6489
+ #: includes/functions/wcj-currencies.php:92
6490
+ msgid "Lao Kip"
6491
+ msgstr ""
6492
+
6493
+ #: includes/functions/wcj-currencies.php:73
6494
+ msgid "Israeli Shekel"
6495
+ msgstr ""
6496
+
6497
+ #: includes/functions/wcj-currencies.php:58
6498
+ msgid "Pounds Sterling"
6499
+ msgstr ""
6500
+
6501
+ #: includes/functions/wcj-currencies.php:55
6502
+ msgid "Euros"
6503
+ msgstr ""
6504
+
6505
+ #: includes/functions/wcj-currencies.php:13
6506
+ msgid "United Arab Emirates Dirham"
6507
+ msgstr ""
6508
+
6509
+ #: includes/classes/class-wcj-module.php:586
6510
+ msgid "Reset settings"
6511
+ msgstr ""
6512
+
6513
+ #: includes/classes/class-wcj-module.php:582
6514
+ msgid "Reset Submodule to Default Settings"
6515
+ msgstr ""
6516
+
6517
+ #: includes/classes/class-wcj-module.php:581
6518
+ msgid "Reset Module to Default Settings"
6519
+ msgstr ""
6520
+
6521
+ #: includes/classes/class-wcj-module.php:575
6522
+ msgid "Reset Settings"
6523
+ msgstr ""
6524
+
6525
+ #: includes/class-wcj-wpml.php:24
6526
+ msgid "Booster WPML"
6527
+ msgstr ""
6528
+
6529
+ #: includes/settings/wcj-settings-wholesale-price.php:21
6530
+ msgid "Enable per Product"
6531
+ msgstr ""
6532
+
6533
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
6534
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
6535
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
6536
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
6537
+ msgid "Level"
6538
+ msgstr ""
6539
+
6540
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
6541
+ msgid "Enable per Product Levels"
6542
+ msgstr ""
6543
+
6544
+ #: includes/settings/wcj-settings-sku.php:108
6545
+ msgid "Categories Options"
6546
+ msgstr ""
6547
+
6548
+ #: includes/class-wcj-sku.php:354
6549
+ msgid "Set SKUs"
6550
+ msgstr ""
6551
+
6552
+ #: includes/class-wcj-sku.php:352
6553
+ msgid "Preview SKUs"
6554
+ msgstr ""
6555
+
6556
+ #: includes/class-wcj-sku.php:31
6557
+ msgid "The tool generates and sets product SKUs for existing products."
6558
+ msgstr ""
6559
+
6560
+ #: includes/functions/wcj-general-functions.php:361
6561
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:147
6562
+ msgid "You have Free delivery"
6563
+ msgstr ""
6564
+
6565
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:143
6566
+ msgid "Message on Free Shipping Reached"
6567
+ msgstr ""
6568
+
6569
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:98
6570
+ msgid "Info on Checkout"
6571
+ msgstr ""
6572
+
6573
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:59
6574
+ msgid "Info on Mini Cart"
6575
+ msgstr ""
6576
+
6577
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:52
6578
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:91
6579
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:136
6580
+ msgid "Position Order (Priority)"
6581
+ msgstr ""
6582
+
6583
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:26
6584
+ msgid "Info on Cart"
6585
+ msgstr ""
6586
+
6587
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:16
6588
+ msgid "This section lets you enable info on cart, mini cart and checkout pages."
6589
+ msgstr ""
6590
+
6591
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:14
6592
+ msgid "Left to Free Shipping Info Options"
6593
+ msgstr ""
6594
+
6595
+ #: includes/settings/wcj-settings-shipping.php:61
6596
+ msgid "Admin Title Custom Shipping"
6597
+ msgstr ""
6598
+
6599
+ #: includes/settings/wcj-settings-shipping.php:50
6600
+ msgid "Custom Shipping Methods Number"
6601
+ msgstr ""
6602
+
6603
+ #: includes/settings/wcj-settings-shipping.php:47
6604
+ msgid "After setting the number, visit %s to set each method options."
6605
+ msgstr ""
6606
+
6607
+ #: includes/settings/wcj-settings-shipping.php:46
6608
+ msgid "This section lets you set number of custom shipping methods to add."
6609
+ msgstr ""
6610
+
6611
+ #: includes/settings/wcj-settings-shipping.php:13
6612
+ msgid "WooCommerce > Settings > Shipping"
6613
+ msgstr ""
6614
+
6615
+ #: includes/class-wcj-left-to-free-shipping.php:62
6616
+ #: includes/class-wcj-left-to-free-shipping.php:72
6617
+ #: includes/class-wcj-left-to-free-shipping.php:82
6618
+ #: includes/functions/wcj-general-functions.php:321
6619
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:37
6620
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:72
6621
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:111
6622
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:61
6623
+ msgid "%left_to_free% left to free shipping"
6624
+ msgstr ""
6625
+
6626
+ #: includes/class-wcj-shipping.php:24
6627
+ msgid "Add multiple custom shipping methods to WooCommerce."
6628
+ msgstr ""
6629
+
6630
+ #: includes/settings/wcj-settings-reports.php:162
6631
+ msgid "View report"
6632
+ msgstr ""
6633
+
6634
+ #: includes/settings/wcj-settings-reports.php:137
6635
+ msgid "Overstocked products (calculated by sales data)"
6636
+ msgstr ""
6637
+
6638
+ #: includes/settings/wcj-settings-reports.php:131
6639
+ msgid "Understocked products (calculated by sales data)"
6640
+ msgstr ""
6641
+
6642
+ #: includes/settings/wcj-settings-reports.php:125
6643
+ msgid "All in Stock with sales data"
6644
+ msgstr ""
6645
+
6646
+ #: includes/settings/wcj-settings-reports.php:119
6647
+ msgid "Customers by Country Sets"
6648
+ msgstr ""
6649
+
6650
+ #: includes/settings/wcj-settings-reports.php:113
6651
+ msgid "Customers by Country"
6652
+ msgstr ""
6653
+
6654
+ #: includes/settings/wcj-settings-reports.php:93
6655
+ msgid "Monthly Sales (with Currency Conversion)"
6656
+ msgstr ""
6657
+
6658
+ #: includes/settings/wcj-settings-purchase-data.php:98
6659
+ msgid "This fields will be added to product's edit page."
6660
+ msgstr ""
6661
+
6662
+ #: includes/settings/wcj-settings-purchase-data.php:96
6663
+ msgid "Info Fields"
6664
+ msgstr ""
6665
+
6666
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:83
6667
+ #: includes/settings/wcj-settings-product-addons.php:117
6668
+ #: includes/settings/wcj-settings-purchase-data.php:83
6669
+ msgid "Default Value"
6670
+ msgstr ""
6671
+
6672
+ #: includes/settings/wcj-settings-purchase-data.php:64
6673
+ msgid "Custom Price Field"
6674
+ msgstr ""
6675
+
6676
+ #: includes/settings/wcj-settings-purchase-data.php:52
6677
+ msgid "Total Custom Price Fields"
6678
+ msgstr ""
6679
+
6680
+ #: includes/settings/wcj-settings-purchase-data.php:46
6681
+ msgid "Custom Price Fields"
6682
+ msgstr ""
6683
+
6684
+ #: includes/settings/wcj-settings-purchase-data.php:17
6685
+ #: includes/settings/wcj-settings-purchase-data.php:48
6686
+ msgid "This fields will be added to product's edit page and will be included in product's purchase cost calculation."
6687
+ msgstr ""
6688
+
6689
+ #: includes/settings/wcj-settings-purchase-data.php:15
6690
+ msgid "Price Fields"
6691
+ msgstr ""
6692
+
6693
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
6694
+ #: includes/settings/wcj-settings-purchase-data.php:35
6695
+ msgid "Affiliate commission"
6696
+ msgstr ""
6697
+
6698
+ #: includes/settings/wcj-settings-product-tabs.php:264
6699
+ msgid "Default Content"
6700
+ msgstr ""
6701
+
6702
+ #: includes/settings/wcj-settings-product-tabs.php:258
6703
+ msgid "Default Priority (i.e. Order)"
6704
+ msgstr ""
6705
+
6706
+ #: includes/settings/wcj-settings-product-tabs.php:244
6707
+ msgid "Default Title"
6708
+ msgstr "Título por defecto"
6709
+
6710
+ #: includes/settings/wcj-settings-product-tabs.php:226
6711
+ msgid "Default Per Product Custom Product Tabs Number"
6712
+ msgstr ""
6713
+
6714
+ #: includes/settings/wcj-settings-product-tabs.php:219
6715
+ msgid "Use Visual Editor"
6716
+ msgstr ""
6717
+
6718
+ #: includes/settings/wcj-settings-product-add-to-cart.php:40
6719
+ #: includes/settings/wcj-settings-product-tabs.php:213
6720
+ msgid "This will add meta boxes to each product's edit page."
6721
+ msgstr ""
6722
+
6723
+ #: includes/settings/wcj-settings-product-tabs.php:211
6724
+ msgid "Enable Per Product Custom Product Tabs"
6725
+ msgstr ""
6726
+
6727
+ #: includes/settings/wcj-settings-product-tabs.php:205
6728
+ msgid "Custom Product Tabs - Per Product"
6729
+ msgstr ""
6730
+
6731
+ #: includes/settings/wcj-settings-product-tabs.php:140
6732
+ #: includes/settings/wcj-settings-product-tabs.php:332
6733
+ msgid "To show this tab only for some tags, enter tags here."
6734
+ msgstr ""
6735
+
6736
+ #: includes/settings/wcj-settings-product-tabs.php:139
6737
+ #: includes/settings/wcj-settings-product-tabs.php:331
6738
+ msgid "TAGS to SHOW this tab"
6739
+ msgstr ""
6740
+
6741
+ #: includes/settings/wcj-settings-product-tabs.php:131
6742
+ #: includes/settings/wcj-settings-product-tabs.php:323
6743
+ msgid "To hide this tab from some tags, enter tags here."
6744
+ msgstr ""
6745
+
6746
+ #: includes/settings/wcj-settings-product-tabs.php:130
6747
+ #: includes/settings/wcj-settings-product-tabs.php:322
6748
+ msgid "TAGS to HIDE this tab"
6749
+ msgstr ""
6750
+
6751
+ #: includes/settings/wcj-settings-product-tabs.php:122
6752
+ #: includes/settings/wcj-settings-product-tabs.php:314
6753
+ msgid "To show this tab only for some categories, enter categories here."
6754
+ msgstr ""
6755
+
6756
+ #: includes/settings/wcj-settings-product-tabs.php:121
6757
+ #: includes/settings/wcj-settings-product-tabs.php:313
6758
+ msgid "CATEGORIES to SHOW this tab"
6759
+ msgstr ""
6760
+
6761
+ #: includes/settings/wcj-settings-product-tabs.php:113
6762
+ #: includes/settings/wcj-settings-product-tabs.php:305
6763
+ msgid "To hide this tab from some categories, enter categories here."
6764
+ msgstr ""
6765
+
6766
+ #: includes/settings/wcj-settings-product-tabs.php:112
6767
+ #: includes/settings/wcj-settings-product-tabs.php:304
6768
+ msgid "CATEGORIES to HIDE this tab"
6769
+ msgstr ""
6770
+
6771
+ #: includes/settings/wcj-settings-product-tabs.php:104
6772
+ #: includes/settings/wcj-settings-product-tabs.php:296
6773
+ msgid "To show this tab only for some products, enter products here."
6774
+ msgstr ""
6775
+
6776
+ #: includes/settings/wcj-settings-product-tabs.php:103
6777
+ #: includes/settings/wcj-settings-product-tabs.php:295
6778
+ msgid "PRODUCTS to SHOW this tab"
6779
+ msgstr ""
6780
+
6781
+ #: includes/settings/wcj-settings-product-tabs.php:95
6782
+ #: includes/settings/wcj-settings-product-tabs.php:287
6783
+ msgid "To hide this tab from some products, enter products here."
6784
+ msgstr ""
6785
+
6786
+ #: includes/settings/wcj-settings-product-tabs.php:94
6787
+ #: includes/settings/wcj-settings-product-tabs.php:286
6788
+ msgid "PRODUCTS to HIDE this tab"
6789
+ msgstr ""
6790
+
6791
+ #: includes/class-wcj-product-tabs.php:512
6792
+ msgid "Booster: Custom Tabs"
6793
+ msgstr ""
6794
+
6795
+ #: includes/settings/wcj-settings-product-price-by-formula.php:38
6796
+ msgid "Total Params"
6797
+ msgstr ""
6798
+
6799
+ #: includes/settings/wcj-settings-product-price-by-formula.php:21
6800
+ msgid "Use %s variable for product's base price. For example: %s."
6801
+ msgstr ""
6802
+
6803
+ #: includes/settings/wcj-settings-product-price-by-formula.php:16
6804
+ msgid "You can set default settings here. All settings can later be changed in individual product's edit page."
6805
+ msgstr ""
6806
+
6807
+ #: includes/settings/wcj-settings-product-price-by-formula.php:14
6808
+ msgid "Default Settings"
6809
+ msgstr ""
6810
+
6811
+ #: includes/class-wcj-product-price-by-formula.php:224
6812
+ msgid "Final Price Preview"
6813
+ msgstr ""
6814
+
6815
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
6816
+ msgid "Number of Parameters"
6817
+ msgstr "Número de parámetros"
6818
+
6819
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
6820
+ #: includes/settings/wcj-settings-product-price-by-formula.php:20
6821
+ msgid "Formula"
6822
+ msgstr ""
6823
+
6824
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
6825
+ msgid "Calculation"
6826
+ msgstr ""
6827
+
6828
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
6829
+ msgid "Use default values"
6830
+ msgstr ""
6831
+
6832
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
6833
+ msgid "Use values below"
6834
+ msgstr ""
6835
+
6836
+ #: includes/class-wcj-product-price-by-formula.php:192
6837
+ msgid "Booster: Free plugin's version is limited to only one price by formula product enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price by formula products."
6838
+ msgstr ""
6839
+
6840
+ #: includes/class-wcj-product-price-by-formula.php:105
6841
+ msgid "Error in formula"
6842
+ msgstr ""
6843
+
6844
+ #: includes/class-wcj-product-price-by-formula.php:26
6845
+ msgid "Set formula for automatic WooCommerce product price calculation."
6846
+ msgstr ""
6847
+
6848
+ #: includes/class-wcj-product-price-by-formula.php:25
6849
+ msgid "Product Price by Formula"
6850
+ msgstr ""
6851
+
6852
+ #: includes/settings/wcj-settings-product-open-pricing.php:72
6853
+ msgid "Message on Price too Big"
6854
+ msgstr ""
6855
+
6856
+ #: includes/settings/wcj-settings-product-open-pricing.php:65
6857
+ msgid "Message on Price too Small"
6858
+ msgstr ""
6859
+
6860
+ #: includes/settings/wcj-settings-product-open-pricing.php:58
6861
+ msgid "Message on Empty Price"
6862
+ msgstr ""
6863
+
6864
+ #: includes/settings/wcj-settings-product-open-pricing.php:21
6865
+ msgid "Frontend Label"
6866
+ msgstr ""
6867
+
6868
+ #: includes/settings/wcj-settings-product-bookings.php:28
6869
+ msgid "Labels and Messages"
6870
+ msgstr ""
6871
+
6872
+ #: includes/class-wcj-product-open-pricing.php:347
6873
+ #: includes/settings/wcj-settings-product-open-pricing.php:23
6874
+ msgid "Name Your Price"
6875
+ msgstr ""
6876
+
6877
+ #: includes/class-wcj-product-open-pricing.php:290
6878
+ #: includes/settings/wcj-settings-product-open-pricing.php:74
6879
+ msgid "Entered price is too big!"
6880
+ msgstr ""
6881
+
6882
+ #: includes/class-wcj-product-open-pricing.php:284
6883
+ #: includes/settings/wcj-settings-product-open-pricing.php:67
6884
+ msgid "Entered price is too small!"
6885
+ msgstr ""
6886
+
6887
+ #: includes/class-wcj-product-open-pricing.php:280
6888
+ #: includes/settings/wcj-settings-product-open-pricing.php:60
6889
+ msgid "Price is required!"
6890
+ msgstr ""
6891
+
6892
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
6893
+ msgid "Max Price"
6894
+ msgstr "Precio máximo"
6895
+
6896
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
6897
+ msgid "Min Price"
6898
+ msgstr ""
6899
+
6900
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:51
6901
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:24
6902
+ #: includes/settings/wcj-settings-offer-price.php:146
6903
+ msgid "Default Price"
6904
+ msgstr ""
6905
+
6906
+ #: includes/class-wcj-product-open-pricing.php:185
6907
+ msgid "Booster: Free plugin's version is limited to only one open pricing product enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing products."
6908
+ msgstr ""
6909
+
6910
+ #: includes/class-wcj-product-open-pricing.php:26
6911
+ msgid "Let your WooCommerce store customers enter price for the product manually."
6912
+ msgstr ""
6913
+
6914
+ #: includes/class-wcj-product-open-pricing.php:25
6915
+ msgid "Product Open Pricing (Name Your Price)"
6916
+ msgstr ""
6917
+
6918
+ #: includes/settings/wcj-settings-checkout-files-upload.php:231
6919
+ #: includes/settings/wcj-settings-product-input-fields.php:291
6920
+ msgid "Attach Files to Customer's Processing Order Emails"
6921
+ msgstr ""
6922
+
6923
+ #: includes/settings/wcj-settings-checkout-files-upload.php:225
6924
+ #: includes/settings/wcj-settings-checkout-files-upload.php:232
6925
+ #: includes/settings/wcj-settings-product-input-fields.php:285
6926
+ #: includes/settings/wcj-settings-product-input-fields.php:292
6927
+ msgid "Attach"
6928
+ msgstr ""
6929
+
6930
+ #: includes/settings/wcj-settings-checkout-files-upload.php:224
6931
+ #: includes/settings/wcj-settings-product-input-fields.php:284
6932
+ msgid "Attach Files to Admin's New Order Emails"
6933
+ msgstr ""
6934
+
6935
+ #: includes/settings/wcj-settings-product-input-fields.php:226
6936
+ msgid "HTML to add after required field title"
6937
+ msgstr ""
6938
+
6939
+ #: includes/settings/wcj-settings-product-input-fields.php:184
6940
+ msgid "Frontend View Options"
6941
+ msgstr ""
6942
+
6943
+ #: includes/settings/wcj-settings-product-info.php:77
6944
+ msgid "Total sales: [wcj_product_total_sales]"
6945
+ msgstr ""
6946
+
6947
+ #: includes/settings/wcj-settings-product-info.php:44
6948
+ msgid "[wcj_product_sku before=\"SKU: \"]"
6949
+ msgstr ""
6950
+
6951
+ #: includes/settings/wcj-settings-product-info.php:15
6952
+ msgid "For full list of short codes, please visit <a target=\"_blank\" href=\"http://booster.io/shortcodes/\">http://booster.io/shortcodes/</a>."
6953
+ msgstr ""
6954
+
6955
+ #: includes/settings/wcj-settings-product-info.php:14
6956
+ msgid "Products Info"
6957
+ msgstr ""
6958
+
6959
+ #: includes/class-wcj-product-info.php:302
6960
+ msgid "[wcj_product_total_sales before=\"Total sales: \"]"
6961
+ msgstr ""
6962
+
6963
+ #: includes/class-wcj-product-info.php:301
6964
+ msgid "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" before=\" (\" after=\"%)\"]"
6965
+ msgstr ""
6966
+
6967
+ #: includes/settings/wcj-settings-product-custom-info.php:171
6968
+ #: includes/settings/wcj-settings-products-xml.php:147
6969
+ msgid "Products to Exclude"
6970
+ msgstr ""
6971
+
6972
+ #: includes/settings/wcj-settings-product-custom-info.php:120
6973
+ #: includes/settings/wcj-settings-product-custom-info.php:130
6974
+ #: includes/settings/wcj-settings-product-custom-info.php:140
6975
+ #: includes/settings/wcj-settings-product-custom-info.php:150
6976
+ #: includes/settings/wcj-settings-product-custom-info.php:161
6977
+ #: includes/settings/wcj-settings-product-custom-info.php:172
6978
+ msgid "Leave blank to disable the option."
6979
+ msgstr ""
6980
+
6981
+ #: includes/settings/wcj-settings-product-custom-info.php:160
6982
+ #: includes/settings/wcj-settings-products-xml.php:138
6983
+ msgid "Products to Include"
6984
+ msgstr "Productos a incluir"
6985
+
6986
+ #: includes/settings/wcj-settings-product-custom-info.php:104
6987
+ msgid "Inside product title"
6988
+ msgstr ""
6989
+
6990
+ #: includes/settings/wcj-settings-product-custom-info.php:99
6991
+ msgid "After add to cart form"
6992
+ msgstr ""
6993
+
6994
+ #: includes/settings/wcj-settings-product-custom-info.php:98
6995
+ #: includes/settings/wcj-settings-product-input-fields.php:195
6996
+ msgid "After add to cart button"
6997
+ msgstr ""
6998
+
6999
+ #: includes/settings/wcj-settings-product-custom-info.php:97
7000
+ #: includes/settings/wcj-settings-product-input-fields.php:194
7001
+ msgid "Before add to cart button"
7002
+ msgstr ""
7003
+
7004
+ #: includes/settings/wcj-settings-product-custom-info.php:96
7005
+ msgid "Before add to cart form"
7006
+ msgstr ""
7007
+
7008
+ #: includes/settings/wcj-settings-offer-price.php:74
7009
+ #: includes/settings/wcj-settings-product-custom-info.php:95
7010
+ msgid "After single product"
7011
+ msgstr ""
7012
+
7013
+ #: includes/settings/wcj-settings-offer-price.php:70
7014
+ #: includes/settings/wcj-settings-product-custom-info.php:91
7015
+ msgid "Before single product"
7016
+ msgstr ""
7017
+
7018
+ #: includes/settings/wcj-settings-product-custom-info.php:46
7019
+ msgid "Product Custom Info Blocks"
7020
+ msgstr ""
7021
+
7022
+ #: includes/settings/wcj-settings-product-custom-info.php:43
7023
+ msgid "Archive"
7024
+ msgstr ""
7025
+
7026
+ #: includes/settings/wcj-settings-product-custom-info.php:43
7027
+ msgid "Single"
7028
+ msgstr ""
7029
+
7030
+ #: includes/class-wcj-product-info.php:101
7031
+ msgid "Product Info V1"
7032
+ msgstr ""
7033
+
7034
+ #: includes/class-wcj-product-by-country.php:28
7035
+ msgid "When enabled, module will add new \"Booster: Product Visibility by Country\" meta box to each product's edit page."
7036
+ msgstr ""
7037
+
7038
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-country.php:18
7039
+ msgid "Visible in Countries"
7040
+ msgstr ""
7041
+
7042
+ #: includes/class-wcj-product-by-country.php:26
7043
+ msgid "Display WooCommerce products by customer's country."
7044
+ msgstr ""
7045
+
7046
+ #: includes/class-wcj-product-bulk-price-converter.php:285
7047
+ msgid "Change Prices"
7048
+ msgstr ""
7049
+
7050
+ #: includes/class-wcj-product-bulk-price-converter.php:278
7051
+ msgid "Preview Prices"
7052
+ msgstr ""
7053
+
7054
+ #: includes/class-wcj-product-bulk-price-converter.php:273
7055
+ msgid "Leave zero to disable"
7056
+ msgstr ""
7057
+
7058
+ #: includes/class-wcj-product-bulk-price-converter.php:269
7059
+ msgid "\"Pretty prices\" threshold"
7060
+ msgstr ""
7061
+
7062
+ #: includes/class-wcj-product-bulk-price-converter.php:262
7063
+ msgid "None"
7064
+ msgstr ""
7065
+
7066
+ #: includes/class-wcj-product-bulk-price-converter.php:260
7067
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:303
7068
+ msgid "Any"
7069
+ msgstr ""
7070
+
7071
+ #: includes/class-wcj-product-bulk-price-converter.php:258
7072
+ msgid "Products category"
7073
+ msgstr ""
7074
+
7075
+ #: includes/class-wcj-product-bulk-price-converter.php:251
7076
+ msgid "Regular prices only"
7077
+ msgstr ""
7078
+
7079
+ #: includes/class-wcj-product-bulk-price-converter.php:249
7080
+ msgid "Sale prices only"
7081
+ msgstr ""
7082
+
7083
+ #: includes/class-wcj-product-bulk-price-converter.php:247
7084
+ msgid "Both"
7085
+ msgstr ""
7086
+
7087
+ #: includes/class-wcj-product-bulk-price-converter.php:245
7088
+ msgid "Price type to modify"
7089
+ msgstr ""
7090
+
7091
+ #: includes/class-wcj-product-bulk-price-converter.php:151
7092
+ msgid "Original Price"
7093
+ msgstr ""
7094
+
7095
+ #: includes/class-wcj-admin-bar.php:433
7096
+ #: includes/class-wcj-product-bulk-price-converter.php:149
7097
+ #: includes/class-wcj-sku.php:335
7098
+ #: includes/export/class-wcj-fields-helper.php:318
7099
+ #: includes/settings/wcj-settings-price-by-user-role.php:114
7100
+ #: includes/settings/wcj-settings-product-by-user.php:19
7101
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
7102
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
7103
+ msgid "Categories"
7104
+ msgstr ""
7105
+
7106
+ #: includes/class-wcj-product-bookings.php:28
7107
+ msgid "When enabled, module will add new \"Booster: Bookings\" meta box to each product's edit page."
7108
+ msgstr ""
7109
+
7110
+ #: includes/class-wcj-product-bookings.php:394
7111
+ msgid "Booster: Free plugin's version is limited to only one bookings product enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of bookings products."
7112
+ msgstr ""
7113
+
7114
+ #: includes/class-wcj-product-bookings.php:311
7115
+ #: includes/settings/wcj-settings-product-bookings.php:42
7116
+ msgid "Date to"
7117
+ msgstr ""
7118
+
7119
+ #: includes/class-wcj-product-bookings.php:307
7120
+ #: includes/settings/wcj-settings-product-bookings.php:35
7121
+ msgid "Date from"
7122
+ msgstr ""
7123
+
7124
+ #: includes/class-wcj-product-bookings.php:219
7125
+ #: includes/settings/wcj-settings-product-bookings.php:70
7126
+ msgid "\"Date to\" must be set"
7127
+ msgstr ""
7128
+
7129
+ #: includes/class-wcj-product-bookings.php:215
7130
+ #: includes/settings/wcj-settings-product-bookings.php:63
7131
+ msgid "\"Date from\" must be set"
7132
+ msgstr ""
7133
+
7134
+ #: includes/class-wcj-product-bookings.php:183
7135
+ #: includes/settings/wcj-settings-product-bookings.php:49
7136
+ msgid "Period"
7137
+ msgstr ""
7138
+
7139
+ #: includes/class-wcj-product-bookings.php:144
7140
+ #: includes/class-wcj-product-open-pricing.php:224
7141
+ msgid "Read more"
7142
+ msgstr ""
7143
+
7144
+ #: includes/class-wcj-product-bookings.php:131
7145
+ #: includes/class-wcj-product-bookings.php:225
7146
+ #: includes/settings/wcj-settings-product-bookings.php:77
7147
+ msgid "\"Date to\" must be after \"Date from\""
7148
+ msgstr ""
7149
+
7150
+ #: includes/class-wcj-product-bookings.php:26
7151
+ msgid "Add bookings products to WooCommerce."
7152
+ msgstr ""
7153
+
7154
+ #: includes/class-wcj-product-bookings.php:25
7155
+ msgid "Bookings"
7156
+ msgstr ""
7157
+
7158
+ #: includes/settings/wcj-settings-product-add-to-cart.php:79
7159
+ msgid "Display Radio Buttons Instead of Drop Box"
7160
+ msgstr ""
7161
+
7162
+ #: includes/settings/wcj-settings-product-add-to-cart.php:74
7163
+ msgid "Add to Cart Variable Product"
7164
+ msgstr ""
7165
+
7166
+ #: includes/settings/wcj-settings-price-labels.php:156
7167
+ msgid "This will add metaboxes to each product's admin edit page."
7168
+ msgstr ""
7169
+
7170
+ #: includes/settings/wcj-settings-price-labels.php:150
7171
+ msgid "Custom Price Labels - Per Product"
7172
+ msgstr ""
7173
+
7174
+ #: includes/settings/wcj-settings-price-labels.php:127
7175
+ msgid "Do not apply global price labels only for selected product categories. Leave blank to disable the option."
7176
+ msgstr ""
7177
+
7178
+ #: includes/settings/wcj-settings-price-labels.php:117
7179
+ msgid "Apply global price labels only for selected product categories. Leave blank to disable the option."
7180
+ msgstr ""
7181
+
7182
+ #: includes/settings/wcj-settings-price-labels.php:107
7183
+ msgid "Do not apply global price labels only for selected products. Leave blank to disable the option."
7184
+ msgstr ""
7185
+
7186
+ #: includes/settings/wcj-settings-price-labels.php:97
7187
+ msgid "Apply global price labels only for selected products. Leave blank to disable the option."
7188
+ msgstr ""
7189
+
7190
+ #: includes/settings/wcj-settings-price-labels.php:22
7191
+ msgid "Custom Price Labels - Globally"
7192
+ msgstr ""
7193
+
7194
+ #: includes/class-wcj-price-labels.php:134
7195
+ msgid "Booster: Custom Price Labels"
7196
+ msgstr ""
7197
+
7198
+ #: includes/class-wcj-price-labels.php:48
7199
+ msgid "Hide for all variations"
7200
+ msgstr ""
7201
+
7202
+ #: includes/class-wcj-price-labels.php:47
7203
+ msgid "Hide for main price"
7204
+ msgstr ""
7205
+
7206
+ #: includes/class-wcj-price-labels.php:45
7207
+ msgid "Hide on cart page only"
7208
+ msgstr ""
7209
+
7210
+ #: includes/class-wcj-price-labels.php:44
7211
+ msgid "Hide on all pages"
7212
+ msgstr ""
7213
+
7214
+ #: includes/class-wcj-price-labels.php:43
7215
+ msgid "Hide on single"
7216
+ msgstr ""
7217
+
7218
+ #: includes/class-wcj-price-labels.php:42
7219
+ msgid "Hide on products page"
7220
+ msgstr ""
7221
+
7222
+ #: includes/class-wcj-price-labels.php:41
7223
+ msgid "Hide on home page"
7224
+ msgstr ""
7225
+
7226
+ #: includes/class-wcj-price-labels.php:35
7227
+ msgid "After the price"
7228
+ msgstr ""
7229
+
7230
+ #: includes/class-wcj-price-labels.php:34
7231
+ msgid "Between regular and sale prices"
7232
+ msgstr ""
7233
+
7234
+ #: includes/class-wcj-price-labels.php:33
7235
+ msgid "Before the price"
7236
+ msgstr ""
7237
+
7238
+ #: includes/class-wcj-price-labels.php:32
7239
+ #: includes/settings/wcj-settings-price-labels.php:88
7240
+ msgid "Instead of the price"
7241
+ msgstr ""
7242
+
7243
+ #: includes/settings/wcj-settings-price-by-user-role.php:65
7244
+ msgid "Roles & Multipliers"
7245
+ msgstr ""
7246
+
7247
+ #: includes/settings/wcj-settings-price-by-user-role.php:48
7248
+ msgid "When enabled, this will apply user role multipliers to shipping calculations."
7249
+ msgstr ""
7250
+
7251
+ #: includes/settings/wcj-settings-price-by-user-role.php:21
7252
+ msgid "When enabled, this will add new \"Booster: Price by User Role\" meta box to each product's edit page."
7253
+ msgstr ""
7254
+
7255
+ #: includes/settings/wcj-settings-price-by-user-role.php:19
7256
+ msgid "Enable per Product Settings"
7257
+ msgstr ""
7258
+
7259
+ #: includes/functions/wcj-user-roles-functions.php:101
7260
+ #: includes/functions/wcj-user-roles-functions.php:121
7261
+ msgid "Guest"
7262
+ msgstr "Invitado"
7263
+
7264
+ #: includes/class-wcj-general.php:273
7265
+ msgid "Add New Role"
7266
+ msgstr ""
7267
+
7268
+ #: includes/class-wcj-general.php:267
7269
+ msgid "Existing Roles"
7270
+ msgstr ""
7271
+
7272
+ #: includes/class-wcj-general.php:258
7273
+ #: includes/class-wcj-order-custom-statuses.php:375
7274
+ #: includes/class-wcj-product-by-user.php:197
7275
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:116
7276
+ msgid "Actions"
7277
+ msgstr ""
7278
+
7279
+ #: includes/class-wcj-general.php:258 includes/class-wcj-general.php:272
7280
+ #: includes/class-wcj-offer-price.php:116
7281
+ #: includes/export/class-wcj-fields-helper.php:282
7282
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
7283
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
7284
+ msgid "Name"
7285
+ msgstr ""
7286
+
7287
+ #: includes/class-wcj-general.php:258 includes/class-wcj-general.php:271
7288
+ #: includes/class-wcj-sku.php:333
7289
+ #: includes/reports/wcj-class-reports-sales.php:191
7290
+ #: includes/settings/wcj-settings-product-by-user.php:161
7291
+ #: includes/settings/wcj-settings-related-products.php:30
7292
+ msgid "ID"
7293
+ msgstr ""
7294
+
7295
+ #: includes/class-wcj-general.php:252
7296
+ msgid "Role %s successfully deleted!"
7297
+ msgstr ""
7298
+
7299
+ #: includes/class-wcj-general.php:244
7300
+ msgid "Role already exists!"
7301
+ msgstr ""
7302
+
7303
+ #: includes/class-wcj-general.php:242
7304
+ msgid "Role successfully added!"
7305
+ msgstr ""
7306
+
7307
+ #: includes/class-wcj-general.php:238
7308
+ msgid "Role ID must not be numbers only!"
7309
+ msgstr ""
7310
+
7311
+ #: includes/class-wcj-general.php:235
7312
+ msgid "Both fields are required!"
7313
+ msgstr ""
7314
+
7315
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:27
7316
+ msgid "Per Product Settings (press Update after changing)"
7317
+ msgstr ""
7318
+
7319
+ #: includes/class-wcj-price-by-user-role.php:101
7320
+ msgid "Booster: Free plugin's version is limited to only one price by user role per products settings product enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price by user role per product settings products."
7321
+ msgstr ""
7322
+
7323
+ #: includes/class-wcj-general.php:40
7324
+ msgid "Manage Custom Roles."
7325
+ msgstr ""
7326
+
7327
+ #: includes/class-wcj-general.php:39
7328
+ msgid "Custom Roles"
7329
+ msgstr ""
7330
+
7331
+ #: includes/class-wcj-general.php:38
7332
+ msgid "Add/Manage Custom Roles"
7333
+ msgstr ""
7334
+
7335
+ #: includes/class-wcj-price-by-user-role.php:27
7336
+ msgid "Display WooCommerce products prices by user roles."
7337
+ msgstr ""
7338
+
7339
+ #: includes/class-wcj-price-by-user-role.php:26
7340
+ msgid "Price by User Role"
7341
+ msgstr ""
7342
+
7343
+ #: includes/settings/wcj-settings-price-by-country.php:172
7344
+ msgid "All Countries and Currencies:"
7345
+ msgstr ""
7346
+
7347
+ #: includes/settings/wcj-settings-price-by-country.php:167
7348
+ msgid "Currencies supported in Yahoo Exchange Rates:"
7349
+ msgstr ""
7350
+
7351
+ #: includes/class-wcj-pdf-invoicing.php:91
7352
+ #: includes/class-wcj-pdf-invoicing.php:92
7353
+ #: includes/settings/wcj-settings-price-by-country.php:164
7354
+ #: includes/settings/wcj-settings-price-by-country.php:169
7355
+ #: includes/settings/wcj-settings-price-by-country.php:174
7356
+ msgid "Generate"
7357
+ msgstr ""
7358
+
7359
+ #: includes/settings/wcj-settings-price-by-country.php:162
7360
+ msgid "Currencies supported in both PayPal and Yahoo Exchange Rates:"
7361
+ msgstr ""
7362
+
7363
+ #: includes/settings/wcj-settings-price-by-country.php:157
7364
+ msgid "Autogenerate Groups"
7365
+ msgstr ""
7366
+
7367
+ #: includes/settings/wcj-settings-price-by-country.php:153
7368
+ msgid "Chosen select"
7369
+ msgstr ""
7370
+
7371
+ #: includes/settings/wcj-settings-price-by-country.php:152
7372
+ msgid "Multiselect"
7373
+ msgstr ""
7374
+
7375
+ #: includes/settings/wcj-settings-price-by-country.php:151
7376
+ msgid "Comma separated list"
7377
+ msgstr ""
7378
+
7379
+ #: includes/settings/wcj-settings-price-by-country.php:146
7380
+ msgid "Choose how do you want to enter countries groups in admin."
7381
+ msgstr ""
7382
+
7383
+ #: includes/settings/wcj-settings-price-by-country.php:145
7384
+ msgid "Countries Selection"
7385
+ msgstr ""
7386
+
7387
+ #: includes/settings/wcj-settings-price-by-country.php:52
7388
+ msgid "Override Country with Customer's Checkout Billing Country"
7389
+ msgstr ""
7390
+
7391
+ #: includes/settings/wcj-settings-price-by-country.php:28
7392
+ msgid "by IP, then by user selection"
7393
+ msgstr ""
7394
+
7395
+ #: includes/settings/wcj-settings-pdf-invoicing.php:74
7396
+ msgid "Hide Disabled Docs Settings"
7397
+ msgstr ""
7398
+
7399
+ #: includes/settings/wcj-settings-payment-gateways.php:36
7400
+ msgid "Admin Title Custom Gateway"
7401
+ msgstr ""
7402
+
7403
+ #: includes/settings/wcj-settings-payment-gateways.php:20
7404
+ msgid "After setting the number, visit %s to set each gateway options."
7405
+ msgstr ""
7406
+
7407
+ #: includes/settings/wcj-settings-payment-gateways.php:19
7408
+ msgid "This section lets you set number of custom payment gateways to add."
7409
+ msgstr ""
7410
+
7411
+ #: includes/settings/wcj-settings-payment-gateways.php:13
7412
+ msgid "WooCommerce > Settings > Checkout"
7413
+ msgstr ""
7414
+
7415
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:68
7416
+ msgid "Hide gateway if there is selected products in cart. Leave blank to disable the option."
7417
+ msgstr ""
7418
+
7419
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:67
7420
+ #: includes/settings/wcj-settings-price-labels.php:106
7421
+ #: includes/settings/wcj-settings-product-input-fields.php:166
7422
+ msgid "Products - Exclude"
7423
+ msgstr ""
7424
+
7425
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:55
7426
+ msgid "Show gateway only if there is selected products in cart. Leave blank to disable the option."
7427
+ msgstr ""
7428
+
7429
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:54
7430
+ #: includes/settings/wcj-settings-price-labels.php:96
7431
+ #: includes/settings/wcj-settings-product-input-fields.php:154
7432
+ msgid "Products - Include"
7433
+ msgstr ""
7434
+
7435
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:43
7436
+ msgid "Hide gateway if there is product of selected category in cart. Leave blank to disable the option."
7437
+ msgstr ""
7438
+
7439
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:42
7440
+ #: includes/settings/wcj-settings-price-labels.php:126
7441
+ #: includes/settings/wcj-settings-product-input-fields.php:120
7442
+ msgid "Product Categories - Exclude"
7443
+ msgstr ""
7444
+
7445
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:32
7446
+ msgid "Show gateway only if there is product of selected category in cart. Leave blank to disable the option."
7447
+ msgstr ""
7448
+
7449
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:31
7450
+ #: includes/settings/wcj-settings-price-labels.php:116
7451
+ #: includes/settings/wcj-settings-product-input-fields.php:109
7452
+ msgid "Product Categories - Include"
7453
+ msgstr ""
7454
+
7455
+ #: includes/class-wcj-payment-gateways-per-category.php:25
7456
+ msgid "Show WooCommerce gateway only if there is selected product or product category in cart."
7457
+ msgstr ""
7458
+
7459
+ #: includes/admin/class-wc-settings-jetpack.php:459
7460
+ #: includes/class-wcj-payment-gateways-per-category.php:24
7461
+ msgid "Gateways per Product or Category"
7462
+ msgstr ""
7463
+
7464
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:97
7465
+ msgid "Max"
7466
+ msgstr ""
7467
+
7468
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:88
7469
+ msgid "Min"
7470
+ msgstr ""
7471
+
7472
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:67
7473
+ msgid "Leave zero to disable."
7474
+ msgstr ""
7475
+
7476
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:21
7477
+ msgid "Exclude shipping from total cart sum, when comparing with min/max amounts."
7478
+ msgstr ""
7479
+
7480
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:20
7481
+ msgid "Exclude Shipping"
7482
+ msgstr ""
7483
+
7484
+ #: includes/class-wcj-payment-gateways-min-max.php:25
7485
+ msgid "Add min/max amounts for WooCommerce payment gateways to show up."
7486
+ msgstr ""
7487
+
7488
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:44
7489
+ msgid "No changes"
7490
+ msgstr ""
7491
+
7492
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:75
7493
+ msgid "Exclude States (Base Country)"
7494
+ msgstr ""
7495
+
7496
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:63
7497
+ msgid "Include States (Base Country)"
7498
+ msgstr ""
7499
+
7500
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:51
7501
+ msgid "Exclude Countries"
7502
+ msgstr ""
7503
+
7504
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:39
7505
+ msgid "Include Countries"
7506
+ msgstr ""
7507
+
7508
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:16
7509
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
7510
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
7511
+ #: includes/settings/wcj-settings-shipping-by-user-role.php:16
7512
+ msgid "Leave empty to disable."
7513
+ msgstr ""
7514
+
7515
+ #: includes/class-wcj-payment-gateways-by-country.php:25
7516
+ msgid "Set countries or states to include/exclude for WooCommerce payment gateways to show up."
7517
+ msgstr ""
7518
+
7519
+ #: includes/class-wcj-payment-gateways-by-country.php:24
7520
+ msgid "Gateways by Country or State"
7521
+ msgstr ""
7522
+
7523
+ #: includes/settings/wcj-settings-order-numbers.php:89
7524
+ msgid "This should be enabled if you have a lot of simultaneous orders in your shop - to prevent duplicate order numbers (sequential)."
7525
+ msgstr ""
7526
+
7527
+ #: includes/settings/wcj-settings-order-numbers.php:87
7528
+ msgid "Use MySQL Transaction"
7529
+ msgstr ""
7530
+
7531
+ #: includes/settings/wcj-settings-order-custom-statuses.php:36
7532
+ msgid "Add Custom Statuses to Admin Reports"
7533
+ msgstr ""
7534
+
7535
+ #: includes/class-wcj-order-custom-statuses.php:365
7536
+ msgid "Booster - Custom Statuses"
7537
+ msgstr ""
7538
+
7539
+ #: includes/settings/wcj-settings-multicurrency.php:99
7540
+ msgid "One currency probably should be set to current (original) shop currency with an exchange rate of 1."
7541
+ msgstr ""
7542
+
7543
+ #: includes/settings/wcj-settings-multicurrency.php:46
7544
+ #: includes/settings/wcj-settings-price-by-country.php:68
7545
+ msgid "Revert Currency to Default on Checkout"
7546
+ msgstr ""
7547
+
7548
+ #: includes/settings/wcj-settings-multicurrency.php:38
7549
+ msgid "Multicurrency on per Product Basis"
7550
+ msgstr ""
7551
+
7552
+ #: includes/class-wcj-multicurrency.php:25
7553
+ msgid "Add multiple currencies (currency switcher) to WooCommerce."
7554
+ msgstr ""
7555
+
7556
+ #: includes/class-wcj-multicurrency.php:24
7557
+ msgid "Multicurrency (Currency Switcher)"
7558
+ msgstr ""
7559
+
7560
+ #: includes/settings/wcj-settings-currency-per-product.php:127
7561
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:70
7562
+ #: includes/settings/wcj-settings-multicurrency.php:103
7563
+ msgid "Total Currencies"
7564
+ msgstr ""
7565
+
7566
+ #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:24
7567
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
7568
+ msgid "Product Currency"
7569
+ msgstr ""
7570
+
7571
+ #: includes/class-wcj-multicurrency-product-base-price.php:26
7572
+ msgid "Enter prices for WooCommerce products in different currencies."
7573
+ msgstr ""
7574
+
7575
+ #: includes/class-wcj-multicurrency-product-base-price.php:25
7576
+ msgid "Multicurrency Product Base Price"
7577
+ msgstr ""
7578
+
7579
+ #: includes/settings/wcj-settings-general.php:133
7580
+ msgid "Disable Saving PDFs in PHP directory for temporary files"
7581
+ msgstr ""
7582
+
7583
+ #: includes/settings/wcj-settings-general.php:126
7584
+ msgid "Disable Loading Timepicker JavaScript"
7585
+ msgstr ""
7586
+
7587
+ #: includes/settings/wcj-settings-general.php:119
7588
+ msgid "Disable Loading Timepicker CSS"
7589
+ msgstr ""
7590
+
7591
+ #: includes/settings/wcj-settings-general.php:112
7592
+ msgid "Disable Loading Datepicker/Weekpicker JavaScript"
7593
+ msgstr ""
7594
+
7595
+ #: includes/settings/wcj-settings-general.php:105
7596
+ msgid "Datepicker/Weekpicker CSS"
7597
+ msgstr ""
7598
+
7599
+ #: includes/settings/wcj-settings-general.php:98
7600
+ msgid "Disable Loading Datepicker/Weekpicker CSS"
7601
+ msgstr ""
7602
+
7603
+ #: includes/settings/wcj-settings-general.php:76
7604
+ #: includes/settings/wcj-settings-product-custom-info.php:188
7605
+ msgid "Advanced Options"
7606
+ msgstr ""
7607
+
7608
+ #: includes/settings/wcj-settings-general.php:60
7609
+ #: includes/settings/wcj-settings-general.php:65
7610
+ msgid "Product Revisions"
7611
+ msgstr ""
7612
+
7613
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:91
7614
+ #: includes/settings/wcj-settings-general.php:50
7615
+ #: includes/settings/wcj-settings-general.php:99
7616
+ #: includes/settings/wcj-settings-general.php:113
7617
+ #: includes/settings/wcj-settings-general.php:120
7618
+ #: includes/settings/wcj-settings-general.php:127
7619
+ #: includes/settings/wcj-settings-general.php:134
7620
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:125
7621
+ #: includes/settings/wcj-settings-price-by-user-role.php:73
7622
+ #: includes/settings/wcj-settings-product-add-to-cart.php:131
7623
+ #: includes/settings/wcj-settings-product-open-pricing.php:80
7624
+ #: includes/settings/wcj-settings-sku.php:205
7625
+ msgid "Disable"
7626
+ msgstr ""
7627
+
7628
+ #: includes/settings/wcj-settings-general.php:49
7629
+ msgid "Disable all Booster's shortcodes (for memory saving)."
7630
+ msgstr ""
7631
+
7632
+ #: includes/settings/wcj-settings-general.php:48
7633
+ msgid "Disable Booster's Shortcodes"
7634
+ msgstr ""
7635
+
7636
+ #: includes/settings/wcj-settings-general.php:41
7637
+ msgid "This will enable all (including non Booster's) shortcodes in WordPress text widgets."
7638
+ msgstr ""
7639
+
7640
+ #: includes/class-wcj-general.php:402
7641
+ msgid "Total Products:"
7642
+ msgstr ""
7643
+
7644
+ #: includes/export/class-wcj-fields-helper.php:46
7645
+ msgid "Last Order Date"
7646
+ msgstr ""
7647
+
7648
+ #: includes/export/class-wcj-fields-helper.php:77
7649
+ msgid "Last Name"
7650
+ msgstr ""
7651
+
7652
+ #: includes/export/class-wcj-fields-helper.php:76
7653
+ msgid "First Name"
7654
+ msgstr ""
7655
+
7656
+ #: includes/settings/wcj-settings-offer-price.php:154
7657
+ msgid "Customer Email"
7658
+ msgstr ""
7659
+
7660
+ #: includes/class-wcj-offer-price.php:118
7661
+ #: includes/export/class-wcj-fields-helper.php:74
7662
+ msgid "Customer ID"
7663
+ msgstr ""
7664
+
7665
+ #: includes/class-wcj-export-import.php:271
7666
+ msgid "Download CSV"
7667
+ msgstr ""
7668
+
7669
+ #: includes/class-wcj-export-import.php:42
7670
+ msgid "Export Orders."
7671
+ msgstr ""
7672
+
7673
+ #: includes/class-wcj-export-import.php:41
7674
+ msgid "Export Orders"
7675
+ msgstr ""
7676
+
7677
+ #: includes/class-wcj-export-import.php:38
7678
+ msgid "Export Customers (extracted from orders)."
7679
+ msgstr ""
7680
+
7681
+ #: includes/class-wcj-export-import.php:37
7682
+ msgid "Export Customers from Orders"
7683
+ msgstr ""
7684
+
7685
+ #: includes/class-wcj-export-import.php:34
7686
+ msgid "Export Customers."
7687
+ msgstr ""
7688
+
7689
+ #: includes/class-wcj-export-import.php:33
7690
+ msgid "Export Customers"
7691
+ msgstr ""
7692
+
7693
+ #: includes/class-wcj-general.php:35
7694
+ msgid "All Products and All Attributes."
7695
+ msgstr ""
7696
+
7697
+ #: includes/settings/wcj-settings-eu-vat-number.php:127
7698
+ msgid "Check for IP Location Country"
7699
+ msgstr ""
7700
+
7701
+ #: includes/settings/wcj-settings-eu-vat-number.php:108
7702
+ msgid "Preserve VAT in Base Country"
7703
+ msgstr ""
7704
+
7705
+ #: includes/settings/wcj-settings-eu-vat-number.php:101
7706
+ msgid "Exempt VAT for Valid Numbers"
7707
+ msgstr ""
7708
+
7709
+ #: includes/settings/wcj-settings-eu-vat-number.php:82
7710
+ msgid "Message on not valid"
7711
+ msgstr ""
7712
+
7713
+ #: includes/settings/wcj-settings-eu-vat-number.php:74
7714
+ msgid "Validate"
7715
+ msgstr ""
7716
+
7717
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:138
7718
+ #: includes/settings/wcj-settings-eu-vat-number.php:63
7719
+ msgid "Class"
7720
+ msgstr ""
7721
+
7722
+ #: includes/class-wcj-order-custom-statuses.php:433
7723
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:149
7724
+ #: includes/settings/wcj-settings-eu-vat-number.php:56
7725
+ msgid "Clear"
7726
+ msgstr ""
7727
+
7728
+ #: includes/settings/wcj-settings-eu-vat-number.php:20
7729
+ msgid "Field Label"
7730
+ msgstr ""
7731
+
7732
+ #: includes/class-wcj-eu-vat-number.php:404
7733
+ #: includes/settings/wcj-settings-eu-vat-number.php:84
7734
+ msgid "<strong>EU VAT Number</strong> is not valid."
7735
+ msgstr ""
7736
+
7737
+ #: includes/class-wcj-eu-vat-number.php:32
7738
+ msgid "Add all EU countries VAT standard rates to WooCommerce."
7739
+ msgstr ""
7740
+
7741
+ #: includes/class-wcj-eu-vat-number.php:31
7742
+ msgid "EU Countries VAT Rates"
7743
+ msgstr ""
7744
+
7745
+ #: includes/class-wcj-eu-vat-number.php:25
7746
+ msgid "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically disable VAT for valid numbers. Add all EU countries VAT standard rates to WooCommerce."
7747
+ msgstr ""
7748
+
7749
+ #: includes/class-wcj-eu-vat-number.php:24
7750
+ #: includes/class-wcj-eu-vat-number.php:227
7751
+ #: includes/settings/wcj-settings-eu-vat-number.php:22
7752
+ #: includes/settings/wcj-settings-eu-vat-number.php:29
7753
+ msgid "EU VAT Number"
7754
+ msgstr ""
7755
+
7756
+ #: includes/settings/wcj-settings-empty-cart.php:40
7757
+ #: includes/settings/wcj-settings-empty-cart.php:55
7758
+ #: includes/settings/wcj-settings-offer-price.php:69
7759
+ #: includes/settings/wcj-settings-offer-price.php:90
7760
+ #: includes/settings/wcj-settings-orders.php:154
7761
+ msgid "Do not add"
7762
+ msgstr ""
7763
+
7764
+ #: includes/settings/wcj-settings-empty-cart.php:50
7765
+ msgid "Button position on the Checkout page"
7766
+ msgstr ""
7767
+
7768
+ #: includes/emails/class-wc-email-wcj-custom.php:30
7769
+ #: includes/settings/wcj-settings-emails.php:37
7770
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:32
7771
+ #: includes/settings/wcj-settings-shipping.php:63
7772
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:46
7773
+ msgid "Custom"
7774
+ msgstr ""
7775
+
7776
+ #: includes/settings/wcj-settings-emails.php:35
7777
+ msgid "Admin Title Custom Email"
7778
+ msgstr ""
7779
+
7780
+ #: includes/settings/wcj-settings-emails.php:23
7781
+ msgid "Custom Emails Number"
7782
+ msgstr ""
7783
+
7784
+ #: includes/settings/wcj-settings-emails.php:18
7785
+ msgid "This section lets you set number of custom emails to add. After setting the number, visit <a href=\"%s\">WooCommerce > Settings > Emails</a> to set each email options."
7786
+ msgstr ""
7787
+
7788
+ #: includes/class-wcj-emails.php:23
7789
+ #: includes/settings/wcj-settings-emails.php:14
7790
+ msgid "Custom Emails"
7791
+ msgstr ""
7792
+
7793
+ #: includes/class-wcj-email-options.php:93
7794
+ msgid "Booster: Email Forwarding Options"
7795
+ msgstr ""
7796
+
7797
+ #: includes/settings/wcj-settings-currency.php:79
7798
+ msgid "Currency Code (required)"
7799
+ msgstr ""
7800
+
7801
+ #: includes/settings/wcj-settings-currency.php:72
7802
+ msgid "Currency Name (required)"
7803
+ msgstr ""
7804
+
7805
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:137
7806
+ #: includes/settings/wcj-settings-currency.php:71
7807
+ msgid "Custom Currency"
7808
+ msgstr ""
7809
+
7810
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:125
7811
+ #: includes/settings/wcj-settings-currency.php:59
7812
+ msgid "Total Custom Currencies"
7813
+ msgstr ""
7814
+
7815
+ #: includes/settings/wcj-settings-currency.php:54
7816
+ msgid "Custom Currencies"
7817
+ msgstr ""
7818
+
7819
+ #: includes/class-wcj-currencies.php:69
7820
+ msgid "Booster: Currency Symbol"
7821
+ msgstr ""
7822
+
7823
+ #: includes/settings/wcj-settings-checkout-files-upload.php:172
7824
+ msgid "To show this field only if at least one product of selected tag is in cart, enter tags here. Leave blank to show for all products."
7825
+ msgstr ""
7826
+
7827
+ #: includes/settings/wcj-settings-checkout-files-upload.php:171
7828
+ msgid "TAGS to show this field"
7829
+ msgstr ""
7830
+
7831
+ #: includes/settings/wcj-settings-checkout-files-upload.php:162
7832
+ msgid "To show this field only if at least one product of selected category is in cart, enter categories here. Leave blank to show for all products."
7833
+ msgstr ""
7834
+
7835
+ #: includes/settings/wcj-settings-checkout-files-upload.php:161
7836
+ msgid "CATEGORIES to show this field"
7837
+ msgstr ""
7838
+
7839
+ #: includes/settings/wcj-settings-checkout-files-upload.php:152
7840
+ msgid "To show this field only if at least one selected product is in cart, enter products here. Leave blank to show for all products."
7841
+ msgstr ""
7842
+
7843
+ #: includes/settings/wcj-settings-checkout-files-upload.php:151
7844
+ msgid "PRODUCTS to show this field"
7845
+ msgstr ""
7846
+
7847
+ #: includes/settings/wcj-settings-checkout-files-upload.php:142
7848
+ msgid "Notice: File was successfully removed"
7849
+ msgstr ""
7850
+
7851
+ #: includes/settings/wcj-settings-checkout-files-upload.php:135
7852
+ msgid "Notice: No file selected"
7853
+ msgstr ""
7854
+
7855
+ #: includes/settings/wcj-settings-checkout-files-upload.php:127
7856
+ msgid "Notice: File was successfully uploaded"
7857
+ msgstr ""
7858
+
7859
+ #: includes/settings/wcj-settings-checkout-files-upload.php:120
7860
+ msgid "Notice: File is required"
7861
+ msgstr ""
7862
+
7863
+ #: includes/settings/wcj-settings-checkout-files-upload.php:113
7864
+ #: includes/settings/wcj-settings-checkout-files-upload.php:128
7865
+ #: includes/settings/wcj-settings-checkout-files-upload.php:143
7866
+ msgid "%s will be replaced with file name"
7867
+ msgstr ""
7868
+
7869
+ #: includes/settings/wcj-settings-checkout-files-upload.php:112
7870
+ msgid "Notice: Wrong file type"
7871
+ msgstr ""
7872
+
7873
+ #: includes/settings/wcj-settings-checkout-files-upload.php:105
7874
+ msgid "Label: Remove button"
7875
+ msgstr ""
7876
+
7877
+ #: includes/settings/wcj-settings-checkout-files-upload.php:98
7878
+ msgid "Label: Upload button"
7879
+ msgstr ""
7880
+
7881
+ #: includes/settings/wcj-settings-checkout-files-upload.php:91
7882
+ msgid "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all files"
7883
+ msgstr ""
7884
+
7885
+ #: includes/settings/wcj-settings-checkout-files-upload.php:90
7886
+ msgid "Accepted file types"
7887
+ msgstr ""
7888
+
7889
+ #: includes/settings/wcj-settings-checkout-files-upload.php:85
7890
+ msgid "Please select file to upload"
7891
+ msgstr ""
7892
+
7893
+ #: includes/settings/wcj-settings-checkout-files-upload.php:83
7894
+ msgid "Leave blank to disable label"
7895
+ msgstr ""
7896
+
7897
+ #: includes/settings/wcj-settings-checkout-files-upload.php:77
7898
+ msgid "Add to My Account page"
7899
+ msgstr ""
7900
+
7901
+ #: includes/settings/wcj-settings-checkout-files-upload.php:71
7902
+ msgid "Add to Thank You page"
7903
+ msgstr ""
7904
+
7905
+ #: includes/settings/wcj-settings-checkout-files-upload.php:62
7906
+ msgid "Position order"
7907
+ msgstr ""
7908
+
7909
+ #: includes/settings/wcj-settings-checkout-files-upload.php:57
7910
+ msgid "Do not add on checkout"
7911
+ msgstr ""
7912
+
7913
+ #: includes/settings/wcj-settings-checkout-files-upload.php:22
7914
+ #: includes/settings/wcj-settings-products-xml.php:22
7915
+ msgid "Total Files"
7916
+ msgstr ""
7917
+
7918
+ #: includes/class-wcj-checkout-files-upload.php:498
7919
+ #: includes/class-wcj-checkout-files-upload.php:499
7920
+ #: includes/settings/wcj-settings-checkout-files-upload.php:107
7921
+ #: includes/settings/wcj-settings-sorting.php:144
7922
+ msgid "Remove"
7923
+ msgstr ""
7924
+
7925
+ #: includes/class-wcj-checkout-files-upload.php:489
7926
+ #: includes/class-wcj-checkout-files-upload.php:490
7927
+ #: includes/settings/wcj-settings-checkout-files-upload.php:100
7928
+ msgid "Upload"
7929
+ msgstr ""
7930
+
7931
+ #: includes/class-wcj-checkout-files-upload.php:275
7932
+ #: includes/settings/wcj-settings-checkout-files-upload.php:137
7933
+ msgid "Please select file to upload!"
7934
+ msgstr ""
7935
+
7936
+ #: includes/class-wcj-checkout-files-upload.php:267
7937
+ #: includes/settings/wcj-settings-checkout-files-upload.php:130
7938
+ msgid "File \"%s\" was successfully uploaded."
7939
+ msgstr ""
7940
+
7941
+ #: includes/class-wcj-checkout-files-upload.php:227
7942
+ #: includes/class-wcj-checkout-files-upload.php:235
7943
+ #: includes/settings/wcj-settings-checkout-files-upload.php:145
7944
+ msgid "File \"%s\" was successfully removed."
7945
+ msgstr ""
7946
+
7947
+ #: includes/class-wcj-checkout-files-upload.php:138
7948
+ msgid "Uploaded Files"
7949
+ msgstr ""
7950
+
7951
+ #: includes/class-wcj-checkout-files-upload.php:118
7952
+ #: includes/class-wcj-checkout-files-upload.php:255
7953
+ #: includes/settings/wcj-settings-checkout-files-upload.php:115
7954
+ msgid "Wrong file type: \"%s\"!"
7955
+ msgstr ""
7956
+
7957
+ #: includes/class-wcj-checkout-files-upload.php:108
7958
+ #: includes/settings/wcj-settings-checkout-files-upload.php:122
7959
+ msgid "File is required!"
7960
+ msgstr ""
7961
+
7962
+ #: includes/class-wcj-checkout-files-upload.php:27
7963
+ msgid "Let customers upload files on (or after) WooCommerce checkout."
7964
+ msgstr ""
7965
+
7966
+ #: includes/class-wcj-checkout-files-upload.php:26
7967
+ msgid "Checkout Files Upload"
7968
+ msgstr ""
7969
+
7970
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:277
7971
+ msgid "Show this field only if there is a selected product in cart."
7972
+ msgstr ""
7973
+
7974
+ #: includes/input-fields/wcj-product-input-fields-options.php:199
7975
+ msgid "If timepicker is selected, set interval (in minutes) here"
7976
+ msgstr ""
7977
+
7978
+ #: includes/input-fields/wcj-product-input-fields-options.php:173
7979
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:231
7980
+ msgid "Saturday"
7981
+ msgstr ""
7982
+
7983
+ #: includes/input-fields/wcj-product-input-fields-options.php:172
7984
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:230
7985
+ msgid "Friday"
7986
+ msgstr ""
7987
+
7988
+ #: includes/input-fields/wcj-product-input-fields-options.php:171
7989
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:229
7990
+ msgid "Thursday"
7991
+ msgstr ""
7992
+
7993
+ #: includes/input-fields/wcj-product-input-fields-options.php:170
7994
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:228
7995
+ msgid "Wednesday"
7996
+ msgstr ""
7997
+
7998
+ #: includes/input-fields/wcj-product-input-fields-options.php:169
7999
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:227
8000
+ msgid "Tuesday"
8001
+ msgstr ""
8002
+
8003
+ #: includes/input-fields/wcj-product-input-fields-options.php:168
8004
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:226
8005
+ msgid "Monday"
8006
+ msgstr ""
8007
+
8008
+ #: includes/input-fields/wcj-product-input-fields-options.php:167
8009
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:225
8010
+ msgid "Sunday"
8011
+ msgstr ""
8012
+
8013
+ #: includes/input-fields/wcj-product-input-fields-options.php:162
8014
+ msgid "If datepicker/weekpicker is selected, set first week day here"
8015
+ msgstr ""
8016
+
8017
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:214
8018
+ msgid "The range of years displayed in the year drop-down: either relative to today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-nn\"). Note that this option only affects what appears in the drop-down, to restrict which dates may be selected use the minDate and/or maxDate options."
8019
+ msgstr ""
8020
+
8021
+ #: includes/input-fields/wcj-product-input-fields-options.php:154
8022
+ msgid "If datepicker/weekpicker is selected, and year selector is enabled, set year range here"
8023
+ msgstr ""
8024
+
8025
+ #: includes/input-fields/wcj-product-input-fields-options.php:147
8026
+ msgid "If datepicker/weekpicker is selected, set if you want to add year selector"
8027
+ msgstr ""
8028
+
8029
+ #: includes/input-fields/wcj-product-input-fields-options.php:140
8030
+ msgid "If datepicker/weekpicker is selected, set max date (in days) here"
8031
+ msgstr ""
8032
+
8033
+ #: includes/input-fields/wcj-product-input-fields-options.php:133
8034
+ msgid "If datepicker/weekpicker is selected, set min date (in days) here"
8035
+ msgstr ""
8036
+
8037
+ #: includes/input-fields/wcj-product-input-fields-options.php:126
8038
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:187
8039
+ msgid "Leave blank to use your current WordPress format"
8040
+ msgstr ""
8041
+
8042
+ #: includes/input-fields/wcj-product-input-fields-options.php:105
8043
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:181
8044
+ #: includes/settings/wcj-settings-checkout-customization.php:26
8045
+ msgid "Checked"
8046
+ msgstr ""
8047
+
8048
+ #: includes/input-fields/wcj-product-input-fields-options.php:104
8049
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:180
8050
+ msgid "Not Checked"
8051
+ msgstr ""
8052
+
8053
+ #: includes/input-fields/wcj-product-input-fields-options.php:99
8054
+ msgid "If checkbox is selected, set default value here"
8055
+ msgstr ""
8056
+
8057
+ #: includes/input-fields/wcj-product-input-fields-options.php:38
8058
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:87
8059
+ msgid "Weekpicker"
8060
+ msgstr ""
8061
+
8062
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:35
8063
+ msgid "Add All Fields to \"Order Received\" Page"
8064
+ msgstr ""
8065
+
8066
+ #: includes/settings/wcj-settings-checkout-core-fields.php:73
8067
+ msgid "Not Required"
8068
+ msgstr ""
8069
+
8070
+ #: includes/settings/wcj-settings-cart.php:81
8071
+ msgid "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
8072
+ msgstr ""
8073
+
8074
+ #: includes/settings/wcj-settings-cart.php:80
8075
+ msgid "Add to Each Item Name"
8076
+ msgstr ""
8077
+
8078
+ #: includes/settings/wcj-settings-cart.php:74
8079
+ msgid "Cart Items Table Custom Info"
8080
+ msgstr ""
8081
+
8082
+ #: includes/settings/wcj-settings-cart.php:59
8083
+ #: includes/settings/wcj-settings-checkout-custom-info.php:85
8084
+ #: includes/settings/wcj-settings-mini-cart.php:58
8085
+ #: includes/settings/wcj-settings-product-custom-info.php:112
8086
+ msgid "Position Order (i.e. Priority)"
8087
+ msgstr ""
8088
+
8089
+ #: includes/settings/wcj-settings-cart.php:21
8090
+ msgid "For example, show them the total weight of their items, any additional fees or taxes, or a confirmation of the address their products are being sent to."
8091
+ msgstr ""
8092
+
8093
+ #: includes/settings/wcj-settings-cart.php:20
8094
+ msgid "Show custom information at on the cart page using Booster's various shortcodes and give your customers a seamless cart experience."
8095
+ msgstr ""
8096
+
8097
+ #: includes/settings/wcj-settings-cart.php:19
8098
+ msgid "This feature allows you to add a final checkpoint for your customers before they proceed to payment."
8099
+ msgstr ""
8100
+
8101
+ #: includes/class-wcj-cart.php:24
8102
+ msgid "Add custom info to WooCommerce cart page."
8103
+ msgstr ""
8104
+
8105
+ #: includes/admin/class-wc-settings-jetpack.php:406
8106
+ #: includes/class-wcj-admin-bar.php:170
8107
+ #: includes/classes/class-wcj-module.php:616
8108
+ msgid "Documentation"
8109
+ msgstr ""
8110
+
8111
+ #: includes/admin/class-wc-settings-jetpack.php:337
8112
+ msgid "Version"
8113
+ msgstr ""
8114
+
8115
+ #: includes/admin/class-wc-settings-jetpack.php:182
8116
+ msgid "Please note that current <em>%s</em> module is deprecated and will be removed in future updates. Please use <em>%s</em> module instead."
8117
+ msgstr ""
8118
+
8119
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
8120
+ msgid "Booster: Custom Add to Cart"
8121
+ msgstr ""
8122
+
8123
+ #. Author of the plugin/theme
8124
+ msgid "Algoritmika Ltd"
8125
+ msgstr ""
8126
+
8127
+ #. Description of the plugin/theme
8128
+ msgid "Supercharge your WooCommerce site with these awesome powerful features."
8129
+ msgstr ""
8130
+
8131
+ #: includes/functions/wcj-admin-functions.php:153
8132
+ msgid "Get Booster Plus to change value."
8133
+ msgstr ""
8134
+
8135
+ #: includes/functions/wcj-admin-functions.php:134
8136
+ msgid "Buy now"
8137
+ msgstr "Comprar ahora"
8138
+
8139
+ #: includes/functions/wcj-admin-functions.php:133
8140
+ msgid "Some settings fields are locked and you will need %s to modify all locked fields."
8141
+ msgstr ""
8142
+
8143
+ #: includes/functions/wcj-admin-functions.php:132
8144
+ msgid "Install Booster Plus to unlock all features"
8145
+ msgstr ""
8146
+
8147
+ #: woocommerce-jetpack.php:244
8148
+ msgid "Unlock all"
8149
+ msgstr ""
8150
+
8151
+ #: woocommerce-jetpack.php:241
8152
+ msgid "Docs"
8153
+ msgstr ""
8154
+
8155
+ #: woocommerce-jetpack.php:225
8156
+ msgid "Booster Settings"
8157
+ msgstr "Ajustes de Booster"
8158
+
8159
+ #. #-#-#-#-# woocommerce-jetpack-code.pot (Booster for WooCommerce 3.1.3)
8160
+ #. #-#-#-#-#
8161
+ #. Plugin Name of the plugin/theme
8162
+ #: includes/admin/class-wc-settings-jetpack.php:486 woocommerce-jetpack.php:224
8163
+ msgid "Booster for WooCommerce"
8164
+ msgstr ""
8165
+
8166
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:112
8167
+ msgid "Enable Custom Shipping"
8168
+ msgstr ""
8169
+
8170
+ #: includes/class-wcj-shipping.php:23
8171
+ #: includes/settings/wcj-settings-shipping.php:16
8172
+ #: includes/settings/wcj-settings-shipping.php:23
8173
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:160
8174
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:119
8175
+ msgid "Custom Shipping"
8176
+ msgstr ""
8177
+
8178
+ #: includes/reports/wcj-class-reports-stock.php:334
8179
+ msgid "Report was generated in: "
8180
+ msgstr ""
8181
+
8182
+ #: includes/reports/wcj-class-reports-stock.php:328
8183
+ msgid "Product stock average"
8184
+ msgstr "Media del inventario de productos"
8185
+
8186
+ #: includes/reports/wcj-class-reports-stock.php:327
8187
+ msgid "Product stock value average"
8188
+ msgstr "Media del valor del inventario de los productos"
8189
+
8190
+ #: includes/reports/wcj-class-reports-stock.php:326
8191
+ msgid "Total stock value"
8192
+ msgstr ""
8193
+
8194
+ #: includes/reports/wcj-class-reports-stock.php:325
8195
+ msgid "Total current stock value"
8196
+ msgstr ""
8197
+
8198
+ #: includes/reports/wcj-class-reports-stock.php:305
8199
+ msgid "profit:"
8200
+ msgstr ""
8201
+
8202
+ #: includes/reports/wcj-class-reports-stock.php:301
8203
+ msgid "No sales yet"
8204
+ msgstr ""
8205
+
8206
+ #: includes/reports/wcj-class-reports-stock.php:296
8207
+ msgid "stock purchase price:"
8208
+ msgstr ""
8209
+
8210
+ #: includes/reports/wcj-class-reports-stock.php:292
8211
+ msgid "purchase price:"
8212
+ msgstr "precio de compra:"
8213
+
8214
+ #: includes/reports/wcj-class-reports-stock.php:263
8215
+ msgid "Stock to minimum"
8216
+ msgstr ""
8217
+
8218
+ #: includes/reports/wcj-class-reports-stock.php:261
8219
+ msgid "Total sales"
8220
+ msgstr "Ventas totales"
8221
+
8222
+ #: includes/reports/wcj-class-reports-stock.php:260
8223
+ msgid "Sales in last %s days"
8224
+ msgstr "Ventas en los últimos %s días."
8225
+
8226
+ #: includes/reports/wcj-class-reports-stock.php:259
8227
+ msgid "Last sale"
8228
+ msgstr ""
8229
+
8230
+ #: includes/reports/wcj-class-reports-stock.php:258
8231
+ msgid "Total stock price"
8232
+ msgstr ""
8233
+
8234
+ #: includes/reports/wcj-class-reports-stock.php:257
8235
+ msgid "Stock price"
8236
+ msgstr ""
8237
+
8238
+ #: includes/class-wcj-admin-bar.php:387 includes/class-wcj-stock.php:26
8239
+ #: includes/reports/wcj-class-reports-stock.php:256
8240
+ #: includes/settings/wcj-settings-reports.php:127
8241
+ #: includes/settings/wcj-settings-reports.php:133
8242
+ #: includes/settings/wcj-settings-reports.php:139
8243
+ msgid "Stock"
8244
+ msgstr "Inventario"
8245
+
8246
+ #: includes/class-wcj-general.php:340 includes/class-wcj-general.php:382
8247
+ #: includes/reports/wcj-class-reports-stock.php:254
8248
+ msgid "Category"
8249
+ msgstr "Categoria"
8250
+
8251
+ #: includes/reports/wcj-class-reports-stock.php:44
8252
+ msgid "Report shows all products that are on stock, but have no sales in selected period. Only products added before the start date of selected period are accounted."
8253
+ msgstr ""
8254
+
8255
+ #: includes/reports/wcj-class-reports-stock.php:43
8256
+ msgid "Overstocked"
8257
+ msgstr ""
8258
+
8259
+ #: includes/reports/wcj-class-reports-stock.php:39
8260
+ msgid "Threshold for minimum stock is equal to half of the sales in selected days range."
8261
+ msgstr ""
8262
+
8263
+ #: includes/reports/wcj-class-reports-stock.php:38
8264
+ msgid "Report shows all products that are low in stock calculated on product's sales data."
8265
+ msgstr ""
8266
+
8267
+ #: includes/reports/wcj-class-reports-stock.php:37
8268
+ msgid "Understocked"
8269
+ msgstr ""
8270
+
8271
+ #: includes/reports/wcj-class-reports-stock.php:33
8272
+ msgid "Report shows all products that are on stock and some sales info."
8273
+ msgstr ""
8274
+
8275
+ #: includes/reports/wcj-class-reports-stock.php:32
8276
+ msgid "All Products on Stock"
8277
+ msgstr ""
8278
+
8279
+ #: includes/reports/wcj-class-reports-customers.php:159
8280
+ msgid "Report for:"
8281
+ msgstr ""
8282
+
8283
+ #: includes/reports/wcj-class-reports-customers.php:137
8284
+ msgid "Percent of total"
8285
+ msgstr ""
8286
+
8287
+ #: includes/reports/wcj-class-reports-customers.php:136
8288
+ msgid "Customers Count"
8289
+ msgstr ""
8290
+
8291
+ #: includes/reports/wcj-class-reports-customers.php:135
8292
+ msgid "Country Code"
8293
+ msgstr ""
8294
+
8295
+ #: includes/reports/wcj-class-reports-customers.php:131
8296
+ msgid "Total customers"
8297
+ msgstr ""
8298
+
8299
+ #: includes/export/class-wcj-fields-helper.php:81
8300
+ #: includes/reports/wcj-class-reports-customers.php:92
8301
+ msgid "Registered"
8302
+ msgstr ""
8303
+
8304
+ #: includes/reports/wcj-class-reports-customers.php:91
8305
+ msgid "Total Spent"
8306
+ msgstr ""
8307
+
8308
+ #: includes/reports/wcj-class-reports-customers.php:89
8309
+ #: includes/settings/wcj-settings-offer-price.php:162
8310
+ msgid "Customer Name"
8311
+ msgstr "Nombre del cliente"
8312
+
8313
+ #: includes/reports/wcj-class-reports-customers.php:39
8314
+ msgid "No customers found."
8315
+ msgstr ""
8316
+
8317
+ #: includes/reports/class-wcj-currency-reports.php:40
8318
+ #: includes/reports/class-wcj-currency-reports.php:84
8319
+ msgid "Show reports only in"
8320
+ msgstr ""
8321
+
8322
+ #: includes/reports/class-wcj-currency-reports.php:38
8323
+ msgid "Reports currency:"
8324
+ msgstr ""
8325
+
8326
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:246
8327
+ msgid "Country Group Nr."
8328
+ msgstr ""
8329
+
8330
+ #: includes/export/class-wcj-fields-helper.php:287
8331
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:133
8332
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:46
8333
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:64
8334
+ #: includes/settings/wcj-settings-product-by-user.php:17
8335
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:183
8336
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:390
8337
+ msgid "Sale Price"
8338
+ msgstr "Precio rebajado"
8339
+
8340
+ #: includes/export/class-wcj-fields-helper.php:286
8341
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:126
8342
+ #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:37
8343
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:55
8344
+ #: includes/settings/wcj-settings-product-by-user.php:16
8345
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:182
8346
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:381
8347
+ msgid "Regular Price"
8348
+ msgstr "Precio habitual"
8349
+
8350
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
8351
+ msgid "Templates"
8352
+ msgstr ""
8353
+
8354
+ #: includes/settings/wcj-settings-pdf-invoicing-templates.php:41
8355
+ msgid "Available Shortcodes"
8356
+ msgstr ""
8357
+
8358
+ #: includes/settings/wcj-settings-pdf-invoicing-templates.php:22
8359
+ msgid "HTML Template"
8360
+ msgstr ""
8361
+
8362
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
8363
+ msgid "Styling"
8364
+ msgstr "Apariencia"
8365
+
8366
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
8367
+ msgid "Page Settings"
8368
+ msgstr ""
8369
+
8370
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:57
8371
+ msgid "Margin Bottom"
8372
+ msgstr ""
8373
+
8374
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:51
8375
+ msgid "Margin Top"
8376
+ msgstr ""
8377
+
8378
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:45
8379
+ msgid "Margin Right"
8380
+ msgstr ""
8381
+
8382
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:39
8383
+ msgid "Margin Left"
8384
+ msgstr ""
8385
+
8386
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:32
8387
+ msgid "Page Format"
8388
+ msgstr ""
8389
+
8390
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:28
8391
+ msgid "Landscape"
8392
+ msgstr "Apaisado"
8393
+
8394
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:27
8395
+ msgid "Portrait"
8396
+ msgstr ""
8397
+
8398
+ #: includes/settings/wcj-settings-pdf-invoicing-page.php:22
8399
+ msgid "Page Orientation"
8400
+ msgstr ""
8401
+
8402
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:35
8403
+ msgid "Counter Width"
8404
+ msgstr ""
8405
+
8406
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:29
8407
+ msgid "Counter"
8408
+ msgstr ""
8409
+
8410
+ #: includes/settings/wcj-settings-order-numbers.php:25
8411
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:22
8412
+ #: includes/settings/wcj-settings-sku.php:27
8413
+ msgid "Sequential"
8414
+ msgstr ""
8415
+
8416
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
8417
+ msgid "Numbering"
8418
+ msgstr ""
8419
+
8420
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:74
8421
+ msgid "Header Margin"
8422
+ msgstr ""
8423
+
8424
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:67
8425
+ msgid "Header Line Color"
8426
+ msgstr ""
8427
+
8428
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:60
8429
+ msgid "Header Text Color"
8430
+ msgstr ""
8431
+
8432
+ #: includes/classes/class-wcj-pdf-invoice.php:74
8433
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:55
8434
+ msgid "Company Name"
8435
+ msgstr "Nombre de la empresa"
8436
+
8437
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:46
8438
+ msgid "Header Title"
8439
+ msgstr ""
8440
+
8441
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:40
8442
+ msgid "Header Image Width in mm"
8443
+ msgstr ""
8444
+
8445
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:29
8446
+ msgid "Header Image"
8447
+ msgstr ""
8448
+
8449
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:22
8450
+ msgid "Enable Header"
8451
+ msgstr ""
8452
+
8453
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
8454
+ msgid "Header"
8455
+ msgstr ""
8456
+
8457
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:52
8458
+ msgid "Footer Margin"
8459
+ msgstr ""
8460
+
8461
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:45
8462
+ msgid "Footer Line Color"
8463
+ msgstr ""
8464
+
8465
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:38
8466
+ msgid "Footer Text Color"
8467
+ msgstr ""
8468
+
8469
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:29
8470
+ msgid "Footer Text"
8471
+ msgstr ""
8472
+
8473
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:22
8474
+ msgid "Enable Footer"
8475
+ msgstr ""
8476
+
8477
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:53
8478
+ msgid "Select some emails"
8479
+ msgstr ""
8480
+
8481
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:46
8482
+ msgid "Attach PDF to emails"
8483
+ msgstr ""
8484
+
8485
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:24
8486
+ msgid "Customer - Refunded Order"
8487
+ msgstr ""
8488
+
8489
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:23
8490
+ msgid "Customer - Invoice"
8491
+ msgstr ""
8492
+
8493
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:22
8494
+ msgid "Customer - Completed Order"
8495
+ msgstr ""
8496
+
8497
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:20
8498
+ msgid "Customer - Processing Order"
8499
+ msgstr ""
8500
+
8501
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:18
8502
+ msgid "Admin - Cancelled Order"
8503
+ msgstr ""
8504
+
8505
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:17
8506
+ msgid "Admin - New Order"
8507
+ msgstr ""
8508
+
8509
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:63
8510
+ msgid "Select some gateways. Leave blank to include all."
8511
+ msgstr ""
8512
+
8513
+ #: includes/settings/wcj-settings-pdf-invoicing-emails.php:56
8514
+ msgid "Payment gateways to include"
8515
+ msgstr ""
8516
+
8517
+ #: includes/class-wcj-email-options.php:26
8518
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
8519
+ #: includes/settings/wcj-settings-emails-verification.php:92
8520
+ #: includes/settings/wcj-settings-offer-price.php:226
8521
+ msgid "Email Options"
8522
+ msgstr "Opciones del correo electrónico"
8523
+
8524
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:120
8525
+ msgid "PDF File Name"
8526
+ msgstr ""
8527
+
8528
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:114
8529
+ msgid "Enable \"save as\" pdf instead of view pdf in browser"
8530
+ msgstr ""
8531
+
8532
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:112
8533
+ msgid "Enable \"Save as\""
8534
+ msgstr ""
8535
+
8536
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:99
8537
+ msgid "Add link"
8538
+ msgstr ""
8539
+
8540
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:98
8541
+ msgid "Customer's \"My Account\" Page"
8542
+ msgstr ""
8543
+
8544
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:33
8545
+ msgid "Add Column"
8546
+ msgstr ""
8547
+
8548
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:32
8549
+ msgid "Admin's \"Orders\" Page"
8550
+ msgstr ""
8551
+
8552
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:148
8553
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:309
8554
+ msgid "Create"
8555
+ msgstr "Crear"
8556
+
8557
+ #: includes/export/class-wcj-fields-helper.php:116
8558
+ #: includes/export/class-wcj-fields-helper.php:201
8559
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:312
8560
+ #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
8561
+ msgid "Order Currency"
8562
+ msgstr ""
8563
+
8564
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:310
8565
+ msgid "Order Taxes"
8566
+ msgstr ""
8567
+
8568
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:308
8569
+ msgid "Tax %"
8570
+ msgstr ""
8571
+
8572
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:306
8573
+ msgid "Customer Country"
8574
+ msgstr ""
8575
+
8576
+ #: includes/export/class-wcj-fields-helper.php:110
8577
+ #: includes/export/class-wcj-fields-helper.php:193
8578
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:305
8579
+ #: includes/settings/wcj-settings-order-numbers.php:26
8580
+ msgid "Order ID"
8581
+ msgstr "El ID del Pedido"
8582
+
8583
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:116
8584
+ msgid "Month"
8585
+ msgstr "Mes"
8586
+
8587
+ #: includes/class-wcj-admin-bar.php:316
8588
+ #: includes/functions/wcj-reports-functions.php:47
8589
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
8590
+ msgid "Year"
8591
+ msgstr ""
8592
+
8593
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:71
8594
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:92
8595
+ msgid "Please fill year and month values."
8596
+ msgstr ""
8597
+
8598
+ #: includes/class-wcj-pdf-invoicing.php:36
8599
+ msgid "Invoices Monthly Reports."
8600
+ msgstr ""
8601
+
8602
+ #: includes/class-wcj-pdf-invoicing.php:35
8603
+ msgid "Invoices Report"
8604
+ msgstr ""
8605
+
8606
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:205
8607
+ msgid "Total documents deleted: %d"
8608
+ msgstr ""
8609
+
8610
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:204
8611
+ msgid "Total documents created: %d"
8612
+ msgstr ""
8613
+
8614
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:125
8615
+ msgid "Results"
8616
+ msgstr "Resultados"
8617
+
8618
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:113
8619
+ msgid "Order Statuses"
8620
+ msgstr ""
8621
+
8622
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:103
8623
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:121
8624
+ msgid "Document Type"
8625
+ msgstr ""
8626
+
8627
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
8628
+ msgid "Clear all invoices before renumerating."
8629
+ msgstr ""
8630
+
8631
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:90
8632
+ msgid "Delete All"
8633
+ msgstr "Borrar todo"
8634
+
8635
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
8636
+ msgid "Counter to start renumerating. Leave 0 to continue from current counter."
8637
+ msgstr ""
8638
+
8639
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:83
8640
+ msgid "Start Number"
8641
+ msgstr ""
8642
+
8643
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
8644
+ msgid "Date to start renumerating. Leave blank to renumerate all invoices."
8645
+ msgstr ""
8646
+
8647
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
8648
+ msgid "The tool renumerates invoices from choosen date. Invoice number format is set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > Numbering."
8649
+ msgstr ""
8650
+
8651
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:61
8652
+ msgid "Booster - Renumerate Invoices"
8653
+ msgstr ""
8654
+
8655
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
8656
+ msgid "Please select at least one order status."
8657
+ msgstr ""
8658
+
8659
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:54
8660
+ msgid "Invoices successfully renumerated!"
8661
+ msgstr ""
8662
+
8663
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:116
8664
+ msgid "Renumerate invoices"
8665
+ msgstr ""
8666
+
8667
+ #: includes/class-wcj-pdf-invoicing.php:32
8668
+ msgid "Tool renumerates all invoices, proforma invoices, credit notes and packing slips."
8669
+ msgstr ""
8670
+
8671
+ #: includes/class-wcj-pdf-invoicing.php:31
8672
+ msgid "Invoices Renumerate"
8673
+ msgstr ""
8674
+
8675
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:143
8676
+ msgid "Total number of "
8677
+ msgstr ""
8678
+
8679
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:569
8680
+ msgid "Select a country&hellip;"
8681
+ msgstr "Selecciona un país&hellip;"
8682
+
8683
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:394
8684
+ msgid "Wrong file type!"
8685
+ msgstr ""
8686
+
8687
+ #: includes/input-fields/wcj-product-input-fields-options.php:69
8688
+ msgid "Message on required"
8689
+ msgstr ""
8690
+
8691
+ #: includes/input-fields/wcj-product-input-fields-options.php:57
8692
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:90
8693
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:112
8694
+ #: includes/settings/wcj-settings-eu-vat-number.php:27
8695
+ #: includes/settings/wcj-settings-product-addons.php:125
8696
+ msgid "Placeholder"
8697
+ msgstr "Marcador de posición"
8698
+
8699
+ #: includes/input-fields/wcj-product-input-fields-options.php:63
8700
+ #: includes/settings/wcj-settings-checkout-core-fields.php:72
8701
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:99
8702
+ #: includes/settings/wcj-settings-checkout-files-upload.php:45
8703
+ #: includes/settings/wcj-settings-eu-vat-number.php:49
8704
+ #: includes/settings/wcj-settings-product-by-user.php:155
8705
+ msgid "Required"
8706
+ msgstr "Necesario"
8707
+
8708
+ #: includes/input-fields/wcj-product-input-fields-options.php:207
8709
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:155
8710
+ msgid "Select/Radio: Options"
8711
+ msgstr ""
8712
+
8713
+ #: includes/input-fields/wcj-product-input-fields-options.php:206
8714
+ msgid "If select/radio is selected, set options here. One option per line"
8715
+ msgstr ""
8716
+
8717
+ #: includes/input-fields/wcj-product-input-fields-options.php:114
8718
+ msgid ".jpg,.jpeg,.png"
8719
+ msgstr ""
8720
+
8721
+ #: includes/input-fields/wcj-product-input-fields-options.php:112
8722
+ msgid "File: Accepted types"
8723
+ msgstr ""
8724
+
8725
+ #: includes/input-fields/wcj-product-input-fields-options.php:110
8726
+ msgid "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all files"
8727
+ msgstr ""
8728
+
8729
+ #: includes/class-wcj-product-tabs.php:584
8730
+ #: includes/input-fields/wcj-product-input-fields-options.php:95
8731
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
8732
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
8733
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:35
8734
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:97
8735
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
8736
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
8737
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:57
8738
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
8739
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
8740
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
8741
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:103
8742
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
8743
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:33
8744
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:43
8745
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:53
8746
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
8747
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
8748
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:23
8749
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
8750
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:172
8751
+ #: includes/settings/wcj-settings-orders.php:123
8752
+ #: includes/widgets/class-wcj-widget-country-switcher.php:82
8753
+ msgid "No"
8754
+ msgstr "No"
8755
+
8756
+ #: includes/input-fields/wcj-product-input-fields-options.php:93
8757
+ msgid "Checkbox: OFF"
8758
+ msgstr ""
8759
+
8760
+ #: includes/input-fields/wcj-product-input-fields-options.php:92
8761
+ msgid "If checkbox is selected, set value for OFF here"
8762
+ msgstr ""
8763
+
8764
+ #: includes/class-wcj-product-tabs.php:585
8765
+ #: includes/input-fields/wcj-product-input-fields-options.php:88
8766
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
8767
+ #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
8768
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:34
8769
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:96
8770
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
8771
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
8772
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:56
8773
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
8774
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
8775
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
8776
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:102
8777
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
8778
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:32
8779
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:42
8780
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:52
8781
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
8782
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
8783
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:24
8784
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
8785
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:166
8786
+ #: includes/settings/wcj-settings-eu-vat-number.php:50
8787
+ #: includes/settings/wcj-settings-eu-vat-number.php:57
8788
+ #: includes/settings/wcj-settings-eu-vat-number.php:75
8789
+ #: includes/settings/wcj-settings-eu-vat-number.php:102
8790
+ #: includes/settings/wcj-settings-eu-vat-number.php:109
8791
+ #: includes/settings/wcj-settings-eu-vat-number.php:128
8792
+ #: includes/widgets/class-wcj-widget-country-switcher.php:83
8793
+ msgid "Yes"
8794
+ msgstr "Si"
8795
+
8796
+ #: includes/input-fields/wcj-product-input-fields-options.php:86
8797
+ msgid "Checkbox: ON"
8798
+ msgstr ""
8799
+
8800
+ #: includes/input-fields/wcj-product-input-fields-options.php:85
8801
+ msgid "If checkbox is selected, set value for ON here"
8802
+ msgstr ""
8803
+
8804
+ #: includes/class-wcj-checkout-files-upload.php:86
8805
+ #: includes/input-fields/wcj-product-input-fields-options.php:36
8806
+ #: includes/settings/wcj-settings-checkout-files-upload.php:37
8807
+ msgid "File"
8808
+ msgstr ""
8809
+
8810
+ #: includes/export/class-wcj-fields-helper.php:289
8811
+ #: includes/input-fields/wcj-product-input-fields-options.php:28
8812
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
8813
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:77
8814
+ #: includes/settings/wcj-settings-export.php:81
8815
+ #: includes/settings/wcj-settings-export.php:149
8816
+ #: includes/settings/wcj-settings-export.php:230
8817
+ #: includes/settings/wcj-settings-global-discount.php:58
8818
+ #: includes/settings/wcj-settings-product-addons.php:73
8819
+ #: includes/settings/wcj-settings-purchase-data.php:73
8820
+ #: includes/settings/wcj-settings-shipping-options.php:67
8821
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:164
8822
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:123
8823
+ #: includes/widgets/class-wcj-widget-multicurrency.php:70
8824
+ msgid "Type"
8825
+ msgstr "Tipo"
8826
+
8827
+ #: includes/input-fields/wcj-product-input-fields-options.php:15
8828
+ #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
8829
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
8830
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
8831
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:20
8832
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
8833
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
8834
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
8835
+ #: includes/settings/wcj-settings-checkout-core-fields.php:60
8836
+ #: includes/settings/wcj-settings-checkout-files-upload.php:39
8837
+ #: includes/settings/wcj-settings-export.php:70
8838
+ #: includes/settings/wcj-settings-export.php:138
8839
+ #: includes/settings/wcj-settings-export.php:219
8840
+ #: includes/settings/wcj-settings-global-discount.php:50
8841
+ #: includes/settings/wcj-settings-orders.php:96
8842
+ #: includes/settings/wcj-settings-product-by-user.php:149
8843
+ #: includes/settings/wcj-settings-product-listings.php:203
8844
+ #: includes/settings/wcj-settings-products-xml.php:71
8845
+ msgid "Enabled"
8846
+ msgstr ""
8847
+
8848
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:355
8849
+ msgid "Booster for WooCommerce: Custom Payment Gateway"
8850
+ msgstr ""
8851
+
8852
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:354
8853
+ #: includes/settings/wcj-settings-payment-gateways.php:38
8854
+ msgid "Custom Gateway"
8855
+ msgstr ""
8856
+
8857
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:154
8858
+ msgid "This may help if you are using pending or custom default status and not getting new order emails."
8859
+ msgstr ""
8860
+
8861
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:153
8862
+ msgid "Send to Customer"
8863
+ msgstr ""
8864
+
8865
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:145
8866
+ msgid "Send to Admin"
8867
+ msgstr ""
8868
+
8869
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:144
8870
+ msgid "Send Additional Emails"
8871
+ msgstr ""
8872
+
8873
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:130
8874
+ msgid "Enable gateway if the order is virtual"
8875
+ msgstr ""
8876
+
8877
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:129
8878
+ msgid "Enable for virtual orders"
8879
+ msgstr ""
8880
+
8881
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:125
8882
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:50
8883
+ msgid "Select shipping methods"
8884
+ msgstr ""
8885
+
8886
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:122
8887
+ msgid "If gateway is only available for certain shipping methods, set it up here. Leave blank to enable for all methods."
8888
+ msgstr ""
8889
+
8890
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:117
8891
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:43
8892
+ msgid "Enable for shipping methods"
8893
+ msgstr ""
8894
+
8895
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:110
8896
+ msgid "If you want to set minimum order amount (excluding fees) to show this gateway on frontend, enter a number here. Set to 0 to disable."
8897
+ msgstr ""
8898
+
8899
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:108
8900
+ msgid "Minimum order amount"
8901
+ msgstr ""
8902
+
8903
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:99
8904
+ msgid "Icon"
8905
+ msgstr ""
8906
+
8907
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:93
8908
+ msgid "Instructions that will be added to the emails."
8909
+ msgstr ""
8910
+
8911
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:91
8912
+ msgid "Email Instructions"
8913
+ msgstr ""
8914
+
8915
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:85
8916
+ msgid "Instructions that will be added to the thank you page."
8917
+ msgstr ""
8918
+
8919
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:83
8920
+ msgid "Instructions"
8921
+ msgstr ""
8922
+
8923
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:78
8924
+ msgid "Custom Payment Description."
8925
+ msgstr ""
8926
+
8927
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:76
8928
+ msgid "Payment method description that the customer will see on your checkout."
8929
+ msgstr ""
8930
+
8931
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:69
8932
+ msgid "Custom Payment"
8933
+ msgstr ""
8934
+
8935
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:68
8936
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
8937
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:118
8938
+ msgid "This controls the title which the user sees during checkout."
8939
+ msgstr "Esto controla el título que el usuario ve al terminar la compra."
8940
+
8941
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:61
8942
+ msgid "Enable Custom Payment"
8943
+ msgstr ""
8944
+
8945
+ #: includes/emails/class-wc-email-wcj-custom.php:225
8946
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:59
8947
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:68
8948
+ #: includes/settings/wcj-settings-product-listings.php:179
8949
+ #: includes/settings/wcj-settings-product-listings.php:237
8950
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:110
8951
+ msgid "Enable/Disable"
8952
+ msgstr "Habilitar/Inhabilitar"
8953
+
8954
+ #: includes/functions/wcj-invoicing-functions.php:237
8955
+ msgid "Custom Document"
8956
+ msgstr ""
8957
+
8958
+ #: includes/functions/wcj-invoicing-functions.php:227
8959
+ msgid "Credit Note"
8960
+ msgstr ""
8961
+
8962
+ #: includes/functions/wcj-invoicing-functions.php:221
8963
+ msgid "Packing Slip"
8964
+ msgstr ""
8965
+
8966
+ #: includes/functions/wcj-invoicing-functions.php:215
8967
+ msgid "Proforma Invoice"
8968
+ msgstr ""
8969
+
8970
+ #: includes/functions/wcj-order-functions.php:141
8971
+ msgctxt "Order status"
8972
+ msgid "On Hold"
8973
+ msgstr ""
8974
+
8975
+ #: includes/functions/wcj-order-functions.php:139
8976
+ msgctxt "Order status"
8977
+ msgid "Pending Payment"
8978
+ msgstr ""
8979
+
8980
+ #: includes/functions/wcj-country-functions.php:392
8981
+ msgid "Zimbabwe"
8982
+ msgstr ""
8983
+
8984
+ #: includes/functions/wcj-country-functions.php:391
8985
+ msgid "Zambia"
8986
+ msgstr ""
8987
+
8988
+ #: includes/functions/wcj-country-functions.php:390
8989
+ msgid "Yemen"
8990
+ msgstr "Yemen"
8991
+
8992
+ #: includes/functions/wcj-country-functions.php:389
8993
+ msgid "Western Samoa"
8994
+ msgstr ""
8995
+
8996
+ #: includes/functions/wcj-country-functions.php:388
8997
+ msgid "Western Sahara"
8998
+ msgstr ""
8999
+
9000
+ #: includes/functions/wcj-country-functions.php:387
9001
+ msgid "Wallis and Futuna"
9002
+ msgstr ""
9003
+
9004
+ #: includes/functions/wcj-country-functions.php:386
9005
+ msgid "Vietnam"
9006
+ msgstr ""
9007
+
9008
+ #: includes/functions/wcj-country-functions.php:385
9009
+ msgid "Venezuela"
9010
+ msgstr ""
9011
+
9012
+ #: includes/functions/wcj-country-functions.php:384
9013
+ msgid "Vatican"
9014
+ msgstr ""
9015
+
9016
+ #: includes/functions/wcj-country-functions.php:383
9017
+ msgid "Vanuatu"
9018
+ msgstr ""
9019
+
9020
+ #: includes/functions/wcj-country-functions.php:382
9021
+ msgid "Uzbekistan"
9022
+ msgstr ""
9023
+
9024
+ #: includes/functions/wcj-country-functions.php:381
9025
+ msgid "Uruguay"
9026
+ msgstr ""
9027
+
9028
+ #: includes/functions/wcj-country-functions.php:380
9029
+ msgid "United States (US)"
9030
+ msgstr ""
9031
+
9032
+ #: includes/functions/wcj-country-functions.php:379
9033
+ msgid "United Kingdom (UK)"
9034
+ msgstr ""
9035
+
9036
+ #: includes/functions/wcj-country-functions.php:378
9037
+ msgid "United Arab Emirates"
9038
+ msgstr ""
9039
+
9040
+ #: includes/functions/wcj-country-functions.php:377
9041
+ msgid "Ukraine"
9042
+ msgstr ""
9043
+
9044
+ #: includes/functions/wcj-country-functions.php:376
9045
+ msgid "Uganda"
9046
+ msgstr ""
9047
+
9048
+ #: includes/functions/wcj-country-functions.php:375
9049
+ msgid "Tuvalu"
9050
+ msgstr ""
9051
+
9052
+ #: includes/functions/wcj-country-functions.php:374
9053
+ msgid "Turks and Caicos Islands"
9054
+ msgstr ""
9055
+
9056
+ #: includes/functions/wcj-country-functions.php:373
9057
+ msgid "Turkmenistan"
9058
+ msgstr ""
9059
+
9060
+ #: includes/functions/wcj-country-functions.php:372
9061
+ msgid "Turkey"
9062
+ msgstr ""
9063
+
9064
+ #: includes/functions/wcj-country-functions.php:371
9065
+ msgid "Tunisia"
9066
+ msgstr ""
9067
+
9068
+ #: includes/functions/wcj-country-functions.php:370
9069
+ msgid "Trinidad and Tobago"
9070
+ msgstr ""
9071
+
9072
+ #: includes/functions/wcj-country-functions.php:369
9073
+ msgid "Tonga"
9074
+ msgstr ""
9075
+
9076
+ #: includes/functions/wcj-country-functions.php:368
9077
+ msgid "Tokelau"
9078
+ msgstr ""
9079
+
9080
+ #: includes/functions/wcj-country-functions.php:367
9081
+ msgid "Togo"
9082
+ msgstr ""
9083
+
9084
+ #: includes/functions/wcj-country-functions.php:366
9085
+ msgid "Timor-Leste"
9086
+ msgstr ""
9087
+
9088
+ #: includes/functions/wcj-country-functions.php:365
9089
+ msgid "Thailand"
9090
+ msgstr ""
9091
+
9092
+ #: includes/functions/wcj-country-functions.php:364
9093
+ msgid "Tanzania"
9094
+ msgstr ""
9095
+
9096
+ #: includes/functions/wcj-country-functions.php:363
9097
+ msgid "Tajikistan"
9098
+ msgstr ""
9099
+
9100
+ #: includes/functions/wcj-country-functions.php:362
9101
+ msgid "Taiwan"
9102
+ msgstr ""
9103
+
9104
+ #: includes/functions/wcj-country-functions.php:361
9105
+ msgid "Syria"
9106
+ msgstr ""
9107
+
9108
+ #: includes/functions/wcj-country-functions.php:360
9109
+ msgid "Switzerland"
9110
+ msgstr ""
9111
+
9112
+ #: includes/functions/wcj-country-functions.php:359
9113
+ msgid "Sweden"
9114
+ msgstr ""
9115
+
9116
+ #: includes/functions/wcj-country-functions.php:358
9117
+ msgid "Swaziland"
9118
+ msgstr ""
9119
+
9120
+ #: includes/functions/wcj-country-functions.php:357
9121
+ msgid "Svalbard and Jan Mayen"
9122
+ msgstr ""
9123
+
9124
+ #: includes/functions/wcj-country-functions.php:356
9125
+ msgid "Suriname"
9126
+ msgstr ""
9127
+
9128
+ #: includes/functions/wcj-country-functions.php:355
9129
+ msgid "Sudan"
9130
+ msgstr ""
9131
+
9132
+ #: includes/functions/wcj-country-functions.php:354
9133
+ msgid "Sri Lanka"
9134
+ msgstr "Sri Lanka"
9135
+
9136
+ #: includes/functions/wcj-country-functions.php:353
9137
+ msgid "Spain"
9138
+ msgstr ""
9139
+
9140
+ #: includes/functions/wcj-country-functions.php:352
9141
+ msgid "South Sudan"
9142
+ msgstr ""
9143
+
9144
+ #: includes/functions/wcj-country-functions.php:351
9145
+ msgid "South Korea"
9146
+ msgstr ""
9147
+
9148
+ #: includes/functions/wcj-country-functions.php:350
9149
+ msgid "South Georgia/Sandwich Islands"
9150
+ msgstr ""
9151
+
9152
+ #: includes/functions/wcj-country-functions.php:349
9153
+ msgid "South Africa"
9154
+ msgstr ""
9155
+
9156
+ #: includes/functions/wcj-country-functions.php:348
9157
+ msgid "Somalia"
9158
+ msgstr ""
9159
+
9160
+ #: includes/functions/wcj-country-functions.php:347
9161
+ msgid "Solomon Islands"
9162
+ msgstr ""
9163
+
9164
+ #: includes/functions/wcj-country-functions.php:346
9165
+ msgid "Slovenia"
9166
+ msgstr ""
9167
+
9168
+ #: includes/functions/wcj-country-functions.php:345
9169
+ msgid "Slovakia"
9170
+ msgstr ""
9171
+
9172
+ #: includes/functions/wcj-country-functions.php:344
9173
+ msgid "Singapore"
9174
+ msgstr ""
9175
+
9176
+ #: includes/functions/wcj-country-functions.php:343
9177
+ msgid "Sierra Leone"
9178
+ msgstr ""
9179
+
9180
+ #: includes/functions/wcj-country-functions.php:342
9181
+ msgid "Seychelles"
9182
+ msgstr ""
9183
+
9184
+ #: includes/functions/wcj-country-functions.php:341
9185
+ msgid "Serbia"
9186
+ msgstr "Serbia"
9187
+
9188
+ #: includes/functions/wcj-country-functions.php:340
9189
+ msgid "Senegal"
9190
+ msgstr "Senegal"
9191
+
9192
+ #: includes/functions/wcj-country-functions.php:339
9193
+ msgid "Saudi Arabia"
9194
+ msgstr ""
9195
+
9196
+ #: includes/functions/wcj-country-functions.php:338
9197
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
9198
+ msgstr ""
9199
+
9200
+ #: includes/functions/wcj-country-functions.php:337
9201
+ msgid "San Marino"
9202
+ msgstr ""
9203
+
9204
+ #: includes/functions/wcj-country-functions.php:336
9205
+ msgid "Saint Vincent and the Grenadines"
9206
+ msgstr ""
9207
+
9208
+ #: includes/functions/wcj-country-functions.php:335
9209
+ msgid "Saint Pierre and Miquelon"
9210
+ msgstr ""
9211
+
9212
+ #: includes/functions/wcj-country-functions.php:334
9213
+ msgid "Saint Martin (Dutch part)"
9214
+ msgstr ""
9215
+
9216
+ #: includes/functions/wcj-country-functions.php:333
9217
+ msgid "Saint Martin (French part)"
9218
+ msgstr ""
9219
+
9220
+ #: includes/functions/wcj-country-functions.php:332
9221
+ msgid "Saint Lucia"
9222
+ msgstr ""
9223
+
9224
+ #: includes/functions/wcj-country-functions.php:331
9225
+ msgid "Saint Kitts and Nevis"
9226
+ msgstr ""
9227
+
9228
+ #: includes/functions/wcj-country-functions.php:330
9229
+ msgid "Saint Helena"
9230
+ msgstr ""
9231
+
9232
+ #: includes/functions/wcj-country-functions.php:329
9233
+ msgid "Saint Barth&eacute;lemy"
9234
+ msgstr ""
9235
+
9236
+ #: includes/functions/wcj-country-functions.php:328
9237
+ msgid "Rwanda"
9238
+ msgstr ""
9239
+
9240
+ #: includes/functions/wcj-country-functions.php:327
9241
+ msgid "Russia"
9242
+ msgstr ""
9243
+
9244
+ #: includes/functions/wcj-country-functions.php:326
9245
+ msgid "Romania"
9246
+ msgstr ""
9247
+
9248
+ #: includes/functions/wcj-country-functions.php:325
9249
+ msgid "Reunion"
9250
+ msgstr ""
9251
+
9252
+ #: includes/functions/wcj-country-functions.php:324
9253
+ msgid "Qatar"
9254
+ msgstr "Catar"
9255
+
9256
+ #: includes/functions/wcj-country-functions.php:323
9257
+ msgid "Portugal"
9258
+ msgstr ""
9259
+
9260
+ #: includes/functions/wcj-country-functions.php:322
9261
+ msgid "Poland"
9262
+ msgstr ""
9263
+
9264
+ #: includes/functions/wcj-country-functions.php:321
9265
+ msgid "Pitcairn"
9266
+ msgstr "Pitcairn"
9267
+
9268
+ #: includes/functions/wcj-country-functions.php:320
9269
+ msgid "Philippines"
9270
+ msgstr ""
9271
+
9272
+ #: includes/functions/wcj-country-functions.php:319
9273
+ msgid "Peru"
9274
+ msgstr ""
9275
+
9276
+ #: includes/functions/wcj-country-functions.php:318
9277
+ msgid "Paraguay"
9278
+ msgstr ""
9279
+
9280
+ #: includes/functions/wcj-country-functions.php:317
9281
+ msgid "Papua New Guinea"
9282
+ msgstr "Papúa Nueva Guinea"
9283
+
9284
+ #: includes/functions/wcj-country-functions.php:316
9285
+ msgid "Panama"
9286
+ msgstr ""
9287
+
9288
+ #: includes/functions/wcj-country-functions.php:315
9289
+ msgid "Palestinian Territory"
9290
+ msgstr ""
9291
+
9292
+ #: includes/functions/wcj-country-functions.php:314
9293
+ msgid "Pakistan"
9294
+ msgstr ""
9295
+
9296
+ #: includes/functions/wcj-country-functions.php:313
9297
+ msgid "Oman"
9298
+ msgstr ""
9299
+
9300
+ #: includes/functions/wcj-country-functions.php:312
9301
+ msgid "Norway"
9302
+ msgstr ""
9303
+
9304
+ #: includes/functions/wcj-country-functions.php:311
9305
+ msgid "North Korea"
9306
+ msgstr ""
9307
+
9308
+ #: includes/functions/wcj-country-functions.php:310
9309
+ msgid "Norfolk Island"
9310
+ msgstr ""
9311
+
9312
+ #: includes/functions/wcj-country-functions.php:309
9313
+ msgid "Niue"
9314
+ msgstr ""
9315
+
9316
+ #: includes/functions/wcj-country-functions.php:308
9317
+ msgid "Nigeria"
9318
+ msgstr ""
9319
+
9320
+ #: includes/functions/wcj-country-functions.php:307
9321
+ msgid "Niger"
9322
+ msgstr ""
9323
+
9324
+ #: includes/functions/wcj-country-functions.php:306
9325
+ msgid "Nicaragua"
9326
+ msgstr ""
9327
+
9328
+ #: includes/functions/wcj-country-functions.php:305
9329
+ msgid "New Zealand"
9330
+ msgstr ""
9331
+
9332
+ #: includes/functions/wcj-country-functions.php:304
9333
+ msgid "New Caledonia"
9334
+ msgstr ""
9335
+
9336
+ #: includes/functions/wcj-country-functions.php:303
9337
+ msgid "Netherlands Antilles"
9338
+ msgstr ""
9339
+
9340
+ #: includes/functions/wcj-country-functions.php:302
9341
+ msgid "Netherlands"
9342
+ msgstr ""
9343
+
9344
+ #: includes/functions/wcj-country-functions.php:301
9345
+ msgid "Nepal"
9346
+ msgstr ""
9347
+
9348
+ #: includes/functions/wcj-country-functions.php:300
9349
+ msgid "Nauru"
9350
+ msgstr ""
9351
+
9352
+ #: includes/functions/wcj-country-functions.php:299
9353
+ msgid "Namibia"
9354
+ msgstr ""
9355
+
9356
+ #: includes/functions/wcj-country-functions.php:298
9357
+ msgid "Myanmar"
9358
+ msgstr ""
9359
+
9360
+ #: includes/functions/wcj-country-functions.php:297
9361
+ msgid "Mozambique"
9362
+ msgstr ""
9363
+
9364
+ #: includes/functions/wcj-country-functions.php:296
9365
+ msgid "Morocco"
9366
+ msgstr "Marruecos"
9367
+
9368
+ #: includes/functions/wcj-country-functions.php:295
9369
+ msgid "Montserrat"
9370
+ msgstr ""
9371
+
9372
+ #: includes/functions/wcj-country-functions.php:294
9373
+ msgid "Montenegro"
9374
+ msgstr ""
9375
+
9376
+ #: includes/functions/wcj-country-functions.php:293
9377
+ msgid "Mongolia"
9378
+ msgstr ""
9379
+
9380
+ #: includes/functions/wcj-country-functions.php:292
9381
+ msgid "Monaco"
9382
+ msgstr ""
9383
+
9384
+ #: includes/functions/wcj-country-functions.php:291
9385
+ msgid "Moldova"
9386
+ msgstr ""
9387
+
9388
+ #: includes/functions/wcj-country-functions.php:290
9389
+ msgid "Micronesia"
9390
+ msgstr ""
9391
+
9392
+ #: includes/functions/wcj-country-functions.php:289
9393
+ msgid "Mexico"
9394
+ msgstr ""
9395
+
9396
+ #: includes/functions/wcj-country-functions.php:288
9397
+ msgid "Mayotte"
9398
+ msgstr ""
9399
+
9400
+ #: includes/functions/wcj-country-functions.php:287
9401
+ msgid "Mauritius"
9402
+ msgstr ""
9403
+
9404
+ #: includes/functions/wcj-country-functions.php:286
9405
+ msgid "Mauritania"
9406
+ msgstr ""
9407
+
9408
+ #: includes/functions/wcj-country-functions.php:285
9409
+ msgid "Martinique"
9410
+ msgstr ""
9411
+
9412
+ #: includes/functions/wcj-country-functions.php:284
9413
+ msgid "Marshall Islands"
9414
+ msgstr ""
9415
+
9416
+ #: includes/functions/wcj-country-functions.php:283
9417
+ msgid "Malta"
9418
+ msgstr ""
9419
+
9420
+ #: includes/functions/wcj-country-functions.php:282
9421
+ msgid "Mali"
9422
+ msgstr ""
9423
+
9424
+ #: includes/functions/wcj-country-functions.php:281
9425
+ msgid "Maldives"
9426
+ msgstr ""
9427
+
9428
+ #: includes/functions/wcj-country-functions.php:280
9429
+ msgid "Malaysia"
9430
+ msgstr ""
9431
+
9432
+ #: includes/functions/wcj-country-functions.php:279
9433
+ msgid "Malawi"
9434
+ msgstr ""
9435
+
9436
+ #: includes/functions/wcj-country-functions.php:278
9437
+ msgid "Madagascar"
9438
+ msgstr ""
9439
+
9440
+ #: includes/functions/wcj-country-functions.php:277
9441
+ msgid "Macedonia"
9442
+ msgstr ""
9443
+
9444
+ #: includes/functions/wcj-country-functions.php:276
9445
+ msgid "Macao S.A.R., China"
9446
+ msgstr ""
9447
+
9448
+ #: includes/functions/wcj-country-functions.php:275
9449
+ msgid "Luxembourg"
9450
+ msgstr ""
9451
+
9452
+ #: includes/functions/wcj-country-functions.php:274
9453
+ msgid "Lithuania"
9454
+ msgstr ""
9455
+
9456
+ #: includes/functions/wcj-country-functions.php:273
9457
+ msgid "Liechtenstein"
9458
+ msgstr ""
9459
+
9460
+ #: includes/functions/wcj-country-functions.php:272
9461
+ msgid "Libya"
9462
+ msgstr ""
9463
+
9464
+ #: includes/functions/wcj-country-functions.php:271
9465
+ msgid "Liberia"
9466
+ msgstr ""
9467
+
9468
+ #: includes/functions/wcj-country-functions.php:270
9469
+ msgid "Lesotho"
9470
+ msgstr ""
9471
+
9472
+ #: includes/functions/wcj-country-functions.php:269
9473
+ msgid "Lebanon"
9474
+ msgstr "Líbano"
9475
+
9476
+ #: includes/functions/wcj-country-functions.php:268
9477
+ msgid "Latvia"
9478
+ msgstr ""
9479
+
9480
+ #: includes/functions/wcj-country-functions.php:267
9481
+ msgid "Laos"
9482
+ msgstr ""
9483
+
9484
+ #: includes/functions/wcj-country-functions.php:266
9485
+ msgid "Kyrgyzstan"
9486
+ msgstr ""
9487
+
9488
+ #: includes/functions/wcj-country-functions.php:265
9489
+ msgid "Kuwait"
9490
+ msgstr ""
9491
+
9492
+ #: includes/functions/wcj-country-functions.php:264
9493
+ msgid "Kiribati"
9494
+ msgstr ""
9495
+
9496
+ #: includes/functions/wcj-country-functions.php:263
9497
+ msgid "Kenya"
9498
+ msgstr "Kenia"
9499
+
9500
+ #: includes/functions/wcj-country-functions.php:262
9501
+ msgid "Kazakhstan"
9502
+ msgstr ""
9503
+
9504
+ #: includes/functions/wcj-country-functions.php:261
9505
+ msgid "Jordan"
9506
+ msgstr ""
9507
+
9508
+ #: includes/functions/wcj-country-functions.php:260
9509
+ msgid "Jersey"
9510
+ msgstr ""
9511
+
9512
+ #: includes/functions/wcj-country-functions.php:259
9513
+ msgid "Japan"
9514
+ msgstr ""
9515
+
9516
+ #: includes/functions/wcj-country-functions.php:258
9517
+ msgid "Jamaica"
9518
+ msgstr ""
9519
+
9520
+ #: includes/functions/wcj-country-functions.php:257
9521
+ msgid "Ivory Coast"
9522
+ msgstr ""
9523
+
9524
+ #: includes/functions/wcj-country-functions.php:256
9525
+ msgid "Italy"
9526
+ msgstr ""
9527
+
9528
+ #: includes/functions/wcj-country-functions.php:255
9529
+ msgid "Israel"
9530
+ msgstr ""
9531
+
9532
+ #: includes/functions/wcj-country-functions.php:254
9533
+ msgid "Isle of Man"
9534
+ msgstr "Isla de Man"
9535
+
9536
+ #: includes/functions/wcj-country-functions.php:253
9537
+ msgid "Republic of Ireland"
9538
+ msgstr ""
9539
+
9540
+ #: includes/functions/wcj-country-functions.php:252
9541
+ msgid "Iraq"
9542
+ msgstr ""
9543
+
9544
+ #: includes/functions/wcj-country-functions.php:251
9545
+ msgid "Iran"
9546
+ msgstr ""
9547
+
9548
+ #: includes/functions/wcj-country-functions.php:250
9549
+ msgid "Indonesia"
9550
+ msgstr ""
9551
+
9552
+ #: includes/functions/wcj-country-functions.php:249
9553
+ msgid "India"
9554
+ msgstr ""
9555
+
9556
+ #: includes/functions/wcj-country-functions.php:248
9557
+ msgid "Iceland"
9558
+ msgstr ""
9559
+
9560
+ #: includes/functions/wcj-country-functions.php:247
9561
+ msgid "Hungary"
9562
+ msgstr ""
9563
+
9564
+ #: includes/functions/wcj-country-functions.php:246
9565
+ msgid "Hong Kong"
9566
+ msgstr ""
9567
+
9568
+ #: includes/functions/wcj-country-functions.php:245
9569
+ msgid "Honduras"
9570
+ msgstr ""
9571
+
9572
+ #: includes/functions/wcj-country-functions.php:244
9573
+ msgid "Heard Island and McDonald Islands"
9574
+ msgstr ""
9575
+
9576
+ #: includes/functions/wcj-country-functions.php:243
9577
+ msgid "Haiti"
9578
+ msgstr ""
9579
+
9580
+ #: includes/functions/wcj-country-functions.php:242
9581
+ msgid "Guyana"
9582
+ msgstr ""
9583
+
9584
+ #: includes/functions/wcj-country-functions.php:241
9585
+ msgid "Guinea-Bissau"
9586
+ msgstr ""
9587
+
9588
+ #: includes/functions/wcj-country-functions.php:240
9589
+ msgid "Guinea"
9590
+ msgstr "Guinea"
9591
+
9592
+ #: includes/functions/wcj-country-functions.php:239
9593
+ msgid "Guernsey"
9594
+ msgstr ""
9595
+
9596
+ #: includes/functions/wcj-country-functions.php:238
9597
+ msgid "Guatemala"
9598
+ msgstr ""
9599
+
9600
+ #: includes/functions/wcj-country-functions.php:237
9601
+ msgid "Guadeloupe"
9602
+ msgstr ""
9603
+
9604
+ #: includes/functions/wcj-country-functions.php:236
9605
+ msgid "Grenada"
9606
+ msgstr ""
9607
+
9608
+ #: includes/functions/wcj-country-functions.php:235
9609
+ msgid "Greenland"
9610
+ msgstr ""
9611
+
9612
+ #: includes/functions/wcj-country-functions.php:234
9613
+ msgid "Greece"
9614
+ msgstr ""
9615
+
9616
+ #: includes/functions/wcj-country-functions.php:233
9617
+ msgid "Gibraltar"
9618
+ msgstr ""
9619
+
9620
+ #: includes/functions/wcj-country-functions.php:232
9621
+ msgid "Ghana"
9622
+ msgstr ""
9623
+
9624
+ #: includes/functions/wcj-country-functions.php:231
9625
+ msgid "Germany"
9626
+ msgstr ""
9627
+
9628
+ #: includes/functions/wcj-country-functions.php:230
9629
+ msgid "Georgia"
9630
+ msgstr ""
9631
+
9632
+ #: includes/functions/wcj-country-functions.php:229
9633
+ msgid "Gambia"
9634
+ msgstr ""
9635
+
9636
+ #: includes/functions/wcj-country-functions.php:228
9637
+ msgid "Gabon"
9638
+ msgstr ""
9639
+
9640
+ #: includes/functions/wcj-country-functions.php:227
9641
+ msgid "French Southern Territories"
9642
+ msgstr ""
9643
+
9644
+ #: includes/functions/wcj-country-functions.php:226
9645
+ msgid "French Polynesia"
9646
+ msgstr ""
9647
+
9648
+ #: includes/functions/wcj-country-functions.php:225
9649
+ msgid "French Guiana"
9650
+ msgstr ""
9651
+
9652
+ #: includes/functions/wcj-country-functions.php:224
9653
+ msgid "France"
9654
+ msgstr ""
9655
+
9656
+ #: includes/functions/wcj-country-functions.php:223
9657
+ msgid "Finland"
9658
+ msgstr ""
9659
+
9660
+ #: includes/functions/wcj-country-functions.php:222
9661
+ msgid "Fiji"
9662
+ msgstr ""
9663
+
9664
+ #: includes/functions/wcj-country-functions.php:221
9665
+ msgid "Faroe Islands"
9666
+ msgstr ""
9667
+
9668
+ #: includes/functions/wcj-country-functions.php:220
9669
+ msgid "Falkland Islands"
9670
+ msgstr ""
9671
+
9672
+ #: includes/functions/wcj-country-functions.php:219
9673
+ msgid "Ethiopia"
9674
+ msgstr ""
9675
+
9676
+ #: includes/functions/wcj-country-functions.php:218
9677
+ msgid "Estonia"
9678
+ msgstr ""
9679
+
9680
+ #: includes/functions/wcj-country-functions.php:217
9681
+ msgid "Eritrea"
9682
+ msgstr ""
9683
+
9684
+ #: includes/functions/wcj-country-functions.php:216
9685
+ msgid "Equatorial Guinea"
9686
+ msgstr ""
9687
+
9688
+ #: includes/functions/wcj-country-functions.php:215
9689
+ msgid "El Salvador"
9690
+ msgstr "El Salvador"
9691
+
9692
+ #: includes/functions/wcj-country-functions.php:214
9693
+ msgid "Egypt"
9694
+ msgstr ""
9695
+
9696
+ #: includes/functions/wcj-country-functions.php:213
9697
+ msgid "Ecuador"
9698
+ msgstr ""
9699
+
9700
+ #: includes/functions/wcj-country-functions.php:212
9701
+ msgid "Dominican Republic"
9702
+ msgstr ""
9703
+
9704
+ #: includes/functions/wcj-country-functions.php:211
9705
+ msgid "Dominica"
9706
+ msgstr ""
9707
+
9708
+ #: includes/functions/wcj-country-functions.php:210
9709
+ msgid "Djibouti"
9710
+ msgstr ""
9711
+
9712
+ #: includes/functions/wcj-country-functions.php:209
9713
+ msgid "Denmark"
9714
+ msgstr ""
9715
+
9716
+ #: includes/functions/wcj-country-functions.php:208
9717
+ msgid "Czech Republic"
9718
+ msgstr ""
9719
+
9720
+ #: includes/functions/wcj-country-functions.php:207
9721
+ msgid "Cyprus"
9722
+ msgstr ""
9723
+
9724
+ #: includes/functions/wcj-country-functions.php:206
9725
+ msgid "Cura&Ccedil;ao"
9726
+ msgstr ""
9727
+
9728
+ #: includes/functions/wcj-country-functions.php:205
9729
+ msgid "Cuba"
9730
+ msgstr ""
9731
+
9732
+ #: includes/functions/wcj-country-functions.php:204
9733
+ msgid "Croatia"
9734
+ msgstr ""
9735
+
9736
+ #: includes/functions/wcj-country-functions.php:203
9737
+ msgid "Costa Rica"
9738
+ msgstr ""
9739
+
9740
+ #: includes/functions/wcj-country-functions.php:202
9741
+ msgid "Cook Islands"
9742
+ msgstr ""
9743
+
9744
+ #: includes/functions/wcj-country-functions.php:201
9745
+ msgid "Congo (Kinshasa)"
9746
+ msgstr ""
9747
+
9748
+ #: includes/functions/wcj-country-functions.php:200
9749
+ msgid "Congo (Brazzaville)"
9750
+ msgstr ""
9751
+
9752
+ #: includes/functions/wcj-country-functions.php:199
9753
+ msgid "Comoros"
9754
+ msgstr ""
9755
+
9756
+ #: includes/functions/wcj-country-functions.php:198
9757
+ msgid "Colombia"
9758
+ msgstr ""
9759
+
9760
+ #: includes/functions/wcj-country-functions.php:197
9761
+ msgid "Cocos (Keeling) Islands"
9762
+ msgstr ""
9763
+
9764
+ #: includes/functions/wcj-country-functions.php:196
9765
+ msgid "Christmas Island"
9766
+ msgstr ""
9767
+
9768
+ #: includes/functions/wcj-country-functions.php:195
9769
+ msgid "China"
9770
+ msgstr ""
9771
+
9772
+ #: includes/functions/wcj-country-functions.php:194
9773
+ msgid "Chile"
9774
+ msgstr ""
9775
+
9776
+ #: includes/functions/wcj-country-functions.php:193
9777
+ msgid "Chad"
9778
+ msgstr ""
9779
+
9780
+ #: includes/functions/wcj-country-functions.php:192
9781
+ msgid "Central African Republic"
9782
+ msgstr ""
9783
+
9784
+ #: includes/functions/wcj-country-functions.php:191
9785
+ msgid "Cayman Islands"
9786
+ msgstr ""
9787
+
9788
+ #: includes/functions/wcj-country-functions.php:190
9789
+ msgid "Cape Verde"
9790
+ msgstr ""
9791
+
9792
+ #: includes/functions/wcj-country-functions.php:189
9793
+ msgid "Canada"
9794
+ msgstr ""
9795
+
9796
+ #: includes/functions/wcj-country-functions.php:188
9797
+ msgid "Cameroon"
9798
+ msgstr ""
9799
+
9800
+ #: includes/functions/wcj-country-functions.php:187
9801
+ msgid "Cambodia"
9802
+ msgstr ""
9803
+
9804
+ #: includes/functions/wcj-country-functions.php:186
9805
+ msgid "Burundi"
9806
+ msgstr ""
9807
+
9808
+ #: includes/functions/wcj-country-functions.php:185
9809
+ msgid "Burkina Faso"
9810
+ msgstr ""
9811
+
9812
+ #: includes/functions/wcj-country-functions.php:184
9813
+ msgid "Bulgaria"
9814
+ msgstr ""
9815
+
9816
+ #: includes/functions/wcj-country-functions.php:183
9817
+ msgid "Brunei"
9818
+ msgstr ""
9819
+
9820
+ #: includes/functions/wcj-country-functions.php:182
9821
+ msgid "British Virgin Islands"
9822
+ msgstr ""
9823
+
9824
+ #: includes/functions/wcj-country-functions.php:181
9825
+ msgid "British Indian Ocean Territory"
9826
+ msgstr ""
9827
+
9828
+ #: includes/functions/wcj-country-functions.php:180
9829
+ msgid "Brazil"
9830
+ msgstr "Brasil"
9831
+
9832
+ #: includes/functions/wcj-country-functions.php:179
9833
+ msgid "Bouvet Island"
9834
+ msgstr ""
9835
+
9836
+ #: includes/functions/wcj-country-functions.php:178
9837
+ msgid "Botswana"
9838
+ msgstr ""
9839
+
9840
+ #: includes/functions/wcj-country-functions.php:177
9841
+ msgid "Bosnia and Herzegovina"
9842
+ msgstr ""
9843
+
9844
+ #: includes/functions/wcj-country-functions.php:176
9845
+ msgid "Bonaire, Saint Eustatius and Saba"
9846
+ msgstr ""
9847
+
9848
+ #: includes/functions/wcj-country-functions.php:175
9849
+ msgid "Bolivia"
9850
+ msgstr ""
9851
+
9852
+ #: includes/functions/wcj-country-functions.php:174
9853
+ msgid "Bhutan"
9854
+ msgstr ""
9855
+
9856
+ #: includes/functions/wcj-country-functions.php:173
9857
+ msgid "Bermuda"
9858
+ msgstr ""
9859
+
9860
+ #: includes/functions/wcj-country-functions.php:172
9861
+ msgid "Benin"
9862
+ msgstr ""
9863
+
9864
+ #: includes/functions/wcj-country-functions.php:171
9865
+ msgid "Belize"
9866
+ msgstr ""
9867
+
9868
+ #: includes/functions/wcj-country-functions.php:170
9869
+ msgid "Belau"
9870
+ msgstr ""
9871
+
9872
+ #: includes/functions/wcj-country-functions.php:169
9873
+ msgid "Belgium"
9874
+ msgstr ""
9875
+
9876
+ #: includes/functions/wcj-country-functions.php:168
9877
+ msgid "Belarus"
9878
+ msgstr ""
9879
+
9880
+ #: includes/functions/wcj-country-functions.php:167
9881
+ msgid "Barbados"
9882
+ msgstr "Barbados"
9883
+
9884
+ #: includes/functions/wcj-country-functions.php:166
9885
+ msgid "Bangladesh"
9886
+ msgstr ""
9887
+
9888
+ #: includes/functions/wcj-country-functions.php:165
9889
+ msgid "Bahrain"
9890
+ msgstr ""
9891
+
9892
+ #: includes/functions/wcj-country-functions.php:164
9893
+ msgid "Bahamas"
9894
+ msgstr ""
9895
+
9896
+ #: includes/functions/wcj-country-functions.php:163
9897
+ msgid "Azerbaijan"
9898
+ msgstr ""
9899
+
9900
+ #: includes/functions/wcj-country-functions.php:162
9901
+ msgid "Austria"
9902
+ msgstr "Austria"
9903
+
9904
+ #: includes/functions/wcj-country-functions.php:161
9905
+ msgid "Australia"
9906
+ msgstr ""
9907
+
9908
+ #: includes/functions/wcj-country-functions.php:160
9909
+ msgid "Aruba"
9910
+ msgstr ""
9911
+
9912
+ #: includes/functions/wcj-country-functions.php:159
9913
+ msgid "Armenia"
9914
+ msgstr ""
9915
+
9916
+ #: includes/functions/wcj-country-functions.php:158
9917
+ msgid "Argentina"
9918
+ msgstr ""
9919
+
9920
+ #: includes/functions/wcj-country-functions.php:157
9921
+ msgid "Antigua and Barbuda"
9922
+ msgstr ""
9923
+
9924
+ #: includes/functions/wcj-country-functions.php:156
9925
+ msgid "Antarctica"
9926
+ msgstr ""
9927
+
9928
+ #: includes/functions/wcj-country-functions.php:155
9929
+ msgid "Anguilla"
9930
+ msgstr ""
9931
+
9932
+ #: includes/functions/wcj-country-functions.php:154
9933
+ msgid "Angola"
9934
+ msgstr ""
9935
+
9936
+ #: includes/functions/wcj-country-functions.php:153
9937
+ msgid "Andorra"
9938
+ msgstr ""
9939
+
9940
+ #: includes/functions/wcj-country-functions.php:152
9941
+ msgid "Algeria"
9942
+ msgstr ""
9943
+
9944
+ #: includes/functions/wcj-country-functions.php:151
9945
+ msgid "Albania"
9946
+ msgstr ""
9947
+
9948
+ #: includes/functions/wcj-country-functions.php:150
9949
+ msgid "&#197;land Islands"
9950
+ msgstr "Islas &#197;land"
9951
+
9952
+ #: includes/functions/wcj-country-functions.php:149
9953
+ msgid "Afghanistan"
9954
+ msgstr ""
9955
+
9956
+ #: includes/class-wcj-products-xml.php:98
9957
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:215
9958
+ msgid "Once a Minute"
9959
+ msgstr ""
9960
+
9961
+ #: includes/class-wcj-products-xml.php:94
9962
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:211
9963
+ msgid "Once Weekly"
9964
+ msgstr "Semanal"
9965
+
9966
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:191
9967
+ msgid "Cron job: exchange rates update failed"
9968
+ msgstr ""
9969
+
9970
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:188
9971
+ msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
9972
+ msgstr ""
9973
+
9974
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:186
9975
+ msgid "Cron job: exchange rates successfully updated"
9976
+ msgstr ""
9977
+
9978
+ #: includes/functions/wcj-currencies.php:41
9979
+ msgid "Chinese Yuan"
9980
+ msgstr ""
9981
+
9982
+ #: includes/functions/wcj-currencies.php:175
9983
+ msgid "Zimbabwean dollar"
9984
+ msgstr ""
9985
+
9986
+ #: includes/functions/wcj-currencies.php:174
9987
+ msgid "Zambian kwacha"
9988
+ msgstr ""
9989
+
9990
+ #: includes/functions/wcj-currencies.php:171
9991
+ msgid "West African CFA franc"
9992
+ msgstr ""
9993
+
9994
+ #: includes/functions/wcj-currencies.php:165
9995
+ msgid "Vietnamese Dong"
9996
+ msgstr ""
9997
+
9998
+ #: includes/functions/wcj-currencies.php:164
9999
+ msgid "Venezuelan bolivar"
10000
+ msgstr ""
10001
+
10002
+ #: includes/functions/wcj-currencies.php:166
10003
+ msgid "Vanuatu vatu"
10004
+ msgstr ""
10005
+
10006
+ #: includes/functions/wcj-currencies.php:163
10007
+ msgid "Uzbekistani som"
10008
+ msgstr ""
10009
+
10010
+ #: includes/functions/wcj-currencies.php:161
10011
+ msgid "Uruguayan peso"
10012
+ msgstr ""
10013
+
10014
+ #: includes/functions/wcj-currencies.php:159
10015
+ msgid "Ukrainian Hryvnia"
10016
+ msgstr ""
10017
+
10018
+ #: includes/functions/wcj-currencies.php:160
10019
+ msgid "Ugandan shilling"
10020
+ msgstr ""
10021
+
10022
+ #: includes/functions/wcj-currencies.php:152
10023
+ msgid "Turkmen manat"
10024
+ msgstr ""
10025
+
10026
+ #: includes/functions/wcj-currencies.php:153
10027
+ msgid "Tunisian dinar"
10028
+ msgstr ""
10029
+
10030
+ #: includes/functions/wcj-currencies.php:156
10031
+ msgid "Trinidad and Tobago dollar"
10032
+ msgstr ""
10033
+
10034
+ #: includes/functions/wcj-currencies.php:150
10035
+ msgid "Thai Baht"
10036
+ msgstr ""
10037
+
10038
+ #: includes/functions/wcj-currencies.php:158
10039
+ msgid "Tanzanian shilling"
10040
+ msgstr ""
10041
+
10042
+ #: includes/functions/wcj-currencies.php:151
10043
+ msgid "Tajikistani somoni"
10044
+ msgstr ""
10045
+
10046
+ #: includes/functions/wcj-currencies.php:39
10047
+ msgid "Swiss Franc"
10048
+ msgstr ""
10049
+
10050
+ #: includes/functions/wcj-currencies.php:140
10051
+ msgid "Swedish Krona"
10052
+ msgstr ""
10053
+
10054
+ #: includes/functions/wcj-currencies.php:149
10055
+ msgid "Swazi lilangeni"
10056
+ msgstr ""
10057
+
10058
+ #: includes/functions/wcj-currencies.php:147
10059
+ msgid "Surinamese dollar"
10060
+ msgstr ""
10061
+
10062
+ #: includes/functions/wcj-currencies.php:139
10063
+ msgid "Sudanese pound"
10064
+ msgstr "Libra sudanesa"
10065
+
10066
+ #: includes/functions/wcj-currencies.php:95
10067
+ msgid "Sri Lankan rupee"
10068
+ msgstr ""
10069
+
10070
+ #: includes/functions/wcj-currencies.php:170
10071
+ msgid "Special Drawing Rights"
10072
+ msgstr ""
10073
+
10074
+ #: includes/functions/wcj-currencies.php:89
10075
+ msgid "South Korean Won"
10076
+ msgstr ""
10077
+
10078
+ #: includes/functions/wcj-currencies.php:173
10079
+ msgid "South African rand"
10080
+ msgstr "Rand sudafricano"
10081
+
10082
+ #: includes/functions/wcj-currencies.php:146
10083
+ msgid "Somali shilling"
10084
+ msgstr ""
10085
+
10086
+ #: includes/functions/wcj-currencies.php:137
10087
+ msgid "Solomon Islands dollar"
10088
+ msgstr ""
10089
+
10090
+ #: includes/functions/wcj-currencies.php:144
10091
+ msgid "Slovak koruna"
10092
+ msgstr ""
10093
+
10094
+ #: includes/functions/wcj-currencies.php:143
10095
+ msgid "Syrian pound"
10096
+ msgstr ""
10097
+
10098
+ #: includes/functions/wcj-currencies.php:141
10099
+ msgid "Singapore Dollar"
10100
+ msgstr ""
10101
+
10102
+ #: includes/functions/wcj-currencies.php:145
10103
+ msgid "Sierra Leonean leone"
10104
+ msgstr ""
10105
+
10106
+ #: includes/functions/wcj-currencies.php:133
10107
+ msgid "Serbian dinar"
10108
+ msgstr ""
10109
+
10110
+ #: includes/functions/wcj-currencies.php:138
10111
+ msgid "Seychellois rupee"
10112
+ msgstr ""
10113
+
10114
+ #: includes/functions/wcj-currencies.php:136
10115
+ msgid "Saudi Riyal"
10116
+ msgstr ""
10117
+
10118
+ #: includes/functions/wcj-currencies.php:148
10119
+ msgid "Sao Tome and Principe dobra"
10120
+ msgstr ""
10121
+
10122
+ #: includes/functions/wcj-currencies.php:167
10123
+ msgid "Samoan tala"
10124
+ msgstr ""
10125
+
10126
+ #: includes/functions/wcj-currencies.php:142
10127
+ msgid "Saint Helena pound"
10128
+ msgstr ""
10129
+
10130
+ #: includes/functions/wcj-currencies.php:135
10131
+ msgid "Rwandan franc"
10132
+ msgstr ""
10133
+
10134
+ #: includes/functions/wcj-currencies.php:134
10135
+ msgid "Russian Ruble"
10136
+ msgstr ""
10137
+
10138
+ #: includes/functions/wcj-currencies.php:132
10139
+ msgid "Romanian Leu"
10140
+ msgstr ""
10141
+
10142
+ #: includes/functions/wcj-currencies.php:130
10143
+ msgid "Qatari riyal"
10144
+ msgstr ""
10145
+
10146
+ #: includes/functions/wcj-currencies.php:128
10147
+ msgid "Polish Zloty"
10148
+ msgstr ""
10149
+
10150
+ #: includes/functions/wcj-currencies.php:125
10151
+ msgid "Philippine Pesos"
10152
+ msgstr ""
10153
+
10154
+ #: includes/functions/wcj-currencies.php:123
10155
+ msgid "Peruvian nuevo sol"
10156
+ msgstr ""
10157
+
10158
+ #: includes/functions/wcj-currencies.php:126
10159
+ msgid "Paraguayan guarani"
10160
+ msgstr ""
10161
+
10162
+ #: includes/functions/wcj-currencies.php:124
10163
+ msgid "Papua New Guinean kina"
10164
+ msgstr ""
10165
+
10166
+ #: includes/functions/wcj-currencies.php:122
10167
+ msgid "Panamanian balboa"
10168
+ msgstr ""
10169
+
10170
+ #: includes/functions/wcj-currencies.php:127
10171
+ msgid "Pakistani Rupee"
10172
+ msgstr ""
10173
+
10174
+ #: includes/functions/wcj-currencies.php:154
10175
+ msgid "Paanga"
10176
+ msgstr ""
10177
+
10178
+ #: includes/functions/wcj-currencies.php:121
10179
+ msgid "Omani rial"
10180
+ msgstr ""
10181
+
10182
+ #: includes/functions/wcj-currencies.php:118
10183
+ msgid "Norwegian Krone"
10184
+ msgstr ""
10185
+
10186
+ #: includes/functions/wcj-currencies.php:88
10187
+ msgid "North Korean won"
10188
+ msgstr ""
10189
+
10190
+ #: includes/functions/wcj-currencies.php:116
10191
+ msgid "Nigerian Naira"
10192
+ msgstr ""
10193
+
10194
+ #: includes/functions/wcj-currencies.php:117
10195
+ msgid "Nicaraguan cordoba"
10196
+ msgstr ""
10197
+
10198
+ #: includes/functions/wcj-currencies.php:120
10199
+ msgid "New Zealand Dollar"
10200
+ msgstr ""
10201
+
10202
+ #: includes/functions/wcj-currencies.php:17
10203
+ msgid "Netherlands Antillean gulden"
10204
+ msgstr ""
10205
+
10206
+ #: includes/functions/wcj-currencies.php:115
10207
+ msgid "Namibian dollar"
10208
+ msgstr ""
10209
+
10210
+ #: includes/functions/wcj-currencies.php:114
10211
+ msgid "Mozambican metical"
10212
+ msgstr ""
10213
+
10214
+ #: includes/functions/wcj-currencies.php:100
10215
+ msgid "Moroccan dirham"
10216
+ msgstr ""
10217
+
10218
+ #: includes/functions/wcj-currencies.php:106
10219
+ msgid "Mongolian tugrik"
10220
+ msgstr ""
10221
+
10222
+ #: includes/functions/wcj-currencies.php:101
10223
+ msgid "Moldovan leu"
10224
+ msgstr "Leu moldavo"
10225
+
10226
+ #: includes/functions/wcj-currencies.php:105
10227
+ msgid "Myanma kyat"
10228
+ msgstr ""
10229
+
10230
+ #: includes/functions/wcj-currencies.php:112
10231
+ msgid "Mexican Peso"
10232
+ msgstr ""
10233
+
10234
+ #: includes/functions/wcj-currencies.php:109
10235
+ msgid "Mauritian rupee"
10236
+ msgstr ""
10237
+
10238
+ #: includes/functions/wcj-currencies.php:108
10239
+ msgid "Mauritanian ouguiya"
10240
+ msgstr ""
10241
+
10242
+ #: includes/functions/wcj-currencies.php:110
10243
+ msgid "Maldivian rufiyaa"
10244
+ msgstr ""
10245
+
10246
+ #: includes/functions/wcj-currencies.php:111
10247
+ msgid "Malawian kwacha"
10248
+ msgstr ""
10249
+
10250
+ #: includes/functions/wcj-currencies.php:103
10251
+ msgid "Malaysian ringgit"
10252
+ msgstr ""
10253
+
10254
+ #: includes/functions/wcj-currencies.php:102
10255
+ msgid "Malagasy ariary"
10256
+ msgstr ""
10257
+
10258
+ #: includes/functions/wcj-currencies.php:104
10259
+ msgid "Macedonian denar"
10260
+ msgstr ""
10261
+
10262
+ #: includes/functions/wcj-currencies.php:107
10263
+ msgid "Macanese pataca"
10264
+ msgstr ""
10265
+
10266
+ #: includes/functions/wcj-currencies.php:98
10267
+ msgid "Lithuanian litas"
10268
+ msgstr ""
10269
+
10270
+ #: includes/functions/wcj-currencies.php:94
10271
+ msgid "Libyan dinar"
10272
+ msgstr ""
10273
+
10274
+ #: includes/functions/wcj-currencies.php:96
10275
+ msgid "Liberian dollar"
10276
+ msgstr ""
10277
+
10278
+ #: includes/functions/wcj-currencies.php:97
10279
+ msgid "Lesotho loti"
10280
+ msgstr ""
10281
+
10282
+ #: includes/functions/wcj-currencies.php:93
10283
+ msgid "Lebanese lira"
10284
+ msgstr ""
10285
+
10286
+ #: includes/functions/wcj-currencies.php:99
10287
+ msgid "Latvian lats"
10288
+ msgstr ""
10289
+
10290
+ #: includes/functions/wcj-currencies.php:85
10291
+ msgid "Lao kip"
10292
+ msgstr ""
10293
+
10294
+ #: includes/functions/wcj-currencies.php:90
10295
+ msgid "Kuwaiti dinar"
10296
+ msgstr "Dinar kuwaití"
10297
+
10298
+ #: includes/functions/wcj-currencies.php:83
10299
+ msgid "Kyrgyzstani som"
10300
+ msgstr ""
10301
+
10302
+ #: includes/functions/wcj-currencies.php:82
10303
+ msgid "Kenyan shilling"
10304
+ msgstr "Chelín keniano"
10305
+
10306
+ #: includes/functions/wcj-currencies.php:91
10307
+ msgid "Kazakhstani tenge"
10308
+ msgstr ""
10309
+
10310
+ #: includes/functions/wcj-currencies.php:80
10311
+ msgid "Jordanian dinar"
10312
+ msgstr ""
10313
+
10314
+ #: includes/functions/wcj-currencies.php:81
10315
+ msgid "Japanese Yen"
10316
+ msgstr ""
10317
+
10318
+ #: includes/functions/wcj-currencies.php:79
10319
+ msgid "Jamaican dollar"
10320
+ msgstr ""
10321
+
10322
+ #: includes/functions/wcj-currencies.php:78
10323
+ msgid "Yemeni rial"
10324
+ msgstr ""
10325
+
10326
+ #: includes/functions/wcj-currencies.php:75
10327
+ msgid "Iraqi dinar"
10328
+ msgstr ""
10329
+
10330
+ #: includes/functions/wcj-currencies.php:76
10331
+ msgid "Iranian rial"
10332
+ msgstr ""
10333
+
10334
+ #: includes/functions/wcj-currencies.php:72
10335
+ msgid "Indonesia Rupiah"
10336
+ msgstr ""
10337
+
10338
+ #: includes/functions/wcj-currencies.php:74
10339
+ msgid "Indian Rupee"
10340
+ msgstr ""
10341
+
10342
+ #: includes/functions/wcj-currencies.php:77
10343
+ msgid "Icelandic krona"
10344
+ msgstr ""
10345
+
10346
+ #: includes/functions/wcj-currencies.php:71
10347
+ msgid "Hungarian Forint"
10348
+ msgstr ""
10349
+
10350
+ #: includes/functions/wcj-currencies.php:67
10351
+ msgid "Hong Kong Dollar"
10352
+ msgstr ""
10353
+
10354
+ #: includes/functions/wcj-currencies.php:68
10355
+ msgid "Honduran lempira"
10356
+ msgstr ""
10357
+
10358
+ #: includes/functions/wcj-currencies.php:70
10359
+ msgid "Haitian gourde"
10360
+ msgstr ""
10361
+
10362
+ #: includes/functions/wcj-currencies.php:62
10363
+ msgid "Guyanese dollar"
10364
+ msgstr ""
10365
+
10366
+ #: includes/functions/wcj-currencies.php:64
10367
+ msgid "Guinean franc"
10368
+ msgstr ""
10369
+
10370
+ #: includes/functions/wcj-currencies.php:66
10371
+ msgid "Guatemalan quetzal"
10372
+ msgstr ""
10373
+
10374
+ #: includes/functions/wcj-currencies.php:61
10375
+ msgid "Gibraltar pound"
10376
+ msgstr ""
10377
+
10378
+ #: includes/functions/wcj-currencies.php:60
10379
+ msgid "Ghanaian cedi"
10380
+ msgstr ""
10381
+
10382
+ #: includes/functions/wcj-currencies.php:59
10383
+ msgid "Georgian lari"
10384
+ msgstr "Lari georgiano"
10385
+
10386
+ #: includes/functions/wcj-currencies.php:63
10387
+ msgid "Gambian dalasi"
10388
+ msgstr ""
10389
+
10390
+ #: includes/functions/wcj-currencies.php:56
10391
+ msgid "Fijian dollar"
10392
+ msgstr ""
10393
+
10394
+ #: includes/functions/wcj-currencies.php:57
10395
+ msgid "Falkland Islands pound"
10396
+ msgstr ""
10397
+
10398
+ #: includes/functions/wcj-currencies.php:54
10399
+ msgid "Ethiopian birr"
10400
+ msgstr ""
10401
+
10402
+ #: includes/functions/wcj-currencies.php:51
10403
+ msgid "Estonian kroon"
10404
+ msgstr ""
10405
+
10406
+ #: includes/functions/wcj-currencies.php:53
10407
+ msgid "Eritrean nakfa"
10408
+ msgstr ""
10409
+
10410
+ #: includes/functions/wcj-currencies.php:52
10411
+ msgid "Egyptian Pound"
10412
+ msgstr "Libra egipcia"
10413
+
10414
+ #: includes/functions/wcj-currencies.php:169
10415
+ msgid "East Caribbean dollar"
10416
+ msgstr ""
10417
+
10418
+ #: includes/functions/wcj-currencies.php:49
10419
+ msgid "Dominican Peso"
10420
+ msgstr ""
10421
+
10422
+ #: includes/functions/wcj-currencies.php:47
10423
+ msgid "Djiboutian franc"
10424
+ msgstr ""
10425
+
10426
+ #: includes/functions/wcj-currencies.php:48
10427
+ msgid "Danish Krone"
10428
+ msgstr ""
10429
+
10430
+ #: includes/functions/wcj-currencies.php:46
10431
+ msgid "Czech Koruna"
10432
+ msgstr ""
10433
+
10434
+ #: includes/functions/wcj-currencies.php:44
10435
+ msgid "Cuban peso"
10436
+ msgstr ""
10437
+
10438
+ #: includes/functions/wcj-currencies.php:69
10439
+ msgid "Croatia kuna"
10440
+ msgstr ""
10441
+
10442
+ #: includes/functions/wcj-currencies.php:43
10443
+ msgid "Costa Rican colon"
10444
+ msgstr ""
10445
+
10446
+ #: includes/functions/wcj-currencies.php:38
10447
+ msgid "Congolese franc"
10448
+ msgstr ""
10449
+
10450
+ #: includes/functions/wcj-currencies.php:87
10451
+ msgid "Comorian franc"
10452
+ msgstr ""
10453
+
10454
+ #: includes/functions/wcj-currencies.php:42
10455
+ msgid "Colombian Peso"
10456
+ msgstr ""
10457
+
10458
+ #: includes/functions/wcj-currencies.php:131
10459
+ msgid "Chinese renminbi"
10460
+ msgstr ""
10461
+
10462
+ #: includes/functions/wcj-currencies.php:40
10463
+ msgid "Chilean Peso"
10464
+ msgstr ""
10465
+
10466
+ #: includes/functions/wcj-currencies.php:172
10467
+ msgid "CFP franc"
10468
+ msgstr ""
10469
+
10470
+ #: includes/functions/wcj-currencies.php:65
10471
+ #: includes/functions/wcj-currencies.php:168
10472
+ msgid "Central African CFA franc"
10473
+ msgstr ""
10474
+
10475
+ #: includes/functions/wcj-currencies.php:45
10476
+ msgid "Cape Verdean escudo"
10477
+ msgstr ""
10478
+
10479
+ #: includes/functions/wcj-currencies.php:37
10480
+ msgid "Canadian Dollars"
10481
+ msgstr ""
10482
+
10483
+ #: includes/functions/wcj-currencies.php:84
10484
+ msgid "Cambodian riel"
10485
+ msgstr ""
10486
+
10487
+ #: includes/functions/wcj-currencies.php:86
10488
+ msgid "Cayman Islands dollar"
10489
+ msgstr ""
10490
+
10491
+ #: includes/functions/wcj-currencies.php:28
10492
+ msgid "Burundi franc"
10493
+ msgstr ""
10494
+
10495
+ #: includes/functions/wcj-currencies.php:26
10496
+ msgid "Bulgarian Lev"
10497
+ msgstr ""
10498
+
10499
+ #: includes/functions/wcj-currencies.php:30
10500
+ msgid "Brunei dollar"
10501
+ msgstr ""
10502
+
10503
+ #: includes/functions/wcj-currencies.php:32
10504
+ msgid "Brazilian Real"
10505
+ msgstr ""
10506
+
10507
+ #: includes/functions/wcj-currencies.php:35
10508
+ msgid "Botswana pula"
10509
+ msgstr ""
10510
+
10511
+ #: includes/functions/wcj-currencies.php:23
10512
+ msgid "Bosnia and Herzegovina konvertibilna marka"
10513
+ msgstr ""
10514
+
10515
+ #: includes/functions/wcj-currencies.php:31
10516
+ msgid "Bolivian boliviano"
10517
+ msgstr "Boliviano"
10518
+
10519
+ #: includes/functions/wcj-currencies.php:34
10520
+ msgid "Bhutanese ngultrum"
10521
+ msgstr ""
10522
+
10523
+ #: includes/functions/wcj-currencies.php:36
10524
+ msgid "Belize dollar"
10525
+ msgstr "Dólar beliceño"
10526
+
10527
+ #: includes/functions/wcj-currencies.php:29
10528
+ msgid "Belarusian ruble"
10529
+ msgstr ""
10530
+
10531
+ #: includes/functions/wcj-currencies.php:24
10532
+ msgid "Barbadian dollar"
10533
+ msgstr ""
10534
+
10535
+ #: includes/functions/wcj-currencies.php:25
10536
+ msgid "Bangladeshi Taka"
10537
+ msgstr ""
10538
+
10539
+ #: includes/functions/wcj-currencies.php:27
10540
+ msgid "Bahraini dinar"
10541
+ msgstr ""
10542
+
10543
+ #: includes/functions/wcj-currencies.php:33
10544
+ msgid "Bahamian dollar"
10545
+ msgstr ""
10546
+
10547
+ #: includes/functions/wcj-currencies.php:22
10548
+ msgid "Azerbaijani manat"
10549
+ msgstr ""
10550
+
10551
+ #: includes/functions/wcj-currencies.php:20
10552
+ msgid "Australian Dollars"
10553
+ msgstr ""
10554
+
10555
+ #: includes/functions/wcj-currencies.php:21
10556
+ msgid "Aruban florin"
10557
+ msgstr ""
10558
+
10559
+ #: includes/functions/wcj-currencies.php:16
10560
+ msgid "Armenian dram"
10561
+ msgstr ""
10562
+
10563
+ #: includes/functions/wcj-currencies.php:19
10564
+ msgid "Argentine Peso"
10565
+ msgstr ""
10566
+
10567
+ #: includes/functions/wcj-currencies.php:18
10568
+ msgid "Angolan kwanza"
10569
+ msgstr "Kwanza angoleño"
10570
+
10571
+ #: includes/functions/wcj-currencies.php:50
10572
+ msgid "Algerian dinar"
10573
+ msgstr ""
10574
+
10575
+ #: includes/functions/wcj-currencies.php:15
10576
+ msgid "Albanian lek"
10577
+ msgstr ""
10578
+
10579
+ #: includes/functions/wcj-currencies.php:14
10580
+ msgid "Afghan afghani"
10581
+ msgstr ""
10582
+
10583
+ #: includes/classes/class-wcj-module.php:620
10584
+ msgid "Module Options"
10585
+ msgstr ""
10586
+
10587
+ #: includes/classes/class-wcj-module.php:437
10588
+ msgid "Back to Module Settings"
10589
+ msgstr ""
10590
+
10591
+ #: includes/class-wcj-wpml.php:50
10592
+ msgid "File wpml-config.xml successfully regenerated!"
10593
+ msgstr ""
10594
+
10595
+ #: includes/settings/wcj-settings-wpml.php:26
10596
+ #: includes/settings/wcj-settings-wpml.php:28
10597
+ msgid "Regenerate wpml-config.xml file"
10598
+ msgstr ""
10599
+
10600
+ #: includes/classes/class-wcj-module.php:455
10601
+ #: includes/settings/wcj-settings-wpml.php:20
10602
+ msgid "Module Tools"
10603
+ msgstr ""
10604
+
10605
+ #: includes/class-wcj-admin-bar.php:237 includes/class-wcj-admin-bar.php:274
10606
+ #: includes/class-wcj-admin-bar.php:585
10607
+ #: includes/classes/class-wcj-module.php:449
10608
+ #: includes/settings/wcj-settings-wpml.php:15
10609
+ msgid "Tools"
10610
+ msgstr "Herramientas"
10611
+
10612
+ #: includes/class-wcj-wpml.php:25
10613
+ msgid "Booster for WooCommerce basic WPML support."
10614
+ msgstr ""
10615
+
10616
+ #: includes/settings/wcj-settings-wholesale-price.php:108
10617
+ #: includes/settings/wcj-settings-wholesale-price.php:165
10618
+ msgid "Minimum quantity to apply discount"
10619
+ msgstr ""
10620
+
10621
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
10622
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
10623
+ #: includes/settings/wcj-settings-wholesale-price.php:107
10624
+ #: includes/settings/wcj-settings-wholesale-price.php:164
10625
+ msgid "Min quantity"
10626
+ msgstr ""
10627
+
10628
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
10629
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
10630
+ #: includes/settings/wcj-settings-wholesale-price.php:93
10631
+ #: includes/settings/wcj-settings-wholesale-price.php:150
10632
+ msgid "Number of levels"
10633
+ msgstr ""
10634
+
10635
+ #: includes/settings/wcj-settings-product-input-fields.php:111
10636
+ #: includes/settings/wcj-settings-product-input-fields.php:122
10637
+ #: includes/settings/wcj-settings-product-input-fields.php:133
10638
+ #: includes/settings/wcj-settings-product-input-fields.php:144
10639
+ #: includes/settings/wcj-settings-product-input-fields.php:156
10640
+ #: includes/settings/wcj-settings-product-input-fields.php:168
10641
+ #: includes/settings/wcj-settings-wholesale-price.php:68
10642
+ msgid "Leave blank to include all products."
10643
+ msgstr ""
10644
+
10645
+ #: includes/settings/wcj-settings-wholesale-price.php:67
10646
+ msgid "Products to include"
10647
+ msgstr ""
10648
+
10649
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
10650
+ #: includes/settings/wcj-settings-wholesale-price.php:57
10651
+ msgid "Discount Type"
10652
+ msgstr ""
10653
+
10654
+ #: includes/settings/wcj-settings-wholesale-price.php:49
10655
+ msgid "If show discount info on cart page is enabled, set format here"
10656
+ msgstr ""
10657
+
10658
+ #: includes/class-wcj-product-bulk-meta-editor.php:232
10659
+ #: includes/settings/wcj-settings-wholesale-price.php:43
10660
+ msgid "Show"
10661
+ msgstr "Mostrar"
10662
+
10663
+ #: includes/settings/wcj-settings-wholesale-price.php:42
10664
+ msgid "Show discount info on cart page"
10665
+ msgstr ""
10666
+
10667
+ #: includes/settings/wcj-settings-wholesale-price.php:35
10668
+ msgid "Apply wholesale discount only if no other cart discounts were applied"
10669
+ msgstr ""
10670
+
10671
+ #: includes/settings/wcj-settings-wholesale-price.php:28
10672
+ msgid "Use total cart quantity instead of product quantity"
10673
+ msgstr ""
10674
+
10675
+ #: includes/settings/wcj-settings-wholesale-price.php:17
10676
+ msgid "Wholesale Price Levels Options. If you want to display prices table on frontend, use [wcj_product_wholesale_price_table] shortcode."
10677
+ msgstr ""
10678
+
10679
+ #: includes/class-wcj-wholesale-price.php:27
10680
+ msgid "Set WooCommerce wholesale pricing depending on product quantity in cart (buy more pay less)."
10681
+ msgstr ""
10682
+
10683
+ #: includes/class-wcj-wholesale-price.php:26
10684
+ msgid "Wholesale Price"
10685
+ msgstr ""
10686
+
10687
+ #: includes/settings/wcj-settings-sorting.php:81
10688
+ #: includes/settings/wcj-settings-sorting.php:84
10689
+ msgid "Sort by stock quantity: high to low"
10690
+ msgstr ""
10691
+
10692
+ #: includes/settings/wcj-settings-sorting.php:72
10693
+ #: includes/settings/wcj-settings-sorting.php:75
10694
+ msgid "Sort by stock quantity: low to high"
10695
+ msgstr ""
10696
+
10697
+ #: includes/settings/wcj-settings-sorting.php:71
10698
+ msgid "Sort by stock quantity"
10699
+ msgstr "Ordenar por cantidad de inventario"
10700
+
10701
+ #: includes/settings/wcj-settings-sorting.php:63
10702
+ msgid "Sort SKUs as numbers instead of as texts"
10703
+ msgstr ""
10704
+
10705
+ #: includes/settings/wcj-settings-sorting.php:54
10706
+ #: includes/settings/wcj-settings-sorting.php:57
10707
+ msgid "Sort by SKU: high to low"
10708
+ msgstr ""
10709
+
10710
+ #: includes/settings/wcj-settings-sorting.php:45
10711
+ #: includes/settings/wcj-settings-sorting.php:48
10712
+ msgid "Sort by SKU: low to high"
10713
+ msgstr ""
10714
+
10715
+ #: includes/settings/wcj-settings-sorting.php:44
10716
+ msgid "Sort by SKU"
10717
+ msgstr ""
10718
+
10719
+ #: includes/settings/wcj-settings-sorting.php:36
10720
+ #: includes/settings/wcj-settings-sorting.php:39
10721
+ msgid "Sort by title: Z to A"
10722
+ msgstr ""
10723
+
10724
+ #: includes/settings/wcj-settings-sorting.php:28
10725
+ #: includes/settings/wcj-settings-sorting.php:37
10726
+ #: includes/settings/wcj-settings-sorting.php:46
10727
+ #: includes/settings/wcj-settings-sorting.php:55
10728
+ #: includes/settings/wcj-settings-sorting.php:73
10729
+ #: includes/settings/wcj-settings-sorting.php:82
10730
+ msgid "Text to show on frontend. Leave blank to disable."
10731
+ msgstr ""
10732
+
10733
+ #: includes/settings/wcj-settings-sorting.php:27
10734
+ #: includes/settings/wcj-settings-sorting.php:30
10735
+ msgid "Sort by title: A to Z"
10736
+ msgstr ""
10737
+
10738
+ #: includes/settings/wcj-settings-sorting.php:26
10739
+ msgid "Sort by Name"
10740
+ msgstr ""
10741
+
10742
+ #: includes/settings/wcj-settings-sorting.php:19
10743
+ msgid "Add More Sorting"
10744
+ msgstr ""
10745
+
10746
+ #: includes/settings/wcj-settings-sorting.php:156
10747
+ #: includes/settings/wcj-settings-sorting.php:161
10748
+ msgid "Remove All Sorting"
10749
+ msgstr ""
10750
+
10751
+ #: includes/class-wcj-sorting.php:24
10752
+ msgid "Sorting"
10753
+ msgstr "Clasificación"
10754
+
10755
+ #: includes/settings/wcj-settings-sku.php:96
10756
+ msgid "SKU same as parent's product + variation letter suffix"
10757
+ msgstr ""
10758
+
10759
+ #: includes/settings/wcj-settings-sku.php:95
10760
+ msgid "Generate different SKU for each variation"
10761
+ msgstr ""
10762
+
10763
+ #: includes/settings/wcj-settings-sku.php:94
10764
+ msgid "SKU same as parent's product"
10765
+ msgstr ""
10766
+
10767
+ #: includes/settings/wcj-settings-sku.php:87
10768
+ msgid "Variable Products Variations"
10769
+ msgstr ""
10770
+
10771
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:48
10772
+ #: includes/settings/wcj-settings-sku.php:71
10773
+ #: includes/settings/wcj-settings-sku.php:128
10774
+ msgid "Suffix"
10775
+ msgstr ""
10776
+
10777
+ #: includes/settings/wcj-settings-sku.php:64
10778
+ msgid "Minimum Number Length"
10779
+ msgstr ""
10780
+
10781
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:41
10782
+ #: includes/settings/wcj-settings-sku.php:57
10783
+ #: includes/settings/wcj-settings-sku.php:119
10784
+ msgid "Prefix"
10785
+ msgstr ""
10786
+
10787
+ #: includes/settings/wcj-settings-sku.php:16
10788
+ msgid "SKU Format Options"
10789
+ msgstr ""
10790
+
10791
+ #: includes/class-wcj-sku.php:343
10792
+ msgid "SKUs generated and set successfully!"
10793
+ msgstr ""
10794
+
10795
+ #: includes/class-wcj-sku.php:30
10796
+ msgid "Autogenerate SKUs"
10797
+ msgstr ""
10798
+
10799
+ #: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:336
10800
+ #: includes/export/class-wcj-fields-helper.php:283
10801
+ msgid "SKU"
10802
+ msgstr ""
10803
+
10804
+ #: includes/settings/wcj-settings-shipping-options.php:16
10805
+ msgid "This section lets you hide other shipping options when free shipping is available on shop frontend."
10806
+ msgstr ""
10807
+
10808
+ #: includes/class-wcj-shipping-options.php:27
10809
+ msgid "Hide WooCommerce shipping when free is available."
10810
+ msgstr ""
10811
+
10812
+ #: includes/class-wcj-admin-bar.php:513
10813
+ msgid "Shipping options"
10814
+ msgstr ""
10815
+
10816
+ #: includes/settings/wcj-settings-shipping-options.php:20
10817
+ msgid "Hide when free is available"
10818
+ msgstr ""
10819
+
10820
+ #: includes/settings/wcj-settings-shipping-calculator.php:55
10821
+ msgid "Make non clickable"
10822
+ msgstr ""
10823
+
10824
+ #: includes/settings/wcj-settings-shipping-calculator.php:49
10825
+ msgid "When \"Force Block Open\" options is enabled, set Calculate Shipping button options."
10826
+ msgstr ""
10827
+
10828
+ #: includes/settings/wcj-settings-shipping-calculator.php:48
10829
+ msgid "Calculate Shipping button"
10830
+ msgstr ""
10831
+
10832
+ #: includes/settings/wcj-settings-shipping-calculator.php:40
10833
+ msgid "Force Block Open"
10834
+ msgstr ""
10835
+
10836
+ #: includes/settings/wcj-settings-shipping-calculator.php:33
10837
+ msgid "Enable State"
10838
+ msgstr ""
10839
+
10840
+ #: includes/settings/wcj-settings-shipping-calculator.php:26
10841
+ msgid "Enable Postcode"
10842
+ msgstr ""
10843
+
10844
+ #: includes/settings/wcj-settings-shipping-calculator.php:19
10845
+ msgid "Enable City"
10846
+ msgstr ""
10847
+
10848
+ #: includes/class-wcj-shipping-calculator.php:24
10849
+ msgid "Customize WooCommerce shipping calculator on cart page."
10850
+ msgstr ""
10851
+
10852
+ #: includes/class-wcj-shipping-calculator.php:23
10853
+ msgid "Shipping Calculator"
10854
+ msgstr ""
10855
+
10856
+ #: includes/settings/wcj-settings-shipping-calculator.php:14
10857
+ msgid "Shipping Calculator Options"
10858
+ msgstr ""
10859
+
10860
+ #: includes/settings/wcj-settings-reports.php:145
10861
+ msgid "Available Reports"
10862
+ msgstr ""
10863
+
10864
+ #: includes/class-wcj-reports.php:33
10865
+ msgid "WooCommerce stock, sales, customers etc. reports."
10866
+ msgstr ""
10867
+
10868
+ #: includes/class-wcj-admin-bar.php:364 includes/class-wcj-reports.php:32
10869
+ msgid "Reports"
10870
+ msgstr ""
10871
+
10872
+ #: includes/settings/wcj-settings-export.php:15
10873
+ msgid "Export Options"
10874
+ msgstr ""
10875
+
10876
+ #: includes/class-wcj-reports.php:272
10877
+ msgid "Booster: Customers by Country Sets"
10878
+ msgstr ""
10879
+
10880
+ #: includes/class-wcj-reports.php:265
10881
+ msgid "Booster: Customers by Country"
10882
+ msgstr ""
10883
+
10884
+ #: includes/class-wcj-reports.php:250
10885
+ msgid "Booster: Overstocked"
10886
+ msgstr ""
10887
+
10888
+ #: includes/class-wcj-reports.php:243
10889
+ msgid "Booster: Understocked"
10890
+ msgstr ""
10891
+
10892
+ #: includes/class-wcj-reports.php:236
10893
+ msgid "Booster: All in stock"
10894
+ msgstr ""
10895
+
10896
+ #: includes/functions/wcj-reports-functions.php:125
10897
+ msgid "Last year"
10898
+ msgstr ""
10899
+
10900
+ #: includes/functions/wcj-reports-functions.php:115
10901
+ msgid "Same days last month"
10902
+ msgstr "Mismos días el último mes"
10903
+
10904
+ #: includes/functions/wcj-reports-functions.php:105
10905
+ msgid "Last 24 months"
10906
+ msgstr ""
10907
+
10908
+ #: includes/functions/wcj-reports-functions.php:100
10909
+ msgid "Last 12 months"
10910
+ msgstr ""
10911
+
10912
+ #: includes/functions/wcj-reports-functions.php:95
10913
+ msgid "Last 6 months"
10914
+ msgstr ""
10915
+
10916
+ #: includes/functions/wcj-reports-functions.php:90
10917
+ msgid "Last 3 months"
10918
+ msgstr ""
10919
+
10920
+ #: includes/functions/wcj-reports-functions.php:85
10921
+ msgid "Last 30 days"
10922
+ msgstr "Últimos 30 días"
10923
+
10924
+ #: includes/functions/wcj-reports-functions.php:80
10925
+ msgid "Last 14 days"
10926
+ msgstr "Últimos 14 días"
10927
+
10928
+ #: includes/class-wcj-reports.php:116
10929
+ msgid "Booster: More Ranges"
10930
+ msgstr ""
10931
+
10932
+ #: includes/class-wcj-reports.php:74 includes/class-wcj-reports.php:118
10933
+ msgid "Select Range"
10934
+ msgstr ""
10935
+
10936
+ #: includes/class-wcj-reports.php:72
10937
+ msgid "Booster: More Ranges - Months"
10938
+ msgstr ""
10939
+
10940
+ #: includes/settings/wcj-settings-related-products.php:168
10941
+ msgid "Hide Related Products"
10942
+ msgstr ""
10943
+
10944
+ #: includes/settings/wcj-settings-related-products.php:111
10945
+ msgid "Relate by Tag"
10946
+ msgstr ""
10947
+
10948
+ #: includes/settings/wcj-settings-related-products.php:104
10949
+ msgid "Relate by Category"
10950
+ msgstr ""
10951
+
10952
+ #: includes/settings/wcj-settings-related-products.php:91
10953
+ msgid "Descending"
10954
+ msgstr "Descendente"
10955
+
10956
+ #: includes/settings/wcj-settings-related-products.php:90
10957
+ msgid "Ascending"
10958
+ msgstr "Ascendente"
10959
+
10960
+ #: includes/class-wcj-offer-price.php:113
10961
+ #: includes/functions/wcj-reports-functions.php:21
10962
+ #: includes/functions/wcj-reports-functions.php:24
10963
+ #: includes/settings/wcj-settings-related-products.php:23
10964
+ msgid "Date"
10965
+ msgstr "Fecha"
10966
+
10967
+ #: includes/settings/wcj-settings-related-products.php:22
10968
+ msgid "Random"
10969
+ msgstr "Aleatorio"
10970
+
10971
+ #: includes/settings/wcj-settings-related-products.php:64
10972
+ msgid "Order by"
10973
+ msgstr ""
10974
+
10975
+ #: includes/settings/wcj-settings-related-products.php:49
10976
+ msgid "Related Products Columns"
10977
+ msgstr ""
10978
+
10979
+ #: includes/settings/wcj-settings-related-products.php:43
10980
+ msgid "Related Products Number"
10981
+ msgstr ""
10982
+
10983
+ #: includes/admin/class-wc-settings-jetpack.php:462
10984
+ #: includes/class-wcj-related-products.php:38
10985
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:28
10986
+ #: includes/settings/wcj-settings-free-price.php:20
10987
+ msgid "Related Products"
10988
+ msgstr "Productos relacionados"
10989
+
10990
+ #: includes/class-wcj-purchase-data.php:234
10991
+ msgid "Buying"
10992
+ msgstr ""
10993
+
10994
+ #: includes/class-wcj-purchase-data.php:233
10995
+ msgid "Selling"
10996
+ msgstr ""
10997
+
10998
+ #: includes/class-wcj-purchase-data.php:243
10999
+ msgid "Report"
11000
+ msgstr ""
11001
+
11002
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
11003
+ #: includes/settings/wcj-settings-purchase-data.php:116
11004
+ msgid "Purchase info"
11005
+ msgstr ""
11006
+
11007
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
11008
+ #: includes/settings/wcj-settings-purchase-data.php:102
11009
+ msgid "(Last) Purchase date"
11010
+ msgstr ""
11011
+
11012
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
11013
+ #: includes/settings/wcj-settings-purchase-data.php:28
11014
+ msgid "Extra expenses (shipping etc.)"
11015
+ msgstr ""
11016
+
11017
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
11018
+ #: includes/settings/wcj-settings-purchase-data.php:21
11019
+ msgid "Product cost (purchase) price"
11020
+ msgstr ""
11021
+
11022
+ #: includes/class-wcj-purchase-data.php:117
11023
+ #: includes/class-wcj-purchase-data.php:150
11024
+ #: includes/class-wcj-purchase-data.php:235
11025
+ #: includes/functions/wcj-reports-functions.php:29
11026
+ #: includes/settings/wcj-settings-purchase-data.php:133
11027
+ #: includes/settings/wcj-settings-purchase-data.php:161
11028
+ msgid "Profit"
11029
+ msgstr ""
11030
+
11031
+ #: includes/class-wcj-purchase-data.php:28
11032
+ msgid "Save WooCommerce product purchase costs data for admin reports."
11033
+ msgstr ""
11034
+
11035
+ #: includes/settings/wcj-settings-product-tabs.php:396
11036
+ msgid "Reviews Tab"
11037
+ msgstr ""
11038
+
11039
+ #: includes/settings/wcj-settings-product-tabs.php:375
11040
+ msgid "Additional Information Tab"
11041
+ msgstr ""
11042
+
11043
+ #: includes/settings/wcj-settings-product-tabs.php:362
11044
+ #: includes/settings/wcj-settings-product-tabs.php:383
11045
+ #: includes/settings/wcj-settings-product-tabs.php:404
11046
+ msgid "Leave blank for WooCommerce defaults"
11047
+ msgstr ""
11048
+
11049
+ #: includes/settings/wcj-settings-product-tabs.php:355
11050
+ #: includes/settings/wcj-settings-product-tabs.php:376
11051
+ #: includes/settings/wcj-settings-product-tabs.php:397
11052
+ msgid "Remove tab from product page"
11053
+ msgstr ""
11054
+
11055
+ #: includes/settings/wcj-settings-product-tabs.php:354
11056
+ msgid "Description Tab"
11057
+ msgstr ""
11058
+
11059
+ #: includes/settings/wcj-settings-product-tabs.php:350
11060
+ msgid "This section lets you customize single product tabs."
11061
+ msgstr ""
11062
+
11063
+ #: includes/settings/wcj-settings-product-tabs.php:348
11064
+ msgid "WooCommerce Standard Product Tabs Options"
11065
+ msgstr ""
11066
+
11067
+ #: includes/settings/wcj-settings-product-tabs.php:207
11068
+ msgid "This section lets you set defaults for per product custom tabs."
11069
+ msgstr ""
11070
+
11071
+ #: includes/settings/wcj-settings-product-tabs.php:189
11072
+ msgid "To show this tab only for some categories, enter category IDs here."
11073
+ msgstr ""
11074
+
11075
+ #: includes/settings/wcj-settings-product-tabs.php:188
11076
+ msgid "Comma separated CATEGORY IDs to SHOW this tab"
11077
+ msgstr ""
11078
+
11079
+ #: includes/settings/wcj-settings-product-tabs.php:165
11080
+ msgid "To show this tab only for some products, enter product IDs here."
11081
+ msgstr ""
11082
+
11083
+ #: includes/settings/wcj-settings-product-tabs.php:164
11084
+ msgid "Comma separated PRODUCT IDs to SHOW this tab"
11085
+ msgstr ""
11086
+
11087
+ #: includes/settings/wcj-settings-product-tabs.php:177
11088
+ msgid "To hide this tab from some categories, enter category IDs here."
11089
+ msgstr ""
11090
+
11091
+ #: includes/settings/wcj-settings-product-tabs.php:176
11092
+ msgid "Comma separated CATEGORY IDs to HIDE this tab"
11093
+ msgstr ""
11094
+
11095
+ #: includes/settings/wcj-settings-product-tabs.php:153
11096
+ msgid "To hide this tab from some products, enter product IDs here."
11097
+ msgstr ""
11098
+
11099
+ #: includes/settings/wcj-settings-product-tabs.php:152
11100
+ msgid "Comma separated PRODUCT IDs to HIDE this tab"
11101
+ msgstr ""
11102
+
11103
+ #: includes/settings/wcj-settings-product-tabs.php:73
11104
+ #: includes/settings/wcj-settings-product-tabs.php:265
11105
+ msgid "You can use shortcodes here..."
11106
+ msgstr ""
11107
+
11108
+ #: includes/settings/wcj-settings-product-tabs.php:29
11109
+ msgid "Custom Product Tabs Number"
11110
+ msgstr ""
11111
+
11112
+ #: includes/settings/wcj-settings-product-tabs.php:18
11113
+ msgid "This section lets you add custom single product tabs."
11114
+ msgstr ""
11115
+
11116
+ #: includes/class-wcj-product-tabs.php:596
11117
+ #: includes/settings/wcj-settings-product-tabs.php:51
11118
+ #: includes/settings/wcj-settings-product-tabs.php:243
11119
+ msgid "Custom Product Tab"
11120
+ msgstr ""
11121
+
11122
+ #: includes/class-wcj-product-tabs.php:565
11123
+ #: includes/input-fields/wcj-product-input-fields-options.php:21
11124
+ #: includes/settings/wcj-settings-related-products.php:59
11125
+ #: includes/settings/wcj-settings-related-products.php:84
11126
+ msgid "Order"
11127
+ msgstr "Ordenar"
11128
+
11129
+ #: includes/class-wcj-product-by-user.php:197
11130
+ #: includes/class-wcj-product-tabs.php:555
11131
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:66
11132
+ #: includes/input-fields/wcj-product-input-fields-options.php:51
11133
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:56
11134
+ #: includes/settings/wcj-settings-export.php:75
11135
+ #: includes/settings/wcj-settings-export.php:143
11136
+ #: includes/settings/wcj-settings-export.php:224
11137
+ #: includes/settings/wcj-settings-product-addons.php:85
11138
+ #: includes/settings/wcj-settings-product-by-user.php:167
11139
+ #: includes/settings/wcj-settings-product-tabs.php:52
11140
+ #: includes/settings/wcj-settings-product-tabs.php:361
11141
+ #: includes/settings/wcj-settings-product-tabs.php:382
11142
+ #: includes/settings/wcj-settings-product-tabs.php:403
11143
+ #: includes/settings/wcj-settings-purchase-data.php:66
11144
+ #: includes/settings/wcj-settings-related-products.php:24
11145
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
11146
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:116
11147
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
11148
+ #: includes/widgets/class-wcj-widget-country-switcher.php:62
11149
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
11150
+ #: includes/widgets/class-wcj-widget-multicurrency.php:63
11151
+ #: includes/widgets/class-wcj-widget-selector.php:52
11152
+ msgid "Title"
11153
+ msgstr "Título"
11154
+
11155
+ #: includes/class-wcj-product-tabs.php:545
11156
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:149
11157
+ msgid "Click \"Update\" product after you change this number."
11158
+ msgstr ""
11159
+
11160
+ #: includes/class-wcj-product-tabs.php:539
11161
+ msgid "Total number of custom tabs"
11162
+ msgstr ""
11163
+
11164
+ #: includes/class-wcj-product-tabs.php:25
11165
+ msgid "Add custom product tabs - globally or per product. Customize or completely remove WooCommerce default product tabs."
11166
+ msgstr ""
11167
+
11168
+ #: includes/class-wcj-product-tabs.php:24
11169
+ msgid "Product Tabs"
11170
+ msgstr ""
11171
+
11172
+ #: includes/settings/wcj-settings-product-listings.php:114
11173
+ msgid "Show products if no categories are displayed on category page"
11174
+ msgstr ""
11175
+
11176
+ #: includes/settings/wcj-settings-product-listings.php:107
11177
+ msgid "Hide empty subcategories on category pages"
11178
+ msgstr ""
11179
+
11180
+ #: includes/settings/wcj-settings-product-listings.php:96
11181
+ msgid "Exclude Subcategories"
11182
+ msgstr ""
11183
+
11184
+ #: includes/settings/wcj-settings-product-listings.php:88
11185
+ msgid "Hide subcategories count on category pages"
11186
+ msgstr ""
11187
+
11188
+ #: includes/settings/wcj-settings-product-listings.php:87
11189
+ msgid "Subcategories Count"
11190
+ msgstr ""
11191
+
11192
+ #: includes/settings/wcj-settings-product-listings.php:78
11193
+ msgid "Category Display Options"
11194
+ msgstr ""
11195
+
11196
+ #: includes/settings/wcj-settings-product-listings.php:68
11197
+ msgid "Show products if no categories are displayed on shop page"
11198
+ msgstr ""
11199
+
11200
+ #: includes/settings/wcj-settings-product-listings.php:67
11201
+ #: includes/settings/wcj-settings-product-listings.php:113
11202
+ msgid "Show Products"
11203
+ msgstr ""
11204
+
11205
+ #: includes/settings/wcj-settings-product-listings.php:61
11206
+ msgid "Hide empty categories on shop page"
11207
+ msgstr ""
11208
+
11209
+ #: includes/settings/wcj-settings-product-listings.php:60
11210
+ #: includes/settings/wcj-settings-product-listings.php:106
11211
+ msgid "Hide Empty"
11212
+ msgstr ""
11213
+
11214
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:249
11215
+ #: includes/settings/wcj-settings-product-listings.php:50
11216
+ msgid "Exclude Categories"
11217
+ msgstr ""
11218
+
11219
+ #: includes/settings/wcj-settings-product-listings.php:44
11220
+ msgid "Hide categories count on shop page"
11221
+ msgstr ""
11222
+
11223
+ #: includes/settings/wcj-settings-product-listings.php:43
11224
+ msgid "Categories Count"
11225
+ msgstr ""
11226
+
11227
+ #: includes/settings/wcj-settings-product-listings.php:34
11228
+ msgid "Shop Page Display Options"
11229
+ msgstr ""
11230
+
11231
+ #: includes/class-wcj-product-listings.php:23
11232
+ msgid "Change WooCommerce display options for shop and category pages: show/hide categories count, exclude categories, show/hide empty categories."
11233
+ msgstr ""
11234
+
11235
+ #: includes/class-wcj-product-listings.php:22
11236
+ msgid "Product Listings"
11237
+ msgstr ""
11238
+
11239
+ #: includes/settings/wcj-settings-product-input-fields.php:309
11240
+ msgid "Replace Field ID with Field Label"
11241
+ msgstr ""
11242
+
11243
+ #: includes/settings/wcj-settings-product-input-fields.php:304
11244
+ msgid "Admin Order View Options"
11245
+ msgstr ""
11246
+
11247
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:159
11248
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:318
11249
+ #: includes/settings/wcj-settings-product-input-fields.php:83
11250
+ msgid "Product Input Field"
11251
+ msgstr ""
11252
+
11253
+ #: includes/settings/wcj-settings-product-input-fields.php:59
11254
+ msgid "Product Input Fields Number"
11255
+ msgstr ""
11256
+
11257
+ #: includes/settings/wcj-settings-product-input-fields.php:53
11258
+ msgid "Add custom input fields to all products."
11259
+ msgstr ""
11260
+
11261
+ #: includes/settings/wcj-settings-product-input-fields.php:51
11262
+ msgid "Product Input Fields - All Products"
11263
+ msgstr ""
11264
+
11265
+ #: includes/settings/wcj-settings-product-input-fields.php:45
11266
+ msgid "Product Input Fields Global Options"
11267
+ msgstr ""
11268
+
11269
+ #: includes/settings/wcj-settings-product-input-fields.php:31
11270
+ msgid "You will be able to change this number later as well as define the fields, for each product individually, in product's \"Edit\"."
11271
+ msgstr ""
11272
+
11273
+ #: includes/settings/wcj-settings-product-input-fields.php:29
11274
+ msgid "Default Number of Product Input Fields per Product"
11275
+ msgstr ""
11276
+
11277
+ #: includes/settings/wcj-settings-product-input-fields.php:23
11278
+ msgid "Add custom input field on per product basis."
11279
+ msgstr ""
11280
+
11281
+ #: includes/settings/wcj-settings-product-input-fields.php:21
11282
+ msgid "Product Input Fields - per Product"
11283
+ msgstr ""
11284
+
11285
+ #: includes/settings/wcj-settings-product-input-fields.php:17
11286
+ msgid "When enabled this module will add \"Product Input Fields\" tab to each product's \"Edit\" page."
11287
+ msgstr ""
11288
+
11289
+ #: includes/settings/wcj-settings-product-input-fields.php:16
11290
+ #: includes/settings/wcj-settings-product-input-fields.php:47
11291
+ msgid "Add custom input fields to product's single page for customer to fill before adding product to cart."
11292
+ msgstr ""
11293
+
11294
+ #: includes/settings/wcj-settings-product-input-fields.php:14
11295
+ msgid "Product Input Fields per Product Options"
11296
+ msgstr ""
11297
+
11298
+ #: includes/class-wcj-product-input-fields.php:25
11299
+ msgid "WooCommerce product input fields."
11300
+ msgstr ""
11301
+
11302
+ #: includes/admin/class-wc-settings-jetpack.php:460
11303
+ #: includes/class-wcj-product-input-fields.php:24
11304
+ #: includes/input-fields/class-wcj-product-input-fields-core.php:123
11305
+ msgid "Product Input Fields"
11306
+ msgstr ""
11307
+
11308
+ #: includes/settings/wcj-settings-product-info.php:101
11309
+ msgid "Comma separated list of product IDs to exclude from product info."
11310
+ msgstr ""
11311
+
11312
+ #: includes/settings/wcj-settings-product-info.php:100
11313
+ msgid "Product IDs to exclude"
11314
+ msgstr ""
11315
+
11316
+ #: includes/settings/wcj-settings-product-info.php:67
11317
+ msgid "Product Info on Single Product Pages"
11318
+ msgstr ""
11319
+
11320
+ #: includes/settings/wcj-settings-product-info.php:42
11321
+ #: includes/settings/wcj-settings-product-info.php:75
11322
+ msgid "HTML info."
11323
+ msgstr ""
11324
+
11325
+ #: includes/settings/wcj-settings-product-info.php:29
11326
+ msgid "Even More Products Info"
11327
+ msgstr ""
11328
+
11329
+ #: includes/settings/wcj-settings-product-info.php:20
11330
+ msgid "Product Info on Single Pages"
11331
+ msgstr ""
11332
+
11333
+ #: includes/settings/wcj-settings-product-info.php:19
11334
+ #: includes/settings/wcj-settings-product-info.php:34
11335
+ msgid "Product Info on Archive Pages"
11336
+ msgstr ""
11337
+
11338
+ #: includes/class-wcj-product-custom-info.php:25
11339
+ #: includes/class-wcj-product-info.php:102
11340
+ msgid "Add additional info to WooCommerce category and single product pages."
11341
+ msgstr ""
11342
+
11343
+ #: includes/admin/class-wc-settings-jetpack.php:458
11344
+ #: includes/class-wcj-product-custom-info.php:24
11345
+ #: includes/functions/wcj-general-functions.php:148
11346
+ msgid "Product Info"
11347
+ msgstr ""
11348
+
11349
+ #: includes/class-wcj-product-info.php:279
11350
+ msgid "Number of product info fields. Click \"Save changes\" after you change this number."
11351
+ msgstr ""
11352
+
11353
+ #: includes/class-wcj-product-info.php:272
11354
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:119
11355
+ #: includes/settings/wcj-settings-product-info.php:61
11356
+ #: includes/settings/wcj-settings-product-info.php:94
11357
+ #: includes/settings/wcj-settings-product-tabs.php:66
11358
+ #: includes/settings/wcj-settings-product-tabs.php:371
11359
+ #: includes/settings/wcj-settings-product-tabs.php:392
11360
+ #: includes/settings/wcj-settings-product-tabs.php:413
11361
+ msgid "Priority (i.e. Order)"
11362
+ msgstr ""
11363
+
11364
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:271
11365
+ msgid "%s ago"
11366
+ msgstr "hace %s"
11367
+
11368
+ #: includes/class-wcj-product-info.php:140
11369
+ #: includes/settings/wcj-settings-offer-price.php:73
11370
+ #: includes/settings/wcj-settings-product-custom-info.php:94
11371
+ msgid "After single product summary"
11372
+ msgstr ""
11373
+
11374
+ #: includes/class-wcj-product-info.php:139
11375
+ #: includes/settings/wcj-settings-offer-price.php:71
11376
+ #: includes/settings/wcj-settings-product-custom-info.php:92
11377
+ msgid "Before single product summary"
11378
+ msgstr ""
11379
+
11380
+ #: includes/class-wcj-product-info.php:138
11381
+ #: includes/settings/wcj-settings-offer-price.php:72
11382
+ #: includes/settings/wcj-settings-product-custom-info.php:93
11383
+ msgid "Inside single product summary"
11384
+ msgstr ""
11385
+
11386
+ #: includes/class-wcj-product-info.php:126
11387
+ #: includes/settings/wcj-settings-product-custom-info.php:105
11388
+ msgid "After product title"
11389
+ msgstr ""
11390
+
11391
+ #: includes/class-wcj-product-info.php:125
11392
+ #: includes/settings/wcj-settings-offer-price.php:92
11393
+ #: includes/settings/wcj-settings-product-custom-info.php:106
11394
+ msgid "After product"
11395
+ msgstr ""
11396
+
11397
+ #: includes/class-wcj-product-info.php:124
11398
+ #: includes/settings/wcj-settings-product-custom-info.php:103
11399
+ msgid "Before product title"
11400
+ msgstr ""
11401
+
11402
+ #: includes/class-wcj-product-info.php:123
11403
+ #: includes/settings/wcj-settings-offer-price.php:91
11404
+ #: includes/settings/wcj-settings-product-custom-info.php:102
11405
+ msgid "Before product"
11406
+ msgstr ""
11407
+
11408
+ #: includes/settings/wcj-settings-product-images.php:114
11409
+ msgid "Hide on Archives (Categories) Only"
11410
+ msgstr ""
11411
+
11412
+ #: includes/settings/wcj-settings-product-images.php:101
11413
+ msgid "HTML"
11414
+ msgstr "HTML"
11415
+
11416
+ #: includes/settings/wcj-settings-product-images.php:90
11417
+ msgid "Product Images Sale Flash"
11418
+ msgstr ""
11419
+
11420
+ #: includes/settings/wcj-settings-product-images.php:80
11421
+ msgid "Single Product Thumbnails Columns"
11422
+ msgstr ""
11423
+
11424
+ #: includes/settings/wcj-settings-product-images.php:46
11425
+ msgid "Image on Archives"
11426
+ msgstr ""
11427
+
11428
+ #: includes/settings/wcj-settings-product-images.php:72
11429
+ msgid "Replace image on archive pages with custom HTML. Leave blank to disable."
11430
+ msgstr ""
11431
+
11432
+ #: includes/settings/wcj-settings-product-images.php:71
11433
+ msgid "Replace Image on Archive"
11434
+ msgstr ""
11435
+
11436
+ #: includes/settings/wcj-settings-product-images.php:39
11437
+ msgid "Thumbnails on Single"
11438
+ msgstr ""
11439
+
11440
+ #: includes/settings/wcj-settings-product-images.php:32
11441
+ msgid "Image on Single"
11442
+ msgstr ""
11443
+
11444
+ #: includes/settings/wcj-settings-product-images.php:63
11445
+ msgid "Replace thumbnails on single product page with custom HTML. Leave blank to disable."
11446
+ msgstr ""
11447
+
11448
+ #: includes/settings/wcj-settings-product-images.php:62
11449
+ msgid "Replace Thumbnails on Single"
11450
+ msgstr ""
11451
+
11452
+ #: includes/settings/wcj-settings-product-images.php:54
11453
+ msgid "Replace image on single product page with custom HTML. Leave blank to disable."
11454
+ msgstr ""
11455
+
11456
+ #: includes/settings/wcj-settings-product-images.php:53
11457
+ msgid "Replace Image on Single"
11458
+ msgstr ""
11459
+
11460
+ #: includes/settings/wcj-settings-product-images.php:25
11461
+ msgid "Image and Thumbnails on Single"
11462
+ msgstr ""
11463
+
11464
+ #: includes/settings/wcj-settings-product-images.php:14
11465
+ msgid "Product Image and Thumbnails"
11466
+ msgstr ""
11467
+
11468
+ #: includes/class-wcj-product-images.php:204
11469
+ #: includes/settings/wcj-settings-product-images.php:103
11470
+ msgid "Sale!"
11471
+ msgstr "¡Oferta!"
11472
+
11473
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:24
11474
+ msgid "Replace image with custom HTML on archives"
11475
+ msgstr ""
11476
+
11477
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
11478
+ msgid "Replace image with custom HTML on single product page"
11479
+ msgstr ""
11480
+
11481
+ #: includes/class-wcj-product-images.php:26
11482
+ msgid "Customize WooCommerce products images, thumbnails and sale flashes."
11483
+ msgstr ""
11484
+
11485
+ #: includes/class-wcj-product-images.php:25
11486
+ msgid "Product Images"
11487
+ msgstr "Imágenes del producto"
11488
+
11489
+ #: includes/class-wcj-product-bulk-price-converter.php:32
11490
+ msgid "Bulk Price Converter Tool."
11491
+ msgstr ""
11492
+
11493
+ #: includes/class-wcj-product-bulk-price-converter.php:237
11494
+ msgid "Multiply all product prices by"
11495
+ msgstr ""
11496
+
11497
+ #: includes/class-wcj-product-bulk-price-converter.php:212
11498
+ msgid "Prices changed successfully!"
11499
+ msgstr ""
11500
+
11501
+ #: includes/class-wcj-product-bulk-price-converter.php:205
11502
+ msgid "Multiply value must be above zero."
11503
+ msgstr ""
11504
+
11505
+ #: includes/class-wcj-product-bulk-price-converter.php:152
11506
+ msgid "Modified Price"
11507
+ msgstr ""
11508
+
11509
+ #: includes/class-wcj-offer-price.php:114
11510
+ #: includes/export/class-wcj-fields-helper.php:288
11511
+ #: includes/reports/wcj-class-reports-stock.php:255
11512
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
11513
+ #: includes/settings/wcj-settings-related-products.php:33
11514
+ msgid "Price"
11515
+ msgstr ""
11516
+
11517
+ #: includes/class-wcj-product-bulk-price-converter.php:150
11518
+ msgid "Price Type"
11519
+ msgstr ""
11520
+
11521
+ #: includes/class-wcj-general.php:339 includes/class-wcj-general.php:381
11522
+ #: includes/class-wcj-product-bulk-meta-editor.php:339
11523
+ #: includes/class-wcj-product-bulk-price-converter.php:148
11524
+ #: includes/class-wcj-sku.php:334
11525
+ #: includes/reports/wcj-class-reports-sales.php:192
11526
+ #: includes/reports/wcj-class-reports-stock.php:253
11527
+ msgid "Product"
11528
+ msgstr ""
11529
+
11530
+ #: includes/class-wcj-product-bulk-price-converter.php:25
11531
+ msgid "Multiply all WooCommerce products prices by set value."
11532
+ msgstr ""
11533
+
11534
+ #: includes/class-wcj-product-bulk-price-converter.php:24
11535
+ #: includes/class-wcj-product-bulk-price-converter.php:31
11536
+ msgid "Bulk Price Converter"
11537
+ msgstr ""
11538
+
11539
+ #: includes/settings/wcj-settings-product-add-to-cart.php:54
11540
+ msgid "This section lets you enable automatically adding product to cart on visiting the product page. Product is only added once, so if it is already in cart - duplicate product is not added. "
11541
+ msgstr ""
11542
+
11543
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
11544
+ #: includes/settings/wcj-settings-product-add-to-cart.php:52
11545
+ #: includes/settings/wcj-settings-product-add-to-cart.php:58
11546
+ msgid "Add to Cart on Visit"
11547
+ msgstr ""
11548
+
11549
+ #: includes/class-wcj-product-add-to-cart.php:24
11550
+ msgid "Product Add to Cart"
11551
+ msgstr ""
11552
+
11553
+ #: includes/settings/wcj-settings-price-labels.php:79
11554
+ msgid "Enter text to replace with. Leave blank to disable."
11555
+ msgstr ""
11556
+
11557
+ #: includes/settings/wcj-settings-price-labels.php:68
11558
+ msgid "Enter text to replace in all products prices. Leave blank to disable."
11559
+ msgstr ""
11560
+
11561
+ #: includes/settings/wcj-settings-price-labels.php:67
11562
+ msgid "Replace in price"
11563
+ msgstr ""
11564
+
11565
+ #: includes/settings/wcj-settings-price-labels.php:58
11566
+ msgid "Enter text to remove from all products prices. Leave blank to disable."
11567
+ msgstr ""
11568
+
11569
+ #: includes/settings/wcj-settings-price-labels.php:56
11570
+ msgid "Remove from price"
11571
+ msgstr ""
11572
+
11573
+ #: includes/settings/wcj-settings-price-labels.php:47
11574
+ msgid "Enter text to add between regular and sale prices. Leave blank to disable."
11575
+ msgstr ""
11576
+
11577
+ #: includes/settings/wcj-settings-price-labels.php:46
11578
+ msgid "Add between regular and sale prices"
11579
+ msgstr ""
11580
+
11581
+ #: includes/settings/wcj-settings-price-labels.php:39
11582
+ msgid "Enter text to add after all products prices. Leave blank to disable."
11583
+ msgstr ""
11584
+
11585
+ #: includes/settings/wcj-settings-price-labels.php:38
11586
+ msgid "Add after the price"
11587
+ msgstr ""
11588
+
11589
+ #: includes/settings/wcj-settings-price-labels.php:29
11590
+ msgid "Enter text to add before all products prices. Leave blank to disable."
11591
+ msgstr ""
11592
+
11593
+ #: includes/settings/wcj-settings-price-labels.php:28
11594
+ msgid "Add before the price"
11595
+ msgstr ""
11596
+
11597
+ #: includes/settings/wcj-settings-price-labels.php:24
11598
+ msgid "This section lets you set price labels for all products globally."
11599
+ msgstr ""
11600
+
11601
+ #: includes/class-wcj-price-labels.php:24
11602
+ msgid "Create any custom price label for any WooCommerce product."
11603
+ msgstr ""
11604
+
11605
+ #: includes/class-wcj-price-labels.php:23
11606
+ msgid "Custom Price Labels"
11607
+ msgstr ""
11608
+
11609
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:140
11610
+ #: includes/settings/wcj-settings-price-by-country.php:291
11611
+ msgid "Make empty price"
11612
+ msgstr ""
11613
+
11614
+ #: includes/settings/wcj-settings-price-by-country.php:272
11615
+ msgid "Multiply Price by"
11616
+ msgstr ""
11617
+
11618
+ #: includes/settings/wcj-settings-currency-external-products.php:20
11619
+ #: includes/settings/wcj-settings-currency-per-product.php:163
11620
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:94
11621
+ #: includes/settings/wcj-settings-multicurrency.php:128
11622
+ #: includes/settings/wcj-settings-price-by-country.php:225
11623
+ #: includes/settings/wcj-settings-price-formats.php:59
11624
+ msgid "Currency"
11625
+ msgstr "Moneda"
11626
+
11627
+ #: includes/settings/wcj-settings-price-by-country.php:178
11628
+ msgid "Groups Number"
11629
+ msgstr ""
11630
+
11631
+ #: includes/settings/wcj-settings-price-by-country.php:140
11632
+ msgid "Country Groups"
11633
+ msgstr ""
11634
+
11635
+ #: includes/settings/wcj-settings-price-by-country.php:104
11636
+ msgid "Price by Country on per Product Basis"
11637
+ msgstr ""
11638
+
11639
+ #: includes/settings/wcj-settings-multicurrency.php:62
11640
+ #: includes/settings/wcj-settings-price-by-country.php:84
11641
+ msgid "Round up"
11642
+ msgstr ""
11643
+
11644
+ #: includes/settings/wcj-settings-multicurrency.php:63
11645
+ #: includes/settings/wcj-settings-price-by-country.php:83
11646
+ msgid "Round down"
11647
+ msgstr ""
11648
+
11649
+ #: includes/settings/wcj-settings-multicurrency.php:61
11650
+ #: includes/settings/wcj-settings-price-by-country.php:82
11651
+ msgid "Round"
11652
+ msgstr ""
11653
+
11654
+ #: includes/settings/wcj-settings-multicurrency.php:60
11655
+ #: includes/settings/wcj-settings-price-by-country.php:81
11656
+ msgid "No rounding"
11657
+ msgstr ""
11658
+
11659
+ #: includes/settings/wcj-settings-price-by-country.php:76
11660
+ msgid "If you choose to multiply price, set rounding options here."
11661
+ msgstr ""
11662
+
11663
+ #: includes/settings/wcj-settings-price-by-country.php:75
11664
+ msgid "Price Rounding"
11665
+ msgstr ""
11666
+
11667
+ #: includes/settings/wcj-settings-price-by-country.php:29
11668
+ msgid "by user selection"
11669
+ msgstr ""
11670
+
11671
+ #: includes/settings/wcj-settings-price-by-country.php:27
11672
+ msgid "by IP"
11673
+ msgstr ""
11674
+
11675
+ #: includes/settings/wcj-settings-price-by-country.php:23
11676
+ msgid "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] shortcode to display country selection list on frontend."
11677
+ msgstr ""
11678
+
11679
+ #: includes/settings/wcj-settings-price-by-country.php:21
11680
+ msgid "Customer Country Detection Method"
11681
+ msgstr ""
11682
+
11683
+ #: includes/settings/wcj-settings-price-by-country.php:17
11684
+ msgid "Change product's price and currency by customer's country. Customer's country is detected automatically by IP, or selected by customer manually."
11685
+ msgstr ""
11686
+
11687
+ #: includes/settings/wcj-settings-price-by-country.php:15
11688
+ msgid "Price by Country Options"
11689
+ msgstr ""
11690
+
11691
+ #: includes/class-wcj-price-by-country.php:24
11692
+ msgid "Change WooCommerce product price and currency automatically by customer's country."
11693
+ msgstr ""
11694
+
11695
+ #: includes/class-wcj-price-by-country.php:23
11696
+ msgid "Prices and Currencies by Country"
11697
+ msgstr ""
11698
+
11699
+ #: includes/settings/wcj-settings-pdf-invoicing.php:34
11700
+ msgid "Manual Only"
11701
+ msgstr ""
11702
+
11703
+ #: includes/settings/wcj-settings-pdf-invoicing.php:23
11704
+ msgid "Create on Order Status %s"
11705
+ msgstr ""
11706
+
11707
+ #: includes/settings/wcj-settings-pdf-invoicing.php:28
11708
+ msgid "Create on New Order"
11709
+ msgstr ""
11710
+
11711
+ #: includes/class-wcj-product-tabs.php:593
11712
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:19
11713
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
11714
+ #: includes/settings/wcj-settings-checkout-core-fields.php:61
11715
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:141
11716
+ #: includes/settings/wcj-settings-pdf-invoicing.php:27
11717
+ #: includes/settings/wcj-settings-product-add-to-cart.php:64
11718
+ msgid "Disabled"
11719
+ msgstr ""
11720
+
11721
+ #: includes/settings/wcj-settings-pdf-invoicing.php:14
11722
+ msgid "PDF Invoicing General Options"
11723
+ msgstr ""
11724
+
11725
+ #: includes/class-wcj-pdf-invoicing.php:25
11726
+ msgid "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
11727
+ msgstr ""
11728
+
11729
+ #: includes/class-wcj-pdf-invoicing.php:23
11730
+ msgid "PDF Invoicing"
11731
+ msgstr ""
11732
+
11733
+ #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:24
11734
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:56
11735
+ msgid "CSS"
11736
+ msgstr ""
11737
+
11738
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:72
11739
+ msgid "Make Font Shadowed"
11740
+ msgstr ""
11741
+
11742
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:66
11743
+ msgid "Font Size"
11744
+ msgstr ""
11745
+
11746
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:19
11747
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:37
11748
+ msgid "Font Family"
11749
+ msgstr ""
11750
+
11751
+ #: includes/settings/wcj-settings-checkout-core-fields.php:14
11752
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:26
11753
+ #: includes/settings/wcj-settings-emails-verification.php:14
11754
+ #: includes/settings/wcj-settings-multicurrency.php:17
11755
+ #: includes/settings/wcj-settings-offer-price.php:14
11756
+ #: includes/settings/wcj-settings-order-quantities.php:113
11757
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:15
11758
+ #: includes/settings/wcj-settings-price-formats.php:15
11759
+ msgid "General Options"
11760
+ msgstr "Opciones generales"
11761
+
11762
+ #: includes/export/class-wcj-fields-helper.php:136
11763
+ #: includes/export/class-wcj-fields-helper.php:221
11764
+ msgid "Shipping Address 2"
11765
+ msgstr "Dirección de envío 2"
11766
+
11767
+ #: includes/settings/wcj-settings-shipping-by-user-role.php:14
11768
+ msgid "Shipping Methods"
11769
+ msgstr ""
11770
+
11771
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
11772
+ msgid "Footer"
11773
+ msgstr ""
11774
+
11775
+ #: includes/export/class-wcj-fields-helper.php:117
11776
+ #: includes/export/class-wcj-fields-helper.php:202
11777
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:311
11778
+ msgid "Order Total"
11779
+ msgstr ""
11780
+
11781
+ #: includes/export/class-wcj-fields-helper.php:118
11782
+ #: includes/export/class-wcj-fields-helper.php:203
11783
+ msgid "Order Total Tax"
11784
+ msgstr ""
11785
+
11786
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
11787
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
11788
+ #: includes/settings/wcj-settings-wholesale-price.php:115
11789
+ #: includes/settings/wcj-settings-wholesale-price.php:116
11790
+ #: includes/settings/wcj-settings-wholesale-price.php:172
11791
+ #: includes/settings/wcj-settings-wholesale-price.php:173
11792
+ msgid "Discount"
11793
+ msgstr ""
11794
+
11795
+ #: includes/admin/class-wc-settings-jetpack.php:461
11796
+ #: includes/class-wcj-global-discount.php:27
11797
+ msgid "Global Discount"
11798
+ msgstr ""
11799
+
11800
+ #: includes/reports/wcj-class-reports-monthly-sales.php:270
11801
+ msgid "Totals"
11802
+ msgstr "Totales"
11803
+
11804
+ #: includes/class-wcj-admin-bar.php:405
11805
+ #: includes/class-wcj-eu-vat-number.php:150
11806
+ msgid "Taxes"
11807
+ msgstr ""
11808
+
11809
+ #: includes/export/class-wcj-fields-helper.php:142
11810
+ msgid "Item Name"
11811
+ msgstr ""
11812
+
11813
+ #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
11814
+ #: includes/settings/wcj-settings-purchase-data.php:109
11815
+ msgid "Seller"
11816
+ msgstr ""
11817
+
11818
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:194
11819
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:201
11820
+ msgid "days"
11821
+ msgstr "días"
11822
+
11823
+ #: includes/export/class-wcj-fields-helper.php:114
11824
+ #: includes/export/class-wcj-fields-helper.php:197
11825
+ msgid "Order Time"
11826
+ msgstr ""
11827
+
11828
+ #: includes/export/class-wcj-fields-helper.php:113
11829
+ #: includes/export/class-wcj-fields-helper.php:196
11830
+ msgid "Order Date"
11831
+ msgstr ""
11832
+
11833
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:53
11834
+ msgid "Header Text"
11835
+ msgstr "Texto de la cabecera"
11836
+
11837
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:25
11838
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:36
11839
+ #: includes/settings/wcj-settings-purchase-data.php:67
11840
+ msgid "Leave blank to disable"
11841
+ msgstr ""
11842
+
11843
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:34
11844
+ msgid "Enter a URL to an image you want to show in the invoice's header. Upload your image using the <a href=\"%s\">media uploader</a>."
11845
+ msgstr ""
11846
+
11847
+ #: includes/classes/class-wcj-module.php:537
11848
+ #: includes/settings/wcj-settings-product-tabs.php:152
11849
+ #: includes/settings/wcj-settings-product-tabs.php:164
11850
+ #: includes/settings/wcj-settings-product-tabs.php:176
11851
+ #: includes/settings/wcj-settings-product-tabs.php:188
11852
+ msgid "Deprecated"
11853
+ msgstr ""
11854
+
11855
+ #: includes/class-wcj-pdf-invoicing.php:252
11856
+ #: includes/classes/class-wcj-pdf-invoice.php:273
11857
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:230
11858
+ msgid "Unexpected error"
11859
+ msgstr ""
11860
+
11861
+ #: includes/functions/wcj-invoicing-functions.php:209
11862
+ msgid "Invoice"
11863
+ msgstr ""
11864
+
11865
+ #: includes/settings/wcj-settings-payment-gateways.php:25
11866
+ msgid "Number of custom payments gateways to be added. All settings for each new gateway are in WooCommerce > Settings > Checkout."
11867
+ msgstr ""
11868
+
11869
+ #: includes/settings/wcj-settings-payment-gateways.php:23
11870
+ msgid "Number of Gateways"
11871
+ msgstr ""
11872
+
11873
+ #: includes/settings/wcj-settings-payment-gateways.php:16
11874
+ msgid "Custom Payment Gateways Options"
11875
+ msgstr ""
11876
+
11877
+ #: includes/class-wcj-payment-gateways.php:24
11878
+ msgid "Add multiple custom payment gateways to WooCommerce."
11879
+ msgstr ""
11880
+
11881
+ #: includes/class-wcj-payment-gateways.php:23
11882
+ msgid "Custom Gateways"
11883
+ msgstr ""
11884
+
11885
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:259
11886
+ msgid "Show this field only if there is a product of selected category in cart."
11887
+ msgstr ""
11888
+
11889
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:46
11890
+ msgid "Remove Icon"
11891
+ msgstr ""
11892
+
11893
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:35
11894
+ msgid "Leave blank to set WooCommerce default value"
11895
+ msgstr ""
11896
+
11897
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:101
11898
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:16
11899
+ msgid "If you want to show an image next to the gateway's name on the frontend, enter a URL to an image."
11900
+ msgstr ""
11901
+
11902
+ #: includes/settings/wcj-settings-admin-bar.php:14
11903
+ #: includes/settings/wcj-settings-breadcrumbs.php:14
11904
+ #: includes/settings/wcj-settings-cart-customization.php:14
11905
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:16
11906
+ #: includes/settings/wcj-settings-checkout-customization.php:14
11907
+ #: includes/settings/wcj-settings-checkout-files-upload.php:17
11908
+ #: includes/settings/wcj-settings-custom-css.php:14
11909
+ #: includes/settings/wcj-settings-custom-js.php:14
11910
+ #: includes/settings/wcj-settings-empty-cart.php:14
11911
+ #: includes/settings/wcj-settings-eu-vat-number.php:15
11912
+ #: includes/settings/wcj-settings-global-discount.php:19
11913
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:19
11914
+ #: includes/settings/wcj-settings-my-account.php:14
11915
+ #: includes/settings/wcj-settings-payment-gateways-icons.php:14
11916
+ #: includes/settings/wcj-settings-payment-gateways-per-category.php:18
11917
+ #: includes/settings/wcj-settings-price-by-user-role.php:14
11918
+ #: includes/settings/wcj-settings-product-addons.php:156
11919
+ #: includes/settings/wcj-settings-product-bookings.php:86
11920
+ #: includes/settings/wcj-settings-product-by-user-role.php:14
11921
+ #: includes/settings/wcj-settings-product-by-user.php:59
11922
+ #: includes/settings/wcj-settings-product-open-pricing.php:16
11923
+ #: includes/settings/wcj-settings-products-per-page.php:14
11924
+ #: includes/settings/wcj-settings-products-xml.php:17
11925
+ #: includes/settings/wcj-settings-track-users.php:14
11926
+ #: includes/settings/wcj-settings-url-coupons.php:14
11927
+ #: includes/settings/wcj-settings-wholesale-price.php:15
11928
+ msgid "Options"
11929
+ msgstr "Opciones"
11930
+
11931
+ #: includes/class-wcj-payment-gateways-icons.php:25
11932
+ msgid "Change or completely remove icons (images) for any (default or custom) WooCommerce payment gateway."
11933
+ msgstr ""
11934
+
11935
+ #: includes/class-wcj-payment-gateways-icons.php:24
11936
+ msgid "Gateways Icons"
11937
+ msgstr ""
11938
+
11939
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:95
11940
+ msgid "Standard Rate"
11941
+ msgstr "Tarifa estándar"
11942
+
11943
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:76
11944
+ msgid "If Rounding is enabled, set precision here."
11945
+ msgstr ""
11946
+
11947
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:69
11948
+ msgid "Round the fee (or discount) value before adding to the cart"
11949
+ msgstr ""
11950
+
11951
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:60
11952
+ msgid "Maximum cart amount for adding the fee (or discount)."
11953
+ msgstr ""
11954
+
11955
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:52
11956
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:61
11957
+ msgid "Set 0 to disable"
11958
+ msgstr ""
11959
+
11960
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:51
11961
+ msgid "Minimum cart amount for adding the fee (or discount)."
11962
+ msgstr ""
11963
+
11964
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:43
11965
+ msgid "The value. For discount enter a negative number."
11966
+ msgstr ""
11967
+
11968
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:42
11969
+ msgid "Fee (or Discount) Value"
11970
+ msgstr ""
11971
+
11972
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:18
11973
+ #: includes/settings/wcj-settings-global-discount.php:64
11974
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:38
11975
+ #: includes/settings/wcj-settings-purchase-data.php:78
11976
+ #: includes/settings/wcj-settings-wholesale-price.php:62
11977
+ msgid "Percent"
11978
+ msgstr ""
11979
+
11980
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:19
11981
+ #: includes/settings/wcj-settings-global-discount.php:65
11982
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:37
11983
+ #: includes/settings/wcj-settings-price-by-user-role.php:32
11984
+ #: includes/settings/wcj-settings-purchase-data.php:77
11985
+ #: includes/settings/wcj-settings-wholesale-price.php:63
11986
+ msgid "Fixed"
11987
+ msgstr "Fijo"
11988
+
11989
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:32
11990
+ msgid "Percent or fixed value."
11991
+ msgstr ""
11992
+
11993
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:31
11994
+ msgid "Fee (or Discount) Type"
11995
+ msgstr ""
11996
+
11997
+ #: includes/settings/wcj-settings-payment-gateways-fees.php:24
11998
+ msgid "Fee (or discount) title to show to customer."
11999
+ msgstr ""
12000
+
12001
+ #: includes/class-wcj-payment-gateways-fees.php:25
12002
+ msgid "Enable extra fees or discounts for WooCommerce payment gateways."
12003
+ msgstr ""
12004
+
12005
+ #: includes/class-wcj-payment-gateways-fees.php:24
12006
+ msgid "Gateways Fees and Discounts"
12007
+ msgstr ""
12008
+
12009
+ #: includes/settings/wcj-settings-currency-per-product.php:111
12010
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:33
12011
+ #: includes/settings/wcj-settings-multicurrency.php:32
12012
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:70
12013
+ #: includes/settings/wcj-settings-price-by-country.php:253
12014
+ msgid "Currency Exchange Rates module"
12015
+ msgstr ""
12016
+
12017
+ #: includes/settings/wcj-settings-currency-per-product.php:111
12018
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:33
12019
+ #: includes/settings/wcj-settings-multicurrency.php:32
12020
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:70
12021
+ #: includes/settings/wcj-settings-price-by-country.php:253
12022
+ msgid "Visit"
12023
+ msgstr ""
12024
+
12025
+ #: includes/settings/wcj-settings-currency-per-product.php:108
12026
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:30
12027
+ #: includes/settings/wcj-settings-multicurrency.php:29
12028
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:67
12029
+ #: includes/settings/wcj-settings-price-by-country.php:250
12030
+ msgid "Automatically via Currency Exchange Rates module"
12031
+ msgstr ""
12032
+
12033
+ #: includes/settings/wcj-settings-currency-per-product.php:107
12034
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:29
12035
+ #: includes/settings/wcj-settings-multicurrency.php:28
12036
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:66
12037
+ #: includes/settings/wcj-settings-price-by-country.php:249
12038
+ msgid "Enter Rates Manually"
12039
+ msgstr ""
12040
+
12041
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:16
12042
+ msgid "This section lets you set different currency for each payment gateway."
12043
+ msgstr ""
12044
+
12045
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:14
12046
+ msgid "Payment Gateways Currency Options"
12047
+ msgstr ""
12048
+
12049
+ #: includes/class-wcj-payment-gateways-by-currency.php:25
12050
+ msgid "Gateways by Currency"
12051
+ msgstr ""
12052
+
12053
+ #: includes/settings/wcj-settings-orders.php:62
12054
+ msgid "This section lets you add custom columns to WooCommerce orders list."
12055
+ msgstr ""
12056
+
12057
+ #: includes/settings/wcj-settings-orders.php:50
12058
+ msgid "E.g. if you sell digital products then you are not shipping anything and you may want auto-complete all your orders."
12059
+ msgstr ""
12060
+
12061
+ #: includes/settings/wcj-settings-orders.php:48
12062
+ msgid "Auto-complete all WooCommerce orders"
12063
+ msgstr ""
12064
+
12065
+ #: includes/settings/wcj-settings-orders.php:44
12066
+ msgid "This section lets you enable orders auto-complete function."
12067
+ msgstr ""
12068
+
12069
+ #: includes/settings/wcj-settings-orders.php:42
12070
+ msgid "Orders Auto-Complete"
12071
+ msgstr ""
12072
+
12073
+ #: includes/settings/wcj-settings-order-min-amount.php:84
12074
+ msgid "Redirect back to Cart page"
12075
+ msgstr ""
12076
+
12077
+ #: includes/settings/wcj-settings-order-min-amount.php:83
12078
+ msgid "Stop customer from seeing the Checkout page if minimum amount not reached"
12079
+ msgstr ""
12080
+
12081
+ #: includes/settings/wcj-settings-order-min-amount.php:52
12082
+ msgid "Message on cart page"
12083
+ msgstr ""
12084
+
12085
+ #: includes/settings/wcj-settings-order-min-amount.php:45
12086
+ msgid "Add notice to cart page also"
12087
+ msgstr ""
12088
+
12089
+ #: includes/settings/wcj-settings-order-min-amount.php:37
12090
+ #: includes/settings/wcj-settings-order-min-amount.php:54
12091
+ msgid "Message to customer if order is below minimum amount. Default: You must have an order with a minimum of %s to place your order, your current order total is %s."
12092
+ msgstr ""
12093
+
12094
+ #: includes/settings/wcj-settings-order-min-amount.php:35
12095
+ msgid "Error message"
12096
+ msgstr ""
12097
+
12098
+ #: includes/settings/wcj-settings-order-min-amount.php:21
12099
+ msgid "Minimum order amount. Set to 0 to disable."
12100
+ msgstr ""
12101
+
12102
+ #: includes/settings/wcj-settings-order-min-amount.php:20
12103
+ msgid "Amount"
12104
+ msgstr ""
12105
+
12106
+ #: includes/settings/wcj-settings-order-min-amount.php:16
12107
+ msgid "This section lets you set minimum order amount."
12108
+ msgstr ""
12109
+
12110
+ #: includes/class-wcj-order-min-amount.php:26
12111
+ #: includes/settings/wcj-settings-order-min-amount.php:14
12112
+ msgid "Order Minimum Amount"
12113
+ msgstr ""
12114
+
12115
+ #: includes/class-wcj-orders.php:302
12116
+ #: includes/settings/wcj-settings-product-by-country.php:86
12117
+ msgid "All countries"
12118
+ msgstr ""
12119
+
12120
+ #: includes/class-wcj-admin-bar.php:346 includes/class-wcj-admin-bar.php:350
12121
+ #: includes/class-wcj-admin-bar.php:368 includes/class-wcj-orders.php:23
12122
+ #: includes/settings/wcj-settings-reports.php:16
12123
+ #: includes/settings/wcj-settings-reports.php:54
12124
+ #: includes/settings/wcj-settings-reports.php:95
12125
+ msgid "Orders"
12126
+ msgstr ""
12127
+
12128
+ #: includes/settings/wcj-settings-order-numbers.php:79
12129
+ msgid "Date suffix after order number (optional). This will change the suffixes for all existing orders. Value is passed directly to PHP `date` function, so most of PHP date formats can be used. The only exception is using `\\` symbol in date format, as this symbol will be excluded from date. Try: Y-m-d- or mdy."
12130
+ msgstr ""
12131
+
12132
+ #: includes/settings/wcj-settings-order-numbers.php:77
12133
+ msgid "Order Number Date Suffix"
12134
+ msgstr ""
12135
+
12136
+ #: includes/settings/wcj-settings-order-numbers.php:69
12137
+ msgid "Suffix after order number (optional). This will change the suffixes for all existing orders."
12138
+ msgstr ""
12139
+
12140
+ #: includes/settings/wcj-settings-order-numbers.php:67
12141
+ msgid "Order Number Custom Suffix"
12142
+ msgstr ""
12143
+
12144
+ #: includes/settings/wcj-settings-order-numbers.php:59
12145
+ msgid "Minimum width of number without prefix (zeros will be added to the left side). This will change the minimum width of order number for all existing orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. Leave zero to disable."
12146
+ msgstr ""
12147
+
12148
+ #: includes/settings/wcj-settings-order-numbers.php:57
12149
+ msgid "Order Number Width"
12150
+ msgstr ""
12151
+
12152
+ #: includes/settings/wcj-settings-order-numbers.php:49
12153
+ msgid "Date prefix before order number (optional). This will change the prefixes for all existing orders. Value is passed directly to PHP `date` function, so most of PHP date formats can be used. The only exception is using `\\` symbol in date format, as this symbol will be excluded from date. Try: Y-m-d- or mdy."
12154
+ msgstr ""
12155
+
12156
+ #: includes/settings/wcj-settings-order-numbers.php:47
12157
+ msgid "Order Number Date Prefix"
12158
+ msgstr ""
12159
+
12160
+ #: includes/settings/wcj-settings-order-numbers.php:40
12161
+ msgid "Prefix before order number (optional). This will change the prefixes for all existing orders."
12162
+ msgstr ""
12163
+
12164
+ #: includes/settings/wcj-settings-order-numbers.php:39
12165
+ msgid "Order Number Custom Prefix"
12166
+ msgstr ""
12167
+
12168
+ #: includes/settings/wcj-settings-order-numbers.php:33
12169
+ msgid "This will be ignored if sequential order numbering is disabled."
12170
+ msgstr ""
12171
+
12172
+ #: includes/settings/wcj-settings-order-numbers.php:32
12173
+ msgid "Use Renumerate Orders tool for existing orders."
12174
+ msgstr ""
12175
+
12176
+ #: includes/settings/wcj-settings-order-numbers.php:32
12177
+ msgid "Next new order will be given this number."
12178
+ msgstr ""
12179
+
12180
+ #: includes/settings/wcj-settings-order-numbers.php:31
12181
+ msgid "Next Order Number"
12182
+ msgstr ""
12183
+
12184
+ #: includes/settings/wcj-settings-order-numbers.php:16
12185
+ msgid "This section lets you enable sequential order numbering, set custom number prefix, suffix and width."
12186
+ msgstr ""
12187
+
12188
+ #: includes/class-wcj-order-numbers.php:156
12189
+ msgid "Orders successfully renumerated!"
12190
+ msgstr ""
12191
+
12192
+ #: includes/class-wcj-order-numbers.php:170
12193
+ msgid "Renumerate orders"
12194
+ msgstr ""
12195
+
12196
+ #: includes/class-wcj-order-numbers.php:33
12197
+ msgid "Tool renumerates all orders."
12198
+ msgstr ""
12199
+
12200
+ #: includes/class-wcj-order-numbers.php:32
12201
+ msgid "Orders Renumerate"
12202
+ msgstr ""
12203
+
12204
+ #: includes/class-wcj-order-numbers.php:26
12205
+ msgid "WooCommerce sequential order numbering, custom order number prefix, suffix and number width."
12206
+ msgstr ""
12207
+
12208
+ #: includes/class-wcj-order-numbers.php:25
12209
+ #: includes/settings/wcj-settings-order-numbers.php:14
12210
+ msgid "Order Numbers"
12211
+ msgstr ""
12212
+
12213
+ #: includes/class-wcj-general.php:276
12214
+ #: includes/class-wcj-order-custom-statuses.php:422
12215
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:22
12216
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:29
12217
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:36
12218
+ #: includes/settings/wcj-settings-email-options.php:20
12219
+ #: includes/settings/wcj-settings-eu-vat-number.php:157
12220
+ #: includes/settings/wcj-settings-eu-vat-number.php:193
12221
+ #: includes/settings/wcj-settings-export.php:27
12222
+ #: includes/settings/wcj-settings-order-custom-statuses.php:29
12223
+ #: includes/settings/wcj-settings-order-custom-statuses.php:37
12224
+ #: includes/settings/wcj-settings-order-custom-statuses.php:70
12225
+ #: includes/settings/wcj-settings-order-min-amount.php:46
12226
+ #: includes/settings/wcj-settings-orders.php:168
12227
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:151
12228
+ #: includes/settings/wcj-settings-pdf-invoicing.php:105
12229
+ #: includes/settings/wcj-settings-product-by-country.php:110
12230
+ #: includes/settings/wcj-settings-product-by-user.php:114
12231
+ #: includes/settings/wcj-settings-purchase-data.php:134
12232
+ #: includes/settings/wcj-settings-purchase-data.php:143
12233
+ #: includes/settings/wcj-settings-purchase-data.php:162
12234
+ #: includes/settings/wcj-settings-purchase-data.php:169
12235
+ #: includes/settings/wcj-settings-sku.php:181
12236
+ #: includes/settings/wcj-settings-sku.php:197
12237
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
12238
+ msgid "Add"
12239
+ msgstr "Añadir"
12240
+
12241
+ #: includes/settings/wcj-settings-order-custom-statuses.php:28
12242
+ msgid "Add All Statuses to Admin Order Bulk Actions"
12243
+ msgstr ""
12244
+
12245
+ #: includes/settings/wcj-settings-order-custom-statuses.php:21
12246
+ msgid "You can change the default order status here. However payment gateways can change this status immediately on order creation. E.g. BACS gateway will change status to On-hold."
12247
+ msgstr ""
12248
+
12249
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:137
12250
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
12251
+ msgstr ""
12252
+
12253
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:136
12254
+ #: includes/settings/wcj-settings-order-custom-statuses.php:19
12255
+ msgid "Default Order Status"
12256
+ msgstr ""
12257
+
12258
+ #: includes/class-wcj-order-custom-statuses.php:455
12259
+ #: includes/class-wcj-order-custom-statuses.php:456
12260
+ msgid "Mark"
12261
+ msgstr ""
12262
+
12263
+ #: includes/class-wcj-order-custom-statuses.php:426
12264
+ msgid "Slug (without wc- prefix)"
12265
+ msgstr ""
12266
+
12267
+ #: includes/class-wcj-general.php:264
12268
+ #: includes/class-wcj-order-custom-statuses.php:397
12269
+ #: includes/class-wcj-product-bulk-meta-editor.php:367
12270
+ #: includes/class-wcj-product-by-user.php:206
12271
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:138
12272
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:303
12273
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
12274
+ msgid "Delete"
12275
+ msgstr "Borrar"
12276
+
12277
+ #: includes/class-wcj-order-custom-statuses.php:372
12278
+ #: includes/class-wcj-order-custom-statuses.php:427
12279
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:105
12280
+ #: includes/settings/wcj-settings-checkout-files-upload.php:82
12281
+ #: includes/settings/wcj-settings-checkout-files-upload.php:256
12282
+ #: includes/settings/wcj-settings-offer-price.php:43
12283
+ #: includes/settings/wcj-settings-offer-price.php:115
12284
+ #: includes/settings/wcj-settings-offer-price.php:155
12285
+ #: includes/settings/wcj-settings-offer-price.php:163
12286
+ #: includes/settings/wcj-settings-offer-price.php:171
12287
+ #: includes/settings/wcj-settings-offer-price.php:179
12288
+ #: includes/settings/wcj-settings-orders.php:103
12289
+ #: includes/settings/wcj-settings-product-listings.php:210
12290
+ msgid "Label"
12291
+ msgstr ""
12292
+
12293
+ #: includes/class-wcj-order-custom-statuses.php:371
12294
+ msgid "Slug"
12295
+ msgstr "Slug"
12296
+
12297
+ #: includes/class-wcj-order-custom-statuses.php:368
12298
+ msgid "Statuses"
12299
+ msgstr ""
12300
+
12301
+ #: includes/class-wcj-order-custom-statuses.php:366
12302
+ msgid "The tool lets you add or delete any custom status for WooCommerce orders."
12303
+ msgstr ""
12304
+
12305
+ #: includes/class-wcj-order-custom-statuses.php:360
12306
+ msgid "Delete failed."
12307
+ msgstr ""
12308
+
12309
+ #: includes/class-wcj-order-custom-statuses.php:358
12310
+ msgid "Status has been successfully deleted."
12311
+ msgstr ""
12312
+
12313
+ #: includes/class-wcj-order-custom-statuses.php:320
12314
+ msgid "Status was not added."
12315
+ msgstr ""
12316
+
12317
+ #: includes/class-wcj-order-custom-statuses.php:318
12318
+ msgid "New status has been successfully added!"
12319
+ msgstr ""
12320
+
12321
+ #: includes/class-wcj-order-custom-statuses.php:303
12322
+ msgid "Duplicate slug. Status was not added!"
12323
+ msgstr ""
12324
+
12325
+ #: includes/class-wcj-order-custom-statuses.php:296
12326
+ msgid "Status label is empty. Status was not added!"
12327
+ msgstr ""
12328
+
12329
+ #: includes/class-wcj-order-custom-statuses.php:290
12330
+ msgid "Status slug is empty. Status was not added!"
12331
+ msgstr ""
12332
+
12333
+ #: includes/class-wcj-order-custom-statuses.php:34
12334
+ msgid "Tool lets you add or delete any custom status for WooCommerce orders."
12335
+ msgstr ""
12336
+
12337
+ #: includes/class-wcj-order-custom-statuses.php:33
12338
+ #: includes/settings/wcj-settings-order-custom-statuses.php:14
12339
+ msgid "Custom Statuses"
12340
+ msgstr ""
12341
+
12342
+ #: includes/class-wcj-order-custom-statuses.php:200
12343
+ #: includes/functions/wcj-order-functions.php:145
12344
+ msgctxt "Order status"
12345
+ msgid "Failed"
12346
+ msgstr ""
12347
+
12348
+ #: includes/class-wcj-order-custom-statuses.php:199
12349
+ #: includes/functions/wcj-order-functions.php:144
12350
+ msgctxt "Order status"
12351
+ msgid "Refunded"
12352
+ msgstr "Reembolsado"
12353
+
12354
+ #: includes/class-wcj-order-custom-statuses.php:198
12355
+ #: includes/functions/wcj-order-functions.php:143
12356
+ msgctxt "Order status"
12357
+ msgid "Cancelled"
12358
+ msgstr ""
12359
+
12360
+ #: includes/class-wcj-order-custom-statuses.php:197
12361
+ #: includes/functions/wcj-order-functions.php:142
12362
+ msgctxt "Order status"
12363
+ msgid "Completed"
12364
+ msgstr ""
12365
+
12366
+ #: includes/class-wcj-order-custom-statuses.php:196
12367
+ msgctxt "Order status"
12368
+ msgid "On hold"
12369
+ msgstr ""
12370
+
12371
+ #: includes/class-wcj-order-custom-statuses.php:195
12372
+ #: includes/functions/wcj-order-functions.php:140
12373
+ msgctxt "Order status"
12374
+ msgid "Processing"
12375
+ msgstr ""
12376
+
12377
+ #: includes/class-wcj-order-custom-statuses.php:194
12378
+ msgctxt "Order status"
12379
+ msgid "Pending payment"
12380
+ msgstr ""
12381
+
12382
+ #: includes/class-wcj-order-custom-statuses.php:27
12383
+ msgid "Custom statuses for WooCommerce orders."
12384
+ msgstr ""
12385
+
12386
+ #: includes/class-wcj-order-custom-statuses.php:26
12387
+ msgid "Order Custom Statuses"
12388
+ msgstr ""
12389
+
12390
+ #: includes/class-wcj-old-slugs.php:130
12391
+ msgid "No old slugs found."
12392
+ msgstr ""
12393
+
12394
+ #: includes/class-wcj-old-slugs.php:107
12395
+ msgid "Old products slugs found:"
12396
+ msgstr ""
12397
+
12398
+ #: includes/class-wcj-old-slugs.php:24
12399
+ msgid "Remove old WooCommerce products slugs."
12400
+ msgstr ""
12401
+
12402
+ #: includes/class-wcj-old-slugs.php:23
12403
+ msgid "Old Slugs"
12404
+ msgstr ""
12405
+
12406
+ #: includes/class-wcj-old-slugs.php:31
12407
+ msgid "Tool removes old slugs/permalinks from database."
12408
+ msgstr ""
12409
+
12410
+ #: includes/class-wcj-old-slugs.php:30
12411
+ msgid "Remove Old Slugs"
12412
+ msgstr ""
12413
+
12414
+ #: includes/settings/wcj-settings-more-button-labels.php:21
12415
+ msgid "Button on the checkout page."
12416
+ msgstr ""
12417
+
12418
+ #: includes/settings/wcj-settings-more-button-labels.php:20
12419
+ msgid "Leave blank for WooCommerce default."
12420
+ msgstr ""
12421
+
12422
+ #: includes/settings/wcj-settings-more-button-labels.php:14
12423
+ msgid "Place order (Order now) Button"
12424
+ msgstr ""
12425
+
12426
+ #: includes/class-wcj-more-button-labels.php:25
12427
+ msgid "Set WooCommerce \"Place order\" button label."
12428
+ msgstr ""
12429
+
12430
+ #: includes/class-wcj-more-button-labels.php:24
12431
+ msgid "More Button Labels"
12432
+ msgstr ""
12433
+
12434
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:85
12435
+ #: includes/settings/wcj-settings-mini-cart.php:53
12436
+ msgid "After mini cart"
12437
+ msgstr ""
12438
+
12439
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:84
12440
+ #: includes/settings/wcj-settings-mini-cart.php:52
12441
+ msgid "Before buttons"
12442
+ msgstr ""
12443
+
12444
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:83
12445
+ #: includes/settings/wcj-settings-mini-cart.php:51
12446
+ msgid "Before mini cart"
12447
+ msgstr ""
12448
+
12449
+ #: includes/settings/wcj-settings-mini-cart.php:14
12450
+ msgid "Mini Cart Custom Info Blocks"
12451
+ msgstr ""
12452
+
12453
+ #: includes/settings/wcj-settings-custom-css.php:26
12454
+ msgid "Custom CSS - Back end (Admin)"
12455
+ msgstr ""
12456
+
12457
+ #: includes/settings/wcj-settings-custom-css.php:19
12458
+ msgid "Custom CSS - Front end (Customers)"
12459
+ msgstr ""
12460
+
12461
+ #: includes/settings/wcj-settings-general.php:40
12462
+ msgid "Enable All Shortcodes in WordPress Text Widgets"
12463
+ msgstr ""
12464
+
12465
+ #: includes/settings/wcj-settings-general.php:35
12466
+ msgid "Shortcodes Options"
12467
+ msgstr ""
12468
+
12469
+ #: includes/class-wcj-admin-bar.php:465 includes/class-wcj-admin-bar.php:473
12470
+ #: includes/class-wcj-general.php:27 includes/class-wcj-pdf-invoicing.php:24
12471
+ #: includes/settings/wcj-settings-related-products.php:38
12472
+ msgid "General"
12473
+ msgstr "General"
12474
+
12475
+ #: includes/class-wcj-my-account.php:75
12476
+ #: includes/class-wcj-order-custom-statuses.php:397
12477
+ #: includes/class-wcj-product-bulk-meta-editor.php:279
12478
+ #: includes/class-wcj-product-by-user.php:206
12479
+ #: includes/class-wcj-purchase-data.php:93
12480
+ #: includes/class-wcj-track-users.php:296
12481
+ #: includes/classes/class-wcj-module.php:585
12482
+ #: includes/functions/wcj-html-functions.php:95
12483
+ #: includes/reports/wcj-class-reports-monthly-sales.php:334
12484
+ #: includes/settings/wcj-settings-empty-cart.php:80
12485
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
12486
+ msgid "Are you sure?"
12487
+ msgstr ""
12488
+
12489
+ #: includes/settings/wcj-settings-empty-cart.php:78
12490
+ msgid "Confirmation Text (if enabled)"
12491
+ msgstr ""
12492
+
12493
+ #: includes/settings/wcj-settings-empty-cart.php:74
12494
+ msgid "Confirm by pop up box"
12495
+ msgstr ""
12496
+
12497
+ #: includes/settings/wcj-settings-empty-cart.php:73
12498
+ msgid "No confirmation"
12499
+ msgstr ""
12500
+
12501
+ #: includes/settings/wcj-settings-empty-cart.php:68
12502
+ msgid "Confirmation"
12503
+ msgstr ""
12504
+
12505
+ #: includes/settings/wcj-settings-empty-cart.php:44
12506
+ msgid "After Cart Totals"
12507
+ msgstr ""
12508
+
12509
+ #: includes/settings/wcj-settings-empty-cart.php:43
12510
+ msgid "After Proceed to Checkout button"
12511
+ msgstr ""
12512
+
12513
+ #: includes/settings/wcj-settings-empty-cart.php:42
12514
+ msgid "Before Cart"
12515
+ msgstr ""
12516
+
12517
+ #: includes/settings/wcj-settings-empty-cart.php:41
12518
+ msgid "After Cart"
12519
+ msgstr ""
12520
+
12521
+ #: includes/settings/wcj-settings-empty-cart.php:35
12522
+ msgid "Button position on the Cart page"
12523
+ msgstr ""
12524
+
12525
+ #: includes/settings/wcj-settings-empty-cart.php:29
12526
+ msgid "Style for the button's div. Default is \"float: right;\""
12527
+ msgstr ""
12528
+
12529
+ #: includes/settings/wcj-settings-empty-cart.php:28
12530
+ msgid "Wrapping DIV style"
12531
+ msgstr ""
12532
+
12533
+ #: includes/settings/wcj-settings-empty-cart.php:20
12534
+ msgid "Empty Cart Button Text"
12535
+ msgstr ""
12536
+
12537
+ #: includes/class-wcj-empty-cart-button.php:25
12538
+ #: includes/shortcodes/class-wcj-general-shortcodes.php:183
12539
+ msgid "Empty Cart Button"
12540
+ msgstr ""
12541
+
12542
+ #: includes/class-wcj-email-options.php:94
12543
+ msgid "Email Forwarding Options"
12544
+ msgstr ""
12545
+
12546
+ #: includes/class-wcj-admin-bar.php:553
12547
+ msgid "Emails"
12548
+ msgstr "Correos electrónicos"
12549
+
12550
+ #: includes/settings/wcj-settings-checkout-files-upload.php:219
12551
+ #: includes/settings/wcj-settings-product-input-fields.php:279
12552
+ msgid "Emails Options"
12553
+ msgstr ""
12554
+
12555
+ #: includes/class-wcj-email-options.php:108
12556
+ msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
12557
+ msgstr ""
12558
+
12559
+ #: includes/class-wcj-email-options.php:107
12560
+ msgid "Bcc Email"
12561
+ msgstr ""
12562
+
12563
+ #: includes/class-wcj-email-options.php:101
12564
+ msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
12565
+ msgstr ""
12566
+
12567
+ #: includes/class-wcj-email-options.php:100
12568
+ msgid "Cc Email"
12569
+ msgstr ""
12570
+
12571
+ #: includes/class-wcj-email-options.php:96
12572
+ msgid "This section lets you add another email recipient(s) to all WooCommerce emails. Leave blank to disable."
12573
+ msgstr ""
12574
+
12575
+ #: includes/settings/wcj-settings-currency-external-products.php:21
12576
+ msgid "Set currency for all external products."
12577
+ msgstr ""
12578
+
12579
+ #: includes/settings/wcj-settings-currency-external-products.php:14
12580
+ msgid "Currency for External Products Options"
12581
+ msgstr ""
12582
+
12583
+ #: includes/class-wcj-currency-external-products.php:24
12584
+ msgid "Set different currency for external WooCommerce products."
12585
+ msgstr ""
12586
+
12587
+ #: includes/class-wcj-currency-external-products.php:23
12588
+ msgid "Currency for External Products"
12589
+ msgstr ""
12590
+
12591
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
12592
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:42
12593
+ #: includes/settings/wcj-settings-products-xml.php:132
12594
+ msgid "Update Weekly"
12595
+ msgstr ""
12596
+
12597
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
12598
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:41
12599
+ #: includes/settings/wcj-settings-products-xml.php:131
12600
+ msgid "Update Daily"
12601
+ msgstr ""
12602
+
12603
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
12604
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:40
12605
+ #: includes/settings/wcj-settings-products-xml.php:130
12606
+ msgid "Update Twice Daily"
12607
+ msgstr ""
12608
+
12609
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
12610
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:39
12611
+ #: includes/settings/wcj-settings-products-xml.php:129
12612
+ msgid "Update Hourly"
12613
+ msgstr ""
12614
+
12615
+ #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
12616
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:38
12617
+ #: includes/settings/wcj-settings-products-xml.php:128
12618
+ msgid "Update Every Minute"
12619
+ msgstr ""
12620
+
12621
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:32
12622
+ #: includes/settings/wcj-settings-currency-per-product.php:102
12623
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:24
12624
+ #: includes/settings/wcj-settings-multicurrency.php:22
12625
+ #: includes/settings/wcj-settings-payment-gateways-currency.php:61
12626
+ #: includes/settings/wcj-settings-price-by-country.php:244
12627
+ msgid "Exchange Rates Updates"
12628
+ msgstr ""
12629
+
12630
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:156
12631
+ #: includes/settings/wcj-settings-price-by-country.php:239
12632
+ msgid "Exchange Rates"
12633
+ msgstr ""
12634
+
12635
+ #: includes/class-wcj-currency-exchange-rates.php:25
12636
+ msgid "Automatic currency exchange rates for WooCommerce."
12637
+ msgstr ""
12638
+
12639
+ #: includes/class-wcj-currency-exchange-rates.php:24
12640
+ msgid "Currency Exchange Rates"
12641
+ msgstr ""
12642
+
12643
+ #: includes/settings/wcj-settings-currency.php:22
12644
+ msgid "Default: no."
12645
+ msgstr ""
12646
+
12647
+ #: includes/settings/wcj-settings-breadcrumbs.php:34
12648
+ #: includes/settings/wcj-settings-cart-customization.php:20
12649
+ #: includes/settings/wcj-settings-cart-customization.php:27
12650
+ #: includes/settings/wcj-settings-checkout-customization.php:32
12651
+ #: includes/settings/wcj-settings-currency.php:21
12652
+ #: includes/settings/wcj-settings-order-custom-statuses.php:63
12653
+ #: includes/settings/wcj-settings-orders.php:161
12654
+ #: includes/settings/wcj-settings-pdf-invoicing.php:75
12655
+ #: includes/settings/wcj-settings-product-bookings.php:92
12656
+ #: includes/settings/wcj-settings-product-images.php:26
12657
+ #: includes/settings/wcj-settings-product-images.php:33
12658
+ #: includes/settings/wcj-settings-product-images.php:40
12659
+ #: includes/settings/wcj-settings-product-images.php:47
12660
+ #: includes/settings/wcj-settings-related-products.php:163
12661
+ #: includes/settings/wcj-settings-related-products.php:169
12662
+ #: includes/settings/wcj-settings-shipping-calculator.php:54
12663
+ msgid "Hide"
12664
+ msgstr "Ocultar"
12665
+
12666
+ #: includes/settings/wcj-settings-currency.php:20
12667
+ msgid "Hide Currency Symbol"
12668
+ msgstr ""
12669
+
12670
+ #: includes/settings/wcj-settings-currency.php:15
12671
+ msgid "Currency Symbol Options"
12672
+ msgstr ""
12673
+
12674
+ #: includes/class-wcj-currencies.php:24
12675
+ msgid "Add all world currencies to your WooCommerce store; change currency symbol."
12676
+ msgstr ""
12677
+
12678
+ #: includes/class-wcj-currencies.php:23
12679
+ msgid "Currencies"
12680
+ msgstr "Monedas"
12681
+
12682
+ #: includes/settings/wcj-settings-currency-per-product.php:121
12683
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:65
12684
+ #: includes/settings/wcj-settings-multicurrency.php:97
12685
+ msgid "Currencies Options"
12686
+ msgstr ""
12687
+
12688
+ #: includes/class-wcj-currencies.php:70
12689
+ msgid "This sets the currency symbol."
12690
+ msgstr ""
12691
+
12692
+ #: includes/settings/wcj-settings-currency.php:86
12693
+ msgid "Currency Symbol"
12694
+ msgstr "Símbolo de moneda"
12695
+
12696
+ #: includes/class-wcj-crowdfunding.php:27
12697
+ msgid "When enabled, module will add Crowdfunding metabox to product edit."
12698
+ msgstr ""
12699
+
12700
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
12701
+ msgid "Deadline"
12702
+ msgstr ""
12703
+
12704
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:69
12705
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
12706
+ msgid "Start Date"
12707
+ msgstr "Fecha inicial"
12708
+
12709
+ #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
12710
+ msgid "Goal"
12711
+ msgstr ""
12712
+
12713
+ #: includes/class-wcj-crowdfunding.php:25
12714
+ msgid "Add crowdfunding products to WooCommerce."
12715
+ msgstr ""
12716
+
12717
+ #: includes/class-wcj-crowdfunding.php:24
12718
+ msgid "Crowdfunding"
12719
+ msgstr ""
12720
+
12721
+ #: includes/settings/wcj-settings-checkout-custom-info.php:61
12722
+ #: includes/settings/wcj-settings-checkout-files-upload.php:56
12723
+ #: includes/settings/wcj-settings-empty-cart.php:64
12724
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:130
12725
+ msgid "After checkout form"
12726
+ msgstr ""
12727
+
12728
+ #: includes/settings/wcj-settings-checkout-custom-info.php:60
12729
+ #: includes/settings/wcj-settings-empty-cart.php:63
12730
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:129
12731
+ msgid "After order review"
12732
+ msgstr ""
12733
+
12734
+ #: includes/settings/wcj-settings-checkout-custom-info.php:59
12735
+ #: includes/settings/wcj-settings-empty-cart.php:62
12736
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:128
12737
+ msgid "Order review"
12738
+ msgstr ""
12739
+
12740
+ #: includes/settings/wcj-settings-checkout-custom-info.php:58
12741
+ #: includes/settings/wcj-settings-empty-cart.php:61
12742
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:127
12743
+ msgid "Before order review"
12744
+ msgstr ""
12745
+
12746
+ #: includes/settings/wcj-settings-checkout-custom-info.php:57
12747
+ #: includes/settings/wcj-settings-empty-cart.php:60
12748
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:126
12749
+ msgid "After customer details"
12750
+ msgstr ""
12751
+
12752
+ #: includes/settings/wcj-settings-checkout-custom-info.php:54
12753
+ #: includes/settings/wcj-settings-empty-cart.php:57
12754
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:123
12755
+ msgid "Before customer details"
12756
+ msgstr ""
12757
+
12758
+ #: includes/settings/wcj-settings-checkout-custom-info.php:53
12759
+ #: includes/settings/wcj-settings-checkout-files-upload.php:55
12760
+ #: includes/settings/wcj-settings-empty-cart.php:56
12761
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:122
12762
+ msgid "Before checkout form"
12763
+ msgstr ""
12764
+
12765
+ #: includes/settings/wcj-settings-checkout-custom-info.php:14
12766
+ msgid "Checkout Custom Info Blocks"
12767
+ msgstr ""
12768
+
12769
+ #: includes/class-wcj-checkout-custom-info.php:25
12770
+ msgid "Add custom info to WooCommerce checkout page."
12771
+ msgstr ""
12772
+
12773
+ #: includes/class-wcj-checkout-custom-info.php:24
12774
+ msgid "Checkout Custom Info"
12775
+ msgstr ""
12776
+
12777
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:145
12778
+ #: includes/settings/wcj-settings-eu-vat-number.php:70
12779
+ msgid "Last"
12780
+ msgstr ""
12781
+
12782
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:144
12783
+ #: includes/settings/wcj-settings-eu-vat-number.php:69
12784
+ msgid "First"
12785
+ msgstr "Primera"
12786
+
12787
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:143
12788
+ #: includes/settings/wcj-settings-eu-vat-number.php:68
12789
+ msgid "Wide"
12790
+ msgstr ""
12791
+
12792
+ #: includes/settings/wcj-settings-checkout-core-fields.php:95
12793
+ msgid "class"
12794
+ msgstr ""
12795
+
12796
+ #: includes/class-wcj-admin-bar.php:549
12797
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:134
12798
+ msgid "Account"
12799
+ msgstr "Datos de registro"
12800
+
12801
+ #: includes/export/class-wcj-fields-helper.php:120
12802
+ #: includes/export/class-wcj-fields-helper.php:205
12803
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:133
12804
+ msgid "Order Notes"
12805
+ msgstr "Notas del pedido"
12806
+
12807
+ #: includes/class-wcj-admin-bar.php:505
12808
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:132
12809
+ #: includes/settings/wcj-settings-checkout-custom-info.php:56
12810
+ #: includes/settings/wcj-settings-empty-cart.php:59
12811
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:125
12812
+ #: includes/settings/wcj-settings-price-by-user-role.php:46
12813
+ msgid "Shipping"
12814
+ msgstr ""
12815
+
12816
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:131
12817
+ #: includes/settings/wcj-settings-checkout-custom-info.php:55
12818
+ #: includes/settings/wcj-settings-empty-cart.php:58
12819
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:124
12820
+ msgid "Billing"
12821
+ msgstr "Facturación"
12822
+
12823
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:126
12824
+ msgid "Section"
12825
+ msgstr ""
12826
+
12827
+ #: includes/settings/wcj-settings-checkout-core-fields.php:87
12828
+ msgid "placeholder"
12829
+ msgstr ""
12830
+
12831
+ #: includes/settings/wcj-settings-checkout-core-fields.php:79
12832
+ msgid "label"
12833
+ msgstr ""
12834
+
12835
+ #: includes/settings/wcj-settings-checkout-core-fields.php:66
12836
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:330
12837
+ msgid "required"
12838
+ msgstr ""
12839
+
12840
+ #: includes/input-fields/wcj-product-input-fields-options.php:46
12841
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:95
12842
+ msgid "Phone"
12843
+ msgstr "Telefono"
12844
+
12845
+ #: includes/class-wcj-offer-price.php:117
12846
+ #: includes/export/class-wcj-fields-helper.php:75
12847
+ #: includes/input-fields/wcj-product-input-fields-options.php:45
12848
+ #: includes/reports/wcj-class-reports-customers.php:90
12849
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:94
12850
+ msgid "Email"
12851
+ msgstr "Email"
12852
+
12853
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:93
12854
+ msgid "State"
12855
+ msgstr "Provincia"
12856
+
12857
+ #: includes/class-wcj-track-users.php:281
12858
+ #: includes/input-fields/wcj-product-input-fields-options.php:43
12859
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:92
12860
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
12861
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
12862
+ msgid "Country"
12863
+ msgstr ""
12864
+
12865
+ #: includes/input-fields/wcj-product-input-fields-options.php:42
12866
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:91
12867
+ msgid "Password"
12868
+ msgstr "Contraseña"
12869
+
12870
+ #: includes/input-fields/wcj-product-input-fields-options.php:41
12871
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:90
12872
+ msgid "Radio"
12873
+ msgstr ""
12874
+
12875
+ #: includes/input-fields/wcj-product-input-fields-options.php:40
12876
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:89
12877
+ msgid "Select"
12878
+ msgstr "Selección"
12879
+
12880
+ #: includes/input-fields/wcj-product-input-fields-options.php:39
12881
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:88
12882
+ msgid "Timepicker"
12883
+ msgstr ""
12884
+
12885
+ #: includes/input-fields/wcj-product-input-fields-options.php:37
12886
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:86
12887
+ msgid "Datepicker"
12888
+ msgstr ""
12889
+
12890
+ #: includes/input-fields/wcj-product-input-fields-options.php:35
12891
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
12892
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:85
12893
+ #: includes/settings/wcj-settings-product-addons.php:79
12894
+ msgid "Checkbox"
12895
+ msgstr ""
12896
+
12897
+ #: includes/input-fields/wcj-product-input-fields-options.php:34
12898
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:84
12899
+ msgid "Number"
12900
+ msgstr ""
12901
+
12902
+ #: includes/input-fields/wcj-product-input-fields-options.php:33
12903
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:83
12904
+ msgid "Textarea"
12905
+ msgstr ""
12906
+
12907
+ #: includes/input-fields/wcj-product-input-fields-options.php:32
12908
+ #: includes/settings/wcj-settings-cart-customization.php:50
12909
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:82
12910
+ #: includes/settings/wcj-settings-more-button-labels.php:19
12911
+ msgid "Text"
12912
+ msgstr ""
12913
+
12914
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:63
12915
+ msgid "Custom Field"
12916
+ msgstr ""
12917
+
12918
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:42
12919
+ msgid "Custom Fields Number"
12920
+ msgstr ""
12921
+
12922
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:28
12923
+ msgid "Add All Fields to Customers Emails"
12924
+ msgstr ""
12925
+
12926
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:21
12927
+ msgid "Add All Fields to Admin Emails"
12928
+ msgstr ""
12929
+
12930
+ #: includes/class-wcj-checkout-custom-fields.php:24
12931
+ msgid "Add custom fields to WooCommerce checkout page."
12932
+ msgstr ""
12933
+
12934
+ #: includes/class-wcj-checkout-custom-fields.php:23
12935
+ msgid "Checkout Custom Fields"
12936
+ msgstr ""
12937
+
12938
+ #: includes/settings/wcj-settings-checkout-core-fields.php:103
12939
+ msgid "Full Row"
12940
+ msgstr ""
12941
+
12942
+ #: includes/settings/wcj-settings-checkout-core-fields.php:102
12943
+ msgid "Align Right"
12944
+ msgstr ""
12945
+
12946
+ #: includes/settings/wcj-settings-checkout-core-fields.php:101
12947
+ msgid "Align Left"
12948
+ msgstr ""
12949
+
12950
+ #: includes/settings/wcj-settings-checkout-core-fields.php:59
12951
+ #: includes/settings/wcj-settings-checkout-core-fields.php:71
12952
+ #: includes/settings/wcj-settings-checkout-core-fields.php:100
12953
+ #: includes/settings/wcj-settings-products-per-page.php:29
12954
+ msgid "Default"
12955
+ msgstr "Por defecto"
12956
+
12957
+ #: includes/settings/wcj-settings-checkout-core-fields.php:80
12958
+ #: includes/settings/wcj-settings-checkout-core-fields.php:88
12959
+ msgid "Leave blank for WooCommerce defaults."
12960
+ msgstr ""
12961
+
12962
+ #: includes/class-wcj-checkout-core-fields.php:26
12963
+ msgid "Customize WooCommerce core checkout fields. Disable/enable fields, set required, change labels and/or placeholders."
12964
+ msgstr ""
12965
+
12966
+ #: includes/class-wcj-checkout-core-fields.php:25
12967
+ msgid "Checkout Core Fields"
12968
+ msgstr ""
12969
+
12970
+ #: includes/functions/wcj-general-functions.php:404
12971
+ msgid "If cart is empty"
12972
+ msgstr ""
12973
+
12974
+ #: includes/functions/wcj-general-functions.php:402
12975
+ msgid "After shipping calculator"
12976
+ msgstr ""
12977
+
12978
+ #: includes/functions/wcj-general-functions.php:401
12979
+ msgid "Before shipping calculator"
12980
+ msgstr ""
12981
+
12982
+ #: includes/functions/wcj-general-functions.php:399
12983
+ msgid "After cart totals"
12984
+ msgstr "Después de los totales del carrito"
12985
+
12986
+ #: includes/functions/wcj-general-functions.php:398
12987
+ msgid "Proceed to checkout"
12988
+ msgstr ""
12989
+
12990
+ #: includes/functions/wcj-general-functions.php:397
12991
+ msgid "Cart totals: After order total"
12992
+ msgstr ""
12993
+
12994
+ #: includes/functions/wcj-general-functions.php:396
12995
+ msgid "Cart totals: Before order total"
12996
+ msgstr ""
12997
+
12998
+ #: includes/functions/wcj-general-functions.php:395
12999
+ msgid "Cart totals: After shipping"
13000
+ msgstr ""
13001
+
13002
+ #: includes/functions/wcj-general-functions.php:394
13003
+ msgid "Cart totals: Before shipping"
13004
+ msgstr ""
13005
+
13006
+ #: includes/functions/wcj-general-functions.php:393
13007
+ msgid "Before cart totals"
13008
+ msgstr ""
13009
+
13010
+ #: includes/functions/wcj-general-functions.php:391
13011
+ msgid "After cart"
13012
+ msgstr ""
13013
+
13014
+ #: includes/functions/wcj-general-functions.php:390
13015
+ msgid "Cart collaterals"
13016
+ msgstr ""
13017
+
13018
+ #: includes/functions/wcj-general-functions.php:389
13019
+ msgid "After cart table"
13020
+ msgstr ""
13021
+
13022
+ #: includes/functions/wcj-general-functions.php:388
13023
+ msgid "After cart contents"
13024
+ msgstr ""
13025
+
13026
+ #: includes/functions/wcj-general-functions.php:387
13027
+ msgid "Cart actions"
13028
+ msgstr ""
13029
+
13030
+ #: includes/functions/wcj-general-functions.php:386
13031
+ msgid "Cart coupon"
13032
+ msgstr ""
13033
+
13034
+ #: includes/functions/wcj-general-functions.php:385
13035
+ msgid "Cart contents"
13036
+ msgstr "Contenidos del carrito"
13037
+
13038
+ #: includes/functions/wcj-general-functions.php:384
13039
+ msgid "Before cart contents"
13040
+ msgstr ""
13041
+
13042
+ #: includes/functions/wcj-general-functions.php:383
13043
+ msgid "Before cart table"
13044
+ msgstr ""
13045
+
13046
+ #: includes/functions/wcj-general-functions.php:382
13047
+ msgid "Before cart"
13048
+ msgstr ""
13049
+
13050
+ #: includes/class-wcj-product-info.php:261
13051
+ #: includes/settings/wcj-settings-cart.php:51
13052
+ #: includes/settings/wcj-settings-checkout-custom-info.php:47
13053
+ #: includes/settings/wcj-settings-checkout-files-upload.php:51
13054
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:43
13055
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:78
13056
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:117
13057
+ #: includes/settings/wcj-settings-mini-cart.php:46
13058
+ #: includes/settings/wcj-settings-product-custom-info.php:85
13059
+ #: includes/settings/wcj-settings-product-info.php:50
13060
+ #: includes/settings/wcj-settings-product-info.php:83
13061
+ #: includes/settings/wcj-settings-products-per-page.php:36
13062
+ msgid "Position"
13063
+ msgstr "Posición"
13064
+
13065
+ #: includes/class-wcj-product-tabs.php:570
13066
+ #: includes/settings/wcj-settings-cart.php:44
13067
+ #: includes/settings/wcj-settings-checkout-custom-info.php:40
13068
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:34
13069
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:69
13070
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:108
13071
+ #: includes/settings/wcj-settings-mini-cart.php:39
13072
+ #: includes/settings/wcj-settings-product-custom-info.php:77
13073
+ #: includes/settings/wcj-settings-product-tabs.php:72
13074
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:59
13075
+ msgid "Content"
13076
+ msgstr "Contenido"
13077
+
13078
+ #: includes/settings/wcj-settings-cart.php:39
13079
+ #: includes/settings/wcj-settings-checkout-custom-info.php:35
13080
+ #: includes/settings/wcj-settings-mini-cart.php:34
13081
+ #: includes/settings/wcj-settings-product-custom-info.php:72
13082
+ msgid "Info Block"
13083
+ msgstr ""
13084
+
13085
+ #: includes/settings/wcj-settings-cart.php:24
13086
+ #: includes/settings/wcj-settings-checkout-custom-info.php:19
13087
+ #: includes/settings/wcj-settings-mini-cart.php:19
13088
+ #: includes/settings/wcj-settings-product-custom-info.php:51
13089
+ msgid "Total Blocks"
13090
+ msgstr ""
13091
+
13092
+ #: includes/settings/wcj-settings-cart.php:16
13093
+ msgid "Cart Custom Info Blocks"
13094
+ msgstr ""
13095
+
13096
+ #: includes/settings/wcj-settings-call-for-price.php:62
13097
+ msgid "Hide the tag"
13098
+ msgstr ""
13099
+
13100
+ #: includes/settings/wcj-settings-call-for-price.php:61
13101
+ msgid "Hide Sale! Tag"
13102
+ msgstr ""
13103
+
13104
+ #: includes/settings/wcj-settings-call-for-price.php:51
13105
+ msgid "Label to Show on Related"
13106
+ msgstr ""
13107
+
13108
+ #: includes/settings/wcj-settings-call-for-price.php:41
13109
+ msgid "Label to Show on Homepage"
13110
+ msgstr ""
13111
+
13112
+ #: includes/settings/wcj-settings-call-for-price.php:31
13113
+ msgid "Label to Show on Archives"
13114
+ msgstr ""
13115
+
13116
+ #: includes/settings/wcj-settings-call-for-price.php:22
13117
+ #: includes/settings/wcj-settings-call-for-price.php:32
13118
+ #: includes/settings/wcj-settings-call-for-price.php:42
13119
+ #: includes/settings/wcj-settings-call-for-price.php:52
13120
+ msgid "This sets the html to output on empty price. Leave blank to disable."
13121
+ msgstr ""
13122
+
13123
+ #: includes/settings/wcj-settings-call-for-price.php:21
13124
+ msgid "Label to Show on Single"
13125
+ msgstr ""
13126
+
13127
+ #: includes/class-wcj-call-for-price.php:24
13128
+ msgid "Create any custom price label for all WooCommerce products with empty price."
13129
+ msgstr ""
13130
+
13131
+ #: includes/class-wcj-call-for-price.php:23
13132
+ msgid "Call for Price"
13133
+ msgstr ""
13134
+
13135
+ #: includes/settings/wcj-settings-call-for-price.php:16
13136
+ msgid "Leave price empty when adding or editing products. Then set the options here."
13137
+ msgstr ""
13138
+
13139
+ #: includes/settings/wcj-settings-call-for-price.php:14
13140
+ msgid "Call for Price Options"
13141
+ msgstr ""
13142
+
13143
+ #: includes/settings/wcj-settings-admin-tools.php:33
13144
+ msgid "Debug"
13145
+ msgstr ""
13146
+
13147
+ #: includes/settings/wcj-settings-admin-tools.php:14
13148
+ msgid "Admin Tools Options"
13149
+ msgstr ""
13150
+
13151
+ #: includes/class-wcj-admin-tools.php:145
13152
+ msgid "Delete Log"
13153
+ msgstr ""
13154
+
13155
+ #: includes/class-wcj-admin-tools.php:32
13156
+ #: includes/settings/wcj-settings-admin-tools.php:19
13157
+ msgid "Log"
13158
+ msgstr ""
13159
+
13160
+ #: includes/class-wcj-admin-tools.php:31
13161
+ msgid "Log."
13162
+ msgstr ""
13163
+
13164
+ #: includes/classes/class-wcj-module.php:529
13165
+ msgid "disabled"
13166
+ msgstr ""
13167
+
13168
+ #: includes/classes/class-wcj-module.php:528
13169
+ #: includes/settings/wcj-settings-checkout-core-fields.php:54
13170
+ msgid "enabled"
13171
+ msgstr ""
13172
+
13173
+ #: includes/class-wcj-admin-tools.php:24
13174
+ msgid "Booster for WooCommerce debug and log tools."
13175
+ msgstr ""
13176
+
13177
+ #: includes/class-wcj-admin-tools.php:23 includes/class-wcj-admin-tools.php:30
13178
+ msgid "Admin Tools"
13179
+ msgstr ""
13180
+
13181
+ #: includes/settings/wcj-settings-address-formats.php:30
13182
+ msgid "Address Formats by Country"
13183
+ msgstr ""
13184
+
13185
+ #: includes/settings/wcj-settings-address-formats.php:14
13186
+ #: includes/settings/wcj-settings-address-formats.php:19
13187
+ msgid "Force Base Country Display"
13188
+ msgstr ""
13189
+
13190
+ #: includes/class-wcj-address-formats.php:25
13191
+ msgid "Set address format in WooCommerce orders on per country basis. Force base country display."
13192
+ msgstr ""
13193
+
13194
+ #: includes/class-wcj-address-formats.php:24
13195
+ msgid "Address Formats"
13196
+ msgstr ""
13197
+
13198
+ #: includes/class-wcj-add-to-cart.php:24
13199
+ msgid "Change text for Add to Cart button by WooCommerce product type, by product category or for individual products."
13200
+ msgstr ""
13201
+
13202
+ #: includes/classes/class-wcj-module.php:627
13203
+ msgid "Enable Module"
13204
+ msgstr ""
13205
+
13206
+ #: includes/class-wcj-add-to-cart.php:23
13207
+ msgid "Add to Cart Labels"
13208
+ msgstr ""
13209
+
13210
+ #: includes/settings/wcj-settings-add-to-cart.php:78
13211
+ msgid "Button text - product archive (category) view"
13212
+ msgstr ""
13213
+
13214
+ #: includes/settings/wcj-settings-add-to-cart.php:70
13215
+ msgid "Button text - single product view"
13216
+ msgstr ""
13217
+
13218
+ #: includes/settings/wcj-settings-add-to-cart.php:59
13219
+ msgid "categories"
13220
+ msgstr ""
13221
+
13222
+ #: includes/class-wcj-price-labels.php:40
13223
+ #: includes/class-wcj-product-info.php:254
13224
+ #: includes/class-wcj-shipping-options.php:172
13225
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:92
13226
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
13227
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:17
13228
+ #: includes/settings/wcj-settings-add-to-cart.php:52
13229
+ #: includes/settings/wcj-settings-address-formats.php:20
13230
+ #: includes/settings/wcj-settings-admin-bar.php:20
13231
+ #: includes/settings/wcj-settings-admin-bar.php:27
13232
+ #: includes/settings/wcj-settings-admin-bar.php:34
13233
+ #: includes/settings/wcj-settings-admin-tools.php:20
13234
+ #: includes/settings/wcj-settings-admin-tools.php:27
13235
+ #: includes/settings/wcj-settings-admin-tools.php:34
13236
+ #: includes/settings/wcj-settings-admin-tools.php:74
13237
+ #: includes/settings/wcj-settings-admin-tools.php:81
13238
+ #: includes/settings/wcj-settings-breadcrumbs.php:20
13239
+ #: includes/settings/wcj-settings-call-for-price.php:69
13240
+ #: includes/settings/wcj-settings-cart-customization.php:34
13241
+ #: includes/settings/wcj-settings-cart-customization.php:57
13242
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:69
13243
+ #: includes/settings/wcj-settings-checkout-customization.php:78
13244
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:54
13245
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:84
13246
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:92
13247
+ #: includes/settings/wcj-settings-currency-per-product.php:66
13248
+ #: includes/settings/wcj-settings-currency-per-product.php:73
13249
+ #: includes/settings/wcj-settings-currency-per-product.php:80
13250
+ #: includes/settings/wcj-settings-currency-per-product.php:87
13251
+ #: includes/settings/wcj-settings-custom-css.php:34
13252
+ #: includes/settings/wcj-settings-emails-verification.php:28
13253
+ #: includes/settings/wcj-settings-emails-verification.php:36
13254
+ #: includes/settings/wcj-settings-general.php:42
13255
+ #: includes/settings/wcj-settings-general.php:66
13256
+ #: includes/settings/wcj-settings-general.php:82
13257
+ #: includes/settings/wcj-settings-general.php:150
13258
+ #: includes/settings/wcj-settings-general.php:201
13259
+ #: includes/settings/wcj-settings-general.php:228
13260
+ #: includes/settings/wcj-settings-global-discount.php:52
13261
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:27
13262
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:60
13263
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:99
13264
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:40
13265
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:55
13266
+ #: includes/settings/wcj-settings-multicurrency.php:39
13267
+ #: includes/settings/wcj-settings-multicurrency.php:48
13268
+ #: includes/settings/wcj-settings-offer-price.php:19
13269
+ #: includes/settings/wcj-settings-order-custom-statuses.php:45
13270
+ #: includes/settings/wcj-settings-order-numbers.php:88
13271
+ #: includes/settings/wcj-settings-order-numbers.php:96
13272
+ #: includes/settings/wcj-settings-order-numbers.php:103
13273
+ #: includes/settings/wcj-settings-order-quantities.php:119
13274
+ #: includes/settings/wcj-settings-order-quantities.php:126
13275
+ #: includes/settings/wcj-settings-orders.php:20
13276
+ #: includes/settings/wcj-settings-orders.php:49
13277
+ #: includes/settings/wcj-settings-orders.php:184
13278
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:113
13279
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
13280
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:23
13281
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
13282
+ #: includes/settings/wcj-settings-price-by-country.php:69
13283
+ #: includes/settings/wcj-settings-price-by-country.php:89
13284
+ #: includes/settings/wcj-settings-price-by-country.php:105
13285
+ #: includes/settings/wcj-settings-price-by-country.php:113
13286
+ #: includes/settings/wcj-settings-price-by-country.php:122
13287
+ #: includes/settings/wcj-settings-price-by-user-role.php:20
13288
+ #: includes/settings/wcj-settings-price-by-user-role.php:47
13289
+ #: includes/settings/wcj-settings-price-formats.php:21
13290
+ #: includes/settings/wcj-settings-price-labels.php:155
13291
+ #: includes/settings/wcj-settings-product-add-to-cart.php:25
13292
+ #: includes/settings/wcj-settings-product-add-to-cart.php:41
13293
+ #: includes/settings/wcj-settings-product-add-to-cart.php:80
13294
+ #: includes/settings/wcj-settings-product-add-to-cart.php:132
13295
+ #: includes/settings/wcj-settings-product-add-to-cart.php:171
13296
+ #: includes/settings/wcj-settings-product-add-to-cart.php:202
13297
+ #: includes/settings/wcj-settings-product-add-to-cart.php:219
13298
+ #: includes/settings/wcj-settings-product-add-to-cart.php:260
13299
+ #: includes/settings/wcj-settings-product-add-to-cart.php:274
13300
+ #: includes/settings/wcj-settings-product-addons.php:24
13301
+ #: includes/settings/wcj-settings-product-addons.php:43
13302
+ #: includes/settings/wcj-settings-product-addons.php:67
13303
+ #: includes/settings/wcj-settings-product-addons.php:162
13304
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
13305
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
13306
+ #: includes/settings/wcj-settings-product-by-country.php:21
13307
+ #: includes/settings/wcj-settings-product-by-country.php:29
13308
+ #: includes/settings/wcj-settings-product-by-country.php:37
13309
+ #: includes/settings/wcj-settings-product-by-date.php:21
13310
+ #: includes/settings/wcj-settings-product-by-date.php:53
13311
+ #: includes/settings/wcj-settings-product-by-time.php:21
13312
+ #: includes/settings/wcj-settings-product-by-time.php:53
13313
+ #: includes/settings/wcj-settings-product-by-user-role.php:21
13314
+ #: includes/settings/wcj-settings-product-by-user-role.php:29
13315
+ #: includes/settings/wcj-settings-product-by-user-role.php:37
13316
+ #: includes/settings/wcj-settings-product-by-user.php:107
13317
+ #: includes/settings/wcj-settings-product-info.php:35
13318
+ #: includes/settings/wcj-settings-product-info.php:68
13319
+ #: includes/settings/wcj-settings-product-input-fields.php:22
13320
+ #: includes/settings/wcj-settings-product-input-fields.php:52
13321
+ #: includes/settings/wcj-settings-product-input-fields.php:310
13322
+ #: includes/settings/wcj-settings-product-open-pricing.php:87
13323
+ #: includes/settings/wcj-settings-product-open-pricing.php:94
13324
+ #: includes/settings/wcj-settings-product-open-pricing.php:108
13325
+ #: includes/settings/wcj-settings-product-price-by-formula.php:30
13326
+ #: includes/settings/wcj-settings-product-tabs.php:23
13327
+ #: includes/settings/wcj-settings-product-tabs.php:212
13328
+ #: includes/settings/wcj-settings-product-tabs.php:220
13329
+ #: includes/settings/wcj-settings-products-xml.php:72
13330
+ #: includes/settings/wcj-settings-purchase-data.php:22
13331
+ #: includes/settings/wcj-settings-purchase-data.php:29
13332
+ #: includes/settings/wcj-settings-purchase-data.php:36
13333
+ #: includes/settings/wcj-settings-purchase-data.php:103
13334
+ #: includes/settings/wcj-settings-purchase-data.php:110
13335
+ #: includes/settings/wcj-settings-purchase-data.php:117
13336
+ #: includes/settings/wcj-settings-purchase-data.php:185
13337
+ #: includes/settings/wcj-settings-related-products.php:105
13338
+ #: includes/settings/wcj-settings-related-products.php:112
13339
+ #: includes/settings/wcj-settings-related-products.php:119
13340
+ #: includes/settings/wcj-settings-related-products.php:149
13341
+ #: includes/settings/wcj-settings-shipping-calculator.php:20
13342
+ #: includes/settings/wcj-settings-shipping-calculator.php:27
13343
+ #: includes/settings/wcj-settings-shipping-calculator.php:34
13344
+ #: includes/settings/wcj-settings-shipping-calculator.php:41
13345
+ #: includes/settings/wcj-settings-shipping-options.php:53
13346
+ #: includes/settings/wcj-settings-shipping.php:24
13347
+ #: includes/settings/wcj-settings-sku.php:50
13348
+ #: includes/settings/wcj-settings-sku.php:157
13349
+ #: includes/settings/wcj-settings-sku.php:165
13350
+ #: includes/settings/wcj-settings-sku.php:173
13351
+ #: includes/settings/wcj-settings-sku.php:189
13352
+ #: includes/settings/wcj-settings-stock.php:30
13353
+ #: includes/settings/wcj-settings-stock.php:43
13354
+ #: includes/settings/wcj-settings-track-users.php:47
13355
+ #: includes/settings/wcj-settings-wholesale-price.php:22
13356
+ #: includes/settings/wcj-settings-wholesale-price.php:29
13357
+ #: includes/settings/wcj-settings-wholesale-price.php:36
13358
+ msgid "Enable"
13359
+ msgstr "Habilitar"
13360
+
13361
+ #: includes/settings/wcj-settings-add-to-cart.php:51
13362
+ #: includes/settings/wcj-settings-price-by-country.php:193
13363
+ #: includes/settings/wcj-settings-price-by-country.php:203
13364
+ #: includes/settings/wcj-settings-price-by-country.php:213
13365
+ #: includes/settings/wcj-settings-price-by-country.php:271
13366
+ msgid "Group"
13367
+ msgstr ""
13368
+
13369
+ #: includes/settings/wcj-settings-add-to-cart.php:29
13370
+ #: includes/settings/wcj-settings-product-tabs.php:30
13371
+ msgid "Click \"Save changes\" after you change this number."
13372
+ msgstr ""
13373
+
13374
+ #: includes/settings/wcj-settings-add-to-cart.php:28
13375
+ msgid "Category Groups Number"
13376
+ msgstr ""
13377
+
13378
+ #: includes/settings/wcj-settings-add-to-cart.php:20
13379
+ msgid "Per Category Labels"
13380
+ msgstr ""
13381
+
13382
+ #: includes/settings/wcj-settings-add-to-cart.php:16
13383
+ msgid "This sections lets you set Add to Cart button text on per category basis."
13384
+ msgstr ""
13385
+
13386
+ #: includes/settings/wcj-settings-add-to-cart.php:14
13387
+ msgid "Per Category Options"
13388
+ msgstr ""
13389
+
13390
+ #: includes/settings/wcj-settings-add-to-cart.php:94
13391
+ msgid "This section lets you set Add to Cart button text on per product basis. When enabled, label for each product can be changed in \"Edit Product\"."
13392
+ msgstr ""
13393
+
13394
+ #: includes/settings/wcj-settings-add-to-cart.php:92
13395
+ #: includes/settings/wcj-settings-product-addons.php:18
13396
+ #: includes/settings/wcj-settings-product-by-date.php:47
13397
+ #: includes/settings/wcj-settings-product-by-time.php:47
13398
+ msgid "Per Product Options"
13399
+ msgstr ""
13400
+
13401
+ #: includes/settings/wcj-settings-add-to-cart.php:219
13402
+ msgid "Already in cart. Product category (archive) view."
13403
+ msgstr ""
13404
+
13405
+ #: includes/settings/wcj-settings-add-to-cart.php:210
13406
+ #: includes/settings/wcj-settings-add-to-cart.php:221
13407
+ msgid "Already in cart - Add Again?"
13408
+ msgstr ""
13409
+
13410
+ #: includes/settings/wcj-settings-add-to-cart.php:210
13411
+ #: includes/settings/wcj-settings-add-to-cart.php:221
13412
+ msgid "Try: "
13413
+ msgstr ""
13414
+
13415
+ #: includes/settings/wcj-settings-add-to-cart.php:208
13416
+ msgid "Already in cart. Single product view."
13417
+ msgstr ""
13418
+
13419
+ #: includes/settings/wcj-settings-add-to-cart.php:196
13420
+ msgid "Read More"
13421
+ msgstr "Leer más"
13422
+
13423
+ #: includes/settings/wcj-settings-add-to-cart.php:194
13424
+ msgid "Leave blank to disable. Default: Read More"
13425
+ msgstr ""
13426
+
13427
+ #: includes/settings/wcj-settings-add-to-cart.php:193
13428
+ msgid "Products with empty price. Product category (archive) view."
13429
+ msgstr ""
13430
+
13431
+ #: includes/settings/wcj-settings-add-to-cart.php:184
13432
+ msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
13433
+ msgstr ""
13434
+
13435
+ #: includes/settings/wcj-settings-add-to-cart.php:178
13436
+ #: includes/settings/wcj-settings-add-to-cart.php:187
13437
+ #: includes/settings/wcj-settings-add-to-cart.php:211
13438
+ #: includes/settings/wcj-settings-add-to-cart.php:212
13439
+ #: includes/settings/wcj-settings-add-to-cart.php:222
13440
+ #: includes/settings/wcj-settings-add-to-cart.php:223
13441
+ msgid "Add to cart"
13442
+ msgstr ""
13443
+
13444
+ #: includes/settings/wcj-settings-add-to-cart.php:176
13445
+ #: includes/settings/wcj-settings-add-to-cart.php:185
13446
+ msgid "Leave blank to disable. Default: Add to cart"
13447
+ msgstr ""
13448
+
13449
+ #: includes/settings/wcj-settings-add-to-cart.php:175
13450
+ msgid "Products with price set to 0 (i.e. free). Single product view."
13451
+ msgstr ""
13452
+
13453
+ #: includes/settings/wcj-settings-add-to-cart.php:164
13454
+ msgid "Product category (archive) view."
13455
+ msgstr ""
13456
+
13457
+ #: includes/settings/wcj-settings-add-to-cart.php:156
13458
+ #: includes/settings/wcj-settings-add-to-cart.php:165
13459
+ #: includes/settings/wcj-settings-add-to-cart.php:211
13460
+ #: includes/settings/wcj-settings-add-to-cart.php:222
13461
+ #: includes/settings/wcj-settings-sorting.php:27
13462
+ #: includes/settings/wcj-settings-sorting.php:36
13463
+ #: includes/settings/wcj-settings-sorting.php:45
13464
+ #: includes/settings/wcj-settings-sorting.php:54
13465
+ #: includes/settings/wcj-settings-sorting.php:72
13466
+ #: includes/settings/wcj-settings-sorting.php:81
13467
+ msgid "Default: "
13468
+ msgstr ""
13469
+
13470
+ #: includes/settings/wcj-settings-add-to-cart.php:156
13471
+ #: includes/settings/wcj-settings-add-to-cart.php:165
13472
+ #: includes/settings/wcj-settings-add-to-cart.php:209
13473
+ #: includes/settings/wcj-settings-add-to-cart.php:220
13474
+ #: includes/settings/wcj-settings-product-custom-info.php:194
13475
+ msgid "Leave blank to disable."
13476
+ msgstr ""
13477
+
13478
+ #: includes/settings/wcj-settings-add-to-cart.php:155
13479
+ msgid "Single product view."
13480
+ msgstr ""
13481
+
13482
+ #: includes/settings/wcj-settings-add-to-cart.php:146
13483
+ msgid "Other product"
13484
+ msgstr ""
13485
+
13486
+ #: includes/settings/wcj-settings-add-to-cart.php:141
13487
+ msgid "Grouped product"
13488
+ msgstr ""
13489
+
13490
+ #: includes/settings/wcj-settings-add-to-cart.php:136
13491
+ msgid "External product"
13492
+ msgstr ""
13493
+
13494
+ #: includes/settings/wcj-settings-add-to-cart.php:131
13495
+ msgid "Variable product"
13496
+ msgstr ""
13497
+
13498
+ #: includes/settings/wcj-settings-add-to-cart.php:126
13499
+ #: includes/settings/wcj-settings-product-by-user.php:93
13500
+ msgid "Simple product"
13501
+ msgstr ""
13502
+
13503
+ #: includes/settings/wcj-settings-add-to-cart.php:21
13504
+ #: includes/settings/wcj-settings-add-to-cart.php:99
13505
+ #: includes/settings/wcj-settings-add-to-cart.php:117
13506
+ #: includes/settings/wcj-settings-general.php:167
13507
+ #: includes/settings/wcj-settings-order-quantities.php:21
13508
+ #: includes/settings/wcj-settings-order-quantities.php:70
13509
+ #: includes/settings/wcj-settings-product-images.php:19
13510
+ #: includes/settings/wcj-settings-product-images.php:95
13511
+ #: includes/settings/wcj-settings-shipping-calculator.php:69
13512
+ #: includes/settings/wcj-settings-shipping-options.php:93
13513
+ #: includes/settings/wcj-settings-shipping-options.php:139
13514
+ #: includes/settings/wcj-settings-sorting.php:20
13515
+ #: includes/settings/wcj-settings-sorting.php:99
13516
+ #: includes/settings/wcj-settings-sorting.php:123
13517
+ msgid "Enable Section"
13518
+ msgstr ""
13519
+
13520
+ #: includes/settings/wcj-settings-add-to-cart.php:98
13521
+ #: includes/settings/wcj-settings-add-to-cart.php:116
13522
+ msgid "Per Product Labels"
13523
+ msgstr ""
13524
+
13525
+ #: includes/settings/wcj-settings-add-to-cart.php:110
13526
+ msgid "Per Product Type Options"
13527
+ msgstr ""
13528
+
13529
+ #: includes/admin/wcj-modules-cats.php:157
13530
+ msgid "Emails & Misc."
13531
+ msgstr ""
13532
+
13533
+ #: includes/admin/wcj-modules-cats.php:141
13534
+ msgid "PDF Invoicing & Packing Slips"
13535
+ msgstr ""
13536
+
13537
+ #: includes/admin/wcj-modules-cats.php:123
13538
+ msgid "Shipping & Orders"
13539
+ msgstr ""
13540
+
13541
+ #: includes/admin/wcj-modules-cats.php:106
13542
+ #: includes/settings/wcj-settings-payment-gateways-by-country.php:14
13543
+ #: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
13544
+ #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:21
13545
+ #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
13546
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:65
13547
+ msgid "Payment Gateways"
13548
+ msgstr "Pasarelas de pago"
13549
+
13550
+ #: includes/admin/wcj-modules-cats.php:89
13551
+ msgid "Cart & Checkout"
13552
+ msgstr ""
13553
+
13554
+ #: includes/admin/wcj-modules-cats.php:60 includes/class-wcj-admin-bar.php:421
13555
+ #: includes/class-wcj-admin-bar.php:425 includes/class-wcj-admin-bar.php:469
13556
+ #: includes/class-wcj-product-bulk-meta-editor.php:263
13557
+ #: includes/class-wcj-product-by-user.php:96
13558
+ #: includes/class-wcj-product-by-user.php:132
13559
+ #: includes/settings/wcj-settings-shipping-options.php:59
13560
+ msgid "Products"
13561
+ msgstr ""
13562
+
13563
+ #: includes/admin/wcj-modules-cats.php:48
13564
+ msgid "Button & Price Labels"
13565
+ msgstr ""
13566
+
13567
+ #: includes/admin/wcj-modules-cats.php:26
13568
+ msgid "Prices & Currencies"
13569
+ msgstr ""
13570
+
13571
+ #: includes/admin/class-wcj-tools.php:74
13572
+ #: includes/class-wcj-product-by-user.php:197
13573
+ #: includes/export/class-wcj-fields-helper.php:294
13574
+ msgid "Status"
13575
+ msgstr "Estado"
13576
+
13577
+ #: includes/admin/class-wcj-tools.php:71
13578
+ msgid "Tool"
13579
+ msgstr ""
13580
+
13581
+ #: includes/admin/class-wcj-tools.php:66
13582
+ msgid "This dashboard lets you check statuses and short descriptions of all available Booster for WooCommerce tools. Tools can be enabled through WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu above."
13583
+ msgstr ""
13584
+
13585
+ #: includes/admin/class-wcj-tools.php:65
13586
+ msgid "Booster for WooCommerce Tools - Dashboard"
13587
+ msgstr ""
13588
+
13589
+ #: includes/admin/class-wcj-tools.php:51
13590
+ msgid "Tools Dashboard"
13591
+ msgstr ""
13592
+
13593
+ #: includes/admin/class-wcj-tools.php:33
13594
+ msgid "Booster Tools"
13595
+ msgstr "Herramientas de Booster"
13596
+
13597
+ #: includes/admin/class-wcj-tools.php:32
13598
+ msgid "Booster for WooCommerce Tools"
13599
+ msgstr ""
13600
+
13601
+ #: includes/admin/wcj-modules-cats.php:16
13602
+ msgid "This dashboard lets you enable/disable any Booster's module. Each checkbox comes with short module's description. Please visit <a href=\"http://booster.io\" target=\"_blank\">http://booster.io</a> for detailed info on each feature."
13603
+ msgstr ""
13604
+
13605
+ #: includes/admin/class-wc-settings-jetpack.php:421
13606
+ msgid "Total Modules:"
13607
+ msgstr "Módulos totales:"
13608
+
13609
+ #: includes/admin/class-wc-settings-jetpack.php:363
13610
+ #: includes/admin/class-wc-settings-jetpack.php:370
13611
+ #: includes/admin/class-wcj-tools.php:73
13612
+ #: includes/export/class-wcj-fields-helper.php:293
13613
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:74
13614
+ #: includes/settings/wcj-settings-eu-vat-number.php:34
13615
+ #: includes/settings/wcj-settings-product-by-user.php:13
13616
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:179
13617
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:345
13618
+ msgid "Description"
13619
+ msgstr "Descripción"
13620
+
13621
+ #: includes/admin/class-wc-settings-jetpack.php:362
13622
+ #: includes/admin/class-wc-settings-jetpack.php:369
13623
+ #: includes/admin/class-wcj-tools.php:72
13624
+ msgid "Module"
13625
+ msgstr ""
13626
+
13627
+ #: includes/admin/class-wc-settings-jetpack.php:361
13628
+ #: includes/admin/class-wc-settings-jetpack.php:368
13629
+ msgid "Select All"
13630
+ msgstr "Seleccionar todo"
13631
+
13632
+ #: includes/admin/class-wc-settings-jetpack.php:211
13633
+ #: includes/admin/class-wc-settings-jetpack.php:404
13634
+ #: includes/class-wcj-admin-bar.php:166 includes/class-wcj-admin-bar.php:461
13635
+ #: includes/class-wcj-admin-bar.php:561 woocommerce-jetpack.php:240
13636
+ msgid "Settings"
13637
+ msgstr "Configurar"
13638
+
13639
+ #: includes/admin/class-wc-settings-jetpack.php:209
13640
+ #: includes/class-wcj-admin-bar.php:339
13641
+ #: includes/settings/wcj-settings-emails-verification.php:123
13642
+ msgid "WooCommerce"
13643
+ msgstr ""
13644
+
13645
+ #: includes/admin/class-wc-settings-jetpack.php:138
13646
+ #: includes/admin/wcj-modules-cats.php:15 includes/class-wcj-admin-bar.php:212
13647
+ msgid "Dashboard"
13648
+ msgstr "Escritorio"
13649
+
13650
+ #: includes/admin/class-wc-settings-jetpack.php:84
13651
+ #: includes/class-wcj-admin-bar.php:146
13652
+ msgid "Active"
13653
+ msgstr "Activar"
13654
+
13655
+ #: includes/admin/class-wc-settings-jetpack.php:83
13656
+ #: includes/class-wcj-admin-bar.php:142
13657
+ msgid "By Category"
13658
+ msgstr ""
13659
+
13660
+ #: includes/admin/class-wc-settings-jetpack.php:82
13661
+ #: includes/class-wcj-admin-bar.php:138
13662
+ msgid "Alphabetically"
13663
+ msgstr ""
13664
+
13665
+ #: includes/admin/class-wcj-settings-custom-fields.php:237
13666
+ msgid "Save changes"
13667
+ msgstr "Guardar cambios"
13668
+
13669
+ #: includes/admin/class-wc-settings-jetpack.php:24
13670
+ #: includes/admin/class-wc-settings-jetpack.php:213
13671
+ #: includes/class-wcj-admin-bar.php:262
13672
+ #: includes/class-wcj-checkout-files-upload.php:138
13673
+ #: includes/class-wcj-eu-vat-number.php:86
13674
+ #: includes/class-wcj-payment-gateways.php:75
13675
+ #: includes/class-wcj-track-users.php:117
13676
+ #: includes/class-wcj-track-users.php:213
13677
+ #: includes/classes/class-wcj-module.php:266
13678
+ #: includes/classes/class-wcj-module.php:476
13679
+ msgid "Booster"
13680
+ msgstr ""
13681
+
13682
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
13683
+ msgid "Product category (archive) view"
13684
+ msgstr ""
13685
+
13686
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
13687
+ msgid "Single product view"
13688
+ msgstr ""
langs/woocommerce-jetpack.pot CHANGED
@@ -1,13686 +1,14592 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Booster for WooCommerce
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- #: includes/settings/wcj-settings-add-to-cart.php:60
7
- #: includes/settings/wcj-settings-shipping-calculator.php:47
8
- #, fuzzy
9
- msgid ""
10
- msgstr ""
11
- "Project-Id-Version: Booster for WooCommerce 2.9.1\n"
12
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
13
- "jetpack\n"
14
- "POT-Creation-Date: 2017-07-17 04:48+0300\n"
15
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
17
- "Language-Team: LANGUAGE <LL@li.org>\n"
18
- "Language: \n"
19
- "MIME-Version: 1.0\n"
20
- "Content-Type: text/plain; charset=UTF-8\n"
21
- "Content-Transfer-Encoding: 8bit\n"
22
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
23
-
24
- #: woocommerce-jetpack.php:155
25
- #, php-format
26
- msgid ""
27
- "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin to "
28
- "version %s. Please visit <a href=\"%s\">your account</a> on booster.io to "
29
- "download the latest Booster Plus version."
30
- msgstr ""
31
-
32
- #: woocommerce-jetpack.php:175
33
- #, php-format
34
- msgid ""
35
- "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
36
- "rating. Thank you, we couldn't have done it without you!"
37
- msgstr ""
38
-
39
- #: woocommerce-jetpack.php:191
40
- #: includes/admin/class-wc-settings-jetpack.php:438
41
- msgid "Booster for WooCommerce"
42
- msgstr ""
43
-
44
- #: woocommerce-jetpack.php:192
45
- msgid "Booster Settings"
46
- msgstr ""
47
-
48
- #: woocommerce-jetpack.php:207 includes/class-wcj-admin-bar.php:167
49
- #: includes/class-wcj-admin-bar.php:437 includes/class-wcj-admin-bar.php:537
50
- #: includes/admin/class-wc-settings-jetpack.php:195
51
- #: includes/admin/class-wc-settings-jetpack.php:362
52
- msgid "Settings"
53
- msgstr ""
54
-
55
- #: woocommerce-jetpack.php:208
56
- msgid "Docs"
57
- msgstr ""
58
-
59
- #: woocommerce-jetpack.php:211
60
- msgid "Unlock all"
61
- msgstr ""
62
-
63
- #: woocommerce-jetpack.php:465
64
- #, php-format
65
- msgid ""
66
- "<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
67
- "version <strong>%s</strong>."
68
- msgstr ""
69
-
70
- #: includes/class-wcj-add-to-cart.php:23
71
- msgid "Add to Cart Labels"
72
- msgstr ""
73
-
74
- #: includes/class-wcj-add-to-cart.php:24
75
- msgid ""
76
- "Change text for Add to Cart button by WooCommerce product type, by product "
77
- "category or for individual products."
78
- msgstr ""
79
-
80
- #: includes/class-wcj-address-formats.php:24
81
- msgid "Address Formats"
82
- msgstr ""
83
-
84
- #: includes/class-wcj-address-formats.php:25
85
- msgid ""
86
- "Set address format in WooCommerce orders on per country basis. Force base "
87
- "country display."
88
- msgstr ""
89
-
90
- #: includes/class-wcj-admin-bar.php:35
91
- msgid "Admin Bar"
92
- msgstr ""
93
-
94
- #: includes/class-wcj-admin-bar.php:36
95
- msgid "WooCommerce admin bar."
96
- msgstr ""
97
-
98
- #: includes/class-wcj-admin-bar.php:139
99
- #: includes/admin/class-wc-settings-jetpack.php:80
100
- msgid "Alphabetically"
101
- msgstr ""
102
-
103
- #: includes/class-wcj-admin-bar.php:143
104
- #: includes/admin/class-wc-settings-jetpack.php:81
105
- msgid "By Category"
106
- msgstr ""
107
-
108
- #: includes/class-wcj-admin-bar.php:147
109
- #: includes/admin/class-wc-settings-jetpack.php:82
110
- msgid "Active"
111
- msgstr ""
112
-
113
- #: includes/class-wcj-admin-bar.php:151
114
- #: includes/admin/class-wc-settings-jetpack.php:83
115
- msgid "Manage Settings"
116
- msgstr ""
117
-
118
- #: includes/class-wcj-admin-bar.php:171
119
- #: includes/admin/class-wc-settings-jetpack.php:364
120
- #: includes/classes/class-wcj-module.php:607
121
- msgid "Documentation"
122
- msgstr ""
123
-
124
- #: includes/class-wcj-admin-bar.php:213
125
- #: includes/admin/class-wc-settings-jetpack.php:131
126
- #: includes/admin/wcj-modules-cats.php:15
127
- msgid "Dashboard"
128
- msgstr ""
129
-
130
- #: includes/class-wcj-admin-bar.php:214
131
- msgid ""
132
- "This dashboard lets you check statuses and short descriptions of all "
133
- "available Booster for WooCommerce tools. Tools can be enabled through "
134
- "WooCommerce > Settings > Booster."
135
- msgstr ""
136
-
137
- #: includes/class-wcj-admin-bar.php:238
138
- #: includes/class-wcj-checkout-files-upload.php:138
139
- #: includes/class-wcj-eu-vat-number.php:86 includes/class-wcj-general.php:164
140
- #: includes/class-wcj-general.php:260
141
- #: includes/class-wcj-payment-gateways.php:53
142
- #: includes/admin/class-wc-settings-jetpack.php:24
143
- #: includes/admin/class-wc-settings-jetpack.php:197
144
- #: includes/classes/class-wcj-module.php:266
145
- #: includes/classes/class-wcj-module.php:467
146
- msgid "Booster"
147
- msgstr ""
148
-
149
- #: includes/class-wcj-admin-bar.php:241
150
- msgid "Booster - Settings"
151
- msgstr ""
152
-
153
- #: includes/class-wcj-admin-bar.php:245
154
- msgid "Modules"
155
- msgstr ""
156
-
157
- #: includes/class-wcj-admin-bar.php:250 includes/class-wcj-admin-bar.php:561
158
- #: includes/classes/class-wcj-module.php:440
159
- #: includes/settings/wcj-settings-wpml.php:15
160
- msgid "Tools"
161
- msgstr ""
162
-
163
- #: includes/class-wcj-admin-bar.php:269
164
- msgid "Sales by date"
165
- msgstr ""
166
-
167
- #: includes/class-wcj-admin-bar.php:270
168
- msgid "Sales by product"
169
- msgstr ""
170
-
171
- #: includes/class-wcj-admin-bar.php:271
172
- msgid "Sales by category"
173
- msgstr ""
174
-
175
- #: includes/class-wcj-admin-bar.php:272
176
- msgid "Coupons by date"
177
- msgstr ""
178
-
179
- #: includes/class-wcj-admin-bar.php:280 includes/class-wcj-general.php:43
180
- #: includes/functions/wcj-reports-functions.php:62
181
- msgid "Last 7 days"
182
- msgstr ""
183
-
184
- #: includes/class-wcj-admin-bar.php:284
185
- #: includes/functions/wcj-reports-functions.php:57
186
- msgid "This month"
187
- msgstr ""
188
-
189
- #: includes/class-wcj-admin-bar.php:288
190
- #: includes/functions/wcj-reports-functions.php:52
191
- msgid "Last month"
192
- msgstr ""
193
-
194
- #: includes/class-wcj-admin-bar.php:292
195
- #: includes/functions/wcj-reports-functions.php:47
196
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:85
197
- msgid "Year"
198
- msgstr ""
199
-
200
- #: includes/class-wcj-admin-bar.php:315
201
- #: includes/admin/class-wc-settings-jetpack.php:193
202
- msgid "WooCommerce"
203
- msgstr ""
204
-
205
- #: includes/class-wcj-admin-bar.php:318
206
- msgid "WooCommerce settings"
207
- msgstr ""
208
-
209
- #: includes/class-wcj-admin-bar.php:322 includes/class-wcj-admin-bar.php:326
210
- #: includes/class-wcj-admin-bar.php:344 includes/class-wcj-orders.php:23
211
- #: includes/settings/wcj-settings-reports.php:16
212
- #: includes/settings/wcj-settings-reports.php:54
213
- #: includes/settings/wcj-settings-reports.php:95
214
- msgid "Orders"
215
- msgstr ""
216
-
217
- #: includes/class-wcj-admin-bar.php:330
218
- msgid "Add order"
219
- msgstr ""
220
-
221
- #: includes/class-wcj-admin-bar.php:334 includes/class-wcj-admin-bar.php:349
222
- #: includes/settings/wcj-settings-reports.php:115
223
- #: includes/settings/wcj-settings-reports.php:121
224
- msgid "Customers"
225
- msgstr ""
226
-
227
- #: includes/class-wcj-admin-bar.php:340 includes/class-wcj-reports.php:32
228
- msgid "Reports"
229
- msgstr ""
230
-
231
- #: includes/class-wcj-admin-bar.php:353
232
- msgid "Customers vs. guests"
233
- msgstr ""
234
-
235
- #: includes/class-wcj-admin-bar.php:357
236
- msgid "Customer list"
237
- msgstr ""
238
-
239
- #: includes/class-wcj-admin-bar.php:363 includes/class-wcj-stock.php:26
240
- #: includes/reports/wcj-class-reports-stock.php:256
241
- #: includes/settings/wcj-settings-reports.php:127
242
- #: includes/settings/wcj-settings-reports.php:133
243
- #: includes/settings/wcj-settings-reports.php:139
244
- msgid "Stock"
245
- msgstr ""
246
-
247
- #: includes/class-wcj-admin-bar.php:367
248
- msgid "Low in stock"
249
- msgstr ""
250
-
251
- #: includes/class-wcj-admin-bar.php:371
252
- msgid "Out of stock"
253
- msgstr ""
254
-
255
- #: includes/class-wcj-admin-bar.php:375
256
- msgid "Most Stocked"
257
- msgstr ""
258
-
259
- #: includes/class-wcj-admin-bar.php:381
260
- #: includes/class-wcj-eu-vat-number.php:150
261
- msgid "Taxes"
262
- msgstr ""
263
-
264
- #: includes/class-wcj-admin-bar.php:385
265
- msgid "Taxes by code"
266
- msgstr ""
267
-
268
- #: includes/class-wcj-admin-bar.php:389
269
- msgid "Taxes by date"
270
- msgstr ""
271
-
272
- #: includes/class-wcj-admin-bar.php:397 includes/class-wcj-admin-bar.php:401
273
- #: includes/class-wcj-admin-bar.php:445
274
- #: includes/class-wcj-product-bulk-meta-editor.php:259
275
- #: includes/class-wcj-product-by-user.php:96
276
- #: includes/class-wcj-product-by-user.php:132
277
- #: includes/admin/wcj-modules-cats.php:60
278
- #: includes/settings/wcj-settings-shipping-options.php:59
279
- msgid "Products"
280
- msgstr ""
281
-
282
- #: includes/class-wcj-admin-bar.php:405
283
- msgid "Add product"
284
- msgstr ""
285
-
286
- #: includes/class-wcj-admin-bar.php:409
287
- #: includes/class-wcj-product-bulk-price-converter.php:149
288
- #: includes/class-wcj-sku.php:332
289
- #: includes/export/class-wcj-fields-helper.php:318
290
- #: includes/settings/wcj-settings-price-by-user-role.php:114
291
- #: includes/settings/wcj-settings-product-by-user.php:19
292
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
293
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
294
- msgid "Categories"
295
- msgstr ""
296
-
297
- #: includes/class-wcj-admin-bar.php:413
298
- #: includes/export/class-wcj-fields-helper.php:319
299
- #: includes/settings/wcj-settings-product-by-user.php:20
300
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:186
301
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:411
302
- msgid "Tags"
303
- msgstr ""
304
-
305
- #: includes/class-wcj-admin-bar.php:417
306
- msgid "Attributes"
307
- msgstr ""
308
-
309
- #: includes/class-wcj-admin-bar.php:423 includes/class-wcj-admin-bar.php:427
310
- msgid "Coupons"
311
- msgstr ""
312
-
313
- #: includes/class-wcj-admin-bar.php:431
314
- msgid "Add coupon"
315
- msgstr ""
316
-
317
- #: includes/class-wcj-admin-bar.php:441 includes/class-wcj-admin-bar.php:449
318
- #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:24
319
- #: includes/settings/wcj-settings-related-products.php:28
320
- msgid "General"
321
- msgstr ""
322
-
323
- #: includes/class-wcj-admin-bar.php:453
324
- #: includes/settings/wcj-settings-eu-vat-number.php:146
325
- msgid "Display"
326
- msgstr ""
327
-
328
- #: includes/class-wcj-admin-bar.php:457
329
- msgid "Inventory"
330
- msgstr ""
331
-
332
- #: includes/class-wcj-admin-bar.php:461
333
- msgid "Downloadable products"
334
- msgstr ""
335
-
336
- #: includes/class-wcj-admin-bar.php:467
337
- msgid "Tax"
338
- msgstr ""
339
-
340
- #: includes/class-wcj-admin-bar.php:471
341
- msgid "Tax options"
342
- msgstr ""
343
-
344
- #: includes/class-wcj-admin-bar.php:475
345
- msgid "Standard rates"
346
- msgstr ""
347
-
348
- #: includes/class-wcj-admin-bar.php:481
349
- #: includes/settings/wcj-settings-checkout-custom-fields.php:132
350
- #: includes/settings/wcj-settings-checkout-custom-info.php:56
351
- #: includes/settings/wcj-settings-empty-cart.php:59
352
- #: includes/settings/wcj-settings-left-to-free-shipping.php:121
353
- #: includes/settings/wcj-settings-price-by-user-role.php:46
354
- msgid "Shipping"
355
- msgstr ""
356
-
357
- #: includes/class-wcj-admin-bar.php:485
358
- msgid "Shipping zones"
359
- msgstr ""
360
-
361
- #: includes/class-wcj-admin-bar.php:489
362
- msgid "Shipping options"
363
- msgstr ""
364
-
365
- #: includes/class-wcj-admin-bar.php:493
366
- msgid "Shipping classes"
367
- msgstr ""
368
-
369
- #: includes/class-wcj-admin-bar.php:499
370
- msgid "Checkout"
371
- msgstr ""
372
-
373
- #: includes/class-wcj-admin-bar.php:503
374
- msgid "Checkout options"
375
- msgstr ""
376
-
377
- #: includes/class-wcj-admin-bar.php:507
378
- msgid "BACS"
379
- msgstr ""
380
-
381
- #: includes/class-wcj-admin-bar.php:511
382
- msgid "Check payments"
383
- msgstr ""
384
-
385
- #: includes/class-wcj-admin-bar.php:515
386
- msgid "Cash on delivery"
387
- msgstr ""
388
-
389
- #: includes/class-wcj-admin-bar.php:519
390
- msgid "PayPal"
391
- msgstr ""
392
-
393
- #: includes/class-wcj-admin-bar.php:525
394
- #: includes/settings/wcj-settings-checkout-custom-fields.php:134
395
- msgid "Account"
396
- msgstr ""
397
-
398
- #: includes/class-wcj-admin-bar.php:529
399
- msgid "Emails"
400
- msgstr ""
401
-
402
- #: includes/class-wcj-admin-bar.php:533
403
- msgid "API"
404
- msgstr ""
405
-
406
- #: includes/class-wcj-admin-bar.php:541
407
- msgid "Keys/Apps"
408
- msgstr ""
409
-
410
- #: includes/class-wcj-admin-bar.php:545
411
- msgid "Webhooks"
412
- msgstr ""
413
-
414
- #: includes/class-wcj-admin-bar.php:553 includes/class-wcj-admin-bar.php:557
415
- msgid "System status"
416
- msgstr ""
417
-
418
- #: includes/class-wcj-admin-bar.php:565
419
- msgid "Logs"
420
- msgstr ""
421
-
422
- #: includes/class-wcj-admin-bar.php:571
423
- msgid "Extensions"
424
- msgstr ""
425
-
426
- #: includes/class-wcj-admin-tools.php:23 includes/class-wcj-admin-tools.php:30
427
- msgid "Admin Tools"
428
- msgstr ""
429
-
430
- #: includes/class-wcj-admin-tools.php:24
431
- msgid "Booster for WooCommerce debug and log tools."
432
- msgstr ""
433
-
434
- #: includes/class-wcj-admin-tools.php:31
435
- msgid "Log."
436
- msgstr ""
437
-
438
- #: includes/class-wcj-admin-tools.php:32
439
- #: includes/settings/wcj-settings-admin-tools.php:19
440
- msgid "Log"
441
- msgstr ""
442
-
443
- #: includes/class-wcj-admin-tools.php:43
444
- #, php-format
445
- msgid "Current PHP memory limit: %s."
446
- msgstr ""
447
-
448
- #: includes/class-wcj-admin-tools.php:48
449
- #, php-format
450
- msgid "Current PHP time limit: %s seconds."
451
- msgstr ""
452
-
453
- #: includes/class-wcj-admin-tools.php:69
454
- #: includes/settings/wcj-settings-export.php:156
455
- #: includes/settings/wcj-settings-export.php:235
456
- msgid "Product Meta"
457
- msgstr ""
458
-
459
- #: includes/class-wcj-admin-tools.php:86
460
- #: includes/settings/wcj-settings-export.php:86
461
- #: includes/settings/wcj-settings-export.php:154
462
- msgid "Order Meta"
463
- msgstr ""
464
-
465
- #: includes/class-wcj-admin-tools.php:122
466
- msgid "Order Items Meta"
467
- msgstr ""
468
-
469
- #: includes/class-wcj-admin-tools.php:145
470
- msgid "Delete Log"
471
- msgstr ""
472
-
473
- #: includes/class-wcj-admin-tools.php:148
474
- #, php-format
475
- msgid "Now: %s"
476
- msgstr ""
477
-
478
- #: includes/class-wcj-admin-tools.php:178
479
- msgid "NOT DEFINED"
480
- msgstr ""
481
-
482
- #: includes/class-wcj-breadcrumbs.php:28
483
- msgid "Breadcrumbs"
484
- msgstr ""
485
-
486
- #: includes/class-wcj-breadcrumbs.php:29
487
- msgid "Customize WooCommerce breadcrumbs."
488
- msgstr ""
489
-
490
- #: includes/class-wcj-call-for-price.php:23
491
- msgid "Call for Price"
492
- msgstr ""
493
-
494
- #: includes/class-wcj-call-for-price.php:24
495
- msgid ""
496
- "Create any custom price label for all WooCommerce products with empty price."
497
- msgstr ""
498
-
499
- #: includes/class-wcj-cart-customization.php:25
500
- msgid "Cart Customization"
501
- msgstr ""
502
-
503
- #: includes/class-wcj-cart-customization.php:26
504
- msgid ""
505
- "Customize WooCommerce cart - hide coupon field; item remove link; change "
506
- "empty cart \"Return to shop\" button text."
507
- msgstr ""
508
-
509
- #: includes/class-wcj-cart-customization.php:55
510
- #: includes/settings/wcj-settings-cart-customization.php:41
511
- msgid "Return to shop"
512
- msgstr ""
513
-
514
- #: includes/class-wcj-cart.php:23
515
- msgid "Cart Custom Info"
516
- msgstr ""
517
-
518
- #: includes/class-wcj-cart.php:24
519
- msgid "Add custom info to WooCommerce cart page."
520
- msgstr ""
521
-
522
- #: includes/class-wcj-checkout-core-fields.php:23
523
- msgid "Checkout Core Fields"
524
- msgstr ""
525
-
526
- #: includes/class-wcj-checkout-core-fields.php:24
527
- msgid ""
528
- "Customize WooCommerce core checkout fields. Disable/enable fields, set "
529
- "required, change labels and/or placeholders."
530
- msgstr ""
531
-
532
- #: includes/class-wcj-checkout-custom-fields.php:23
533
- msgid "Checkout Custom Fields"
534
- msgstr ""
535
-
536
- #: includes/class-wcj-checkout-custom-fields.php:24
537
- msgid "Add custom fields to WooCommerce checkout page."
538
- msgstr ""
539
-
540
- #: includes/class-wcj-checkout-custom-info.php:24
541
- msgid "Checkout Custom Info"
542
- msgstr ""
543
-
544
- #: includes/class-wcj-checkout-custom-info.php:25
545
- msgid "Add custom info to WooCommerce checkout page."
546
- msgstr ""
547
-
548
- #: includes/class-wcj-checkout-customization.php:29
549
- msgid "Checkout Customization"
550
- msgstr ""
551
-
552
- #: includes/class-wcj-checkout-customization.php:30
553
- msgid ""
554
- "Customize WooCommerce checkout - hide \"Order Again\" button; disable "
555
- "selected fields on checkout for logged users and more."
556
- msgstr ""
557
-
558
- #: includes/class-wcj-checkout-customization.php:80
559
- #: includes/settings/wcj-settings-checkout-customization.php:72
560
- msgid "This field can not be changed"
561
- msgstr ""
562
-
563
- #: includes/class-wcj-checkout-files-upload.php:26
564
- msgid "Checkout Files Upload"
565
- msgstr ""
566
-
567
- #: includes/class-wcj-checkout-files-upload.php:27
568
- msgid "Let customers upload files on (or after) WooCommerce checkout."
569
- msgstr ""
570
-
571
- #: includes/class-wcj-checkout-files-upload.php:86
572
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:52
573
- #: includes/settings/wcj-settings-checkout-files-upload.php:37
574
- msgid "File"
575
- msgstr ""
576
-
577
- #: includes/class-wcj-checkout-files-upload.php:108
578
- #: includes/settings/wcj-settings-checkout-files-upload.php:122
579
- msgid "File is required!"
580
- msgstr ""
581
-
582
- #: includes/class-wcj-checkout-files-upload.php:118
583
- #: includes/class-wcj-checkout-files-upload.php:255
584
- #: includes/settings/wcj-settings-checkout-files-upload.php:115
585
- #, php-format
586
- msgid "Wrong file type: \"%s\"!"
587
- msgstr ""
588
-
589
- #: includes/class-wcj-checkout-files-upload.php:138
590
- msgid "Uploaded Files"
591
- msgstr ""
592
-
593
- #: includes/class-wcj-checkout-files-upload.php:170
594
- msgid "No files uploaded."
595
- msgstr ""
596
-
597
- #: includes/class-wcj-checkout-files-upload.php:227
598
- #: includes/class-wcj-checkout-files-upload.php:235
599
- #: includes/settings/wcj-settings-checkout-files-upload.php:145
600
- #, php-format
601
- msgid "File \"%s\" was successfully removed."
602
- msgstr ""
603
-
604
- #: includes/class-wcj-checkout-files-upload.php:267
605
- #: includes/settings/wcj-settings-checkout-files-upload.php:130
606
- #, php-format
607
- msgid "File \"%s\" was successfully uploaded."
608
- msgstr ""
609
-
610
- #: includes/class-wcj-checkout-files-upload.php:275
611
- #: includes/settings/wcj-settings-checkout-files-upload.php:137
612
- msgid "Please select file to upload!"
613
- msgstr ""
614
-
615
- #: includes/class-wcj-checkout-files-upload.php:489
616
- #: includes/class-wcj-checkout-files-upload.php:490
617
- #: includes/settings/wcj-settings-checkout-files-upload.php:100
618
- msgid "Upload"
619
- msgstr ""
620
-
621
- #: includes/class-wcj-checkout-files-upload.php:498
622
- #: includes/class-wcj-checkout-files-upload.php:499
623
- #: includes/settings/wcj-settings-checkout-files-upload.php:107
624
- #: includes/settings/wcj-settings-sorting.php:144
625
- msgid "Remove"
626
- msgstr ""
627
-
628
- #: includes/class-wcj-crowdfunding.php:24
629
- msgid "Crowdfunding"
630
- msgstr ""
631
-
632
- #: includes/class-wcj-crowdfunding.php:25
633
- msgid "Add crowdfunding products to WooCommerce."
634
- msgstr ""
635
-
636
- #: includes/class-wcj-crowdfunding.php:27
637
- msgid "When enabled, module will add Crowdfunding metabox to product edit."
638
- msgstr ""
639
-
640
- #: includes/class-wcj-crowdfunding.php:29
641
- #, php-format
642
- msgid ""
643
- "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
644
- "\">Booster's crowdfunding shortcodes</a>."
645
- msgstr ""
646
-
647
- #: includes/class-wcj-crowdfunding.php:33
648
- #, php-format
649
- msgid ""
650
- "Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
651
- "a>."
652
- msgstr ""
653
-
654
- #: includes/class-wcj-crowdfunding.php:37
655
- #, php-format
656
- msgid ""
657
- "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
658
- "module</a>."
659
- msgstr ""
660
-
661
- #: includes/class-wcj-currencies.php:23
662
- msgid "Currencies"
663
- msgstr ""
664
-
665
- #: includes/class-wcj-currencies.php:24
666
- msgid ""
667
- "Add all world currencies to your WooCommerce store; change currency symbol."
668
- msgstr ""
669
-
670
- #: includes/class-wcj-currencies.php:69
671
- msgid "Booster: Currency Symbol"
672
- msgstr ""
673
-
674
- #: includes/class-wcj-currencies.php:70
675
- msgid "This sets the currency symbol."
676
- msgstr ""
677
-
678
- #: includes/class-wcj-currency-exchange-rates.php:24
679
- msgid "Currency Exchange Rates"
680
- msgstr ""
681
-
682
- #: includes/class-wcj-currency-exchange-rates.php:25
683
- msgid "Automatic currency exchange rates for WooCommerce."
684
- msgstr ""
685
-
686
- #: includes/class-wcj-currency-external-products.php:23
687
- msgid "Currency for External Products"
688
- msgstr ""
689
-
690
- #: includes/class-wcj-currency-external-products.php:24
691
- msgid "Set different currency for external WooCommerce products."
692
- msgstr ""
693
-
694
- #: includes/class-wcj-currency-per-product.php:25
695
- msgid "Currency per Product"
696
- msgstr ""
697
-
698
- #: includes/class-wcj-currency-per-product.php:26
699
- msgid "Display prices for WooCommerce products in different currencies."
700
- msgstr ""
701
-
702
- #: includes/class-wcj-currency-per-product.php:196
703
- #: includes/settings/wcj-settings-currency-per-product.php:43
704
- msgid ""
705
- "Only one product can be added to the cart. Clear the cart or finish the "
706
- "order, before adding another product to the cart."
707
- msgstr ""
708
-
709
- #: includes/class-wcj-currency-per-product.php:211
710
- #: includes/settings/wcj-settings-currency-per-product.php:50
711
- msgid ""
712
- "Only products with same currency can be added to the cart. Clear the cart or "
713
- "finish the order, before adding products with another currency to the cart."
714
- msgstr ""
715
-
716
- #: includes/class-wcj-currency-per-product.php:257
717
- #, php-format
718
- msgctxt "Price range: from-to"
719
- msgid "%1$s&ndash;%2$s"
720
- msgstr ""
721
-
722
- #: includes/class-wcj-custom-css.php:28
723
- msgid "Custom CSS"
724
- msgstr ""
725
-
726
- #: includes/class-wcj-custom-css.php:29
727
- msgid "Separate custom CSS for front and back end. Per product CSS."
728
- msgstr ""
729
-
730
- #: includes/class-wcj-custom-js.php:28
731
- msgid "Custom JS"
732
- msgstr ""
733
-
734
- #: includes/class-wcj-custom-js.php:29
735
- msgid "Separate custom JS for front and back end."
736
- msgstr ""
737
-
738
- #: includes/class-wcj-email-options.php:26
739
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
740
- #: includes/settings/wcj-settings-offer-price.php:226
741
- msgid "Email Options"
742
- msgstr ""
743
-
744
- #: includes/class-wcj-email-options.php:27
745
- msgid ""
746
- "WooCommerce email options. E.g.: add another email recipient(s) to all "
747
- "WooCommerce emails."
748
- msgstr ""
749
-
750
- #: includes/class-wcj-email-options.php:93
751
- msgid "Booster: Email Forwarding Options"
752
- msgstr ""
753
-
754
- #: includes/class-wcj-email-options.php:94
755
- msgid "Email Forwarding Options"
756
- msgstr ""
757
-
758
- #: includes/class-wcj-email-options.php:96
759
- msgid ""
760
- "This section lets you add another email recipient(s) to all WooCommerce "
761
- "emails. Leave blank to disable."
762
- msgstr ""
763
-
764
- #: includes/class-wcj-email-options.php:100
765
- msgid "Cc Email"
766
- msgstr ""
767
-
768
- #: includes/class-wcj-email-options.php:101
769
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
770
- msgstr ""
771
-
772
- #: includes/class-wcj-email-options.php:107
773
- msgid "Bcc Email"
774
- msgstr ""
775
-
776
- #: includes/class-wcj-email-options.php:108
777
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
778
- msgstr ""
779
-
780
- #: includes/class-wcj-emails-verification.php:26
781
- msgid "Email Verification"
782
- msgstr ""
783
-
784
- #: includes/class-wcj-emails-verification.php:27
785
- msgid "Add WooCommerce email verification."
786
- msgstr ""
787
-
788
- #: includes/class-wcj-emails-verification.php:71
789
- #: includes/settings/wcj-settings-emails-verification.php:72
790
- msgid ""
791
- "Your account has to be activated before you can login. You can resend email "
792
- "with verification link by clicking <a href=\"%resend_verification_url%"
793
- "\">here</a>."
794
- msgstr ""
795
-
796
- #: includes/class-wcj-emails-verification.php:92
797
- #: includes/class-wcj-emails-verification.php:94
798
- #: includes/settings/wcj-settings-emails-verification.php:55
799
- msgid ""
800
- "Please click the following link to verify your email:<br><br><a href="
801
- "\"%verification_url%\">%verification_url%</a>"
802
- msgstr ""
803
-
804
- #: includes/class-wcj-emails-verification.php:97
805
- #: includes/class-wcj-emails-verification.php:99
806
- #: includes/settings/wcj-settings-emails-verification.php:45
807
- msgid "Please activate your account"
808
- msgstr ""
809
-
810
- #: includes/class-wcj-emails-verification.php:117
811
- #: includes/settings/wcj-settings-emails-verification.php:64
812
- msgid "<strong>Success:</strong> Your account has been activated!"
813
- msgstr ""
814
-
815
- #: includes/class-wcj-emails-verification.php:126
816
- #: includes/settings/wcj-settings-emails-verification.php:80
817
- msgid ""
818
- "<strong>Error:</strong> Activation failed, please contact our administrator. "
819
- "You can resend email with verification link by clicking <a href="
820
- "\"%resend_verification_url%\">here</a>."
821
- msgstr ""
822
-
823
- #: includes/class-wcj-emails-verification.php:135
824
- #: includes/settings/wcj-settings-emails-verification.php:87
825
- msgid ""
826
- "Thank you for your registration. Your account has to be activated before you "
827
- "can login. Please check your email."
828
- msgstr ""
829
-
830
- #: includes/class-wcj-emails-verification.php:140
831
- #: includes/settings/wcj-settings-emails-verification.php:94
832
- msgid ""
833
- "<strong>Success:</strong> Your activation email has been resend. Please "
834
- "check your email."
835
- msgstr ""
836
-
837
- #: includes/class-wcj-emails.php:23
838
- #: includes/settings/wcj-settings-emails.php:14
839
- msgid "Custom Emails"
840
- msgstr ""
841
-
842
- #: includes/class-wcj-emails.php:24
843
- msgid "Add custom emails to WooCommerce."
844
- msgstr ""
845
-
846
- #: includes/class-wcj-empty-cart-button.php:25
847
- #: includes/shortcodes/class-wcj-general-shortcodes.php:128
848
- msgid "Empty Cart Button"
849
- msgstr ""
850
-
851
- #: includes/class-wcj-empty-cart-button.php:26
852
- msgid ""
853
- "Add (and customize) \"Empty Cart\" button to WooCommerce cart and checkout "
854
- "pages."
855
- msgstr ""
856
-
857
- #: includes/class-wcj-eu-vat-number.php:24
858
- #: includes/class-wcj-eu-vat-number.php:227
859
- #: includes/settings/wcj-settings-eu-vat-number.php:22
860
- #: includes/settings/wcj-settings-eu-vat-number.php:29
861
- msgid "EU VAT Number"
862
- msgstr ""
863
-
864
- #: includes/class-wcj-eu-vat-number.php:25
865
- msgid ""
866
- "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
867
- "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
868
- "WooCommerce."
869
- msgstr ""
870
-
871
- #: includes/class-wcj-eu-vat-number.php:31
872
- msgid "EU Countries VAT Rates"
873
- msgstr ""
874
-
875
- #: includes/class-wcj-eu-vat-number.php:32
876
- msgid "Add all EU countries VAT standard rates to WooCommerce."
877
- msgstr ""
878
-
879
- #: includes/class-wcj-eu-vat-number.php:138
880
- msgid "Customer IP"
881
- msgstr ""
882
-
883
- #: includes/class-wcj-eu-vat-number.php:142
884
- msgid "Country by IP"
885
- msgstr ""
886
-
887
- #: includes/class-wcj-eu-vat-number.php:146
888
- msgid "Customer EU VAT Number"
889
- msgstr ""
890
-
891
- #: includes/class-wcj-eu-vat-number.php:297
892
- #: includes/settings/wcj-settings-eu-vat-number.php:165
893
- msgid "Validating VAT. Please wait..."
894
- msgstr ""
895
-
896
- #: includes/class-wcj-eu-vat-number.php:298
897
- #: includes/settings/wcj-settings-eu-vat-number.php:172
898
- msgid "VAT is valid."
899
- msgstr ""
900
-
901
- #: includes/class-wcj-eu-vat-number.php:299
902
- #: includes/settings/wcj-settings-eu-vat-number.php:179
903
- msgid "VAT is not valid."
904
- msgstr ""
905
-
906
- #: includes/class-wcj-eu-vat-number.php:300
907
- #: includes/settings/wcj-settings-eu-vat-number.php:187
908
- msgid "Validation failed. Please try again."
909
- msgstr ""
910
-
911
- #: includes/class-wcj-eu-vat-number.php:404
912
- #: includes/settings/wcj-settings-eu-vat-number.php:84
913
- msgid "<strong>EU VAT Number</strong> is not valid."
914
- msgstr ""
915
-
916
- #: includes/class-wcj-export-import.php:26
917
- #: includes/admin/class-wc-settings-jetpack.php:272
918
- msgid "Export"
919
- msgstr ""
920
-
921
- #: includes/class-wcj-export-import.php:27
922
- msgid "WooCommerce export tools."
923
- msgstr ""
924
-
925
- #: includes/class-wcj-export-import.php:33
926
- msgid "Export Customers"
927
- msgstr ""
928
-
929
- #: includes/class-wcj-export-import.php:34
930
- msgid "Export Customers."
931
- msgstr ""
932
-
933
- #: includes/class-wcj-export-import.php:37
934
- msgid "Export Customers from Orders"
935
- msgstr ""
936
-
937
- #: includes/class-wcj-export-import.php:38
938
- msgid "Export Customers (extracted from orders)."
939
- msgstr ""
940
-
941
- #: includes/class-wcj-export-import.php:38
942
- msgid "Customers are identified by billing email."
943
- msgstr ""
944
-
945
- #: includes/class-wcj-export-import.php:41
946
- msgid "Export Orders"
947
- msgstr ""
948
-
949
- #: includes/class-wcj-export-import.php:42
950
- msgid "Export Orders."
951
- msgstr ""
952
-
953
- #: includes/class-wcj-export-import.php:45
954
- msgid "Export Orders Items"
955
- msgstr ""
956
-
957
- #: includes/class-wcj-export-import.php:46
958
- msgid "Export Orders Items."
959
- msgstr ""
960
-
961
- #: includes/class-wcj-export-import.php:49
962
- msgid "Export Products"
963
- msgstr ""
964
-
965
- #: includes/class-wcj-export-import.php:50
966
- msgid "Export Products."
967
- msgstr ""
968
-
969
- #: includes/class-wcj-export-import.php:193
970
- #: includes/class-wcj-export-import.php:199
971
- msgid "Filter by Billing Country"
972
- msgstr ""
973
-
974
- #: includes/class-wcj-export-import.php:194
975
- msgid "Filter by Product Title"
976
- msgstr ""
977
-
978
- #: includes/class-wcj-export-import.php:213
979
- #: includes/reports/wcj-class-reports-sales-daily.php:188
980
- #: includes/settings/wcj-settings-orders.php:33
981
- msgid "Filter"
982
- msgstr ""
983
-
984
- #: includes/class-wcj-export-import.php:232
985
- msgid "Download CSV"
986
- msgstr ""
987
-
988
- #: includes/class-wcj-export-import.php:234
989
- msgid "Download XML"
990
- msgstr ""
991
-
992
- #: includes/class-wcj-export-import.php:235
993
- msgid "Filter by All Fields"
994
- msgstr ""
995
-
996
- #: includes/class-wcj-free-price.php:26
997
- msgid "Free Price Labels"
998
- msgstr ""
999
-
1000
- #: includes/class-wcj-free-price.php:27
1001
- msgid "WooCommerce free price labels."
1002
- msgstr ""
1003
-
1004
- #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
1005
- #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
1006
- #: includes/settings/wcj-settings-free-price.php:27
1007
- msgid "Free!"
1008
- msgstr ""
1009
-
1010
- #: includes/class-wcj-general.php:24
1011
- msgid "Custom roles tool. Shortcodes in WordPress text widgets."
1012
- msgstr ""
1013
-
1014
- #: includes/class-wcj-general.php:30
1015
- msgid "Products Attributes"
1016
- msgstr ""
1017
-
1018
- #: includes/class-wcj-general.php:31
1019
- msgid "All Products and All Attributes."
1020
- msgstr ""
1021
-
1022
- #: includes/class-wcj-general.php:34
1023
- msgid "Add/Manage Custom Roles"
1024
- msgstr ""
1025
-
1026
- #: includes/class-wcj-general.php:35
1027
- msgid "Custom Roles"
1028
- msgstr ""
1029
-
1030
- #: includes/class-wcj-general.php:36
1031
- msgid "Manage Custom Roles."
1032
- msgstr ""
1033
-
1034
- #: includes/class-wcj-general.php:42
1035
- msgid "Last 24 hours"
1036
- msgstr ""
1037
-
1038
- #: includes/class-wcj-general.php:44
1039
- msgid "Last 28 days"
1040
- msgstr ""
1041
-
1042
- #: includes/class-wcj-general.php:45
1043
- msgid "All time"
1044
- msgstr ""
1045
-
1046
- #: includes/class-wcj-general.php:164
1047
- msgid "Acquisition Source"
1048
- msgstr ""
1049
-
1050
- #: includes/class-wcj-general.php:189
1051
- msgid "Other"
1052
- msgstr ""
1053
-
1054
- #: includes/class-wcj-general.php:206
1055
- #: includes/settings/wcj-settings-products-xml.php:115
1056
- msgid "URL:"
1057
- msgstr ""
1058
-
1059
- #: includes/class-wcj-general.php:207
1060
- #: includes/widgets/class-wcj-widget-multicurrency.php:74
1061
- msgid "Type:"
1062
- msgstr ""
1063
-
1064
- #: includes/class-wcj-general.php:260
1065
- #, php-format
1066
- msgid "Top %d countries by visits"
1067
- msgstr ""
1068
-
1069
- #: includes/class-wcj-general.php:328
1070
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:59
1071
- #: includes/settings/wcj-settings-checkout-custom-fields.php:92
1072
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
1073
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
1074
- msgid "Country"
1075
- msgstr ""
1076
-
1077
- #: includes/class-wcj-general.php:328
1078
- msgid "Visits"
1079
- msgstr ""
1080
-
1081
- #: includes/class-wcj-general.php:338
1082
- msgid "No stats yet."
1083
- msgstr ""
1084
-
1085
- #: includes/class-wcj-general.php:343 includes/class-wcj-my-account.php:75
1086
- #: includes/class-wcj-order-custom-statuses.php:359
1087
- #: includes/class-wcj-product-bulk-meta-editor.php:275
1088
- #: includes/class-wcj-product-by-user.php:206
1089
- #: includes/class-wcj-purchase-data.php:93
1090
- #: includes/classes/class-wcj-module.php:576
1091
- #: includes/functions/wcj-html-functions.php:95
1092
- #: includes/reports/wcj-class-reports-monthly-sales.php:334
1093
- #: includes/settings/wcj-settings-empty-cart.php:80
1094
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1095
- msgid "Are you sure?"
1096
- msgstr ""
1097
-
1098
- #: includes/class-wcj-general.php:344
1099
- msgid "Delete all tracking data"
1100
- msgstr ""
1101
-
1102
- #: includes/class-wcj-general.php:349
1103
- #, php-format
1104
- msgid "Stats generated at %s. Next update is scheduled at %s."
1105
- msgstr ""
1106
-
1107
- #: includes/class-wcj-general.php:350
1108
- msgid "Update now"
1109
- msgstr ""
1110
-
1111
- #: includes/class-wcj-general.php:454
1112
- msgid "Booster User Role"
1113
- msgstr ""
1114
-
1115
- #: includes/class-wcj-general.php:518
1116
- msgid "Both fields are required!"
1117
- msgstr ""
1118
-
1119
- #: includes/class-wcj-general.php:521
1120
- msgid "Role ID must not be numbers only!"
1121
- msgstr ""
1122
-
1123
- #: includes/class-wcj-general.php:525
1124
- msgid "Role successfully added!"
1125
- msgstr ""
1126
-
1127
- #: includes/class-wcj-general.php:527
1128
- msgid "Role already exists!"
1129
- msgstr ""
1130
-
1131
- #: includes/class-wcj-general.php:535
1132
- #, php-format
1133
- msgid "Role %s successfully deleted!"
1134
- msgstr ""
1135
-
1136
- #: includes/class-wcj-general.php:541 includes/class-wcj-general.php:554
1137
- #: includes/class-wcj-sku.php:330
1138
- #: includes/reports/wcj-class-reports-sales.php:191
1139
- #: includes/settings/wcj-settings-product-by-user.php:161
1140
- #: includes/settings/wcj-settings-related-products.php:21
1141
- msgid "ID"
1142
- msgstr ""
1143
-
1144
- #: includes/class-wcj-general.php:541 includes/class-wcj-general.php:555
1145
- #: includes/class-wcj-offer-price.php:116
1146
- #: includes/export/class-wcj-fields-helper.php:282
1147
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
1148
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
1149
- msgid "Name"
1150
- msgstr ""
1151
-
1152
- #: includes/class-wcj-general.php:541
1153
- #: includes/class-wcj-order-custom-statuses.php:337
1154
- #: includes/class-wcj-product-by-user.php:197
1155
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:125
1156
- msgid "Actions"
1157
- msgstr ""
1158
-
1159
- #: includes/class-wcj-general.php:547
1160
- #: includes/class-wcj-order-custom-statuses.php:359
1161
- #: includes/class-wcj-product-bulk-meta-editor.php:359
1162
- #: includes/class-wcj-product-by-user.php:206
1163
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:155
1164
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:320
1165
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1166
- msgid "Delete"
1167
- msgstr ""
1168
-
1169
- #: includes/class-wcj-general.php:550
1170
- msgid "Existing Roles"
1171
- msgstr ""
1172
-
1173
- #: includes/class-wcj-general.php:556
1174
- msgid "Add New Role"
1175
- msgstr ""
1176
-
1177
- #: includes/class-wcj-general.php:559
1178
- #: includes/class-wcj-order-custom-statuses.php:384
1179
- #: includes/settings/wcj-settings-checkout-custom-fields.php:22
1180
- #: includes/settings/wcj-settings-checkout-custom-fields.php:29
1181
- #: includes/settings/wcj-settings-checkout-custom-fields.php:36
1182
- #: includes/settings/wcj-settings-email-options.php:20
1183
- #: includes/settings/wcj-settings-eu-vat-number.php:157
1184
- #: includes/settings/wcj-settings-eu-vat-number.php:193
1185
- #: includes/settings/wcj-settings-export.php:27
1186
- #: includes/settings/wcj-settings-order-custom-statuses.php:29
1187
- #: includes/settings/wcj-settings-order-custom-statuses.php:36
1188
- #: includes/settings/wcj-settings-order-custom-statuses.php:58
1189
- #: includes/settings/wcj-settings-order-min-amount.php:46
1190
- #: includes/settings/wcj-settings-orders.php:168
1191
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:134
1192
- #: includes/settings/wcj-settings-product-by-country.php:41
1193
- #: includes/settings/wcj-settings-product-by-user.php:114
1194
- #: includes/settings/wcj-settings-purchase-data.php:134
1195
- #: includes/settings/wcj-settings-purchase-data.php:143
1196
- #: includes/settings/wcj-settings-purchase-data.php:162
1197
- #: includes/settings/wcj-settings-purchase-data.php:169
1198
- #: includes/settings/wcj-settings-sku.php:165
1199
- #: includes/settings/wcj-settings-sku.php:180
1200
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1201
- msgid "Add"
1202
- msgstr ""
1203
-
1204
- #: includes/class-wcj-general.php:622 includes/class-wcj-general.php:664
1205
- #: includes/class-wcj-product-bulk-meta-editor.php:331
1206
- #: includes/class-wcj-product-bulk-price-converter.php:148
1207
- #: includes/class-wcj-sku.php:331
1208
- #: includes/reports/wcj-class-reports-sales.php:192
1209
- #: includes/reports/wcj-class-reports-stock.php:253
1210
- msgid "Product"
1211
- msgstr ""
1212
-
1213
- #: includes/class-wcj-general.php:623 includes/class-wcj-general.php:665
1214
- #: includes/reports/wcj-class-reports-stock.php:254
1215
- msgid "Category"
1216
- msgstr ""
1217
-
1218
- #: includes/class-wcj-general.php:685
1219
- msgid "Total Products:"
1220
- msgstr ""
1221
-
1222
- #: includes/class-wcj-global-discount.php:26
1223
- msgid "Global Discount"
1224
- msgstr ""
1225
-
1226
- #: includes/class-wcj-global-discount.php:27
1227
- msgid "Add global discount to all WooCommerce products."
1228
- msgstr ""
1229
-
1230
- #: includes/class-wcj-left-to-free-shipping.php:25
1231
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:50
1232
- msgid "Left to Free Shipping"
1233
- msgstr ""
1234
-
1235
- #: includes/class-wcj-left-to-free-shipping.php:26
1236
- msgid "Display \"left to free shipping\" info in WooCommerce."
1237
- msgstr ""
1238
-
1239
- #: includes/class-wcj-left-to-free-shipping.php:62
1240
- #: includes/class-wcj-left-to-free-shipping.php:72
1241
- #: includes/class-wcj-left-to-free-shipping.php:82
1242
- #: includes/functions/wcj-general-functions.php:184
1243
- #: includes/settings/wcj-settings-left-to-free-shipping.php:33
1244
- #: includes/settings/wcj-settings-left-to-free-shipping.php:68
1245
- #: includes/settings/wcj-settings-left-to-free-shipping.php:107
1246
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:51
1247
- #, php-format
1248
- msgid "%left_to_free% left to free shipping"
1249
- msgstr ""
1250
-
1251
- #: includes/class-wcj-mini-cart.php:24
1252
- msgid "Mini Cart Custom Info"
1253
- msgstr ""
1254
-
1255
- #: includes/class-wcj-mini-cart.php:25
1256
- msgid "Add custom info to WooCommerce mini cart widget."
1257
- msgstr ""
1258
-
1259
- #: includes/class-wcj-more-button-labels.php:24
1260
- msgid "More Button Labels"
1261
- msgstr ""
1262
-
1263
- #: includes/class-wcj-more-button-labels.php:25
1264
- msgid "Set WooCommerce \"Place order\" button label."
1265
- msgstr ""
1266
-
1267
- #: includes/class-wcj-multicurrency-product-base-price.php:25
1268
- msgid "Multicurrency Product Base Price"
1269
- msgstr ""
1270
-
1271
- #: includes/class-wcj-multicurrency-product-base-price.php:26
1272
- msgid "Enter prices for WooCommerce products in different currencies."
1273
- msgstr ""
1274
-
1275
- #: includes/class-wcj-multicurrency.php:24
1276
- msgid "Multicurrency (Currency Switcher)"
1277
- msgstr ""
1278
-
1279
- #: includes/class-wcj-multicurrency.php:25
1280
- msgid "Add multiple currencies (currency switcher) to WooCommerce."
1281
- msgstr ""
1282
-
1283
- #: includes/class-wcj-multicurrency.php:27
1284
- msgid ""
1285
- "After setting currencies in the Currencies Options below, use <em>Booster - "
1286
- "Multicurrency Switcher</em> widget, or <em>"
1287
- "[wcj_currency_select_drop_down_list]</em> shortcode. If you want to insert "
1288
- "switcher in your PHP code, just use <em>echo do_shortcode"
1289
- "( '[wcj_currency_select_drop_down_list]' );</em>"
1290
- msgstr ""
1291
-
1292
- #: includes/class-wcj-my-account.php:25
1293
- msgid "My Account"
1294
- msgstr ""
1295
-
1296
- #: includes/class-wcj-my-account.php:26
1297
- msgid "WooCommerce \"My Account\" page customization."
1298
- msgstr ""
1299
-
1300
- #: includes/class-wcj-offer-price.php:36
1301
- msgid "Offer Your Price"
1302
- msgstr ""
1303
-
1304
- #: includes/class-wcj-offer-price.php:37
1305
- msgid "Let your customers to suggest their price for products in WooCommerce."
1306
- msgstr ""
1307
-
1308
- #: includes/class-wcj-offer-price.php:92
1309
- msgid "Booster: Offer Price History"
1310
- msgstr ""
1311
-
1312
- #: includes/class-wcj-offer-price.php:108
1313
- msgid "No price offers yet."
1314
- msgstr ""
1315
-
1316
- #: includes/class-wcj-offer-price.php:113
1317
- #: includes/functions/wcj-reports-functions.php:21
1318
- #: includes/functions/wcj-reports-functions.php:24
1319
- #: includes/settings/wcj-settings-related-products.php:14
1320
- msgid "Date"
1321
- msgstr ""
1322
-
1323
- #: includes/class-wcj-offer-price.php:114
1324
- #: includes/export/class-wcj-fields-helper.php:288
1325
- #: includes/reports/wcj-class-reports-stock.php:255
1326
- #: includes/settings/wcj-settings-related-products.php:24
1327
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
1328
- msgid "Price"
1329
- msgstr ""
1330
-
1331
- #: includes/class-wcj-offer-price.php:115
1332
- #: includes/settings/wcj-settings-currency-per-product.php:41
1333
- #: includes/settings/wcj-settings-currency-per-product.php:48
1334
- #: includes/settings/wcj-settings-product-by-date.php:69
1335
- #: includes/settings/wcj-settings-product-by-time.php:69
1336
- msgid "Message"
1337
- msgstr ""
1338
-
1339
- #: includes/class-wcj-offer-price.php:117
1340
- #: includes/export/class-wcj-fields-helper.php:75
1341
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:61
1342
- #: includes/reports/wcj-class-reports-customers.php:90
1343
- #: includes/settings/wcj-settings-checkout-custom-fields.php:94
1344
- msgid "Email"
1345
- msgstr ""
1346
-
1347
- #: includes/class-wcj-offer-price.php:118
1348
- #: includes/export/class-wcj-fields-helper.php:74
1349
- msgid "Customer ID"
1350
- msgstr ""
1351
-
1352
- #: includes/class-wcj-offer-price.php:119
1353
- msgid "Sent to"
1354
- msgstr ""
1355
-
1356
- #: includes/class-wcj-offer-price.php:141
1357
- #, php-format
1358
- msgid "Average offer: %s (from %s offer(s))"
1359
- msgstr ""
1360
-
1361
- #: includes/class-wcj-offer-price.php:148
1362
- msgid "Delete history"
1363
- msgstr ""
1364
-
1365
- #: includes/class-wcj-offer-price.php:149
1366
- msgid "Update product after checking the box."
1367
- msgstr ""
1368
-
1369
- #: includes/class-wcj-offer-price.php:219
1370
- #: includes/settings/wcj-settings-offer-price.php:119
1371
- #, php-format
1372
- msgid "Your price (%s)"
1373
- msgstr ""
1374
-
1375
- #: includes/class-wcj-offer-price.php:225
1376
- #: includes/settings/wcj-settings-offer-price.php:190
1377
- #, php-format
1378
- msgid "Suggest your price for %s"
1379
- msgstr ""
1380
-
1381
- #: includes/class-wcj-offer-price.php:280
1382
- #: includes/settings/wcj-settings-offer-price.php:158
1383
- msgid "Your email"
1384
- msgstr ""
1385
-
1386
- #: includes/class-wcj-offer-price.php:284
1387
- #: includes/settings/wcj-settings-offer-price.php:166
1388
- msgid "Your name"
1389
- msgstr ""
1390
-
1391
- #: includes/class-wcj-offer-price.php:288
1392
- #: includes/settings/wcj-settings-offer-price.php:174
1393
- msgid "Your message"
1394
- msgstr ""
1395
-
1396
- #: includes/class-wcj-offer-price.php:292
1397
- #: includes/settings/wcj-settings-offer-price.php:197
1398
- msgid "Send"
1399
- msgstr ""
1400
-
1401
- #: includes/class-wcj-offer-price.php:294
1402
- #: includes/settings/wcj-settings-offer-price.php:182
1403
- msgid "Send a copy to your email"
1404
- msgstr ""
1405
-
1406
- #: includes/class-wcj-offer-price.php:342
1407
- #: includes/settings/wcj-settings-offer-price.php:46
1408
- msgid "Make an offer"
1409
- msgstr ""
1410
-
1411
- #: includes/class-wcj-offer-price.php:395
1412
- #: includes/settings/wcj-settings-offer-price.php:256
1413
- #, php-format
1414
- msgid "Product: %s"
1415
- msgstr ""
1416
-
1417
- #: includes/class-wcj-offer-price.php:396
1418
- #: includes/settings/wcj-settings-offer-price.php:257
1419
- #, php-format
1420
- msgid "Offered price: %s"
1421
- msgstr ""
1422
-
1423
- #: includes/class-wcj-offer-price.php:397
1424
- #: includes/settings/wcj-settings-offer-price.php:258
1425
- #, php-format
1426
- msgid "From: %s %s"
1427
- msgstr ""
1428
-
1429
- #: includes/class-wcj-offer-price.php:398
1430
- #: includes/settings/wcj-settings-offer-price.php:259
1431
- #, php-format
1432
- msgid "Message: %s"
1433
- msgstr ""
1434
-
1435
- #: includes/class-wcj-offer-price.php:409
1436
- #: includes/settings/wcj-settings-offer-price.php:248
1437
- msgid "Price Offer"
1438
- msgstr ""
1439
-
1440
- #: includes/class-wcj-offer-price.php:419
1441
- #: includes/settings/wcj-settings-offer-price.php:218
1442
- msgid "Your price offer has been sent."
1443
- msgstr ""
1444
-
1445
- #: includes/class-wcj-old-slugs.php:23
1446
- msgid "Old Slugs"
1447
- msgstr ""
1448
-
1449
- #: includes/class-wcj-old-slugs.php:24
1450
- msgid "Remove old WooCommerce products slugs."
1451
- msgstr ""
1452
-
1453
- #: includes/class-wcj-old-slugs.php:30
1454
- msgid "Remove Old Slugs"
1455
- msgstr ""
1456
-
1457
- #: includes/class-wcj-old-slugs.php:31
1458
- msgid "Tool removes old slugs/permalinks from database."
1459
- msgstr ""
1460
-
1461
- #: includes/class-wcj-old-slugs.php:48
1462
- msgid "Old slug"
1463
- msgstr ""
1464
-
1465
- #: includes/class-wcj-old-slugs.php:49
1466
- msgid "Post title"
1467
- msgstr ""
1468
-
1469
- #: includes/class-wcj-old-slugs.php:50
1470
- msgid "Post id"
1471
- msgstr ""
1472
-
1473
- #: includes/class-wcj-old-slugs.php:51
1474
- msgid "Post type"
1475
- msgstr ""
1476
-
1477
- #: includes/class-wcj-old-slugs.php:52
1478
- msgid "Current slug"
1479
- msgstr ""
1480
-
1481
- #: includes/class-wcj-old-slugs.php:85
1482
- #, php-format
1483
- msgid ""
1484
- "Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
1485
- "deleted."
1486
- msgstr ""
1487
-
1488
- #: includes/class-wcj-old-slugs.php:87
1489
- msgid "Please <a href=\"\">refresh</a> the page."
1490
- msgstr ""
1491
-
1492
- #: includes/class-wcj-old-slugs.php:107
1493
- msgid "Old products slugs found:"
1494
- msgstr ""
1495
-
1496
- #: includes/class-wcj-old-slugs.php:110
1497
- msgid "Remove all old product slugs"
1498
- msgstr ""
1499
-
1500
- #: includes/class-wcj-old-slugs.php:113
1501
- msgid "Old non-products slugs found:"
1502
- msgstr ""
1503
-
1504
- #: includes/class-wcj-old-slugs.php:116
1505
- msgid "Remove all old non-product slugs"
1506
- msgstr ""
1507
-
1508
- #: includes/class-wcj-old-slugs.php:130
1509
- msgid "No old slugs found."
1510
- msgstr ""
1511
-
1512
- #: includes/class-wcj-order-custom-statuses.php:26
1513
- msgid "Order Custom Statuses"
1514
- msgstr ""
1515
-
1516
- #: includes/class-wcj-order-custom-statuses.php:27
1517
- msgid "Custom statuses for WooCommerce orders."
1518
- msgstr ""
1519
-
1520
- #: includes/class-wcj-order-custom-statuses.php:33
1521
- #: includes/settings/wcj-settings-order-custom-statuses.php:14
1522
- msgid "Custom Statuses"
1523
- msgstr ""
1524
-
1525
- #: includes/class-wcj-order-custom-statuses.php:34
1526
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1527
- msgstr ""
1528
-
1529
- #: includes/class-wcj-order-custom-statuses.php:85
1530
- msgid "Processing"
1531
- msgstr ""
1532
-
1533
- #: includes/class-wcj-order-custom-statuses.php:92
1534
- msgid "Complete"
1535
- msgstr ""
1536
-
1537
- #: includes/class-wcj-order-custom-statuses.php:156
1538
- msgctxt "Order status"
1539
- msgid "Pending payment"
1540
- msgstr ""
1541
-
1542
- #: includes/class-wcj-order-custom-statuses.php:157
1543
- #: includes/functions/wcj-order-functions.php:113
1544
- msgctxt "Order status"
1545
- msgid "Processing"
1546
- msgstr ""
1547
-
1548
- #: includes/class-wcj-order-custom-statuses.php:158
1549
- msgctxt "Order status"
1550
- msgid "On hold"
1551
- msgstr ""
1552
-
1553
- #: includes/class-wcj-order-custom-statuses.php:159
1554
- #: includes/functions/wcj-order-functions.php:115
1555
- msgctxt "Order status"
1556
- msgid "Completed"
1557
- msgstr ""
1558
-
1559
- #: includes/class-wcj-order-custom-statuses.php:160
1560
- #: includes/functions/wcj-order-functions.php:116
1561
- msgctxt "Order status"
1562
- msgid "Cancelled"
1563
- msgstr ""
1564
-
1565
- #: includes/class-wcj-order-custom-statuses.php:161
1566
- #: includes/functions/wcj-order-functions.php:117
1567
- msgctxt "Order status"
1568
- msgid "Refunded"
1569
- msgstr ""
1570
-
1571
- #: includes/class-wcj-order-custom-statuses.php:162
1572
- #: includes/functions/wcj-order-functions.php:118
1573
- msgctxt "Order status"
1574
- msgid "Failed"
1575
- msgstr ""
1576
-
1577
- #: includes/class-wcj-order-custom-statuses.php:202
1578
- #, php-format
1579
- msgid " <span class=\"count\">(%s)</span>"
1580
- msgid_plural " <span class=\"count\">(%s)</span>"
1581
- msgstr[0] ""
1582
- msgstr[1] ""
1583
-
1584
- #: includes/class-wcj-order-custom-statuses.php:252
1585
- msgid "Status slug is empty. Status was not added!"
1586
- msgstr ""
1587
-
1588
- #: includes/class-wcj-order-custom-statuses.php:255
1589
- msgid ""
1590
- "The length of status slug must be 17 or less characters. Status was not "
1591
- "added!"
1592
- msgstr ""
1593
-
1594
- #: includes/class-wcj-order-custom-statuses.php:258
1595
- msgid "Status label is empty. Status was not added!"
1596
- msgstr ""
1597
-
1598
- #: includes/class-wcj-order-custom-statuses.php:265
1599
- msgid "Duplicate slug. Status was not added!"
1600
- msgstr ""
1601
-
1602
- #: includes/class-wcj-order-custom-statuses.php:269
1603
- msgid "Duplicate slug (default WooCommerce status). Status was not added!"
1604
- msgstr ""
1605
-
1606
- #: includes/class-wcj-order-custom-statuses.php:280
1607
- msgid "New status has been successfully added!"
1608
- msgstr ""
1609
-
1610
- #: includes/class-wcj-order-custom-statuses.php:282
1611
- msgid "Status was not added."
1612
- msgstr ""
1613
-
1614
- #: includes/class-wcj-order-custom-statuses.php:300
1615
- msgid "Status label is empty. Status was not edited!"
1616
- msgstr ""
1617
-
1618
- #: includes/class-wcj-order-custom-statuses.php:310
1619
- msgid "Status has been successfully edited!"
1620
- msgstr ""
1621
-
1622
- #: includes/class-wcj-order-custom-statuses.php:312
1623
- msgid "Status was not edited."
1624
- msgstr ""
1625
-
1626
- #: includes/class-wcj-order-custom-statuses.php:320
1627
- msgid "Status has been successfully deleted."
1628
- msgstr ""
1629
-
1630
- #: includes/class-wcj-order-custom-statuses.php:322
1631
- msgid "Delete failed."
1632
- msgstr ""
1633
-
1634
- #: includes/class-wcj-order-custom-statuses.php:327
1635
- msgid "Booster - Custom Statuses"
1636
- msgstr ""
1637
-
1638
- #: includes/class-wcj-order-custom-statuses.php:328
1639
- msgid ""
1640
- "The tool lets you add or delete any custom status for WooCommerce orders."
1641
- msgstr ""
1642
-
1643
- #: includes/class-wcj-order-custom-statuses.php:330
1644
- msgid "Statuses"
1645
- msgstr ""
1646
-
1647
- #: includes/class-wcj-order-custom-statuses.php:333
1648
- msgid "Slug"
1649
- msgstr ""
1650
-
1651
- #: includes/class-wcj-order-custom-statuses.php:334
1652
- #: includes/class-wcj-order-custom-statuses.php:389
1653
- #: includes/settings/wcj-settings-checkout-custom-fields.php:105
1654
- #: includes/settings/wcj-settings-checkout-files-upload.php:82
1655
- #: includes/settings/wcj-settings-checkout-files-upload.php:256
1656
- #: includes/settings/wcj-settings-offer-price.php:43
1657
- #: includes/settings/wcj-settings-offer-price.php:115
1658
- #: includes/settings/wcj-settings-offer-price.php:155
1659
- #: includes/settings/wcj-settings-offer-price.php:163
1660
- #: includes/settings/wcj-settings-offer-price.php:171
1661
- #: includes/settings/wcj-settings-offer-price.php:179
1662
- #: includes/settings/wcj-settings-orders.php:103
1663
- #: includes/settings/wcj-settings-product-listings.php:210
1664
- msgid "Label"
1665
- msgstr ""
1666
-
1667
- #: includes/class-wcj-order-custom-statuses.php:335
1668
- #: includes/class-wcj-order-custom-statuses.php:390
1669
- msgid "Icon Code"
1670
- msgstr ""
1671
-
1672
- #: includes/class-wcj-order-custom-statuses.php:336
1673
- #: includes/class-wcj-order-custom-statuses.php:392
1674
- msgid "Icon Color"
1675
- msgstr ""
1676
-
1677
- #: includes/class-wcj-order-custom-statuses.php:360
1678
- msgid "Get Booster Plus to enable."
1679
- msgstr ""
1680
-
1681
- #: includes/class-wcj-order-custom-statuses.php:360
1682
- #: includes/class-wcj-order-custom-statuses.php:384
1683
- #: includes/class-wcj-product-by-user.php:205
1684
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1685
- msgid "Edit"
1686
- msgstr ""
1687
-
1688
- #: includes/class-wcj-order-custom-statuses.php:388
1689
- msgid "Slug (without wc- prefix)"
1690
- msgstr ""
1691
-
1692
- #: includes/class-wcj-order-custom-statuses.php:391
1693
- #, php-format
1694
- msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
1695
- msgstr ""
1696
-
1697
- #: includes/class-wcj-order-custom-statuses.php:394
1698
- msgid "Edit custom status"
1699
- msgstr ""
1700
-
1701
- #: includes/class-wcj-order-custom-statuses.php:394
1702
- msgid "Add new custom status"
1703
- msgstr ""
1704
-
1705
- #: includes/class-wcj-order-custom-statuses.php:395
1706
- #: includes/settings/wcj-settings-checkout-custom-fields.php:149
1707
- #: includes/settings/wcj-settings-eu-vat-number.php:56
1708
- msgid "Clear"
1709
- msgstr ""
1710
-
1711
- #: includes/class-wcj-order-custom-statuses.php:417
1712
- #: includes/class-wcj-order-custom-statuses.php:418
1713
- msgid "Mark"
1714
- msgstr ""
1715
-
1716
- #: includes/class-wcj-order-min-amount.php:26
1717
- #: includes/settings/wcj-settings-order-min-amount.php:14
1718
- msgid "Order Minimum Amount"
1719
- msgstr ""
1720
-
1721
- #: includes/class-wcj-order-min-amount.php:27
1722
- msgid "Minimum WooCommerce order amount (optionally by user role)."
1723
- msgstr ""
1724
-
1725
- #: includes/class-wcj-order-numbers.php:23
1726
- #: includes/settings/wcj-settings-order-numbers.php:14
1727
- msgid "Order Numbers"
1728
- msgstr ""
1729
-
1730
- #: includes/class-wcj-order-numbers.php:24
1731
- msgid ""
1732
- "WooCommerce sequential order numbering, custom order number prefix, suffix "
1733
- "and number width."
1734
- msgstr ""
1735
-
1736
- #: includes/class-wcj-order-numbers.php:30
1737
- msgid "Orders Renumerate"
1738
- msgstr ""
1739
-
1740
- #: includes/class-wcj-order-numbers.php:31
1741
- msgid "Tool renumerates all orders."
1742
- msgstr ""
1743
-
1744
- #: includes/class-wcj-order-numbers.php:144
1745
- msgid "Orders successfully renumerated!"
1746
- msgstr ""
1747
-
1748
- #: includes/class-wcj-order-numbers.php:148
1749
- msgid ""
1750
- "Press the button below to renumerate all existing orders starting from order "
1751
- "counter settings in WooCommerce > Settings > Booster > Order Numbers."
1752
- msgstr ""
1753
-
1754
- #: includes/class-wcj-order-numbers.php:151
1755
- msgid "Renumerate orders"
1756
- msgstr ""
1757
-
1758
- #: includes/class-wcj-order-quantities.php:28
1759
- msgid "Order Min/Max Quantities"
1760
- msgstr ""
1761
-
1762
- #: includes/class-wcj-order-quantities.php:29
1763
- msgid "Set min/max product quantities in WooCommerce order."
1764
- msgstr ""
1765
-
1766
- #: includes/class-wcj-order-quantities.php:95
1767
- #: includes/settings/wcj-settings-order-quantities.php:87
1768
- msgid ""
1769
- "Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
1770
- "order quantity is %cart_total_quantity%."
1771
- msgstr ""
1772
-
1773
- #: includes/class-wcj-order-quantities.php:103
1774
- #: includes/settings/wcj-settings-order-quantities.php:38
1775
- msgid ""
1776
- "Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
1777
- "order quantity is %cart_total_quantity%."
1778
- msgstr ""
1779
-
1780
- #: includes/class-wcj-order-quantities.php:113
1781
- #: includes/settings/wcj-settings-order-quantities.php:104
1782
- msgid ""
1783
- "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
1784
- "Your current item quantity is %item_quantity%."
1785
- msgstr ""
1786
-
1787
- #: includes/class-wcj-order-quantities.php:123
1788
- #: includes/settings/wcj-settings-order-quantities.php:55
1789
- msgid ""
1790
- "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
1791
- "Your current item quantity is %item_quantity%."
1792
- msgstr ""
1793
-
1794
- #: includes/class-wcj-orders.php:24
1795
- msgid ""
1796
- "Orders auto-complete. Custom admin order list columns. Admin order currency. "
1797
- "Admin order list multiple status filtering."
1798
- msgstr ""
1799
-
1800
- #: includes/class-wcj-orders.php:176
1801
- msgid "Not Completed"
1802
- msgstr ""
1803
-
1804
- #: includes/class-wcj-orders.php:302
1805
- msgid "All countries"
1806
- msgstr ""
1807
-
1808
- #: includes/class-wcj-orders.php:311
1809
- msgid "All currencies"
1810
- msgstr ""
1811
-
1812
- #: includes/class-wcj-orders.php:351
1813
- #: includes/export/class-wcj-fields-helper.php:44
1814
- #: includes/export/class-wcj-fields-helper.php:129
1815
- #: includes/export/class-wcj-fields-helper.php:214
1816
- #: includes/settings/wcj-settings-orders.php:66
1817
- msgid "Billing Country"
1818
- msgstr ""
1819
-
1820
- #: includes/class-wcj-orders.php:354
1821
- #: includes/settings/wcj-settings-orders.php:73
1822
- msgid "Currency Code"
1823
- msgstr ""
1824
-
1825
- #: includes/class-wcj-payment-gateways-by-country.php:24
1826
- msgid "Gateways by Country or State"
1827
- msgstr ""
1828
-
1829
- #: includes/class-wcj-payment-gateways-by-country.php:25
1830
- msgid ""
1831
- "Set countries or states to include/exclude for WooCommerce payment gateways "
1832
- "to show up."
1833
- msgstr ""
1834
-
1835
- #: includes/class-wcj-payment-gateways-by-shipping.php:25
1836
- msgid "Gateways by Shipping"
1837
- msgstr ""
1838
-
1839
- #: includes/class-wcj-payment-gateways-by-shipping.php:26
1840
- msgid "Set \"enable for shipping methods\" for WooCommerce payment gateways."
1841
- msgstr ""
1842
-
1843
- #: includes/class-wcj-payment-gateways-by-user-role.php:25
1844
- msgid "Gateways by User Role"
1845
- msgstr ""
1846
-
1847
- #: includes/class-wcj-payment-gateways-by-user-role.php:26
1848
- msgid ""
1849
- "Set user roles to include/exclude for WooCommerce payment gateways to show "
1850
- "up."
1851
- msgstr ""
1852
-
1853
- #: includes/class-wcj-payment-gateways-currency.php:24
1854
- msgid "Gateways Currency"
1855
- msgstr ""
1856
-
1857
- #: includes/class-wcj-payment-gateways-currency.php:25
1858
- msgid "Currency per WooCommerce payment gateway."
1859
- msgstr ""
1860
-
1861
- #: includes/class-wcj-payment-gateways-fees.php:24
1862
- msgid "Gateways Fees and Discounts"
1863
- msgstr ""
1864
-
1865
- #: includes/class-wcj-payment-gateways-fees.php:25
1866
- msgid "Enable extra fees or discounts for WooCommerce payment gateways."
1867
- msgstr ""
1868
-
1869
- #: includes/class-wcj-payment-gateways-icons.php:24
1870
- msgid "Gateways Icons"
1871
- msgstr ""
1872
-
1873
- #: includes/class-wcj-payment-gateways-icons.php:25
1874
- msgid ""
1875
- "Change or completely remove icons (images) for any (default or custom) "
1876
- "WooCommerce payment gateway."
1877
- msgstr ""
1878
-
1879
- #: includes/class-wcj-payment-gateways-min-max.php:24
1880
- msgid "Gateways Min/Max Amounts"
1881
- msgstr ""
1882
-
1883
- #: includes/class-wcj-payment-gateways-min-max.php:25
1884
- msgid "Add min/max amounts for WooCommerce payment gateways to show up."
1885
- msgstr ""
1886
-
1887
- #: includes/class-wcj-payment-gateways-min-max.php:41
1888
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
1889
- msgid "Minimum amount for %gateway_title% is %min_amount%"
1890
- msgstr ""
1891
-
1892
- #: includes/class-wcj-payment-gateways-min-max.php:42
1893
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
1894
- msgid "Maximum amount for %gateway_title% is %max_amount%"
1895
- msgstr ""
1896
-
1897
- #: includes/class-wcj-payment-gateways-per-category.php:24
1898
- msgid "Gateways per Product or Category"
1899
- msgstr ""
1900
-
1901
- #: includes/class-wcj-payment-gateways-per-category.php:25
1902
- msgid ""
1903
- "Show WooCommerce gateway only if there is selected product or product "
1904
- "category in cart."
1905
- msgstr ""
1906
-
1907
- #: includes/class-wcj-payment-gateways.php:23
1908
- msgid "Custom Gateways"
1909
- msgstr ""
1910
-
1911
- #: includes/class-wcj-payment-gateways.php:24
1912
- msgid "Add multiple custom payment gateways to WooCommerce."
1913
- msgstr ""
1914
-
1915
- #: includes/class-wcj-payment-gateways.php:53
1916
- #, php-format
1917
- msgid "%s Fields"
1918
- msgstr ""
1919
-
1920
- #: includes/class-wcj-pdf-invoicing.php:23
1921
- msgid "PDF Invoicing"
1922
- msgstr ""
1923
-
1924
- #: includes/class-wcj-pdf-invoicing.php:25
1925
- msgid ""
1926
- "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
1927
- msgstr ""
1928
-
1929
- #: includes/class-wcj-pdf-invoicing.php:31
1930
- msgid "Invoices Renumerate"
1931
- msgstr ""
1932
-
1933
- #: includes/class-wcj-pdf-invoicing.php:32
1934
- msgid ""
1935
- "Tool renumerates all invoices, proforma invoices, credit notes and packing "
1936
- "slips."
1937
- msgstr ""
1938
-
1939
- #: includes/class-wcj-pdf-invoicing.php:35
1940
- msgid "Invoices Report"
1941
- msgstr ""
1942
-
1943
- #: includes/class-wcj-pdf-invoicing.php:36
1944
- msgid "Invoices Monthly Reports."
1945
- msgstr ""
1946
-
1947
- #: includes/class-wcj-pdf-invoicing.php:87
1948
- #: includes/class-wcj-pdf-invoicing.php:88
1949
- #: includes/settings/wcj-settings-price-by-country.php:164
1950
- #: includes/settings/wcj-settings-price-by-country.php:169
1951
- #: includes/settings/wcj-settings-price-by-country.php:174
1952
- msgid "Generate"
1953
- msgstr ""
1954
-
1955
- #: includes/class-wcj-pdf-invoicing.php:95
1956
- #: includes/class-wcj-pdf-invoicing.php:96
1957
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:128
1958
- msgid "Download"
1959
- msgstr ""
1960
-
1961
- #: includes/class-wcj-pdf-invoicing.php:112
1962
- #, php-format
1963
- msgid "Document generated."
1964
- msgid_plural "%s documents generated."
1965
- msgstr[0] ""
1966
- msgstr[1] ""
1967
-
1968
- #: includes/class-wcj-pdf-invoicing.php:218
1969
- #: includes/classes/class-wcj-pdf-invoice.php:272
1970
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:193
1971
- msgid "Unexpected error"
1972
- msgstr ""
1973
-
1974
- #: includes/class-wcj-pdf-invoicing.php:341
1975
- msgid "You are not allowed to view the invoice."
1976
- msgstr ""
1977
-
1978
- #: includes/class-wcj-price-by-country.php:23
1979
- msgid "Prices and Currencies by Country"
1980
- msgstr ""
1981
-
1982
- #: includes/class-wcj-price-by-country.php:24
1983
- msgid ""
1984
- "Change WooCommerce product price and currency automatically by customer's "
1985
- "country."
1986
- msgstr ""
1987
-
1988
- #: includes/class-wcj-price-by-country.php:90
1989
- msgid "Price filter widget product prices recalculated."
1990
- msgstr ""
1991
-
1992
- #: includes/class-wcj-price-by-user-role.php:26
1993
- msgid "Price by User Role"
1994
- msgstr ""
1995
-
1996
- #: includes/class-wcj-price-by-user-role.php:27
1997
- msgid "Display WooCommerce products prices by user roles."
1998
- msgstr ""
1999
-
2000
- #: includes/class-wcj-price-by-user-role.php:101
2001
- msgid ""
2002
- "Booster: Free plugin's version is limited to only one price by user role per "
2003
- "products settings product enabled at a time. You will need to get <a href="
2004
- "\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
2005
- "unlimited number of price by user role per product settings products."
2006
- msgstr ""
2007
-
2008
- #: includes/class-wcj-price-formats.php:25
2009
- msgid "Price Formats"
2010
- msgstr ""
2011
-
2012
- #: includes/class-wcj-price-formats.php:26
2013
- msgid "Set different WooCommerce price formats for different currencies."
2014
- msgstr ""
2015
-
2016
- #: includes/class-wcj-price-labels.php:23
2017
- msgid "Custom Price Labels"
2018
- msgstr ""
2019
-
2020
- #: includes/class-wcj-price-labels.php:24
2021
- msgid "Create any custom price label for any WooCommerce product."
2022
- msgstr ""
2023
-
2024
- #: includes/class-wcj-price-labels.php:32
2025
- #: includes/settings/wcj-settings-price-labels.php:88
2026
- msgid "Instead of the price"
2027
- msgstr ""
2028
-
2029
- #: includes/class-wcj-price-labels.php:33
2030
- msgid "Before the price"
2031
- msgstr ""
2032
-
2033
- #: includes/class-wcj-price-labels.php:34
2034
- msgid "Between regular and sale prices"
2035
- msgstr ""
2036
-
2037
- #: includes/class-wcj-price-labels.php:35
2038
- msgid "After the price"
2039
- msgstr ""
2040
-
2041
- #: includes/class-wcj-price-labels.php:40
2042
- #: includes/class-wcj-product-info.php:254
2043
- #: includes/class-wcj-shipping-options.php:172
2044
- #: includes/settings/wcj-settings-add-to-cart.php:52
2045
- #: includes/settings/wcj-settings-address-formats.php:20
2046
- #: includes/settings/wcj-settings-admin-bar.php:20
2047
- #: includes/settings/wcj-settings-admin-bar.php:27
2048
- #: includes/settings/wcj-settings-admin-tools.php:20
2049
- #: includes/settings/wcj-settings-admin-tools.php:27
2050
- #: includes/settings/wcj-settings-admin-tools.php:34
2051
- #: includes/settings/wcj-settings-admin-tools.php:74
2052
- #: includes/settings/wcj-settings-admin-tools.php:81
2053
- #: includes/settings/wcj-settings-breadcrumbs.php:20
2054
- #: includes/settings/wcj-settings-call-for-price.php:69
2055
- #: includes/settings/wcj-settings-cart-customization.php:34
2056
- #: includes/settings/wcj-settings-checkout-custom-fields.php:69
2057
- #: includes/settings/wcj-settings-currency-exchange-rates.php:54
2058
- #: includes/settings/wcj-settings-currency-exchange-rates.php:84
2059
- #: includes/settings/wcj-settings-currency-exchange-rates.php:92
2060
- #: includes/settings/wcj-settings-currency-per-product.php:66
2061
- #: includes/settings/wcj-settings-currency-per-product.php:73
2062
- #: includes/settings/wcj-settings-currency-per-product.php:80
2063
- #: includes/settings/wcj-settings-currency-per-product.php:87
2064
- #: includes/settings/wcj-settings-custom-css.php:34
2065
- #: includes/settings/wcj-settings-emails-verification.php:28
2066
- #: includes/settings/wcj-settings-emails-verification.php:36
2067
- #: includes/settings/wcj-settings-general.php:41
2068
- #: includes/settings/wcj-settings-general.php:65
2069
- #: includes/settings/wcj-settings-general.php:81
2070
- #: includes/settings/wcj-settings-general.php:139
2071
- #: includes/settings/wcj-settings-general.php:190
2072
- #: includes/settings/wcj-settings-general.php:248
2073
- #: includes/settings/wcj-settings-global-discount.php:43
2074
- #: includes/settings/wcj-settings-left-to-free-shipping.php:23
2075
- #: includes/settings/wcj-settings-left-to-free-shipping.php:56
2076
- #: includes/settings/wcj-settings-left-to-free-shipping.php:95
2077
- #: includes/settings/wcj-settings-multicurrency.php:38
2078
- #: includes/settings/wcj-settings-multicurrency.php:46
2079
- #: includes/settings/wcj-settings-offer-price.php:19
2080
- #: includes/settings/wcj-settings-order-numbers.php:88
2081
- #: includes/settings/wcj-settings-order-numbers.php:96
2082
- #: includes/settings/wcj-settings-order-numbers.php:103
2083
- #: includes/settings/wcj-settings-order-quantities.php:119
2084
- #: includes/settings/wcj-settings-order-quantities.php:126
2085
- #: includes/settings/wcj-settings-orders.php:20
2086
- #: includes/settings/wcj-settings-orders.php:49
2087
- #: includes/settings/wcj-settings-orders.php:184
2088
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:98
2089
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
2090
- #: includes/settings/wcj-settings-price-by-country.php:69
2091
- #: includes/settings/wcj-settings-price-by-country.php:89
2092
- #: includes/settings/wcj-settings-price-by-country.php:105
2093
- #: includes/settings/wcj-settings-price-by-country.php:113
2094
- #: includes/settings/wcj-settings-price-by-country.php:122
2095
- #: includes/settings/wcj-settings-price-by-user-role.php:20
2096
- #: includes/settings/wcj-settings-price-by-user-role.php:47
2097
- #: includes/settings/wcj-settings-price-labels.php:155
2098
- #: includes/settings/wcj-settings-product-add-to-cart.php:25
2099
- #: includes/settings/wcj-settings-product-add-to-cart.php:41
2100
- #: includes/settings/wcj-settings-product-add-to-cart.php:80
2101
- #: includes/settings/wcj-settings-product-add-to-cart.php:103
2102
- #: includes/settings/wcj-settings-product-add-to-cart.php:142
2103
- #: includes/settings/wcj-settings-product-add-to-cart.php:173
2104
- #: includes/settings/wcj-settings-product-add-to-cart.php:190
2105
- #: includes/settings/wcj-settings-product-add-to-cart.php:231
2106
- #: includes/settings/wcj-settings-product-add-to-cart.php:245
2107
- #: includes/settings/wcj-settings-product-addons.php:21
2108
- #: includes/settings/wcj-settings-product-addons.php:40
2109
- #: includes/settings/wcj-settings-product-addons.php:64
2110
- #: includes/settings/wcj-settings-product-addons.php:135
2111
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
2112
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
2113
- #: includes/settings/wcj-settings-product-by-country.php:20
2114
- #: includes/settings/wcj-settings-product-by-country.php:27
2115
- #: includes/settings/wcj-settings-product-by-country.php:34
2116
- #: includes/settings/wcj-settings-product-by-date.php:21
2117
- #: includes/settings/wcj-settings-product-by-date.php:53
2118
- #: includes/settings/wcj-settings-product-by-time.php:21
2119
- #: includes/settings/wcj-settings-product-by-time.php:53
2120
- #: includes/settings/wcj-settings-product-by-user-role.php:20
2121
- #: includes/settings/wcj-settings-product-by-user-role.php:27
2122
- #: includes/settings/wcj-settings-product-by-user-role.php:34
2123
- #: includes/settings/wcj-settings-product-by-user.php:107
2124
- #: includes/settings/wcj-settings-product-info.php:35
2125
- #: includes/settings/wcj-settings-product-info.php:68
2126
- #: includes/settings/wcj-settings-product-input-fields.php:22
2127
- #: includes/settings/wcj-settings-product-input-fields.php:52
2128
- #: includes/settings/wcj-settings-product-input-fields.php:204
2129
- #: includes/settings/wcj-settings-product-open-pricing.php:87
2130
- #: includes/settings/wcj-settings-product-open-pricing.php:94
2131
- #: includes/settings/wcj-settings-product-open-pricing.php:108
2132
- #: includes/settings/wcj-settings-product-price-by-formula.php:28
2133
- #: includes/settings/wcj-settings-product-tabs.php:181
2134
- #: includes/settings/wcj-settings-product-tabs.php:189
2135
- #: includes/settings/wcj-settings-products-xml.php:72
2136
- #: includes/settings/wcj-settings-purchase-data.php:22
2137
- #: includes/settings/wcj-settings-purchase-data.php:29
2138
- #: includes/settings/wcj-settings-purchase-data.php:36
2139
- #: includes/settings/wcj-settings-purchase-data.php:103
2140
- #: includes/settings/wcj-settings-purchase-data.php:110
2141
- #: includes/settings/wcj-settings-purchase-data.php:117
2142
- #: includes/settings/wcj-settings-purchase-data.php:185
2143
- #: includes/settings/wcj-settings-related-products.php:95
2144
- #: includes/settings/wcj-settings-related-products.php:102
2145
- #: includes/settings/wcj-settings-related-products.php:109
2146
- #: includes/settings/wcj-settings-related-products.php:139
2147
- #: includes/settings/wcj-settings-shipping-calculator.php:20
2148
- #: includes/settings/wcj-settings-shipping-calculator.php:27
2149
- #: includes/settings/wcj-settings-shipping-calculator.php:34
2150
- #: includes/settings/wcj-settings-shipping-calculator.php:41
2151
- #: includes/settings/wcj-settings-shipping-options.php:53
2152
- #: includes/settings/wcj-settings-shipping.php:24
2153
- #: includes/settings/wcj-settings-sku.php:47
2154
- #: includes/settings/wcj-settings-sku.php:150
2155
- #: includes/settings/wcj-settings-sku.php:158
2156
- #: includes/settings/wcj-settings-sku.php:173
2157
- #: includes/settings/wcj-settings-stock.php:30
2158
- #: includes/settings/wcj-settings-stock.php:43
2159
- #: includes/settings/wcj-settings-wholesale-price.php:22
2160
- #: includes/settings/wcj-settings-wholesale-price.php:29
2161
- #: includes/settings/wcj-settings-wholesale-price.php:36
2162
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:92
2163
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
2164
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:17
2165
- msgid "Enable"
2166
- msgstr ""
2167
-
2168
- #: includes/class-wcj-price-labels.php:41
2169
- msgid "Hide on home page"
2170
- msgstr ""
2171
-
2172
- #: includes/class-wcj-price-labels.php:42
2173
- msgid "Hide on products page"
2174
- msgstr ""
2175
-
2176
- #: includes/class-wcj-price-labels.php:43
2177
- msgid "Hide on single"
2178
- msgstr ""
2179
-
2180
- #: includes/class-wcj-price-labels.php:44
2181
- msgid "Hide on all pages"
2182
- msgstr ""
2183
-
2184
- #: includes/class-wcj-price-labels.php:45
2185
- msgid "Hide on cart page only"
2186
- msgstr ""
2187
-
2188
- #: includes/class-wcj-price-labels.php:47
2189
- msgid "Hide for main price"
2190
- msgstr ""
2191
-
2192
- #: includes/class-wcj-price-labels.php:48
2193
- msgid "Hide for all variations"
2194
- msgstr ""
2195
-
2196
- #: includes/class-wcj-price-labels.php:134
2197
- msgid "Booster: Custom Price Labels"
2198
- msgstr ""
2199
-
2200
- #: includes/class-wcj-product-add-to-cart.php:24
2201
- msgid "Product Add to Cart"
2202
- msgstr ""
2203
-
2204
- #: includes/class-wcj-product-add-to-cart.php:25
2205
- msgid "Set any local url to redirect to on WooCommerce Add to Cart."
2206
- msgstr ""
2207
-
2208
- #: includes/class-wcj-product-add-to-cart.php:26
2209
- msgid "Automatically add to cart on product visit."
2210
- msgstr ""
2211
-
2212
- #: includes/class-wcj-product-add-to-cart.php:27
2213
- msgid "Display radio buttons instead of drop box for variable products."
2214
- msgstr ""
2215
-
2216
- #: includes/class-wcj-product-add-to-cart.php:28
2217
- msgid "Disable quantity input."
2218
- msgstr ""
2219
-
2220
- #: includes/class-wcj-product-add-to-cart.php:29
2221
- msgid "Disable add to cart button on per product basis."
2222
- msgstr ""
2223
-
2224
- #: includes/class-wcj-product-add-to-cart.php:30
2225
- msgid "Open external products on add to cart in new window."
2226
- msgstr ""
2227
-
2228
- #: includes/class-wcj-product-add-to-cart.php:31
2229
- msgid ""
2230
- "Replace Add to Cart button on archives with button from single product pages."
2231
- msgstr ""
2232
-
2233
- #: includes/class-wcj-product-add-to-cart.php:32
2234
- msgid "Customize Add to Cart messages."
2235
- msgstr ""
2236
-
2237
- #: includes/class-wcj-product-add-to-cart.php:142
2238
- #, php-format
2239
- msgctxt "Item name in quotes"
2240
- msgid "&ldquo;%s&rdquo;"
2241
- msgstr ""
2242
-
2243
- #: includes/class-wcj-product-add-to-cart.php:147
2244
- #, php-format
2245
- msgid "%s has been added to your cart."
2246
- msgid_plural "%s have been added to your cart."
2247
- msgstr[0] ""
2248
- msgstr[1] ""
2249
-
2250
- #: includes/class-wcj-product-add-to-cart.php:151
2251
- #: includes/settings/wcj-settings-product-add-to-cart.php:240
2252
- msgid "Continue shopping"
2253
- msgstr ""
2254
-
2255
- #: includes/class-wcj-product-add-to-cart.php:153
2256
- #: includes/settings/wcj-settings-product-add-to-cart.php:254
2257
- msgid "View cart"
2258
- msgstr ""
2259
-
2260
- #: includes/class-wcj-product-addons.php:28
2261
- msgid "Product Addons"
2262
- msgstr ""
2263
-
2264
- #: includes/class-wcj-product-addons.php:29
2265
- msgid "Add (paid/free/discount) addons to WooCommerce products."
2266
- msgstr ""
2267
-
2268
- #: includes/class-wcj-product-addons.php:100
2269
- msgid "Some of the required addons are not selected!"
2270
- msgstr ""
2271
-
2272
- #: includes/class-wcj-product-addons.php:115
2273
- msgid ""
2274
- "Booster: Free plugin's version is limited to only three products with per "
2275
- "product addons enabled at a time. You will need to get <a href=\"http://"
2276
- "booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
2277
- "number of products with per product addons."
2278
- msgstr ""
2279
-
2280
- #: includes/class-wcj-product-bookings.php:25
2281
- msgid "Bookings"
2282
- msgstr ""
2283
-
2284
- #: includes/class-wcj-product-bookings.php:26
2285
- msgid "Add bookings products to WooCommerce."
2286
- msgstr ""
2287
-
2288
- #: includes/class-wcj-product-bookings.php:28
2289
- msgid ""
2290
- "When enabled, module will add new \"Booster: Bookings\" meta box to each "
2291
- "product's edit page."
2292
- msgstr ""
2293
-
2294
- #: includes/class-wcj-product-bookings.php:131
2295
- #: includes/class-wcj-product-bookings.php:225
2296
- #: includes/settings/wcj-settings-product-bookings.php:63
2297
- msgid "\"Date to\" must be after \"Date from\""
2298
- msgstr ""
2299
-
2300
- #: includes/class-wcj-product-bookings.php:144
2301
- #: includes/class-wcj-product-open-pricing.php:224
2302
- msgid "Read more"
2303
- msgstr ""
2304
-
2305
- #: includes/class-wcj-product-bookings.php:183
2306
- #: includes/settings/wcj-settings-product-bookings.php:35
2307
- msgid "Period"
2308
- msgstr ""
2309
-
2310
- #: includes/class-wcj-product-bookings.php:215
2311
- #: includes/settings/wcj-settings-product-bookings.php:49
2312
- msgid "\"Date from\" must be set"
2313
- msgstr ""
2314
-
2315
- #: includes/class-wcj-product-bookings.php:219
2316
- #: includes/settings/wcj-settings-product-bookings.php:56
2317
- msgid "\"Date to\" must be set"
2318
- msgstr ""
2319
-
2320
- #: includes/class-wcj-product-bookings.php:298
2321
- #: includes/settings/wcj-settings-product-bookings.php:21
2322
- msgid "Date from"
2323
- msgstr ""
2324
-
2325
- #: includes/class-wcj-product-bookings.php:302
2326
- #: includes/settings/wcj-settings-product-bookings.php:28
2327
- msgid "Date to"
2328
- msgstr ""
2329
-
2330
- #: includes/class-wcj-product-bookings.php:317
2331
- #: includes/settings/wcj-settings-product-bookings.php:42
2332
- msgid "/ day"
2333
- msgstr ""
2334
-
2335
- #: includes/class-wcj-product-bookings.php:385
2336
- msgid ""
2337
- "Booster: Free plugin's version is limited to only one bookings product "
2338
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
2339
- "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
2340
- "products."
2341
- msgstr ""
2342
-
2343
- #: includes/class-wcj-product-bulk-meta-editor.php:25
2344
- #: includes/class-wcj-product-bulk-meta-editor.php:32
2345
- msgid "Product Bulk Meta Editor"
2346
- msgstr ""
2347
-
2348
- #: includes/class-wcj-product-bulk-meta-editor.php:26
2349
- msgid "Set WooCommerce products meta with bulk editor."
2350
- msgstr ""
2351
-
2352
- #: includes/class-wcj-product-bulk-meta-editor.php:33
2353
- msgid "Product Bulk Meta Editor Tool."
2354
- msgstr ""
2355
-
2356
- #: includes/class-wcj-product-bulk-meta-editor.php:164
2357
- msgid "Please enter meta key."
2358
- msgstr ""
2359
-
2360
- #: includes/class-wcj-product-bulk-meta-editor.php:184
2361
- #, php-format
2362
- msgid "Meta for <strong>%d</strong> was product(s) updated."
2363
- msgstr ""
2364
-
2365
- #: includes/class-wcj-product-bulk-meta-editor.php:187
2366
- #, php-format
2367
- msgid "Meta for <strong>%d</strong> product(s) was not updated."
2368
- msgstr ""
2369
-
2370
- #: includes/class-wcj-product-bulk-meta-editor.php:223
2371
- msgid "Meta key"
2372
- msgstr ""
2373
-
2374
- #: includes/class-wcj-product-bulk-meta-editor.php:225
2375
- #, php-format
2376
- msgid "for example %s"
2377
- msgstr ""
2378
-
2379
- #: includes/class-wcj-product-bulk-meta-editor.php:228
2380
- #: includes/settings/wcj-settings-wholesale-price.php:43
2381
- msgid "Show"
2382
- msgstr ""
2383
-
2384
- #: includes/class-wcj-product-bulk-meta-editor.php:232
2385
- #: includes/class-wcj-product-bulk-meta-editor.php:332
2386
- msgid "Meta"
2387
- msgstr ""
2388
-
2389
- #: includes/class-wcj-product-bulk-meta-editor.php:255
2390
- msgid ""
2391
- "Hold <strong>Control</strong> key to select multiple products. Press "
2392
- "<strong>Control</strong> + <strong>A</strong> to select all products."
2393
- msgstr ""
2394
-
2395
- #: includes/class-wcj-product-bulk-meta-editor.php:289
2396
- #: includes/settings/wcj-settings-export.php:91
2397
- #: includes/settings/wcj-settings-export.php:161
2398
- #: includes/settings/wcj-settings-export.php:240
2399
- #: includes/settings/wcj-settings-global-discount.php:59
2400
- #: includes/settings/wcj-settings-orders.php:110
2401
- #: includes/settings/wcj-settings-product-listings.php:217
2402
- msgid "Value"
2403
- msgstr ""
2404
-
2405
- #: includes/class-wcj-product-bulk-meta-editor.php:292
2406
- msgid "Set"
2407
- msgstr ""
2408
-
2409
- #: includes/class-wcj-product-bulk-meta-editor.php:295
2410
- msgid "Set Meta for All Products"
2411
- msgstr ""
2412
-
2413
- #: includes/class-wcj-product-bulk-meta-editor.php:312
2414
- msgid "Save all"
2415
- msgstr ""
2416
-
2417
- #: includes/class-wcj-product-bulk-meta-editor.php:315
2418
- msgid "Delete all"
2419
- msgstr ""
2420
-
2421
- #: includes/class-wcj-product-bulk-meta-editor.php:356
2422
- msgid "Save"
2423
- msgstr ""
2424
-
2425
- #: includes/class-wcj-product-bulk-meta-editor.php:381
2426
- #: includes/class-wcj-purchase-data.php:76
2427
- #: includes/export/class-wcj-fields-helper.php:280
2428
- #: includes/functions/wcj-reports-functions.php:25
2429
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
2430
- msgid "Product ID"
2431
- msgstr ""
2432
-
2433
- #: includes/class-wcj-product-bulk-meta-editor.php:384
2434
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
2435
- msgid "Product status"
2436
- msgstr ""
2437
-
2438
- #: includes/class-wcj-product-bulk-meta-editor.php:387
2439
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
2440
- msgid "Meta keys"
2441
- msgstr ""
2442
-
2443
- #: includes/class-wcj-product-bulk-meta-editor.php:409
2444
- msgid "Show all"
2445
- msgstr ""
2446
-
2447
- #: includes/class-wcj-product-bulk-price-converter.php:24
2448
- #: includes/class-wcj-product-bulk-price-converter.php:31
2449
- msgid "Bulk Price Converter"
2450
- msgstr ""
2451
-
2452
- #: includes/class-wcj-product-bulk-price-converter.php:25
2453
- msgid "Multiply all WooCommerce products prices by set value."
2454
- msgstr ""
2455
-
2456
- #: includes/class-wcj-product-bulk-price-converter.php:32
2457
- msgid "Bulk Price Converter Tool."
2458
- msgstr ""
2459
-
2460
- #: includes/class-wcj-product-bulk-price-converter.php:150
2461
- msgid "Price Type"
2462
- msgstr ""
2463
-
2464
- #: includes/class-wcj-product-bulk-price-converter.php:151
2465
- msgid "Original Price"
2466
- msgstr ""
2467
-
2468
- #: includes/class-wcj-product-bulk-price-converter.php:152
2469
- msgid "Modified Price"
2470
- msgstr ""
2471
-
2472
- #: includes/class-wcj-product-bulk-price-converter.php:205
2473
- msgid "Multiply value must be above zero."
2474
- msgstr ""
2475
-
2476
- #: includes/class-wcj-product-bulk-price-converter.php:212
2477
- msgid "Prices changed successfully!"
2478
- msgstr ""
2479
-
2480
- #: includes/class-wcj-product-bulk-price-converter.php:237
2481
- msgid "Multiply all product prices by"
2482
- msgstr ""
2483
-
2484
- #: includes/class-wcj-product-bulk-price-converter.php:245
2485
- msgid "Price type to modify"
2486
- msgstr ""
2487
-
2488
- #: includes/class-wcj-product-bulk-price-converter.php:247
2489
- msgid "Both"
2490
- msgstr ""
2491
-
2492
- #: includes/class-wcj-product-bulk-price-converter.php:249
2493
- msgid "Sale prices only"
2494
- msgstr ""
2495
-
2496
- #: includes/class-wcj-product-bulk-price-converter.php:251
2497
- msgid "Regular prices only"
2498
- msgstr ""
2499
-
2500
- #: includes/class-wcj-product-bulk-price-converter.php:258
2501
- msgid "Products category"
2502
- msgstr ""
2503
-
2504
- #: includes/class-wcj-product-bulk-price-converter.php:260
2505
- #: includes/shortcodes/class-wcj-products-shortcodes.php:302
2506
- msgid "Any"
2507
- msgstr ""
2508
-
2509
- #: includes/class-wcj-product-bulk-price-converter.php:262
2510
- msgid "None"
2511
- msgstr ""
2512
-
2513
- #: includes/class-wcj-product-bulk-price-converter.php:269
2514
- msgid "\"Pretty prices\" threshold"
2515
- msgstr ""
2516
-
2517
- #: includes/class-wcj-product-bulk-price-converter.php:273
2518
- msgid "Leave zero to disable"
2519
- msgstr ""
2520
-
2521
- #: includes/class-wcj-product-bulk-price-converter.php:278
2522
- msgid "Preview Prices"
2523
- msgstr ""
2524
-
2525
- #: includes/class-wcj-product-bulk-price-converter.php:285
2526
- msgid "Change Prices"
2527
- msgstr ""
2528
-
2529
- #: includes/class-wcj-product-by-country.php:25
2530
- msgid "Product Visibility by Country"
2531
- msgstr ""
2532
-
2533
- #: includes/class-wcj-product-by-country.php:26
2534
- msgid "Display WooCommerce products by customer's country."
2535
- msgstr ""
2536
-
2537
- #: includes/class-wcj-product-by-country.php:28
2538
- msgid ""
2539
- "When enabled, module will add new \"Booster: Product Visibility by Country\" "
2540
- "meta box to each product's edit page."
2541
- msgstr ""
2542
-
2543
- #: includes/class-wcj-product-by-country.php:63
2544
- msgid "Countries"
2545
- msgstr ""
2546
-
2547
- #: includes/class-wcj-product-by-date.php:29
2548
- msgid "Product Availability by Date"
2549
- msgstr ""
2550
-
2551
- #: includes/class-wcj-product-by-date.php:30
2552
- msgid "WooCommerce product availability by date."
2553
- msgstr ""
2554
-
2555
- #: includes/class-wcj-product-by-date.php:95
2556
- #: includes/class-wcj-product-by-date.php:97
2557
- #: includes/settings/wcj-settings-product-by-date.php:87
2558
- msgid ""
2559
- "<p style=\"color:red;\">%product_title% is not available this month.</p>"
2560
- msgstr ""
2561
-
2562
- #: includes/class-wcj-product-by-date.php:98
2563
- #: includes/class-wcj-product-by-date.php:100
2564
- #: includes/settings/wcj-settings-product-by-date.php:75
2565
- msgid ""
2566
- "<p style=\"color:red;\">%product_title% is available only on %date_this_month"
2567
- "% this month.</p>"
2568
- msgstr ""
2569
-
2570
- #: includes/class-wcj-product-by-time.php:29
2571
- msgid "Product Availability by Time"
2572
- msgstr ""
2573
-
2574
- #: includes/class-wcj-product-by-time.php:30
2575
- msgid "WooCommerce product availability by time."
2576
- msgstr ""
2577
-
2578
- #: includes/class-wcj-product-by-time.php:91
2579
- #: includes/class-wcj-product-by-time.php:93
2580
- #: includes/settings/wcj-settings-product-by-time.php:87
2581
- msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
2582
- msgstr ""
2583
-
2584
- #: includes/class-wcj-product-by-time.php:94
2585
- #: includes/class-wcj-product-by-time.php:96
2586
- #: includes/settings/wcj-settings-product-by-time.php:75
2587
- msgid ""
2588
- "<p style=\"color:red;\">%product_title% is available only at %time_today% "
2589
- "today.</p>"
2590
- msgstr ""
2591
-
2592
- #: includes/class-wcj-product-by-user-role.php:26
2593
- msgid "Product Visibility by User Role"
2594
- msgstr ""
2595
-
2596
- #: includes/class-wcj-product-by-user-role.php:27
2597
- msgid "Display WooCommerce products by customer's user role."
2598
- msgstr ""
2599
-
2600
- #: includes/class-wcj-product-by-user-role.php:29
2601
- msgid ""
2602
- "When enabled, module will add new \"Booster: Product Visibility by User Role"
2603
- "\" meta box to each product's edit page."
2604
- msgstr ""
2605
-
2606
- #: includes/class-wcj-product-by-user.php:26
2607
- msgid "User Products"
2608
- msgstr ""
2609
-
2610
- #: includes/class-wcj-product-by-user.php:27
2611
- msgid "Let users add new WooCommerce products from frontend."
2612
- msgstr ""
2613
-
2614
- #: includes/class-wcj-product-by-user.php:29
2615
- msgid ""
2616
- "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
2617
- "form to frontend."
2618
- msgstr ""
2619
-
2620
- #: includes/class-wcj-product-by-user.php:154
2621
- #: includes/class-wcj-product-by-user.php:163
2622
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:313
2623
- msgid "Wrong user ID!"
2624
- msgstr ""
2625
-
2626
- #: includes/class-wcj-product-by-user.php:197
2627
- #: includes/admin/class-wcj-tools.php:74
2628
- #: includes/export/class-wcj-fields-helper.php:294
2629
- msgid "Status"
2630
- msgstr ""
2631
-
2632
- #: includes/class-wcj-product-by-user.php:197
2633
- #: includes/class-wcj-product-tabs.php:505
2634
- #: includes/gateways/class-wc-gateway-wcj-custom.php:66
2635
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:68
2636
- #: includes/settings/wcj-settings-export.php:75
2637
- #: includes/settings/wcj-settings-export.php:143
2638
- #: includes/settings/wcj-settings-export.php:224
2639
- #: includes/settings/wcj-settings-product-by-user.php:167
2640
- #: includes/settings/wcj-settings-product-tabs.php:44
2641
- #: includes/settings/wcj-settings-purchase-data.php:66
2642
- #: includes/settings/wcj-settings-related-products.php:15
2643
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
2644
- #: includes/shipping/class-wc-shipping-wcj-custom.php:116
2645
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
2646
- msgid "Title"
2647
- msgstr ""
2648
-
2649
- #: includes/class-wcj-product-custom-info.php:24
2650
- #: includes/admin/class-wc-settings-jetpack.php:416
2651
- #: includes/functions/wcj-general-functions.php:33
2652
- msgid "Product Info"
2653
- msgstr ""
2654
-
2655
- #: includes/class-wcj-product-custom-info.php:25
2656
- #: includes/class-wcj-product-info.php:102
2657
- msgid "Add additional info to WooCommerce category and single product pages."
2658
- msgstr ""
2659
-
2660
- #: includes/class-wcj-product-images.php:25
2661
- msgid "Product Images"
2662
- msgstr ""
2663
-
2664
- #: includes/class-wcj-product-images.php:26
2665
- msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2666
- msgstr ""
2667
-
2668
- #: includes/class-wcj-product-images.php:204
2669
- #: includes/settings/wcj-settings-product-images.php:103
2670
- msgid "Sale!"
2671
- msgstr ""
2672
-
2673
- #: includes/class-wcj-product-info.php:101
2674
- msgid "Product Info V1"
2675
- msgstr ""
2676
-
2677
- #: includes/class-wcj-product-info.php:123
2678
- #: includes/settings/wcj-settings-offer-price.php:91
2679
- #: includes/settings/wcj-settings-product-custom-info.php:79
2680
- msgid "Before product"
2681
- msgstr ""
2682
-
2683
- #: includes/class-wcj-product-info.php:124
2684
- #: includes/settings/wcj-settings-product-custom-info.php:80
2685
- msgid "Before product title"
2686
- msgstr ""
2687
-
2688
- #: includes/class-wcj-product-info.php:125
2689
- #: includes/settings/wcj-settings-offer-price.php:92
2690
- #: includes/settings/wcj-settings-product-custom-info.php:83
2691
- msgid "After product"
2692
- msgstr ""
2693
-
2694
- #: includes/class-wcj-product-info.php:126
2695
- #: includes/settings/wcj-settings-product-custom-info.php:82
2696
- msgid "After product title"
2697
- msgstr ""
2698
-
2699
- #: includes/class-wcj-product-info.php:138
2700
- #: includes/settings/wcj-settings-offer-price.php:72
2701
- #: includes/settings/wcj-settings-product-custom-info.php:70
2702
- msgid "Inside single product summary"
2703
- msgstr ""
2704
-
2705
- #: includes/class-wcj-product-info.php:139
2706
- #: includes/settings/wcj-settings-offer-price.php:71
2707
- #: includes/settings/wcj-settings-product-custom-info.php:69
2708
- msgid "Before single product summary"
2709
- msgstr ""
2710
-
2711
- #: includes/class-wcj-product-info.php:140
2712
- #: includes/settings/wcj-settings-offer-price.php:73
2713
- #: includes/settings/wcj-settings-product-custom-info.php:71
2714
- msgid "After single product summary"
2715
- msgstr ""
2716
-
2717
- #: includes/class-wcj-product-info.php:261
2718
- #: includes/settings/wcj-settings-cart.php:51
2719
- #: includes/settings/wcj-settings-checkout-custom-info.php:47
2720
- #: includes/settings/wcj-settings-checkout-files-upload.php:51
2721
- #: includes/settings/wcj-settings-left-to-free-shipping.php:39
2722
- #: includes/settings/wcj-settings-left-to-free-shipping.php:74
2723
- #: includes/settings/wcj-settings-left-to-free-shipping.php:113
2724
- #: includes/settings/wcj-settings-mini-cart.php:46
2725
- #: includes/settings/wcj-settings-product-custom-info.php:62
2726
- #: includes/settings/wcj-settings-product-info.php:50
2727
- #: includes/settings/wcj-settings-product-info.php:83
2728
- #: includes/settings/wcj-settings-products-per-page.php:36
2729
- msgid "Position"
2730
- msgstr ""
2731
-
2732
- #: includes/class-wcj-product-info.php:272
2733
- #: includes/settings/wcj-settings-checkout-custom-fields.php:119
2734
- #: includes/settings/wcj-settings-product-info.php:61
2735
- #: includes/settings/wcj-settings-product-info.php:94
2736
- #: includes/settings/wcj-settings-product-tabs.php:51
2737
- msgid "Priority (i.e. Order)"
2738
- msgstr ""
2739
-
2740
- #: includes/class-wcj-product-info.php:279
2741
- msgid ""
2742
- "Number of product info fields. Click \"Save changes\" after you change this "
2743
- "number."
2744
- msgstr ""
2745
-
2746
- #: includes/class-wcj-product-info.php:301
2747
- msgid ""
2748
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
2749
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
2750
- "before=\" (\" after=\"%)\"]"
2751
- msgstr ""
2752
-
2753
- #: includes/class-wcj-product-info.php:302
2754
- msgid "[wcj_product_total_sales before=\"Total sales: \"]"
2755
- msgstr ""
2756
-
2757
- #: includes/class-wcj-product-input-fields.php:23
2758
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:128
2759
- msgid "Product Input Fields"
2760
- msgstr ""
2761
-
2762
- #: includes/class-wcj-product-input-fields.php:24
2763
- msgid "WooCommerce product input fields."
2764
- msgstr ""
2765
-
2766
- #: includes/class-wcj-product-listings.php:22
2767
- msgid "Product Listings"
2768
- msgstr ""
2769
-
2770
- #: includes/class-wcj-product-listings.php:23
2771
- msgid ""
2772
- "Change WooCommerce display options for shop and category pages: show/hide "
2773
- "categories count, exclude categories, show/hide empty categories."
2774
- msgstr ""
2775
-
2776
- #: includes/class-wcj-product-open-pricing.php:25
2777
- msgid "Product Open Pricing (Name Your Price)"
2778
- msgstr ""
2779
-
2780
- #: includes/class-wcj-product-open-pricing.php:26
2781
- msgid ""
2782
- "Let your WooCommerce store customers enter price for the product manually."
2783
- msgstr ""
2784
-
2785
- #: includes/class-wcj-product-open-pricing.php:69
2786
- msgid "Open Pricing"
2787
- msgstr ""
2788
-
2789
- #: includes/class-wcj-product-open-pricing.php:185
2790
- msgid ""
2791
- "Booster: Free plugin's version is limited to only one open pricing product "
2792
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
2793
- "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
2794
- "products."
2795
- msgstr ""
2796
-
2797
- #: includes/class-wcj-product-open-pricing.php:280
2798
- #: includes/settings/wcj-settings-product-open-pricing.php:60
2799
- msgid "Price is required!"
2800
- msgstr ""
2801
-
2802
- #: includes/class-wcj-product-open-pricing.php:284
2803
- #: includes/settings/wcj-settings-product-open-pricing.php:67
2804
- msgid "Entered price is too small!"
2805
- msgstr ""
2806
-
2807
- #: includes/class-wcj-product-open-pricing.php:290
2808
- #: includes/settings/wcj-settings-product-open-pricing.php:74
2809
- msgid "Entered price is too big!"
2810
- msgstr ""
2811
-
2812
- #: includes/class-wcj-product-open-pricing.php:347
2813
- #: includes/settings/wcj-settings-product-open-pricing.php:23
2814
- msgid "Name Your Price"
2815
- msgstr ""
2816
-
2817
- #: includes/class-wcj-product-price-by-formula.php:25
2818
- msgid "Product Price by Formula"
2819
- msgstr ""
2820
-
2821
- #: includes/class-wcj-product-price-by-formula.php:26
2822
- msgid "Set formula for automatic WooCommerce product price calculation."
2823
- msgstr ""
2824
-
2825
- #: includes/class-wcj-product-price-by-formula.php:105
2826
- msgid "Error in formula"
2827
- msgstr ""
2828
-
2829
- #: includes/class-wcj-product-price-by-formula.php:192
2830
- msgid ""
2831
- "Booster: Free plugin's version is limited to only one price by formula "
2832
- "product enabled at a time. You will need to get <a href=\"http://booster.io/"
2833
- "plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price "
2834
- "by formula products."
2835
- msgstr ""
2836
-
2837
- #: includes/class-wcj-product-price-by-formula.php:224
2838
- msgid "Final Price Preview"
2839
- msgstr ""
2840
-
2841
- #: includes/class-wcj-product-tabs.php:24
2842
- msgid "Product Tabs"
2843
- msgstr ""
2844
-
2845
- #: includes/class-wcj-product-tabs.php:25
2846
- msgid ""
2847
- "Add custom product tabs - globally or per product. Customize or completely "
2848
- "remove WooCommerce default product tabs."
2849
- msgstr ""
2850
-
2851
- #: includes/class-wcj-product-tabs.php:372
2852
- msgid "Booster: Custom Tabs"
2853
- msgstr ""
2854
-
2855
- #: includes/class-wcj-product-tabs.php:489
2856
- msgid "Total number of custom tabs"
2857
- msgstr ""
2858
-
2859
- #: includes/class-wcj-product-tabs.php:495
2860
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:154
2861
- msgid "Click \"Update\" product after you change this number."
2862
- msgstr ""
2863
-
2864
- #: includes/class-wcj-product-tabs.php:510
2865
- #: includes/settings/wcj-settings-related-products.php:49
2866
- #: includes/settings/wcj-settings-related-products.php:74
2867
- msgid "Order"
2868
- msgstr ""
2869
-
2870
- #: includes/class-wcj-product-tabs.php:515
2871
- #: includes/settings/wcj-settings-cart.php:44
2872
- #: includes/settings/wcj-settings-checkout-custom-info.php:40
2873
- #: includes/settings/wcj-settings-left-to-free-shipping.php:30
2874
- #: includes/settings/wcj-settings-left-to-free-shipping.php:65
2875
- #: includes/settings/wcj-settings-left-to-free-shipping.php:104
2876
- #: includes/settings/wcj-settings-mini-cart.php:39
2877
- #: includes/settings/wcj-settings-product-custom-info.php:54
2878
- #: includes/settings/wcj-settings-product-tabs.php:57
2879
- msgid "Content"
2880
- msgstr ""
2881
-
2882
- #: includes/class-wcj-product-tabs.php:520
2883
- #: includes/settings/wcj-settings-product-tabs.php:65
2884
- msgid "Link"
2885
- msgstr ""
2886
-
2887
- #: includes/class-wcj-product-tabs.php:522
2888
- #: includes/settings/wcj-settings-product-tabs.php:66
2889
- msgid ""
2890
- "If you wish to forward tab to new link, enter it here. In this case content "
2891
- "is ignored. Leave blank to show content."
2892
- msgstr ""
2893
-
2894
- #: includes/class-wcj-product-tabs.php:526
2895
- #: includes/settings/wcj-settings-product-tabs.php:73
2896
- msgid "Link - Open in New Window"
2897
- msgstr ""
2898
-
2899
- #: includes/class-wcj-product-tabs.php:529
2900
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:118
2901
- #: includes/settings/wcj-settings-checkout-custom-fields.php:172
2902
- #: includes/settings/wcj-settings-orders.php:123
2903
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
2904
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
2905
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:35
2906
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:97
2907
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
2908
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
2909
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:57
2910
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
2911
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
2912
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
2913
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
2914
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
2915
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:33
2916
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:43
2917
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:53
2918
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
2919
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
2920
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:23
2921
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
2922
- #: includes/widgets/class-wcj-widget-country-switcher.php:88
2923
- msgid "No"
2924
- msgstr ""
2925
-
2926
- #: includes/class-wcj-product-tabs.php:530
2927
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:110
2928
- #: includes/settings/wcj-settings-checkout-custom-fields.php:166
2929
- #: includes/settings/wcj-settings-eu-vat-number.php:50
2930
- #: includes/settings/wcj-settings-eu-vat-number.php:57
2931
- #: includes/settings/wcj-settings-eu-vat-number.php:75
2932
- #: includes/settings/wcj-settings-eu-vat-number.php:102
2933
- #: includes/settings/wcj-settings-eu-vat-number.php:109
2934
- #: includes/settings/wcj-settings-eu-vat-number.php:128
2935
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
2936
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
2937
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:34
2938
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:96
2939
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
2940
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
2941
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:56
2942
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
2943
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
2944
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
2945
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
2946
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
2947
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:32
2948
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:42
2949
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:52
2950
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
2951
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
2952
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:24
2953
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
2954
- #: includes/widgets/class-wcj-widget-country-switcher.php:89
2955
- msgid "Yes"
2956
- msgstr ""
2957
-
2958
- #: includes/class-wcj-product-tabs.php:538
2959
- #: includes/settings/wcj-settings-checkout-core-fields.php:30
2960
- #: includes/settings/wcj-settings-currency-exchange-rates.php:141
2961
- #: includes/settings/wcj-settings-pdf-invoicing.php:21
2962
- #: includes/settings/wcj-settings-product-add-to-cart.php:64
2963
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:19
2964
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
2965
- msgid "Disabled"
2966
- msgstr ""
2967
-
2968
- #: includes/class-wcj-product-tabs.php:541
2969
- #: includes/settings/wcj-settings-product-tabs.php:43
2970
- #: includes/settings/wcj-settings-product-tabs.php:212
2971
- msgid "Custom Product Tab"
2972
- msgstr ""
2973
-
2974
- #: includes/class-wcj-products-per-page.php:28
2975
- msgid "Products per Page"
2976
- msgstr ""
2977
-
2978
- #: includes/class-wcj-products-per-page.php:29
2979
- msgid "Add \"products per page\" selector to WooCommerce."
2980
- msgstr ""
2981
-
2982
- #: includes/class-wcj-products-per-page.php:92
2983
- #: includes/settings/wcj-settings-products-per-page.php:63
2984
- msgid ""
2985
- "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
2986
- "Products on page %select_form%"
2987
- msgstr ""
2988
-
2989
- #: includes/class-wcj-products-xml.php:26
2990
- msgid "Products XML"
2991
- msgstr ""
2992
-
2993
- #: includes/class-wcj-products-xml.php:27
2994
- msgid "WooCommerce products XML feed."
2995
- msgstr ""
2996
-
2997
- #: includes/class-wcj-products-xml.php:94
2998
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:211
2999
- msgid "Once Weekly"
3000
- msgstr ""
3001
-
3002
- #: includes/class-wcj-products-xml.php:98
3003
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:215
3004
- msgid "Once a Minute"
3005
- msgstr ""
3006
-
3007
- #: includes/class-wcj-products-xml.php:110
3008
- msgid "Products XML file created successfully."
3009
- msgstr ""
3010
-
3011
- #: includes/class-wcj-products-xml.php:120
3012
- msgid "An error has occurred while creating products XML file."
3013
- msgstr ""
3014
-
3015
- #: includes/class-wcj-purchase-data.php:27
3016
- msgid "Cost of Goods"
3017
- msgstr ""
3018
-
3019
- #: includes/class-wcj-purchase-data.php:28
3020
- msgid "Save WooCommerce product purchase costs data for admin reports."
3021
- msgstr ""
3022
-
3023
- #: includes/class-wcj-purchase-data.php:34
3024
- msgid "\"WooCommerce Cost of Goods\" Data Import"
3025
- msgstr ""
3026
-
3027
- #: includes/class-wcj-purchase-data.php:35
3028
- msgid "Import products costs from \"WooCommerce Cost of Goods\"."
3029
- msgstr ""
3030
-
3031
- #: includes/class-wcj-purchase-data.php:77
3032
- msgid "Product Title"
3033
- msgstr ""
3034
-
3035
- #: includes/class-wcj-purchase-data.php:78
3036
- msgid "WooCommerce Cost of Goods (source)"
3037
- msgstr ""
3038
-
3039
- #: includes/class-wcj-purchase-data.php:79
3040
- msgid "Booster: Product cost (destination)"
3041
- msgstr ""
3042
-
3043
- #: includes/class-wcj-purchase-data.php:92
3044
- #: includes/admin/class-wc-settings-jetpack.php:276
3045
- msgid "Import"
3046
- msgstr ""
3047
-
3048
- #: includes/class-wcj-purchase-data.php:114
3049
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:105
3050
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:172
3051
- #: includes/shipping/class-wc-shipping-wcj-custom.php:131
3052
- #: includes/shipping/class-wc-shipping-wcj-custom.php:173
3053
- msgid "Cost"
3054
- msgstr ""
3055
-
3056
- #: includes/class-wcj-purchase-data.php:117
3057
- #: includes/class-wcj-purchase-data.php:150
3058
- #: includes/class-wcj-purchase-data.php:235
3059
- #: includes/functions/wcj-reports-functions.php:29
3060
- #: includes/settings/wcj-settings-purchase-data.php:133
3061
- #: includes/settings/wcj-settings-purchase-data.php:161
3062
- msgid "Profit"
3063
- msgstr ""
3064
-
3065
- #: includes/class-wcj-purchase-data.php:153
3066
- #: includes/settings/wcj-settings-purchase-data.php:142
3067
- #: includes/settings/wcj-settings-purchase-data.php:168
3068
- msgid "Purchase Cost"
3069
- msgstr ""
3070
-
3071
- #: includes/class-wcj-purchase-data.php:233
3072
- msgid "Selling"
3073
- msgstr ""
3074
-
3075
- #: includes/class-wcj-purchase-data.php:234
3076
- msgid "Buying"
3077
- msgstr ""
3078
-
3079
- #: includes/class-wcj-purchase-data.php:243
3080
- msgid "Report"
3081
- msgstr ""
3082
-
3083
- #: includes/class-wcj-related-products.php:38
3084
- #: includes/settings/wcj-settings-free-price.php:20
3085
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:28
3086
- msgid "Related Products"
3087
- msgstr ""
3088
-
3089
- #: includes/class-wcj-related-products.php:39
3090
- msgid ""
3091
- "Change displayed WooCommerce related products number, columns, order; relate "
3092
- "by tag, category, product attribute or manually on per product basis. Hide "
3093
- "related products completely."
3094
- msgstr ""
3095
-
3096
- #: includes/class-wcj-related-products.php:42
3097
- #, php-format
3098
- msgid ""
3099
- "You may need to <a class=\"button\" href=\"%s\">clear all products "
3100
- "transients</a> to immediately see results on frontend after changing "
3101
- "module's settings. Alternatively you can just update each product "
3102
- "individually to clear its transients."
3103
- msgstr ""
3104
-
3105
- #: includes/class-wcj-reports.php:33
3106
- msgid "WooCommerce stock, sales, customers etc. reports."
3107
- msgstr ""
3108
-
3109
- #: includes/class-wcj-reports.php:72
3110
- msgid "Booster: More Ranges - Months"
3111
- msgstr ""
3112
-
3113
- #: includes/class-wcj-reports.php:74 includes/class-wcj-reports.php:118
3114
- msgid "Select Range"
3115
- msgstr ""
3116
-
3117
- #: includes/class-wcj-reports.php:116
3118
- msgid "Booster: More Ranges"
3119
- msgstr ""
3120
-
3121
- #: includes/class-wcj-reports.php:207
3122
- msgid "Booster: Product Sales (Daily)"
3123
- msgstr ""
3124
-
3125
- #: includes/class-wcj-reports.php:214
3126
- msgid "Booster: Product Sales (Monthly)"
3127
- msgstr ""
3128
-
3129
- #: includes/class-wcj-reports.php:221
3130
- msgid "Booster: Monthly Sales (with Currency Conversion)"
3131
- msgstr ""
3132
-
3133
- #: includes/class-wcj-reports.php:236
3134
- msgid "Booster: All in stock"
3135
- msgstr ""
3136
-
3137
- #: includes/class-wcj-reports.php:243
3138
- msgid "Booster: Understocked"
3139
- msgstr ""
3140
-
3141
- #: includes/class-wcj-reports.php:250
3142
- msgid "Booster: Overstocked"
3143
- msgstr ""
3144
-
3145
- #: includes/class-wcj-reports.php:265
3146
- msgid "Booster: Customers by Country"
3147
- msgstr ""
3148
-
3149
- #: includes/class-wcj-reports.php:272
3150
- msgid "Booster: Customers by Country Sets"
3151
- msgstr ""
3152
-
3153
- #: includes/class-wcj-shipping-by-user-role.php:25
3154
- msgid "Shipping Methods by User Role"
3155
- msgstr ""
3156
-
3157
- #: includes/class-wcj-shipping-by-user-role.php:26
3158
- msgid ""
3159
- "Set user roles to include/exclude for WooCommerce shipping methods to show "
3160
- "up."
3161
- msgstr ""
3162
-
3163
- #: includes/class-wcj-shipping-calculator.php:23
3164
- msgid "Shipping Calculator"
3165
- msgstr ""
3166
-
3167
- #: includes/class-wcj-shipping-calculator.php:24
3168
- msgid "Customize WooCommerce shipping calculator on cart page."
3169
- msgstr ""
3170
-
3171
- #: includes/class-wcj-shipping-options.php:25
3172
- msgid "Shipping Options"
3173
- msgstr ""
3174
-
3175
- #: includes/class-wcj-shipping-options.php:26
3176
- msgid "Add descriptions and icons to shipping methods on frontend."
3177
- msgstr ""
3178
-
3179
- #: includes/class-wcj-shipping-options.php:27
3180
- msgid "Hide WooCommerce shipping when free is available."
3181
- msgstr ""
3182
-
3183
- #: includes/class-wcj-shipping-options.php:28
3184
- msgid "Grant free shipping on per product basis."
3185
- msgstr ""
3186
-
3187
- #: includes/class-wcj-shipping-options.php:171
3188
- msgid "Booster: Hide when free is available"
3189
- msgstr ""
3190
-
3191
- #: includes/class-wcj-shipping-options.php:179
3192
- #: includes/settings/wcj-settings-shipping-options.php:28
3193
- msgid ""
3194
- "Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat "
3195
- "Rate\" only."
3196
- msgstr ""
3197
-
3198
- #: includes/class-wcj-shipping-options.php:183
3199
- #: includes/settings/wcj-settings-shipping-options.php:32
3200
- msgid "Hide all"
3201
- msgstr ""
3202
-
3203
- #: includes/class-wcj-shipping-options.php:184
3204
- #: includes/settings/wcj-settings-shipping-options.php:33
3205
- msgid "Hide all except \"Local Pickup\""
3206
- msgstr ""
3207
-
3208
- #: includes/class-wcj-shipping-options.php:185
3209
- #: includes/settings/wcj-settings-shipping-options.php:34
3210
- msgid "Hide \"Flat Rate\" only"
3211
- msgstr ""
3212
-
3213
- #: includes/class-wcj-shipping.php:23
3214
- #: includes/settings/wcj-settings-shipping.php:16
3215
- #: includes/settings/wcj-settings-shipping.php:23
3216
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:160
3217
- #: includes/shipping/class-wc-shipping-wcj-custom.php:119
3218
- msgid "Custom Shipping"
3219
- msgstr ""
3220
-
3221
- #: includes/class-wcj-shipping.php:24
3222
- msgid "Add multiple custom shipping methods to WooCommerce."
3223
- msgstr ""
3224
-
3225
- #: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:333
3226
- #: includes/export/class-wcj-fields-helper.php:283
3227
- msgid "SKU"
3228
- msgstr ""
3229
-
3230
- #: includes/class-wcj-sku.php:24
3231
- msgid "Generate WooCommerce SKUs automatically. Search by SKU on frontend."
3232
- msgstr ""
3233
-
3234
- #: includes/class-wcj-sku.php:26
3235
- msgid "When enabled - all new products will be given (autogenerated) SKU."
3236
- msgstr ""
3237
-
3238
- #: includes/class-wcj-sku.php:27
3239
- msgid ""
3240
- "If you wish to set SKUs for existing products, use \"Autogenerate SKUs\" "
3241
- "Tool."
3242
- msgstr ""
3243
-
3244
- #: includes/class-wcj-sku.php:32
3245
- msgid "Autogenerate SKUs"
3246
- msgstr ""
3247
-
3248
- #: includes/class-wcj-sku.php:33
3249
- msgid "The tool generates and sets product SKUs for existing products."
3250
- msgstr ""
3251
-
3252
- #: includes/class-wcj-sku.php:334
3253
- msgid "Old SKU"
3254
- msgstr ""
3255
-
3256
- #: includes/class-wcj-sku.php:340
3257
- msgid "SKUs generated and set successfully!"
3258
- msgstr ""
3259
-
3260
- #: includes/class-wcj-sku.php:349
3261
- msgid "Preview SKUs"
3262
- msgstr ""
3263
-
3264
- #: includes/class-wcj-sku.php:351
3265
- msgid "Set SKUs"
3266
- msgstr ""
3267
-
3268
- #: includes/class-wcj-sorting.php:24
3269
- msgid "Sorting"
3270
- msgstr ""
3271
-
3272
- #: includes/class-wcj-sorting.php:25
3273
- msgid ""
3274
- "Add more WooCommerce sorting options; rename or remove default sorting "
3275
- "options; rearrange sorting options on frontend."
3276
- msgstr ""
3277
-
3278
- #: includes/class-wcj-sorting.php:166
3279
- msgid "Default sorting"
3280
- msgstr ""
3281
-
3282
- #: includes/class-wcj-sorting.php:167
3283
- msgid "Sort by popularity"
3284
- msgstr ""
3285
-
3286
- #: includes/class-wcj-sorting.php:168
3287
- msgid "Sort by average rating"
3288
- msgstr ""
3289
-
3290
- #: includes/class-wcj-sorting.php:169
3291
- msgid "Sort by newness"
3292
- msgstr ""
3293
-
3294
- #: includes/class-wcj-sorting.php:170
3295
- msgid "Sort by price: low to high"
3296
- msgstr ""
3297
-
3298
- #: includes/class-wcj-sorting.php:171
3299
- msgid "Sort by price: high to low"
3300
- msgstr ""
3301
-
3302
- #: includes/class-wcj-stock.php:27
3303
- msgid "WooCommerce products stock management."
3304
- msgstr ""
3305
-
3306
- #: includes/class-wcj-url-coupons.php:25
3307
- msgid "URL Coupons"
3308
- msgstr ""
3309
-
3310
- #: includes/class-wcj-url-coupons.php:26
3311
- msgid "WooCommerce URL coupons."
3312
- msgstr ""
3313
-
3314
- #: includes/class-wcj-wholesale-price.php:25
3315
- msgid "Wholesale Price"
3316
- msgstr ""
3317
-
3318
- #: includes/class-wcj-wholesale-price.php:26
3319
- msgid ""
3320
- "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
3321
- "more pay less)."
3322
- msgstr ""
3323
-
3324
- #: includes/class-wcj-wpml.php:24
3325
- msgid "Booster WPML"
3326
- msgstr ""
3327
-
3328
- #: includes/class-wcj-wpml.php:25
3329
- msgid "Booster for WooCommerce basic WPML support."
3330
- msgstr ""
3331
-
3332
- #: includes/class-wcj-wpml.php:50
3333
- msgid "File wpml-config.xml successfully regenerated!"
3334
- msgstr ""
3335
-
3336
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
3337
- msgid "Booster: Custom Add to Cart"
3338
- msgstr ""
3339
-
3340
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
3341
- msgid "Single product view"
3342
- msgstr ""
3343
-
3344
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
3345
- msgid "Product category (archive) view"
3346
- msgstr ""
3347
-
3348
- #: includes/admin/class-wc-settings-jetpack.php:166
3349
- #, php-format
3350
- msgid ""
3351
- "Please note that current <em>%s</em> module is deprecated and will be "
3352
- "removed in future updates. Please use <em>%s</em> module instead."
3353
- msgstr ""
3354
-
3355
- #: includes/admin/class-wc-settings-jetpack.php:171
3356
- msgid ""
3357
- "Module will be removed from the module's list as soon as you disable it."
3358
- msgstr ""
3359
-
3360
- #: includes/admin/class-wc-settings-jetpack.php:182
3361
- #, php-format
3362
- msgid ""
3363
- "Please note that <em>%s</em> module is currently under development. Until "
3364
- "stable module version is released, options can be changed or some options "
3365
- "can be moved to paid plugin version."
3366
- msgstr ""
3367
-
3368
- #: includes/admin/class-wc-settings-jetpack.php:244
3369
- msgid ""
3370
- "This section lets you export, import or reset all Booster's modules settings."
3371
- msgstr ""
3372
-
3373
- #: includes/admin/class-wc-settings-jetpack.php:273
3374
- msgid "Export all Booster's options to a file."
3375
- msgstr ""
3376
-
3377
- #: includes/admin/class-wc-settings-jetpack.php:278
3378
- msgid "Import all Booster's options from a file."
3379
- msgstr ""
3380
-
3381
- #: includes/admin/class-wc-settings-jetpack.php:281
3382
- msgid ""
3383
- "This will reset settings to defaults for all Booster modules. Are you sure?"
3384
- msgstr ""
3385
-
3386
- #: includes/admin/class-wc-settings-jetpack.php:281
3387
- msgid "Reset"
3388
- msgstr ""
3389
-
3390
- #: includes/admin/class-wc-settings-jetpack.php:282
3391
- msgid "Reset all Booster's options."
3392
- msgstr ""
3393
-
3394
- #: includes/admin/class-wc-settings-jetpack.php:298
3395
- msgid "Version"
3396
- msgstr ""
3397
-
3398
- #: includes/admin/class-wc-settings-jetpack.php:322
3399
- #: includes/admin/class-wc-settings-jetpack.php:329
3400
- msgid "Select All"
3401
- msgstr ""
3402
-
3403
- #: includes/admin/class-wc-settings-jetpack.php:323
3404
- #: includes/admin/class-wc-settings-jetpack.php:330
3405
- #: includes/admin/class-wcj-tools.php:72
3406
- msgid "Module"
3407
- msgstr ""
3408
-
3409
- #: includes/admin/class-wc-settings-jetpack.php:324
3410
- #: includes/admin/class-wc-settings-jetpack.php:331
3411
- #: includes/admin/class-wcj-tools.php:73
3412
- #: includes/export/class-wcj-fields-helper.php:293
3413
- #: includes/gateways/class-wc-gateway-wcj-custom.php:74
3414
- #: includes/settings/wcj-settings-eu-vat-number.php:34
3415
- #: includes/settings/wcj-settings-product-by-user.php:13
3416
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:179
3417
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:345
3418
- msgid "Description"
3419
- msgstr ""
3420
-
3421
- #: includes/admin/class-wc-settings-jetpack.php:376
3422
- msgid "No active modules found."
3423
- msgstr ""
3424
-
3425
- #: includes/admin/class-wc-settings-jetpack.php:379
3426
- msgid "Total Modules:"
3427
- msgstr ""
3428
-
3429
- #: includes/admin/class-wc-settings-jetpack.php:406
3430
- msgid "Autoload Booster's Options"
3431
- msgstr ""
3432
-
3433
- #: includes/admin/class-wc-settings-jetpack.php:408
3434
- msgid ""
3435
- "Choose if you want Booster's options to be autoloaded when calling "
3436
- "add_option. After saving this option, you need to Reset all Booster's "
3437
- "settings. Leave default value (i.e. Enabled) if not sure."
3438
- msgstr ""
3439
-
3440
- #: includes/admin/class-wc-settings-jetpack.php:413
3441
- msgid "Use List Instead of Comma Separated Text for Products in Settings"
3442
- msgstr ""
3443
-
3444
- #: includes/admin/class-wc-settings-jetpack.php:415
3445
- #, php-format
3446
- msgid "Supported modules: %s."
3447
- msgstr ""
3448
-
3449
- #: includes/admin/class-wcj-settings-custom-fields.php:187
3450
- #: includes/settings/wcj-settings-wpml.php:21
3451
- msgid "To use tools, module must be enabled."
3452
- msgstr ""
3453
-
3454
- #: includes/admin/class-wcj-settings-custom-fields.php:226
3455
- msgid "Save changes"
3456
- msgstr ""
3457
-
3458
- #: includes/admin/class-wcj-settings-manager.php:56
3459
- msgid "Please upload a file to import!"
3460
- msgstr ""
3461
-
3462
- #: includes/admin/class-wcj-settings-manager.php:64
3463
- #: includes/admin/class-wcj-settings-manager.php:69
3464
- msgid "Wrong file format!"
3465
- msgstr ""
3466
-
3467
- #: includes/admin/class-wcj-settings-manager.php:76
3468
- #, php-format
3469
- msgid "%d options successfully imported."
3470
- msgstr ""
3471
-
3472
- #: includes/admin/class-wcj-settings-manager.php:141
3473
- #, php-format
3474
- msgid "%d options successfully deleted."
3475
- msgstr ""
3476
-
3477
- #: includes/admin/class-wcj-tools.php:32
3478
- msgid "Booster for WooCommerce Tools"
3479
- msgstr ""
3480
-
3481
- #: includes/admin/class-wcj-tools.php:33
3482
- msgid "Booster Tools"
3483
- msgstr ""
3484
-
3485
- #: includes/admin/class-wcj-tools.php:51
3486
- msgid "Tools Dashboard"
3487
- msgstr ""
3488
-
3489
- #: includes/admin/class-wcj-tools.php:65
3490
- msgid "Booster for WooCommerce Tools - Dashboard"
3491
- msgstr ""
3492
-
3493
- #: includes/admin/class-wcj-tools.php:66
3494
- msgid ""
3495
- "This dashboard lets you check statuses and short descriptions of all "
3496
- "available Booster for WooCommerce tools. Tools can be enabled through "
3497
- "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
3498
- "above."
3499
- msgstr ""
3500
-
3501
- #: includes/admin/class-wcj-tools.php:71
3502
- msgid "Tool"
3503
- msgstr ""
3504
-
3505
- #: includes/admin/wcj-modules-cats.php:16
3506
- msgid ""
3507
- "This dashboard lets you enable/disable any Booster's module. Each checkbox "
3508
- "comes with short module's description. Please visit <a href=\"http://booster."
3509
- "io\" target=\"_blank\">http://booster.io</a> for detailed info on each "
3510
- "feature."
3511
- msgstr ""
3512
-
3513
- #: includes/admin/wcj-modules-cats.php:26
3514
- msgid "Prices & Currencies"
3515
- msgstr ""
3516
-
3517
- #: includes/admin/wcj-modules-cats.php:27
3518
- msgid ""
3519
- "Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price by "
3520
- "User Role and more."
3521
- msgstr ""
3522
-
3523
- #: includes/admin/wcj-modules-cats.php:48
3524
- msgid "Button & Price Labels"
3525
- msgstr ""
3526
-
3527
- #: includes/admin/wcj-modules-cats.php:49
3528
- msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
3529
- msgstr ""
3530
-
3531
- #: includes/admin/wcj-modules-cats.php:61
3532
- msgid ""
3533
- "Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
3534
- "Listings, Product Tabs and more."
3535
- msgstr ""
3536
-
3537
- #: includes/admin/wcj-modules-cats.php:89
3538
- msgid "Cart & Checkout"
3539
- msgstr ""
3540
-
3541
- #: includes/admin/wcj-modules-cats.php:90
3542
- msgid "Cart and Checkout Customization, Empty Cart Button, Mini Cart and more."
3543
- msgstr ""
3544
-
3545
- #: includes/admin/wcj-modules-cats.php:106
3546
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:14
3547
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:21
3548
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
3549
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:65
3550
- msgid "Payment Gateways"
3551
- msgstr ""
3552
-
3553
- #: includes/admin/wcj-modules-cats.php:107
3554
- msgid ""
3555
- "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
3556
- "more."
3557
- msgstr ""
3558
-
3559
- #: includes/admin/wcj-modules-cats.php:122
3560
- msgid "Shipping & Orders"
3561
- msgstr ""
3562
-
3563
- #: includes/admin/wcj-modules-cats.php:123
3564
- msgid ""
3565
- "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
3566
- "Methods and more."
3567
- msgstr ""
3568
-
3569
- #: includes/admin/wcj-modules-cats.php:140
3570
- msgid "PDF Invoicing & Packing Slips"
3571
- msgstr ""
3572
-
3573
- #: includes/admin/wcj-modules-cats.php:141
3574
- msgid "PDF Documents"
3575
- msgstr ""
3576
-
3577
- #: includes/admin/wcj-modules-cats.php:156
3578
- msgid "Emails & Misc."
3579
- msgstr ""
3580
-
3581
- #: includes/admin/wcj-modules-cats.php:157
3582
- msgid "Emails, Reports, Export, Admin Tools, General Options and more."
3583
- msgstr ""
3584
-
3585
- #: includes/classes/class-wcj-module.php:94
3586
- #, php-format
3587
- msgid ""
3588
- "Booster: Free plugin's version is limited to only one \"%1$s\" product with "
3589
- "settings on per product basis enabled at a time. You will need to get <a "
3590
- "href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
3591
- "\"%1$s\" products."
3592
- msgstr ""
3593
-
3594
- #: includes/classes/class-wcj-module.php:428
3595
- msgid "Back to Module Settings"
3596
- msgstr ""
3597
-
3598
- #: includes/classes/class-wcj-module.php:446
3599
- #: includes/settings/wcj-settings-wpml.php:20
3600
- msgid "Module Tools"
3601
- msgstr ""
3602
-
3603
- #: includes/classes/class-wcj-module.php:519
3604
- #: includes/settings/wcj-settings-checkout-core-fields.php:23
3605
- msgid "enabled"
3606
- msgstr ""
3607
-
3608
- #: includes/classes/class-wcj-module.php:520
3609
- msgid "disabled"
3610
- msgstr ""
3611
-
3612
- #: includes/classes/class-wcj-module.php:528
3613
- #: includes/settings/wcj-settings-product-tabs.php:133
3614
- #: includes/settings/wcj-settings-product-tabs.php:141
3615
- #: includes/settings/wcj-settings-product-tabs.php:149
3616
- #: includes/settings/wcj-settings-product-tabs.php:157
3617
- msgid "Deprecated"
3618
- msgstr ""
3619
-
3620
- #: includes/classes/class-wcj-module.php:566
3621
- msgid "Reset Settings"
3622
- msgstr ""
3623
-
3624
- #: includes/classes/class-wcj-module.php:572
3625
- msgid "Reset Module to Default Settings"
3626
- msgstr ""
3627
-
3628
- #: includes/classes/class-wcj-module.php:573
3629
- msgid "Reset Submodule to Default Settings"
3630
- msgstr ""
3631
-
3632
- #: includes/classes/class-wcj-module.php:577
3633
- msgid "Reset settings"
3634
- msgstr ""
3635
-
3636
- #: includes/classes/class-wcj-module.php:611
3637
- msgid "Module Options"
3638
- msgstr ""
3639
-
3640
- #: includes/classes/class-wcj-module.php:618
3641
- msgid "Enable Module"
3642
- msgstr ""
3643
-
3644
- #: includes/classes/class-wcj-tcpdf.php:34
3645
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:30
3646
- msgid "Page %page_number% / %total_pages%"
3647
- msgstr ""
3648
-
3649
- #: includes/emails/class-wc-email-wcj-custom.php:30
3650
- #: includes/settings/wcj-settings-emails.php:37
3651
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:31
3652
- #: includes/settings/wcj-settings-shipping.php:63
3653
- #: includes/shipping/class-wc-shipping-wcj-custom.php:46
3654
- msgid "Custom"
3655
- msgstr ""
3656
-
3657
- #: includes/emails/class-wc-email-wcj-custom.php:31
3658
- msgid ""
3659
- "Custom emails are sent to the recipient list when selected triggers are "
3660
- "called."
3661
- msgstr ""
3662
-
3663
- #: includes/emails/class-wc-email-wcj-custom.php:33
3664
- msgid "Custom Heading"
3665
- msgstr ""
3666
-
3667
- #: includes/emails/class-wc-email-wcj-custom.php:34
3668
- msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
3669
- msgstr ""
3670
-
3671
- #: includes/emails/class-wc-email-wcj-custom.php:251
3672
- #, php-format
3673
- msgid "New order (%s)"
3674
- msgstr ""
3675
-
3676
- #: includes/emails/class-wc-email-wcj-custom.php:252
3677
- #, php-format
3678
- msgid "Order status updated to %s"
3679
- msgstr ""
3680
-
3681
- #: includes/emails/class-wc-email-wcj-custom.php:255
3682
- #, php-format
3683
- msgid "Order status %s to %s"
3684
- msgstr ""
3685
-
3686
- #: includes/emails/class-wc-email-wcj-custom.php:262
3687
- #: includes/gateways/class-wc-gateway-wcj-custom.php:59
3688
- #: includes/settings/wcj-settings-checkout-custom-fields.php:68
3689
- #: includes/settings/wcj-settings-product-listings.php:179
3690
- #: includes/settings/wcj-settings-product-listings.php:237
3691
- #: includes/shipping/class-wc-shipping-wcj-custom.php:110
3692
- msgid "Enable/Disable"
3693
- msgstr ""
3694
-
3695
- #: includes/emails/class-wc-email-wcj-custom.php:264
3696
- msgid "Enable this email notification"
3697
- msgstr ""
3698
-
3699
- #: includes/emails/class-wc-email-wcj-custom.php:268
3700
- msgid "Trigger(s)"
3701
- msgstr ""
3702
-
3703
- #: includes/emails/class-wc-email-wcj-custom.php:272
3704
- msgid ""
3705
- "Please note, that all new orders in WooCommerce by default are created with "
3706
- "Pending Payment status. If you want to change the default order status - you "
3707
- "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
3708
- "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
3709
- msgstr ""
3710
-
3711
- #: includes/emails/class-wc-email-wcj-custom.php:275
3712
- msgid "New order (Any status)"
3713
- msgstr ""
3714
-
3715
- #: includes/emails/class-wc-email-wcj-custom.php:280
3716
- msgid "Reset password notification"
3717
- msgstr ""
3718
-
3719
- #: includes/emails/class-wc-email-wcj-custom.php:281
3720
- msgid "Order fully refunded notification"
3721
- msgstr ""
3722
-
3723
- #: includes/emails/class-wc-email-wcj-custom.php:282
3724
- msgid "Order partially refunded notification"
3725
- msgstr ""
3726
-
3727
- #: includes/emails/class-wc-email-wcj-custom.php:283
3728
- msgid "New customer note notification"
3729
- msgstr ""
3730
-
3731
- #: includes/emails/class-wc-email-wcj-custom.php:284
3732
- msgid "Low stock notification"
3733
- msgstr ""
3734
-
3735
- #: includes/emails/class-wc-email-wcj-custom.php:285
3736
- msgid "No stock notification"
3737
- msgstr ""
3738
-
3739
- #: includes/emails/class-wc-email-wcj-custom.php:286
3740
- msgid "Product on backorder notification"
3741
- msgstr ""
3742
-
3743
- #: includes/emails/class-wc-email-wcj-custom.php:287
3744
- msgid "Created customer notification"
3745
- msgstr ""
3746
-
3747
- #: includes/emails/class-wc-email-wcj-custom.php:295
3748
- msgid "Recipient(s)"
3749
- msgstr ""
3750
-
3751
- #: includes/emails/class-wc-email-wcj-custom.php:297
3752
- #, php-format
3753
- msgid ""
3754
- "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
3755
- "code>."
3756
- msgstr ""
3757
-
3758
- #: includes/emails/class-wc-email-wcj-custom.php:297
3759
- msgid "Or enter <code>%customer%</code> to send to customer billing email."
3760
- msgstr ""
3761
-
3762
- #: includes/emails/class-wc-email-wcj-custom.php:302
3763
- msgid "Subject"
3764
- msgstr ""
3765
-
3766
- #: includes/emails/class-wc-email-wcj-custom.php:304
3767
- #, php-format
3768
- msgid ""
3769
- "This controls the email subject line. Leave blank to use the default "
3770
- "subject: <code>%s</code>."
3771
- msgstr ""
3772
-
3773
- #: includes/emails/class-wc-email-wcj-custom.php:309
3774
- msgid "Email Heading"
3775
- msgstr ""
3776
-
3777
- #: includes/emails/class-wc-email-wcj-custom.php:311
3778
- #, php-format
3779
- msgid ""
3780
- "This controls the main heading contained within the email notification. "
3781
- "Leave blank to use the default heading: <code>%s</code>."
3782
- msgstr ""
3783
-
3784
- #: includes/emails/class-wc-email-wcj-custom.php:316
3785
- msgid "Email type"
3786
- msgstr ""
3787
-
3788
- #: includes/emails/class-wc-email-wcj-custom.php:318
3789
- msgid "Choose which format of email to send."
3790
- msgstr ""
3791
-
3792
- #: includes/emails/class-wc-email-wcj-custom.php:324
3793
- msgid "HTML template"
3794
- msgstr ""
3795
-
3796
- #: includes/emails/class-wc-email-wcj-custom.php:326
3797
- #: includes/emails/class-wc-email-wcj-custom.php:335
3798
- msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
3799
- msgstr ""
3800
-
3801
- #: includes/emails/class-wc-email-wcj-custom.php:333
3802
- msgid "Plain text template"
3803
- msgstr ""
3804
-
3805
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
3806
- #: includes/settings/wcj-settings-currency-exchange-rates.php:38
3807
- #: includes/settings/wcj-settings-products-xml.php:128
3808
- msgid "Update Every Minute"
3809
- msgstr ""
3810
-
3811
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
3812
- #: includes/settings/wcj-settings-currency-exchange-rates.php:39
3813
- #: includes/settings/wcj-settings-products-xml.php:129
3814
- msgid "Update Hourly"
3815
- msgstr ""
3816
-
3817
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
3818
- #: includes/settings/wcj-settings-currency-exchange-rates.php:40
3819
- #: includes/settings/wcj-settings-products-xml.php:130
3820
- msgid "Update Twice Daily"
3821
- msgstr ""
3822
-
3823
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
3824
- #: includes/settings/wcj-settings-currency-exchange-rates.php:41
3825
- #: includes/settings/wcj-settings-products-xml.php:131
3826
- msgid "Update Daily"
3827
- msgstr ""
3828
-
3829
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
3830
- #: includes/settings/wcj-settings-currency-exchange-rates.php:42
3831
- #: includes/settings/wcj-settings-products-xml.php:132
3832
- msgid "Update Weekly"
3833
- msgstr ""
3834
-
3835
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:186
3836
- msgid "Cron job: exchange rates successfully updated"
3837
- msgstr ""
3838
-
3839
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:188
3840
- msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
3841
- msgstr ""
3842
-
3843
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:191
3844
- msgid "Cron job: exchange rates update failed"
3845
- msgstr ""
3846
-
3847
- #: includes/exchange-rates/class-wcj-exchange-rates.php:102
3848
- #, php-format
3849
- msgid "Grab %s rate from %s"
3850
- msgstr ""
3851
-
3852
- #: includes/export/class-wcj-fields-helper.php:34
3853
- msgid "Customer Nr."
3854
- msgstr ""
3855
-
3856
- #: includes/export/class-wcj-fields-helper.php:35
3857
- #: includes/export/class-wcj-fields-helper.php:131
3858
- #: includes/export/class-wcj-fields-helper.php:216
3859
- msgid "Billing Email"
3860
- msgstr ""
3861
-
3862
- #: includes/export/class-wcj-fields-helper.php:36
3863
- #: includes/export/class-wcj-fields-helper.php:121
3864
- #: includes/export/class-wcj-fields-helper.php:206
3865
- msgid "Billing First Name"
3866
- msgstr ""
3867
-
3868
- #: includes/export/class-wcj-fields-helper.php:37
3869
- #: includes/export/class-wcj-fields-helper.php:122
3870
- #: includes/export/class-wcj-fields-helper.php:207
3871
- msgid "Billing Last Name"
3872
- msgstr ""
3873
-
3874
- #: includes/export/class-wcj-fields-helper.php:38
3875
- #: includes/export/class-wcj-fields-helper.php:123
3876
- #: includes/export/class-wcj-fields-helper.php:208
3877
- msgid "Billing Company"
3878
- msgstr ""
3879
-
3880
- #: includes/export/class-wcj-fields-helper.php:39
3881
- #: includes/export/class-wcj-fields-helper.php:124
3882
- #: includes/export/class-wcj-fields-helper.php:209
3883
- msgid "Billing Address 1"
3884
- msgstr ""
3885
-
3886
- #: includes/export/class-wcj-fields-helper.php:40
3887
- #: includes/export/class-wcj-fields-helper.php:125
3888
- #: includes/export/class-wcj-fields-helper.php:210
3889
- msgid "Billing Address 2"
3890
- msgstr ""
3891
-
3892
- #: includes/export/class-wcj-fields-helper.php:41
3893
- #: includes/export/class-wcj-fields-helper.php:126
3894
- #: includes/export/class-wcj-fields-helper.php:211
3895
- msgid "Billing City"
3896
- msgstr ""
3897
-
3898
- #: includes/export/class-wcj-fields-helper.php:42
3899
- #: includes/export/class-wcj-fields-helper.php:127
3900
- #: includes/export/class-wcj-fields-helper.php:212
3901
- msgid "Billing State"
3902
- msgstr ""
3903
-
3904
- #: includes/export/class-wcj-fields-helper.php:43
3905
- #: includes/export/class-wcj-fields-helper.php:128
3906
- #: includes/export/class-wcj-fields-helper.php:213
3907
- msgid "Billing Postcode"
3908
- msgstr ""
3909
-
3910
- #: includes/export/class-wcj-fields-helper.php:45
3911
- #: includes/export/class-wcj-fields-helper.php:130
3912
- #: includes/export/class-wcj-fields-helper.php:215
3913
- msgid "Billing Phone"
3914
- msgstr ""
3915
-
3916
- #: includes/export/class-wcj-fields-helper.php:46
3917
- msgid "Last Order Date"
3918
- msgstr ""
3919
-
3920
- #: includes/export/class-wcj-fields-helper.php:76
3921
- msgid "First Name"
3922
- msgstr ""
3923
-
3924
- #: includes/export/class-wcj-fields-helper.php:77
3925
- msgid "Last Name"
3926
- msgstr ""
3927
-
3928
- #: includes/export/class-wcj-fields-helper.php:78
3929
- msgid "Login"
3930
- msgstr ""
3931
-
3932
- #: includes/export/class-wcj-fields-helper.php:79
3933
- msgid "Nicename"
3934
- msgstr ""
3935
-
3936
- #: includes/export/class-wcj-fields-helper.php:80
3937
- #: includes/export/class-wcj-fields-helper.php:295
3938
- #: includes/gateways/class-wc-gateway-wcj-custom.php:161
3939
- msgid "URL"
3940
- msgstr ""
3941
-
3942
- #: includes/export/class-wcj-fields-helper.php:81
3943
- #: includes/reports/wcj-class-reports-customers.php:92
3944
- msgid "Registered"
3945
- msgstr ""
3946
-
3947
- #: includes/export/class-wcj-fields-helper.php:82
3948
- msgid "Display Name"
3949
- msgstr ""
3950
-
3951
- #: includes/export/class-wcj-fields-helper.php:110
3952
- #: includes/export/class-wcj-fields-helper.php:193
3953
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:252
3954
- #: includes/settings/wcj-settings-order-numbers.php:26
3955
- msgid "Order ID"
3956
- msgstr ""
3957
-
3958
- #: includes/export/class-wcj-fields-helper.php:111
3959
- #: includes/export/class-wcj-fields-helper.php:194
3960
- msgid "Order Number"
3961
- msgstr ""
3962
-
3963
- #: includes/export/class-wcj-fields-helper.php:112
3964
- #: includes/export/class-wcj-fields-helper.php:195
3965
- msgid "Order Status"
3966
- msgstr ""
3967
-
3968
- #: includes/export/class-wcj-fields-helper.php:113
3969
- #: includes/export/class-wcj-fields-helper.php:196
3970
- msgid "Order Date"
3971
- msgstr ""
3972
-
3973
- #: includes/export/class-wcj-fields-helper.php:114
3974
- #: includes/export/class-wcj-fields-helper.php:197
3975
- msgid "Order Time"
3976
- msgstr ""
3977
-
3978
- #: includes/export/class-wcj-fields-helper.php:115
3979
- #: includes/export/class-wcj-fields-helper.php:198
3980
- msgid "Order Item Count"
3981
- msgstr ""
3982
-
3983
- #: includes/export/class-wcj-fields-helper.php:116
3984
- #: includes/export/class-wcj-fields-helper.php:201
3985
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:259
3986
- #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
3987
- msgid "Order Currency"
3988
- msgstr ""
3989
-
3990
- #: includes/export/class-wcj-fields-helper.php:117
3991
- #: includes/export/class-wcj-fields-helper.php:202
3992
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:258
3993
- msgid "Order Total"
3994
- msgstr ""
3995
-
3996
- #: includes/export/class-wcj-fields-helper.php:118
3997
- #: includes/export/class-wcj-fields-helper.php:203
3998
- msgid "Order Total Tax"
3999
- msgstr ""
4000
-
4001
- #: includes/export/class-wcj-fields-helper.php:119
4002
- #: includes/export/class-wcj-fields-helper.php:204
4003
- msgid "Order Payment Method"
4004
- msgstr ""
4005
-
4006
- #: includes/export/class-wcj-fields-helper.php:120
4007
- #: includes/export/class-wcj-fields-helper.php:205
4008
- #: includes/settings/wcj-settings-checkout-custom-fields.php:133
4009
- msgid "Order Notes"
4010
- msgstr ""
4011
-
4012
- #: includes/export/class-wcj-fields-helper.php:132
4013
- #: includes/export/class-wcj-fields-helper.php:217
4014
- msgid "Shipping First Name"
4015
- msgstr ""
4016
-
4017
- #: includes/export/class-wcj-fields-helper.php:133
4018
- #: includes/export/class-wcj-fields-helper.php:218
4019
- msgid "Shipping Last Name"
4020
- msgstr ""
4021
-
4022
- #: includes/export/class-wcj-fields-helper.php:134
4023
- #: includes/export/class-wcj-fields-helper.php:219
4024
- msgid "Shipping Company"
4025
- msgstr ""
4026
-
4027
- #: includes/export/class-wcj-fields-helper.php:135
4028
- #: includes/export/class-wcj-fields-helper.php:220
4029
- msgid "Shipping Address 1"
4030
- msgstr ""
4031
-
4032
- #: includes/export/class-wcj-fields-helper.php:136
4033
- #: includes/export/class-wcj-fields-helper.php:221
4034
- msgid "Shipping Address 2"
4035
- msgstr ""
4036
-
4037
- #: includes/export/class-wcj-fields-helper.php:137
4038
- #: includes/export/class-wcj-fields-helper.php:222
4039
- msgid "Shipping City"
4040
- msgstr ""
4041
-
4042
- #: includes/export/class-wcj-fields-helper.php:138
4043
- #: includes/export/class-wcj-fields-helper.php:223
4044
- msgid "Shipping State"
4045
- msgstr ""
4046
-
4047
- #: includes/export/class-wcj-fields-helper.php:139
4048
- #: includes/export/class-wcj-fields-helper.php:224
4049
- msgid "Shipping Postcode"
4050
- msgstr ""
4051
-
4052
- #: includes/export/class-wcj-fields-helper.php:140
4053
- #: includes/export/class-wcj-fields-helper.php:225
4054
- msgid "Shipping Country"
4055
- msgstr ""
4056
-
4057
- #: includes/export/class-wcj-fields-helper.php:142
4058
- msgid "Item Name"
4059
- msgstr ""
4060
-
4061
- #: includes/export/class-wcj-fields-helper.php:143
4062
- msgid "Item Meta"
4063
- msgstr ""
4064
-
4065
- #: includes/export/class-wcj-fields-helper.php:144
4066
- msgid "Item Variation Meta"
4067
- msgstr ""
4068
-
4069
- #: includes/export/class-wcj-fields-helper.php:145
4070
- msgid "Item Quantity"
4071
- msgstr ""
4072
-
4073
- #: includes/export/class-wcj-fields-helper.php:146
4074
- msgid "Item Tax Class"
4075
- msgstr ""
4076
-
4077
- #: includes/export/class-wcj-fields-helper.php:147
4078
- msgid "Item Product ID"
4079
- msgstr ""
4080
-
4081
- #: includes/export/class-wcj-fields-helper.php:148
4082
- msgid "Item Variation ID"
4083
- msgstr ""
4084
-
4085
- #: includes/export/class-wcj-fields-helper.php:149
4086
- msgid "Item Line Subtotal"
4087
- msgstr ""
4088
-
4089
- #: includes/export/class-wcj-fields-helper.php:150
4090
- msgid "Item Line Total"
4091
- msgstr ""
4092
-
4093
- #: includes/export/class-wcj-fields-helper.php:151
4094
- msgid "Item Line Subtotal Tax"
4095
- msgstr ""
4096
-
4097
- #: includes/export/class-wcj-fields-helper.php:152
4098
- msgid "Item Line Tax"
4099
- msgstr ""
4100
-
4101
- #: includes/export/class-wcj-fields-helper.php:153
4102
- msgid "Item Line Subtotal Plus Tax"
4103
- msgstr ""
4104
-
4105
- #: includes/export/class-wcj-fields-helper.php:154
4106
- msgid "Item Line Total Plus Tax"
4107
- msgstr ""
4108
-
4109
- #: includes/export/class-wcj-fields-helper.php:155
4110
- msgid "Item Product Input Fields"
4111
- msgstr ""
4112
-
4113
- #: includes/export/class-wcj-fields-helper.php:199
4114
- msgid "Order Items"
4115
- msgstr ""
4116
-
4117
- #: includes/export/class-wcj-fields-helper.php:200
4118
- msgid "Order Items Product Input Fields"
4119
- msgstr ""
4120
-
4121
- #: includes/export/class-wcj-fields-helper.php:281
4122
- msgid "Parent Product ID"
4123
- msgstr ""
4124
-
4125
- #: includes/export/class-wcj-fields-helper.php:284
4126
- msgid "Total Stock"
4127
- msgstr ""
4128
-
4129
- #: includes/export/class-wcj-fields-helper.php:285
4130
- msgid "Stock Quantity"
4131
- msgstr ""
4132
-
4133
- #: includes/export/class-wcj-fields-helper.php:286
4134
- #: includes/price-by-country/class-wcj-price-by-country-local.php:126
4135
- #: includes/settings/wcj-settings-product-by-user.php:16
4136
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:37
4137
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:55
4138
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:182
4139
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:381
4140
- msgid "Regular Price"
4141
- msgstr ""
4142
-
4143
- #: includes/export/class-wcj-fields-helper.php:287
4144
- #: includes/price-by-country/class-wcj-price-by-country-local.php:133
4145
- #: includes/settings/wcj-settings-product-by-user.php:17
4146
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:46
4147
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:64
4148
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:183
4149
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:390
4150
- msgid "Sale Price"
4151
- msgstr ""
4152
-
4153
- #: includes/export/class-wcj-fields-helper.php:289
4154
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
4155
- #: includes/settings/wcj-settings-checkout-custom-fields.php:77
4156
- #: includes/settings/wcj-settings-export.php:81
4157
- #: includes/settings/wcj-settings-export.php:149
4158
- #: includes/settings/wcj-settings-export.php:230
4159
- #: includes/settings/wcj-settings-global-discount.php:49
4160
- #: includes/settings/wcj-settings-product-addons.php:70
4161
- #: includes/settings/wcj-settings-purchase-data.php:73
4162
- #: includes/settings/wcj-settings-shipping-options.php:67
4163
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
4164
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:164
4165
- #: includes/shipping/class-wc-shipping-wcj-custom.php:123
4166
- msgid "Type"
4167
- msgstr ""
4168
-
4169
- #: includes/export/class-wcj-fields-helper.php:291
4170
- #: includes/settings/wcj-settings-shipping-options.php:181
4171
- msgid "Image URL"
4172
- msgstr ""
4173
-
4174
- #: includes/export/class-wcj-fields-helper.php:292
4175
- #: includes/settings/wcj-settings-product-by-user.php:14
4176
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:180
4177
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:354
4178
- msgid "Short Description"
4179
- msgstr ""
4180
-
4181
- #: includes/export/class-wcj-fields-helper.php:296
4182
- msgid "Shipping Class"
4183
- msgstr ""
4184
-
4185
- #: includes/export/class-wcj-fields-helper.php:297
4186
- msgid "Shipping Class ID"
4187
- msgstr ""
4188
-
4189
- #: includes/export/class-wcj-fields-helper.php:298
4190
- msgid "Width"
4191
- msgstr ""
4192
-
4193
- #: includes/export/class-wcj-fields-helper.php:299
4194
- msgid "Length"
4195
- msgstr ""
4196
-
4197
- #: includes/export/class-wcj-fields-helper.php:300
4198
- msgid "Height"
4199
- msgstr ""
4200
-
4201
- #: includes/export/class-wcj-fields-helper.php:301
4202
- msgid "Weight"
4203
- msgstr ""
4204
-
4205
- #: includes/export/class-wcj-fields-helper.php:302
4206
- msgid "Downloadable"
4207
- msgstr ""
4208
-
4209
- #: includes/export/class-wcj-fields-helper.php:303
4210
- msgid "Virtual"
4211
- msgstr ""
4212
-
4213
- #: includes/export/class-wcj-fields-helper.php:304
4214
- msgid "Sold Individually"
4215
- msgstr ""
4216
-
4217
- #: includes/export/class-wcj-fields-helper.php:305
4218
- msgid "Tax Status"
4219
- msgstr ""
4220
-
4221
- #: includes/export/class-wcj-fields-helper.php:306
4222
- #: includes/settings/wcj-settings-payment-gateways-fees.php:90
4223
- msgid "Tax Class"
4224
- msgstr ""
4225
-
4226
- #: includes/export/class-wcj-fields-helper.php:307
4227
- msgid "Manage Stock"
4228
- msgstr ""
4229
-
4230
- #: includes/export/class-wcj-fields-helper.php:308
4231
- msgid "Stock Status"
4232
- msgstr ""
4233
-
4234
- #: includes/export/class-wcj-fields-helper.php:309
4235
- msgid "Backorders"
4236
- msgstr ""
4237
-
4238
- #: includes/export/class-wcj-fields-helper.php:310
4239
- msgid "Featured"
4240
- msgstr ""
4241
-
4242
- #: includes/export/class-wcj-fields-helper.php:311
4243
- msgid "Visibility"
4244
- msgstr ""
4245
-
4246
- #: includes/export/class-wcj-fields-helper.php:312
4247
- msgid "Price Including Tax"
4248
- msgstr ""
4249
-
4250
- #: includes/export/class-wcj-fields-helper.php:313
4251
- msgid "Price Excluding Tax"
4252
- msgstr ""
4253
-
4254
- #: includes/export/class-wcj-fields-helper.php:314
4255
- msgid "Display Price"
4256
- msgstr ""
4257
-
4258
- #: includes/export/class-wcj-fields-helper.php:315
4259
- msgid "Average Rating"
4260
- msgstr ""
4261
-
4262
- #: includes/export/class-wcj-fields-helper.php:316
4263
- msgid "Rating Count"
4264
- msgstr ""
4265
-
4266
- #: includes/export/class-wcj-fields-helper.php:317
4267
- msgid "Review Count"
4268
- msgstr ""
4269
-
4270
- #: includes/export/class-wcj-fields-helper.php:320
4271
- msgid "Dimensions"
4272
- msgstr ""
4273
-
4274
- #: includes/export/class-wcj-fields-helper.php:321
4275
- msgid "Formatted Name"
4276
- msgstr ""
4277
-
4278
- #: includes/export/class-wcj-fields-helper.php:322
4279
- msgid "Availability"
4280
- msgstr ""
4281
-
4282
- #: includes/export/class-wcj-fields-helper.php:323
4283
- msgid "Availability Class"
4284
- msgstr ""
4285
-
4286
- #: includes/functions/wcj-admin-functions.php:28
4287
- msgid "Enter comma separated list of IDs."
4288
- msgstr ""
4289
-
4290
- #: includes/functions/wcj-admin-functions.php:102
4291
- #: includes/settings/wcj-settings-emails-verification.php:52
4292
- #: includes/settings/wcj-settings-emails-verification.php:69
4293
- #: includes/settings/wcj-settings-emails-verification.php:77
4294
- #, php-format
4295
- msgid "Replaced value: %s"
4296
- msgstr ""
4297
-
4298
- #: includes/functions/wcj-admin-functions.php:102
4299
- #, php-format
4300
- msgid "Replaced values: %s"
4301
- msgstr ""
4302
-
4303
- #: includes/functions/wcj-admin-functions.php:131
4304
- msgid "Install Booster Plus to unlock all features"
4305
- msgstr ""
4306
-
4307
- #: includes/functions/wcj-admin-functions.php:132
4308
- #, php-format
4309
- msgid ""
4310
- "Some settings fields are locked and you will need %s to modify all locked "
4311
- "fields."
4312
- msgstr ""
4313
-
4314
- #: includes/functions/wcj-admin-functions.php:133
4315
- msgid "Buy now"
4316
- msgstr ""
4317
-
4318
- #: includes/functions/wcj-admin-functions.php:133
4319
- msgid "Visit Booster Site"
4320
- msgstr ""
4321
-
4322
- #: includes/functions/wcj-admin-functions.php:137
4323
- #, php-format
4324
- msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
4325
- msgstr ""
4326
-
4327
- #: includes/functions/wcj-admin-functions.php:140
4328
- #, php-format
4329
- msgid ""
4330
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
4331
- "option."
4332
- msgstr ""
4333
-
4334
- #: includes/functions/wcj-admin-functions.php:143
4335
- #, php-format
4336
- msgid "Get Booster Plus to enable \"%s\" option."
4337
- msgstr ""
4338
-
4339
- #: includes/functions/wcj-admin-functions.php:146
4340
- #, php-format
4341
- msgid ""
4342
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
4343
- msgstr ""
4344
-
4345
- #: includes/functions/wcj-admin-functions.php:149
4346
- #, php-format
4347
- msgid ""
4348
- "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
4349
- msgstr ""
4350
-
4351
- #: includes/functions/wcj-admin-functions.php:152
4352
- msgid "Get Booster Plus to change value."
4353
- msgstr ""
4354
-
4355
- #: includes/functions/wcj-country-functions.php:119
4356
- msgid "Afghanistan"
4357
- msgstr ""
4358
-
4359
- #: includes/functions/wcj-country-functions.php:120
4360
- msgid "&#197;land Islands"
4361
- msgstr ""
4362
-
4363
- #: includes/functions/wcj-country-functions.php:121
4364
- msgid "Albania"
4365
- msgstr ""
4366
-
4367
- #: includes/functions/wcj-country-functions.php:122
4368
- msgid "Algeria"
4369
- msgstr ""
4370
-
4371
- #: includes/functions/wcj-country-functions.php:123
4372
- msgid "Andorra"
4373
- msgstr ""
4374
-
4375
- #: includes/functions/wcj-country-functions.php:124
4376
- msgid "Angola"
4377
- msgstr ""
4378
-
4379
- #: includes/functions/wcj-country-functions.php:125
4380
- msgid "Anguilla"
4381
- msgstr ""
4382
-
4383
- #: includes/functions/wcj-country-functions.php:126
4384
- msgid "Antarctica"
4385
- msgstr ""
4386
-
4387
- #: includes/functions/wcj-country-functions.php:127
4388
- msgid "Antigua and Barbuda"
4389
- msgstr ""
4390
-
4391
- #: includes/functions/wcj-country-functions.php:128
4392
- msgid "Argentina"
4393
- msgstr ""
4394
-
4395
- #: includes/functions/wcj-country-functions.php:129
4396
- msgid "Armenia"
4397
- msgstr ""
4398
-
4399
- #: includes/functions/wcj-country-functions.php:130
4400
- msgid "Aruba"
4401
- msgstr ""
4402
-
4403
- #: includes/functions/wcj-country-functions.php:131
4404
- msgid "Australia"
4405
- msgstr ""
4406
-
4407
- #: includes/functions/wcj-country-functions.php:132
4408
- msgid "Austria"
4409
- msgstr ""
4410
-
4411
- #: includes/functions/wcj-country-functions.php:133
4412
- msgid "Azerbaijan"
4413
- msgstr ""
4414
-
4415
- #: includes/functions/wcj-country-functions.php:134
4416
- msgid "Bahamas"
4417
- msgstr ""
4418
-
4419
- #: includes/functions/wcj-country-functions.php:135
4420
- msgid "Bahrain"
4421
- msgstr ""
4422
-
4423
- #: includes/functions/wcj-country-functions.php:136
4424
- msgid "Bangladesh"
4425
- msgstr ""
4426
-
4427
- #: includes/functions/wcj-country-functions.php:137
4428
- msgid "Barbados"
4429
- msgstr ""
4430
-
4431
- #: includes/functions/wcj-country-functions.php:138
4432
- msgid "Belarus"
4433
- msgstr ""
4434
-
4435
- #: includes/functions/wcj-country-functions.php:139
4436
- msgid "Belgium"
4437
- msgstr ""
4438
-
4439
- #: includes/functions/wcj-country-functions.php:140
4440
- msgid "Belau"
4441
- msgstr ""
4442
-
4443
- #: includes/functions/wcj-country-functions.php:141
4444
- msgid "Belize"
4445
- msgstr ""
4446
-
4447
- #: includes/functions/wcj-country-functions.php:142
4448
- msgid "Benin"
4449
- msgstr ""
4450
-
4451
- #: includes/functions/wcj-country-functions.php:143
4452
- msgid "Bermuda"
4453
- msgstr ""
4454
-
4455
- #: includes/functions/wcj-country-functions.php:144
4456
- msgid "Bhutan"
4457
- msgstr ""
4458
-
4459
- #: includes/functions/wcj-country-functions.php:145
4460
- msgid "Bolivia"
4461
- msgstr ""
4462
-
4463
- #: includes/functions/wcj-country-functions.php:146
4464
- msgid "Bonaire, Saint Eustatius and Saba"
4465
- msgstr ""
4466
-
4467
- #: includes/functions/wcj-country-functions.php:147
4468
- msgid "Bosnia and Herzegovina"
4469
- msgstr ""
4470
-
4471
- #: includes/functions/wcj-country-functions.php:148
4472
- msgid "Botswana"
4473
- msgstr ""
4474
-
4475
- #: includes/functions/wcj-country-functions.php:149
4476
- msgid "Bouvet Island"
4477
- msgstr ""
4478
-
4479
- #: includes/functions/wcj-country-functions.php:150
4480
- msgid "Brazil"
4481
- msgstr ""
4482
-
4483
- #: includes/functions/wcj-country-functions.php:151
4484
- msgid "British Indian Ocean Territory"
4485
- msgstr ""
4486
-
4487
- #: includes/functions/wcj-country-functions.php:152
4488
- msgid "British Virgin Islands"
4489
- msgstr ""
4490
-
4491
- #: includes/functions/wcj-country-functions.php:153
4492
- msgid "Brunei"
4493
- msgstr ""
4494
-
4495
- #: includes/functions/wcj-country-functions.php:154
4496
- msgid "Bulgaria"
4497
- msgstr ""
4498
-
4499
- #: includes/functions/wcj-country-functions.php:155
4500
- msgid "Burkina Faso"
4501
- msgstr ""
4502
-
4503
- #: includes/functions/wcj-country-functions.php:156
4504
- msgid "Burundi"
4505
- msgstr ""
4506
-
4507
- #: includes/functions/wcj-country-functions.php:157
4508
- msgid "Cambodia"
4509
- msgstr ""
4510
-
4511
- #: includes/functions/wcj-country-functions.php:158
4512
- msgid "Cameroon"
4513
- msgstr ""
4514
-
4515
- #: includes/functions/wcj-country-functions.php:159
4516
- msgid "Canada"
4517
- msgstr ""
4518
-
4519
- #: includes/functions/wcj-country-functions.php:160
4520
- msgid "Cape Verde"
4521
- msgstr ""
4522
-
4523
- #: includes/functions/wcj-country-functions.php:161
4524
- msgid "Cayman Islands"
4525
- msgstr ""
4526
-
4527
- #: includes/functions/wcj-country-functions.php:162
4528
- msgid "Central African Republic"
4529
- msgstr ""
4530
-
4531
- #: includes/functions/wcj-country-functions.php:163
4532
- msgid "Chad"
4533
- msgstr ""
4534
-
4535
- #: includes/functions/wcj-country-functions.php:164
4536
- msgid "Chile"
4537
- msgstr ""
4538
-
4539
- #: includes/functions/wcj-country-functions.php:165
4540
- msgid "China"
4541
- msgstr ""
4542
-
4543
- #: includes/functions/wcj-country-functions.php:166
4544
- msgid "Christmas Island"
4545
- msgstr ""
4546
-
4547
- #: includes/functions/wcj-country-functions.php:167
4548
- msgid "Cocos (Keeling) Islands"
4549
- msgstr ""
4550
-
4551
- #: includes/functions/wcj-country-functions.php:168
4552
- msgid "Colombia"
4553
- msgstr ""
4554
-
4555
- #: includes/functions/wcj-country-functions.php:169
4556
- msgid "Comoros"
4557
- msgstr ""
4558
-
4559
- #: includes/functions/wcj-country-functions.php:170
4560
- msgid "Congo (Brazzaville)"
4561
- msgstr ""
4562
-
4563
- #: includes/functions/wcj-country-functions.php:171
4564
- msgid "Congo (Kinshasa)"
4565
- msgstr ""
4566
-
4567
- #: includes/functions/wcj-country-functions.php:172
4568
- msgid "Cook Islands"
4569
- msgstr ""
4570
-
4571
- #: includes/functions/wcj-country-functions.php:173
4572
- msgid "Costa Rica"
4573
- msgstr ""
4574
-
4575
- #: includes/functions/wcj-country-functions.php:174
4576
- msgid "Croatia"
4577
- msgstr ""
4578
-
4579
- #: includes/functions/wcj-country-functions.php:175
4580
- msgid "Cuba"
4581
- msgstr ""
4582
-
4583
- #: includes/functions/wcj-country-functions.php:176
4584
- msgid "Cura&Ccedil;ao"
4585
- msgstr ""
4586
-
4587
- #: includes/functions/wcj-country-functions.php:177
4588
- msgid "Cyprus"
4589
- msgstr ""
4590
-
4591
- #: includes/functions/wcj-country-functions.php:178
4592
- msgid "Czech Republic"
4593
- msgstr ""
4594
-
4595
- #: includes/functions/wcj-country-functions.php:179
4596
- msgid "Denmark"
4597
- msgstr ""
4598
-
4599
- #: includes/functions/wcj-country-functions.php:180
4600
- msgid "Djibouti"
4601
- msgstr ""
4602
-
4603
- #: includes/functions/wcj-country-functions.php:181
4604
- msgid "Dominica"
4605
- msgstr ""
4606
-
4607
- #: includes/functions/wcj-country-functions.php:182
4608
- msgid "Dominican Republic"
4609
- msgstr ""
4610
-
4611
- #: includes/functions/wcj-country-functions.php:183
4612
- msgid "Ecuador"
4613
- msgstr ""
4614
-
4615
- #: includes/functions/wcj-country-functions.php:184
4616
- msgid "Egypt"
4617
- msgstr ""
4618
-
4619
- #: includes/functions/wcj-country-functions.php:185
4620
- msgid "El Salvador"
4621
- msgstr ""
4622
-
4623
- #: includes/functions/wcj-country-functions.php:186
4624
- msgid "Equatorial Guinea"
4625
- msgstr ""
4626
-
4627
- #: includes/functions/wcj-country-functions.php:187
4628
- msgid "Eritrea"
4629
- msgstr ""
4630
-
4631
- #: includes/functions/wcj-country-functions.php:188
4632
- msgid "Estonia"
4633
- msgstr ""
4634
-
4635
- #: includes/functions/wcj-country-functions.php:189
4636
- msgid "Ethiopia"
4637
- msgstr ""
4638
-
4639
- #: includes/functions/wcj-country-functions.php:190
4640
- msgid "Falkland Islands"
4641
- msgstr ""
4642
-
4643
- #: includes/functions/wcj-country-functions.php:191
4644
- msgid "Faroe Islands"
4645
- msgstr ""
4646
-
4647
- #: includes/functions/wcj-country-functions.php:192
4648
- msgid "Fiji"
4649
- msgstr ""
4650
-
4651
- #: includes/functions/wcj-country-functions.php:193
4652
- msgid "Finland"
4653
- msgstr ""
4654
-
4655
- #: includes/functions/wcj-country-functions.php:194
4656
- msgid "France"
4657
- msgstr ""
4658
-
4659
- #: includes/functions/wcj-country-functions.php:195
4660
- msgid "French Guiana"
4661
- msgstr ""
4662
-
4663
- #: includes/functions/wcj-country-functions.php:196
4664
- msgid "French Polynesia"
4665
- msgstr ""
4666
-
4667
- #: includes/functions/wcj-country-functions.php:197
4668
- msgid "French Southern Territories"
4669
- msgstr ""
4670
-
4671
- #: includes/functions/wcj-country-functions.php:198
4672
- msgid "Gabon"
4673
- msgstr ""
4674
-
4675
- #: includes/functions/wcj-country-functions.php:199
4676
- msgid "Gambia"
4677
- msgstr ""
4678
-
4679
- #: includes/functions/wcj-country-functions.php:200
4680
- msgid "Georgia"
4681
- msgstr ""
4682
-
4683
- #: includes/functions/wcj-country-functions.php:201
4684
- msgid "Germany"
4685
- msgstr ""
4686
-
4687
- #: includes/functions/wcj-country-functions.php:202
4688
- msgid "Ghana"
4689
- msgstr ""
4690
-
4691
- #: includes/functions/wcj-country-functions.php:203
4692
- msgid "Gibraltar"
4693
- msgstr ""
4694
-
4695
- #: includes/functions/wcj-country-functions.php:204
4696
- msgid "Greece"
4697
- msgstr ""
4698
-
4699
- #: includes/functions/wcj-country-functions.php:205
4700
- msgid "Greenland"
4701
- msgstr ""
4702
-
4703
- #: includes/functions/wcj-country-functions.php:206
4704
- msgid "Grenada"
4705
- msgstr ""
4706
-
4707
- #: includes/functions/wcj-country-functions.php:207
4708
- msgid "Guadeloupe"
4709
- msgstr ""
4710
-
4711
- #: includes/functions/wcj-country-functions.php:208
4712
- msgid "Guatemala"
4713
- msgstr ""
4714
-
4715
- #: includes/functions/wcj-country-functions.php:209
4716
- msgid "Guernsey"
4717
- msgstr ""
4718
-
4719
- #: includes/functions/wcj-country-functions.php:210
4720
- msgid "Guinea"
4721
- msgstr ""
4722
-
4723
- #: includes/functions/wcj-country-functions.php:211
4724
- msgid "Guinea-Bissau"
4725
- msgstr ""
4726
-
4727
- #: includes/functions/wcj-country-functions.php:212
4728
- msgid "Guyana"
4729
- msgstr ""
4730
-
4731
- #: includes/functions/wcj-country-functions.php:213
4732
- msgid "Haiti"
4733
- msgstr ""
4734
-
4735
- #: includes/functions/wcj-country-functions.php:214
4736
- msgid "Heard Island and McDonald Islands"
4737
- msgstr ""
4738
-
4739
- #: includes/functions/wcj-country-functions.php:215
4740
- msgid "Honduras"
4741
- msgstr ""
4742
-
4743
- #: includes/functions/wcj-country-functions.php:216
4744
- msgid "Hong Kong"
4745
- msgstr ""
4746
-
4747
- #: includes/functions/wcj-country-functions.php:217
4748
- msgid "Hungary"
4749
- msgstr ""
4750
-
4751
- #: includes/functions/wcj-country-functions.php:218
4752
- msgid "Iceland"
4753
- msgstr ""
4754
-
4755
- #: includes/functions/wcj-country-functions.php:219
4756
- msgid "India"
4757
- msgstr ""
4758
-
4759
- #: includes/functions/wcj-country-functions.php:220
4760
- msgid "Indonesia"
4761
- msgstr ""
4762
-
4763
- #: includes/functions/wcj-country-functions.php:221
4764
- msgid "Iran"
4765
- msgstr ""
4766
-
4767
- #: includes/functions/wcj-country-functions.php:222
4768
- msgid "Iraq"
4769
- msgstr ""
4770
-
4771
- #: includes/functions/wcj-country-functions.php:223
4772
- msgid "Republic of Ireland"
4773
- msgstr ""
4774
-
4775
- #: includes/functions/wcj-country-functions.php:224
4776
- msgid "Isle of Man"
4777
- msgstr ""
4778
-
4779
- #: includes/functions/wcj-country-functions.php:225
4780
- msgid "Israel"
4781
- msgstr ""
4782
-
4783
- #: includes/functions/wcj-country-functions.php:226
4784
- msgid "Italy"
4785
- msgstr ""
4786
-
4787
- #: includes/functions/wcj-country-functions.php:227
4788
- msgid "Ivory Coast"
4789
- msgstr ""
4790
-
4791
- #: includes/functions/wcj-country-functions.php:228
4792
- msgid "Jamaica"
4793
- msgstr ""
4794
-
4795
- #: includes/functions/wcj-country-functions.php:229
4796
- msgid "Japan"
4797
- msgstr ""
4798
-
4799
- #: includes/functions/wcj-country-functions.php:230
4800
- msgid "Jersey"
4801
- msgstr ""
4802
-
4803
- #: includes/functions/wcj-country-functions.php:231
4804
- msgid "Jordan"
4805
- msgstr ""
4806
-
4807
- #: includes/functions/wcj-country-functions.php:232
4808
- msgid "Kazakhstan"
4809
- msgstr ""
4810
-
4811
- #: includes/functions/wcj-country-functions.php:233
4812
- msgid "Kenya"
4813
- msgstr ""
4814
-
4815
- #: includes/functions/wcj-country-functions.php:234
4816
- msgid "Kiribati"
4817
- msgstr ""
4818
-
4819
- #: includes/functions/wcj-country-functions.php:235
4820
- msgid "Kuwait"
4821
- msgstr ""
4822
-
4823
- #: includes/functions/wcj-country-functions.php:236
4824
- msgid "Kyrgyzstan"
4825
- msgstr ""
4826
-
4827
- #: includes/functions/wcj-country-functions.php:237
4828
- msgid "Laos"
4829
- msgstr ""
4830
-
4831
- #: includes/functions/wcj-country-functions.php:238
4832
- msgid "Latvia"
4833
- msgstr ""
4834
-
4835
- #: includes/functions/wcj-country-functions.php:239
4836
- msgid "Lebanon"
4837
- msgstr ""
4838
-
4839
- #: includes/functions/wcj-country-functions.php:240
4840
- msgid "Lesotho"
4841
- msgstr ""
4842
-
4843
- #: includes/functions/wcj-country-functions.php:241
4844
- msgid "Liberia"
4845
- msgstr ""
4846
-
4847
- #: includes/functions/wcj-country-functions.php:242
4848
- msgid "Libya"
4849
- msgstr ""
4850
-
4851
- #: includes/functions/wcj-country-functions.php:243
4852
- msgid "Liechtenstein"
4853
- msgstr ""
4854
-
4855
- #: includes/functions/wcj-country-functions.php:244
4856
- msgid "Lithuania"
4857
- msgstr ""
4858
-
4859
- #: includes/functions/wcj-country-functions.php:245
4860
- msgid "Luxembourg"
4861
- msgstr ""
4862
-
4863
- #: includes/functions/wcj-country-functions.php:246
4864
- msgid "Macao S.A.R., China"
4865
- msgstr ""
4866
-
4867
- #: includes/functions/wcj-country-functions.php:247
4868
- msgid "Macedonia"
4869
- msgstr ""
4870
-
4871
- #: includes/functions/wcj-country-functions.php:248
4872
- msgid "Madagascar"
4873
- msgstr ""
4874
-
4875
- #: includes/functions/wcj-country-functions.php:249
4876
- msgid "Malawi"
4877
- msgstr ""
4878
-
4879
- #: includes/functions/wcj-country-functions.php:250
4880
- msgid "Malaysia"
4881
- msgstr ""
4882
-
4883
- #: includes/functions/wcj-country-functions.php:251
4884
- msgid "Maldives"
4885
- msgstr ""
4886
-
4887
- #: includes/functions/wcj-country-functions.php:252
4888
- msgid "Mali"
4889
- msgstr ""
4890
-
4891
- #: includes/functions/wcj-country-functions.php:253
4892
- msgid "Malta"
4893
- msgstr ""
4894
-
4895
- #: includes/functions/wcj-country-functions.php:254
4896
- msgid "Marshall Islands"
4897
- msgstr ""
4898
-
4899
- #: includes/functions/wcj-country-functions.php:255
4900
- msgid "Martinique"
4901
- msgstr ""
4902
-
4903
- #: includes/functions/wcj-country-functions.php:256
4904
- msgid "Mauritania"
4905
- msgstr ""
4906
-
4907
- #: includes/functions/wcj-country-functions.php:257
4908
- msgid "Mauritius"
4909
- msgstr ""
4910
-
4911
- #: includes/functions/wcj-country-functions.php:258
4912
- msgid "Mayotte"
4913
- msgstr ""
4914
-
4915
- #: includes/functions/wcj-country-functions.php:259
4916
- msgid "Mexico"
4917
- msgstr ""
4918
-
4919
- #: includes/functions/wcj-country-functions.php:260
4920
- msgid "Micronesia"
4921
- msgstr ""
4922
-
4923
- #: includes/functions/wcj-country-functions.php:261
4924
- msgid "Moldova"
4925
- msgstr ""
4926
-
4927
- #: includes/functions/wcj-country-functions.php:262
4928
- msgid "Monaco"
4929
- msgstr ""
4930
-
4931
- #: includes/functions/wcj-country-functions.php:263
4932
- msgid "Mongolia"
4933
- msgstr ""
4934
-
4935
- #: includes/functions/wcj-country-functions.php:264
4936
- msgid "Montenegro"
4937
- msgstr ""
4938
-
4939
- #: includes/functions/wcj-country-functions.php:265
4940
- msgid "Montserrat"
4941
- msgstr ""
4942
-
4943
- #: includes/functions/wcj-country-functions.php:266
4944
- msgid "Morocco"
4945
- msgstr ""
4946
-
4947
- #: includes/functions/wcj-country-functions.php:267
4948
- msgid "Mozambique"
4949
- msgstr ""
4950
-
4951
- #: includes/functions/wcj-country-functions.php:268
4952
- msgid "Myanmar"
4953
- msgstr ""
4954
-
4955
- #: includes/functions/wcj-country-functions.php:269
4956
- msgid "Namibia"
4957
- msgstr ""
4958
-
4959
- #: includes/functions/wcj-country-functions.php:270
4960
- msgid "Nauru"
4961
- msgstr ""
4962
-
4963
- #: includes/functions/wcj-country-functions.php:271
4964
- msgid "Nepal"
4965
- msgstr ""
4966
-
4967
- #: includes/functions/wcj-country-functions.php:272
4968
- msgid "Netherlands"
4969
- msgstr ""
4970
-
4971
- #: includes/functions/wcj-country-functions.php:273
4972
- msgid "Netherlands Antilles"
4973
- msgstr ""
4974
-
4975
- #: includes/functions/wcj-country-functions.php:274
4976
- msgid "New Caledonia"
4977
- msgstr ""
4978
-
4979
- #: includes/functions/wcj-country-functions.php:275
4980
- msgid "New Zealand"
4981
- msgstr ""
4982
-
4983
- #: includes/functions/wcj-country-functions.php:276
4984
- msgid "Nicaragua"
4985
- msgstr ""
4986
-
4987
- #: includes/functions/wcj-country-functions.php:277
4988
- msgid "Niger"
4989
- msgstr ""
4990
-
4991
- #: includes/functions/wcj-country-functions.php:278
4992
- msgid "Nigeria"
4993
- msgstr ""
4994
-
4995
- #: includes/functions/wcj-country-functions.php:279
4996
- msgid "Niue"
4997
- msgstr ""
4998
-
4999
- #: includes/functions/wcj-country-functions.php:280
5000
- msgid "Norfolk Island"
5001
- msgstr ""
5002
-
5003
- #: includes/functions/wcj-country-functions.php:281
5004
- msgid "North Korea"
5005
- msgstr ""
5006
-
5007
- #: includes/functions/wcj-country-functions.php:282
5008
- msgid "Norway"
5009
- msgstr ""
5010
-
5011
- #: includes/functions/wcj-country-functions.php:283
5012
- msgid "Oman"
5013
- msgstr ""
5014
-
5015
- #: includes/functions/wcj-country-functions.php:284
5016
- msgid "Pakistan"
5017
- msgstr ""
5018
-
5019
- #: includes/functions/wcj-country-functions.php:285
5020
- msgid "Palestinian Territory"
5021
- msgstr ""
5022
-
5023
- #: includes/functions/wcj-country-functions.php:286
5024
- msgid "Panama"
5025
- msgstr ""
5026
-
5027
- #: includes/functions/wcj-country-functions.php:287
5028
- msgid "Papua New Guinea"
5029
- msgstr ""
5030
-
5031
- #: includes/functions/wcj-country-functions.php:288
5032
- msgid "Paraguay"
5033
- msgstr ""
5034
-
5035
- #: includes/functions/wcj-country-functions.php:289
5036
- msgid "Peru"
5037
- msgstr ""
5038
-
5039
- #: includes/functions/wcj-country-functions.php:290
5040
- msgid "Philippines"
5041
- msgstr ""
5042
-
5043
- #: includes/functions/wcj-country-functions.php:291
5044
- msgid "Pitcairn"
5045
- msgstr ""
5046
-
5047
- #: includes/functions/wcj-country-functions.php:292
5048
- msgid "Poland"
5049
- msgstr ""
5050
-
5051
- #: includes/functions/wcj-country-functions.php:293
5052
- msgid "Portugal"
5053
- msgstr ""
5054
-
5055
- #: includes/functions/wcj-country-functions.php:294
5056
- msgid "Qatar"
5057
- msgstr ""
5058
-
5059
- #: includes/functions/wcj-country-functions.php:295
5060
- msgid "Reunion"
5061
- msgstr ""
5062
-
5063
- #: includes/functions/wcj-country-functions.php:296
5064
- msgid "Romania"
5065
- msgstr ""
5066
-
5067
- #: includes/functions/wcj-country-functions.php:297
5068
- msgid "Russia"
5069
- msgstr ""
5070
-
5071
- #: includes/functions/wcj-country-functions.php:298
5072
- msgid "Rwanda"
5073
- msgstr ""
5074
-
5075
- #: includes/functions/wcj-country-functions.php:299
5076
- msgid "Saint Barth&eacute;lemy"
5077
- msgstr ""
5078
-
5079
- #: includes/functions/wcj-country-functions.php:300
5080
- msgid "Saint Helena"
5081
- msgstr ""
5082
-
5083
- #: includes/functions/wcj-country-functions.php:301
5084
- msgid "Saint Kitts and Nevis"
5085
- msgstr ""
5086
-
5087
- #: includes/functions/wcj-country-functions.php:302
5088
- msgid "Saint Lucia"
5089
- msgstr ""
5090
-
5091
- #: includes/functions/wcj-country-functions.php:303
5092
- msgid "Saint Martin (French part)"
5093
- msgstr ""
5094
-
5095
- #: includes/functions/wcj-country-functions.php:304
5096
- msgid "Saint Martin (Dutch part)"
5097
- msgstr ""
5098
-
5099
- #: includes/functions/wcj-country-functions.php:305
5100
- msgid "Saint Pierre and Miquelon"
5101
- msgstr ""
5102
-
5103
- #: includes/functions/wcj-country-functions.php:306
5104
- msgid "Saint Vincent and the Grenadines"
5105
- msgstr ""
5106
-
5107
- #: includes/functions/wcj-country-functions.php:307
5108
- msgid "San Marino"
5109
- msgstr ""
5110
-
5111
- #: includes/functions/wcj-country-functions.php:308
5112
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
5113
- msgstr ""
5114
-
5115
- #: includes/functions/wcj-country-functions.php:309
5116
- msgid "Saudi Arabia"
5117
- msgstr ""
5118
-
5119
- #: includes/functions/wcj-country-functions.php:310
5120
- msgid "Senegal"
5121
- msgstr ""
5122
-
5123
- #: includes/functions/wcj-country-functions.php:311
5124
- msgid "Serbia"
5125
- msgstr ""
5126
-
5127
- #: includes/functions/wcj-country-functions.php:312
5128
- msgid "Seychelles"
5129
- msgstr ""
5130
-
5131
- #: includes/functions/wcj-country-functions.php:313
5132
- msgid "Sierra Leone"
5133
- msgstr ""
5134
-
5135
- #: includes/functions/wcj-country-functions.php:314
5136
- msgid "Singapore"
5137
- msgstr ""
5138
-
5139
- #: includes/functions/wcj-country-functions.php:315
5140
- msgid "Slovakia"
5141
- msgstr ""
5142
-
5143
- #: includes/functions/wcj-country-functions.php:316
5144
- msgid "Slovenia"
5145
- msgstr ""
5146
-
5147
- #: includes/functions/wcj-country-functions.php:317
5148
- msgid "Solomon Islands"
5149
- msgstr ""
5150
-
5151
- #: includes/functions/wcj-country-functions.php:318
5152
- msgid "Somalia"
5153
- msgstr ""
5154
-
5155
- #: includes/functions/wcj-country-functions.php:319
5156
- msgid "South Africa"
5157
- msgstr ""
5158
-
5159
- #: includes/functions/wcj-country-functions.php:320
5160
- msgid "South Georgia/Sandwich Islands"
5161
- msgstr ""
5162
-
5163
- #: includes/functions/wcj-country-functions.php:321
5164
- msgid "South Korea"
5165
- msgstr ""
5166
-
5167
- #: includes/functions/wcj-country-functions.php:322
5168
- msgid "South Sudan"
5169
- msgstr ""
5170
-
5171
- #: includes/functions/wcj-country-functions.php:323
5172
- msgid "Spain"
5173
- msgstr ""
5174
-
5175
- #: includes/functions/wcj-country-functions.php:324
5176
- msgid "Sri Lanka"
5177
- msgstr ""
5178
-
5179
- #: includes/functions/wcj-country-functions.php:325
5180
- msgid "Sudan"
5181
- msgstr ""
5182
-
5183
- #: includes/functions/wcj-country-functions.php:326
5184
- msgid "Suriname"
5185
- msgstr ""
5186
-
5187
- #: includes/functions/wcj-country-functions.php:327
5188
- msgid "Svalbard and Jan Mayen"
5189
- msgstr ""
5190
-
5191
- #: includes/functions/wcj-country-functions.php:328
5192
- msgid "Swaziland"
5193
- msgstr ""
5194
-
5195
- #: includes/functions/wcj-country-functions.php:329
5196
- msgid "Sweden"
5197
- msgstr ""
5198
-
5199
- #: includes/functions/wcj-country-functions.php:330
5200
- msgid "Switzerland"
5201
- msgstr ""
5202
-
5203
- #: includes/functions/wcj-country-functions.php:331
5204
- msgid "Syria"
5205
- msgstr ""
5206
-
5207
- #: includes/functions/wcj-country-functions.php:332
5208
- msgid "Taiwan"
5209
- msgstr ""
5210
-
5211
- #: includes/functions/wcj-country-functions.php:333
5212
- msgid "Tajikistan"
5213
- msgstr ""
5214
-
5215
- #: includes/functions/wcj-country-functions.php:334
5216
- msgid "Tanzania"
5217
- msgstr ""
5218
-
5219
- #: includes/functions/wcj-country-functions.php:335
5220
- msgid "Thailand"
5221
- msgstr ""
5222
-
5223
- #: includes/functions/wcj-country-functions.php:336
5224
- msgid "Timor-Leste"
5225
- msgstr ""
5226
-
5227
- #: includes/functions/wcj-country-functions.php:337
5228
- msgid "Togo"
5229
- msgstr ""
5230
-
5231
- #: includes/functions/wcj-country-functions.php:338
5232
- msgid "Tokelau"
5233
- msgstr ""
5234
-
5235
- #: includes/functions/wcj-country-functions.php:339
5236
- msgid "Tonga"
5237
- msgstr ""
5238
-
5239
- #: includes/functions/wcj-country-functions.php:340
5240
- msgid "Trinidad and Tobago"
5241
- msgstr ""
5242
-
5243
- #: includes/functions/wcj-country-functions.php:341
5244
- msgid "Tunisia"
5245
- msgstr ""
5246
-
5247
- #: includes/functions/wcj-country-functions.php:342
5248
- msgid "Turkey"
5249
- msgstr ""
5250
-
5251
- #: includes/functions/wcj-country-functions.php:343
5252
- msgid "Turkmenistan"
5253
- msgstr ""
5254
-
5255
- #: includes/functions/wcj-country-functions.php:344
5256
- msgid "Turks and Caicos Islands"
5257
- msgstr ""
5258
-
5259
- #: includes/functions/wcj-country-functions.php:345
5260
- msgid "Tuvalu"
5261
- msgstr ""
5262
-
5263
- #: includes/functions/wcj-country-functions.php:346
5264
- msgid "Uganda"
5265
- msgstr ""
5266
-
5267
- #: includes/functions/wcj-country-functions.php:347
5268
- msgid "Ukraine"
5269
- msgstr ""
5270
-
5271
- #: includes/functions/wcj-country-functions.php:348
5272
- msgid "United Arab Emirates"
5273
- msgstr ""
5274
-
5275
- #: includes/functions/wcj-country-functions.php:349
5276
- msgid "United Kingdom (UK)"
5277
- msgstr ""
5278
-
5279
- #: includes/functions/wcj-country-functions.php:350
5280
- msgid "United States (US)"
5281
- msgstr ""
5282
-
5283
- #: includes/functions/wcj-country-functions.php:351
5284
- msgid "Uruguay"
5285
- msgstr ""
5286
-
5287
- #: includes/functions/wcj-country-functions.php:352
5288
- msgid "Uzbekistan"
5289
- msgstr ""
5290
-
5291
- #: includes/functions/wcj-country-functions.php:353
5292
- msgid "Vanuatu"
5293
- msgstr ""
5294
-
5295
- #: includes/functions/wcj-country-functions.php:354
5296
- msgid "Vatican"
5297
- msgstr ""
5298
-
5299
- #: includes/functions/wcj-country-functions.php:355
5300
- msgid "Venezuela"
5301
- msgstr ""
5302
-
5303
- #: includes/functions/wcj-country-functions.php:356
5304
- msgid "Vietnam"
5305
- msgstr ""
5306
-
5307
- #: includes/functions/wcj-country-functions.php:357
5308
- msgid "Wallis and Futuna"
5309
- msgstr ""
5310
-
5311
- #: includes/functions/wcj-country-functions.php:358
5312
- msgid "Western Sahara"
5313
- msgstr ""
5314
-
5315
- #: includes/functions/wcj-country-functions.php:359
5316
- msgid "Western Samoa"
5317
- msgstr ""
5318
-
5319
- #: includes/functions/wcj-country-functions.php:360
5320
- msgid "Yemen"
5321
- msgstr ""
5322
-
5323
- #: includes/functions/wcj-country-functions.php:361
5324
- msgid "Zambia"
5325
- msgstr ""
5326
-
5327
- #: includes/functions/wcj-country-functions.php:362
5328
- msgid "Zimbabwe"
5329
- msgstr ""
5330
-
5331
- #: includes/functions/wcj-country-functions.php:363
5332
- msgid "European Union"
5333
- msgstr ""
5334
-
5335
- #: includes/functions/wcj-currencies.php:13
5336
- msgid "United Arab Emirates Dirham"
5337
- msgstr ""
5338
-
5339
- #: includes/functions/wcj-currencies.php:14
5340
- msgid "Afghan afghani"
5341
- msgstr ""
5342
-
5343
- #: includes/functions/wcj-currencies.php:15
5344
- msgid "Albanian lek"
5345
- msgstr ""
5346
-
5347
- #: includes/functions/wcj-currencies.php:16
5348
- msgid "Armenian dram"
5349
- msgstr ""
5350
-
5351
- #: includes/functions/wcj-currencies.php:17
5352
- msgid "Netherlands Antillean gulden"
5353
- msgstr ""
5354
-
5355
- #: includes/functions/wcj-currencies.php:18
5356
- msgid "Angolan kwanza"
5357
- msgstr ""
5358
-
5359
- #: includes/functions/wcj-currencies.php:19
5360
- msgid "Argentine Peso"
5361
- msgstr ""
5362
-
5363
- #: includes/functions/wcj-currencies.php:20
5364
- msgid "Australian Dollars"
5365
- msgstr ""
5366
-
5367
- #: includes/functions/wcj-currencies.php:21
5368
- msgid "Aruban florin"
5369
- msgstr ""
5370
-
5371
- #: includes/functions/wcj-currencies.php:22
5372
- msgid "Azerbaijani manat"
5373
- msgstr ""
5374
-
5375
- #: includes/functions/wcj-currencies.php:23
5376
- msgid "Bosnia and Herzegovina konvertibilna marka"
5377
- msgstr ""
5378
-
5379
- #: includes/functions/wcj-currencies.php:24
5380
- msgid "Barbadian dollar"
5381
- msgstr ""
5382
-
5383
- #: includes/functions/wcj-currencies.php:25
5384
- msgid "Bangladeshi Taka"
5385
- msgstr ""
5386
-
5387
- #: includes/functions/wcj-currencies.php:26
5388
- msgid "Bulgarian Lev"
5389
- msgstr ""
5390
-
5391
- #: includes/functions/wcj-currencies.php:27
5392
- msgid "Bahraini dinar"
5393
- msgstr ""
5394
-
5395
- #: includes/functions/wcj-currencies.php:28
5396
- msgid "Burundi franc"
5397
- msgstr ""
5398
-
5399
- #: includes/functions/wcj-currencies.php:29
5400
- msgid "Belarusian ruble"
5401
- msgstr ""
5402
-
5403
- #: includes/functions/wcj-currencies.php:30
5404
- msgid "Brunei dollar"
5405
- msgstr ""
5406
-
5407
- #: includes/functions/wcj-currencies.php:31
5408
- msgid "Bolivian boliviano"
5409
- msgstr ""
5410
-
5411
- #: includes/functions/wcj-currencies.php:32
5412
- msgid "Brazilian Real"
5413
- msgstr ""
5414
-
5415
- #: includes/functions/wcj-currencies.php:33
5416
- msgid "Bahamian dollar"
5417
- msgstr ""
5418
-
5419
- #: includes/functions/wcj-currencies.php:34
5420
- msgid "Bhutanese ngultrum"
5421
- msgstr ""
5422
-
5423
- #: includes/functions/wcj-currencies.php:35
5424
- msgid "Botswana pula"
5425
- msgstr ""
5426
-
5427
- #: includes/functions/wcj-currencies.php:36
5428
- msgid "Belize dollar"
5429
- msgstr ""
5430
-
5431
- #: includes/functions/wcj-currencies.php:37
5432
- msgid "Canadian Dollars"
5433
- msgstr ""
5434
-
5435
- #: includes/functions/wcj-currencies.php:38
5436
- msgid "Congolese franc"
5437
- msgstr ""
5438
-
5439
- #: includes/functions/wcj-currencies.php:39
5440
- msgid "Swiss Franc"
5441
- msgstr ""
5442
-
5443
- #: includes/functions/wcj-currencies.php:40
5444
- msgid "Chilean Peso"
5445
- msgstr ""
5446
-
5447
- #: includes/functions/wcj-currencies.php:41
5448
- msgid "Chinese Yuan"
5449
- msgstr ""
5450
-
5451
- #: includes/functions/wcj-currencies.php:42
5452
- msgid "Colombian Peso"
5453
- msgstr ""
5454
-
5455
- #: includes/functions/wcj-currencies.php:43
5456
- msgid "Costa Rican colon"
5457
- msgstr ""
5458
-
5459
- #: includes/functions/wcj-currencies.php:44
5460
- msgid "Cuban peso"
5461
- msgstr ""
5462
-
5463
- #: includes/functions/wcj-currencies.php:45
5464
- msgid "Cape Verdean escudo"
5465
- msgstr ""
5466
-
5467
- #: includes/functions/wcj-currencies.php:46
5468
- msgid "Czech Koruna"
5469
- msgstr ""
5470
-
5471
- #: includes/functions/wcj-currencies.php:47
5472
- msgid "Djiboutian franc"
5473
- msgstr ""
5474
-
5475
- #: includes/functions/wcj-currencies.php:48
5476
- msgid "Danish Krone"
5477
- msgstr ""
5478
-
5479
- #: includes/functions/wcj-currencies.php:49
5480
- msgid "Dominican Peso"
5481
- msgstr ""
5482
-
5483
- #: includes/functions/wcj-currencies.php:50
5484
- msgid "Algerian dinar"
5485
- msgstr ""
5486
-
5487
- #: includes/functions/wcj-currencies.php:51
5488
- msgid "Estonian kroon"
5489
- msgstr ""
5490
-
5491
- #: includes/functions/wcj-currencies.php:52
5492
- msgid "Egyptian Pound"
5493
- msgstr ""
5494
-
5495
- #: includes/functions/wcj-currencies.php:53
5496
- msgid "Eritrean nakfa"
5497
- msgstr ""
5498
-
5499
- #: includes/functions/wcj-currencies.php:54
5500
- msgid "Ethiopian birr"
5501
- msgstr ""
5502
-
5503
- #: includes/functions/wcj-currencies.php:55
5504
- msgid "Euros"
5505
- msgstr ""
5506
-
5507
- #: includes/functions/wcj-currencies.php:56
5508
- msgid "Fijian dollar"
5509
- msgstr ""
5510
-
5511
- #: includes/functions/wcj-currencies.php:57
5512
- msgid "Falkland Islands pound"
5513
- msgstr ""
5514
-
5515
- #: includes/functions/wcj-currencies.php:58
5516
- msgid "Pounds Sterling"
5517
- msgstr ""
5518
-
5519
- #: includes/functions/wcj-currencies.php:59
5520
- msgid "Georgian lari"
5521
- msgstr ""
5522
-
5523
- #: includes/functions/wcj-currencies.php:60
5524
- msgid "Ghanaian cedi"
5525
- msgstr ""
5526
-
5527
- #: includes/functions/wcj-currencies.php:61
5528
- msgid "Gibraltar pound"
5529
- msgstr ""
5530
-
5531
- #: includes/functions/wcj-currencies.php:62
5532
- msgid "Guyanese dollar"
5533
- msgstr ""
5534
-
5535
- #: includes/functions/wcj-currencies.php:63
5536
- msgid "Gambian dalasi"
5537
- msgstr ""
5538
-
5539
- #: includes/functions/wcj-currencies.php:64
5540
- msgid "Guinean franc"
5541
- msgstr ""
5542
-
5543
- #: includes/functions/wcj-currencies.php:65
5544
- #: includes/functions/wcj-currencies.php:168
5545
- msgid "Central African CFA franc"
5546
- msgstr ""
5547
-
5548
- #: includes/functions/wcj-currencies.php:66
5549
- msgid "Guatemalan quetzal"
5550
- msgstr ""
5551
-
5552
- #: includes/functions/wcj-currencies.php:67
5553
- msgid "Hong Kong Dollar"
5554
- msgstr ""
5555
-
5556
- #: includes/functions/wcj-currencies.php:68
5557
- msgid "Honduran lempira"
5558
- msgstr ""
5559
-
5560
- #: includes/functions/wcj-currencies.php:69
5561
- msgid "Croatia kuna"
5562
- msgstr ""
5563
-
5564
- #: includes/functions/wcj-currencies.php:70
5565
- msgid "Haitian gourde"
5566
- msgstr ""
5567
-
5568
- #: includes/functions/wcj-currencies.php:71
5569
- msgid "Hungarian Forint"
5570
- msgstr ""
5571
-
5572
- #: includes/functions/wcj-currencies.php:72
5573
- msgid "Indonesia Rupiah"
5574
- msgstr ""
5575
-
5576
- #: includes/functions/wcj-currencies.php:73
5577
- msgid "Israeli Shekel"
5578
- msgstr ""
5579
-
5580
- #: includes/functions/wcj-currencies.php:74
5581
- msgid "Indian Rupee"
5582
- msgstr ""
5583
-
5584
- #: includes/functions/wcj-currencies.php:75
5585
- msgid "Iraqi dinar"
5586
- msgstr ""
5587
-
5588
- #: includes/functions/wcj-currencies.php:76
5589
- msgid "Iranian rial"
5590
- msgstr ""
5591
-
5592
- #: includes/functions/wcj-currencies.php:77
5593
- msgid "Icelandic krona"
5594
- msgstr ""
5595
-
5596
- #: includes/functions/wcj-currencies.php:78
5597
- msgid "Yemeni rial"
5598
- msgstr ""
5599
-
5600
- #: includes/functions/wcj-currencies.php:79
5601
- msgid "Jamaican dollar"
5602
- msgstr ""
5603
-
5604
- #: includes/functions/wcj-currencies.php:80
5605
- msgid "Jordanian dinar"
5606
- msgstr ""
5607
-
5608
- #: includes/functions/wcj-currencies.php:81
5609
- msgid "Japanese Yen"
5610
- msgstr ""
5611
-
5612
- #: includes/functions/wcj-currencies.php:82
5613
- msgid "Kenyan shilling"
5614
- msgstr ""
5615
-
5616
- #: includes/functions/wcj-currencies.php:83
5617
- msgid "Kyrgyzstani som"
5618
- msgstr ""
5619
-
5620
- #: includes/functions/wcj-currencies.php:84
5621
- msgid "Cambodian riel"
5622
- msgstr ""
5623
-
5624
- #: includes/functions/wcj-currencies.php:85
5625
- msgid "Lao kip"
5626
- msgstr ""
5627
-
5628
- #: includes/functions/wcj-currencies.php:86
5629
- msgid "Cayman Islands dollar"
5630
- msgstr ""
5631
-
5632
- #: includes/functions/wcj-currencies.php:87
5633
- msgid "Comorian franc"
5634
- msgstr ""
5635
-
5636
- #: includes/functions/wcj-currencies.php:88
5637
- msgid "North Korean won"
5638
- msgstr ""
5639
-
5640
- #: includes/functions/wcj-currencies.php:89
5641
- msgid "South Korean Won"
5642
- msgstr ""
5643
-
5644
- #: includes/functions/wcj-currencies.php:90
5645
- msgid "Kuwaiti dinar"
5646
- msgstr ""
5647
-
5648
- #: includes/functions/wcj-currencies.php:91
5649
- msgid "Kazakhstani tenge"
5650
- msgstr ""
5651
-
5652
- #: includes/functions/wcj-currencies.php:92
5653
- msgid "Lao Kip"
5654
- msgstr ""
5655
-
5656
- #: includes/functions/wcj-currencies.php:93
5657
- msgid "Lebanese lira"
5658
- msgstr ""
5659
-
5660
- #: includes/functions/wcj-currencies.php:94
5661
- msgid "Libyan dinar"
5662
- msgstr ""
5663
-
5664
- #: includes/functions/wcj-currencies.php:95
5665
- msgid "Sri Lankan rupee"
5666
- msgstr ""
5667
-
5668
- #: includes/functions/wcj-currencies.php:96
5669
- msgid "Liberian dollar"
5670
- msgstr ""
5671
-
5672
- #: includes/functions/wcj-currencies.php:97
5673
- msgid "Lesotho loti"
5674
- msgstr ""
5675
-
5676
- #: includes/functions/wcj-currencies.php:98
5677
- msgid "Lithuanian litas"
5678
- msgstr ""
5679
-
5680
- #: includes/functions/wcj-currencies.php:99
5681
- msgid "Latvian lats"
5682
- msgstr ""
5683
-
5684
- #: includes/functions/wcj-currencies.php:100
5685
- msgid "Moroccan dirham"
5686
- msgstr ""
5687
-
5688
- #: includes/functions/wcj-currencies.php:101
5689
- msgid "Moldovan leu"
5690
- msgstr ""
5691
-
5692
- #: includes/functions/wcj-currencies.php:102
5693
- msgid "Malagasy ariary"
5694
- msgstr ""
5695
-
5696
- #: includes/functions/wcj-currencies.php:103
5697
- msgid "Malaysian ringgit"
5698
- msgstr ""
5699
-
5700
- #: includes/functions/wcj-currencies.php:104
5701
- msgid "Macedonian denar"
5702
- msgstr ""
5703
-
5704
- #: includes/functions/wcj-currencies.php:105
5705
- msgid "Myanma kyat"
5706
- msgstr ""
5707
-
5708
- #: includes/functions/wcj-currencies.php:106
5709
- msgid "Mongolian tugrik"
5710
- msgstr ""
5711
-
5712
- #: includes/functions/wcj-currencies.php:107
5713
- msgid "Macanese pataca"
5714
- msgstr ""
5715
-
5716
- #: includes/functions/wcj-currencies.php:108
5717
- msgid "Mauritanian ouguiya"
5718
- msgstr ""
5719
-
5720
- #: includes/functions/wcj-currencies.php:109
5721
- msgid "Mauritian rupee"
5722
- msgstr ""
5723
-
5724
- #: includes/functions/wcj-currencies.php:110
5725
- msgid "Maldivian rufiyaa"
5726
- msgstr ""
5727
-
5728
- #: includes/functions/wcj-currencies.php:111
5729
- msgid "Malawian kwacha"
5730
- msgstr ""
5731
-
5732
- #: includes/functions/wcj-currencies.php:112
5733
- msgid "Mexican Peso"
5734
- msgstr ""
5735
-
5736
- #: includes/functions/wcj-currencies.php:113
5737
- msgid "Malaysian Ringgits"
5738
- msgstr ""
5739
-
5740
- #: includes/functions/wcj-currencies.php:114
5741
- msgid "Mozambican metical"
5742
- msgstr ""
5743
-
5744
- #: includes/functions/wcj-currencies.php:115
5745
- msgid "Namibian dollar"
5746
- msgstr ""
5747
-
5748
- #: includes/functions/wcj-currencies.php:116
5749
- msgid "Nigerian Naira"
5750
- msgstr ""
5751
-
5752
- #: includes/functions/wcj-currencies.php:117
5753
- msgid "Nicaraguan cordoba"
5754
- msgstr ""
5755
-
5756
- #: includes/functions/wcj-currencies.php:118
5757
- msgid "Norwegian Krone"
5758
- msgstr ""
5759
-
5760
- #: includes/functions/wcj-currencies.php:119
5761
- msgid "Nepali Rupee"
5762
- msgstr ""
5763
-
5764
- #: includes/functions/wcj-currencies.php:120
5765
- msgid "New Zealand Dollar"
5766
- msgstr ""
5767
-
5768
- #: includes/functions/wcj-currencies.php:121
5769
- msgid "Omani rial"
5770
- msgstr ""
5771
-
5772
- #: includes/functions/wcj-currencies.php:122
5773
- msgid "Panamanian balboa"
5774
- msgstr ""
5775
-
5776
- #: includes/functions/wcj-currencies.php:123
5777
- msgid "Peruvian nuevo sol"
5778
- msgstr ""
5779
-
5780
- #: includes/functions/wcj-currencies.php:124
5781
- msgid "Papua New Guinean kina"
5782
- msgstr ""
5783
-
5784
- #: includes/functions/wcj-currencies.php:125
5785
- msgid "Philippine Pesos"
5786
- msgstr ""
5787
-
5788
- #: includes/functions/wcj-currencies.php:126
5789
- msgid "Paraguayan guarani"
5790
- msgstr ""
5791
-
5792
- #: includes/functions/wcj-currencies.php:127
5793
- msgid "Pakistani Rupee"
5794
- msgstr ""
5795
-
5796
- #: includes/functions/wcj-currencies.php:128
5797
- msgid "Polish Zloty"
5798
- msgstr ""
5799
-
5800
- #: includes/functions/wcj-currencies.php:129
5801
- msgid "Paraguayan Guaraní"
5802
- msgstr ""
5803
-
5804
- #: includes/functions/wcj-currencies.php:130
5805
- msgid "Qatari riyal"
5806
- msgstr ""
5807
-
5808
- #: includes/functions/wcj-currencies.php:131
5809
- msgid "Chinese renminbi"
5810
- msgstr ""
5811
-
5812
- #: includes/functions/wcj-currencies.php:132
5813
- msgid "Romanian Leu"
5814
- msgstr ""
5815
-
5816
- #: includes/functions/wcj-currencies.php:133
5817
- msgid "Serbian dinar"
5818
- msgstr ""
5819
-
5820
- #: includes/functions/wcj-currencies.php:134
5821
- msgid "Russian Ruble"
5822
- msgstr ""
5823
-
5824
- #: includes/functions/wcj-currencies.php:135
5825
- msgid "Rwandan franc"
5826
- msgstr ""
5827
-
5828
- #: includes/functions/wcj-currencies.php:136
5829
- msgid "Saudi Riyal"
5830
- msgstr ""
5831
-
5832
- #: includes/functions/wcj-currencies.php:137
5833
- msgid "Solomon Islands dollar"
5834
- msgstr ""
5835
-
5836
- #: includes/functions/wcj-currencies.php:138
5837
- msgid "Seychellois rupee"
5838
- msgstr ""
5839
-
5840
- #: includes/functions/wcj-currencies.php:139
5841
- msgid "Sudanese pound"
5842
- msgstr ""
5843
-
5844
- #: includes/functions/wcj-currencies.php:140
5845
- msgid "Swedish Krona"
5846
- msgstr ""
5847
-
5848
- #: includes/functions/wcj-currencies.php:141
5849
- msgid "Singapore Dollar"
5850
- msgstr ""
5851
-
5852
- #: includes/functions/wcj-currencies.php:142
5853
- msgid "Saint Helena pound"
5854
- msgstr ""
5855
-
5856
- #: includes/functions/wcj-currencies.php:143
5857
- msgid "Syrian pound"
5858
- msgstr ""
5859
-
5860
- #: includes/functions/wcj-currencies.php:144
5861
- msgid "Slovak koruna"
5862
- msgstr ""
5863
-
5864
- #: includes/functions/wcj-currencies.php:145
5865
- msgid "Sierra Leonean leone"
5866
- msgstr ""
5867
-
5868
- #: includes/functions/wcj-currencies.php:146
5869
- msgid "Somali shilling"
5870
- msgstr ""
5871
-
5872
- #: includes/functions/wcj-currencies.php:147
5873
- msgid "Surinamese dollar"
5874
- msgstr ""
5875
-
5876
- #: includes/functions/wcj-currencies.php:148
5877
- msgid "Sao Tome and Principe dobra"
5878
- msgstr ""
5879
-
5880
- #: includes/functions/wcj-currencies.php:149
5881
- msgid "Swazi lilangeni"
5882
- msgstr ""
5883
-
5884
- #: includes/functions/wcj-currencies.php:150
5885
- msgid "Thai Baht"
5886
- msgstr ""
5887
-
5888
- #: includes/functions/wcj-currencies.php:151
5889
- msgid "Tajikistani somoni"
5890
- msgstr ""
5891
-
5892
- #: includes/functions/wcj-currencies.php:152
5893
- msgid "Turkmen manat"
5894
- msgstr ""
5895
-
5896
- #: includes/functions/wcj-currencies.php:153
5897
- msgid "Tunisian dinar"
5898
- msgstr ""
5899
-
5900
- #: includes/functions/wcj-currencies.php:154
5901
- msgid "Paanga"
5902
- msgstr ""
5903
-
5904
- #: includes/functions/wcj-currencies.php:155
5905
- msgid "Turkish Lira"
5906
- msgstr ""
5907
-
5908
- #: includes/functions/wcj-currencies.php:156
5909
- msgid "Trinidad and Tobago dollar"
5910
- msgstr ""
5911
-
5912
- #: includes/functions/wcj-currencies.php:157
5913
- msgid "Taiwan New Dollars"
5914
- msgstr ""
5915
-
5916
- #: includes/functions/wcj-currencies.php:158
5917
- msgid "Tanzanian shilling"
5918
- msgstr ""
5919
-
5920
- #: includes/functions/wcj-currencies.php:159
5921
- msgid "Ukrainian Hryvnia"
5922
- msgstr ""
5923
-
5924
- #: includes/functions/wcj-currencies.php:160
5925
- msgid "Ugandan shilling"
5926
- msgstr ""
5927
-
5928
- #: includes/functions/wcj-currencies.php:161
5929
- msgid "Uruguayan peso"
5930
- msgstr ""
5931
-
5932
- #: includes/functions/wcj-currencies.php:162
5933
- msgid "US Dollars"
5934
- msgstr ""
5935
-
5936
- #: includes/functions/wcj-currencies.php:163
5937
- msgid "Uzbekistani som"
5938
- msgstr ""
5939
-
5940
- #: includes/functions/wcj-currencies.php:164
5941
- msgid "Venezuelan bolivar"
5942
- msgstr ""
5943
-
5944
- #: includes/functions/wcj-currencies.php:165
5945
- msgid "Vietnamese Dong"
5946
- msgstr ""
5947
-
5948
- #: includes/functions/wcj-currencies.php:166
5949
- msgid "Vanuatu vatu"
5950
- msgstr ""
5951
-
5952
- #: includes/functions/wcj-currencies.php:167
5953
- msgid "Samoan tala"
5954
- msgstr ""
5955
-
5956
- #: includes/functions/wcj-currencies.php:169
5957
- msgid "East Caribbean dollar"
5958
- msgstr ""
5959
-
5960
- #: includes/functions/wcj-currencies.php:170
5961
- msgid "Special Drawing Rights"
5962
- msgstr ""
5963
-
5964
- #: includes/functions/wcj-currencies.php:171
5965
- msgid "West African CFA franc"
5966
- msgstr ""
5967
-
5968
- #: includes/functions/wcj-currencies.php:172
5969
- msgid "CFP franc"
5970
- msgstr ""
5971
-
5972
- #: includes/functions/wcj-currencies.php:173
5973
- msgid "South African rand"
5974
- msgstr ""
5975
-
5976
- #: includes/functions/wcj-currencies.php:174
5977
- msgid "Zambian kwacha"
5978
- msgstr ""
5979
-
5980
- #: includes/functions/wcj-currencies.php:175
5981
- msgid "Zimbabwean dollar"
5982
- msgstr ""
5983
-
5984
- #: includes/functions/wcj-currencies.php:176
5985
- msgid "Bitcoin"
5986
- msgstr ""
5987
-
5988
- #: includes/functions/wcj-currencies.php:177
5989
- msgid "Ethereum"
5990
- msgstr ""
5991
-
5992
- #: includes/functions/wcj-currencies.php:178
5993
- msgid "myCred"
5994
- msgstr ""
5995
-
5996
- #: includes/functions/wcj-exchange-rates-functions.php:21
5997
- msgid "Yahoo"
5998
- msgstr ""
5999
-
6000
- #: includes/functions/wcj-exchange-rates-functions.php:22
6001
- msgid "European Central Bank (ECB)"
6002
- msgstr ""
6003
-
6004
- #: includes/functions/wcj-exchange-rates-functions.php:23
6005
- msgid "TCMB"
6006
- msgstr ""
6007
-
6008
- #: includes/functions/wcj-general-functions.php:224
6009
- #: includes/settings/wcj-settings-left-to-free-shipping.php:143
6010
- msgid "You have Free delivery"
6011
- msgstr ""
6012
-
6013
- #: includes/functions/wcj-general-functions.php:245
6014
- msgid "Before cart"
6015
- msgstr ""
6016
-
6017
- #: includes/functions/wcj-general-functions.php:246
6018
- msgid "Before cart table"
6019
- msgstr ""
6020
-
6021
- #: includes/functions/wcj-general-functions.php:247
6022
- msgid "Before cart contents"
6023
- msgstr ""
6024
-
6025
- #: includes/functions/wcj-general-functions.php:248
6026
- msgid "Cart contents"
6027
- msgstr ""
6028
-
6029
- #: includes/functions/wcj-general-functions.php:249
6030
- msgid "Cart coupon"
6031
- msgstr ""
6032
-
6033
- #: includes/functions/wcj-general-functions.php:250
6034
- msgid "Cart actions"
6035
- msgstr ""
6036
-
6037
- #: includes/functions/wcj-general-functions.php:251
6038
- msgid "After cart contents"
6039
- msgstr ""
6040
-
6041
- #: includes/functions/wcj-general-functions.php:252
6042
- msgid "After cart table"
6043
- msgstr ""
6044
-
6045
- #: includes/functions/wcj-general-functions.php:253
6046
- msgid "Cart collaterals"
6047
- msgstr ""
6048
-
6049
- #: includes/functions/wcj-general-functions.php:254
6050
- msgid "After cart"
6051
- msgstr ""
6052
-
6053
- #: includes/functions/wcj-general-functions.php:256
6054
- msgid "Before cart totals"
6055
- msgstr ""
6056
-
6057
- #: includes/functions/wcj-general-functions.php:257
6058
- msgid "Cart totals: Before shipping"
6059
- msgstr ""
6060
-
6061
- #: includes/functions/wcj-general-functions.php:258
6062
- msgid "Cart totals: After shipping"
6063
- msgstr ""
6064
-
6065
- #: includes/functions/wcj-general-functions.php:259
6066
- msgid "Cart totals: Before order total"
6067
- msgstr ""
6068
-
6069
- #: includes/functions/wcj-general-functions.php:260
6070
- msgid "Cart totals: After order total"
6071
- msgstr ""
6072
-
6073
- #: includes/functions/wcj-general-functions.php:261
6074
- msgid "Proceed to checkout"
6075
- msgstr ""
6076
-
6077
- #: includes/functions/wcj-general-functions.php:262
6078
- msgid "After cart totals"
6079
- msgstr ""
6080
-
6081
- #: includes/functions/wcj-general-functions.php:264
6082
- msgid "Before shipping calculator"
6083
- msgstr ""
6084
-
6085
- #: includes/functions/wcj-general-functions.php:265
6086
- msgid "After shipping calculator"
6087
- msgstr ""
6088
-
6089
- #: includes/functions/wcj-general-functions.php:267
6090
- msgid "If cart is empty"
6091
- msgstr ""
6092
-
6093
- #: includes/functions/wcj-invoicing-functions.php:209
6094
- msgid "Invoice"
6095
- msgstr ""
6096
-
6097
- #: includes/functions/wcj-invoicing-functions.php:210
6098
- msgid "Invoices"
6099
- msgstr ""
6100
-
6101
- #: includes/functions/wcj-invoicing-functions.php:217
6102
- msgid "Proforma Invoice"
6103
- msgstr ""
6104
-
6105
- #: includes/functions/wcj-invoicing-functions.php:218
6106
- msgid "Proforma Invoices"
6107
- msgstr ""
6108
-
6109
- #: includes/functions/wcj-invoicing-functions.php:225
6110
- msgid "Packing Slip"
6111
- msgstr ""
6112
-
6113
- #: includes/functions/wcj-invoicing-functions.php:226
6114
- msgid "Packing Slips"
6115
- msgstr ""
6116
-
6117
- #: includes/functions/wcj-invoicing-functions.php:233
6118
- msgid "Credit Note"
6119
- msgstr ""
6120
-
6121
- #: includes/functions/wcj-invoicing-functions.php:234
6122
- msgid "Credit Notes"
6123
- msgstr ""
6124
-
6125
- #: includes/functions/wcj-invoicing-functions.php:252
6126
- msgid "Custom Document"
6127
- msgstr ""
6128
-
6129
- #: includes/functions/wcj-invoicing-functions.php:253
6130
- msgid "Custom Documents"
6131
- msgstr ""
6132
-
6133
- #: includes/functions/wcj-order-functions.php:112
6134
- msgctxt "Order status"
6135
- msgid "Pending Payment"
6136
- msgstr ""
6137
-
6138
- #: includes/functions/wcj-order-functions.php:114
6139
- msgctxt "Order status"
6140
- msgid "On Hold"
6141
- msgstr ""
6142
-
6143
- #: includes/functions/wcj-reports-functions.php:22
6144
- msgid "Daily Total Sum"
6145
- msgstr ""
6146
-
6147
- #: includes/functions/wcj-reports-functions.php:23
6148
- msgid "Daily Total Quantity"
6149
- msgstr ""
6150
-
6151
- #: includes/functions/wcj-reports-functions.php:26
6152
- msgid "Item Title"
6153
- msgstr ""
6154
-
6155
- #: includes/functions/wcj-reports-functions.php:27
6156
- msgid "Quantity"
6157
- msgstr ""
6158
-
6159
- #: includes/functions/wcj-reports-functions.php:28
6160
- msgid "Sum"
6161
- msgstr ""
6162
-
6163
- #: includes/functions/wcj-reports-functions.php:30
6164
- msgid "Last Sale Date"
6165
- msgstr ""
6166
-
6167
- #: includes/functions/wcj-reports-functions.php:31
6168
- msgid "Last Sale Order ID"
6169
- msgstr ""
6170
-
6171
- #: includes/functions/wcj-reports-functions.php:32
6172
- msgid "Last Sale Order Status"
6173
- msgstr ""
6174
-
6175
- #: includes/functions/wcj-reports-functions.php:80
6176
- msgid "Last 14 days"
6177
- msgstr ""
6178
-
6179
- #: includes/functions/wcj-reports-functions.php:85
6180
- msgid "Last 30 days"
6181
- msgstr ""
6182
-
6183
- #: includes/functions/wcj-reports-functions.php:90
6184
- msgid "Last 3 months"
6185
- msgstr ""
6186
-
6187
- #: includes/functions/wcj-reports-functions.php:95
6188
- msgid "Last 6 months"
6189
- msgstr ""
6190
-
6191
- #: includes/functions/wcj-reports-functions.php:100
6192
- msgid "Last 12 months"
6193
- msgstr ""
6194
-
6195
- #: includes/functions/wcj-reports-functions.php:105
6196
- msgid "Last 24 months"
6197
- msgstr ""
6198
-
6199
- #: includes/functions/wcj-reports-functions.php:110
6200
- msgid "Last 36 months"
6201
- msgstr ""
6202
-
6203
- #: includes/functions/wcj-reports-functions.php:115
6204
- msgid "Same days last month"
6205
- msgstr ""
6206
-
6207
- #: includes/functions/wcj-reports-functions.php:120
6208
- msgid "Same days last year"
6209
- msgstr ""
6210
-
6211
- #: includes/functions/wcj-reports-functions.php:125
6212
- msgid "Last year"
6213
- msgstr ""
6214
-
6215
- #: includes/functions/wcj-reports-functions.php:130
6216
- msgid "Yesterday"
6217
- msgstr ""
6218
-
6219
- #: includes/functions/wcj-reports-functions.php:135
6220
- msgid "Today"
6221
- msgstr ""
6222
-
6223
- #: includes/functions/wcj-user-roles-functions.php:101
6224
- #: includes/functions/wcj-user-roles-functions.php:121
6225
- msgid "Guest"
6226
- msgstr ""
6227
-
6228
- #: includes/gateways/class-wc-gateway-wcj-custom.php:61
6229
- msgid "Enable Custom Payment"
6230
- msgstr ""
6231
-
6232
- #: includes/gateways/class-wc-gateway-wcj-custom.php:68
6233
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
6234
- #: includes/shipping/class-wc-shipping-wcj-custom.php:118
6235
- msgid "This controls the title which the user sees during checkout."
6236
- msgstr ""
6237
-
6238
- #: includes/gateways/class-wc-gateway-wcj-custom.php:69
6239
- msgid "Custom Payment"
6240
- msgstr ""
6241
-
6242
- #: includes/gateways/class-wc-gateway-wcj-custom.php:76
6243
- msgid "Payment method description that the customer will see on your checkout."
6244
- msgstr ""
6245
-
6246
- #: includes/gateways/class-wc-gateway-wcj-custom.php:77
6247
- msgid "You can add input fields with [wcj_input_field] shortcode."
6248
- msgstr ""
6249
-
6250
- #: includes/gateways/class-wc-gateway-wcj-custom.php:78
6251
- msgid "Custom Payment Description."
6252
- msgstr ""
6253
-
6254
- #: includes/gateways/class-wc-gateway-wcj-custom.php:83
6255
- msgid "Instructions"
6256
- msgstr ""
6257
-
6258
- #: includes/gateways/class-wc-gateway-wcj-custom.php:85
6259
- msgid "Instructions that will be added to the thank you page."
6260
- msgstr ""
6261
-
6262
- #: includes/gateways/class-wc-gateway-wcj-custom.php:91
6263
- msgid "Email Instructions"
6264
- msgstr ""
6265
-
6266
- #: includes/gateways/class-wc-gateway-wcj-custom.php:93
6267
- msgid "Instructions that will be added to the emails."
6268
- msgstr ""
6269
-
6270
- #: includes/gateways/class-wc-gateway-wcj-custom.php:99
6271
- msgid "Icon"
6272
- msgstr ""
6273
-
6274
- #: includes/gateways/class-wc-gateway-wcj-custom.php:101
6275
- #: includes/settings/wcj-settings-payment-gateways-icons.php:16
6276
- msgid ""
6277
- "If you want to show an image next to the gateway's name on the frontend, "
6278
- "enter a URL to an image."
6279
- msgstr ""
6280
-
6281
- #: includes/gateways/class-wc-gateway-wcj-custom.php:108
6282
- msgid "Minimum order amount"
6283
- msgstr ""
6284
-
6285
- #: includes/gateways/class-wc-gateway-wcj-custom.php:110
6286
- msgid ""
6287
- "If you want to set minimum order amount (excluding fees) to show this "
6288
- "gateway on frontend, enter a number here. Set to 0 to disable."
6289
- msgstr ""
6290
-
6291
- #: includes/gateways/class-wc-gateway-wcj-custom.php:117
6292
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:43
6293
- msgid "Enable for shipping methods"
6294
- msgstr ""
6295
-
6296
- #: includes/gateways/class-wc-gateway-wcj-custom.php:122
6297
- msgid ""
6298
- "If gateway is only available for certain shipping methods, set it up here. "
6299
- "Leave blank to enable for all methods."
6300
- msgstr ""
6301
-
6302
- #: includes/gateways/class-wc-gateway-wcj-custom.php:125
6303
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:50
6304
- msgid "Select shipping methods"
6305
- msgstr ""
6306
-
6307
- #: includes/gateways/class-wc-gateway-wcj-custom.php:129
6308
- msgid "Enable for virtual orders"
6309
- msgstr ""
6310
-
6311
- #: includes/gateways/class-wc-gateway-wcj-custom.php:130
6312
- msgid "Enable gateway if the order is virtual"
6313
- msgstr ""
6314
-
6315
- #: includes/gateways/class-wc-gateway-wcj-custom.php:136
6316
- #: includes/settings/wcj-settings-order-custom-statuses.php:19
6317
- msgid "Default Order Status"
6318
- msgstr ""
6319
-
6320
- #: includes/gateways/class-wc-gateway-wcj-custom.php:137
6321
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
6322
- msgstr ""
6323
-
6324
- #: includes/gateways/class-wc-gateway-wcj-custom.php:144
6325
- msgid "Send Additional Emails"
6326
- msgstr ""
6327
-
6328
- #: includes/gateways/class-wc-gateway-wcj-custom.php:145
6329
- msgid "Send to Admin"
6330
- msgstr ""
6331
-
6332
- #: includes/gateways/class-wc-gateway-wcj-custom.php:153
6333
- msgid "Send to Customer"
6334
- msgstr ""
6335
-
6336
- #: includes/gateways/class-wc-gateway-wcj-custom.php:154
6337
- msgid ""
6338
- "This may help if you are using pending or custom default status and not "
6339
- "getting new order emails."
6340
- msgstr ""
6341
-
6342
- #: includes/gateways/class-wc-gateway-wcj-custom.php:160
6343
- msgid "Custom Return URL (Thank You Page)"
6344
- msgstr ""
6345
-
6346
- #: includes/gateways/class-wc-gateway-wcj-custom.php:162
6347
- msgid "Enter full URL with http(s)."
6348
- msgstr ""
6349
-
6350
- #: includes/gateways/class-wc-gateway-wcj-custom.php:163
6351
- msgid "Optional. Leave blank to use default URL."
6352
- msgstr ""
6353
-
6354
- #: includes/gateways/class-wc-gateway-wcj-custom.php:354
6355
- #: includes/settings/wcj-settings-payment-gateways.php:38
6356
- msgid "Custom Gateway"
6357
- msgstr ""
6358
-
6359
- #: includes/gateways/class-wc-gateway-wcj-custom.php:355
6360
- msgid "Booster for WooCommerce: Custom Payment Gateway"
6361
- msgstr ""
6362
-
6363
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:37
6364
- #: includes/settings/wcj-settings-checkout-core-fields.php:29
6365
- #: includes/settings/wcj-settings-checkout-files-upload.php:39
6366
- #: includes/settings/wcj-settings-export.php:70
6367
- #: includes/settings/wcj-settings-export.php:138
6368
- #: includes/settings/wcj-settings-export.php:219
6369
- #: includes/settings/wcj-settings-global-discount.php:42
6370
- #: includes/settings/wcj-settings-orders.php:96
6371
- #: includes/settings/wcj-settings-product-by-user.php:149
6372
- #: includes/settings/wcj-settings-product-listings.php:203
6373
- #: includes/settings/wcj-settings-products-xml.php:71
6374
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
6375
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
6376
- #: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
6377
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:20
6378
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
6379
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
6380
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
6381
- msgid "Enabled"
6382
- msgstr ""
6383
-
6384
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
6385
- #: includes/settings/wcj-settings-checkout-custom-fields.php:82
6386
- #: includes/settings/wcj-settings-more-button-labels.php:19
6387
- msgid "Text"
6388
- msgstr ""
6389
-
6390
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:49
6391
- #: includes/settings/wcj-settings-checkout-custom-fields.php:83
6392
- msgid "Textarea"
6393
- msgstr ""
6394
-
6395
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:50
6396
- #: includes/settings/wcj-settings-checkout-custom-fields.php:84
6397
- msgid "Number"
6398
- msgstr ""
6399
-
6400
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:51
6401
- #: includes/settings/wcj-settings-checkout-custom-fields.php:85
6402
- #: includes/settings/wcj-settings-product-addons.php:76
6403
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
6404
- msgid "Checkbox"
6405
- msgstr ""
6406
-
6407
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:53
6408
- #: includes/settings/wcj-settings-checkout-custom-fields.php:86
6409
- msgid "Datepicker"
6410
- msgstr ""
6411
-
6412
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:54
6413
- #: includes/settings/wcj-settings-checkout-custom-fields.php:87
6414
- msgid "Weekpicker"
6415
- msgstr ""
6416
-
6417
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:55
6418
- #: includes/settings/wcj-settings-checkout-custom-fields.php:88
6419
- msgid "Timepicker"
6420
- msgstr ""
6421
-
6422
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:56
6423
- #: includes/settings/wcj-settings-checkout-custom-fields.php:89
6424
- msgid "Select"
6425
- msgstr ""
6426
-
6427
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:57
6428
- #: includes/settings/wcj-settings-checkout-custom-fields.php:90
6429
- msgid "Radio"
6430
- msgstr ""
6431
-
6432
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:58
6433
- #: includes/settings/wcj-settings-checkout-custom-fields.php:91
6434
- msgid "Password"
6435
- msgstr ""
6436
-
6437
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:62
6438
- #: includes/settings/wcj-settings-checkout-custom-fields.php:95
6439
- msgid "Phone"
6440
- msgstr ""
6441
-
6442
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:75
6443
- #: includes/settings/wcj-settings-checkout-custom-fields.php:112
6444
- #: includes/settings/wcj-settings-eu-vat-number.php:27
6445
- msgid "Placeholder"
6446
- msgstr ""
6447
-
6448
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:82
6449
- #: includes/settings/wcj-settings-checkout-core-fields.php:41
6450
- #: includes/settings/wcj-settings-checkout-custom-fields.php:99
6451
- #: includes/settings/wcj-settings-checkout-files-upload.php:45
6452
- #: includes/settings/wcj-settings-eu-vat-number.php:49
6453
- #: includes/settings/wcj-settings-product-by-user.php:155
6454
- msgid "Required"
6455
- msgstr ""
6456
-
6457
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:89
6458
- msgid "Message on required"
6459
- msgstr ""
6460
-
6461
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:107
6462
- msgid "If checkbox is selected, set value for ON here"
6463
- msgstr ""
6464
-
6465
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:108
6466
- msgid "Checkbox: ON"
6467
- msgstr ""
6468
-
6469
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:115
6470
- msgid "If checkbox is selected, set value for OFF here"
6471
- msgstr ""
6472
-
6473
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:116
6474
- msgid "Checkbox: OFF"
6475
- msgstr ""
6476
-
6477
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:123
6478
- msgid "If checkbox is selected, set default value here"
6479
- msgstr ""
6480
-
6481
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:124
6482
- msgid "Checkbox: Default"
6483
- msgstr ""
6484
-
6485
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:128
6486
- #: includes/settings/wcj-settings-checkout-custom-fields.php:180
6487
- msgid "Not Checked"
6488
- msgstr ""
6489
-
6490
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:129
6491
- #: includes/settings/wcj-settings-checkout-custom-fields.php:181
6492
- #: includes/settings/wcj-settings-checkout-customization.php:26
6493
- msgid "Checked"
6494
- msgstr ""
6495
-
6496
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:135
6497
- msgid ""
6498
- "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
6499
- "\". Leave blank to accept all files"
6500
- msgstr ""
6501
-
6502
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:136
6503
- msgid ""
6504
- "Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target="
6505
- "\"_blank\">documentation on input accept attribute</a> for valid option "
6506
- "formats"
6507
- msgstr ""
6508
-
6509
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:137
6510
- msgid "File: Accepted types"
6511
- msgstr ""
6512
-
6513
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:139
6514
- msgid ".jpg,.jpeg,.png"
6515
- msgstr ""
6516
-
6517
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:144
6518
- msgid ""
6519
- "If file is selected, set max file size here. Set to zero to accept all files"
6520
- msgstr ""
6521
-
6522
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:145
6523
- msgid "File: Max size"
6524
- msgstr ""
6525
-
6526
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:152
6527
- msgid ""
6528
- "If datepicker/weekpicker is selected, set date format here. Visit <a href="
6529
- "\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank"
6530
- "\">documentation on date and time formatting</a> for valid date formats"
6531
- msgstr ""
6532
-
6533
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:153
6534
- #: includes/settings/wcj-settings-checkout-custom-fields.php:187
6535
- msgid "Leave blank to use your current WordPress format"
6536
- msgstr ""
6537
-
6538
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:154
6539
- msgid "Datepicker/Weekpicker: Date format"
6540
- msgstr ""
6541
-
6542
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:161
6543
- msgid "If datepicker/weekpicker is selected, set min date (in days) here"
6544
- msgstr ""
6545
-
6546
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:162
6547
- msgid "Datepicker/Weekpicker: Min date"
6548
- msgstr ""
6549
-
6550
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:169
6551
- msgid "If datepicker/weekpicker is selected, set max date (in days) here"
6552
- msgstr ""
6553
-
6554
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:170
6555
- msgid "Datepicker/Weekpicker: Max date"
6556
- msgstr ""
6557
-
6558
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:177
6559
- msgid ""
6560
- "If datepicker/weekpicker is selected, set if you want to add year selector"
6561
- msgstr ""
6562
-
6563
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:178
6564
- msgid "Datepicker/Weekpicker: Change year"
6565
- msgstr ""
6566
-
6567
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:185
6568
- msgid ""
6569
- "If datepicker/weekpicker is selected, and year selector is enabled, set year "
6570
- "range here"
6571
- msgstr ""
6572
-
6573
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:186
6574
- msgid "Datepicker/Weekpicker: Year range"
6575
- msgstr ""
6576
-
6577
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:194
6578
- msgid "If datepicker/weekpicker is selected, set first week day here"
6579
- msgstr ""
6580
-
6581
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:195
6582
- msgid "Datepicker/Weekpicker: First week day"
6583
- msgstr ""
6584
-
6585
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:199
6586
- #: includes/settings/wcj-settings-checkout-custom-fields.php:225
6587
- msgid "Sunday"
6588
- msgstr ""
6589
-
6590
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:200
6591
- #: includes/settings/wcj-settings-checkout-custom-fields.php:226
6592
- msgid "Monday"
6593
- msgstr ""
6594
-
6595
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:201
6596
- #: includes/settings/wcj-settings-checkout-custom-fields.php:227
6597
- msgid "Tuesday"
6598
- msgstr ""
6599
-
6600
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:202
6601
- #: includes/settings/wcj-settings-checkout-custom-fields.php:228
6602
- msgid "Wednesday"
6603
- msgstr ""
6604
-
6605
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:203
6606
- #: includes/settings/wcj-settings-checkout-custom-fields.php:229
6607
- msgid "Thursday"
6608
- msgstr ""
6609
-
6610
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:204
6611
- #: includes/settings/wcj-settings-checkout-custom-fields.php:230
6612
- msgid "Friday"
6613
- msgstr ""
6614
-
6615
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:205
6616
- #: includes/settings/wcj-settings-checkout-custom-fields.php:231
6617
- msgid "Saturday"
6618
- msgstr ""
6619
-
6620
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:211
6621
- msgid ""
6622
- "If timepicker is selected, set time format here. Visit <a href=\"http://"
6623
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6624
- "valid time formats"
6625
- msgstr ""
6626
-
6627
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:212
6628
- msgid "Timepicker: Time format"
6629
- msgstr ""
6630
-
6631
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:219
6632
- msgid ""
6633
- "If timepicker is selected, set min time here. Visit <a href=\"http://"
6634
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6635
- "valid option formats"
6636
- msgstr ""
6637
-
6638
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:220
6639
- msgid "Timepicker: Min Time"
6640
- msgstr ""
6641
-
6642
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:227
6643
- msgid ""
6644
- "If timepicker is selected, set max time here. Visit <a href=\"http://"
6645
- "timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
6646
- "valid option formats"
6647
- msgstr ""
6648
-
6649
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:228
6650
- msgid "Timepicker: Max Time"
6651
- msgstr ""
6652
-
6653
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:235
6654
- msgid "If timepicker is selected, set interval (in minutes) here"
6655
- msgstr ""
6656
-
6657
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:236
6658
- #: includes/settings/wcj-settings-checkout-custom-fields.php:242
6659
- msgid "Timepicker: Interval"
6660
- msgstr ""
6661
-
6662
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:243
6663
- msgid "If select/radio is selected, set options here. One option per line"
6664
- msgstr ""
6665
-
6666
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:244
6667
- #: includes/settings/wcj-settings-checkout-custom-fields.php:155
6668
- msgid "Select/Radio: Options"
6669
- msgstr ""
6670
-
6671
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:323
6672
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:165
6673
- #: includes/settings/wcj-settings-product-input-fields.php:76
6674
- msgid "Product Input Field"
6675
- msgstr ""
6676
-
6677
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:404
6678
- msgid "Wrong file type!"
6679
- msgstr ""
6680
-
6681
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:413
6682
- msgid "File is too big!"
6683
- msgstr ""
6684
-
6685
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:567
6686
- msgid "Select a country&hellip;"
6687
- msgstr ""
6688
-
6689
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:112
6690
- msgid "Booster: Product Input Fields"
6691
- msgstr ""
6692
-
6693
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:148
6694
- msgid "Total number of "
6695
- msgstr ""
6696
-
6697
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:54
6698
- msgid "Invoices successfully renumerated!"
6699
- msgstr ""
6700
-
6701
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
6702
- msgid "Please select at least one order status."
6703
- msgstr ""
6704
-
6705
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:61
6706
- msgid "Booster - Renumerate Invoices"
6707
- msgstr ""
6708
-
6709
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
6710
- msgid ""
6711
- "The tool renumerates invoices from choosen date. Invoice number format is "
6712
- "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
6713
- "Numbering."
6714
- msgstr ""
6715
-
6716
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:69
6717
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
6718
- msgid "Start Date"
6719
- msgstr ""
6720
-
6721
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
6722
- msgid "Date to start renumerating. Leave blank to renumerate all invoices."
6723
- msgstr ""
6724
-
6725
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:76
6726
- msgid "End Date"
6727
- msgstr ""
6728
-
6729
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
6730
- msgid "Date to end renumerating. Leave blank to renumerate all invoices."
6731
- msgstr ""
6732
-
6733
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:83
6734
- msgid "Start Number"
6735
- msgstr ""
6736
-
6737
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
6738
- msgid ""
6739
- "Counter to start renumerating. Leave 0 to continue from current counter."
6740
- msgstr ""
6741
-
6742
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:90
6743
- msgid "Delete All"
6744
- msgstr ""
6745
-
6746
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
6747
- msgid "Clear all invoices before renumerating."
6748
- msgstr ""
6749
-
6750
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:103
6751
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:95
6752
- msgid "Document Type"
6753
- msgstr ""
6754
-
6755
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:113
6756
- msgid "Order Statuses"
6757
- msgstr ""
6758
-
6759
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:116
6760
- msgid "Renumerate invoices"
6761
- msgstr ""
6762
-
6763
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:125
6764
- msgid "Results"
6765
- msgstr ""
6766
-
6767
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:204
6768
- #, php-format
6769
- msgid "Total documents created: %d"
6770
- msgstr ""
6771
-
6772
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:205
6773
- #, php-format
6774
- msgid "Total documents deleted: %d"
6775
- msgstr ""
6776
-
6777
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:36
6778
- msgid ""
6779
- "This option is disabled in WooCommerce > Settings > Booster > Emails & Misc. "
6780
- "> General > Advanced Options > Disable Saving PDFs in PHP directory for "
6781
- "temporary files"
6782
- msgstr ""
6783
-
6784
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:41
6785
- msgid "Sorry, but something went wrong..."
6786
- msgstr ""
6787
-
6788
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:45
6789
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:66
6790
- msgid "Please fill year and month values."
6791
- msgstr ""
6792
-
6793
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:90
6794
- msgid "Month"
6795
- msgstr ""
6796
-
6797
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:101
6798
- msgid "Display monthly documents table"
6799
- msgstr ""
6800
-
6801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:106
6802
- msgid "Download all monthly documents PDFs in single ZIP file"
6803
- msgstr ""
6804
-
6805
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
6806
- msgid "Download monthly documents CSV"
6807
- msgstr ""
6808
-
6809
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:250
6810
- msgid "Document Nr."
6811
- msgstr ""
6812
-
6813
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:251
6814
- msgid "Document Date"
6815
- msgstr ""
6816
-
6817
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:253
6818
- msgid "Customer Country"
6819
- msgstr ""
6820
-
6821
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:254
6822
- msgid "Customer VAT ID"
6823
- msgstr ""
6824
-
6825
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:255
6826
- msgid "Tax %"
6827
- msgstr ""
6828
-
6829
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:256
6830
- msgid "Order Total Tax Excl."
6831
- msgstr ""
6832
-
6833
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
6834
- msgid "Order Taxes"
6835
- msgstr ""
6836
-
6837
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:260
6838
- msgid "Refunds"
6839
- msgstr ""
6840
-
6841
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
6842
- msgid "Display & Misc."
6843
- msgstr ""
6844
-
6845
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:146
6846
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:313
6847
- msgid "View"
6848
- msgstr ""
6849
-
6850
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:165
6851
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:326
6852
- msgid "Create"
6853
- msgstr ""
6854
-
6855
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:284
6856
- msgid "Booster: PDF Invoices"
6857
- msgstr ""
6858
-
6859
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
6860
- msgid "Footer"
6861
- msgstr ""
6862
-
6863
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
6864
- msgid "Header"
6865
- msgstr ""
6866
-
6867
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
6868
- msgid "Numbering"
6869
- msgstr ""
6870
-
6871
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
6872
- msgid "Page Settings"
6873
- msgstr ""
6874
-
6875
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
6876
- msgid "Styling"
6877
- msgstr ""
6878
-
6879
- #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
6880
- msgid "Templates"
6881
- msgstr ""
6882
-
6883
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:75
6884
- msgid "Create All Country Groups Failed."
6885
- msgstr ""
6886
-
6887
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:87
6888
- msgid "Create All Country Groups Failed. Wrong parameter."
6889
- msgstr ""
6890
-
6891
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:93
6892
- #, php-format
6893
- msgid ""
6894
- "All existing country groups will be deleted and %s new groups will be "
6895
- "created. Are you sure?"
6896
- msgstr ""
6897
-
6898
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:94
6899
- msgid "Confirm"
6900
- msgstr ""
6901
-
6902
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:122
6903
- msgid "Country Groups Generated."
6904
- msgstr ""
6905
-
6906
- #: includes/price-by-country/class-wcj-price-by-country-local.php:140
6907
- #: includes/settings/wcj-settings-price-by-country.php:291
6908
- msgid "Make empty price"
6909
- msgstr ""
6910
-
6911
- #: includes/price-by-country/class-wcj-price-by-country-local.php:246
6912
- msgid "Country Group Nr."
6913
- msgstr ""
6914
-
6915
- #: includes/reports/class-wcj-currency-reports.php:38
6916
- msgid "Reports currency:"
6917
- msgstr ""
6918
-
6919
- #: includes/reports/class-wcj-currency-reports.php:40
6920
- #: includes/reports/class-wcj-currency-reports.php:84
6921
- msgid "Show reports only in"
6922
- msgstr ""
6923
-
6924
- #: includes/reports/wcj-class-reports-customers.php:39
6925
- msgid "No customers found."
6926
- msgstr ""
6927
-
6928
- #: includes/reports/wcj-class-reports-customers.php:89
6929
- #: includes/settings/wcj-settings-offer-price.php:162
6930
- msgid "Customer Name"
6931
- msgstr ""
6932
-
6933
- #: includes/reports/wcj-class-reports-customers.php:91
6934
- msgid "Total Spent"
6935
- msgstr ""
6936
-
6937
- #: includes/reports/wcj-class-reports-customers.php:131
6938
- msgid "Total customers"
6939
- msgstr ""
6940
-
6941
- #: includes/reports/wcj-class-reports-customers.php:135
6942
- msgid "Country Code"
6943
- msgstr ""
6944
-
6945
- #: includes/reports/wcj-class-reports-customers.php:136
6946
- msgid "Customers Count"
6947
- msgstr ""
6948
-
6949
- #: includes/reports/wcj-class-reports-customers.php:137
6950
- msgid "Percent of total"
6951
- msgstr ""
6952
-
6953
- #: includes/reports/wcj-class-reports-customers.php:159
6954
- msgid "Report for:"
6955
- msgstr ""
6956
-
6957
- #: includes/reports/wcj-class-reports-monthly-sales.php:37
6958
- msgid "Currency rates saved."
6959
- msgstr ""
6960
-
6961
- #: includes/reports/wcj-class-reports-monthly-sales.php:41
6962
- msgid "Currency rates deleted."
6963
- msgstr ""
6964
-
6965
- #: includes/reports/wcj-class-reports-monthly-sales.php:85
6966
- msgid "Days"
6967
- msgstr ""
6968
-
6969
- #: includes/reports/wcj-class-reports-monthly-sales.php:86
6970
- msgid "Total Orders"
6971
- msgstr ""
6972
-
6973
- #: includes/reports/wcj-class-reports-monthly-sales.php:87
6974
- msgid "Orders Average / Day"
6975
- msgstr ""
6976
-
6977
- #: includes/reports/wcj-class-reports-monthly-sales.php:88
6978
- #: includes/reports/wcj-class-reports-sales.php:325
6979
- msgid "Total Sum"
6980
- msgstr ""
6981
-
6982
- #: includes/reports/wcj-class-reports-monthly-sales.php:89
6983
- msgid "Total Sum (excl. TAX)"
6984
- msgstr ""
6985
-
6986
- #: includes/reports/wcj-class-reports-monthly-sales.php:90
6987
- msgid "Average / Order (excl. TAX)"
6988
- msgstr ""
6989
-
6990
- #: includes/reports/wcj-class-reports-monthly-sales.php:91
6991
- msgid "Average / Day (excl. TAX)"
6992
- msgstr ""
6993
-
6994
- #: includes/reports/wcj-class-reports-monthly-sales.php:92
6995
- msgid "Currency Rates"
6996
- msgstr ""
6997
-
6998
- #: includes/reports/wcj-class-reports-monthly-sales.php:93
6999
- msgid "Orders by Currency"
7000
- msgstr ""
7001
-
7002
- #: includes/reports/wcj-class-reports-monthly-sales.php:270
7003
- msgid "Totals"
7004
- msgstr ""
7005
-
7006
- #: includes/reports/wcj-class-reports-monthly-sales.php:312
7007
- msgid "Report currency"
7008
- msgstr ""
7009
-
7010
- #: includes/reports/wcj-class-reports-monthly-sales.php:327
7011
- #, php-format
7012
- msgid "Report generated in: %s s"
7013
- msgstr ""
7014
-
7015
- #: includes/reports/wcj-class-reports-monthly-sales.php:330
7016
- msgid "Save Currency Rates"
7017
- msgstr ""
7018
-
7019
- #: includes/reports/wcj-class-reports-monthly-sales.php:334
7020
- msgid "Reset Currency Rates"
7021
- msgstr ""
7022
-
7023
- #: includes/reports/wcj-class-reports-sales-daily.php:163
7024
- #: includes/reports/wcj-class-reports-sales.php:331
7025
- msgid "Reports Settings"
7026
- msgstr ""
7027
-
7028
- #: includes/reports/wcj-class-reports-sales-daily.php:180
7029
- msgid "From:"
7030
- msgstr ""
7031
-
7032
- #: includes/reports/wcj-class-reports-sales-daily.php:183
7033
- msgid "To:"
7034
- msgstr ""
7035
-
7036
- #: includes/reports/wcj-class-reports-sales-daily.php:186
7037
- msgid "Product:"
7038
- msgstr ""
7039
-
7040
- #: includes/reports/wcj-class-reports-sales-daily.php:275
7041
- #, php-format
7042
- msgid "Total: %d"
7043
- msgstr ""
7044
-
7045
- #: includes/reports/wcj-class-reports-sales-daily.php:279
7046
- #: includes/reports/wcj-class-reports-sales-daily.php:283
7047
- #, php-format
7048
- msgid "Total: %s"
7049
- msgstr ""
7050
-
7051
- #: includes/reports/wcj-class-reports-sales-daily.php:295
7052
- #, php-format
7053
- msgid "Total orders: %d"
7054
- msgstr ""
7055
-
7056
- #: includes/reports/wcj-class-reports-sales-daily.php:296
7057
- #: includes/reports/wcj-class-reports-sales.php:352
7058
- msgid "No sales data for current period."
7059
- msgstr ""
7060
-
7061
- #: includes/reports/wcj-class-reports-sales.php:124
7062
- msgid "Variation"
7063
- msgstr ""
7064
-
7065
- #: includes/reports/wcj-class-reports-sales.php:193
7066
- msgid "Last Sale"
7067
- msgstr ""
7068
-
7069
- #: includes/reports/wcj-class-reports-sales.php:194
7070
- msgid "Total"
7071
- msgstr ""
7072
-
7073
- #: includes/reports/wcj-class-reports-sales.php:322
7074
- msgid "Total Items"
7075
- msgstr ""
7076
-
7077
- #: includes/reports/wcj-class-reports-sales.php:328
7078
- msgid "Total Profit"
7079
- msgstr ""
7080
-
7081
- #: includes/reports/wcj-class-reports-sales.php:347
7082
- msgid "Filter products"
7083
- msgstr ""
7084
-
7085
- #: includes/reports/wcj-class-reports-stock.php:32
7086
- msgid "All Products on Stock"
7087
- msgstr ""
7088
-
7089
- #: includes/reports/wcj-class-reports-stock.php:33
7090
- msgid "Report shows all products that are on stock and some sales info."
7091
- msgstr ""
7092
-
7093
- #: includes/reports/wcj-class-reports-stock.php:37
7094
- msgid "Understocked"
7095
- msgstr ""
7096
-
7097
- #: includes/reports/wcj-class-reports-stock.php:38
7098
- msgid ""
7099
- "Report shows all products that are low in stock calculated on product's "
7100
- "sales data."
7101
- msgstr ""
7102
-
7103
- #: includes/reports/wcj-class-reports-stock.php:39
7104
- msgid ""
7105
- "Threshold for minimum stock is equal to half of the sales in selected days "
7106
- "range."
7107
- msgstr ""
7108
-
7109
- #: includes/reports/wcj-class-reports-stock.php:43
7110
- msgid "Overstocked"
7111
- msgstr ""
7112
-
7113
- #: includes/reports/wcj-class-reports-stock.php:44
7114
- msgid ""
7115
- "Report shows all products that are on stock, but have no sales in selected "
7116
- "period. Only products added before the start date of selected period are "
7117
- "accounted."
7118
- msgstr ""
7119
-
7120
- #: includes/reports/wcj-class-reports-stock.php:173
7121
- msgid "deleted"
7122
- msgstr ""
7123
-
7124
- #: includes/reports/wcj-class-reports-stock.php:257
7125
- msgid "Stock price"
7126
- msgstr ""
7127
-
7128
- #: includes/reports/wcj-class-reports-stock.php:258
7129
- msgid "Total stock price"
7130
- msgstr ""
7131
-
7132
- #: includes/reports/wcj-class-reports-stock.php:259
7133
- msgid "Last sale"
7134
- msgstr ""
7135
-
7136
- #: includes/reports/wcj-class-reports-stock.php:260
7137
- #, php-format
7138
- msgid "Sales in last %s days"
7139
- msgstr ""
7140
-
7141
- #: includes/reports/wcj-class-reports-stock.php:261
7142
- msgid "Total sales"
7143
- msgstr ""
7144
-
7145
- #: includes/reports/wcj-class-reports-stock.php:263
7146
- msgid "Stock to minimum"
7147
- msgstr ""
7148
-
7149
- #: includes/reports/wcj-class-reports-stock.php:292
7150
- msgid "purchase price:"
7151
- msgstr ""
7152
-
7153
- #: includes/reports/wcj-class-reports-stock.php:296
7154
- msgid "stock purchase price:"
7155
- msgstr ""
7156
-
7157
- #: includes/reports/wcj-class-reports-stock.php:301
7158
- msgid "No sales yet"
7159
- msgstr ""
7160
-
7161
- #: includes/reports/wcj-class-reports-stock.php:305
7162
- msgid "profit:"
7163
- msgstr ""
7164
-
7165
- #: includes/reports/wcj-class-reports-stock.php:325
7166
- msgid "Total current stock value"
7167
- msgstr ""
7168
-
7169
- #: includes/reports/wcj-class-reports-stock.php:326
7170
- msgid "Total stock value"
7171
- msgstr ""
7172
-
7173
- #: includes/reports/wcj-class-reports-stock.php:327
7174
- msgid "Product stock value average"
7175
- msgstr ""
7176
-
7177
- #: includes/reports/wcj-class-reports-stock.php:328
7178
- msgid "Product stock average"
7179
- msgstr ""
7180
-
7181
- #: includes/reports/wcj-class-reports-stock.php:330
7182
- msgid "Total current stock purchase price"
7183
- msgstr ""
7184
-
7185
- #: includes/reports/wcj-class-reports-stock.php:334
7186
- msgid "Report was generated in: "
7187
- msgstr ""
7188
-
7189
- #: includes/settings/wcj-settings-add-to-cart.php:14
7190
- msgid "Per Category Options"
7191
- msgstr ""
7192
-
7193
- #: includes/settings/wcj-settings-add-to-cart.php:16
7194
- msgid ""
7195
- "This sections lets you set Add to Cart button text on per category basis."
7196
- msgstr ""
7197
-
7198
- #: includes/settings/wcj-settings-add-to-cart.php:20
7199
- msgid "Per Category Labels"
7200
- msgstr ""
7201
-
7202
- #: includes/settings/wcj-settings-add-to-cart.php:21
7203
- #: includes/settings/wcj-settings-add-to-cart.php:99
7204
- #: includes/settings/wcj-settings-add-to-cart.php:117
7205
- #: includes/settings/wcj-settings-general.php:156
7206
- #: includes/settings/wcj-settings-order-quantities.php:21
7207
- #: includes/settings/wcj-settings-order-quantities.php:70
7208
- #: includes/settings/wcj-settings-product-images.php:19
7209
- #: includes/settings/wcj-settings-product-images.php:95
7210
- #: includes/settings/wcj-settings-shipping-calculator.php:69
7211
- #: includes/settings/wcj-settings-shipping-options.php:93
7212
- #: includes/settings/wcj-settings-shipping-options.php:139
7213
- #: includes/settings/wcj-settings-sorting.php:20
7214
- #: includes/settings/wcj-settings-sorting.php:99
7215
- #: includes/settings/wcj-settings-sorting.php:123
7216
- msgid "Enable Section"
7217
- msgstr ""
7218
-
7219
- #: includes/settings/wcj-settings-add-to-cart.php:28
7220
- msgid "Category Groups Number"
7221
- msgstr ""
7222
-
7223
- #: includes/settings/wcj-settings-add-to-cart.php:29
7224
- #: includes/settings/wcj-settings-product-tabs.php:22
7225
- msgid "Click \"Save changes\" after you change this number."
7226
- msgstr ""
7227
-
7228
- #: includes/settings/wcj-settings-add-to-cart.php:51
7229
- #: includes/settings/wcj-settings-price-by-country.php:193
7230
- #: includes/settings/wcj-settings-price-by-country.php:203
7231
- #: includes/settings/wcj-settings-price-by-country.php:213
7232
- #: includes/settings/wcj-settings-price-by-country.php:271
7233
- msgid "Group"
7234
- msgstr ""
7235
-
7236
- #: includes/settings/wcj-settings-add-to-cart.php:59
7237
- msgid "categories"
7238
- msgstr ""
7239
-
7240
- #: includes/settings/wcj-settings-add-to-cart.php:70
7241
- msgid "Button text - single product view"
7242
- msgstr ""
7243
-
7244
- #: includes/settings/wcj-settings-add-to-cart.php:78
7245
- msgid "Button text - product archive (category) view"
7246
- msgstr ""
7247
-
7248
- #: includes/settings/wcj-settings-add-to-cart.php:92
7249
- #: includes/settings/wcj-settings-product-addons.php:15
7250
- #: includes/settings/wcj-settings-product-by-date.php:47
7251
- #: includes/settings/wcj-settings-product-by-time.php:47
7252
- msgid "Per Product Options"
7253
- msgstr ""
7254
-
7255
- #: includes/settings/wcj-settings-add-to-cart.php:94
7256
- msgid ""
7257
- "This section lets you set Add to Cart button text on per product basis. When "
7258
- "enabled, label for each product can be changed in \"Edit Product\"."
7259
- msgstr ""
7260
-
7261
- #: includes/settings/wcj-settings-add-to-cart.php:98
7262
- #: includes/settings/wcj-settings-add-to-cart.php:116
7263
- msgid "Per Product Labels"
7264
- msgstr ""
7265
-
7266
- #: includes/settings/wcj-settings-add-to-cart.php:110
7267
- msgid "Per Product Type Options"
7268
- msgstr ""
7269
-
7270
- #: includes/settings/wcj-settings-add-to-cart.php:126
7271
- #: includes/settings/wcj-settings-product-by-user.php:93
7272
- msgid "Simple product"
7273
- msgstr ""
7274
-
7275
- #: includes/settings/wcj-settings-add-to-cart.php:131
7276
- msgid "Variable product"
7277
- msgstr ""
7278
-
7279
- #: includes/settings/wcj-settings-add-to-cart.php:136
7280
- msgid "External product"
7281
- msgstr ""
7282
-
7283
- #: includes/settings/wcj-settings-add-to-cart.php:141
7284
- msgid "Grouped product"
7285
- msgstr ""
7286
-
7287
- #: includes/settings/wcj-settings-add-to-cart.php:146
7288
- msgid "Other product"
7289
- msgstr ""
7290
-
7291
- #: includes/settings/wcj-settings-add-to-cart.php:155
7292
- msgid "Single product view."
7293
- msgstr ""
7294
-
7295
- #: includes/settings/wcj-settings-add-to-cart.php:156
7296
- #: includes/settings/wcj-settings-add-to-cart.php:165
7297
- #: includes/settings/wcj-settings-add-to-cart.php:209
7298
- #: includes/settings/wcj-settings-add-to-cart.php:220
7299
- msgid "Leave blank to disable."
7300
- msgstr ""
7301
-
7302
- #: includes/settings/wcj-settings-add-to-cart.php:156
7303
- #: includes/settings/wcj-settings-add-to-cart.php:165
7304
- #: includes/settings/wcj-settings-add-to-cart.php:211
7305
- #: includes/settings/wcj-settings-add-to-cart.php:222
7306
- #: includes/settings/wcj-settings-sorting.php:27
7307
- #: includes/settings/wcj-settings-sorting.php:36
7308
- #: includes/settings/wcj-settings-sorting.php:45
7309
- #: includes/settings/wcj-settings-sorting.php:54
7310
- #: includes/settings/wcj-settings-sorting.php:72
7311
- #: includes/settings/wcj-settings-sorting.php:81
7312
- msgid "Default: "
7313
- msgstr ""
7314
-
7315
- #: includes/settings/wcj-settings-add-to-cart.php:164
7316
- msgid "Product category (archive) view."
7317
- msgstr ""
7318
-
7319
- #: includes/settings/wcj-settings-add-to-cart.php:175
7320
- msgid "Products with price set to 0 (i.e. free). Single product view."
7321
- msgstr ""
7322
-
7323
- #: includes/settings/wcj-settings-add-to-cart.php:176
7324
- #: includes/settings/wcj-settings-add-to-cart.php:185
7325
- msgid "Leave blank to disable. Default: Add to cart"
7326
- msgstr ""
7327
-
7328
- #: includes/settings/wcj-settings-add-to-cart.php:178
7329
- #: includes/settings/wcj-settings-add-to-cart.php:187
7330
- #: includes/settings/wcj-settings-add-to-cart.php:211
7331
- #: includes/settings/wcj-settings-add-to-cart.php:212
7332
- #: includes/settings/wcj-settings-add-to-cart.php:222
7333
- #: includes/settings/wcj-settings-add-to-cart.php:223
7334
- msgid "Add to cart"
7335
- msgstr ""
7336
-
7337
- #: includes/settings/wcj-settings-add-to-cart.php:184
7338
- msgid ""
7339
- "Products with price set to 0 (i.e. free). Product category (archive) view."
7340
- msgstr ""
7341
-
7342
- #: includes/settings/wcj-settings-add-to-cart.php:193
7343
- msgid "Products with empty price. Product category (archive) view."
7344
- msgstr ""
7345
-
7346
- #: includes/settings/wcj-settings-add-to-cart.php:194
7347
- msgid "Leave blank to disable. Default: Read More"
7348
- msgstr ""
7349
-
7350
- #: includes/settings/wcj-settings-add-to-cart.php:196
7351
- msgid "Read More"
7352
- msgstr ""
7353
-
7354
- #: includes/settings/wcj-settings-add-to-cart.php:208
7355
- msgid "Already in cart. Single product view."
7356
- msgstr ""
7357
-
7358
- #: includes/settings/wcj-settings-add-to-cart.php:210
7359
- #: includes/settings/wcj-settings-add-to-cart.php:221
7360
- msgid "Try: "
7361
- msgstr ""
7362
-
7363
- #: includes/settings/wcj-settings-add-to-cart.php:210
7364
- #: includes/settings/wcj-settings-add-to-cart.php:221
7365
- msgid "Already in cart - Add Again?"
7366
- msgstr ""
7367
-
7368
- #: includes/settings/wcj-settings-add-to-cart.php:219
7369
- msgid "Already in cart. Product category (archive) view."
7370
- msgstr ""
7371
-
7372
- #: includes/settings/wcj-settings-address-formats.php:14
7373
- #: includes/settings/wcj-settings-address-formats.php:19
7374
- msgid "Force Base Country Display"
7375
- msgstr ""
7376
-
7377
- #: includes/settings/wcj-settings-address-formats.php:30
7378
- msgid "Address Formats by Country"
7379
- msgstr ""
7380
-
7381
- #: includes/settings/wcj-settings-admin-bar.php:14
7382
- #: includes/settings/wcj-settings-breadcrumbs.php:14
7383
- #: includes/settings/wcj-settings-cart-customization.php:14
7384
- #: includes/settings/wcj-settings-checkout-custom-fields.php:16
7385
- #: includes/settings/wcj-settings-checkout-customization.php:14
7386
- #: includes/settings/wcj-settings-checkout-files-upload.php:17
7387
- #: includes/settings/wcj-settings-custom-css.php:14
7388
- #: includes/settings/wcj-settings-custom-js.php:14
7389
- #: includes/settings/wcj-settings-emails-verification.php:14
7390
- #: includes/settings/wcj-settings-empty-cart.php:14
7391
- #: includes/settings/wcj-settings-eu-vat-number.php:15
7392
- #: includes/settings/wcj-settings-global-discount.php:15
7393
- #: includes/settings/wcj-settings-multicurrency-base-price.php:19
7394
- #: includes/settings/wcj-settings-multicurrency.php:17
7395
- #: includes/settings/wcj-settings-my-account.php:14
7396
- #: includes/settings/wcj-settings-payment-gateways-icons.php:14
7397
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:17
7398
- #: includes/settings/wcj-settings-price-by-user-role.php:14
7399
- #: includes/settings/wcj-settings-product-addons.php:129
7400
- #: includes/settings/wcj-settings-product-bookings.php:72
7401
- #: includes/settings/wcj-settings-product-by-country.php:14
7402
- #: includes/settings/wcj-settings-product-by-user-role.php:14
7403
- #: includes/settings/wcj-settings-product-by-user.php:59
7404
- #: includes/settings/wcj-settings-product-open-pricing.php:16
7405
- #: includes/settings/wcj-settings-products-per-page.php:14
7406
- #: includes/settings/wcj-settings-products-xml.php:17
7407
- #: includes/settings/wcj-settings-url-coupons.php:14
7408
- #: includes/settings/wcj-settings-wholesale-price.php:15
7409
- msgid "Options"
7410
- msgstr ""
7411
-
7412
- #: includes/settings/wcj-settings-admin-bar.php:19
7413
- msgid "WooCommerce Admin Bar"
7414
- msgstr ""
7415
-
7416
- #: includes/settings/wcj-settings-admin-bar.php:26
7417
- msgid "Booster Admin Bar"
7418
- msgstr ""
7419
-
7420
- #: includes/settings/wcj-settings-admin-tools.php:14
7421
- msgid "Admin Tools Options"
7422
- msgstr ""
7423
-
7424
- #: includes/settings/wcj-settings-admin-tools.php:26
7425
- msgid "WooCommerce Log"
7426
- msgstr ""
7427
-
7428
- #: includes/settings/wcj-settings-admin-tools.php:33
7429
- msgid "Debug"
7430
- msgstr ""
7431
-
7432
- #: includes/settings/wcj-settings-admin-tools.php:40
7433
- msgid "PHP Memory Limit"
7434
- msgstr ""
7435
-
7436
- #: includes/settings/wcj-settings-admin-tools.php:41
7437
- msgid "megabytes."
7438
- msgstr ""
7439
-
7440
- #: includes/settings/wcj-settings-admin-tools.php:42
7441
- #: includes/settings/wcj-settings-admin-tools.php:51
7442
- #: includes/settings/wcj-settings-offer-price.php:139
7443
- #: includes/settings/wcj-settings-offer-price.php:147
7444
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
7445
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
7446
- msgid "Set zero to disable."
7447
- msgstr ""
7448
-
7449
- #: includes/settings/wcj-settings-admin-tools.php:49
7450
- msgid "PHP Time Limit"
7451
- msgstr ""
7452
-
7453
- #: includes/settings/wcj-settings-admin-tools.php:50
7454
- msgid "seconds."
7455
- msgstr ""
7456
-
7457
- #: includes/settings/wcj-settings-admin-tools.php:66
7458
- msgid "System Info"
7459
- msgstr ""
7460
-
7461
- #: includes/settings/wcj-settings-admin-tools.php:73
7462
- msgid "Show Order Meta"
7463
- msgstr ""
7464
-
7465
- #: includes/settings/wcj-settings-admin-tools.php:80
7466
- msgid "Show Product Meta"
7467
- msgstr ""
7468
-
7469
- #: includes/settings/wcj-settings-breadcrumbs.php:19
7470
- msgid "Change Breadcrumbs Home URL"
7471
- msgstr ""
7472
-
7473
- #: includes/settings/wcj-settings-breadcrumbs.php:26
7474
- msgid "Home URL"
7475
- msgstr ""
7476
-
7477
- #: includes/settings/wcj-settings-breadcrumbs.php:33
7478
- msgid "Hide Breadcrumbs"
7479
- msgstr ""
7480
-
7481
- #: includes/settings/wcj-settings-breadcrumbs.php:34
7482
- #: includes/settings/wcj-settings-cart-customization.php:20
7483
- #: includes/settings/wcj-settings-cart-customization.php:27
7484
- #: includes/settings/wcj-settings-checkout-customization.php:32
7485
- #: includes/settings/wcj-settings-currency.php:21
7486
- #: includes/settings/wcj-settings-order-custom-statuses.php:51
7487
- #: includes/settings/wcj-settings-orders.php:161
7488
- #: includes/settings/wcj-settings-pdf-invoicing.php:66
7489
- #: includes/settings/wcj-settings-product-bookings.php:78
7490
- #: includes/settings/wcj-settings-product-images.php:26
7491
- #: includes/settings/wcj-settings-product-images.php:33
7492
- #: includes/settings/wcj-settings-product-images.php:40
7493
- #: includes/settings/wcj-settings-product-images.php:47
7494
- #: includes/settings/wcj-settings-related-products.php:153
7495
- #: includes/settings/wcj-settings-related-products.php:159
7496
- #: includes/settings/wcj-settings-shipping-calculator.php:54
7497
- msgid "Hide"
7498
- msgstr ""
7499
-
7500
- #: includes/settings/wcj-settings-call-for-price.php:14
7501
- msgid "Call for Price Options"
7502
- msgstr ""
7503
-
7504
- #: includes/settings/wcj-settings-call-for-price.php:16
7505
- msgid ""
7506
- "Leave price empty when adding or editing products. Then set the options here."
7507
- msgstr ""
7508
-
7509
- #: includes/settings/wcj-settings-call-for-price.php:17
7510
- msgid "You can use shortcodes in options."
7511
- msgstr ""
7512
-
7513
- #: includes/settings/wcj-settings-call-for-price.php:21
7514
- msgid "Label to Show on Single"
7515
- msgstr ""
7516
-
7517
- #: includes/settings/wcj-settings-call-for-price.php:22
7518
- #: includes/settings/wcj-settings-call-for-price.php:32
7519
- #: includes/settings/wcj-settings-call-for-price.php:42
7520
- #: includes/settings/wcj-settings-call-for-price.php:52
7521
- msgid "This sets the html to output on empty price. Leave blank to disable."
7522
- msgstr ""
7523
-
7524
- #: includes/settings/wcj-settings-call-for-price.php:31
7525
- msgid "Label to Show on Archives"
7526
- msgstr ""
7527
-
7528
- #: includes/settings/wcj-settings-call-for-price.php:41
7529
- msgid "Label to Show on Homepage"
7530
- msgstr ""
7531
-
7532
- #: includes/settings/wcj-settings-call-for-price.php:51
7533
- msgid "Label to Show on Related"
7534
- msgstr ""
7535
-
7536
- #: includes/settings/wcj-settings-call-for-price.php:61
7537
- msgid "Hide Sale! Tag"
7538
- msgstr ""
7539
-
7540
- #: includes/settings/wcj-settings-call-for-price.php:62
7541
- msgid "Hide the tag"
7542
- msgstr ""
7543
-
7544
- #: includes/settings/wcj-settings-call-for-price.php:68
7545
- msgid "Make All Products Call for Price"
7546
- msgstr ""
7547
-
7548
- #: includes/settings/wcj-settings-call-for-price.php:70
7549
- msgid ""
7550
- "Enable this to make all products (except variable) prices empty. When "
7551
- "checkbox disabled, all prices go back to normal."
7552
- msgstr ""
7553
-
7554
- #: includes/settings/wcj-settings-cart-customization.php:19
7555
- msgid "Hide Coupon on Cart Page"
7556
- msgstr ""
7557
-
7558
- #: includes/settings/wcj-settings-cart-customization.php:26
7559
- msgid "Hide Item Remove Link"
7560
- msgstr ""
7561
-
7562
- #: includes/settings/wcj-settings-cart-customization.php:33
7563
- msgid "Change Empty Cart \"Return to shop\" Button Text"
7564
- msgstr ""
7565
-
7566
- #: includes/settings/wcj-settings-cart.php:16
7567
- msgid "Cart Custom Info Blocks"
7568
- msgstr ""
7569
-
7570
- #: includes/settings/wcj-settings-cart.php:19
7571
- msgid ""
7572
- "This feature allows you to add a final checkpoint for your customers before "
7573
- "they proceed to payment."
7574
- msgstr ""
7575
-
7576
- #: includes/settings/wcj-settings-cart.php:20
7577
- msgid ""
7578
- "Show custom information at on the cart page using Booster's various "
7579
- "shortcodes and give your customers a seamless cart experience."
7580
- msgstr ""
7581
-
7582
- #: includes/settings/wcj-settings-cart.php:21
7583
- msgid ""
7584
- "For example, show them the total weight of their items, any additional fees "
7585
- "or taxes, or a confirmation of the address their products are being sent to."
7586
- msgstr ""
7587
-
7588
- #: includes/settings/wcj-settings-cart.php:24
7589
- #: includes/settings/wcj-settings-checkout-custom-info.php:19
7590
- #: includes/settings/wcj-settings-mini-cart.php:19
7591
- #: includes/settings/wcj-settings-product-custom-info.php:28
7592
- msgid "Total Blocks"
7593
- msgstr ""
7594
-
7595
- #: includes/settings/wcj-settings-cart.php:39
7596
- #: includes/settings/wcj-settings-checkout-custom-info.php:35
7597
- #: includes/settings/wcj-settings-mini-cart.php:34
7598
- #: includes/settings/wcj-settings-product-custom-info.php:49
7599
- msgid "Info Block"
7600
- msgstr ""
7601
-
7602
- #: includes/settings/wcj-settings-cart.php:59
7603
- #: includes/settings/wcj-settings-checkout-custom-info.php:85
7604
- #: includes/settings/wcj-settings-mini-cart.php:58
7605
- #: includes/settings/wcj-settings-product-custom-info.php:88
7606
- msgid "Position Order (i.e. Priority)"
7607
- msgstr ""
7608
-
7609
- #: includes/settings/wcj-settings-cart.php:74
7610
- msgid "Cart Items Table Custom Info"
7611
- msgstr ""
7612
-
7613
- #: includes/settings/wcj-settings-cart.php:80
7614
- msgid "Add to Each Item Name"
7615
- msgstr ""
7616
-
7617
- #: includes/settings/wcj-settings-cart.php:81
7618
- msgid ""
7619
- "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
7620
- msgstr ""
7621
-
7622
- #: includes/settings/wcj-settings-checkout-core-fields.php:14
7623
- msgid "Checkout Core Fields Options"
7624
- msgstr ""
7625
-
7626
- #: includes/settings/wcj-settings-checkout-core-fields.php:28
7627
- #: includes/settings/wcj-settings-checkout-core-fields.php:40
7628
- #: includes/settings/wcj-settings-checkout-core-fields.php:69
7629
- #: includes/settings/wcj-settings-products-per-page.php:29
7630
- msgid "Default"
7631
- msgstr ""
7632
-
7633
- #: includes/settings/wcj-settings-checkout-core-fields.php:35
7634
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:330
7635
- msgid "required"
7636
- msgstr ""
7637
-
7638
- #: includes/settings/wcj-settings-checkout-core-fields.php:42
7639
- msgid "Not Required"
7640
- msgstr ""
7641
-
7642
- #: includes/settings/wcj-settings-checkout-core-fields.php:48
7643
- msgid "label"
7644
- msgstr ""
7645
-
7646
- #: includes/settings/wcj-settings-checkout-core-fields.php:49
7647
- #: includes/settings/wcj-settings-checkout-core-fields.php:57
7648
- msgid "Leave blank for WooCommerce defaults."
7649
- msgstr ""
7650
-
7651
- #: includes/settings/wcj-settings-checkout-core-fields.php:56
7652
- msgid "placeholder"
7653
- msgstr ""
7654
-
7655
- #: includes/settings/wcj-settings-checkout-core-fields.php:64
7656
- msgid "class"
7657
- msgstr ""
7658
-
7659
- #: includes/settings/wcj-settings-checkout-core-fields.php:70
7660
- msgid "Align Left"
7661
- msgstr ""
7662
-
7663
- #: includes/settings/wcj-settings-checkout-core-fields.php:71
7664
- msgid "Align Right"
7665
- msgstr ""
7666
-
7667
- #: includes/settings/wcj-settings-checkout-core-fields.php:72
7668
- msgid "Full Row"
7669
- msgstr ""
7670
-
7671
- #: includes/settings/wcj-settings-checkout-core-fields.php:77
7672
- msgid "priority (i.e. order)"
7673
- msgstr ""
7674
-
7675
- #: includes/settings/wcj-settings-checkout-core-fields.php:78
7676
- msgid "Leave zero for WooCommerce defaults."
7677
- msgstr ""
7678
-
7679
- #: includes/settings/wcj-settings-checkout-custom-fields.php:21
7680
- msgid "Add All Fields to Admin Emails"
7681
- msgstr ""
7682
-
7683
- #: includes/settings/wcj-settings-checkout-custom-fields.php:28
7684
- msgid "Add All Fields to Customers Emails"
7685
- msgstr ""
7686
-
7687
- #: includes/settings/wcj-settings-checkout-custom-fields.php:35
7688
- msgid "Add All Fields to \"Order Received\" Page"
7689
- msgstr ""
7690
-
7691
- #: includes/settings/wcj-settings-checkout-custom-fields.php:42
7692
- msgid "Custom Fields Number"
7693
- msgstr ""
7694
-
7695
- #: includes/settings/wcj-settings-checkout-custom-fields.php:43
7696
- #: includes/settings/wcj-settings-product-input-fields.php:60
7697
- msgid "Click Save changes after you change this number."
7698
- msgstr ""
7699
-
7700
- #: includes/settings/wcj-settings-checkout-custom-fields.php:63
7701
- msgid "Custom Field"
7702
- msgstr ""
7703
-
7704
- #: includes/settings/wcj-settings-checkout-custom-fields.php:70
7705
- msgid "Key"
7706
- msgstr ""
7707
-
7708
- #: includes/settings/wcj-settings-checkout-custom-fields.php:93
7709
- msgid "State"
7710
- msgstr ""
7711
-
7712
- #: includes/settings/wcj-settings-checkout-custom-fields.php:126
7713
- msgid "Section"
7714
- msgstr ""
7715
-
7716
- #: includes/settings/wcj-settings-checkout-custom-fields.php:131
7717
- #: includes/settings/wcj-settings-checkout-custom-info.php:55
7718
- #: includes/settings/wcj-settings-empty-cart.php:58
7719
- #: includes/settings/wcj-settings-left-to-free-shipping.php:120
7720
- msgid "Billing"
7721
- msgstr ""
7722
-
7723
- #: includes/settings/wcj-settings-checkout-custom-fields.php:138
7724
- #: includes/settings/wcj-settings-eu-vat-number.php:63
7725
- msgid "Class"
7726
- msgstr ""
7727
-
7728
- #: includes/settings/wcj-settings-checkout-custom-fields.php:143
7729
- #: includes/settings/wcj-settings-eu-vat-number.php:68
7730
- msgid "Wide"
7731
- msgstr ""
7732
-
7733
- #: includes/settings/wcj-settings-checkout-custom-fields.php:144
7734
- #: includes/settings/wcj-settings-eu-vat-number.php:69
7735
- msgid "First"
7736
- msgstr ""
7737
-
7738
- #: includes/settings/wcj-settings-checkout-custom-fields.php:145
7739
- #: includes/settings/wcj-settings-eu-vat-number.php:70
7740
- msgid "Last"
7741
- msgstr ""
7742
-
7743
- #: includes/settings/wcj-settings-checkout-custom-fields.php:156
7744
- msgid "One option per line"
7745
- msgstr ""
7746
-
7747
- #: includes/settings/wcj-settings-checkout-custom-fields.php:164
7748
- msgid "Checkbox: Value for ON"
7749
- msgstr ""
7750
-
7751
- #: includes/settings/wcj-settings-checkout-custom-fields.php:170
7752
- msgid "Checkbox: Value for OFF"
7753
- msgstr ""
7754
-
7755
- #: includes/settings/wcj-settings-checkout-custom-fields.php:176
7756
- msgid "Checkbox: Default Value"
7757
- msgstr ""
7758
-
7759
- #: includes/settings/wcj-settings-checkout-custom-fields.php:185
7760
- msgid "Datepicker/Weekpicker: Date Format"
7761
- msgstr ""
7762
-
7763
- #: includes/settings/wcj-settings-checkout-custom-fields.php:186
7764
- msgid ""
7765
- "Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
7766
- "target=\"_blank\">documentation on date and time formatting</a> for valid "
7767
- "date formats"
7768
- msgstr ""
7769
-
7770
- #: includes/settings/wcj-settings-checkout-custom-fields.php:193
7771
- msgid "Datepicker/Weekpicker: Min Date"
7772
- msgstr ""
7773
-
7774
- #: includes/settings/wcj-settings-checkout-custom-fields.php:194
7775
- #: includes/settings/wcj-settings-checkout-custom-fields.php:201
7776
- msgid "days"
7777
- msgstr ""
7778
-
7779
- #: includes/settings/wcj-settings-checkout-custom-fields.php:200
7780
- msgid "Datepicker/Weekpicker: Max Date"
7781
- msgstr ""
7782
-
7783
- #: includes/settings/wcj-settings-checkout-custom-fields.php:207
7784
- msgid "Datepicker/Weekpicker: Add Year Selector"
7785
- msgstr ""
7786
-
7787
- #: includes/settings/wcj-settings-checkout-custom-fields.php:213
7788
- msgid "Datepicker/Weekpicker: Year Selector: Year Range"
7789
- msgstr ""
7790
-
7791
- #: includes/settings/wcj-settings-checkout-custom-fields.php:214
7792
- msgid ""
7793
- "The range of years displayed in the year drop-down: either relative to "
7794
- "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
7795
- "+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
7796
- "nn\"). Note that this option only affects what appears in the drop-down, to "
7797
- "restrict which dates may be selected use the minDate and/or maxDate options."
7798
- msgstr ""
7799
-
7800
- #: includes/settings/wcj-settings-checkout-custom-fields.php:220
7801
- msgid "Datepicker/Weekpicker: First Week Day"
7802
- msgstr ""
7803
-
7804
- #: includes/settings/wcj-settings-checkout-custom-fields.php:235
7805
- msgid "Timepicker: Time Format"
7806
- msgstr ""
7807
-
7808
- #: includes/settings/wcj-settings-checkout-custom-fields.php:236
7809
- msgid ""
7810
- "Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
7811
- "options page</a> for valid time formats"
7812
- msgstr ""
7813
-
7814
- #: includes/settings/wcj-settings-checkout-custom-fields.php:243
7815
- msgid "minutes"
7816
- msgstr ""
7817
-
7818
- #: includes/settings/wcj-settings-checkout-custom-fields.php:249
7819
- #: includes/settings/wcj-settings-product-listings.php:50
7820
- msgid "Exclude Categories"
7821
- msgstr ""
7822
-
7823
- #: includes/settings/wcj-settings-checkout-custom-fields.php:250
7824
- msgid "Hide this field if there is a product of selected category in cart."
7825
- msgstr ""
7826
-
7827
- #: includes/settings/wcj-settings-checkout-custom-fields.php:258
7828
- msgid "Include Categories"
7829
- msgstr ""
7830
-
7831
- #: includes/settings/wcj-settings-checkout-custom-fields.php:259
7832
- msgid ""
7833
- "Show this field only if there is a product of selected category in cart."
7834
- msgstr ""
7835
-
7836
- #: includes/settings/wcj-settings-checkout-custom-fields.php:267
7837
- msgid "Exclude Products"
7838
- msgstr ""
7839
-
7840
- #: includes/settings/wcj-settings-checkout-custom-fields.php:268
7841
- msgid "Hide this field if there is a selected product in cart."
7842
- msgstr ""
7843
-
7844
- #: includes/settings/wcj-settings-checkout-custom-fields.php:276
7845
- msgid "Include Products"
7846
- msgstr ""
7847
-
7848
- #: includes/settings/wcj-settings-checkout-custom-fields.php:277
7849
- msgid "Show this field only if there is a selected product in cart."
7850
- msgstr ""
7851
-
7852
- #: includes/settings/wcj-settings-checkout-custom-info.php:14
7853
- msgid "Checkout Custom Info Blocks"
7854
- msgstr ""
7855
-
7856
- #: includes/settings/wcj-settings-checkout-custom-info.php:53
7857
- #: includes/settings/wcj-settings-checkout-files-upload.php:55
7858
- #: includes/settings/wcj-settings-empty-cart.php:56
7859
- #: includes/settings/wcj-settings-left-to-free-shipping.php:118
7860
- msgid "Before checkout form"
7861
- msgstr ""
7862
-
7863
- #: includes/settings/wcj-settings-checkout-custom-info.php:54
7864
- #: includes/settings/wcj-settings-empty-cart.php:57
7865
- #: includes/settings/wcj-settings-left-to-free-shipping.php:119
7866
- msgid "Before customer details"
7867
- msgstr ""
7868
-
7869
- #: includes/settings/wcj-settings-checkout-custom-info.php:57
7870
- #: includes/settings/wcj-settings-empty-cart.php:60
7871
- #: includes/settings/wcj-settings-left-to-free-shipping.php:122
7872
- msgid "After customer details"
7873
- msgstr ""
7874
-
7875
- #: includes/settings/wcj-settings-checkout-custom-info.php:58
7876
- #: includes/settings/wcj-settings-empty-cart.php:61
7877
- #: includes/settings/wcj-settings-left-to-free-shipping.php:123
7878
- msgid "Before order review"
7879
- msgstr ""
7880
-
7881
- #: includes/settings/wcj-settings-checkout-custom-info.php:59
7882
- #: includes/settings/wcj-settings-empty-cart.php:62
7883
- #: includes/settings/wcj-settings-left-to-free-shipping.php:124
7884
- msgid "Order review"
7885
- msgstr ""
7886
-
7887
- #: includes/settings/wcj-settings-checkout-custom-info.php:60
7888
- #: includes/settings/wcj-settings-empty-cart.php:63
7889
- #: includes/settings/wcj-settings-left-to-free-shipping.php:125
7890
- msgid "After order review"
7891
- msgstr ""
7892
-
7893
- #: includes/settings/wcj-settings-checkout-custom-info.php:61
7894
- #: includes/settings/wcj-settings-checkout-files-upload.php:56
7895
- #: includes/settings/wcj-settings-empty-cart.php:64
7896
- #: includes/settings/wcj-settings-left-to-free-shipping.php:126
7897
- msgid "After checkout form"
7898
- msgstr ""
7899
-
7900
- #: includes/settings/wcj-settings-checkout-custom-info.php:80
7901
- msgid "Order Received (Thank You) page"
7902
- msgstr ""
7903
-
7904
- #: includes/settings/wcj-settings-checkout-customization.php:19
7905
- msgid "\"Create an account?\" Checkbox"
7906
- msgstr ""
7907
-
7908
- #: includes/settings/wcj-settings-checkout-customization.php:20
7909
- msgid "\"Create an account?\" checkbox default value"
7910
- msgstr ""
7911
-
7912
- #: includes/settings/wcj-settings-checkout-customization.php:25
7913
- msgid "WooCommerce default"
7914
- msgstr ""
7915
-
7916
- #: includes/settings/wcj-settings-checkout-customization.php:27
7917
- msgid "Not checked"
7918
- msgstr ""
7919
-
7920
- #: includes/settings/wcj-settings-checkout-customization.php:31
7921
- msgid "Hide \"Order Again\" Button on \"View Order\" Page"
7922
- msgstr ""
7923
-
7924
- #: includes/settings/wcj-settings-checkout-customization.php:38
7925
- msgid "Disable Fields on Checkout for Logged Users"
7926
- msgstr ""
7927
-
7928
- #: includes/settings/wcj-settings-checkout-customization.php:45
7929
- msgid "Billing first name"
7930
- msgstr ""
7931
-
7932
- #: includes/settings/wcj-settings-checkout-customization.php:46
7933
- msgid "Billing last name"
7934
- msgstr ""
7935
-
7936
- #: includes/settings/wcj-settings-checkout-customization.php:47
7937
- msgid "Billing company"
7938
- msgstr ""
7939
-
7940
- #: includes/settings/wcj-settings-checkout-customization.php:48
7941
- msgid "Billing address 1"
7942
- msgstr ""
7943
-
7944
- #: includes/settings/wcj-settings-checkout-customization.php:49
7945
- msgid "Billing address 2"
7946
- msgstr ""
7947
-
7948
- #: includes/settings/wcj-settings-checkout-customization.php:50
7949
- msgid "Billing city"
7950
- msgstr ""
7951
-
7952
- #: includes/settings/wcj-settings-checkout-customization.php:51
7953
- msgid "Billing state"
7954
- msgstr ""
7955
-
7956
- #: includes/settings/wcj-settings-checkout-customization.php:52
7957
- msgid "Billing postcode"
7958
- msgstr ""
7959
-
7960
- #: includes/settings/wcj-settings-checkout-customization.php:53
7961
- msgid "Billing email"
7962
- msgstr ""
7963
-
7964
- #: includes/settings/wcj-settings-checkout-customization.php:54
7965
- msgid "Billing phone"
7966
- msgstr ""
7967
-
7968
- #: includes/settings/wcj-settings-checkout-customization.php:56
7969
- msgid "Shipping first name"
7970
- msgstr ""
7971
-
7972
- #: includes/settings/wcj-settings-checkout-customization.php:57
7973
- msgid "Shipping last name"
7974
- msgstr ""
7975
-
7976
- #: includes/settings/wcj-settings-checkout-customization.php:58
7977
- msgid "Shipping company"
7978
- msgstr ""
7979
-
7980
- #: includes/settings/wcj-settings-checkout-customization.php:59
7981
- msgid "Shipping address 1"
7982
- msgstr ""
7983
-
7984
- #: includes/settings/wcj-settings-checkout-customization.php:60
7985
- msgid "Shipping address 2"
7986
- msgstr ""
7987
-
7988
- #: includes/settings/wcj-settings-checkout-customization.php:61
7989
- msgid "Shipping city"
7990
- msgstr ""
7991
-
7992
- #: includes/settings/wcj-settings-checkout-customization.php:62
7993
- msgid "Shipping state"
7994
- msgstr ""
7995
-
7996
- #: includes/settings/wcj-settings-checkout-customization.php:63
7997
- msgid "Shipping postcode"
7998
- msgstr ""
7999
-
8000
- #: includes/settings/wcj-settings-checkout-customization.php:65
8001
- msgid "Order comments"
8002
- msgstr ""
8003
-
8004
- #: includes/settings/wcj-settings-checkout-customization.php:69
8005
- msgid "Message for logged users"
8006
- msgstr ""
8007
-
8008
- #: includes/settings/wcj-settings-checkout-customization.php:70
8009
- msgid "You can use HTML here."
8010
- msgstr ""
8011
-
8012
- #: includes/settings/wcj-settings-checkout-files-upload.php:22
8013
- #: includes/settings/wcj-settings-products-xml.php:22
8014
- msgid "Total Files"
8015
- msgstr ""
8016
-
8017
- #: includes/settings/wcj-settings-checkout-files-upload.php:57
8018
- msgid "Do not add on checkout"
8019
- msgstr ""
8020
-
8021
- #: includes/settings/wcj-settings-checkout-files-upload.php:62
8022
- msgid "Position order"
8023
- msgstr ""
8024
-
8025
- #: includes/settings/wcj-settings-checkout-files-upload.php:71
8026
- msgid "Add to Thank You page"
8027
- msgstr ""
8028
-
8029
- #: includes/settings/wcj-settings-checkout-files-upload.php:77
8030
- msgid "Add to My Account page"
8031
- msgstr ""
8032
-
8033
- #: includes/settings/wcj-settings-checkout-files-upload.php:83
8034
- msgid "Leave blank to disable label"
8035
- msgstr ""
8036
-
8037
- #: includes/settings/wcj-settings-checkout-files-upload.php:85
8038
- msgid "Please select file to upload"
8039
- msgstr ""
8040
-
8041
- #: includes/settings/wcj-settings-checkout-files-upload.php:90
8042
- msgid "Accepted file types"
8043
- msgstr ""
8044
-
8045
- #: includes/settings/wcj-settings-checkout-files-upload.php:91
8046
- msgid ""
8047
- "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
8048
- "files"
8049
- msgstr ""
8050
-
8051
- #: includes/settings/wcj-settings-checkout-files-upload.php:98
8052
- msgid "Label: Upload button"
8053
- msgstr ""
8054
-
8055
- #: includes/settings/wcj-settings-checkout-files-upload.php:105
8056
- msgid "Label: Remove button"
8057
- msgstr ""
8058
-
8059
- #: includes/settings/wcj-settings-checkout-files-upload.php:112
8060
- msgid "Notice: Wrong file type"
8061
- msgstr ""
8062
-
8063
- #: includes/settings/wcj-settings-checkout-files-upload.php:113
8064
- #: includes/settings/wcj-settings-checkout-files-upload.php:128
8065
- #: includes/settings/wcj-settings-checkout-files-upload.php:143
8066
- #, php-format
8067
- msgid "%s will be replaced with file name"
8068
- msgstr ""
8069
-
8070
- #: includes/settings/wcj-settings-checkout-files-upload.php:120
8071
- msgid "Notice: File is required"
8072
- msgstr ""
8073
-
8074
- #: includes/settings/wcj-settings-checkout-files-upload.php:127
8075
- msgid "Notice: File was successfully uploaded"
8076
- msgstr ""
8077
-
8078
- #: includes/settings/wcj-settings-checkout-files-upload.php:135
8079
- msgid "Notice: No file selected"
8080
- msgstr ""
8081
-
8082
- #: includes/settings/wcj-settings-checkout-files-upload.php:142
8083
- msgid "Notice: File was successfully removed"
8084
- msgstr ""
8085
-
8086
- #: includes/settings/wcj-settings-checkout-files-upload.php:151
8087
- msgid "PRODUCTS to show this field"
8088
- msgstr ""
8089
-
8090
- #: includes/settings/wcj-settings-checkout-files-upload.php:152
8091
- msgid ""
8092
- "To show this field only if at least one selected product is in cart, enter "
8093
- "products here. Leave blank to show for all products."
8094
- msgstr ""
8095
-
8096
- #: includes/settings/wcj-settings-checkout-files-upload.php:161
8097
- msgid "CATEGORIES to show this field"
8098
- msgstr ""
8099
-
8100
- #: includes/settings/wcj-settings-checkout-files-upload.php:162
8101
- msgid ""
8102
- "To show this field only if at least one product of selected category is in "
8103
- "cart, enter categories here. Leave blank to show for all products."
8104
- msgstr ""
8105
-
8106
- #: includes/settings/wcj-settings-checkout-files-upload.php:171
8107
- msgid "TAGS to show this field"
8108
- msgstr ""
8109
-
8110
- #: includes/settings/wcj-settings-checkout-files-upload.php:172
8111
- msgid ""
8112
- "To show this field only if at least one product of selected tag is in cart, "
8113
- "enter tags here. Leave blank to show for all products."
8114
- msgstr ""
8115
-
8116
- #: includes/settings/wcj-settings-checkout-files-upload.php:181
8117
- msgid "PRODUCTS to hide this field"
8118
- msgstr ""
8119
-
8120
- #: includes/settings/wcj-settings-checkout-files-upload.php:182
8121
- msgid ""
8122
- "To hide this field if at least one selected product is in cart, enter "
8123
- "products here. Leave blank to show for all products."
8124
- msgstr ""
8125
-
8126
- #: includes/settings/wcj-settings-checkout-files-upload.php:191
8127
- msgid "CATEGORIES to hide this field"
8128
- msgstr ""
8129
-
8130
- #: includes/settings/wcj-settings-checkout-files-upload.php:192
8131
- msgid ""
8132
- "To hide this field if at least one product of selected category is in cart, "
8133
- "enter categories here. Leave blank to show for all products."
8134
- msgstr ""
8135
-
8136
- #: includes/settings/wcj-settings-checkout-files-upload.php:201
8137
- msgid "TAGS to hide this field"
8138
- msgstr ""
8139
-
8140
- #: includes/settings/wcj-settings-checkout-files-upload.php:202
8141
- msgid ""
8142
- "To hide this field if at least one product of selected tag is in cart, enter "
8143
- "tags here. Leave blank to show for all products."
8144
- msgstr ""
8145
-
8146
- #: includes/settings/wcj-settings-checkout-files-upload.php:219
8147
- #: includes/settings/wcj-settings-product-input-fields.php:173
8148
- msgid "Emails Options"
8149
- msgstr ""
8150
-
8151
- #: includes/settings/wcj-settings-checkout-files-upload.php:224
8152
- #: includes/settings/wcj-settings-product-input-fields.php:178
8153
- msgid "Attach Files to Admin's New Order Emails"
8154
- msgstr ""
8155
-
8156
- #: includes/settings/wcj-settings-checkout-files-upload.php:225
8157
- #: includes/settings/wcj-settings-checkout-files-upload.php:232
8158
- #: includes/settings/wcj-settings-product-input-fields.php:179
8159
- #: includes/settings/wcj-settings-product-input-fields.php:186
8160
- msgid "Attach"
8161
- msgstr ""
8162
-
8163
- #: includes/settings/wcj-settings-checkout-files-upload.php:231
8164
- #: includes/settings/wcj-settings-product-input-fields.php:185
8165
- msgid "Attach Files to Customer's Processing Order Emails"
8166
- msgstr ""
8167
-
8168
- #: includes/settings/wcj-settings-checkout-files-upload.php:244
8169
- msgid "Form Template Options"
8170
- msgstr ""
8171
-
8172
- #: includes/settings/wcj-settings-checkout-files-upload.php:249
8173
- #: includes/settings/wcj-settings-product-addons.php:142
8174
- #: includes/settings/wcj-settings-product-addons.php:165
8175
- msgid "Before"
8176
- msgstr ""
8177
-
8178
- #: includes/settings/wcj-settings-checkout-files-upload.php:257
8179
- msgid "Replaced values: %field_id%, %field_label%, %required_html%."
8180
- msgstr ""
8181
-
8182
- #: includes/settings/wcj-settings-checkout-files-upload.php:264
8183
- #: includes/settings/wcj-settings-export.php:68
8184
- #: includes/settings/wcj-settings-export.php:136
8185
- #: includes/settings/wcj-settings-export.php:217
8186
- msgid "Field"
8187
- msgstr ""
8188
-
8189
- #: includes/settings/wcj-settings-checkout-files-upload.php:265
8190
- msgid "Replaced values: %field_html%, %button_html%."
8191
- msgstr ""
8192
-
8193
- #: includes/settings/wcj-settings-checkout-files-upload.php:272
8194
- #: includes/settings/wcj-settings-product-addons.php:157
8195
- #: includes/settings/wcj-settings-product-addons.php:180
8196
- msgid "After"
8197
- msgstr ""
8198
-
8199
- #: includes/settings/wcj-settings-currency-exchange-rates.php:18
8200
- #, php-format
8201
- msgid "%s till next update."
8202
- msgstr ""
8203
-
8204
- #: includes/settings/wcj-settings-currency-exchange-rates.php:20
8205
- #: includes/settings/wcj-settings-products-xml.php:50
8206
- #, php-format
8207
- msgid "%s seconds till next update."
8208
- msgstr ""
8209
-
8210
- #: includes/settings/wcj-settings-currency-exchange-rates.php:26
8211
- #: includes/settings/wcj-settings-offer-price.php:14
8212
- #: includes/settings/wcj-settings-order-quantities.php:113
8213
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:15
8214
- msgid "General Options"
8215
- msgstr ""
8216
-
8217
- #: includes/settings/wcj-settings-currency-exchange-rates.php:28
8218
- msgid ""
8219
- "All currencies from all <strong>enabled</strong> modules (with \"Exchange "
8220
- "Rates Updates\" set to \"Automatically via Currency Exchange Rates module\") "
8221
- "will be automatically added to the list."
8222
- msgstr ""
8223
-
8224
- #: includes/settings/wcj-settings-currency-exchange-rates.php:32
8225
- #: includes/settings/wcj-settings-currency-per-product.php:102
8226
- #: includes/settings/wcj-settings-multicurrency-base-price.php:24
8227
- #: includes/settings/wcj-settings-multicurrency.php:22
8228
- #: includes/settings/wcj-settings-payment-gateways-currency.php:61
8229
- #: includes/settings/wcj-settings-price-by-country.php:244
8230
- msgid "Exchange Rates Updates"
8231
- msgstr ""
8232
-
8233
- #: includes/settings/wcj-settings-currency-exchange-rates.php:46
8234
- msgid "Exchange Rates Server"
8235
- msgstr ""
8236
-
8237
- #: includes/settings/wcj-settings-currency-exchange-rates.php:53
8238
- msgid "Exchange Rates Rounding"
8239
- msgstr ""
8240
-
8241
- #: includes/settings/wcj-settings-currency-exchange-rates.php:60
8242
- #: includes/settings/wcj-settings-multicurrency.php:65
8243
- #: includes/settings/wcj-settings-payment-gateways-fees.php:75
8244
- msgid "Rounding Precision"
8245
- msgstr ""
8246
-
8247
- #: includes/settings/wcj-settings-currency-exchange-rates.php:67
8248
- msgid "Exchange Rates Offset - Percent"
8249
- msgstr ""
8250
-
8251
- #: includes/settings/wcj-settings-currency-exchange-rates.php:68
8252
- #: includes/settings/wcj-settings-currency-exchange-rates.php:76
8253
- msgid ""
8254
- "If both percent and fixed offsets are set - percent offset is applied first "
8255
- "and fixed offset after that."
8256
- msgstr ""
8257
-
8258
- #: includes/settings/wcj-settings-currency-exchange-rates.php:75
8259
- msgid "Exchange Rates Offset - Fixed"
8260
- msgstr ""
8261
-
8262
- #: includes/settings/wcj-settings-currency-exchange-rates.php:83
8263
- msgid "Calculate with Inversion"
8264
- msgstr ""
8265
-
8266
- #: includes/settings/wcj-settings-currency-exchange-rates.php:85
8267
- msgid ""
8268
- "If your currency pair have very small exchange rate, you may want to invert "
8269
- "currencies before calculating the rate."
8270
- msgstr ""
8271
-
8272
- #: includes/settings/wcj-settings-currency-exchange-rates.php:91
8273
- msgid "Always Use cURL"
8274
- msgstr ""
8275
-
8276
- #: includes/settings/wcj-settings-currency-exchange-rates.php:93
8277
- msgid ""
8278
- "If for some reason currency exchange rates are not updating, try enabling "
8279
- "this option."
8280
- msgstr ""
8281
-
8282
- #: includes/settings/wcj-settings-currency-exchange-rates.php:112
8283
- msgid "Custom Currencies Options"
8284
- msgstr ""
8285
-
8286
- #: includes/settings/wcj-settings-currency-exchange-rates.php:114
8287
- #, php-format
8288
- msgid ""
8289
- "You can add more currencies in this section. E.g. this can be used to "
8290
- "display exchange rates with %s shortcodes."
8291
- msgstr ""
8292
-
8293
- #: includes/settings/wcj-settings-currency-exchange-rates.php:125
8294
- #: includes/settings/wcj-settings-currency.php:59
8295
- msgid "Total Custom Currencies"
8296
- msgstr ""
8297
-
8298
- #: includes/settings/wcj-settings-currency-exchange-rates.php:137
8299
- #: includes/settings/wcj-settings-currency.php:71
8300
- msgid "Custom Currency"
8301
- msgstr ""
8302
-
8303
- #: includes/settings/wcj-settings-currency-exchange-rates.php:156
8304
- #: includes/settings/wcj-settings-price-by-country.php:239
8305
- msgid "Exchange Rates"
8306
- msgstr ""
8307
-
8308
- #: includes/settings/wcj-settings-currency-external-products.php:14
8309
- msgid "Currency for External Products Options"
8310
- msgstr ""
8311
-
8312
- #: includes/settings/wcj-settings-currency-external-products.php:20
8313
- #: includes/settings/wcj-settings-currency-per-product.php:163
8314
- #: includes/settings/wcj-settings-multicurrency-base-price.php:72
8315
- #: includes/settings/wcj-settings-multicurrency.php:115
8316
- #: includes/settings/wcj-settings-price-by-country.php:225
8317
- #: includes/settings/wcj-settings-price-formats.php:35
8318
- msgid "Currency"
8319
- msgstr ""
8320
-
8321
- #: includes/settings/wcj-settings-currency-external-products.php:21
8322
- msgid "Set currency for all external products."
8323
- msgstr ""
8324
-
8325
- #: includes/settings/wcj-settings-currency-per-product.php:23
8326
- msgid "Cart and Checkout Behaviour Options"
8327
- msgstr ""
8328
-
8329
- #: includes/settings/wcj-settings-currency-per-product.php:28
8330
- msgid "Cart and Checkout Behaviour"
8331
- msgstr ""
8332
-
8333
- #: includes/settings/wcj-settings-currency-per-product.php:33
8334
- msgid "Convert to shop default currency"
8335
- msgstr ""
8336
-
8337
- #: includes/settings/wcj-settings-currency-per-product.php:34
8338
- #: includes/settings/wcj-settings-currency-per-product.php:41
8339
- msgid "Leave product currency (allow only one product to be added to cart)"
8340
- msgstr ""
8341
-
8342
- #: includes/settings/wcj-settings-currency-per-product.php:35
8343
- #: includes/settings/wcj-settings-currency-per-product.php:48
8344
- msgid ""
8345
- "Leave product currency (allow only same currency products to be added to "
8346
- "cart)"
8347
- msgstr ""
8348
-
8349
- #: includes/settings/wcj-settings-currency-per-product.php:36
8350
- msgid "Convert to currency of last product in cart"
8351
- msgstr ""
8352
-
8353
- #: includes/settings/wcj-settings-currency-per-product.php:37
8354
- msgid "Convert to currency of first product in cart"
8355
- msgstr ""
8356
-
8357
- #: includes/settings/wcj-settings-currency-per-product.php:59
8358
- msgid "Additional Options"
8359
- msgstr ""
8360
-
8361
- #: includes/settings/wcj-settings-currency-per-product.php:60
8362
- msgid ""
8363
- "Save module's settings after changing this options to see new settings "
8364
- "fields."
8365
- msgstr ""
8366
-
8367
- #: includes/settings/wcj-settings-currency-per-product.php:65
8368
- msgid "Currency per Product Authors"
8369
- msgstr ""
8370
-
8371
- #: includes/settings/wcj-settings-currency-per-product.php:72
8372
- msgid "Currency per Product Authors User Roles"
8373
- msgstr ""
8374
-
8375
- #: includes/settings/wcj-settings-currency-per-product.php:79
8376
- msgid "Currency per Product Categories"
8377
- msgstr ""
8378
-
8379
- #: includes/settings/wcj-settings-currency-per-product.php:86
8380
- msgid "Currency per Product Tags"
8381
- msgstr ""
8382
-
8383
- #: includes/settings/wcj-settings-currency-per-product.php:97
8384
- msgid "Exchange Rates Updates Options"
8385
- msgstr ""
8386
-
8387
- #: includes/settings/wcj-settings-currency-per-product.php:107
8388
- #: includes/settings/wcj-settings-multicurrency-base-price.php:29
8389
- #: includes/settings/wcj-settings-multicurrency.php:27
8390
- #: includes/settings/wcj-settings-payment-gateways-currency.php:66
8391
- #: includes/settings/wcj-settings-price-by-country.php:249
8392
- msgid "Enter Rates Manually"
8393
- msgstr ""
8394
-
8395
- #: includes/settings/wcj-settings-currency-per-product.php:108
8396
- #: includes/settings/wcj-settings-multicurrency-base-price.php:30
8397
- #: includes/settings/wcj-settings-multicurrency.php:28
8398
- #: includes/settings/wcj-settings-payment-gateways-currency.php:67
8399
- #: includes/settings/wcj-settings-price-by-country.php:250
8400
- msgid "Automatically via Currency Exchange Rates module"
8401
- msgstr ""
8402
-
8403
- #: includes/settings/wcj-settings-currency-per-product.php:111
8404
- #: includes/settings/wcj-settings-multicurrency-base-price.php:33
8405
- #: includes/settings/wcj-settings-multicurrency.php:31
8406
- #: includes/settings/wcj-settings-payment-gateways-currency.php:70
8407
- #: includes/settings/wcj-settings-price-by-country.php:253
8408
- msgid "Visit"
8409
- msgstr ""
8410
-
8411
- #: includes/settings/wcj-settings-currency-per-product.php:111
8412
- #: includes/settings/wcj-settings-multicurrency-base-price.php:33
8413
- #: includes/settings/wcj-settings-multicurrency.php:31
8414
- #: includes/settings/wcj-settings-payment-gateways-currency.php:70
8415
- #: includes/settings/wcj-settings-price-by-country.php:253
8416
- msgid "Currency Exchange Rates module"
8417
- msgstr ""
8418
-
8419
- #: includes/settings/wcj-settings-currency-per-product.php:121
8420
- #: includes/settings/wcj-settings-multicurrency-base-price.php:43
8421
- #: includes/settings/wcj-settings-multicurrency.php:85
8422
- msgid "Currencies Options"
8423
- msgstr ""
8424
-
8425
- #: includes/settings/wcj-settings-currency-per-product.php:122
8426
- msgid ""
8427
- "Exchange rates for currencies won't be used if \"Cart and Checkout Behaviour"
8428
- "\" is set to one of \"Leave product currency ...\" options."
8429
- msgstr ""
8430
-
8431
- #: includes/settings/wcj-settings-currency-per-product.php:127
8432
- #: includes/settings/wcj-settings-multicurrency-base-price.php:48
8433
- #: includes/settings/wcj-settings-multicurrency.php:91
8434
- msgid "Total Currencies"
8435
- msgstr ""
8436
-
8437
- #: includes/settings/wcj-settings-currency-per-product.php:184
8438
- msgid "Product Authors"
8439
- msgstr ""
8440
-
8441
- #: includes/settings/wcj-settings-currency-per-product.php:196
8442
- msgid "Product Authors User Roles"
8443
- msgstr ""
8444
-
8445
- #: includes/settings/wcj-settings-currency-per-product.php:208
8446
- msgid "Product Categories"
8447
- msgstr ""
8448
-
8449
- #: includes/settings/wcj-settings-currency-per-product.php:220
8450
- msgid "Product Tags"
8451
- msgstr ""
8452
-
8453
- #: includes/settings/wcj-settings-currency.php:15
8454
- msgid "Currency Symbol Options"
8455
- msgstr ""
8456
-
8457
- #: includes/settings/wcj-settings-currency.php:20
8458
- msgid "Hide Currency Symbol"
8459
- msgstr ""
8460
-
8461
- #: includes/settings/wcj-settings-currency.php:22
8462
- msgid "Default: no."
8463
- msgstr ""
8464
-
8465
- #: includes/settings/wcj-settings-currency.php:54
8466
- msgid "Custom Currencies"
8467
- msgstr ""
8468
-
8469
- #: includes/settings/wcj-settings-currency.php:72
8470
- msgid "Currency Name (required)"
8471
- msgstr ""
8472
-
8473
- #: includes/settings/wcj-settings-currency.php:79
8474
- msgid "Currency Code (required)"
8475
- msgstr ""
8476
-
8477
- #: includes/settings/wcj-settings-currency.php:86
8478
- msgid "Currency Symbol"
8479
- msgstr ""
8480
-
8481
- #: includes/settings/wcj-settings-custom-css.php:19
8482
- msgid "Custom CSS - Front end (Customers)"
8483
- msgstr ""
8484
-
8485
- #: includes/settings/wcj-settings-custom-css.php:26
8486
- msgid "Custom CSS - Back end (Admin)"
8487
- msgstr ""
8488
-
8489
- #: includes/settings/wcj-settings-custom-css.php:33
8490
- msgid "Custom CSS on per Product Basis"
8491
- msgstr ""
8492
-
8493
- #: includes/settings/wcj-settings-custom-css.php:35
8494
- msgid ""
8495
- "Set product specific CSS to be loaded only on specific product's single page."
8496
- msgstr ""
8497
-
8498
- #: includes/settings/wcj-settings-custom-css.php:36
8499
- #: includes/settings/wcj-settings-product-add-to-cart.php:143
8500
- #: includes/settings/wcj-settings-product-add-to-cart.php:174
8501
- #: includes/settings/wcj-settings-product-add-to-cart.php:191
8502
- msgid "This will add meta box to each product's edit page"
8503
- msgstr ""
8504
-
8505
- #: includes/settings/wcj-settings-custom-css.php:42
8506
- msgid "Custom CSS on per Product Basis - Default Field Value"
8507
- msgstr ""
8508
-
8509
- #: includes/settings/wcj-settings-custom-js.php:19
8510
- msgid "Custom JS - Front end (Customers)"
8511
- msgstr ""
8512
-
8513
- #: includes/settings/wcj-settings-custom-js.php:26
8514
- msgid "Custom JS - Back end (Admin)"
8515
- msgstr ""
8516
-
8517
- #: includes/settings/wcj-settings-email-options.php:14
8518
- msgid "Product Info in Item Name"
8519
- msgstr ""
8520
-
8521
- #: includes/settings/wcj-settings-email-options.php:19
8522
- msgid "Add Product Info to Item Name"
8523
- msgstr ""
8524
-
8525
- #: includes/settings/wcj-settings-email-options.php:26
8526
- msgid "Info"
8527
- msgstr ""
8528
-
8529
- #: includes/settings/wcj-settings-email-options.php:27
8530
- #, php-format
8531
- msgid ""
8532
- "You can use <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</"
8533
- "a> here."
8534
- msgstr ""
8535
-
8536
- #: includes/settings/wcj-settings-emails-verification.php:19
8537
- msgid "Skip Email Verification for User Roles"
8538
- msgstr ""
8539
-
8540
- #: includes/settings/wcj-settings-emails-verification.php:27
8541
- msgid "Enable Email Verification for Already Registered Users"
8542
- msgstr ""
8543
-
8544
- #: includes/settings/wcj-settings-emails-verification.php:29
8545
- msgid ""
8546
- "If enabled, all your current users will have to verify their emails when "
8547
- "logging to your site."
8548
- msgstr ""
8549
-
8550
- #: includes/settings/wcj-settings-emails-verification.php:35
8551
- msgid "Redirect to \"My Account\" Page After Successful Verification"
8552
- msgstr ""
8553
-
8554
- #: includes/settings/wcj-settings-emails-verification.php:42
8555
- msgid "Verification Email Subject"
8556
- msgstr ""
8557
-
8558
- #: includes/settings/wcj-settings-emails-verification.php:51
8559
- msgid "Verification Email Content"
8560
- msgstr ""
8561
-
8562
- #: includes/settings/wcj-settings-emails-verification.php:61
8563
- msgid "Verification Message - Success"
8564
- msgstr ""
8565
-
8566
- #: includes/settings/wcj-settings-emails-verification.php:68
8567
- msgid "Verification Message - Error"
8568
- msgstr ""
8569
-
8570
- #: includes/settings/wcj-settings-emails-verification.php:76
8571
- msgid "Verification Message - Failed"
8572
- msgstr ""
8573
-
8574
- #: includes/settings/wcj-settings-emails-verification.php:84
8575
- msgid "Verification Message - Activate"
8576
- msgstr ""
8577
-
8578
- #: includes/settings/wcj-settings-emails-verification.php:91
8579
- msgid "Verification Message - Resend"
8580
- msgstr ""
8581
-
8582
- #: includes/settings/wcj-settings-emails.php:18
8583
- #, php-format
8584
- msgid ""
8585
- "This section lets you set number of custom emails to add. After setting the "
8586
- "number, visit <a href=\"%s\">WooCommerce > Settings > Emails</a> to set each "
8587
- "email options."
8588
- msgstr ""
8589
-
8590
- #: includes/settings/wcj-settings-emails.php:23
8591
- msgid "Custom Emails Number"
8592
- msgstr ""
8593
-
8594
- #: includes/settings/wcj-settings-emails.php:35
8595
- msgid "Admin Title Custom Email"
8596
- msgstr ""
8597
-
8598
- #: includes/settings/wcj-settings-empty-cart.php:15
8599
- msgid ""
8600
- "You can also use <strong>[wcj_empty_cart_button]</strong> shortcode to place "
8601
- "the button anywhere on your site."
8602
- msgstr ""
8603
-
8604
- #: includes/settings/wcj-settings-empty-cart.php:20
8605
- msgid "Empty Cart Button Text"
8606
- msgstr ""
8607
-
8608
- #: includes/settings/wcj-settings-empty-cart.php:28
8609
- msgid "Wrapping DIV style"
8610
- msgstr ""
8611
-
8612
- #: includes/settings/wcj-settings-empty-cart.php:29
8613
- msgid "Style for the button's div. Default is \"float: right;\""
8614
- msgstr ""
8615
-
8616
- #: includes/settings/wcj-settings-empty-cart.php:35
8617
- msgid "Button position on the Cart page"
8618
- msgstr ""
8619
-
8620
- #: includes/settings/wcj-settings-empty-cart.php:40
8621
- #: includes/settings/wcj-settings-empty-cart.php:55
8622
- #: includes/settings/wcj-settings-offer-price.php:69
8623
- #: includes/settings/wcj-settings-offer-price.php:90
8624
- #: includes/settings/wcj-settings-orders.php:154
8625
- msgid "Do not add"
8626
- msgstr ""
8627
-
8628
- #: includes/settings/wcj-settings-empty-cart.php:41
8629
- msgid "After Cart"
8630
- msgstr ""
8631
-
8632
- #: includes/settings/wcj-settings-empty-cart.php:42
8633
- msgid "Before Cart"
8634
- msgstr ""
8635
-
8636
- #: includes/settings/wcj-settings-empty-cart.php:43
8637
- msgid "After Proceed to Checkout button"
8638
- msgstr ""
8639
-
8640
- #: includes/settings/wcj-settings-empty-cart.php:44
8641
- msgid "After Cart Totals"
8642
- msgstr ""
8643
-
8644
- #: includes/settings/wcj-settings-empty-cart.php:50
8645
- msgid "Button position on the Checkout page"
8646
- msgstr ""
8647
-
8648
- #: includes/settings/wcj-settings-empty-cart.php:68
8649
- msgid "Confirmation"
8650
- msgstr ""
8651
-
8652
- #: includes/settings/wcj-settings-empty-cart.php:73
8653
- msgid "No confirmation"
8654
- msgstr ""
8655
-
8656
- #: includes/settings/wcj-settings-empty-cart.php:74
8657
- msgid "Confirm by pop up box"
8658
- msgstr ""
8659
-
8660
- #: includes/settings/wcj-settings-empty-cart.php:78
8661
- msgid "Confirmation Text (if enabled)"
8662
- msgstr ""
8663
-
8664
- #: includes/settings/wcj-settings-eu-vat-number.php:20
8665
- msgid "Field Label"
8666
- msgstr ""
8667
-
8668
- #: includes/settings/wcj-settings-eu-vat-number.php:74
8669
- msgid "Validate"
8670
- msgstr ""
8671
-
8672
- #: includes/settings/wcj-settings-eu-vat-number.php:82
8673
- msgid "Message on not valid"
8674
- msgstr ""
8675
-
8676
- #: includes/settings/wcj-settings-eu-vat-number.php:89
8677
- msgid "First Validation Method"
8678
- msgstr ""
8679
-
8680
- #: includes/settings/wcj-settings-eu-vat-number.php:90
8681
- msgid ""
8682
- "Change this if you are having issues when validating VAT. This only selects "
8683
- "first method to try - if not succeeded, remaining methods will be used for "
8684
- "validation."
8685
- msgstr ""
8686
-
8687
- #: includes/settings/wcj-settings-eu-vat-number.php:95
8688
- msgid "SOAP"
8689
- msgstr ""
8690
-
8691
- #: includes/settings/wcj-settings-eu-vat-number.php:96
8692
- msgid "cURL"
8693
- msgstr ""
8694
-
8695
- #: includes/settings/wcj-settings-eu-vat-number.php:97
8696
- msgid "Simple"
8697
- msgstr ""
8698
-
8699
- #: includes/settings/wcj-settings-eu-vat-number.php:101
8700
- msgid "Exempt VAT for Valid Numbers"
8701
- msgstr ""
8702
-
8703
- #: includes/settings/wcj-settings-eu-vat-number.php:108
8704
- msgid "Preserve VAT in Base Country"
8705
- msgstr ""
8706
-
8707
- #: includes/settings/wcj-settings-eu-vat-number.php:127
8708
- msgid "Check for IP Location Country"
8709
- msgstr ""
8710
-
8711
- #: includes/settings/wcj-settings-eu-vat-number.php:151
8712
- msgid "After order table"
8713
- msgstr ""
8714
-
8715
- #: includes/settings/wcj-settings-eu-vat-number.php:152
8716
- msgid "In billing address"
8717
- msgstr ""
8718
-
8719
- #: includes/settings/wcj-settings-eu-vat-number.php:156
8720
- msgid "Add Progress Messages"
8721
- msgstr ""
8722
-
8723
- #: includes/settings/wcj-settings-eu-vat-number.php:163
8724
- msgid "Progress Message: Validating"
8725
- msgstr ""
8726
-
8727
- #: includes/settings/wcj-settings-eu-vat-number.php:170
8728
- msgid "Progress Message: Valid"
8729
- msgstr ""
8730
-
8731
- #: includes/settings/wcj-settings-eu-vat-number.php:177
8732
- msgid "Progress Message: Not Valid"
8733
- msgstr ""
8734
-
8735
- #: includes/settings/wcj-settings-eu-vat-number.php:184
8736
- msgid "Progress Message: Validation Failed"
8737
- msgstr ""
8738
-
8739
- #: includes/settings/wcj-settings-eu-vat-number.php:185
8740
- msgid "Message on VAT validation server timeout etc."
8741
- msgstr ""
8742
-
8743
- #: includes/settings/wcj-settings-eu-vat-number.php:192
8744
- msgid "Add EU VAT Number Summary Metabox to Order Edit Page"
8745
- msgstr ""
8746
-
8747
- #: includes/settings/wcj-settings-export.php:15
8748
- msgid "Export Options"
8749
- msgstr ""
8750
-
8751
- #: includes/settings/wcj-settings-export.php:20
8752
- msgid "CSV Separator"
8753
- msgstr ""
8754
-
8755
- #: includes/settings/wcj-settings-export.php:26
8756
- msgid "UTF-8 BOM"
8757
- msgstr ""
8758
-
8759
- #: includes/settings/wcj-settings-export.php:28
8760
- msgid "Add UTF-8 BOM sequence"
8761
- msgstr ""
8762
-
8763
- #: includes/settings/wcj-settings-export.php:38
8764
- msgid "Export Orders Options"
8765
- msgstr ""
8766
-
8767
- #: includes/settings/wcj-settings-export.php:43
8768
- msgid "Export Orders Fields"
8769
- msgstr ""
8770
-
8771
- #: includes/settings/wcj-settings-export.php:44
8772
- #: includes/settings/wcj-settings-export.php:112
8773
- #: includes/settings/wcj-settings-export.php:182
8774
- #: includes/settings/wcj-settings-export.php:261
8775
- #: includes/settings/wcj-settings-export.php:279
8776
- msgid "Hold \"Control\" key to select multiple fields."
8777
- msgstr ""
8778
-
8779
- #: includes/settings/wcj-settings-export.php:52
8780
- msgid "Additional Export Orders Fields"
8781
- msgstr ""
8782
-
8783
- #: includes/settings/wcj-settings-export.php:87
8784
- #: includes/settings/wcj-settings-export.php:155
8785
- msgid "Order Shortcode"
8786
- msgstr ""
8787
-
8788
- #: includes/settings/wcj-settings-export.php:92
8789
- msgid ""
8790
- "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
8791
- "(can be custom field name)."
8792
- msgstr ""
8793
-
8794
- #: includes/settings/wcj-settings-export.php:93
8795
- msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
8796
- msgstr ""
8797
-
8798
- #: includes/settings/wcj-settings-export.php:106
8799
- msgid "Export Orders Items Options"
8800
- msgstr ""
8801
-
8802
- #: includes/settings/wcj-settings-export.php:111
8803
- msgid "Export Orders Items Fields"
8804
- msgstr ""
8805
-
8806
- #: includes/settings/wcj-settings-export.php:120
8807
- msgid "Additional Export Orders Items Fields"
8808
- msgstr ""
8809
-
8810
- #: includes/settings/wcj-settings-export.php:157
8811
- #: includes/settings/wcj-settings-export.php:236
8812
- msgid "Product Shortcode"
8813
- msgstr ""
8814
-
8815
- #: includes/settings/wcj-settings-export.php:162
8816
- msgid ""
8817
- "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
8818
- "retrieve (can be custom field name)."
8819
- msgstr ""
8820
-
8821
- #: includes/settings/wcj-settings-export.php:163
8822
- msgid ""
8823
- "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
8824
- msgstr ""
8825
-
8826
- #: includes/settings/wcj-settings-export.php:176
8827
- msgid "Export Products Options"
8828
- msgstr ""
8829
-
8830
- #: includes/settings/wcj-settings-export.php:181
8831
- msgid "Export Products Fields"
8832
- msgstr ""
8833
-
8834
- #: includes/settings/wcj-settings-export.php:190
8835
- #: includes/settings/wcj-settings-free-price.php:14
8836
- msgid "Variable Products"
8837
- msgstr ""
8838
-
8839
- #: includes/settings/wcj-settings-export.php:195
8840
- msgid "Export variable (main) product only"
8841
- msgstr ""
8842
-
8843
- #: includes/settings/wcj-settings-export.php:196
8844
- msgid "Export variation products only"
8845
- msgstr ""
8846
-
8847
- #: includes/settings/wcj-settings-export.php:197
8848
- msgid "Export variable (main) and variation products"
8849
- msgstr ""
8850
-
8851
- #: includes/settings/wcj-settings-export.php:201
8852
- msgid "Additional Export Products Fields"
8853
- msgstr ""
8854
-
8855
- #: includes/settings/wcj-settings-export.php:241
8856
- msgid ""
8857
- "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
8858
- "(can be custom field name)."
8859
- msgstr ""
8860
-
8861
- #: includes/settings/wcj-settings-export.php:242
8862
- msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
8863
- msgstr ""
8864
-
8865
- #: includes/settings/wcj-settings-export.php:255
8866
- msgid "Export Customers Options"
8867
- msgstr ""
8868
-
8869
- #: includes/settings/wcj-settings-export.php:260
8870
- msgid "Export Customers Fields"
8871
- msgstr ""
8872
-
8873
- #: includes/settings/wcj-settings-export.php:273
8874
- msgid "Export Customers from Orders Options"
8875
- msgstr ""
8876
-
8877
- #: includes/settings/wcj-settings-export.php:278
8878
- msgid "Export Customers from Orders Fields"
8879
- msgstr ""
8880
-
8881
- #: includes/settings/wcj-settings-free-price.php:13
8882
- msgid "Simple and Custom Products"
8883
- msgstr ""
8884
-
8885
- #: includes/settings/wcj-settings-free-price.php:15
8886
- msgid "Grouped Products"
8887
- msgstr ""
8888
-
8889
- #: includes/settings/wcj-settings-free-price.php:16
8890
- #: includes/settings/wcj-settings-product-add-to-cart.php:201
8891
- msgid "External Products"
8892
- msgstr ""
8893
-
8894
- #: includes/settings/wcj-settings-free-price.php:19
8895
- msgid "Single Product Page"
8896
- msgstr ""
8897
-
8898
- #: includes/settings/wcj-settings-free-price.php:21
8899
- msgid "Homepage"
8900
- msgstr ""
8901
-
8902
- #: includes/settings/wcj-settings-free-price.php:22
8903
- msgid "Pages (e.g. Shortcodes)"
8904
- msgstr ""
8905
-
8906
- #: includes/settings/wcj-settings-free-price.php:23
8907
- msgid "Archives (Product Categories)"
8908
- msgstr ""
8909
-
8910
- #: includes/settings/wcj-settings-free-price.php:31
8911
- msgid "Labels can contain shortcodes."
8912
- msgstr ""
8913
-
8914
- #: includes/settings/wcj-settings-free-price.php:38
8915
- msgid "Variations"
8916
- msgstr ""
8917
-
8918
- #: includes/settings/wcj-settings-general.php:34
8919
- msgid "Shortcodes Options"
8920
- msgstr ""
8921
-
8922
- #: includes/settings/wcj-settings-general.php:39
8923
- msgid "Enable All Shortcodes in WordPress Text Widgets"
8924
- msgstr ""
8925
-
8926
- #: includes/settings/wcj-settings-general.php:40
8927
- msgid ""
8928
- "This will enable all (including non Booster's) shortcodes in WordPress text "
8929
- "widgets."
8930
- msgstr ""
8931
-
8932
- #: includes/settings/wcj-settings-general.php:47
8933
- msgid "Disable Booster's Shortcodes"
8934
- msgstr ""
8935
-
8936
- #: includes/settings/wcj-settings-general.php:48
8937
- msgid "Disable all Booster's shortcodes (for memory saving)."
8938
- msgstr ""
8939
-
8940
- #: includes/settings/wcj-settings-general.php:49
8941
- #: includes/settings/wcj-settings-general.php:88
8942
- #: includes/settings/wcj-settings-general.php:102
8943
- #: includes/settings/wcj-settings-general.php:109
8944
- #: includes/settings/wcj-settings-general.php:116
8945
- #: includes/settings/wcj-settings-general.php:123
8946
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:134
8947
- #: includes/settings/wcj-settings-price-by-user-role.php:73
8948
- #: includes/settings/wcj-settings-product-add-to-cart.php:102
8949
- #: includes/settings/wcj-settings-product-open-pricing.php:80
8950
- #: includes/settings/wcj-settings-sku.php:187
8951
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:91
8952
- msgid "Disable"
8953
- msgstr ""
8954
-
8955
- #: includes/settings/wcj-settings-general.php:59
8956
- #: includes/settings/wcj-settings-general.php:64
8957
- msgid "Product Revisions"
8958
- msgstr ""
8959
-
8960
- #: includes/settings/wcj-settings-general.php:75
8961
- msgid "Advanced Options"
8962
- msgstr ""
8963
-
8964
- #: includes/settings/wcj-settings-general.php:80
8965
- msgid "Recalculate Cart Totals on Every Page Load"
8966
- msgstr ""
8967
-
8968
- #: includes/settings/wcj-settings-general.php:87
8969
- msgid "Disable Loading Datepicker/Weekpicker CSS"
8970
- msgstr ""
8971
-
8972
- #: includes/settings/wcj-settings-general.php:94
8973
- msgid "Datepicker/Weekpicker CSS"
8974
- msgstr ""
8975
-
8976
- #: includes/settings/wcj-settings-general.php:101
8977
- msgid "Disable Loading Datepicker/Weekpicker JavaScript"
8978
- msgstr ""
8979
-
8980
- #: includes/settings/wcj-settings-general.php:108
8981
- msgid "Disable Loading Timepicker CSS"
8982
- msgstr ""
8983
-
8984
- #: includes/settings/wcj-settings-general.php:115
8985
- msgid "Disable Loading Timepicker JavaScript"
8986
- msgstr ""
8987
-
8988
- #: includes/settings/wcj-settings-general.php:122
8989
- msgid "Disable Saving PDFs in PHP directory for temporary files"
8990
- msgstr ""
8991
-
8992
- #: includes/settings/wcj-settings-general.php:133
8993
- msgid "PayPal Email per Product Options"
8994
- msgstr ""
8995
-
8996
- #: includes/settings/wcj-settings-general.php:138
8997
- msgid "PayPal Email per Product"
8998
- msgstr ""
8999
-
9000
- #: includes/settings/wcj-settings-general.php:140
9001
- #: includes/settings/wcj-settings-product-by-date.php:54
9002
- #: includes/settings/wcj-settings-product-by-time.php:54
9003
- msgid "This will add new meta box to each product's edit page."
9004
- msgstr ""
9005
-
9006
- #: includes/settings/wcj-settings-general.php:150
9007
- msgid "Session Expiration Options"
9008
- msgstr ""
9009
-
9010
- #: includes/settings/wcj-settings-general.php:155
9011
- #: includes/settings/wcj-settings-general.php:170
9012
- msgid "Session Expiration"
9013
- msgstr ""
9014
-
9015
- #: includes/settings/wcj-settings-general.php:162
9016
- msgid "Session Expiring"
9017
- msgstr ""
9018
-
9019
- #: includes/settings/wcj-settings-general.php:163
9020
- msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
9021
- msgstr ""
9022
-
9023
- #: includes/settings/wcj-settings-general.php:171
9024
- msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
9025
- msgstr ""
9026
-
9027
- #: includes/settings/wcj-settings-general.php:182
9028
- msgid "Booster User Roles Changer Options"
9029
- msgstr ""
9030
-
9031
- #: includes/settings/wcj-settings-general.php:183
9032
- msgid "This will add user roles changer tool to admin bar."
9033
- msgstr ""
9034
-
9035
- #: includes/settings/wcj-settings-general.php:189
9036
- msgid "Booster User Roles Changer"
9037
- msgstr ""
9038
-
9039
- #: includes/settings/wcj-settings-general.php:198
9040
- msgid "Enabled for"
9041
- msgstr ""
9042
-
9043
- #: includes/settings/wcj-settings-general.php:210
9044
- msgid "Track Users Options"
9045
- msgstr ""
9046
-
9047
- #: includes/settings/wcj-settings-general.php:215
9048
- msgid "Track Users"
9049
- msgstr ""
9050
-
9051
- #: includes/settings/wcj-settings-general.php:216
9052
- #: includes/settings/wcj-settings-product-listings.php:180
9053
- #: includes/settings/wcj-settings-product-listings.php:238
9054
- #: includes/settings/wcj-settings-shipping-options.php:21
9055
- #: includes/settings/wcj-settings-stock.php:23
9056
- msgid "Enable section"
9057
- msgstr ""
9058
-
9059
- #: includes/settings/wcj-settings-general.php:222
9060
- msgid "Countries by Visits"
9061
- msgstr ""
9062
-
9063
- #: includes/settings/wcj-settings-general.php:223
9064
- msgid "Enable admin dashboard widget"
9065
- msgstr ""
9066
-
9067
- #: includes/settings/wcj-settings-general.php:229
9068
- msgid "Select which info show in admin dashboard widget."
9069
- msgstr ""
9070
-
9071
- #: includes/settings/wcj-settings-general.php:237
9072
- msgid "Select which how many top countries to show."
9073
- msgstr ""
9074
-
9075
- #: includes/settings/wcj-settings-general.php:244
9076
- msgid "Track Orders"
9077
- msgstr ""
9078
-
9079
- #: includes/settings/wcj-settings-general.php:245
9080
- msgid "Save customer's acquisition source (i.e. HTTP referer) for orders."
9081
- msgstr ""
9082
-
9083
- #: includes/settings/wcj-settings-general.php:246
9084
- msgid ""
9085
- "This will add \"Booster: Acquisition Source\" meta box to each order's edit "
9086
- "page."
9087
- msgstr ""
9088
-
9089
- #: includes/settings/wcj-settings-global-discount.php:20
9090
- msgid "Total Groups"
9091
- msgstr ""
9092
-
9093
- #: includes/settings/wcj-settings-global-discount.php:24
9094
- #: includes/settings/wcj-settings-product-by-user.php:138
9095
- #: includes/settings/wcj-settings-products-xml.php:26
9096
- #: includes/shipping/class-wc-shipping-wcj-custom.php:157
9097
- msgid "Press Save changes after you change this number."
9098
- msgstr ""
9099
-
9100
- #: includes/settings/wcj-settings-global-discount.php:37
9101
- msgid "Discount Group"
9102
- msgstr ""
9103
-
9104
- #: includes/settings/wcj-settings-global-discount.php:54
9105
- #: includes/settings/wcj-settings-payment-gateways-fees.php:38
9106
- #: includes/settings/wcj-settings-purchase-data.php:78
9107
- #: includes/settings/wcj-settings-wholesale-price.php:62
9108
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:18
9109
- msgid "Percent"
9110
- msgstr ""
9111
-
9112
- #: includes/settings/wcj-settings-global-discount.php:55
9113
- #: includes/settings/wcj-settings-payment-gateways-fees.php:37
9114
- #: includes/settings/wcj-settings-price-by-user-role.php:32
9115
- #: includes/settings/wcj-settings-purchase-data.php:77
9116
- #: includes/settings/wcj-settings-wholesale-price.php:63
9117
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:19
9118
- msgid "Fixed"
9119
- msgstr ""
9120
-
9121
- #: includes/settings/wcj-settings-global-discount.php:60
9122
- msgid "Must be negative number."
9123
- msgstr ""
9124
-
9125
- #: includes/settings/wcj-settings-global-discount.php:67
9126
- msgid "Product Scope"
9127
- msgstr ""
9128
-
9129
- #: includes/settings/wcj-settings-global-discount.php:72
9130
- #: includes/settings/wcj-settings-product-add-to-cart.php:65
9131
- #: includes/settings/wcj-settings-products-xml.php:197
9132
- msgid "All products"
9133
- msgstr ""
9134
-
9135
- #: includes/settings/wcj-settings-global-discount.php:73
9136
- msgid "Only products that are already on sale"
9137
- msgstr ""
9138
-
9139
- #: includes/settings/wcj-settings-global-discount.php:74
9140
- #: includes/settings/wcj-settings-products-xml.php:199
9141
- msgid "Only products that are not on sale"
9142
- msgstr ""
9143
-
9144
- #: includes/settings/wcj-settings-global-discount.php:78
9145
- msgid "Include Product Categories"
9146
- msgstr ""
9147
-
9148
- #: includes/settings/wcj-settings-global-discount.php:79
9149
- msgid ""
9150
- "Set this field to apply discount to selected categories only. Leave blank to "
9151
- "apply to all categories."
9152
- msgstr ""
9153
-
9154
- #: includes/settings/wcj-settings-left-to-free-shipping.php:14
9155
- msgid "Left to Free Shipping Info Options"
9156
- msgstr ""
9157
-
9158
- #: includes/settings/wcj-settings-left-to-free-shipping.php:16
9159
- msgid ""
9160
- "This section lets you enable info on cart, mini cart and checkout pages."
9161
- msgstr ""
9162
-
9163
- #: includes/settings/wcj-settings-left-to-free-shipping.php:17
9164
- msgid ""
9165
- "You can also use <em>Booster - Left to Free Shipping</em> widget, <em>"
9166
- "[wcj_get_left_to_free_shipping content=\"\"]</em> shortcode or "
9167
- "<em>wcj_get_left_to_free_shipping( $content );</em> function."
9168
- msgstr ""
9169
-
9170
- #: includes/settings/wcj-settings-left-to-free-shipping.php:18
9171
- msgid ""
9172
- "In content you can use: <em>%left_to_free%</em> and <em>"
9173
- "%free_shipping_min_amount%</em> shortcodes."
9174
- msgstr ""
9175
-
9176
- #: includes/settings/wcj-settings-left-to-free-shipping.php:22
9177
- msgid "Info on Cart"
9178
- msgstr ""
9179
-
9180
- #: includes/settings/wcj-settings-left-to-free-shipping.php:31
9181
- #: includes/settings/wcj-settings-left-to-free-shipping.php:66
9182
- #: includes/settings/wcj-settings-left-to-free-shipping.php:105
9183
- #: includes/settings/wcj-settings-left-to-free-shipping.php:140
9184
- msgid "You can use HTML and/or shortcodes (e.g. [wcj_wpml]) here."
9185
- msgstr ""
9186
-
9187
- #: includes/settings/wcj-settings-left-to-free-shipping.php:48
9188
- #: includes/settings/wcj-settings-left-to-free-shipping.php:87
9189
- #: includes/settings/wcj-settings-left-to-free-shipping.php:132
9190
- msgid "Position Order (Priority)"
9191
- msgstr ""
9192
-
9193
- #: includes/settings/wcj-settings-left-to-free-shipping.php:55
9194
- msgid "Info on Mini Cart"
9195
- msgstr ""
9196
-
9197
- #: includes/settings/wcj-settings-left-to-free-shipping.php:79
9198
- #: includes/settings/wcj-settings-mini-cart.php:51
9199
- msgid "Before mini cart"
9200
- msgstr ""
9201
-
9202
- #: includes/settings/wcj-settings-left-to-free-shipping.php:80
9203
- #: includes/settings/wcj-settings-mini-cart.php:52
9204
- msgid "Before buttons"
9205
- msgstr ""
9206
-
9207
- #: includes/settings/wcj-settings-left-to-free-shipping.php:81
9208
- #: includes/settings/wcj-settings-mini-cart.php:53
9209
- msgid "After mini cart"
9210
- msgstr ""
9211
-
9212
- #: includes/settings/wcj-settings-left-to-free-shipping.php:94
9213
- msgid "Info on Checkout"
9214
- msgstr ""
9215
-
9216
- #: includes/settings/wcj-settings-left-to-free-shipping.php:139
9217
- msgid "Message on Free Shipping Reached"
9218
- msgstr ""
9219
-
9220
- #: includes/settings/wcj-settings-left-to-free-shipping.php:141
9221
- msgid "Set empty to disable."
9222
- msgstr ""
9223
-
9224
- #: includes/settings/wcj-settings-mini-cart.php:14
9225
- msgid "Mini Cart Custom Info Blocks"
9226
- msgstr ""
9227
-
9228
- #: includes/settings/wcj-settings-more-button-labels.php:14
9229
- msgid "Place order (Order now) Button"
9230
- msgstr ""
9231
-
9232
- #: includes/settings/wcj-settings-more-button-labels.php:20
9233
- msgid "Leave blank for WooCommerce default."
9234
- msgstr ""
9235
-
9236
- #: includes/settings/wcj-settings-more-button-labels.php:21
9237
- msgid "Button on the checkout page."
9238
- msgstr ""
9239
-
9240
- #: includes/settings/wcj-settings-multicurrency.php:37
9241
- msgid "Multicurrency on per Product Basis"
9242
- msgstr ""
9243
-
9244
- #: includes/settings/wcj-settings-multicurrency.php:39
9245
- msgid "This will add meta boxes in product edit."
9246
- msgstr ""
9247
-
9248
- #: includes/settings/wcj-settings-multicurrency.php:45
9249
- #: includes/settings/wcj-settings-price-by-country.php:68
9250
- msgid "Revert Currency to Default on Checkout"
9251
- msgstr ""
9252
-
9253
- #: includes/settings/wcj-settings-multicurrency.php:52
9254
- #: includes/settings/wcj-settings-payment-gateways-fees.php:68
9255
- msgid "Rounding"
9256
- msgstr ""
9257
-
9258
- #: includes/settings/wcj-settings-multicurrency.php:53
9259
- msgid "If using exchange rates, choose rounding here."
9260
- msgstr ""
9261
-
9262
- #: includes/settings/wcj-settings-multicurrency.php:58
9263
- #: includes/settings/wcj-settings-price-by-country.php:81
9264
- msgid "No rounding"
9265
- msgstr ""
9266
-
9267
- #: includes/settings/wcj-settings-multicurrency.php:59
9268
- #: includes/settings/wcj-settings-price-by-country.php:82
9269
- msgid "Round"
9270
- msgstr ""
9271
-
9272
- #: includes/settings/wcj-settings-multicurrency.php:60
9273
- #: includes/settings/wcj-settings-price-by-country.php:84
9274
- msgid "Round up"
9275
- msgstr ""
9276
-
9277
- #: includes/settings/wcj-settings-multicurrency.php:61
9278
- #: includes/settings/wcj-settings-price-by-country.php:83
9279
- msgid "Round down"
9280
- msgstr ""
9281
-
9282
- #: includes/settings/wcj-settings-multicurrency.php:66
9283
- msgid "If rounding enabled, set precision here."
9284
- msgstr ""
9285
-
9286
- #: includes/settings/wcj-settings-multicurrency.php:73
9287
- msgid "Currency Switcher Template"
9288
- msgstr ""
9289
-
9290
- #: includes/settings/wcj-settings-multicurrency.php:74
9291
- #: includes/settings/wcj-settings-sku.php:74
9292
- msgid "Replaced values:"
9293
- msgstr ""
9294
-
9295
- #: includes/settings/wcj-settings-multicurrency.php:87
9296
- msgid ""
9297
- "One currency probably should be set to current (original) shop currency with "
9298
- "an exchange rate of 1."
9299
- msgstr ""
9300
-
9301
- #: includes/settings/wcj-settings-multicurrency.php:142
9302
- msgid "Role Defaults"
9303
- msgstr ""
9304
-
9305
- #: includes/settings/wcj-settings-multicurrency.php:144
9306
- #: includes/settings/wcj-settings-order-min-amount.php:97
9307
- #: includes/settings/wcj-settings-price-by-user-role.php:67
9308
- #, php-format
9309
- msgid ""
9310
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
9311
- "<a href=\"%s\">General</a> module."
9312
- msgstr ""
9313
-
9314
- #: includes/settings/wcj-settings-multicurrency.php:149
9315
- msgid "Roles"
9316
- msgstr ""
9317
-
9318
- #: includes/settings/wcj-settings-multicurrency.php:150
9319
- #: includes/settings/wcj-settings-wholesale-price.php:137
9320
- msgid "Save settings after you change this option. Leave blank to disable."
9321
- msgstr ""
9322
-
9323
- #: includes/settings/wcj-settings-multicurrency.php:173
9324
- msgid "No default currency"
9325
- msgstr ""
9326
-
9327
- #: includes/settings/wcj-settings-my-account.php:19
9328
- msgid "Add Order Status Actions"
9329
- msgstr ""
9330
-
9331
- #: includes/settings/wcj-settings-my-account.php:20
9332
- msgid "Let your customers change order status manually."
9333
- msgstr ""
9334
-
9335
- #: includes/settings/wcj-settings-offer-price.php:20
9336
- msgid ""
9337
- "Possible values: Enable for all products; Enable for all products with empty "
9338
- "price; Enable per product."
9339
- msgstr ""
9340
-
9341
- #: includes/settings/wcj-settings-offer-price.php:21
9342
- msgid ""
9343
- "If Enable per product is selected, this will add new meta box to each "
9344
- "product's edit page."
9345
- msgstr ""
9346
-
9347
- #: includes/settings/wcj-settings-offer-price.php:26
9348
- msgid "Enable for all products"
9349
- msgstr ""
9350
-
9351
- #: includes/settings/wcj-settings-offer-price.php:27
9352
- msgid "Enable for all products with empty price"
9353
- msgstr ""
9354
-
9355
- #: includes/settings/wcj-settings-offer-price.php:28
9356
- msgid "Enable per product"
9357
- msgstr ""
9358
-
9359
- #: includes/settings/wcj-settings-offer-price.php:38
9360
- msgid "Button Options"
9361
- msgstr ""
9362
-
9363
- #: includes/settings/wcj-settings-offer-price.php:50
9364
- msgid "CSS Class"
9365
- msgstr ""
9366
-
9367
- #: includes/settings/wcj-settings-offer-price.php:57
9368
- msgid "CSS Style"
9369
- msgstr ""
9370
-
9371
- #: includes/settings/wcj-settings-offer-price.php:64
9372
- msgid "Position On Single Product Page"
9373
- msgstr ""
9374
-
9375
- #: includes/settings/wcj-settings-offer-price.php:70
9376
- #: includes/settings/wcj-settings-product-custom-info.php:68
9377
- msgid "Before single product"
9378
- msgstr ""
9379
-
9380
- #: includes/settings/wcj-settings-offer-price.php:74
9381
- #: includes/settings/wcj-settings-product-custom-info.php:72
9382
- msgid "After single product"
9383
- msgstr ""
9384
-
9385
- #: includes/settings/wcj-settings-offer-price.php:78
9386
- #: includes/settings/wcj-settings-offer-price.php:98
9387
- msgid "Position Priority (i.e. Order)"
9388
- msgstr ""
9389
-
9390
- #: includes/settings/wcj-settings-offer-price.php:84
9391
- msgid "Position On Archive Pages"
9392
- msgstr ""
9393
-
9394
- #: includes/settings/wcj-settings-offer-price.php:85
9395
- msgid "Possible values: Do not add; Before product; After product."
9396
- msgstr ""
9397
-
9398
- #: includes/settings/wcj-settings-offer-price.php:109
9399
- msgid "Form and Notice Options"
9400
- msgstr ""
9401
-
9402
- #: includes/settings/wcj-settings-offer-price.php:114
9403
- msgid "Price Input"
9404
- msgstr ""
9405
-
9406
- #: includes/settings/wcj-settings-offer-price.php:123
9407
- #: includes/settings/wcj-settings-product-by-user.php:69
9408
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:24
9409
- msgid "Price Step"
9410
- msgstr ""
9411
-
9412
- #: includes/settings/wcj-settings-offer-price.php:124
9413
- #: includes/settings/wcj-settings-product-by-user.php:70
9414
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
9415
- msgid "Number of decimals"
9416
- msgstr ""
9417
-
9418
- #: includes/settings/wcj-settings-offer-price.php:131
9419
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:33
9420
- msgid "Minimal Price"
9421
- msgstr ""
9422
-
9423
- #: includes/settings/wcj-settings-offer-price.php:138
9424
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:42
9425
- msgid "Maximal Price"
9426
- msgstr ""
9427
-
9428
- #: includes/settings/wcj-settings-offer-price.php:146
9429
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:51
9430
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:24
9431
- msgid "Default Price"
9432
- msgstr ""
9433
-
9434
- #: includes/settings/wcj-settings-offer-price.php:154
9435
- msgid "Customer Email"
9436
- msgstr ""
9437
-
9438
- #: includes/settings/wcj-settings-offer-price.php:170
9439
- msgid "Customer Message"
9440
- msgstr ""
9441
-
9442
- #: includes/settings/wcj-settings-offer-price.php:178
9443
- msgid "Send a Copy to Customer Checkbox"
9444
- msgstr ""
9445
-
9446
- #: includes/settings/wcj-settings-offer-price.php:186
9447
- msgid "Form Header"
9448
- msgstr ""
9449
-
9450
- #: includes/settings/wcj-settings-offer-price.php:194
9451
- msgid "Form Button Label"
9452
- msgstr ""
9453
-
9454
- #: includes/settings/wcj-settings-offer-price.php:201
9455
- msgid "Form Footer"
9456
- msgstr ""
9457
-
9458
- #: includes/settings/wcj-settings-offer-price.php:208
9459
- msgid "Required HTML"
9460
- msgstr ""
9461
-
9462
- #: includes/settings/wcj-settings-offer-price.php:215
9463
- msgid "Customer Notice"
9464
- msgstr ""
9465
-
9466
- #: includes/settings/wcj-settings-offer-price.php:231
9467
- msgid "Email Recipient"
9468
- msgstr ""
9469
-
9470
- #: includes/settings/wcj-settings-offer-price.php:232
9471
- msgid "Can be comma separated list."
9472
- msgstr ""
9473
-
9474
- #: includes/settings/wcj-settings-offer-price.php:234
9475
- #, php-format
9476
- msgid "Use %s to send to administrator email: %s."
9477
- msgstr ""
9478
-
9479
- #: includes/settings/wcj-settings-offer-price.php:245
9480
- msgid "Email Subject"
9481
- msgstr ""
9482
-
9483
- #: includes/settings/wcj-settings-offer-price.php:252
9484
- msgid "Email Template"
9485
- msgstr ""
9486
-
9487
- #: includes/settings/wcj-settings-order-custom-statuses.php:20
9488
- msgid "Enable the module to add custom statuses to the list."
9489
- msgstr ""
9490
-
9491
- #: includes/settings/wcj-settings-order-custom-statuses.php:21
9492
- msgid ""
9493
- "You can change the default order status here. However payment gateways can "
9494
- "change this status immediately on order creation. E.g. BACS gateway will "
9495
- "change status to On-hold."
9496
- msgstr ""
9497
-
9498
- #: includes/settings/wcj-settings-order-custom-statuses.php:28
9499
- msgid "Add All Statuses to Admin Order Bulk Actions"
9500
- msgstr ""
9501
-
9502
- #: includes/settings/wcj-settings-order-custom-statuses.php:35
9503
- msgid "Add Custom Statuses to Admin Reports"
9504
- msgstr ""
9505
-
9506
- #: includes/settings/wcj-settings-order-custom-statuses.php:42
9507
- msgid "\"Processing\" and \"Complete\" Action Buttons"
9508
- msgstr ""
9509
-
9510
- #: includes/settings/wcj-settings-order-custom-statuses.php:43
9511
- msgid ""
9512
- "By default, when order has custom status, \"Processing\" and \"Complete\" "
9513
- "action buttons are hidden. You can enable it here. Possible values are: Show "
9514
- "both; Show \"Processing\" only; Show \"Complete\" only; Hide (default)."
9515
- msgstr ""
9516
-
9517
- #: includes/settings/wcj-settings-order-custom-statuses.php:48
9518
- msgid "Show both"
9519
- msgstr ""
9520
-
9521
- #: includes/settings/wcj-settings-order-custom-statuses.php:49
9522
- msgid "Show \"Processing\" only"
9523
- msgstr ""
9524
-
9525
- #: includes/settings/wcj-settings-order-custom-statuses.php:50
9526
- msgid "Show \"Complete\" only"
9527
- msgstr ""
9528
-
9529
- #: includes/settings/wcj-settings-order-custom-statuses.php:57
9530
- msgid "Add Custom Statuses to Admin Order List Action Buttons"
9531
- msgstr ""
9532
-
9533
- #: includes/settings/wcj-settings-order-custom-statuses.php:66
9534
- msgid "Enable Colors"
9535
- msgstr ""
9536
-
9537
- #: includes/settings/wcj-settings-order-min-amount.php:16
9538
- msgid "This section lets you set minimum order amount."
9539
- msgstr ""
9540
-
9541
- #: includes/settings/wcj-settings-order-min-amount.php:20
9542
- msgid "Amount"
9543
- msgstr ""
9544
-
9545
- #: includes/settings/wcj-settings-order-min-amount.php:21
9546
- msgid "Minimum order amount. Set to 0 to disable."
9547
- msgstr ""
9548
-
9549
- #: includes/settings/wcj-settings-order-min-amount.php:28
9550
- msgid "Exclude Shipping from Cart Total"
9551
- msgstr ""
9552
-
9553
- #: includes/settings/wcj-settings-order-min-amount.php:29
9554
- #: includes/settings/wcj-settings-payment-gateways-fees.php:99
9555
- msgid "Exclude"
9556
- msgstr ""
9557
-
9558
- #: includes/settings/wcj-settings-order-min-amount.php:35
9559
- msgid "Error message"
9560
- msgstr ""
9561
-
9562
- #: includes/settings/wcj-settings-order-min-amount.php:37
9563
- #: includes/settings/wcj-settings-order-min-amount.php:54
9564
- #, php-format
9565
- msgid ""
9566
- "Message to customer if order is below minimum amount. Default: You must have "
9567
- "an order with a minimum of %s to place your order, your current order total "
9568
- "is %s."
9569
- msgstr ""
9570
-
9571
- #: includes/settings/wcj-settings-order-min-amount.php:45
9572
- msgid "Add notice to cart page also"
9573
- msgstr ""
9574
-
9575
- #: includes/settings/wcj-settings-order-min-amount.php:52
9576
- msgid "Message on cart page"
9577
- msgstr ""
9578
-
9579
- #: includes/settings/wcj-settings-order-min-amount.php:62
9580
- msgid "Advanced"
9581
- msgstr ""
9582
-
9583
- #: includes/settings/wcj-settings-order-min-amount.php:63
9584
- msgid "Cart notice method"
9585
- msgstr ""
9586
-
9587
- #: includes/settings/wcj-settings-order-min-amount.php:68
9588
- msgid "Print notice"
9589
- msgstr ""
9590
-
9591
- #: includes/settings/wcj-settings-order-min-amount.php:69
9592
- msgid "Add notice"
9593
- msgstr ""
9594
-
9595
- #: includes/settings/wcj-settings-order-min-amount.php:73
9596
- msgid "Cart notice type"
9597
- msgstr ""
9598
-
9599
- #: includes/settings/wcj-settings-order-min-amount.php:78
9600
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:55
9601
- msgid "Notice"
9602
- msgstr ""
9603
-
9604
- #: includes/settings/wcj-settings-order-min-amount.php:79
9605
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:56
9606
- msgid "Error"
9607
- msgstr ""
9608
-
9609
- #: includes/settings/wcj-settings-order-min-amount.php:83
9610
- msgid ""
9611
- "Stop customer from seeing the Checkout page if minimum amount not reached"
9612
- msgstr ""
9613
-
9614
- #: includes/settings/wcj-settings-order-min-amount.php:84
9615
- msgid "Redirect back to Cart page"
9616
- msgstr ""
9617
-
9618
- #: includes/settings/wcj-settings-order-min-amount.php:94
9619
- msgid "Order Minimum Amount by User Role"
9620
- msgstr ""
9621
-
9622
- #: includes/settings/wcj-settings-order-numbers.php:16
9623
- msgid ""
9624
- "This section lets you enable sequential order numbering, set custom number "
9625
- "prefix, suffix and width."
9626
- msgstr ""
9627
-
9628
- #: includes/settings/wcj-settings-order-numbers.php:20
9629
- #: includes/settings/wcj-settings-sku.php:21
9630
- msgid "Number Generation"
9631
- msgstr ""
9632
-
9633
- #: includes/settings/wcj-settings-order-numbers.php:25
9634
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:22
9635
- #: includes/settings/wcj-settings-sku.php:27
9636
- msgid "Sequential"
9637
- msgstr ""
9638
-
9639
- #: includes/settings/wcj-settings-order-numbers.php:27
9640
- #: includes/settings/wcj-settings-sku.php:28
9641
- msgid "Pseudorandom - Hash (max 10 digits)"
9642
- msgstr ""
9643
-
9644
- #: includes/settings/wcj-settings-order-numbers.php:31
9645
- msgid "Next Order Number"
9646
- msgstr ""
9647
-
9648
- #: includes/settings/wcj-settings-order-numbers.php:32
9649
- msgid "Next new order will be given this number."
9650
- msgstr ""
9651
-
9652
- #: includes/settings/wcj-settings-order-numbers.php:32
9653
- msgid "Use Renumerate Orders tool for existing orders."
9654
- msgstr ""
9655
-
9656
- #: includes/settings/wcj-settings-order-numbers.php:33
9657
- msgid "This will be ignored if sequential order numbering is disabled."
9658
- msgstr ""
9659
-
9660
- #: includes/settings/wcj-settings-order-numbers.php:39
9661
- msgid "Order Number Custom Prefix"
9662
- msgstr ""
9663
-
9664
- #: includes/settings/wcj-settings-order-numbers.php:40
9665
- msgid ""
9666
- "Prefix before order number (optional). This will change the prefixes for all "
9667
- "existing orders."
9668
- msgstr ""
9669
-
9670
- #: includes/settings/wcj-settings-order-numbers.php:47
9671
- msgid "Order Number Date Prefix"
9672
- msgstr ""
9673
-
9674
- #: includes/settings/wcj-settings-order-numbers.php:49
9675
- msgid ""
9676
- "Date prefix before order number (optional). This will change the prefixes "
9677
- "for all existing orders. Value is passed directly to PHP `date` function, so "
9678
- "most of PHP date formats can be used. The only exception is using `\\` "
9679
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
9680
- "d- or mdy."
9681
- msgstr ""
9682
-
9683
- #: includes/settings/wcj-settings-order-numbers.php:57
9684
- msgid "Order Number Width"
9685
- msgstr ""
9686
-
9687
- #: includes/settings/wcj-settings-order-numbers.php:59
9688
- msgid ""
9689
- "Minimum width of number without prefix (zeros will be added to the left "
9690
- "side). This will change the minimum width of order number for all existing "
9691
- "orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
9692
- "Leave zero to disable."
9693
- msgstr ""
9694
-
9695
- #: includes/settings/wcj-settings-order-numbers.php:67
9696
- msgid "Order Number Custom Suffix"
9697
- msgstr ""
9698
-
9699
- #: includes/settings/wcj-settings-order-numbers.php:69
9700
- msgid ""
9701
- "Suffix after order number (optional). This will change the suffixes for all "
9702
- "existing orders."
9703
- msgstr ""
9704
-
9705
- #: includes/settings/wcj-settings-order-numbers.php:77
9706
- msgid "Order Number Date Suffix"
9707
- msgstr ""
9708
-
9709
- #: includes/settings/wcj-settings-order-numbers.php:79
9710
- msgid ""
9711
- "Date suffix after order number (optional). This will change the suffixes for "
9712
- "all existing orders. Value is passed directly to PHP `date` function, so "
9713
- "most of PHP date formats can be used. The only exception is using `\\` "
9714
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
9715
- "d- or mdy."
9716
- msgstr ""
9717
-
9718
- #: includes/settings/wcj-settings-order-numbers.php:87
9719
- msgid "Use MySQL Transaction"
9720
- msgstr ""
9721
-
9722
- #: includes/settings/wcj-settings-order-numbers.php:89
9723
- msgid ""
9724
- "This should be enabled if you have a lot of simultaneous orders in your shop "
9725
- "- to prevent duplicate order numbers (sequential)."
9726
- msgstr ""
9727
-
9728
- #: includes/settings/wcj-settings-order-numbers.php:95
9729
- msgid "Enable Order Tracking by Custom Number"
9730
- msgstr ""
9731
-
9732
- #: includes/settings/wcj-settings-order-numbers.php:102
9733
- msgid "Enable Order Admin Search by Custom Number"
9734
- msgstr ""
9735
-
9736
- #: includes/settings/wcj-settings-order-quantities.php:15
9737
- msgid "Minimum Quantity Options"
9738
- msgstr ""
9739
-
9740
- #: includes/settings/wcj-settings-order-quantities.php:20
9741
- msgid "Minimum Quantity"
9742
- msgstr ""
9743
-
9744
- #: includes/settings/wcj-settings-order-quantities.php:27
9745
- #: includes/settings/wcj-settings-order-quantities.php:76
9746
- msgid "Cart Total Quantity"
9747
- msgstr ""
9748
-
9749
- #: includes/settings/wcj-settings-order-quantities.php:28
9750
- #: includes/settings/wcj-settings-order-quantities.php:44
9751
- #: includes/settings/wcj-settings-order-quantities.php:77
9752
- #: includes/settings/wcj-settings-order-quantities.php:93
9753
- msgid "Set to zero to disable."
9754
- msgstr ""
9755
-
9756
- #: includes/settings/wcj-settings-order-quantities.php:35
9757
- #: includes/settings/wcj-settings-order-quantities.php:84
9758
- msgid "Message - Cart Total Quantity"
9759
- msgstr ""
9760
-
9761
- #: includes/settings/wcj-settings-order-quantities.php:43
9762
- #: includes/settings/wcj-settings-order-quantities.php:92
9763
- msgid "Per Item Quantity"
9764
- msgstr ""
9765
-
9766
- #: includes/settings/wcj-settings-order-quantities.php:52
9767
- #: includes/settings/wcj-settings-order-quantities.php:101
9768
- msgid "Message - Per Item Quantity"
9769
- msgstr ""
9770
-
9771
- #: includes/settings/wcj-settings-order-quantities.php:64
9772
- msgid "Maximum Quantity Options"
9773
- msgstr ""
9774
-
9775
- #: includes/settings/wcj-settings-order-quantities.php:69
9776
- msgid "Maximum Quantity"
9777
- msgstr ""
9778
-
9779
- #: includes/settings/wcj-settings-order-quantities.php:118
9780
- msgid "Enable Cart Notices"
9781
- msgstr ""
9782
-
9783
- #: includes/settings/wcj-settings-order-quantities.php:125
9784
- msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
9785
- msgstr ""
9786
-
9787
- #: includes/settings/wcj-settings-order-quantities.php:127
9788
- msgid "Will be redirected to cart page"
9789
- msgstr ""
9790
-
9791
- #: includes/settings/wcj-settings-orders.php:14
9792
- #: includes/settings/wcj-settings-orders.php:19
9793
- msgid "Admin Order Currency"
9794
- msgstr ""
9795
-
9796
- #: includes/settings/wcj-settings-orders.php:21
9797
- msgid ""
9798
- "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
9799
- "page."
9800
- msgstr ""
9801
-
9802
- #: includes/settings/wcj-settings-orders.php:27
9803
- msgid "Admin Order Currency Method"
9804
- msgstr ""
9805
-
9806
- #: includes/settings/wcj-settings-orders.php:28
9807
- msgid ""
9808
- "Choose if you want changed order currency to be saved directly to DB, or if "
9809
- "you want to use filter. When using <em>filter</em> method, changes will be "
9810
- "active only when \"Admin Order Currency\" section is enabled. When using "
9811
- "<em>directly to DB</em> method, changes will be permanent, that is even if "
9812
- "Booster plugin is removed."
9813
- msgstr ""
9814
-
9815
- #: includes/settings/wcj-settings-orders.php:34
9816
- msgid "Directly to DB"
9817
- msgstr ""
9818
-
9819
- #: includes/settings/wcj-settings-orders.php:42
9820
- msgid "Orders Auto-Complete"
9821
- msgstr ""
9822
-
9823
- #: includes/settings/wcj-settings-orders.php:44
9824
- msgid "This section lets you enable orders auto-complete function."
9825
- msgstr ""
9826
-
9827
- #: includes/settings/wcj-settings-orders.php:48
9828
- msgid "Auto-complete all WooCommerce orders"
9829
- msgstr ""
9830
-
9831
- #: includes/settings/wcj-settings-orders.php:50
9832
- msgid ""
9833
- "E.g. if you sell digital products then you are not shipping anything and you "
9834
- "may want auto-complete all your orders."
9835
- msgstr ""
9836
-
9837
- #: includes/settings/wcj-settings-orders.php:60
9838
- #: includes/settings/wcj-settings-purchase-data.php:155
9839
- msgid "Admin Orders List Custom Columns"
9840
- msgstr ""
9841
-
9842
- #: includes/settings/wcj-settings-orders.php:62
9843
- msgid "This section lets you add custom columns to WooCommerce orders list."
9844
- msgstr ""
9845
-
9846
- #: includes/settings/wcj-settings-orders.php:67
9847
- #: includes/settings/wcj-settings-orders.php:74
9848
- msgid "Add column and filtering"
9849
- msgstr ""
9850
-
9851
- #: includes/settings/wcj-settings-orders.php:80
9852
- #: includes/settings/wcj-settings-product-listings.php:186
9853
- msgid "Custom Columns Total Number"
9854
- msgstr ""
9855
-
9856
- #: includes/settings/wcj-settings-orders.php:95
9857
- #: includes/settings/wcj-settings-product-listings.php:202
9858
- msgid "Custom Column"
9859
- msgstr ""
9860
-
9861
- #: includes/settings/wcj-settings-orders.php:97
9862
- #: includes/settings/wcj-settings-product-listings.php:204
9863
- msgid "Key:"
9864
- msgstr ""
9865
-
9866
- #: includes/settings/wcj-settings-orders.php:111
9867
- #: includes/settings/wcj-settings-product-listings.php:218
9868
- msgid "You can use shortcodes and/or HTML here."
9869
- msgstr ""
9870
-
9871
- #: includes/settings/wcj-settings-orders.php:118
9872
- msgid "Sortable"
9873
- msgstr ""
9874
-
9875
- #: includes/settings/wcj-settings-orders.php:124
9876
- msgid "By meta (as text)"
9877
- msgstr ""
9878
-
9879
- #: includes/settings/wcj-settings-orders.php:125
9880
- msgid "By meta (as numbers)"
9881
- msgstr ""
9882
-
9883
- #: includes/settings/wcj-settings-orders.php:130
9884
- msgid "Key (if sortable)"
9885
- msgstr ""
9886
-
9887
- #: includes/settings/wcj-settings-orders.php:144
9888
- msgid "Admin Orders List Multiple Status"
9889
- msgstr ""
9890
-
9891
- #: includes/settings/wcj-settings-orders.php:149
9892
- msgid "Multiple Status Filtering"
9893
- msgstr ""
9894
-
9895
- #: includes/settings/wcj-settings-orders.php:155
9896
- msgid "Add as multiple select"
9897
- msgstr ""
9898
-
9899
- #: includes/settings/wcj-settings-orders.php:156
9900
- msgid "Add as checkboxes"
9901
- msgstr ""
9902
-
9903
- #: includes/settings/wcj-settings-orders.php:160
9904
- msgid "Hide Default Statuses Menu"
9905
- msgstr ""
9906
-
9907
- #: includes/settings/wcj-settings-orders.php:167
9908
- msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
9909
- msgstr ""
9910
-
9911
- #: includes/settings/wcj-settings-orders.php:178
9912
- msgid "Admin Orders List Columns Order"
9913
- msgstr ""
9914
-
9915
- #: includes/settings/wcj-settings-orders.php:183
9916
- msgid "Columns Order"
9917
- msgstr ""
9918
-
9919
- #: includes/settings/wcj-settings-orders.php:191
9920
- #: includes/settings/wcj-settings-product-listings.php:245
9921
- msgid "Default columns order"
9922
- msgstr ""
9923
-
9924
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:16
9925
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
9926
- #: includes/settings/wcj-settings-shipping-by-user-role.php:16
9927
- msgid "Leave empty to disable."
9928
- msgstr ""
9929
-
9930
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:39
9931
- msgid "Include Countries"
9932
- msgstr ""
9933
-
9934
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:51
9935
- msgid "Exclude Countries"
9936
- msgstr ""
9937
-
9938
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:63
9939
- msgid "Include States (Base Country)"
9940
- msgstr ""
9941
-
9942
- #: includes/settings/wcj-settings-payment-gateways-by-country.php:75
9943
- msgid "Exclude States (Base Country)"
9944
- msgstr ""
9945
-
9946
- #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:23
9947
- msgid ""
9948
- "If payment gateway is only available for certain methods, set it up here. "
9949
- "Leave blank to enable for all methods."
9950
- msgstr ""
9951
-
9952
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:17
9953
- #: includes/settings/wcj-settings-product-by-user.php:79
9954
- #: includes/settings/wcj-settings-shipping-by-user-role.php:18
9955
- #, php-format
9956
- msgid ""
9957
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
9958
- "<a href=\"%s\">General</a> module"
9959
- msgstr ""
9960
-
9961
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:40
9962
- #: includes/settings/wcj-settings-shipping-by-user-role.php:40
9963
- msgid "Include User Roles"
9964
- msgstr ""
9965
-
9966
- #: includes/settings/wcj-settings-payment-gateways-by-user-role.php:51
9967
- #: includes/settings/wcj-settings-shipping-by-user-role.php:51
9968
- msgid "Exclude User Roles"
9969
- msgstr ""
9970
-
9971
- #: includes/settings/wcj-settings-payment-gateways-currency.php:14
9972
- msgid "Payment Gateways Currency Options"
9973
- msgstr ""
9974
-
9975
- #: includes/settings/wcj-settings-payment-gateways-currency.php:16
9976
- msgid "This section lets you set different currency for each payment gateway."
9977
- msgstr ""
9978
-
9979
- #: includes/settings/wcj-settings-payment-gateways-currency.php:44
9980
- msgid "No changes"
9981
- msgstr ""
9982
-
9983
- #: includes/settings/wcj-settings-payment-gateways-fees.php:23
9984
- msgid "Fee (or Discount) Title"
9985
- msgstr ""
9986
-
9987
- #: includes/settings/wcj-settings-payment-gateways-fees.php:24
9988
- msgid "Fee (or discount) title to show to customer."
9989
- msgstr ""
9990
-
9991
- #: includes/settings/wcj-settings-payment-gateways-fees.php:25
9992
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:34
9993
- #: includes/settings/wcj-settings-purchase-data.php:67
9994
- msgid "Leave blank to disable"
9995
- msgstr ""
9996
-
9997
- #: includes/settings/wcj-settings-payment-gateways-fees.php:31
9998
- msgid "Fee (or Discount) Type"
9999
- msgstr ""
10000
-
10001
- #: includes/settings/wcj-settings-payment-gateways-fees.php:32
10002
- msgid "Percent or fixed value."
10003
- msgstr ""
10004
-
10005
- #: includes/settings/wcj-settings-payment-gateways-fees.php:42
10006
- msgid "Fee (or Discount) Value"
10007
- msgstr ""
10008
-
10009
- #: includes/settings/wcj-settings-payment-gateways-fees.php:43
10010
- msgid "The value. For discount enter a negative number."
10011
- msgstr ""
10012
-
10013
- #: includes/settings/wcj-settings-payment-gateways-fees.php:50
10014
- msgid "Minimum Cart Amount"
10015
- msgstr ""
10016
-
10017
- #: includes/settings/wcj-settings-payment-gateways-fees.php:51
10018
- msgid "Minimum cart amount for adding the fee (or discount)."
10019
- msgstr ""
10020
-
10021
- #: includes/settings/wcj-settings-payment-gateways-fees.php:52
10022
- #: includes/settings/wcj-settings-payment-gateways-fees.php:61
10023
- msgid "Set 0 to disable"
10024
- msgstr ""
10025
-
10026
- #: includes/settings/wcj-settings-payment-gateways-fees.php:59
10027
- msgid "Maximum Cart Amount"
10028
- msgstr ""
10029
-
10030
- #: includes/settings/wcj-settings-payment-gateways-fees.php:60
10031
- msgid "Maximum cart amount for adding the fee (or discount)."
10032
- msgstr ""
10033
-
10034
- #: includes/settings/wcj-settings-payment-gateways-fees.php:69
10035
- msgid "Round the fee (or discount) value before adding to the cart"
10036
- msgstr ""
10037
-
10038
- #: includes/settings/wcj-settings-payment-gateways-fees.php:76
10039
- msgid "If Rounding is enabled, set precision here."
10040
- msgstr ""
10041
-
10042
- #: includes/settings/wcj-settings-payment-gateways-fees.php:83
10043
- msgid "Taxing"
10044
- msgstr ""
10045
-
10046
- #: includes/settings/wcj-settings-payment-gateways-fees.php:84
10047
- msgid "Taxable"
10048
- msgstr ""
10049
-
10050
- #: includes/settings/wcj-settings-payment-gateways-fees.php:91
10051
- msgid "If Taxing is enabled, set tax class here."
10052
- msgstr ""
10053
-
10054
- #: includes/settings/wcj-settings-payment-gateways-fees.php:95
10055
- msgid "Standard Rate"
10056
- msgstr ""
10057
-
10058
- #: includes/settings/wcj-settings-payment-gateways-fees.php:98
10059
- msgid "Exclude Shipping when Calculating Total Cart Amount"
10060
- msgstr ""
10061
-
10062
- #: includes/settings/wcj-settings-payment-gateways-fees.php:100
10063
- msgid ""
10064
- "This affects \"Percent\" type fees and \"Minimum/Maximum Cart Amount\" "
10065
- "options."
10066
- msgstr ""
10067
-
10068
- #: includes/settings/wcj-settings-payment-gateways-icons.php:35
10069
- msgid "Leave blank to set WooCommerce default value"
10070
- msgstr ""
10071
-
10072
- #: includes/settings/wcj-settings-payment-gateways-icons.php:46
10073
- msgid "Remove Icon"
10074
- msgstr ""
10075
-
10076
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:20
10077
- msgid "Exclude Shipping"
10078
- msgstr ""
10079
-
10080
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:21
10081
- msgid ""
10082
- "Exclude shipping from total cart sum, when comparing with min/max amounts."
10083
- msgstr ""
10084
-
10085
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:27
10086
- msgid "Notices on Checkout"
10087
- msgstr ""
10088
-
10089
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:28
10090
- msgid "Enable Notices"
10091
- msgstr ""
10092
-
10093
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:34
10094
- msgid "Notice Template (Minimum Amount)"
10095
- msgstr ""
10096
-
10097
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:35
10098
- msgid "Replaced values: %gateway_title%, %min_amount%."
10099
- msgstr ""
10100
-
10101
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:42
10102
- msgid "Notice Template (Maximum Amount)"
10103
- msgstr ""
10104
-
10105
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:43
10106
- msgid "Replaced values: %gateway_title%, %max_amount%."
10107
- msgstr ""
10108
-
10109
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:50
10110
- msgid "Notice Styling"
10111
- msgstr ""
10112
-
10113
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:57
10114
- msgid "Success"
10115
- msgstr ""
10116
-
10117
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:67
10118
- msgid "Leave zero to disable."
10119
- msgstr ""
10120
-
10121
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:88
10122
- msgid "Min"
10123
- msgstr ""
10124
-
10125
- #: includes/settings/wcj-settings-payment-gateways-min-max.php:97
10126
- msgid "Max"
10127
- msgstr ""
10128
-
10129
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:26
10130
- #: includes/settings/wcj-settings-price-labels.php:116
10131
- msgid "Product Categories - Include"
10132
- msgstr ""
10133
-
10134
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:27
10135
- msgid ""
10136
- "Show gateway only if there is product of selected category in cart. Leave "
10137
- "blank to disable the option."
10138
- msgstr ""
10139
-
10140
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:37
10141
- #: includes/settings/wcj-settings-price-labels.php:126
10142
- msgid "Product Categories - Exclude"
10143
- msgstr ""
10144
-
10145
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:38
10146
- msgid ""
10147
- "Hide gateway if there is product of selected category in cart. Leave blank "
10148
- "to disable the option."
10149
- msgstr ""
10150
-
10151
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:48
10152
- #: includes/settings/wcj-settings-price-labels.php:96
10153
- msgid "Products - Include"
10154
- msgstr ""
10155
-
10156
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:49
10157
- msgid ""
10158
- "Show gateway only if there is selected products in cart. Leave blank to "
10159
- "disable the option."
10160
- msgstr ""
10161
-
10162
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:60
10163
- #: includes/settings/wcj-settings-price-labels.php:106
10164
- msgid "Products - Exclude"
10165
- msgstr ""
10166
-
10167
- #: includes/settings/wcj-settings-payment-gateways-per-category.php:61
10168
- msgid ""
10169
- "Hide gateway if there is selected products in cart. Leave blank to disable "
10170
- "the option."
10171
- msgstr ""
10172
-
10173
- #: includes/settings/wcj-settings-payment-gateways.php:13
10174
- msgid "WooCommerce > Settings > Checkout"
10175
- msgstr ""
10176
-
10177
- #: includes/settings/wcj-settings-payment-gateways.php:16
10178
- msgid "Custom Payment Gateways Options"
10179
- msgstr ""
10180
-
10181
- #: includes/settings/wcj-settings-payment-gateways.php:19
10182
- msgid "This section lets you set number of custom payment gateways to add."
10183
- msgstr ""
10184
-
10185
- #: includes/settings/wcj-settings-payment-gateways.php:20
10186
- #, php-format
10187
- msgid "After setting the number, visit %s to set each gateway options."
10188
- msgstr ""
10189
-
10190
- #: includes/settings/wcj-settings-payment-gateways.php:23
10191
- msgid "Number of Gateways"
10192
- msgstr ""
10193
-
10194
- #: includes/settings/wcj-settings-payment-gateways.php:25
10195
- msgid ""
10196
- "Number of custom payments gateways to be added. All settings for each new "
10197
- "gateway are in WooCommerce > Settings > Checkout."
10198
- msgstr ""
10199
-
10200
- #: includes/settings/wcj-settings-payment-gateways.php:36
10201
- msgid "Admin Title Custom Gateway"
10202
- msgstr ""
10203
-
10204
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:23
10205
- msgid "Admin's \"Orders\" Page"
10206
- msgstr ""
10207
-
10208
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:24
10209
- msgid "Add Column"
10210
- msgstr ""
10211
-
10212
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:31
10213
- msgid "Column Title"
10214
- msgstr ""
10215
-
10216
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:53
10217
- msgid "Add View Button"
10218
- msgstr ""
10219
-
10220
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:59
10221
- msgid "Add Create Button"
10222
- msgstr ""
10223
-
10224
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:65
10225
- msgid "Add Delete Button"
10226
- msgstr ""
10227
-
10228
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:71
10229
- msgid "Create Button Requires Confirmation"
10230
- msgstr ""
10231
-
10232
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:77
10233
- msgid "Delete Button Requires Confirmation"
10234
- msgstr ""
10235
-
10236
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:83
10237
- msgid "Customer's \"My Account\" Page"
10238
- msgstr ""
10239
-
10240
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:84
10241
- msgid "Add link"
10242
- msgstr ""
10243
-
10244
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:91
10245
- msgid "Link Text"
10246
- msgstr ""
10247
-
10248
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:97
10249
- msgid "Enable \"Save as\""
10250
- msgstr ""
10251
-
10252
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:99
10253
- msgid "Enable \"save as\" pdf instead of view pdf in browser"
10254
- msgstr ""
10255
-
10256
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:105
10257
- msgid "PDF File Name"
10258
- msgstr ""
10259
-
10260
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:106
10261
- msgid ""
10262
- "Enter file name for PDF documents. You can use shortcodes here, e.g. [wcj_"
10263
- msgstr ""
10264
-
10265
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:112
10266
- msgid "Allowed User Roles"
10267
- msgstr ""
10268
-
10269
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:113
10270
- msgid "If set to empty - Administrator role will be used."
10271
- msgstr ""
10272
-
10273
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:128
10274
- msgid "General Display Options"
10275
- msgstr ""
10276
-
10277
- #: includes/settings/wcj-settings-pdf-invoicing-display.php:133
10278
- msgid "Add PDF Invoices Meta Box to Admin Edit Order Page"
10279
- msgstr ""
10280
-
10281
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:17
10282
- msgid "Admin - New Order"
10283
- msgstr ""
10284
-
10285
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:18
10286
- msgid "Admin - Cancelled Order"
10287
- msgstr ""
10288
-
10289
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:19
10290
- msgid "Admin - Failed Order"
10291
- msgstr ""
10292
-
10293
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:20
10294
- msgid "Customer - Processing Order"
10295
- msgstr ""
10296
-
10297
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:21
10298
- msgid "Customer - On-Hold Order"
10299
- msgstr ""
10300
-
10301
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:22
10302
- msgid "Customer - Completed Order"
10303
- msgstr ""
10304
-
10305
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:23
10306
- msgid "Customer - Invoice"
10307
- msgstr ""
10308
-
10309
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:24
10310
- msgid "Customer - Refunded Order"
10311
- msgstr ""
10312
-
10313
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:25
10314
- msgid "Customer - Note"
10315
- msgstr ""
10316
-
10317
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:26
10318
- msgid "Customer - New Account"
10319
- msgstr ""
10320
-
10321
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:27
10322
- msgid "Customer - Reset Password"
10323
- msgstr ""
10324
-
10325
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:45
10326
- msgid "Attach PDF to emails"
10327
- msgstr ""
10328
-
10329
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:52
10330
- msgid "Select some emails"
10331
- msgstr ""
10332
-
10333
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:55
10334
- msgid "Payment gateways to include"
10335
- msgstr ""
10336
-
10337
- #: includes/settings/wcj-settings-pdf-invoicing-emails.php:62
10338
- msgid "Select some gateways. Leave blank to include all."
10339
- msgstr ""
10340
-
10341
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:22
10342
- msgid "Enable Footer"
10343
- msgstr ""
10344
-
10345
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:28
10346
- msgid "Footer Text"
10347
- msgstr ""
10348
-
10349
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:34
10350
- #, php-format
10351
- msgid ""
10352
- "You can use HTML here, as well as any WordPress shortcodes. There are two "
10353
- "more predefined values you can use: %s."
10354
- msgstr ""
10355
-
10356
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:39
10357
- msgid "Footer Text Color"
10358
- msgstr ""
10359
-
10360
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:46
10361
- msgid "Footer Line Color"
10362
- msgstr ""
10363
-
10364
- #: includes/settings/wcj-settings-pdf-invoicing-footer.php:53
10365
- msgid "Footer Margin"
10366
- msgstr ""
10367
-
10368
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:22
10369
- msgid "Enable Header"
10370
- msgstr ""
10371
-
10372
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:28
10373
- msgid "Header Image"
10374
- msgstr ""
10375
-
10376
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:33
10377
- msgid ""
10378
- "Enter a URL to an image you want to show in the invoice's header. Upload "
10379
- "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
10380
- msgstr ""
10381
-
10382
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:37
10383
- msgid "Header Image Width in mm"
10384
- msgstr ""
10385
-
10386
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:43
10387
- msgid "Header Title"
10388
- msgstr ""
10389
-
10390
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:49
10391
- msgid "Header Text"
10392
- msgstr ""
10393
-
10394
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:51
10395
- msgid "Company Name"
10396
- msgstr ""
10397
-
10398
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:55
10399
- msgid "Header Text Color"
10400
- msgstr ""
10401
-
10402
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:62
10403
- msgid "Header Line Color"
10404
- msgstr ""
10405
-
10406
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:69
10407
- msgid "Header Margin"
10408
- msgstr ""
10409
-
10410
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:82
10411
- msgid "PDF Invoicing Header General Options"
10412
- msgstr ""
10413
-
10414
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:87
10415
- msgid "Default Images Directory"
10416
- msgstr ""
10417
-
10418
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:88
10419
- msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
10420
- msgstr ""
10421
-
10422
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:89
10423
- msgid "Try changing this if you have issues displaying image in header."
10424
- msgstr ""
10425
-
10426
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:94
10427
- msgid "Empty"
10428
- msgstr ""
10429
-
10430
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:95
10431
- msgid "TCPDF Default"
10432
- msgstr ""
10433
-
10434
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:96
10435
- msgid "ABSPATH"
10436
- msgstr ""
10437
-
10438
- #: includes/settings/wcj-settings-pdf-invoicing-header.php:97
10439
- msgid "DOCUMENT_ROOT"
10440
- msgstr ""
10441
-
10442
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:29
10443
- msgid "Counter"
10444
- msgstr ""
10445
-
10446
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:35
10447
- msgid "Counter Width"
10448
- msgstr ""
10449
-
10450
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:41
10451
- #: includes/settings/wcj-settings-sku.php:55
10452
- #: includes/settings/wcj-settings-sku.php:112
10453
- msgid "Prefix"
10454
- msgstr ""
10455
-
10456
- #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:48
10457
- #: includes/settings/wcj-settings-sku.php:67
10458
- #: includes/settings/wcj-settings-sku.php:121
10459
- msgid "Suffix"
10460
- msgstr ""
10461
-
10462
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:22
10463
- msgid "Page Orientation"
10464
- msgstr ""
10465
-
10466
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:27
10467
- msgid "Portrait"
10468
- msgstr ""
10469
-
10470
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:28
10471
- msgid "Landscape"
10472
- msgstr ""
10473
-
10474
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:32
10475
- msgid "Page Format"
10476
- msgstr ""
10477
-
10478
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:39
10479
- msgid "Margin Left"
10480
- msgstr ""
10481
-
10482
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:45
10483
- msgid "Margin Right"
10484
- msgstr ""
10485
-
10486
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:51
10487
- msgid "Margin Top"
10488
- msgstr ""
10489
-
10490
- #: includes/settings/wcj-settings-pdf-invoicing-page.php:57
10491
- msgid "Margin Bottom"
10492
- msgstr ""
10493
-
10494
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:28
10495
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:46
10496
- msgid "Font Family"
10497
- msgstr ""
10498
-
10499
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:65
10500
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:24
10501
- msgid "CSS"
10502
- msgstr ""
10503
-
10504
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:75
10505
- msgid "Font Size"
10506
- msgstr ""
10507
-
10508
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:81
10509
- msgid "Make Font Shadowed"
10510
- msgstr ""
10511
-
10512
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:93
10513
- msgid "Fonts download is disabled."
10514
- msgstr ""
10515
-
10516
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:96
10517
- msgid "Fonts are up to date."
10518
- msgstr ""
10519
-
10520
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:97
10521
- #, php-format
10522
- msgid "Latest successful download or version check was on %s."
10523
- msgstr ""
10524
-
10525
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:101
10526
- msgid ""
10527
- "Fonts are NOT up to date. Please try downloading by pressing the button "
10528
- "below."
10529
- msgstr ""
10530
-
10531
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:104
10532
- #, php-format
10533
- msgid "Latest successful downloaded version is %s."
10534
- msgstr ""
10535
-
10536
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:110
10537
- #, php-format
10538
- msgid "Latest download executed on %s."
10539
- msgstr ""
10540
-
10541
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:119
10542
- msgid "Fonts Manager"
10543
- msgstr ""
10544
-
10545
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:128
10546
- msgid "Re-download"
10547
- msgstr ""
10548
-
10549
- #: includes/settings/wcj-settings-pdf-invoicing-styling.php:133
10550
- msgid "Disable Fonts Download"
10551
- msgstr ""
10552
-
10553
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:36
10554
- msgid "HTML Template"
10555
- msgstr ""
10556
-
10557
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:43
10558
- msgid "Save all templates"
10559
- msgstr ""
10560
-
10561
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:55
10562
- msgid "Available Shortcodes"
10563
- msgstr ""
10564
-
10565
- #: includes/settings/wcj-settings-pdf-invoicing-templates.php:58
10566
- #, php-format
10567
- msgid "For the list of available shortcodes, please visit %s."
10568
- msgstr ""
10569
-
10570
- #: includes/settings/wcj-settings-pdf-invoicing.php:14
10571
- msgid "PDF Invoicing General Options"
10572
- msgstr ""
10573
-
10574
- #: includes/settings/wcj-settings-pdf-invoicing.php:22
10575
- msgid "Create on New Order"
10576
- msgstr ""
10577
-
10578
- #: includes/settings/wcj-settings-pdf-invoicing.php:25
10579
- msgid "Create on Order Status"
10580
- msgstr ""
10581
-
10582
- #: includes/settings/wcj-settings-pdf-invoicing.php:27
10583
- msgid "Manual Only"
10584
- msgstr ""
10585
-
10586
- #: includes/settings/wcj-settings-pdf-invoicing.php:34
10587
- msgid "Number of Custom Documents"
10588
- msgstr ""
10589
-
10590
- #: includes/settings/wcj-settings-pdf-invoicing.php:35
10591
- msgid "Save changes after setting this number."
10592
- msgstr ""
10593
-
10594
- #: includes/settings/wcj-settings-pdf-invoicing.php:58
10595
- msgid "Do not create if order total equals zero"
10596
- msgstr ""
10597
-
10598
- #: includes/settings/wcj-settings-pdf-invoicing.php:65
10599
- msgid "Hide Disabled Docs Settings"
10600
- msgstr ""
10601
-
10602
- #: includes/settings/wcj-settings-price-by-country.php:15
10603
- msgid "Price by Country Options"
10604
- msgstr ""
10605
-
10606
- #: includes/settings/wcj-settings-price-by-country.php:17
10607
- msgid ""
10608
- "Change product's price and currency by customer's country. Customer's "
10609
- "country is detected automatically by IP, or selected by customer manually."
10610
- msgstr ""
10611
-
10612
- #: includes/settings/wcj-settings-price-by-country.php:21
10613
- msgid "Customer Country Detection Method"
10614
- msgstr ""
10615
-
10616
- #: includes/settings/wcj-settings-price-by-country.php:23
10617
- msgid ""
10618
- "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
10619
- "shortcode to display country selection list on frontend."
10620
- msgstr ""
10621
-
10622
- #: includes/settings/wcj-settings-price-by-country.php:27
10623
- msgid "by IP"
10624
- msgstr ""
10625
-
10626
- #: includes/settings/wcj-settings-price-by-country.php:28
10627
- msgid "by IP, then by user selection"
10628
- msgstr ""
10629
-
10630
- #: includes/settings/wcj-settings-price-by-country.php:29
10631
- msgid "by user selection"
10632
- msgstr ""
10633
-
10634
- #: includes/settings/wcj-settings-price-by-country.php:46
10635
- msgid "Override Country Options"
10636
- msgstr ""
10637
-
10638
- #: includes/settings/wcj-settings-price-by-country.php:51
10639
- msgid "No Override"
10640
- msgstr ""
10641
-
10642
- #: includes/settings/wcj-settings-price-by-country.php:52
10643
- msgid "Override Country with Customer's Checkout Billing Country"
10644
- msgstr ""
10645
-
10646
- #: includes/settings/wcj-settings-price-by-country.php:53
10647
- msgid "Override Country with Customer's Checkout Shipping Country"
10648
- msgstr ""
10649
-
10650
- #: includes/settings/wcj-settings-price-by-country.php:57
10651
- msgid "Override Scope"
10652
- msgstr ""
10653
-
10654
- #: includes/settings/wcj-settings-price-by-country.php:62
10655
- msgid "All site"
10656
- msgstr ""
10657
-
10658
- #: includes/settings/wcj-settings-price-by-country.php:64
10659
- msgid "Checkout only"
10660
- msgstr ""
10661
-
10662
- #: includes/settings/wcj-settings-price-by-country.php:75
10663
- msgid "Price Rounding"
10664
- msgstr ""
10665
-
10666
- #: includes/settings/wcj-settings-price-by-country.php:76
10667
- msgid "If you choose to multiply price, set rounding options here."
10668
- msgstr ""
10669
-
10670
- #: includes/settings/wcj-settings-price-by-country.php:88
10671
- msgid "Make Pretty Price"
10672
- msgstr ""
10673
-
10674
- #: includes/settings/wcj-settings-price-by-country.php:90
10675
- msgid ""
10676
- "If enabled, this will be applied if exchange rates are used. Final converted "
10677
- "price will be rounded, then decreased by smallest possible value. For "
10678
- "example: $9,75 -> $10,00 -> $9,99. Please note that as smallest possible "
10679
- "value is calculated from shop's \"Precision\" option, this option must be "
10680
- "above zero."
10681
- msgstr ""
10682
-
10683
- #: includes/settings/wcj-settings-price-by-country.php:96
10684
- msgid "Discount Min Amount Multiplier"
10685
- msgstr ""
10686
-
10687
- #: includes/settings/wcj-settings-price-by-country.php:97
10688
- msgid ""
10689
- "If \"Make Pretty Price\" is enabled, here you can set by how many smallest "
10690
- "possible values (e.g. cents) final price should be decreased."
10691
- msgstr ""
10692
-
10693
- #: includes/settings/wcj-settings-price-by-country.php:104
10694
- msgid "Price by Country on per Product Basis"
10695
- msgstr ""
10696
-
10697
- #: includes/settings/wcj-settings-price-by-country.php:106
10698
- msgid "This will add product data fields in product edit."
10699
- msgstr ""
10700
-
10701
- #: includes/settings/wcj-settings-price-by-country.php:112
10702
- msgid "Price Filter Widget and Sorting by Price Support"
10703
- msgstr ""
10704
-
10705
- #: includes/settings/wcj-settings-price-by-country.php:115
10706
- msgid "Recalculate price filter widget and sorting by price product prices"
10707
- msgstr ""
10708
-
10709
- #: includes/settings/wcj-settings-price-by-country.php:121
10710
- msgid "Add Countries Flags Images to Select Drop-Down Box"
10711
- msgstr ""
10712
-
10713
- #: includes/settings/wcj-settings-price-by-country.php:123
10714
- msgid ""
10715
- "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: "
10716
- "Country Switcher\" widget, this will add country flags to these select boxes."
10717
- msgstr ""
10718
-
10719
- #: includes/settings/wcj-settings-price-by-country.php:129
10720
- #: includes/settings/wcj-settings-price-by-user-role.php:54
10721
- msgid "Search Engine Bots"
10722
- msgstr ""
10723
-
10724
- #: includes/settings/wcj-settings-price-by-country.php:130
10725
- msgid "Disable Price by Country for Bots"
10726
- msgstr ""
10727
-
10728
- #: includes/settings/wcj-settings-price-by-country.php:140
10729
- msgid "Country Groups"
10730
- msgstr ""
10731
-
10732
- #: includes/settings/wcj-settings-price-by-country.php:145
10733
- msgid "Countries Selection"
10734
- msgstr ""
10735
-
10736
- #: includes/settings/wcj-settings-price-by-country.php:146
10737
- msgid "Choose how do you want to enter countries groups in admin."
10738
- msgstr ""
10739
-
10740
- #: includes/settings/wcj-settings-price-by-country.php:151
10741
- msgid "Comma separated list"
10742
- msgstr ""
10743
-
10744
- #: includes/settings/wcj-settings-price-by-country.php:152
10745
- msgid "Multiselect"
10746
- msgstr ""
10747
-
10748
- #: includes/settings/wcj-settings-price-by-country.php:153
10749
- msgid "Chosen select"
10750
- msgstr ""
10751
-
10752
- #: includes/settings/wcj-settings-price-by-country.php:157
10753
- msgid "Autogenerate Groups"
10754
- msgstr ""
10755
-
10756
- #: includes/settings/wcj-settings-price-by-country.php:162
10757
- msgid "Currencies supported in both PayPal and Yahoo Exchange Rates:"
10758
- msgstr ""
10759
-
10760
- #: includes/settings/wcj-settings-price-by-country.php:167
10761
- msgid "Currencies supported in Yahoo Exchange Rates:"
10762
- msgstr ""
10763
-
10764
- #: includes/settings/wcj-settings-price-by-country.php:172
10765
- msgid "All Countries and Currencies:"
10766
- msgstr ""
10767
-
10768
- #: includes/settings/wcj-settings-price-by-country.php:178
10769
- msgid "Groups Number"
10770
- msgstr ""
10771
-
10772
- #: includes/settings/wcj-settings-price-by-country.php:194
10773
- msgid ""
10774
- "Countries. List of comma separated country codes.<br>For country codes and "
10775
- "predifined sets visit <a href=\"http://booster.io/country-codes/\" target="
10776
- "\"_blank\">http://booster.io/country-codes/</a>"
10777
- msgstr ""
10778
-
10779
- #: includes/settings/wcj-settings-price-by-country.php:272
10780
- msgid "Multiply Price by"
10781
- msgstr ""
10782
-
10783
- #: includes/settings/wcj-settings-price-by-user-role.php:19
10784
- msgid "Enable per Product Settings"
10785
- msgstr ""
10786
-
10787
- #: includes/settings/wcj-settings-price-by-user-role.php:21
10788
- msgid ""
10789
- "When enabled, this will add new \"Booster: Price by User Role\" meta box to "
10790
- "each product's edit page."
10791
- msgstr ""
10792
-
10793
- #: includes/settings/wcj-settings-price-by-user-role.php:27
10794
- msgid "Per Product Settings Type"
10795
- msgstr ""
10796
-
10797
- #: includes/settings/wcj-settings-price-by-user-role.php:33
10798
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:76
10799
- msgid "Multiplier"
10800
- msgstr ""
10801
-
10802
- #: includes/settings/wcj-settings-price-by-user-role.php:37
10803
- msgid "Show Roles on per Product Settings"
10804
- msgstr ""
10805
-
10806
- #: includes/settings/wcj-settings-price-by-user-role.php:38
10807
- msgid ""
10808
- "If per product settings are enabled, you can choose which roles to show on "
10809
- "product's edit page. Leave blank to show all roles."
10810
- msgstr ""
10811
-
10812
- #: includes/settings/wcj-settings-price-by-user-role.php:48
10813
- msgid ""
10814
- "When enabled, this will apply user role multipliers to shipping calculations."
10815
- msgstr ""
10816
-
10817
- #: includes/settings/wcj-settings-price-by-user-role.php:55
10818
- msgid "Disable Price by User Role for Bots"
10819
- msgstr ""
10820
-
10821
- #: includes/settings/wcj-settings-price-by-user-role.php:65
10822
- msgid "Roles & Multipliers"
10823
- msgstr ""
10824
-
10825
- #: includes/settings/wcj-settings-price-by-user-role.php:72
10826
- msgid "Disable Price by User Role for Products on Sale"
10827
- msgstr ""
10828
-
10829
- #: includes/settings/wcj-settings-price-by-user-role.php:89
10830
- #: includes/settings/wcj-settings-price-by-user-role.php:138
10831
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:99
10832
- msgid "Make Empty Price"
10833
- msgstr ""
10834
-
10835
- #: includes/settings/wcj-settings-price-by-user-role.php:109
10836
- msgid "Price by User Role by Products Categories"
10837
- msgstr ""
10838
-
10839
- #: includes/settings/wcj-settings-price-by-user-role.php:115
10840
- #: includes/settings/wcj-settings-product-listings.php:187
10841
- #: includes/settings/wcj-settings-shipping.php:51
10842
- msgid ""
10843
- "Save module's settings after changing this option to see new settings fields."
10844
- msgstr ""
10845
-
10846
- #: includes/settings/wcj-settings-price-formats.php:14
10847
- msgid "Formats"
10848
- msgstr ""
10849
-
10850
- #: includes/settings/wcj-settings-price-formats.php:19
10851
- msgid "Total Number"
10852
- msgstr ""
10853
-
10854
- #: includes/settings/wcj-settings-price-formats.php:34
10855
- msgid "Format"
10856
- msgstr ""
10857
-
10858
- #: includes/settings/wcj-settings-price-formats.php:43
10859
- msgid "Currency Position"
10860
- msgstr ""
10861
-
10862
- #: includes/settings/wcj-settings-price-formats.php:48
10863
- msgid "Left"
10864
- msgstr ""
10865
-
10866
- #: includes/settings/wcj-settings-price-formats.php:49
10867
- msgid "Right"
10868
- msgstr ""
10869
-
10870
- #: includes/settings/wcj-settings-price-formats.php:50
10871
- msgid "Left with space"
10872
- msgstr ""
10873
-
10874
- #: includes/settings/wcj-settings-price-formats.php:51
10875
- msgid "Right with space"
10876
- msgstr ""
10877
-
10878
- #: includes/settings/wcj-settings-price-formats.php:56
10879
- msgid "Thousand Separator"
10880
- msgstr ""
10881
-
10882
- #: includes/settings/wcj-settings-price-formats.php:63
10883
- msgid "Decimal Separator"
10884
- msgstr ""
10885
-
10886
- #: includes/settings/wcj-settings-price-formats.php:70
10887
- msgid "Number of Decimals"
10888
- msgstr ""
10889
-
10890
- #: includes/settings/wcj-settings-price-formats.php:78
10891
- msgid "WPML Language Code"
10892
- msgstr ""
10893
-
10894
- #: includes/settings/wcj-settings-price-formats.php:79
10895
- msgid ""
10896
- "Option to set different price formats for different WPML languages. Can be "
10897
- "comma separated list. Leave empty to disable."
10898
- msgstr ""
10899
-
10900
- #: includes/settings/wcj-settings-price-labels.php:22
10901
- msgid "Custom Price Labels - Globally"
10902
- msgstr ""
10903
-
10904
- #: includes/settings/wcj-settings-price-labels.php:24
10905
- msgid "This section lets you set price labels for all products globally."
10906
- msgstr ""
10907
-
10908
- #: includes/settings/wcj-settings-price-labels.php:28
10909
- msgid "Add before the price"
10910
- msgstr ""
10911
-
10912
- #: includes/settings/wcj-settings-price-labels.php:29
10913
- msgid "Enter text to add before all products prices. Leave blank to disable."
10914
- msgstr ""
10915
-
10916
- #: includes/settings/wcj-settings-price-labels.php:38
10917
- msgid "Add after the price"
10918
- msgstr ""
10919
-
10920
- #: includes/settings/wcj-settings-price-labels.php:39
10921
- msgid "Enter text to add after all products prices. Leave blank to disable."
10922
- msgstr ""
10923
-
10924
- #: includes/settings/wcj-settings-price-labels.php:46
10925
- msgid "Add between regular and sale prices"
10926
- msgstr ""
10927
-
10928
- #: includes/settings/wcj-settings-price-labels.php:47
10929
- msgid ""
10930
- "Enter text to add between regular and sale prices. Leave blank to disable."
10931
- msgstr ""
10932
-
10933
- #: includes/settings/wcj-settings-price-labels.php:56
10934
- msgid "Remove from price"
10935
- msgstr ""
10936
-
10937
- #: includes/settings/wcj-settings-price-labels.php:58
10938
- msgid "Enter text to remove from all products prices. Leave blank to disable."
10939
- msgstr ""
10940
-
10941
- #: includes/settings/wcj-settings-price-labels.php:67
10942
- msgid "Replace in price"
10943
- msgstr ""
10944
-
10945
- #: includes/settings/wcj-settings-price-labels.php:68
10946
- msgid "Enter text to replace in all products prices. Leave blank to disable."
10947
- msgstr ""
10948
-
10949
- #: includes/settings/wcj-settings-price-labels.php:79
10950
- msgid "Enter text to replace with. Leave blank to disable."
10951
- msgstr ""
10952
-
10953
- #: includes/settings/wcj-settings-price-labels.php:89
10954
- msgid "Enter text to display instead of the price. Leave blank to disable."
10955
- msgstr ""
10956
-
10957
- #: includes/settings/wcj-settings-price-labels.php:97
10958
- msgid ""
10959
- "Apply global price labels only for selected products. Leave blank to disable "
10960
- "the option."
10961
- msgstr ""
10962
-
10963
- #: includes/settings/wcj-settings-price-labels.php:107
10964
- msgid ""
10965
- "Do not apply global price labels only for selected products. Leave blank to "
10966
- "disable the option."
10967
- msgstr ""
10968
-
10969
- #: includes/settings/wcj-settings-price-labels.php:117
10970
- msgid ""
10971
- "Apply global price labels only for selected product categories. Leave blank "
10972
- "to disable the option."
10973
- msgstr ""
10974
-
10975
- #: includes/settings/wcj-settings-price-labels.php:127
10976
- msgid ""
10977
- "Do not apply global price labels only for selected product categories. Leave "
10978
- "blank to disable the option."
10979
- msgstr ""
10980
-
10981
- #: includes/settings/wcj-settings-price-labels.php:136
10982
- msgid "Product Types - Include"
10983
- msgstr ""
10984
-
10985
- #: includes/settings/wcj-settings-price-labels.php:137
10986
- msgid ""
10987
- "Apply global price labels only for selected product types. Leave blank to "
10988
- "disable the option."
10989
- msgstr ""
10990
-
10991
- #: includes/settings/wcj-settings-price-labels.php:143
10992
- msgid "Variable product's variation"
10993
- msgstr ""
10994
-
10995
- #: includes/settings/wcj-settings-price-labels.php:150
10996
- msgid "Custom Price Labels - Per Product"
10997
- msgstr ""
10998
-
10999
- #: includes/settings/wcj-settings-price-labels.php:156
11000
- msgid "This will add metaboxes to each product's admin edit page."
11001
- msgstr ""
11002
-
11003
- #: includes/settings/wcj-settings-product-add-to-cart.php:14
11004
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
11005
- msgid "Add to Cart Local Redirect"
11006
- msgstr ""
11007
-
11008
- #: includes/settings/wcj-settings-product-add-to-cart.php:16
11009
- msgid ""
11010
- "This section lets you set any local URL to redirect to after successfully "
11011
- "adding product to cart."
11012
- msgstr ""
11013
-
11014
- #: includes/settings/wcj-settings-product-add-to-cart.php:18
11015
- #, php-format
11016
- msgid ""
11017
- "For archives - \"Enable AJAX add to cart buttons on archives\" checkbox in "
11018
- "<a href=\"%s\">WooCommerce > Settings > Products > Display</a> must be "
11019
- "disabled."
11020
- msgstr ""
11021
-
11022
- #: includes/settings/wcj-settings-product-add-to-cart.php:24
11023
- #: includes/settings/wcj-settings-product-by-date.php:20
11024
- msgid "All Products"
11025
- msgstr ""
11026
-
11027
- #: includes/settings/wcj-settings-product-add-to-cart.php:31
11028
- msgid "URL - All Products"
11029
- msgstr ""
11030
-
11031
- #: includes/settings/wcj-settings-product-add-to-cart.php:32
11032
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
11033
- msgid ""
11034
- "Redirect URL. Leave empty to redirect to checkout page (skipping the cart "
11035
- "page)."
11036
- msgstr ""
11037
-
11038
- #: includes/settings/wcj-settings-product-add-to-cart.php:39
11039
- #: includes/settings/wcj-settings-product-by-date.php:52
11040
- #: includes/settings/wcj-settings-product-by-time.php:52
11041
- msgid "Per Product"
11042
- msgstr ""
11043
-
11044
- #: includes/settings/wcj-settings-product-add-to-cart.php:40
11045
- #: includes/settings/wcj-settings-product-tabs.php:182
11046
- msgid "This will add meta boxes to each product's edit page."
11047
- msgstr ""
11048
-
11049
- #: includes/settings/wcj-settings-product-add-to-cart.php:52
11050
- #: includes/settings/wcj-settings-product-add-to-cart.php:58
11051
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
11052
- msgid "Add to Cart on Visit"
11053
- msgstr ""
11054
-
11055
- #: includes/settings/wcj-settings-product-add-to-cart.php:54
11056
- msgid ""
11057
- "This section lets you enable automatically adding product to cart on "
11058
- "visiting the product page. Product is only added once, so if it is already "
11059
- "in cart - duplicate product is not added. "
11060
- msgstr ""
11061
-
11062
- #: includes/settings/wcj-settings-product-add-to-cart.php:59
11063
- msgid ""
11064
- "If \"Per Product\" is selected - meta box will be added to each product's "
11065
- "edit page."
11066
- msgstr ""
11067
-
11068
- #: includes/settings/wcj-settings-product-add-to-cart.php:66
11069
- msgid "Per product"
11070
- msgstr ""
11071
-
11072
- #: includes/settings/wcj-settings-product-add-to-cart.php:74
11073
- msgid "Add to Cart Variable Product"
11074
- msgstr ""
11075
-
11076
- #: includes/settings/wcj-settings-product-add-to-cart.php:79
11077
- msgid "Display Radio Buttons Instead of Drop Box"
11078
- msgstr ""
11079
-
11080
- #: includes/settings/wcj-settings-product-add-to-cart.php:92
11081
- msgid "Replace Add to Cart Button on Archives with Single"
11082
- msgstr ""
11083
-
11084
- #: includes/settings/wcj-settings-product-add-to-cart.php:97
11085
- msgid ""
11086
- "Replace Add to Cart Button on Archives with Button from Single Product Pages"
11087
- msgstr ""
11088
-
11089
- #: includes/settings/wcj-settings-product-add-to-cart.php:104
11090
- msgid "Variable products only"
11091
- msgstr ""
11092
-
11093
- #: includes/settings/wcj-settings-product-add-to-cart.php:112
11094
- msgid "Add to Cart Quantity"
11095
- msgstr ""
11096
-
11097
- #: includes/settings/wcj-settings-product-add-to-cart.php:117
11098
- msgid "Disable Quantity Field for All Products"
11099
- msgstr ""
11100
-
11101
- #: includes/settings/wcj-settings-product-add-to-cart.php:118
11102
- msgid "Disable on Single Product Page"
11103
- msgstr ""
11104
-
11105
- #: includes/settings/wcj-settings-product-add-to-cart.php:125
11106
- msgid "Disable on Cart Page"
11107
- msgstr ""
11108
-
11109
- #: includes/settings/wcj-settings-product-add-to-cart.php:136
11110
- msgid "Add to Cart Button Disabling"
11111
- msgstr ""
11112
-
11113
- #: includes/settings/wcj-settings-product-add-to-cart.php:141
11114
- msgid "Disable Add to Cart Buttons on per Product Basis"
11115
- msgstr ""
11116
-
11117
- #: includes/settings/wcj-settings-product-add-to-cart.php:149
11118
- msgid "Disable Add to Cart Buttons on All Category/Archives Pages"
11119
- msgstr ""
11120
-
11121
- #: includes/settings/wcj-settings-product-add-to-cart.php:150
11122
- #: includes/settings/wcj-settings-product-add-to-cart.php:157
11123
- msgid "Disable Buttons"
11124
- msgstr ""
11125
-
11126
- #: includes/settings/wcj-settings-product-add-to-cart.php:156
11127
- msgid "Disable Add to Cart Buttons on All Single Product Pages"
11128
- msgstr ""
11129
-
11130
- #: includes/settings/wcj-settings-product-add-to-cart.php:167
11131
- msgid "Add to Cart Button Custom URL"
11132
- msgstr ""
11133
-
11134
- #: includes/settings/wcj-settings-product-add-to-cart.php:172
11135
- msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
11136
- msgstr ""
11137
-
11138
- #: includes/settings/wcj-settings-product-add-to-cart.php:184
11139
- msgid "Add to Cart Button AJAX"
11140
- msgstr ""
11141
-
11142
- #: includes/settings/wcj-settings-product-add-to-cart.php:189
11143
- msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
11144
- msgstr ""
11145
-
11146
- #: includes/settings/wcj-settings-product-add-to-cart.php:206
11147
- msgid "Open External Products on Add to Cart in New Window"
11148
- msgstr ""
11149
-
11150
- #: includes/settings/wcj-settings-product-add-to-cart.php:207
11151
- msgid "Enable on Single Product Pages"
11152
- msgstr ""
11153
-
11154
- #: includes/settings/wcj-settings-product-add-to-cart.php:214
11155
- msgid "Enable on Category/Archive Pages"
11156
- msgstr ""
11157
-
11158
- #: includes/settings/wcj-settings-product-add-to-cart.php:225
11159
- msgid "Add to Cart Message Options"
11160
- msgstr ""
11161
-
11162
- #: includes/settings/wcj-settings-product-add-to-cart.php:230
11163
- msgid "Change \"Continue shopping\" Text"
11164
- msgstr ""
11165
-
11166
- #: includes/settings/wcj-settings-product-add-to-cart.php:244
11167
- msgid "Change \"View cart\" Text"
11168
- msgstr ""
11169
-
11170
- #: includes/settings/wcj-settings-product-addons.php:20
11171
- msgid "Enable per Product Addons"
11172
- msgstr ""
11173
-
11174
- #: includes/settings/wcj-settings-product-addons.php:22
11175
- msgid ""
11176
- "When enabled, this will add new \"Booster: Product Addons\" meta box to each "
11177
- "product's edit page."
11178
- msgstr ""
11179
-
11180
- #: includes/settings/wcj-settings-product-addons.php:34
11181
- msgid "All Product Options"
11182
- msgstr ""
11183
-
11184
- #: includes/settings/wcj-settings-product-addons.php:39
11185
- msgid "Enable All Products Addons"
11186
- msgstr ""
11187
-
11188
- #: includes/settings/wcj-settings-product-addons.php:41
11189
- msgid "When enabled, this will add addons below to all products."
11190
- msgstr ""
11191
-
11192
- #: includes/settings/wcj-settings-product-addons.php:47
11193
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
11194
- msgid "Product Addons Total Number"
11195
- msgstr ""
11196
-
11197
- #: includes/settings/wcj-settings-product-addons.php:48
11198
- msgid "Save changes after you change this number."
11199
- msgstr ""
11200
-
11201
- #: includes/settings/wcj-settings-product-addons.php:63
11202
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
11203
- msgid "Product Addon"
11204
- msgstr ""
11205
-
11206
- #: includes/settings/wcj-settings-product-addons.php:77
11207
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:51
11208
- msgid "Radio Buttons"
11209
- msgstr ""
11210
-
11211
- #: includes/settings/wcj-settings-product-addons.php:81
11212
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:55
11213
- msgid "Label(s)"
11214
- msgstr ""
11215
-
11216
- #: includes/settings/wcj-settings-product-addons.php:82
11217
- #: includes/settings/wcj-settings-product-addons.php:90
11218
- #: includes/settings/wcj-settings-product-addons.php:99
11219
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:56
11220
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:63
11221
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:70
11222
- msgid "For radio enter one value per line."
11223
- msgstr ""
11224
-
11225
- #: includes/settings/wcj-settings-product-addons.php:89
11226
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:62
11227
- msgid "Price(s)"
11228
- msgstr ""
11229
-
11230
- #: includes/settings/wcj-settings-product-addons.php:98
11231
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:69
11232
- msgid "Tooltip(s)"
11233
- msgstr ""
11234
-
11235
- #: includes/settings/wcj-settings-product-addons.php:106
11236
- #: includes/settings/wcj-settings-purchase-data.php:83
11237
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:76
11238
- msgid "Default Value"
11239
- msgstr ""
11240
-
11241
- #: includes/settings/wcj-settings-product-addons.php:107
11242
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:77
11243
- msgid ""
11244
- "For checkbox use 'checked'; for radio enter default label. Leave blank for "
11245
- "no default value."
11246
- msgstr ""
11247
-
11248
- #: includes/settings/wcj-settings-product-addons.php:114
11249
- #: includes/settings/wcj-settings-product-by-user.php:45
11250
- msgid "Is Required"
11251
- msgstr ""
11252
-
11253
- #: includes/settings/wcj-settings-product-addons.php:134
11254
- msgid "Enable AJAX on Single Product Page"
11255
- msgstr ""
11256
-
11257
- #: includes/settings/wcj-settings-product-addons.php:141
11258
- msgid "Addon in Cart Format"
11259
- msgstr ""
11260
-
11261
- #: includes/settings/wcj-settings-product-addons.php:149
11262
- #: includes/settings/wcj-settings-product-addons.php:172
11263
- msgid "Each Addon"
11264
- msgstr ""
11265
-
11266
- #: includes/settings/wcj-settings-product-addons.php:150
11267
- #: includes/settings/wcj-settings-product-addons.php:173
11268
- msgid "You can use %addon_label% and %addon_price%."
11269
- msgstr ""
11270
-
11271
- #: includes/settings/wcj-settings-product-addons.php:164
11272
- msgid "Addon in Order Details Table Format"
11273
- msgstr ""
11274
-
11275
- #: includes/settings/wcj-settings-product-addons.php:187
11276
- msgid "Admin Order Page"
11277
- msgstr ""
11278
-
11279
- #: includes/settings/wcj-settings-product-addons.php:188
11280
- msgid "Hide all addons"
11281
- msgstr ""
11282
-
11283
- #: includes/settings/wcj-settings-product-bookings.php:14
11284
- msgid "Labels and Messages"
11285
- msgstr ""
11286
-
11287
- #: includes/settings/wcj-settings-product-bookings.php:19
11288
- msgid "Frontend Label: \"Date from\""
11289
- msgstr ""
11290
-
11291
- #: includes/settings/wcj-settings-product-bookings.php:26
11292
- msgid "Frontend Label: \"Date to\""
11293
- msgstr ""
11294
-
11295
- #: includes/settings/wcj-settings-product-bookings.php:33
11296
- msgid "Frontend Label: Period"
11297
- msgstr ""
11298
-
11299
- #: includes/settings/wcj-settings-product-bookings.php:40
11300
- msgid "Frontend Label: Price per Day"
11301
- msgstr ""
11302
-
11303
- #: includes/settings/wcj-settings-product-bookings.php:47
11304
- msgid "Message: \"Date from\" is missing"
11305
- msgstr ""
11306
-
11307
- #: includes/settings/wcj-settings-product-bookings.php:54
11308
- #: includes/settings/wcj-settings-product-bookings.php:61
11309
- msgid "Message: \"Date to\" is missing"
11310
- msgstr ""
11311
-
11312
- #: includes/settings/wcj-settings-product-bookings.php:77
11313
- msgid "Hide Quantity Selector for Bookings Products"
11314
- msgstr ""
11315
-
11316
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:14
11317
- msgid "Product Bulk Meta Editor Tool Options"
11318
- msgstr ""
11319
-
11320
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:19
11321
- msgid "Check if Meta Exists"
11322
- msgstr ""
11323
-
11324
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:20
11325
- msgid ""
11326
- "When enabled - meta can be changed only if it already existed for product. "
11327
- "If you want to be able to create new meta for products, disable this option."
11328
- msgstr ""
11329
-
11330
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:27
11331
- msgid "Add Variations to Products List"
11332
- msgstr ""
11333
-
11334
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:28
11335
- msgid ""
11336
- "When enabled - variations of variable products will be added to the list. If "
11337
- "you want to edit only main product's meta, disable this option."
11338
- msgstr ""
11339
-
11340
- #: includes/settings/wcj-settings-product-bulk-meta-editor.php:36
11341
- msgid "Additional Columns"
11342
- msgstr ""
11343
-
11344
- #: includes/settings/wcj-settings-product-by-country.php:19
11345
- #: includes/settings/wcj-settings-product-by-user-role.php:19
11346
- msgid "Hide Visibility"
11347
- msgstr ""
11348
-
11349
- #: includes/settings/wcj-settings-product-by-country.php:26
11350
- #: includes/settings/wcj-settings-product-by-user-role.php:26
11351
- msgid "Make Non-purchasable"
11352
- msgstr ""
11353
-
11354
- #: includes/settings/wcj-settings-product-by-country.php:33
11355
- #: includes/settings/wcj-settings-product-by-user-role.php:33
11356
- msgid "Modify Query"
11357
- msgstr ""
11358
-
11359
- #: includes/settings/wcj-settings-product-by-country.php:40
11360
- msgid "Admin Products List Column"
11361
- msgstr ""
11362
-
11363
- #: includes/settings/wcj-settings-product-by-date.php:14
11364
- #: includes/settings/wcj-settings-product-by-time.php:14
11365
- msgid "All Products Options"
11366
- msgstr ""
11367
-
11368
- #: includes/settings/wcj-settings-product-by-date.php:15
11369
- #, php-format
11370
- msgid "Today is <code>%s</code>."
11371
- msgstr ""
11372
-
11373
- #: includes/settings/wcj-settings-product-by-date.php:22
11374
- msgid "Date formats:"
11375
- msgstr ""
11376
-
11377
- #: includes/settings/wcj-settings-product-by-date.php:64
11378
- #: includes/settings/wcj-settings-product-by-time.php:64
11379
- msgid "Frontend Messages Options"
11380
- msgstr ""
11381
-
11382
- #: includes/settings/wcj-settings-product-by-date.php:70
11383
- msgid "Message when product is not available by date."
11384
- msgstr ""
11385
-
11386
- #: includes/settings/wcj-settings-product-by-date.php:72
11387
- #: includes/settings/wcj-settings-product-by-date.php:84
11388
- #: includes/settings/wcj-settings-product-by-time.php:72
11389
- #: includes/settings/wcj-settings-product-by-time.php:84
11390
- msgid "You can also use shortcodes here."
11391
- msgstr ""
11392
-
11393
- #: includes/settings/wcj-settings-product-by-date.php:81
11394
- msgid "Message (Month Off)"
11395
- msgstr ""
11396
-
11397
- #: includes/settings/wcj-settings-product-by-date.php:82
11398
- msgid "Message when product is not available by date (month off)."
11399
- msgstr ""
11400
-
11401
- #: includes/settings/wcj-settings-product-by-time.php:15
11402
- #, php-format
11403
- msgid "Local time is <code>%s</code>."
11404
- msgstr ""
11405
-
11406
- #: includes/settings/wcj-settings-product-by-time.php:20
11407
- msgid "Product by Time"
11408
- msgstr ""
11409
-
11410
- #: includes/settings/wcj-settings-product-by-time.php:22
11411
- msgid "Time formats:"
11412
- msgstr ""
11413
-
11414
- #: includes/settings/wcj-settings-product-by-time.php:70
11415
- msgid "Message when product is not available by time."
11416
- msgstr ""
11417
-
11418
- #: includes/settings/wcj-settings-product-by-time.php:71
11419
- msgid "Replaceable values:"
11420
- msgstr ""
11421
-
11422
- #: includes/settings/wcj-settings-product-by-time.php:81
11423
- msgid "Message (Day Off)"
11424
- msgstr ""
11425
-
11426
- #: includes/settings/wcj-settings-product-by-time.php:82
11427
- msgid "Message when product is not available by time (day off)."
11428
- msgstr ""
11429
-
11430
- #: includes/settings/wcj-settings-product-by-time.php:83
11431
- msgid "Replaceable value:"
11432
- msgstr ""
11433
-
11434
- #: includes/settings/wcj-settings-product-by-user.php:15
11435
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:181
11436
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:373
11437
- msgid "Image"
11438
- msgstr ""
11439
-
11440
- #: includes/settings/wcj-settings-product-by-user.php:18
11441
- msgid "Product URL (for \"External/Affiliate\" product type only)"
11442
- msgstr ""
11443
-
11444
- #: includes/settings/wcj-settings-product-by-user.php:35
11445
- msgid "Additional Fields"
11446
- msgstr ""
11447
-
11448
- #: includes/settings/wcj-settings-product-by-user.php:61
11449
- msgid "<em>Title</em> field is always enabled and required."
11450
- msgstr ""
11451
-
11452
- #: includes/settings/wcj-settings-product-by-user.php:71
11453
- msgid "Used for price fields only."
11454
- msgstr ""
11455
-
11456
- #: includes/settings/wcj-settings-product-by-user.php:78
11457
- msgid "User Visibility"
11458
- msgstr ""
11459
-
11460
- #: includes/settings/wcj-settings-product-by-user.php:88
11461
- msgid "Product Type"
11462
- msgstr ""
11463
-
11464
- #: includes/settings/wcj-settings-product-by-user.php:94
11465
- msgid "External/Affiliate product"
11466
- msgstr ""
11467
-
11468
- #: includes/settings/wcj-settings-product-by-user.php:99
11469
- msgid "Product Status"
11470
- msgstr ""
11471
-
11472
- #: includes/settings/wcj-settings-product-by-user.php:106
11473
- msgid "Require Unique Title"
11474
- msgstr ""
11475
-
11476
- #: includes/settings/wcj-settings-product-by-user.php:113
11477
- msgid "Add \"My Products\" Tab to User's My Account Page"
11478
- msgstr ""
11479
-
11480
- #: includes/settings/wcj-settings-product-by-user.php:120
11481
- msgid "Message: Product Successfully Added"
11482
- msgstr ""
11483
-
11484
- #: includes/settings/wcj-settings-product-by-user.php:122
11485
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:291
11486
- msgid "\"%product_title%\" successfully added!"
11487
- msgstr ""
11488
-
11489
- #: includes/settings/wcj-settings-product-by-user.php:127
11490
- msgid "Message: Product Successfully Edited"
11491
- msgstr ""
11492
-
11493
- #: includes/settings/wcj-settings-product-by-user.php:129
11494
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:298
11495
- msgid "\"%product_title%\" successfully edited!"
11496
- msgstr ""
11497
-
11498
- #: includes/settings/wcj-settings-product-by-user.php:134
11499
- msgid "Total Custom Taxonomies"
11500
- msgstr ""
11501
-
11502
- #: includes/settings/wcj-settings-product-by-user.php:148
11503
- msgid "Custom Taxonomy"
11504
- msgstr ""
11505
-
11506
- #: includes/settings/wcj-settings-product-custom-info.php:20
11507
- msgid "Single"
11508
- msgstr ""
11509
-
11510
- #: includes/settings/wcj-settings-product-custom-info.php:20
11511
- msgid "Archive"
11512
- msgstr ""
11513
-
11514
- #: includes/settings/wcj-settings-product-custom-info.php:23
11515
- msgid "Product Custom Info Blocks"
11516
- msgstr ""
11517
-
11518
- #: includes/settings/wcj-settings-product-custom-info.php:58
11519
- #: includes/settings/wcj-settings-product-images.php:55
11520
- #: includes/settings/wcj-settings-product-images.php:64
11521
- #: includes/settings/wcj-settings-product-images.php:73
11522
- #: includes/settings/wcj-settings-products-xml.php:106
11523
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
11524
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
11525
- msgid "You can use shortcodes here."
11526
- msgstr ""
11527
-
11528
- #: includes/settings/wcj-settings-product-custom-info.php:73
11529
- msgid "Before add to cart form"
11530
- msgstr ""
11531
-
11532
- #: includes/settings/wcj-settings-product-custom-info.php:74
11533
- msgid "Before add to cart button"
11534
- msgstr ""
11535
-
11536
- #: includes/settings/wcj-settings-product-custom-info.php:75
11537
- msgid "After add to cart button"
11538
- msgstr ""
11539
-
11540
- #: includes/settings/wcj-settings-product-custom-info.php:76
11541
- msgid "After add to cart form"
11542
- msgstr ""
11543
-
11544
- #: includes/settings/wcj-settings-product-custom-info.php:81
11545
- msgid "Inside product title"
11546
- msgstr ""
11547
-
11548
- #: includes/settings/wcj-settings-product-custom-info.php:95
11549
- msgid "Product Categories to Include"
11550
- msgstr ""
11551
-
11552
- #: includes/settings/wcj-settings-product-custom-info.php:96
11553
- #: includes/settings/wcj-settings-product-custom-info.php:106
11554
- #: includes/settings/wcj-settings-product-custom-info.php:116
11555
- #: includes/settings/wcj-settings-product-custom-info.php:126
11556
- #: includes/settings/wcj-settings-product-custom-info.php:137
11557
- #: includes/settings/wcj-settings-product-custom-info.php:148
11558
- msgid "Leave blank to disable the option."
11559
- msgstr ""
11560
-
11561
- #: includes/settings/wcj-settings-product-custom-info.php:105
11562
- msgid "Product Categories to Exclude"
11563
- msgstr ""
11564
-
11565
- #: includes/settings/wcj-settings-product-custom-info.php:115
11566
- msgid "Product Tags to Include"
11567
- msgstr ""
11568
-
11569
- #: includes/settings/wcj-settings-product-custom-info.php:125
11570
- msgid "Product Tags to Exclude"
11571
- msgstr ""
11572
-
11573
- #: includes/settings/wcj-settings-product-custom-info.php:136
11574
- #: includes/settings/wcj-settings-products-xml.php:138
11575
- msgid "Products to Include"
11576
- msgstr ""
11577
-
11578
- #: includes/settings/wcj-settings-product-custom-info.php:147
11579
- #: includes/settings/wcj-settings-products-xml.php:147
11580
- msgid "Products to Exclude"
11581
- msgstr ""
11582
-
11583
- #: includes/settings/wcj-settings-product-images.php:14
11584
- msgid "Product Image and Thumbnails"
11585
- msgstr ""
11586
-
11587
- #: includes/settings/wcj-settings-product-images.php:25
11588
- msgid "Image and Thumbnails on Single"
11589
- msgstr ""
11590
-
11591
- #: includes/settings/wcj-settings-product-images.php:32
11592
- msgid "Image on Single"
11593
- msgstr ""
11594
-
11595
- #: includes/settings/wcj-settings-product-images.php:39
11596
- msgid "Thumbnails on Single"
11597
- msgstr ""
11598
-
11599
- #: includes/settings/wcj-settings-product-images.php:46
11600
- msgid "Image on Archives"
11601
- msgstr ""
11602
-
11603
- #: includes/settings/wcj-settings-product-images.php:53
11604
- msgid "Replace Image on Single"
11605
- msgstr ""
11606
-
11607
- #: includes/settings/wcj-settings-product-images.php:54
11608
- msgid ""
11609
- "Replace image on single product page with custom HTML. Leave blank to "
11610
- "disable."
11611
- msgstr ""
11612
-
11613
- #: includes/settings/wcj-settings-product-images.php:62
11614
- msgid "Replace Thumbnails on Single"
11615
- msgstr ""
11616
-
11617
- #: includes/settings/wcj-settings-product-images.php:63
11618
- msgid ""
11619
- "Replace thumbnails on single product page with custom HTML. Leave blank to "
11620
- "disable."
11621
- msgstr ""
11622
-
11623
- #: includes/settings/wcj-settings-product-images.php:71
11624
- msgid "Replace Image on Archive"
11625
- msgstr ""
11626
-
11627
- #: includes/settings/wcj-settings-product-images.php:72
11628
- msgid ""
11629
- "Replace image on archive pages with custom HTML. Leave blank to disable."
11630
- msgstr ""
11631
-
11632
- #: includes/settings/wcj-settings-product-images.php:80
11633
- msgid "Single Product Thumbnails Columns"
11634
- msgstr ""
11635
-
11636
- #: includes/settings/wcj-settings-product-images.php:90
11637
- msgid "Product Images Sale Flash"
11638
- msgstr ""
11639
-
11640
- #: includes/settings/wcj-settings-product-images.php:101
11641
- msgid "HTML"
11642
- msgstr ""
11643
-
11644
- #: includes/settings/wcj-settings-product-images.php:108
11645
- msgid "Hide Everywhere"
11646
- msgstr ""
11647
-
11648
- #: includes/settings/wcj-settings-product-images.php:114
11649
- msgid "Hide on Archives (Categories) Only"
11650
- msgstr ""
11651
-
11652
- #: includes/settings/wcj-settings-product-images.php:120
11653
- msgid "Hide on Single Page Only"
11654
- msgstr ""
11655
-
11656
- #: includes/settings/wcj-settings-product-info.php:14
11657
- msgid "Products Info"
11658
- msgstr ""
11659
-
11660
- #: includes/settings/wcj-settings-product-info.php:15
11661
- msgid ""
11662
- "For full list of short codes, please visit <a target=\"_blank\" href="
11663
- "\"http://booster.io/shortcodes/\">http://booster.io/shortcodes/</a>."
11664
- msgstr ""
11665
-
11666
- #: includes/settings/wcj-settings-product-info.php:19
11667
- #: includes/settings/wcj-settings-product-info.php:34
11668
- msgid "Product Info on Archive Pages"
11669
- msgstr ""
11670
-
11671
- #: includes/settings/wcj-settings-product-info.php:20
11672
- msgid "Product Info on Single Pages"
11673
- msgstr ""
11674
-
11675
- #: includes/settings/wcj-settings-product-info.php:29
11676
- msgid "Even More Products Info"
11677
- msgstr ""
11678
-
11679
- #: includes/settings/wcj-settings-product-info.php:42
11680
- #: includes/settings/wcj-settings-product-info.php:75
11681
- msgid "HTML info."
11682
- msgstr ""
11683
-
11684
- #: includes/settings/wcj-settings-product-info.php:44
11685
- msgid "[wcj_product_sku before=\"SKU: \"]"
11686
- msgstr ""
11687
-
11688
- #: includes/settings/wcj-settings-product-info.php:67
11689
- msgid "Product Info on Single Product Pages"
11690
- msgstr ""
11691
-
11692
- #: includes/settings/wcj-settings-product-info.php:77
11693
- msgid "Total sales: [wcj_product_total_sales]"
11694
- msgstr ""
11695
-
11696
- #: includes/settings/wcj-settings-product-info.php:100
11697
- msgid "Product IDs to exclude"
11698
- msgstr ""
11699
-
11700
- #: includes/settings/wcj-settings-product-info.php:101
11701
- msgid "Comma separated list of product IDs to exclude from product info."
11702
- msgstr ""
11703
-
11704
- #: includes/settings/wcj-settings-product-input-fields.php:14
11705
- msgid "Product Input Fields per Product Options"
11706
- msgstr ""
11707
-
11708
- #: includes/settings/wcj-settings-product-input-fields.php:16
11709
- #: includes/settings/wcj-settings-product-input-fields.php:47
11710
- msgid ""
11711
- "Add custom input fields to product's single page for customer to fill before "
11712
- "adding product to cart."
11713
- msgstr ""
11714
-
11715
- #: includes/settings/wcj-settings-product-input-fields.php:17
11716
- msgid ""
11717
- "When enabled this module will add \"Product Input Fields\" tab to each "
11718
- "product's \"Edit\" page."
11719
- msgstr ""
11720
-
11721
- #: includes/settings/wcj-settings-product-input-fields.php:21
11722
- msgid "Product Input Fields - per Product"
11723
- msgstr ""
11724
-
11725
- #: includes/settings/wcj-settings-product-input-fields.php:23
11726
- msgid "Add custom input field on per product basis."
11727
- msgstr ""
11728
-
11729
- #: includes/settings/wcj-settings-product-input-fields.php:29
11730
- msgid "Default Number of Product Input Fields per Product"
11731
- msgstr ""
11732
-
11733
- #: includes/settings/wcj-settings-product-input-fields.php:31
11734
- msgid ""
11735
- "You will be able to change this number later as well as define the fields, "
11736
- "for each product individually, in product's \"Edit\"."
11737
- msgstr ""
11738
-
11739
- #: includes/settings/wcj-settings-product-input-fields.php:45
11740
- msgid "Product Input Fields Global Options"
11741
- msgstr ""
11742
-
11743
- #: includes/settings/wcj-settings-product-input-fields.php:51
11744
- msgid "Product Input Fields - All Products"
11745
- msgstr ""
11746
-
11747
- #: includes/settings/wcj-settings-product-input-fields.php:53
11748
- msgid "Add custom input fields to all products."
11749
- msgstr ""
11750
-
11751
- #: includes/settings/wcj-settings-product-input-fields.php:59
11752
- msgid "Product Input Fields Number"
11753
- msgstr ""
11754
-
11755
- #: includes/settings/wcj-settings-product-input-fields.php:94
11756
- msgid "Frontend View Options"
11757
- msgstr ""
11758
-
11759
- #: includes/settings/wcj-settings-product-input-fields.php:99
11760
- msgid "HTML Template - Start"
11761
- msgstr ""
11762
-
11763
- #: includes/settings/wcj-settings-product-input-fields.php:106
11764
- msgid "HTML Template - Each Field"
11765
- msgstr ""
11766
-
11767
- #: includes/settings/wcj-settings-product-input-fields.php:113
11768
- msgid "HTML Template - End"
11769
- msgstr ""
11770
-
11771
- #: includes/settings/wcj-settings-product-input-fields.php:120
11772
- msgid "HTML to add after required field title"
11773
- msgstr ""
11774
-
11775
- #: includes/settings/wcj-settings-product-input-fields.php:127
11776
- msgid "Cart Display Options"
11777
- msgstr ""
11778
-
11779
- #: includes/settings/wcj-settings-product-input-fields.php:128
11780
- msgid ""
11781
- "When \"Add to cart item data\" is selected, \"Cart HTML Template\" options "
11782
- "below will be ignored."
11783
- msgstr ""
11784
-
11785
- #: includes/settings/wcj-settings-product-input-fields.php:133
11786
- msgid "Add to cart item name"
11787
- msgstr ""
11788
-
11789
- #: includes/settings/wcj-settings-product-input-fields.php:134
11790
- msgid "Add to cart item data"
11791
- msgstr ""
11792
-
11793
- #: includes/settings/wcj-settings-product-input-fields.php:138
11794
- msgid "Cart HTML Template - Start"
11795
- msgstr ""
11796
-
11797
- #: includes/settings/wcj-settings-product-input-fields.php:145
11798
- msgid "Cart HTML Template - Each Field"
11799
- msgstr ""
11800
-
11801
- #: includes/settings/wcj-settings-product-input-fields.php:152
11802
- msgid "Cart HTML Template - End"
11803
- msgstr ""
11804
-
11805
- #: includes/settings/wcj-settings-product-input-fields.php:159
11806
- msgid "Order Table Template - Each Field"
11807
- msgstr ""
11808
-
11809
- #: includes/settings/wcj-settings-product-input-fields.php:160
11810
- msgid "Affects Order received page, Emails and Admin Orders View"
11811
- msgstr ""
11812
-
11813
- #: includes/settings/wcj-settings-product-input-fields.php:198
11814
- msgid "Admin Order View Options"
11815
- msgstr ""
11816
-
11817
- #: includes/settings/wcj-settings-product-input-fields.php:203
11818
- msgid "Replace Field ID with Field Label"
11819
- msgstr ""
11820
-
11821
- #: includes/settings/wcj-settings-product-listings.php:34
11822
- msgid "Shop Page Display Options"
11823
- msgstr ""
11824
-
11825
- #: includes/settings/wcj-settings-product-listings.php:37
11826
- #, php-format
11827
- msgid ""
11828
- "You can control what is shown on the product archive in <a href=\"%s"
11829
- "\">WooCommerce > Settings > Products > Display > Shop page display</a>."
11830
- msgstr ""
11831
-
11832
- #: includes/settings/wcj-settings-product-listings.php:43
11833
- msgid "Categories Count"
11834
- msgstr ""
11835
-
11836
- #: includes/settings/wcj-settings-product-listings.php:44
11837
- msgid "Hide categories count on shop page"
11838
- msgstr ""
11839
-
11840
- #: includes/settings/wcj-settings-product-listings.php:51
11841
- msgid ""
11842
- " Excludes one or more categories from the shop page. Leave blank to disable."
11843
- msgstr ""
11844
-
11845
- #: includes/settings/wcj-settings-product-listings.php:60
11846
- #: includes/settings/wcj-settings-product-listings.php:106
11847
- msgid "Hide Empty"
11848
- msgstr ""
11849
-
11850
- #: includes/settings/wcj-settings-product-listings.php:61
11851
- msgid "Hide empty categories on shop page"
11852
- msgstr ""
11853
-
11854
- #: includes/settings/wcj-settings-product-listings.php:67
11855
- #: includes/settings/wcj-settings-product-listings.php:113
11856
- msgid "Show Products"
11857
- msgstr ""
11858
-
11859
- #: includes/settings/wcj-settings-product-listings.php:68
11860
- msgid "Show products if no categories are displayed on shop page"
11861
- msgstr ""
11862
-
11863
- #: includes/settings/wcj-settings-product-listings.php:78
11864
- msgid "Category Display Options"
11865
- msgstr ""
11866
-
11867
- #: includes/settings/wcj-settings-product-listings.php:81
11868
- #, php-format
11869
- msgid ""
11870
- "You can control what is shown on category archives in <a href=\"%s"
11871
- "\">WooCommerce > Settings > Products > Display > Default category display</"
11872
- "a>."
11873
- msgstr ""
11874
-
11875
- #: includes/settings/wcj-settings-product-listings.php:87
11876
- msgid "Subcategories Count"
11877
- msgstr ""
11878
-
11879
- #: includes/settings/wcj-settings-product-listings.php:88
11880
- msgid "Hide subcategories count on category pages"
11881
- msgstr ""
11882
-
11883
- #: includes/settings/wcj-settings-product-listings.php:96
11884
- msgid "Exclude Subcategories"
11885
- msgstr ""
11886
-
11887
- #: includes/settings/wcj-settings-product-listings.php:97
11888
- msgid ""
11889
- " Excludes one or more categories from the category (archive) pages. Leave "
11890
- "blank to disable."
11891
- msgstr ""
11892
-
11893
- #: includes/settings/wcj-settings-product-listings.php:107
11894
- msgid "Hide empty subcategories on category pages"
11895
- msgstr ""
11896
-
11897
- #: includes/settings/wcj-settings-product-listings.php:114
11898
- msgid "Show products if no categories are displayed on category page"
11899
- msgstr ""
11900
-
11901
- #: includes/settings/wcj-settings-product-listings.php:124
11902
- msgid "TAX Display Prices in the Shop"
11903
- msgstr ""
11904
-
11905
- #: includes/settings/wcj-settings-product-listings.php:126
11906
- msgid ""
11907
- "If you want to display part of your products including TAX and another part "
11908
- "excluding TAX, you can set it here."
11909
- msgstr ""
11910
-
11911
- #: includes/settings/wcj-settings-product-listings.php:130
11912
- msgid "Products - Including TAX"
11913
- msgstr ""
11914
-
11915
- #: includes/settings/wcj-settings-product-listings.php:132
11916
- msgid "Select products to display including TAX."
11917
- msgstr ""
11918
-
11919
- #: includes/settings/wcj-settings-product-listings.php:140
11920
- msgid "Products - Excluding TAX"
11921
- msgstr ""
11922
-
11923
- #: includes/settings/wcj-settings-product-listings.php:142
11924
- msgid "Select products to display excluding TAX."
11925
- msgstr ""
11926
-
11927
- #: includes/settings/wcj-settings-product-listings.php:150
11928
- msgid "Product Categories - Including TAX"
11929
- msgstr ""
11930
-
11931
- #: includes/settings/wcj-settings-product-listings.php:152
11932
- msgid "Select product categories to display including TAX."
11933
- msgstr ""
11934
-
11935
- #: includes/settings/wcj-settings-product-listings.php:160
11936
- msgid "Product Categories - Excluding TAX"
11937
- msgstr ""
11938
-
11939
- #: includes/settings/wcj-settings-product-listings.php:162
11940
- msgid "Select product categories to display excluding TAX."
11941
- msgstr ""
11942
-
11943
- #: includes/settings/wcj-settings-product-listings.php:174
11944
- msgid "Admin Products List - Custom Columns"
11945
- msgstr ""
11946
-
11947
- #: includes/settings/wcj-settings-product-listings.php:232
11948
- msgid "Admin Products List - Columns Order"
11949
- msgstr ""
11950
-
11951
- #: includes/settings/wcj-settings-product-open-pricing.php:21
11952
- msgid "Frontend Label"
11953
- msgstr ""
11954
-
11955
- #: includes/settings/wcj-settings-product-open-pricing.php:28
11956
- msgid "Frontend Template"
11957
- msgstr ""
11958
-
11959
- #: includes/settings/wcj-settings-product-open-pricing.php:29
11960
- msgid "Here you can use"
11961
- msgstr ""
11962
-
11963
- #: includes/settings/wcj-settings-product-open-pricing.php:37
11964
- msgid "Frontend Input Style"
11965
- msgstr ""
11966
-
11967
- #: includes/settings/wcj-settings-product-open-pricing.php:44
11968
- msgid "Frontend Input Placeholder"
11969
- msgstr ""
11970
-
11971
- #: includes/settings/wcj-settings-product-open-pricing.php:51
11972
- msgid "Frontend Input Price Step"
11973
- msgstr ""
11974
-
11975
- #: includes/settings/wcj-settings-product-open-pricing.php:58
11976
- msgid "Message on Empty Price"
11977
- msgstr ""
11978
-
11979
- #: includes/settings/wcj-settings-product-open-pricing.php:65
11980
- msgid "Message on Price too Small"
11981
- msgstr ""
11982
-
11983
- #: includes/settings/wcj-settings-product-open-pricing.php:72
11984
- msgid "Message on Price too Big"
11985
- msgstr ""
11986
-
11987
- #: includes/settings/wcj-settings-product-open-pricing.php:79
11988
- msgid "Disable Quantity Input"
11989
- msgstr ""
11990
-
11991
- #: includes/settings/wcj-settings-product-open-pricing.php:86
11992
- msgid "Enable JS Min/Max Validation"
11993
- msgstr ""
11994
-
11995
- #: includes/settings/wcj-settings-product-open-pricing.php:93
11996
- msgid "Display Product Price Info in Archives"
11997
- msgstr ""
11998
-
11999
- #: includes/settings/wcj-settings-product-open-pricing.php:100
12000
- msgid ""
12001
- "Product price info in archives template. Replaceable values: <code>"
12002
- "%default_price%</code>, <code>%min_price%</code>, <code>%max_price%</code>."
12003
- msgstr ""
12004
-
12005
- #: includes/settings/wcj-settings-product-open-pricing.php:107
12006
- msgid "Add \"Open Pricing\" Column to Admin Product List"
12007
- msgstr ""
12008
-
12009
- #: includes/settings/wcj-settings-product-price-by-formula.php:14
12010
- msgid "Default Settings"
12011
- msgstr ""
12012
-
12013
- #: includes/settings/wcj-settings-product-price-by-formula.php:16
12014
- msgid ""
12015
- "You can set default settings here. All settings can later be changed in "
12016
- "individual product's edit page."
12017
- msgstr ""
12018
-
12019
- #: includes/settings/wcj-settings-product-price-by-formula.php:20
12020
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
12021
- msgid "Formula"
12022
- msgstr ""
12023
-
12024
- #: includes/settings/wcj-settings-product-price-by-formula.php:21
12025
- msgid "Use \"x\" variable for product's base price. For example: x+p1*p2"
12026
- msgstr ""
12027
-
12028
- #: includes/settings/wcj-settings-product-price-by-formula.php:27
12029
- msgid "Enable Price Calculation By Formula For All Products"
12030
- msgstr ""
12031
-
12032
- #: includes/settings/wcj-settings-product-price-by-formula.php:36
12033
- msgid "Total Params"
12034
- msgstr ""
12035
-
12036
- #: includes/settings/wcj-settings-product-tabs.php:15
12037
- msgid "Custom Product Tabs Options"
12038
- msgstr ""
12039
-
12040
- #: includes/settings/wcj-settings-product-tabs.php:17
12041
- msgid "This section lets you add custom single product tabs."
12042
- msgstr ""
12043
-
12044
- #: includes/settings/wcj-settings-product-tabs.php:21
12045
- msgid "Custom Product Tabs Number"
12046
- msgstr ""
12047
-
12048
- #: includes/settings/wcj-settings-product-tabs.php:58
12049
- #: includes/settings/wcj-settings-product-tabs.php:227
12050
- msgid "You can use shortcodes here..."
12051
- msgstr ""
12052
-
12053
- #: includes/settings/wcj-settings-product-tabs.php:79
12054
- #: includes/settings/wcj-settings-product-tabs.php:248
12055
- msgid "PRODUCTS to HIDE this tab"
12056
- msgstr ""
12057
-
12058
- #: includes/settings/wcj-settings-product-tabs.php:80
12059
- #: includes/settings/wcj-settings-product-tabs.php:249
12060
- msgid "To hide this tab from some products, enter products here."
12061
- msgstr ""
12062
-
12063
- #: includes/settings/wcj-settings-product-tabs.php:88
12064
- #: includes/settings/wcj-settings-product-tabs.php:257
12065
- msgid "PRODUCTS to SHOW this tab"
12066
- msgstr ""
12067
-
12068
- #: includes/settings/wcj-settings-product-tabs.php:89
12069
- #: includes/settings/wcj-settings-product-tabs.php:258
12070
- msgid "To show this tab only for some products, enter products here."
12071
- msgstr ""
12072
-
12073
- #: includes/settings/wcj-settings-product-tabs.php:97
12074
- #: includes/settings/wcj-settings-product-tabs.php:266
12075
- msgid "CATEGORIES to HIDE this tab"
12076
- msgstr ""
12077
-
12078
- #: includes/settings/wcj-settings-product-tabs.php:98
12079
- #: includes/settings/wcj-settings-product-tabs.php:267
12080
- msgid "To hide this tab from some categories, enter categories here."
12081
- msgstr ""
12082
-
12083
- #: includes/settings/wcj-settings-product-tabs.php:106
12084
- #: includes/settings/wcj-settings-product-tabs.php:275
12085
- msgid "CATEGORIES to SHOW this tab"
12086
- msgstr ""
12087
-
12088
- #: includes/settings/wcj-settings-product-tabs.php:107
12089
- #: includes/settings/wcj-settings-product-tabs.php:276
12090
- msgid "To show this tab only for some categories, enter categories here."
12091
- msgstr ""
12092
-
12093
- #: includes/settings/wcj-settings-product-tabs.php:115
12094
- #: includes/settings/wcj-settings-product-tabs.php:284
12095
- msgid "TAGS to HIDE this tab"
12096
- msgstr ""
12097
-
12098
- #: includes/settings/wcj-settings-product-tabs.php:116
12099
- #: includes/settings/wcj-settings-product-tabs.php:285
12100
- msgid "To hide this tab from some tags, enter tags here."
12101
- msgstr ""
12102
-
12103
- #: includes/settings/wcj-settings-product-tabs.php:124
12104
- #: includes/settings/wcj-settings-product-tabs.php:293
12105
- msgid "TAGS to SHOW this tab"
12106
- msgstr ""
12107
-
12108
- #: includes/settings/wcj-settings-product-tabs.php:125
12109
- #: includes/settings/wcj-settings-product-tabs.php:294
12110
- msgid "To show this tab only for some tags, enter tags here."
12111
- msgstr ""
12112
-
12113
- #: includes/settings/wcj-settings-product-tabs.php:133
12114
- msgid "Comma separated PRODUCT IDs to HIDE this tab"
12115
- msgstr ""
12116
-
12117
- #: includes/settings/wcj-settings-product-tabs.php:134
12118
- msgid "To hide this tab from some products, enter product IDs here."
12119
- msgstr ""
12120
-
12121
- #: includes/settings/wcj-settings-product-tabs.php:141
12122
- msgid "Comma separated PRODUCT IDs to SHOW this tab"
12123
- msgstr ""
12124
-
12125
- #: includes/settings/wcj-settings-product-tabs.php:142
12126
- msgid "To show this tab only for some products, enter product IDs here."
12127
- msgstr ""
12128
-
12129
- #: includes/settings/wcj-settings-product-tabs.php:149
12130
- msgid "Comma separated CATEGORY IDs to HIDE this tab"
12131
- msgstr ""
12132
-
12133
- #: includes/settings/wcj-settings-product-tabs.php:150
12134
- msgid "To hide this tab from some categories, enter category IDs here."
12135
- msgstr ""
12136
-
12137
- #: includes/settings/wcj-settings-product-tabs.php:157
12138
- msgid "Comma separated CATEGORY IDs to SHOW this tab"
12139
- msgstr ""
12140
-
12141
- #: includes/settings/wcj-settings-product-tabs.php:158
12142
- msgid "To show this tab only for some categories, enter category IDs here."
12143
- msgstr ""
12144
-
12145
- #: includes/settings/wcj-settings-product-tabs.php:174
12146
- msgid "Custom Product Tabs - Per Product"
12147
- msgstr ""
12148
-
12149
- #: includes/settings/wcj-settings-product-tabs.php:176
12150
- msgid "This section lets you set defaults for per product custom tabs."
12151
- msgstr ""
12152
-
12153
- #: includes/settings/wcj-settings-product-tabs.php:180
12154
- msgid "Enable Per Product Custom Product Tabs"
12155
- msgstr ""
12156
-
12157
- #: includes/settings/wcj-settings-product-tabs.php:188
12158
- msgid "Use Visual Editor"
12159
- msgstr ""
12160
-
12161
- #: includes/settings/wcj-settings-product-tabs.php:195
12162
- msgid "Default Per Product Custom Product Tabs Number"
12163
- msgstr ""
12164
-
12165
- #: includes/settings/wcj-settings-product-tabs.php:213
12166
- msgid "Default Title"
12167
- msgstr ""
12168
-
12169
- #: includes/settings/wcj-settings-product-tabs.php:220
12170
- msgid "Default Priority (i.e. Order)"
12171
- msgstr ""
12172
-
12173
- #: includes/settings/wcj-settings-product-tabs.php:226
12174
- msgid "Default Content"
12175
- msgstr ""
12176
-
12177
- #: includes/settings/wcj-settings-product-tabs.php:234
12178
- msgid "Default Link"
12179
- msgstr ""
12180
-
12181
- #: includes/settings/wcj-settings-product-tabs.php:235
12182
- msgid "Leave blank for default behaviour."
12183
- msgstr ""
12184
-
12185
- #: includes/settings/wcj-settings-product-tabs.php:242
12186
- msgid "Default \"Link - Open in New Window\""
12187
- msgstr ""
12188
-
12189
- #: includes/settings/wcj-settings-product-tabs.php:310
12190
- msgid "WooCommerce Standard Product Tabs Options"
12191
- msgstr ""
12192
-
12193
- #: includes/settings/wcj-settings-product-tabs.php:312
12194
- msgid "This section lets you customize single product tabs."
12195
- msgstr ""
12196
-
12197
- #: includes/settings/wcj-settings-product-tabs.php:316
12198
- msgid "Description Tab"
12199
- msgstr ""
12200
-
12201
- #: includes/settings/wcj-settings-product-tabs.php:317
12202
- #: includes/settings/wcj-settings-product-tabs.php:338
12203
- #: includes/settings/wcj-settings-product-tabs.php:359
12204
- msgid "Remove tab from product page"
12205
- msgstr ""
12206
-
12207
- #: includes/settings/wcj-settings-product-tabs.php:323
12208
- #: includes/settings/wcj-settings-product-tabs.php:344
12209
- #: includes/settings/wcj-settings-product-tabs.php:365
12210
- msgid "Title."
12211
- msgstr ""
12212
-
12213
- #: includes/settings/wcj-settings-product-tabs.php:324
12214
- #: includes/settings/wcj-settings-product-tabs.php:345
12215
- #: includes/settings/wcj-settings-product-tabs.php:366
12216
- msgid "Leave blank for WooCommerce defaults"
12217
- msgstr ""
12218
-
12219
- #: includes/settings/wcj-settings-product-tabs.php:333
12220
- #: includes/settings/wcj-settings-product-tabs.php:354
12221
- #: includes/settings/wcj-settings-product-tabs.php:375
12222
- msgid "Priority (i.e. Order)."
12223
- msgstr ""
12224
-
12225
- #: includes/settings/wcj-settings-product-tabs.php:337
12226
- msgid "Additional Information Tab"
12227
- msgstr ""
12228
-
12229
- #: includes/settings/wcj-settings-product-tabs.php:358
12230
- msgid "Reviews Tab"
12231
- msgstr ""
12232
-
12233
- #: includes/settings/wcj-settings-products-per-page.php:19
12234
- msgid "Select Options"
12235
- msgstr ""
12236
-
12237
- #: includes/settings/wcj-settings-products-per-page.php:20
12238
- msgid "Name|Number; one per line; -1 for all products"
12239
- msgstr ""
12240
-
12241
- #: includes/settings/wcj-settings-products-per-page.php:42
12242
- msgid "Before shop loop"
12243
- msgstr ""
12244
-
12245
- #: includes/settings/wcj-settings-products-per-page.php:43
12246
- msgid "After shop loop"
12247
- msgstr ""
12248
-
12249
- #: includes/settings/wcj-settings-products-per-page.php:47
12250
- msgid "Position Priority"
12251
- msgstr ""
12252
-
12253
- #: includes/settings/wcj-settings-products-per-page.php:54
12254
- msgid "Template - Before Form"
12255
- msgstr ""
12256
-
12257
- #: includes/settings/wcj-settings-products-per-page.php:61
12258
- msgid "Template - Form"
12259
- msgstr ""
12260
-
12261
- #: includes/settings/wcj-settings-products-per-page.php:68
12262
- msgid "Template - After Form"
12263
- msgstr ""
12264
-
12265
- #: includes/settings/wcj-settings-products-xml.php:32
12266
- msgid "Advanced: Block Size"
12267
- msgstr ""
12268
-
12269
- #: includes/settings/wcj-settings-products-xml.php:33
12270
- msgid ""
12271
- "If you have large number of products you may want to modify block size for "
12272
- "WP_Query call. Leave default value if not sure."
12273
- msgstr ""
12274
-
12275
- #: includes/settings/wcj-settings-products-xml.php:53
12276
- msgid "Create Now"
12277
- msgstr ""
12278
-
12279
- #: includes/settings/wcj-settings-products-xml.php:58
12280
- #, php-format
12281
- msgid "Recent file was created on %s"
12282
- msgstr ""
12283
-
12284
- #: includes/settings/wcj-settings-products-xml.php:65
12285
- msgid "XML File"
12286
- msgstr ""
12287
-
12288
- #: includes/settings/wcj-settings-products-xml.php:78
12289
- msgid "XML Header"
12290
- msgstr ""
12291
-
12292
- #: includes/settings/wcj-settings-products-xml.php:79
12293
- msgid "You can use shortcodes here. For example [wcj_current_datetime]."
12294
- msgstr ""
12295
-
12296
- #: includes/settings/wcj-settings-products-xml.php:86
12297
- msgid "XML Item"
12298
- msgstr ""
12299
-
12300
- #: includes/settings/wcj-settings-products-xml.php:88
12301
- #, php-format
12302
- msgid ""
12303
- "You can use shortcodes here. Please take a look at <a target=\"_blank\" href="
12304
- "\"%s\">Booster's products shortcodes</a>."
12305
- msgstr ""
12306
-
12307
- #: includes/settings/wcj-settings-products-xml.php:105
12308
- msgid "XML Footer"
12309
- msgstr ""
12310
-
12311
- #: includes/settings/wcj-settings-products-xml.php:113
12312
- msgid "XML File Path and Name"
12313
- msgstr ""
12314
-
12315
- #: includes/settings/wcj-settings-products-xml.php:114
12316
- msgid "Path on server:"
12317
- msgstr ""
12318
-
12319
- #: includes/settings/wcj-settings-products-xml.php:122
12320
- msgid "Update Period"
12321
- msgstr ""
12322
-
12323
- #: includes/settings/wcj-settings-products-xml.php:134
12324
- msgid ""
12325
- "Possible update periods are: every minute, hourly, twice daily, daily and "
12326
- "weekly."
12327
- msgstr ""
12328
-
12329
- #: includes/settings/wcj-settings-products-xml.php:139
12330
- msgid ""
12331
- "To include selected products only, enter products here. Leave blank to "
12332
- "include all products."
12333
- msgstr ""
12334
-
12335
- #: includes/settings/wcj-settings-products-xml.php:148
12336
- msgid ""
12337
- "To exclude selected products, enter products here. Leave blank to include "
12338
- "all products."
12339
- msgstr ""
12340
-
12341
- #: includes/settings/wcj-settings-products-xml.php:156
12342
- msgid "Categories to Include"
12343
- msgstr ""
12344
-
12345
- #: includes/settings/wcj-settings-products-xml.php:157
12346
- msgid ""
12347
- "To include products from selected categories only, enter categories here. "
12348
- "Leave blank to include all products."
12349
- msgstr ""
12350
-
12351
- #: includes/settings/wcj-settings-products-xml.php:165
12352
- msgid "Categories to Exclude"
12353
- msgstr ""
12354
-
12355
- #: includes/settings/wcj-settings-products-xml.php:166
12356
- msgid ""
12357
- "To exclude products from selected categories, enter categories here. Leave "
12358
- "blank to include all products."
12359
- msgstr ""
12360
-
12361
- #: includes/settings/wcj-settings-products-xml.php:174
12362
- msgid "Tags to Include"
12363
- msgstr ""
12364
-
12365
- #: includes/settings/wcj-settings-products-xml.php:175
12366
- msgid ""
12367
- "To include products from selected tags only, enter tags here. Leave blank to "
12368
- "include all products."
12369
- msgstr ""
12370
-
12371
- #: includes/settings/wcj-settings-products-xml.php:183
12372
- msgid "Tags to Exclude"
12373
- msgstr ""
12374
-
12375
- #: includes/settings/wcj-settings-products-xml.php:184
12376
- msgid ""
12377
- "To exclude products from selected tags, enter tags here. Leave blank to "
12378
- "include all products."
12379
- msgstr ""
12380
-
12381
- #: includes/settings/wcj-settings-products-xml.php:192
12382
- msgid "Products Scope"
12383
- msgstr ""
12384
-
12385
- #: includes/settings/wcj-settings-products-xml.php:198
12386
- msgid "Only products that are on sale"
12387
- msgstr ""
12388
-
12389
- #: includes/settings/wcj-settings-products-xml.php:200
12390
- msgid "Only products that are featured"
12391
- msgstr ""
12392
-
12393
- #: includes/settings/wcj-settings-products-xml.php:201
12394
- msgid "Only products that are not featured"
12395
- msgstr ""
12396
-
12397
- #: includes/settings/wcj-settings-purchase-data.php:15
12398
- msgid "Price Fields"
12399
- msgstr ""
12400
-
12401
- #: includes/settings/wcj-settings-purchase-data.php:17
12402
- #: includes/settings/wcj-settings-purchase-data.php:48
12403
- msgid ""
12404
- "This fields will be added to product's edit page and will be included in "
12405
- "product's purchase cost calculation."
12406
- msgstr ""
12407
-
12408
- #: includes/settings/wcj-settings-purchase-data.php:21
12409
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
12410
- msgid "Product cost (purchase) price"
12411
- msgstr ""
12412
-
12413
- #: includes/settings/wcj-settings-purchase-data.php:28
12414
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
12415
- msgid "Extra expenses (shipping etc.)"
12416
- msgstr ""
12417
-
12418
- #: includes/settings/wcj-settings-purchase-data.php:35
12419
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
12420
- msgid "Affiliate commission"
12421
- msgstr ""
12422
-
12423
- #: includes/settings/wcj-settings-purchase-data.php:46
12424
- msgid "Custom Price Fields"
12425
- msgstr ""
12426
-
12427
- #: includes/settings/wcj-settings-purchase-data.php:52
12428
- msgid "Total Custom Price Fields"
12429
- msgstr ""
12430
-
12431
- #: includes/settings/wcj-settings-purchase-data.php:64
12432
- msgid "Custom Price Field"
12433
- msgstr ""
12434
-
12435
- #: includes/settings/wcj-settings-purchase-data.php:96
12436
- msgid "Info Fields"
12437
- msgstr ""
12438
-
12439
- #: includes/settings/wcj-settings-purchase-data.php:98
12440
- msgid "This fields will be added to product's edit page."
12441
- msgstr ""
12442
-
12443
- #: includes/settings/wcj-settings-purchase-data.php:102
12444
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
12445
- msgid "(Last) Purchase date"
12446
- msgstr ""
12447
-
12448
- #: includes/settings/wcj-settings-purchase-data.php:109
12449
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
12450
- msgid "Seller"
12451
- msgstr ""
12452
-
12453
- #: includes/settings/wcj-settings-purchase-data.php:116
12454
- #: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
12455
- msgid "Purchase info"
12456
- msgstr ""
12457
-
12458
- #: includes/settings/wcj-settings-purchase-data.php:127
12459
- msgid "Admin Products List Custom Columns"
12460
- msgstr ""
12461
-
12462
- #: includes/settings/wcj-settings-purchase-data.php:129
12463
- msgid ""
12464
- "This section lets you add custom columns to WooCommerce admin products list."
12465
- msgstr ""
12466
-
12467
- #: includes/settings/wcj-settings-purchase-data.php:157
12468
- msgid ""
12469
- "This section lets you add custom columns to WooCommerce admin orders list."
12470
- msgstr ""
12471
-
12472
- #: includes/settings/wcj-settings-purchase-data.php:179
12473
- #: includes/settings/wcj-settings-sku.php:144
12474
- msgid "More Options"
12475
- msgstr ""
12476
-
12477
- #: includes/settings/wcj-settings-purchase-data.php:184
12478
- msgid "Treat Variable Products as Simple Products"
12479
- msgstr ""
12480
-
12481
- #: includes/settings/wcj-settings-related-products.php:13
12482
- msgid "Random"
12483
- msgstr ""
12484
-
12485
- #: includes/settings/wcj-settings-related-products.php:18
12486
- msgid "Meta Value"
12487
- msgstr ""
12488
-
12489
- #: includes/settings/wcj-settings-related-products.php:19
12490
- msgid "Meta Value (Numeric)"
12491
- msgstr ""
12492
-
12493
- #: includes/settings/wcj-settings-related-products.php:22
12494
- msgid "Modified"
12495
- msgstr ""
12496
-
12497
- #: includes/settings/wcj-settings-related-products.php:23
12498
- msgid "Menu order"
12499
- msgstr ""
12500
-
12501
- #: includes/settings/wcj-settings-related-products.php:33
12502
- msgid "Related Products Number"
12503
- msgstr ""
12504
-
12505
- #: includes/settings/wcj-settings-related-products.php:39
12506
- msgid "Related Products Columns"
12507
- msgstr ""
12508
-
12509
- #: includes/settings/wcj-settings-related-products.php:54
12510
- msgid "Order by"
12511
- msgstr ""
12512
-
12513
- #: includes/settings/wcj-settings-related-products.php:64
12514
- msgid "Meta Key"
12515
- msgstr ""
12516
-
12517
- #: includes/settings/wcj-settings-related-products.php:65
12518
- msgid ""
12519
- "Used only if order by \"Meta Value\" or \"Meta Value (Numeric)\" is selected "
12520
- "in \"Order by\"."
12521
- msgstr ""
12522
-
12523
- #: includes/settings/wcj-settings-related-products.php:75
12524
- msgid "Ignored if order by \"Random\" is selected in \"Order by\"."
12525
- msgstr ""
12526
-
12527
- #: includes/settings/wcj-settings-related-products.php:80
12528
- msgid "Ascending"
12529
- msgstr ""
12530
-
12531
- #: includes/settings/wcj-settings-related-products.php:81
12532
- msgid "Descending"
12533
- msgstr ""
12534
-
12535
- #: includes/settings/wcj-settings-related-products.php:89
12536
- msgid "Relate"
12537
- msgstr ""
12538
-
12539
- #: includes/settings/wcj-settings-related-products.php:94
12540
- msgid "Relate by Category"
12541
- msgstr ""
12542
-
12543
- #: includes/settings/wcj-settings-related-products.php:101
12544
- msgid "Relate by Tag"
12545
- msgstr ""
12546
-
12547
- #: includes/settings/wcj-settings-related-products.php:108
12548
- msgid "Relate by Product Attribute"
12549
- msgstr ""
12550
-
12551
- #: includes/settings/wcj-settings-related-products.php:115
12552
- msgid "Attribute Type"
12553
- msgstr ""
12554
-
12555
- #: includes/settings/wcj-settings-related-products.php:116
12556
- msgid ""
12557
- "If using \"Global Attribute\" enter attribute's <em>slug</em> in \"Attribute "
12558
- "Name\""
12559
- msgstr ""
12560
-
12561
- #: includes/settings/wcj-settings-related-products.php:121
12562
- msgid "Global Attribute"
12563
- msgstr ""
12564
-
12565
- #: includes/settings/wcj-settings-related-products.php:122
12566
- msgid "Local Attribute"
12567
- msgstr ""
12568
-
12569
- #: includes/settings/wcj-settings-related-products.php:126
12570
- msgid "Attribute Name"
12571
- msgstr ""
12572
-
12573
- #: includes/settings/wcj-settings-related-products.php:132
12574
- msgid "Attribute Value"
12575
- msgstr ""
12576
-
12577
- #: includes/settings/wcj-settings-related-products.php:138
12578
- msgid "Relate Manually"
12579
- msgstr ""
12580
-
12581
- #: includes/settings/wcj-settings-related-products.php:140
12582
- msgid "This will add metabox to each product's edit page."
12583
- msgstr ""
12584
-
12585
- #: includes/settings/wcj-settings-related-products.php:141
12586
- msgid ""
12587
- "You will be able to select related products manually for each product "
12588
- "individually. There is also an option to remove related products on per "
12589
- "product basis."
12590
- msgstr ""
12591
-
12592
- #: includes/settings/wcj-settings-related-products.php:158
12593
- msgid "Hide Related Products"
12594
- msgstr ""
12595
-
12596
- #: includes/settings/wcj-settings-reports.php:14
12597
- msgid "Product Sales (Daily)"
12598
- msgstr ""
12599
-
12600
- #: includes/settings/wcj-settings-reports.php:21
12601
- msgid "Report columns"
12602
- msgstr ""
12603
-
12604
- #: includes/settings/wcj-settings-reports.php:22
12605
- msgid "Set empty to include all columns."
12606
- msgstr ""
12607
-
12608
- #: includes/settings/wcj-settings-reports.php:30
12609
- msgid "Order statuses"
12610
- msgstr ""
12611
-
12612
- #: includes/settings/wcj-settings-reports.php:31
12613
- msgid "Set empty to include all statuses."
12614
- msgstr ""
12615
-
12616
- #: includes/settings/wcj-settings-reports.php:39
12617
- #: includes/settings/wcj-settings-reports.php:80
12618
- msgid "Include taxes"
12619
- msgstr ""
12620
-
12621
- #: includes/settings/wcj-settings-reports.php:46
12622
- #: includes/settings/wcj-settings-reports.php:87
12623
- msgid "Count variations for variable products"
12624
- msgstr ""
12625
-
12626
- #: includes/settings/wcj-settings-reports.php:52
12627
- msgid "Product Sales (Monthly)"
12628
- msgstr ""
12629
-
12630
- #: includes/settings/wcj-settings-reports.php:59
12631
- msgid "Display item sales"
12632
- msgstr ""
12633
-
12634
- #: includes/settings/wcj-settings-reports.php:66
12635
- msgid "Display sales sum"
12636
- msgstr ""
12637
-
12638
- #: includes/settings/wcj-settings-reports.php:73
12639
- msgid "Display profit"
12640
- msgstr ""
12641
-
12642
- #: includes/settings/wcj-settings-reports.php:93
12643
- msgid "Monthly Sales (with Currency Conversion)"
12644
- msgstr ""
12645
-
12646
- #: includes/settings/wcj-settings-reports.php:100
12647
- msgid "Include current day for current month"
12648
- msgstr ""
12649
-
12650
- #: includes/settings/wcj-settings-reports.php:107
12651
- msgid "Forecast total orders and sum (excl. TAX) for current month"
12652
- msgstr ""
12653
-
12654
- #: includes/settings/wcj-settings-reports.php:113
12655
- msgid "Customers by Country"
12656
- msgstr ""
12657
-
12658
- #: includes/settings/wcj-settings-reports.php:119
12659
- msgid "Customers by Country Sets"
12660
- msgstr ""
12661
-
12662
- #: includes/settings/wcj-settings-reports.php:125
12663
- msgid "All in Stock with sales data"
12664
- msgstr ""
12665
-
12666
- #: includes/settings/wcj-settings-reports.php:131
12667
- msgid "Understocked products (calculated by sales data)"
12668
- msgstr ""
12669
-
12670
- #: includes/settings/wcj-settings-reports.php:137
12671
- msgid "Overstocked products (calculated by sales data)"
12672
- msgstr ""
12673
-
12674
- #: includes/settings/wcj-settings-reports.php:145
12675
- msgid "Available Reports"
12676
- msgstr ""
12677
-
12678
- #: includes/settings/wcj-settings-reports.php:162
12679
- msgid "View report"
12680
- msgstr ""
12681
-
12682
- #: includes/settings/wcj-settings-shipping-by-user-role.php:14
12683
- msgid "Shipping Methods"
12684
- msgstr ""
12685
-
12686
- #: includes/settings/wcj-settings-shipping-calculator.php:14
12687
- msgid "Shipping Calculator Options"
12688
- msgstr ""
12689
-
12690
- #: includes/settings/wcj-settings-shipping-calculator.php:19
12691
- msgid "Enable City"
12692
- msgstr ""
12693
-
12694
- #: includes/settings/wcj-settings-shipping-calculator.php:26
12695
- msgid "Enable Postcode"
12696
- msgstr ""
12697
-
12698
- #: includes/settings/wcj-settings-shipping-calculator.php:33
12699
- msgid "Enable State"
12700
- msgstr ""
12701
-
12702
- #: includes/settings/wcj-settings-shipping-calculator.php:40
12703
- msgid "Force Block Open"
12704
- msgstr ""
12705
-
12706
- #: includes/settings/wcj-settings-shipping-calculator.php:48
12707
- msgid "Calculate Shipping button"
12708
- msgstr ""
12709
-
12710
- #: includes/settings/wcj-settings-shipping-calculator.php:49
12711
- msgid ""
12712
- "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
12713
- "options."
12714
- msgstr ""
12715
-
12716
- #: includes/settings/wcj-settings-shipping-calculator.php:55
12717
- msgid "Make non clickable"
12718
- msgstr ""
12719
-
12720
- #: includes/settings/wcj-settings-shipping-calculator.php:63
12721
- msgid "Labels Options"
12722
- msgstr ""
12723
-
12724
- #: includes/settings/wcj-settings-shipping-calculator.php:68
12725
- msgid "Labels"
12726
- msgstr ""
12727
-
12728
- #: includes/settings/wcj-settings-shipping-calculator.php:77
12729
- msgid "Label for Calculate Shipping"
12730
- msgstr ""
12731
-
12732
- #: includes/settings/wcj-settings-shipping-calculator.php:79
12733
- msgid "Calculate Shipping"
12734
- msgstr ""
12735
-
12736
- #: includes/settings/wcj-settings-shipping-calculator.php:85
12737
- msgid "Label for Update Totals"
12738
- msgstr ""
12739
-
12740
- #: includes/settings/wcj-settings-shipping-calculator.php:87
12741
- msgid "Update Totals"
12742
- msgstr ""
12743
-
12744
- #: includes/settings/wcj-settings-shipping-options.php:14
12745
- msgid "Hide if Free Shipping is Available"
12746
- msgstr ""
12747
-
12748
- #: includes/settings/wcj-settings-shipping-options.php:16
12749
- msgid ""
12750
- "This section lets you hide other shipping options when free shipping is "
12751
- "available on shop frontend."
12752
- msgstr ""
12753
-
12754
- #: includes/settings/wcj-settings-shipping-options.php:20
12755
- msgid "Hide when free is available"
12756
- msgstr ""
12757
-
12758
- #: includes/settings/wcj-settings-shipping-options.php:46
12759
- #: includes/settings/wcj-settings-shipping-options.php:52
12760
- msgid "Free Shipping by Product"
12761
- msgstr ""
12762
-
12763
- #: includes/settings/wcj-settings-shipping-options.php:47
12764
- msgid ""
12765
- "In this section you can select products which grant free shipping when added "
12766
- "to cart."
12767
- msgstr ""
12768
-
12769
- #: includes/settings/wcj-settings-shipping-options.php:68
12770
- msgid ""
12771
- "Select either <strong>all products</strong> or <strong>at least one product</"
12772
- "strong> in cart must grant free shipping."
12773
- msgstr ""
12774
-
12775
- #: includes/settings/wcj-settings-shipping-options.php:73
12776
- msgid "All products in cart must grant free shipping"
12777
- msgstr ""
12778
-
12779
- #: includes/settings/wcj-settings-shipping-options.php:74
12780
- msgid "At least one product in cart must grant free shipping"
12781
- msgstr ""
12782
-
12783
- #: includes/settings/wcj-settings-shipping-options.php:86
12784
- #: includes/settings/wcj-settings-shipping-options.php:92
12785
- msgid "Shipping Descriptions"
12786
- msgstr ""
12787
-
12788
- #: includes/settings/wcj-settings-shipping-options.php:88
12789
- #, php-format
12790
- msgid ""
12791
- "This section will allow you to add any text (e.g. description) for shipping "
12792
- "method. Text will be visible on cart and checkout pages. You can add HTML "
12793
- "tags here, e.g. try \"%s\""
12794
- msgstr ""
12795
-
12796
- #: includes/settings/wcj-settings-shipping-options.php:99
12797
- msgid "Description Visibility"
12798
- msgstr ""
12799
-
12800
- #: includes/settings/wcj-settings-shipping-options.php:104
12801
- #: includes/settings/wcj-settings-shipping-options.php:160
12802
- msgid "On both cart and checkout pages"
12803
- msgstr ""
12804
-
12805
- #: includes/settings/wcj-settings-shipping-options.php:105
12806
- #: includes/settings/wcj-settings-shipping-options.php:161
12807
- msgid "Only on cart page"
12808
- msgstr ""
12809
-
12810
- #: includes/settings/wcj-settings-shipping-options.php:106
12811
- #: includes/settings/wcj-settings-shipping-options.php:162
12812
- msgid "Only on checkout page"
12813
- msgstr ""
12814
-
12815
- #: includes/settings/wcj-settings-shipping-options.php:108
12816
- #: includes/settings/wcj-settings-shipping-options.php:164
12817
- msgid ""
12818
- "Possible values: on both cart and checkout pages; only on cart page; only on "
12819
- "checkout page"
12820
- msgstr ""
12821
-
12822
- #: includes/settings/wcj-settings-shipping-options.php:132
12823
- #: includes/settings/wcj-settings-shipping-options.php:138
12824
- msgid "Shipping Icons"
12825
- msgstr ""
12826
-
12827
- #: includes/settings/wcj-settings-shipping-options.php:134
12828
- msgid ""
12829
- "This section will allow you to add icons for shipping method. Icons will be "
12830
- "visible on cart and checkout pages."
12831
- msgstr ""
12832
-
12833
- #: includes/settings/wcj-settings-shipping-options.php:145
12834
- msgid "Icon Position"
12835
- msgstr ""
12836
-
12837
- #: includes/settings/wcj-settings-shipping-options.php:150
12838
- msgid "Before label"
12839
- msgstr ""
12840
-
12841
- #: includes/settings/wcj-settings-shipping-options.php:151
12842
- msgid "After label"
12843
- msgstr ""
12844
-
12845
- #: includes/settings/wcj-settings-shipping-options.php:155
12846
- msgid "Icon Visibility"
12847
- msgstr ""
12848
-
12849
- #: includes/settings/wcj-settings-shipping-options.php:169
12850
- msgid "Icon Style"
12851
- msgstr ""
12852
-
12853
- #: includes/settings/wcj-settings-shipping-options.php:170
12854
- msgid ""
12855
- "You can also style icons with CSS class \"wcj_shipping_icon\", or id "
12856
- "\"wcj_shipping_icon_method_id\""
12857
- msgstr ""
12858
-
12859
- #: includes/settings/wcj-settings-shipping.php:13
12860
- msgid "WooCommerce > Settings > Shipping"
12861
- msgstr ""
12862
-
12863
- #: includes/settings/wcj-settings-shipping.php:19
12864
- msgid "This section lets you add custom shipping method."
12865
- msgstr ""
12866
-
12867
- #: includes/settings/wcj-settings-shipping.php:20
12868
- #, php-format
12869
- msgid "Visit %s to set method's options."
12870
- msgstr ""
12871
-
12872
- #: includes/settings/wcj-settings-shipping.php:30
12873
- msgid "Admin Title"
12874
- msgstr ""
12875
-
12876
- #: includes/settings/wcj-settings-shipping.php:32
12877
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:49
12878
- msgid "Booster: Custom Shipping"
12879
- msgstr ""
12880
-
12881
- #: includes/settings/wcj-settings-shipping.php:43
12882
- msgid "Custom Shipping (Legacy - without Shipping Zones)"
12883
- msgstr ""
12884
-
12885
- #: includes/settings/wcj-settings-shipping.php:46
12886
- msgid "This section lets you set number of custom shipping methods to add."
12887
- msgstr ""
12888
-
12889
- #: includes/settings/wcj-settings-shipping.php:47
12890
- #, php-format
12891
- msgid "After setting the number, visit %s to set each method options."
12892
- msgstr ""
12893
-
12894
- #: includes/settings/wcj-settings-shipping.php:50
12895
- msgid "Custom Shipping Methods Number"
12896
- msgstr ""
12897
-
12898
- #: includes/settings/wcj-settings-shipping.php:61
12899
- msgid "Admin Title Custom Shipping"
12900
- msgstr ""
12901
-
12902
- #: includes/settings/wcj-settings-sku.php:16
12903
- msgid "SKU Format Options"
12904
- msgstr ""
12905
-
12906
- #: includes/settings/wcj-settings-sku.php:26
12907
- msgid "From product ID"
12908
- msgstr ""
12909
-
12910
- #: includes/settings/wcj-settings-sku.php:30
12911
- msgid "Possible values: from product ID, sequential or pseudorandom."
12912
- msgstr ""
12913
-
12914
- #: includes/settings/wcj-settings-sku.php:35
12915
- msgid "Sequential Number Generation - Counter"
12916
- msgstr ""
12917
-
12918
- #: includes/settings/wcj-settings-sku.php:46
12919
- msgid "Sequential Number Generation - By Category"
12920
- msgstr ""
12921
-
12922
- #: includes/settings/wcj-settings-sku.php:61
12923
- msgid "Minimum Number Length"
12924
- msgstr ""
12925
-
12926
- #: includes/settings/wcj-settings-sku.php:73
12927
- msgid "Template"
12928
- msgstr ""
12929
-
12930
- #: includes/settings/wcj-settings-sku.php:81
12931
- msgid "Variable Products Variations"
12932
- msgstr ""
12933
-
12934
- #: includes/settings/wcj-settings-sku.php:82
12935
- msgid ""
12936
- "Please note, that on new variable product creation, variations will get same "
12937
- "SKUs as parent product, and if you want variations to have different SKUs, "
12938
- "you will need to run \"Autogenerate SKUs\" tool manually."
12939
- msgstr ""
12940
-
12941
- #: includes/settings/wcj-settings-sku.php:87
12942
- msgid "SKU same as parent's product"
12943
- msgstr ""
12944
-
12945
- #: includes/settings/wcj-settings-sku.php:88
12946
- msgid "Generate different SKU for each variation"
12947
- msgstr ""
12948
-
12949
- #: includes/settings/wcj-settings-sku.php:89
12950
- msgid "SKU same as parent's product + variation letter suffix"
12951
- msgstr ""
12952
-
12953
- #: includes/settings/wcj-settings-sku.php:101
12954
- msgid "Categories Options"
12955
- msgstr ""
12956
-
12957
- #: includes/settings/wcj-settings-sku.php:128
12958
- msgid "Counter (Sequential)"
12959
- msgstr ""
12960
-
12961
- #: includes/settings/wcj-settings-sku.php:149
12962
- msgid "Automatically Generate SKU for New Products"
12963
- msgstr ""
12964
-
12965
- #: includes/settings/wcj-settings-sku.php:151
12966
- msgid "Alternatively you can use Autogenerate SKUs tool."
12967
- msgstr ""
12968
-
12969
- #: includes/settings/wcj-settings-sku.php:157
12970
- msgid "Allow Duplicate SKUs"
12971
- msgstr ""
12972
-
12973
- #: includes/settings/wcj-settings-sku.php:164
12974
- msgid "Search by SKU"
12975
- msgstr ""
12976
-
12977
- #: includes/settings/wcj-settings-sku.php:166
12978
- msgid "Add product searching by SKU on frontend."
12979
- msgstr ""
12980
-
12981
- #: includes/settings/wcj-settings-sku.php:172
12982
- msgid "Generate SKUs Only for Products with Empty SKU"
12983
- msgstr ""
12984
-
12985
- #: includes/settings/wcj-settings-sku.php:179
12986
- msgid "Add SKU to Customer Emails"
12987
- msgstr ""
12988
-
12989
- #: includes/settings/wcj-settings-sku.php:186
12990
- msgid "Disable SKUs"
12991
- msgstr ""
12992
-
12993
- #: includes/settings/wcj-settings-sorting.php:14
12994
- msgid "Add Custom Sorting"
12995
- msgstr ""
12996
-
12997
- #: includes/settings/wcj-settings-sorting.php:19
12998
- msgid "Add More Sorting"
12999
- msgstr ""
13000
-
13001
- #: includes/settings/wcj-settings-sorting.php:26
13002
- msgid "Sort by Name"
13003
- msgstr ""
13004
-
13005
- #: includes/settings/wcj-settings-sorting.php:27
13006
- #: includes/settings/wcj-settings-sorting.php:30
13007
- msgid "Sort by title: A to Z"
13008
- msgstr ""
13009
-
13010
- #: includes/settings/wcj-settings-sorting.php:28
13011
- #: includes/settings/wcj-settings-sorting.php:37
13012
- #: includes/settings/wcj-settings-sorting.php:46
13013
- #: includes/settings/wcj-settings-sorting.php:55
13014
- #: includes/settings/wcj-settings-sorting.php:73
13015
- #: includes/settings/wcj-settings-sorting.php:82
13016
- msgid "Text to show on frontend. Leave blank to disable."
13017
- msgstr ""
13018
-
13019
- #: includes/settings/wcj-settings-sorting.php:36
13020
- #: includes/settings/wcj-settings-sorting.php:39
13021
- msgid "Sort by title: Z to A"
13022
- msgstr ""
13023
-
13024
- #: includes/settings/wcj-settings-sorting.php:44
13025
- msgid "Sort by SKU"
13026
- msgstr ""
13027
-
13028
- #: includes/settings/wcj-settings-sorting.php:45
13029
- #: includes/settings/wcj-settings-sorting.php:48
13030
- msgid "Sort by SKU: low to high"
13031
- msgstr ""
13032
-
13033
- #: includes/settings/wcj-settings-sorting.php:54
13034
- #: includes/settings/wcj-settings-sorting.php:57
13035
- msgid "Sort by SKU: high to low"
13036
- msgstr ""
13037
-
13038
- #: includes/settings/wcj-settings-sorting.php:63
13039
- msgid "Sort SKUs as numbers instead of as texts"
13040
- msgstr ""
13041
-
13042
- #: includes/settings/wcj-settings-sorting.php:71
13043
- msgid "Sort by stock quantity"
13044
- msgstr ""
13045
-
13046
- #: includes/settings/wcj-settings-sorting.php:72
13047
- #: includes/settings/wcj-settings-sorting.php:75
13048
- msgid "Sort by stock quantity: low to high"
13049
- msgstr ""
13050
-
13051
- #: includes/settings/wcj-settings-sorting.php:81
13052
- #: includes/settings/wcj-settings-sorting.php:84
13053
- msgid "Sort by stock quantity: high to low"
13054
- msgstr ""
13055
-
13056
- #: includes/settings/wcj-settings-sorting.php:93
13057
- #: includes/settings/wcj-settings-sorting.php:98
13058
- #: includes/settings/wcj-settings-sorting.php:105
13059
- msgid "Rearrange Sorting"
13060
- msgstr ""
13061
-
13062
- #: includes/settings/wcj-settings-sorting.php:107
13063
- msgid "Default:"
13064
- msgstr ""
13065
-
13066
- #: includes/settings/wcj-settings-sorting.php:117
13067
- msgid "Default WooCommerce Sorting"
13068
- msgstr ""
13069
-
13070
- #: includes/settings/wcj-settings-sorting.php:122
13071
- msgid "Default Sorting Options"
13072
- msgstr ""
13073
-
13074
- #: includes/settings/wcj-settings-sorting.php:156
13075
- #: includes/settings/wcj-settings-sorting.php:161
13076
- msgid "Remove All Sorting"
13077
- msgstr ""
13078
-
13079
- #: includes/settings/wcj-settings-sorting.php:162
13080
- msgid "Remove all sorting (including WooCommerce default) from shop's frontend"
13081
- msgstr ""
13082
-
13083
- #: includes/settings/wcj-settings-stock.php:17
13084
- msgid "Custom Out of Stock Options"
13085
- msgstr ""
13086
-
13087
- #: includes/settings/wcj-settings-stock.php:22
13088
- msgid "Custom Out of Stock"
13089
- msgstr ""
13090
-
13091
- #: includes/settings/wcj-settings-stock.php:29
13092
- msgid "Custom Out of Stock HTML"
13093
- msgstr ""
13094
-
13095
- #: includes/settings/wcj-settings-stock.php:42
13096
- msgid "Custom Out of Stock Class"
13097
- msgstr ""
13098
-
13099
- #: includes/settings/wcj-settings-url-coupons.php:15
13100
- #, php-format
13101
- msgid ""
13102
- "Additionally you can hide standard coupon field on cart page in Booster's <a "
13103
- "href=\"%s\">Cart Customization</a> module."
13104
- msgstr ""
13105
-
13106
- #: includes/settings/wcj-settings-url-coupons.php:21
13107
- msgid "URL Coupons Key"
13108
- msgstr ""
13109
-
13110
- #: includes/settings/wcj-settings-url-coupons.php:22
13111
- msgid ""
13112
- "URL key. If you change this, make sure it's unique and is not used anywhere "
13113
- "on your site (e.g. by another plugin)."
13114
- msgstr ""
13115
-
13116
- #: includes/settings/wcj-settings-url-coupons.php:23
13117
- #, php-format
13118
- msgid ""
13119
- "Your users can apply shop's standard coupons, by visiting URL. E.g.: %s."
13120
- msgstr ""
13121
-
13122
- #: includes/settings/wcj-settings-url-coupons.php:30
13123
- msgid "Redirect URL"
13124
- msgstr ""
13125
-
13126
- #: includes/settings/wcj-settings-url-coupons.php:31
13127
- msgid ""
13128
- "Possible values: No redirect; redirect to cart; redirect to checkout; "
13129
- "redirect to custom local URL."
13130
- msgstr ""
13131
-
13132
- #: includes/settings/wcj-settings-url-coupons.php:36
13133
- msgid "No redirect"
13134
- msgstr ""
13135
-
13136
- #: includes/settings/wcj-settings-url-coupons.php:37
13137
- msgid "Redirect to cart"
13138
- msgstr ""
13139
-
13140
- #: includes/settings/wcj-settings-url-coupons.php:38
13141
- msgid "Redirect to checkout"
13142
- msgstr ""
13143
-
13144
- #: includes/settings/wcj-settings-url-coupons.php:39
13145
- msgid "Redirect to custom local URL"
13146
- msgstr ""
13147
-
13148
- #: includes/settings/wcj-settings-url-coupons.php:45
13149
- msgid "Custom Local URL"
13150
- msgstr ""
13151
-
13152
- #: includes/settings/wcj-settings-url-coupons.php:52
13153
- msgid "\"Fixed product discount\" Coupons"
13154
- msgstr ""
13155
-
13156
- #: includes/settings/wcj-settings-url-coupons.php:53
13157
- msgid "Automatically add coupon's products to the cart"
13158
- msgstr ""
13159
-
13160
- #: includes/settings/wcj-settings-wholesale-price.php:17
13161
- msgid ""
13162
- "Wholesale Price Levels Options. If you want to display prices table on "
13163
- "frontend, use [wcj_product_wholesale_price_table] shortcode."
13164
- msgstr ""
13165
-
13166
- #: includes/settings/wcj-settings-wholesale-price.php:21
13167
- msgid "Enable per Product"
13168
- msgstr ""
13169
-
13170
- #: includes/settings/wcj-settings-wholesale-price.php:28
13171
- msgid "Use total cart quantity instead of product quantity"
13172
- msgstr ""
13173
-
13174
- #: includes/settings/wcj-settings-wholesale-price.php:35
13175
- msgid "Apply wholesale discount only if no other cart discounts were applied"
13176
- msgstr ""
13177
-
13178
- #: includes/settings/wcj-settings-wholesale-price.php:42
13179
- msgid "Show discount info on cart page"
13180
- msgstr ""
13181
-
13182
- #: includes/settings/wcj-settings-wholesale-price.php:49
13183
- msgid "If show discount info on cart page is enabled, set format here"
13184
- msgstr ""
13185
-
13186
- #: includes/settings/wcj-settings-wholesale-price.php:50
13187
- msgid "Replaced values: %old_price%, %price%, %discount_value%."
13188
- msgstr ""
13189
-
13190
- #: includes/settings/wcj-settings-wholesale-price.php:57
13191
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
13192
- msgid "Discount Type"
13193
- msgstr ""
13194
-
13195
- #: includes/settings/wcj-settings-wholesale-price.php:67
13196
- msgid "Products to include"
13197
- msgstr ""
13198
-
13199
- #: includes/settings/wcj-settings-wholesale-price.php:68
13200
- msgid "Leave blank to include all products."
13201
- msgstr ""
13202
-
13203
- #: includes/settings/wcj-settings-wholesale-price.php:76
13204
- msgid "Products to exclude"
13205
- msgstr ""
13206
-
13207
- #: includes/settings/wcj-settings-wholesale-price.php:88
13208
- msgid "Wholesale Levels Options"
13209
- msgstr ""
13210
-
13211
- #: includes/settings/wcj-settings-wholesale-price.php:93
13212
- #: includes/settings/wcj-settings-wholesale-price.php:150
13213
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
13214
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
13215
- msgid "Number of levels"
13216
- msgstr ""
13217
-
13218
- #: includes/settings/wcj-settings-wholesale-price.php:107
13219
- #: includes/settings/wcj-settings-wholesale-price.php:164
13220
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
13221
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
13222
- msgid "Min quantity"
13223
- msgstr ""
13224
-
13225
- #: includes/settings/wcj-settings-wholesale-price.php:108
13226
- #: includes/settings/wcj-settings-wholesale-price.php:165
13227
- msgid "Minimum quantity to apply discount"
13228
- msgstr ""
13229
-
13230
- #: includes/settings/wcj-settings-wholesale-price.php:115
13231
- #: includes/settings/wcj-settings-wholesale-price.php:116
13232
- #: includes/settings/wcj-settings-wholesale-price.php:172
13233
- #: includes/settings/wcj-settings-wholesale-price.php:173
13234
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
13235
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
13236
- msgid "Discount"
13237
- msgstr ""
13238
-
13239
- #: includes/settings/wcj-settings-wholesale-price.php:130
13240
- msgid "Additional User Roles Options"
13241
- msgstr ""
13242
-
13243
- #: includes/settings/wcj-settings-wholesale-price.php:132
13244
- msgid ""
13245
- "If you want to set different wholesale pricing options for different user "
13246
- "roles, fill this section. Please note that you can also use Booster's "
13247
- "\"Price by User Role\" module without filling this section."
13248
- msgstr ""
13249
-
13250
- #: includes/settings/wcj-settings-wholesale-price.php:136
13251
- msgid "User Roles Settings"
13252
- msgstr ""
13253
-
13254
- #: includes/settings/wcj-settings-wpml.php:26
13255
- #: includes/settings/wcj-settings-wpml.php:28
13256
- msgid "Regenerate wpml-config.xml file"
13257
- msgstr ""
13258
-
13259
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
13260
- msgid "Goal"
13261
- msgstr ""
13262
-
13263
- #: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
13264
- msgid "Deadline"
13265
- msgstr ""
13266
-
13267
- #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:24
13268
- #: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
13269
- msgid "Product Currency"
13270
- msgstr ""
13271
-
13272
- #: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:26
13273
- msgid "Update product after you change this field's value."
13274
- msgstr ""
13275
-
13276
- #: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
13277
- msgid "Add CSS"
13278
- msgstr ""
13279
-
13280
- #: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
13281
- msgid "PayPal Email"
13282
- msgstr ""
13283
-
13284
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
13285
- msgid "Enable Offer Price"
13286
- msgstr ""
13287
-
13288
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
13289
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
13290
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
13291
- #: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
13292
- msgid "Leave blank to use global value."
13293
- msgstr ""
13294
-
13295
- #: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
13296
- msgid "Save order after you change this field."
13297
- msgstr ""
13298
-
13299
- #: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:27
13300
- msgid "Per Product Settings (press Update after changing)"
13301
- msgstr ""
13302
-
13303
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
13304
- msgid "Add to Cart Local Redirect URL"
13305
- msgstr ""
13306
-
13307
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:59
13308
- msgid "Disable Add to Cart Button (Single Product Page)"
13309
- msgstr ""
13310
-
13311
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:69
13312
- msgid "Disable Add to Cart Button (Category/Archives)"
13313
- msgstr ""
13314
-
13315
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:79
13316
- msgid "Custom Add to Cart Button URL (Category/Archives)"
13317
- msgstr ""
13318
-
13319
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:90
13320
- msgid "As shop default (no changes)"
13321
- msgstr ""
13322
-
13323
- #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:94
13324
- msgid "Disable Add to Cart Button AJAX"
13325
- msgstr ""
13326
-
13327
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
13328
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
13329
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
13330
- msgid "Save product after you change this number."
13331
- msgstr ""
13332
-
13333
- #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:83
13334
- msgid "Is required"
13335
- msgstr ""
13336
-
13337
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-country.php:14
13338
- msgid "Visible in Countries"
13339
- msgstr ""
13340
-
13341
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:14
13342
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
13343
- msgid "Enable/Disable per Product Settings"
13344
- msgstr ""
13345
-
13346
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-user-role.php:19
13347
- msgid "Visible for User Roles"
13348
- msgstr ""
13349
-
13350
- #: includes/settings/meta-box/wcj-settings-meta-box-product-by-user-role.php:20
13351
- msgid "Hold Control (Ctrl) key to select multiple roles."
13352
- msgstr ""
13353
-
13354
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
13355
- msgid "Replace image with custom HTML on single product page"
13356
- msgstr ""
13357
-
13358
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:24
13359
- msgid "Replace image with custom HTML on archives"
13360
- msgstr ""
13361
-
13362
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:35
13363
- msgid "Hide Image on Single"
13364
- msgstr ""
13365
-
13366
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:45
13367
- msgid "Hide Thumbnails on Single"
13368
- msgstr ""
13369
-
13370
- #: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:55
13371
- msgid "Hide Image on Archives"
13372
- msgstr ""
13373
-
13374
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
13375
- msgid "Min Price"
13376
- msgstr ""
13377
-
13378
- #: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
13379
- msgid "Max Price"
13380
- msgstr ""
13381
-
13382
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
13383
- msgid ""
13384
- "'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
13385
- "Products' option is checked in module's settings."
13386
- msgstr ""
13387
-
13388
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
13389
- msgid "Use values below"
13390
- msgstr ""
13391
-
13392
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
13393
- msgid "Use default values"
13394
- msgstr ""
13395
-
13396
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
13397
- msgid "Calculation"
13398
- msgstr ""
13399
-
13400
- #: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
13401
- msgid "Number of Parameters"
13402
- msgstr ""
13403
-
13404
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:18
13405
- msgid ""
13406
- "If enabled and no products selected - will hide related products section on "
13407
- "frontend for current product."
13408
- msgstr ""
13409
-
13410
- #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:29
13411
- msgid "Hold Control (Ctrl) key to select multiple products."
13412
- msgstr ""
13413
-
13414
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
13415
- msgid "Price directly"
13416
- msgstr ""
13417
-
13418
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
13419
- msgid "Enable per Product Levels"
13420
- msgstr ""
13421
-
13422
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
13423
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
13424
- msgid ""
13425
- "Free Booster's version is limited to one level maximum. Please visit http://"
13426
- "booster.io to get full version."
13427
- msgstr ""
13428
-
13429
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
13430
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
13431
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
13432
- #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
13433
- msgid "Level"
13434
- msgstr ""
13435
-
13436
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:50
13437
- #: includes/shipping/class-wc-shipping-wcj-custom.php:47
13438
- msgid "Booster: Custom Shipping Method"
13439
- msgstr ""
13440
-
13441
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:98
13442
- #: includes/shipping/class-wc-shipping-wcj-custom.php:166
13443
- msgid "Max Weight or Quantity"
13444
- msgstr ""
13445
-
13446
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:147
13447
- #: includes/shipping/class-wc-shipping-wcj-custom.php:100
13448
- msgid "Flat Rate"
13449
- msgstr ""
13450
-
13451
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:148
13452
- #: includes/shipping/class-wc-shipping-wcj-custom.php:101
13453
- msgid "By Total Cart Weight"
13454
- msgstr ""
13455
-
13456
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:149
13457
- #: includes/shipping/class-wc-shipping-wcj-custom.php:102
13458
- msgid "By Total Cart Weight Table"
13459
- msgstr ""
13460
-
13461
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:150
13462
- #: includes/shipping/class-wc-shipping-wcj-custom.php:103
13463
- msgid "By Total Cart Quantity"
13464
- msgstr ""
13465
-
13466
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:153
13467
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
13468
- #: includes/shipping/class-wc-shipping-wcj-custom.php:106
13469
- #: includes/shipping/class-wc-shipping-wcj-custom.php:125
13470
- msgid "By Total Cart Quantity Table"
13471
- msgstr ""
13472
-
13473
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
13474
- #: includes/shipping/class-wc-shipping-wcj-custom.php:125
13475
- msgid "Cost calculation type."
13476
- msgstr ""
13477
-
13478
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:174
13479
- #: includes/shipping/class-wc-shipping-wcj-custom.php:133
13480
- msgid ""
13481
- "Cost. If calculating by weight - then cost per one weight unit. If "
13482
- "calculating by quantity - then cost per one piece."
13483
- msgstr ""
13484
-
13485
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:180
13486
- #: includes/shipping/class-wc-shipping-wcj-custom.php:139
13487
- msgid "Min Weight"
13488
- msgstr ""
13489
-
13490
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:182
13491
- #: includes/shipping/class-wc-shipping-wcj-custom.php:141
13492
- msgid "Minimum total cart weight. Set zero to disable."
13493
- msgstr ""
13494
-
13495
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:188
13496
- #: includes/shipping/class-wc-shipping-wcj-custom.php:147
13497
- msgid "Max Weight"
13498
- msgstr ""
13499
-
13500
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:190
13501
- #: includes/shipping/class-wc-shipping-wcj-custom.php:149
13502
- msgid "Maximum total cart weight. Set zero to disable."
13503
- msgstr ""
13504
-
13505
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:196
13506
- #: includes/shipping/class-wc-shipping-wcj-custom.php:155
13507
- msgid "Table Total Rows"
13508
- msgstr ""
13509
-
13510
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:198
13511
- msgid ""
13512
- "Press \"Save changes\" and reload the page after you change this number."
13513
- msgstr ""
13514
-
13515
- #: includes/shipping/class-wc-shipping-wcj-custom.php:112
13516
- msgid "Enable Custom Shipping"
13517
- msgstr ""
13518
-
13519
- #: includes/shortcodes/class-wcj-general-shortcodes.php:128
13520
- #: includes/shortcodes/class-wcj-shortcodes.php:107
13521
- #, php-format
13522
- msgid "\"%s\" module is not enabled!"
13523
- msgstr ""
13524
-
13525
- #: includes/shortcodes/class-wcj-input-field-shortcodes.php:50
13526
- msgid "Attribute \"name\" is required!"
13527
- msgstr ""
13528
-
13529
- #: includes/shortcodes/class-wcj-order-items-shortcodes.php:213
13530
- msgid "Standard"
13531
- msgstr ""
13532
-
13533
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:98
13534
- msgid "Dollars"
13535
- msgstr ""
13536
-
13537
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:99
13538
- msgid "Cents"
13539
- msgstr ""
13540
-
13541
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:53
13542
- msgid "Product by User"
13543
- msgstr ""
13544
-
13545
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:166
13546
- msgid "Title is required!"
13547
- msgstr ""
13548
-
13549
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:174
13550
- msgid "Product exists!"
13551
- msgstr ""
13552
-
13553
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:184
13554
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:399
13555
- msgid "Product URL"
13556
- msgstr ""
13557
-
13558
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:200
13559
- #, php-format
13560
- msgid "%s is required!"
13561
- msgstr ""
13562
-
13563
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:206
13564
- msgid "Sale price must be less than the regular price!"
13565
- msgstr ""
13566
-
13567
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:283
13568
- msgid "Error!"
13569
- msgstr ""
13570
-
13571
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:325
13572
- msgid "Add New Product"
13573
- msgstr ""
13574
-
13575
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:325
13576
- msgid "Edit Product"
13577
- msgstr ""
13578
-
13579
- #: includes/shortcodes/class-wcj-products-shortcodes.php:270
13580
- #, php-format
13581
- msgid "%s ago"
13582
- msgstr ""
13583
-
13584
- #: includes/shortcodes/class-wcj-products-shortcodes.php:286
13585
- msgid "No sales yet."
13586
- msgstr ""
13587
-
13588
- #: includes/shortcodes/class-wcj-shortcodes.php:79
13589
- msgid "Wrong user role!"
13590
- msgstr ""
13591
-
13592
- #: includes/templates/wcj-add-to-cart-variable.php:24
13593
- msgid "This product is currently out of stock and unavailable."
13594
- msgstr ""
13595
-
13596
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:41
13597
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:68
13598
- msgid "VAT"
13599
- msgstr ""
13600
-
13601
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
13602
- msgid "Add EU Countries VAT Rates"
13603
- msgstr ""
13604
-
13605
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
13606
- msgid "Note: will add duplicates."
13607
- msgstr ""
13608
-
13609
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:83
13610
- msgid "List of EU VAT rates to be added"
13611
- msgstr ""
13612
-
13613
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:89
13614
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:103
13615
- msgid "Rate"
13616
- msgstr ""
13617
-
13618
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:97
13619
- msgid "Current standard tax rates"
13620
- msgstr ""
13621
-
13622
- #: includes/widgets/class-wcj-widget-country-switcher.php:22
13623
- msgid "Booster: Country Switcher Widget"
13624
- msgstr ""
13625
-
13626
- #: includes/widgets/class-wcj-widget-country-switcher.php:24
13627
- msgid "Booster - Country Switcher"
13628
- msgstr ""
13629
-
13630
- #: includes/widgets/class-wcj-widget-country-switcher.php:41
13631
- msgid "Prices and Currencies by Country module not enabled!"
13632
- msgstr ""
13633
-
13634
- #: includes/widgets/class-wcj-widget-country-switcher.php:43
13635
- msgid "Customer Country Detection Method must include \"by user selection\"!"
13636
- msgstr ""
13637
-
13638
- #: includes/widgets/class-wcj-widget-country-switcher.php:78
13639
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:54
13640
- #: includes/widgets/class-wcj-widget-multicurrency.php:70
13641
- msgid "Title:"
13642
- msgstr ""
13643
-
13644
- #: includes/widgets/class-wcj-widget-country-switcher.php:82
13645
- msgid "Countries:"
13646
- msgstr ""
13647
-
13648
- #: includes/widgets/class-wcj-widget-country-switcher.php:86
13649
- msgid "Replace with currency:"
13650
- msgstr ""
13651
-
13652
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:22
13653
- msgid "Booster: Left to Free Shipping Widget"
13654
- msgstr ""
13655
-
13656
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:24
13657
- msgid "Booster - Left to Free Shipping"
13658
- msgstr ""
13659
-
13660
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:56
13661
- msgid "Content:"
13662
- msgstr ""
13663
-
13664
- #: includes/widgets/class-wcj-widget-multicurrency.php:22
13665
- msgid "Booster: Multicurrency Switcher Widget"
13666
- msgstr ""
13667
-
13668
- #: includes/widgets/class-wcj-widget-multicurrency.php:24
13669
- msgid "Booster - Multicurrency Switcher"
13670
- msgstr ""
13671
-
13672
- #: includes/widgets/class-wcj-widget-multicurrency.php:41
13673
- msgid "Multicurrency module not enabled!"
13674
- msgstr ""
13675
-
13676
- #: includes/widgets/class-wcj-widget-multicurrency.php:76
13677
- msgid "Drop down"
13678
- msgstr ""
13679
-
13680
- #: includes/widgets/class-wcj-widget-multicurrency.php:77
13681
- msgid "Radio list"
13682
- msgstr ""
13683
-
13684
- #: includes/widgets/class-wcj-widget-multicurrency.php:78
13685
- msgid "Link list"
13686
- msgstr ""
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR Booster for WooCommerce
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #: includes/settings/wcj-settings-add-to-cart.php:60
7
+ #: includes/settings/wcj-settings-shipping-calculator.php:47
8
+ #, fuzzy
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: Booster for WooCommerce 3.2.0\n"
12
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
13
+ "jetpack\n"
14
+ "POT-Creation-Date: 2017-10-20 12:23+0300\n"
15
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
17
+ "Language-Team: LANGUAGE <LL@li.org>\n"
18
+ "Language: \n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
23
+
24
+ #: woocommerce-jetpack.php:184
25
+ #, php-format
26
+ msgid ""
27
+ "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin. Visit "
28
+ "<a target=\"_blank\" href=\"%s\">your account page</a> on booster.io to "
29
+ "download the latest Booster Plus version."
30
+ msgstr ""
31
+
32
+ #: woocommerce-jetpack.php:188
33
+ #, php-format
34
+ msgid ""
35
+ "There is new version of <strong>Booster Plus for WooCommerce</strong> plugin "
36
+ "available. We recommend upgrading. Please visit <a target=\"_blank\" href="
37
+ "\"%s\">your account page</a> on booster.io to download the latest Booster "
38
+ "Plus version."
39
+ msgstr ""
40
+
41
+ #: woocommerce-jetpack.php:208
42
+ #, php-format
43
+ msgid ""
44
+ "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
45
+ "rating. Thank you, we couldn't have done it without you!"
46
+ msgstr ""
47
+
48
+ #: woocommerce-jetpack.php:224
49
+ #: includes/admin/class-wc-settings-jetpack.php:486
50
+ msgid "Booster for WooCommerce"
51
+ msgstr ""
52
+
53
+ #: woocommerce-jetpack.php:225
54
+ msgid "Booster Settings"
55
+ msgstr ""
56
+
57
+ #: woocommerce-jetpack.php:240 includes/class-wcj-admin-bar.php:166
58
+ #: includes/class-wcj-admin-bar.php:461 includes/class-wcj-admin-bar.php:561
59
+ #: includes/admin/class-wc-settings-jetpack.php:211
60
+ #: includes/admin/class-wc-settings-jetpack.php:404
61
+ msgid "Settings"
62
+ msgstr ""
63
+
64
+ #: woocommerce-jetpack.php:241
65
+ msgid "Docs"
66
+ msgstr ""
67
+
68
+ #: woocommerce-jetpack.php:244
69
+ msgid "Unlock all"
70
+ msgstr ""
71
+
72
+ #: woocommerce-jetpack.php:509
73
+ #, php-format
74
+ msgid ""
75
+ "<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
76
+ "version <strong>%s</strong>."
77
+ msgstr ""
78
+
79
+ #: includes/class-wcj-add-to-cart.php:23
80
+ msgid "Add to Cart Labels"
81
+ msgstr ""
82
+
83
+ #: includes/class-wcj-add-to-cart.php:24
84
+ msgid ""
85
+ "Change text for Add to Cart button by WooCommerce product type, by product "
86
+ "category or for individual products."
87
+ msgstr ""
88
+
89
+ #: includes/class-wcj-address-formats.php:24
90
+ msgid "Address Formats"
91
+ msgstr ""
92
+
93
+ #: includes/class-wcj-address-formats.php:25
94
+ msgid ""
95
+ "Set address format in WooCommerce orders on per country basis. Force base "
96
+ "country display."
97
+ msgstr ""
98
+
99
+ #: includes/class-wcj-admin-bar.php:30
100
+ msgid "Admin Bar"
101
+ msgstr ""
102
+
103
+ #: includes/class-wcj-admin-bar.php:31
104
+ msgid "WooCommerce admin bar."
105
+ msgstr ""
106
+
107
+ #: includes/class-wcj-admin-bar.php:138
108
+ #: includes/admin/class-wc-settings-jetpack.php:82
109
+ msgid "Alphabetically"
110
+ msgstr ""
111
+
112
+ #: includes/class-wcj-admin-bar.php:142
113
+ #: includes/admin/class-wc-settings-jetpack.php:83
114
+ msgid "By Category"
115
+ msgstr ""
116
+
117
+ #: includes/class-wcj-admin-bar.php:146
118
+ #: includes/admin/class-wc-settings-jetpack.php:84
119
+ msgid "Active"
120
+ msgstr ""
121
+
122
+ #: includes/class-wcj-admin-bar.php:150
123
+ #: includes/admin/class-wc-settings-jetpack.php:85
124
+ msgid "Manage Settings"
125
+ msgstr ""
126
+
127
+ #: includes/class-wcj-admin-bar.php:170
128
+ #: includes/admin/class-wc-settings-jetpack.php:406
129
+ #: includes/classes/class-wcj-module.php:635
130
+ msgid "Documentation"
131
+ msgstr ""
132
+
133
+ #: includes/class-wcj-admin-bar.php:212
134
+ #: includes/admin/class-wc-settings-jetpack.php:138
135
+ #: includes/admin/wcj-modules-cats.php:15
136
+ msgid "Dashboard"
137
+ msgstr ""
138
+
139
+ #: includes/class-wcj-admin-bar.php:213
140
+ msgid ""
141
+ "This dashboard lets you check statuses and short descriptions of all "
142
+ "available Booster for WooCommerce tools. Tools can be enabled through "
143
+ "WooCommerce > Settings > Booster."
144
+ msgstr ""
145
+
146
+ #: includes/class-wcj-admin-bar.php:237 includes/class-wcj-admin-bar.php:274
147
+ #: includes/class-wcj-admin-bar.php:585
148
+ #: includes/classes/class-wcj-module.php:468
149
+ #: includes/settings/wcj-settings-wpml.php:15
150
+ msgid "Tools"
151
+ msgstr ""
152
+
153
+ #: includes/class-wcj-admin-bar.php:245
154
+ msgid "Booster: Active"
155
+ msgstr ""
156
+
157
+ #: includes/class-wcj-admin-bar.php:262
158
+ #: includes/class-wcj-checkout-files-upload.php:138
159
+ #: includes/class-wcj-eu-vat-number.php:86
160
+ #: includes/class-wcj-payment-gateways.php:75
161
+ #: includes/class-wcj-track-users.php:117
162
+ #: includes/class-wcj-track-users.php:213
163
+ #: includes/admin/class-wc-settings-jetpack.php:24
164
+ #: includes/admin/class-wc-settings-jetpack.php:213
165
+ #: includes/classes/class-wcj-module.php:285
166
+ #: includes/classes/class-wcj-module.php:495
167
+ msgid "Booster"
168
+ msgstr ""
169
+
170
+ #: includes/class-wcj-admin-bar.php:265
171
+ msgid "Booster - Settings"
172
+ msgstr ""
173
+
174
+ #: includes/class-wcj-admin-bar.php:269
175
+ msgid "Modules"
176
+ msgstr ""
177
+
178
+ #: includes/class-wcj-admin-bar.php:293
179
+ msgid "Sales by date"
180
+ msgstr ""
181
+
182
+ #: includes/class-wcj-admin-bar.php:294
183
+ msgid "Sales by product"
184
+ msgstr ""
185
+
186
+ #: includes/class-wcj-admin-bar.php:295
187
+ msgid "Sales by category"
188
+ msgstr ""
189
+
190
+ #: includes/class-wcj-admin-bar.php:296
191
+ msgid "Coupons by date"
192
+ msgstr ""
193
+
194
+ #: includes/class-wcj-admin-bar.php:304 includes/class-wcj-track-users.php:34
195
+ #: includes/functions/wcj-reports-functions.php:62
196
+ msgid "Last 7 days"
197
+ msgstr ""
198
+
199
+ #: includes/class-wcj-admin-bar.php:308
200
+ #: includes/functions/wcj-reports-functions.php:57
201
+ msgid "This month"
202
+ msgstr ""
203
+
204
+ #: includes/class-wcj-admin-bar.php:312
205
+ #: includes/functions/wcj-reports-functions.php:52
206
+ msgid "Last month"
207
+ msgstr ""
208
+
209
+ #: includes/class-wcj-admin-bar.php:316
210
+ #: includes/functions/wcj-reports-functions.php:47
211
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
212
+ msgid "Year"
213
+ msgstr ""
214
+
215
+ #: includes/class-wcj-admin-bar.php:339
216
+ #: includes/admin/class-wc-settings-jetpack.php:209
217
+ #: includes/settings/wcj-settings-emails-verification.php:123
218
+ msgid "WooCommerce"
219
+ msgstr ""
220
+
221
+ #: includes/class-wcj-admin-bar.php:342
222
+ msgid "WooCommerce settings"
223
+ msgstr ""
224
+
225
+ #: includes/class-wcj-admin-bar.php:346 includes/class-wcj-admin-bar.php:350
226
+ #: includes/class-wcj-admin-bar.php:368 includes/class-wcj-orders.php:23
227
+ #: includes/settings/wcj-settings-reports.php:16
228
+ #: includes/settings/wcj-settings-reports.php:54
229
+ #: includes/settings/wcj-settings-reports.php:95
230
+ msgid "Orders"
231
+ msgstr ""
232
+
233
+ #: includes/class-wcj-admin-bar.php:354
234
+ msgid "Add order"
235
+ msgstr ""
236
+
237
+ #: includes/class-wcj-admin-bar.php:358 includes/class-wcj-admin-bar.php:373
238
+ #: includes/settings/wcj-settings-reports.php:115
239
+ #: includes/settings/wcj-settings-reports.php:121
240
+ msgid "Customers"
241
+ msgstr ""
242
+
243
+ #: includes/class-wcj-admin-bar.php:364 includes/class-wcj-reports.php:32
244
+ msgid "Reports"
245
+ msgstr ""
246
+
247
+ #: includes/class-wcj-admin-bar.php:377
248
+ msgid "Customers vs. guests"
249
+ msgstr ""
250
+
251
+ #: includes/class-wcj-admin-bar.php:381
252
+ msgid "Customer list"
253
+ msgstr ""
254
+
255
+ #: includes/class-wcj-admin-bar.php:387 includes/class-wcj-stock.php:26
256
+ #: includes/reports/wcj-class-reports-stock.php:256
257
+ #: includes/settings/wcj-settings-reports.php:127
258
+ #: includes/settings/wcj-settings-reports.php:133
259
+ #: includes/settings/wcj-settings-reports.php:139
260
+ msgid "Stock"
261
+ msgstr ""
262
+
263
+ #: includes/class-wcj-admin-bar.php:391
264
+ msgid "Low in stock"
265
+ msgstr ""
266
+
267
+ #: includes/class-wcj-admin-bar.php:395
268
+ msgid "Out of stock"
269
+ msgstr ""
270
+
271
+ #: includes/class-wcj-admin-bar.php:399
272
+ msgid "Most Stocked"
273
+ msgstr ""
274
+
275
+ #: includes/class-wcj-admin-bar.php:405
276
+ #: includes/class-wcj-eu-vat-number.php:150
277
+ msgid "Taxes"
278
+ msgstr ""
279
+
280
+ #: includes/class-wcj-admin-bar.php:409
281
+ msgid "Taxes by code"
282
+ msgstr ""
283
+
284
+ #: includes/class-wcj-admin-bar.php:413
285
+ msgid "Taxes by date"
286
+ msgstr ""
287
+
288
+ #: includes/class-wcj-admin-bar.php:421 includes/class-wcj-admin-bar.php:425
289
+ #: includes/class-wcj-admin-bar.php:469
290
+ #: includes/class-wcj-product-bulk-meta-editor.php:263
291
+ #: includes/class-wcj-product-by-user.php:96
292
+ #: includes/class-wcj-product-by-user.php:132
293
+ #: includes/class-wcj-shipping-by-products.php:31
294
+ #: includes/admin/wcj-modules-cats.php:60
295
+ #: includes/settings/wcj-settings-shipping-options.php:59
296
+ msgid "Products"
297
+ msgstr ""
298
+
299
+ #: includes/class-wcj-admin-bar.php:429
300
+ msgid "Add product"
301
+ msgstr ""
302
+
303
+ #: includes/class-wcj-admin-bar.php:433
304
+ #: includes/class-wcj-product-bulk-price-converter.php:149
305
+ #: includes/class-wcj-sku.php:335
306
+ #: includes/export/class-wcj-fields-helper.php:318
307
+ #: includes/settings/wcj-settings-price-by-user-role.php:122
308
+ #: includes/settings/wcj-settings-product-by-user.php:19
309
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
310
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
311
+ msgid "Categories"
312
+ msgstr ""
313
+
314
+ #: includes/class-wcj-admin-bar.php:437
315
+ #: includes/export/class-wcj-fields-helper.php:319
316
+ #: includes/settings/wcj-settings-product-by-user.php:20
317
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:186
318
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:411
319
+ msgid "Tags"
320
+ msgstr ""
321
+
322
+ #: includes/class-wcj-admin-bar.php:441
323
+ msgid "Attributes"
324
+ msgstr ""
325
+
326
+ #: includes/class-wcj-admin-bar.php:447 includes/class-wcj-admin-bar.php:451
327
+ msgid "Coupons"
328
+ msgstr ""
329
+
330
+ #: includes/class-wcj-admin-bar.php:455
331
+ msgid "Add coupon"
332
+ msgstr ""
333
+
334
+ #: includes/class-wcj-admin-bar.php:465 includes/class-wcj-admin-bar.php:473
335
+ #: includes/class-wcj-general.php:27 includes/class-wcj-pdf-invoicing.php:24
336
+ #: includes/settings/wcj-settings-related-products.php:38
337
+ msgid "General"
338
+ msgstr ""
339
+
340
+ #: includes/class-wcj-admin-bar.php:477
341
+ #: includes/settings/wcj-settings-eu-vat-number.php:146
342
+ msgid "Display"
343
+ msgstr ""
344
+
345
+ #: includes/class-wcj-admin-bar.php:481
346
+ msgid "Inventory"
347
+ msgstr ""
348
+
349
+ #: includes/class-wcj-admin-bar.php:485
350
+ msgid "Downloadable products"
351
+ msgstr ""
352
+
353
+ #: includes/class-wcj-admin-bar.php:491
354
+ msgid "Tax"
355
+ msgstr ""
356
+
357
+ #: includes/class-wcj-admin-bar.php:495
358
+ msgid "Tax options"
359
+ msgstr ""
360
+
361
+ #: includes/class-wcj-admin-bar.php:499
362
+ msgid "Standard rates"
363
+ msgstr ""
364
+
365
+ #: includes/class-wcj-admin-bar.php:505
366
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:132
367
+ #: includes/settings/wcj-settings-checkout-custom-info.php:56
368
+ #: includes/settings/wcj-settings-empty-cart.php:59
369
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:125
370
+ #: includes/settings/wcj-settings-price-by-user-role.php:46
371
+ msgid "Shipping"
372
+ msgstr ""
373
+
374
+ #: includes/class-wcj-admin-bar.php:509
375
+ msgid "Shipping zones"
376
+ msgstr ""
377
+
378
+ #: includes/class-wcj-admin-bar.php:513
379
+ msgid "Shipping options"
380
+ msgstr ""
381
+
382
+ #: includes/class-wcj-admin-bar.php:517
383
+ msgid "Shipping classes"
384
+ msgstr ""
385
+
386
+ #: includes/class-wcj-admin-bar.php:523
387
+ msgid "Checkout"
388
+ msgstr ""
389
+
390
+ #: includes/class-wcj-admin-bar.php:527
391
+ msgid "Checkout options"
392
+ msgstr ""
393
+
394
+ #: includes/class-wcj-admin-bar.php:531
395
+ msgid "BACS"
396
+ msgstr ""
397
+
398
+ #: includes/class-wcj-admin-bar.php:535
399
+ msgid "Check payments"
400
+ msgstr ""
401
+
402
+ #: includes/class-wcj-admin-bar.php:539
403
+ msgid "Cash on delivery"
404
+ msgstr ""
405
+
406
+ #: includes/class-wcj-admin-bar.php:543
407
+ msgid "PayPal"
408
+ msgstr ""
409
+
410
+ #: includes/class-wcj-admin-bar.php:549
411
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:134
412
+ msgid "Account"
413
+ msgstr ""
414
+
415
+ #: includes/class-wcj-admin-bar.php:553
416
+ msgid "Emails"
417
+ msgstr ""
418
+
419
+ #: includes/class-wcj-admin-bar.php:557
420
+ msgid "API"
421
+ msgstr ""
422
+
423
+ #: includes/class-wcj-admin-bar.php:565
424
+ msgid "Keys/Apps"
425
+ msgstr ""
426
+
427
+ #: includes/class-wcj-admin-bar.php:569
428
+ msgid "Webhooks"
429
+ msgstr ""
430
+
431
+ #: includes/class-wcj-admin-bar.php:577 includes/class-wcj-admin-bar.php:581
432
+ msgid "System status"
433
+ msgstr ""
434
+
435
+ #: includes/class-wcj-admin-bar.php:589
436
+ msgid "Logs"
437
+ msgstr ""
438
+
439
+ #: includes/class-wcj-admin-bar.php:595
440
+ msgid "Extensions"
441
+ msgstr ""
442
+
443
+ #: includes/class-wcj-admin-tools.php:23 includes/class-wcj-admin-tools.php:30
444
+ msgid "Admin Tools"
445
+ msgstr ""
446
+
447
+ #: includes/class-wcj-admin-tools.php:24
448
+ msgid "Booster for WooCommerce debug and log tools."
449
+ msgstr ""
450
+
451
+ #: includes/class-wcj-admin-tools.php:31
452
+ msgid "Log."
453
+ msgstr ""
454
+
455
+ #: includes/class-wcj-admin-tools.php:32
456
+ #: includes/settings/wcj-settings-admin-tools.php:19
457
+ msgid "Log"
458
+ msgstr ""
459
+
460
+ #: includes/class-wcj-admin-tools.php:43
461
+ #, php-format
462
+ msgid "Current PHP memory limit: %s."
463
+ msgstr ""
464
+
465
+ #: includes/class-wcj-admin-tools.php:48
466
+ #, php-format
467
+ msgid "Current PHP time limit: %s seconds."
468
+ msgstr ""
469
+
470
+ #: includes/class-wcj-admin-tools.php:69
471
+ #: includes/settings/wcj-settings-export.php:156
472
+ #: includes/settings/wcj-settings-export.php:235
473
+ msgid "Product Meta"
474
+ msgstr ""
475
+
476
+ #: includes/class-wcj-admin-tools.php:86
477
+ #: includes/settings/wcj-settings-export.php:86
478
+ #: includes/settings/wcj-settings-export.php:154
479
+ msgid "Order Meta"
480
+ msgstr ""
481
+
482
+ #: includes/class-wcj-admin-tools.php:122
483
+ msgid "Order Items Meta"
484
+ msgstr ""
485
+
486
+ #: includes/class-wcj-admin-tools.php:145
487
+ msgid "Delete Log"
488
+ msgstr ""
489
+
490
+ #: includes/class-wcj-admin-tools.php:148
491
+ #, php-format
492
+ msgid "Now: %s"
493
+ msgstr ""
494
+
495
+ #: includes/class-wcj-admin-tools.php:178
496
+ msgid "NOT DEFINED"
497
+ msgstr ""
498
+
499
+ #: includes/class-wcj-breadcrumbs.php:28
500
+ msgid "Breadcrumbs"
501
+ msgstr ""
502
+
503
+ #: includes/class-wcj-breadcrumbs.php:29
504
+ msgid "Customize WooCommerce breadcrumbs."
505
+ msgstr ""
506
+
507
+ #: includes/class-wcj-call-for-price.php:23
508
+ msgid "Call for Price"
509
+ msgstr ""
510
+
511
+ #: includes/class-wcj-call-for-price.php:24
512
+ msgid ""
513
+ "Create any custom price label for all WooCommerce products with empty price."
514
+ msgstr ""
515
+
516
+ #: includes/class-wcj-cart-customization.php:25
517
+ msgid "Cart Customization"
518
+ msgstr ""
519
+
520
+ #: includes/class-wcj-cart-customization.php:26
521
+ msgid ""
522
+ "Customize WooCommerce cart - hide coupon field; item remove link; change "
523
+ "empty cart \"Return to shop\" button text."
524
+ msgstr ""
525
+
526
+ #: includes/class-wcj-cart-customization.php:62
527
+ #: includes/class-wcj-cart-customization.php:100
528
+ #: includes/settings/wcj-settings-cart-customization.php:52
529
+ #: includes/templates/cart-empty.php:33
530
+ msgid "Return to shop"
531
+ msgstr ""
532
+
533
+ #: includes/class-wcj-cart.php:23
534
+ msgid "Cart Custom Info"
535
+ msgstr ""
536
+
537
+ #: includes/class-wcj-cart.php:24
538
+ msgid "Add custom info to WooCommerce cart page."
539
+ msgstr ""
540
+
541
+ #: includes/class-wcj-checkout-core-fields.php:25
542
+ msgid "Checkout Core Fields"
543
+ msgstr ""
544
+
545
+ #: includes/class-wcj-checkout-core-fields.php:26
546
+ msgid ""
547
+ "Customize WooCommerce core checkout fields. Disable/enable fields, set "
548
+ "required, change labels and/or placeholders."
549
+ msgstr ""
550
+
551
+ #: includes/class-wcj-checkout-custom-fields.php:23
552
+ msgid "Checkout Custom Fields"
553
+ msgstr ""
554
+
555
+ #: includes/class-wcj-checkout-custom-fields.php:24
556
+ msgid "Add custom fields to WooCommerce checkout page."
557
+ msgstr ""
558
+
559
+ #: includes/class-wcj-checkout-custom-info.php:24
560
+ msgid "Checkout Custom Info"
561
+ msgstr ""
562
+
563
+ #: includes/class-wcj-checkout-custom-info.php:25
564
+ msgid "Add custom info to WooCommerce checkout page."
565
+ msgstr ""
566
+
567
+ #: includes/class-wcj-checkout-customization.php:29
568
+ msgid "Checkout Customization"
569
+ msgstr ""
570
+
571
+ #: includes/class-wcj-checkout-customization.php:30
572
+ msgid ""
573
+ "Customize WooCommerce checkout - hide \"Order Again\" button; disable "
574
+ "selected fields on checkout for logged users and more."
575
+ msgstr ""
576
+
577
+ #: includes/class-wcj-checkout-customization.php:84
578
+ #: includes/settings/wcj-settings-checkout-customization.php:86
579
+ msgid "Thank you. Your order has been received."
580
+ msgstr ""
581
+
582
+ #: includes/class-wcj-checkout-customization.php:103
583
+ #: includes/settings/wcj-settings-checkout-customization.php:72
584
+ msgid "This field can not be changed"
585
+ msgstr ""
586
+
587
+ #: includes/class-wcj-checkout-files-upload.php:26
588
+ msgid "Checkout Files Upload"
589
+ msgstr ""
590
+
591
+ #: includes/class-wcj-checkout-files-upload.php:27
592
+ msgid "Let customers upload files on (or after) WooCommerce checkout."
593
+ msgstr ""
594
+
595
+ #: includes/class-wcj-checkout-files-upload.php:86
596
+ #: includes/input-fields/wcj-product-input-fields-options.php:36
597
+ #: includes/settings/wcj-settings-checkout-files-upload.php:37
598
+ msgid "File"
599
+ msgstr ""
600
+
601
+ #: includes/class-wcj-checkout-files-upload.php:108
602
+ #: includes/settings/wcj-settings-checkout-files-upload.php:122
603
+ msgid "File is required!"
604
+ msgstr ""
605
+
606
+ #: includes/class-wcj-checkout-files-upload.php:118
607
+ #: includes/class-wcj-checkout-files-upload.php:255
608
+ #: includes/settings/wcj-settings-checkout-files-upload.php:115
609
+ #, php-format
610
+ msgid "Wrong file type: \"%s\"!"
611
+ msgstr ""
612
+
613
+ #: includes/class-wcj-checkout-files-upload.php:138
614
+ msgid "Uploaded Files"
615
+ msgstr ""
616
+
617
+ #: includes/class-wcj-checkout-files-upload.php:170
618
+ msgid "No files uploaded."
619
+ msgstr ""
620
+
621
+ #: includes/class-wcj-checkout-files-upload.php:227
622
+ #: includes/class-wcj-checkout-files-upload.php:235
623
+ #: includes/settings/wcj-settings-checkout-files-upload.php:145
624
+ #, php-format
625
+ msgid "File \"%s\" was successfully removed."
626
+ msgstr ""
627
+
628
+ #: includes/class-wcj-checkout-files-upload.php:267
629
+ #: includes/settings/wcj-settings-checkout-files-upload.php:130
630
+ #, php-format
631
+ msgid "File \"%s\" was successfully uploaded."
632
+ msgstr ""
633
+
634
+ #: includes/class-wcj-checkout-files-upload.php:275
635
+ #: includes/settings/wcj-settings-checkout-files-upload.php:137
636
+ msgid "Please select file to upload!"
637
+ msgstr ""
638
+
639
+ #: includes/class-wcj-checkout-files-upload.php:489
640
+ #: includes/class-wcj-checkout-files-upload.php:490
641
+ #: includes/settings/wcj-settings-checkout-files-upload.php:100
642
+ msgid "Upload"
643
+ msgstr ""
644
+
645
+ #: includes/class-wcj-checkout-files-upload.php:498
646
+ #: includes/class-wcj-checkout-files-upload.php:499
647
+ #: includes/settings/wcj-settings-checkout-files-upload.php:107
648
+ #: includes/settings/wcj-settings-sorting.php:144
649
+ msgid "Remove"
650
+ msgstr ""
651
+
652
+ #: includes/class-wcj-crowdfunding.php:24
653
+ msgid "Crowdfunding"
654
+ msgstr ""
655
+
656
+ #: includes/class-wcj-crowdfunding.php:25
657
+ msgid "Add crowdfunding products to WooCommerce."
658
+ msgstr ""
659
+
660
+ #: includes/class-wcj-crowdfunding.php:27
661
+ msgid "When enabled, module will add Crowdfunding metabox to product edit."
662
+ msgstr ""
663
+
664
+ #: includes/class-wcj-crowdfunding.php:29
665
+ #, php-format
666
+ msgid ""
667
+ "To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
668
+ "\">Booster's crowdfunding shortcodes</a>."
669
+ msgstr ""
670
+
671
+ #: includes/class-wcj-crowdfunding.php:33
672
+ #, php-format
673
+ msgid ""
674
+ "Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
675
+ "a>."
676
+ msgstr ""
677
+
678
+ #: includes/class-wcj-crowdfunding.php:37
679
+ #, php-format
680
+ msgid ""
681
+ "To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
682
+ "module</a>."
683
+ msgstr ""
684
+
685
+ #: includes/class-wcj-currencies.php:23
686
+ msgid "Currencies"
687
+ msgstr ""
688
+
689
+ #: includes/class-wcj-currencies.php:24
690
+ msgid ""
691
+ "Add all world currencies to your WooCommerce store; change currency symbol."
692
+ msgstr ""
693
+
694
+ #: includes/class-wcj-currencies.php:69
695
+ msgid "Booster: Currency Symbol"
696
+ msgstr ""
697
+
698
+ #: includes/class-wcj-currencies.php:70
699
+ msgid "This sets the currency symbol."
700
+ msgstr ""
701
+
702
+ #: includes/class-wcj-currency-exchange-rates.php:24
703
+ msgid "Currency Exchange Rates"
704
+ msgstr ""
705
+
706
+ #: includes/class-wcj-currency-exchange-rates.php:25
707
+ msgid "Automatic currency exchange rates for WooCommerce."
708
+ msgstr ""
709
+
710
+ #: includes/class-wcj-currency-external-products.php:23
711
+ msgid "Currency for External Products"
712
+ msgstr ""
713
+
714
+ #: includes/class-wcj-currency-external-products.php:24
715
+ msgid "Set different currency for external WooCommerce products."
716
+ msgstr ""
717
+
718
+ #: includes/class-wcj-currency-per-product.php:25
719
+ msgid "Currency per Product"
720
+ msgstr ""
721
+
722
+ #: includes/class-wcj-currency-per-product.php:26
723
+ msgid "Display prices for WooCommerce products in different currencies."
724
+ msgstr ""
725
+
726
+ #: includes/class-wcj-currency-per-product.php:184
727
+ #: includes/settings/wcj-settings-currency-per-product.php:43
728
+ msgid ""
729
+ "Only one product can be added to the cart. Clear the cart or finish the "
730
+ "order, before adding another product to the cart."
731
+ msgstr ""
732
+
733
+ #: includes/class-wcj-currency-per-product.php:199
734
+ #: includes/settings/wcj-settings-currency-per-product.php:50
735
+ msgid ""
736
+ "Only products with same currency can be added to the cart. Clear the cart or "
737
+ "finish the order, before adding products with another currency to the cart."
738
+ msgstr ""
739
+
740
+ #: includes/class-wcj-currency-per-product.php:245
741
+ #, php-format
742
+ msgctxt "Price range: from-to"
743
+ msgid "%1$s&ndash;%2$s"
744
+ msgstr ""
745
+
746
+ #: includes/class-wcj-custom-css.php:28
747
+ msgid "Custom CSS"
748
+ msgstr ""
749
+
750
+ #: includes/class-wcj-custom-css.php:29
751
+ msgid "Separate custom CSS for front and back end. Per product CSS."
752
+ msgstr ""
753
+
754
+ #: includes/class-wcj-custom-js.php:28
755
+ msgid "Custom JS"
756
+ msgstr ""
757
+
758
+ #: includes/class-wcj-custom-js.php:29
759
+ msgid "Separate custom JS for front and back end."
760
+ msgstr ""
761
+
762
+ #: includes/class-wcj-email-options.php:26
763
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
764
+ #: includes/settings/wcj-settings-emails-verification.php:92
765
+ #: includes/settings/wcj-settings-offer-price.php:226
766
+ msgid "Email Options"
767
+ msgstr ""
768
+
769
+ #: includes/class-wcj-email-options.php:27
770
+ msgid ""
771
+ "WooCommerce email options. E.g.: add another email recipient(s) to all "
772
+ "WooCommerce emails."
773
+ msgstr ""
774
+
775
+ #: includes/class-wcj-email-options.php:93
776
+ msgid "Booster: Email Forwarding Options"
777
+ msgstr ""
778
+
779
+ #: includes/class-wcj-email-options.php:94
780
+ msgid "Email Forwarding Options"
781
+ msgstr ""
782
+
783
+ #: includes/class-wcj-email-options.php:96
784
+ msgid ""
785
+ "This section lets you add another email recipient(s) to all WooCommerce "
786
+ "emails. Leave blank to disable."
787
+ msgstr ""
788
+
789
+ #: includes/class-wcj-email-options.php:100
790
+ msgid "Cc Email"
791
+ msgstr ""
792
+
793
+ #: includes/class-wcj-email-options.php:101
794
+ msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
795
+ msgstr ""
796
+
797
+ #: includes/class-wcj-email-options.php:107
798
+ msgid "Bcc Email"
799
+ msgstr ""
800
+
801
+ #: includes/class-wcj-email-options.php:108
802
+ msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
803
+ msgstr ""
804
+
805
+ #: includes/class-wcj-emails-verification.php:26
806
+ msgid "Email Verification"
807
+ msgstr ""
808
+
809
+ #: includes/class-wcj-emails-verification.php:27
810
+ msgid "Add WooCommerce email verification."
811
+ msgstr ""
812
+
813
+ #: includes/class-wcj-emails-verification.php:49
814
+ msgid "Verified"
815
+ msgstr ""
816
+
817
+ #: includes/class-wcj-emails-verification.php:62
818
+ msgid "Email verified"
819
+ msgstr ""
820
+
821
+ #: includes/class-wcj-emails-verification.php:63
822
+ msgid "Email not verified"
823
+ msgstr ""
824
+
825
+ #: includes/class-wcj-emails-verification.php:102
826
+ #: includes/settings/wcj-settings-emails-verification.php:62
827
+ msgid ""
828
+ "Your account has to be activated before you can login. You can resend email "
829
+ "with verification link by clicking <a href=\"%resend_verification_url%"
830
+ "\">here</a>."
831
+ msgstr ""
832
+
833
+ #: includes/class-wcj-emails-verification.php:123
834
+ #: includes/class-wcj-emails-verification.php:125
835
+ #: includes/settings/wcj-settings-emails-verification.php:110
836
+ msgid ""
837
+ "Please click the following link to verify your email:<br><br><a href="
838
+ "\"%verification_url%\">%verification_url%</a>"
839
+ msgstr ""
840
+
841
+ #: includes/class-wcj-emails-verification.php:128
842
+ #: includes/class-wcj-emails-verification.php:130
843
+ #: includes/settings/wcj-settings-emails-verification.php:100
844
+ msgid "Please activate your account"
845
+ msgstr ""
846
+
847
+ #: includes/class-wcj-emails-verification.php:135
848
+ #: includes/settings/wcj-settings-emails-verification.php:132
849
+ msgid "Activate your account"
850
+ msgstr ""
851
+
852
+ #: includes/class-wcj-emails-verification.php:152
853
+ #: includes/settings/wcj-settings-emails-verification.php:54
854
+ msgid "<strong>Success:</strong> Your account has been activated!"
855
+ msgstr ""
856
+
857
+ #: includes/class-wcj-emails-verification.php:161
858
+ #: includes/settings/wcj-settings-emails-verification.php:70
859
+ msgid ""
860
+ "<strong>Error:</strong> Activation failed, please contact our administrator. "
861
+ "You can resend email with verification link by clicking <a href="
862
+ "\"%resend_verification_url%\">here</a>."
863
+ msgstr ""
864
+
865
+ #: includes/class-wcj-emails-verification.php:170
866
+ #: includes/settings/wcj-settings-emails-verification.php:77
867
+ msgid ""
868
+ "Thank you for your registration. Your account has to be activated before you "
869
+ "can login. Please check your email."
870
+ msgstr ""
871
+
872
+ #: includes/class-wcj-emails-verification.php:175
873
+ #: includes/settings/wcj-settings-emails-verification.php:84
874
+ msgid ""
875
+ "<strong>Success:</strong> Your activation email has been resend. Please "
876
+ "check your email."
877
+ msgstr ""
878
+
879
+ #: includes/class-wcj-emails.php:23
880
+ #: includes/settings/wcj-settings-emails.php:14
881
+ msgid "Custom Emails"
882
+ msgstr ""
883
+
884
+ #: includes/class-wcj-emails.php:24
885
+ msgid "Add custom emails to WooCommerce."
886
+ msgstr ""
887
+
888
+ #: includes/class-wcj-emails.php:57
889
+ #, php-format
890
+ msgid "Booster: Emails: %s manually sent."
891
+ msgstr ""
892
+
893
+ #: includes/class-wcj-emails.php:58 includes/class-wcj-emails.php:76
894
+ #: includes/emails/class-wc-email-wcj-custom.php:30
895
+ #: includes/settings/wcj-settings-emails.php:37
896
+ #: includes/settings/wcj-settings-shipping.php:63
897
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:46
898
+ msgid "Custom"
899
+ msgstr ""
900
+
901
+ #: includes/class-wcj-emails.php:75
902
+ #, php-format
903
+ msgid "Booster: Send Email: %s"
904
+ msgstr ""
905
+
906
+ #: includes/class-wcj-empty-cart-button.php:25
907
+ #: includes/shortcodes/class-wcj-general-shortcodes.php:183
908
+ msgid "Empty Cart Button"
909
+ msgstr ""
910
+
911
+ #: includes/class-wcj-empty-cart-button.php:26
912
+ msgid ""
913
+ "Add (and customize) \"Empty Cart\" button to WooCommerce cart and checkout "
914
+ "pages."
915
+ msgstr ""
916
+
917
+ #: includes/class-wcj-eu-vat-number.php:24
918
+ #: includes/class-wcj-eu-vat-number.php:227
919
+ #: includes/settings/wcj-settings-eu-vat-number.php:22
920
+ #: includes/settings/wcj-settings-eu-vat-number.php:29
921
+ msgid "EU VAT Number"
922
+ msgstr ""
923
+
924
+ #: includes/class-wcj-eu-vat-number.php:25
925
+ msgid ""
926
+ "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
927
+ "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
928
+ "WooCommerce."
929
+ msgstr ""
930
+
931
+ #: includes/class-wcj-eu-vat-number.php:31
932
+ msgid "EU Countries VAT Rates"
933
+ msgstr ""
934
+
935
+ #: includes/class-wcj-eu-vat-number.php:32
936
+ msgid "Add all EU countries VAT standard rates to WooCommerce."
937
+ msgstr ""
938
+
939
+ #: includes/class-wcj-eu-vat-number.php:138
940
+ msgid "Customer IP"
941
+ msgstr ""
942
+
943
+ #: includes/class-wcj-eu-vat-number.php:142
944
+ msgid "Country by IP"
945
+ msgstr ""
946
+
947
+ #: includes/class-wcj-eu-vat-number.php:146
948
+ msgid "Customer EU VAT Number"
949
+ msgstr ""
950
+
951
+ #: includes/class-wcj-eu-vat-number.php:297
952
+ #: includes/settings/wcj-settings-eu-vat-number.php:165
953
+ msgid "Validating VAT. Please wait..."
954
+ msgstr ""
955
+
956
+ #: includes/class-wcj-eu-vat-number.php:298
957
+ #: includes/settings/wcj-settings-eu-vat-number.php:172
958
+ msgid "VAT is valid."
959
+ msgstr ""
960
+
961
+ #: includes/class-wcj-eu-vat-number.php:299
962
+ #: includes/settings/wcj-settings-eu-vat-number.php:179
963
+ msgid "VAT is not valid."
964
+ msgstr ""
965
+
966
+ #: includes/class-wcj-eu-vat-number.php:300
967
+ #: includes/settings/wcj-settings-eu-vat-number.php:187
968
+ msgid "Validation failed. Please try again."
969
+ msgstr ""
970
+
971
+ #: includes/class-wcj-eu-vat-number.php:404
972
+ #: includes/settings/wcj-settings-eu-vat-number.php:84
973
+ msgid "<strong>EU VAT Number</strong> is not valid."
974
+ msgstr ""
975
+
976
+ #: includes/class-wcj-export-import.php:26
977
+ #: includes/admin/class-wc-settings-jetpack.php:290
978
+ msgid "Export"
979
+ msgstr ""
980
+
981
+ #: includes/class-wcj-export-import.php:27
982
+ msgid "WooCommerce export tools."
983
+ msgstr ""
984
+
985
+ #: includes/class-wcj-export-import.php:33
986
+ msgid "Export Customers"
987
+ msgstr ""
988
+
989
+ #: includes/class-wcj-export-import.php:34
990
+ msgid "Export Customers."
991
+ msgstr ""
992
+
993
+ #: includes/class-wcj-export-import.php:37
994
+ msgid "Export Customers from Orders"
995
+ msgstr ""
996
+
997
+ #: includes/class-wcj-export-import.php:38
998
+ msgid "Export Customers (extracted from orders)."
999
+ msgstr ""
1000
+
1001
+ #: includes/class-wcj-export-import.php:38
1002
+ msgid "Customers are identified by billing email."
1003
+ msgstr ""
1004
+
1005
+ #: includes/class-wcj-export-import.php:41
1006
+ msgid "Export Orders"
1007
+ msgstr ""
1008
+
1009
+ #: includes/class-wcj-export-import.php:42
1010
+ msgid "Export Orders."
1011
+ msgstr ""
1012
+
1013
+ #: includes/class-wcj-export-import.php:45
1014
+ msgid "Export Orders Items"
1015
+ msgstr ""
1016
+
1017
+ #: includes/class-wcj-export-import.php:46
1018
+ msgid "Export Orders Items."
1019
+ msgstr ""
1020
+
1021
+ #: includes/class-wcj-export-import.php:49
1022
+ msgid "Export Products"
1023
+ msgstr ""
1024
+
1025
+ #: includes/class-wcj-export-import.php:50
1026
+ msgid "Export Products."
1027
+ msgstr ""
1028
+
1029
+ #: includes/class-wcj-export-import.php:194
1030
+ #: includes/class-wcj-export-import.php:200
1031
+ msgid "Filter by Billing Country"
1032
+ msgstr ""
1033
+
1034
+ #: includes/class-wcj-export-import.php:195
1035
+ msgid "Filter by Product Title"
1036
+ msgstr ""
1037
+
1038
+ #: includes/class-wcj-export-import.php:214
1039
+ #: includes/reports/wcj-class-reports-sales-daily.php:188
1040
+ #: includes/settings/wcj-settings-orders.php:33
1041
+ msgid "Filter"
1042
+ msgstr ""
1043
+
1044
+ #: includes/class-wcj-export-import.php:233
1045
+ #: includes/class-wcj-track-users.php:36
1046
+ msgid "All time"
1047
+ msgstr ""
1048
+
1049
+ #: includes/class-wcj-export-import.php:246
1050
+ msgid "Custom:"
1051
+ msgstr ""
1052
+
1053
+ #: includes/class-wcj-export-import.php:251
1054
+ msgid "Go"
1055
+ msgstr ""
1056
+
1057
+ #: includes/class-wcj-export-import.php:271
1058
+ msgid "Download CSV"
1059
+ msgstr ""
1060
+
1061
+ #: includes/class-wcj-export-import.php:273
1062
+ msgid "Download XML"
1063
+ msgstr ""
1064
+
1065
+ #: includes/class-wcj-export-import.php:274
1066
+ msgid "Filter by All Fields"
1067
+ msgstr ""
1068
+
1069
+ #: includes/class-wcj-free-price.php:26
1070
+ msgid "Free Price Labels"
1071
+ msgstr ""
1072
+
1073
+ #: includes/class-wcj-free-price.php:27
1074
+ msgid "WooCommerce free price labels."
1075
+ msgstr ""
1076
+
1077
+ #: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
1078
+ #: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
1079
+ #: includes/settings/wcj-settings-free-price.php:27
1080
+ msgid "Free!"
1081
+ msgstr ""
1082
+
1083
+ #: includes/class-wcj-general.php:28
1084
+ msgid "Custom roles tool. Shortcodes in WordPress text widgets."
1085
+ msgstr ""
1086
+
1087
+ #: includes/class-wcj-general.php:34
1088
+ msgid "Products Attributes"
1089
+ msgstr ""
1090
+
1091
+ #: includes/class-wcj-general.php:35
1092
+ msgid "All Products and All Attributes."
1093
+ msgstr ""
1094
+
1095
+ #: includes/class-wcj-general.php:38
1096
+ msgid "Add/Manage Custom Roles"
1097
+ msgstr ""
1098
+
1099
+ #: includes/class-wcj-general.php:39
1100
+ msgid "Custom Roles"
1101
+ msgstr ""
1102
+
1103
+ #: includes/class-wcj-general.php:40
1104
+ msgid "Manage Custom Roles."
1105
+ msgstr ""
1106
+
1107
+ #: includes/class-wcj-general.php:171
1108
+ msgid "Booster User Role"
1109
+ msgstr ""
1110
+
1111
+ #: includes/class-wcj-general.php:235
1112
+ msgid "Both fields are required!"
1113
+ msgstr ""
1114
+
1115
+ #: includes/class-wcj-general.php:238
1116
+ msgid "Role ID must not be numbers only!"
1117
+ msgstr ""
1118
+
1119
+ #: includes/class-wcj-general.php:242
1120
+ msgid "Role successfully added!"
1121
+ msgstr ""
1122
+
1123
+ #: includes/class-wcj-general.php:244
1124
+ msgid "Role already exists!"
1125
+ msgstr ""
1126
+
1127
+ #: includes/class-wcj-general.php:252
1128
+ #, php-format
1129
+ msgid "Role %s successfully deleted!"
1130
+ msgstr ""
1131
+
1132
+ #: includes/class-wcj-general.php:258 includes/class-wcj-general.php:271
1133
+ #: includes/class-wcj-sku.php:333
1134
+ #: includes/reports/wcj-class-reports-sales.php:191
1135
+ #: includes/settings/wcj-settings-order-numbers.php:123
1136
+ #: includes/settings/wcj-settings-product-by-user.php:161
1137
+ #: includes/settings/wcj-settings-related-products.php:30
1138
+ msgid "ID"
1139
+ msgstr ""
1140
+
1141
+ #: includes/class-wcj-general.php:258 includes/class-wcj-general.php:272
1142
+ #: includes/class-wcj-offer-price.php:116
1143
+ #: includes/export/class-wcj-fields-helper.php:282
1144
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
1145
+ #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
1146
+ msgid "Name"
1147
+ msgstr ""
1148
+
1149
+ #: includes/class-wcj-general.php:258
1150
+ #: includes/class-wcj-order-custom-statuses.php:375
1151
+ #: includes/class-wcj-product-by-user.php:197
1152
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:116
1153
+ msgid "Actions"
1154
+ msgstr ""
1155
+
1156
+ #: includes/class-wcj-general.php:264
1157
+ #: includes/class-wcj-order-custom-statuses.php:397
1158
+ #: includes/class-wcj-product-bulk-meta-editor.php:367
1159
+ #: includes/class-wcj-product-by-user.php:206
1160
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:138
1161
+ #: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:303
1162
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1163
+ msgid "Delete"
1164
+ msgstr ""
1165
+
1166
+ #: includes/class-wcj-general.php:267
1167
+ msgid "Existing Roles"
1168
+ msgstr ""
1169
+
1170
+ #: includes/class-wcj-general.php:273
1171
+ msgid "Add New Role"
1172
+ msgstr ""
1173
+
1174
+ #: includes/class-wcj-general.php:276
1175
+ #: includes/class-wcj-order-custom-statuses.php:422
1176
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:22
1177
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:29
1178
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:36
1179
+ #: includes/settings/wcj-settings-email-options.php:20
1180
+ #: includes/settings/wcj-settings-eu-vat-number.php:157
1181
+ #: includes/settings/wcj-settings-eu-vat-number.php:193
1182
+ #: includes/settings/wcj-settings-export.php:27
1183
+ #: includes/settings/wcj-settings-order-custom-statuses.php:29
1184
+ #: includes/settings/wcj-settings-order-custom-statuses.php:37
1185
+ #: includes/settings/wcj-settings-order-custom-statuses.php:70
1186
+ #: includes/settings/wcj-settings-order-min-amount.php:46
1187
+ #: includes/settings/wcj-settings-orders.php:168
1188
+ #: includes/settings/wcj-settings-orders.php:217
1189
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:151
1190
+ #: includes/settings/wcj-settings-pdf-invoicing.php:104
1191
+ #: includes/settings/wcj-settings-product-by-country.php:110
1192
+ #: includes/settings/wcj-settings-product-by-user.php:114
1193
+ #: includes/settings/wcj-settings-purchase-data.php:134
1194
+ #: includes/settings/wcj-settings-purchase-data.php:143
1195
+ #: includes/settings/wcj-settings-purchase-data.php:162
1196
+ #: includes/settings/wcj-settings-purchase-data.php:169
1197
+ #: includes/settings/wcj-settings-sku.php:181
1198
+ #: includes/settings/wcj-settings-sku.php:197
1199
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1200
+ msgid "Add"
1201
+ msgstr ""
1202
+
1203
+ #: includes/class-wcj-general.php:339 includes/class-wcj-general.php:381
1204
+ #: includes/class-wcj-product-bulk-meta-editor.php:339
1205
+ #: includes/class-wcj-product-bulk-price-converter.php:148
1206
+ #: includes/class-wcj-sku.php:334
1207
+ #: includes/reports/wcj-class-reports-sales.php:192
1208
+ #: includes/reports/wcj-class-reports-stock.php:253
1209
+ msgid "Product"
1210
+ msgstr ""
1211
+
1212
+ #: includes/class-wcj-general.php:340 includes/class-wcj-general.php:382
1213
+ #: includes/reports/wcj-class-reports-stock.php:254
1214
+ msgid "Category"
1215
+ msgstr ""
1216
+
1217
+ #: includes/class-wcj-general.php:402
1218
+ msgid "Total Products:"
1219
+ msgstr ""
1220
+
1221
+ #: includes/class-wcj-global-discount.php:27
1222
+ #: includes/admin/class-wc-settings-jetpack.php:461
1223
+ msgid "Global Discount"
1224
+ msgstr ""
1225
+
1226
+ #: includes/class-wcj-global-discount.php:28
1227
+ msgid "Add global discount to all WooCommerce products."
1228
+ msgstr ""
1229
+
1230
+ #: includes/class-wcj-left-to-free-shipping.php:25
1231
+ msgid "Left to Free Shipping"
1232
+ msgstr ""
1233
+
1234
+ #: includes/class-wcj-left-to-free-shipping.php:26
1235
+ msgid "Display \"left to free shipping\" info in WooCommerce."
1236
+ msgstr ""
1237
+
1238
+ #: includes/class-wcj-left-to-free-shipping.php:62
1239
+ #: includes/class-wcj-left-to-free-shipping.php:72
1240
+ #: includes/class-wcj-left-to-free-shipping.php:82
1241
+ #: includes/functions/wcj-general-functions.php:321
1242
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:37
1243
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:72
1244
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:111
1245
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:61
1246
+ #, php-format
1247
+ msgid "%left_to_free% left to free shipping"
1248
+ msgstr ""
1249
+
1250
+ #: includes/class-wcj-mini-cart.php:24
1251
+ msgid "Mini Cart Custom Info"
1252
+ msgstr ""
1253
+
1254
+ #: includes/class-wcj-mini-cart.php:25
1255
+ msgid "Add custom info to WooCommerce mini cart widget."
1256
+ msgstr ""
1257
+
1258
+ #: includes/class-wcj-more-button-labels.php:24
1259
+ msgid "More Button Labels"
1260
+ msgstr ""
1261
+
1262
+ #: includes/class-wcj-more-button-labels.php:25
1263
+ msgid "Set WooCommerce \"Place order\" button label."
1264
+ msgstr ""
1265
+
1266
+ #: includes/class-wcj-multicurrency-product-base-price.php:25
1267
+ msgid "Multicurrency Product Base Price"
1268
+ msgstr ""
1269
+
1270
+ #: includes/class-wcj-multicurrency-product-base-price.php:26
1271
+ msgid "Enter prices for WooCommerce products in different currencies."
1272
+ msgstr ""
1273
+
1274
+ #: includes/class-wcj-multicurrency.php:24
1275
+ msgid "Multicurrency (Currency Switcher)"
1276
+ msgstr ""
1277
+
1278
+ #: includes/class-wcj-multicurrency.php:25
1279
+ msgid "Add multiple currencies (currency switcher) to WooCommerce."
1280
+ msgstr ""
1281
+
1282
+ #: includes/class-wcj-multicurrency.php:27
1283
+ #, php-format
1284
+ msgid ""
1285
+ "After setting currencies in the Currencies Options section below, use %s "
1286
+ "<strong>widget</strong>, or %s <strong>shortcode</strong>. If you want to "
1287
+ "insert switcher in your <strong>PHP code</strong>, just use %s code."
1288
+ msgstr ""
1289
+
1290
+ #: includes/class-wcj-multicurrency.php:28
1291
+ #: includes/widgets/class-wcj-widget-multicurrency.php:27
1292
+ msgid "Booster - Multicurrency Switcher"
1293
+ msgstr ""
1294
+
1295
+ #: includes/class-wcj-my-account.php:25
1296
+ msgid "My Account"
1297
+ msgstr ""
1298
+
1299
+ #: includes/class-wcj-my-account.php:26
1300
+ msgid "WooCommerce \"My Account\" page customization."
1301
+ msgstr ""
1302
+
1303
+ #: includes/class-wcj-my-account.php:75
1304
+ #: includes/class-wcj-order-custom-statuses.php:397
1305
+ #: includes/class-wcj-product-bulk-meta-editor.php:279
1306
+ #: includes/class-wcj-product-by-user.php:206
1307
+ #: includes/class-wcj-purchase-data.php:93
1308
+ #: includes/class-wcj-track-users.php:296
1309
+ #: includes/classes/class-wcj-module.php:604
1310
+ #: includes/functions/wcj-html-functions.php:95
1311
+ #: includes/reports/wcj-class-reports-monthly-sales.php:334
1312
+ #: includes/settings/wcj-settings-empty-cart.php:80
1313
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
1314
+ msgid "Are you sure?"
1315
+ msgstr ""
1316
+
1317
+ #: includes/class-wcj-offer-price.php:36
1318
+ msgid "Offer Your Price"
1319
+ msgstr ""
1320
+
1321
+ #: includes/class-wcj-offer-price.php:37
1322
+ msgid "Let your customers to suggest their price for products in WooCommerce."
1323
+ msgstr ""
1324
+
1325
+ #: includes/class-wcj-offer-price.php:92
1326
+ msgid "Booster: Offer Price History"
1327
+ msgstr ""
1328
+
1329
+ #: includes/class-wcj-offer-price.php:108
1330
+ msgid "No price offers yet."
1331
+ msgstr ""
1332
+
1333
+ #: includes/class-wcj-offer-price.php:113
1334
+ #: includes/functions/wcj-reports-functions.php:21
1335
+ #: includes/functions/wcj-reports-functions.php:24
1336
+ #: includes/settings/wcj-settings-order-numbers.php:124
1337
+ #: includes/settings/wcj-settings-related-products.php:23
1338
+ msgid "Date"
1339
+ msgstr ""
1340
+
1341
+ #: includes/class-wcj-offer-price.php:114
1342
+ #: includes/export/class-wcj-fields-helper.php:288
1343
+ #: includes/reports/wcj-class-reports-stock.php:255
1344
+ #: includes/settings/wcj-settings-related-products.php:33
1345
+ #: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
1346
+ msgid "Price"
1347
+ msgstr ""
1348
+
1349
+ #: includes/class-wcj-offer-price.php:115
1350
+ #: includes/settings/wcj-settings-currency-per-product.php:41
1351
+ #: includes/settings/wcj-settings-currency-per-product.php:48
1352
+ #: includes/settings/wcj-settings-product-by-date.php:69
1353
+ #: includes/settings/wcj-settings-product-by-time.php:69
1354
+ msgid "Message"
1355
+ msgstr ""
1356
+
1357
+ #: includes/class-wcj-offer-price.php:117
1358
+ #: includes/export/class-wcj-fields-helper.php:75
1359
+ #: includes/input-fields/wcj-product-input-fields-options.php:45
1360
+ #: includes/reports/wcj-class-reports-customers.php:90
1361
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:94
1362
+ msgid "Email"
1363
+ msgstr ""
1364
+
1365
+ #: includes/class-wcj-offer-price.php:118
1366
+ #: includes/export/class-wcj-fields-helper.php:74
1367
+ msgid "Customer ID"
1368
+ msgstr ""
1369
+
1370
+ #: includes/class-wcj-offer-price.php:119
1371
+ msgid "Sent to"
1372
+ msgstr ""
1373
+
1374
+ #: includes/class-wcj-offer-price.php:141
1375
+ #, php-format
1376
+ msgid "Average offer: %s (from %s offer(s))"
1377
+ msgstr ""
1378
+
1379
+ #: includes/class-wcj-offer-price.php:148
1380
+ msgid "Delete history"
1381
+ msgstr ""
1382
+
1383
+ #: includes/class-wcj-offer-price.php:149
1384
+ msgid "Update product after checking the box."
1385
+ msgstr ""
1386
+
1387
+ #: includes/class-wcj-offer-price.php:219
1388
+ #: includes/settings/wcj-settings-offer-price.php:119
1389
+ #, php-format
1390
+ msgid "Your price (%s)"
1391
+ msgstr ""
1392
+
1393
+ #: includes/class-wcj-offer-price.php:225
1394
+ #: includes/settings/wcj-settings-offer-price.php:190
1395
+ #, php-format
1396
+ msgid "Suggest your price for %s"
1397
+ msgstr ""
1398
+
1399
+ #: includes/class-wcj-offer-price.php:280
1400
+ #: includes/settings/wcj-settings-offer-price.php:158
1401
+ msgid "Your email"
1402
+ msgstr ""
1403
+
1404
+ #: includes/class-wcj-offer-price.php:284
1405
+ #: includes/settings/wcj-settings-offer-price.php:166
1406
+ msgid "Your name"
1407
+ msgstr ""
1408
+
1409
+ #: includes/class-wcj-offer-price.php:288
1410
+ #: includes/settings/wcj-settings-offer-price.php:174
1411
+ msgid "Your message"
1412
+ msgstr ""
1413
+
1414
+ #: includes/class-wcj-offer-price.php:292
1415
+ #: includes/settings/wcj-settings-offer-price.php:197
1416
+ msgid "Send"
1417
+ msgstr ""
1418
+
1419
+ #: includes/class-wcj-offer-price.php:294
1420
+ #: includes/settings/wcj-settings-offer-price.php:182
1421
+ msgid "Send a copy to your email"
1422
+ msgstr ""
1423
+
1424
+ #: includes/class-wcj-offer-price.php:344
1425
+ #: includes/settings/wcj-settings-offer-price.php:46
1426
+ msgid "Make an offer"
1427
+ msgstr ""
1428
+
1429
+ #: includes/class-wcj-offer-price.php:397
1430
+ #: includes/settings/wcj-settings-offer-price.php:257
1431
+ #, php-format
1432
+ msgid "Product: %s"
1433
+ msgstr ""
1434
+
1435
+ #: includes/class-wcj-offer-price.php:398
1436
+ #: includes/settings/wcj-settings-offer-price.php:258
1437
+ #, php-format
1438
+ msgid "Offered price: %s"
1439
+ msgstr ""
1440
+
1441
+ #: includes/class-wcj-offer-price.php:399
1442
+ #: includes/settings/wcj-settings-offer-price.php:259
1443
+ #, php-format
1444
+ msgid "From: %s %s"
1445
+ msgstr ""
1446
+
1447
+ #: includes/class-wcj-offer-price.php:400
1448
+ #: includes/settings/wcj-settings-offer-price.php:260
1449
+ #, php-format
1450
+ msgid "Message: %s"
1451
+ msgstr ""
1452
+
1453
+ #: includes/class-wcj-offer-price.php:411
1454
+ #: includes/settings/wcj-settings-offer-price.php:248
1455
+ msgid "Price Offer"
1456
+ msgstr ""
1457
+
1458
+ #: includes/class-wcj-offer-price.php:421
1459
+ #: includes/settings/wcj-settings-offer-price.php:218
1460
+ msgid "Your price offer has been sent."
1461
+ msgstr ""
1462
+
1463
+ #: includes/class-wcj-old-slugs.php:23
1464
+ msgid "Old Slugs"
1465
+ msgstr ""
1466
+
1467
+ #: includes/class-wcj-old-slugs.php:24
1468
+ msgid "Remove old WooCommerce products slugs."
1469
+ msgstr ""
1470
+
1471
+ #: includes/class-wcj-old-slugs.php:30
1472
+ msgid "Remove Old Slugs"
1473
+ msgstr ""
1474
+
1475
+ #: includes/class-wcj-old-slugs.php:31
1476
+ msgid "Tool removes old slugs/permalinks from database."
1477
+ msgstr ""
1478
+
1479
+ #: includes/class-wcj-old-slugs.php:48
1480
+ msgid "Old slug"
1481
+ msgstr ""
1482
+
1483
+ #: includes/class-wcj-old-slugs.php:49
1484
+ msgid "Post title"
1485
+ msgstr ""
1486
+
1487
+ #: includes/class-wcj-old-slugs.php:50
1488
+ msgid "Post id"
1489
+ msgstr ""
1490
+
1491
+ #: includes/class-wcj-old-slugs.php:51
1492
+ msgid "Post type"
1493
+ msgstr ""
1494
+
1495
+ #: includes/class-wcj-old-slugs.php:52
1496
+ msgid "Current slug"
1497
+ msgstr ""
1498
+
1499
+ #: includes/class-wcj-old-slugs.php:85
1500
+ #, php-format
1501
+ msgid ""
1502
+ "Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
1503
+ "deleted."
1504
+ msgstr ""
1505
+
1506
+ #: includes/class-wcj-old-slugs.php:87
1507
+ msgid "Please <a href=\"\">refresh</a> the page."
1508
+ msgstr ""
1509
+
1510
+ #: includes/class-wcj-old-slugs.php:107
1511
+ msgid "Old products slugs found:"
1512
+ msgstr ""
1513
+
1514
+ #: includes/class-wcj-old-slugs.php:110
1515
+ msgid "Remove all old product slugs"
1516
+ msgstr ""
1517
+
1518
+ #: includes/class-wcj-old-slugs.php:113
1519
+ msgid "Old non-products slugs found:"
1520
+ msgstr ""
1521
+
1522
+ #: includes/class-wcj-old-slugs.php:116
1523
+ msgid "Remove all old non-product slugs"
1524
+ msgstr ""
1525
+
1526
+ #: includes/class-wcj-old-slugs.php:130
1527
+ msgid "No old slugs found."
1528
+ msgstr ""
1529
+
1530
+ #: includes/class-wcj-order-custom-statuses.php:26
1531
+ msgid "Order Custom Statuses"
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wcj-order-custom-statuses.php:27
1535
+ msgid "Custom statuses for WooCommerce orders."
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wcj-order-custom-statuses.php:33
1539
+ #: includes/settings/wcj-settings-order-custom-statuses.php:14
1540
+ msgid "Custom Statuses"
1541
+ msgstr ""
1542
+
1543
+ #: includes/class-wcj-order-custom-statuses.php:34
1544
+ msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1545
+ msgstr ""
1546
+
1547
+ #: includes/class-wcj-order-custom-statuses.php:123
1548
+ msgid "Processing"
1549
+ msgstr ""
1550
+
1551
+ #: includes/class-wcj-order-custom-statuses.php:130
1552
+ msgid "Complete"
1553
+ msgstr ""
1554
+
1555
+ #: includes/class-wcj-order-custom-statuses.php:194
1556
+ msgctxt "Order status"
1557
+ msgid "Pending payment"
1558
+ msgstr ""
1559
+
1560
+ #: includes/class-wcj-order-custom-statuses.php:195
1561
+ #: includes/functions/wcj-order-functions.php:140
1562
+ msgctxt "Order status"
1563
+ msgid "Processing"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wcj-order-custom-statuses.php:196
1567
+ msgctxt "Order status"
1568
+ msgid "On hold"
1569
+ msgstr ""
1570
+
1571
+ #: includes/class-wcj-order-custom-statuses.php:197
1572
+ #: includes/functions/wcj-order-functions.php:142
1573
+ msgctxt "Order status"
1574
+ msgid "Completed"
1575
+ msgstr ""
1576
+
1577
+ #: includes/class-wcj-order-custom-statuses.php:198
1578
+ #: includes/functions/wcj-order-functions.php:143
1579
+ msgctxt "Order status"
1580
+ msgid "Cancelled"
1581
+ msgstr ""
1582
+
1583
+ #: includes/class-wcj-order-custom-statuses.php:199
1584
+ #: includes/functions/wcj-order-functions.php:144
1585
+ msgctxt "Order status"
1586
+ msgid "Refunded"
1587
+ msgstr ""
1588
+
1589
+ #: includes/class-wcj-order-custom-statuses.php:200
1590
+ #: includes/functions/wcj-order-functions.php:145
1591
+ msgctxt "Order status"
1592
+ msgid "Failed"
1593
+ msgstr ""
1594
+
1595
+ #: includes/class-wcj-order-custom-statuses.php:240
1596
+ #, php-format
1597
+ msgid " <span class=\"count\">(%s)</span>"
1598
+ msgid_plural " <span class=\"count\">(%s)</span>"
1599
+ msgstr[0] ""
1600
+ msgstr[1] ""
1601
+
1602
+ #: includes/class-wcj-order-custom-statuses.php:290
1603
+ msgid "Status slug is empty. Status was not added!"
1604
+ msgstr ""
1605
+
1606
+ #: includes/class-wcj-order-custom-statuses.php:293
1607
+ msgid ""
1608
+ "The length of status slug must be 17 or less characters. Status was not "
1609
+ "added!"
1610
+ msgstr ""
1611
+
1612
+ #: includes/class-wcj-order-custom-statuses.php:296
1613
+ msgid "Status label is empty. Status was not added!"
1614
+ msgstr ""
1615
+
1616
+ #: includes/class-wcj-order-custom-statuses.php:303
1617
+ msgid "Duplicate slug. Status was not added!"
1618
+ msgstr ""
1619
+
1620
+ #: includes/class-wcj-order-custom-statuses.php:307
1621
+ msgid "Duplicate slug (default WooCommerce status). Status was not added!"
1622
+ msgstr ""
1623
+
1624
+ #: includes/class-wcj-order-custom-statuses.php:318
1625
+ msgid "New status has been successfully added!"
1626
+ msgstr ""
1627
+
1628
+ #: includes/class-wcj-order-custom-statuses.php:320
1629
+ msgid "Status was not added."
1630
+ msgstr ""
1631
+
1632
+ #: includes/class-wcj-order-custom-statuses.php:338
1633
+ msgid "Status label is empty. Status was not edited!"
1634
+ msgstr ""
1635
+
1636
+ #: includes/class-wcj-order-custom-statuses.php:348
1637
+ msgid "Status has been successfully edited!"
1638
+ msgstr ""
1639
+
1640
+ #: includes/class-wcj-order-custom-statuses.php:350
1641
+ msgid "Status was not edited."
1642
+ msgstr ""
1643
+
1644
+ #: includes/class-wcj-order-custom-statuses.php:358
1645
+ msgid "Status has been successfully deleted."
1646
+ msgstr ""
1647
+
1648
+ #: includes/class-wcj-order-custom-statuses.php:360
1649
+ msgid "Delete failed."
1650
+ msgstr ""
1651
+
1652
+ #: includes/class-wcj-order-custom-statuses.php:365
1653
+ msgid "Booster - Custom Statuses"
1654
+ msgstr ""
1655
+
1656
+ #: includes/class-wcj-order-custom-statuses.php:366
1657
+ msgid ""
1658
+ "The tool lets you add or delete any custom status for WooCommerce orders."
1659
+ msgstr ""
1660
+
1661
+ #: includes/class-wcj-order-custom-statuses.php:368
1662
+ msgid "Statuses"
1663
+ msgstr ""
1664
+
1665
+ #: includes/class-wcj-order-custom-statuses.php:371
1666
+ msgid "Slug"
1667
+ msgstr ""
1668
+
1669
+ #: includes/class-wcj-order-custom-statuses.php:372
1670
+ #: includes/class-wcj-order-custom-statuses.php:427
1671
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:105
1672
+ #: includes/settings/wcj-settings-checkout-files-upload.php:82
1673
+ #: includes/settings/wcj-settings-checkout-files-upload.php:256
1674
+ #: includes/settings/wcj-settings-offer-price.php:43
1675
+ #: includes/settings/wcj-settings-offer-price.php:115
1676
+ #: includes/settings/wcj-settings-offer-price.php:155
1677
+ #: includes/settings/wcj-settings-offer-price.php:163
1678
+ #: includes/settings/wcj-settings-offer-price.php:171
1679
+ #: includes/settings/wcj-settings-offer-price.php:179
1680
+ #: includes/settings/wcj-settings-orders.php:103
1681
+ #: includes/settings/wcj-settings-product-listings.php:257
1682
+ msgid "Label"
1683
+ msgstr ""
1684
+
1685
+ #: includes/class-wcj-order-custom-statuses.php:373
1686
+ #: includes/class-wcj-order-custom-statuses.php:428
1687
+ msgid "Icon Code"
1688
+ msgstr ""
1689
+
1690
+ #: includes/class-wcj-order-custom-statuses.php:374
1691
+ #: includes/class-wcj-order-custom-statuses.php:430
1692
+ msgid "Icon Color"
1693
+ msgstr ""
1694
+
1695
+ #: includes/class-wcj-order-custom-statuses.php:398
1696
+ msgid "Get Booster Plus to enable."
1697
+ msgstr ""
1698
+
1699
+ #: includes/class-wcj-order-custom-statuses.php:398
1700
+ #: includes/class-wcj-order-custom-statuses.php:422
1701
+ #: includes/class-wcj-product-by-user.php:205
1702
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
1703
+ msgid "Edit"
1704
+ msgstr ""
1705
+
1706
+ #: includes/class-wcj-order-custom-statuses.php:426
1707
+ msgid "Slug (without wc- prefix)"
1708
+ msgstr ""
1709
+
1710
+ #: includes/class-wcj-order-custom-statuses.php:429
1711
+ #, php-format
1712
+ msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
1713
+ msgstr ""
1714
+
1715
+ #: includes/class-wcj-order-custom-statuses.php:432
1716
+ msgid "Edit custom status"
1717
+ msgstr ""
1718
+
1719
+ #: includes/class-wcj-order-custom-statuses.php:432
1720
+ msgid "Add new custom status"
1721
+ msgstr ""
1722
+
1723
+ #: includes/class-wcj-order-custom-statuses.php:433
1724
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:149
1725
+ #: includes/settings/wcj-settings-eu-vat-number.php:56
1726
+ msgid "Clear"
1727
+ msgstr ""
1728
+
1729
+ #: includes/class-wcj-order-custom-statuses.php:455
1730
+ #: includes/class-wcj-order-custom-statuses.php:456
1731
+ msgid "Mark"
1732
+ msgstr ""
1733
+
1734
+ #: includes/class-wcj-order-min-amount.php:26
1735
+ #: includes/settings/wcj-settings-order-min-amount.php:14
1736
+ msgid "Order Minimum Amount"
1737
+ msgstr ""
1738
+
1739
+ #: includes/class-wcj-order-min-amount.php:27
1740
+ msgid "Minimum WooCommerce order amount (optionally by user role)."
1741
+ msgstr ""
1742
+
1743
+ #: includes/class-wcj-order-numbers.php:25
1744
+ #: includes/settings/wcj-settings-order-numbers.php:14
1745
+ msgid "Order Numbers"
1746
+ msgstr ""
1747
+
1748
+ #: includes/class-wcj-order-numbers.php:26
1749
+ msgid ""
1750
+ "WooCommerce sequential order numbering, custom order number prefix, suffix "
1751
+ "and number width."
1752
+ msgstr ""
1753
+
1754
+ #: includes/class-wcj-order-numbers.php:32
1755
+ msgid "Orders Renumerate"
1756
+ msgstr ""
1757
+
1758
+ #: includes/class-wcj-order-numbers.php:33
1759
+ msgid "Tool renumerates all orders."
1760
+ msgstr ""
1761
+
1762
+ #: includes/class-wcj-order-numbers.php:156
1763
+ msgid "Orders successfully renumerated!"
1764
+ msgstr ""
1765
+
1766
+ #: includes/class-wcj-order-numbers.php:163
1767
+ #, php-format
1768
+ msgid ""
1769
+ "Press the button below to renumerate all existing orders starting from order "
1770
+ "counter settings in <a href=\"%s\">Order Numbers</a> module."
1771
+ msgstr ""
1772
+
1773
+ #: includes/class-wcj-order-numbers.php:170
1774
+ msgid "Renumerate orders"
1775
+ msgstr ""
1776
+
1777
+ #: includes/class-wcj-order-quantities.php:28
1778
+ msgid "Order Min/Max Quantities"
1779
+ msgstr ""
1780
+
1781
+ #: includes/class-wcj-order-quantities.php:29
1782
+ msgid "Set min/max product quantities in WooCommerce order."
1783
+ msgstr ""
1784
+
1785
+ #: includes/class-wcj-order-quantities.php:95
1786
+ #: includes/settings/wcj-settings-order-quantities.php:87
1787
+ msgid ""
1788
+ "Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
1789
+ "order quantity is %cart_total_quantity%."
1790
+ msgstr ""
1791
+
1792
+ #: includes/class-wcj-order-quantities.php:103
1793
+ #: includes/settings/wcj-settings-order-quantities.php:38
1794
+ msgid ""
1795
+ "Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
1796
+ "order quantity is %cart_total_quantity%."
1797
+ msgstr ""
1798
+
1799
+ #: includes/class-wcj-order-quantities.php:113
1800
+ #: includes/settings/wcj-settings-order-quantities.php:104
1801
+ msgid ""
1802
+ "Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
1803
+ "Your current item quantity is %item_quantity%."
1804
+ msgstr ""
1805
+
1806
+ #: includes/class-wcj-order-quantities.php:123
1807
+ #: includes/settings/wcj-settings-order-quantities.php:55
1808
+ msgid ""
1809
+ "Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
1810
+ "Your current item quantity is %item_quantity%."
1811
+ msgstr ""
1812
+
1813
+ #: includes/class-wcj-orders.php:24
1814
+ msgid ""
1815
+ "Orders auto-complete. Custom admin order list columns. Admin order currency. "
1816
+ "Admin order list multiple status filtering."
1817
+ msgstr ""
1818
+
1819
+ #: includes/class-wcj-orders.php:122
1820
+ msgid "Regenerate download permissions"
1821
+ msgstr ""
1822
+
1823
+ #: includes/class-wcj-orders.php:136
1824
+ #, php-format
1825
+ msgid "Download permissions regenerated for %s order."
1826
+ msgid_plural "Download permissions regenerated for %s orders."
1827
+ msgstr[0] ""
1828
+ msgstr[1] ""
1829
+
1830
+ #: includes/class-wcj-orders.php:289
1831
+ msgid "Not Completed"
1832
+ msgstr ""
1833
+
1834
+ #: includes/class-wcj-orders.php:415
1835
+ #: includes/settings/wcj-settings-product-by-country.php:86
1836
+ msgid "All countries"
1837
+ msgstr ""
1838
+
1839
+ #: includes/class-wcj-orders.php:424
1840
+ msgid "All currencies"
1841
+ msgstr ""
1842
+
1843
+ #: includes/class-wcj-orders.php:464
1844
+ #: includes/export/class-wcj-fields-helper.php:44
1845
+ #: includes/export/class-wcj-fields-helper.php:129
1846
+ #: includes/export/class-wcj-fields-helper.php:214
1847
+ #: includes/settings/wcj-settings-orders.php:66
1848
+ msgid "Billing Country"
1849
+ msgstr ""
1850
+
1851
+ #: includes/class-wcj-orders.php:467
1852
+ #: includes/settings/wcj-settings-orders.php:73
1853
+ msgid "Currency Code"
1854
+ msgstr ""
1855
+
1856
+ #: includes/class-wcj-payment-gateways-by-country.php:24
1857
+ msgid "Gateways by Country or State"
1858
+ msgstr ""
1859
+
1860
+ #: includes/class-wcj-payment-gateways-by-country.php:25
1861
+ msgid ""
1862
+ "Set countries or states to include/exclude for WooCommerce payment gateways "
1863
+ "to show up."
1864
+ msgstr ""
1865
+
1866
+ #: includes/class-wcj-payment-gateways-by-currency.php:25
1867
+ msgid "Gateways by Currency"
1868
+ msgstr ""
1869
+
1870
+ #: includes/class-wcj-payment-gateways-by-currency.php:26
1871
+ msgid "Set allowed currencies for WooCommerce payment gateways to show up."
1872
+ msgstr ""
1873
+
1874
+ #: includes/class-wcj-payment-gateways-by-shipping.php:25
1875
+ msgid "Gateways by Shipping"
1876
+ msgstr ""
1877
+
1878
+ #: includes/class-wcj-payment-gateways-by-shipping.php:26
1879
+ msgid "Set \"enable for shipping methods\" for WooCommerce payment gateways."
1880
+ msgstr ""
1881
+
1882
+ #: includes/class-wcj-payment-gateways-by-user-role.php:25
1883
+ msgid "Gateways by User Role"
1884
+ msgstr ""
1885
+
1886
+ #: includes/class-wcj-payment-gateways-by-user-role.php:26
1887
+ msgid ""
1888
+ "Set user roles to include/exclude for WooCommerce payment gateways to show "
1889
+ "up."
1890
+ msgstr ""
1891
+
1892
+ #: includes/class-wcj-payment-gateways-currency.php:24
1893
+ msgid "Gateways Currency Converter"
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-wcj-payment-gateways-currency.php:25
1897
+ msgid "Currency converter for WooCommerce payment gateways."
1898
+ msgstr ""
1899
+
1900
+ #: includes/class-wcj-payment-gateways-fees.php:24
1901
+ msgid "Gateways Fees and Discounts"
1902
+ msgstr ""
1903
+
1904
+ #: includes/class-wcj-payment-gateways-fees.php:25
1905
+ msgid "Enable extra fees or discounts for WooCommerce payment gateways."
1906
+ msgstr ""
1907
+
1908
+ #: includes/class-wcj-payment-gateways-icons.php:24
1909
+ msgid "Gateways Icons"
1910
+ msgstr ""
1911
+
1912
+ #: includes/class-wcj-payment-gateways-icons.php:25
1913
+ msgid ""
1914
+ "Change or completely remove icons (images) for any (default or custom) "
1915
+ "WooCommerce payment gateway."
1916
+ msgstr ""
1917
+
1918
+ #: includes/class-wcj-payment-gateways-min-max.php:24
1919
+ msgid "Gateways Min/Max Amounts"
1920
+ msgstr ""
1921
+
1922
+ #: includes/class-wcj-payment-gateways-min-max.php:25
1923
+ msgid "Add min/max amounts for WooCommerce payment gateways to show up."
1924
+ msgstr ""
1925
+
1926
+ #: includes/class-wcj-payment-gateways-min-max.php:41
1927
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:37
1928
+ msgid "Minimum amount for %gateway_title% is %min_amount%"
1929
+ msgstr ""
1930
+
1931
+ #: includes/class-wcj-payment-gateways-min-max.php:42
1932
+ #: includes/settings/wcj-settings-payment-gateways-min-max.php:45
1933
+ msgid "Maximum amount for %gateway_title% is %max_amount%"
1934
+ msgstr ""
1935
+
1936
+ #: includes/class-wcj-payment-gateways-per-category.php:24
1937
+ #: includes/admin/class-wc-settings-jetpack.php:459
1938
+ msgid "Gateways per Product or Category"
1939
+ msgstr ""
1940
+
1941
+ #: includes/class-wcj-payment-gateways-per-category.php:25
1942
+ msgid ""
1943
+ "Show WooCommerce gateway only if there is selected product or product "
1944
+ "category in cart."
1945
+ msgstr ""
1946
+
1947
+ #: includes/class-wcj-payment-gateways.php:23
1948
+ msgid "Custom Gateways"
1949
+ msgstr ""
1950
+
1951
+ #: includes/class-wcj-payment-gateways.php:24
1952
+ msgid "Add multiple custom payment gateways to WooCommerce."
1953
+ msgstr ""
1954
+
1955
+ #: includes/class-wcj-payment-gateways.php:51
1956
+ #, php-format
1957
+ msgid "<strong>%s</strong> is a required field."
1958
+ msgstr ""
1959
+
1960
+ #: includes/class-wcj-payment-gateways.php:75
1961
+ #, php-format
1962
+ msgid "%s Fields"
1963
+ msgstr ""
1964
+
1965
+ #: includes/class-wcj-pdf-invoicing.php:23
1966
+ msgid "PDF Invoicing"
1967
+ msgstr ""
1968
+
1969
+ #: includes/class-wcj-pdf-invoicing.php:25
1970
+ msgid ""
1971
+ "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
1972
+ msgstr ""
1973
+
1974
+ #: includes/class-wcj-pdf-invoicing.php:31
1975
+ msgid "Invoices Renumerate"
1976
+ msgstr ""
1977
+
1978
+ #: includes/class-wcj-pdf-invoicing.php:32
1979
+ msgid ""
1980
+ "Tool renumerates all invoices, proforma invoices, credit notes and packing "
1981
+ "slips."
1982
+ msgstr ""
1983
+
1984
+ #: includes/class-wcj-pdf-invoicing.php:35
1985
+ msgid "Invoices Report"
1986
+ msgstr ""
1987
+
1988
+ #: includes/class-wcj-pdf-invoicing.php:36
1989
+ msgid "Invoices Monthly Reports."
1990
+ msgstr ""
1991
+
1992
+ #: includes/class-wcj-pdf-invoicing.php:89
1993
+ #: includes/class-wcj-pdf-invoicing.php:90
1994
+ #: includes/settings/wcj-settings-price-by-country.php:164
1995
+ #: includes/settings/wcj-settings-price-by-country.php:169
1996
+ #: includes/settings/wcj-settings-price-by-country.php:174
1997
+ msgid "Generate"
1998
+ msgstr ""
1999
+
2000
+ #: includes/class-wcj-pdf-invoicing.php:97
2001
+ #: includes/class-wcj-pdf-invoicing.php:98
2002
+ #: includes/settings/wcj-settings-pdf-invoicing-styling.php:119
2003
+ msgid "Download"
2004
+ msgstr ""
2005
+
2006
+ #: includes/class-wcj-pdf-invoicing.php:115
2007
+ #, php-format
2008
+ msgid "Document generated."
2009
+ msgid_plural "%s documents generated."
2010
+ msgstr[0] ""
2011
+ msgstr[1] ""
2012
+
2013
+ #: includes/class-wcj-pdf-invoicing.php:122
2014
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:157
2015
+ #, php-format
2016
+ msgid ""
2017
+ "Booster: %s class is not accessible on your server. Please contact your "
2018
+ "hosting provider."
2019
+ msgstr ""
2020
+
2021
+ #: includes/class-wcj-pdf-invoicing.php:128
2022
+ msgid "Booster: ZipArchive error."
2023
+ msgstr ""
2024
+
2025
+ #: includes/class-wcj-pdf-invoicing.php:250
2026
+ #: includes/classes/class-wcj-pdf-invoice.php:273
2027
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:230
2028
+ msgid "Unexpected error"
2029
+ msgstr ""
2030
+
2031
+ #: includes/class-wcj-pdf-invoicing.php:377
2032
+ msgid "You are not allowed to view the invoice."
2033
+ msgstr ""
2034
+
2035
+ #: includes/class-wcj-price-by-country.php:23
2036
+ msgid "Prices and Currencies by Country"
2037
+ msgstr ""
2038
+
2039
+ #: includes/class-wcj-price-by-country.php:24
2040
+ msgid ""
2041
+ "Change WooCommerce product price and currency automatically by customer's "
2042
+ "country."
2043
+ msgstr ""
2044
+
2045
+ #: includes/class-wcj-price-by-country.php:90
2046
+ msgid "Price filter widget product prices recalculated."
2047
+ msgstr ""
2048
+
2049
+ #: includes/class-wcj-price-by-user-role.php:26
2050
+ msgid "Price by User Role"
2051
+ msgstr ""
2052
+
2053
+ #: includes/class-wcj-price-by-user-role.php:27
2054
+ msgid "Display WooCommerce products prices by user roles."
2055
+ msgstr ""
2056
+
2057
+ #: includes/class-wcj-price-by-user-role.php:114
2058
+ msgid ""
2059
+ "Booster: Free plugin's version is limited to only one price by user role per "
2060
+ "products settings product enabled at a time. You will need to get <a href="
2061
+ "\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
2062
+ "unlimited number of price by user role per product settings products."
2063
+ msgstr ""
2064
+
2065
+ #: includes/class-wcj-price-formats.php:25
2066
+ msgid "Price Formats"
2067
+ msgstr ""
2068
+
2069
+ #: includes/class-wcj-price-formats.php:26
2070
+ msgid ""
2071
+ "Set different WooCommerce price formats for different currencies. Set "
2072
+ "general price format options."
2073
+ msgstr ""
2074
+
2075
+ #: includes/class-wcj-price-labels.php:23
2076
+ msgid "Custom Price Labels"
2077
+ msgstr ""
2078
+
2079
+ #: includes/class-wcj-price-labels.php:24
2080
+ msgid "Create any custom price label for any WooCommerce product."
2081
+ msgstr ""
2082
+
2083
+ #: includes/class-wcj-price-labels.php:32
2084
+ #: includes/settings/wcj-settings-price-labels.php:88
2085
+ msgid "Instead of the price"
2086
+ msgstr ""
2087
+
2088
+ #: includes/class-wcj-price-labels.php:33
2089
+ msgid "Before the price"
2090
+ msgstr ""
2091
+
2092
+ #: includes/class-wcj-price-labels.php:34
2093
+ msgid "Between regular and sale prices"
2094
+ msgstr ""
2095
+
2096
+ #: includes/class-wcj-price-labels.php:35
2097
+ msgid "After the price"
2098
+ msgstr ""
2099
+
2100
+ #: includes/class-wcj-price-labels.php:40
2101
+ #: includes/class-wcj-product-info.php:254
2102
+ #: includes/class-wcj-shipping-options.php:172
2103
+ #: includes/settings/wcj-settings-add-to-cart.php:52
2104
+ #: includes/settings/wcj-settings-address-formats.php:20
2105
+ #: includes/settings/wcj-settings-admin-bar.php:20
2106
+ #: includes/settings/wcj-settings-admin-bar.php:27
2107
+ #: includes/settings/wcj-settings-admin-bar.php:34
2108
+ #: includes/settings/wcj-settings-admin-tools.php:20
2109
+ #: includes/settings/wcj-settings-admin-tools.php:27
2110
+ #: includes/settings/wcj-settings-admin-tools.php:34
2111
+ #: includes/settings/wcj-settings-admin-tools.php:74
2112
+ #: includes/settings/wcj-settings-admin-tools.php:81
2113
+ #: includes/settings/wcj-settings-breadcrumbs.php:20
2114
+ #: includes/settings/wcj-settings-call-for-price.php:69
2115
+ #: includes/settings/wcj-settings-cart-customization.php:34
2116
+ #: includes/settings/wcj-settings-cart-customization.php:57
2117
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:69
2118
+ #: includes/settings/wcj-settings-checkout-custom-fields.php:164
2119
+ #: includes/settings/wcj-settings-checkout-customization.php:78
2120
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:54
2121
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:84
2122
+ #: includes/settings/wcj-settings-currency-exchange-rates.php:92
2123
+ #: includes/settings/wcj-settings-currency-per-product.php:66
2124
+ #: includes/settings/wcj-settings-currency-per-product.php:73
2125
+ #: includes/settings/wcj-settings-currency-per-product.php:80
2126
+ #: includes/settings/wcj-settings-currency-per-product.php:87
2127
+ #: includes/settings/wcj-settings-custom-css.php:34
2128
+ #: includes/settings/wcj-settings-emails-verification.php:28
2129
+ #: includes/settings/wcj-settings-emails-verification.php:36
2130
+ #: includes/settings/wcj-settings-general.php:42
2131
+ #: includes/settings/wcj-settings-general.php:66
2132
+ #: includes/settings/wcj-settings-general.php:82
2133
+ #: includes/settings/wcj-settings-general.php:150
2134
+ #: includes/settings/wcj-settings-general.php:201
2135
+ #: includes/settings/wcj-settings-general.php:228
2136
+ #: includes/settings/wcj-settings-global-discount.php:52
2137
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:27
2138
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:60
2139
+ #: includes/settings/wcj-settings-left-to-free-shipping.php:99
2140
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:40
2141
+ #: includes/settings/wcj-settings-multicurrency-base-price.php:55
2142
+ #: includes/settings/wcj-settings-multicurrency.php:39
2143
+ #: includes/settings/wcj-settings-multicurrency.php:48
2144
+ #: includes/settings/wcj-settings-offer-price.php:19
2145
+ #: includes/settings/wcj-settings-order-custom-statuses.php:45
2146
+ #: includes/settings/wcj-settings-order-numbers.php:88
2147
+ #: includes/settings/wcj-settings-order-numbers.php:96
2148
+ #: includes/settings/wcj-settings-order-numbers.php:103
2149
+ #: includes/settings/wcj-settings-order-quantities.php:119
2150
+ #: includes/settings/wcj-settings-order-quantities.php:126
2151
+ #: includes/settings/wcj-settings-orders.php:20
2152
+ #: includes/settings/wcj-settings-orders.php:49
2153
+ #: includes/settings/wcj-settings-orders.php:184
2154
+ #: includes/settings/wcj-settings-pdf-invoicing-display.php:113
2155
+ #: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
2156
+ #: includes/settings/wcj-settings-pdf-invoicing-header.php:23
2157
+ #: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
2158
+ #: includes/settings/wcj-settings-price-by-country.php:69
2159
+ #: includes/settings/wcj-settings-price-by-country.php:89
2160
+ #: includes/settings/wcj-settings-price-by-country.php:105
2161
+ #: includes/settings/wcj-settings-price-by-country.php:113
2162
+ #: includes/settings/wcj-settings-price-by-country.php:122
2163
+ #: includes/settings/wcj-settings-price-by-user-role.php:20
2164
+ #: includes/settings/wcj-settings-price-by-user-role.php:47
2165
+ #: includes/settings/wcj-settings-price-formats.php:21
2166
+ #: includes/settings/wcj-settings-price-labels.php:155
2167
+ #: includes/settings/wcj-settings-product-add-to-cart.php:25
2168
+ #: includes/settings/wcj-settings-product-add-to-cart.php:41
2169
+ #: includes/settings/wcj-settings-product-add-to-cart.php:80
2170
+ #: includes/settings/wcj-settings-product-add-to-cart.php:132
2171
+ #: includes/settings/wcj-settings-product-add-to-cart.php:171
2172
+ #: includes/settings/wcj-settings-product-add-to-cart.php:202
2173
+ #: includes/settings/wcj-settings-product-add-to-cart.php:219
2174
+ #: includes/settings/wcj-settings-product-add-to-cart.php:260
2175
+ #: includes/settings/wcj-settings-product-add-to-cart.php:274
2176
+ #: includes/settings/wcj-settings-product-addons.php:24
2177
+ #: includes/settings/wcj-settings-product-addons.php:43
2178
+ #: includes/settings/wcj-settings-product-addons.php:67
2179
+ #: includes/settings/wcj-settings-product-addons.php:162
2180
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
2181
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
2182
+ #: includes/settings/wcj-settings-product-by-country.php:21
2183
+ #: includes/settings/wcj-settings-product-by-country.php:29
2184
+ #: includes/settings/wcj-settings-product-by-country.php:37
2185
+ #: includes/settings/wcj-settings-product-by-date.php:21
2186
+ #: includes/settings/wcj-settings-product-by-date.php:53
2187
+ #: includes/settings/wcj-settings-product-by-time.php:21
2188
+ #: includes/settings/wcj-settings-product-by-time.php:53
2189
+ #: includes/settings/wcj-settings-product-by-user-role.php:21
2190
+ #: includes/settings/wcj-settings-product-by-user-role.php:29
2191
+ #: includes/settings/wcj-settings-product-by-user-role.php:37
2192
+ #: includes/settings/wcj-settings-product-by-user.php:107
2193
+ #: includes/settings/wcj-settings-product-info.php:35
2194
+ #: includes/settings/wcj-settings-product-info.php:68
2195
+ #: includes/settings/wcj-settings-product-input-fields.php:22
2196
+ #: includes/settings/wcj-settings-product-input-fields.php:52
2197
+ #: includes/settings/wcj-settings-product-input-fields.php:310
2198
+ #: includes/settings/wcj-settings-product-open-pricing.php:87
2199
+ #: includes/settings/wcj-settings-product-open-pricing.php:94
2200
+ #: includes/settings/wcj-settings-product-open-pricing.php:108
2201
+ #: includes/settings/wcj-settings-product-price-by-formula.php:30
2202
+ #: includes/settings/wcj-settings-product-tabs.php:23
2203
+ #: includes/settings/wcj-settings-product-tabs.php:212
2204
+ #: includes/settings/wcj-settings-product-tabs.php:220
2205
+ #: includes/settings/wcj-settings-products-xml.php:72
2206
+ #: includes/settings/wcj-settings-purchase-data.php:22
2207
+ #: includes/settings/wcj-settings-purchase-data.php:29
2208
+ #: includes/settings/wcj-settings-purchase-data.php:36
2209
+ #: includes/settings/wcj-settings-purchase-data.php:103
2210
+ #: includes/settings/wcj-settings-purchase-data.php:110
2211
+ #: includes/settings/wcj-settings-purchase-data.php:117
2212
+ #: includes/settings/wcj-settings-purchase-data.php:185
2213
+ #: includes/settings/wcj-settings-related-products.php:105
2214
+ #: includes/settings/wcj-settings-related-products.php:112
2215
+ #: includes/settings/wcj-settings-related-products.php:119
2216
+ #: includes/settings/wcj-settings-related-products.php:149
2217
+ #: includes/settings/wcj-settings-shipping-calculator.php:20
2218
+ #: includes/settings/wcj-settings-shipping-calculator.php:27
2219
+ #: includes/settings/wcj-settings-shipping-calculator.php:34
2220
+ #: includes/settings/wcj-settings-shipping-calculator.php:41
2221
+ #: includes/settings/wcj-settings-shipping-options.php:53
2222
+ #: includes/settings/wcj-settings-shipping.php:24
2223
+ #: includes/settings/wcj-settings-sku.php:50
2224
+ #: includes/settings/wcj-settings-sku.php:157
2225
+ #: includes/settings/wcj-settings-sku.php:165
2226
+ #: includes/settings/wcj-settings-sku.php:173
2227
+ #: includes/settings/wcj-settings-sku.php:189
2228
+ #: includes/settings/wcj-settings-stock.php:30
2229
+ #: includes/settings/wcj-settings-stock.php:43
2230
+ #: includes/settings/wcj-settings-track-users.php:47
2231
+ #: includes/settings/wcj-settings-wholesale-price.php:22
2232
+ #: includes/settings/wcj-settings-wholesale-price.php:29
2233
+ #: includes/settings/wcj-settings-wholesale-price.php:36
2234
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:92
2235
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
2236
+ #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:17
2237
+ msgid "Enable"
2238
+ msgstr ""
2239
+
2240
+ #: includes/class-wcj-price-labels.php:41
2241
+ msgid "Hide on home page"
2242
+ msgstr ""
2243
+
2244
+ #: includes/class-wcj-price-labels.php:42
2245
+ msgid "Hide on products page"
2246
+ msgstr ""
2247
+
2248
+ #: includes/class-wcj-price-labels.php:43
2249
+ msgid "Hide on single"
2250
+ msgstr ""
2251
+
2252
+ #: includes/class-wcj-price-labels.php:44
2253
+ msgid "Hide on all pages"
2254
+ msgstr ""
2255
+
2256
+ #: includes/class-wcj-price-labels.php:45
2257
+ msgid "Hide on cart page only"
2258
+ msgstr ""
2259
+
2260
+ #: includes/class-wcj-price-labels.php:47
2261
+ msgid "Hide for main price"
2262
+ msgstr ""
2263
+
2264
+ #: includes/class-wcj-price-labels.php:48
2265
+ msgid "Hide for all variations"
2266
+ msgstr ""
2267
+
2268
+ #: includes/class-wcj-price-labels.php:134
2269
+ msgid "Booster: Custom Price Labels"
2270
+ msgstr ""
2271
+
2272
+ #: includes/class-wcj-product-add-to-cart.php:24
2273
+ msgid "Product Add to Cart"
2274
+ msgstr ""
2275
+
2276
+ #: includes/class-wcj-product-add-to-cart.php:25
2277
+ msgid "Set any local url to redirect to on WooCommerce Add to Cart."
2278
+ msgstr ""
2279
+
2280
+ #: includes/class-wcj-product-add-to-cart.php:26
2281
+ msgid "Automatically add to cart on product visit."
2282
+ msgstr ""
2283
+
2284
+ #: includes/class-wcj-product-add-to-cart.php:27
2285
+ msgid "Display radio buttons instead of drop box for variable products."
2286
+ msgstr ""
2287
+
2288
+ #: includes/class-wcj-product-add-to-cart.php:28
2289
+ msgid "Disable quantity input."
2290
+ msgstr ""
2291
+
2292
+ #: includes/class-wcj-product-add-to-cart.php:29
2293
+ msgid "Disable add to cart button on per product basis."
2294
+ msgstr ""
2295
+
2296
+ #: includes/class-wcj-product-add-to-cart.php:30
2297
+ msgid "Open external products on add to cart in new window."
2298
+ msgstr ""
2299
+
2300
+ #: includes/class-wcj-product-add-to-cart.php:31
2301
+ msgid ""
2302
+ "Replace Add to Cart button on archives with button from single product pages."
2303
+ msgstr ""
2304
+
2305
+ #: includes/class-wcj-product-add-to-cart.php:32
2306
+ msgid "Customize Add to Cart messages."
2307
+ msgstr ""
2308
+
2309
+ #: includes/class-wcj-product-add-to-cart.php:142
2310
+ #, php-format
2311
+ msgctxt "Item name in quotes"
2312
+ msgid "&ldquo;%s&rdquo;"
2313
+ msgstr ""
2314
+
2315
+ #: includes/class-wcj-product-add-to-cart.php:147
2316
+ #, php-format
2317
+ msgid "%s has been added to your cart."
2318
+ msgid_plural "%s have been added to your cart."
2319
+ msgstr[0] ""
2320
+ msgstr[1] ""
2321
+
2322
+ #: includes/class-wcj-product-add-to-cart.php:151
2323
+ #: includes/settings/wcj-settings-product-add-to-cart.php:269
2324
+ msgid "Continue shopping"
2325
+ msgstr ""
2326
+
2327
+ #: includes/class-wcj-product-add-to-cart.php:153
2328
+ #: includes/settings/wcj-settings-product-add-to-cart.php:283
2329
+ msgid "View cart"
2330
+ msgstr ""
2331
+
2332
+ #: includes/class-wcj-product-addons.php:28
2333
+ msgid "Product Addons"
2334
+ msgstr ""
2335
+
2336
+ #: includes/class-wcj-product-addons.php:29
2337
+ msgid "Add (paid/free/discount) addons to WooCommerce products."
2338
+ msgstr ""
2339
+
2340
+ #: includes/class-wcj-product-addons.php:100
2341
+ msgid "Some of the required addons are not selected!"
2342
+ msgstr ""
2343
+
2344
+ #: includes/class-wcj-product-addons.php:115
2345
+ msgid ""
2346
+ "Booster: Free plugin's version is limited to only three products with per "
2347
+ "product addons enabled at a time. You will need to get <a href=\"http://"
2348
+ "booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
2349
+ "number of products with per product addons."
2350
+ msgstr ""
2351
+
2352
+ #: includes/class-wcj-product-bookings.php:25
2353
+ msgid "Bookings"
2354
+ msgstr ""
2355
+
2356
+ #: includes/class-wcj-product-bookings.php:26
2357
+ msgid "Add bookings products to WooCommerce."
2358
+ msgstr ""
2359
+
2360
+ #: includes/class-wcj-product-bookings.php:28
2361
+ msgid ""
2362
+ "When enabled, module will add new \"Booster: Bookings\" meta box to each "
2363
+ "product's edit page."
2364
+ msgstr ""
2365
+
2366
+ #: includes/class-wcj-product-bookings.php:131
2367
+ #: includes/class-wcj-product-bookings.php:225
2368
+ #: includes/settings/wcj-settings-product-bookings.php:77
2369
+ msgid "\"Date to\" must be after \"Date from\""
2370
+ msgstr ""
2371
+
2372
+ #: includes/class-wcj-product-bookings.php:144
2373
+ #: includes/class-wcj-product-open-pricing.php:224
2374
+ msgid "Read more"
2375
+ msgstr ""
2376
+
2377
+ #: includes/class-wcj-product-bookings.php:183
2378
+ #: includes/settings/wcj-settings-product-bookings.php:49
2379
+ msgid "Period"
2380
+ msgstr ""
2381
+
2382
+ #: includes/class-wcj-product-bookings.php:215
2383
+ #: includes/settings/wcj-settings-product-bookings.php:63
2384
+ msgid "\"Date from\" must be set"
2385
+ msgstr ""
2386
+
2387
+ #: includes/class-wcj-product-bookings.php:219
2388
+ #: includes/settings/wcj-settings-product-bookings.php:70
2389
+ msgid "\"Date to\" must be set"
2390
+ msgstr ""
2391
+
2392
+ #: includes/class-wcj-product-bookings.php:307
2393
+ #: includes/settings/wcj-settings-product-bookings.php:35
2394
+ msgid "Date from"
2395
+ msgstr ""
2396
+
2397
+ #: includes/class-wcj-product-bookings.php:311
2398
+ #: includes/settings/wcj-settings-product-bookings.php:42
2399
+ msgid "Date to"
2400
+ msgstr ""
2401
+
2402
+ #: includes/class-wcj-product-bookings.php:326
2403
+ #: includes/settings/wcj-settings-product-bookings.php:56
2404
+ msgid "/ day"
2405
+ msgstr ""
2406
+
2407
+ #: includes/class-wcj-product-bookings.php:394
2408
+ msgid ""
2409
+ "Booster: Free plugin's version is limited to only one bookings product "
2410
+ "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
2411
+ "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
2412
+ "products."
2413
+ msgstr ""
2414
+
2415
+ #: includes/class-wcj-product-bulk-meta-editor.php:25
2416
+ #: includes/class-wcj-product-bulk-meta-editor.php:32
2417
+ msgid "Product Bulk Meta Editor"
2418
+ msgstr ""
2419
+
2420
+ #: includes/class-wcj-product-bulk-meta-editor.php:26
2421
+ msgid "Set WooCommerce products meta with bulk editor."
2422
+ msgstr ""
2423
+
2424
+ #: includes/class-wcj-product-bulk-meta-editor.php:33
2425
+ msgid "Product Bulk Meta Editor Tool."
2426
+ msgstr ""
2427
+
2428
+ #: includes/class-wcj-product-bulk-meta-editor.php:164
2429
+ msgid "Please enter meta key."
2430
+ msgstr ""
2431
+
2432
+ #: includes/class-wcj-product-bulk-meta-editor.php:184
2433
+ #, php-format
2434
+ msgid "Meta for <strong>%d</strong> product(s) was updated."
2435
+ msgstr ""
2436
+
2437
+ #: includes/class-wcj-product-bulk-meta-editor.php:187
2438
+ #, php-format
2439
+ msgid "Meta for <strong>%d</strong> product(s) was not updated."
2440
+ msgstr ""
2441
+
2442
+ #: includes/class-wcj-product-bulk-meta-editor.php:224
2443
+ msgid "Meta key"
2444
+ msgstr ""
2445
+
2446
+ #: includes/class-wcj-product-bulk-meta-editor.php:226
2447
+ #, php-format
2448
+ msgid "for example %s"
2449
+ msgstr ""
2450
+
2451
+ #: includes/class-wcj-product-bulk-meta-editor.php:232
2452
+ #: includes/settings/wcj-settings-wholesale-price.php:43
2453
+ msgid "Show"
2454
+ msgstr ""
2455
+
2456
+ #: includes/class-wcj-product-bulk-meta-editor.php:236
2457
+ #: includes/class-wcj-product-bulk-meta-editor.php:340
2458
+ msgid "Meta"
2459
+ msgstr ""
2460
+
2461
+ #: includes/class-wcj-product-bulk-meta-editor.php:259
2462
+ msgid ""
2463
+ "Hold <strong>Control</strong> key to select multiple products. Press "
2464
+ "<strong>Control</strong> + <strong>A</strong> to select all products."
2465
+ msgstr ""
2466
+
2467
+ #: includes/class-wcj-product-bulk-meta-editor.php:294
2468
+ #: includes/settings/wcj-settings-export.php:91
2469
+ #: includes/settings/wcj-settings-export.php:161
2470
+ #: includes/settings/wcj-settings-export.php:240
2471
+ #: includes/settings/wcj-settings-global-discount.php:69
2472
+ #: includes/settings/wcj-settings-orders.php:110
2473
+ #: includes/settings/wcj-settings-product-listings.php:264
2474
+ msgid "Value"
2475
+ msgstr ""
2476
+
2477
+ #: includes/class-wcj-product-bulk-meta-editor.php:299
2478
+ msgid "Set"
2479
+ msgstr ""
2480
+
2481
+ #: includes/class-wcj-product-bulk-meta-editor.php:303
2482
+ msgid "Set Meta for All Products"
2483
+ msgstr ""
2484
+
2485
+ #: includes/class-wcj-product-bulk-meta-editor.php:320
2486
+ msgid "Save all"
2487
+ msgstr ""
2488
+
2489
+ #: includes/class-wcj-product-bulk-meta-editor.php:323
2490
+ msgid "Delete all"
2491
+ msgstr ""
2492
+
2493
+ #: includes/class-wcj-product-bulk-meta-editor.php:364
2494
+ msgid "Save"
2495
+ msgstr ""
2496
+
2497
+ #: includes/class-wcj-product-bulk-meta-editor.php:389
2498
+ #: includes/class-wcj-purchase-data.php:76
2499
+ #: includes/export/class-wcj-fields-helper.php:280
2500
+ #: includes/functions/wcj-reports-functions.php:25
2501
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
2502
+ msgid "Product ID"
2503
+ msgstr ""
2504
+
2505
+ #: includes/class-wcj-product-bulk-meta-editor.php:392
2506
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
2507
+ msgid "Product status"
2508
+ msgstr ""
2509
+
2510
+ #: includes/class-wcj-product-bulk-meta-editor.php:395
2511
+ #: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
2512
+ msgid "Meta keys"
2513
+ msgstr ""
2514
+
2515
+ #: includes/class-wcj-product-bulk-meta-editor.php:417
2516
+ msgid "Show all"
2517
+ msgstr ""
2518
+
2519
+ #: includes/class-wcj-product-bulk-price-converter.php:24
2520
+ #: includes/class-wcj-product-bulk-price-converter.php:31
2521
+ msgid "Bulk Price Converter"
2522
+ msgstr ""
2523
+
2524
+ #: includes/class-wcj-product-bulk-price-converter.php:25
2525
+ msgid "Multiply all WooCommerce products prices by set value."
2526
+ msgstr ""
2527
+
2528
+ #: includes/class-wcj-product-bulk-price-converter.php:32
2529
+ msgid "Bulk Price Converter Tool."
2530
+ msgstr ""
2531
+
2532
+ #: includes/class-wcj-product-bulk-price-converter.php:150
2533
+ msgid "Price Type"
2534
+ msgstr ""
2535
+
2536
+ #: includes/class-wcj-product-bulk-price-converter.php:151
2537
+ msgid "Original Price"
2538
+ msgstr ""
2539
+
2540
+ #: includes/class-wcj-product-bulk-price-converter.php:152
2541
+ msgid "Modified Price"
2542
+ msgstr ""
2543
+
2544
+ #: includes/class-wcj-product-bulk-price-converter.php:205
2545
+ msgid "Multiply value must be above zero."
2546
+ msgstr ""
2547
+
2548
+ #: includes/class-wcj-product-bulk-price-converter.php:212
2549
+ msgid "Prices changed successfully!"
2550
+ msgstr ""
2551
+
2552
+ #: includes/class-wcj-product-bulk-price-converter.php:237
2553
+ msgid "Multiply all product prices by"
2554
+ msgstr ""
2555
+
2556
+ #: includes/class-wcj-product-bulk-price-converter.php:245
2557
+ msgid "Price type to modify"
2558
+ msgstr ""
2559
+
2560
+ #: includes/class-wcj-product-bulk-price-converter.php:247
2561
+ msgid "Both"
2562
+ msgstr ""
2563
+
2564
+ #: includes/class-wcj-product-bulk-price-converter.php:249
2565
+ msgid "Sale prices only"
2566
+ msgstr ""
2567
+
2568
+ #: includes/class-wcj-product-bulk-price-converter.php:251
2569
+ msgid "Regular prices only"
2570
+ msgstr ""
2571
+
2572
+ #: includes/class-wcj-product-bulk-price-converter.php:258
2573
+ msgid "Products category"
2574
+ msgstr ""
2575
+
2576
+ #: includes/class-wcj-product-bulk-price-converter.php:260
2577
+ #: includes/shortcodes/class-wcj-products-shortcodes.php:303
2578
+ msgid "Any"
2579
+ msgstr ""
2580
+
2581
+ #: includes/class-wcj-product-bulk-price-converter.php:262
2582
+ msgid "None"
2583
+ msgstr ""
2584
+
2585
+ #: includes/class-wcj-product-bulk-price-converter.php:269
2586
+ msgid "\"Pretty prices\" threshold"
2587
+ msgstr ""
2588
+
2589
+ #: includes/class-wcj-product-bulk-price-converter.php:273
2590
+ msgid "Leave zero to disable"
2591
+ msgstr ""
2592
+
2593
+ #: includes/class-wcj-product-bulk-price-converter.php:278
2594
+ msgid "Preview Prices"
2595
+ msgstr ""
2596
+
2597
+ #: includes/class-wcj-product-bulk-price-converter.php:285
2598
+ msgid "Change Prices"
2599
+ msgstr ""
2600
+
2601
+ #: includes/class-wcj-product-by-country.php:25
2602
+ msgid "Product Visibility by Country"
2603
+ msgstr ""
2604
+
2605
+ #: includes/class-wcj-product-by-country.php:26
2606
+ msgid "Display WooCommerce products by customer's country."
2607
+ msgstr ""
2608
+
2609
+ #: includes/class-wcj-product-by-country.php:28
2610
+ msgid ""
2611
+ "When enabled, module will add new \"Booster: Product Visibility by Country\" "
2612
+ "meta box to each product's edit page."
2613
+ msgstr ""
2614
+
2615
+ #: includes/class-wcj-product-by-country.php:65
2616
+ #: includes/widgets/class-wcj-widget-country-switcher.php:69
2617
+ #: includes/widgets/class-wcj-widget-selector.php:64
2618
+ msgid "Countries"
2619
+ msgstr ""
2620
+
2621
+ #: includes/class-wcj-product-by-date.php:29
2622
+ msgid "Product Availability by Date"
2623
+ msgstr ""
2624
+
2625
+ #: includes/class-wcj-product-by-date.php:30
2626
+ msgid "WooCommerce product availability by date."
2627
+ msgstr ""
2628
+
2629
+ #: includes/class-wcj-product-by-date.php:95
2630
+ #: includes/class-wcj-product-by-date.php:97
2631
+ #: includes/settings/wcj-settings-product-by-date.php:87
2632
+ msgid ""
2633
+ "<p style=\"color:red;\">%product_title% is not available this month.</p>"
2634
+ msgstr ""
2635
+
2636
+ #: includes/class-wcj-product-by-date.php:98
2637
+ #: includes/class-wcj-product-by-date.php:100
2638
+ #: includes/settings/wcj-settings-product-by-date.php:75
2639
+ msgid ""
2640
+ "<p style=\"color:red;\">%product_title% is available only on %date_this_month"
2641
+ "% this month.</p>"
2642
+ msgstr ""
2643
+
2644
+ #: includes/class-wcj-product-by-time.php:29
2645
+ msgid "Product Availability by Time"
2646
+ msgstr ""
2647
+
2648
+ #: includes/class-wcj-product-by-time.php:30
2649
+ msgid "WooCommerce product availability by time."
2650
+ msgstr ""
2651
+
2652
+ #: includes/class-wcj-product-by-time.php:91
2653
+ #: includes/class-wcj-product-by-time.php:93
2654
+ #: includes/settings/wcj-settings-product-by-time.php:87
2655
+ msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
2656
+ msgstr ""
2657
+
2658
+ #: includes/class-wcj-product-by-time.php:94
2659
+ #: includes/class-wcj-product-by-time.php:96
2660
+ #: includes/settings/wcj-settings-product-by-time.php:75
2661
+ msgid ""
2662
+ "<p style=\"color:red;\">%product_title% is available only at %time_today% "
2663
+ "today.</p>"
2664
+ msgstr ""
2665
+
2666
+ #: includes/class-wcj-product-by-user-role.php:26
2667
+ msgid "Product Visibility by User Role"
2668
+ msgstr ""
2669
+
2670
+ #: includes/class-wcj-product-by-user-role.php:27
2671
+ msgid "Display WooCommerce products by customer's user role."
2672
+ msgstr ""
2673
+
2674
+ #: includes/class-wcj-product-by-user-role.php:29
2675
+ msgid ""
2676
+ "When enabled, module will add new \"Booster: Product Visibility by User Role"
2677
+ "\" meta box to each product's edit page."
2678
+ msgstr ""
2679
+
2680
+ #: includes/class-wcj-product-by-user.php:26
2681
+ msgid "User Products"
2682
+ msgstr ""
2683
+
2684
+ #: includes/class-wcj-product-by-user.php:27
2685
+ msgid "Let users add new WooCommerce products from frontend."
2686
+ msgstr ""
2687
+
2688
+ #: includes/class-wcj-product-by-user.php:29
2689
+ msgid ""
2690
+ "Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
2691
+ "form to frontend."
2692
+ msgstr ""
2693
+
2694
+ #: includes/class-wcj-product-by-user.php:154
2695
+ #: includes/class-wcj-product-by-user.php:163
2696
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:313
2697
+ msgid "Wrong user ID!"
2698
+ msgstr ""
2699
+
2700
+ #: includes/class-wcj-product-by-user.php:197
2701
+ #: includes/admin/class-wcj-tools.php:74
2702
+ #: includes/export/class-wcj-fields-helper.php:294
2703
+ msgid "Status"
2704
+ msgstr ""
2705
+
2706
+ #: includes/class-wcj-product-by-user.php:197
2707
+ #: includes/class-wcj-product-tabs.php:555
2708
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:66
2709
+ #: includes/input-fields/wcj-product-input-fields-options.php:51
2710
+ #: includes/settings/wcj-settings-export.php:75
2711
+ #: includes/settings/wcj-settings-export.php:143
2712
+ #: includes/settings/wcj-settings-export.php:224
2713
+ #: includes/settings/wcj-settings-product-addons.php:85
2714
+ #: includes/settings/wcj-settings-product-by-user.php:167
2715
+ #: includes/settings/wcj-settings-product-tabs.php:52
2716
+ #: includes/settings/wcj-settings-product-tabs.php:361
2717
+ #: includes/settings/wcj-settings-product-tabs.php:382
2718
+ #: includes/settings/wcj-settings-product-tabs.php:403
2719
+ #: includes/settings/wcj-settings-purchase-data.php:66
2720
+ #: includes/settings/wcj-settings-related-products.php:24
2721
+ #: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:56
2722
+ #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
2723
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:116
2724
+ #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
2725
+ #: includes/widgets/class-wcj-widget-country-switcher.php:62
2726
+ #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
2727
+ #: includes/widgets/class-wcj-widget-multicurrency.php:63
2728
+ #: includes/widgets/class-wcj-widget-selector.php:52
2729
+ msgid "Title"
2730
+ msgstr ""
2731
+
2732
+ #: includes/class-wcj-product-custom-info.php:24
2733
+ #: includes/admin/class-wc-settings-jetpack.php:458
2734
+ #: includes/functions/wcj-general-functions.php:148
2735
+ msgid "Product Info"
2736
+ msgstr ""
2737
+
2738
+ #: includes/class-wcj-product-custom-info.php:25
2739
+ #: includes/class-wcj-product-info.php:102
2740
+ msgid "Add additional info to WooCommerce category and single product pages."
2741
+ msgstr ""
2742
+
2743
+ #: includes/class-wcj-product-images.php:25
2744
+ msgid "Product Images"
2745
+ msgstr ""
2746
+
2747
+ #: includes/class-wcj-product-images.php:26
2748
+ msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2749
+ msgstr ""
2750
+
2751
+ #: includes/class-wcj-product-images.php:204
2752
+ #: includes/settings/wcj-settings-product-images.php:103
2753
+ msgid "Sale!"
2754
+ msgstr ""
2755
+
2756
+ #: includes/class-wcj-product-info.php:101
2757
+ msgid "Product Info V1"
2758
+ msgstr ""
2759
+
2760
+ #: includes/class-wcj-product-info.php:123
2761
+ #: include