Booster for WooCommerce - Version 3.2.1

Version Description

  • 30/10/2017 =
  • Dev - PRICES & CURRENCIES - Currency per Product - Minor code refactoring.
  • Dev - PRICES & CURRENCIES - Wholesale Price - Getting product directly from cart (instead of by ID) - this fixes the issue with "Product Addons" module compatibility.
  • Dev - PRICES & CURRENCIES - Wholesale Price - Minor code refactoring and admin settings restyling.
  • Dev - SHIPPING & ORDERS - Shipping Methods by Min/Max Order Amount - Initial module release.
  • Dev - SHIPPING & ORDERS - Shipping Methods by Products - "Include" Options - "Validate all" option added.
  • Dev - SHIPPING & ORDERS - Shipping Methods by Users - "... by Users" (user_id) section added. Module (documentation) URL changed.
  • Dev - SHIPPING & ORDERS - WCJ_Module_Shipping_By_Condition (Shipping Methods by Products / Users) - Admin settings restyled.
  • Dev - SHIPPING & ORDERS - WCJ_Module_Shipping_By_Condition - Code refactoring.
  • Dev - PDF INVOICING & PACKING SLIPS - Admin settings - Minor restyling.
  • Fix - EMAILS & MISC. - Admin Tools - Show Order/Product Meta - Array type values display fixed.
  • Dev - EMAILS & MISC. - Export - Orders Items - Additional Fields - "Order Item Meta" type added.
  • Dev - EMAILS & MISC. - Export - Orders Items - Additional Fields - Code refactoring.
  • Dev - Shortcodes - General - [wcj_store_address] shortcode added.
  • Dev - Shortcodes - General - [wcj_wp_option] shortcode added.
  • Dev - Functions - Products - wcj_get_product_input_fields() - Array type values display fixed.
  • Dev - Functions - Files renamed.
  • Dev - Langs - pt_BR, ro_RO, ja, is_IS, it_IT, sv_SE, az translation files added.
  • Dev - Langs - "po" files removed.
  • Dev - Classes - WCJ_Module - Minor code refactoring.
Download this release

Release Info

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

Code changes from version 3.2.0 to 3.2.1

Files changed (44) hide show
  1. includes/admin/wcj-modules-cats.php +3 -4
  2. includes/class-wcj-admin-tools.php +12 -9
  3. includes/class-wcj-currency-per-product.php +1 -16
  4. includes/class-wcj-shipping-by-order-amount.php +65 -0
  5. includes/class-wcj-shipping-by-products.php +36 -7
  6. includes/class-wcj-shipping-by-user-role.php +20 -9
  7. includes/class-wcj-wholesale-price.php +18 -19
  8. includes/classes/class-wcj-module-shipping-by-condition.php +22 -77
  9. includes/classes/class-wcj-module.php +17 -7
  10. includes/export/class-wcj-exporter-orders.php +29 -20
  11. includes/functions/{wcj-admin-functions.php → wcj-functions-admin.php} +0 -0
  12. includes/functions/{wcj-core-functions.php → wcj-functions-core.php} +0 -0
  13. includes/functions/{wcj-country-functions.php → wcj-functions-country.php} +0 -0
  14. includes/functions/{wcj-currencies.php → wcj-functions-currencies.php} +4 -2
  15. includes/functions/{wcj-date-time-functions.php → wcj-functions-date-time.php} +0 -0
  16. includes/functions/{wcj-debug-functions.php → wcj-functions-debug.php} +0 -0
  17. includes/functions/{wcj-eu-vat-functions.php → wcj-functions-eu-vat.php} +0 -0
  18. includes/functions/{wcj-exchange-rates-functions.php → wcj-functions-exchange-rates.php} +0 -0
  19. includes/functions/{wcj-general-functions.php → wcj-functions-general.php} +17 -1
  20. includes/functions/{wcj-html-functions.php → wcj-functions-html.php} +0 -0
  21. includes/functions/{wcj-invoicing-functions.php → wcj-functions-invoicing.php} +0 -0
  22. includes/functions/{wcj-order-functions.php → wcj-functions-orders.php} +1 -1
  23. includes/functions/{wcj-price-currency-functions.php → wcj-functions-price-currency.php} +0 -0
  24. includes/functions/{wcj-product-functions.php → wcj-functions-products.php} +5 -4
  25. includes/functions/{wcj-reports-functions.php → wcj-functions-reports.php} +0 -0
  26. includes/functions/{wcj-user-roles-functions.php → wcj-functions-users.php} +18 -2
  27. includes/settings/wcj-settings-currency-per-product.php +2 -2
  28. includes/settings/wcj-settings-export.php +2 -1
  29. includes/settings/wcj-settings-pdf-invoicing-footer.php +2 -2
  30. includes/settings/wcj-settings-pdf-invoicing-styling.php +3 -2
  31. includes/settings/wcj-settings-pdf-invoicing-templates.php +2 -2
  32. includes/settings/wcj-settings-shipping-by-condition.php +76 -0
  33. includes/settings/wcj-settings-shipping-by-order-amount.php +58 -0
  34. includes/settings/wcj-settings-shipping-options.php +5 -2
  35. includes/settings/wcj-settings-wholesale-price.php +3 -3
  36. includes/shortcodes/class-wcj-general-shortcodes.php +39 -2
  37. langs/woocommerce-jetpack-az.mo +0 -0
  38. langs/woocommerce-jetpack-de_DE.po +0 -10815
  39. langs/woocommerce-jetpack-es_ES.po +0 -13688
  40. langs/woocommerce-jetpack-fr_FR.po +0 -3028
  41. langs/woocommerce-jetpack-is_IS.mo +0 -0
  42. langs/woocommerce-jetpack-it_IT.mo +0 -0
  43. langs/woocommerce-jetpack-ja.mo +0 -0
  44. langs/woocommerce-jetpack-nl_NL.po +0 -2607
includes/admin/wcj-modules-cats.php CHANGED
@@ -1,10 +1,8 @@
1
  <?php
2
  /**
3
- * WooCommerce Modules Array
4
  *
5
- * The WooCommerce Modules Array.
6
- *
7
- * @version 3.2.0
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -129,6 +127,7 @@ return apply_filters( 'wcj_modules', array(
129
  'shipping_calculator',
130
  'shipping_by_user_role',
131
  'shipping_by_products',
 
132
  'address_formats',
133
  'orders',
134
  'order_min_amount',
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Modules Array
4
  *
5
+ * @version 3.2.1
 
 
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
127
  'shipping_calculator',
128
  'shipping_by_user_role',
129
  'shipping_by_products',
130
+ 'shipping_by_order_amount',
131
  'address_formats',
132
  'orders',
133
  'order_min_amount',
includes/class-wcj-admin-tools.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Admin Tools
4
  *
5
- * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -94,7 +94,7 @@ class WCJ_Admin_Tools extends WCJ_Module {
94
  /**
95
  * create_meta_meta_box.
96
  *
97
- * @version 2.7.0
98
  * @since 2.5.8
99
  */
100
  function create_meta_meta_box( $post ) {
@@ -104,7 +104,7 @@ class WCJ_Admin_Tools extends WCJ_Module {
104
  $meta = get_post_meta( $post_id );
105
  $table_data = array();
106
  foreach ( $meta as $meta_key => $meta_values ) {
107
- $table_data[] = array( $meta_key, implode( ', ', $meta_values ) );
108
  }
109
  $html .= wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'vertical' ) );
110
  // Items Meta (for orders only)
@@ -113,14 +113,17 @@ class WCJ_Admin_Tools extends WCJ_Module {
113
  $table_data = array();
114
  foreach ( $_order->get_items() as $item_key => $item ) {
115
  foreach ( $item['item_meta'] as $item_meta_key => $item_meta_value ) {
116
- if ( is_array( $item_meta_value ) ) {
117
- $item_meta_value = implode( ', ', $item_meta_value );
118
- }
119
- $table_data[] = array( $item_key, $item_meta_key, $item_meta_value );
120
  }
121
  }
122
- $html .= '<h3>' . __( 'Order Items Meta', 'woocommerce-jetpack' ) . '</h3>';
123
- $html .= wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'vertical' ) );
 
 
 
 
 
 
124
  }
125
  // Output
126
  echo $html;
2
  /**
3
  * Booster for WooCommerce - Module - Admin Tools
4
  *
5
+ * @version 3.2.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
94
  /**
95
  * create_meta_meta_box.
96
  *
97
+ * @version 3.2.1
98
  * @since 2.5.8
99
  */
100
  function create_meta_meta_box( $post ) {
104
  $meta = get_post_meta( $post_id );
105
  $table_data = array();
106
  foreach ( $meta as $meta_key => $meta_values ) {
107
+ $table_data[] = array( $meta_key, esc_html( print_r( maybe_unserialize( $meta_values[0] ), true ) ) );
108
  }
109
  $html .= wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'vertical' ) );
110
  // Items Meta (for orders only)
113
  $table_data = array();
114
  foreach ( $_order->get_items() as $item_key => $item ) {
115
  foreach ( $item['item_meta'] as $item_meta_key => $item_meta_value ) {
116
+ $table_data[] = array( $item_key, $item_meta_key, esc_html( print_r( maybe_unserialize( $item_meta_value ), true ) ) );
 
 
 
117
  }
118
  }
119
+ if ( ! empty( $table_data ) ) {
120
+ $html .= '<h3>' . __( 'Order Items Meta', 'woocommerce-jetpack' ) . '</h3>';
121
+ $table_data = array_merge(
122
+ array( array( __( 'Item Key', 'woocommerce-jetpack' ), __( 'Item Meta Key', 'woocommerce-jetpack' ), __( 'Item Meta Value', 'woocommerce-jetpack' ) ) ),
123
+ $table_data
124
+ );
125
+ $html .= wcj_get_table_html( $table_data, array( 'table_class' => 'widefat striped', 'table_heading_type' => 'horizontal' ) );
126
+ }
127
  }
128
  // Output
129
  echo $html;
includes/class-wcj-currency-per-product.php CHANGED
@@ -2,7 +2,7 @@
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
  */
@@ -94,21 +94,6 @@ class WCJ_Currency_Per_Product extends WCJ_Module {
94
  return $package_rates;
95
  }
96
 
97
- /**
98
- * get_users_as_options.
99
- *
100
- * @version 2.9.0
101
- * @since 2.9.0
102
- * @todo (maybe) move to global functions
103
- */
104
- function get_users_as_options() {
105
- $users = array();
106
- foreach ( get_users( 'orderby=display_name' ) as $user ) {
107
- $users[ $user->ID ] = $user->display_name . ' ' . '[ID:' . $user->ID . ']';
108
- }
109
- return $users;
110
- }
111
-
112
  /**
113
  * get_product_currency.
114
  *
2
  /**
3
  * Booster for WooCommerce - Module - Currency per Product
4
  *
5
+ * @version 3.2.1
6
  * @since 2.5.2
7
  * @author Algoritmika Ltd.
8
  */
94
  return $package_rates;
95
  }
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  /**
98
  * get_product_currency.
99
  *
includes/class-wcj-shipping-by-order-amount.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Module - Shipping Methods by Min/Max Order Amount
4
+ *
5
+ * @version 3.2.1
6
+ * @since 3.2.1
7
+ * @author Algoritmika Ltd.
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
+
12
+ if ( ! class_exists( 'WCJ_Shipping_By_Order_Amount' ) ) :
13
+
14
+ class WCJ_Shipping_By_Order_Amount extends WCJ_Module {
15
+
16
+ /**
17
+ * Constructor.
18
+ *
19
+ * @version 3.2.1
20
+ * @since 3.2.1
21
+ * @todo (maybe) add customer messages on cart and checkout pages (if some shipping method is not available)
22
+ */
23
+ function __construct() {
24
+
25
+ $this->id = 'shipping_by_order_amount';
26
+ $this->short_desc = __( 'Shipping Methods by Min/Max Order Amount', 'woocommerce-jetpack' );
27
+ $this->desc = __( 'Set minimum and/or maximum order amount for WooCommerce shipping methods to show up.', 'woocommerce-jetpack' );
28
+ $this->link_slug = 'woocommerce-shipping-methods-by-min-max-order-amount';
29
+ parent::__construct();
30
+
31
+ if ( $this->is_enabled() ) {
32
+ add_filter( 'woocommerce_package_rates', array( $this, 'available_shipping_methods' ), PHP_INT_MAX, 2 );
33
+ }
34
+ }
35
+
36
+ /**
37
+ * available_shipping_methods.
38
+ *
39
+ * @version 3.2.1
40
+ * @since 3.2.1
41
+ * @todo apply_filters( 'booster_get_option' )
42
+ * @todo (maybe) add option to include or exclude taxes when calculating cart total
43
+ */
44
+ function available_shipping_methods( $rates, $package ) {
45
+ if ( ! isset( WC()->cart ) || WC()->cart->is_empty() ) {
46
+ return $rates;
47
+ }
48
+ $total_in_cart = WC()->cart->cart_contents_total;
49
+ foreach ( $rates as $rate_key => $rate ) {
50
+ $min = get_option( 'wcj_shipping_by_order_amount_min_' . $rate->method_id, 0 );
51
+ $max = get_option( 'wcj_shipping_by_order_amount_max_' . $rate->method_id, 0 );
52
+ if ( 0 != $min && $total_in_cart < $min ) {
53
+ unset( $rates[ $rate_key ] );
54
+ } elseif ( 0 != $max && $total_in_cart > $max ) {
55
+ unset( $rates[ $rate_key ] );
56
+ }
57
+ }
58
+ return $rates;
59
+ }
60
+
61
+ }
62
+
63
+ endif;
64
+
65
+ return new WCJ_Shipping_By_Order_Amount();
includes/class-wcj-shipping-by-products.php CHANGED
@@ -2,7 +2,7 @@
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
  */
@@ -18,6 +18,7 @@ class WCJ_Shipping_By_Products extends WCJ_Module_Shipping_By_Condition {
18
  *
19
  * @version 3.2.0
20
  * @since 3.2.0
 
21
  */
22
  function __construct() {
23
 
@@ -47,17 +48,20 @@ class WCJ_Shipping_By_Products extends WCJ_Module_Shipping_By_Condition {
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;
@@ -65,17 +69,23 @@ class WCJ_Shipping_By_Products extends WCJ_Module_Shipping_By_Condition {
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
  /**
@@ -95,6 +105,25 @@ class WCJ_Shipping_By_Products extends WCJ_Module_Shipping_By_Condition {
95
  }
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
 
100
  endif;
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by Products
4
  *
5
+ * @version 3.2.1
6
  * @since 3.2.0
7
  * @author Algoritmika Ltd.
8
  */
18
  *
19
  * @version 3.2.0
20
  * @since 3.2.0
21
+ * @todo (maybe) add customer messages on cart and checkout pages (if some shipping method is not available)
22
  */
23
  function __construct() {
24
 
48
  /**
49
  * check.
50
  *
51
+ * @version 3.2.1
52
  * @since 3.2.0
53
  */
54
+ function check( $options_id, $products_or_cats_or_tags, $include_or_exclude ) {
55
  if ( ! isset( WC()->cart ) || WC()->cart->is_empty() ) {
56
  return true;
57
  }
58
+ $validate_all_for_include = ( 'include' === $include_or_exclude && 'yes' === get_option( 'wcj_shipping_by_' . $options_id . '_validate_all_enabled', 'no' ) );
59
  foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) {
60
  switch( $options_id ) {
61
  case 'products':
62
+ if ( $validate_all_for_include && ! in_array( $values['product_id'], $products_or_cats_or_tags ) ) {
63
+ return false;
64
+ } elseif ( ! $validate_all_for_include && in_array( $values['product_id'], $products_or_cats_or_tags ) ) {
65
  return true;
66
  }
67
  break;
69
  case 'product_tags':
70
  $product_terms = get_the_terms( $values['product_id'], ( 'product_cats' === $options_id ? 'product_cat' : 'product_tag' ) );
71
  if ( empty( $product_terms ) ) {
72
+ if ( $validate_all_for_include ) {
73
+ return false;
74
+ } else {
75
+ continue;
76
+ }
77
  }
78
  foreach( $product_terms as $product_term ) {
79
+ if ( $validate_all_for_include && ! in_array( $product_term->term_id, $products_or_cats_or_tags ) ) {
80
+ return false;
81
+ } elseif ( ! $validate_all_for_include && in_array( $product_term->term_id, $products_or_cats_or_tags ) ) {
82
  return true;
83
  }
84
  }
85
  break;
86
  }
87
  }
88
+ return $validate_all_for_include;
89
  }
90
 
91
  /**
105
  }
106
  }
107
 
108
+ /**
109
+ * get_additional_section_settings.
110
+ *
111
+ * @version 3.2.1
112
+ * @since 3.2.1
113
+ */
114
+ function get_additional_section_settings( $options_id ) {
115
+ return array(
116
+ array(
117
+ 'title' => __( '"Include" Options', 'woocommerce-jetpack' ),
118
+ 'desc_tip' => __( 'Enable this checkbox if you want all products in cart to be valid (instead of at least one).', 'woocommerce-jetpack' ),
119
+ 'desc' => __( 'Validate all', 'woocommerce-jetpack' ),
120
+ 'id' => 'wcj_shipping_by_' . $options_id . '_validate_all_enabled',
121
+ 'type' => 'checkbox',
122
+ 'default' => 'no',
123
+ ),
124
+ );
125
+ }
126
+
127
  }
128
 
129
  endif;
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 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,15 +16,15 @@ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
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(
@@ -34,6 +34,10 @@ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
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(
@@ -50,16 +54,21 @@ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
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();
@@ -67,7 +76,7 @@ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
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
  }
@@ -79,13 +88,15 @@ class WCJ_Shipping_By_User_Role extends WCJ_Module_Shipping_By_Condition {
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;
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by User Role
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 3.2.1
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, users or membership plans to include/exclude for WooCommerce shipping methods to show up.', 'woocommerce-jetpack' );
27
+ $this->link_slug = 'woocommerce-shipping-methods-by-users';
28
 
29
  $this->condition_options = array(
30
  'user_roles' => array(
34
  admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=emails_and_misc&section=general' )
35
  ),
36
  ),
37
+ 'user_id' => array(
38
+ 'title' => __( 'Users', 'woocommerce-jetpack' ),
39
+ 'desc' => '',
40
+ ),
41
  'user_membership' => array(
42
  'title' => __( 'User Membership Plans', 'woocommerce-jetpack' ),
43
  'desc' => sprintf(
54
  /**
55
  * check.
56
  *
57
+ * @version 3.2.1
58
  * @since 3.2.0
59
  */
60
+ function check( $options_id, $user_roles_or_ids_or_membership_plans, $include_or_exclude ) {
61
  switch( $options_id ) {
62
  case 'user_roles':
63
  if ( ! isset( $this->customer_role ) ) {
64
  $this->customer_role = wcj_get_current_user_first_role();
65
  }
66
+ return in_array( $this->customer_role, $user_roles_or_ids_or_membership_plans );
67
+ case 'user_id':
68
+ if ( ! isset( $this->user_id ) ) {
69
+ $this->user_id = get_current_user_id();
70
+ }
71
+ return in_array( $this->user_id, $user_roles_or_ids_or_membership_plans );
72
  case 'user_membership':
73
  if ( ! isset( $this->user_id ) ) {
74
  $this->user_id = get_current_user_id();
76
  if ( ! function_exists( 'wc_memberships_is_user_active_member' ) ) {
77
  return false;
78
  }
79
+ foreach ( $user_roles_or_ids_or_membership_plans as $membership_plan ) {
80
  if ( wc_memberships_is_user_active_member( $this->user_id, $membership_plan ) ) {
81
  return true;
82
  }
88
  /**
89
  * get_condition_options.
90
  *
91
+ * @version 3.2.1
92
  * @since 3.2.0
93
  */
94
  function get_condition_options( $options_id ) {
95
  switch( $options_id ) {
96
  case 'user_roles':
97
  return wcj_get_user_roles_options();
98
+ case 'user_id':
99
+ return wcj_get_users_as_options();
100
  case 'user_membership':
101
  $membership_plans = array();
102
  $block_size = 512;
includes/class-wcj-wholesale-price.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Wholesale Price
4
  *
5
- * @version 3.1.0
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  * @todo per variation
@@ -19,6 +19,7 @@ class WCJ_Wholesale_Price extends WCJ_Module {
19
  * Constructor.
20
  *
21
  * @version 2.8.0
 
22
  */
23
  function __construct() {
24
 
@@ -51,7 +52,7 @@ class WCJ_Wholesale_Price extends WCJ_Module {
51
  /**
52
  * add_discount_info_to_cart_page.
53
  *
54
- * @version 2.5.7
55
  */
56
  function add_discount_info_to_cart_page( $price_html, $cart_item, $cart_item_key ) {
57
 
@@ -65,21 +66,25 @@ class WCJ_Wholesale_Price extends WCJ_Module {
65
  ? get_post_meta( $cart_item['product_id'], '_' . 'wcj_wholesale_price_discount_type', true )
66
  : get_option( 'wcj_wholesale_price_discount_type', 'percent' );
67
  if ( 'price_directly' === $discount_type ) {
68
- $_product = wc_get_product( $cart_item['product_id'] );
 
 
 
69
  $discount = wc_price( $_product->get_price() - $discount );
70
- }
71
- elseif ( 'fixed' === $discount_type ) {
72
  $discount = wc_price( $discount );
73
  } else {
74
  $discount = $discount . '%';
75
  }
76
  $old_price_html = wc_price( $cart_item['wcj_wholesale_price_old'] );
77
  $wholesale_price_html = get_option( 'wcj_wholesale_price_show_info_on_cart_format' );
78
- $wholesale_price_html = str_replace(
79
- array( '%old_price%', '%price%', '%discount_value%', '%discount_percent%' ), // '%discount_percent%' is deprecated
80
- array( $old_price_html, $price_html, $discount, $discount ),
81
- $wholesale_price_html
 
82
  );
 
83
  return $wholesale_price_html;
84
  }
85
  }
@@ -168,7 +173,7 @@ class WCJ_Wholesale_Price extends WCJ_Module {
168
  /**
169
  * calculate_totals.
170
  *
171
- * @version 3.1.0
172
  * @since 2.5.0
173
  */
174
  function calculate_totals( $cart ) {
@@ -185,20 +190,14 @@ class WCJ_Wholesale_Price extends WCJ_Module {
185
  unset( WC()->cart->cart_contents[ $item_key ]['wcj_wholesale_price_old'] );
186
  }
187
 
188
- $_product = wc_get_product( $item['product_id'] );
189
  if ( ! wcj_is_product_wholesale_enabled( wcj_get_product_id_or_variation_parent_id( $_product ) ) ) {
190
  continue;
191
  }
192
 
193
  // Prices
194
- if ( 0 != ( $variation_id = WC()->cart->cart_contents[ $item_key ]['variation_id'] ) ) {
195
- $variation = wc_get_product( $variation_id );
196
- $price = $variation->get_price();
197
- $price_old = wcj_get_product_display_price( $variation ); // used for display only
198
- } else {
199
- $price = $_product->get_price();
200
- $price_old = wcj_get_product_display_price( $_product ); // used for display only
201
- }
202
 
203
  // If other discount was applied in cart...
204
  if ( 'yes' === get_option( 'wcj_wholesale_price_apply_only_if_no_other_discounts', 'no' ) ) {
2
  /**
3
  * Booster for WooCommerce - Module - Wholesale Price
4
  *
5
+ * @version 3.2.1
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  * @todo per variation
19
  * Constructor.
20
  *
21
  * @version 2.8.0
22
+ * @todo (maybe) `woocommerce_get_variation_prices_hash`
23
  */
24
  function __construct() {
25
 
52
  /**
53
  * add_discount_info_to_cart_page.
54
  *
55
+ * @version 3.2.1
56
  */
57
  function add_discount_info_to_cart_page( $price_html, $cart_item, $cart_item_key ) {
58
 
66
  ? get_post_meta( $cart_item['product_id'], '_' . 'wcj_wholesale_price_discount_type', true )
67
  : get_option( 'wcj_wholesale_price_discount_type', 'percent' );
68
  if ( 'price_directly' === $discount_type ) {
69
+ $_product = $cart_item['data'];
70
+ if ( isset( $_product->wcj_wholesale_price ) ) {
71
+ unset( $_product->wcj_wholesale_price );
72
+ }
73
  $discount = wc_price( $_product->get_price() - $discount );
74
+ } elseif ( 'fixed' === $discount_type ) {
 
75
  $discount = wc_price( $discount );
76
  } else {
77
  $discount = $discount . '%';
78
  }
79
  $old_price_html = wc_price( $cart_item['wcj_wholesale_price_old'] );
80
  $wholesale_price_html = get_option( 'wcj_wholesale_price_show_info_on_cart_format' );
81
+ $replaced_values = array(
82
+ '%old_price%' => $old_price_html,
83
+ '%price%' => $price_html,
84
+ '%discount_value%' => $discount,
85
+ '%discount_percent%' => $discount, // deprecated (replaced with %discount_value%)
86
  );
87
+ $wholesale_price_html = str_replace( array_keys( $replaced_values ), array_values( $replaced_values ), $wholesale_price_html );
88
  return $wholesale_price_html;
89
  }
90
  }
173
  /**
174
  * calculate_totals.
175
  *
176
+ * @version 3.2.1
177
  * @since 2.5.0
178
  */
179
  function calculate_totals( $cart ) {
190
  unset( WC()->cart->cart_contents[ $item_key ]['wcj_wholesale_price_old'] );
191
  }
192
 
193
+ $_product = $item['data'];
194
  if ( ! wcj_is_product_wholesale_enabled( wcj_get_product_id_or_variation_parent_id( $_product ) ) ) {
195
  continue;
196
  }
197
 
198
  // Prices
199
+ $price = $_product->get_price();
200
+ $price_old = wcj_get_product_display_price( $_product ); // used for display only
 
 
 
 
 
 
201
 
202
  // If other discount was applied in cart...
203
  if ( 'yes' === get_option( 'wcj_wholesale_price_apply_only_if_no_other_discounts', 'no' ) ) {
includes/classes/class-wcj-module-shipping-by-condition.php CHANGED
@@ -2,7 +2,7 @@
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`
@@ -18,12 +18,11 @@ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
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
  }
@@ -32,7 +31,7 @@ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
32
  /**
33
  * available_shipping_methods.
34
  *
35
- * @version 3.2.0
36
  * @since 3.2.0
37
  * @todo apply_filters( 'booster_get_option' )
38
  */
@@ -43,12 +42,12 @@ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
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
  }
@@ -58,86 +57,22 @@ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
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
 
@@ -151,6 +86,16 @@ class WCJ_Module_Shipping_By_Condition extends WCJ_Module {
151
  return array();
152
  }
153
 
 
 
 
 
 
 
 
 
 
 
154
  }
155
 
156
  endif;
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by Condition
4
  *
5
+ * @version 3.2.1
6
  * @since 3.2.0
7
  * @author Algoritmika Ltd.
8
  * @todo (maybe) `abstract class WCJ_Module_Shipping_By_Condition`
18
  /**
19
  * Constructor.
20
  *
21
+ * @version 3.2.1
22
  * @since 3.2.0
23
  */
24
  function __construct( $type = 'module' ) {
25
  parent::__construct( $type );
 
26
  if ( $this->is_enabled() ) {
27
  add_filter( 'woocommerce_package_rates', array( $this, 'available_shipping_methods' ), PHP_INT_MAX, 2 );
28
  }
31
  /**
32
  * available_shipping_methods.
33
  *
34
+ * @version 3.2.1
35
  * @since 3.2.0
36
  * @todo apply_filters( 'booster_get_option' )
37
  */
42
  continue;
43
  }
44
  $include = get_option( 'wcj_shipping_' . $options_id . '_include_' . $rate->method_id, '' );
45
+ if ( ! empty( $include ) && ! $this->check( $options_id, $include, 'include' ) ) {
46
  unset( $rates[ $rate_key ] );
47
  break;
48
  }
49
  $exclude = get_option( 'wcj_shipping_' . $options_id . '_exclude_' . $rate->method_id, '' );
50
+ if ( ! empty( $exclude ) && $this->check( $options_id, $exclude , 'exclude' ) ) {
51
  unset( $rates[ $rate_key ] );
52
  break;
53
  }
57
  }
58
 
59
  /**
60
+ * add_settings_from_file.
61
  *
62
+ * @version 3.2.1
63
+ * @since 3.2.1
64
  */
65
+ function add_settings_from_file( $settings ) {
66
+ return $this->maybe_fix_settings( require( wcj_plugin_path() . '/includes/settings/wcj-settings-shipping-by-condition.php' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
 
69
  /**
70
  * check.
71
  *
72
+ * @version 3.2.1
73
  * @since 3.2.0
74
  */
75
+ function check( $options_id, $args, $include_or_exclude ) {
76
  return true;
77
  }
78
 
86
  return array();
87
  }
88
 
89
+ /**
90
+ * get_additional_section_settings.
91
+ *
92
+ * @version 3.2.1
93
+ * @since 3.2.1
94
+ */
95
+ function get_additional_section_settings( $options_id ) {
96
+ return array();
97
+ }
98
+
99
  }
100
 
101
  endif;
includes/classes/class-wcj-module.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
- * @version 3.2.0
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -109,14 +109,12 @@ if ( ! class_exists( 'WCJ_Module' ) ) :
109
  }
110
 
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'] ) {
@@ -138,6 +136,18 @@ if ( ! class_exists( 'WCJ_Module' ) ) :
138
  return $settings;
139
  }
140
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  /*
142
  * add_settings.
143
  *
2
  /**
3
  * Booster for WooCommerce Module
4
  *
5
+ * @version 3.2.1
6
  * @since 2.2.0
7
  * @author Algoritmika Ltd.
8
  */
109
  }
110
 
111
  /**
112
+ * maybe_fix_settings.
113
  *
114
+ * @version 3.2.1
115
+ * @since 3.2.1
116
  */
117
+ function maybe_fix_settings( $settings ) {
 
 
118
  if ( ! WCJ_IS_WC_VERSION_BELOW_3_2_0 ) {
119
  foreach ( $settings as &$setting ) {
120
  if ( isset( $setting['type'] ) && 'select' === $setting['type'] ) {
136
  return $settings;
137
  }
138
 
139
+ /**
140
+ * add_settings_from_file.
141
+ *
142
+ * @version 3.2.1
143
+ * @since 2.8.0
144
+ */
145
+ function add_settings_from_file( $settings ) {
146
+ $filename = wcj_plugin_path() . '/includes/settings/wcj-settings-' . str_replace( '_', '-', $this->id ) . '.php';
147
+ $settings = ( file_exists ( $filename ) ? require( $filename ) : $settings );
148
+ return $this->maybe_fix_settings( $settings );
149
+ }
150
+
151
  /*
152
  * add_settings.
153
  *
includes/export/class-wcj-exporter-orders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce Exporter Orders
4
  *
5
- * @version 3.0.0
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  * @todo filter export by date
@@ -301,7 +301,7 @@ class WCJ_Exporter_Orders {
301
  /**
302
  * export_orders_items.
303
  *
304
- * @version 3.0.0
305
  * @since 2.5.9
306
  */
307
  function export_orders_items( $fields_helper ) {
@@ -359,24 +359,33 @@ class WCJ_Exporter_Orders {
359
  for ( $i = 1; $i <= $total_number; $i++ ) {
360
  if ( 'yes' === get_option( 'wcj_export_orders_items_fields_additional_enabled_' . $i, 'no' ) ) {
361
  if ( '' != ( $additional_field_value = get_option( 'wcj_export_orders_items_fields_additional_value_' . $i, '' ) ) ) {
362
- if ( 'meta' === get_option( 'wcj_export_orders_items_fields_additional_type_' . $i, 'meta' ) ) {
363
- $row[] = $this->safely_get_post_meta( $order_id, $additional_field_value );
364
- } elseif ( 'meta_product' === get_option( 'wcj_export_orders_items_fields_additional_type_' . $i, 'meta' ) ) {
365
- $product_id = ( 0 != $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
366
- $row[] = $this->safely_get_post_meta( $product_id, $additional_field_value );
367
- } elseif ( 'shortcode' === get_option( 'wcj_export_orders_items_fields_additional_type_' . $i, 'meta' ) ) {
368
- global $post;
369
- $post = get_post( $order_id );
370
- setup_postdata( $post );
371
- $row[] = do_shortcode( $additional_field_value );
372
- wp_reset_postdata();
373
- } elseif ( 'shortcode_product' === get_option( 'wcj_export_orders_items_fields_additional_type_' . $i, 'meta' ) ) {
374
- global $post;
375
- $product_id = ( 0 != $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
376
- $post = get_post( $product_id );
377
- setup_postdata( $post );
378
- $row[] = do_shortcode( $additional_field_value );
379
- wp_reset_postdata();
 
 
 
 
 
 
 
 
 
380
  }
381
  } else {
382
  $row[] = '';
2
  /**
3
  * Booster for WooCommerce Exporter Orders
4
  *
5
+ * @version 3.2.1
6
  * @since 2.5.9
7
  * @author Algoritmika Ltd.
8
  * @todo filter export by date
301
  /**
302
  * export_orders_items.
303
  *
304
+ * @version 3.2.1
305
  * @since 2.5.9
306
  */
307
  function export_orders_items( $fields_helper ) {
359
  for ( $i = 1; $i <= $total_number; $i++ ) {
360
  if ( 'yes' === get_option( 'wcj_export_orders_items_fields_additional_enabled_' . $i, 'no' ) ) {
361
  if ( '' != ( $additional_field_value = get_option( 'wcj_export_orders_items_fields_additional_value_' . $i, '' ) ) ) {
362
+ $field_type = get_option( 'wcj_export_orders_items_fields_additional_type_' . $i, 'meta' );
363
+ switch ( $field_type ) {
364
+ case 'meta':
365
+ $row[] = $this->safely_get_post_meta( $order_id, $additional_field_value );
366
+ break;
367
+ case 'item_meta':
368
+ $row[] = wcj_maybe_implode( wc_get_order_item_meta( $item_id, $additional_field_value ) );
369
+ break;
370
+ case 'meta_product':
371
+ $product_id = ( 0 != $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
372
+ $row[] = $this->safely_get_post_meta( $product_id, $additional_field_value );
373
+ break;
374
+ case 'shortcode':
375
+ global $post;
376
+ $post = get_post( $order_id );
377
+ setup_postdata( $post );
378
+ $row[] = do_shortcode( $additional_field_value );
379
+ wp_reset_postdata();
380
+ break;
381
+ case 'shortcode_product':
382
+ global $post;
383
+ $product_id = ( 0 != $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
384
+ $post = get_post( $product_id );
385
+ setup_postdata( $post );
386
+ $row[] = do_shortcode( $additional_field_value );
387
+ wp_reset_postdata();
388
+ break;
389
  }
390
  } else {
391
  $row[] = '';
includes/functions/{wcj-admin-functions.php → wcj-functions-admin.php} RENAMED
File without changes
includes/functions/{wcj-core-functions.php → wcj-functions-core.php} RENAMED
File without changes
includes/functions/{wcj-country-functions.php → wcj-functions-country.php} RENAMED
File without changes
includes/functions/{wcj-currencies.php → wcj-functions-currencies.php} RENAMED
@@ -1,13 +1,15 @@
1
  <?php
2
  /**
3
- * Booster for WooCommerce - Currencies Array
4
  *
5
  * @version 2.9.0
6
  * @author Algoritmika Ltd.
7
- * @todo move this to functions folder
8
  */
9
 
10
  if ( ! function_exists( 'wcj_get_currencies_array' ) ) {
 
 
 
11
  function wcj_get_currencies_array() {
12
  return array(
13
  array( 'code' => 'AED', 'symbol' => 'د.إ', 'name' => __( 'United Arab Emirates Dirham', 'woocommerce' ) ),
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Functions - Currencies
4
  *
5
  * @version 2.9.0
6
  * @author Algoritmika Ltd.
 
7
  */
8
 
9
  if ( ! function_exists( 'wcj_get_currencies_array' ) ) {
10
+ /**
11
+ * wcj_get_currencies_array.
12
+ */
13
  function wcj_get_currencies_array() {
14
  return array(
15
  array( 'code' => 'AED', 'symbol' => 'د.إ', 'name' => __( 'United Arab Emirates Dirham', 'woocommerce' ) ),
includes/functions/{wcj-date-time-functions.php → wcj-functions-date-time.php} RENAMED
File without changes
includes/functions/{wcj-debug-functions.php → wcj-functions-debug.php} RENAMED
File without changes
includes/functions/{wcj-eu-vat-functions.php → wcj-functions-eu-vat.php} RENAMED
File without changes
includes/functions/{wcj-exchange-rates-functions.php → wcj-functions-exchange-rates.php} RENAMED
File without changes
includes/functions/{wcj-general-functions.php → wcj-functions-general.php} RENAMED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
- * @version 3.2.0
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -288,6 +288,22 @@ if ( ! function_exists( 'wcj_current_filter_priority' ) ) {
288
  }
289
  }
290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  if ( ! function_exists( 'wcj_maybe_unserialize_and_implode' ) ) {
292
  /*
293
  * wcj_maybe_unserialize_and_implode.
2
  /**
3
  * Booster for WooCommerce - Functions
4
  *
5
+ * @version 3.2.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
288
  }
289
  }
290
 
291
+ if ( ! function_exists( 'wcj_maybe_implode' ) ) {
292
+ /*
293
+ * wcj_maybe_implode.
294
+ *
295
+ * @version 3.2.1
296
+ * @since 3.2.1
297
+ * @return string
298
+ */
299
+ function wcj_maybe_implode( $value, $glue = ' ' ) {
300
+ if ( is_array( $value ) ) {
301
+ $value = implode( $glue, $value );
302
+ }
303
+ return $value;
304
+ }
305
+ }
306
+
307
  if ( ! function_exists( 'wcj_maybe_unserialize_and_implode' ) ) {
308
  /*
309
  * wcj_maybe_unserialize_and_implode.
includes/functions/{wcj-html-functions.php → wcj-functions-html.php} RENAMED
File without changes
includes/functions/{wcj-invoicing-functions.php → wcj-functions-invoicing.php} RENAMED
File without changes
includes/functions/{wcj-order-functions.php → wcj-functions-orders.php} RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * Booster for WooCommerce - Functions - Order
4
  *
5
  * @version 3.1.1
6
  * @since 2.9.0
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Functions - Orders
4
  *
5
  * @version 3.1.1
6
  * @since 2.9.0
includes/functions/{wcj-price-currency-functions.php → wcj-functions-price-currency.php} RENAMED
File without changes
includes/functions/{wcj-product-functions.php → wcj-functions-products.php} RENAMED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
- * Booster for WooCommerce - Functions - Product
4
  *
5
- * @version 3.1.0
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -206,9 +206,10 @@ if ( ! function_exists( 'wcj_get_product_input_fields' ) ) {
206
  /*
207
  * wcj_get_product_input_fields.
208
  *
209
- * @version 2.8.0
210
  * @since 2.4.4
211
  * @return string
 
212
  */
213
  function wcj_get_product_input_fields( $item ) {
214
  $product_input_fields = array();
@@ -225,7 +226,7 @@ if ( ! function_exists( 'wcj_get_product_input_fields' ) ) {
225
  }
226
  }
227
  }
228
- return ( ! empty( $product_input_fields ) ) ? implode( ', ', $product_input_fields ) : '';
229
  }
230
  }
231
 
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Functions - Products
4
  *
5
+ * @version 3.2.1
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
206
  /*
207
  * wcj_get_product_input_fields.
208
  *
209
+ * @version 3.2.1
210
  * @since 2.4.4
211
  * @return string
212
+ * @todo (maybe) better handle "file" type
213
  */
214
  function wcj_get_product_input_fields( $item ) {
215
  $product_input_fields = array();
226
  }
227
  }
228
  }
229
+ return ( ! empty( $product_input_fields ) ) ? implode( ', ', array_map( 'wcj_maybe_implode', $product_input_fields ) ) : '';
230
  }
231
  }
232
 
includes/functions/{wcj-reports-functions.php → wcj-functions-reports.php} RENAMED
File without changes
includes/functions/{wcj-user-roles-functions.php → wcj-functions-users.php} RENAMED
@@ -1,14 +1,30 @@
1
  <?php
2
  /**
3
- * Booster for WooCommerce - Functions - User Roles
4
  *
5
- * @version 3.1.3
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
10
  if ( ! defined( 'ABSPATH' ) ) exit;
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  if ( ! function_exists( 'is_shop_manager' ) ) {
13
  /**
14
  * is_shop_manager.
1
  <?php
2
  /**
3
+ * Booster for WooCommerce - Functions - Users
4
  *
5
+ * @version 3.2.1
6
  * @since 2.7.0
7
  * @author Algoritmika Ltd.
8
  */
9
 
10
  if ( ! defined( 'ABSPATH' ) ) exit;
11
 
12
+ if ( ! function_exists( 'wcj_get_users_as_options' ) ) {
13
+ /**
14
+ * wcj_get_users_as_options.
15
+ *
16
+ * @version 3.2.1
17
+ * @since 2.9.0
18
+ */
19
+ function wcj_get_users_as_options() {
20
+ $users = array();
21
+ foreach ( get_users( 'orderby=display_name' ) as $user ) {
22
+ $users[ $user->ID ] = $user->display_name . ' ' . '[ID:' . $user->ID . ']';
23
+ }
24
+ return $users;
25
+ }
26
+ }
27
+
28
  if ( ! function_exists( 'is_shop_manager' ) ) {
29
  /**
30
  * is_shop_manager.
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 3.2.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -136,7 +136,7 @@ $settings = array(
136
  ),
137
  );
138
  if ( 'yes' === get_option( 'wcj_currency_per_product_by_users_enabled', 'no' ) ) {
139
- $users_as_options = $this->get_users_as_options();
140
  }
141
  if ( 'yes' === get_option( 'wcj_currency_per_product_by_user_roles_enabled', 'no' ) ) {
142
  $user_roles_as_options = wcj_get_user_roles_options();
2
  /**
3
  * Booster for WooCommerce - Settings - Currency per Product
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
136
  ),
137
  );
138
  if ( 'yes' === get_option( 'wcj_currency_per_product_by_users_enabled', 'no' ) ) {
139
+ $users_as_options = wcj_get_users_as_options();
140
  }
141
  if ( 'yes' === get_option( 'wcj_currency_per_product_by_user_roles_enabled', 'no' ) ) {
142
  $user_roles_as_options = wcj_get_user_roles_options();
includes/settings/wcj-settings-export.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Export
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  * @todo add "Additional Export Fields" for "Customers from Orders" and (maybe) "Customers"
@@ -152,6 +152,7 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
152
  'default' => 'meta',
153
  'options' => array(
154
  'meta' => __( 'Order Meta', 'woocommerce-jetpack' ),
 
155
  'shortcode' => __( 'Order Shortcode', 'woocommerce-jetpack' ),
156
  'meta_product' => __( 'Product Meta', 'woocommerce-jetpack' ),
157
  'shortcode_product' => __( 'Product Shortcode', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - Export
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  * @todo add "Additional Export Fields" for "Customers from Orders" and (maybe) "Customers"
152
  'default' => 'meta',
153
  'options' => array(
154
  'meta' => __( 'Order Meta', 'woocommerce-jetpack' ),
155
+ 'item_meta' => __( 'Order Item Meta', 'woocommerce-jetpack' ),
156
  'shortcode' => __( 'Order Shortcode', 'woocommerce-jetpack' ),
157
  'meta_product' => __( 'Product Meta', 'woocommerce-jetpack' ),
158
  'shortcode_product' => __( 'Product Shortcode', 'woocommerce-jetpack' ),
includes/settings/wcj-settings-pdf-invoicing-footer.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Footer
4
  *
5
- * @version 3.1.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -30,7 +30,7 @@ foreach ( $invoice_types as $invoice_type ) {
30
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_footer_text',
31
  'default' => __( 'Page %page_number% / %total_pages%', 'woocommerce-jetpack' ),
32
  'type' => 'textarea',
33
- 'css' => 'width:66%;min-width:300px;height:165px;',
34
  'desc' => __( 'You can use HTML here, as well as any WordPress shortcodes.', 'woocommerce-jetpack' ) . ' ' .
35
  wcj_message_replaced_values( array( '%page_number%', '%total_pages%' ) ),
36
  ),
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Footer
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
30
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_footer_text',
31
  'default' => __( 'Page %page_number% / %total_pages%', 'woocommerce-jetpack' ),
32
  'type' => 'textarea',
33
+ 'css' => 'width:100%;height:165px;',
34
  'desc' => __( 'You can use HTML here, as well as any WordPress shortcodes.', 'woocommerce-jetpack' ) . ' ' .
35
  wcj_message_replaced_values( array( '%page_number%', '%total_pages%' ) ),
36
  ),
includes/settings/wcj-settings-pdf-invoicing-styling.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Styling
4
  *
5
- * @version 3.1.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -57,7 +57,7 @@ foreach ( $invoice_types as $invoice_type ) {
57
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_css',
58
  'default' => $this->get_default_css_template( $invoice_type['id'] ),
59
  'type' => 'textarea',
60
- 'css' => 'width:66%;min-width:300px;height:200px;',
61
  ),
62
  ),
63
  array( $font_family_option ),
@@ -70,6 +70,7 @@ foreach ( $invoice_types as $invoice_type ) {
70
  ),
71
  array(
72
  'title' => __( 'Make Font Shadowed', 'woocommerce-jetpack' ),
 
73
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_general_font_shadowed',
74
  'default' => 'no',
75
  'type' => 'checkbox',
2
  /**
3
  * Booster for WooCommerce - Settings - PDF Invoicing - Styling
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
57
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_css',
58
  'default' => $this->get_default_css_template( $invoice_type['id'] ),
59
  'type' => 'textarea',
60
+ 'css' => 'width:100%;height:200px;',
61
  ),
62
  ),
63
  array( $font_family_option ),
70
  ),
71
  array(
72
  'title' => __( 'Make Font Shadowed', 'woocommerce-jetpack' ),
73
+ 'desc' => __( 'Enable', 'woocommerce-jetpack' ),
74
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_general_font_shadowed',
75
  'default' => 'no',
76
  'type' => 'checkbox',
includes/settings/wcj-settings-pdf-invoicing-templates.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Templates
4
  *
5
- * @version 3.1.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -23,7 +23,7 @@ foreach ( $invoice_types as $invoice_type ) {
23
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_template',
24
  'default' => $this->get_default_template( $invoice_type['id'] ),
25
  'type' => 'textarea',
26
- 'css' => 'width:66%;min-width:300px;height:500px;',
27
  ),
28
  array(
29
  'title' => __( 'Save all templates', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - Templates
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
23
  'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_template',
24
  'default' => $this->get_default_template( $invoice_type['id'] ),
25
  'type' => 'textarea',
26
+ 'css' => 'width:100%;height:500px;',
27
  ),
28
  array(
29
  'title' => __( 'Save all templates', 'woocommerce-jetpack' ),
includes/settings/wcj-settings-shipping-by-condition.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce - Settings - Shipping by Condition
4
+ *
5
+ * @version 3.2.1
6
+ * @since 3.2.1
7
+ * @author Algoritmika Ltd.
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit; // Exit if accessed directly
12
+ }
13
+
14
+ $settings = array();
15
+ foreach ( $this->condition_options as $options_id => $options_data ) {
16
+ $settings = array_merge( $settings, array(
17
+ array(
18
+ 'title' => sprintf( __( 'Shipping Methods by %s', 'woocommerce-jetpack' ), $options_data['title'] ),
19
+ 'type' => 'title',
20
+ 'desc' => __( 'Leave empty to disable.', 'woocommerce-jetpack' ) . ' ' . $options_data['desc'],
21
+ 'id' => 'wcj_shipping_by_' . $options_id . '_options',
22
+ ),
23
+ array(
24
+ 'title' => sprintf( __( 'Shipping Methods by %s', 'woocommerce-jetpack' ), $options_data['title'] ),
25
+ 'desc' => __( 'Enable section', 'woocommerce-jetpack' ),
26
+ 'id' => 'wcj_shipping_by_' . $options_id . '_section_enabled',
27
+ 'type' => 'checkbox',
28
+ 'default' => 'yes',
29
+ ),
30
+ ) );
31
+ $settings = array_merge( $settings, $this->get_additional_section_settings( $options_id ) );
32
+ foreach ( WC()->shipping()->load_shipping_methods() as $method ) {
33
+ if ( ! in_array( $method->id, array( 'flat_rate', 'local_pickup' ) ) ) {
34
+ $custom_attributes = apply_filters( 'booster_get_message', '', 'disabled' );
35
+ if ( '' == $custom_attributes ) {
36
+ $custom_attributes = array();
37
+ }
38
+ $desc_tip = apply_filters( 'booster_get_message', '', 'desc_no_link' );
39
+ } else {
40
+ $custom_attributes = array();
41
+ $desc_tip = '';
42
+ }
43
+ $settings = array_merge( $settings, array(
44
+ array(
45
+ 'title' => $method->get_method_title(),
46
+ 'desc_tip' => $desc_tip,
47
+ 'desc' => '<br>' . sprintf( __( 'Include %s', 'woocommerce-jetpack' ), $options_data['title'] ),
48
+ 'id' => 'wcj_shipping_' . $options_id . '_include_' . $method->id,
49
+ 'default' => '',
50
+ 'type' => 'multiselect',
51
+ 'class' => 'chosen_select',
52
+ 'css' => 'width: 450px;',
53
+ 'options' => $this->get_condition_options( $options_id ),
54
+ 'custom_attributes' => $custom_attributes,
55
+ ),
56
+ array(
57
+ 'desc_tip' => $desc_tip,
58
+ 'desc' => '<br>' . sprintf( __( 'Exclude %s', 'woocommerce-jetpack' ), $options_data['title'] ),
59
+ 'id' => 'wcj_shipping_' . $options_id . '_exclude_' . $method->id,
60
+ 'default' => '',
61
+ 'type' => 'multiselect',
62
+ 'class' => 'chosen_select',
63
+ 'css' => 'width: 450px;',
64
+ 'options' => $this->get_condition_options( $options_id ),
65
+ 'custom_attributes' => $custom_attributes,
66
+ ),
67
+ ) );
68
+ }
69
+ $settings = array_merge( $settings, array(
70
+ array(
71
+ 'type' => 'sectionend',
72
+ 'id' => 'wcj_shipping_by_' . $options_id . '_options',
73
+ ),
74
+ ) );
75
+ }
76
+ return $settings;
includes/settings/wcj-settings-shipping-by-order-amount.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Booster for WooCommerce Settings - Shipping Methods by Min/Max Order Amount
4
+ *
5
+ * @version 3.2.1
6
+ * @since 3.2.1
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 by Min/Max Order Amount', 'woocommerce-jetpack' ),
15
+ 'type' => 'title',
16
+ 'desc' => __( 'Set to zero to disable.', 'woocommerce-jetpack' ),
17
+ 'id' => 'wcj_shipping_by_order_amount_options',
18
+ ),
19
+ );
20
+ foreach ( WC()->shipping()->load_shipping_methods() as $method ) {
21
+ if ( ! in_array( $method->id, array( 'flat_rate', 'free_shipping' ) ) ) {
22
+ $custom_attributes = apply_filters( 'booster_get_message', '', 'disabled' );
23
+ if ( '' == $custom_attributes ) {
24
+ $custom_attributes = array();
25
+ }
26
+ $desc_tip = apply_filters( 'booster_get_message', '', 'desc_no_link' );
27
+ } else {
28
+ $custom_attributes = array();
29
+ $desc_tip = '';
30
+ }
31
+ $custom_attributes = array_merge( $custom_attributes, array( 'min' => 0 ) );
32
+ $settings = array_merge( $settings, array(
33
+ array(
34
+ 'title' => $method->get_method_title(),
35
+ 'desc_tip' => $desc_tip,
36
+ 'desc' => '<br>' . __( 'Minimum order amount', 'woocommerce-jetpack' ),
37
+ 'id' => 'wcj_shipping_by_order_amount_min_' . $method->id,
38
+ 'default' => 0,
39
+ 'type' => 'number',
40
+ 'custom_attributes' => $custom_attributes,
41
+ ),
42
+ array(
43
+ 'desc_tip' => $desc_tip,
44
+ 'desc' => '<br>' . __( 'Maximum order amount', 'woocommerce-jetpack' ),
45
+ 'id' => 'wcj_shipping_by_order_amount_max_' . $method->id,
46
+ 'default' => 0,
47
+ 'type' => 'number',
48
+ 'custom_attributes' => $custom_attributes,
49
+ ),
50
+ ) );
51
+ }
52
+ $settings = array_merge( $settings, array(
53
+ array(
54
+ 'type' => 'sectionend',
55
+ 'id' => 'wcj_shipping_by_order_amount_options',
56
+ ),
57
+ ) );
58
+ return $settings;
includes/settings/wcj-settings-shipping-options.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Shipping Options
4
  *
5
- * @version 2.9.1
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -44,7 +44,10 @@ $settings = array(
44
  $settings = array_merge( $settings, array(
45
  array(
46
  'title' => __( 'Free Shipping by Product', 'woocommerce-jetpack' ),
47
- 'desc' => __( 'In this section you can select products which grant free shipping when added to cart.', 'woocommerce-jetpack' ),
 
 
 
48
  'type' => 'title',
49
  'id' => 'wcj_shipping_free_shipping_by_product_options',
50
  ),
2
  /**
3
  * Booster for WooCommerce - Settings - Shipping Options
4
  *
5
+ * @version 3.2.1
6
  * @since 2.9.0
7
  * @author Algoritmika Ltd.
8
  */
44
  $settings = array_merge( $settings, array(
45
  array(
46
  'title' => __( 'Free Shipping by Product', 'woocommerce-jetpack' ),
47
+ 'desc' => __( 'In this section you can select products which grant free shipping when added to cart.', 'woocommerce-jetpack' ) . '<br>' .
48
+ sprintf( __( 'Similar results can be achieved with %s module.', 'woocommerce-jetpack' ),
49
+ '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=shipping_and_orders&section=shipping_by_products' ) . '">' .
50
+ __( 'Shipping Methods by Products', 'woocommerce-jetpack' ) . '</a>' ),
51
  'type' => 'title',
52
  'id' => 'wcj_shipping_free_shipping_by_product_options',
53
  ),
includes/settings/wcj-settings-wholesale-price.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings - Wholesale Price
4
  *
5
- * @version 2.8.0
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -47,11 +47,11 @@ $settings = array(
47
  ),
48
  array(
49
  'title' => __( 'If show discount info on cart page is enabled, set format here', 'woocommerce-jetpack' ),
50
- 'desc_tip' => __( 'Replaced values: %old_price%, %price%, %discount_value%.', 'woocommerce-jetpack' ),
51
  'id' => 'wcj_wholesale_price_show_info_on_cart_format',
52
  'default' => '<del>%old_price%</del> %price%<br>You save: <span style="color:red;">%discount_value%</span>',
53
  'type' => 'textarea',
54
- 'css' => 'width: 450px;',
55
  ),
56
  array(
57
  'title' => __( 'Discount Type', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Settings - Wholesale Price
4
  *
5
+ * @version 3.2.1
6
  * @since 2.8.0
7
  * @author Algoritmika Ltd.
8
  */
47
  ),
48
  array(
49
  'title' => __( 'If show discount info on cart page is enabled, set format here', 'woocommerce-jetpack' ),
50
+ 'desc' => wcj_message_replaced_values( array( '%old_price%', '%price%', '%discount_value%' ) ),
51
  'id' => 'wcj_wholesale_price_show_info_on_cart_format',
52
  'default' => '<del>%old_price%</del> %price%<br>You save: <span style="color:red;">%discount_value%</span>',
53
  'type' => 'textarea',
54
+ 'css' => 'width:100%;',
55
  ),
56
  array(
57
  'title' => __( 'Discount Type', 'woocommerce-jetpack' ),
includes/shortcodes/class-wcj-general-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Shortcodes - General
4
  *
5
- * @version 3.1.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
@@ -15,7 +15,7 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
15
  /**
16
  * Constructor.
17
  *
18
- * @version 3.1.1
19
  */
20
  function __construct() {
21
 
@@ -42,9 +42,11 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
42
  'wcj_get_left_to_free_shipping',
43
  'wcj_selector',
44
  'wcj_site_url',
 
45
  'wcj_tcpdf_pagebreak',
46
  'wcj_text',
47
  'wcj_wholesale_price_table',
 
48
  'wcj_wpml',
49
  'wcj_wpml_translate',
50
  // 'wcj_image',
@@ -75,12 +77,47 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
75
  'to' => '',
76
  'columns_style' => 'text-align: center;',
77
  'selector_type' => 'country',
 
 
78
  );
79
 
80
  parent::__construct();
81
 
82
  }
83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  /**
85
  * wcj_current_currency_code.
86
  *
2
  /**
3
  * Booster for WooCommerce - Shortcodes - General
4
  *
5
+ * @version 3.2.1
6
  * @author Algoritmika Ltd.
7
  */
8
 
15
  /**
16
  * Constructor.
17
  *
18
+ * @version 3.2.1
19
  */
20
  function __construct() {
21
 
42
  'wcj_get_left_to_free_shipping',
43
  'wcj_selector',
44
  'wcj_site_url',
45
+ 'wcj_store_address',
46
  'wcj_tcpdf_pagebreak',
47
  'wcj_text',
48
  'wcj_wholesale_price_table',
49
+ 'wcj_wp_option',
50
  'wcj_wpml',
51
  'wcj_wpml_translate',
52
  // 'wcj_image',
77
  'to' => '',
78
  'columns_style' => 'text-align: center;',
79
  'selector_type' => 'country',
80
+ 'option' => '',
81
+ 'company' => '',
82
  );
83
 
84
  parent::__construct();
85
 
86
  }
87
 
88
+ /**
89
+ * wcj_store_address.
90
+ *
91
+ * @version 3.2.1
92
+ * @since 3.2.1
93
+ * @todo `force_country_display` - make optional
94
+ * @todo `remove_filter` will remove all `__return_true` functions (even added elsewhere)
95
+ */
96
+ function wcj_store_address( $atts ) {
97
+ add_filter( 'woocommerce_formatted_address_force_country_display', '__return_true' );
98
+ $return = WC()->countries->get_formatted_address( array(
99
+ 'company' => $atts['company'],
100
+ 'address_1' => WC()->countries->get_base_address(),
101
+ 'address_2' => WC()->countries->get_base_address_2(),
102
+ 'city' => WC()->countries->get_base_city(),
103
+ 'state' => WC()->countries->get_base_state(),
104
+ 'postcode' => WC()->countries->get_base_postcode(),
105
+ 'country' => WC()->countries->get_base_country(),
106
+ ) );
107
+ remove_filter( 'woocommerce_formatted_address_force_country_display', '__return_true' );
108
+ return $return;
109
+ }
110
+
111
+ /**
112
+ * wcj_wp_option.
113
+ *
114
+ * @version 3.2.1
115
+ * @since 3.2.1
116
+ */
117
+ function wcj_wp_option( $atts ) {
118
+ return ( '' != $atts['option'] ? get_option( $atts['option'], $atts['default'] ) : '' );
119
+ }
120
+
121
  /**
122
  * wcj_current_currency_code.
123
  *
langs/woocommerce-jetpack-az.mo ADDED
Binary file
langs/woocommerce-jetpack-de_DE.po DELETED
@@ -1,10815 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "PO-Revision-Date: 2017-03-01 12:48+0000\n"
4
- "MIME-Version: 1.0\n"
5
- "Content-Type: text/plain; charset=UTF-8\n"
6
- "Content-Transfer-Encoding: 8bit\n"
7
- "Plural-Forms: nplurals=2; plural=n != 1\n"
8
- "X-Generator: Loco - https://localise.biz/\n"
9
- "Language: de-DE\n"
10
- "Project-Id-Version: Plugins - Booster for WooCommerce - Stable (latest "
11
- "release)\n"
12
- "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2017-02-28 23:21+0000\n"
14
- "Last-Translator: Michael Pekić <michael@pekic.de>\n"
15
- "Language-Team: German"
16
-
17
- #: includes/class-wcj-product-tabs.php:567
18
- #: includes/class-wcj-product-tabs.php:736
19
- msgid "To hide this tab from some products, enter products here."
20
- msgstr ""
21
- "Um diese Registerkarte von einigen Produkten zu verstecken, gib hier "
22
- "Produkte ein."
23
-
24
- #: includes/class-wcj-product-tabs.php:576
25
- #: includes/class-wcj-product-tabs.php:745
26
- msgid "PRODUCTS to SHOW this tab"
27
- msgstr "PRODUKTE, um diese Registerkarte ANZUZEIGEN"
28
-
29
- #: includes/class-wcj-product-tabs.php:577
30
- #: includes/class-wcj-product-tabs.php:746
31
- msgid "To show this tab only for some products, enter products here."
32
- msgstr ""
33
- "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkte "
34
- "ein."
35
-
36
- #: includes/class-wcj-product-tabs.php:587
37
- #: includes/class-wcj-product-tabs.php:756
38
- msgid "To hide this tab from some categories, enter categories here."
39
- msgstr ""
40
- "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
41
- "Kategorien ein."
42
-
43
- #: includes/class-wcj-product-tabs.php:596
44
- #: includes/class-wcj-product-tabs.php:765
45
- msgid "CATEGORIES to SHOW this tab"
46
- msgstr "KATEGORIEN, um diese Registerkarte zu sehen"
47
-
48
- #: includes/class-wcj-product-tabs.php:597
49
- #: includes/class-wcj-product-tabs.php:766
50
- msgid "To show this tab only for some categories, enter categories here."
51
- msgstr ""
52
- "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
53
- "Kategorien ein."
54
-
55
- #: includes/class-wcj-product-tabs.php:607
56
- #: includes/class-wcj-product-tabs.php:776
57
- msgid "To hide this tab from some tags, enter tags here."
58
- msgstr ""
59
- "Um diese Registerkarte aus einigen Stichwörtern zu verbergen, gib hier "
60
- "Stichwörter ein."
61
-
62
- #: includes/class-wcj-product-tabs.php:616
63
- #: includes/class-wcj-product-tabs.php:785
64
- msgid "TAGS to SHOW this tab"
65
- msgstr "STICHWÖRTER, um diese Registerkarte zu sehen"
66
-
67
- #: includes/class-wcj-product-tabs.php:617
68
- #: includes/class-wcj-product-tabs.php:786
69
- msgid "To show this tab only for some tags, enter tags here."
70
- msgstr ""
71
- "Um diese Registerkarte nur für einige Stichwörter anzuzeigen, gib hier "
72
- "Stichwörter ein."
73
-
74
- #: includes/class-wcj-product-tabs.php:626
75
- msgid "Comma separated PRODUCT IDs to HIDE this tab"
76
- msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu verbergen"
77
-
78
- #: includes/class-wcj-product-tabs.php:626
79
- #: includes/class-wcj-product-tabs.php:635
80
- #: includes/class-wcj-product-tabs.php:644
81
- #: includes/class-wcj-product-tabs.php:653
82
- #: includes/classes/class-wcj-module.php:424
83
- msgid "Deprecated"
84
- msgstr "Veraltet"
85
-
86
- #: includes/class-wcj-product-tabs.php:627
87
- msgid "To hide this tab from some products, enter product IDs here."
88
- msgstr ""
89
- "Um diese Registerkarte aus einigen Produkten zu verbergen, gib hier Produkt-"
90
- "IDs ein."
91
-
92
- #: includes/class-wcj-product-tabs.php:635
93
- msgid "Comma separated PRODUCT IDs to SHOW this tab"
94
- msgstr "Komma getrennte PRODUKT-IDs, um diese Registerkarte zu aktivieren"
95
-
96
- #: includes/class-wcj-product-tabs.php:636
97
- msgid "To show this tab only for some products, enter product IDs here."
98
- msgstr ""
99
- "Um diese Registerkarte nur für einige Produkte anzuzeigen, gib hier Produkt-"
100
- "IDs ein."
101
-
102
- #: includes/class-wcj-product-tabs.php:644
103
- msgid "Comma separated CATEGORY IDs to HIDE this tab"
104
- msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu verbergen"
105
-
106
- #: includes/class-wcj-product-tabs.php:645
107
- msgid "To hide this tab from some categories, enter category IDs here."
108
- msgstr ""
109
- "Um diese Registerkarte aus einigen Kategorien zu verbergen, gib hier "
110
- "Kategorie-IDs ein."
111
-
112
- #: includes/class-wcj-product-tabs.php:653
113
- msgid "Comma separated CATEGORY IDs to SHOW this tab"
114
- msgstr "Komma getrennt KATEGORIE-IDs, um diese Registerkarte zu aktivieren"
115
-
116
- #: includes/class-wcj-product-tabs.php:654
117
- msgid "To show this tab only for some categories, enter category IDs here."
118
- msgstr ""
119
- "Um diese Registerkarte nur für einige Kategorien anzuzeigen, gib hier "
120
- "Kategorie-IDs ein."
121
-
122
- #: includes/currencies/wcj-currencies.php:63
123
- msgid "Guyanese dollar"
124
- msgstr "Guyanese dollar"
125
-
126
- #: includes/currencies/wcj-currencies.php:64
127
- msgid "Gambian dalasi"
128
- msgstr "Gambian dalasi"
129
-
130
- #: includes/currencies/wcj-currencies.php:65
131
- msgid "Guinean franc"
132
- msgstr "Guinean franc"
133
-
134
- #: includes/currencies/wcj-currencies.php:66
135
- #: includes/currencies/wcj-currencies.php:169
136
- msgid "Central African CFA franc"
137
- msgstr "Central African CFA franc"
138
-
139
- #: includes/currencies/wcj-currencies.php:67
140
- msgid "Guatemalan quetzal"
141
- msgstr "Guatemalan quetzal"
142
-
143
- #: includes/currencies/wcj-currencies.php:68
144
- msgid "Hong Kong Dollar"
145
- msgstr "Hong Kong Dollar"
146
-
147
- #: includes/currencies/wcj-currencies.php:69
148
- msgid "Honduran lempira"
149
- msgstr "Honduran lempira"
150
-
151
- #: includes/currencies/wcj-currencies.php:70
152
- msgid "Croatia kuna"
153
- msgstr "Croatia kuna"
154
-
155
- #: includes/currencies/wcj-currencies.php:71
156
- msgid "Haitian gourde"
157
- msgstr "Haitian gourde"
158
-
159
- #: includes/currencies/wcj-currencies.php:72
160
- msgid "Hungarian Forint"
161
- msgstr "Hungarian Forint"
162
-
163
- #: includes/currencies/wcj-currencies.php:73
164
- msgid "Indonesia Rupiah"
165
- msgstr "Indonesia Rupiah"
166
-
167
- #: includes/currencies/wcj-currencies.php:74
168
- msgid "Israeli Shekel"
169
- msgstr "Israeli Shekel"
170
-
171
- #: includes/currencies/wcj-currencies.php:75
172
- msgid "Indian Rupee"
173
- msgstr "Indian Rupee"
174
-
175
- #: includes/currencies/wcj-currencies.php:76
176
- msgid "Iraqi dinar"
177
- msgstr "Iraqi dinar"
178
-
179
- #: includes/currencies/wcj-currencies.php:77
180
- msgid "Iranian rial"
181
- msgstr "Iranian rial"
182
-
183
- #: includes/currencies/wcj-currencies.php:78
184
- msgid "Icelandic krona"
185
- msgstr "Icelandic krona"
186
-
187
- #: includes/currencies/wcj-currencies.php:79
188
- msgid "Yemeni rial"
189
- msgstr "Yemeni rial"
190
-
191
- #: includes/currencies/wcj-currencies.php:80
192
- msgid "Jamaican dollar"
193
- msgstr "Jamaican dollar"
194
-
195
- #: includes/currencies/wcj-currencies.php:81
196
- msgid "Jordanian dinar"
197
- msgstr "Jordanian dinar"
198
-
199
- #: includes/currencies/wcj-currencies.php:82
200
- msgid "Japanese Yen"
201
- msgstr "Japanese Yen"
202
-
203
- #: includes/currencies/wcj-currencies.php:84
204
- msgid "Kyrgyzstani som"
205
- msgstr "Kyrgyzstani som"
206
-
207
- #: includes/currencies/wcj-currencies.php:85
208
- msgid "Cambodian riel"
209
- msgstr "Cambodian riel"
210
-
211
- #: includes/currencies/wcj-currencies.php:86
212
- msgid "Lao kip"
213
- msgstr "Lao kip"
214
-
215
- #: includes/currencies/wcj-currencies.php:87
216
- msgid "Cayman Islands dollar"
217
- msgstr "Cayman Islands dollar"
218
-
219
- #: includes/currencies/wcj-currencies.php:88
220
- msgid "Comorian franc"
221
- msgstr "Comorian franc"
222
-
223
- #: includes/currencies/wcj-currencies.php:89
224
- msgid "North Korean won"
225
- msgstr "Nordkoreanischer Won"
226
-
227
- #: includes/currencies/wcj-currencies.php:90
228
- msgid "South Korean Won"
229
- msgstr "Südkoreanischer Won"
230
-
231
- #: includes/currencies/wcj-currencies.php:91
232
- msgid "Kuwaiti dinar"
233
- msgstr "Kuwaitischer Dinar"
234
-
235
- #: includes/currencies/wcj-currencies.php:92
236
- msgid "Kazakhstani tenge"
237
- msgstr "Kasachstanischer Tenge"
238
-
239
- #: includes/currencies/wcj-currencies.php:93
240
- msgid "Lao Kip"
241
- msgstr "Lao Kip"
242
-
243
- #: includes/currencies/wcj-currencies.php:94
244
- msgid "Lebanese lira"
245
- msgstr "Libanesische Lira"
246
-
247
- #: includes/currencies/wcj-currencies.php:95
248
- msgid "Libyan dinar"
249
- msgstr "Lybischer DInar"
250
-
251
- #: includes/currencies/wcj-currencies.php:96
252
- msgid "Sri Lankan rupee"
253
- msgstr "Sri Lanka Rupie"
254
-
255
- #: includes/currencies/wcj-currencies.php:97
256
- msgid "Liberian dollar"
257
- msgstr "Liberianischer Dollar"
258
-
259
- #: includes/currencies/wcj-currencies.php:98
260
- msgid "Lesotho loti"
261
- msgstr "Lesotho loti"
262
-
263
- #: includes/currencies/wcj-currencies.php:99
264
- msgid "Lithuanian litas"
265
- msgstr "Litauische Litas"
266
-
267
- #: includes/currencies/wcj-currencies.php:100
268
- msgid "Latvian lats"
269
- msgstr "Lettische Lats"
270
-
271
- #: includes/currencies/wcj-currencies.php:101
272
- msgid "Moroccan dirham"
273
- msgstr "Marokkanischer Dirham"
274
-
275
- #: includes/currencies/wcj-currencies.php:102
276
- msgid "Moldovan leu"
277
- msgstr "Moldawischer Leu"
278
-
279
- #: includes/currencies/wcj-currencies.php:103
280
- msgid "Malagasy ariary"
281
- msgstr "Madagassische Arien"
282
-
283
- #: includes/currencies/wcj-currencies.php:104
284
- msgid "Malaysian ringgit"
285
- msgstr "Malaysischer Ringgit"
286
-
287
- #: includes/currencies/wcj-currencies.php:105
288
- msgid "Macedonian denar"
289
- msgstr "Mazedonischer Dinar"
290
-
291
- #: includes/currencies/wcj-currencies.php:106
292
- msgid "Myanma kyat"
293
- msgstr "Myanma Kyat"
294
-
295
- #: includes/currencies/wcj-currencies.php:107
296
- msgid "Mongolian tugrik"
297
- msgstr "Mongolischer Tugrik"
298
-
299
- #: includes/currencies/wcj-currencies.php:108
300
- msgid "Macanese pataca"
301
- msgstr "Macanese pataca"
302
-
303
- #: includes/currencies/wcj-currencies.php:109
304
- msgid "Mauritanian ouguiya"
305
- msgstr "Mauritanian ouguiya"
306
-
307
- #: includes/currencies/wcj-currencies.php:110
308
- msgid "Mauritian rupee"
309
- msgstr "Mauritian rupee"
310
-
311
- #: includes/currencies/wcj-currencies.php:111
312
- msgid "Maldivian rufiyaa"
313
- msgstr "Maldivian rufiyaa"
314
-
315
- #: includes/currencies/wcj-currencies.php:112
316
- msgid "Malawian kwacha"
317
- msgstr "Malawian kwacha"
318
-
319
- #: includes/currencies/wcj-currencies.php:113
320
- msgid "Mexican Peso"
321
- msgstr "Mexican Peso"
322
-
323
- #: includes/currencies/wcj-currencies.php:114
324
- msgid "Malaysian Ringgits"
325
- msgstr "Malaysian Ringgits"
326
-
327
- #: includes/currencies/wcj-currencies.php:115
328
- msgid "Mozambican metical"
329
- msgstr "Mozambican metical"
330
-
331
- #: includes/currencies/wcj-currencies.php:116
332
- msgid "Namibian dollar"
333
- msgstr "Namibian dollar"
334
-
335
- #: includes/currencies/wcj-currencies.php:117
336
- msgid "Nigerian Naira"
337
- msgstr "Nigerian Naira"
338
-
339
- #: includes/currencies/wcj-currencies.php:118
340
- msgid "Nicaraguan cordoba"
341
- msgstr "Nicaraguan cordoba"
342
-
343
- #: includes/currencies/wcj-currencies.php:119
344
- msgid "Norwegian Krone"
345
- msgstr "Norwegian Krone"
346
-
347
- #: includes/currencies/wcj-currencies.php:120
348
- msgid "Nepali Rupee"
349
- msgstr "Nepali Rupee"
350
-
351
- #: includes/currencies/wcj-currencies.php:121
352
- msgid "New Zealand Dollar"
353
- msgstr "New Zealand Dollar"
354
-
355
- #: includes/currencies/wcj-currencies.php:122
356
- msgid "Omani rial"
357
- msgstr "Omani rial"
358
-
359
- #: includes/currencies/wcj-currencies.php:123
360
- msgid "Panamanian balboa"
361
- msgstr "Panamanian balboa"
362
-
363
- #: includes/currencies/wcj-currencies.php:124
364
- msgid "Peruvian nuevo sol"
365
- msgstr "Peruvian nuevo sol"
366
-
367
- #: includes/currencies/wcj-currencies.php:125
368
- msgid "Papua New Guinean kina"
369
- msgstr "Papua New Guinean kina"
370
-
371
- #: includes/currencies/wcj-currencies.php:126
372
- msgid "Philippine Pesos"
373
- msgstr "Philippine Pesos"
374
-
375
- #: includes/currencies/wcj-currencies.php:127
376
- msgid "Paraguayan guarani"
377
- msgstr "Paraguayan guarani"
378
-
379
- #: includes/currencies/wcj-currencies.php:128
380
- msgid "Pakistani Rupee"
381
- msgstr "Pakistani Rupee"
382
-
383
- #: includes/currencies/wcj-currencies.php:129
384
- msgid "Polish Zloty"
385
- msgstr "Polish Zloty"
386
-
387
- #: includes/currencies/wcj-currencies.php:130
388
- msgid "Paraguayan Guaraní"
389
- msgstr "Paraguayan Guaraní"
390
-
391
- #: includes/currencies/wcj-currencies.php:131
392
- msgid "Qatari riyal"
393
- msgstr "Qatari riyal"
394
-
395
- #: includes/currencies/wcj-currencies.php:132
396
- msgid "Chinese renminbi"
397
- msgstr "Chinese renminbi"
398
-
399
- #: includes/currencies/wcj-currencies.php:133
400
- msgid "Romanian Leu"
401
- msgstr "Romanian Leu"
402
-
403
- #: includes/currencies/wcj-currencies.php:134
404
- msgid "Serbian dinar"
405
- msgstr "Serbian dinar"
406
-
407
- #: includes/currencies/wcj-currencies.php:135
408
- msgid "Russian Ruble"
409
- msgstr "Russian Ruble"
410
-
411
- #: includes/currencies/wcj-currencies.php:136
412
- msgid "Rwandan franc"
413
- msgstr "Rwandan franc"
414
-
415
- #: includes/currencies/wcj-currencies.php:137
416
- msgid "Saudi Riyal"
417
- msgstr "Saudi Riyal"
418
-
419
- #: includes/currencies/wcj-currencies.php:138
420
- msgid "Solomon Islands dollar"
421
- msgstr "Solomon Islands dollar"
422
-
423
- #: includes/currencies/wcj-currencies.php:139
424
- msgid "Seychellois rupee"
425
- msgstr "Seychellois rupee"
426
-
427
- #: includes/currencies/wcj-currencies.php:140
428
- msgid "Sudanese pound"
429
- msgstr "Sudanese pound"
430
-
431
- #: includes/currencies/wcj-currencies.php:141
432
- msgid "Swedish Krona"
433
- msgstr "Swedish Krona"
434
-
435
- #: includes/currencies/wcj-currencies.php:142
436
- msgid "Singapore Dollar"
437
- msgstr "Singapore Dollar"
438
-
439
- #: includes/currencies/wcj-currencies.php:143
440
- msgid "Saint Helena pound"
441
- msgstr "Saint Helena pound"
442
-
443
- #: includes/currencies/wcj-currencies.php:144
444
- msgid "Syrian pound"
445
- msgstr "Syrian pound"
446
-
447
- #: includes/currencies/wcj-currencies.php:145
448
- msgid "Slovak koruna"
449
- msgstr "Slovak koruna"
450
-
451
- #: includes/currencies/wcj-currencies.php:146
452
- msgid "Sierra Leonean leone"
453
- msgstr "Sierra Leonean leone"
454
-
455
- #: includes/currencies/wcj-currencies.php:147
456
- msgid "Somali shilling"
457
- msgstr "Somali shilling"
458
-
459
- #: includes/currencies/wcj-currencies.php:148
460
- msgid "Surinamese dollar"
461
- msgstr "Surinamese dollar"
462
-
463
- #: includes/currencies/wcj-currencies.php:149
464
- msgid "Sao Tome and Principe dobra"
465
- msgstr "Sao Tome and Principe dobra"
466
-
467
- #: includes/currencies/wcj-currencies.php:150
468
- msgid "Swazi lilangeni"
469
- msgstr "Swazi lilangeni"
470
-
471
- #: includes/currencies/wcj-currencies.php:151
472
- msgid "Thai Baht"
473
- msgstr "Thai Baht"
474
-
475
- #: includes/currencies/wcj-currencies.php:152
476
- msgid "Tajikistani somoni"
477
- msgstr "Tajikistani somoni"
478
-
479
- #: includes/currencies/wcj-currencies.php:153
480
- msgid "Turkmen manat"
481
- msgstr "Turkmen manat"
482
-
483
- #: includes/currencies/wcj-currencies.php:154
484
- msgid "Tunisian dinar"
485
- msgstr "Tunisian dinar"
486
-
487
- #: includes/currencies/wcj-currencies.php:155
488
- msgid "Paanga"
489
- msgstr "Paanga"
490
-
491
- #: includes/currencies/wcj-currencies.php:156
492
- msgid "Turkish Lira"
493
- msgstr "Turkish Lira"
494
-
495
- #: includes/currencies/wcj-currencies.php:157
496
- msgid "Trinidad and Tobago dollar"
497
- msgstr "Trinidad and Tobago dollar"
498
-
499
- #: includes/currencies/wcj-currencies.php:158
500
- msgid "Taiwan New Dollars"
501
- msgstr "Taiwan New Dollars"
502
-
503
- #: includes/currencies/wcj-currencies.php:159
504
- msgid "Tanzanian shilling"
505
- msgstr "Tanzanian shilling"
506
-
507
- #: includes/currencies/wcj-currencies.php:160
508
- msgid "Ukrainian Hryvnia"
509
- msgstr "Ukrainian Hryvnia"
510
-
511
- #: includes/currencies/wcj-currencies.php:161
512
- msgid "Ugandan shilling"
513
- msgstr "Ugandan shilling"
514
-
515
- #: includes/currencies/wcj-currencies.php:162
516
- msgid "Uruguayan peso"
517
- msgstr "Uruguayan peso"
518
-
519
- #: includes/currencies/wcj-currencies.php:163
520
- msgid "US Dollars"
521
- msgstr "US Dollars"
522
-
523
- #: includes/currencies/wcj-currencies.php:164
524
- msgid "Uzbekistani som"
525
- msgstr "Uzbekistani som"
526
-
527
- #: includes/currencies/wcj-currencies.php:165
528
- msgid "Venezuelan bolivar"
529
- msgstr "Venezuelan bolivar"
530
-
531
- #: includes/currencies/wcj-currencies.php:166
532
- msgid "Vietnamese Dong"
533
- msgstr "Vietnamese Dong"
534
-
535
- #: includes/currencies/wcj-currencies.php:167
536
- msgid "Vanuatu vatu"
537
- msgstr "Vanuatu vatu"
538
-
539
- #: includes/currencies/wcj-currencies.php:168
540
- msgid "Samoan tala"
541
- msgstr "Samoan tala"
542
-
543
- #: includes/currencies/wcj-currencies.php:170
544
- msgid "East Caribbean dollar"
545
- msgstr "East Caribbean dollar"
546
-
547
- #: includes/currencies/wcj-currencies.php:172
548
- msgid "West African CFA franc"
549
- msgstr "West African CFA franc"
550
-
551
- #: includes/currencies/wcj-currencies.php:173
552
- msgid "CFP franc"
553
- msgstr "CFP franc"
554
-
555
- #: includes/currencies/wcj-currencies.php:174
556
- msgid "South African rand"
557
- msgstr "South African rand"
558
-
559
- #: includes/currencies/wcj-currencies.php:175
560
- msgid "Zambian kwacha"
561
- msgstr "Zambian kwacha"
562
-
563
- #: includes/currencies/wcj-currencies.php:176
564
- msgid "Zimbabwean dollar"
565
- msgstr "Zimbabwean dollar"
566
-
567
- #: includes/emails/class-wc-email-wcj-custom.php:333
568
- msgid "Plain text template"
569
- msgstr "Reiner Text-Vorlage"
570
-
571
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:178
572
- msgid "Cron job: exchange rates successfully updated"
573
- msgstr "Cron Job: Wechselkurse erfolgreich aktualisiert"
574
-
575
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:180
576
- msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
577
- msgstr ""
578
- "Cron Job: Wechselkurse nicht aktualisiert, als currency_from == currency_to"
579
-
580
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:183
581
- msgid "Cron job: exchange rates update failed"
582
- msgstr "Cron Job: Wechselkursaktualisierung fehlgeschlagen"
583
-
584
- #: includes/export/class-wcj-fields-helper.php:79
585
- msgid "Login"
586
- msgstr "Login"
587
-
588
- #: includes/export/class-wcj-fields-helper.php:80
589
- msgid "Nicename"
590
- msgstr "Nicename"
591
-
592
- #: includes/export/class-wcj-fields-helper.php:81
593
- #: includes/export/class-wcj-fields-helper.php:295
594
- #: includes/gateways/class-wc-gateway-wcj-custom.php:163
595
- msgid "URL"
596
- msgstr "URL"
597
-
598
- #: includes/export/class-wcj-fields-helper.php:83
599
- msgid "Display Name"
600
- msgstr "Anzeigename"
601
-
602
- #: includes/export/class-wcj-fields-helper.php:115
603
- #: includes/export/class-wcj-fields-helper.php:198
604
- msgid "Order Time"
605
- msgstr "Bestellzeit"
606
-
607
- #: includes/export/class-wcj-fields-helper.php:143
608
- msgid "Item Name"
609
- msgstr "Posten Name"
610
-
611
- #: includes/export/class-wcj-fields-helper.php:144
612
- msgid "Item Meta"
613
- msgstr "Posten Meta"
614
-
615
- #: includes/export/class-wcj-fields-helper.php:145
616
- msgid "Item Variation Meta"
617
- msgstr "Posten Variation-Meta"
618
-
619
- #: includes/export/class-wcj-fields-helper.php:146
620
- msgid "Item Quantity"
621
- msgstr "Posten Menge"
622
-
623
- #: includes/export/class-wcj-fields-helper.php:148
624
- msgid "Item Product ID"
625
- msgstr "Posten Produkt-ID"
626
-
627
- #: includes/export/class-wcj-fields-helper.php:149
628
- msgid "Item Variation ID"
629
- msgstr "Posten Variations-ID"
630
-
631
- #: includes/export/class-wcj-fields-helper.php:150
632
- msgid "Item Line Subtotal"
633
- msgstr "Posten Zwischensumme"
634
-
635
- #: includes/export/class-wcj-fields-helper.php:151
636
- msgid "Item Line Total"
637
- msgstr "Posten Gesamtsumme"
638
-
639
- #: includes/export/class-wcj-fields-helper.php:156
640
- msgid "Item Product Input Fields"
641
- msgstr "Posten Produkt-Eingabefelder"
642
-
643
- #: includes/export/class-wcj-fields-helper.php:201
644
- msgid "Order Items Product Input Fields"
645
- msgstr "Bestell-Posten Produkt-Eingabefelder"
646
-
647
- #: includes/export/class-wcj-fields-helper.php:284
648
- msgid "Total Stock"
649
- msgstr "Gesamtbestand"
650
-
651
- #: includes/export/class-wcj-fields-helper.php:285
652
- msgid "Stock Quantity"
653
- msgstr "Bestandsmenge"
654
-
655
- #: includes/export/class-wcj-fields-helper.php:296
656
- msgid "Shipping Class"
657
- msgstr "Versandklasse"
658
-
659
- #: includes/export/class-wcj-fields-helper.php:297
660
- msgid "Shipping Class ID"
661
- msgstr "Versandklassen-ID"
662
-
663
- #: includes/export/class-wcj-fields-helper.php:298
664
- msgid "Width"
665
- msgstr "Breite"
666
-
667
- #: includes/export/class-wcj-fields-helper.php:299
668
- msgid "Length"
669
- msgstr "Länge"
670
-
671
- #: includes/export/class-wcj-fields-helper.php:300
672
- msgid "Height"
673
- msgstr "Höhe"
674
-
675
- #: includes/export/class-wcj-fields-helper.php:301
676
- msgid "Weight"
677
- msgstr "Gewicht"
678
-
679
- #: includes/export/class-wcj-fields-helper.php:302
680
- msgid "Downloadable"
681
- msgstr "Downloadbar"
682
-
683
- #: includes/export/class-wcj-fields-helper.php:303
684
- msgid "Virtual"
685
- msgstr "Virtuell"
686
-
687
- #: includes/export/class-wcj-fields-helper.php:304
688
- msgid "Sold Individually"
689
- msgstr "Einzeln verkauft"
690
-
691
- #: includes/export/class-wcj-fields-helper.php:307
692
- msgid "Manage Stock"
693
- msgstr "Bestandsverwaltung"
694
-
695
- #: includes/export/class-wcj-fields-helper.php:308
696
- msgid "Stock Status"
697
- msgstr "Bestandstatus"
698
-
699
- #: includes/export/class-wcj-fields-helper.php:309
700
- msgid "Backorders"
701
- msgstr "Lieferrückstand"
702
-
703
- #: includes/export/class-wcj-fields-helper.php:310
704
- msgid "Featured"
705
- msgstr "Hervorgehoben"
706
-
707
- #: includes/export/class-wcj-fields-helper.php:311
708
- msgid "Visibility"
709
- msgstr "Sichtbarkeit"
710
-
711
- #: includes/export/class-wcj-fields-helper.php:314
712
- msgid "Display Price"
713
- msgstr "Preis anzeigen"
714
-
715
- #: includes/export/class-wcj-fields-helper.php:315
716
- msgid "Average Rating"
717
- msgstr "Durchschnittliche Bewertung"
718
-
719
- #: includes/export/class-wcj-fields-helper.php:316
720
- msgid "Rating Count"
721
- msgstr "Bewertungs-Zähler"
722
-
723
- #: includes/export/class-wcj-fields-helper.php:317
724
- msgid "Review Count"
725
- msgstr "Rezension-Zähler"
726
-
727
- #: includes/export/class-wcj-fields-helper.php:320
728
- msgid "Dimensions"
729
- msgstr "Dimensionen"
730
-
731
- #: includes/export/class-wcj-fields-helper.php:321
732
- msgid "Formatted Name"
733
- msgstr "Formatierter Name"
734
-
735
- #: includes/export/class-wcj-fields-helper.php:322
736
- msgid "Availability"
737
- msgstr "Verfügbarkeit"
738
-
739
- #: includes/export/class-wcj-fields-helper.php:323
740
- msgid "Availability Class"
741
- msgstr "Verfügbarkeitsklasse"
742
-
743
- #: includes/functions/wcj-country-functions.php:114
744
- msgid "&#197;land Islands"
745
- msgstr "&#197;land Islands"
746
-
747
- #: includes/functions/wcj-country-functions.php:120
748
- msgid "Antarctica"
749
- msgstr "Antarctica"
750
-
751
- #: includes/functions/wcj-country-functions.php:134
752
- msgid "Belau"
753
- msgstr "Belau"
754
-
755
- #: includes/functions/wcj-country-functions.php:140
756
- msgid "Bonaire, Saint Eustatius and Saba"
757
- msgstr "Bonaire, Saint Eustatius and Saba"
758
-
759
- #: includes/functions/wcj-country-functions.php:143
760
- msgid "Bouvet Island"
761
- msgstr "Bouvet Island"
762
-
763
- #: includes/functions/wcj-country-functions.php:161
764
- msgid "Cocos (Keeling) Islands"
765
- msgstr "Cocos (Keeling) Islands"
766
-
767
- #: includes/functions/wcj-country-functions.php:164
768
- msgid "Congo (Brazzaville)"
769
- msgstr "Congo (Brazzaville)"
770
-
771
- #: includes/functions/wcj-country-functions.php:165
772
- msgid "Congo (Kinshasa)"
773
- msgstr "Congo (Kinshasa)"
774
-
775
- #: includes/functions/wcj-country-functions.php:166
776
- msgid "Cook Islands"
777
- msgstr "Cook Islands"
778
-
779
- #: includes/functions/wcj-country-functions.php:170
780
- msgid "Cura&Ccedil;ao"
781
- msgstr "Cura&Ccedil;ao"
782
-
783
- #: includes/functions/wcj-country-functions.php:184
784
- msgid "Falkland Islands"
785
- msgstr "Falkland Islands"
786
-
787
- #: includes/functions/wcj-country-functions.php:194
788
- msgid "Georgia"
789
- msgstr "Georgia"
790
-
791
- #: includes/functions/wcj-country-functions.php:197
792
- msgid "Gibraltar"
793
- msgstr "Gibraltar"
794
-
795
- #: includes/functions/wcj-country-functions.php:203
796
- msgid "Guernsey"
797
- msgstr "Guernsey"
798
-
799
- #: includes/functions/wcj-country-functions.php:208
800
- msgid "Heard Island and McDonald Islands"
801
- msgstr "Heard Island and McDonald Islands"
802
-
803
- #: includes/functions/wcj-country-functions.php:217
804
- msgid "Republic of Ireland"
805
- msgstr "Republic of Ireland"
806
-
807
- #: includes/functions/wcj-country-functions.php:218
808
- msgid "Isle of Man"
809
- msgstr "Isle of Man"
810
-
811
- #: includes/functions/wcj-country-functions.php:222
812
- msgid "Jamaica"
813
- msgstr "Jamaica"
814
-
815
- #: includes/functions/wcj-country-functions.php:224
816
- msgid "Jersey"
817
- msgstr "Jersey"
818
-
819
- #: includes/functions/wcj-country-functions.php:227
820
- msgid "Kenya"
821
- msgstr "Kenya"
822
-
823
- #: includes/functions/wcj-country-functions.php:228
824
- msgid "Kiribati"
825
- msgstr "Kiribati"
826
-
827
- #: includes/functions/wcj-country-functions.php:231
828
- msgid "Laos"
829
- msgstr "Laos"
830
-
831
- #: includes/functions/wcj-country-functions.php:234
832
- msgid "Lesotho"
833
- msgstr "Lesotho"
834
-
835
- #: includes/functions/wcj-country-functions.php:240
836
- msgid "Macao S.A.R., China"
837
- msgstr "Macao S.A.R., China"
838
-
839
- #: includes/functions/wcj-country-functions.php:247
840
- msgid "Malta"
841
- msgstr "Malta"
842
-
843
- #: includes/functions/wcj-country-functions.php:252
844
- msgid "Mayotte"
845
- msgstr "Mayotte"
846
-
847
- #: includes/functions/wcj-country-functions.php:271
848
- msgid "Niger"
849
- msgstr "Niger"
850
-
851
- #: includes/functions/wcj-country-functions.php:272
852
- msgid "Nigeria"
853
- msgstr "Nigeria"
854
-
855
- #: includes/functions/wcj-country-functions.php:273
856
- msgid "Niue"
857
- msgstr "Niue"
858
-
859
- #: includes/functions/wcj-country-functions.php:274
860
- msgid "Norfolk Island"
861
- msgstr "Norfolk Island"
862
-
863
- #: includes/functions/wcj-country-functions.php:278
864
- msgid "Pakistan"
865
- msgstr "Pakistan"
866
-
867
- #: includes/functions/wcj-country-functions.php:279
868
- msgid "Palestinian Territory"
869
- msgstr "Palestinian Territory"
870
-
871
- #: includes/functions/wcj-country-functions.php:280
872
- msgid "Panama"
873
- msgstr "Panama"
874
-
875
- #: includes/functions/wcj-country-functions.php:282
876
- msgid "Paraguay"
877
- msgstr "Paraguay"
878
-
879
- #: includes/functions/wcj-country-functions.php:285
880
- msgid "Pitcairn"
881
- msgstr "Pitcairn"
882
-
883
- #: includes/functions/wcj-country-functions.php:289
884
- msgid "Reunion"
885
- msgstr "Reunion"
886
-
887
- #: includes/functions/wcj-country-functions.php:293
888
- msgid "Saint Barth&eacute;lemy"
889
- msgstr "Saint Barth&eacute;lemy"
890
-
891
- #: includes/functions/wcj-country-functions.php:295
892
- msgid "Saint Kitts and Nevis"
893
- msgstr "Saint Kitts and Nevis"
894
-
895
- #: includes/functions/wcj-country-functions.php:296
896
- msgid "Saint Lucia"
897
- msgstr "Saint Lucia"
898
-
899
- #: includes/functions/wcj-country-functions.php:297
900
- msgid "Saint Martin (French part)"
901
- msgstr "Saint Martin (French part)"
902
-
903
- #: includes/functions/wcj-country-functions.php:298
904
- msgid "Saint Martin (Dutch part)"
905
- msgstr "Saint Martin (Dutch part)"
906
-
907
- #: includes/functions/wcj-country-functions.php:299
908
- msgid "Saint Pierre and Miquelon"
909
- msgstr "Saint Pierre and Miquelon"
910
-
911
- #: includes/functions/wcj-country-functions.php:301
912
- msgid "San Marino"
913
- msgstr "San Marino"
914
-
915
- #: includes/functions/wcj-country-functions.php:302
916
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
917
- msgstr "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
918
-
919
- #: includes/functions/wcj-country-functions.php:304
920
- msgid "Senegal"
921
- msgstr "Senegal"
922
-
923
- #: includes/functions/wcj-country-functions.php:307
924
- msgid "Sierra Leone"
925
- msgstr "Sierra Leone"
926
-
927
- #: includes/functions/wcj-country-functions.php:312
928
- msgid "Somalia"
929
- msgstr "Somalia"
930
-
931
- #: includes/functions/wcj-country-functions.php:314
932
- msgid "South Georgia/Sandwich Islands"
933
- msgstr "South Georgia/Sandwich Islands"
934
-
935
- #: includes/functions/wcj-country-functions.php:316
936
- msgid "South Sudan"
937
- msgstr "South Sudan"
938
-
939
- #: includes/functions/wcj-country-functions.php:318
940
- msgid "Sri Lanka"
941
- msgstr "Sri Lanka"
942
-
943
- #: includes/functions/wcj-country-functions.php:319
944
- msgid "Sudan"
945
- msgstr "Sudan"
946
-
947
- #: includes/functions/wcj-country-functions.php:320
948
- msgid "Suriname"
949
- msgstr "Suriname"
950
-
951
- #: includes/functions/wcj-country-functions.php:321
952
- msgid "Svalbard and Jan Mayen"
953
- msgstr "Svalbard and Jan Mayen"
954
-
955
- #: includes/functions/wcj-country-functions.php:322
956
- msgid "Swaziland"
957
- msgstr "Swaziland"
958
-
959
- #: includes/functions/wcj-country-functions.php:327
960
- msgid "Tajikistan"
961
- msgstr "Tajikistan"
962
-
963
- #: includes/functions/wcj-country-functions.php:330
964
- msgid "Timor-Leste"
965
- msgstr "Timor-Leste"
966
-
967
- #: includes/functions/wcj-country-functions.php:331
968
- msgid "Togo"
969
- msgstr "Togo"
970
-
971
- #: includes/functions/wcj-country-functions.php:332
972
- msgid "Tokelau"
973
- msgstr "Tokelau"
974
-
975
- #: includes/functions/wcj-country-functions.php:333
976
- msgid "Tonga"
977
- msgstr "Tonga"
978
-
979
- #: includes/functions/wcj-country-functions.php:337
980
- msgid "Turkmenistan"
981
- msgstr "Turkmenistan"
982
-
983
- #: includes/functions/wcj-country-functions.php:339
984
- msgid "Tuvalu"
985
- msgstr "Tuvalu"
986
-
987
- #: includes/functions/wcj-country-functions.php:340
988
- msgid "Uganda"
989
- msgstr "Uganda"
990
-
991
- #: includes/functions/wcj-country-functions.php:343
992
- msgid "United Kingdom (UK)"
993
- msgstr "United Kingdom (UK)"
994
-
995
- #: includes/functions/wcj-country-functions.php:344
996
- msgid "United States (US)"
997
- msgstr "United States (US)"
998
-
999
- #: includes/functions/wcj-country-functions.php:347
1000
- msgid "Vanuatu"
1001
- msgstr "Vanuatu"
1002
-
1003
- #: includes/functions/wcj-country-functions.php:350
1004
- msgid "Vietnam"
1005
- msgstr "Vietnam"
1006
-
1007
- #: includes/functions/wcj-country-functions.php:352
1008
- msgid "Western Sahara"
1009
- msgstr "Western Sahara"
1010
-
1011
- #: includes/functions/wcj-functions.php:628
1012
- msgid "Before shipping calculator"
1013
- msgstr "Vor Versandrechner"
1014
-
1015
- #: includes/functions/wcj-functions.php:629
1016
- msgid "After shipping calculator"
1017
- msgstr "Nach Versandrechner"
1018
-
1019
- #: includes/functions/wcj-functions.php:898
1020
- #: includes/functions/wcj-functions.php:917
1021
- msgid "Guest"
1022
- msgstr "Gast"
1023
-
1024
- #: includes/functions/wcj-invoicing-functions.php:19
1025
- msgid "Invoice"
1026
- msgstr "Rechnung"
1027
-
1028
- #: includes/functions/wcj-invoicing-functions.php:20
1029
- msgid "Invoices"
1030
- msgstr "Rechnungen"
1031
-
1032
- #: includes/functions/wcj-invoicing-functions.php:27
1033
- msgid "Proforma Invoice"
1034
- msgstr "Proforma-Rechnung"
1035
-
1036
- #: includes/functions/wcj-invoicing-functions.php:28
1037
- msgid "Proforma Invoices"
1038
- msgstr "Proforma-Rechnungen"
1039
-
1040
- #: includes/functions/wcj-invoicing-functions.php:35
1041
- msgid "Packing Slip"
1042
- msgstr "Verpackungsschein"
1043
-
1044
- #: includes/functions/wcj-invoicing-functions.php:43
1045
- msgid "Credit Note"
1046
- msgstr "Gutschrift"
1047
-
1048
- #: includes/functions/wcj-invoicing-functions.php:44
1049
- msgid "Credit Notes"
1050
- msgstr "Gutschriften"
1051
-
1052
- #: includes/gateways/class-wc-gateway-wcj-custom.php:70
1053
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:115
1054
- #: includes/shipping/class-wc-shipping-wcj-custom.php:84
1055
- msgid "This controls the title which the user sees during checkout."
1056
- msgstr "Dies steuert den Titel, den der Benutzer während der Kasse sieht."
1057
-
1058
- #: includes/gateways/class-wc-gateway-wcj-custom.php:79
1059
- msgid "You can add input fields with [wcj_input_field] shortcode."
1060
- msgstr "Du kannst Eingabefelder mit [wcj_input_field] Shortcode hinzufügen."
1061
-
1062
- #: includes/gateways/class-wc-gateway-wcj-custom.php:87
1063
- msgid "Instructions that will be added to the thank you page."
1064
- msgstr "Instruktionen, die dem Dankeschön hinzugefügt werden."
1065
-
1066
- #: includes/gateways/class-wc-gateway-wcj-custom.php:93
1067
- msgid "Email Instructions"
1068
- msgstr "Email-Instruktionen"
1069
-
1070
- #: includes/gateways/class-wc-gateway-wcj-custom.php:95
1071
- msgid "Instructions that will be added to the emails."
1072
- msgstr "Instruktionen, die den E-Mails hinzugefügt werden."
1073
-
1074
- #: includes/gateways/class-wc-gateway-wcj-custom.php:101
1075
- msgid "Icon"
1076
- msgstr "Icon"
1077
-
1078
- #: includes/gateways/class-wc-gateway-wcj-custom.php:110
1079
- msgid "Minimum order amount"
1080
- msgstr "Mindestbestellmenge"
1081
-
1082
- #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1083
- msgid "Enable for shipping methods"
1084
- msgstr "Für Versandmethoden aktivieren"
1085
-
1086
- #: includes/gateways/class-wc-gateway-wcj-custom.php:124
1087
- msgid ""
1088
- "If gateway is only available for certain shipping methods, set it up here. "
1089
- "Leave blank to enable for all methods."
1090
- msgstr ""
1091
- "Wenn das Gateway nur für bestimmte Versandmethoden verfügbar ist, richte es "
1092
- "hier ein. Leer lassen, um alle Methoden zu aktivieren."
1093
-
1094
- #: includes/gateways/class-wc-gateway-wcj-custom.php:127
1095
- msgid "Select shipping methods"
1096
- msgstr "Wähle Versandmethoden"
1097
-
1098
- #: includes/gateways/class-wc-gateway-wcj-custom.php:131
1099
- msgid "Enable for virtual orders"
1100
- msgstr "Aktivieren für virtuelle Aufträge"
1101
-
1102
- #: includes/gateways/class-wc-gateway-wcj-custom.php:132
1103
- msgid "Enable gateway if the order is virtual"
1104
- msgstr "Aktiviere das Gateway, wenn der Auftrag virtuell ist"
1105
-
1106
- #: includes/gateways/class-wc-gateway-wcj-custom.php:146
1107
- msgid "Send Additional Emails"
1108
- msgstr "Sende zusätzliche E-Mails"
1109
-
1110
- #: includes/gateways/class-wc-gateway-wcj-custom.php:147
1111
- msgid "Send to Admin"
1112
- msgstr "An Admin senden"
1113
-
1114
- #: includes/gateways/class-wc-gateway-wcj-custom.php:164
1115
- msgid "Enter full URL with http(s)."
1116
- msgstr "Gib die vollständige URL mit http(s) ein"
1117
-
1118
- #: includes/gateways/class-wc-gateway-wcj-custom.php:165
1119
- msgid "Optional. Leave blank to use default URL."
1120
- msgstr "Optional. Leer lassen, um die Standard-URL zu verwenden."
1121
-
1122
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:80
1123
- msgid "Checkbox: ON"
1124
- msgstr "Checkbox: AN"
1125
-
1126
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:88
1127
- msgid "Checkbox: OFF"
1128
- msgstr "Checkbox: AUS"
1129
-
1130
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:96
1131
- msgid "Checkbox: Default"
1132
- msgstr "Checkbox: Voreinstellung"
1133
-
1134
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:108
1135
- msgid ""
1136
- "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png\"."
1137
- " Leave blank to accept all files"
1138
- msgstr ""
1139
- "Wenn die Datei ausgewählt ist, lege hier die akzeptierten Dateitypen fest. z."
1140
- "B.: \".jpg,.jpeg,.png\". Leer lassen, um alle Dateien zu akzeptieren"
1141
-
1142
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:109
1143
- msgid "File: Accepted types"
1144
- msgstr "Datei: Akzeptierte Typen"
1145
-
1146
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:111
1147
- msgid ".jpg,.jpeg,.png"
1148
- msgstr ".jpg,.jpeg,.png"
1149
-
1150
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:116
1151
- msgid ""
1152
- "If file is selected, set max file size here. Set to zero to accept all files"
1153
- msgstr ""
1154
- "Wenn die Datei ausgewählt ist, stelle hier die maximale Dateigröße ein. Auf "
1155
- "Null setzen, um alle Dateien zu akzeptieren"
1156
-
1157
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:117
1158
- msgid "File: Max size"
1159
- msgstr "Datei: Maximale Größe"
1160
-
1161
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:113
1162
- msgid "Download monthly documents CSV"
1163
- msgstr "Monatliche Dokumente herunterladen CSV"
1164
-
1165
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:121
1166
- msgid "Admin - Failed Order"
1167
- msgstr "Admin - Fehlgeschlagene Bestellung"
1168
-
1169
- #: includes/reports/wcj-class-reports-sales.php:141
1170
- msgid "Variation"
1171
- msgstr "Variation"
1172
-
1173
- #: includes/reports/wcj-class-reports-sales.php:172
1174
- msgid "Last Sale"
1175
- msgstr "Letzter Verkauf"
1176
-
1177
- #: includes/reports/wcj-class-reports-sales.php:173
1178
- msgid "Total Sales"
1179
- msgstr "Gesamtumsatz"
1180
-
1181
- #: includes/reports/wcj-class-reports-sales.php:227
1182
- msgid "Filter products"
1183
- msgstr "Produkte filtern"
1184
-
1185
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:141
1186
- msgid "Min Weight"
1187
- msgstr "Mindestgewicht"
1188
-
1189
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:159
1190
- msgid ""
1191
- "Press \"Save changes\" and reload the page after you change this number."
1192
- msgstr ""
1193
- "Drücke \"Änderungen speichern\" und lade die Seite nach dem Ändern dieser "
1194
- "Nummer neu."
1195
-
1196
- #: includes/shortcodes/class-wcj-order-items-shortcodes.php:151
1197
- msgid "Standard"
1198
- msgstr "Standard"
1199
-
1200
- #: woocommerce-jetpack.php:346
1201
- msgid ""
1202
- "Please upgrade <strong>Booster Plus for WooCommerce</strong> plugin to "
1203
- "version %s. Please visit <a href=\"%s\">your account</a> on booster.io to "
1204
- "download the latest Booster Plus version."
1205
- msgstr ""
1206
- "Bitte aktualisiere <strong>Booster Plus for WooCommerce</strong> -Plugin auf "
1207
- "Version %s. Bitte besuche <a href=\"%s\">Dein Konto</a> auf booster.io um "
1208
- "die aktuellste Booster Plus Version herunterzuladen."
1209
-
1210
- #: includes/class-wcj-product-bulk-price-converter.php:152
1211
- msgid "Original Price"
1212
- msgstr "Original-Preis"
1213
-
1214
- #: includes/class-wcj-product-bulk-price-converter.php:153
1215
- msgid "Modified Price"
1216
- msgstr "Geänderter Preis"
1217
-
1218
- #: includes/class-wcj-product-bulk-price-converter.php:206
1219
- msgid "Multiply value must be above zero."
1220
- msgstr "Multiplizier-Wert muss über Null liegen."
1221
-
1222
- #: includes/class-wcj-product-bulk-price-converter.php:213
1223
- msgid "Prices changed successfully!"
1224
- msgstr "Preise erfolgreich geändert!"
1225
-
1226
- #: includes/class-wcj-product-bulk-price-converter.php:238
1227
- msgid "Multiply all product prices by"
1228
- msgstr "Multipliziere alle Produktpreise mit"
1229
-
1230
- #: includes/class-wcj-product-by-user-role.php:88
1231
- msgid ""
1232
- "When enabled, module will add new \"Booster: Product Visibility by User "
1233
- "Role\" meta box to each product's edit page."
1234
- msgstr ""
1235
- "Wenn diese Option aktiviert ist, wird das Modul \"Booster: "
1236
- "Produktsichtbarkeit nach Benutzerrolle\" in die Meta-Box des jeweiligen "
1237
- "Produkts hinzugefügt."
1238
-
1239
- #: includes/class-wcj-product-input-fields.php:143
1240
- msgid ""
1241
- "You will be able to change this number later as well as define the fields, "
1242
- "for each product individually, in product's \"Edit\"."
1243
- msgstr ""
1244
- "Du kannst diese Nummer später ändern und die Felder für jedes Produkt "
1245
- "einzeln im Produkt \"Bearbeiten\" definieren."
1246
-
1247
- #: includes/class-wcj-product-input-fields.php:217
1248
- msgid "Frontend View Options"
1249
- msgstr "Frontend-Ansichtsoptionen"
1250
-
1251
- #: includes/class-wcj-product-input-fields.php:223
1252
- msgid "HTML to add after required field title"
1253
- msgstr "HTML nach dem gewünschten Feldtitel hinzufügen"
1254
-
1255
- #: includes/class-wcj-product-input-fields.php:231
1256
- msgid "Item Name Order Table Format"
1257
- msgstr "Produktname Bestell-Tabellenformat"
1258
-
1259
- #: includes/class-wcj-product-listings.php:482
1260
- msgid "Position Priority"
1261
- msgstr "Positions-Priorität"
1262
-
1263
- #: includes/class-wcj-product-open-pricing.php:28
1264
- msgid ""
1265
- "Let your WooCommerce store customers enter price for the product manually."
1266
- msgstr ""
1267
- "Lasse Deine WooCommerce-Shop Kunden den Preis für das Produkt eingeben."
1268
-
1269
- #: includes/class-wcj-product-open-pricing.php:131
1270
- msgid ""
1271
- "Booster: Free plugin's version is limited to only one open pricing product "
1272
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
1273
- "target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
1274
- "products."
1275
- msgstr ""
1276
- "Booster: Die kostenlose Version des Plugins ist auf nur ein offenes "
1277
- "Preisprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
1278
- "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl "
1279
- "offener Preisprodukte hinzuzufügen."
1280
-
1281
- #: includes/class-wcj-product-open-pricing.php:184
1282
- msgid "Default Price"
1283
- msgstr "Preisvoreinstellung"
1284
-
1285
- #: includes/class-wcj-product-open-pricing.php:190
1286
- msgid "Min Price"
1287
- msgstr "Min Preis"
1288
-
1289
- #: includes/class-wcj-product-open-pricing.php:196
1290
- msgid "Max Price"
1291
- msgstr "Max Preis"
1292
-
1293
- #: includes/class-wcj-product-open-pricing.php:265
1294
- #: includes/class-wcj-product-open-pricing.php:391
1295
- msgid "Price is required!"
1296
- msgstr "Preis wird benötigt!"
1297
-
1298
- #: includes/class-wcj-product-open-pricing.php:269
1299
- #: includes/class-wcj-product-open-pricing.php:398
1300
- msgid "Entered price is to small!"
1301
- msgstr "Eingegebener Preis ist zu niedrig!"
1302
-
1303
- #: includes/class-wcj-product-open-pricing.php:275
1304
- #: includes/class-wcj-product-open-pricing.php:405
1305
- msgid "Entered price is to big!"
1306
- msgstr "Eingegebener Preis ist zu hoch!"
1307
-
1308
- #: includes/class-wcj-product-open-pricing.php:332
1309
- #: includes/class-wcj-product-open-pricing.php:376
1310
- msgid "Name Your Price"
1311
- msgstr "Nenne Deinen Preis"
1312
-
1313
- #: includes/class-wcj-product-open-pricing.php:374
1314
- msgid "Frontend Label"
1315
- msgstr "Frontend Label"
1316
-
1317
- #: includes/class-wcj-product-open-pricing.php:381
1318
- msgid "Frontend Template"
1319
- msgstr "Frontend Template"
1320
-
1321
- #: includes/class-wcj-product-open-pricing.php:382
1322
- msgid "Here you can use"
1323
- msgstr "Hier kannst Du verwenden"
1324
-
1325
- #: includes/class-wcj-product-open-pricing.php:389
1326
- msgid "Message on Empty Price"
1327
- msgstr "Nachricht auf leeren Preis"
1328
-
1329
- #: includes/class-wcj-product-open-pricing.php:396
1330
- msgid "Message on Price to Small"
1331
- msgstr "Nachricht auf Preis zu niedrig"
1332
-
1333
- #: includes/class-wcj-product-open-pricing.php:403
1334
- msgid "Message on Price to Big"
1335
- msgstr "Nachricht auf Preis zu hoch"
1336
-
1337
- #: includes/class-wcj-product-price-by-formula.php:28
1338
- msgid "Set formula for automatic WooCommerce product price calculation."
1339
- msgstr ""
1340
- "Setze die Formel für die automatische WooCommerce-Produktpreisberechnung."
1341
-
1342
- #: includes/class-wcj-product-price-by-formula.php:119
1343
- msgid "Error in formula"
1344
- msgstr "Fehler in Formel"
1345
-
1346
- #: includes/class-wcj-product-price-by-formula.php:244
1347
- msgid "Use values below"
1348
- msgstr "Werte unten nutzen"
1349
-
1350
- #: includes/class-wcj-product-price-by-formula.php:245
1351
- msgid "Use default values"
1352
- msgstr "Voreingestellte Werte nutzen"
1353
-
1354
- #: includes/class-wcj-product-tabs.php:411
1355
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:153
1356
- msgid "Click \"Update\" product after you change this number."
1357
- msgstr "Klicke auf \"Produkt Aktualisieren\", nachdem Du diese Nummer änderst."
1358
-
1359
- #: includes/class-wcj-product-tabs.php:443
1360
- #: includes/class-wcj-product-tabs.php:541
1361
- #: includes/class-wcj-product-tabs.php:710
1362
- msgid "Custom Product Tab"
1363
- msgstr "Benutzerdefiniertes Produkt Tab"
1364
-
1365
- #: includes/class-wcj-product-tabs.php:497
1366
- msgid "Custom Product Tabs Options"
1367
- msgstr "Benutzerdefinierte Produkt-Registerkarten-Optionen"
1368
-
1369
- #: includes/class-wcj-product-tabs.php:503
1370
- msgid "Custom Product Tabs Number"
1371
- msgstr "Benutzerdefinierte Produkt-Registerkarten-Nummer"
1372
-
1373
- #: includes/class-wcj-product-tabs.php:558
1374
- #: includes/class-wcj-product-tabs.php:727
1375
- msgid "You can use shortcodes here..."
1376
- msgstr "Hier kannst du Shortcodes verwenden..."
1377
-
1378
- #: includes/class-wcj-product-tabs.php:566
1379
- #: includes/class-wcj-product-tabs.php:735
1380
- msgid "PRODUCTS to HIDE this tab"
1381
- msgstr "PRODUKTE, die in dieser Registerkarte auszublenden sind"
1382
-
1383
- #: includes/class-wcj-product-tabs.php:586
1384
- #: includes/class-wcj-product-tabs.php:755
1385
- msgid "CATEGORIES to HIDE this tab"
1386
- msgstr "KATEGORIEN, die in dieser Registerkarte auszublenden sind"
1387
-
1388
- #: includes/class-wcj-product-tabs.php:606
1389
- #: includes/class-wcj-product-tabs.php:775
1390
- msgid "TAGS to HIDE this tab"
1391
- msgstr "STICHWÖRTER, die in dieser Registerkarte auszublenden sind"
1392
-
1393
- #: includes/class-wcj-product-tabs.php:671
1394
- msgid "Custom Product Tabs - Per Product"
1395
- msgstr "Benutzerdefinierte Produkt-Registerkarten - Pro Produkt"
1396
-
1397
- #: includes/class-wcj-product-tabs.php:677
1398
- msgid "Enable Per Product Custom Product Tabs"
1399
- msgstr "Aktiviere pro Produkt benutzerdefinierte Produkt-Registerkarten"
1400
-
1401
- #: includes/class-wcj-product-tabs.php:679
1402
- msgid "This will add meta boxes to each product's edit page."
1403
- msgstr "Dies fügt jeder Produktbearbeitungsseite Meta-Boxen hinzu."
1404
-
1405
- #: includes/class-wcj-product-tabs.php:685
1406
- msgid "Use Visual Editor"
1407
- msgstr "Verwendung des Visual Editor"
1408
-
1409
- #: includes/class-wcj-product-tabs.php:692
1410
- msgid "Default Per Product Custom Product Tabs Number"
1411
- msgstr ""
1412
- "Voreingestellte pro Produkt benutzerdefinierte Produkt-Registerkarten-Nummer"
1413
-
1414
- #: includes/class-wcj-product-tabs.php:711
1415
- msgid "Default Title"
1416
- msgstr "Voreingestellter Titel"
1417
-
1418
- #: includes/class-wcj-product-tabs.php:719
1419
- msgid "Default Priority (i.e. Order)"
1420
- msgstr "Voreingestellte Priorität (d.h. Reihenfolge)"
1421
-
1422
- #: includes/class-wcj-product-tabs.php:726
1423
- msgid "Default Content"
1424
- msgstr "Voreingestellter Inhalt"
1425
-
1426
- #: includes/class-wcj-product-tabs.php:803
1427
- msgid "WooCommerce Standard Product Tabs Options"
1428
- msgstr "WooCommerce Standard-Produkt-Registerkarten-Optionen"
1429
-
1430
- #: includes/class-wcj-product-tabs.php:809
1431
- msgid "Description Tab"
1432
- msgstr "Beschreibungs-Registerkarte"
1433
-
1434
- #: includes/class-wcj-product-tabs.php:810
1435
- #: includes/class-wcj-product-tabs.php:833
1436
- #: includes/class-wcj-product-tabs.php:856
1437
- msgid "Remove tab from product page"
1438
- msgstr "Registerkarte von der Produktseite entfernen"
1439
-
1440
- #: includes/class-wcj-product-tabs.php:817
1441
- #: includes/class-wcj-product-tabs.php:840
1442
- #: includes/class-wcj-product-tabs.php:863
1443
- msgid "Title."
1444
- msgstr "Titel."
1445
-
1446
- #: includes/class-wcj-product-tabs.php:818
1447
- #: includes/class-wcj-product-tabs.php:841
1448
- #: includes/class-wcj-product-tabs.php:864
1449
- msgid "Leave blank for WooCommerce defaults"
1450
- msgstr "Leer lassen für WooCommerce-Standardwerte"
1451
-
1452
- #: includes/class-wcj-product-tabs.php:828
1453
- #: includes/class-wcj-product-tabs.php:851
1454
- #: includes/class-wcj-product-tabs.php:874
1455
- msgid "Priority (i.e. Order)."
1456
- msgstr "Priorität (d.h. Reihenfolge)."
1457
-
1458
- #: includes/class-wcj-product-tabs.php:832
1459
- msgid "Additional Information Tab"
1460
- msgstr "Zusätzliche Informations-Registerkarte"
1461
-
1462
- #: includes/class-wcj-product-tabs.php:855
1463
- msgid "Reviews Tab"
1464
- msgstr "Bewertungs-Registerkarte "
1465
-
1466
- #: includes/class-wcj-products-xml.php:28
1467
- msgid "Products XML"
1468
- msgstr "Produkte XML"
1469
-
1470
- #: includes/class-wcj-products-xml.php:29
1471
- msgid "WooCommerce products XML feed."
1472
- msgstr "WooCommerce-Produkte XML-Feed."
1473
-
1474
- #: includes/class-wcj-products-xml.php:100
1475
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:207
1476
- msgid "Once a Minute"
1477
- msgstr "Einmal pro Minute"
1478
-
1479
- #: includes/class-wcj-products-xml.php:112
1480
- msgid "Products XML file created successfully."
1481
- msgstr "Produkte XML-Datei erfolgreich erstellt."
1482
-
1483
- #: includes/class-wcj-products-xml.php:122
1484
- msgid "An error has occurred while creating products XML file."
1485
- msgstr "Beim Erstellen der Produkt-XML-Datei ist ein Fehler aufgetreten."
1486
-
1487
- #: includes/class-wcj-products-xml.php:226
1488
- msgid "Create Now"
1489
- msgstr "Jetzt erstellen"
1490
-
1491
- #: includes/class-wcj-products-xml.php:231
1492
- msgid "XML File"
1493
- msgstr "XML-Datei"
1494
-
1495
- #: includes/class-wcj-products-xml.php:243
1496
- msgid "XML Header"
1497
- msgstr "XML Header"
1498
-
1499
- #: includes/class-wcj-products-xml.php:250
1500
- msgid "XML Item"
1501
- msgstr "XML-Produkt"
1502
-
1503
- #: includes/class-wcj-products-xml.php:252
1504
- msgid ""
1505
- "You can use shortcodes here. Please take a look at <a target=\"_blank\" "
1506
- "href=\"%s\">Booster's products shortcodes</a>."
1507
- msgstr ""
1508
- "Hier kannst Du Shortcodes verwenden. Bitte werfe einen Blick auf <a "
1509
- "target=\"_blank\" href=\"%s\">Booster's Produkt-Shortcodes</a>."
1510
-
1511
- #: includes/class-wcj-products-xml.php:269
1512
- msgid "XML Footer"
1513
- msgstr "XML Footer"
1514
-
1515
- #: includes/class-wcj-products-xml.php:276
1516
- msgid "XML File Path and Name"
1517
- msgstr "XML-Datei Pfad und Name"
1518
-
1519
- #: includes/class-wcj-products-xml.php:277
1520
- msgid "Path on server:"
1521
- msgstr "Pfad auf Server"
1522
-
1523
- #: includes/class-wcj-products-xml.php:278
1524
- msgid "URL:"
1525
- msgstr "URL:"
1526
-
1527
- #: includes/class-wcj-purchase-data.php:49
1528
- #: includes/class-wcj-purchase-data.php:235
1529
- #: includes/class-wcj-purchase-data.php:390
1530
- msgid "Profit"
1531
- msgstr "Gewinnt"
1532
-
1533
- #: includes/class-wcj-purchase-data.php:126
1534
- #: includes/class-wcj-purchase-data.php:285
1535
- msgid "Extra expenses (shipping etc.)"
1536
- msgstr "Nebenkosten (Versand etc.)"
1537
-
1538
- #: includes/class-wcj-purchase-data.php:136
1539
- #: includes/class-wcj-purchase-data.php:292
1540
- msgid "Affiliate commission"
1541
- msgstr "Affiliate Provision"
1542
-
1543
- #: includes/class-wcj-purchase-data.php:178
1544
- #: includes/class-wcj-purchase-data.php:366
1545
- msgid "Seller"
1546
- msgstr "Verkäufer"
1547
-
1548
- #: includes/class-wcj-purchase-data.php:188
1549
- #: includes/class-wcj-purchase-data.php:373
1550
- msgid "Purchase info"
1551
- msgstr "Kaufinformationen"
1552
-
1553
- #: includes/class-wcj-purchase-data.php:233
1554
- msgid "Selling"
1555
- msgstr "Verkaufen"
1556
-
1557
- #: includes/class-wcj-purchase-data.php:234
1558
- msgid "Buying"
1559
- msgstr "Kaufen"
1560
-
1561
- #: includes/class-wcj-purchase-data.php:243
1562
- msgid "Report"
1563
- msgstr "Bericht"
1564
-
1565
- #: includes/class-wcj-purchase-data.php:272
1566
- msgid "Price Fields"
1567
- msgstr "Preisfelder"
1568
-
1569
- #: includes/class-wcj-purchase-data.php:274
1570
- #: includes/class-wcj-purchase-data.php:305
1571
- msgid ""
1572
- "This fields will be added to product's edit page and will be included in "
1573
- "product's purchase cost calculation."
1574
- msgstr ""
1575
- "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt und in die "
1576
- "Kaufpreisberechnung des Produkts aufgenommen."
1577
-
1578
- #: includes/class-wcj-purchase-data.php:303
1579
- msgid "Custom Price Fields"
1580
- msgstr "Benutzerdefinierte Preisfelder"
1581
-
1582
- #: includes/class-wcj-purchase-data.php:309
1583
- msgid "Total Custom Price Fields"
1584
- msgstr "Gesamte benutzerdefinierte Preisfelder"
1585
-
1586
- #: includes/class-wcj-purchase-data.php:321
1587
- msgid "Custom Price Field"
1588
- msgstr "Benutzerdefiniertes Preisfeld"
1589
-
1590
- #: includes/class-wcj-purchase-data.php:324
1591
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:58
1592
- msgid "Leave blank to disable"
1593
- msgstr "Leer lassen, um zu deaktivieren"
1594
-
1595
- #: includes/class-wcj-purchase-data.php:353
1596
- msgid "Info Fields"
1597
- msgstr "Info-Felder"
1598
-
1599
- #: includes/class-wcj-purchase-data.php:355
1600
- msgid "This fields will be added to product's edit page."
1601
- msgstr "Diese Felder werden der Produkt-Bearbeitungsseite hinzugefügt."
1602
-
1603
- #: includes/class-wcj-related-products.php:128
1604
- msgid "Ignored if order by \"Random\" is selected above."
1605
- msgstr "Ignoriert, wenn die Bestellung von \"Zufällig\" oben gewählt wird."
1606
-
1607
- #: includes/class-wcj-related-products.php:138
1608
- msgid "Relate by Category"
1609
- msgstr "Verwandt nach Kategorie"
1610
-
1611
- #: includes/class-wcj-related-products.php:144
1612
- msgid "Relate by Tag"
1613
- msgstr "Verwandt nach Stichwort"
1614
-
1615
- #: includes/class-wcj-reports.php:35
1616
- msgid "WooCommerce stock, sales, customers etc. reports."
1617
- msgstr "WooCommerce-Berichte für Lager, Abverkauf, Kunden etc."
1618
-
1619
- #: includes/class-wcj-reports.php:292
1620
- msgid "Booster: Customers by Country"
1621
- msgstr "Booster: Kunden nach Land"
1622
-
1623
- #: includes/class-wcj-reports.php:299
1624
- msgid "Booster: Customers by Country Sets"
1625
- msgstr "Booster: Kunden nach Land Sets"
1626
-
1627
- #: includes/class-wcj-reports.php:316
1628
- msgid "Product Sales"
1629
- msgstr "Produktabverkäufe"
1630
-
1631
- #: includes/class-wcj-reports.php:334
1632
- msgid "Customers by Country"
1633
- msgstr "Kunden nach Land"
1634
-
1635
- #: includes/class-wcj-reports.php:340
1636
- msgid "Customers by Country Sets"
1637
- msgstr "Kunden nach Land Sets"
1638
-
1639
- #: includes/class-wcj-reports.php:346
1640
- msgid "All in Stock with sales data"
1641
- msgstr "Alles auf Lager mit Verkaufsdaten"
1642
-
1643
- #: includes/class-wcj-shipping-calculator.php:177
1644
- msgid "Labels Options"
1645
- msgstr "Label-ptionen"
1646
-
1647
- #: includes/class-wcj-shipping-calculator.php:182
1648
- msgid "Labels"
1649
- msgstr "Label"
1650
-
1651
- #: includes/class-wcj-shipping-calculator.php:191
1652
- msgid "Label for Calculate Shipping"
1653
- msgstr "Label für Versandkostenberechnung"
1654
-
1655
- #: includes/class-wcj-shipping-calculator.php:193
1656
- msgid "Calculate Shipping"
1657
- msgstr "Versandkostenberechnung"
1658
-
1659
- #: includes/class-wcj-shipping-calculator.php:199
1660
- msgid "Label for Update Totals"
1661
- msgstr "Label für Aktualisiere Gesamtsumme"
1662
-
1663
- #: includes/class-wcj-shipping-calculator.php:201
1664
- msgid "Update Totals"
1665
- msgstr "Aktualisiere Gesamtsumme"
1666
-
1667
- #: includes/class-wcj-shipping.php:28
1668
- msgid "Add descriptions and icons to shipping methods on frontend."
1669
- msgstr "Füge Beschreibungen und Icons den Versandmethoden im Frontend hinzu."
1670
-
1671
- #: includes/class-wcj-shipping.php:127
1672
- msgid "Booster: Hide shipping"
1673
- msgstr "Booster: Versandkosten ausblenden"
1674
-
1675
- #: includes/class-wcj-shipping.php:128 includes/class-wcj-shipping.php:246
1676
- msgid "Hide all when free is available"
1677
- msgstr "ALles ausblenden wenn kostenlos verfügbar ist"
1678
-
1679
- #: includes/class-wcj-shipping.php:168
1680
- msgid "WooCommerce > Settings > Shipping"
1681
- msgstr "WooCommerce > Einstellungen > Versand"
1682
-
1683
- #: includes/class-wcj-shipping.php:171 includes/class-wcj-shipping.php:178
1684
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:116
1685
- #: includes/shipping/class-wc-shipping-wcj-custom.php:85
1686
- msgid "Custom Shipping"
1687
- msgstr "Benutzerdefinierte Versandkosten"
1688
-
1689
- #: includes/class-wcj-shipping.php:174
1690
- msgid "This section lets you add custom shipping method."
1691
- msgstr ""
1692
- "Dieser Abschnitt lässt Dich benutzerdefinierte Versandmethoden hinzufügen."
1693
-
1694
- #: includes/class-wcj-shipping.php:175
1695
- msgid "Visit %s to set method's options."
1696
- msgstr "Besuche %s, um die Optionen der Methode festzulegen."
1697
-
1698
- #: includes/class-wcj-shipping.php:185
1699
- msgid "Admin Title"
1700
- msgstr "Admin-Titel"
1701
-
1702
- #: includes/class-wcj-shipping.php:187
1703
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:51
1704
- msgid "Booster: Custom Shipping"
1705
- msgstr "Booster: Benutzerdefinierter Versand"
1706
-
1707
- #: includes/class-wcj-shipping.php:198
1708
- msgid "Custom Shipping (Legacy - without Shipping Zones)"
1709
- msgstr "Benutzerdefinierter Versand (Legacy - ohne Versandzonen)"
1710
-
1711
- #: includes/class-wcj-shipping.php:202
1712
- msgid "After setting the number, visit %s to set each method options."
1713
- msgstr ""
1714
- "Nachdem Du die Nummer eingestellt hast, besuche %s, um die einzelnen "
1715
- "Methodenoptionen festzulegen."
1716
-
1717
- #: includes/class-wcj-shipping.php:304
1718
- msgid "Icon Position"
1719
- msgstr "Icon-Position"
1720
-
1721
- #: includes/class-wcj-shipping.php:309
1722
- msgid "Before label"
1723
- msgstr "Vor Label"
1724
-
1725
- #: includes/class-wcj-shipping.php:310
1726
- msgid "After label"
1727
- msgstr "Nach Label"
1728
-
1729
- #: includes/class-wcj-shipping.php:314
1730
- msgid "Icon Style"
1731
- msgstr "Icon-Stil"
1732
-
1733
- #: includes/class-wcj-shipping.php:315
1734
- msgid ""
1735
- "You can also style icons with CSS class \"wcj_shipping_icon\", or id "
1736
- "\"wcj_shipping_icon_method_id\""
1737
- msgstr ""
1738
- "Du kannst auch Symbole mit CSS-Klasse \"wcj_shipping_icon\", oder ID "
1739
- "\"wcj_shipping_icon_method_id\" stylen"
1740
-
1741
- #: includes/class-wcj-shipping.php:326
1742
- #: includes/export/class-wcj-fields-helper.php:291
1743
- msgid "Image URL"
1744
- msgstr "Bild-URL"
1745
-
1746
- #: includes/class-wcj-sku.php:34
1747
- msgid "The tool generates and sets product SKUs for existing products."
1748
- msgstr "Das Werkzeug erzeugt und setzt Produkt-SKUs für bestehende Produkte."
1749
-
1750
- #: includes/class-wcj-sku.php:251
1751
- msgid "SKUs generated and set successfully!"
1752
- msgstr "SKUs generiert und erfolgreich eingestellt!"
1753
-
1754
- #: includes/class-wcj-sku.php:257
1755
- msgid "Preview SKUs"
1756
- msgstr "Vorschau SKUs"
1757
-
1758
- #: includes/class-wcj-sku.php:258
1759
- msgid "Set SKUs"
1760
- msgstr "SKUs einstellen"
1761
-
1762
- #: includes/class-wcj-sku.php:272
1763
- msgid "SKU Format Options"
1764
- msgstr "SKU Format-Optionen"
1765
-
1766
- #: includes/class-wcj-sku.php:277
1767
- msgid "Number Generation"
1768
- msgstr "Nummer-Generierung"
1769
-
1770
- #: includes/class-wcj-sku.php:282
1771
- msgid "From product ID"
1772
- msgstr "Aus Produkt-ID"
1773
-
1774
- #: includes/class-wcj-sku.php:283
1775
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:45
1776
- msgid "Sequential"
1777
- msgstr "Sequentiell"
1778
-
1779
- #: includes/class-wcj-sku.php:290
1780
- msgid "Sequential Number Generation Counter"
1781
- msgstr "Sequentieller Nummer-Generierungszähler"
1782
-
1783
- #: includes/class-wcj-sku.php:301 includes/class-wcj-sku.php:352
1784
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:63
1785
- msgid "Prefix"
1786
- msgstr "Präfix"
1787
-
1788
- #: includes/class-wcj-sku.php:307
1789
- msgid "Minimum Number Length"
1790
- msgstr "Minimale Nummernlänge"
1791
-
1792
- #: includes/class-wcj-sku.php:313 includes/class-wcj-sku.php:361
1793
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:70
1794
- msgid "Suffix"
1795
- msgstr "Suffix"
1796
-
1797
- #: includes/class-wcj-sku.php:327
1798
- msgid "SKU same as parent's product"
1799
- msgstr "SKU gleich wie das Produkt der Eltern"
1800
-
1801
- #: includes/class-wcj-sku.php:328
1802
- msgid "Generate different SKU for each variation"
1803
- msgstr "Generiere verschiedene SKU für jede Variation"
1804
-
1805
- #: includes/class-wcj-sku.php:329
1806
- msgid "SKU same as parent's product + variation letter suffix"
1807
- msgstr "SKU gleich wie das Eltern-Produkt + Variation Buchstabensuffix"
1808
-
1809
- #: includes/class-wcj-sku.php:341
1810
- msgid "Categories Options"
1811
- msgstr "Kategorien-Optionen"
1812
-
1813
- #: includes/class-wcj-sku.php:379
1814
- msgid "More Options"
1815
- msgstr "Mehr Optionen"
1816
-
1817
- #: includes/class-wcj-sku.php:384
1818
- msgid "Automatically Generate SKU for New Products"
1819
- msgstr "Automatische Erzeugung von SKU für neue Produkte"
1820
-
1821
- #: includes/class-wcj-sku.php:392
1822
- msgid "Allow Duplicate SKUs"
1823
- msgstr "SK-Duplikate zulassen"
1824
-
1825
- #: includes/class-wcj-sku.php:399
1826
- msgid "Add SKU to Customer Emails"
1827
- msgstr "Füge den Kunden-E-Mails SKU hinzu"
1828
-
1829
- #: includes/class-wcj-sku.php:412
1830
- msgid "When enabled - all new products will be given (autogenerated) SKU."
1831
- msgstr ""
1832
- "Wenn aktiviert - bekommen alle neuen Produkte eine (autogenerierte) SKU."
1833
-
1834
- #: includes/class-wcj-wholesale-price.php:252
1835
- msgid "Price directly"
1836
- msgstr "Preis direkt"
1837
-
1838
- #: includes/class-wcj-wholesale-price.php:412
1839
- msgid "Replaced values: %old_price%, %price%, %discount_value%."
1840
- msgstr "Ersetzte Werte: %old_price%, %price%, %discount_value%."
1841
-
1842
- #: includes/currencies/wcj-currencies.php:14
1843
- msgid "United Arab Emirates Dirham"
1844
- msgstr "United Arab Emirates Dirham"
1845
-
1846
- #: includes/currencies/wcj-currencies.php:15
1847
- msgid "Afghan afghani"
1848
- msgstr "Afghan afghani"
1849
-
1850
- #: includes/currencies/wcj-currencies.php:16
1851
- msgid "Albanian lek"
1852
- msgstr "Albanian lek"
1853
-
1854
- #: includes/currencies/wcj-currencies.php:17
1855
- msgid "Armenian dram"
1856
- msgstr "Armenian dram"
1857
-
1858
- #: includes/currencies/wcj-currencies.php:18
1859
- msgid "Netherlands Antillean gulden"
1860
- msgstr "Netherlands Antillean gulden"
1861
-
1862
- #: includes/currencies/wcj-currencies.php:19
1863
- msgid "Angolan kwanza"
1864
- msgstr "Angolan kwanza"
1865
-
1866
- #: includes/currencies/wcj-currencies.php:20
1867
- msgid "Argentine Peso"
1868
- msgstr "Argentine Peso"
1869
-
1870
- #: includes/currencies/wcj-currencies.php:21
1871
- msgid "Australian Dollars"
1872
- msgstr "Australian Dollars"
1873
-
1874
- #: includes/currencies/wcj-currencies.php:22
1875
- msgid "Aruban florin"
1876
- msgstr "Aruban florin"
1877
-
1878
- #: includes/currencies/wcj-currencies.php:23
1879
- msgid "Azerbaijani manat"
1880
- msgstr "Azerbaijani manat"
1881
-
1882
- #: includes/currencies/wcj-currencies.php:24
1883
- msgid "Bosnia and Herzegovina konvertibilna marka"
1884
- msgstr "Bosnia and Herzegovina konvertibilna marka"
1885
-
1886
- #: includes/currencies/wcj-currencies.php:25
1887
- msgid "Barbadian dollar"
1888
- msgstr "Barbadian dollar"
1889
-
1890
- #: includes/currencies/wcj-currencies.php:26
1891
- msgid "Bangladeshi Taka"
1892
- msgstr "Bangladeshi Taka"
1893
-
1894
- #: includes/currencies/wcj-currencies.php:27
1895
- msgid "Bulgarian Lev"
1896
- msgstr "Bulgarian Lev"
1897
-
1898
- #: includes/currencies/wcj-currencies.php:28
1899
- msgid "Bahraini dinar"
1900
- msgstr "Bahraini dinar"
1901
-
1902
- #: includes/currencies/wcj-currencies.php:29
1903
- msgid "Burundi franc"
1904
- msgstr "Burundi franc"
1905
-
1906
- #: includes/currencies/wcj-currencies.php:30
1907
- msgid "Belarusian ruble"
1908
- msgstr "Belarusian ruble"
1909
-
1910
- #: includes/currencies/wcj-currencies.php:31
1911
- msgid "Brunei dollar"
1912
- msgstr "Brunei dollar"
1913
-
1914
- #: includes/currencies/wcj-currencies.php:32
1915
- msgid "Bolivian boliviano"
1916
- msgstr "Bolivian boliviano"
1917
-
1918
- #: includes/currencies/wcj-currencies.php:33
1919
- msgid "Brazilian Real"
1920
- msgstr "Brazilian Real"
1921
-
1922
- #: includes/currencies/wcj-currencies.php:34
1923
- msgid "Bahamian dollar"
1924
- msgstr "Bahamian dollar"
1925
-
1926
- #: includes/currencies/wcj-currencies.php:35
1927
- msgid "Bhutanese ngultrum"
1928
- msgstr "Bhutanese ngultrum"
1929
-
1930
- #: includes/currencies/wcj-currencies.php:36
1931
- msgid "Botswana pula"
1932
- msgstr "Botswana pula"
1933
-
1934
- #: includes/currencies/wcj-currencies.php:37
1935
- msgid "Belize dollar"
1936
- msgstr "Belize dollar"
1937
-
1938
- #: includes/currencies/wcj-currencies.php:38
1939
- msgid "Canadian Dollars"
1940
- msgstr "Canadian Dollars"
1941
-
1942
- #: includes/currencies/wcj-currencies.php:39
1943
- msgid "Congolese franc"
1944
- msgstr "Congolese franc"
1945
-
1946
- #: includes/currencies/wcj-currencies.php:40
1947
- msgid "Swiss Franc"
1948
- msgstr "Swiss Franc"
1949
-
1950
- #: includes/currencies/wcj-currencies.php:41
1951
- msgid "Chilean Peso"
1952
- msgstr "Chilean Peso"
1953
-
1954
- #: includes/currencies/wcj-currencies.php:42
1955
- msgid "Chinese Yuan"
1956
- msgstr "Chinese Yuan"
1957
-
1958
- #: includes/currencies/wcj-currencies.php:43
1959
- msgid "Colombian Peso"
1960
- msgstr "Colombian Peso"
1961
-
1962
- #: includes/currencies/wcj-currencies.php:44
1963
- msgid "Costa Rican colon"
1964
- msgstr "Costa Rican colon"
1965
-
1966
- #: includes/currencies/wcj-currencies.php:45
1967
- msgid "Cuban peso"
1968
- msgstr "Cuban peso"
1969
-
1970
- #: includes/currencies/wcj-currencies.php:46
1971
- msgid "Cape Verdean escudo"
1972
- msgstr "Cape Verdean escudo"
1973
-
1974
- #: includes/currencies/wcj-currencies.php:47
1975
- msgid "Czech Koruna"
1976
- msgstr "Czech Koruna"
1977
-
1978
- #: includes/currencies/wcj-currencies.php:48
1979
- msgid "Djiboutian franc"
1980
- msgstr "Djiboutian franc"
1981
-
1982
- #: includes/currencies/wcj-currencies.php:49
1983
- msgid "Danish Krone"
1984
- msgstr "Danish Krone"
1985
-
1986
- #: includes/currencies/wcj-currencies.php:50
1987
- msgid "Dominican Peso"
1988
- msgstr "Dominican Peso"
1989
-
1990
- #: includes/currencies/wcj-currencies.php:51
1991
- msgid "Algerian dinar"
1992
- msgstr "Algerian dinar"
1993
-
1994
- #: includes/currencies/wcj-currencies.php:52
1995
- msgid "Estonian kroon"
1996
- msgstr "Estonian kroon"
1997
-
1998
- #: includes/currencies/wcj-currencies.php:53
1999
- msgid "Egyptian Pound"
2000
- msgstr "Egyptian Pound"
2001
-
2002
- #: includes/currencies/wcj-currencies.php:54
2003
- msgid "Eritrean nakfa"
2004
- msgstr "Eritrean nakfa"
2005
-
2006
- #: includes/currencies/wcj-currencies.php:55
2007
- msgid "Ethiopian birr"
2008
- msgstr "Ethiopian birr"
2009
-
2010
- #: includes/currencies/wcj-currencies.php:56
2011
- msgid "Euros"
2012
- msgstr "Euros"
2013
-
2014
- #: includes/currencies/wcj-currencies.php:57
2015
- msgid "Fijian dollar"
2016
- msgstr "Fijian dollar"
2017
-
2018
- #: includes/currencies/wcj-currencies.php:58
2019
- msgid "Falkland Islands pound"
2020
- msgstr "Falkland Islands pound"
2021
-
2022
- #: includes/currencies/wcj-currencies.php:59
2023
- msgid "Pounds Sterling"
2024
- msgstr "Pounds Sterling"
2025
-
2026
- #: includes/currencies/wcj-currencies.php:60
2027
- msgid "Georgian lari"
2028
- msgstr "Georgian lari"
2029
-
2030
- #: includes/currencies/wcj-currencies.php:61
2031
- msgid "Ghanaian cedi"
2032
- msgstr "Ghanaian cedi"
2033
-
2034
- #: includes/currencies/wcj-currencies.php:62
2035
- msgid "Gibraltar pound"
2036
- msgstr "Gibraltar pound"
2037
-
2038
- #: includes/currencies/wcj-currencies.php:171
2039
- msgid "Special Drawing Rights"
2040
- msgstr "Sonderziehungsrechte"
2041
-
2042
- #: includes/emails/class-wc-email-wcj-custom.php:255
2043
- msgid "Order status %s to %s"
2044
- msgstr "Bestellstatus %s to %s"
2045
-
2046
- #: includes/emails/class-wc-email-wcj-custom.php:284
2047
- msgid "Low stock notification"
2048
- msgstr "Meldung Niedriger Bestand"
2049
-
2050
- #: includes/emails/class-wc-email-wcj-custom.php:285
2051
- msgid "No stock notification"
2052
- msgstr "Meldung Kein Bestand"
2053
-
2054
- #: includes/emails/class-wc-email-wcj-custom.php:286
2055
- msgid "Product on backorder notification"
2056
- msgstr "Meldung bei Lieferrückstand"
2057
-
2058
- #: includes/emails/class-wc-email-wcj-custom.php:287
2059
- msgid "Created customer notification"
2060
- msgstr "Kundenmeldung erstellt"
2061
-
2062
- #: includes/emails/class-wc-email-wcj-custom.php:304
2063
- msgid ""
2064
- "This controls the email subject line. Leave blank to use the default subject:"
2065
- " <code>%s</code>."
2066
- msgstr ""
2067
- "Dies steuert die E-Mail-Betreffzeile. Leer lassen, um den Standardbetreff zu "
2068
- "verwenden: <code>%s</code>."
2069
-
2070
- #: includes/emails/class-wc-email-wcj-custom.php:309
2071
- msgid "Email Heading"
2072
- msgstr "Email-Überschrift"
2073
-
2074
- #: includes/emails/class-wc-email-wcj-custom.php:311
2075
- msgid ""
2076
- "This controls the main heading contained within the email notification. "
2077
- "Leave blank to use the default heading: <code>%s</code>."
2078
- msgstr ""
2079
- "Dies steuert die Hauptüberschrift, die in der E-Mail-Benachrichtigung "
2080
- "enthalten ist. Leer lassen, um die Standardüberschrift zu verwenden: <code>"
2081
- "%s</code>."
2082
-
2083
- #: includes/emails/class-wc-email-wcj-custom.php:316
2084
- msgid "Email type"
2085
- msgstr "Email-Typ"
2086
-
2087
- #: includes/emails/class-wc-email-wcj-custom.php:318
2088
- msgid "Choose which format of email to send."
2089
- msgstr "Wähle aus, in welchem Format die E-Mail zu senden ist."
2090
-
2091
- #: includes/emails/class-wc-email-wcj-custom.php:324
2092
- msgid "HTML template"
2093
- msgstr "HTML-Template"
2094
-
2095
- #: includes/emails/class-wc-email-wcj-custom.php:326
2096
- #: includes/emails/class-wc-email-wcj-custom.php:335
2097
- msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
2098
- msgstr ""
2099
- "Hier kannst du Shortcodes verwenden, z.B. Booster's Bestell-Shortcodes."
2100
-
2101
- #: includes/export/class-wcj-fields-helper.php:35
2102
- msgid "Customer Nr."
2103
- msgstr "Kundennummer"
2104
-
2105
- #: includes/functions/wcj-invoicing-functions.php:51
2106
- msgid "Custom Document"
2107
- msgstr "Benutzerdefiniertes Dokument"
2108
-
2109
- #: includes/functions/wcj-invoicing-functions.php:52
2110
- msgid "Custom Documents"
2111
- msgstr "Benutzerdefinierte Dokumente"
2112
-
2113
- #: includes/gateways/class-wc-gateway-wcj-custom.php:63
2114
- msgid "Enable Custom Payment"
2115
- msgstr "Benutzerdefinierte Zahlung aktivieren"
2116
-
2117
- #: includes/gateways/class-wc-gateway-wcj-custom.php:71
2118
- msgid "Custom Payment"
2119
- msgstr "Benutzerdefinierte Zahlung"
2120
-
2121
- #: includes/gateways/class-wc-gateway-wcj-custom.php:78
2122
- msgid "Payment method description that the customer will see on your checkout."
2123
- msgstr ""
2124
- "Zahlungsmethodenbeschreibung, die der Kunde bei Ihrer Kasse sehen wird."
2125
-
2126
- #: includes/gateways/class-wc-gateway-wcj-custom.php:80
2127
- msgid "Custom Payment Description."
2128
- msgstr "Benutzerdefinierte Zahlungsbeschreibung."
2129
-
2130
- #: includes/gateways/class-wc-gateway-wcj-custom.php:112
2131
- msgid ""
2132
- "If you want to set minimum order amount (excluding fees) to show this "
2133
- "gateway on frontend, enter a number here. Set to 0 to disable."
2134
- msgstr ""
2135
- "Wenn Du den Mindestbestellbetrag (ohne Gebühren) festlegen möchtest, um "
2136
- "dieses Gateway im Frontend anzuzeigen, gib hier eine Nummer ein. Auf 0 "
2137
- "setzen, um zu deaktivieren."
2138
-
2139
- #: includes/gateways/class-wc-gateway-wcj-custom.php:155
2140
- msgid "Send to Customer"
2141
- msgstr "An den Kunden senden"
2142
-
2143
- #: includes/gateways/class-wc-gateway-wcj-custom.php:156
2144
- msgid ""
2145
- "This may help if you are using pending or custom default status and not "
2146
- "getting new order emails."
2147
- msgstr ""
2148
- "Dies kann helfen, wenn Du mit ausstehenden oder benutzerdefinierten Standard-"
2149
- "Status nutzt und keine neuen Bestell-E-Mails erhälst."
2150
-
2151
- #: includes/gateways/class-wc-gateway-wcj-custom.php:162
2152
- msgid "Custom Return URL (Thank You Page)"
2153
- msgstr "Benutzerdefinierte Rückkehr-URL (Danke-Seite)"
2154
-
2155
- #: includes/gateways/class-wc-gateway-wcj-custom.php:354
2156
- msgid "Booster for WooCommerce: Custom Payment Gateway"
2157
- msgstr "Booster für WooCommerce: Benutzerdefiniertes Zahlungs-Gateway"
2158
-
2159
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:123
2160
- msgid "Customer - On-Hold Order"
2161
- msgstr "Kunde - On-Hold-Bestellung"
2162
-
2163
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:127
2164
- msgid "Customer - Note"
2165
- msgstr "Kunden - Hinweis"
2166
-
2167
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:128
2168
- msgid "Customer - New Account"
2169
- msgstr "Kunde - Neues Konto"
2170
-
2171
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:129
2172
- msgid "Customer - Reset Password"
2173
- msgstr "Kunde - Passwort zurücksetzen"
2174
-
2175
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:79
2176
- msgid "Booster: Custom Add to Cart"
2177
- msgstr "Booster: Benutzerdefiniert dem Warenkorb hinzufügen"
2178
-
2179
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:90
2180
- msgid "Single product view"
2181
- msgstr "Einzelproduktansicht"
2182
-
2183
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
2184
- msgid "Product category (archive) view"
2185
- msgstr "Produktkategorie (Archiv)-Ansicht"
2186
-
2187
- #: includes/admin/class-wc-settings-jetpack.php:26
2188
- #: includes/admin/class-wc-settings-jetpack.php:358
2189
- #: includes/class-wcj-checkout-files-upload.php:140
2190
- #: includes/class-wcj-payment-gateways.php:55
2191
- #: includes/classes/class-wcj-module.php:174
2192
- #: includes/classes/class-wcj-module.php:363
2193
- msgid "Booster"
2194
- msgstr "Booster"
2195
-
2196
- #: includes/admin/class-wc-settings-jetpack.php:150
2197
- msgid "Save changes"
2198
- msgstr "Änderungen speichern"
2199
-
2200
- #: includes/admin/class-wc-settings-jetpack.php:208
2201
- msgid "Alphabetically"
2202
- msgstr "Alphabetisch"
2203
-
2204
- #: includes/admin/class-wc-settings-jetpack.php:209
2205
- msgid "By Category"
2206
- msgstr "Nach Kategorie"
2207
-
2208
- #: includes/admin/class-wc-settings-jetpack.php:210
2209
- msgid "Active"
2210
- msgstr "Aktiv"
2211
-
2212
- #: includes/admin/class-wc-settings-jetpack.php:211
2213
- msgid "Manage Settings"
2214
- msgstr "Einstellungen verwalten"
2215
-
2216
- #: includes/admin/class-wc-settings-jetpack.php:253
2217
- #: includes/admin/wcj-modules-cats.php:15
2218
- msgid "Dashboard"
2219
- msgstr "Übersicht"
2220
-
2221
- #: includes/admin/class-wc-settings-jetpack.php:283
2222
- #: includes/class-wcj-product-custom-info.php:26
2223
- msgid "Product Info"
2224
- msgstr "Produktinfo"
2225
-
2226
- #: includes/admin/class-wc-settings-jetpack.php:289
2227
- msgid ""
2228
- "Please note that current <em>%s</em> module is deprecated and will be "
2229
- "removed in future updates. Please use <em>%s</em> module instead."
2230
- msgstr ""
2231
- "Bitte beachte, dass das aktuelle Modul <em>%s</em> veraltet ist und in "
2232
- "zukünftigen Updates entfernt wird. Verwende stattdessen das Modul <em>%s</em>"
2233
- "."
2234
-
2235
- #: includes/admin/class-wc-settings-jetpack.php:354
2236
- msgid "WooCommerce"
2237
- msgstr "WooCommerce"
2238
-
2239
- #: includes/admin/class-wc-settings-jetpack.php:356
2240
- #: includes/admin/class-wc-settings-jetpack.php:495 woocommerce-jetpack.php:398
2241
- msgid "Settings"
2242
- msgstr "Einstellungen"
2243
-
2244
- #: includes/admin/class-wc-settings-jetpack.php:402
2245
- msgid ""
2246
- "This section lets you export, import or reset all Booster's modules settings."
2247
- msgstr ""
2248
- "Dieser Abschnitt lässt Dich exportieren, importieren und rücksetzen aller "
2249
- "Booster-Moduleinstellungen."
2250
-
2251
- #: includes/admin/class-wc-settings-jetpack.php:420
2252
- #: includes/class-wcj-export-import.php:28
2253
- msgid "Export"
2254
- msgstr "Export"
2255
-
2256
- #: includes/admin/class-wc-settings-jetpack.php:421
2257
- msgid "Import"
2258
- msgstr "Import"
2259
-
2260
- #: includes/admin/class-wc-settings-jetpack.php:423
2261
- msgid ""
2262
- "This will reset settings to defaults for all Booster modules. Are you sure?"
2263
- msgstr ""
2264
- "Dies wird die Einstellungen für alle Booster-Module auf die "
2265
- "Grundeinstellungen rücksetzen. Bist Du sicher?"
2266
-
2267
- #: includes/admin/class-wc-settings-jetpack.php:423
2268
- msgid "Reset"
2269
- msgstr "Rücksetzung"
2270
-
2271
- #: includes/admin/class-wc-settings-jetpack.php:426
2272
- msgid "Version"
2273
- msgstr "Version"
2274
-
2275
- #: includes/admin/class-wc-settings-jetpack.php:450
2276
- #: includes/admin/class-wc-settings-jetpack.php:457
2277
- msgid "Select All"
2278
- msgstr "Alle auswählen"
2279
-
2280
- #: includes/admin/class-wc-settings-jetpack.php:451
2281
- #: includes/admin/class-wc-settings-jetpack.php:458
2282
- #: includes/admin/class-wcj-tools.php:74
2283
- msgid "Module"
2284
- msgstr "Modul"
2285
-
2286
- #: includes/admin/class-wc-settings-jetpack.php:452
2287
- #: includes/admin/class-wc-settings-jetpack.php:459
2288
- #: includes/admin/class-wcj-tools.php:75
2289
- #: includes/class-wcj-eu-vat-number.php:377
2290
- #: includes/class-wcj-product-by-user.php:202
2291
- #: includes/export/class-wcj-fields-helper.php:293
2292
- #: includes/gateways/class-wc-gateway-wcj-custom.php:76
2293
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:151
2294
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:266
2295
- msgid "Description"
2296
- msgstr "Beschreibung"
2297
-
2298
- #: includes/admin/class-wc-settings-jetpack.php:497
2299
- #: includes/classes/class-wcj-module.php:497
2300
- msgid "Documentation"
2301
- msgstr "Dokumentation"
2302
-
2303
- #: includes/admin/class-wc-settings-jetpack.php:512
2304
- msgid "No active modules found."
2305
- msgstr "Keine aktiven Module gefunden."
2306
-
2307
- #: includes/admin/class-wc-settings-jetpack.php:515
2308
- msgid "Total Modules:"
2309
- msgstr "Module insgesamt:"
2310
-
2311
- #: includes/admin/class-wc-settings-jetpack.php:544
2312
- msgid "Booster for WooCommerce - Dashboard"
2313
- msgstr "Booster for WooCommerce - Übersicht"
2314
-
2315
- #: includes/admin/class-wc-settings-jetpack.php:546
2316
- msgid ""
2317
- "This dashboard lets you enable/disable any Booster's module. Each checkbox "
2318
- "comes with short module's description. Please visit <a href=\"http://booster."
2319
- "io\" target=\"_blank\">http://booster.io</a> for detailed info on each "
2320
- "feature."
2321
- msgstr ""
2322
- "In dieser Übersicht kannst Du jedes Booster-Modul aktivieren/deaktivieren. "
2323
- "Jedes Kontrollkästchen enthält eine kurze Modul-Beschreibung. Besuche bitte "
2324
- "<a href=\"http://booster.io\" target=\"_blank\">http://booster.io</a> für "
2325
- "detaillierte Informationen zu jeder Funktion."
2326
-
2327
- #: includes/admin/class-wcj-tools.php:34
2328
- msgid "Booster for WooCommerce Tools"
2329
- msgstr "Booster for WooCommerce Werkzeuge"
2330
-
2331
- #: includes/admin/class-wcj-tools.php:35
2332
- msgid "Booster Tools"
2333
- msgstr "Booster Werkzeuge"
2334
-
2335
- #: includes/admin/class-wcj-tools.php:53
2336
- msgid "Tools Dashboard"
2337
- msgstr "Werkzeug-Übersicht"
2338
-
2339
- #: includes/admin/class-wcj-tools.php:67
2340
- msgid "Booster for WooCommerce Tools - Dashboard"
2341
- msgstr "Booster for WooCommerce Werkzeug - Übersicht"
2342
-
2343
- #: includes/admin/class-wcj-tools.php:68
2344
- msgid ""
2345
- "This dashboard lets you check statuses and short descriptions of all "
2346
- "available Booster for WooCommerce tools. Tools can be enabled through "
2347
- "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
2348
- "above."
2349
- msgstr ""
2350
- "In dieser Übersicht kannst Du den Status und eine kurze Beschreibung aller "
2351
- "verfügbaren Booster for Woocommerce Werkzeuge. Werkzeuge können über "
2352
- "WooCommerce > Einstellungen > Booster aktiviert werden. Aktivierte Werkzeuge "
2353
- "erscheinen oben im Registerkarten-Menü."
2354
-
2355
- #: includes/admin/class-wcj-tools.php:73
2356
- msgid "Tool"
2357
- msgstr "Werkzeug"
2358
-
2359
- #: includes/admin/class-wcj-tools.php:76
2360
- #: includes/class-wcj-product-by-user.php:156
2361
- #: includes/export/class-wcj-fields-helper.php:294
2362
- msgid "Status"
2363
- msgstr "Status"
2364
-
2365
- #: includes/admin/wcj-modules-cats.php:26
2366
- msgid "Prices & Currencies"
2367
- msgstr "Preise & Währungen"
2368
-
2369
- #: includes/admin/wcj-modules-cats.php:47
2370
- msgid "Button & Price Labels"
2371
- msgstr "Button- & Preisetiketten"
2372
-
2373
- #: includes/admin/wcj-modules-cats.php:59
2374
- #: includes/class-wcj-product-by-user.php:57
2375
- #: includes/class-wcj-product-by-user.php:93
2376
- msgid "Products"
2377
- msgstr "Produkte"
2378
-
2379
- #: includes/admin/wcj-modules-cats.php:82
2380
- msgid "Cart & Checkout"
2381
- msgstr "Warenkorb & Kasse"
2382
-
2383
- #: includes/admin/wcj-modules-cats.php:96
2384
- #: includes/class-wcj-payment-gateways-by-country.php:88
2385
- #: includes/class-wcj-payment-gateways-by-user-role.php:81
2386
- #: includes/class-wcj-payment-gateways-min-max.php:90
2387
- msgid "Payment Gateways"
2388
- msgstr "Zahlungsanbieter"
2389
-
2390
- #: includes/admin/wcj-modules-cats.php:111
2391
- msgid "Shipping & Orders"
2392
- msgstr "Versand & Bestellungen"
2393
-
2394
- #: includes/admin/wcj-modules-cats.php:126
2395
- msgid "PDF Invoicing & Packing Slips"
2396
- msgstr "PDF Rechnungen & Packzettel"
2397
-
2398
- #: includes/admin/wcj-modules-cats.php:142
2399
- msgid "Emails & Misc."
2400
- msgstr "Emails & Sonstiges"
2401
-
2402
- #: includes/class-wcj-add-to-cart.php:25
2403
- msgid "Add to Cart Labels"
2404
- msgstr "Dem Warenkorb hinzufügen Beschriftungen"
2405
-
2406
- #: includes/class-wcj-add-to-cart.php:26
2407
- msgid ""
2408
- "Change text for Add to Cart button by WooCommerce product type, by product "
2409
- "category or for individual products."
2410
- msgstr ""
2411
- "Ändern des Textes für Dem Warenkorb hinzufügen nach WooCommerce Produktart, "
2412
- "nach Produktkategorie oder für individuelle Produkte."
2413
-
2414
- #: includes/class-wcj-add-to-cart.php:44
2415
- msgid "Per Product Type Options"
2416
- msgstr "Pro Produkt Optionsarten"
2417
-
2418
- #: includes/class-wcj-add-to-cart.php:47 includes/class-wcj-add-to-cart.php:186
2419
- msgid "Per Product Labels"
2420
- msgstr "Pro Produkt Beschriftungen"
2421
-
2422
- #: includes/class-wcj-add-to-cart.php:48 includes/class-wcj-add-to-cart.php:187
2423
- #: includes/class-wcj-add-to-cart.php:212 includes/class-wcj-general.php:482
2424
- #: includes/class-wcj-product-images.php:252
2425
- #: includes/class-wcj-product-images.php:326
2426
- #: includes/class-wcj-shipping-calculator.php:183
2427
- #: includes/class-wcj-shipping.php:266 includes/class-wcj-shipping.php:298
2428
- msgid "Enable Section"
2429
- msgstr "Abschnitt aktivieren"
2430
-
2431
- #: includes/class-wcj-add-to-cart.php:58
2432
- msgid "Simple product"
2433
- msgstr "Einfaches Produkt"
2434
-
2435
- #: includes/class-wcj-add-to-cart.php:63
2436
- msgid "Variable product"
2437
- msgstr "Variables Produkt"
2438
-
2439
- #: includes/class-wcj-add-to-cart.php:68
2440
- msgid "External product"
2441
- msgstr "Externes Produkt"
2442
-
2443
- #: includes/class-wcj-add-to-cart.php:73
2444
- msgid "Grouped product"
2445
- msgstr "Gruppenprodukt"
2446
-
2447
- #: includes/class-wcj-add-to-cart.php:78
2448
- msgid "Other product"
2449
- msgstr "Anderes Produkt"
2450
-
2451
- #: includes/class-wcj-add-to-cart.php:89
2452
- msgid "Single product view."
2453
- msgstr "Einzelproduktansicht"
2454
-
2455
- #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2456
- #: includes/class-wcj-add-to-cart.php:147
2457
- #: includes/class-wcj-add-to-cart.php:160
2458
- #: includes/class-wcj-payment-gateways-fees.php:151
2459
- msgid "Leave blank to disable."
2460
- msgstr "Leer lassen um zu deaktivieren."
2461
-
2462
- #: includes/class-wcj-add-to-cart.php:90 includes/class-wcj-add-to-cart.php:101
2463
- #: includes/class-wcj-add-to-cart.php:149
2464
- #: includes/class-wcj-add-to-cart.php:162 includes/class-wcj-sorting.php:196
2465
- #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:214
2466
- #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:241
2467
- #: includes/class-wcj-sorting.php:250
2468
- msgid "Default: "
2469
- msgstr "Voreinstellung:"
2470
-
2471
- #: includes/class-wcj-add-to-cart.php:100
2472
- msgid "Product category (archive) view."
2473
- msgstr "Produktkategorie (Archiv)-Ansicht"
2474
-
2475
- #: includes/class-wcj-add-to-cart.php:112
2476
- msgid "Products with price set to 0 (i.e. free). Single product view."
2477
- msgstr ""
2478
- "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Einzelproduktansicht."
2479
-
2480
- #: includes/class-wcj-add-to-cart.php:113
2481
- #: includes/class-wcj-add-to-cart.php:122
2482
- msgid "Leave blank to disable. Default: Add to cart"
2483
- msgstr ""
2484
- "Leer lassen um zu deaktivieren. Voreinstellung: Dem Warenkorb hinzufügen"
2485
-
2486
- #: includes/class-wcj-add-to-cart.php:115
2487
- #: includes/class-wcj-add-to-cart.php:124
2488
- #: includes/class-wcj-add-to-cart.php:149
2489
- #: includes/class-wcj-add-to-cart.php:150
2490
- #: includes/class-wcj-add-to-cart.php:162
2491
- #: includes/class-wcj-add-to-cart.php:163
2492
- msgid "Add to cart"
2493
- msgstr "Dem Warenkorb hinzufügen"
2494
-
2495
- #: includes/class-wcj-add-to-cart.php:121
2496
- msgid ""
2497
- "Products with price set to 0 (i.e. free). Product category (archive) view."
2498
- msgstr ""
2499
- "Produkte mit Preis eingestellt auf 0 (d.h. kostenlos). Produktkategorie "
2500
- "(Archiv)-Ansicht."
2501
-
2502
- #: includes/class-wcj-add-to-cart.php:131
2503
- msgid "Products with empty price. Product category (archive) view."
2504
- msgstr "Produkte mit leerem Preis. Produktkategorie (Archiv)-Ansicht."
2505
-
2506
- #: includes/class-wcj-add-to-cart.php:132
2507
- msgid "Leave blank to disable. Default: Read More"
2508
- msgstr "Leer lassen um zu deaktivieren. Voreinstellung: Mehr lesen"
2509
-
2510
- #: includes/class-wcj-add-to-cart.php:134
2511
- msgid "Read More"
2512
- msgstr "Erfahre mehr"
2513
-
2514
- #: includes/class-wcj-add-to-cart.php:146
2515
- msgid "Already in cart. Single product view."
2516
- msgstr "Bereits im Warenkorb. Einzelproduktansicht"
2517
-
2518
- #: includes/class-wcj-add-to-cart.php:148
2519
- #: includes/class-wcj-add-to-cart.php:161
2520
- msgid "Try: "
2521
- msgstr "Versuch:"
2522
-
2523
- #: includes/class-wcj-add-to-cart.php:148
2524
- #: includes/class-wcj-add-to-cart.php:161
2525
- msgid "Already in cart - Add Again?"
2526
- msgstr "Bereits im Warenkorb. Nochmal hinzufügen?"
2527
-
2528
- #: includes/class-wcj-add-to-cart.php:159
2529
- msgid "Already in cart. Product category (archive) view."
2530
- msgstr "Bereits im Warenkorb. Produktkategorie (Archiv)-Ansicht."
2531
-
2532
- #: includes/class-wcj-add-to-cart.php:180
2533
- #: includes/class-wcj-product-addons.php:528
2534
- msgid "Per Product Options"
2535
- msgstr "Pro Produkt-Optionen"
2536
-
2537
- #: includes/class-wcj-add-to-cart.php:182
2538
- msgid ""
2539
- "This section lets you set Add to Cart button text on per product basis. When "
2540
- "enabled, label for each product can be changed in \"Edit Product\"."
2541
- msgstr ""
2542
- "Dieser Abschnitt lässt Dich Dem Warenkorb hinzufügen Button-Text auf einer "
2543
- "Pro-Produkt-Basis einstellen. Wenn aktiviert, kann die Beschriftung für "
2544
- "jedes Produkt in \"Produkt bearbeiten\" geändert werden."
2545
-
2546
- #: includes/class-wcj-add-to-cart.php:208
2547
- msgid "Per Category Options"
2548
- msgstr "Pro Kategorie-Optionen"
2549
-
2550
- #: includes/class-wcj-add-to-cart.php:208
2551
- msgid ""
2552
- "This sections lets you set Add to Cart button text on per category basis."
2553
- msgstr ""
2554
- "Dieser Abschnitt lässt DIch den Dem Warenkorb hinzufügen Button-Text auf "
2555
- "einer Pro-Kategorie-Basis einstellen."
2556
-
2557
- #: includes/class-wcj-add-to-cart.php:211
2558
- msgid "Per Category Labels"
2559
- msgstr "Pro-Kategorie-Beschriftungen"
2560
-
2561
- #: includes/class-wcj-add-to-cart.php:220
2562
- msgid "Category Groups Number"
2563
- msgstr "Kategorie-Gruppen-Nummer"
2564
-
2565
- #: includes/class-wcj-add-to-cart.php:221
2566
- #: includes/class-wcj-checkout-custom-fields.php:637
2567
- #: includes/class-wcj-product-input-fields.php:179
2568
- #: includes/class-wcj-product-tabs.php:504
2569
- msgid "Click \"Save changes\" after you change this number."
2570
- msgstr "Klicke auf \"Änderungen speichern\" wenn Du diese Nummer änderst."
2571
-
2572
- #: includes/class-wcj-add-to-cart.php:257
2573
- #: includes/class-wcj-price-by-country.php:303
2574
- #: includes/class-wcj-price-by-country.php:314
2575
- #: includes/class-wcj-price-by-country.php:325
2576
- #: includes/class-wcj-price-by-country.php:379
2577
- msgid "Group"
2578
- msgstr "Gruppe"
2579
-
2580
- #: includes/class-wcj-add-to-cart.php:258
2581
- #: includes/class-wcj-admin-tools.php:194
2582
- #: includes/class-wcj-admin-tools.php:201
2583
- #: includes/class-wcj-admin-tools.php:232
2584
- #: includes/class-wcj-admin-tools.php:239
2585
- #: includes/class-wcj-call-for-price.php:159 includes/class-wcj-general.php:343
2586
- #: includes/class-wcj-general.php:391 includes/class-wcj-general.php:407
2587
- #: includes/class-wcj-general.php:465
2588
- #: includes/class-wcj-global-discount.php:244
2589
- #: includes/class-wcj-left-to-free-shipping.php:139
2590
- #: includes/class-wcj-left-to-free-shipping.php:171
2591
- #: includes/class-wcj-left-to-free-shipping.php:209
2592
- #: includes/class-wcj-multicurrency.php:406
2593
- #: includes/class-wcj-multicurrency.php:414
2594
- #: includes/class-wcj-order-numbers.php:210
2595
- #: includes/class-wcj-order-numbers.php:273
2596
- #: includes/class-wcj-order-numbers.php:281 includes/class-wcj-orders.php:394
2597
- #: includes/class-wcj-orders.php:423 includes/class-wcj-orders.php:531
2598
- #: includes/class-wcj-price-by-country.php:185
2599
- #: includes/class-wcj-price-by-country.php:207
2600
- #: includes/class-wcj-price-by-country.php:216
2601
- #: includes/class-wcj-price-by-country.php:226
2602
- #: includes/class-wcj-price-by-user-role.php:376
2603
- #: includes/class-wcj-price-by-user-role.php:393
2604
- #: includes/class-wcj-price-labels.php:51
2605
- #: includes/class-wcj-price-labels.php:755
2606
- #: includes/class-wcj-product-add-to-cart.php:248
2607
- #: includes/class-wcj-product-add-to-cart.php:348
2608
- #: includes/class-wcj-product-add-to-cart.php:374
2609
- #: includes/class-wcj-product-add-to-cart.php:390
2610
- #: includes/class-wcj-product-add-to-cart.php:432
2611
- #: includes/class-wcj-product-add-to-cart.php:449
2612
- #: includes/class-wcj-product-add-to-cart.php:466
2613
- #: includes/class-wcj-product-addons.php:456
2614
- #: includes/class-wcj-product-addons.php:534
2615
- #: includes/class-wcj-product-addons.php:553
2616
- #: includes/class-wcj-product-addons.php:577
2617
- #: includes/class-wcj-product-addons.php:648
2618
- #: includes/class-wcj-product-by-user.php:275
2619
- #: includes/class-wcj-product-info.php:256
2620
- #: includes/class-wcj-product-info.php:351
2621
- #: includes/class-wcj-product-info.php:384
2622
- #: includes/class-wcj-product-input-fields.php:133
2623
- #: includes/class-wcj-product-input-fields.php:170
2624
- #: includes/class-wcj-product-input-fields.php:283
2625
- #: includes/class-wcj-product-listings.php:448
2626
- #: includes/class-wcj-product-tabs.php:678
2627
- #: includes/class-wcj-product-tabs.php:686
2628
- #: includes/class-wcj-products-xml.php:237
2629
- #: includes/class-wcj-purchase-data.php:279
2630
- #: includes/class-wcj-purchase-data.php:286
2631
- #: includes/class-wcj-purchase-data.php:293
2632
- #: includes/class-wcj-purchase-data.php:360
2633
- #: includes/class-wcj-purchase-data.php:367
2634
- #: includes/class-wcj-purchase-data.php:374
2635
- #: includes/class-wcj-shipping-calculator.php:134
2636
- #: includes/class-wcj-shipping-calculator.php:141
2637
- #: includes/class-wcj-shipping-calculator.php:148
2638
- #: includes/class-wcj-shipping-calculator.php:155
2639
- #: includes/class-wcj-shipping.php:179 includes/class-wcj-sku.php:385
2640
- #: includes/class-wcj-sku.php:393 includes/class-wcj-sorting.php:189
2641
- #: includes/class-wcj-wholesale-price.php:384
2642
- #: includes/class-wcj-wholesale-price.php:391
2643
- #: includes/class-wcj-wholesale-price.php:398
2644
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:379
2645
- msgid "Enable"
2646
- msgstr "Aktivieren"
2647
-
2648
- #: includes/class-wcj-add-to-cart.php:274
2649
- #: includes/class-wcj-checkout-custom-fields.php:866
2650
- msgid "categories"
2651
- msgstr "Kategorien"
2652
-
2653
- #: includes/class-wcj-add-to-cart.php:285
2654
- msgid "Button text - single product view"
2655
- msgstr "Button Text - Einzelprodukt-Ansicht"
2656
-
2657
- #: includes/class-wcj-add-to-cart.php:293
2658
- msgid "Button text - product archive (category) view"
2659
- msgstr "Button Text - Produkt-Archiv(Kategorie)-Ansicht"
2660
-
2661
- #: includes/class-wcj-address-formats.php:26
2662
- msgid "Address Formats"
2663
- msgstr "Adressformate"
2664
-
2665
- #: includes/class-wcj-address-formats.php:27
2666
- msgid ""
2667
- "Set address format in WooCommerce orders on per country basis. Force base "
2668
- "country display."
2669
- msgstr ""
2670
- "Stelle das Adressformat in WooCommerce-Bestellungen auf Länderbasis ein. "
2671
- "Erzwinge anzeige der Basis-Länderanzeige."
2672
-
2673
- #: includes/class-wcj-address-formats.php:130
2674
- #: includes/class-wcj-address-formats.php:136
2675
- msgid "Force Base Country Display"
2676
- msgstr "Erzwinge anzeige der Basis-Länderanzeige"
2677
-
2678
- #: includes/class-wcj-address-formats.php:132
2679
- msgid "Force Base Country Display Options."
2680
- msgstr "Erzwinge anzeige der Basis-Länderanzeige-Optionen."
2681
-
2682
- #: includes/class-wcj-address-formats.php:148
2683
- msgid "Address Formats by Country"
2684
- msgstr "Adressformate nach Land"
2685
-
2686
- #: includes/class-wcj-address-formats.php:150
2687
- msgid "Address Formats by Country Options."
2688
- msgstr "Optionen der Adressformate nach Land"
2689
-
2690
- #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:32
2691
- msgid "Admin Tools"
2692
- msgstr "Administratorwerkzeuge"
2693
-
2694
- #: includes/class-wcj-admin-tools.php:26
2695
- msgid "Booster for WooCommerce debug and log tools."
2696
- msgstr "Booster for WooCommerce Debug und Protokollwerkzeuge."
2697
-
2698
- #: includes/class-wcj-admin-tools.php:33
2699
- msgid "Log."
2700
- msgstr "Protokoll."
2701
-
2702
- #: includes/class-wcj-admin-tools.php:34
2703
- msgid "Log"
2704
- msgstr "Protokoll"
2705
-
2706
- #: includes/class-wcj-admin-tools.php:45
2707
- msgid "Current PHP memory limit: %s."
2708
- msgstr "Aktuelle PHP-Speichergrenze: %s."
2709
-
2710
- #: includes/class-wcj-admin-tools.php:68
2711
- #: includes/class-wcj-export-import.php:444
2712
- #: includes/class-wcj-export-import.php:512
2713
- msgid "Product Meta"
2714
- msgstr "Produkt-Meta"
2715
-
2716
- #: includes/class-wcj-admin-tools.php:85
2717
- #: includes/class-wcj-export-import.php:374
2718
- #: includes/class-wcj-export-import.php:442
2719
- msgid "Order Meta"
2720
- msgstr "Bestell-Meta"
2721
-
2722
- #: includes/class-wcj-admin-tools.php:118
2723
- msgid "Order Items Meta"
2724
- msgstr "Bestellgegenstand-Meta"
2725
-
2726
- #: includes/class-wcj-admin-tools.php:135
2727
- msgid "Log deleted successfully."
2728
- msgstr "Protokoll erfolgreich gelöscht."
2729
-
2730
- #: includes/class-wcj-admin-tools.php:140
2731
- msgid "Delete Log"
2732
- msgstr "Protokoll löschen"
2733
-
2734
- #: includes/class-wcj-admin-tools.php:175
2735
- msgid "NOT DEFINED"
2736
- msgstr "NICHT DEFINIERT"
2737
-
2738
- #: includes/class-wcj-admin-tools.php:188
2739
- msgid "Admin Tools Options"
2740
- msgstr "Administrator Werkzeugoptionen"
2741
-
2742
- #: includes/class-wcj-admin-tools.php:193
2743
- msgid "Logging"
2744
- msgstr "Protokolliere"
2745
-
2746
- #: includes/class-wcj-admin-tools.php:200
2747
- msgid "Debug"
2748
- msgstr "Debug"
2749
-
2750
- #: includes/class-wcj-admin-tools.php:207
2751
- msgid "PHP Memory Limit"
2752
- msgstr "PHP Speicher-Limit"
2753
-
2754
- #: includes/class-wcj-admin-tools.php:208
2755
- msgid "megabytes."
2756
- msgstr "Megabytes."
2757
-
2758
- #: includes/class-wcj-admin-tools.php:209
2759
- msgid "Set zero to disable."
2760
- msgstr "Auf Null setzen, um zu deaktivieren."
2761
-
2762
- #: includes/class-wcj-admin-tools.php:224
2763
- msgid "System Info"
2764
- msgstr "System-Info"
2765
-
2766
- #: includes/class-wcj-admin-tools.php:231
2767
- msgid "Show Order Meta"
2768
- msgstr "Zeige Bestell-Meta"
2769
-
2770
- #: includes/class-wcj-admin-tools.php:238
2771
- msgid "Show Product Meta"
2772
- msgstr "Zeige Produkt-Meta"
2773
-
2774
- #: includes/class-wcj-call-for-price.php:25
2775
- msgid "Call for Price"
2776
- msgstr "Preisanfrage"
2777
-
2778
- #: includes/class-wcj-call-for-price.php:26
2779
- msgid ""
2780
- "Create any custom price label for all WooCommerce products with empty price."
2781
- msgstr ""
2782
- "Erstelle irgendeine benutzerdefinierte Beschriftung für alle WooCommerce-"
2783
- "Produkte mit leerem Preis."
2784
-
2785
- #: includes/class-wcj-call-for-price.php:101
2786
- msgid "Call for Price Options"
2787
- msgstr "Preisanfrage-Optionen"
2788
-
2789
- #: includes/class-wcj-call-for-price.php:103
2790
- msgid ""
2791
- "Leave price empty when adding or editing products. Then set the options here."
2792
- msgstr ""
2793
- "Preis leer lassen wenn Produkte hinzugefügt oder bearbeitet werden. Dann "
2794
- "stelle die Optionen hier ein."
2795
-
2796
- #: includes/class-wcj-call-for-price.php:107
2797
- msgid "Label to Show on Single"
2798
- msgstr "Anzuzeigende Beschriftung auf Einzelprodukt"
2799
-
2800
- #: includes/class-wcj-call-for-price.php:108
2801
- #: includes/class-wcj-call-for-price.php:119
2802
- #: includes/class-wcj-call-for-price.php:130
2803
- #: includes/class-wcj-call-for-price.php:141
2804
- msgid "This sets the html to output on empty price. Leave blank to disable."
2805
- msgstr ""
2806
- "Dies setzt die HTML-Ausgabe auf leeren Preis. Leer lassen, um zu "
2807
- "deaktivieren."
2808
-
2809
- #: includes/class-wcj-call-for-price.php:118
2810
- msgid "Label to Show on Archives"
2811
- msgstr "Anzuzeigende Beschriftung in Archiven"
2812
-
2813
- #: includes/class-wcj-call-for-price.php:129
2814
- msgid "Label to Show on Homepage"
2815
- msgstr "Anzuzeigende Beschriftung auf Startseite"
2816
-
2817
- #: includes/class-wcj-call-for-price.php:140
2818
- msgid "Label to Show on Related"
2819
- msgstr "Anzuzeigende Beschriftung auf Ähnlichen"
2820
-
2821
- #: includes/class-wcj-call-for-price.php:151
2822
- msgid "Hide Sale! Tag"
2823
- msgstr "Verstecke Sale! Tag"
2824
-
2825
- #: includes/class-wcj-call-for-price.php:152
2826
- msgid "Hide the tag"
2827
- msgstr "Das Etikett (tag) ausblenden"
2828
-
2829
- #: includes/class-wcj-call-for-price.php:158
2830
- msgid "Make All Products Call for Price"
2831
- msgstr "Setze alle Produkte auf Preisanfrage"
2832
-
2833
- #: includes/class-wcj-call-for-price.php:160
2834
- msgid ""
2835
- "Enable this to make all products (except variable) prices empty. When "
2836
- "checkbox disabled, all prices go back to normal."
2837
- msgstr ""
2838
- "Aktiviere dies, um alle Produktpreise (außer Variable) zu entfernen. Wenn "
2839
- "das Kontrollkästchen deaktiviert ist, gehen alle Preise auf Normal zurück."
2840
-
2841
- #: includes/class-wcj-cart.php:25
2842
- msgid "Cart"
2843
- msgstr "Warenkorb"
2844
-
2845
- #: includes/class-wcj-cart.php:26
2846
- msgid "Add custom info to WooCommerce cart page."
2847
- msgstr "Addiere benutzerdefinierte Info zur WooCommerce Warenkorbseite."
2848
-
2849
- #: includes/class-wcj-cart.php:31
2850
- msgid ""
2851
- "This feature allows you to add a final checkpoint for your customers before "
2852
- "they proceed to payment."
2853
- msgstr ""
2854
- "Mit dieser Funktion kannst Du einen Endkontrollpunkt für Deine Kunden "
2855
- "hinzufügen, bevor sie zur Zahlung übergehen."
2856
-
2857
- #: includes/class-wcj-cart.php:32
2858
- msgid ""
2859
- "Show custom information at on the cart page using Booster's various "
2860
- "shortcodes and give your customers a seamless cart experience."
2861
- msgstr ""
2862
- "Zeige benutzerdefinierte Informationen auf der Warenkorbseite mit Boosters "
2863
- "verschiedenen Shortcodes an und gib Deinen Kunden ein nahtloses "
2864
- "Kassenerlebnis."
2865
-
2866
- #: includes/class-wcj-cart.php:33
2867
- msgid ""
2868
- "For example, show them the total weight of their items, any additional fees "
2869
- "or taxes, or a confirmation of the address their products are being sent to."
2870
- msgstr ""
2871
- "Zum Beispiel, zeigst Du ihnen das Gesamtgewicht ihrer Artikel, jede "
2872
- "zusätzliche Gebühr oder Steuer, oder eine Bestätigung der Anschrift wohin "
2873
- "die Produkte geschickt werden sollen."
2874
-
2875
- #: includes/class-wcj-cart.php:125
2876
- msgid "Cart Custom Info Blocks"
2877
- msgstr "benutzerdefinierte Warenkorb-Infoblöcke"
2878
-
2879
- #: includes/class-wcj-cart.php:132
2880
- #: includes/class-wcj-checkout-custom-info.php:75
2881
- #: includes/class-wcj-mini-cart.php:80
2882
- #: includes/class-wcj-product-custom-info.php:115
2883
- msgid "Total Blocks"
2884
- msgstr "Gesamtblöcke"
2885
-
2886
- #: includes/class-wcj-cart.php:153
2887
- #: includes/class-wcj-checkout-custom-info.php:90
2888
- #: includes/class-wcj-mini-cart.php:100
2889
- #: includes/class-wcj-product-custom-info.php:130
2890
- msgid "Info Block"
2891
- msgstr "Infoblock"
2892
-
2893
- #: includes/class-wcj-cart.php:159
2894
- #: includes/class-wcj-checkout-custom-info.php:95
2895
- #: includes/class-wcj-left-to-free-shipping.php:146
2896
- #: includes/class-wcj-left-to-free-shipping.php:180
2897
- #: includes/class-wcj-left-to-free-shipping.php:218
2898
- #: includes/class-wcj-mini-cart.php:106
2899
- #: includes/class-wcj-product-custom-info.php:135
2900
- #: includes/class-wcj-product-tabs.php:431
2901
- #: includes/class-wcj-product-tabs.php:557
2902
- msgid "Content"
2903
- msgstr "Inhalt"
2904
-
2905
- #: includes/class-wcj-cart.php:167
2906
- #: includes/class-wcj-checkout-custom-info.php:102
2907
- #: includes/class-wcj-checkout-files-upload.php:641
2908
- #: includes/class-wcj-left-to-free-shipping.php:154
2909
- #: includes/class-wcj-left-to-free-shipping.php:188
2910
- #: includes/class-wcj-left-to-free-shipping.php:226
2911
- #: includes/class-wcj-mini-cart.php:114
2912
- #: includes/class-wcj-product-custom-info.php:142
2913
- #: includes/class-wcj-product-info.php:263
2914
- #: includes/class-wcj-product-info.php:366
2915
- #: includes/class-wcj-product-info.php:399
2916
- #: includes/class-wcj-product-listings.php:471
2917
- msgid "Position"
2918
- msgstr "Stelle"
2919
-
2920
- #: includes/class-wcj-cart.php:176
2921
- #: includes/class-wcj-checkout-custom-info.php:139
2922
- #: includes/class-wcj-mini-cart.php:127
2923
- #: includes/class-wcj-product-custom-info.php:168
2924
- msgid "Position Order (i.e. Priority)"
2925
- msgstr "Positionsreihenfolge (d.h. Priorität)"
2926
-
2927
- #: includes/class-wcj-cart.php:193
2928
- msgid "Cart Items Table Custom Info"
2929
- msgstr "benutzerdefinierte Warenkorb-Artikel Tabellen-Info"
2930
-
2931
- #: includes/class-wcj-cart.php:200
2932
- msgid "Add to Each Item Name"
2933
- msgstr "zu jedem Artikelnamen hinzufügen"
2934
-
2935
- #: includes/class-wcj-cart.php:201
2936
- msgid ""
2937
- "You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
2938
- msgstr ""
2939
- "Du kannst hier Shortcodes verwenden. z.B.: [wcj_product_sku]. Leer lassen, "
2940
- "um zu deaktivieren."
2941
-
2942
- #: includes/class-wcj-checkout-core-fields.php:25
2943
- msgid "Checkout Core Fields"
2944
- msgstr "Kassen-Basisfelder"
2945
-
2946
- #: includes/class-wcj-checkout-core-fields.php:26
2947
- msgid ""
2948
- "Customize WooCommerce core checkout fields. Disable/enable fields, set "
2949
- "required, change labels and/or placeholders."
2950
- msgstr ""
2951
- "Anpassung WooCommerce Basis-Kassenfelder. Deaktivieren/aktivieren Felder, "
2952
- "setzen Benötigte, ändern Beschriftungen und/oder Platzhalter."
2953
-
2954
- #: includes/class-wcj-checkout-core-fields.php:213
2955
- msgid "Checkout Core Fields Options"
2956
- msgstr "Kassen-Basisfelder-Optionen"
2957
-
2958
- #: includes/class-wcj-checkout-core-fields.php:225
2959
- #: includes/classes/class-wcj-module.php:415
2960
- msgid "enabled"
2961
- msgstr "aktiviert"
2962
-
2963
- #: includes/class-wcj-checkout-core-fields.php:230
2964
- #: includes/class-wcj-checkout-core-fields.php:244
2965
- #: includes/class-wcj-checkout-core-fields.php:278
2966
- #: includes/class-wcj-product-listings.php:464
2967
- msgid "Default"
2968
- msgstr "Standard"
2969
-
2970
- #: includes/class-wcj-checkout-core-fields.php:231
2971
- #: includes/class-wcj-checkout-custom-fields.php:668
2972
- #: includes/class-wcj-checkout-files-upload.php:629
2973
- #: includes/class-wcj-export-import.php:358
2974
- #: includes/class-wcj-export-import.php:426
2975
- #: includes/class-wcj-export-import.php:496
2976
- #: includes/class-wcj-global-discount.php:243 includes/class-wcj-orders.php:463
2977
- #: includes/class-wcj-price-by-user-role.php:142
2978
- #: includes/class-wcj-product-addons.php:442
2979
- #: includes/class-wcj-product-bookings.php:417
2980
- #: includes/class-wcj-product-open-pricing.php:178
2981
- #: includes/class-wcj-product-price-by-formula.php:237
2982
- #: includes/class-wcj-products-xml.php:236
2983
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:37
2984
- msgid "Enabled"
2985
- msgstr "Aktiviert"
2986
-
2987
- #: includes/class-wcj-checkout-core-fields.php:232
2988
- #: includes/class-wcj-pdf-invoicing.php:368
2989
- #: includes/class-wcj-product-tabs.php:440
2990
- msgid "Disabled"
2991
- msgstr "Deaktiviert"
2992
-
2993
- #: includes/class-wcj-checkout-core-fields.php:239
2994
- #: includes/class-wcj-checkout-custom-fields.php:807
2995
- msgid "required"
2996
- msgstr "benötigt"
2997
-
2998
- #: includes/class-wcj-checkout-core-fields.php:245
2999
- #: includes/class-wcj-checkout-files-upload.php:635
3000
- #: includes/class-wcj-eu-vat-number.php:390
3001
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:207
3002
- msgid "Required"
3003
- msgstr "Erforderlich"
3004
-
3005
- #: includes/class-wcj-checkout-core-fields.php:246
3006
- msgid "Not Required"
3007
- msgstr "Nicht benötigt"
3008
-
3009
- #: includes/class-wcj-checkout-core-fields.php:253
3010
- #: includes/class-wcj-checkout-custom-fields.php:815
3011
- msgid "label"
3012
- msgstr "Beschriftung"
3013
-
3014
- #: includes/class-wcj-checkout-core-fields.php:254
3015
- #: includes/class-wcj-checkout-core-fields.php:264
3016
- msgid "Leave blank for WooCommerce defaults."
3017
- msgstr "Leer lassen für WooCommerce-Voreinstellung."
3018
-
3019
- #: includes/class-wcj-checkout-core-fields.php:263
3020
- #: includes/class-wcj-checkout-custom-fields.php:823
3021
- msgid "placeholder"
3022
- msgstr "Platzhalter"
3023
-
3024
- #: includes/class-wcj-checkout-core-fields.php:273
3025
- #: includes/class-wcj-checkout-custom-fields.php:845
3026
- msgid "class"
3027
- msgstr "class"
3028
-
3029
- #: includes/class-wcj-checkout-core-fields.php:279
3030
- msgid "Align Left"
3031
- msgstr "Ausrichtung Links"
3032
-
3033
- #: includes/class-wcj-checkout-core-fields.php:280
3034
- msgid "Align Right"
3035
- msgstr "Ausrichtung Rechts"
3036
-
3037
- #: includes/class-wcj-checkout-core-fields.php:281
3038
- msgid "Full Row"
3039
- msgstr "Gesamte Reihe"
3040
-
3041
- #: includes/class-wcj-checkout-custom-fields.php:25
3042
- msgid "Checkout Custom Fields"
3043
- msgstr "benutzerdefinierte Kassenfelder"
3044
-
3045
- #: includes/class-wcj-checkout-custom-fields.php:26
3046
- msgid "Add custom fields to WooCommerce checkout page."
3047
- msgstr "Benutzerdefinierte Felder der WooCommerce-Kassenseite hinzufügen"
3048
-
3049
- #: includes/class-wcj-checkout-custom-fields.php:599
3050
- msgid "Checkout Custom Fields Options"
3051
- msgstr "Benutzerdefinierte Felder-Optionen der Kasse"
3052
-
3053
- #: includes/class-wcj-checkout-custom-fields.php:605
3054
- msgid "Add All Fields to Admin Emails"
3055
- msgstr "Alle Felder den Administrator-Emails hinzufügen"
3056
-
3057
- #: includes/class-wcj-checkout-custom-fields.php:606
3058
- #: includes/class-wcj-checkout-custom-fields.php:613
3059
- #: includes/class-wcj-checkout-custom-fields.php:620
3060
- #: includes/class-wcj-export-import.php:315 includes/class-wcj-general.php:147
3061
- #: includes/class-wcj-order-custom-statuses.php:251
3062
- #: includes/class-wcj-order-custom-statuses.php:326
3063
- #: includes/class-wcj-order-custom-statuses.php:333
3064
- #: includes/class-wcj-order-min-amount.php:233
3065
- #: includes/class-wcj-orders.php:441 includes/class-wcj-orders.php:515
3066
- #: includes/class-wcj-product-by-user.php:282
3067
- #: includes/class-wcj-purchase-data.php:391 includes/class-wcj-sku.php:400
3068
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
3069
- msgid "Add"
3070
- msgstr "Hinzufügen"
3071
-
3072
- #: includes/class-wcj-checkout-custom-fields.php:612
3073
- msgid "Add All Fields to Customers Emails"
3074
- msgstr "Alle Felder den Benutzerdefinierte-Emails hinzufügen"
3075
-
3076
- #: includes/class-wcj-checkout-custom-fields.php:619
3077
- msgid "Add All Fields to \"Order Received\" Page"
3078
- msgstr "Alle Felder den \"Bestellung erhalten\"-Seite hinzufügen"
3079
-
3080
- #: includes/class-wcj-checkout-custom-fields.php:631
3081
- msgid "The Fields"
3082
- msgstr "Die Felder"
3083
-
3084
- #: includes/class-wcj-checkout-custom-fields.php:636
3085
- msgid "Custom Fields Number"
3086
- msgstr "Benutzerdefinierte Felder-Nummer"
3087
-
3088
- #: includes/class-wcj-checkout-custom-fields.php:667
3089
- msgid "Custom Field"
3090
- msgstr "Benutzerdefiniertes Feld"
3091
-
3092
- #: includes/class-wcj-checkout-custom-fields.php:678
3093
- msgid "type"
3094
- msgstr "Art"
3095
-
3096
- #: includes/class-wcj-checkout-custom-fields.php:683
3097
- #: includes/class-wcj-more-button-labels.php:58
3098
- #: includes/class-wcj-product-listings.php:489
3099
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
3100
- msgid "Text"
3101
- msgstr "Text"
3102
-
3103
- #: includes/class-wcj-checkout-custom-fields.php:684
3104
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:49
3105
- msgid "Textarea"
3106
- msgstr "Textbereich"
3107
-
3108
- #: includes/class-wcj-checkout-custom-fields.php:685
3109
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:50
3110
- msgid "Number"
3111
- msgstr "Nummer"
3112
-
3113
- #: includes/class-wcj-checkout-custom-fields.php:686
3114
- #: includes/class-wcj-product-addons.php:471
3115
- #: includes/class-wcj-product-addons.php:589
3116
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:51
3117
- msgid "Checkbox"
3118
- msgstr "Auswahl-Box"
3119
-
3120
- #: includes/class-wcj-checkout-custom-fields.php:688
3121
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:53
3122
- msgid "Datepicker"
3123
- msgstr "Datumswähler"
3124
-
3125
- #: includes/class-wcj-checkout-custom-fields.php:689
3126
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:54
3127
- msgid "Weekpicker"
3128
- msgstr "Wochenwähler"
3129
-
3130
- #: includes/class-wcj-checkout-custom-fields.php:690
3131
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:55
3132
- msgid "Timepicker"
3133
- msgstr "Zeitwähler"
3134
-
3135
- #: includes/class-wcj-checkout-custom-fields.php:691
3136
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:56
3137
- msgid "Select"
3138
- msgstr "Auswählen"
3139
-
3140
- #: includes/class-wcj-checkout-custom-fields.php:692
3141
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:57
3142
- msgid "Radio"
3143
- msgstr "Radio"
3144
-
3145
- #: includes/class-wcj-checkout-custom-fields.php:693
3146
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:58
3147
- msgid "Password"
3148
- msgstr "Passwort"
3149
-
3150
- #: includes/class-wcj-checkout-custom-fields.php:694
3151
- #: includes/class-wcj-orders.php:303 includes/class-wcj-orders.php:440
3152
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:59
3153
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:90
3154
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
3155
- msgid "Country"
3156
- msgstr "Land"
3157
-
3158
- #: includes/class-wcj-checkout-custom-fields.php:695
3159
- msgid "State"
3160
- msgstr "Bundesland"
3161
-
3162
- #: includes/class-wcj-checkout-custom-fields.php:696
3163
- #: includes/export/class-wcj-fields-helper.php:76
3164
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:61
3165
- #: includes/reports/wcj-class-reports-customers.php:92
3166
- msgid "Email"
3167
- msgstr "Email"
3168
-
3169
- #: includes/class-wcj-checkout-custom-fields.php:697
3170
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:62
3171
- msgid "Phone"
3172
- msgstr "Telefon"
3173
-
3174
- #: includes/class-wcj-checkout-custom-fields.php:703
3175
- msgid ""
3176
- "options (only if \"select\" or \"radio\" type is selected). One option per "
3177
- "line"
3178
- msgstr ""
3179
- "Optionen (nur wenn \"Auswählen\" oder \"Radio\" ausgewählt ist). Eine Option "
3180
- "pro Zeile"
3181
-
3182
- #: includes/class-wcj-checkout-custom-fields.php:712
3183
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:79
3184
- msgid "If checkbox is selected, set value for ON here"
3185
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AN"
3186
-
3187
- #: includes/class-wcj-checkout-custom-fields.php:714
3188
- #: includes/class-wcj-eu-vat-number.php:391
3189
- #: includes/class-wcj-eu-vat-number.php:398
3190
- #: includes/class-wcj-eu-vat-number.php:416
3191
- #: includes/class-wcj-eu-vat-number.php:431
3192
- #: includes/class-wcj-eu-vat-number.php:438
3193
- #: includes/class-wcj-eu-vat-number.php:456
3194
- #: includes/class-wcj-price-by-user-role.php:139
3195
- #: includes/class-wcj-price-by-user-role.php:182
3196
- #: includes/class-wcj-product-add-to-cart.php:212
3197
- #: includes/class-wcj-product-add-to-cart.php:222
3198
- #: includes/class-wcj-product-addons.php:439
3199
- #: includes/class-wcj-product-addons.php:461
3200
- #: includes/class-wcj-product-addons.php:509
3201
- #: includes/class-wcj-product-bookings.php:414
3202
- #: includes/class-wcj-product-images.php:210
3203
- #: includes/class-wcj-product-images.php:220
3204
- #: includes/class-wcj-product-images.php:230
3205
- #: includes/class-wcj-product-open-pricing.php:175
3206
- #: includes/class-wcj-product-price-by-formula.php:234
3207
- #: includes/class-wcj-wholesale-price.php:263
3208
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:82
3209
- #: includes/widgets/class-wcj-widget-country-switcher.php:91
3210
- msgid "Yes"
3211
- msgstr "Ja"
3212
-
3213
- #: includes/class-wcj-checkout-custom-fields.php:720
3214
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:87
3215
- msgid "If checkbox is selected, set value for OFF here"
3216
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Wert für AUS"
3217
-
3218
- #: includes/class-wcj-checkout-custom-fields.php:722
3219
- #: includes/class-wcj-price-by-user-role.php:140
3220
- #: includes/class-wcj-price-by-user-role.php:183
3221
- #: includes/class-wcj-product-add-to-cart.php:213
3222
- #: includes/class-wcj-product-add-to-cart.php:223
3223
- #: includes/class-wcj-product-addons.php:440
3224
- #: includes/class-wcj-product-addons.php:462
3225
- #: includes/class-wcj-product-addons.php:510
3226
- #: includes/class-wcj-product-bookings.php:415
3227
- #: includes/class-wcj-product-images.php:211
3228
- #: includes/class-wcj-product-images.php:221
3229
- #: includes/class-wcj-product-images.php:231
3230
- #: includes/class-wcj-product-open-pricing.php:176
3231
- #: includes/class-wcj-product-price-by-formula.php:235
3232
- #: includes/class-wcj-wholesale-price.php:264
3233
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:90
3234
- #: includes/widgets/class-wcj-widget-country-switcher.php:90
3235
- msgid "No"
3236
- msgstr "Nein"
3237
-
3238
- #: includes/class-wcj-checkout-custom-fields.php:728
3239
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:95
3240
- msgid "If checkbox is selected, set default value here"
3241
- msgstr "Wenn Auswahlbox ausgewählt ist, setze hier den Voreinstellungs-Wert"
3242
-
3243
- #: includes/class-wcj-checkout-custom-fields.php:732
3244
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:100
3245
- msgid "Not Checked"
3246
- msgstr "Nicht geprüft"
3247
-
3248
- #: includes/class-wcj-checkout-custom-fields.php:733
3249
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:101
3250
- msgid "Checked"
3251
- msgstr "Geprüft"
3252
-
3253
- #: includes/class-wcj-checkout-custom-fields.php:739
3254
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:124
3255
- msgid ""
3256
- "If datepicker/weekpicker is selected, set date format here. Visit <a "
3257
- "href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3258
- "target=\"_blank\">documentation on date and time formatting</a> for valid "
3259
- "date formats."
3260
- msgstr ""
3261
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier das Datumsformat ein. "
3262
- "Besuche <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
3263
- "target=\"_blank\">Dokumentation zur Formatierung des Datums und der "
3264
- "Uhrzeit</a> für gültige Datumsformate."
3265
-
3266
- #: includes/class-wcj-checkout-custom-fields.php:740
3267
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:125
3268
- msgid "Leave blank to use your current WordPress format"
3269
- msgstr "Leer lassen, um Ihr aktuelles WordPress-Format zu verwenden"
3270
-
3271
- #: includes/class-wcj-checkout-custom-fields.php:747
3272
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:133
3273
- msgid "If datepicker/weekpicker is selected, set min date (in days) here"
3274
- msgstr ""
3275
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Mindest-Datum (in "
3276
- "Tagen) ein"
3277
-
3278
- #: includes/class-wcj-checkout-custom-fields.php:754
3279
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:141
3280
- msgid "If datepicker/weekpicker is selected, set max date (in days) here"
3281
- msgstr ""
3282
- "Wenn Datums-/Wochenwählers ausgewählt ist, stelle hier Maximal-Datum (in "
3283
- "Tagen) ein"
3284
-
3285
- #: includes/class-wcj-checkout-custom-fields.php:761
3286
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:149
3287
- msgid ""
3288
- "If datepicker/weekpicker is selected, set if you want to add year selector"
3289
- msgstr ""
3290
- "Wenn Datums-/Wochenwähler ausgewählt ist, stelle ein, ob auch ein "
3291
- "Jahreswähler hinzugefügt werden soll"
3292
-
3293
- #: includes/class-wcj-checkout-custom-fields.php:768
3294
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:157
3295
- msgid ""
3296
- "If datepicker/weekpicker is selected, and year selector is enabled, set year "
3297
- "range here"
3298
- msgstr ""
3299
- "Wenn Datums-/Wochenwähler ausgewählt und Jahreswähler aktiviert ist, setze "
3300
- "hier den Jahresumfang ein"
3301
-
3302
- #: includes/class-wcj-checkout-custom-fields.php:769
3303
- msgid ""
3304
- "The range of years displayed in the year drop-down: either relative to "
3305
- "today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:"
3306
- "c+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
3307
- "nn\"). Note that this option only affects what appears in the drop-down, to "
3308
- "restrict which dates may be selected use the minDate and/or maxDate options."
3309
- msgstr ""
3310
- "Der Umfang der Jahre, die in der Dropdown-Liste angezeigt wird: Entweder im "
3311
- "Verhältnis zum aktuellen Jahr (\"-nn:+nn\"), bezogen auf das aktuell "
3312
- "ausgewählte Jahr (\"c-nn:c+nn\"), absolut (\"nnnn:nnnn\"), oder "
3313
- "Kombinationen dieser Formate (\"nnnn:-nn\"). Beachte, dass diese Option nur "
3314
- "beeinflusst, was in der Dropdown-Liste angezeigt wird, um festzulegen, "
3315
- "welche Daten ausgewählt werden können, verwende die Optionen minDate "
3316
- "und/oder maxDate."
3317
-
3318
- #: includes/class-wcj-checkout-custom-fields.php:776
3319
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:166
3320
- msgid "If datepicker/weekpicker is selected, set first week day here"
3321
- msgstr ""
3322
- "Wenn Datums-/Wochenwähler ausgewählt ist, lege den ersten Tag der Woche hier "
3323
- "fest"
3324
-
3325
- #: includes/class-wcj-checkout-custom-fields.php:781
3326
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:171
3327
- msgid "Sunday"
3328
- msgstr "Sonntag"
3329
-
3330
- #: includes/class-wcj-checkout-custom-fields.php:782
3331
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:172
3332
- msgid "Monday"
3333
- msgstr "Montag"
3334
-
3335
- #: includes/class-wcj-checkout-custom-fields.php:783
3336
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:173
3337
- msgid "Tuesday"
3338
- msgstr "Dienstag"
3339
-
3340
- #: includes/class-wcj-checkout-custom-fields.php:784
3341
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:174
3342
- msgid "Wednesday"
3343
- msgstr "Mittwoch"
3344
-
3345
- #: includes/class-wcj-checkout-custom-fields.php:785
3346
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:175
3347
- msgid "Thursday"
3348
- msgstr "Donnerstag"
3349
-
3350
- #: includes/class-wcj-checkout-custom-fields.php:786
3351
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:176
3352
- msgid "Friday"
3353
- msgstr "Freitag"
3354
-
3355
- #: includes/class-wcj-checkout-custom-fields.php:787
3356
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:177
3357
- msgid "Saturday"
3358
- msgstr "Samstag"
3359
-
3360
- #: includes/class-wcj-checkout-custom-fields.php:792
3361
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:183
3362
- msgid ""
3363
- "If timepicker is selected, set time format here. Visit <a href=\"http:"
3364
- "//timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
3365
- "valid time formats."
3366
- msgstr ""
3367
- "Wenn der Zeitwähler ausgewählt ist, stelle hier das Zeitformat ein. Besuche "
3368
- "<a href=\"http://timepicker.co/options/\" target=\"_blank\">Zeitwähler-"
3369
- "Optionen-Seite</a> für gültige Zeitformate."
3370
-
3371
- #: includes/class-wcj-checkout-custom-fields.php:800
3372
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:191
3373
- msgid "If timepicker is selected, set interval (in minutes) here"
3374
- msgstr ""
3375
- "Wenn der Zeitwähler ausgewählt ist, stelle hier den Intervall (in Minuten) "
3376
- "ein"
3377
-
3378
- #: includes/class-wcj-checkout-custom-fields.php:831
3379
- msgid "section"
3380
- msgstr "Bereich"
3381
-
3382
- #: includes/class-wcj-checkout-custom-fields.php:836
3383
- #: includes/class-wcj-checkout-custom-info.php:110
3384
- #: includes/class-wcj-empty-cart-button.php:117
3385
- #: includes/class-wcj-left-to-free-shipping.php:233
3386
- msgid "Billing"
3387
- msgstr "Rechnungsadresse:"
3388
-
3389
- #: includes/class-wcj-checkout-custom-fields.php:837
3390
- #: includes/class-wcj-checkout-custom-info.php:111
3391
- #: includes/class-wcj-empty-cart-button.php:118
3392
- #: includes/class-wcj-left-to-free-shipping.php:234
3393
- #: includes/class-wcj-price-by-user-role.php:392
3394
- #: includes/class-wcj-shipping.php:25
3395
- msgid "Shipping"
3396
- msgstr "Versand"
3397
-
3398
- #: includes/class-wcj-checkout-custom-fields.php:838
3399
- #: includes/export/class-wcj-fields-helper.php:121
3400
- #: includes/export/class-wcj-fields-helper.php:206
3401
- msgid "Order Notes"
3402
- msgstr "Bestellnotizen"
3403
-
3404
- #: includes/class-wcj-checkout-custom-fields.php:839
3405
- msgid "Account"
3406
- msgstr "Konto"
3407
-
3408
- #: includes/class-wcj-checkout-custom-fields.php:850
3409
- #: includes/class-wcj-eu-vat-number.php:409
3410
- msgid "Wide"
3411
- msgstr "Breit"
3412
-
3413
- #: includes/class-wcj-checkout-custom-fields.php:851
3414
- #: includes/class-wcj-eu-vat-number.php:410
3415
- msgid "First"
3416
- msgstr "Erste"
3417
-
3418
- #: includes/class-wcj-checkout-custom-fields.php:852
3419
- #: includes/class-wcj-eu-vat-number.php:411
3420
- msgid "Last"
3421
- msgstr "Letzte"
3422
-
3423
- #: includes/class-wcj-checkout-custom-fields.php:858
3424
- msgid "clear"
3425
- msgstr "klar"
3426
-
3427
- #: includes/class-wcj-checkout-custom-fields.php:867
3428
- msgid ""
3429
- "Show this field only if there is a product of selected category in cart."
3430
- msgstr ""
3431
- "Zeige dieses Feld nur, wenn sich ein Produkt, mit ausgewählter Kategorie, im "
3432
- "Warenkorb befindet."
3433
-
3434
- #: includes/class-wcj-checkout-custom-fields.php:877
3435
- msgid "products"
3436
- msgstr "Produkte"
3437
-
3438
- #: includes/class-wcj-checkout-custom-fields.php:878
3439
- msgid "Show this field only if there is a selected product in cart."
3440
- msgstr ""
3441
- "Zeige dieses Feld nur, wenn sich ein ausgewähltes Produkt im Warenkorb "
3442
- "befindet."
3443
-
3444
- #: includes/class-wcj-checkout-custom-info.php:26
3445
- msgid "Checkout Custom Info"
3446
- msgstr "Benutzerdefinierte Kasse-Info"
3447
-
3448
- #: includes/class-wcj-checkout-custom-info.php:27
3449
- msgid "Add custom info to WooCommerce checkout page."
3450
- msgstr "Benutzerdefinierte Information der WooCommerce-Kassen-Seite hinzufügen"
3451
-
3452
- #: includes/class-wcj-checkout-custom-info.php:70
3453
- msgid "Checkout Custom Info Blocks"
3454
- msgstr "Benutzerdefinierte Kasse-Info-Blöcke"
3455
-
3456
- #: includes/class-wcj-checkout-custom-info.php:108
3457
- #: includes/class-wcj-checkout-files-upload.php:645
3458
- #: includes/class-wcj-empty-cart-button.php:115
3459
- #: includes/class-wcj-left-to-free-shipping.php:231
3460
- msgid "Before checkout form"
3461
- msgstr "Vor-der-Kasse-Formular"
3462
-
3463
- #: includes/class-wcj-checkout-custom-info.php:109
3464
- #: includes/class-wcj-empty-cart-button.php:116
3465
- #: includes/class-wcj-left-to-free-shipping.php:232
3466
- msgid "Before customer details"
3467
- msgstr "Vor Kundendetails"
3468
-
3469
- #: includes/class-wcj-checkout-custom-info.php:112
3470
- #: includes/class-wcj-empty-cart-button.php:119
3471
- #: includes/class-wcj-left-to-free-shipping.php:235
3472
- msgid "After customer details"
3473
- msgstr "Nach Kundendetails"
3474
-
3475
- #: includes/class-wcj-checkout-custom-info.php:113
3476
- #: includes/class-wcj-empty-cart-button.php:120
3477
- #: includes/class-wcj-left-to-free-shipping.php:236
3478
- msgid "Before order review"
3479
- msgstr "Vor Bestellübersicht"
3480
-
3481
- #: includes/class-wcj-checkout-custom-info.php:114
3482
- #: includes/class-wcj-empty-cart-button.php:121
3483
- #: includes/class-wcj-left-to-free-shipping.php:237
3484
- msgid "Order review"
3485
- msgstr "Bestellübersicht"
3486
-
3487
- #: includes/class-wcj-checkout-custom-info.php:115
3488
- #: includes/class-wcj-empty-cart-button.php:122
3489
- #: includes/class-wcj-left-to-free-shipping.php:238
3490
- msgid "After order review"
3491
- msgstr "Nach Bestellübersicht"
3492
-
3493
- #: includes/class-wcj-checkout-custom-info.php:116
3494
- #: includes/class-wcj-checkout-files-upload.php:646
3495
- #: includes/class-wcj-empty-cart-button.php:123
3496
- #: includes/class-wcj-left-to-free-shipping.php:239
3497
- msgid "After checkout form"
3498
- msgstr "Nach Kassen-Formular"
3499
-
3500
- #: includes/class-wcj-checkout-files-upload.php:28
3501
- msgid "Checkout Files Upload"
3502
- msgstr "Kasse Dateien-Upload"
3503
-
3504
- #: includes/class-wcj-checkout-files-upload.php:29
3505
- msgid "Let customers upload files on (or after) WooCommerce checkout."
3506
- msgstr ""
3507
- "Lasse Kunden Dateien hochladen während (oder nach) der WooCommerce-Kasse"
3508
-
3509
- #: includes/class-wcj-checkout-files-upload.php:88
3510
- #: includes/class-wcj-checkout-files-upload.php:627
3511
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:52
3512
- msgid "File"
3513
- msgstr "Datei"
3514
-
3515
- #: includes/class-wcj-checkout-files-upload.php:110
3516
- #: includes/class-wcj-checkout-files-upload.php:712
3517
- msgid "File is required!"
3518
- msgstr "Datei wird benötigt!"
3519
-
3520
- #: includes/class-wcj-checkout-files-upload.php:120
3521
- #: includes/class-wcj-checkout-files-upload.php:257
3522
- #: includes/class-wcj-checkout-files-upload.php:705
3523
- msgid "Wrong file type: \"%s\"!"
3524
- msgstr "Falsche Dateiart: \"%s\"!"
3525
-
3526
- #: includes/class-wcj-checkout-files-upload.php:140
3527
- msgid "Uploaded Files"
3528
- msgstr "Hochgeladene Dateien"
3529
-
3530
- #: includes/class-wcj-checkout-files-upload.php:172
3531
- msgid "No files uploaded."
3532
- msgstr "Keine Dateien hochgeladen."
3533
-
3534
- #: includes/class-wcj-checkout-files-upload.php:229
3535
- #: includes/class-wcj-checkout-files-upload.php:237
3536
- #: includes/class-wcj-checkout-files-upload.php:735
3537
- msgid "File \"%s\" was successfully removed."
3538
- msgstr "Datei \"%s\" wurde erfolgreich entfernt."
3539
-
3540
- #: includes/class-wcj-checkout-files-upload.php:269
3541
- #: includes/class-wcj-checkout-files-upload.php:720
3542
- msgid "File \"%s\" was successfully uploaded."
3543
- msgstr "Datei \"%s\" wurde erfolgreich hochgeladen."
3544
-
3545
- #: includes/class-wcj-checkout-files-upload.php:277
3546
- #: includes/class-wcj-checkout-files-upload.php:727
3547
- msgid "Please select file to upload!"
3548
- msgstr "Wähle bitte die hochzuladende Datei aus!"
3549
-
3550
- #: includes/class-wcj-checkout-files-upload.php:491
3551
- #: includes/class-wcj-checkout-files-upload.php:492
3552
- #: includes/class-wcj-checkout-files-upload.php:690
3553
- msgid "Upload"
3554
- msgstr "Hochladen"
3555
-
3556
- #: includes/class-wcj-checkout-files-upload.php:500
3557
- #: includes/class-wcj-checkout-files-upload.php:501
3558
- #: includes/class-wcj-checkout-files-upload.php:697
3559
- msgid "Remove"
3560
- msgstr "Entfernen"
3561
-
3562
- #: includes/class-wcj-checkout-files-upload.php:606
3563
- #: includes/class-wcj-currency-per-product.php:281
3564
- #: includes/class-wcj-eu-vat-number.php:358
3565
- #: includes/class-wcj-global-discount.php:215
3566
- #: includes/class-wcj-multicurrency-product-base-price.php:236
3567
- #: includes/class-wcj-multicurrency.php:385
3568
- #: includes/class-wcj-payment-gateways-icons.php:95
3569
- #: includes/class-wcj-payment-gateways-per-category.php:166
3570
- #: includes/class-wcj-price-by-user-role.php:370
3571
- #: includes/class-wcj-product-addons.php:642
3572
- #: includes/class-wcj-product-bookings.php:490
3573
- #: includes/class-wcj-product-by-user.php:247
3574
- #: includes/class-wcj-products-xml.php:197
3575
- #: includes/class-wcj-related-products.php:98
3576
- #: includes/class-wcj-wholesale-price.php:377
3577
- msgid "Options"
3578
- msgstr "Einstellungen"
3579
-
3580
- #: includes/class-wcj-checkout-files-upload.php:611
3581
- #: includes/class-wcj-products-xml.php:202
3582
- msgid "Total Files"
3583
- msgstr "Gesamtdateien"
3584
-
3585
- #: includes/class-wcj-checkout-files-upload.php:647
3586
- msgid "Do not add on checkout"
3587
- msgstr "Nicht während der Kasse hinzufügen"
3588
-
3589
- #: includes/class-wcj-checkout-files-upload.php:652
3590
- msgid "Position order"
3591
- msgstr "Positionsreihenfolge"
3592
-
3593
- #: includes/class-wcj-checkout-files-upload.php:661
3594
- msgid "Add to Thank You page"
3595
- msgstr "Der Dankes-Seite hinzufügen"
3596
-
3597
- #: includes/class-wcj-checkout-files-upload.php:667
3598
- msgid "Add to My Account page"
3599
- msgstr "Der Mein Konto-Seite hinzufügen"
3600
-
3601
- #: includes/class-wcj-checkout-files-upload.php:672
3602
- #: includes/class-wcj-checkout-files-upload.php:846
3603
- #: includes/class-wcj-order-custom-statuses.php:217
3604
- #: includes/class-wcj-order-custom-statuses.php:256
3605
- #: includes/class-wcj-orders.php:469
3606
- msgid "Label"
3607
- msgstr "Beschriftung"
3608
-
3609
- #: includes/class-wcj-checkout-files-upload.php:673
3610
- msgid "Leave blank to disable label"
3611
- msgstr "Leer lassen um Beschriftung zu deaktivieren"
3612
-
3613
- #: includes/class-wcj-checkout-files-upload.php:675
3614
- msgid "Please select file to upload"
3615
- msgstr "Wähle bitte eine hochzuladende Datei aus"
3616
-
3617
- #: includes/class-wcj-checkout-files-upload.php:680
3618
- msgid "Accepted file types"
3619
- msgstr "Akzeptierte Dateiarten"
3620
-
3621
- #: includes/class-wcj-checkout-files-upload.php:681
3622
- msgid ""
3623
- "Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
3624
- "files"
3625
- msgstr ""
3626
- "Akzeptierte Dateiarten. z.B.: \".jpg,.jpeg,.png\". Leer lassen um alle "
3627
- "Dateien zu akzeptieren"
3628
-
3629
- #: includes/class-wcj-checkout-files-upload.php:688
3630
- msgid "Label: Upload button"
3631
- msgstr "Beschriftung: Hochladen-Button"
3632
-
3633
- #: includes/class-wcj-checkout-files-upload.php:695
3634
- msgid "Label: Remove button"
3635
- msgstr "Label: Entfernen-Button"
3636
-
3637
- #: includes/class-wcj-checkout-files-upload.php:702
3638
- msgid "Notice: Wrong file type"
3639
- msgstr "Hinweis: Falsche Dateiart"
3640
-
3641
- #: includes/class-wcj-checkout-files-upload.php:703
3642
- #: includes/class-wcj-checkout-files-upload.php:718
3643
- #: includes/class-wcj-checkout-files-upload.php:733
3644
- msgid "%s will be replaced with file name"
3645
- msgstr "%s wird mit Dateinamen ersetzt"
3646
-
3647
- #: includes/class-wcj-checkout-files-upload.php:710
3648
- msgid "Notice: File is required"
3649
- msgstr "Hinweis: Datei wird benötigt"
3650
-
3651
- #: includes/class-wcj-checkout-files-upload.php:717
3652
- msgid "Notice: File was successfully uploaded"
3653
- msgstr "Hinweis: Datei wurde erfolgreich hochgeladen"
3654
-
3655
- #: includes/class-wcj-checkout-files-upload.php:725
3656
- msgid "Notice: No file selected"
3657
- msgstr "Hinweis: Keine Datei ausgewählt"
3658
-
3659
- #: includes/class-wcj-checkout-files-upload.php:732
3660
- msgid "Notice: File was successfully removed"
3661
- msgstr "Hinweis: Datei wurde erfolgreich entfernt"
3662
-
3663
- #: includes/class-wcj-checkout-files-upload.php:741
3664
- msgid "PRODUCTS to show this field"
3665
- msgstr "Diese PRODUKTE zeigen dieses Feld"
3666
-
3667
- #: includes/class-wcj-checkout-files-upload.php:742
3668
- msgid ""
3669
- "To show this field only if at least one selected product is in cart, enter "
3670
- "products here. Leave blank to show for all products."
3671
- msgstr ""
3672
- "Dieses Feld nur zeigen, wenn sich wenigstens ein ausgewähltes Produkt im "
3673
- "Warenkorb befindet, gib Produkte hier ein. Leer lassen, um es für alle "
3674
- "Produkte anzuzeigen."
3675
-
3676
- #: includes/class-wcj-checkout-files-upload.php:751
3677
- msgid "CATEGORIES to show this field"
3678
- msgstr "Diese KATEGORIEN zeigen dieses Feld"
3679
-
3680
- #: includes/class-wcj-checkout-files-upload.php:752
3681
- msgid ""
3682
- "To show this field only if at least one product of selected category is in "
3683
- "cart, enter categories here. Leave blank to show for all products."
3684
- msgstr ""
3685
- "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt ausgewählter "
3686
- "Kategorie im Warenkorb befindet, gib Kategorien hier ein. Leer lassen, um es "
3687
- "für alle Produkte anzuzeigen."
3688
-
3689
- #: includes/class-wcj-checkout-files-upload.php:761
3690
- msgid "TAGS to show this field"
3691
- msgstr "Diese STICHWÖRTER zeigen dieses Feld"
3692
-
3693
- #: includes/class-wcj-checkout-files-upload.php:762
3694
- msgid ""
3695
- "To show this field only if at least one product of selected tag is in cart, "
3696
- "enter tags here. Leave blank to show for all products."
3697
- msgstr ""
3698
- "Dieses Feld nur zeigen, wenn sich wenigstens ein Produkt mit ausgewähltem "
3699
- "Stichwort im Warenkorb befindet, gib die Stichwörter hier ein. Leer lassen, "
3700
- "um es für alle Produkte anzuzeigen."
3701
-
3702
- #: includes/class-wcj-checkout-files-upload.php:771
3703
- msgid "PRODUCTS to hide this field"
3704
- msgstr "PRODUKTE, um dieses Feld zu verbergen"
3705
-
3706
- #: includes/class-wcj-checkout-files-upload.php:772
3707
- msgid ""
3708
- "To hide this field if at least one selected product is in cart, enter "
3709
- "products here. Leave blank to show for all products."
3710
- msgstr ""
3711
- "Um dieses Feld auszublenden, wenn mindestens ein ausgewähltes Produkt im "
3712
- "Einkaufswagen ist, gib hier Produkte ein. Leer lassen, um für alle Produkte "
3713
- "zu zeigen."
3714
-
3715
- #: includes/class-wcj-checkout-files-upload.php:781
3716
- msgid "CATEGORIES to hide this field"
3717
- msgstr "KATEGORIEN, um dieses Feld zu verbergen"
3718
-
3719
- #: includes/class-wcj-checkout-files-upload.php:782
3720
- msgid ""
3721
- "To hide this field if at least one product of selected category is in cart, "
3722
- "enter categories here. Leave blank to show for all products."
3723
- msgstr ""
3724
- "Um dieses Feld auszublenden, wenn mindestens ein Produkt der ausgewählten "
3725
- "Kategorie im Einkaufswagen ist, gib hier Kategorien ein. Leer lassen, um für "
3726
- "alle Produkte zu zeigen."
3727
-
3728
- #: includes/class-wcj-checkout-files-upload.php:791
3729
- msgid "TAGS to hide this field"
3730
- msgstr "TAGS um dieses Feld zu verbergen"
3731
-
3732
- #: includes/class-wcj-checkout-files-upload.php:792
3733
- msgid ""
3734
- "To hide this field if at least one product of selected tag is in cart, enter "
3735
- "tags here. Leave blank to show for all products."
3736
- msgstr ""
3737
- "Um dieses Feld auszublenden, wenn mindestens ein Produkt des ausgewählten "
3738
- "Tags im Einkaufswagen ist, gib hier die Tags ein. Leer lassen, um für alle "
3739
- "Produkte zu zeigen."
3740
-
3741
- #: includes/class-wcj-checkout-files-upload.php:809
3742
- #: includes/class-wcj-product-input-fields.php:247
3743
- msgid "Emails Options"
3744
- msgstr "Email-Optionen"
3745
-
3746
- #: includes/class-wcj-checkout-files-upload.php:814
3747
- #: includes/class-wcj-product-input-fields.php:253
3748
- msgid "Attach Files to Admin's New Order Emails"
3749
- msgstr "Dateien der Administrator-Neue-Bestellung-Emails anhängen"
3750
-
3751
- #: includes/class-wcj-checkout-files-upload.php:815
3752
- #: includes/class-wcj-checkout-files-upload.php:822
3753
- #: includes/class-wcj-product-input-fields.php:254
3754
- #: includes/class-wcj-product-input-fields.php:262
3755
- msgid "Attach"
3756
- msgstr "Anhängen"
3757
-
3758
- #: includes/class-wcj-checkout-files-upload.php:821
3759
- #: includes/class-wcj-product-input-fields.php:261
3760
- msgid "Attach Files to Customer's Processing Order Emails"
3761
- msgstr "Dateien der Kunden-Bestellbearbeitung-Emails anhängen"
3762
-
3763
- #: includes/class-wcj-checkout-files-upload.php:834
3764
- msgid "Form Template Options"
3765
- msgstr "Formular-Template-Optionen"
3766
-
3767
- #: includes/class-wcj-checkout-files-upload.php:839
3768
- #: includes/class-wcj-product-addons.php:655
3769
- #: includes/class-wcj-product-addons.php:678
3770
- msgid "Before"
3771
- msgstr "Davor"
3772
-
3773
- #: includes/class-wcj-checkout-files-upload.php:847
3774
- msgid "Replaced values: %field_id%, %field_label%, %required_html%."
3775
- msgstr "Ersetzte Werte: %field_id%, %field_label%, %required_html%."
3776
-
3777
- #: includes/class-wcj-checkout-files-upload.php:854
3778
- #: includes/class-wcj-export-import.php:356
3779
- #: includes/class-wcj-export-import.php:424
3780
- #: includes/class-wcj-export-import.php:494
3781
- msgid "Field"
3782
- msgstr "Feld"
3783
-
3784
- #: includes/class-wcj-checkout-files-upload.php:855
3785
- msgid "Replaced values: %field_html%, %button_html%."
3786
- msgstr "Ersetzte Werte: %field_html%, %button_html%."
3787
-
3788
- #: includes/class-wcj-checkout-files-upload.php:862
3789
- #: includes/class-wcj-product-addons.php:670
3790
- #: includes/class-wcj-product-addons.php:693
3791
- msgid "After"
3792
- msgstr "Danach"
3793
-
3794
- #: includes/class-wcj-crowdfunding.php:26
3795
- msgid "Crowdfunding"
3796
- msgstr "Crowdfunding"
3797
-
3798
- #: includes/class-wcj-crowdfunding.php:27
3799
- msgid "Add crowdfunding products to WooCommerce."
3800
- msgstr "Crowdfunding-Produkte WooCommerce hinzufügen."
3801
-
3802
- #: includes/class-wcj-crowdfunding.php:67
3803
- msgid "Goal"
3804
- msgstr "Ziel"
3805
-
3806
- #: includes/class-wcj-crowdfunding.php:73
3807
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:71
3808
- msgid "Start Date"
3809
- msgstr "Startdatum"
3810
-
3811
- #: includes/class-wcj-crowdfunding.php:79
3812
- msgid "Deadline"
3813
- msgstr "Stichtag"
3814
-
3815
- #: includes/class-wcj-crowdfunding.php:90
3816
- msgid "When enabled, module will add Crowdfunding metabox to product edit."
3817
- msgstr ""
3818
- "Wenn aktiviert, wird dieses Modul die Crowdfunding-Metabox der "
3819
- "Produktbearbeitung hinzufügen."
3820
-
3821
- #: includes/class-wcj-crowdfunding.php:92
3822
- msgid "To add crowdfunding info to the product, use these shortcodes:"
3823
- msgstr ""
3824
- "Um die Crowdfunding-Info dem Produkt hinzuzufügen, nutze diese Shortcodes:"
3825
-
3826
- #: includes/class-wcj-crowdfunding.php:100
3827
- msgid "Shortcodes could be used in \"Product Info\" module."
3828
- msgstr "Shortcodes können im \"Produkt-Info\"-Modul verwendet werden."
3829
-
3830
- #: includes/class-wcj-crowdfunding.php:102
3831
- msgid "To change add to cart button labels use \"Add to Cart Labels\" module."
3832
- msgstr ""
3833
- "Um \"Dem Warenkorb hinzufügen\" zu ändern, verwende das \"Dem Warenkorb "
3834
- "hinzufügen-Beschriftungen\"-Modul."
3835
-
3836
- #: includes/class-wcj-currencies.php:25
3837
- msgid "Currencies"
3838
- msgstr "Währungen"
3839
-
3840
- #: includes/class-wcj-currencies.php:26
3841
- msgid ""
3842
- "Add all world currencies to your WooCommerce store; change currency symbol."
3843
- msgstr ""
3844
- "Alle Währungen der Welt Deinem WooCommerce-Shop hinzufügen; Ändere das "
3845
- "Währungssysmbol."
3846
-
3847
- #: includes/class-wcj-currencies.php:74
3848
- msgid "Booster: Currency Symbol"
3849
- msgstr "Booster: Währungssymbol"
3850
-
3851
- #: includes/class-wcj-currencies.php:75
3852
- msgid "This sets the currency symbol."
3853
- msgstr "Dies legt das Währungssymbol fest."
3854
-
3855
- #: includes/class-wcj-currencies.php:99
3856
- msgid "Currency Symbol Options"
3857
- msgstr "Währungssymbol-Optionen"
3858
-
3859
- #: includes/class-wcj-currencies.php:105
3860
- msgid "Hide Currency Symbol"
3861
- msgstr "Währungssymbol verbergen"
3862
-
3863
- #: includes/class-wcj-currencies.php:106 includes/class-wcj-orders.php:508
3864
- #: includes/class-wcj-pdf-invoicing.php:400
3865
- #: includes/class-wcj-product-bookings.php:496
3866
- #: includes/class-wcj-product-images.php:259
3867
- #: includes/class-wcj-product-images.php:266
3868
- #: includes/class-wcj-product-images.php:273
3869
- #: includes/class-wcj-product-images.php:280
3870
- #: includes/class-wcj-related-products.php:151
3871
- #: includes/class-wcj-shipping-calculator.php:168
3872
- msgid "Hide"
3873
- msgstr "Ausblenden"
3874
-
3875
- #: includes/class-wcj-currencies.php:107
3876
- msgid "Default: no."
3877
- msgstr "Voreinstellung: Nr."
3878
-
3879
- #: includes/class-wcj-currencies.php:133
3880
- msgid "Custom Currencies"
3881
- msgstr "Benutzerdefinierte Währungen"
3882
-
3883
- #: includes/class-wcj-currencies.php:139
3884
- msgid "Total Custom Currencies"
3885
- msgstr "Gesamte benutzerdefinierte Währungen"
3886
-
3887
- #: includes/class-wcj-currencies.php:151
3888
- msgid "Custom Currency"
3889
- msgstr "Benutzerdefinierte Währungen"
3890
-
3891
- #: includes/class-wcj-currencies.php:152
3892
- msgid "Currency Name (required)"
3893
- msgstr "Währungsname (benötigt)"
3894
-
3895
- #: includes/class-wcj-currencies.php:160
3896
- msgid "Currency Code (required)"
3897
- msgstr "Währungs-Code (benötigt)"
3898
-
3899
- #: includes/class-wcj-currencies.php:168
3900
- msgid "Currency Symbol"
3901
- msgstr "Währungssymbol"
3902
-
3903
- #: includes/class-wcj-currency-exchange-rates.php:26
3904
- msgid "Currency Exchange Rates"
3905
- msgstr "Wechselkurse"
3906
-
3907
- #: includes/class-wcj-currency-exchange-rates.php:27
3908
- msgid "Automatic currency exchange rates for WooCommerce."
3909
- msgstr "Automatische Wechselkurse für WooCommerce."
3910
-
3911
- #: includes/class-wcj-currency-exchange-rates.php:80
3912
- #: includes/class-wcj-currency-per-product.php:350
3913
- #: includes/class-wcj-multicurrency-product-base-price.php:305
3914
- #: includes/class-wcj-multicurrency.php:491
3915
- #: includes/class-wcj-payment-gateways-currency.php:275
3916
- #: includes/class-wcj-price-by-country.php:388
3917
- msgid "Grab %s rate from Yahoo.com"
3918
- msgstr "Hole %s Kurs von Yahoo.com"
3919
-
3920
- #: includes/class-wcj-currency-exchange-rates.php:100
3921
- #: includes/class-wcj-products-xml.php:223
3922
- msgid "%s seconds till next update."
3923
- msgstr "%s Sekunden bis zum nächsten Update."
3924
-
3925
- #: includes/class-wcj-currency-exchange-rates.php:106
3926
- #: includes/class-wcj-price-by-country.php:348
3927
- msgid "Exchange Rates"
3928
- msgstr "Wechselkurse"
3929
-
3930
- #: includes/class-wcj-currency-exchange-rates.php:108
3931
- msgid ""
3932
- "All currencies from all <strong>enabled</strong> modules will be "
3933
- "automatically added to the list."
3934
- msgstr ""
3935
- "Währungen aller aktivierten Module werden automatisch der Liste hinzugefügt."
3936
-
3937
- #: includes/class-wcj-currency-exchange-rates.php:113
3938
- #: includes/class-wcj-currency-per-product.php:286
3939
- #: includes/class-wcj-multicurrency-product-base-price.php:241
3940
- #: includes/class-wcj-multicurrency.php:390
3941
- #: includes/class-wcj-payment-gateways-currency.php:282
3942
- #: includes/class-wcj-price-by-country.php:351
3943
- msgid "Exchange Rates Updates"
3944
- msgstr "Wechselkurs-Aktualisierung"
3945
-
3946
- #: includes/class-wcj-currency-exchange-rates.php:119
3947
- #: includes/class-wcj-products-xml.php:291
3948
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
3949
- msgid "Update Every Minute"
3950
- msgstr "Jede Minute aktualisieren"
3951
-
3952
- #: includes/class-wcj-currency-exchange-rates.php:120
3953
- #: includes/class-wcj-products-xml.php:292
3954
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
3955
- msgid "Update Hourly"
3956
- msgstr "Stündlich aktualisieren"
3957
-
3958
- #: includes/class-wcj-currency-exchange-rates.php:121
3959
- #: includes/class-wcj-products-xml.php:293
3960
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
3961
- msgid "Update Twice Daily"
3962
- msgstr "Zweimal täglich aktivieren"
3963
-
3964
- #: includes/class-wcj-currency-exchange-rates.php:122
3965
- #: includes/class-wcj-products-xml.php:294
3966
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:27
3967
- msgid "Update Daily"
3968
- msgstr "Täglich aktivieren"
3969
-
3970
- #: includes/class-wcj-currency-exchange-rates.php:123
3971
- #: includes/class-wcj-products-xml.php:295
3972
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:28
3973
- msgid "Update Weekly"
3974
- msgstr "Wöchentlich aktivieren"
3975
-
3976
- #: includes/class-wcj-currency-external-products.php:25
3977
- msgid "Currency for External Products"
3978
- msgstr "Währung für externe Produkte"
3979
-
3980
- #: includes/class-wcj-currency-external-products.php:26
3981
- msgid "Set different currency for external WooCommerce products."
3982
- msgstr "Lege unterschiedliche Währungen für externe WooCommerce-Produkte fest."
3983
-
3984
- #: includes/class-wcj-currency-external-products.php:73
3985
- msgid "Currency for External Products Options"
3986
- msgstr "Währung für externe-Produkt-Optionen"
3987
-
3988
- #: includes/class-wcj-currency-external-products.php:79
3989
- #: includes/class-wcj-currency-per-product.php:334
3990
- #: includes/class-wcj-multicurrency-product-base-price.php:289
3991
- #: includes/class-wcj-multicurrency.php:475
3992
- #: includes/class-wcj-price-by-country.php:338
3993
- #: includes/class-wcj-price-formats.php:142
3994
- msgid "Currency"
3995
- msgstr "Währung"
3996
-
3997
- #: includes/class-wcj-currency-external-products.php:80
3998
- msgid "Set currency for all external products."
3999
- msgstr "Lege die Währung für alle externe Produkte fest."
4000
-
4001
- #: includes/class-wcj-currency-per-product.php:27
4002
- msgid "Currency per Product"
4003
- msgstr "Währung pro Produkt"
4004
-
4005
- #: includes/class-wcj-currency-per-product.php:28
4006
- msgid "Display prices for WooCommerce products in different currencies."
4007
- msgstr "Zeige Preise für WooCommerce-Produkte in verschiedenen Währungen."
4008
-
4009
- #: includes/class-wcj-currency-per-product.php:100
4010
- msgctxt "Price range: from-to"
4011
- msgid "%1$s&ndash;%2$s"
4012
- msgstr "%1$s&ndash;%2$s"
4013
-
4014
- #: includes/class-wcj-currency-per-product.php:236
4015
- #: includes/class-wcj-multicurrency-product-base-price.php:185
4016
- msgid "Product Currency"
4017
- msgstr "Produktkategorie"
4018
-
4019
- #: includes/class-wcj-currency-per-product.php:238
4020
- msgid "Update product after you change this field's value."
4021
- msgstr "Produkt aktualisieren, nachdem Du diesen Wert geändert hast."
4022
-
4023
- #: includes/class-wcj-currency-per-product.php:291
4024
- #: includes/class-wcj-multicurrency-product-base-price.php:246
4025
- #: includes/class-wcj-multicurrency.php:395
4026
- #: includes/class-wcj-payment-gateways-currency.php:287
4027
- #: includes/class-wcj-price-by-country.php:356
4028
- msgid "Enter Rates Manually"
4029
- msgstr "Kurse manuell eingeben"
4030
-
4031
- #: includes/class-wcj-currency-per-product.php:292
4032
- #: includes/class-wcj-multicurrency-product-base-price.php:247
4033
- #: includes/class-wcj-multicurrency.php:396
4034
- #: includes/class-wcj-payment-gateways-currency.php:288
4035
- #: includes/class-wcj-price-by-country.php:357
4036
- msgid "Automatically via Currency Exchange Rates module"
4037
- msgstr "Automatisch über Wechselkurs-Modul"
4038
-
4039
- #: includes/class-wcj-currency-per-product.php:295
4040
- #: includes/class-wcj-multicurrency-product-base-price.php:250
4041
- #: includes/class-wcj-multicurrency.php:399
4042
- #: includes/class-wcj-payment-gateways-currency.php:291
4043
- #: includes/class-wcj-price-by-country.php:360
4044
- msgid "Visit"
4045
- msgstr "Besuchen"
4046
-
4047
- #: includes/class-wcj-currency-per-product.php:295
4048
- #: includes/class-wcj-multicurrency-product-base-price.php:250
4049
- #: includes/class-wcj-multicurrency.php:399
4050
- #: includes/class-wcj-payment-gateways-currency.php:291
4051
- #: includes/class-wcj-price-by-country.php:360
4052
- msgid "Currency Exchange Rates module"
4053
- msgstr "Wechselkurs-Modul"
4054
-
4055
- #: includes/class-wcj-currency-per-product.php:305
4056
- #: includes/class-wcj-multicurrency-product-base-price.php:260
4057
- #: includes/class-wcj-multicurrency.php:445
4058
- msgid "Currencies Options"
4059
- msgstr "Währungs-Optionen"
4060
-
4061
- #: includes/class-wcj-currency-per-product.php:310
4062
- #: includes/class-wcj-multicurrency-product-base-price.php:265
4063
- #: includes/class-wcj-multicurrency.php:451
4064
- msgid "Total Currencies"
4065
- msgstr "Gesamt-Währungen"
4066
-
4067
- #: includes/class-wcj-emails.php:25
4068
- msgid "Emails"
4069
- msgstr "Emails"
4070
-
4071
- #: includes/class-wcj-emails.php:26
4072
- msgid ""
4073
- "Add custom emails. Add another email recipient(s) to all WooCommerce emails."
4074
- msgstr ""
4075
- "Benutzerdefinerte Emails hinzufügen. Weitere Emailempfänger allen "
4076
- "WooCommerce-Emails hinzufügen."
4077
-
4078
- #: includes/class-wcj-emails.php:137
4079
- msgid "Booster: Email Forwarding Options"
4080
- msgstr "Booster: Email-Weiterleitungs-Optionen"
4081
-
4082
- #: includes/class-wcj-emails.php:138
4083
- msgid "Email Forwarding Options"
4084
- msgstr "Email-Weiterleitungs-Optionen"
4085
-
4086
- #: includes/class-wcj-emails.php:140
4087
- msgid ""
4088
- "This section lets you add another email recipient(s) to all WooCommerce "
4089
- "emails. Leave blank to disable."
4090
- msgstr ""
4091
- "Dieser Abschnitt lässt Dich weitere Email-Empfänger aller WooCommerce-Emails "
4092
- "hinzufügen. Leer lassen um zu deaktivieren."
4093
-
4094
- #: includes/class-wcj-emails.php:144
4095
- msgid "Cc Email"
4096
- msgstr "Cc Email"
4097
-
4098
- #: includes/class-wcj-emails.php:145
4099
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4100
- msgstr ""
4101
- "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4102
-
4103
- #: includes/class-wcj-emails.php:151
4104
- msgid "Bcc Email"
4105
- msgstr "Bcc Email"
4106
-
4107
- #: includes/class-wcj-emails.php:152
4108
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
4109
- msgstr ""
4110
- "Cc zu Email, z.B. ihreemail@ihredomain.de. Leer lassen, um zu deaktivieren."
4111
-
4112
- #: includes/class-wcj-emails.php:188
4113
- msgid "Custom Emails"
4114
- msgstr "Benutzerdefinierte Emails"
4115
-
4116
- #: includes/class-wcj-emails.php:191
4117
- msgid ""
4118
- "This section lets you set number of custom emails to add. After setting the "
4119
- "number, visit \"WooCommerce > Settings > Emails\" to set each email options."
4120
- msgstr ""
4121
- "Dieser Abschnitt lässt Dich die Anzahl der benutzerdefinierten Emails, die "
4122
- "hinzugefügt werden sollen, einstellen. Nachdem Du die Anzahl festgelegt hast,"
4123
- " besuche \"WooCommerce > Einstellungen > Emails\", um jede Emailoption "
4124
- "einzustellen."
4125
-
4126
- #: includes/class-wcj-emails.php:194
4127
- msgid "Custom Emails Number"
4128
- msgstr "Anzahl benutzerdefinierter Emails"
4129
-
4130
- #: includes/class-wcj-emails.php:205
4131
- msgid "Admin Title Custom Email"
4132
- msgstr "Titel für benutzerdefinierte Administrator-Email"
4133
-
4134
- #: includes/class-wcj-emails.php:207 includes/class-wcj-shipping.php:219
4135
- #: includes/emails/class-wc-email-wcj-custom.php:30
4136
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:133
4137
- #: includes/shipping/class-wc-shipping-wcj-custom.php:44
4138
- msgid "Custom"
4139
- msgstr "Benutzerdefiniert"
4140
-
4141
- #: includes/class-wcj-empty-cart-button.php:26
4142
- msgid "Empty Cart Button"
4143
- msgstr "Warenkorb leeren-Button"
4144
-
4145
- #: includes/class-wcj-empty-cart-button.php:27
4146
- msgid "Add and customize \"Empty Cart\" button to WooCommerce cart page."
4147
- msgstr ""
4148
- "Hinzufügen und anpassen des \"Leerer Warenkorb\"-Buttons auf WooCommerce "
4149
- "Warenkorb-Seite."
4150
-
4151
- #: includes/class-wcj-empty-cart-button.php:74
4152
- msgid "Empty Cart Options"
4153
- msgstr "Optionen für Leerer Warenkorb"
4154
-
4155
- #: includes/class-wcj-empty-cart-button.php:76
4156
- msgid ""
4157
- "This section lets you add and customize \"Empty Cart\" button to cart page."
4158
- msgstr ""
4159
- "Dieser Abschnitt lässt Dich den \"Warenkorb leeren\"-Button auf Warenkorb-"
4160
- "Seite hinzufügen und anpassen."
4161
-
4162
- #: includes/class-wcj-empty-cart-button.php:80
4163
- msgid "Empty Cart Button Text"
4164
- msgstr "Leerer Warenkorb Beschriftungstext"
4165
-
4166
- #: includes/class-wcj-empty-cart-button.php:88
4167
- msgid "Wrapping DIV style"
4168
- msgstr "Umhüllender DIV-Stil"
4169
-
4170
- #: includes/class-wcj-empty-cart-button.php:89
4171
- msgid "Style for the button's div. Default is \"float: right;\""
4172
- msgstr "Stil für die Schaltfläche div. Voreinstellung ist \"float: right;\""
4173
-
4174
- #: includes/class-wcj-empty-cart-button.php:95
4175
- msgid "Button position on the Cart page"
4176
- msgstr "Button-Position auf der Warenkorb-Seite"
4177
-
4178
- #: includes/class-wcj-empty-cart-button.php:100
4179
- msgid "After Cart"
4180
- msgstr "Nach dem Warenkorb"
4181
-
4182
- #: includes/class-wcj-empty-cart-button.php:101
4183
- msgid "Before Cart"
4184
- msgstr "Vor dem Warenkorb"
4185
-
4186
- #: includes/class-wcj-empty-cart-button.php:102
4187
- msgid "After Proceed to Checkout button"
4188
- msgstr "Nach dem Fortfahren zur Kasse-Button"
4189
-
4190
- #: includes/class-wcj-empty-cart-button.php:103
4191
- msgid "After Cart Totals"
4192
- msgstr "Nach Warenkorb Gesamtsumme"
4193
-
4194
- #: includes/class-wcj-empty-cart-button.php:109
4195
- msgid "Button position on the Checkout page"
4196
- msgstr "Button-Position auf der Kassenseite"
4197
-
4198
- #: includes/class-wcj-empty-cart-button.php:114
4199
- #: includes/class-wcj-orders.php:501
4200
- msgid "Do not add"
4201
- msgstr "Nicht hinzufügen"
4202
-
4203
- #: includes/class-wcj-empty-cart-button.php:129
4204
- msgid "Confirmation"
4205
- msgstr "Bestätigung"
4206
-
4207
- #: includes/class-wcj-empty-cart-button.php:134
4208
- msgid "No confirmation"
4209
- msgstr "Keine Bestätigung"
4210
-
4211
- #: includes/class-wcj-empty-cart-button.php:135
4212
- msgid "Confirm by pop up box"
4213
- msgstr "bestätige mit Pop-up-Box"
4214
-
4215
- #: includes/class-wcj-empty-cart-button.php:139
4216
- msgid "Confirmation Text (if enabled)"
4217
- msgstr "Bestätigungstext (wenn aktiviert)"
4218
-
4219
- #: includes/class-wcj-empty-cart-button.php:141
4220
- #: includes/class-wcj-product-by-user.php:165
4221
- #: includes/classes/class-wcj-module.php:472
4222
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4223
- msgid "Are you sure?"
4224
- msgstr "Bist Du sicher?"
4225
-
4226
- #: includes/class-wcj-eu-vat-number.php:27
4227
- #: includes/class-wcj-eu-vat-number.php:137
4228
- #: includes/class-wcj-eu-vat-number.php:365
4229
- #: includes/class-wcj-eu-vat-number.php:372
4230
- msgid "EU VAT Number"
4231
- msgstr "Umsatzsteuer-Identifikationsnummer"
4232
-
4233
- #: includes/class-wcj-eu-vat-number.php:28
4234
- msgid ""
4235
- "Collect and validate EU VAT numbers on WooCommerce checkout. Automatically "
4236
- "disable VAT for valid numbers. Add all EU countries VAT standard rates to "
4237
- "WooCommerce."
4238
- msgstr ""
4239
- "Sammeln und Validieren von Umsatzsteuer-Identifikationsnummern auf "
4240
- "WooCommerce Kassenseite. Automatische Deaktivierung der Mehrwertsteuer für "
4241
- "gültige Nummern. Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-"
4242
- "Standard-Steuersätze hinzu."
4243
-
4244
- #: includes/class-wcj-eu-vat-number.php:34
4245
- msgid "EU Countries VAT Rates"
4246
- msgstr "EU-Länder Mehrwertsteuersätze"
4247
-
4248
- #: includes/class-wcj-eu-vat-number.php:35
4249
- msgid "Add all EU countries VAT standard rates to WooCommerce."
4250
- msgstr ""
4251
- "Füge in WooCommerce für alle EU-Länder die Mehrwertsteuer-Standard-"
4252
- "Steuersätze hinzu."
4253
-
4254
- #: includes/class-wcj-eu-vat-number.php:301
4255
- #: includes/class-wcj-eu-vat-number.php:425
4256
- msgid "<strong>EU VAT Number</strong> is not valid."
4257
- msgstr "<strong>Umsatzsteuer-Identifikationsnummer</strong> ist ungültig."
4258
-
4259
- #: includes/class-wcj-eu-vat-number.php:363
4260
- msgid "Field Label"
4261
- msgstr "Feldbeschriftung"
4262
-
4263
- #: includes/class-wcj-eu-vat-number.php:370
4264
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:221
4265
- msgid "Placeholder"
4266
- msgstr "Platzhalter"
4267
-
4268
- #: includes/class-wcj-eu-vat-number.php:397
4269
- msgid "Clear"
4270
- msgstr "Löschen"
4271
-
4272
- #: includes/class-wcj-eu-vat-number.php:404
4273
- msgid "Class"
4274
- msgstr "Klasse"
4275
-
4276
- #: includes/class-wcj-eu-vat-number.php:415
4277
- msgid "Validate"
4278
- msgstr "Bestätigen"
4279
-
4280
- #: includes/class-wcj-eu-vat-number.php:423
4281
- msgid "Message on not valid"
4282
- msgstr "Nachricht im Falle von ungültig"
4283
-
4284
- #: includes/class-wcj-eu-vat-number.php:430
4285
- msgid "Exempt VAT for Valid Numbers"
4286
- msgstr "Befreie berechtigte Identifikationsnummern von der Mehrwertsteuer"
4287
-
4288
- #: includes/class-wcj-eu-vat-number.php:437
4289
- msgid "Preserve VAT in Base Country"
4290
- msgstr "Mehrwertsteuer im Basisland beibehalten"
4291
-
4292
- #: includes/class-wcj-eu-vat-number.php:455
4293
- msgid "Check for IP Location Country"
4294
- msgstr "Überprüfen nach IP-Standort Land"
4295
-
4296
- #: includes/class-wcj-eu-vat-number.php:473
4297
- msgid "Display"
4298
- msgstr "Anzeigen"
4299
-
4300
- #: includes/class-wcj-eu-vat-number.php:478
4301
- msgid "After order table"
4302
- msgstr "Nach Bestellungen-Tabelle"
4303
-
4304
- #: includes/class-wcj-eu-vat-number.php:479
4305
- msgid "In billing address"
4306
- msgstr "In Rechnungsadresse"
4307
-
4308
- #: includes/class-wcj-export-import.php:29
4309
- msgid "WooCommerce export tools."
4310
- msgstr "WooCommerce Export Werkzeuge."
4311
-
4312
- #: includes/class-wcj-export-import.php:35
4313
- msgid "Export Customers"
4314
- msgstr "Kunden exportieren"
4315
-
4316
- #: includes/class-wcj-export-import.php:36
4317
- msgid "Export Customers."
4318
- msgstr "Kunden exportieren."
4319
-
4320
- #: includes/class-wcj-export-import.php:39
4321
- msgid "Export Customers from Orders"
4322
- msgstr "Kunden von Bestellungen exportieren "
4323
-
4324
- #: includes/class-wcj-export-import.php:40
4325
- msgid "Export Customers (extracted from orders)."
4326
- msgstr "Kunden exportieren (aus Bestellungen extrahiert)."
4327
-
4328
- #: includes/class-wcj-export-import.php:40
4329
- msgid "Customers are identified by billing email."
4330
- msgstr "Kunden werden nach Rechnungs-E-Mail-Adresse identifiziert."
4331
-
4332
- #: includes/class-wcj-export-import.php:43
4333
- msgid "Export Orders"
4334
- msgstr "Bestellungen exportieren"
4335
-
4336
- #: includes/class-wcj-export-import.php:44
4337
- msgid "Export Orders."
4338
- msgstr "Bestellungen exportieren."
4339
-
4340
- #: includes/class-wcj-export-import.php:47
4341
- msgid "Export Orders Items"
4342
- msgstr "Exportiere Bestellungsgegenstände"
4343
-
4344
- #: includes/class-wcj-export-import.php:48
4345
- msgid "Export Orders Items."
4346
- msgstr "Exportiere Bestellungsgegenstände."
4347
-
4348
- #: includes/class-wcj-export-import.php:51
4349
- msgid "Export Products"
4350
- msgstr "Produkte exportieren"
4351
-
4352
- #: includes/class-wcj-export-import.php:52
4353
- msgid "Export Products."
4354
- msgstr "Produkte exportieren."
4355
-
4356
- #: includes/class-wcj-export-import.php:194
4357
- #: includes/class-wcj-export-import.php:200
4358
- msgid "Filter by Billing Country"
4359
- msgstr "Nach den Rechnungsland filtern"
4360
-
4361
- #: includes/class-wcj-export-import.php:195
4362
- msgid "Filter by Product Title"
4363
- msgstr "Nach dem Produktitel filtern"
4364
-
4365
- #: includes/class-wcj-export-import.php:214 includes/class-wcj-orders.php:407
4366
- msgid "Filter"
4367
- msgstr "Filter"
4368
-
4369
- #: includes/class-wcj-export-import.php:233
4370
- msgid "Download CSV"
4371
- msgstr "CSV herunterladen"
4372
-
4373
- #: includes/class-wcj-export-import.php:235
4374
- msgid "Download XML"
4375
- msgstr "Download XML"
4376
-
4377
- #: includes/class-wcj-export-import.php:236
4378
- msgid "Filter by All Fields"
4379
- msgstr "Nach allen Feldern filtern"
4380
-
4381
- #: includes/class-wcj-export-import.php:303
4382
- msgid "Export Options"
4383
- msgstr "Export-Optionen"
4384
-
4385
- #: includes/class-wcj-export-import.php:308
4386
- msgid "CSV Separator"
4387
- msgstr "CSV Trennzeichen"
4388
-
4389
- #: includes/class-wcj-export-import.php:314
4390
- msgid "UTF-8 BOM"
4391
- msgstr "UTF-8 BOM"
4392
-
4393
- #: includes/class-wcj-export-import.php:316
4394
- msgid "Add UTF-8 BOM sequence"
4395
- msgstr "UTF-8 BOM Sequenz hinzufügen"
4396
-
4397
- #: includes/class-wcj-export-import.php:326
4398
- msgid "Export Orders Options"
4399
- msgstr "Exportiere Bestellungsoptionen"
4400
-
4401
- #: includes/class-wcj-export-import.php:331
4402
- msgid "Export Orders Fields"
4403
- msgstr "Exportiere Bestellungsfelder"
4404
-
4405
- #: includes/class-wcj-export-import.php:332
4406
- #: includes/class-wcj-export-import.php:400
4407
- #: includes/class-wcj-export-import.php:470
4408
- #: includes/class-wcj-export-import.php:538
4409
- #: includes/class-wcj-export-import.php:556
4410
- msgid "Hold \"Control\" key to select multiple fields."
4411
- msgstr "Halte die Taste \"Strg\" gedrückt, um mehrere Felder auszuwählen."
4412
-
4413
- #: includes/class-wcj-export-import.php:340
4414
- msgid "Additional Export Orders Fields"
4415
- msgstr ""
4416
- "Zusätzliche Bestellungs-Export-Felder\n"
4417
-
4418
- #: includes/class-wcj-export-import.php:363
4419
- #: includes/class-wcj-export-import.php:431
4420
- #: includes/class-wcj-export-import.php:501
4421
- #: includes/class-wcj-product-by-user.php:156
4422
- #: includes/class-wcj-product-tabs.php:421
4423
- #: includes/class-wcj-product-tabs.php:542
4424
- #: includes/class-wcj-purchase-data.php:323
4425
- #: includes/class-wcj-related-products.php:123
4426
- #: includes/gateways/class-wc-gateway-wcj-custom.php:68
4427
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:214
4428
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:113
4429
- #: includes/shipping/class-wc-shipping-wcj-custom.php:82
4430
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:259
4431
- msgid "Title"
4432
- msgstr "Titel"
4433
-
4434
- #: includes/class-wcj-export-import.php:369
4435
- #: includes/class-wcj-export-import.php:437
4436
- #: includes/class-wcj-export-import.php:507
4437
- #: includes/class-wcj-global-discount.php:250
4438
- #: includes/class-wcj-product-addons.php:466
4439
- #: includes/class-wcj-product-addons.php:583
4440
- #: includes/class-wcj-purchase-data.php:330
4441
- #: includes/export/class-wcj-fields-helper.php:289
4442
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
4443
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:120
4444
- #: includes/shipping/class-wc-shipping-wcj-custom.php:89
4445
- msgid "Type"
4446
- msgstr "Typ"
4447
-
4448
- #: includes/class-wcj-export-import.php:375
4449
- #: includes/class-wcj-export-import.php:443
4450
- msgid "Order Shortcode"
4451
- msgstr "Bestell-Shortcode"
4452
-
4453
- #: includes/class-wcj-export-import.php:379
4454
- #: includes/class-wcj-export-import.php:449
4455
- #: includes/class-wcj-export-import.php:517
4456
- #: includes/class-wcj-global-discount.php:260 includes/class-wcj-orders.php:476
4457
- msgid "Value"
4458
- msgstr "Betrag"
4459
-
4460
- #: includes/class-wcj-export-import.php:380
4461
- msgid ""
4462
- "If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
4463
- "(can be custom field name)."
4464
- msgstr ""
4465
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-Meta-"
4466
- "Schlüssel ein, um abzurufen (kann benutzerdefinierter Feldname sein)."
4467
-
4468
- #: includes/class-wcj-export-import.php:381
4469
- msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
4470
- msgstr ""
4471
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestell-Shortcodes."
4472
-
4473
- #: includes/class-wcj-export-import.php:394
4474
- msgid "Export Orders Items Options"
4475
- msgstr "Exportieren von Bestellungs-Gegenstände-Optionen"
4476
-
4477
- #: includes/class-wcj-export-import.php:399
4478
- msgid "Export Orders Items Fields"
4479
- msgstr "Exportieren von Bestellungs-Gegenstände-Felder"
4480
-
4481
- #: includes/class-wcj-export-import.php:408
4482
- msgid "Additional Export Orders Items Fields"
4483
- msgstr "Zusätzliche Bestellungs-Gegenstände-Export Felder"
4484
-
4485
- #: includes/class-wcj-export-import.php:445
4486
- #: includes/class-wcj-export-import.php:513
4487
- msgid "Product Shortcode"
4488
- msgstr "Produkt-Shortcode"
4489
-
4490
- #: includes/class-wcj-export-import.php:450
4491
- msgid ""
4492
- "If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
4493
- "retrieve (can be custom field name)."
4494
- msgstr ""
4495
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Bestell-/Produkt-"
4496
- "Meta-Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)"
4497
- "."
4498
-
4499
- #: includes/class-wcj-export-import.php:451
4500
- msgid ""
4501
- "If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
4502
- msgstr ""
4503
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Bestellungen/Produkt-"
4504
- "Shortcodes."
4505
-
4506
- #: includes/class-wcj-export-import.php:464
4507
- msgid "Export Products Options"
4508
- msgstr "Export Produkt-Optionen"
4509
-
4510
- #: includes/class-wcj-export-import.php:469
4511
- msgid "Export Products Fields"
4512
- msgstr "Export Produkt-Felder"
4513
-
4514
- #: includes/class-wcj-export-import.php:478
4515
- msgid "Additional Export Products Fields"
4516
- msgstr "Zusätzliche Export Produkt-Felder"
4517
-
4518
- #: includes/class-wcj-export-import.php:518
4519
- msgid ""
4520
- "If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
4521
- "(can be custom field name)."
4522
- msgstr ""
4523
- "Wenn der Feld-\"Typ\" auf \"Meta\" gesetzt ist, gib den Produkt-Meta-"
4524
- "Schlüssel ein, um abzurufen (kann ein benutzerdefinierter Feldname sein)."
4525
-
4526
- #: includes/class-wcj-export-import.php:519
4527
- msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
4528
- msgstr ""
4529
- "Wenn auf \"Shortcode\" gesetzt, verwende hier Booster's Produkt-Shortcodes."
4530
-
4531
- #: includes/class-wcj-export-import.php:532
4532
- msgid "Export Customers Options"
4533
- msgstr "Export Kunden-Optionen"
4534
-
4535
- #: includes/class-wcj-export-import.php:537
4536
- msgid "Export Customers Fields"
4537
- msgstr "Export Kunden-Felder"
4538
-
4539
- #: includes/class-wcj-export-import.php:550
4540
- msgid "Export Customers from Orders Options"
4541
- msgstr "Export Kunden von Bestell-Optionen"
4542
-
4543
- #: includes/class-wcj-export-import.php:555
4544
- msgid "Export Customers from Orders Fields"
4545
- msgstr "Export Kunden von Bestell-Feldern"
4546
-
4547
- #: includes/class-wcj-free-price.php:28
4548
- msgid "Free Price Labels"
4549
- msgstr "Kostenlos Preisetiketten"
4550
-
4551
- #: includes/class-wcj-free-price.php:29
4552
- msgid "WooCommerce free price labels."
4553
- msgstr "Woocommerce Kostenlos Preisetiketten."
4554
-
4555
- #: includes/class-wcj-free-price.php:72 includes/class-wcj-free-price.php:85
4556
- #: includes/class-wcj-free-price.php:95 includes/class-wcj-free-price.php:105
4557
- #: includes/class-wcj-free-price.php:152
4558
- msgid "Free!"
4559
- msgstr "Kostenlos!"
4560
-
4561
- #: includes/class-wcj-free-price.php:127
4562
- msgid "Labels can contain shortcodes."
4563
- msgstr "Etiketten können Shortcodes enthalten."
4564
-
4565
- #: includes/class-wcj-free-price.php:138
4566
- msgid "Simple and Custom Products"
4567
- msgstr "Einfache und benutzerdefinierte Produkte"
4568
-
4569
- #: includes/class-wcj-free-price.php:139
4570
- msgid "Variable Products"
4571
- msgstr "Variable Produkte"
4572
-
4573
- #: includes/class-wcj-free-price.php:140
4574
- msgid "Grouped Products"
4575
- msgstr "Gruppierte Produkte"
4576
-
4577
- #: includes/class-wcj-free-price.php:141
4578
- #: includes/class-wcj-product-add-to-cart.php:477
4579
- msgid "External Products"
4580
- msgstr "Externe Produkte"
4581
-
4582
- #: includes/class-wcj-free-price.php:144
4583
- msgid "Single Product Page"
4584
- msgstr "Einfaches Produkt Seite"
4585
-
4586
- #: includes/class-wcj-free-price.php:145
4587
- #: includes/class-wcj-related-products.php:25
4588
- msgid "Related Products"
4589
- msgstr "Ähnliche Produkte"
4590
-
4591
- #: includes/class-wcj-free-price.php:146
4592
- msgid "Homepage"
4593
- msgstr "Startseite"
4594
-
4595
- #: includes/class-wcj-free-price.php:147
4596
- msgid "Pages (e.g. Shortcodes)"
4597
- msgstr "Seiten (z.B. Shortcodes)"
4598
-
4599
- #: includes/class-wcj-free-price.php:148
4600
- msgid "Archives (Product Categories)"
4601
- msgstr "Archive (Produktkategorien)"
4602
-
4603
- #: includes/class-wcj-free-price.php:162
4604
- msgid "Variations"
4605
- msgstr "Varianten"
4606
-
4607
- #: includes/class-wcj-general.php:25 includes/class-wcj-pdf-invoicing.php:26
4608
- msgid "General"
4609
- msgstr "Allgemein"
4610
-
4611
- #: includes/class-wcj-general.php:26
4612
- msgid ""
4613
- "Separate custom CSS for front and back end. Shortcodes in WordPress text "
4614
- "widgets. Custom roles tool."
4615
- msgstr ""
4616
- "Trenne benutzerdefinierte CSS für Front- und Back-End. Shortcodes in "
4617
- "WordPress Text Widgets. Benutzerdefiniertes Benutzer-Rollenwerkzeug."
4618
-
4619
- #: includes/class-wcj-general.php:32
4620
- msgid "Products Atts"
4621
- msgstr "Produkte Atts"
4622
-
4623
- #: includes/class-wcj-general.php:33
4624
- msgid "All Products and All Attributes."
4625
- msgstr "Alle Produkte und alle Attribute"
4626
-
4627
- #: includes/class-wcj-general.php:36
4628
- msgid "Add/Manage Custom Roles"
4629
- msgstr "Hinzufügen/Verwalten von angepassten Benutzerrollen"
4630
-
4631
- #: includes/class-wcj-general.php:37
4632
- msgid "Custom Roles"
4633
- msgstr "Angepasste Benutzerrollen"
4634
-
4635
- #: includes/class-wcj-general.php:38
4636
- msgid "Manage Custom Roles."
4637
- msgstr "Verwaltung von angepassten Benutzerrollen."
4638
-
4639
- #: includes/class-wcj-general.php:106
4640
- msgid "Both fields are required!"
4641
- msgstr "Beide Felder werden benötigt!"
4642
-
4643
- #: includes/class-wcj-general.php:109
4644
- msgid "Role ID must not be numbers only!"
4645
- msgstr "Rollen-ID darf nur Nummern enthalten!"
4646
-
4647
- #: includes/class-wcj-general.php:113
4648
- msgid "Role successfully added!"
4649
- msgstr "Rolle erfolgreich hinzugefügt!"
4650
-
4651
- #: includes/class-wcj-general.php:115
4652
- msgid "Role already exists!"
4653
- msgstr "Rolle existiert bereits!"
4654
-
4655
- #: includes/class-wcj-general.php:123
4656
- msgid "Role %s successfully deleted!"
4657
- msgstr "Rolle %s erfolgreich gelöscht!"
4658
-
4659
- #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:142
4660
- #: includes/class-wcj-sku.php:166
4661
- #: includes/reports/wcj-class-reports-sales.php:170
4662
- msgid "ID"
4663
- msgstr "ID"
4664
-
4665
- #: includes/class-wcj-general.php:129 includes/class-wcj-general.php:143
4666
- #: includes/export/class-wcj-fields-helper.php:282
4667
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:72
4668
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:106
4669
- msgid "Name"
4670
- msgstr "Name"
4671
-
4672
- #: includes/class-wcj-general.php:129
4673
- #: includes/class-wcj-product-by-user.php:156
4674
- msgid "Actions"
4675
- msgstr "Aktionen"
4676
-
4677
- #: includes/class-wcj-general.php:135
4678
- #: includes/class-wcj-order-custom-statuses.php:220
4679
- #: includes/class-wcj-order-custom-statuses.php:242
4680
- #: includes/class-wcj-product-by-user.php:165
4681
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:151
4682
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:285
4683
- msgid "Delete"
4684
- msgstr "Löschen"
4685
-
4686
- #: includes/class-wcj-general.php:138
4687
- msgid "Existing Roles"
4688
- msgstr "Vorhandene Benutzerrollen"
4689
-
4690
- #: includes/class-wcj-general.php:144
4691
- msgid "Add New Role"
4692
- msgstr "Neue Benutzerrolle hinzufügen"
4693
-
4694
- #: includes/class-wcj-general.php:163
4695
- msgid "PayPal Email"
4696
- msgstr "PayPal Email"
4697
-
4698
- #: includes/class-wcj-general.php:228 includes/class-wcj-general.php:270
4699
- #: includes/class-wcj-product-bulk-price-converter.php:149
4700
- #: includes/class-wcj-sku.php:243
4701
- #: includes/reports/wcj-class-reports-sales.php:171
4702
- #: includes/reports/wcj-class-reports-stock.php:319
4703
- msgid "Product"
4704
- msgstr "Produkt"
4705
-
4706
- #: includes/class-wcj-general.php:229 includes/class-wcj-general.php:271
4707
- #: includes/reports/wcj-class-reports-stock.php:320
4708
- msgid "Category"
4709
- msgstr "Kategorie"
4710
-
4711
- #: includes/class-wcj-general.php:291
4712
- msgid "Total Products:"
4713
- msgstr "Produkte insgesamt:"
4714
-
4715
- #: includes/class-wcj-general.php:336
4716
- msgid "Shortcodes Options"
4717
- msgstr "Shortcode-Optionen"
4718
-
4719
- #: includes/class-wcj-general.php:341
4720
- msgid "Enable All Shortcodes in WordPress Text Widgets"
4721
- msgstr "Aktiviere alle Shortcodes in WordPress Text-Widgets"
4722
-
4723
- #: includes/class-wcj-general.php:342
4724
- msgid ""
4725
- "This will enable all (including non Booster's) shortcodes in WordPress text "
4726
- "widgets."
4727
- msgstr ""
4728
- "Dies aktiviert alle (auch nicht Booster-) Shortcodes in WordPress Text-"
4729
- "Widgets."
4730
-
4731
- #: includes/class-wcj-general.php:349
4732
- msgid "Disable Booster's Shortcodes"
4733
- msgstr "Deaktiviere Booster-Shortcodes"
4734
-
4735
- #: includes/class-wcj-general.php:350
4736
- msgid "Disable all Booster's shortcodes (for memory saving)."
4737
- msgstr "Deaktiviere alle Booster-Shortcodes (zur Speicherersparnis)."
4738
-
4739
- #: includes/class-wcj-general.php:351 includes/class-wcj-general.php:414
4740
- #: includes/class-wcj-general.php:428 includes/class-wcj-general.php:435
4741
- #: includes/class-wcj-general.php:442 includes/class-wcj-general.php:449
4742
- #: includes/class-wcj-product-add-to-cart.php:247
4743
- msgid "Disable"
4744
- msgstr "Deaktviere"
4745
-
4746
- #: includes/class-wcj-general.php:361
4747
- msgid "Custom CSS Options"
4748
- msgstr "Benutzerdefinierte CSS Optionen"
4749
-
4750
- #: includes/class-wcj-general.php:363
4751
- msgid "Another custom CSS, if you need one."
4752
- msgstr "Ein weiteres benutzerdefinierte CSS, wenn Du eins benötigst."
4753
-
4754
- #: includes/class-wcj-general.php:367
4755
- msgid "Custom CSS - Front end (Customers)"
4756
- msgstr "Benutzerdefinierte CSS - Frontend (Kunden)"
4757
-
4758
- #: includes/class-wcj-general.php:374
4759
- msgid "Custom CSS - Back end (Admin)"
4760
- msgstr "Benutzerdefinierte CSS - Backend (Admin)"
4761
-
4762
- #: includes/class-wcj-general.php:385 includes/class-wcj-general.php:390
4763
- msgid "Product Revisions"
4764
- msgstr "Produkt-Überarbeitungen"
4765
-
4766
- #: includes/class-wcj-general.php:401
4767
- msgid "Advanced Options"
4768
- msgstr "Erweiterte Optionen"
4769
-
4770
- #: includes/class-wcj-general.php:406
4771
- msgid "Recalculate Cart Totals on Every Page Load"
4772
- msgstr "Neuberechnung von Warenkorb-Gesamtsummen bei jedem Laden der Seite"
4773
-
4774
- #: includes/class-wcj-general.php:413
4775
- msgid "Disable Loading Datepicker/Weekpicker CSS"
4776
- msgstr "Deaktiviere das Laden von CSS des Datums-/Wochenwählers"
4777
-
4778
- #: includes/class-wcj-general.php:420
4779
- msgid "Datepicker/Weekpicker CSS"
4780
- msgstr "Datums-/Wochenwähler CSS"
4781
-
4782
- #: includes/class-wcj-general.php:427
4783
- msgid "Disable Loading Datepicker/Weekpicker JavaScript"
4784
- msgstr "Deaktiviere das Laden von JavaScript des Datums-/Wochenwählers"
4785
-
4786
- #: includes/class-wcj-general.php:434
4787
- msgid "Disable Loading Timepicker CSS"
4788
- msgstr "Deaktiviere das Laden von CSS des Zeitwählers"
4789
-
4790
- #: includes/class-wcj-general.php:441
4791
- msgid "Disable Loading Timepicker JavaScript"
4792
- msgstr "Deaktiviere das Laden von JavaScript des Zeitwählers"
4793
-
4794
- #: includes/class-wcj-general.php:448
4795
- msgid "Disable Saving PDFs in PHP directory for temporary files"
4796
- msgstr ""
4797
- "Deaktivieren von Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
4798
-
4799
- #: includes/class-wcj-general.php:459
4800
- msgid "PayPal Email per Product Options"
4801
- msgstr "PayPal-Email pro Produkt-Optionen"
4802
-
4803
- #: includes/class-wcj-general.php:464
4804
- msgid "PayPal Email per Product"
4805
- msgstr "PayPal-Email pro Produkt"
4806
-
4807
- #: includes/class-wcj-general.php:466
4808
- msgid "This will add new meta box to each product's edit page."
4809
- msgstr ""
4810
- "Dadurch wird der Bearbeitungsseite jedes Produkts ein neues Meta-Feld "
4811
- "hinzufügen."
4812
-
4813
- #: includes/class-wcj-general.php:476
4814
- msgid "Session Expiration Options"
4815
- msgstr "Sitzungsablauf-Optionen"
4816
-
4817
- #: includes/class-wcj-general.php:481 includes/class-wcj-general.php:496
4818
- msgid "Session Expiration"
4819
- msgstr "Sitzungsablauf"
4820
-
4821
- #: includes/class-wcj-general.php:488
4822
- msgid "Session Expiring"
4823
- msgstr "Sitzungs läuft ab"
4824
-
4825
- #: includes/class-wcj-general.php:489
4826
- msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
4827
- msgstr "In Sekunden. Standard: 47 Stunden (60 * 60 * 47)"
4828
-
4829
- #: includes/class-wcj-general.php:497
4830
- msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
4831
- msgstr "In Sekunden. Standard: 48 Stunden (60 * 60 * 48)"
4832
-
4833
- #: includes/class-wcj-global-discount.php:28
4834
- msgid "Global Discount"
4835
- msgstr "Globaler Rabatt"
4836
-
4837
- #: includes/class-wcj-global-discount.php:29
4838
- msgid "Add global discount to all WooCommerce products."
4839
- msgstr "Füge allen WooCommerce-Produkten einen Rabatt hinzu."
4840
-
4841
- #: includes/class-wcj-global-discount.php:220
4842
- msgid "Total Groups"
4843
- msgstr "Gruppen-Total"
4844
-
4845
- #: includes/class-wcj-global-discount.php:224
4846
- #: includes/class-wcj-products-xml.php:206
4847
- #: includes/shipping/class-wc-shipping-wcj-custom.php:112
4848
- msgid "Press Save changes after you change this number."
4849
- msgstr "Drücke \"Änderungen speichern\" nachdem Du die Nummer geändert hast."
4850
-
4851
- #: includes/class-wcj-global-discount.php:238
4852
- msgid "Discount Group"
4853
- msgstr "Rabatt-Gruppe"
4854
-
4855
- #: includes/class-wcj-global-discount.php:255
4856
- #: includes/class-wcj-payment-gateways-fees.php:165
4857
- #: includes/class-wcj-purchase-data.php:335
4858
- #: includes/class-wcj-wholesale-price.php:250
4859
- #: includes/class-wcj-wholesale-price.php:424
4860
- msgid "Percent"
4861
- msgstr "Prozent"
4862
-
4863
- #: includes/class-wcj-global-discount.php:256
4864
- #: includes/class-wcj-payment-gateways-fees.php:164
4865
- #: includes/class-wcj-purchase-data.php:334
4866
- #: includes/class-wcj-wholesale-price.php:251
4867
- #: includes/class-wcj-wholesale-price.php:425
4868
- msgid "Fixed"
4869
- msgstr "Festgelegt"
4870
-
4871
- #: includes/class-wcj-global-discount.php:261
4872
- msgid "Must be negative number."
4873
- msgstr "Muss negative Zahl sein."
4874
-
4875
- #: includes/class-wcj-global-discount.php:268
4876
- msgid "Product Scope"
4877
- msgstr "Produktumfang"
4878
-
4879
- #: includes/class-wcj-global-discount.php:273
4880
- msgid "All products"
4881
- msgstr "Alle Produkte"
4882
-
4883
- #: includes/class-wcj-global-discount.php:274
4884
- msgid "Only products that are already on sale"
4885
- msgstr "Nur Produkte, die bereits im Abverkauf sind"
4886
-
4887
- #: includes/class-wcj-global-discount.php:278
4888
- msgid "Include Product Categories"
4889
- msgstr "Produktkategorien einbeziehen"
4890
-
4891
- #: includes/class-wcj-global-discount.php:279
4892
- msgid ""
4893
- "Set this field to apply discount to selected categories only. Leave blank to "
4894
- "apply to all categories."
4895
- msgstr ""
4896
- "Setze dieses Feld, um den Rabatt nur auf ausgewählte Kategorien anzuwenden. "
4897
- "Leer lassen, um auf alle Kategorien anzuwenden."
4898
-
4899
- #: includes/class-wcj-left-to-free-shipping.php:27
4900
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
4901
- msgid "Left to Free Shipping"
4902
- msgstr "Übrig bis kostenloser Versand"
4903
-
4904
- #: includes/class-wcj-left-to-free-shipping.php:28
4905
- msgid "Display \"left to free shipping\" info in WooCommerce."
4906
- msgstr "Zeige \"übrig bis kostenloser Versand\"-Info in WooCommerce."
4907
-
4908
- #: includes/class-wcj-left-to-free-shipping.php:66
4909
- #: includes/class-wcj-left-to-free-shipping.php:76
4910
- #: includes/class-wcj-left-to-free-shipping.php:86
4911
- #: includes/class-wcj-left-to-free-shipping.php:148
4912
- #: includes/class-wcj-left-to-free-shipping.php:182
4913
- #: includes/class-wcj-left-to-free-shipping.php:220
4914
- #: includes/functions/wcj-functions.php:548
4915
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:53
4916
- msgid "%left_to_free% left to free shipping"
4917
- msgstr "%left_to_free% Übrig bis kostenloser Versand"
4918
-
4919
- #: includes/class-wcj-left-to-free-shipping.php:130
4920
- msgid "Left to Free Shipping Info Options"
4921
- msgstr "Übrig bis kostenloser Versand Informations-Optionen"
4922
-
4923
- #: includes/class-wcj-left-to-free-shipping.php:132
4924
- msgid ""
4925
- "This section lets you enable info on cart, mini cart and checkout pages."
4926
- msgstr ""
4927
- "Dieser Abschnitt lässt Dich Informationen zum Warenkorb, Mini-Warenkorb und "
4928
- "Kasse aktivieren."
4929
-
4930
- #: includes/class-wcj-left-to-free-shipping.php:133
4931
- msgid ""
4932
- "You can also use <em>Booster - Left to Free Shipping</em> widget, <em>"
4933
- "[wcj_get_left_to_free_shipping content=\"\"]</em> shortcode or <em>"
4934
- "wcj_get_left_to_free_shipping( $content );</em> function."
4935
- msgstr ""
4936
- "Du kannst auch das <em>Booster - Übrig bis kostenloser Versand</em>-Widget "
4937
- "nutzen, <em>[wcj_get_left_to_free_shipping content=\"\"]</em> Shortcode oder "
4938
- "<em>wcj_get_left_to_free_shipping( $content );</em>-Funktion."
4939
-
4940
- #: includes/class-wcj-left-to-free-shipping.php:134
4941
- msgid ""
4942
- "In content you can use: <em>%left_to_free%</em> and <em>"
4943
- "%free_shipping_min_amount%</em> shortcodes."
4944
- msgstr ""
4945
- "In Inhalt kannst Du nutzen: <em>%left_to_free%</em> und <em>"
4946
- "%free_shipping_min_amount%</em> Shortcodes."
4947
-
4948
- #: includes/class-wcj-left-to-free-shipping.php:138
4949
- msgid "Info on Cart"
4950
- msgstr "Informationen zum Warenkorb"
4951
-
4952
- #: includes/class-wcj-left-to-free-shipping.php:163
4953
- #: includes/class-wcj-left-to-free-shipping.php:201
4954
- #: includes/class-wcj-left-to-free-shipping.php:245
4955
- msgid "Position Order (Priority)"
4956
- msgstr "Position Bestellung (Priorität)"
4957
-
4958
- #: includes/class-wcj-left-to-free-shipping.php:170
4959
- msgid "Info on Mini Cart"
4960
- msgstr "Informationen zum Mini-Warenkorb"
4961
-
4962
- #: includes/class-wcj-left-to-free-shipping.php:193
4963
- #: includes/class-wcj-mini-cart.php:119
4964
- msgid "Before mini cart"
4965
- msgstr "Vor dem Mini-Warenkorb"
4966
-
4967
- #: includes/class-wcj-left-to-free-shipping.php:194
4968
- #: includes/class-wcj-mini-cart.php:120
4969
- msgid "Before buttons"
4970
- msgstr "Vor den Buttons"
4971
-
4972
- #: includes/class-wcj-left-to-free-shipping.php:195
4973
- #: includes/class-wcj-mini-cart.php:121
4974
- msgid "After mini cart"
4975
- msgstr "Nach dem Mini-Warenkorb"
4976
-
4977
- #: includes/class-wcj-left-to-free-shipping.php:208
4978
- msgid "Info on Checkout"
4979
- msgstr "Informationen zur Kasse"
4980
-
4981
- #: includes/class-wcj-left-to-free-shipping.php:252
4982
- msgid "Message on Free Shipping Reached"
4983
- msgstr "Nachricht für kostenlosen Versand erreicht"
4984
-
4985
- #: includes/class-wcj-left-to-free-shipping.php:253
4986
- msgid "You can set it empty"
4987
- msgstr "Du kannst es leer einstellen"
4988
-
4989
- #: includes/class-wcj-left-to-free-shipping.php:255
4990
- #: includes/functions/wcj-functions.php:588
4991
- msgid "You have Free delivery"
4992
- msgstr "Du hast kostenlose Lieferung"
4993
-
4994
- #: includes/class-wcj-mini-cart.php:26
4995
- msgid "Mini Cart"
4996
- msgstr "Mini-Warenkorb"
4997
-
4998
- #: includes/class-wcj-mini-cart.php:27
4999
- msgid "Customize WooCommerce mini cart widget."
5000
- msgstr "Anpassen des WooCommerce Mini-Warenkorb-Widgets."
5001
-
5002
- #: includes/class-wcj-mini-cart.php:74
5003
- msgid "Mini Cart Custom Info Blocks"
5004
- msgstr "Benutzerdefinierte Infoblöcke des Mini-Warenkorbs"
5005
-
5006
- #: includes/class-wcj-more-button-labels.php:26
5007
- msgid "More Button Labels"
5008
- msgstr "Weitere Button-Etiketten"
5009
-
5010
- #: includes/class-wcj-more-button-labels.php:27
5011
- msgid "Set WooCommerce \"Place order\" button label."
5012
- msgstr ""
5013
- "Definieren der WooCommerce \"Bestellung abschicken\"-Button-Beschriftung."
5014
-
5015
- #: includes/class-wcj-more-button-labels.php:52
5016
- msgid "Place order (Order now) Button"
5017
- msgstr "Bestellung abschicken (Jetzt kaufen) Button"
5018
-
5019
- #: includes/class-wcj-more-button-labels.php:59
5020
- msgid "leave blank for WooCommerce default"
5021
- msgstr "Leer lassen für WooCommerce-Voreinstellung"
5022
-
5023
- #: includes/class-wcj-more-button-labels.php:60
5024
- msgid "Button on the checkout page."
5025
- msgstr "Button auf der Kasse Seite."
5026
-
5027
- #: includes/class-wcj-multicurrency-product-base-price.php:27
5028
- msgid "Multicurrency Product Base Price"
5029
- msgstr "Multiwährungen Produktgrundpreis"
5030
-
5031
- #: includes/class-wcj-multicurrency-product-base-price.php:28
5032
- msgid "Enter prices for WooCommerce products in different currencies."
5033
- msgstr ""
5034
- "Gib die Preise für WooCommerce-Produkte in verschiedenen Währungen ein."
5035
-
5036
- #: includes/class-wcj-multicurrency.php:26
5037
- msgid "Multicurrency (Currency Switcher)"
5038
- msgstr "Multiwährungen (Währungsumschalter)"
5039
-
5040
- #: includes/class-wcj-multicurrency.php:27
5041
- msgid "Add multiple currencies (currency switcher) to WooCommerce."
5042
- msgstr "Füge mehrere Währungen (Währungsumschalter) WooCommerce hinzu."
5043
-
5044
- #: includes/class-wcj-multicurrency.php:76
5045
- #: includes/class-wcj-price-by-user-role.php:163
5046
- #: includes/class-wcj-product-by-user.php:205
5047
- #: includes/export/class-wcj-fields-helper.php:286
5048
- #: includes/price-by-country/class-wcj-price-by-country-local.php:129
5049
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:154
5050
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:298
5051
- msgid "Regular Price"
5052
- msgstr ""
5053
- "\n"
5054
- "Regulärer Preis"
5055
-
5056
- #: includes/class-wcj-multicurrency.php:85
5057
- #: includes/class-wcj-price-by-user-role.php:172
5058
- #: includes/class-wcj-product-by-user.php:206
5059
- #: includes/export/class-wcj-fields-helper.php:287
5060
- #: includes/price-by-country/class-wcj-price-by-country-local.php:136
5061
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:155
5062
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:306
5063
- msgid "Sale Price"
5064
- msgstr "Verkaufspreis"
5065
-
5066
- #: includes/class-wcj-multicurrency.php:371
5067
- msgid ""
5068
- "After setting currencies in the Currencies Options below, use <em>Booster - "
5069
- "Multicurrency Switcher</em> widget, or <em>"
5070
- "[wcj_currency_select_drop_down_list]</em> shortcode. If you want to insert "
5071
- "switcher in your PHP code, just use <em>echo do_shortcode( "
5072
- "'[wcj_currency_select_drop_down_list]' );</em>"
5073
- msgstr ""
5074
- "Nach dem Setzen von Währungen in den Währungsoptionen unten, nutze <em>"
5075
- "Booster - Multiwährungen-Umschalter</em> widget oder <em>"
5076
- "[wcj_currency_select_drop_down_list]</em> Shortcode. Wenn Du den Umschalter "
5077
- "in Deinem PHP-Code einfügen möchtest, nutze dafür einfach <em>echo "
5078
- "do_shortcode( '[wcj_currency_select_drop_down_list]' );</em>"
5079
-
5080
- #: includes/class-wcj-multicurrency.php:405
5081
- msgid "Multicurrency on per Product Basis"
5082
- msgstr "Multiwährungen auf einer pro Produktbasis"
5083
-
5084
- #: includes/class-wcj-multicurrency.php:407
5085
- msgid "This will add meta boxes in product edit."
5086
- msgstr "Dies wird Meta-Boxen der Produktbearbeitung hinzufügen."
5087
-
5088
- #: includes/class-wcj-multicurrency.php:413
5089
- #: includes/class-wcj-price-by-country.php:184
5090
- msgid "Revert Currency to Default on Checkout"
5091
- msgstr ""
5092
- "Zurücksetzen der Währung auf Voreinstellung, sobald Kassenseite geladen wird"
5093
-
5094
- #: includes/class-wcj-multicurrency.php:420
5095
- msgid "Rounding"
5096
- msgstr "Rundung"
5097
-
5098
- #: includes/class-wcj-multicurrency.php:421
5099
- msgid "If using exchange rates, choose rounding here."
5100
- msgstr "Wenn Du Wechselkurse verwendest, wähle hier die Rundung."
5101
-
5102
- #: includes/class-wcj-multicurrency.php:426
5103
- #: includes/class-wcj-price-by-country.php:198
5104
- msgid "No rounding"
5105
- msgstr "Keine Rundung"
5106
-
5107
- #: includes/class-wcj-multicurrency.php:427
5108
- #: includes/class-wcj-price-by-country.php:199
5109
- msgid "Round"
5110
- msgstr "Rund"
5111
-
5112
- #: includes/class-wcj-multicurrency.php:428
5113
- #: includes/class-wcj-price-by-country.php:201
5114
- msgid "Round up"
5115
- msgstr "Aufrunden"
5116
-
5117
- #: includes/class-wcj-multicurrency.php:429
5118
- #: includes/class-wcj-price-by-country.php:200
5119
- msgid "Round down"
5120
- msgstr "Abrunden"
5121
-
5122
- #: includes/class-wcj-multicurrency.php:433
5123
- msgid "Rounding Precision"
5124
- msgstr "Rundungsgenauigkeit"
5125
-
5126
- #: includes/class-wcj-multicurrency.php:434
5127
- msgid "If rounding enabled, set precision here."
5128
- msgstr "Wenn die Rundung aktiviert ist, stelle hier die Genauigkeit ein."
5129
-
5130
- #: includes/class-wcj-multicurrency.php:447
5131
- msgid ""
5132
- "One currency probably should be set to current (original) shop currency with "
5133
- "an exchange rate of 1."
5134
- msgstr ""
5135
- "Eine Währung sollte vielleicht auf die aktuelle (ursprüngliche) "
5136
- "Geschäftswährung mit einem Wechselkurs von 1 gesetzt werden."
5137
-
5138
- #: includes/class-wcj-multicurrency.php:503
5139
- msgid "Role Defaults"
5140
- msgstr "Standardrollen"
5141
-
5142
- #: includes/class-wcj-multicurrency.php:505
5143
- #: includes/class-wcj-order-min-amount.php:263
5144
- #: includes/class-wcj-price-by-user-role.php:414
5145
- msgid ""
5146
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5147
- "<a href=\"%s\">General</a> module."
5148
- msgstr ""
5149
- "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5150
- "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5151
- "Allgemein</a> hinzugefügt werden."
5152
-
5153
- #: includes/class-wcj-multicurrency.php:510
5154
- msgid "Roles"
5155
- msgstr "Rollen"
5156
-
5157
- #: includes/class-wcj-multicurrency.php:511
5158
- #: includes/class-wcj-wholesale-price.php:497
5159
- msgid "Save settings after you change this option. Leave blank to disable."
5160
- msgstr ""
5161
- "Speichere die Einstellungen nach der Änderung dieser Option. Leer lassen zum "
5162
- "Deaktivieren."
5163
-
5164
- #: includes/class-wcj-multicurrency.php:534
5165
- msgid "No default currency"
5166
- msgstr "Keine Standardwährung"
5167
-
5168
- #: includes/class-wcj-old-slugs.php:25
5169
- msgid "Old Slugs"
5170
- msgstr "Alte Slugs"
5171
-
5172
- #: includes/class-wcj-old-slugs.php:26
5173
- msgid "Remove old WooCommerce products slugs."
5174
- msgstr "Alte WooCommerce-Produkt-Slugs entfernen."
5175
-
5176
- #: includes/class-wcj-old-slugs.php:32
5177
- msgid "Remove Old Slugs"
5178
- msgstr "Entferne alte Slugs"
5179
-
5180
- #: includes/class-wcj-old-slugs.php:33 includes/class-wcj-old-slugs.php:90
5181
- msgid "Tool removes old slugs/permalinks from database."
5182
- msgstr "Wekrzeug entfernt alte Slugs/Permalinks aus der Datenbank."
5183
-
5184
- #: includes/class-wcj-old-slugs.php:89
5185
- msgid "Booster - Remove Old Product Slugs"
5186
- msgstr "Booster - Entferne alte Produkt-Slugs"
5187
-
5188
- #: includes/class-wcj-old-slugs.php:95
5189
- msgid "Old products slugs found:"
5190
- msgstr "Alte Produkt-Slugs gefunden:"
5191
-
5192
- #: includes/class-wcj-old-slugs.php:103
5193
- msgid "None-products slugs found:"
5194
- msgstr "Keine Produkt-Slugs gefunden:"
5195
-
5196
- #: includes/class-wcj-old-slugs.php:110
5197
- msgid "No old slugs found."
5198
- msgstr "Keine alten Slugs gefunden."
5199
-
5200
- #: includes/class-wcj-order-custom-statuses.php:26
5201
- msgid "Order Custom Statuses"
5202
- msgstr "Benutzerdefinierte Bestellzustände"
5203
-
5204
- #: includes/class-wcj-order-custom-statuses.php:27
5205
- msgid "Custom statuses for WooCommerce orders."
5206
- msgstr "Benutzerdefinierte Zustände für WooCommerce-Bestellungen"
5207
-
5208
- #: includes/class-wcj-order-custom-statuses.php:33
5209
- #: includes/class-wcj-order-custom-statuses.php:311
5210
- msgid "Custom Statuses"
5211
- msgstr "Benutzerdefinierte Zustände"
5212
-
5213
- #: includes/class-wcj-order-custom-statuses.php:34
5214
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
5215
- msgstr ""
5216
- "Mit diesem Werkzeug kannst Du jeden benutzerdefinierten Zustand für "
5217
- "WooCommerce-Bestellungen hinzufügen oder löschen."
5218
-
5219
- #: includes/class-wcj-order-custom-statuses.php:64
5220
- msgctxt "Order status"
5221
- msgid "Pending payment"
5222
- msgstr "Ausstehende Zahlung"
5223
-
5224
- #: includes/class-wcj-order-custom-statuses.php:65
5225
- #: includes/functions/wcj-functions.php:1160
5226
- msgctxt "Order status"
5227
- msgid "Processing"
5228
- msgstr "Verarbeitung"
5229
-
5230
- #: includes/class-wcj-order-custom-statuses.php:66
5231
- msgctxt "Order status"
5232
- msgid "On hold"
5233
- msgstr "In Wartestellung"
5234
-
5235
- #: includes/class-wcj-order-custom-statuses.php:67
5236
- #: includes/functions/wcj-functions.php:1162
5237
- msgctxt "Order status"
5238
- msgid "Completed"
5239
- msgstr "Abgeschlossen"
5240
-
5241
- #: includes/class-wcj-order-custom-statuses.php:68
5242
- #: includes/functions/wcj-functions.php:1163
5243
- msgctxt "Order status"
5244
- msgid "Cancelled"
5245
- msgstr "Abgebrochen"
5246
-
5247
- #: includes/class-wcj-order-custom-statuses.php:69
5248
- #: includes/functions/wcj-functions.php:1164
5249
- msgctxt "Order status"
5250
- msgid "Refunded"
5251
- msgstr "Rückerstattet"
5252
-
5253
- #: includes/class-wcj-order-custom-statuses.php:70
5254
- #: includes/functions/wcj-functions.php:1165
5255
- msgctxt "Order status"
5256
- msgid "Failed"
5257
- msgstr "Fehlgeschlagen"
5258
-
5259
- #: includes/class-wcj-order-custom-statuses.php:160
5260
- msgid "Status slug is empty. Status was not added!"
5261
- msgstr "Status-Slug ist leer. Status wurde nicht hinzugefügt!"
5262
-
5263
- #: includes/class-wcj-order-custom-statuses.php:163
5264
- msgid ""
5265
- "The length of status slug must be 17 or less characters. Status was not "
5266
- "added!"
5267
- msgstr ""
5268
- "Die Länge des Status-Slugs muss 17 oder weniger Zeichen sein. Status wurde "
5269
- "nicht hinzugefügt!"
5270
-
5271
- #: includes/class-wcj-order-custom-statuses.php:166
5272
- msgid "Status label is empty. Status was not added!"
5273
- msgstr "Status-Label ist leer. Status wurde nicht hinzugefügt!"
5274
-
5275
- #: includes/class-wcj-order-custom-statuses.php:173
5276
- msgid "Duplicate slug. Status was not added!"
5277
- msgstr "Doppelter Slug. Status wurde nicht hinzugefügt!"
5278
-
5279
- #: includes/class-wcj-order-custom-statuses.php:183
5280
- msgid "New status has been successfully added!"
5281
- msgstr "Neuer Status wurde erfolgreich hinzugefügt!"
5282
-
5283
- #: includes/class-wcj-order-custom-statuses.php:185
5284
- msgid "Status was not added."
5285
- msgstr "Zustand wurde nicht hinzugefügt."
5286
-
5287
- #: includes/class-wcj-order-custom-statuses.php:203
5288
- msgid "Status has been successfully deleted."
5289
- msgstr "Status wurde erfolgreich gelöscht."
5290
-
5291
- #: includes/class-wcj-order-custom-statuses.php:205
5292
- msgid "Delete failed."
5293
- msgstr "Löschung fehlgeschlagen."
5294
-
5295
- #: includes/class-wcj-order-custom-statuses.php:210
5296
- msgid "Booster - Custom Statuses"
5297
- msgstr "Booster - benutzerdefinierter Zustand"
5298
-
5299
- #: includes/class-wcj-order-custom-statuses.php:211
5300
- msgid ""
5301
- "The tool lets you add or delete any custom status for WooCommerce orders."
5302
- msgstr ""
5303
- "Mit dem Werkzeug kannst Du jeden benutzerdefinierten Status für WooCommerce-"
5304
- "Bestellungen hinzufügen oder löschen."
5305
-
5306
- #: includes/class-wcj-order-custom-statuses.php:213
5307
- msgid "Statuses"
5308
- msgstr "Zustände"
5309
-
5310
- #: includes/class-wcj-order-custom-statuses.php:216
5311
- msgid "Slug"
5312
- msgstr "Titelform"
5313
-
5314
- #: includes/class-wcj-order-custom-statuses.php:218
5315
- #: includes/class-wcj-order-custom-statuses.php:257
5316
- msgid "Icon Code"
5317
- msgstr "Symbolcode"
5318
-
5319
- #: includes/class-wcj-order-custom-statuses.php:219
5320
- #: includes/class-wcj-order-custom-statuses.php:259
5321
- msgid "Icon Color"
5322
- msgstr "Symbol Farbe"
5323
-
5324
- #: includes/class-wcj-order-custom-statuses.php:255
5325
- msgid "Slug (without wc- prefix)"
5326
- msgstr "Slug (ohne wc- Präfix)"
5327
-
5328
- #: includes/class-wcj-order-custom-statuses.php:258
5329
- msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
5330
- msgstr ""
5331
- "Du kannst die Symbolcodes <a target=\"_blank\" href=\"%s\">hier</a> "
5332
- "überprüfen."
5333
-
5334
- #: includes/class-wcj-order-custom-statuses.php:261
5335
- msgid "Add new custom status"
5336
- msgstr "Neuen benutzerdefinierten Status hinzufügen"
5337
-
5338
- #: includes/class-wcj-order-custom-statuses.php:283
5339
- #: includes/class-wcj-order-custom-statuses.php:284
5340
- msgid "Mark"
5341
- msgstr "Kennzeichen"
5342
-
5343
- #: includes/class-wcj-order-custom-statuses.php:316
5344
- #: includes/gateways/class-wc-gateway-wcj-custom.php:138
5345
- msgid "Default Order Status"
5346
- msgstr "Standardbestellzustand"
5347
-
5348
- #: includes/class-wcj-order-custom-statuses.php:317
5349
- #: includes/gateways/class-wc-gateway-wcj-custom.php:139
5350
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
5351
- msgstr ""
5352
- "Aktiviere die Funktion \"Benutzerdefinierter Zustand\", um sie der Liste "
5353
- "benutzerdefinierter Zustände hinzuzufügen."
5354
-
5355
- #: includes/class-wcj-order-custom-statuses.php:318
5356
- msgid ""
5357
- "You can change the default order status here. However payment gateways can "
5358
- "change this status immediatelly on order creation. E.g. BACS gateway will "
5359
- "change status to On-hold."
5360
- msgstr ""
5361
- "Hier kannst Du den voreingestellten Bestellzustand ändern. Allerdings können "
5362
- "Zahlungs-Gateways diesen Status sofort bei der Bestellerstellung ändern. z.B."
5363
- " das BACS-Gateway wechselt den Zustand auf \"In Wartestellung\"."
5364
-
5365
- #: includes/class-wcj-order-custom-statuses.php:325
5366
- msgid "Add All Statuses to Admin Order Bulk Actions"
5367
- msgstr "Alle Zustände den Administrator-Bestellung-Bulk-Aktionen hinzufügen"
5368
-
5369
- #: includes/class-wcj-order-custom-statuses.php:332
5370
- msgid "Add Custom Statuses to Admin Reports"
5371
- msgstr "Hinzufügen von benutzerdefinierten Zuständen zu Administratorberichten"
5372
-
5373
- #: includes/class-wcj-order-min-amount.php:27
5374
- #: includes/class-wcj-order-min-amount.php:198
5375
- msgid "Order Minimum Amount"
5376
- msgstr "Bestellmindestbetrag"
5377
-
5378
- #: includes/class-wcj-order-min-amount.php:28
5379
- msgid "Minimum WooCommerce order amount (optionally by user role)."
5380
- msgstr "Mindest-WooCommerce-Bestellmenge (optional nach Benutzerrolle)."
5381
-
5382
- #: includes/class-wcj-order-min-amount.php:200
5383
- msgid "This section lets you set minimum order amount."
5384
- msgstr "Dieser Abschnitt lässt Dich die minimale Bestellmenge festlegen."
5385
-
5386
- #: includes/class-wcj-order-min-amount.php:204
5387
- msgid "Amount"
5388
- msgstr "Betrag"
5389
-
5390
- #: includes/class-wcj-order-min-amount.php:205
5391
- msgid "Minimum order amount. Set to 0 to disable."
5392
- msgstr "Minimaler Bestellwert. Auf 0 stellen um zu deaktivieren."
5393
-
5394
- #: includes/class-wcj-order-min-amount.php:215
5395
- msgid "Exclude Shipping from Cart Total"
5396
- msgstr "Versandkosten aus der Gesamtsumme im Warenkorb ausschließen"
5397
-
5398
- #: includes/class-wcj-order-min-amount.php:216
5399
- msgid "Exclude"
5400
- msgstr "Ausschließen"
5401
-
5402
- #: includes/class-wcj-order-min-amount.php:222
5403
- msgid "Error message"
5404
- msgstr "Fehlermeldung"
5405
-
5406
- #: includes/class-wcj-order-min-amount.php:224
5407
- #: includes/class-wcj-order-min-amount.php:241
5408
- msgid ""
5409
- "Message to customer if order is below minimum amount. Default: You must have "
5410
- "an order with a minimum of %s to place your order, your current order total "
5411
- "is %s."
5412
- msgstr ""
5413
- "Nachricht an Kunden, wenn Auftrag unter der Mindestmenge ist. Voreinstellung:"
5414
- " Du musst einen Auftrag mit einem Minimum von %s haben, um Deine Bestellung "
5415
- "abschicken zu können, die aktuelle Gesamtsumme Ihrer Bestellung beträgt %s."
5416
-
5417
- #: includes/class-wcj-order-min-amount.php:232
5418
- msgid "Add notice to cart page also"
5419
- msgstr "Dem Warenkorb auch einen Hinweis hinzufügen"
5420
-
5421
- #: includes/class-wcj-order-min-amount.php:239
5422
- msgid "Message on cart page"
5423
- msgstr "Nachricht auf Warenkorbseite"
5424
-
5425
- #: includes/class-wcj-order-min-amount.php:249
5426
- msgid ""
5427
- "Stop customer from seeing the Checkout page if minimum amount not reached."
5428
- msgstr ""
5429
- "Der Kunde bekommt die Kassenseite nicht zu sehen, wenn der Mindestbetrag "
5430
- "nicht erreicht wurde."
5431
-
5432
- #: includes/class-wcj-order-min-amount.php:250
5433
- msgid "Redirect back to Cart page"
5434
- msgstr "Zurück zur Warenkorb-Seite"
5435
-
5436
- #: includes/class-wcj-order-min-amount.php:260
5437
- msgid "Order Minimum Amount by User Role"
5438
- msgstr "Bestellmindestbetrag nach Benutzerrolle"
5439
-
5440
- #: includes/class-wcj-order-numbers.php:25
5441
- #: includes/class-wcj-order-numbers.php:203
5442
- msgid "Order Numbers"
5443
- msgstr "Bestellnummern"
5444
-
5445
- #: includes/class-wcj-order-numbers.php:26
5446
- msgid ""
5447
- "WooCommerce sequential order numbering, custom order number prefix, suffix "
5448
- "and number width."
5449
- msgstr ""
5450
- "WooCommerce aufeinanderfolgende Bestellnummerierung, benutzerdefinierte "
5451
- "Bestellnummern Präfix und Nummernbreite."
5452
-
5453
- #: includes/class-wcj-order-numbers.php:32
5454
- msgid "Orders Renumerate"
5455
- msgstr "Bestellungen renumerieren"
5456
-
5457
- #: includes/class-wcj-order-numbers.php:33
5458
- msgid "Tool renumerates all orders."
5459
- msgstr "Werkzeug renumeriert alle Bestellungen"
5460
-
5461
- #: includes/class-wcj-order-numbers.php:114
5462
- msgid "Orders successfully renumerated!"
5463
- msgstr "Bestellungen erfolgreich renumeriert!"
5464
-
5465
- #: includes/class-wcj-order-numbers.php:118
5466
- msgid ""
5467
- "Press the button below to renumerate all existing orders starting from order "
5468
- "counter settings in WooCommerce > Settings > Booster > Order Numbers."
5469
- msgstr ""
5470
- "Drücke auf den Button unten, um alle vorhandenen Bestellungen zur "
5471
- "renumerieren, beginnend von der Bestellungen-Zählereinstellungen in "
5472
- "WooCmmerce > Einstellungen > Booster > Bestellnummern"
5473
-
5474
- #: includes/class-wcj-order-numbers.php:121
5475
- msgid "Renumerate orders"
5476
- msgstr "Renumeriere Bestellungen"
5477
-
5478
- #: includes/class-wcj-order-numbers.php:205
5479
- msgid ""
5480
- "This section lets you enable sequential order numbering, set custom number "
5481
- "prefix, suffix and width."
5482
- msgstr ""
5483
- "Dieser Abschnitt lässt Dich die fortlaufende Bestellnummerierung aktivieren, "
5484
- "benutzerspezifisches Nummern Präfix, Suffix und Breite festlegen."
5485
-
5486
- #: includes/class-wcj-order-numbers.php:209
5487
- msgid "Make Order Numbers Sequential"
5488
- msgstr "Erzeuge aufeinanderfolgende Bestellnummern"
5489
-
5490
- #: includes/class-wcj-order-numbers.php:216
5491
- msgid "Next Order Number"
5492
- msgstr "Nächste Bestellnummer"
5493
-
5494
- #: includes/class-wcj-order-numbers.php:217
5495
- msgid "Next new order will be given this number."
5496
- msgstr "Nächste Neubestellung erhält diese Nummer."
5497
-
5498
- #: includes/class-wcj-order-numbers.php:217
5499
- msgid "Use Renumerate Orders tool for existing orders."
5500
- msgstr ""
5501
- "Nutze das Werkzeug \"Bestellungen renumerieren\" für vorhandene Bestellungen"
5502
-
5503
- #: includes/class-wcj-order-numbers.php:218
5504
- msgid "This will be ignored if sequential order numbering is disabled."
5505
- msgstr ""
5506
- "Dies wird ignoriert wenn aufeinanderfolgende Bestellnummerierung deaktiviert "
5507
- "ist."
5508
-
5509
- #: includes/class-wcj-order-numbers.php:224
5510
- msgid "Order Number Custom Prefix"
5511
- msgstr "Benutzerdefinierter Bestellnummer-Präfix"
5512
-
5513
- #: includes/class-wcj-order-numbers.php:225
5514
- msgid ""
5515
- "Prefix before order number (optional). This will change the prefixes for all "
5516
- "existing orders."
5517
- msgstr ""
5518
- "Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5519
- "vorhandenen Bestellungen."
5520
-
5521
- #: includes/class-wcj-order-numbers.php:232
5522
- msgid "Order Number Date Prefix"
5523
- msgstr "Bestellnummer Datums-Präfix"
5524
-
5525
- #: includes/class-wcj-order-numbers.php:234
5526
- msgid ""
5527
- "Date prefix before order number (optional). This will change the prefixes "
5528
- "for all existing orders. Value is passed directly to PHP `date` function, so "
5529
- "most of PHP date formats can be used. The only exception is using `\\` "
5530
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5531
- " or mdy."
5532
- msgstr ""
5533
- "Datums-Präfix vor Bestellnummer (optional). Dies ändert die Präfixe für alle "
5534
- "vorhandenen Bestellungen. Der wird direkt an die PHP `date` Funktion "
5535
- "weitergegeben, daher können die meisten PHP date Formate genutzt werden. Die "
5536
- "einzige Ausnahme is das `\\` Symbol im Datumsformat, denn dieses Symbol wird "
5537
- "von einem Datum ausgeschlossen. Versuche: Y-m-d- or mdy."
5538
-
5539
- #: includes/class-wcj-order-numbers.php:242
5540
- msgid "Order Number Width"
5541
- msgstr "Bestellnummernbreite"
5542
-
5543
- #: includes/class-wcj-order-numbers.php:244
5544
- msgid ""
5545
- "Minimum width of number without prefix (zeros will be added to the left side)"
5546
- ". This will change the minimum width of order number for all existing orders."
5547
- " E.g. set to 5 to have order number displayed as 00001 instead of 1. Leave "
5548
- "zero to disable."
5549
- msgstr ""
5550
- "Minimale Breite der Nummer ohne Präfix (Nullen werden auf der linken Seite "
5551
- "hinzugefügt). Dies ändert die Mindestbreite der Bestellnummer für alle "
5552
- "bestehenden Bestellungen. z.B. Auf 5 gesetzt, damit die Bestellnummer als "
5553
- "00001 anstelle von 1 angezeigt wird. Lasse Null um zu deaktivieren."
5554
-
5555
- #: includes/class-wcj-order-numbers.php:252
5556
- msgid "Order Number Custom Suffix"
5557
- msgstr "Bestellnummer benutzerdefinierter Suffix"
5558
-
5559
- #: includes/class-wcj-order-numbers.php:254
5560
- msgid ""
5561
- "Suffix after order number (optional). This will change the suffixes for all "
5562
- "existing orders."
5563
- msgstr ""
5564
- "Suffix nach der Bestellnummer (optional). Dies ändert die Suffixe für alle "
5565
- "vorhandenen Bestellungen."
5566
-
5567
- #: includes/class-wcj-order-numbers.php:262
5568
- msgid "Order Number Date Suffix"
5569
- msgstr "Bestellnummer Datum Suffix"
5570
-
5571
- #: includes/class-wcj-order-numbers.php:264
5572
- msgid ""
5573
- "Date suffix after order number (optional). This will change the suffixes for "
5574
- "all existing orders. Value is passed directly to PHP `date` function, so "
5575
- "most of PHP date formats can be used. The only exception is using `\\` "
5576
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-d-"
5577
- " or mdy."
5578
- msgstr ""
5579
- "Datumssuffix nach Bestellnummer (optional). Dies ändert die Suffixe für alle "
5580
- "vorhandenen Bestellungen. Wert wird direkt an PHP `date`-Funktion übergeben, "
5581
- "so dass die meisten PHP-Datumsformate verwendet werden können. Die einzige "
5582
- "Ausnahme ist die Verwendung von `\\` Symbol im Datumsformat, da dieses "
5583
- "Symbol vom Datum ausgeschlossen wird. Versuche: Y-m-d- oder mdy."
5584
-
5585
- #: includes/class-wcj-order-numbers.php:272
5586
- msgid "Use MySQL Transaction"
5587
- msgstr "Verwende MySQL-Transaktion"
5588
-
5589
- #: includes/class-wcj-order-numbers.php:274
5590
- msgid ""
5591
- "This should be enabled if you have a lot of simultaneous orders in your shop "
5592
- "- to prevent duplicate order numbers (sequential)."
5593
- msgstr ""
5594
- "Dies sollte aktiviert sein, wenn Du viele gleichzeitige Bestellungen in "
5595
- "Deinem Shop hast - um doppelte Bestellnummern (aufeinanderfolgend) zu "
5596
- "verhindern."
5597
-
5598
- #: includes/class-wcj-order-numbers.php:280
5599
- msgid "Enable Order Tracking by Custom Number"
5600
- msgstr "Auftragsnachverfolgung nach Kundennummer aktivieren"
5601
-
5602
- #: includes/class-wcj-orders.php:25
5603
- msgid "Orders"
5604
- msgstr "Bestellungen"
5605
-
5606
- #: includes/class-wcj-orders.php:26
5607
- msgid ""
5608
- "Orders auto-complete. Custom admin order list columns. Admin order currency. "
5609
- "Admin order list multiple status filtering."
5610
- msgstr ""
5611
- "Aufträge automatisch abschließen. Benutzerdefinierte Admin-"
5612
- "Bestelllistenspalten. Admin-Bestellwährung. Admin-Bestellliste "
5613
- "Mehrfachstatusfilterung."
5614
-
5615
- #: includes/class-wcj-orders.php:129
5616
- msgid "Not Completed"
5617
- msgstr "Nicht vollständig"
5618
-
5619
- #: includes/class-wcj-orders.php:235
5620
- #: includes/export/class-wcj-fields-helper.php:117
5621
- #: includes/export/class-wcj-fields-helper.php:202
5622
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:261
5623
- msgid "Order Currency"
5624
- msgstr "Bestellwährung"
5625
-
5626
- #: includes/class-wcj-orders.php:236
5627
- msgid "Save order after you change this field."
5628
- msgstr "Bestellung speichern nach dem Du das Feld geändert hast."
5629
-
5630
- #: includes/class-wcj-orders.php:264
5631
- msgid "All countries"
5632
- msgstr "Alle Länder"
5633
-
5634
- #: includes/class-wcj-orders.php:388 includes/class-wcj-orders.php:393
5635
- msgid "Admin Order Currency"
5636
- msgstr "Admin Bestellwährung"
5637
-
5638
- #: includes/class-wcj-orders.php:395
5639
- msgid ""
5640
- "When enabled this will add \"Booster: Orders\" metabox to each order's edit "
5641
- "page."
5642
- msgstr "Wenn aktiviert, fügt man \"Booster: Bestellungen\"-Metabox hinzu."
5643
-
5644
- #: includes/class-wcj-orders.php:401
5645
- msgid "Admin Order Currency Method"
5646
- msgstr "Admin Bestellwährung-Methode"
5647
-
5648
- #: includes/class-wcj-orders.php:402
5649
- msgid ""
5650
- "Choose if you want changed order currency to be saved directly to DB, or if "
5651
- "you want to use filter. When using <em>filter</em> method, changes will be "
5652
- "active only when \"Admin Order Currency\" section is enabled. When using <em>"
5653
- "directly to DB</em> method, changes will be permanent, that is even if "
5654
- "Booster plugin is removed."
5655
- msgstr ""
5656
- "Wähle aus, ob die geänderte Bestellwährung direkt in Datenbank gespeichert "
5657
- "werden soll oder ob Du Filter verwenden möchtest. Wenn Du die <em>filter</em>"
5658
- "-Methode verwendest, werden die Änderungen nur dann aktiviert, wenn der "
5659
- "Abschnitt \"Admin Bestellwährung\" aktiviert ist. Bei der Verwendung der <em>"
5660
- "Direkt in Datenbank</em>-Methode sind Änderungen dauerhaft, so auch wenn das "
5661
- "Booster-Plugin entfernt wird."
5662
-
5663
- #: includes/class-wcj-orders.php:408
5664
- msgid "Directly to DB"
5665
- msgstr "Direkt in Datenbank"
5666
-
5667
- #: includes/class-wcj-orders.php:416
5668
- msgid "Orders Auto-Complete"
5669
- msgstr "Automatische Bestellvervollständigung"
5670
-
5671
- #: includes/class-wcj-orders.php:418
5672
- msgid "This section lets you enable orders auto-complete function."
5673
- msgstr ""
5674
- "Dieser Abschnitt lässt Dich Bestellungs-Auto-Vervollständigungsfunktion "
5675
- "aktivieren."
5676
-
5677
- #: includes/class-wcj-orders.php:422
5678
- msgid "Auto-complete all WooCommerce orders"
5679
- msgstr "Automatische Vervollständigung aller WooCommerce-Bestellungen"
5680
-
5681
- #: includes/class-wcj-orders.php:424
5682
- msgid ""
5683
- "E.g. if you sell digital products then you are not shipping anything and you "
5684
- "may want auto-complete all your orders."
5685
- msgstr ""
5686
- "Z.B. Wenn Du digitale Produkte verkaufst, dann versende nichts und Du willst "
5687
- "vielleicht die Bestellungen automatisch abwickeln."
5688
-
5689
- #: includes/class-wcj-orders.php:434
5690
- msgid "Admin Orders List Custom Columns"
5691
- msgstr "Admin-Bestellliste benutzerdefinierte Spalten"
5692
-
5693
- #: includes/class-wcj-orders.php:436 includes/class-wcj-purchase-data.php:386
5694
- msgid "This section lets you add custom columns to WooCommerce orders list."
5695
- msgstr ""
5696
- "Dieser Abschnitt lässt Dich benutzerdefinierte Spalten der WooCommerce-"
5697
- "Bestellliste hinzufügen."
5698
-
5699
- #: includes/class-wcj-orders.php:447
5700
- msgid "Custom Columns Total Number"
5701
- msgstr "Gesamtanzahl benutzerdefinierter Spalten"
5702
-
5703
- #: includes/class-wcj-orders.php:462
5704
- msgid "Custom Column"
5705
- msgstr "benutzerdefinierte Spalte"
5706
-
5707
- #: includes/class-wcj-orders.php:477
5708
- msgid "You can use shortcodes here."
5709
- msgstr "Hier kannst Du Shortcodes verwenden."
5710
-
5711
- #: includes/class-wcj-orders.php:491
5712
- msgid "Admin Orders List Multiple Status"
5713
- msgstr "Admin-Bestellliste Mehrfache Status"
5714
-
5715
- #: includes/class-wcj-orders.php:496
5716
- msgid "Multiple Status Filtering"
5717
- msgstr "Mehrfache Statusfilterung"
5718
-
5719
- #: includes/class-wcj-orders.php:502
5720
- msgid "Add as multiple select"
5721
- msgstr "Als Mehrfachauswahl hinzufügen"
5722
-
5723
- #: includes/class-wcj-orders.php:503
5724
- msgid "Add as checkboxes"
5725
- msgstr "Als Kontrollkästchen hinzufügen"
5726
-
5727
- #: includes/class-wcj-orders.php:507
5728
- msgid "Hide Default Statuses Menu"
5729
- msgstr "Ausblenden des Standard-Status-Menüs"
5730
-
5731
- #: includes/class-wcj-orders.php:514
5732
- msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
5733
- msgstr "Hinzufügen \"Nicht vollständig\"-Status-Link zum Standard-Status-Menü"
5734
-
5735
- #: includes/class-wcj-orders.php:525
5736
- msgid "Admin Orders List Columns Order"
5737
- msgstr "Admin-Bestellliste Spaltenreihenfolge"
5738
-
5739
- #: includes/class-wcj-orders.php:530
5740
- msgid "Columns Order"
5741
- msgstr "Spalten-Reihenfolge"
5742
-
5743
- #: includes/class-wcj-orders.php:538
5744
- msgid "Default columns order"
5745
- msgstr "Standard Spalten-Reihenfolge"
5746
-
5747
- #: includes/class-wcj-payment-gateways-by-country.php:26
5748
- msgid "Gateways by Country or State"
5749
- msgstr "Gateways nach Land oder Staat"
5750
-
5751
- #: includes/class-wcj-payment-gateways-by-country.php:27
5752
- msgid ""
5753
- "Set countries or states to include/exclude for WooCommerce payment gateways "
5754
- "to show up."
5755
- msgstr ""
5756
- "Lege ein-/auszuschließende Länder oder Staaten fest, die von WooCommerce-"
5757
- "Zahlungs-Gateways angezeigt werden sollen."
5758
-
5759
- #: includes/class-wcj-payment-gateways-by-country.php:90
5760
- #: includes/class-wcj-payment-gateways-by-user-role.php:83
5761
- msgid "Leave empty to disable."
5762
- msgstr "Leer lassen, um zu deaktivieren."
5763
-
5764
- #: includes/class-wcj-payment-gateways-by-country.php:111
5765
- msgid "Include Countries"
5766
- msgstr "Länder einschließen"
5767
-
5768
- #: includes/class-wcj-payment-gateways-by-country.php:123
5769
- msgid "Exclude Countries"
5770
- msgstr "Länder ausschließen"
5771
-
5772
- #: includes/class-wcj-payment-gateways-by-country.php:135
5773
- msgid "Include States (Base Country)"
5774
- msgstr "Staaten einschließen (Basisland)"
5775
-
5776
- #: includes/class-wcj-payment-gateways-by-country.php:147
5777
- msgid "Exclude States (Base Country)"
5778
- msgstr "Staaten ausschließen (Basisland)"
5779
-
5780
- #: includes/class-wcj-payment-gateways-by-user-role.php:27
5781
- msgid "Gateways by User Role"
5782
- msgstr "Gateways nach Benutzerrolle"
5783
-
5784
- #: includes/class-wcj-payment-gateways-by-user-role.php:28
5785
- msgid ""
5786
- "Set user roles to include/exclude for WooCommerce payment gateways to show "
5787
- "up."
5788
- msgstr ""
5789
- "Einstellen von Benutzerrollen die ein-/ausschließen können WooCommerce "
5790
- "Gateways anzuzeigen"
5791
-
5792
- #: includes/class-wcj-payment-gateways-by-user-role.php:84
5793
- #: includes/class-wcj-product-by-user.php:258
5794
- msgid ""
5795
- "Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
5796
- "<a href=\"%s\">General</a> module"
5797
- msgstr ""
5798
- "Benutzerdefinierte Rollen können über das Werkzeug \"Hinzufügen/Verwalten "
5799
- "von angepassten Benutzerrollen\" im Booster-Modul <a href=\"%s\">"
5800
- "Allgemein</a> hinzugefügt werden"
5801
-
5802
- #: includes/class-wcj-payment-gateways-by-user-role.php:105
5803
- msgid "Include User Roles"
5804
- msgstr "Benutzerrollen einschließen"
5805
-
5806
- #: includes/class-wcj-payment-gateways-by-user-role.php:117
5807
- msgid "Exclude User Roles"
5808
- msgstr "Benutzerrollen ausschließen"
5809
-
5810
- #: includes/class-wcj-payment-gateways-currency.php:26
5811
- msgid "Gateways Currency"
5812
- msgstr "Währung von Gateways"
5813
-
5814
- #: includes/class-wcj-payment-gateways-currency.php:27
5815
- msgid "Currency per WooCommerce payment gateway."
5816
- msgstr "Währung pro WooCommerce Zahlungs-Gateway."
5817
-
5818
- #: includes/class-wcj-payment-gateways-currency.php:228
5819
- msgid "Payment Gateways Currency Options"
5820
- msgstr "Zahlungs-Gateways Währungs-Optionen"
5821
-
5822
- #: includes/class-wcj-payment-gateways-currency.php:230
5823
- msgid "This section lets you set different currency for each payment gateway."
5824
- msgstr ""
5825
- "Dieser Abschnitt lässt Dich unterschiedliche Währungen für jeden "
5826
- "Zahlungsanbieter festlegen."
5827
-
5828
- #: includes/class-wcj-payment-gateways-currency.php:262
5829
- msgid "No changes"
5830
- msgstr "Keine Änderungen"
5831
-
5832
- #: includes/class-wcj-payment-gateways-fees.php:26
5833
- msgid "Gateways Fees and Discounts"
5834
- msgstr "Gateways Gebühren und Rabatte"
5835
-
5836
- #: includes/class-wcj-payment-gateways-fees.php:27
5837
- msgid "Enable extra fees or discounts for WooCommerce payment gateways."
5838
- msgstr ""
5839
- "Ermögliche zusätzliche Gebühren oder Rabatte für WooCommerce Zahlungs-"
5840
- "Gateways."
5841
-
5842
- #: includes/class-wcj-payment-gateways-fees.php:138
5843
- msgid "Payment Gateways Fees and Discounts Options"
5844
- msgstr "Zahlung Gateways Gebühren und Rabatt Optionen"
5845
-
5846
- #: includes/class-wcj-payment-gateways-fees.php:140
5847
- msgid "This section lets you set extra fees for payment gateways."
5848
- msgstr ""
5849
- "Dieser Abschnitt lässt Dich Zusatzgebühren für Zahlungsanbieter festlegen."
5850
-
5851
- #: includes/class-wcj-payment-gateways-fees.php:150
5852
- msgid "Fee (or discount) title to show to customer."
5853
- msgstr "Gebühren (oder Rabatt)-Titel, der dem Kunden angezeigt wird."
5854
-
5855
- #: includes/class-wcj-payment-gateways-fees.php:158
5856
- msgid "Fee (or discount) type."
5857
- msgstr "Gebühren (oder Rabatt)-Art"
5858
-
5859
- #: includes/class-wcj-payment-gateways-fees.php:159
5860
- msgid "Percent or fixed value."
5861
- msgstr "Prozent oder festgelegter Betrag."
5862
-
5863
- #: includes/class-wcj-payment-gateways-fees.php:170
5864
- msgid "Fee (or discount) value."
5865
- msgstr "Gebühren (oder Rabatt)-Betrag"
5866
-
5867
- #: includes/class-wcj-payment-gateways-fees.php:171
5868
- msgid "The value. For discount enter a negative number."
5869
- msgstr "Der Betrag. Für Rabatt gib eine negative Zahl ein."
5870
-
5871
- #: includes/class-wcj-payment-gateways-fees.php:181
5872
- msgid "Minimum cart amount for adding the fee (or discount)."
5873
- msgstr ""
5874
- "Mindest-Warenkorb-Betrag für das Hinzufügen der Gebühr (oder des Rabattes)."
5875
-
5876
- #: includes/class-wcj-payment-gateways-fees.php:182
5877
- #: includes/class-wcj-payment-gateways-fees.php:194
5878
- msgid "Set 0 to disable."
5879
- msgstr "Zum Deaktivieren 0 setzen."
5880
-
5881
- #: includes/class-wcj-payment-gateways-fees.php:193
5882
- msgid "Maximum cart amount for adding the fee (or discount)."
5883
- msgstr ""
5884
- "Maximaler Warenkorb-Wert für das Hinzufügen der Gebühr (oder des Rabattes)."
5885
-
5886
- #: includes/class-wcj-payment-gateways-fees.php:205
5887
- msgid "Round the fee (or discount) value before adding to the cart."
5888
- msgstr ""
5889
- "Runden der Gebühr (oder des Rabatt)-Wertes, bevor es dem Warenkorb "
5890
- "hinzugefügt wird."
5891
-
5892
- #: includes/class-wcj-payment-gateways-fees.php:213
5893
- msgid "If rounding is enabled, set precision here."
5894
- msgstr "Wenn Rundung aktiviert ist, hier die Genauigkeit einstellen."
5895
-
5896
- #: includes/class-wcj-payment-gateways-fees.php:225
5897
- msgid "Is taxable?"
5898
- msgstr "Ist es steuerpflichtig?"
5899
-
5900
- #: includes/class-wcj-payment-gateways-fees.php:232
5901
- msgid "Tax Class (only if Taxable selected)."
5902
- msgstr "Steuerklasse (nur wenn steuerpflichtig ausgewählt)."
5903
-
5904
- #: includes/class-wcj-payment-gateways-fees.php:236
5905
- msgid "Standard Rate"
5906
- msgstr "Normalsatz"
5907
-
5908
- #: includes/class-wcj-payment-gateways-icons.php:26
5909
- msgid "Gateways Icons"
5910
- msgstr "Gateways-Symbole"
5911
-
5912
- #: includes/class-wcj-payment-gateways-icons.php:27
5913
- msgid ""
5914
- "Change or completely remove icons (images) for any (default or custom) "
5915
- "WooCommerce payment gateway."
5916
- msgstr ""
5917
- "Ändern oder vollständiges Entfernen von Symbolen (Bilder) für beliebige "
5918
- "(Voreingestellt- oder benutzerdefinierte) WooCommerce-Zahlungs-Gateways."
5919
-
5920
- #: includes/class-wcj-payment-gateways-icons.php:97
5921
- #: includes/gateways/class-wc-gateway-wcj-custom.php:103
5922
- msgid ""
5923
- "If you want to show an image next to the gateway's name on the frontend, "
5924
- "enter a URL to an image."
5925
- msgstr ""
5926
- "Wenn Du ein Bild neben dem Namen des Gateways im Frontend anzeigen möchtest, "
5927
- "gib eine URL zu einem Bild ein."
5928
-
5929
- #: includes/class-wcj-payment-gateways-icons.php:114
5930
- msgid "Leave blank to set WooCommerce default value"
5931
- msgstr "Leer lassen, um den voreingestellten WooCommerce-Wert festzulegen"
5932
-
5933
- #: includes/class-wcj-payment-gateways-icons.php:125
5934
- msgid "Remove Icon"
5935
- msgstr "Symbol entfernen"
5936
-
5937
- #: includes/class-wcj-payment-gateways-min-max.php:26
5938
- msgid "Gateways Min/Max"
5939
- msgstr "Gateways Min/Max"
5940
-
5941
- #: includes/class-wcj-payment-gateways-min-max.php:27
5942
- msgid "Add min/max amounts for WooCommerce payment gateways to show up."
5943
- msgstr ""
5944
- "Füge min/max Beträge hinzu um WooCommerce Zahlungs-Gateways anzuzeigen."
5945
-
5946
- #: includes/class-wcj-payment-gateways-min-max.php:73
5947
- msgid "General Options"
5948
- msgstr "Allgemeine Optionen"
5949
-
5950
- #: includes/class-wcj-payment-gateways-min-max.php:78
5951
- msgid "Exclude Shipping"
5952
- msgstr "Versand ausschließen"
5953
-
5954
- #: includes/class-wcj-payment-gateways-min-max.php:79
5955
- msgid ""
5956
- "Exclude shipping from total cart sum, when comparing with min/max amounts."
5957
- msgstr ""
5958
- "Versand ausschließen von Gesamt-Warenkorb-Summe, wenn mit min/max Beträgen "
5959
- "verglichen wird."
5960
-
5961
- #: includes/class-wcj-payment-gateways-min-max.php:92
5962
- msgid "Leave zero to disable."
5963
- msgstr "Lasse Null um zu deaktivieren."
5964
-
5965
- #: includes/class-wcj-payment-gateways-min-max.php:111
5966
- msgid "Min"
5967
- msgstr "Min"
5968
-
5969
- #: includes/class-wcj-payment-gateways-min-max.php:120
5970
- msgid "Max"
5971
- msgstr "Max"
5972
-
5973
- #: includes/class-wcj-payment-gateways-per-category.php:26
5974
- msgid "Gateways per Product or Category"
5975
- msgstr "Gateways pro Produkt oder Kategorie"
5976
-
5977
- #: includes/class-wcj-payment-gateways-per-category.php:27
5978
- msgid ""
5979
- "Show WooCommerce gateway only if there is selected product or product "
5980
- "category in cart."
5981
- msgstr ""
5982
- "WooCommerce Gateway nur anzeigen, wenn im Warenkorb ein ausgewähltes Produkt "
5983
- "oder Produktkategorie ist."
5984
-
5985
- #: includes/class-wcj-payment-gateways-per-category.php:184
5986
- #: includes/class-wcj-price-labels.php:716
5987
- msgid "Product Categories - Include"
5988
- msgstr "Produkt-Kategorien - Einschließen"
5989
-
5990
- #: includes/class-wcj-payment-gateways-per-category.php:185
5991
- msgid ""
5992
- "Show gateway only if there is product of selected category in cart. Leave "
5993
- "blank to disable the option."
5994
- msgstr ""
5995
- "Zeige Gateway nur, wenn sich ein Produkt der ausgewählten Kategorie im "
5996
- "Warenkorb befindet. Leer lassen, um die Option zu deaktivieren."
5997
-
5998
- #: includes/class-wcj-payment-gateways-per-category.php:195
5999
- #: includes/class-wcj-price-labels.php:726
6000
- msgid "Product Categories - Exclude"
6001
- msgstr "Produkt-Kategorien - Ausschließen"
6002
-
6003
- #: includes/class-wcj-payment-gateways-per-category.php:196
6004
- msgid ""
6005
- "Hide gateway if there is product of selected category in cart. Leave blank "
6006
- "to disable the option."
6007
- msgstr ""
6008
- "Gateway ausblenden, wenn sich ein Produkt der ausgewählten Kategorie im "
6009
- "Einkaufswagen befindet. Leer lassen, um die Option zu deaktivieren."
6010
-
6011
- #: includes/class-wcj-payment-gateways-per-category.php:206
6012
- #: includes/class-wcj-price-labels.php:696
6013
- msgid "Products - Include"
6014
- msgstr "Produkt - Einschließen"
6015
-
6016
- #: includes/class-wcj-payment-gateways-per-category.php:207
6017
- msgid ""
6018
- "Show gateway only if there is selected products in cart. Leave blank to "
6019
- "disable the option."
6020
- msgstr ""
6021
- "Gateway nur anzeigen, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6022
- "Leer lassen, um die Option zu deaktivieren."
6023
-
6024
- #: includes/class-wcj-payment-gateways-per-category.php:218
6025
- #: includes/class-wcj-price-labels.php:706
6026
- msgid "Products - Exclude"
6027
- msgstr "Produkt - Ausschließen"
6028
-
6029
- #: includes/class-wcj-payment-gateways-per-category.php:219
6030
- msgid ""
6031
- "Hide gateway if there is selected products in cart. Leave blank to disable "
6032
- "the option."
6033
- msgstr ""
6034
- "Gateway ausblenden, wenn im Warenkorb ausgewählte Produkte vorhanden sind. "
6035
- "Leer lassen, um die Option zu deaktivieren."
6036
-
6037
- #: includes/class-wcj-payment-gateways.php:25
6038
- msgid "Custom Gateways"
6039
- msgstr "Benutzerdefinierte Gateways"
6040
-
6041
- #: includes/class-wcj-payment-gateways.php:26
6042
- msgid "Add multiple custom payment gateways to WooCommerce."
6043
- msgstr "Füge mehrere benutzerdefinierte Zahlungs-Gateways WooCommerce hinzu."
6044
-
6045
- #: includes/class-wcj-payment-gateways.php:55
6046
- msgid "%s Fields"
6047
- msgstr "%s Felder"
6048
-
6049
- #: includes/class-wcj-payment-gateways.php:116
6050
- msgid "WooCommerce > Settings > Checkout"
6051
- msgstr "WooCommerce > Einstellungen > Kasse"
6052
-
6053
- #: includes/class-wcj-payment-gateways.php:119
6054
- msgid "Custom Payment Gateways Options"
6055
- msgstr "Benutzerdefinierte Zahlungs-Gateway-Optionen"
6056
-
6057
- #: includes/class-wcj-payment-gateways.php:122
6058
- msgid "This section lets you set number of custom payment gateways to add."
6059
- msgstr ""
6060
- "Dieser Abschnitt lässt Dich die Anzahl von benutzerdefinierten "
6061
- "Zahlungsanbietern, die hinzugefügt werden sollen, festlegen."
6062
-
6063
- #: includes/class-wcj-payment-gateways.php:123
6064
- msgid "After setting the number, visit %s to set each gateway options."
6065
- msgstr ""
6066
- "Nachdem Du die Anzahl festgelegt hast, besuche %s, um die einzelnen Gateway-"
6067
- "Optionen festzulegen."
6068
-
6069
- #: includes/class-wcj-payment-gateways.php:126
6070
- msgid "Number of Gateways"
6071
- msgstr "Anzahl der Gateways"
6072
-
6073
- #: includes/class-wcj-payment-gateways.php:128
6074
- msgid ""
6075
- "Number of custom payments gateways to be added. All settings for each new "
6076
- "gateway are in WooCommerce > Settings > Checkout."
6077
- msgstr ""
6078
- "Anzahl der hinzuzufügenden benutzerdefinierten Zahlungs-Gateways. Für jedes "
6079
- "neue Gateway befinde sich alle Einstellungen in WooCommerce > Einstellungen >"
6080
- " Kasse."
6081
-
6082
- #: includes/class-wcj-payment-gateways.php:139
6083
- msgid "Admin Title Custom Gateway"
6084
- msgstr "Admin-Titel Benutzerdefiniertes Gateway"
6085
-
6086
- #: includes/class-wcj-payment-gateways.php:141
6087
- #: includes/gateways/class-wc-gateway-wcj-custom.php:353
6088
- msgid "Custom Gateway"
6089
- msgstr "Benutzerdefiniertes Gateway"
6090
-
6091
- #: includes/class-wcj-pdf-invoicing.php:25
6092
- msgid "PDF Invoicing"
6093
- msgstr "PDF-Rechnung"
6094
-
6095
- #: includes/class-wcj-pdf-invoicing.php:27
6096
- msgid ""
6097
- "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
6098
- msgstr ""
6099
- "WooCommerce Rechnungen, Proforma-Rechnungen, Gutschriften und Packzettel."
6100
-
6101
- #: includes/class-wcj-pdf-invoicing.php:33
6102
- msgid "Invoices Renumerate"
6103
- msgstr "Rechnungen renumerieren"
6104
-
6105
- #: includes/class-wcj-pdf-invoicing.php:34
6106
- msgid ""
6107
- "Tool renumerates all invoices, proforma invoices, credit notes and packing "
6108
- "slips."
6109
- msgstr ""
6110
- "Werkzeug berechnet alle Rechnungen, Proforma-Rechnungen, Gutschriften und "
6111
- "Packzettel."
6112
-
6113
- #: includes/class-wcj-pdf-invoicing.php:37
6114
- msgid "Invoices Report"
6115
- msgstr "Rechnungs-Berichte"
6116
-
6117
- #: includes/class-wcj-pdf-invoicing.php:38
6118
- msgid "Invoices Monthly Reports."
6119
- msgstr "monatliche Rechnungsberichte."
6120
-
6121
- #: includes/class-wcj-pdf-invoicing.php:89
6122
- #: includes/class-wcj-pdf-invoicing.php:90
6123
- #: includes/class-wcj-price-by-country.php:270
6124
- #: includes/class-wcj-price-by-country.php:275
6125
- #: includes/class-wcj-price-by-country.php:280
6126
- msgid "Generate"
6127
- msgstr "Generieren"
6128
-
6129
- #: includes/class-wcj-pdf-invoicing.php:97
6130
- #: includes/class-wcj-pdf-invoicing.php:98
6131
- msgid "Download"
6132
- msgstr "Download"
6133
-
6134
- #: includes/class-wcj-pdf-invoicing.php:114
6135
- msgid "Document generated."
6136
- msgid_plural "%s documents generated."
6137
- msgstr[0] "Dokument generiert."
6138
- msgstr[1] "%s Dokumente generiert."
6139
-
6140
- #: includes/class-wcj-pdf-invoicing.php:220
6141
- #: includes/classes/class-wcj-pdf-invoice.php:266
6142
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:195
6143
- msgid "Unexpected error"
6144
- msgstr "Unerwarteter Fehler"
6145
-
6146
- #: includes/class-wcj-pdf-invoicing.php:360
6147
- msgid "PDF Invoicing General Options"
6148
- msgstr "Allgemeine Optionen der PDF-Rechnung"
6149
-
6150
- #: includes/class-wcj-pdf-invoicing.php:369
6151
- msgid "Create on New Order"
6152
- msgstr "Erstelle bei neuer Bestellung"
6153
-
6154
- #: includes/class-wcj-pdf-invoicing.php:372
6155
- msgid "Create on Order Status"
6156
- msgstr "Erstelle nach Bestellzustand"
6157
-
6158
- #: includes/class-wcj-pdf-invoicing.php:374
6159
- msgid "Manual Only"
6160
- msgstr "Ausschließlich manuell"
6161
-
6162
- #: includes/class-wcj-pdf-invoicing.php:393
6163
- msgid "Do not create if order total equals zero"
6164
- msgstr "Nicht erstellen, wenn die Auftragsgesamtmenge gleich Null ist"
6165
-
6166
- #: includes/class-wcj-pdf-invoicing.php:399
6167
- msgid "Hide Disabled Docs Settings"
6168
- msgstr "Deaktivierte Dokumenteinstellungen ausblenden"
6169
-
6170
- #: includes/class-wcj-price-by-country.php:25
6171
- msgid "Prices and Currencies by Country"
6172
- msgstr "Preise und Währungen nach Ländern"
6173
-
6174
- #: includes/class-wcj-price-by-country.php:26
6175
- msgid ""
6176
- "Change WooCommerce product price and currency automatically by customer's "
6177
- "country."
6178
- msgstr ""
6179
- "Ändere den WooCommerce-Produktpreis und -währung automatisch nach dem Land "
6180
- "des Kunden."
6181
-
6182
- #: includes/class-wcj-price-by-country.php:92
6183
- msgid "Price filter widget product prices recalculated."
6184
- msgstr "Preisfilter-Widget Produktpreise neu berechnet."
6185
-
6186
- #: includes/class-wcj-price-by-country.php:140
6187
- msgid "Price by Country Options"
6188
- msgstr "Preis nach Land Optionen"
6189
-
6190
- #: includes/class-wcj-price-by-country.php:142
6191
- msgid ""
6192
- "Change product's price and currency by customer's country. Customer's "
6193
- "country is detected automatically by IP, or selected by customer manually."
6194
- msgstr ""
6195
- "Ändere den Produktpreis und -währung nach dem Land des Kunden. Das Land des "
6196
- "Kunden wird automatisch über die IP erkannt oder vom Kunden manuell "
6197
- "ausgewählt."
6198
-
6199
- #: includes/class-wcj-price-by-country.php:147
6200
- msgid "Customer Country Detection Method"
6201
- msgstr "Kundenland-Erkennungsmethode"
6202
-
6203
- #: includes/class-wcj-price-by-country.php:149
6204
- msgid ""
6205
- "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
6206
- "shortcode to display country selection list on frontend."
6207
- msgstr ""
6208
- "Wenn Du \"durch Benutzerauswahl\" wählst, nutze "
6209
- "[wcj_country_select_drop_down_list] Shortcode, um Länderauswahl-Liste im "
6210
- "Frontend anzuzeigen."
6211
-
6212
- #: includes/class-wcj-price-by-country.php:153
6213
- msgid "by IP"
6214
- msgstr "nach IP"
6215
-
6216
- #: includes/class-wcj-price-by-country.php:154
6217
- msgid "by IP, then by user selection"
6218
- msgstr "nach IP, dann durch Benutzerauswahl"
6219
-
6220
- #: includes/class-wcj-price-by-country.php:155
6221
- msgid "by user selection"
6222
- msgstr "durch Benutzerauswahl"
6223
-
6224
- #: includes/class-wcj-price-by-country.php:172
6225
- msgid "Override Country Options"
6226
- msgstr "Länderoptionen überschreiben"
6227
-
6228
- #: includes/class-wcj-price-by-country.php:177
6229
- msgid "No Override"
6230
- msgstr "Nicht überschreiben"
6231
-
6232
- #: includes/class-wcj-price-by-country.php:178
6233
- msgid "Override Country with Customer's Checkout Billing Country"
6234
- msgstr "Überschreibe Land mit Kunden-Abrechnungsland in Kasse"
6235
-
6236
- #: includes/class-wcj-price-by-country.php:179
6237
- msgid "Override Country with Customer's Checkout Shipping Country"
6238
- msgstr "Überschreibe Land mit dem in der Kasse gewählten Land"
6239
-
6240
- #: includes/class-wcj-price-by-country.php:192
6241
- msgid "Price Rounding"
6242
- msgstr "Preisrundung"
6243
-
6244
- #: includes/class-wcj-price-by-country.php:193
6245
- msgid "If you choose to multiply price, set rounding options here."
6246
- msgstr ""
6247
- "Wenn SDu dich dafür entscheidest, den Preis zu multiplizieren, lege hier "
6248
- "Rundungsoptionen fest."
6249
-
6250
- #: includes/class-wcj-price-by-country.php:206
6251
- msgid "Price by Country on per Product Basis"
6252
- msgstr "Preis nach Land auf pro Produktbasis"
6253
-
6254
- #: includes/class-wcj-price-by-country.php:208
6255
- msgid "This will add product data fields in product edit."
6256
- msgstr "Hiermit werden Produktdatenfelder in Produktbearbeitung hinzugefügt."
6257
-
6258
- #: includes/class-wcj-price-by-country.php:215
6259
- msgid "Price Filter Widget and Sorting by Price Support"
6260
- msgstr "Preis-Filter-Widget und Sortierung nach Preis Unterstützung"
6261
-
6262
- #: includes/class-wcj-price-by-country.php:218
6263
- msgid "Recalculate price filter widget and sorting by price product prices"
6264
- msgstr ""
6265
- "Neuberechnungs-Preisfilter-Widget und sortieren nach Preis-Produktpreisen"
6266
-
6267
- #: includes/class-wcj-price-by-country.php:225
6268
- msgid "Add Countries Flags Images to Select Drop-Down Box"
6269
- msgstr "Länderflaggen-Bilder hinzufügen, um die Dropdown-Box auszuwählen"
6270
-
6271
- #: includes/class-wcj-price-by-country.php:227
6272
- msgid ""
6273
- "If you are using [wcj_country_select_drop_down_list] shortcode or \"Booster: "
6274
- "Country Switcher\" widget, this will add country flags to these select boxes."
6275
- msgstr ""
6276
- "Wenn Du [wcj_country_select_drop_down_list] Shortcode oder \"Booster: "
6277
- "Länderumschalter\"-Widget nutzt, wird dies Länderflaggen diesen Auswahlboxen "
6278
- "hinzufügen."
6279
-
6280
- #: includes/class-wcj-price-by-country.php:234
6281
- #: includes/class-wcj-price-by-user-role.php:400
6282
- msgid "Search Engine Bots"
6283
- msgstr "Suchmaschinen-Bots"
6284
-
6285
- #: includes/class-wcj-price-by-country.php:235
6286
- msgid "Disable Price by Country for Bots"
6287
- msgstr "Deaktiviere Preis nach Land für Bots"
6288
-
6289
- #: includes/class-wcj-price-by-country.php:244
6290
- msgid "Country Groups"
6291
- msgstr "Ländergruppen"
6292
-
6293
- #: includes/class-wcj-price-by-country.php:250
6294
- msgid "Countries Selection"
6295
- msgstr "Länderauswahl"
6296
-
6297
- #: includes/class-wcj-price-by-country.php:251
6298
- msgid "Choose how do you want to enter countries groups in admin."
6299
- msgstr "Wähle, wie Du Ländergruppen in Administration eingeben möchtest."
6300
-
6301
- #: includes/class-wcj-price-by-country.php:256
6302
- msgid "Comma separated list"
6303
- msgstr "Komma getrennte Liste"
6304
-
6305
- #: includes/class-wcj-price-by-country.php:257
6306
- msgid "Multiselect"
6307
- msgstr "Mehrfachauswahl"
6308
-
6309
- #: includes/class-wcj-price-by-country.php:258
6310
- msgid "Chosen select"
6311
- msgstr "Ausgewählt auswählen"
6312
-
6313
- #: includes/class-wcj-price-by-country.php:263
6314
- msgid "Autogenerate Groups"
6315
- msgstr "Gruppen automatisch generieren"
6316
-
6317
- #: includes/class-wcj-price-by-country.php:268
6318
- msgid "Currencies supported in both PayPal and Yahoo Exchange Rates:"
6319
- msgstr ""
6320
- "Währungen, die sowohl in PayPal als auch in Yahoo-Wechselkursen unterstützt "
6321
- "werden:"
6322
-
6323
- #: includes/class-wcj-price-by-country.php:273
6324
- msgid "Currencies supported in Yahoo Exchange Rates:"
6325
- msgstr "Währungen unterstützt in Yahoo-Wechselkursen:"
6326
-
6327
- #: includes/class-wcj-price-by-country.php:278
6328
- msgid "All Countries and Currencies:"
6329
- msgstr "Alle Länder und Währungen:"
6330
-
6331
- #: includes/class-wcj-price-by-country.php:285
6332
- msgid "Groups Number"
6333
- msgstr "Anzahl der Gruppen"
6334
-
6335
- #: includes/class-wcj-price-by-country.php:304
6336
- msgid ""
6337
- "Countries. List of comma separated country codes.<br>For country codes and "
6338
- "predifined sets visit <a href=\"http://booster.io/features/prices-and-"
6339
- "currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6340
- msgstr ""
6341
- "Länder. Liste der durch Kommas getrennten Ländercodes.<br>Für Ländercodes "
6342
- "und vordefinierte Sätze besuche <a href=\"http://booster.io/features/prices-"
6343
- "and-currencies-by-customers-country\" target=\"_blank\">http://booster.io</a>"
6344
-
6345
- #: includes/class-wcj-price-by-country.php:380
6346
- msgid "Multiply Price by"
6347
- msgstr "Multipliziere Preis mit"
6348
-
6349
- #: includes/class-wcj-price-by-country.php:403
6350
- #: includes/price-by-country/class-wcj-price-by-country-local.php:143
6351
- msgid "Make empty price"
6352
- msgstr "Leeren Preis erzeugen"
6353
-
6354
- #: includes/class-wcj-price-by-user-role.php:28
6355
- msgid "Price by User Role"
6356
- msgstr "Preis nach Benutzer-Rolle"
6357
-
6358
- #: includes/class-wcj-price-by-user-role.php:29
6359
- msgid "Display WooCommerce products prices by user roles."
6360
- msgstr "WooCommerce Produkt-Preise nach Benutzerrollen anzeigen."
6361
-
6362
- #: includes/class-wcj-price-by-user-role.php:105
6363
- msgid ""
6364
- "Booster: Free plugin's version is limited to only one price by user role per "
6365
- "products settings product enabled at a time. You will need to get <a "
6366
- "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
6367
- "unlimited number of price by user role per product settings products."
6368
- msgstr ""
6369
- "Booster: Kostenlose Plugin-Version ist begrenzt auf nur einen Preis pro "
6370
- "Benutzer-Rolle pro Produkteinstellung auf einmal aktiviert. DU musst <a "
6371
- "href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> erwerben,"
6372
- " um unbegrenzte Anzahl von Preisen nach Benutzer-Rollen pro "
6373
- "Produkteinstellung hinzuzufügen."
6374
-
6375
- #: includes/class-wcj-price-by-user-role.php:132
6376
- msgid "Per Product Settings (press Update after changing)"
6377
- msgstr "Pro Produkteinstellungen (klicke Aktualisieren nach dem Ändern)"
6378
-
6379
- #: includes/class-wcj-price-by-user-role.php:185
6380
- #: includes/class-wcj-price-by-user-role.php:428
6381
- msgid "Make Empty Price"
6382
- msgstr "Leeren Preis erzeugen"
6383
-
6384
- #: includes/class-wcj-price-by-user-role.php:375
6385
- msgid "Enable per Product Settings"
6386
- msgstr "Pro Produkteinstellungen aktivieren"
6387
-
6388
- #: includes/class-wcj-price-by-user-role.php:377
6389
- msgid ""
6390
- "When enabled, this will add new \"Booster: Price by User Role\" meta box to "
6391
- "each product's edit page."
6392
- msgstr ""
6393
- "Wenn diese Option aktiviert ist, wird das Meta-Feld \"Booster: Preis pro "
6394
- "Benutzerprolle\" zu jeder Produktbearbeitungsseite hinzugefügt."
6395
-
6396
- #: includes/class-wcj-price-by-user-role.php:383
6397
- msgid "Show Roles on per Product Settings"
6398
- msgstr "Zeige die Rollen in den Einstellungen pro Produkt"
6399
-
6400
- #: includes/class-wcj-price-by-user-role.php:384
6401
- msgid ""
6402
- "If per product settings is enabled, you can choose which roles to show on "
6403
- "product's edit page. Leave blank to show all roles."
6404
- msgstr ""
6405
- "Wenn die Einstellungen pro Produkt aktiviert sind, kannst du wählen, welche "
6406
- "Rollen auf der \"Produkt bearbeiten\" Seite zu sehen sind. Leer lassen um "
6407
- "alle Rollen anzuzeigen."
6408
-
6409
- #: includes/class-wcj-price-by-user-role.php:394
6410
- msgid ""
6411
- "When enabled, this will apply user role multipliers to shipping calculations."
6412
- msgstr ""
6413
- "Wenn diese Option aktiviert ist, werden Benutzerrollen-Multiplikatoren auf "
6414
- "Versandberechnungen angewendet."
6415
-
6416
- #: includes/class-wcj-price-by-user-role.php:401
6417
- msgid "Disable Price by User Role for Bots"
6418
- msgstr "Deaktivieren Preis nach Benutzerrolle für Bots"
6419
-
6420
- #: includes/class-wcj-price-by-user-role.php:412
6421
- msgid "Roles & Multipliers"
6422
- msgstr "Rollen & Multiplikatoren"
6423
-
6424
- #: includes/class-wcj-price-formats.php:27
6425
- msgid "Price Formats"
6426
- msgstr "Preisformate"
6427
-
6428
- #: includes/class-wcj-price-formats.php:28
6429
- msgid "Set different WooCommerce price formats for different currencies."
6430
- msgstr ""
6431
- "Lege verschiedene WooCommerce-Preisformate für verschiedene Währungen fest."
6432
-
6433
- #: includes/class-wcj-price-formats.php:121
6434
- msgid "Formats"
6435
- msgstr "Formate"
6436
-
6437
- #: includes/class-wcj-price-formats.php:126
6438
- msgid "Total Number"
6439
- msgstr "Gesamtanzahl"
6440
-
6441
- #: includes/class-wcj-price-formats.php:141
6442
- msgid "Format"
6443
- msgstr "Format"
6444
-
6445
- #: includes/class-wcj-price-formats.php:150
6446
- msgid "Currency Position"
6447
- msgstr "Währungsposition"
6448
-
6449
- #: includes/class-wcj-price-formats.php:155
6450
- msgid "Left"
6451
- msgstr "Links"
6452
-
6453
- #: includes/class-wcj-price-formats.php:156
6454
- msgid "Right"
6455
- msgstr "Rechts"
6456
-
6457
- #: includes/class-wcj-price-formats.php:157
6458
- msgid "Left with space"
6459
- msgstr "Links mit Platz"
6460
-
6461
- #: includes/class-wcj-price-formats.php:158
6462
- msgid "Right with space"
6463
- msgstr "Rechts mit Platz"
6464
-
6465
- #: includes/class-wcj-price-formats.php:163
6466
- msgid "Thousand Separator"
6467
- msgstr "Tausender Trennzeichen"
6468
-
6469
- #: includes/class-wcj-price-formats.php:170
6470
- msgid "Decimal Separator"
6471
- msgstr "Dezimal Trennzeichen"
6472
-
6473
- #: includes/class-wcj-price-formats.php:177
6474
- msgid "Number of Decimals"
6475
- msgstr "Anzahl der Dezimalstellen"
6476
-
6477
- #: includes/class-wcj-price-formats.php:188
6478
- msgid "WPML Language Code"
6479
- msgstr "WPML Sprach-Code"
6480
-
6481
- #: includes/class-wcj-price-formats.php:189
6482
- msgid ""
6483
- "Option to set different price formats for different WPML languages. Can be "
6484
- "comma separated list. Leave empty to disable."
6485
- msgstr ""
6486
- "Möglichkeit, unterschiedliche Preisformate für verschiedene WPML-Sprachen "
6487
- "festzulegen. Kann kommagetrennte Liste sein. Leer lassen, um zu deaktivieren."
6488
-
6489
- #: includes/class-wcj-price-labels.php:25
6490
- msgid "Custom Price Labels"
6491
- msgstr "Benutzerdefinierte Preisetiketten"
6492
-
6493
- #: includes/class-wcj-price-labels.php:26
6494
- msgid "Create any custom price label for any WooCommerce product."
6495
- msgstr ""
6496
- "Erstelle irgendein benutzerdefiniertes Preisetikett für irgendein "
6497
- "WooCommerce Produkt."
6498
-
6499
- #: includes/class-wcj-price-labels.php:32
6500
- msgid "Migrate from Custom Price Labels (Pro)"
6501
- msgstr "Migrieren von Custom Price Labels (Pro)"
6502
-
6503
- #: includes/class-wcj-price-labels.php:33
6504
- msgid ""
6505
- "Tool lets you copy all the data (that is labels) from Custom Price labels "
6506
- "(Pro) plugin to Booster."
6507
- msgstr ""
6508
- "Mit diesem Werkzeug kannst Du alle Daten (das sind Beschriftungen) von "
6509
- "Custom Price Labels (Pro)-Plugin nach Booster kopieren."
6510
-
6511
- #: includes/class-wcj-price-labels.php:43
6512
- msgid "Instead of the price"
6513
- msgstr "Statt des Preises"
6514
-
6515
- #: includes/class-wcj-price-labels.php:44
6516
- msgid "Before the price"
6517
- msgstr "Vor dem Preis"
6518
-
6519
- #: includes/class-wcj-price-labels.php:45
6520
- msgid "Between regular and sale prices"
6521
- msgstr "Zwischen regulären und Sale-Preisen"
6522
-
6523
- #: includes/class-wcj-price-labels.php:46
6524
- msgid "After the price"
6525
- msgstr "Nach dem Preis"
6526
-
6527
- #: includes/class-wcj-price-labels.php:52
6528
- msgid "Hide on home page"
6529
- msgstr "Auf der Startseite verbergen"
6530
-
6531
- #: includes/class-wcj-price-labels.php:53
6532
- msgid "Hide on products page"
6533
- msgstr "Ausblenden auf Produkte-Seite"
6534
-
6535
- #: includes/class-wcj-price-labels.php:54
6536
- msgid "Hide on single"
6537
- msgstr "Auf Einzel verbergen"
6538
-
6539
- #: includes/class-wcj-price-labels.php:55
6540
- msgid "Hide on all pages"
6541
- msgstr "Auf allen Seiten verbergen"
6542
-
6543
- #: includes/class-wcj-price-labels.php:56
6544
- msgid "Hide on cart page only"
6545
- msgstr "Nur auf Warenkorbseite ausblenden"
6546
-
6547
- #: includes/class-wcj-price-labels.php:58
6548
- msgid "Hide for main price"
6549
- msgstr "Für Hauptpreis ausblenden"
6550
-
6551
- #: includes/class-wcj-price-labels.php:59
6552
- msgid "Hide for all variations"
6553
- msgstr "Für alle Variationen ausblenden"
6554
-
6555
- #: includes/class-wcj-price-labels.php:128
6556
- msgid "Booster - Migrate from Custom Price Labels (Pro)"
6557
- msgstr "Booster - Migrieren von Custom Price Labels (Pro)"
6558
-
6559
- #: includes/class-wcj-price-labels.php:179
6560
- msgid "Migrating (product ID "
6561
- msgstr "Migriere (Produkt-ID"
6562
-
6563
- #: includes/class-wcj-price-labels.php:180
6564
- msgid "Result: "
6565
- msgstr "Ergebnis: "
6566
-
6567
- #: includes/class-wcj-price-labels.php:202
6568
- msgid "Found data to migrate (product ID "
6569
- msgstr "Daten zum Migrieren gefunden (Produkt-ID"
6570
-
6571
- #: includes/class-wcj-price-labels.php:218
6572
- msgid "No data to migrate found"
6573
- msgstr "Keine zu migrierenden Daten gefunden"
6574
-
6575
- #: includes/class-wcj-price-labels.php:224
6576
- msgid ""
6577
- "Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
6578
- "Old labels will NOT be deleted. New labels will be overwritten."
6579
- msgstr ""
6580
- "Drücke die Taste unten, um alle Labels aus dem Custom Price Labels (Pro) "
6581
- "Plugin zu kopieren. Alte Beschriftungen werden NICHT gelöscht. Neue Labels "
6582
- "werden überschrieben."
6583
-
6584
- #: includes/class-wcj-price-labels.php:225
6585
- msgid "Migrate data"
6586
- msgstr "Daten migrieren"
6587
-
6588
- #: includes/class-wcj-price-labels.php:271
6589
- msgid "Booster: Custom Price Labels"
6590
- msgstr "Booster: Custom Price Labels"
6591
-
6592
- #: includes/class-wcj-price-labels.php:630
6593
- msgid "Custom Price Labels - Globally"
6594
- msgstr "Benutzerdefinierte Preisetiketten - Global"
6595
-
6596
- #: includes/class-wcj-price-labels.php:632
6597
- msgid "This section lets you set price labels for all products globally."
6598
- msgstr ""
6599
- "Dieser Abschnitt lässt Dich Preisetiketten für alle Produkte global "
6600
- "festlegen."
6601
-
6602
- #: includes/class-wcj-price-labels.php:636
6603
- msgid "Add before the price"
6604
- msgstr "Vor dem Preis hinzufügen"
6605
-
6606
- #: includes/class-wcj-price-labels.php:637
6607
- msgid "Enter text to add before all products prices. Leave blank to disable."
6608
- msgstr ""
6609
- "Gib den Text ein, der vor allen Produktpreisen hinzugefügt werden soll. Leer "
6610
- "lassen, um zu deaktivieren."
6611
-
6612
- #: includes/class-wcj-price-labels.php:646
6613
- msgid "Add after the price"
6614
- msgstr "Nach dem Preis hinzufügen"
6615
-
6616
- #: includes/class-wcj-price-labels.php:647
6617
- msgid "Enter text to add after all products prices. Leave blank to disable."
6618
- msgstr ""
6619
- "Gib Text ein, der nach allen Produktpreisen hinzugefügt werden soll. Leer "
6620
- "lassen, um zu deaktivieren."
6621
-
6622
- #: includes/class-wcj-price-labels.php:654
6623
- msgid "Add between regular and sale prices"
6624
- msgstr "Zwischen regulären und Sale-Preisen hinzufügen"
6625
-
6626
- #: includes/class-wcj-price-labels.php:655
6627
- msgid ""
6628
- "Enter text to add between regular and sale prices. Leave blank to disable."
6629
- msgstr ""
6630
- "Gib Text ein, der zwischen regulären und Verkaufspreisen hinzugefügt wird. "
6631
- "Leer lassen, um zu deaktivieren."
6632
-
6633
- #: includes/class-wcj-price-labels.php:664
6634
- msgid "Remove from price"
6635
- msgstr "Aus dem Preis entfernen"
6636
-
6637
- #: includes/class-wcj-price-labels.php:666
6638
- msgid "Enter text to remove from all products prices. Leave blank to disable."
6639
- msgstr ""
6640
- "Gib den Text ein, der von allen Produktpreisen entfernt werden soll. Leer "
6641
- "lassen, um zu deaktivieren."
6642
-
6643
- #: includes/class-wcj-price-labels.php:675
6644
- msgid "Replace in price"
6645
- msgstr "Im Preis ersetzen"
6646
-
6647
- #: includes/class-wcj-price-labels.php:676
6648
- msgid "Enter text to replace in all products prices. Leave blank to disable."
6649
- msgstr ""
6650
- "Gib Text ein, der in allen Produkt-Preisen ersetzt wird. Leer lassen, um zu "
6651
- "deaktivieren."
6652
-
6653
- #: includes/class-wcj-price-labels.php:687
6654
- msgid "Enter text to replace with. Leave blank to disable."
6655
- msgstr "Gib den zu ersetzenden Text ein. Leer lassen, um zu deaktivieren."
6656
-
6657
- #: includes/class-wcj-price-labels.php:697
6658
- msgid ""
6659
- "Apply global price labels only for selected products. Leave blank to disable "
6660
- "the option."
6661
- msgstr ""
6662
- "Wende globale Preisetiketten nur für ausgewählte Produkte an. Leer lassen, "
6663
- "um die Option zu deaktivieren."
6664
-
6665
- #: includes/class-wcj-price-labels.php:707
6666
- msgid ""
6667
- "Do not apply global price labels only for selected products. Leave blank to "
6668
- "disable the option."
6669
- msgstr ""
6670
- "Wende keine globalen Preisetiketten nur für ausgewählte Produkte an. Leer "
6671
- "lassen, um die Option zu deaktivieren."
6672
-
6673
- #: includes/class-wcj-price-labels.php:717
6674
- msgid ""
6675
- "Apply global price labels only for selected product categories. Leave blank "
6676
- "to disable the option."
6677
- msgstr ""
6678
- "Wende globale Preisetiketten nur für ausgewählte Produktkategorien an. Leer "
6679
- "lassen, um die Option zu deaktivieren."
6680
-
6681
- #: includes/class-wcj-price-labels.php:727
6682
- msgid ""
6683
- "Do not apply global price labels only for selected product categories. Leave "
6684
- "blank to disable the option."
6685
- msgstr ""
6686
- "Wende keine globalen Preisetiketten nur für ausgewählte Produktkategorien an."
6687
- " Leer lassen, um die Option zu deaktivieren."
6688
-
6689
- #: includes/class-wcj-price-labels.php:736
6690
- msgid "Product Types - Include"
6691
- msgstr "Produkttypen - Einschließen"
6692
-
6693
- #: includes/class-wcj-price-labels.php:737
6694
- msgid ""
6695
- "Apply global price labels only for selected product types. Leave blank to "
6696
- "disable the option."
6697
- msgstr ""
6698
- "Wende globale Preisschilder nur für ausgewählte Produktarten an. Leer lassen,"
6699
- " um die Option zu deaktivieren."
6700
-
6701
- #: includes/class-wcj-price-labels.php:743
6702
- msgid "Variable product's variation"
6703
- msgstr "Variable Produktvariation"
6704
-
6705
- #: includes/class-wcj-price-labels.php:750
6706
- msgid "Custom Price Labels - Per Product"
6707
- msgstr "Benutzerdefinierte Preisetiketten - Pro Produkt"
6708
-
6709
- #: includes/class-wcj-price-labels.php:756
6710
- msgid "This will add metaboxes to each product's admin edit page."
6711
- msgstr "Dies fügt Meta-Boxen zu jeder Produkt-Admin-Bearbeitungsseite hinzu."
6712
-
6713
- #: includes/class-wcj-product-add-to-cart.php:26
6714
- msgid "Product Add to Cart"
6715
- msgstr "Produkt dem Warenkorb hinzufügen"
6716
-
6717
- #: includes/class-wcj-product-add-to-cart.php:27
6718
- msgid "Set any local url to redirect to on WooCommerce Add to Cart."
6719
- msgstr ""
6720
- "Lege eine beliebige lokale URL fest, auf die umgeleitet wird bei WooCommerce "
6721
- "dem Warenkorb hinzufügen"
6722
-
6723
- #: includes/class-wcj-product-add-to-cart.php:28
6724
- msgid "Automatically add to cart on product visit."
6725
- msgstr "Automatisch bei Produktbesuch in den Warenkorb legen."
6726
-
6727
- #: includes/class-wcj-product-add-to-cart.php:29
6728
- msgid "Display radio buttons instead of drop box for variable products."
6729
- msgstr ""
6730
- "Anzeigen von radio buttons anstelle von drop box für variable Produkte."
6731
-
6732
- #: includes/class-wcj-product-add-to-cart.php:30
6733
- msgid "Disable quantity input."
6734
- msgstr "Deaktiviere die Mengeneingabe."
6735
-
6736
- #: includes/class-wcj-product-add-to-cart.php:31
6737
- msgid "Disable add to cart button on per product basis."
6738
- msgstr ""
6739
- "Deaktiviere dem \"zum Warenkorb hinzufügen\" Button auf pro Produktbasis."
6740
-
6741
- #: includes/class-wcj-product-add-to-cart.php:32
6742
- msgid "Open external products on add to cart in new window."
6743
- msgstr ""
6744
- "Externe Produkte in einem neuen Fesnter öffnen bei dem Warenkorb hinzufügen."
6745
-
6746
- #: includes/class-wcj-product-add-to-cart.php:215
6747
- msgid "Disable Add to Cart Button (Single Product Page)"
6748
- msgstr ""
6749
- "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Einzelproduktseite)"
6750
-
6751
- #: includes/class-wcj-product-add-to-cart.php:225
6752
- msgid "Disable Add to Cart Button (Category/Archives)"
6753
- msgstr ""
6754
- "Deaktivieren des \"dem Warenkorb hinzufügen\"-Button (Kategorie/Archive)"
6755
-
6756
- #: includes/class-wcj-product-add-to-cart.php:235
6757
- msgid "Custom Add to Cart Button URL (Category/Archives)"
6758
- msgstr "Benutzerdefinierte In den Warenkorb Button URL (Kategorie/Archive)"
6759
-
6760
- #: includes/class-wcj-product-add-to-cart.php:246
6761
- msgid "As shop default (no changes)"
6762
- msgstr "Wie Shop-Voreinstellung (keine Änderungen)"
6763
-
6764
- #: includes/class-wcj-product-add-to-cart.php:250
6765
- msgid "Disable Add to Cart Button AJAX"
6766
- msgstr "Deaktivieren von AJAX für den \"In den Warenkorb\"-Button"
6767
-
6768
- #: includes/class-wcj-product-add-to-cart.php:341
6769
- msgid "Add to Cart Local Redirect Options"
6770
- msgstr "\"dem Warenkorb hinzufügen\" lokale Umleitungs-Optionen"
6771
-
6772
- #: includes/class-wcj-product-add-to-cart.php:343
6773
- msgid ""
6774
- "This section lets you set any local URL to redirect to after successfully "
6775
- "adding product to cart. Leave empty to redirect to checkout page (skipping "
6776
- "the cart page)."
6777
- msgstr ""
6778
- "Dieser Abschnitt lässt Dich eine lokale URL festlegen, auf die umgeleitet "
6779
- "wird, nachdem ein Produkt erfolgreich dem Warenkorb hinzugefügt wurde."
6780
-
6781
- #: includes/class-wcj-product-add-to-cart.php:347
6782
- msgid "Local Redirect"
6783
- msgstr "Lokale Umleitung"
6784
-
6785
- #: includes/class-wcj-product-add-to-cart.php:354
6786
- msgid "Local Redirect URL"
6787
- msgstr "Lokale Umleitungs URL"
6788
-
6789
- #: includes/class-wcj-product-add-to-cart.php:355
6790
- msgid "Performs a safe (local) redirect, using wp_redirect()."
6791
- msgstr "Führt eine sichere (lokale) Weiterleitung mit wp_redirect() durch."
6792
-
6793
- #: includes/class-wcj-product-add-to-cart.php:356
6794
- msgid "Local redirect URL. Leave empty to redirect to checkout."
6795
- msgstr "Lokale Umleitungs-URL. Leer lassen, um zur Kasse umzuleiten."
6796
-
6797
- #: includes/class-wcj-product-add-to-cart.php:367
6798
- #: includes/class-wcj-product-add-to-cart.php:373
6799
- msgid "Add to Cart on Visit"
6800
- msgstr "Bei Besuch dem Warenkorb hinzufügen"
6801
-
6802
- #: includes/class-wcj-product-add-to-cart.php:369
6803
- msgid ""
6804
- "This section lets you enable automatically adding product to cart on "
6805
- "visiting the product page. Product is only added once, so if it is already "
6806
- "in cart - duplicate product is not added. "
6807
- msgstr ""
6808
- "Dieser Abschnitt lässt Dich das automatische dem Warenkorb hinzufügen sobald "
6809
- "die Produktseite aufgerufen wurde, aktivieren. Produkt wird nur einmalig "
6810
- "hinzugefügt, wenn es sich schon im Warenkorb befindet - ein Duplikat wird "
6811
- "nicht hinzugefügt."
6812
-
6813
- #: includes/class-wcj-product-add-to-cart.php:384
6814
- msgid "Add to Cart Variable Product"
6815
- msgstr "Variables Produkt dem Warenkorb hinzufügen"
6816
-
6817
- #: includes/class-wcj-product-add-to-cart.php:389
6818
- msgid "Display Radio Buttons Instead of Drop Box"
6819
- msgstr "Radio Buttons statt Drop Box anzeigen"
6820
-
6821
- #: includes/class-wcj-product-add-to-cart.php:402
6822
- msgid "Add to Cart Quantity"
6823
- msgstr "dem Warenkorb hinzufügen Menge"
6824
-
6825
- #: includes/class-wcj-product-add-to-cart.php:407
6826
- msgid "Disable Quantity Field for All Products"
6827
- msgstr "Mengenfeld für alle Produkte deaktivieren"
6828
-
6829
- #: includes/class-wcj-product-add-to-cart.php:408
6830
- msgid "Disable on Single Product Page"
6831
- msgstr "Deaktivieren auf Einzelproduktseite"
6832
-
6833
- #: includes/class-wcj-product-add-to-cart.php:415
6834
- msgid "Disable on Cart Page"
6835
- msgstr "Auf Warenkorbseite deaktivieren"
6836
-
6837
- #: includes/class-wcj-product-add-to-cart.php:426
6838
- msgid "Add to Cart Button Disabling"
6839
- msgstr "In den Warenkorb Button Deaktivieren"
6840
-
6841
- #: includes/class-wcj-product-add-to-cart.php:431
6842
- msgid "Disable Add to Cart Buttons on per Product Basis"
6843
- msgstr "Deaktivieren des \"In den Warenkorb\"-Buttons auf pro Produktbasis"
6844
-
6845
- #: includes/class-wcj-product-add-to-cart.php:433
6846
- #: includes/class-wcj-product-add-to-cart.php:450
6847
- #: includes/class-wcj-product-add-to-cart.php:467
6848
- msgid "This will add meta box to each product's edit page"
6849
- msgstr "Dies fügt eine meta box jeder Produktbearbeitungsseite hinzu"
6850
-
6851
- #: includes/class-wcj-product-add-to-cart.php:443
6852
- msgid "Add to Cart Button Custom URL"
6853
- msgstr "Benutzerdefinierte URL für \"In den Warenkorb\"-Button"
6854
-
6855
- #: includes/class-wcj-product-add-to-cart.php:448
6856
- msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
6857
- msgstr ""
6858
- "Benutzerdefinierte In den Warenkorb Button URL in Archiven auf pro "
6859
- "Produktbasis"
6860
-
6861
- #: includes/class-wcj-product-add-to-cart.php:460
6862
- msgid "Add to Cart Button AJAX"
6863
- msgstr "AJAX für \"In den Warenkorb\"-Button"
6864
-
6865
- #: includes/class-wcj-product-add-to-cart.php:465
6866
- msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
6867
- msgstr ""
6868
- "Deaktivieren/Aktivieren von AJAX für \"In den Warenkorb\"-Button auf pro "
6869
- "Produktbasis"
6870
-
6871
- #: includes/class-wcj-product-add-to-cart.php:482
6872
- msgid "Open External Products on Add to Cart in New Window"
6873
- msgstr "Öffne externe Produkte bei Hinzufügen zum Warenkorb in neuen Fenster"
6874
-
6875
- #: includes/class-wcj-product-add-to-cart.php:483
6876
- msgid "Enable on Single Product Pages"
6877
- msgstr "Aktiviere auf Einzelproduktseiten"
6878
-
6879
- #: includes/class-wcj-product-add-to-cart.php:490
6880
- msgid "Enable on Category/Archive Pages"
6881
- msgstr "Aktivieren auf Kategorie-/Archivseiten"
6882
-
6883
- #: includes/class-wcj-product-addons.php:28
6884
- msgid "Product Addons"
6885
- msgstr "Produkterweiterungen"
6886
-
6887
- #: includes/class-wcj-product-addons.php:29
6888
- msgid "Add (paid/free/discount) addons to WooCommerce products."
6889
- msgstr ""
6890
- "Erweiterungen (Bezahlte/kostenlose/Rabattierte) den Woocommerce-Produkten "
6891
- "hinzufügen"
6892
-
6893
- #: includes/class-wcj-product-addons.php:99
6894
- msgid "Some of the required addons are not selected!"
6895
- msgstr "Einige der benötigten Erweiterungen sind nicht ausgewählt!"
6896
-
6897
- #: includes/class-wcj-product-addons.php:114
6898
- msgid ""
6899
- "Booster: Free plugin's version is limited to only three products with per "
6900
- "product addons enabled at a time. You will need to get <a href=\"http:"
6901
- "//booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
6902
- "number of products with per product addons."
6903
- msgstr ""
6904
- "Booster: Kostenlose Pluginversion ist beschränkt auf nur drei Produkte mit "
6905
- "aktivierten Produkterweiterungen. DU musst dir <a href=\"http://booster."
6906
- "io/plus/\" target=\"_blank\">Booster Plus</a> kaufen, um eine unbeschränkte "
6907
- "Anzahl von Produkten pro Produkterweiterung hinzufügen zu können."
6908
-
6909
- #: includes/class-wcj-product-addons.php:446
6910
- #: includes/class-wcj-wholesale-price.php:281
6911
- #: includes/class-wcj-wholesale-price.php:316
6912
- msgid "Save product after you change this number."
6913
- msgstr "Speichere das Produkt, nachdem du diese Nummer geändert hast."
6914
-
6915
- #: includes/class-wcj-product-addons.php:449
6916
- #: includes/class-wcj-product-addons.php:560
6917
- msgid "Product Addons Total Number"
6918
- msgstr "Gesamtanzahl von Produkterweiterungen"
6919
-
6920
- #: includes/class-wcj-product-addons.php:456
6921
- #: includes/class-wcj-product-addons.php:576
6922
- msgid "Product Addon"
6923
- msgstr "Produkt-Addon"
6924
-
6925
- #: includes/class-wcj-product-addons.php:472
6926
- #: includes/class-wcj-product-addons.php:590
6927
- msgid "Radio Buttons"
6928
- msgstr "Radio Buttons"
6929
-
6930
- #: includes/class-wcj-product-addons.php:476
6931
- #: includes/class-wcj-product-addons.php:594
6932
- msgid "Label(s)"
6933
- msgstr "Label(s)"
6934
-
6935
- #: includes/class-wcj-product-addons.php:477
6936
- #: includes/class-wcj-product-addons.php:484
6937
- #: includes/class-wcj-product-addons.php:491
6938
- #: includes/class-wcj-product-addons.php:595
6939
- #: includes/class-wcj-product-addons.php:603
6940
- #: includes/class-wcj-product-addons.php:612
6941
- msgid "For radio enter one value per line."
6942
- msgstr "Gib einen Wert pro Zeile für Radio-Buttons ein."
6943
-
6944
- #: includes/class-wcj-product-addons.php:483
6945
- #: includes/class-wcj-product-addons.php:602
6946
- msgid "Price(s)"
6947
- msgstr "Preis(e)"
6948
-
6949
- #: includes/class-wcj-product-addons.php:490
6950
- #: includes/class-wcj-product-addons.php:611
6951
- msgid "Tooltip(s)"
6952
- msgstr "Tooltip(s)"
6953
-
6954
- #: includes/class-wcj-product-addons.php:497
6955
- #: includes/class-wcj-product-addons.php:619
6956
- #: includes/class-wcj-purchase-data.php:340
6957
- msgid "Default Value"
6958
- msgstr "Voreingestellter Wert"
6959
-
6960
- #: includes/class-wcj-product-addons.php:498
6961
- #: includes/class-wcj-product-addons.php:620
6962
- msgid ""
6963
- "For checkbox use 'checked'; for radio enter default label. Leave blank for "
6964
- "no default value."
6965
- msgstr ""
6966
- "Nutze 'checked' für Checkboxen; gib eine Standardlabel für Radio-Buttons ein."
6967
- " Leer lassen, um keinen Standardwert festzulegen."
6968
-
6969
- #: includes/class-wcj-product-addons.php:504
6970
- msgid "Is required"
6971
- msgstr "wird benötigt"
6972
-
6973
- #: includes/class-wcj-product-addons.php:533
6974
- msgid "Enable per Product Addons"
6975
- msgstr "Aktiviere pro Produkterweiterung"
6976
-
6977
- #: includes/class-wcj-product-addons.php:535
6978
- msgid ""
6979
- "When enabled, this will add new \"Booster: Product Addons\" meta box to each "
6980
- "product's edit page."
6981
- msgstr ""
6982
- "Wenn aktiviert, wird dies eine neue \"Booster: Produkterweiterung\" Meta box "
6983
- "jeder Produktbearbeitungsseite hinzufügen."
6984
-
6985
- #: includes/class-wcj-product-addons.php:547
6986
- msgid "All Product Options"
6987
- msgstr "Alle Produktoptionen"
6988
-
6989
- #: includes/class-wcj-product-addons.php:552
6990
- msgid "Enable All Products Addons"
6991
- msgstr "Aktivere alle Produkterweiterung"
6992
-
6993
- #: includes/class-wcj-product-addons.php:554
6994
- msgid "When enabled, this will add addons below to all products."
6995
- msgstr ""
6996
- "Wenn aktiviert, wird dies Erweiterungen unterhalb allen Produkten hinzufügen"
6997
-
6998
- #: includes/class-wcj-product-addons.php:561
6999
- msgid "Save changes after you change this number."
7000
- msgstr "Speichere die Änderungen, nachdem Du diese Nummer geändert hast."
7001
-
7002
- #: includes/class-wcj-product-addons.php:627
7003
- #: includes/class-wcj-product-by-user.php:233
7004
- msgid "Is Required"
7005
- msgstr "Wird benötigt"
7006
-
7007
- #: includes/class-wcj-product-addons.php:647
7008
- msgid "Enable AJAX on Single Product Page"
7009
- msgstr "Aktiviere AJAX auf Einzelproduktseite"
7010
-
7011
- #: includes/class-wcj-product-addons.php:654
7012
- msgid "Addon in Cart Format"
7013
- msgstr "Addon im Warenkorb-Format"
7014
-
7015
- #: includes/class-wcj-product-addons.php:662
7016
- #: includes/class-wcj-product-addons.php:685
7017
- msgid "Each Addon"
7018
- msgstr "Jedes Addon"
7019
-
7020
- #: includes/class-wcj-product-addons.php:663
7021
- #: includes/class-wcj-product-addons.php:686
7022
- msgid "You can use %addon_label% and %addon_price%."
7023
- msgstr "Du kannst %addon_label% und %addon_price% nutzen."
7024
-
7025
- #: includes/class-wcj-product-addons.php:677
7026
- msgid "Addon in Order Details Table Format"
7027
- msgstr "Addon in Bestelldetails Tabellenformat"
7028
-
7029
- #: includes/class-wcj-product-addons.php:700
7030
- msgid "Admin Order Page"
7031
- msgstr "Admin-Bestellseite"
7032
-
7033
- #: includes/class-wcj-product-addons.php:701
7034
- msgid "Hide all addons"
7035
- msgstr "Verstecke alle Addons"
7036
-
7037
- #: includes/class-wcj-product-bookings.php:27
7038
- msgid "Bookings"
7039
- msgstr "Buchungen"
7040
-
7041
- #: includes/class-wcj-product-bookings.php:28
7042
- msgid "Add bookings products to WooCommerce."
7043
- msgstr "Hinzufügen von Buchungsprodukten zu WooCommerce."
7044
-
7045
- #: includes/class-wcj-product-bookings.php:131
7046
- #: includes/class-wcj-product-bookings.php:226
7047
- #: includes/class-wcj-product-bookings.php:481
7048
- msgid "\"Date to\" must be after \"Date from\""
7049
- msgstr "\"Datum bis\" muss nach \"Datum von\" eingestellt sein"
7050
-
7051
- #: includes/class-wcj-product-bookings.php:145
7052
- #: includes/class-wcj-product-open-pricing.php:209
7053
- msgid "Read more"
7054
- msgstr "Mehr lesen"
7055
-
7056
- #: includes/class-wcj-product-bookings.php:184
7057
- #: includes/class-wcj-product-bookings.php:453
7058
- msgid "Period"
7059
- msgstr "Zeitraum"
7060
-
7061
- #: includes/class-wcj-product-bookings.php:216
7062
- #: includes/class-wcj-product-bookings.php:467
7063
- msgid "\"Date from\" must be set"
7064
- msgstr "\"Datum von\" muss eingestellt sein"
7065
-
7066
- #: includes/class-wcj-product-bookings.php:220
7067
- #: includes/class-wcj-product-bookings.php:474
7068
- msgid "\"Date to\" must be set"
7069
- msgstr "\"Datum bis\" muss eingestellt sein"
7070
-
7071
- #: includes/class-wcj-product-bookings.php:299
7072
- #: includes/class-wcj-product-bookings.php:439
7073
- msgid "Date from"
7074
- msgstr "Datum von"
7075
-
7076
- #: includes/class-wcj-product-bookings.php:303
7077
- #: includes/class-wcj-product-bookings.php:446
7078
- msgid "Date to"
7079
- msgstr "Datum bis"
7080
-
7081
- #: includes/class-wcj-product-bookings.php:318
7082
- #: includes/class-wcj-product-bookings.php:460
7083
- msgid "/ day"
7084
- msgstr "/ Tag"
7085
-
7086
- #: includes/class-wcj-product-bookings.php:386
7087
- msgid ""
7088
- "Booster: Free plugin's version is limited to only one bookings product "
7089
- "enabled at a time. You will need to get <a href=\"http://booster.io/plus/\" "
7090
- "target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
7091
- "products."
7092
- msgstr ""
7093
- "Booster: Die kostenlose Version des Plugins ist auf ein einziges "
7094
- "Buchungsprodukt beschränkt. Du musst <a href=\"http://booster.io/plus/\" "
7095
- "target=\"_blank\">Booster Plus</a> erwerben, um unbegrenzte Anzahl von "
7096
- "Buchungsprodukten hinzufügen zu können."
7097
-
7098
- #: includes/class-wcj-product-bookings.php:432
7099
- #: includes/class-wcj-product-open-pricing.php:369
7100
- msgid "Labels and Messages"
7101
- msgstr "Etiketten und Meldungen"
7102
-
7103
- #: includes/class-wcj-product-bookings.php:437
7104
- msgid "Frontend Label: \"Date from\""
7105
- msgstr "Frontend Label: \"Datum von\""
7106
-
7107
- #: includes/class-wcj-product-bookings.php:444
7108
- msgid "Frontend Label: \"Date to\""
7109
- msgstr "Frontend Label: \"Datum bis\""
7110
-
7111
- #: includes/class-wcj-product-bookings.php:451
7112
- msgid "Frontend Label: Period"
7113
- msgstr "Frontend Label: Zeitraum"
7114
-
7115
- #: includes/class-wcj-product-bookings.php:458
7116
- msgid "Frontend Label: Price per Day"
7117
- msgstr "Frontend Label: Preis pro Tag"
7118
-
7119
- #: includes/class-wcj-product-bookings.php:465
7120
- msgid "Message: \"Date from\" is missing"
7121
- msgstr "Hinweis: \"Datum von\" fehlt"
7122
-
7123
- #: includes/class-wcj-product-bookings.php:472
7124
- #: includes/class-wcj-product-bookings.php:479
7125
- msgid "Message: \"Date to\" is missing"
7126
- msgstr "Hinweis: \"Datum bis\" fehlt"
7127
-
7128
- #: includes/class-wcj-product-bookings.php:495
7129
- msgid "Hide Quantity Selector for Booking Products"
7130
- msgstr "Verstecke die Mengenauswahl für die Buchung von Produkten"
7131
-
7132
- #: includes/class-wcj-product-bookings.php:506
7133
- msgid ""
7134
- "When enabled, module will add new \"Booster: Bookings\" meta box to each "
7135
- "product's edit page."
7136
- msgstr ""
7137
- "Wenn diese Option aktiviert ist, wird das Modul für jede Bearbeitungsseite "
7138
- "jedes Produkts eine neue \"Booster: Buchungen\"-Meta-Box hinzufügen."
7139
-
7140
- #: includes/class-wcj-product-bulk-price-converter.php:25
7141
- #: includes/class-wcj-product-bulk-price-converter.php:32
7142
- msgid "Bulk Price Converter"
7143
- msgstr "Bulk-Preis-Konverter"
7144
-
7145
- #: includes/class-wcj-product-bulk-price-converter.php:26
7146
- msgid "Multiply all WooCommerce products prices by set value."
7147
- msgstr "Multipliziere alle WooCommerce-Produkte-Preise nach gesetztem Wert."
7148
-
7149
- #: includes/class-wcj-product-bulk-price-converter.php:33
7150
- msgid "Bulk Price Converter Tool."
7151
- msgstr "Bulk-Preis-Konverter-Werkzeug."
7152
-
7153
- #: includes/class-wcj-product-bulk-price-converter.php:150
7154
- #: includes/class-wcj-product-by-user.php:207 includes/class-wcj-sku.php:244
7155
- #: includes/export/class-wcj-fields-helper.php:318
7156
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:156
7157
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:329
7158
- msgid "Categories"
7159
- msgstr "Kategorien"
7160
-
7161
- #: includes/class-wcj-product-bulk-price-converter.php:151
7162
- msgid "Price Type"
7163
- msgstr "Preisart"
7164
-
7165
- #: includes/class-wcj-product-bulk-price-converter.php:246
7166
- msgid "Price type to modify"
7167
- msgstr "Zu ändernde Preisart"
7168
-
7169
- #: includes/class-wcj-product-bulk-price-converter.php:248
7170
- msgid "Both"
7171
- msgstr "Beide"
7172
-
7173
- #: includes/class-wcj-product-bulk-price-converter.php:250
7174
- msgid "Sale prices only"
7175
- msgstr "Nur Abverkaufpreise"
7176
-
7177
- #: includes/class-wcj-product-bulk-price-converter.php:252
7178
- msgid "Regular prices only"
7179
- msgstr "Nur reguläre Preise"
7180
-
7181
- #: includes/class-wcj-product-bulk-price-converter.php:259
7182
- msgid "Products category"
7183
- msgstr "Produktkategorie"
7184
-
7185
- #: includes/class-wcj-product-bulk-price-converter.php:261
7186
- #: includes/shortcodes/class-wcj-products-shortcodes.php:232
7187
- msgid "Any"
7188
- msgstr "Irgendeins"
7189
-
7190
- #: includes/class-wcj-product-bulk-price-converter.php:263
7191
- msgid "None"
7192
- msgstr "Keine"
7193
-
7194
- #: includes/class-wcj-product-bulk-price-converter.php:270
7195
- msgid "\"Pretty prices\" threshold"
7196
- msgstr "\"Pretty prices\" Übergangswert"
7197
-
7198
- #: includes/class-wcj-product-bulk-price-converter.php:274
7199
- msgid "Leave zero to disable"
7200
- msgstr "Null belassen um zu deaktivieren"
7201
-
7202
- #: includes/class-wcj-product-bulk-price-converter.php:279
7203
- msgid "Preview Prices"
7204
- msgstr "Preisvorschau"
7205
-
7206
- #: includes/class-wcj-product-bulk-price-converter.php:286
7207
- msgid "Change Prices"
7208
- msgstr "Preisänderungen"
7209
-
7210
- #: includes/class-wcj-product-by-country.php:27
7211
- msgid "Product Visibility by Country"
7212
- msgstr "Produktsichtbarkeit nach Land"
7213
-
7214
- #: includes/class-wcj-product-by-country.php:28
7215
- msgid "Display WooCommerce products by customer's country."
7216
- msgstr "Zeige WooCommerce-Produkte nach Kundenland an."
7217
-
7218
- #: includes/class-wcj-product-by-country.php:76
7219
- msgid "Visible in Countries"
7220
- msgstr "Sichtbar in den Ländern"
7221
-
7222
- #: includes/class-wcj-product-by-country.php:90
7223
- msgid ""
7224
- "When enabled, module will add new \"Booster: Product Visibility by Country\" "
7225
- "meta box to each product's edit page."
7226
- msgstr ""
7227
- "Wenn aktiviert, fügt das Modul eine neue \"Booster: Produktsichtbarkeit nach "
7228
- "Land\"-Meta-Box auf der Seite jedes Produkts hinzu."
7229
-
7230
- #: includes/class-wcj-product-by-user-role.php:27
7231
- msgid "Product Visibility by User Role"
7232
- msgstr "Produktsichtbarkeit nach Benutzerrolle"
7233
-
7234
- #: includes/class-wcj-product-by-user-role.php:28
7235
- msgid "Display WooCommerce products by customer's user role."
7236
- msgstr "Anzeige von WooCommerce-Produkte nach Kunden-Benutzerrolle."
7237
-
7238
- #: includes/class-wcj-product-by-user-role.php:73
7239
- msgid "Visible for User Roles"
7240
- msgstr "Sichtbar für Benutzerrollen"
7241
-
7242
- #: includes/class-wcj-product-by-user-role.php:74
7243
- msgid "Hold Control (Ctrl) key to select multiple roles."
7244
- msgstr "Halte Kontrol (Strg)-Taste, um mehrere Rollen auszuwählen."
7245
-
7246
- #: includes/class-wcj-product-by-user.php:27
7247
- msgid "User Products"
7248
- msgstr "Benutzer-Produkte"
7249
-
7250
- #: includes/class-wcj-product-by-user.php:28
7251
- msgid "Let users add new WooCommerce products from frontend."
7252
- msgstr "Lasse Benutzer neue WooCommerce Produkte vom Frontend hinzufügen."
7253
-
7254
- #: includes/class-wcj-product-by-user.php:115
7255
- #: includes/class-wcj-product-by-user.php:124
7256
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:238
7257
- msgid "Wrong user ID!"
7258
- msgstr "Falsche Nutzer-ID!"
7259
-
7260
- #: includes/class-wcj-product-by-user.php:164
7261
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:359
7262
- msgid "Edit"
7263
- msgstr "Bearbeiten"
7264
-
7265
- #: includes/class-wcj-product-by-user.php:190
7266
- msgid "Use [wcj_product_add_new] shortcode."
7267
- msgstr "Nutze [wcj_product_add_new] Shortcode."
7268
-
7269
- #: includes/class-wcj-product-by-user.php:203
7270
- #: includes/export/class-wcj-fields-helper.php:292
7271
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:152
7272
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:274
7273
- msgid "Short Description"
7274
- msgstr "Kurzbeschreibung"
7275
-
7276
- #: includes/class-wcj-product-by-user.php:204
7277
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:153
7278
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:290
7279
- msgid "Image"
7280
- msgstr "Bild"
7281
-
7282
- #: includes/class-wcj-product-by-user.php:208
7283
- #: includes/export/class-wcj-fields-helper.php:319
7284
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:157
7285
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:352
7286
- msgid "Tags"
7287
- msgstr "Stichwörter"
7288
-
7289
- #: includes/class-wcj-product-by-user.php:223
7290
- msgid "Additional Fields"
7291
- msgstr "Zusätzliche Felder"
7292
-
7293
- #: includes/class-wcj-product-by-user.php:249
7294
- msgid "<em>Title</em> field is always enabled and required."
7295
- msgstr "<em>Title</em> ist immer aktiviert und erforderlich."
7296
-
7297
- #: includes/class-wcj-product-by-user.php:257
7298
- msgid "User Visibility"
7299
- msgstr "Sichtbarkeit des Benutzers"
7300
-
7301
- #: includes/class-wcj-product-by-user.php:267
7302
- msgid "Product Status"
7303
- msgstr "Produktstatus"
7304
-
7305
- #: includes/class-wcj-product-by-user.php:274
7306
- msgid "Require Unique Title"
7307
- msgstr "Einzigartiger Titel erforderlich"
7308
-
7309
- #: includes/class-wcj-product-by-user.php:281
7310
- msgid "Add \"My Products\" Tab to User's My Account Page"
7311
- msgstr ""
7312
- "Füge den \"Meine Produkte\"-Tab der \"Mein Konto\"-Seite des Nutzers hinzu"
7313
-
7314
- #: includes/class-wcj-product-by-user.php:288
7315
- msgid "Message: Product Successfully Added"
7316
- msgstr "Nachricht: Produkt erfolgreich hinzugefügt!"
7317
-
7318
- #: includes/class-wcj-product-by-user.php:290
7319
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:216
7320
- msgid "\"%product_title%\" successfully added!"
7321
- msgstr "\"%product_title%\" erfolgreich hinzugefügt!"
7322
-
7323
- #: includes/class-wcj-product-by-user.php:295
7324
- msgid "Message: Product Successfully Edited"
7325
- msgstr "Nachricht: Produkt erfolgreich bearbeitet!"
7326
-
7327
- #: includes/class-wcj-product-by-user.php:297
7328
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:223
7329
- msgid "\"%product_title%\" successfully edited!"
7330
- msgstr "\"%product_title%\" erfolgreich bearbeitet!"
7331
-
7332
- #: includes/class-wcj-product-custom-info.php:27
7333
- #: includes/class-wcj-product-info.php:104
7334
- msgid "Add additional info to WooCommerce category and single product pages."
7335
- msgstr ""
7336
- "Füge zusätzliche Informationen der WooCommerce-Kategorie und einzelnen "
7337
- "Produktseiten hinzu."
7338
-
7339
- #: includes/class-wcj-product-custom-info.php:107
7340
- msgid "Single"
7341
- msgstr "Einzel"
7342
-
7343
- #: includes/class-wcj-product-custom-info.php:107
7344
- msgid "Archive"
7345
- msgstr "Archiv"
7346
-
7347
- #: includes/class-wcj-product-custom-info.php:110
7348
- msgid "Product Custom Info Blocks"
7349
- msgstr "Benutzerdefinierte Produkt-Infoblöcke"
7350
-
7351
- #: includes/class-wcj-product-custom-info.php:148
7352
- msgid "Before single product"
7353
- msgstr "Vor Einzelprodukt"
7354
-
7355
- #: includes/class-wcj-product-custom-info.php:149
7356
- #: includes/class-wcj-product-info.php:141
7357
- msgid "Before single product summary"
7358
- msgstr "Vor Einzelprodukt Zusammenfassung"
7359
-
7360
- #: includes/class-wcj-product-custom-info.php:150
7361
- #: includes/class-wcj-product-info.php:140
7362
- msgid "Inside single product summary"
7363
- msgstr "In Einzelprodukt Zusammenfassung"
7364
-
7365
- #: includes/class-wcj-product-custom-info.php:151
7366
- #: includes/class-wcj-product-info.php:142
7367
- msgid "After single product summary"
7368
- msgstr "Nach Einzelprodukt Zusammenfassung"
7369
-
7370
- #: includes/class-wcj-product-custom-info.php:152
7371
- msgid "After single product"
7372
- msgstr "Nach Einzelprodukt"
7373
-
7374
- #: includes/class-wcj-product-custom-info.php:153
7375
- msgid "Before add to cart form"
7376
- msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Formular"
7377
-
7378
- #: includes/class-wcj-product-custom-info.php:154
7379
- msgid "Before add to cart button"
7380
- msgstr "Vor dem \"dem Warenkorb hinzufügen\"-Button"
7381
-
7382
- #: includes/class-wcj-product-custom-info.php:155
7383
- msgid "After add to cart button"
7384
- msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Button"
7385
-
7386
- #: includes/class-wcj-product-custom-info.php:156
7387
- msgid "After add to cart form"
7388
- msgstr "Nach dem \"dem Warenkorb hinzufügen\"-Formular"
7389
-
7390
- #: includes/class-wcj-product-custom-info.php:159
7391
- #: includes/class-wcj-product-info.php:125
7392
- msgid "Before product"
7393
- msgstr "Vor dem Produkt"
7394
-
7395
- #: includes/class-wcj-product-custom-info.php:160
7396
- #: includes/class-wcj-product-info.php:126
7397
- msgid "Before product title"
7398
- msgstr "Vor dem Produkttitel"
7399
-
7400
- #: includes/class-wcj-product-custom-info.php:161
7401
- msgid "Inside product title"
7402
- msgstr "Im Produkttitel"
7403
-
7404
- #: includes/class-wcj-product-custom-info.php:162
7405
- #: includes/class-wcj-product-info.php:128
7406
- msgid "After product title"
7407
- msgstr "Nach dem Produkttitel"
7408
-
7409
- #: includes/class-wcj-product-custom-info.php:163
7410
- #: includes/class-wcj-product-info.php:127
7411
- msgid "After product"
7412
- msgstr "Nach dem Produkt"
7413
-
7414
- #: includes/class-wcj-product-custom-info.php:175
7415
- msgid "Products to Include"
7416
- msgstr "Einzuschließende Produkte"
7417
-
7418
- #: includes/class-wcj-product-custom-info.php:176
7419
- #: includes/class-wcj-product-custom-info.php:186
7420
- msgid "Leave blank to disable the option."
7421
- msgstr "Leer lassen, um die Option zu deaktivieren."
7422
-
7423
- #: includes/class-wcj-product-custom-info.php:185
7424
- msgid "Products to Exclude"
7425
- msgstr "Auszuschließende Produkte"
7426
-
7427
- #: includes/class-wcj-product-images.php:26
7428
- msgid "Product Images"
7429
- msgstr "Produktbilder"
7430
-
7431
- #: includes/class-wcj-product-images.php:27
7432
- msgid "Customize WooCommerce products images, thumbnails and sale flashes."
7433
- msgstr "Passen WooCommerce Produktbilder, Thumbnails und Sale Flashes an."
7434
-
7435
- #: includes/class-wcj-product-images.php:182
7436
- #: includes/class-wcj-product-images.php:334
7437
- msgid "Sale!"
7438
- msgstr "Sale!"
7439
-
7440
- #: includes/class-wcj-product-images.php:197
7441
- msgid "Replace image with custom HTML on single product page"
7442
- msgstr "Ersetze das Bild mit benutzerdefiniertem HTML auf Einzel-Produktseite"
7443
-
7444
- #: includes/class-wcj-product-images.php:203
7445
- msgid "Replace image with custom HTML on archives"
7446
- msgstr "Ersetze das Bild mit benutzerdefiniertem HTML in Archiven"
7447
-
7448
- #: includes/class-wcj-product-images.php:213
7449
- msgid "Hide Image on Single"
7450
- msgstr "Bild auf Single ausblenden"
7451
-
7452
- #: includes/class-wcj-product-images.php:223
7453
- msgid "Hide Thumbnails on Single"
7454
- msgstr "Thumbnails auf Single ausblenden"
7455
-
7456
- #: includes/class-wcj-product-images.php:233
7457
- msgid "Hide Image on Archives"
7458
- msgstr "Bild in Archiven ausblenden"
7459
-
7460
- #: includes/class-wcj-product-images.php:247
7461
- msgid "Product Image and Thumbnails"
7462
- msgstr "Produktbild und Thumbnails"
7463
-
7464
- #: includes/class-wcj-product-images.php:258
7465
- msgid "Image and Thumbnails on Single"
7466
- msgstr "Bild und Thumbnails auf Single"
7467
-
7468
- #: includes/class-wcj-product-images.php:265
7469
- msgid "Image on Single"
7470
- msgstr "Bild auf Single"
7471
-
7472
- #: includes/class-wcj-product-images.php:272
7473
- msgid "Thumbnails on Single"
7474
- msgstr "Thumbnails auf Single"
7475
-
7476
- #: includes/class-wcj-product-images.php:279
7477
- msgid "Image on Archives"
7478
- msgstr "Bild in Archiven"
7479
-
7480
- #: includes/class-wcj-product-images.php:286
7481
- msgid "Replace Image on Single"
7482
- msgstr "Ersetze das Bild auf Einzelproduktseite"
7483
-
7484
- #: includes/class-wcj-product-images.php:287
7485
- msgid ""
7486
- "Replace image on single product page with custom HTML. Leave blank to "
7487
- "disable."
7488
- msgstr ""
7489
- "Ersetze Bild auf einzelner Produktseite mit benutzerdefinierten HTML. Leer "
7490
- "lassen, um zu deaktivieren."
7491
-
7492
- #: includes/class-wcj-product-images.php:294
7493
- msgid "Replace Thumbnails on Single"
7494
- msgstr "Ersetzen von Thumbnails auf Einzel"
7495
-
7496
- #: includes/class-wcj-product-images.php:295
7497
- msgid ""
7498
- "Replace thumbnails on single product page with custom HTML. Leave blank to "
7499
- "disable."
7500
- msgstr ""
7501
- "Ersetzen von Thumbnails auf einzelner Produktseite mit benutzerdefiniertem "
7502
- "HTML. Leer lassen, um zu deaktivieren."
7503
-
7504
- #: includes/class-wcj-product-images.php:302
7505
- msgid "Replace Image on Archive"
7506
- msgstr "Ersetze Bild im Archiv"
7507
-
7508
- #: includes/class-wcj-product-images.php:303
7509
- msgid ""
7510
- "Replace image on archive pages with custom HTML. Leave blank to disable."
7511
- msgstr ""
7512
- "Ersetze das Bild auf den Archivseiten mit benutzerdefiniertem HTML. Leer "
7513
- "lassen, um zu deaktivieren."
7514
-
7515
- #: includes/class-wcj-product-images.php:310
7516
- msgid "Single Product Thumbnails Columns"
7517
- msgstr "Einzelprodukt-Thumbnails Spalten"
7518
-
7519
- #: includes/class-wcj-product-images.php:321
7520
- msgid "Product Images Sale Flash"
7521
- msgstr "Produktbilder Sale Flash"
7522
-
7523
- #: includes/class-wcj-product-images.php:332
7524
- msgid "HTML"
7525
- msgstr "HTML"
7526
-
7527
- #: includes/class-wcj-product-images.php:339
7528
- msgid "Hide on Archives (Categories)"
7529
- msgstr "Verstecken auf Archiven (Kategorien)"
7530
-
7531
- #: includes/class-wcj-product-images.php:345
7532
- msgid "Hide on Single"
7533
- msgstr "Verstecken auf Einzelprodukt"
7534
-
7535
- #: includes/class-wcj-product-info.php:103
7536
- msgid "Product Info V1"
7537
- msgstr "Produktinformation V1"
7538
-
7539
- #: includes/class-wcj-product-info.php:274
7540
- #: includes/class-wcj-product-info.php:377
7541
- #: includes/class-wcj-product-info.php:410
7542
- #: includes/class-wcj-product-tabs.php:550
7543
- msgid "Priority (i.e. Order)"
7544
- msgstr "Priorität (d.h. Bestellung)"
7545
-
7546
- #: includes/class-wcj-product-info.php:281
7547
- msgid ""
7548
- "Number of product info fields. Click \"Save changes\" after you change this "
7549
- "number."
7550
- msgstr ""
7551
- "Anzahl der Produktinformationsfelder. Klicke auf \"Änderungen speichern\" "
7552
- "nachdem Du die Nummer geändert hast."
7553
-
7554
- #: includes/class-wcj-product-info.php:303
7555
- msgid ""
7556
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7557
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7558
- "before=\" (\" after=\"%)\"]"
7559
- msgstr ""
7560
- "[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
7561
- "after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
7562
- "before=\" (\" after=\"%)\"]"
7563
-
7564
- #: includes/class-wcj-product-info.php:304
7565
- msgid "[wcj_product_total_sales before=\"Total sales: \"]"
7566
- msgstr "[wcj_product_total_sales before=\"Total sales: \"]"
7567
-
7568
- #: includes/class-wcj-product-info.php:331
7569
- msgid "Products Info"
7570
- msgstr "Produktinformation"
7571
-
7572
- #: includes/class-wcj-product-info.php:332
7573
- msgid ""
7574
- "For full list of short codes, please visit <a target=\"_blank\" href=\"http:"
7575
- "//booster.io/shortcodes/\">http://booster.io/shortcodes/</a>."
7576
- msgstr ""
7577
- "Für eine vollständige Liste der Shortcodes, besuche bitte <a "
7578
- "target=\"_blank\" href=\"http://booster.io/shortcodes/\">http://booster."
7579
- "io/shortcodes/</a>."
7580
-
7581
- #: includes/class-wcj-product-info.php:336
7582
- #: includes/class-wcj-product-info.php:350
7583
- msgid "Product Info on Archive Pages"
7584
- msgstr "Produkt-Info auf einzelnen WordPress-Archiv-Seiten"
7585
-
7586
- #: includes/class-wcj-product-info.php:337
7587
- msgid "Product Info on Single Pages"
7588
- msgstr "Produkt-Info auf einzelnen WordPress-Seiten"
7589
-
7590
- #: includes/class-wcj-product-info.php:345
7591
- msgid "Even More Products Info"
7592
- msgstr "Noch mehr Produkte-Info"
7593
-
7594
- #: includes/class-wcj-product-info.php:358
7595
- #: includes/class-wcj-product-info.php:391
7596
- msgid "HTML info."
7597
- msgstr "HTML Information."
7598
-
7599
- #: includes/class-wcj-product-info.php:360
7600
- msgid "[wcj_product_sku before=\"SKU: \"]"
7601
- msgstr "[wcj_product_sku before=\"SKU: \"]"
7602
-
7603
- #: includes/class-wcj-product-info.php:383
7604
- msgid "Product Info on Single Product Pages"
7605
- msgstr "Produktinformationen auf einzelnen Produktseiten"
7606
-
7607
- #: includes/class-wcj-product-info.php:393
7608
- msgid "Total sales: [wcj_product_total_sales]"
7609
- msgstr "Gesamtumsatz: [wcj_product_total_sales]"
7610
-
7611
- #: includes/class-wcj-product-info.php:416
7612
- msgid "Product IDs to exclude"
7613
- msgstr "Auszuschließende Produkt-IDs"
7614
-
7615
- #: includes/class-wcj-product-info.php:417
7616
- msgid "Comma separated list of product IDs to exclude from product info."
7617
- msgstr ""
7618
- "Kommagetrennte Liste der Produkt-IDs, die von der Produktinformation "
7619
- "ausgeschlossen werden sollen."
7620
-
7621
- #: includes/class-wcj-product-input-fields.php:24
7622
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:127
7623
- msgid "Product Input Fields"
7624
- msgstr "Produkt-Eingabefelder"
7625
-
7626
- #: includes/class-wcj-product-input-fields.php:25
7627
- msgid "WooCommerce product input fields."
7628
- msgstr "WooCommerce Produkt-Eingabefelder."
7629
-
7630
- #: includes/class-wcj-product-input-fields.php:124
7631
- msgid "Product Input Fields per Product Options"
7632
- msgstr "Produkt-Eingabefelder pro Produkt Optionen"
7633
-
7634
- #: includes/class-wcj-product-input-fields.php:126
7635
- #: includes/class-wcj-product-input-fields.php:164
7636
- msgid ""
7637
- "Add custom input fields to product's single page for customer to fill before "
7638
- "adding product to cart."
7639
- msgstr ""
7640
- "Füge benutzerdefinierte Eingabefelder der Produkt-Einzelseite hinzu, die ein "
7641
- "Kunde ausfüllen muss, bevor das Produkt in den Warenkorb gelegt wird."
7642
-
7643
- #: includes/class-wcj-product-input-fields.php:127
7644
- msgid ""
7645
- "When enabled this module will add \"Product Input Fields\" tab to each "
7646
- "product's \"Edit\" page."
7647
- msgstr ""
7648
- "Wenn aktiviert, wird dieses Modul jedem Produkt \"Produkt-Eingabefelder\"-"
7649
- "Tab der Bearbeitungsseite hinzufügen."
7650
-
7651
- #: includes/class-wcj-product-input-fields.php:132
7652
- msgid "Product Input Fields - per Product"
7653
- msgstr "Produkt-Eingabefelder - pro Produkt"
7654
-
7655
- #: includes/class-wcj-product-input-fields.php:134
7656
- msgid "Add custom input field on per product basis."
7657
- msgstr ""
7658
- "Benutzerdefinierte Eingabefelder auf einer pro Produktbasis hinzufügen."
7659
-
7660
- #: includes/class-wcj-product-input-fields.php:141
7661
- msgid "Default Number of Product Input Fields per Product"
7662
- msgstr "Voreingestellte Anzahl von Produkt-Eingabefeldern pro Produkt"
7663
-
7664
- #: includes/class-wcj-product-input-fields.php:162
7665
- msgid "Product Input Fields Global Options"
7666
- msgstr "Produkt-Eingabefelder - Globale Optionen"
7667
-
7668
- #: includes/class-wcj-product-input-fields.php:169
7669
- msgid "Product Input Fields - All Products"
7670
- msgstr "Produkt-Eingabefelder - Alle Produkte"
7671
-
7672
- #: includes/class-wcj-product-input-fields.php:171
7673
- msgid "Add custom input fields to all products."
7674
- msgstr "Benutzerdefinierte Eingabefelder allen Produkten hinzufügen."
7675
-
7676
- #: includes/class-wcj-product-input-fields.php:178
7677
- msgid "Product Input Fields Number"
7678
- msgstr "Produkt-Eingabefelder Anzahl"
7679
-
7680
- #: includes/class-wcj-product-input-fields.php:198
7681
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:300
7682
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:164
7683
- msgid "Product Input Field"
7684
- msgstr "Produkt-Eingabefeld"
7685
-
7686
- #: includes/class-wcj-product-input-fields.php:232
7687
- msgid "Affects Checkout, Emails and Admin Orders View"
7688
- msgstr "Betrifft Checkout, E-Mails und Admin-Bestellungen-Ansicht"
7689
-
7690
- #: includes/class-wcj-product-input-fields.php:276
7691
- msgid "Admin Order View Options"
7692
- msgstr "Admin Bestellansichts-Optionen"
7693
-
7694
- #: includes/class-wcj-product-input-fields.php:282
7695
- msgid "Replace Field ID with Field Label"
7696
- msgstr "Ersetze die Feld-ID mit Feld-Label"
7697
-
7698
- #: includes/class-wcj-product-listings.php:25
7699
- msgid "Product Listings"
7700
- msgstr "Produktauflistungen"
7701
-
7702
- #: includes/class-wcj-product-listings.php:26
7703
- msgid ""
7704
- "Change WooCommerce display options for shop and category pages: show/hide "
7705
- "categories count, exclude categories, show/hide empty categories. Add "
7706
- "\"products per page\" selector."
7707
- msgstr ""
7708
- "Ändere WooCommerce-Anzeigeoptionen für Shop- und Kategorieseiten: "
7709
- "Anzeigen/Ausblenden von Kategorienzählung, Kategorien ausschließen, leere "
7710
- "Kategorien ein-/ausblenden. \"Produkte pro Seite\"-Wähler hinzufügen."
7711
-
7712
- #: includes/class-wcj-product-listings.php:141
7713
- #: includes/class-wcj-product-listings.php:491
7714
- msgid ""
7715
- "Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
7716
- "Products on page %select_form%"
7717
- msgstr ""
7718
- "Produkte <strong>%from% - %to%</strong> ab <strong>% gesamt% </ strong>. "
7719
- "Produkte auf Seite %select_form%"
7720
-
7721
- #: includes/class-wcj-product-listings.php:362
7722
- msgid "Shop Page Display Options"
7723
- msgstr "Shop-Seite Anzeige-Optionen"
7724
-
7725
- #: includes/class-wcj-product-listings.php:364
7726
- msgid ""
7727
- "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
7728
- "Products > Product Listings\" is set to \"Show subcategories\" or \"Show "
7729
- "both\"."
7730
- msgstr ""
7731
- "Dies funktioniert nur, wenn \"Shop Page Display\" in \"WooCommerce > "
7732
- "Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7733
- "oder \"Zeige beide\" gesetzt ist."
7734
-
7735
- #: includes/class-wcj-product-listings.php:368
7736
- msgid "Categories Count"
7737
- msgstr "Kategorienzähler"
7738
-
7739
- #: includes/class-wcj-product-listings.php:369
7740
- msgid "Hide categories count on shop page"
7741
- msgstr "Kategorienzähler auf Shop-Seite ausblenden"
7742
-
7743
- #: includes/class-wcj-product-listings.php:375
7744
- msgid "Exclude Categories"
7745
- msgstr "Kategorien ausschließen"
7746
-
7747
- #: includes/class-wcj-product-listings.php:376
7748
- msgid ""
7749
- " Excludes one or more categories from the shop page. This parameter takes a "
7750
- "comma-separated list of categories by unique ID, in ascending order. Leave "
7751
- "blank to disable."
7752
- msgstr ""
7753
- " Schließt eine oder mehr Kategorien von der Shopseite aus. Dieser Parameter "
7754
- "nimmt eine durch Kommas getrennte Liste von Kategorien durch eindeutige ID "
7755
- "in aufsteigender Reihenfolge auf. Leer lassen, um zu deaktivieren."
7756
-
7757
- #: includes/class-wcj-product-listings.php:383
7758
- #: includes/class-wcj-product-listings.php:424
7759
- msgid "Hide Empty"
7760
- msgstr "Leer ausblenden"
7761
-
7762
- #: includes/class-wcj-product-listings.php:384
7763
- msgid "Hide empty categories on shop page"
7764
- msgstr "Leere Kategorien auf Shopseite ausblenden"
7765
-
7766
- #: includes/class-wcj-product-listings.php:390
7767
- #: includes/class-wcj-product-listings.php:431
7768
- msgid "Show Products"
7769
- msgstr "Zeige Produkte"
7770
-
7771
- #: includes/class-wcj-product-listings.php:391
7772
- msgid "Show products if no categories are displayed on shop page"
7773
- msgstr "Zeige Produkte auf Shopseite, wenn keine Kategorien angezeigt werden"
7774
-
7775
- #: includes/class-wcj-product-listings.php:401
7776
- msgid "Category Display Options"
7777
- msgstr "Kategorie Anzeigeoptionen"
7778
-
7779
- #: includes/class-wcj-product-listings.php:403
7780
- msgid ""
7781
- "This will work only when \"Default Category Display\" in \"WooCommerce > "
7782
- "Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
7783
- "\"Show both\"."
7784
- msgstr ""
7785
- "Dies funktioniert nur, wenn \"Standard-Kategorie Anzeige\" in \"WooCommerce >"
7786
- " Einstellungen > Produkte > Produktlisten\" auf \"Unterkategorien anzeigen\" "
7787
- "oder \"Zeige beides\" gesetzt ist."
7788
-
7789
- #: includes/class-wcj-product-listings.php:407
7790
- msgid "Subcategories Count"
7791
- msgstr "Unterkategorien-Zähler"
7792
-
7793
- #: includes/class-wcj-product-listings.php:408
7794
- msgid "Hide subcategories count on category pages"
7795
- msgstr "Unterkategorien ausblenden auf Kategorieseiten"
7796
-
7797
- #: includes/class-wcj-product-listings.php:416
7798
- msgid "Exclude Subcategories"
7799
- msgstr "Unterkategorien ausblenden"
7800
-
7801
- #: includes/class-wcj-product-listings.php:417
7802
- msgid ""
7803
- " Excludes one or more categories from the category (archive) pages. This "
7804
- "parameter takes a comma-separated list of categories by unique ID, in "
7805
- "ascending order. Leave blank to disable."
7806
- msgstr ""
7807
- " Schließt eine oder mehrere Kategorien von den Kategorie(Archiv)-Seiten aus. "
7808
- "Dieser Parameter nimmt eine durch Kommas getrennte Liste von Kategorien "
7809
- "durch eindeutige ID in aufsteigender Reihenfolge auf. Leer lassen, um zu "
7810
- "deaktivieren."
7811
-
7812
- #: includes/class-wcj-product-listings.php:425
7813
- msgid "Hide empty subcategories on category pages"
7814
- msgstr "Leere Unterkategorien auf Shopseite ausblenden"
7815
-
7816
- #: includes/class-wcj-product-listings.php:432
7817
- msgid "Show products if no categories are displayed on category page"
7818
- msgstr ""
7819
- "Produkte anzeigen, wenn keine Kategorien auf der Kategorienseite angezeigt "
7820
- "werden"
7821
-
7822
- #: includes/class-wcj-product-listings.php:442
7823
- msgid "Products per Page Options"
7824
- msgstr "Produkte pro Seite Optionen"
7825
-
7826
- #: includes/class-wcj-product-listings.php:447
7827
- msgid "Enable Products per Page"
7828
- msgstr "Produkte pro Seite aktivieren"
7829
-
7830
- #: includes/class-wcj-product-listings.php:454
7831
- msgid "Select Options"
7832
- msgstr "Optionen wählen"
7833
-
7834
- #: includes/class-wcj-product-listings.php:455
7835
- msgid "Name|Number; one per line; -1 for all products"
7836
- msgstr "Name|Nummer; eine pro Linie; -1 für alle Produkte"
7837
-
7838
- #: includes/class-wcj-product-listings.php:477
7839
- msgid "Before shop loop"
7840
- msgstr "Vor dem Shop-Loop"
7841
-
7842
- #: includes/class-wcj-product-listings.php:478
7843
- msgid "After shop loop"
7844
- msgstr "Nach dem Shop-Loop"
7845
-
7846
- #: includes/class-wcj-product-listings.php:500
7847
- msgid "TAX Display Prices in the Shop"
7848
- msgstr "Steuern-Preisanzeige im Shop"
7849
-
7850
- #: includes/class-wcj-product-listings.php:502
7851
- msgid ""
7852
- "If you want to display part of your products including TAX and another part "
7853
- "excluding TAX, you can set it here."
7854
- msgstr ""
7855
- "Wenn Du einen Teil Ihrer Produkte inkl. Steuern und einen anderen Teil exkl. "
7856
- "Steuern anzeigen möchtest, kannst Du das hier einstellen."
7857
-
7858
- #: includes/class-wcj-product-listings.php:506
7859
- msgid "Products - Including TAX"
7860
- msgstr "Produkte - inkl. Steuern"
7861
-
7862
- #: includes/class-wcj-product-listings.php:508
7863
- msgid "Select products to display including TAX."
7864
- msgstr "Wähle Produkte aus, die angezeigt werden sollen, inkl. Steuern."
7865
-
7866
- #: includes/class-wcj-product-listings.php:516
7867
- msgid "Products - Excluding TAX"
7868
- msgstr "Produkte - exkl. Steuern"
7869
-
7870
- #: includes/class-wcj-product-listings.php:518
7871
- msgid "Select products to display excluding TAX."
7872
- msgstr "Wähle Produkte aus, die ohne Steuern angezeigt werden sollen."
7873
-
7874
- #: includes/class-wcj-product-listings.php:526
7875
- msgid "Product Categories - Including TAX"
7876
- msgstr "Produktkategorien - inkl. Steuern"
7877
-
7878
- #: includes/class-wcj-product-listings.php:528
7879
- msgid "Select product categories to display including TAX."
7880
- msgstr "Wähle Produktkategorien aus, die mit Steuern angezeigt werden sollen."
7881
-
7882
- #: includes/class-wcj-product-listings.php:536
7883
- msgid "Product Categories - Excluding TAX"
7884
- msgstr "Produktkategorien - exkl. Steuern"
7885
-
7886
- #: includes/class-wcj-product-listings.php:538
7887
- msgid "Select product categories to display excluding TAX."
7888
- msgstr "Wähle Produktkategorien aus, die ohne Steuern angezeigt werden sollen."
7889
-
7890
- #: includes/class-wcj-product-open-pricing.php:27
7891
- msgid "Product Open Pricing (Name Your Price)"
7892
- msgstr "Produkt mit offenem Preis (Nenne Deinen Preis)"
7893
-
7894
- #: includes/class-wcj-product-price-by-formula.php:27
7895
- msgid "Product Price by Formula"
7896
- msgstr "Produktpreis nach Formel"
7897
-
7898
- #: includes/class-wcj-product-price-by-formula.php:206
7899
- msgid ""
7900
- "Booster: Free plugin's version is limited to only one price by formula "
7901
- "product enabled at a time. You will need to get <a href=\"http://booster."
7902
- "io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
7903
- "price by formula products."
7904
- msgstr ""
7905
- "Booster: Die kostenlose Plugin-Version ist auf nur einen Produktpreis nach "
7906
- "Formel begrenzt. Du musst <a href=\"http://booster.io/plus/\" "
7907
- "target=\"_blank\">Booster Plus</a> erwerben, um eine unbegrenzte Anzahl von "
7908
- "\"Produktpreis nach Formel\"-Produkten hinzufügen zu können."
7909
-
7910
- #: includes/class-wcj-product-price-by-formula.php:247
7911
- msgid "Calculation"
7912
- msgstr "Berechnung"
7913
-
7914
- #: includes/class-wcj-product-price-by-formula.php:253
7915
- #: includes/class-wcj-product-price-by-formula.php:313
7916
- msgid "Formula"
7917
- msgstr "Formel"
7918
-
7919
- #: includes/class-wcj-product-price-by-formula.php:259
7920
- msgid "Number of Parameters"
7921
- msgstr "Anzahl der Parameter"
7922
-
7923
- #: includes/class-wcj-product-price-by-formula.php:293
7924
- msgid "Final Price Preview"
7925
- msgstr "Endgültiger Preis-Vorschau"
7926
-
7927
- #: includes/class-wcj-product-price-by-formula.php:307
7928
- msgid "Default Settings"
7929
- msgstr "Voreinstellungen"
7930
-
7931
- #: includes/class-wcj-product-price-by-formula.php:309
7932
- msgid ""
7933
- "You can set default settings here. All settings can later be changed in "
7934
- "individual product's edit page."
7935
- msgstr ""
7936
- "Hier kannst Du Voreinstellungen festlegen. Alle Einstellungen können später, "
7937
- "auf der jeweiligen Produktbearbeitungsseite, geändert werden."
7938
-
7939
- #: includes/class-wcj-product-price-by-formula.php:314
7940
- msgid "Use \"x\" variable for product's base price. For example: x+p1*p2"
7941
- msgstr "Nutze \"x\"-Variable für den Produktbasispreis, z.B.: x+p1*p2"
7942
-
7943
- #: includes/class-wcj-product-price-by-formula.php:320
7944
- msgid "Total Params"
7945
- msgstr "Paramter-Gesamtanzahl"
7946
-
7947
- #: includes/class-wcj-product-tabs.php:25
7948
- msgid "Product Tabs"
7949
- msgstr "Produkt-Registerkarten"
7950
-
7951
- #: includes/class-wcj-product-tabs.php:26
7952
- msgid ""
7953
- "Add custom product tabs - globally or per product. Customize or completely "
7954
- "remove WooCommerce default product tabs."
7955
- msgstr ""
7956
- "Benutzerdefiniertes Produkt-Registerkarte hinzufügen - weltweit oder pro "
7957
- "Produkt. Passe an oder entferne die voreingestellten WooCommerce Produkt-"
7958
- "Registerkarten vollständig"
7959
-
7960
- #: includes/class-wcj-product-tabs.php:288
7961
- msgid "Booster: Custom Tabs"
7962
- msgstr "Booster: Benutzerdefinierte Registerkarte"
7963
-
7964
- #: includes/class-wcj-product-tabs.php:405
7965
- msgid "Total number of custom tabs"
7966
- msgstr "Gesamtanzahl an benutzerdefinierten Registerkarten"
7967
-
7968
- #: includes/class-wcj-product-tabs.php:426
7969
- #: includes/class-wcj-related-products.php:127
7970
- msgid "Order"
7971
- msgstr "Sortierung"
7972
-
7973
- #: includes/class-wcj-product-tabs.php:499
7974
- msgid "This section lets you add custom single product tabs."
7975
- msgstr ""
7976
- "Dieser Abschnitt lässt Dich benutzerdefinierte Einzelprodukt-Registerkarten "
7977
- "hinzufügen."
7978
-
7979
- #: includes/class-wcj-product-tabs.php:673
7980
- msgid "This section lets you set defaults for per product custom tabs."
7981
- msgstr ""
7982
- "Dieser Abschnitt lässt Dich die Vorgaben für benutzerdefinierte Pro-Produkt-"
7983
- "Registerkarten festlegen."
7984
-
7985
- #: includes/class-wcj-product-tabs.php:805
7986
- msgid "This section lets you customize single product tabs."
7987
- msgstr "Dieser Abschnitt lässt Dich Einzelprodukt-Registerkarten anpassen."
7988
-
7989
- #: includes/class-wcj-products-xml.php:96
7990
- #: includes/exchange-rates/class-wcj-exchange-rates-crons.php:203
7991
- msgid "Once Weekly"
7992
- msgstr "Einmal wöchentlich"
7993
-
7994
- #: includes/class-wcj-products-xml.php:285
7995
- msgid "Update Period"
7996
- msgstr "Zeitraum aktualisieren"
7997
-
7998
- #: includes/class-wcj-products-xml.php:297
7999
- msgid ""
8000
- "Possible update periods are: every minute, hourly, twice daily, daily and "
8001
- "weekly."
8002
- msgstr ""
8003
- "Mögliche Aktualisierungszeiträume sind: jede Minute, stündlich, zweimal "
8004
- "täglich, täglich und wöchentlich."
8005
-
8006
- #: includes/class-wcj-purchase-data.php:26
8007
- msgid "Product Cost Price"
8008
- msgstr "Produktkosten-Preis"
8009
-
8010
- #: includes/class-wcj-purchase-data.php:27
8011
- msgid "Save WooCommerce product purchase costs data for admin reports."
8012
- msgstr "Speichere WooCommerce Produktverkaufskosten-Daten für Admin-Berichte."
8013
-
8014
- #: includes/class-wcj-purchase-data.php:116
8015
- #: includes/class-wcj-purchase-data.php:278
8016
- msgid "Product cost (purchase) price"
8017
- msgstr "Produktkosten-(Kauf)-Preis"
8018
-
8019
- #: includes/class-wcj-purchase-data.php:168
8020
- #: includes/class-wcj-purchase-data.php:359
8021
- msgid "(Last) Purchase date"
8022
- msgstr "(Letztes) Kaufdatum"
8023
-
8024
- #: includes/class-wcj-purchase-data.php:384
8025
- msgid "Orders List Custom Columns"
8026
- msgstr "Bestellliste benutzerdefinierte Spalten"
8027
-
8028
- #: includes/class-wcj-related-products.php:26
8029
- msgid ""
8030
- "Change displayed WooCommerce related products number, columns, order, relate "
8031
- "by tag and/or category, or hide related products completely."
8032
- msgstr ""
8033
- "Ändern der angezeigten WooCommerce-bezogenen Produktnummern, Spalten, "
8034
- "Reihenfolge, beziehen sich auf Stichwort und/oder Kategorie oder verbergen "
8035
- "ähnliche Produkte vollständig."
8036
-
8037
- #: includes/class-wcj-related-products.php:104
8038
- msgid "Related Products Number"
8039
- msgstr "Ähnliche Produkte Nummer"
8040
-
8041
- #: includes/class-wcj-related-products.php:110
8042
- msgid "Related Products Columns"
8043
- msgstr "Ähnliche Produkte Spalten"
8044
-
8045
- #: includes/class-wcj-related-products.php:116
8046
- msgid "Order by"
8047
- msgstr "Ordnen nach"
8048
-
8049
- #: includes/class-wcj-related-products.php:121
8050
- msgid "Random"
8051
- msgstr "Zufällig"
8052
-
8053
- #: includes/class-wcj-related-products.php:122
8054
- msgid "Date"
8055
- msgstr "Datum"
8056
-
8057
- #: includes/class-wcj-related-products.php:133
8058
- msgid "Ascending"
8059
- msgstr "Aufsteigend"
8060
-
8061
- #: includes/class-wcj-related-products.php:134
8062
- msgid "Descending"
8063
- msgstr "Absteigend"
8064
-
8065
- #: includes/class-wcj-related-products.php:150
8066
- msgid "Hide Related Products"
8067
- msgstr "Verstecke Ähnliche Produkte"
8068
-
8069
- #: includes/class-wcj-reports.php:34
8070
- msgid "Reports"
8071
- msgstr "Berichte"
8072
-
8073
- #: includes/class-wcj-reports.php:73
8074
- msgid "Booster: More Ranges - Months"
8075
- msgstr "Booster: Mehr Umfang - Monate"
8076
-
8077
- #: includes/class-wcj-reports.php:75 includes/class-wcj-reports.php:111
8078
- msgid "Select Range"
8079
- msgstr "Umfang wählen"
8080
-
8081
- #: includes/class-wcj-reports.php:109
8082
- msgid "Booster: More Ranges"
8083
- msgstr "Booster: Mehr Umfang"
8084
-
8085
- #: includes/class-wcj-reports.php:119 includes/class-wcj-reports.php:121
8086
- msgid "Last 14 Days"
8087
- msgstr "Letzte 14 Tage"
8088
-
8089
- #: includes/class-wcj-reports.php:126 includes/class-wcj-reports.php:128
8090
- msgid "Last 30 Days"
8091
- msgstr "Letzte 30 Tage"
8092
-
8093
- #: includes/class-wcj-reports.php:133 includes/class-wcj-reports.php:135
8094
- msgid "Last 3 Months"
8095
- msgstr "Letzte 3 Monate"
8096
-
8097
- #: includes/class-wcj-reports.php:140 includes/class-wcj-reports.php:142
8098
- msgid "Last 6 Months"
8099
- msgstr "Letzte 6 Monate"
8100
-
8101
- #: includes/class-wcj-reports.php:147 includes/class-wcj-reports.php:149
8102
- msgid "Last 12 Months"
8103
- msgstr "Letzte 12 Monate"
8104
-
8105
- #: includes/class-wcj-reports.php:154 includes/class-wcj-reports.php:156
8106
- msgid "Last 24 Months"
8107
- msgstr "Letzte 24 Monate"
8108
-
8109
- #: includes/class-wcj-reports.php:161 includes/class-wcj-reports.php:163
8110
- msgid "Same Days Last Month"
8111
- msgstr "Gleiche Tage Letzter Monat"
8112
-
8113
- #: includes/class-wcj-reports.php:175 includes/class-wcj-reports.php:177
8114
- msgid "Last Year"
8115
- msgstr "Letztes Jahr"
8116
-
8117
- #: includes/class-wcj-reports.php:241
8118
- msgid "Booster: Product Sales"
8119
- msgstr "Booster: Verkaufte Produkte"
8120
-
8121
- #: includes/class-wcj-reports.php:248
8122
- msgid "Booster: Monthly Sales"
8123
- msgstr "Booster: Monatliche Verkäufe"
8124
-
8125
- #: includes/class-wcj-reports.php:263
8126
- msgid "Booster: All in stock"
8127
- msgstr "Booster: Alles auf Lager"
8128
-
8129
- #: includes/class-wcj-reports.php:270
8130
- msgid "Booster: Understocked"
8131
- msgstr "Booester: Untervorratet"
8132
-
8133
- #: includes/class-wcj-reports.php:277
8134
- msgid "Booster: Overstocked"
8135
- msgstr "Booster: Übervorratet"
8136
-
8137
- #: includes/class-wcj-reports.php:323
8138
- msgid "Count variations in product sales report"
8139
- msgstr "Zähle Varianten in Produktverkaufsbericht"
8140
-
8141
- #: includes/class-wcj-reports.php:328
8142
- msgid "Monthly Sales (with currency conversions)"
8143
- msgstr "Monatliche Verkäufe (mit Währungsumrechnungen)"
8144
-
8145
- #: includes/class-wcj-reports.php:352
8146
- msgid "Understocked products (calculated by sales data)"
8147
- msgstr "Untervorratete Produkte (berechnet nach Verkaufsdaten)"
8148
-
8149
- #: includes/class-wcj-reports.php:358
8150
- msgid "Overstocked products (calculated by sales data)"
8151
- msgstr "Übervorratete Produkte (berechnet nach Verkaufsdaten)"
8152
-
8153
- #: includes/class-wcj-reports.php:366
8154
- msgid "Available Reports"
8155
- msgstr "Verfügbare Berichte"
8156
-
8157
- #: includes/class-wcj-reports.php:383
8158
- msgid "View report"
8159
- msgstr "Bericht ansehen"
8160
-
8161
- #: includes/class-wcj-shipping-calculator.php:25
8162
- msgid "Shipping Calculator"
8163
- msgstr "Versandrechner"
8164
-
8165
- #: includes/class-wcj-shipping-calculator.php:26
8166
- msgid "Customize WooCommerce shipping calculator on cart page."
8167
- msgstr "Anpassung des WooCommerce Versandrechners auf Warenkorbseite."
8168
-
8169
- #: includes/class-wcj-shipping-calculator.php:128
8170
- msgid "Shipping Calculator Options"
8171
- msgstr "Versandrechner-Optionen"
8172
-
8173
- #: includes/class-wcj-shipping-calculator.php:133
8174
- msgid "Enable City"
8175
- msgstr "Stadt aktivieren"
8176
-
8177
- #: includes/class-wcj-shipping-calculator.php:140
8178
- msgid "Enable Postcode"
8179
- msgstr "Postleitzahl aktivieren"
8180
-
8181
- #: includes/class-wcj-shipping-calculator.php:147
8182
- msgid "Enable State"
8183
- msgstr "Zustand aktivieren"
8184
-
8185
- #: includes/class-wcj-shipping-calculator.php:154
8186
- msgid "Force Block Open"
8187
- msgstr "Erzwinge Block öffnen"
8188
-
8189
- #: includes/class-wcj-shipping-calculator.php:162
8190
- msgid "Calculate Shipping button"
8191
- msgstr "Versandkosten berechnen-Button"
8192
-
8193
- #: includes/class-wcj-shipping-calculator.php:163
8194
- msgid ""
8195
- "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
8196
- "options."
8197
- msgstr ""
8198
- "Wenn die Option \"Erzwinge Block öffnen\" aktiviert ist, stelle die Optionen "
8199
- "für den \"Versand berechnen\"-Button ein."
8200
-
8201
- #: includes/class-wcj-shipping-calculator.php:169
8202
- msgid "Make non clickable"
8203
- msgstr "Nicht anklickbar machen"
8204
-
8205
- #: includes/class-wcj-shipping.php:27
8206
- msgid "Add multiple custom shipping methods to WooCommerce."
8207
- msgstr "Füge WooCommerce mehrfache benutzerdefinierte Versandmethoden hinzu."
8208
-
8209
- #: includes/class-wcj-shipping.php:29
8210
- msgid "Hide WooCommerce shipping when free is available."
8211
- msgstr "Verstecken von WooCommerce-Versand, wenn kostenlos verfügbar ist."
8212
-
8213
- #: includes/class-wcj-shipping.php:201
8214
- msgid "This section lets you set number of custom shipping methods to add."
8215
- msgstr ""
8216
- "Dieser Abschnitt lässt Dich die Anzahl von hinzufügbaren benutzerdefinierten "
8217
- "Versandmethoden festlegen."
8218
-
8219
- #: includes/class-wcj-shipping.php:205
8220
- msgid "Custom Shipping Methods Number"
8221
- msgstr "Benutzerdefinierte Versandmethoden-Nummer"
8222
-
8223
- #: includes/class-wcj-shipping.php:217
8224
- msgid "Admin Title Custom Shipping"
8225
- msgstr "Admin Titel benutzerdefinierter Versand"
8226
-
8227
- #: includes/class-wcj-shipping.php:231
8228
- msgid "Hide if Free is Available"
8229
- msgstr "Wenn \"kostenlos\" verfügbar ist, ausblenden"
8230
-
8231
- #: includes/class-wcj-shipping.php:233
8232
- msgid ""
8233
- "This section lets you hide other shipping options when free shipping is "
8234
- "available on shop frontend."
8235
- msgstr ""
8236
- "Dieser Abschnitt lässt Dich andere Versandoptionen ausblenden, wenn "
8237
- "kostenloser Versand im Shop-Frontend verfügbar ist."
8238
-
8239
- #: includes/class-wcj-shipping.php:245
8240
- msgid "Hide shipping"
8241
- msgstr "Versand ausblenden"
8242
-
8243
- #: includes/class-wcj-shipping.php:259 includes/class-wcj-shipping.php:265
8244
- msgid "Shipping Descriptions"
8245
- msgstr "Versandbeschreibungen"
8246
-
8247
- #: includes/class-wcj-shipping.php:261
8248
- msgid ""
8249
- "This section will allow you to add any text (e.g. description) for shipping "
8250
- "method. Text will be visible on cart and checkout pages. You can add HTML "
8251
- "tags here, e.g. try \"%s\""
8252
- msgstr ""
8253
- "In diesem Abschnitt kannst Du einen beliebigen Text (z. B. Beschreibung) für "
8254
- "die Versandart hinzufügen. Text wird auf Warenkorb- und Kassenseiten "
8255
- "sichtbar. Du kannst hier HTML-Tags hinzufügen, versuche z.B. \"%s\""
8256
-
8257
- #: includes/class-wcj-shipping.php:291 includes/class-wcj-shipping.php:297
8258
- msgid "Shipping Icons"
8259
- msgstr "Versandicons"
8260
-
8261
- #: includes/class-wcj-shipping.php:293
8262
- msgid ""
8263
- "This section will allow you to add icons for shipping method. Icons will be "
8264
- "visible on cart and checkout pages."
8265
- msgstr ""
8266
- "In diesem Abschnitt kannst Du Icons für die Versandmethode hinzufügen. Icons "
8267
- "werden auf Warenkorb- und Kassenseiten sichtbar."
8268
-
8269
- #: includes/class-wcj-sku.php:26 includes/class-wcj-sku.php:245
8270
- #: includes/export/class-wcj-fields-helper.php:283
8271
- msgid "SKU"
8272
- msgstr "SKU"
8273
-
8274
- #: includes/class-wcj-sku.php:27
8275
- msgid "Generate WooCommerce SKUs automatically."
8276
- msgstr "Generiere WooCommerce SKUs automatisch."
8277
-
8278
- #: includes/class-wcj-sku.php:33
8279
- msgid "Autogenerate SKUs"
8280
- msgstr "Autogenerieren von SKUs"
8281
-
8282
- #: includes/class-wcj-sku.php:321
8283
- msgid "Variable Products Variations"
8284
- msgstr "Varianten für Variable Produkte"
8285
-
8286
- #: includes/class-wcj-sku.php:322
8287
- msgid ""
8288
- "Please note, that on new variable product creation, variations will get same "
8289
- "SKUs as parent product, and if you want variations to have different SKUs, "
8290
- "you will need to run \"Autogenerate SKUs\" tool manually."
8291
- msgstr ""
8292
- "Bitte beachte, dass Variationen bei der Erzeugung neuer Variablen dieselben "
8293
- "SKUs wie das übergeordnete Produkt erhalten. Wenn Variationen "
8294
- "unterschiedliche SKUs haben sollen, musst Du das Werkzeug \"Autogenerieren "
8295
- "von SKUs\" manuell ausführen."
8296
-
8297
- #: includes/class-wcj-sku.php:386
8298
- msgid "If disabled you can use Autogenerate SKUs tool."
8299
- msgstr ""
8300
- "Wenn deaktiviert, kannst Du \"Autogenerieren von SKUs\"-Werkzeug verwenden."
8301
-
8302
- #: includes/class-wcj-sku.php:413
8303
- msgid ""
8304
- "If you wish to set SKUs for existing products, use \"Autogenerate SKUs\" "
8305
- "Tool."
8306
- msgstr ""
8307
- "Wenn Du SKUs für bestehende Produkte festlegen möchtest, verwende das "
8308
- "Werkzeug \"Autogenerieren von SKUs\"."
8309
-
8310
- #: includes/class-wcj-sorting.php:26
8311
- msgid "Sorting"
8312
- msgstr "Sortierung"
8313
-
8314
- #: includes/class-wcj-sorting.php:27
8315
- msgid ""
8316
- "Add more WooCommerce sorting options or remove all sorting including default."
8317
- msgstr ""
8318
- "Füge weitere WooCommerce Sortierungsoptionen hinzu oder entferne alle "
8319
- "Sortierungen einschließlich der Voreingestellten."
8320
-
8321
- #: includes/class-wcj-sorting.php:67
8322
- msgid "WooJetpack: Remove All Sorting"
8323
- msgstr "WooJetpack: Alle Sortierungen entfernen"
8324
-
8325
- #: includes/class-wcj-sorting.php:71
8326
- msgid "Completely remove sorting from the shop front end"
8327
- msgstr "Sortierung komplett aus dem Shop entfernen"
8328
-
8329
- #: includes/class-wcj-sorting.php:165 includes/class-wcj-sorting.php:170
8330
- msgid "Remove All Sorting"
8331
- msgstr "Entfernen aller Sortierungen"
8332
-
8333
- #: includes/class-wcj-sorting.php:171
8334
- msgid "Remove all sorting (including WooCommerce default)"
8335
- msgstr "Entferne alle Sortierungen (einschließlich WooCommerce-Voreinstellung)"
8336
-
8337
- #: includes/class-wcj-sorting.php:183 includes/class-wcj-sorting.php:188
8338
- msgid "Add More Sorting"
8339
- msgstr "Weitere Sortierung hinzufügen"
8340
-
8341
- #: includes/class-wcj-sorting.php:195
8342
- msgid "Sort by Name"
8343
- msgstr "Sortieren nach Name"
8344
-
8345
- #: includes/class-wcj-sorting.php:196 includes/class-wcj-sorting.php:199
8346
- msgid "Sort by title: A to Z"
8347
- msgstr "Sortieren nach Titel: A bis Z"
8348
-
8349
- #: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:206
8350
- #: includes/class-wcj-sorting.php:215 includes/class-wcj-sorting.php:224
8351
- #: includes/class-wcj-sorting.php:242 includes/class-wcj-sorting.php:251
8352
- msgid "Text to show on frontend. Leave blank to disable."
8353
- msgstr "Anzuzeigender Text im Frontend. Leer lassen, um zu deaktivieren."
8354
-
8355
- #: includes/class-wcj-sorting.php:205 includes/class-wcj-sorting.php:208
8356
- msgid "Sort by title: Z to A"
8357
- msgstr "Sortieren nach Titel: Z bis A"
8358
-
8359
- #: includes/class-wcj-sorting.php:213
8360
- msgid "Sort by SKU"
8361
- msgstr "Sortieren nach SKU"
8362
-
8363
- #: includes/class-wcj-sorting.php:214 includes/class-wcj-sorting.php:217
8364
- msgid "Sort by SKU: low to high"
8365
- msgstr "Sortieren nach SKU: von niedrig nach hoch"
8366
-
8367
- #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:226
8368
- msgid "Sort by SKU: high to low"
8369
- msgstr "Sortieren nach SKU: von hoch nach niedrig"
8370
-
8371
- #: includes/class-wcj-sorting.php:232
8372
- msgid "Sort SKUs as numbers instead of as texts"
8373
- msgstr "Sortiere SKUs als Zahlen anstelle von Texten"
8374
-
8375
- #: includes/class-wcj-sorting.php:240
8376
- msgid "Sort by stock quantity"
8377
- msgstr "Nach Bestandsmenge sortieren"
8378
-
8379
- #: includes/class-wcj-sorting.php:241 includes/class-wcj-sorting.php:244
8380
- msgid "Sort by stock quantity: low to high"
8381
- msgstr "Nach Bestandsmenge sortieren: von niedrig nach hoch"
8382
-
8383
- #: includes/class-wcj-sorting.php:250 includes/class-wcj-sorting.php:253
8384
- msgid "Sort by stock quantity: high to low"
8385
- msgstr "Nach Bestandsmenge sortieren: von hoch nach niedrig"
8386
-
8387
- #: includes/class-wcj-wholesale-price.php:27
8388
- msgid "Wholesale Price"
8389
- msgstr "Großhandelspreis"
8390
-
8391
- #: includes/class-wcj-wholesale-price.php:28
8392
- msgid ""
8393
- "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
8394
- "more pay less)."
8395
- msgstr ""
8396
- "WooCommerce Großhandelspreisgestaltung, abhängig von der Produktmenge im "
8397
- "Einkaufswagen (mehr kaufen weniger zahlen) einstellen."
8398
-
8399
- #: includes/class-wcj-wholesale-price.php:266
8400
- msgid "Enable per Product Levels"
8401
- msgstr "Aktivieren von pro Produktstufen"
8402
-
8403
- #: includes/class-wcj-wholesale-price.php:273
8404
- #: includes/class-wcj-wholesale-price.php:419
8405
- msgid "Discount Type"
8406
- msgstr "Rabattart"
8407
-
8408
- #: includes/class-wcj-wholesale-price.php:280
8409
- #: includes/class-wcj-wholesale-price.php:315
8410
- #: includes/class-wcj-wholesale-price.php:455
8411
- #: includes/class-wcj-wholesale-price.php:510
8412
- msgid "Number of levels"
8413
- msgstr "Anzahl der Stufen"
8414
-
8415
- #: includes/class-wcj-wholesale-price.php:281
8416
- #: includes/class-wcj-wholesale-price.php:316
8417
- msgid ""
8418
- "Free Booster's version is limited to one level maximum. Please visit http:"
8419
- "//booster.io to get full version."
8420
- msgstr ""
8421
- "Free Booster-Version ist auf maximal eine Stufe begrenzt. Bitte besuche http:"
8422
- "//booster.io, um die Vollversion zu erwerben."
8423
-
8424
- #: includes/class-wcj-wholesale-price.php:295
8425
- #: includes/class-wcj-wholesale-price.php:302
8426
- #: includes/class-wcj-wholesale-price.php:330
8427
- #: includes/class-wcj-wholesale-price.php:337
8428
- msgid "Level"
8429
- msgstr "Stufe"
8430
-
8431
- #: includes/class-wcj-wholesale-price.php:295
8432
- #: includes/class-wcj-wholesale-price.php:330
8433
- #: includes/class-wcj-wholesale-price.php:468
8434
- #: includes/class-wcj-wholesale-price.php:524
8435
- msgid "Min quantity"
8436
- msgstr "Mindestmenge"
8437
-
8438
- #: includes/class-wcj-wholesale-price.php:302
8439
- #: includes/export/class-wcj-fields-helper.php:288
8440
- #: includes/reports/wcj-class-reports-stock.php:321
8441
- msgid "Price"
8442
- msgstr "Preis"
8443
-
8444
- #: includes/class-wcj-wholesale-price.php:302
8445
- #: includes/class-wcj-wholesale-price.php:337
8446
- #: includes/class-wcj-wholesale-price.php:476
8447
- #: includes/class-wcj-wholesale-price.php:477
8448
- #: includes/class-wcj-wholesale-price.php:532
8449
- #: includes/class-wcj-wholesale-price.php:533
8450
- msgid "Discount"
8451
- msgstr "Rabatt"
8452
-
8453
- #: includes/class-wcj-wholesale-price.php:379
8454
- msgid ""
8455
- "Wholesale Price Levels Options. If you want to display prices table on "
8456
- "frontend, use [wcj_product_wholesale_price_table] shortcode."
8457
- msgstr ""
8458
- "Großhandels-Preisstufen-Optionen. Wenn Du die Preistabelle auf dem Frontend "
8459
- "anzeigen möchtest, verwende den Shortcode [wcj_product_wholesale_price_table]"
8460
- "."
8461
-
8462
- #: includes/class-wcj-wholesale-price.php:383
8463
- msgid "Enable per Product"
8464
- msgstr "Aktivieren pro Produkt"
8465
-
8466
- #: includes/class-wcj-wholesale-price.php:390
8467
- msgid "Use total cart quantity instead of product quantity"
8468
- msgstr "Verwende die gesamte Warenkorbmenge statt der Produktmenge"
8469
-
8470
- #: includes/class-wcj-wholesale-price.php:397
8471
- msgid "Apply wholesale discount only if no other cart discounts were applied"
8472
- msgstr ""
8473
- "Wende den Großhandelsrabatt nur an, wenn keine anderen Warenkorbrabatte "
8474
- "angewandt wurden"
8475
-
8476
- #: includes/class-wcj-wholesale-price.php:404
8477
- msgid "Show discount info on cart page"
8478
- msgstr "Zeige Rabatt-Info auf der Warenkorbseite"
8479
-
8480
- #: includes/class-wcj-wholesale-price.php:405
8481
- msgid "Show"
8482
- msgstr "Zeige"
8483
-
8484
- #: includes/class-wcj-wholesale-price.php:411
8485
- msgid "If show discount info on cart page is enabled, set format here"
8486
- msgstr ""
8487
- "Wenn die Rabattinfo auf der Warenkorbseite aktiviert ist, lege hier das "
8488
- "Format fest"
8489
-
8490
- #: includes/class-wcj-wholesale-price.php:429
8491
- msgid "Products to include"
8492
- msgstr "Einzuschließende Produkte"
8493
-
8494
- #: includes/class-wcj-wholesale-price.php:430
8495
- msgid "Leave blank to include all products."
8496
- msgstr "Lasse das Feld leer, um alle Produkte einzuschließen."
8497
-
8498
- #: includes/class-wcj-wholesale-price.php:438
8499
- msgid "Products to exclude"
8500
- msgstr "Auszuschließende Produkte"
8501
-
8502
- #: includes/class-wcj-wholesale-price.php:450
8503
- msgid "Wholesale Levels Options"
8504
- msgstr "Großhandel-Abstufungs-Optionen"
8505
-
8506
- #: includes/class-wcj-wholesale-price.php:469
8507
- #: includes/class-wcj-wholesale-price.php:525
8508
- msgid "Minimum quantity to apply discount"
8509
- msgstr "Mindestabnahmemenge um Rabatt anzuwenden"
8510
-
8511
- #: includes/class-wcj-wholesale-price.php:490
8512
- msgid "Additional User Roles Options"
8513
- msgstr "Optionen für zusätzliche Benutzer-Rollen"
8514
-
8515
- #: includes/class-wcj-wholesale-price.php:492
8516
- msgid ""
8517
- "If you want to set different wholesale pricing options for different user "
8518
- "roles, fill this section. Please note that you can also use Booster's "
8519
- "\"Price by User Role\" module without filling this section."
8520
- msgstr ""
8521
- "Wenn Du verschiedene Großhandelspreisoptionen für verschiedene "
8522
- "Benutzerrollen festlegen möchtest, fülle diesen Abschnitt aus. Bitte beachte,"
8523
- " dass Du auch das Modul \"Preis nach Benutzer-Rolle\" von Booster verwenden "
8524
- "kannst, ohne diesen Abschnitt auszufüllen."
8525
-
8526
- #: includes/class-wcj-wholesale-price.php:496
8527
- msgid "User Roles Settings"
8528
- msgstr "Benutzer Rollen-Einstellungen"
8529
-
8530
- #: includes/class-wcj-wpml.php:26
8531
- msgid "Booster WPML"
8532
- msgstr "Booster WPML"
8533
-
8534
- #: includes/class-wcj-wpml.php:27
8535
- msgid "Booster for WooCommerce basic WPML support."
8536
- msgstr "Booster for WooCommerce Grundlegende Unterstützung für WPML."
8537
-
8538
- #: includes/class-wcj-wpml.php:66 includes/classes/class-wcj-module.php:336
8539
- msgid "Tools"
8540
- msgstr "Werkzeuge"
8541
-
8542
- #: includes/class-wcj-wpml.php:71 includes/classes/class-wcj-module.php:342
8543
- msgid "Module Tools"
8544
- msgstr "Modul-Werkzeuge"
8545
-
8546
- #: includes/class-wcj-wpml.php:76 includes/class-wcj-wpml.php:79
8547
- msgid "Regenerate wpml-config.xml file"
8548
- msgstr "Regeneriere die Datei wpml-config.xml"
8549
-
8550
- #: includes/class-wcj-wpml.php:104
8551
- msgid "File wpml-config.xml successfully regenerated!"
8552
- msgstr "Datei wpml-config.xml erfolgreich regeneriert!"
8553
-
8554
- #: includes/classes/class-wcj-module.php:324
8555
- msgid "Back to Module Settings"
8556
- msgstr "Zurück zu Moduleinstellungen"
8557
-
8558
- #: includes/classes/class-wcj-module.php:416
8559
- msgid "disabled"
8560
- msgstr "deaktiviert"
8561
-
8562
- #: includes/classes/class-wcj-module.php:462
8563
- msgid "Reset Settings"
8564
- msgstr "Einstellungen rücksetzen"
8565
-
8566
- #: includes/classes/class-wcj-module.php:468
8567
- msgid "Reset Module to Default Settings"
8568
- msgstr "Modul auf Voreinstellungen rücksetzen"
8569
-
8570
- #: includes/classes/class-wcj-module.php:469
8571
- msgid "Reset Submodule to Default Settings"
8572
- msgstr "Untermodul auf Voreinstellungen rücksetzen"
8573
-
8574
- #: includes/classes/class-wcj-module.php:473
8575
- msgid "Reset settings"
8576
- msgstr "Einstellungen rücksetzen"
8577
-
8578
- #: includes/classes/class-wcj-module.php:501
8579
- msgid "Module Options"
8580
- msgstr "Moduloptionen"
8581
-
8582
- #: includes/classes/class-wcj-module.php:508
8583
- msgid "Enable Module"
8584
- msgstr "Modul aktivieren"
8585
-
8586
- #: includes/currencies/wcj-currencies.php:83
8587
- msgid "Kenyan shilling"
8588
- msgstr "Kenia-Schilling"
8589
-
8590
- #: includes/emails/class-wc-email-wcj-custom.php:31
8591
- msgid ""
8592
- "Custom emails are sent to the recipient list when selected triggers are "
8593
- "called."
8594
- msgstr ""
8595
- "Wenn ausgewählte Auslöser aufgerufen werden, werden benutzerdefinierte E-"
8596
- "Mails an die Empfängerliste gesendet."
8597
-
8598
- #: includes/emails/class-wc-email-wcj-custom.php:33
8599
- msgid "Custom Heading"
8600
- msgstr "Benutzerdefinierte Überschrift"
8601
-
8602
- #: includes/emails/class-wc-email-wcj-custom.php:34
8603
- msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
8604
- msgstr ""
8605
- "[{site_title}] Benutzerdefinierter Betreff - Bestellung ({order_number}) - "
8606
- "{order_date}"
8607
-
8608
- #: includes/emails/class-wc-email-wcj-custom.php:251
8609
- msgid "New order (%s)"
8610
- msgstr "neue bestellung (%s)"
8611
-
8612
- #: includes/emails/class-wc-email-wcj-custom.php:252
8613
- msgid "Order status updated to %s"
8614
- msgstr "Bestellzustand aktualisiert zu %s"
8615
-
8616
- #: includes/emails/class-wc-email-wcj-custom.php:262
8617
- #: includes/gateways/class-wc-gateway-wcj-custom.php:61
8618
- #: includes/shipping/class-wc-shipping-wcj-custom.php:76
8619
- msgid "Enable/Disable"
8620
- msgstr "Aktivieren/Deaktivieren"
8621
-
8622
- #: includes/emails/class-wc-email-wcj-custom.php:264
8623
- msgid "Enable this email notification"
8624
- msgstr "Aktiviere diese Emailbenachrichtigung"
8625
-
8626
- #: includes/emails/class-wc-email-wcj-custom.php:268
8627
- msgid "Trigger(s)"
8628
- msgstr "Auslöser"
8629
-
8630
- #: includes/emails/class-wc-email-wcj-custom.php:272
8631
- msgid ""
8632
- "Please note, that all new orders in WooCommerce by default are created with "
8633
- "Pending Payment status. If you want to change the default order status - you "
8634
- "can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
8635
- "Settings > Booster > Shipping & Orders > Order Custom Statuses)."
8636
- msgstr ""
8637
- "Bitte beachte, dass alle neuen Bestellungen in WooCommerce voreingestellt "
8638
- "mit \"Ausstehendem Zahlungstatus\" erstellt werden. Wenn Du den "
8639
- "Standardbestellstatus ändern möchtest - kannst Du Booster's "
8640
- "\"Benutzerdefinierte Bestellzustände\"-Modul (in WooCommerce > Einstellungen "
8641
- "> Booster > Versand & Bestellungen > Benutzerdefinierte Bestellzustände) "
8642
- "nutzen."
8643
-
8644
- #: includes/emails/class-wc-email-wcj-custom.php:275
8645
- msgid "New order (Any status)"
8646
- msgstr "Neue Bestellung (jeder Zustand)"
8647
-
8648
- #: includes/emails/class-wc-email-wcj-custom.php:280
8649
- msgid "Reset password notification"
8650
- msgstr "Kennwortbenachrichtigung zurücksetzen"
8651
-
8652
- #: includes/emails/class-wc-email-wcj-custom.php:281
8653
- msgid "Order fully refunded notification"
8654
- msgstr "Benachrichtigung für Auftrag vollständig zurückerstattet"
8655
-
8656
- #: includes/emails/class-wc-email-wcj-custom.php:282
8657
- msgid "Order partially refunded notification"
8658
- msgstr "Benachrichtigung für Bestellung teilweise zurückerstattet"
8659
-
8660
- #: includes/emails/class-wc-email-wcj-custom.php:283
8661
- msgid "New customer note notification"
8662
- msgstr "Benachrichtigung über neuen Kunden"
8663
-
8664
- #: includes/emails/class-wc-email-wcj-custom.php:295
8665
- msgid "Recipient(s)"
8666
- msgstr "Empfänger"
8667
-
8668
- #: includes/emails/class-wc-email-wcj-custom.php:297
8669
- msgid ""
8670
- "Enter recipients (comma separated) for this email. Defaults to <code>"
8671
- "%s</code>."
8672
- msgstr ""
8673
- "Empfänger eingeben (Komma-getrennt) für diese Email. Voreinstellung ist "
8674
- "<code>%s</code>."
8675
-
8676
- #: includes/emails/class-wc-email-wcj-custom.php:297
8677
- msgid "Or enter <code>%customer%</code> to send to customer billing email."
8678
- msgstr ""
8679
- "Oder gib <code>%customer%</code> ein, um an die Rechnungs-E-Mail des Kunden "
8680
- "zu senden."
8681
-
8682
- #: includes/emails/class-wc-email-wcj-custom.php:302
8683
- msgid "Subject"
8684
- msgstr "Betreff"
8685
-
8686
- #: includes/export/class-wcj-fields-helper.php:36
8687
- #: includes/export/class-wcj-fields-helper.php:132
8688
- #: includes/export/class-wcj-fields-helper.php:217
8689
- msgid "Billing Email"
8690
- msgstr "Rechnung Email"
8691
-
8692
- #: includes/export/class-wcj-fields-helper.php:37
8693
- #: includes/export/class-wcj-fields-helper.php:122
8694
- #: includes/export/class-wcj-fields-helper.php:207
8695
- msgid "Billing First Name"
8696
- msgstr "Rechnung Vorname"
8697
-
8698
- #: includes/export/class-wcj-fields-helper.php:38
8699
- #: includes/export/class-wcj-fields-helper.php:123
8700
- #: includes/export/class-wcj-fields-helper.php:208
8701
- msgid "Billing Last Name"
8702
- msgstr "Rechnung Nachname"
8703
-
8704
- #: includes/export/class-wcj-fields-helper.php:39
8705
- #: includes/export/class-wcj-fields-helper.php:124
8706
- #: includes/export/class-wcj-fields-helper.php:209
8707
- msgid "Billing Company"
8708
- msgstr "Rechnung Unternehmen"
8709
-
8710
- #: includes/export/class-wcj-fields-helper.php:40
8711
- #: includes/export/class-wcj-fields-helper.php:125
8712
- #: includes/export/class-wcj-fields-helper.php:210
8713
- msgid "Billing Address 1"
8714
- msgstr "Rechnungsadresse 1"
8715
-
8716
- #: includes/export/class-wcj-fields-helper.php:41
8717
- #: includes/export/class-wcj-fields-helper.php:126
8718
- #: includes/export/class-wcj-fields-helper.php:211
8719
- msgid "Billing Address 2"
8720
- msgstr "Rechnungsadresse 2"
8721
-
8722
- #: includes/export/class-wcj-fields-helper.php:42
8723
- #: includes/export/class-wcj-fields-helper.php:127
8724
- #: includes/export/class-wcj-fields-helper.php:212
8725
- msgid "Billing City"
8726
- msgstr "Rechnung Ort"
8727
-
8728
- #: includes/export/class-wcj-fields-helper.php:43
8729
- #: includes/export/class-wcj-fields-helper.php:128
8730
- #: includes/export/class-wcj-fields-helper.php:213
8731
- msgid "Billing State"
8732
- msgstr "Rechnung Bundesland/Staat/Region"
8733
-
8734
- #: includes/export/class-wcj-fields-helper.php:44
8735
- #: includes/export/class-wcj-fields-helper.php:129
8736
- #: includes/export/class-wcj-fields-helper.php:214
8737
- msgid "Billing Postcode"
8738
- msgstr "Rechnung Postleitzahl"
8739
-
8740
- #: includes/export/class-wcj-fields-helper.php:45
8741
- #: includes/export/class-wcj-fields-helper.php:130
8742
- #: includes/export/class-wcj-fields-helper.php:215
8743
- msgid "Billing Country"
8744
- msgstr "Rechnung Land"
8745
-
8746
- #: includes/export/class-wcj-fields-helper.php:46
8747
- #: includes/export/class-wcj-fields-helper.php:131
8748
- #: includes/export/class-wcj-fields-helper.php:216
8749
- msgid "Billing Phone"
8750
- msgstr "Rechnung Telefonnummer"
8751
-
8752
- #: includes/export/class-wcj-fields-helper.php:47
8753
- msgid "Last Order Date"
8754
- msgstr "Letztes Bestelldatum"
8755
-
8756
- #: includes/export/class-wcj-fields-helper.php:75
8757
- msgid "Customer ID"
8758
- msgstr "Kunden-ID"
8759
-
8760
- #: includes/export/class-wcj-fields-helper.php:77
8761
- msgid "First Name"
8762
- msgstr "Vorname"
8763
-
8764
- #: includes/export/class-wcj-fields-helper.php:78
8765
- msgid "Last Name"
8766
- msgstr "Nachname"
8767
-
8768
- #: includes/export/class-wcj-fields-helper.php:82
8769
- #: includes/reports/wcj-class-reports-customers.php:94
8770
- msgid "Registered"
8771
- msgstr "Angemeldet am"
8772
-
8773
- #: includes/export/class-wcj-fields-helper.php:111
8774
- #: includes/export/class-wcj-fields-helper.php:194
8775
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:254
8776
- msgid "Order ID"
8777
- msgstr "Bestell-ID"
8778
-
8779
- #: includes/export/class-wcj-fields-helper.php:112
8780
- #: includes/export/class-wcj-fields-helper.php:195
8781
- msgid "Order Number"
8782
- msgstr "Bestellnummer"
8783
-
8784
- #: includes/export/class-wcj-fields-helper.php:113
8785
- #: includes/export/class-wcj-fields-helper.php:196
8786
- msgid "Order Status"
8787
- msgstr "Bestell-Status"
8788
-
8789
- #: includes/export/class-wcj-fields-helper.php:114
8790
- #: includes/export/class-wcj-fields-helper.php:197
8791
- msgid "Order Date"
8792
- msgstr "Bestelldatum"
8793
-
8794
- #: includes/export/class-wcj-fields-helper.php:116
8795
- #: includes/export/class-wcj-fields-helper.php:199
8796
- msgid "Order Item Count"
8797
- msgstr "Bestellpositionszahl"
8798
-
8799
- #: includes/export/class-wcj-fields-helper.php:118
8800
- #: includes/export/class-wcj-fields-helper.php:203
8801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:260
8802
- msgid "Order Total"
8803
- msgstr "Gesamtsumme der Bestellung"
8804
-
8805
- #: includes/export/class-wcj-fields-helper.php:119
8806
- #: includes/export/class-wcj-fields-helper.php:204
8807
- msgid "Order Total Tax"
8808
- msgstr "Steuern Gesamtsumme der Bestellung"
8809
-
8810
- #: includes/export/class-wcj-fields-helper.php:120
8811
- #: includes/export/class-wcj-fields-helper.php:205
8812
- msgid "Order Payment Method"
8813
- msgstr "Bestellungszahlungsart"
8814
-
8815
- #: includes/export/class-wcj-fields-helper.php:133
8816
- #: includes/export/class-wcj-fields-helper.php:218
8817
- msgid "Shipping First Name"
8818
- msgstr "Empängeradresse Vorname"
8819
-
8820
- #: includes/export/class-wcj-fields-helper.php:134
8821
- #: includes/export/class-wcj-fields-helper.php:219
8822
- msgid "Shipping Last Name"
8823
- msgstr "Empfängeradresse Nachname"
8824
-
8825
- #: includes/export/class-wcj-fields-helper.php:135
8826
- #: includes/export/class-wcj-fields-helper.php:220
8827
- msgid "Shipping Company"
8828
- msgstr "Empfängeradresse Unternehmen"
8829
-
8830
- #: includes/export/class-wcj-fields-helper.php:136
8831
- #: includes/export/class-wcj-fields-helper.php:221
8832
- msgid "Shipping Address 1"
8833
- msgstr "Versandadresse 1"
8834
-
8835
- #: includes/export/class-wcj-fields-helper.php:137
8836
- #: includes/export/class-wcj-fields-helper.php:222
8837
- msgid "Shipping Address 2"
8838
- msgstr "Versandadresse 2"
8839
-
8840
- #: includes/export/class-wcj-fields-helper.php:138
8841
- #: includes/export/class-wcj-fields-helper.php:223
8842
- msgid "Shipping City"
8843
- msgstr "Versandort"
8844
-
8845
- #: includes/export/class-wcj-fields-helper.php:139
8846
- #: includes/export/class-wcj-fields-helper.php:224
8847
- msgid "Shipping State"
8848
- msgstr "Versand Staat"
8849
-
8850
- #: includes/export/class-wcj-fields-helper.php:140
8851
- #: includes/export/class-wcj-fields-helper.php:225
8852
- msgid "Shipping Postcode"
8853
- msgstr "Versand PLZ"
8854
-
8855
- #: includes/export/class-wcj-fields-helper.php:141
8856
- #: includes/export/class-wcj-fields-helper.php:226
8857
- msgid "Shipping Country"
8858
- msgstr "Versand Land"
8859
-
8860
- #: includes/export/class-wcj-fields-helper.php:147
8861
- msgid "Item Tax Class"
8862
- msgstr "Artikelsteuer-Klasse"
8863
-
8864
- #: includes/export/class-wcj-fields-helper.php:152
8865
- msgid "Item Line Subtotal Tax"
8866
- msgstr "Artikel-Linie Zwischensumme Steuer"
8867
-
8868
- #: includes/export/class-wcj-fields-helper.php:153
8869
- msgid "Item Line Tax"
8870
- msgstr "Artikellinie Steuer"
8871
-
8872
- #: includes/export/class-wcj-fields-helper.php:154
8873
- msgid "Item Line Subtotal Plus Tax"
8874
- msgstr "Artikel-Linie Zwischensumme zzgl. MwSt"
8875
-
8876
- #: includes/export/class-wcj-fields-helper.php:155
8877
- msgid "Item Line Total Plus Tax"
8878
- msgstr "Artikel-Linie Gesamtsumme zzgl. MwSt"
8879
-
8880
- #: includes/export/class-wcj-fields-helper.php:200
8881
- msgid "Order Items"
8882
- msgstr "Auftragspositionen"
8883
-
8884
- #: includes/export/class-wcj-fields-helper.php:281
8885
- msgid "Product ID"
8886
- msgstr "Produkt ID"
8887
-
8888
- #: includes/export/class-wcj-fields-helper.php:305
8889
- msgid "Tax Status"
8890
- msgstr "Steuerstatus"
8891
-
8892
- #: includes/export/class-wcj-fields-helper.php:306
8893
- msgid "Tax Class"
8894
- msgstr "Steuerklasse"
8895
-
8896
- #: includes/export/class-wcj-fields-helper.php:312
8897
- msgid "Price Including Tax"
8898
- msgstr "Preis inkl. MwSt."
8899
-
8900
- #: includes/export/class-wcj-fields-helper.php:313
8901
- msgid "Price Excluding Tax"
8902
- msgstr "Preis exkl. MwSt."
8903
-
8904
- #: includes/functions/wcj-country-functions.php:113
8905
- msgid "Afghanistan"
8906
- msgstr "Afghanistan"
8907
-
8908
- #: includes/functions/wcj-country-functions.php:115
8909
- msgid "Albania"
8910
- msgstr "Albanien"
8911
-
8912
- #: includes/functions/wcj-country-functions.php:116
8913
- msgid "Algeria"
8914
- msgstr "Algerien"
8915
-
8916
- #: includes/functions/wcj-country-functions.php:117
8917
- msgid "Andorra"
8918
- msgstr "Andorra"
8919
-
8920
- #: includes/functions/wcj-country-functions.php:118
8921
- msgid "Angola"
8922
- msgstr "Angola"
8923
-
8924
- #: includes/functions/wcj-country-functions.php:119
8925
- msgid "Anguilla"
8926
- msgstr "Anguilla"
8927
-
8928
- #: includes/functions/wcj-country-functions.php:121
8929
- msgid "Antigua and Barbuda"
8930
- msgstr "Antigua und Barbuda"
8931
-
8932
- #: includes/functions/wcj-country-functions.php:122
8933
- msgid "Argentina"
8934
- msgstr "Argentinien"
8935
-
8936
- #: includes/functions/wcj-country-functions.php:123
8937
- msgid "Armenia"
8938
- msgstr "Armenien"
8939
-
8940
- #: includes/functions/wcj-country-functions.php:124
8941
- msgid "Aruba"
8942
- msgstr "Aruba"
8943
-
8944
- #: includes/functions/wcj-country-functions.php:125
8945
- msgid "Australia"
8946
- msgstr "Australien"
8947
-
8948
- #: includes/functions/wcj-country-functions.php:126
8949
- msgid "Austria"
8950
- msgstr "Österreich"
8951
-
8952
- #: includes/functions/wcj-country-functions.php:127
8953
- msgid "Azerbaijan"
8954
- msgstr "Aserbaidschan"
8955
-
8956
- #: includes/functions/wcj-country-functions.php:128
8957
- msgid "Bahamas"
8958
- msgstr "Bahamas"
8959
-
8960
- #: includes/functions/wcj-country-functions.php:129
8961
- msgid "Bahrain"
8962
- msgstr "Bahrain"
8963
-
8964
- #: includes/functions/wcj-country-functions.php:130
8965
- msgid "Bangladesh"
8966
- msgstr "Bangladesch"
8967
-
8968
- #: includes/functions/wcj-country-functions.php:131
8969
- msgid "Barbados"
8970
- msgstr "Barbados"
8971
-
8972
- #: includes/functions/wcj-country-functions.php:132
8973
- msgid "Belarus"
8974
- msgstr "Weißrussland"
8975
-
8976
- #: includes/functions/wcj-country-functions.php:133
8977
- msgid "Belgium"
8978
- msgstr "Belgien"
8979
-
8980
- #: includes/functions/wcj-country-functions.php:135
8981
- msgid "Belize"
8982
- msgstr "Belize"
8983
-
8984
- #: includes/functions/wcj-country-functions.php:136
8985
- msgid "Benin"
8986
- msgstr "Benin"
8987
-
8988
- #: includes/functions/wcj-country-functions.php:137
8989
- msgid "Bermuda"
8990
- msgstr "Bermuda"
8991
-
8992
- #: includes/functions/wcj-country-functions.php:138
8993
- msgid "Bhutan"
8994
- msgstr "Bhutan"
8995
-
8996
- #: includes/functions/wcj-country-functions.php:139
8997
- msgid "Bolivia"
8998
- msgstr "Bolivien"
8999
-
9000
- #: includes/functions/wcj-country-functions.php:141
9001
- msgid "Bosnia and Herzegovina"
9002
- msgstr "Bosnien und Herzegovina"
9003
-
9004
- #: includes/functions/wcj-country-functions.php:142
9005
- msgid "Botswana"
9006
- msgstr "Botswana"
9007
-
9008
- #: includes/functions/wcj-country-functions.php:144
9009
- msgid "Brazil"
9010
- msgstr "Brasilien"
9011
-
9012
- #: includes/functions/wcj-country-functions.php:145
9013
- msgid "British Indian Ocean Territory"
9014
- msgstr "Britisches Territorium des Indischen Ozeans"
9015
-
9016
- #: includes/functions/wcj-country-functions.php:146
9017
- msgid "British Virgin Islands"
9018
- msgstr "Britischen Jungferninseln"
9019
-
9020
- #: includes/functions/wcj-country-functions.php:147
9021
- msgid "Brunei"
9022
- msgstr "Brunei"
9023
-
9024
- #: includes/functions/wcj-country-functions.php:148
9025
- msgid "Bulgaria"
9026
- msgstr "Bulgarien"
9027
-
9028
- #: includes/functions/wcj-country-functions.php:149
9029
- msgid "Burkina Faso"
9030
- msgstr "Burkina Faso"
9031
-
9032
- #: includes/functions/wcj-country-functions.php:150
9033
- msgid "Burundi"
9034
- msgstr "Burundi"
9035
-
9036
- #: includes/functions/wcj-country-functions.php:151
9037
- msgid "Cambodia"
9038
- msgstr "Kambodscha"
9039
-
9040
- #: includes/functions/wcj-country-functions.php:152
9041
- msgid "Cameroon"
9042
- msgstr "Kamerun"
9043
-
9044
- #: includes/functions/wcj-country-functions.php:153
9045
- msgid "Canada"
9046
- msgstr "Kanada"
9047
-
9048
- #: includes/functions/wcj-country-functions.php:154
9049
- msgid "Cape Verde"
9050
- msgstr "Kap Verde"
9051
-
9052
- #: includes/functions/wcj-country-functions.php:155
9053
- msgid "Cayman Islands"
9054
- msgstr "Kaimaninseln"
9055
-
9056
- #: includes/functions/wcj-country-functions.php:156
9057
- msgid "Central African Republic"
9058
- msgstr "Zentralafrikanische Republik"
9059
-
9060
- #: includes/functions/wcj-country-functions.php:157
9061
- msgid "Chad"
9062
- msgstr "Tschad"
9063
-
9064
- #: includes/functions/wcj-country-functions.php:158
9065
- msgid "Chile"
9066
- msgstr "Chile"
9067
-
9068
- #: includes/functions/wcj-country-functions.php:159
9069
- msgid "China"
9070
- msgstr "China"
9071
-
9072
- #: includes/functions/wcj-country-functions.php:160
9073
- msgid "Christmas Island"
9074
- msgstr "Weihnachtsinsel"
9075
-
9076
- #: includes/functions/wcj-country-functions.php:162
9077
- msgid "Colombia"
9078
- msgstr "Kolumbien"
9079
-
9080
- #: includes/functions/wcj-country-functions.php:163
9081
- msgid "Comoros"
9082
- msgstr "Komoren"
9083
-
9084
- #: includes/functions/wcj-country-functions.php:167
9085
- msgid "Costa Rica"
9086
- msgstr "Costa Rica"
9087
-
9088
- #: includes/functions/wcj-country-functions.php:168
9089
- msgid "Croatia"
9090
- msgstr "Kroatien"
9091
-
9092
- #: includes/functions/wcj-country-functions.php:169
9093
- msgid "Cuba"
9094
- msgstr "Kuba"
9095
-
9096
- #: includes/functions/wcj-country-functions.php:171
9097
- msgid "Cyprus"
9098
- msgstr "Zypern"
9099
-
9100
- #: includes/functions/wcj-country-functions.php:172
9101
- msgid "Czech Republic"
9102
- msgstr "Tschechien"
9103
-
9104
- #: includes/functions/wcj-country-functions.php:173
9105
- msgid "Denmark"
9106
- msgstr "Dänemark"
9107
-
9108
- #: includes/functions/wcj-country-functions.php:174
9109
- msgid "Djibouti"
9110
- msgstr "Dschibuti"
9111
-
9112
- #: includes/functions/wcj-country-functions.php:175
9113
- msgid "Dominica"
9114
- msgstr "Dominica"
9115
-
9116
- #: includes/functions/wcj-country-functions.php:176
9117
- msgid "Dominican Republic"
9118
- msgstr "Dominikanische Republik"
9119
-
9120
- #: includes/functions/wcj-country-functions.php:177
9121
- msgid "Ecuador"
9122
- msgstr "Ecuador"
9123
-
9124
- #: includes/functions/wcj-country-functions.php:178
9125
- msgid "Egypt"
9126
- msgstr "Ägypten"
9127
-
9128
- #: includes/functions/wcj-country-functions.php:179
9129
- msgid "El Salvador"
9130
- msgstr "El Salvador"
9131
-
9132
- #: includes/functions/wcj-country-functions.php:180
9133
- msgid "Equatorial Guinea"
9134
- msgstr "Equatorial Guinea"
9135
-
9136
- #: includes/functions/wcj-country-functions.php:181
9137
- msgid "Eritrea"
9138
- msgstr "Eritrea"
9139
-
9140
- #: includes/functions/wcj-country-functions.php:182
9141
- msgid "Estonia"
9142
- msgstr "Estland"
9143
-
9144
- #: includes/functions/wcj-country-functions.php:183
9145
- msgid "Ethiopia"
9146
- msgstr "Äthiopien"
9147
-
9148
- #: includes/functions/wcj-country-functions.php:185
9149
- msgid "Faroe Islands"
9150
- msgstr "Färöer"
9151
-
9152
- #: includes/functions/wcj-country-functions.php:186
9153
- msgid "Fiji"
9154
- msgstr "Fidschi"
9155
-
9156
- #: includes/functions/wcj-country-functions.php:187
9157
- msgid "Finland"
9158
- msgstr "Finnland"
9159
-
9160
- #: includes/functions/wcj-country-functions.php:188
9161
- msgid "France"
9162
- msgstr "Frankreich"
9163
-
9164
- #: includes/functions/wcj-country-functions.php:189
9165
- msgid "French Guiana"
9166
- msgstr "Französisch-Guayana"
9167
-
9168
- #: includes/functions/wcj-country-functions.php:190
9169
- msgid "French Polynesia"
9170
- msgstr "Französisch-Polynesien"
9171
-
9172
- #: includes/functions/wcj-country-functions.php:191
9173
- msgid "French Southern Territories"
9174
- msgstr "Französische Süd- und Antarktisgebiete"
9175
-
9176
- #: includes/functions/wcj-country-functions.php:192
9177
- msgid "Gabon"
9178
- msgstr "Gabun"
9179
-
9180
- #: includes/functions/wcj-country-functions.php:193
9181
- msgid "Gambia"
9182
- msgstr "Gambia"
9183
-
9184
- #: includes/functions/wcj-country-functions.php:195
9185
- msgid "Germany"
9186
- msgstr "Deutschland"
9187
-
9188
- #: includes/functions/wcj-country-functions.php:196
9189
- msgid "Ghana"
9190
- msgstr "Ghana"
9191
-
9192
- #: includes/functions/wcj-country-functions.php:198
9193
- msgid "Greece"
9194
- msgstr "Griechenland"
9195
-
9196
- #: includes/functions/wcj-country-functions.php:199
9197
- msgid "Greenland"
9198
- msgstr "Grönland"
9199
-
9200
- #: includes/functions/wcj-country-functions.php:200
9201
- msgid "Grenada"
9202
- msgstr "Grenada"
9203
-
9204
- #: includes/functions/wcj-country-functions.php:201
9205
- msgid "Guadeloupe"
9206
- msgstr "Guadeloupe"
9207
-
9208
- #: includes/functions/wcj-country-functions.php:202
9209
- msgid "Guatemala"
9210
- msgstr "Guatemala"
9211
-
9212
- #: includes/functions/wcj-country-functions.php:204
9213
- msgid "Guinea"
9214
- msgstr "Guinea"
9215
-
9216
- #: includes/functions/wcj-country-functions.php:205
9217
- msgid "Guinea-Bissau"
9218
- msgstr "Guinea-Bissau"
9219
-
9220
- #: includes/functions/wcj-country-functions.php:206
9221
- msgid "Guyana"
9222
- msgstr "Guyana"
9223
-
9224
- #: includes/functions/wcj-country-functions.php:207
9225
- msgid "Haiti"
9226
- msgstr "Haiti"
9227
-
9228
- #: includes/functions/wcj-country-functions.php:209
9229
- msgid "Honduras"
9230
- msgstr "Honduras"
9231
-
9232
- #: includes/functions/wcj-country-functions.php:210
9233
- msgid "Hong Kong"
9234
- msgstr "Hong Kong"
9235
-
9236
- #: includes/functions/wcj-country-functions.php:211
9237
- msgid "Hungary"
9238
- msgstr "Ungarn"
9239
-
9240
- #: includes/functions/wcj-country-functions.php:212
9241
- msgid "Iceland"
9242
- msgstr "Island"
9243
-
9244
- #: includes/functions/wcj-country-functions.php:213
9245
- msgid "India"
9246
- msgstr "Indien"
9247
-
9248
- #: includes/functions/wcj-country-functions.php:214
9249
- msgid "Indonesia"
9250
- msgstr "Indonesien"
9251
-
9252
- #: includes/functions/wcj-country-functions.php:215
9253
- msgid "Iran"
9254
- msgstr "Iran"
9255
-
9256
- #: includes/functions/wcj-country-functions.php:216
9257
- msgid "Iraq"
9258
- msgstr "Irak"
9259
-
9260
- #: includes/functions/wcj-country-functions.php:219
9261
- msgid "Israel"
9262
- msgstr "Israel"
9263
-
9264
- #: includes/functions/wcj-country-functions.php:220
9265
- msgid "Italy"
9266
- msgstr "Italien"
9267
-
9268
- #: includes/functions/wcj-country-functions.php:221
9269
- msgid "Ivory Coast"
9270
- msgstr "Elfenbeinküste"
9271
-
9272
- #: includes/functions/wcj-country-functions.php:223
9273
- msgid "Japan"
9274
- msgstr "Japan"
9275
-
9276
- #: includes/functions/wcj-country-functions.php:225
9277
- msgid "Jordan"
9278
- msgstr "Jordanien"
9279
-
9280
- #: includes/functions/wcj-country-functions.php:226
9281
- msgid "Kazakhstan"
9282
- msgstr "Kasachstan"
9283
-
9284
- #: includes/functions/wcj-country-functions.php:229
9285
- msgid "Kuwait"
9286
- msgstr "Kuwait"
9287
-
9288
- #: includes/functions/wcj-country-functions.php:230
9289
- msgid "Kyrgyzstan"
9290
- msgstr "Kirgisistan"
9291
-
9292
- #: includes/functions/wcj-country-functions.php:232
9293
- msgid "Latvia"
9294
- msgstr "Lettland"
9295
-
9296
- #: includes/functions/wcj-country-functions.php:233
9297
- msgid "Lebanon"
9298
- msgstr "Libanon"
9299
-
9300
- #: includes/functions/wcj-country-functions.php:235
9301
- msgid "Liberia"
9302
- msgstr "Liberia"
9303
-
9304
- #: includes/functions/wcj-country-functions.php:236
9305
- msgid "Libya"
9306
- msgstr "Libyen"
9307
-
9308
- #: includes/functions/wcj-country-functions.php:237
9309
- msgid "Liechtenstein"
9310
- msgstr "Liechtenstein"
9311
-
9312
- #: includes/functions/wcj-country-functions.php:238
9313
- msgid "Lithuania"
9314
- msgstr "Litauen"
9315
-
9316
- #: includes/functions/wcj-country-functions.php:239
9317
- msgid "Luxembourg"
9318
- msgstr "Luxemburg"
9319
-
9320
- #: includes/functions/wcj-country-functions.php:241
9321
- msgid "Macedonia"
9322
- msgstr "Mazedonien"
9323
-
9324
- #: includes/functions/wcj-country-functions.php:242
9325
- msgid "Madagascar"
9326
- msgstr "Madagaskar"
9327
-
9328
- #: includes/functions/wcj-country-functions.php:243
9329
- msgid "Malawi"
9330
- msgstr "Malawi"
9331
-
9332
- #: includes/functions/wcj-country-functions.php:244
9333
- msgid "Malaysia"
9334
- msgstr "Malaysia"
9335
-
9336
- #: includes/functions/wcj-country-functions.php:245
9337
- msgid "Maldives"
9338
- msgstr "Malediven"
9339
-
9340
- #: includes/functions/wcj-country-functions.php:246
9341
- msgid "Mali"
9342
- msgstr "Mali"
9343
-
9344
- #: includes/functions/wcj-country-functions.php:248
9345
- msgid "Marshall Islands"
9346
- msgstr "Marshall-Inseln"
9347
-
9348
- #: includes/functions/wcj-country-functions.php:249
9349
- msgid "Martinique"
9350
- msgstr "Martinique"
9351
-
9352
- #: includes/functions/wcj-country-functions.php:250
9353
- msgid "Mauritania"
9354
- msgstr "Mauretanien"
9355
-
9356
- #: includes/functions/wcj-country-functions.php:251
9357
- msgid "Mauritius"
9358
- msgstr "Mauritius"
9359
-
9360
- #: includes/functions/wcj-country-functions.php:253
9361
- msgid "Mexico"
9362
- msgstr "Mexiko"
9363
-
9364
- #: includes/functions/wcj-country-functions.php:254
9365
- msgid "Micronesia"
9366
- msgstr "Mikronesien"
9367
-
9368
- #: includes/functions/wcj-country-functions.php:255
9369
- msgid "Moldova"
9370
- msgstr "Moldau"
9371
-
9372
- #: includes/functions/wcj-country-functions.php:256
9373
- msgid "Monaco"
9374
- msgstr "Monaco"
9375
-
9376
- #: includes/functions/wcj-country-functions.php:257
9377
- msgid "Mongolia"
9378
- msgstr "Mongolei"
9379
-
9380
- #: includes/functions/wcj-country-functions.php:258
9381
- msgid "Montenegro"
9382
- msgstr "Montenegro"
9383
-
9384
- #: includes/functions/wcj-country-functions.php:259
9385
- msgid "Montserrat"
9386
- msgstr "Montserrat"
9387
-
9388
- #: includes/functions/wcj-country-functions.php:260
9389
- msgid "Morocco"
9390
- msgstr "Marokko"
9391
-
9392
- #: includes/functions/wcj-country-functions.php:261
9393
- msgid "Mozambique"
9394
- msgstr "Mosambik"
9395
-
9396
- #: includes/functions/wcj-country-functions.php:262
9397
- msgid "Myanmar"
9398
- msgstr "Myanmar"
9399
-
9400
- #: includes/functions/wcj-country-functions.php:263
9401
- msgid "Namibia"
9402
- msgstr "Namibia"
9403
-
9404
- #: includes/functions/wcj-country-functions.php:264
9405
- msgid "Nauru"
9406
- msgstr "Nauru"
9407
-
9408
- #: includes/functions/wcj-country-functions.php:265
9409
- msgid "Nepal"
9410
- msgstr "Nepal"
9411
-
9412
- #: includes/functions/wcj-country-functions.php:266
9413
- msgid "Netherlands"
9414
- msgstr "Niederlande"
9415
-
9416
- #: includes/functions/wcj-country-functions.php:267
9417
- msgid "Netherlands Antilles"
9418
- msgstr "Niederländische Antillen"
9419
-
9420
- #: includes/functions/wcj-country-functions.php:268
9421
- msgid "New Caledonia"
9422
- msgstr "Neukaledonien"
9423
-
9424
- #: includes/functions/wcj-country-functions.php:269
9425
- msgid "New Zealand"
9426
- msgstr "Neuseeland"
9427
-
9428
- #: includes/functions/wcj-country-functions.php:270
9429
- msgid "Nicaragua"
9430
- msgstr "Nicaragua"
9431
-
9432
- #: includes/functions/wcj-country-functions.php:275
9433
- msgid "North Korea"
9434
- msgstr "Nord Korea"
9435
-
9436
- #: includes/functions/wcj-country-functions.php:276
9437
- msgid "Norway"
9438
- msgstr "Norwegen"
9439
-
9440
- #: includes/functions/wcj-country-functions.php:277
9441
- msgid "Oman"
9442
- msgstr "Oman"
9443
-
9444
- #: includes/functions/wcj-country-functions.php:281
9445
- msgid "Papua New Guinea"
9446
- msgstr "Papua-Neuguinea"
9447
-
9448
- #: includes/functions/wcj-country-functions.php:283
9449
- msgid "Peru"
9450
- msgstr "Peru"
9451
-
9452
- #: includes/functions/wcj-country-functions.php:284
9453
- msgid "Philippines"
9454
- msgstr "Philippinen"
9455
-
9456
- #: includes/functions/wcj-country-functions.php:286
9457
- msgid "Poland"
9458
- msgstr "Polen"
9459
-
9460
- #: includes/functions/wcj-country-functions.php:287
9461
- msgid "Portugal"
9462
- msgstr "Portugal"
9463
-
9464
- #: includes/functions/wcj-country-functions.php:288
9465
- msgid "Qatar"
9466
- msgstr "Katar"
9467
-
9468
- #: includes/functions/wcj-country-functions.php:290
9469
- msgid "Romania"
9470
- msgstr "Rumänien"
9471
-
9472
- #: includes/functions/wcj-country-functions.php:291
9473
- msgid "Russia"
9474
- msgstr "Russland"
9475
-
9476
- #: includes/functions/wcj-country-functions.php:292
9477
- msgid "Rwanda"
9478
- msgstr "Ruanda"
9479
-
9480
- #: includes/functions/wcj-country-functions.php:294
9481
- msgid "Saint Helena"
9482
- msgstr "St. Helena"
9483
-
9484
- #: includes/functions/wcj-country-functions.php:300
9485
- msgid "Saint Vincent and the Grenadines"
9486
- msgstr "Saint Vincent und die Grenadinen"
9487
-
9488
- #: includes/functions/wcj-country-functions.php:303
9489
- msgid "Saudi Arabia"
9490
- msgstr "Saudi-Arabien"
9491
-
9492
- #: includes/functions/wcj-country-functions.php:305
9493
- msgid "Serbia"
9494
- msgstr "Serbien"
9495
-
9496
- #: includes/functions/wcj-country-functions.php:306
9497
- msgid "Seychelles"
9498
- msgstr "Seychellen"
9499
-
9500
- #: includes/functions/wcj-country-functions.php:308
9501
- msgid "Singapore"
9502
- msgstr "Singapur"
9503
-
9504
- #: includes/functions/wcj-country-functions.php:309
9505
- msgid "Slovakia"
9506
- msgstr "Slowakei"
9507
-
9508
- #: includes/functions/wcj-country-functions.php:310
9509
- msgid "Slovenia"
9510
- msgstr "Slowenien"
9511
-
9512
- #: includes/functions/wcj-country-functions.php:311
9513
- msgid "Solomon Islands"
9514
- msgstr "Salomonen"
9515
-
9516
- #: includes/functions/wcj-country-functions.php:313
9517
- msgid "South Africa"
9518
- msgstr "Südafrika"
9519
-
9520
- #: includes/functions/wcj-country-functions.php:315
9521
- msgid "South Korea"
9522
- msgstr "Süd Korea"
9523
-
9524
- #: includes/functions/wcj-country-functions.php:317
9525
- msgid "Spain"
9526
- msgstr "Spanien"
9527
-
9528
- #: includes/functions/wcj-country-functions.php:323
9529
- msgid "Sweden"
9530
- msgstr "Schweden"
9531
-
9532
- #: includes/functions/wcj-country-functions.php:324
9533
- msgid "Switzerland"
9534
- msgstr "Schweiz"
9535
-
9536
- #: includes/functions/wcj-country-functions.php:325
9537
- msgid "Syria"
9538
- msgstr "Syrien"
9539
-
9540
- #: includes/functions/wcj-country-functions.php:326
9541
- msgid "Taiwan"
9542
- msgstr "Taiwan"
9543
-
9544
- #: includes/functions/wcj-country-functions.php:328
9545
- msgid "Tanzania"
9546
- msgstr "Tansania"
9547
-
9548
- #: includes/functions/wcj-country-functions.php:329
9549
- msgid "Thailand"
9550
- msgstr "Thailand"
9551
-
9552
- #: includes/functions/wcj-country-functions.php:334
9553
- msgid "Trinidad and Tobago"
9554
- msgstr "Trinidad und Tobago"
9555
-
9556
- #: includes/functions/wcj-country-functions.php:335
9557
- msgid "Tunisia"
9558
- msgstr "Tunesien"
9559
-
9560
- #: includes/functions/wcj-country-functions.php:336
9561
- msgid "Turkey"
9562
- msgstr "Türkei"
9563
-
9564
- #: includes/functions/wcj-country-functions.php:338
9565
- msgid "Turks and Caicos Islands"
9566
- msgstr "Turks- und Caicosinseln"
9567
-
9568
- #: includes/functions/wcj-country-functions.php:341
9569
- msgid "Ukraine"
9570
- msgstr "Ukraine"
9571
-
9572
- #: includes/functions/wcj-country-functions.php:342
9573
- msgid "United Arab Emirates"
9574
- msgstr "Vereinigte Arabische Emirate"
9575
-
9576
- #: includes/functions/wcj-country-functions.php:345
9577
- msgid "Uruguay"
9578
- msgstr "Uruguay"
9579
-
9580
- #: includes/functions/wcj-country-functions.php:346
9581
- msgid "Uzbekistan"
9582
- msgstr "Usbekistan"
9583
-
9584
- #: includes/functions/wcj-country-functions.php:348
9585
- msgid "Vatican"
9586
- msgstr "Vatikan"
9587
-
9588
- #: includes/functions/wcj-country-functions.php:349
9589
- msgid "Venezuela"
9590
- msgstr "Venezuela"
9591
-
9592
- #: includes/functions/wcj-country-functions.php:351
9593
- msgid "Wallis and Futuna"
9594
- msgstr "Wallis und Futuna"
9595
-
9596
- #: includes/functions/wcj-country-functions.php:353
9597
- msgid "Western Samoa"
9598
- msgstr "Westliches Samoa"
9599
-
9600
- #: includes/functions/wcj-country-functions.php:354
9601
- msgid "Yemen"
9602
- msgstr "Jemen"
9603
-
9604
- #: includes/functions/wcj-country-functions.php:355
9605
- msgid "Zambia"
9606
- msgstr "Sambia"
9607
-
9608
- #: includes/functions/wcj-country-functions.php:356
9609
- msgid "Zimbabwe"
9610
- msgstr "Simbabwe"
9611
-
9612
- #: includes/functions/wcj-functions.php:609
9613
- msgid "Before cart"
9614
- msgstr "Vor Warenkorb"
9615
-
9616
- #: includes/functions/wcj-functions.php:610
9617
- msgid "Before cart table"
9618
- msgstr "Vor Warenkorbtabelle"
9619
-
9620
- #: includes/functions/wcj-functions.php:611
9621
- msgid "Before cart contents"
9622
- msgstr "Vor Warenkorbinhalten"
9623
-
9624
- #: includes/functions/wcj-functions.php:612
9625
- msgid "Cart contents"
9626
- msgstr "Warenkorbinhalte"
9627
-
9628
- #: includes/functions/wcj-functions.php:613
9629
- msgid "Cart coupon"
9630
- msgstr "Warenkorb-Gutschein"
9631
-
9632
- #: includes/functions/wcj-functions.php:614
9633
- msgid "Cart actions"
9634
- msgstr "Warenkorb-Aktionen"
9635
-
9636
- #: includes/functions/wcj-functions.php:615
9637
- msgid "After cart contents"
9638
- msgstr "Nach Warenkorbinhalten"
9639
-
9640
- #: includes/functions/wcj-functions.php:616
9641
- msgid "After cart table"
9642
- msgstr "Nach Warenkorbtabelle"
9643
-
9644
- #: includes/functions/wcj-functions.php:617
9645
- msgid "Cart collaterals"
9646
- msgstr "Warenkorb-Sicherheiten"
9647
-
9648
- #: includes/functions/wcj-functions.php:618
9649
- msgid "After cart"
9650
- msgstr "Nach Warenkorb"
9651
-
9652
- #: includes/functions/wcj-functions.php:620
9653
- msgid "Before cart totals"
9654
- msgstr "Vor Warenkorb-Total"
9655
-
9656
- #: includes/functions/wcj-functions.php:621
9657
- msgid "Cart totals: Before shipping"
9658
- msgstr "Warenkorb-Total: Vor Versand"
9659
-
9660
- #: includes/functions/wcj-functions.php:622
9661
- msgid "Cart totals: After shipping"
9662
- msgstr "Warenkorb-Total: Nach Versand"
9663
-
9664
- #: includes/functions/wcj-functions.php:623
9665
- msgid "Cart totals: Before order total"
9666
- msgstr "Warenkorb-Total: Vor Bestell-Total"
9667
-
9668
- #: includes/functions/wcj-functions.php:624
9669
- msgid "Cart totals: After order total"
9670
- msgstr "Warenkorb-Total: Nach Bestell-Total"
9671
-
9672
- #: includes/functions/wcj-functions.php:625
9673
- msgid "Proceed to checkout"
9674
- msgstr "Fortfahren zur Kasse"
9675
-
9676
- #: includes/functions/wcj-functions.php:626
9677
- msgid "After cart totals"
9678
- msgstr "Nach Warenkorb-Total"
9679
-
9680
- #: includes/functions/wcj-functions.php:631
9681
- msgid "If cart is empty"
9682
- msgstr "Wenn Warenkorb leer ist"
9683
-
9684
- #: includes/functions/wcj-functions.php:1159
9685
- msgctxt "Order status"
9686
- msgid "Pending Payment"
9687
- msgstr "Ausstehende Zahlung"
9688
-
9689
- #: includes/functions/wcj-functions.php:1161
9690
- msgctxt "Order status"
9691
- msgid "On Hold"
9692
- msgstr "In Wartestellung"
9693
-
9694
- #: includes/functions/wcj-invoicing-functions.php:36
9695
- msgid "Packing Slips"
9696
- msgstr "Packzettel"
9697
-
9698
- #: includes/gateways/class-wc-gateway-wcj-custom.php:85
9699
- msgid "Instructions"
9700
- msgstr "Anleitungen"
9701
-
9702
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:126
9703
- msgid "Datepicker/Weekpicker: Date format"
9704
- msgstr "Datums-/Wochenwählers: Datumsformat"
9705
-
9706
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:134
9707
- msgid "Datepicker/Weekpicker: Min date"
9708
- msgstr "Datums-/Wochenwählers: Min Datum"
9709
-
9710
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:142
9711
- msgid "Datepicker/Weekpicker: Max date"
9712
- msgstr "Datums-/Wochenwählers: Max Datum"
9713
-
9714
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:150
9715
- msgid "Datepicker/Weekpicker: Change year"
9716
- msgstr "Datums-/Wochenwählers: Jahr ändern"
9717
-
9718
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:158
9719
- msgid "Datepicker/Weekpicker: Year range"
9720
- msgstr "Datums-/Wochenwählers: Jahresumfang"
9721
-
9722
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:167
9723
- msgid "Datepicker/Weekpicker: First week day"
9724
- msgstr "Datums-/Wochenwählers: Erster Tag der Woche"
9725
-
9726
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:184
9727
- msgid "Timepicker: Time format"
9728
- msgstr "Zeitwähler: Zeitformat"
9729
-
9730
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:192
9731
- msgid "Timepicker: Interval"
9732
- msgstr "Zeitwähler: Intervall"
9733
-
9734
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:199
9735
- msgid "If select/radio is selected, set options here. One option per line"
9736
- msgstr ""
9737
- "Wenn Auswählen/Radio ausgewählt ist, stelle hier Optionen ein. Eine Option "
9738
- "pro Zeile"
9739
-
9740
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:200
9741
- msgid "Select/Radio: Options"
9742
- msgstr "Auswählen/Radio: Optionen"
9743
-
9744
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:228
9745
- msgid "Message on required"
9746
- msgstr "Nachricht bei erforderlich"
9747
-
9748
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:468
9749
- msgid "Wrong file type!"
9750
- msgstr "Falscher Dateityp!"
9751
-
9752
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:477
9753
- msgid "File is too big!"
9754
- msgstr "Datei ist zu groß!"
9755
-
9756
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:619
9757
- msgid "Select a country&hellip;"
9758
- msgstr "Wähle ein Land&hellip;"
9759
-
9760
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:111
9761
- msgid "Booster: Product Input Fields"
9762
- msgstr "Booster: Produkt-Eingabefelder"
9763
-
9764
- #: includes/input-fields/class-wcj-product-input-fields-per-product.php:147
9765
- msgid "Total number of "
9766
- msgstr "Gesamtzahl an "
9767
-
9768
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:56
9769
- msgid "Invoices successfully renumerated!"
9770
- msgstr "Rechnungen erfolgreich renumeriert!"
9771
-
9772
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:58
9773
- msgid "Please select at least one order status."
9774
- msgstr "Bitte wähle mindestens einen Bestellzustand aus."
9775
-
9776
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:63
9777
- msgid "Booster - Renumerate Invoices"
9778
- msgstr "Booster - Rechnungen renumerieren"
9779
-
9780
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:64
9781
- msgid ""
9782
- "The tool renumerates invoices from choosen date. Invoice number format is "
9783
- "set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
9784
- "Numbering."
9785
- msgstr ""
9786
- "Das Werkzeug nummeriert alle Rechnungen neu von gewähltem Datum an. Das "
9787
- "Rechnungsnummernformat wird eingestellt in WooCommerce > Einstellungen > "
9788
- "Booster > PDF Rechnungen & Packzettel > \n"
9789
- "Nummerierung."
9790
-
9791
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:73
9792
- msgid "Date to start renumerating. Leave blank to renumerate all invoices."
9793
- msgstr ""
9794
- "Datum, ab dem die Renumerieren beginnen soll. Leer lassen, um alle "
9795
- "Rechnungen neu zu berechnen."
9796
-
9797
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:78
9798
- msgid "End Date"
9799
- msgstr "Enddatum"
9800
-
9801
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:80
9802
- msgid "Date to end renumerating. Leave blank to renumerate all invoices."
9803
- msgstr ""
9804
- "Datum an dem Renumerierung enden soll. Leer lassen, um alle Rechnungen neu "
9805
- "zu berechnen."
9806
-
9807
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
9808
- msgid "Start Number"
9809
- msgstr "Startnummer"
9810
-
9811
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:87
9812
- msgid ""
9813
- "Counter to start renumerating. Leave 0 to continue from current counter."
9814
- msgstr ""
9815
- "Zähler für Start der Renumerierung. Lasse 0, um vom aktuellen Zähler "
9816
- "fortzufahren."
9817
-
9818
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
9819
- msgid "Delete All"
9820
- msgstr "Alles löschen"
9821
-
9822
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
9823
- msgid "Clear all invoices before renumerating."
9824
- msgstr "Lösche alle Rechnungen vor der Renumerierung."
9825
-
9826
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:105
9827
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:97
9828
- msgid "Document Type"
9829
- msgstr "Dokumentart"
9830
-
9831
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:115
9832
- msgid "Order Statuses"
9833
- msgstr "Bestellzustände"
9834
-
9835
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:118
9836
- msgid "Renumerate invoices"
9837
- msgstr "Rechnungen renumerieren"
9838
-
9839
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:127
9840
- msgid "Results"
9841
- msgstr "Ergebnisse"
9842
-
9843
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:206
9844
- msgid "Total documents created: %d"
9845
- msgstr "Gesamtzahl der erstellten Dokumente: %d"
9846
-
9847
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:207
9848
- msgid "Total documents deleted: %d"
9849
- msgstr "Gesamtzahl der gelöschten Dokumente: %d"
9850
-
9851
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:38
9852
- msgid ""
9853
- "This option is disabled in WooCommerce > Settings > Booster > Emails & Misc. "
9854
- "> General > Advanced Options > Disable Saving PDFs in PHP directory for "
9855
- "temporary files"
9856
- msgstr ""
9857
- "Diese Option ist deaktiviert in WooCommerce > Einstellungen > Booster > "
9858
- "Emails & Sonstiges > Allgemein > Erweiterte Optionen > Deaktivieren von "
9859
- "Speichern von PDFs im PHP-Verzeichnis temporärer Dateien"
9860
-
9861
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:43
9862
- msgid "Sorry, but something went wrong..."
9863
- msgstr "Entschuldigung, aber etwas schief gelaufen..."
9864
-
9865
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:47
9866
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:68
9867
- msgid "Please fill year and month values."
9868
- msgstr "Bitte fülle die Jahres- und Monatswerte aus."
9869
-
9870
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:87
9871
- msgid "Year"
9872
- msgstr ""
9873
- "Erlaubt tags: <code> [blog_name] </ code>, <code> [Monat] </ code>, <code> "
9874
- "[Tag] </ code>, <code> [Jahr] </ code>, <code> [Stunde] </ code>, <code> "
9875
- "[Minute] </ code>, <code> [zweite] </ code> und <code> [timestamp] </ code>"
9876
-
9877
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:92
9878
- msgid "Month"
9879
- msgstr "Monat"
9880
-
9881
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:103
9882
- msgid "Display monthly documents table"
9883
- msgstr "Anzeigen Tabelle der monatlichen Dokumente"
9884
-
9885
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:108
9886
- msgid "Download all monthly documents PDFs in single ZIP file"
9887
- msgstr "Download aller monatlichen Dokumente PDFs in einer einzigen ZIP-Datei"
9888
-
9889
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:252
9890
- msgid "Document Nr."
9891
- msgstr "Dokumentnr."
9892
-
9893
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:253
9894
- msgid "Document Date"
9895
- msgstr "Dokumentdatum"
9896
-
9897
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:255
9898
- msgid "Customer Country"
9899
- msgstr "Kunden Land"
9900
-
9901
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:256
9902
- msgid "Customer VAT ID"
9903
- msgstr "Kunde Umsatzsteuer-ID"
9904
-
9905
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
9906
- msgid "Tax %"
9907
- msgstr "Steuern %"
9908
-
9909
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:258
9910
- msgid "Order Total Tax Excl."
9911
- msgstr "Gesamtsumme der Bestellungen exkl. Steuern"
9912
-
9913
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:259
9914
- msgid "Order Taxes"
9915
- msgstr "Steuern der Bestellungen"
9916
-
9917
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:262
9918
- msgid "Refunds"
9919
- msgstr "Rückerstattungen"
9920
-
9921
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:26
9922
- msgid "Display & Misc."
9923
- msgstr "Anzeigen & Sonstiges"
9924
-
9925
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:142
9926
- msgid "View"
9927
- msgstr "Ansehen"
9928
-
9929
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:161
9930
- msgid "Create"
9931
- msgstr "Erstellen"
9932
-
9933
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:293
9934
- msgid "Admin's \"Orders\" Page"
9935
- msgstr "\"Bestellungen\"-Seite für Administrator "
9936
-
9937
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:294
9938
- msgid "Add Column"
9939
- msgstr "Spalte hinzufügen"
9940
-
9941
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:302
9942
- msgid "Column Title"
9943
- msgstr "Spalten-Titel"
9944
-
9945
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:327
9946
- msgid "Add View Button"
9947
- msgstr "Ansehen-Button hinzufügen"
9948
-
9949
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:334
9950
- msgid "Add Create Button"
9951
- msgstr "Erstellen-Button hinzufügen"
9952
-
9953
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:341
9954
- msgid "Add Delete Button"
9955
- msgstr "Lösch-Button hinzufügen"
9956
-
9957
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:348
9958
- msgid "Create Button Requires Confirmation"
9959
- msgstr "Erstellen-Button erfordert Bestätigung"
9960
-
9961
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:355
9962
- msgid "Delete Button Requires Confirmation"
9963
- msgstr "Lösch-Button erfordert Bestätigung"
9964
-
9965
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:362
9966
- msgid "Customer's \"My Account\" Page"
9967
- msgstr "\"Mein Konto\" des Kunden-Seite"
9968
-
9969
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:363
9970
- msgid "Add link"
9971
- msgstr "Link hinzufügen"
9972
-
9973
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:371
9974
- msgid "Link Text"
9975
- msgstr "Link Text"
9976
-
9977
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:378
9978
- msgid "Enable \"Save as\""
9979
- msgstr "Aktivieren von \"Speichern unter\" "
9980
-
9981
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:380
9982
- msgid "Enable \"save as\" pdf instead of view pdf in browser"
9983
- msgstr ""
9984
- "Aktivieren von PDF-\"Speichern unter\" anstelle von Ansehen des PDF im "
9985
- "Browser"
9986
-
9987
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:387
9988
- msgid "PDF File Name"
9989
- msgstr "PDF-Dateiname"
9990
-
9991
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:26
9992
- msgid "Email Options"
9993
- msgstr "Emailoptionen"
9994
-
9995
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:87
9996
- msgid "Payment gateways to include"
9997
- msgstr "Einzuschließende Zahlungs-Gateways"
9998
-
9999
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:94
10000
- msgid "Select some gateways. Leave blank to include all."
10001
- msgstr "Wähle einige Gateways aus. Leer lassen, um alle einzuschließen."
10002
-
10003
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:119
10004
- msgid "Admin - New Order"
10005
- msgstr "Administrator - Neue Bestellung"
10006
-
10007
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:120
10008
- msgid "Admin - Cancelled Order"
10009
- msgstr "Administrator - Abgebrochener Bestellung"
10010
-
10011
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:122
10012
- msgid "Customer - Processing Order"
10013
- msgstr "Kunde - zu verarbeitende Bestellungen"
10014
-
10015
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:124
10016
- msgid "Customer - Completed Order"
10017
- msgstr "Kunde - Abgeschlossene Bestellungen"
10018
-
10019
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:125
10020
- msgid "Customer - Invoice"
10021
- msgstr "Kunde - Rechnung"
10022
-
10023
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:126
10024
- msgid "Customer - Refunded Order"
10025
- msgstr "Kunde - zurückerstattete Bestellung"
10026
-
10027
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:137
10028
- msgid "Attach PDF to emails"
10029
- msgstr "Anhängen von PDF an Emails"
10030
-
10031
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:144
10032
- msgid "Select some emails"
10033
- msgstr "Wähle einige Emails aus"
10034
-
10035
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:23
10036
- msgid "Footer"
10037
- msgstr "Fußzeile"
10038
-
10039
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:44
10040
- msgid "Enable Footer"
10041
- msgstr "Fußzeile aktivieren"
10042
-
10043
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:50
10044
- msgid "Footer Text"
10045
- msgstr "Text im Footer-Bereich"
10046
-
10047
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:57
10048
- msgid ""
10049
- "You can use HTML here, as well as any WordPress shortcodes. There is two "
10050
- "more predefined values you can use: %page_number% and %total_pages%."
10051
- msgstr ""
10052
- "Du kannst hier HTML und auch alle WordPress-Shortcodes verwenden. Es gibt "
10053
- "zwei weitere vordefinierte Werte, die Du verwenden kannst: %page_number% und "
10054
- "%total_pages%."
10055
-
10056
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:61
10057
- msgid "Footer Text Color"
10058
- msgstr "Fußzeilen-Textfarbe"
10059
-
10060
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:68
10061
- msgid "Footer Line Color"
10062
- msgstr "Fußzeilenfarbe"
10063
-
10064
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:75
10065
- msgid "Footer Margin"
10066
- msgstr "Fußzeilenrand"
10067
-
10068
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:25
10069
- msgid "Header"
10070
- msgstr "Kopfzeile"
10071
-
10072
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:46
10073
- msgid "Enable Header"
10074
- msgstr "Kopfzeilen aktivieren"
10075
-
10076
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:52
10077
- msgid "Header Image"
10078
- msgstr "Kopfzeilenbild"
10079
-
10080
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:57
10081
- msgid ""
10082
- "Enter a URL to an image you want to show in the invoice's header. Upload "
10083
- "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
10084
- msgstr ""
10085
- "Gib eine URL zu einem Bild ein, das Du im Kopf der Rechnung anzeigen "
10086
- "möchtest. Lade Dein Bild mit dem <a href=\"/wp-admin/media-new.php\">"
10087
- "Medienuploader</a> hoch."
10088
-
10089
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:61
10090
- msgid "Header Image Width in mm"
10091
- msgstr "Kopfzeilen-Bildbreite in mm"
10092
-
10093
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:67
10094
- msgid "Header Title"
10095
- msgstr "Kopfzeilen-Titel"
10096
-
10097
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:73
10098
- msgid "Header Text"
10099
- msgstr "Kopfzeilen-Text"
10100
-
10101
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:75
10102
- msgid "Company Name"
10103
- msgstr "Firmenname:"
10104
-
10105
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:79
10106
- msgid "Header Text Color"
10107
- msgstr "Kopfzeilen-Textfarbe"
10108
-
10109
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:86
10110
- msgid "Header Line Color"
10111
- msgstr "Kopfzeilenfarbe"
10112
-
10113
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:93
10114
- msgid "Header Margin"
10115
- msgstr "Kopfzeilenrand"
10116
-
10117
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:107
10118
- msgid "PDF Invoicing Header General Options"
10119
- msgstr "Allgemeine Kopf-Optionen der PDF-Rechnung"
10120
-
10121
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:112
10122
- msgid "Default Images Directory"
10123
- msgstr "Voreingestelltes Verzeichnis für Bilder"
10124
-
10125
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:113
10126
- msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
10127
- msgstr ""
10128
- "Voreingestelltes Verzeichnis für Bilder in TCPDF-Bibliothek (K_PATH_IMAGES)."
10129
-
10130
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:114
10131
- msgid "Try changing this if you have issues displaying image in header."
10132
- msgstr ""
10133
- "Versuche dies zu ändern, wenn Probleme mit der Darstellung eines Bildes in "
10134
- "der Kopfzeile bestehen."
10135
-
10136
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:119
10137
- msgid "Empty"
10138
- msgstr "Leer"
10139
-
10140
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:120
10141
- msgid "TCPDF Default"
10142
- msgstr "TCPDF-Voreinstellung"
10143
-
10144
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:121
10145
- msgid "ABSPATH"
10146
- msgstr "ABSPATH"
10147
-
10148
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:122
10149
- msgid "DOCUMENT_ROOT"
10150
- msgstr "DOCUMENT_ROOT"
10151
-
10152
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:25
10153
- msgid "Numbering"
10154
- msgstr "Nummerierung"
10155
-
10156
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:51
10157
- msgid "Counter"
10158
- msgstr "Zähler"
10159
-
10160
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:57
10161
- msgid "Counter Width"
10162
- msgstr "Zählerbreite"
10163
-
10164
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:25
10165
- msgid "Page Settings"
10166
- msgstr "Seiteneinstellungen"
10167
-
10168
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:407
10169
- msgid "Page Orientation"
10170
- msgstr "Seitenorientierung"
10171
-
10172
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:412
10173
- msgid "Portrait"
10174
- msgstr "Portrait"
10175
-
10176
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:413
10177
- msgid "Landscape"
10178
- msgstr "Querformat"
10179
-
10180
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:417
10181
- msgid "Page Format"
10182
- msgstr "Seitenformat"
10183
-
10184
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:424
10185
- msgid "Margin Left"
10186
- msgstr "Rand links"
10187
-
10188
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:430
10189
- msgid "Margin Right"
10190
- msgstr "Rand rechts"
10191
-
10192
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:436
10193
- msgid "Margin Top"
10194
- msgstr "Rand oben"
10195
-
10196
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:442
10197
- msgid "Margin Bottom"
10198
- msgstr "Rand unten"
10199
-
10200
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:25
10201
- msgid "Styling"
10202
- msgstr "Gestaltung"
10203
-
10204
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:53
10205
- msgid "CSS"
10206
- msgstr "CSS"
10207
-
10208
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:61
10209
- msgid "Font Family"
10210
- msgstr "Schriftenfamilie"
10211
-
10212
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:80
10213
- msgid "Font Size"
10214
- msgstr "Schriftgröße"
10215
-
10216
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:87
10217
- msgid "Make Font Shadowed"
10218
- msgstr "Schrift soll Schatten werfen"
10219
-
10220
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:25
10221
- msgid "Templates"
10222
- msgstr "Vorlagen"
10223
-
10224
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:53
10225
- msgid "HTML Template"
10226
- msgstr "HTML-Vorlage"
10227
-
10228
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:68
10229
- msgid "Available Shortcodes"
10230
- msgstr "Verfügbare Shortcodes"
10231
-
10232
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:71
10233
- msgid "For the list of available shortcodes, please visit %s."
10234
- msgstr "Eine Liste der verfügbaren Shortcodes findest Du unter %s."
10235
-
10236
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:77
10237
- msgid "Create All Country Groups Failed."
10238
- msgstr "Erstellen aller Ländergruppen fehlgeschlagen."
10239
-
10240
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:89
10241
- msgid "Create All Country Groups Failed. Wrong parameter."
10242
- msgstr "Erstellen aller Ländergruppen fehlgeschlagen. Falscher Parameter"
10243
-
10244
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:95
10245
- msgid ""
10246
- "All existing country groups will be deleted and %s new groups will be "
10247
- "created. Are you sure?"
10248
- msgstr ""
10249
- "Alle bestehenden Ländergruppen werden gelöscht und %s neue Gruppen werden "
10250
- "erstellt. Bist Du sicher?"
10251
-
10252
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:96
10253
- msgid "Confirm"
10254
- msgstr "Bestätigen"
10255
-
10256
- #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:124
10257
- msgid "Country Groups Generated."
10258
- msgstr "Ländergruppen generiert."
10259
-
10260
- #: includes/price-by-country/class-wcj-price-by-country-local.php:250
10261
- msgid "Country Group Nr."
10262
- msgstr "Ländergruppen Nr."
10263
-
10264
- #: includes/reports/class-wcj-currency-reports.php:40
10265
- msgid "Reports currency:"
10266
- msgstr "Währung für Berichte:"
10267
-
10268
- #: includes/reports/class-wcj-currency-reports.php:42
10269
- #: includes/reports/class-wcj-currency-reports.php:86
10270
- msgid "Show reports only in"
10271
- msgstr "Zeige Berichte nur in"
10272
-
10273
- #: includes/reports/wcj-class-reports-customers.php:41
10274
- msgid "No customers found."
10275
- msgstr "Keine Kunden gefunden."
10276
-
10277
- #: includes/reports/wcj-class-reports-customers.php:91
10278
- msgid "Customer Name"
10279
- msgstr "Kundenname"
10280
-
10281
- #: includes/reports/wcj-class-reports-customers.php:93
10282
- msgid "Total Spent"
10283
- msgstr "Insgesamt ausgegeben"
10284
-
10285
- #: includes/reports/wcj-class-reports-customers.php:133
10286
- msgid "Total customers"
10287
- msgstr "Kunden insgesamt"
10288
-
10289
- #: includes/reports/wcj-class-reports-customers.php:137
10290
- msgid "Country Code"
10291
- msgstr "Landesvorwahl"
10292
-
10293
- #: includes/reports/wcj-class-reports-customers.php:138
10294
- msgid "Customers Count"
10295
- msgstr "Kundenzählung"
10296
-
10297
- #: includes/reports/wcj-class-reports-customers.php:139
10298
- msgid "Percent of total"
10299
- msgstr "Prozent der Gesamtzahl"
10300
-
10301
- #: includes/reports/wcj-class-reports-customers.php:161
10302
- msgid "Report for:"
10303
- msgstr "Bericht für:"
10304
-
10305
- #: includes/reports/wcj-class-reports-monthly-sales.php:39
10306
- msgid "Currency rates deleted."
10307
- msgstr "Wechselkurse gelöscht."
10308
-
10309
- #: includes/reports/wcj-class-reports-monthly-sales.php:137
10310
- msgid "Days"
10311
- msgstr "Tage"
10312
-
10313
- #: includes/reports/wcj-class-reports-monthly-sales.php:138
10314
- msgid "Total Orders"
10315
- msgstr "Gesamtbestellungen"
10316
-
10317
- #: includes/reports/wcj-class-reports-monthly-sales.php:139
10318
- msgid "Orders Average / Day"
10319
- msgstr "Durschnittsbestellungen / Tag"
10320
-
10321
- #: includes/reports/wcj-class-reports-monthly-sales.php:140
10322
- #: includes/reports/wcj-class-reports-sales.php:174
10323
- msgid "Total Sum"
10324
- msgstr "Gesamtsumme"
10325
-
10326
- #: includes/reports/wcj-class-reports-monthly-sales.php:141
10327
- msgid "Total Sum (excl. TAX)"
10328
- msgstr "Gesamtsumme (exkl. Steuern)"
10329
-
10330
- #: includes/reports/wcj-class-reports-monthly-sales.php:142
10331
- msgid "Average / Order (excl. TAX)"
10332
- msgstr "Durchschnitt/Bestellung (exkl. Steuern)"
10333
-
10334
- #: includes/reports/wcj-class-reports-monthly-sales.php:143
10335
- msgid "Average / Day (excl. TAX)"
10336
- msgstr "Durchschnitt/Tag (exkl. Steuern)"
10337
-
10338
- #: includes/reports/wcj-class-reports-monthly-sales.php:144
10339
- msgid "Currency Rates"
10340
- msgstr "Wechselkurse"
10341
-
10342
- #: includes/reports/wcj-class-reports-monthly-sales.php:219
10343
- msgid "Error getting currency rate for %s"
10344
- msgstr "Fehler beim Abrufen der Wechselkurses für %s"
10345
-
10346
- #: includes/reports/wcj-class-reports-monthly-sales.php:277
10347
- msgid "Totals"
10348
- msgstr "Summen"
10349
-
10350
- #: includes/reports/wcj-class-reports-monthly-sales.php:312
10351
- msgid "Report currency"
10352
- msgstr "Währung des Berichts"
10353
-
10354
- #: includes/reports/wcj-class-reports-monthly-sales.php:326
10355
- msgid "Report generated in: %s s"
10356
- msgstr "Bericht generiert in: %s s"
10357
-
10358
- #: includes/reports/wcj-class-reports-monthly-sales.php:328
10359
- msgid "Reset Currency Rates"
10360
- msgstr "Rücksetzen der Wechselkurse"
10361
-
10362
- #: includes/reports/wcj-class-reports-sales.php:232
10363
- msgid "No sales data for current period."
10364
- msgstr "Keine Verkaufsdaten für den aktuellen Zeitraum."
10365
-
10366
- #: includes/reports/wcj-class-reports-stock.php:30
10367
- msgid "All Products on Stock"
10368
- msgstr "Alle Produkte vorrätig"
10369
-
10370
- #: includes/reports/wcj-class-reports-stock.php:31
10371
- msgid "Report shows all products that are on stock and some sales info."
10372
- msgstr ""
10373
- "Bericht zeigt alle Produkte, die auf Lager sind und einige "
10374
- "Verkäufsinformationen."
10375
-
10376
- #: includes/reports/wcj-class-reports-stock.php:35
10377
- msgid "Understocked"
10378
- msgstr "Untervorrat"
10379
-
10380
- #: includes/reports/wcj-class-reports-stock.php:36
10381
- msgid ""
10382
- "Report shows all products that are low in stock calculated on product's "
10383
- "sales data."
10384
- msgstr ""
10385
- "Der Bericht zeigt alle Produkte, die einen niedrigen Lagerbestand aufweisen, "
10386
- "basierend auf den Verkaufsdaten."
10387
-
10388
- #: includes/reports/wcj-class-reports-stock.php:38
10389
- msgid ""
10390
- "Threshold for minimum stock is equal to half of the sales in selected days "
10391
- "range."
10392
- msgstr ""
10393
- "Schwelle für Mindestbestand ist gleich der Hälfte der Verkäufe im "
10394
- "ausgewählten Tagesumfang."
10395
-
10396
- #: includes/reports/wcj-class-reports-stock.php:42
10397
- msgid "Overstocked"
10398
- msgstr "Übervorrat"
10399
-
10400
- #: includes/reports/wcj-class-reports-stock.php:43
10401
- msgid ""
10402
- "Report shows all products that are on stock, but have no sales in selected "
10403
- "period. Only products added before the start date of selected period are "
10404
- "accounted."
10405
- msgstr ""
10406
- "Bericht zeigt alle Produkte, die auf Lager sind, haben aber keine Verkäufe "
10407
- "im ausgewählten Zeitraum. Nur Produkte, die vor dem Startdatum des "
10408
- "ausgewählten Zeitraums hinzugefügt wurden, werden berücksichtigt."
10409
-
10410
- #: includes/reports/wcj-class-reports-stock.php:213
10411
- msgid "deleted"
10412
- msgstr "gelöscht"
10413
-
10414
- #: includes/reports/wcj-class-reports-stock.php:322
10415
- msgid "Stock"
10416
- msgstr "Vorrat"
10417
-
10418
- #: includes/reports/wcj-class-reports-stock.php:323
10419
- msgid "Stock price"
10420
- msgstr "Lagerpreis"
10421
-
10422
- #: includes/reports/wcj-class-reports-stock.php:324
10423
- msgid "Total stock price"
10424
- msgstr "Lagerpreis isngesamt"
10425
-
10426
- #: includes/reports/wcj-class-reports-stock.php:326
10427
- msgid "Last sale"
10428
- msgstr "Letzter Verkauf"
10429
-
10430
- #: includes/reports/wcj-class-reports-stock.php:327
10431
- msgid "Sales in last %s days"
10432
- msgstr "Verkäufe in den letzten %s Tagen"
10433
-
10434
- #: includes/reports/wcj-class-reports-stock.php:328
10435
- msgid "Total sales"
10436
- msgstr "Gesamtverkäufe"
10437
-
10438
- #: includes/reports/wcj-class-reports-stock.php:331
10439
- msgid "Stock to minimum"
10440
- msgstr "Bestand auf Minimum"
10441
-
10442
- #: includes/reports/wcj-class-reports-stock.php:364
10443
- msgid "purchase price:"
10444
- msgstr "Kaufpreis:"
10445
-
10446
- #: includes/reports/wcj-class-reports-stock.php:369
10447
- msgid "stock purchase price:"
10448
- msgstr "Lagerkaufpreis:"
10449
-
10450
- #: includes/reports/wcj-class-reports-stock.php:375
10451
- msgid "No sales yet"
10452
- msgstr "Noch keine Verkäufe"
10453
-
10454
- #: includes/reports/wcj-class-reports-stock.php:380
10455
- msgid "profit:"
10456
- msgstr "Gewinn:"
10457
-
10458
- #: includes/reports/wcj-class-reports-stock.php:404
10459
- msgid "Total current stock value"
10460
- msgstr "Aktueller Gesamtbestandswert"
10461
-
10462
- #: includes/reports/wcj-class-reports-stock.php:405
10463
- msgid "Total stock value"
10464
- msgstr "Gesamtbestandswert"
10465
-
10466
- #: includes/reports/wcj-class-reports-stock.php:406
10467
- msgid "Product stock value average"
10468
- msgstr "Durchschnittlicher Produktbestandswert"
10469
-
10470
- #: includes/reports/wcj-class-reports-stock.php:407
10471
- msgid "Product stock average"
10472
- msgstr "Durchschnittlicher Produktbestand"
10473
-
10474
- #: includes/reports/wcj-class-reports-stock.php:411
10475
- msgid "Report was generated in: "
10476
- msgstr "Bericht wurde generiert in:"
10477
-
10478
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:52
10479
- #: includes/shipping/class-wc-shipping-wcj-custom.php:45
10480
- msgid "Booster: Custom Shipping Method"
10481
- msgstr "Booster: Benutzerdefinierte Versandmethode"
10482
-
10483
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:122
10484
- #: includes/shipping/class-wc-shipping-wcj-custom.php:91
10485
- msgid "Cost calculation type."
10486
- msgstr "Art der Kostenberechnung."
10487
-
10488
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:126
10489
- #: includes/shipping/class-wc-shipping-wcj-custom.php:95
10490
- msgid "Flat Rate"
10491
- msgstr "Pauschale"
10492
-
10493
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:127
10494
- #: includes/shipping/class-wc-shipping-wcj-custom.php:96
10495
- msgid "By Total Cart Weight"
10496
- msgstr "Nach gesamten Warenkorbgewicht"
10497
-
10498
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:128
10499
- #: includes/shipping/class-wc-shipping-wcj-custom.php:97
10500
- msgid "By Total Cart Weight Table"
10501
- msgstr "Nach gesamter Warenkorbgewichttabelle"
10502
-
10503
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:129
10504
- #: includes/shipping/class-wc-shipping-wcj-custom.php:98
10505
- msgid "By Total Cart Quantity"
10506
- msgstr "Nach gesamter Warenkorbmenge"
10507
-
10508
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:133
10509
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:175
10510
- #: includes/shipping/class-wc-shipping-wcj-custom.php:102
10511
- #: includes/shipping/class-wc-shipping-wcj-custom.php:128
10512
- msgid "Cost"
10513
- msgstr "Kosten"
10514
-
10515
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:135
10516
- #: includes/shipping/class-wc-shipping-wcj-custom.php:104
10517
- msgid ""
10518
- "Cost. If calculating by weight - then cost per one weight unit. If "
10519
- "calculating by quantity - then cost per one piece."
10520
- msgstr ""
10521
- "Kosten. Wenn Berechnung nach Gewicht - dann Kosten pro Gewichtseinheit. Wenn "
10522
- "Berechnung nach menge - dann Kosten pro Stück."
10523
-
10524
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:143
10525
- msgid "Minimum total cart weight. Set zero to disable."
10526
- msgstr "Minimum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10527
-
10528
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:149
10529
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:168
10530
- #: includes/shipping/class-wc-shipping-wcj-custom.php:121
10531
- msgid "Max Weight"
10532
- msgstr "Max Gewicht"
10533
-
10534
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:151
10535
- msgid "Maximum total cart weight. Set zero to disable."
10536
- msgstr "Maximum Warenkorb-Gesamtgewicht. Null einstellen um zu deaktivieren."
10537
-
10538
- #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
10539
- #: includes/shipping/class-wc-shipping-wcj-custom.php:110
10540
- msgid "Weight Table Total Rows"
10541
- msgstr "Gewichtstabelle Gesamtzeilen"
10542
-
10543
- #: includes/shipping/class-wc-shipping-wcj-custom.php:78
10544
- msgid "Enable Custom Shipping"
10545
- msgstr "Aktiviere benutzerdefinierten Versand"
10546
-
10547
- #: includes/shortcodes/class-wcj-input-field-shortcodes.php:52
10548
- msgid "Attribute \"name\" is required!"
10549
- msgstr "Attribut \"Name\" wird benötigt!"
10550
-
10551
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:96
10552
- msgid "Dollars"
10553
- msgstr "Dollar"
10554
-
10555
- #: includes/shortcodes/class-wcj-orders-shortcodes.php:97
10556
- msgid "Cents"
10557
- msgstr "Cent"
10558
-
10559
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:53
10560
- msgid "Product by User"
10561
- msgstr "Produkt nach Nutzer"
10562
-
10563
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:138
10564
- msgid "Title is required!"
10565
- msgstr "Titel wird benötigt!"
10566
-
10567
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:146
10568
- msgid "Product exists!"
10569
- msgstr "Produkt vorhanden!"
10570
-
10571
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:168
10572
- msgid "%s is required!"
10573
- msgstr "%s wird benötigt!"
10574
-
10575
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:174
10576
- msgid "Sale price must be less than the regular price!"
10577
- msgstr "Der Kaufpreis muss niedriger sein als der reguläre Preis!"
10578
-
10579
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:208
10580
- msgid "Error!"
10581
- msgstr "Fehler!"
10582
-
10583
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10584
- msgid "Add New Product"
10585
- msgstr "Neues Produkt hinzufügen"
10586
-
10587
- #: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:250
10588
- msgid "Edit Product"
10589
- msgstr "Produkt bearbeiten"
10590
-
10591
- #: includes/shortcodes/class-wcj-products-shortcodes.php:200
10592
- msgid "%s ago"
10593
- msgstr "%s her"
10594
-
10595
- #: includes/shortcodes/class-wcj-products-shortcodes.php:216
10596
- msgid "No sales yet."
10597
- msgstr "Noch keine Verkäufe."
10598
-
10599
- #: includes/shortcodes/class-wcj-shortcodes.php:96
10600
- msgid "%s module not enabled!"
10601
- msgstr "%s Modul nicht aktiviert!"
10602
-
10603
- #: includes/shortcodes/class-wcj-shortcodes.php:120
10604
- msgid "Wrong user role!"
10605
- msgstr "Falsche Benutzerrolle"
10606
-
10607
- #: includes/templates/wcj-add-to-cart-variable.php:24
10608
- msgid "This product is currently out of stock and unavailable."
10609
- msgstr "Dieses Produkt ist derzeit nicht auf Lager und nicht verfügbar."
10610
-
10611
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:43
10612
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
10613
- msgid "VAT"
10614
- msgstr "Mehrwertsteuer"
10615
-
10616
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10617
- msgid "Add EU Countries VAT Rates"
10618
- msgstr "Mehrwertsteuersätze der EU-Länder hinzufügen"
10619
-
10620
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:77
10621
- msgid "Note: will add duplicates."
10622
- msgstr "Hinweis: Wird Duplikate hinzufügen."
10623
-
10624
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:85
10625
- msgid "List of EU VAT rates to be added"
10626
- msgstr "Liste der EU-Mehrwertsteuersätze die hinzugefügt werden"
10627
-
10628
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:91
10629
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:105
10630
- msgid "Rate"
10631
- msgstr "Satz"
10632
-
10633
- #: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:99
10634
- msgid "Current standard tax rates"
10635
- msgstr "Aktuelle Standardsteuersätze"
10636
-
10637
- #: includes/widgets/class-wcj-widget-country-switcher.php:24
10638
- msgid "Booster: Country Switcher Widget"
10639
- msgstr "Booster: Länderumschalter-Widget"
10640
-
10641
- #: includes/widgets/class-wcj-widget-country-switcher.php:26
10642
- msgid "Booster - Country Switcher"
10643
- msgstr "Booster - Länderumschalter"
10644
-
10645
- #: includes/widgets/class-wcj-widget-country-switcher.php:43
10646
- msgid "Prices and Currencies by Country module not enabled!"
10647
- msgstr "Preise und Währungen nach Ländermodul nicht aktiviert!"
10648
-
10649
- #: includes/widgets/class-wcj-widget-country-switcher.php:45
10650
- msgid "Customer Country Detection Method must include \"by user selection\"!"
10651
- msgstr ""
10652
- "Kundenland-Erkennungsmethode muss \"durch Benutzerauswahl\" enthalten sein!"
10653
-
10654
- #: includes/widgets/class-wcj-widget-country-switcher.php:80
10655
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:56
10656
- #: includes/widgets/class-wcj-widget-multicurrency.php:72
10657
- msgid "Title:"
10658
- msgstr "Titel:"
10659
-
10660
- #: includes/widgets/class-wcj-widget-country-switcher.php:84
10661
- msgid "Countries:"
10662
- msgstr "Länder:"
10663
-
10664
- #: includes/widgets/class-wcj-widget-country-switcher.php:88
10665
- msgid "Replace with currency:"
10666
- msgstr "Ersetzen mit Währung:"
10667
-
10668
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:24
10669
- msgid "Booster: Left to Free Shipping Widget"
10670
- msgstr "Booster: Übrig bis kostenloser Versand Widget"
10671
-
10672
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:26
10673
- msgid "Booster - Left to Free Shipping"
10674
- msgstr "Booster - Übrig bis kostenloser Versand"
10675
-
10676
- #: includes/widgets/class-wcj-widget-left-to-free-shipping.php:58
10677
- msgid "Content:"
10678
- msgstr "Inhalt:"
10679
-
10680
- #: includes/widgets/class-wcj-widget-multicurrency.php:24
10681
- msgid "Booster: Multicurrency Switcher Widget"
10682
- msgstr "Booster: Multiwährungenumschalter-Widget"
10683
-
10684
- #: includes/widgets/class-wcj-widget-multicurrency.php:26
10685
- msgid "Booster - Multicurrency Switcher"
10686
- msgstr "Booster - Multiwährungenumschalter"
10687
-
10688
- #: includes/widgets/class-wcj-widget-multicurrency.php:43
10689
- msgid "Multicurrency module not enabled!"
10690
- msgstr "Multiwährungen-Modul nicht aktiviert!"
10691
-
10692
- #: includes/widgets/class-wcj-widget-multicurrency.php:76
10693
- msgid "Type:"
10694
- msgstr "Art:"
10695
-
10696
- #: includes/widgets/class-wcj-widget-multicurrency.php:78
10697
- msgid "Drop down"
10698
- msgstr "Dropdown-Liste"
10699
-
10700
- #: includes/widgets/class-wcj-widget-multicurrency.php:79
10701
- msgid "Radio list"
10702
- msgstr "Radio-Liste"
10703
-
10704
- #: includes/widgets/class-wcj-widget-multicurrency.php:80
10705
- msgid "Link list"
10706
- msgstr "Link-Liste"
10707
-
10708
- #: woocommerce-jetpack.php:366
10709
- msgid ""
10710
- "If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
10711
- "rating. Thank you, we couldn't have done it without you!"
10712
- msgstr ""
10713
- "Wenn Du <strong>Booster for WooCommerce</ strong> magst, hinterlasse uns "
10714
- "bitte eine %s Bewertung. Danke, wir hätten es nicht ohne Dich geschafft!"
10715
-
10716
- #. #-#-#-#-# tmp-woocommerce-jetpack.pot (Booster for WooCommerce 2.5.6)
10717
- #. #-#-#-#-#
10718
- #. Plugin Name of the plugin/theme
10719
- #: woocommerce-jetpack.php:382
10720
- msgid "Booster for WooCommerce"
10721
- msgstr "Booster for WooCommerce"
10722
-
10723
- #: woocommerce-jetpack.php:383
10724
- msgid "Booster Settings"
10725
- msgstr "Booster-Einstellungen"
10726
-
10727
- #: woocommerce-jetpack.php:399
10728
- msgid "Docs"
10729
- msgstr "Dokumentation"
10730
-
10731
- #: woocommerce-jetpack.php:402
10732
- msgid "Unlock all"
10733
- msgstr "Alles freischalten"
10734
-
10735
- #: woocommerce-jetpack.php:418
10736
- msgid "Install Booster Plus to unlock all features"
10737
- msgstr "Installiere Booster Plus, um alle Funktionen freizuschalten"
10738
-
10739
- #: woocommerce-jetpack.php:419
10740
- msgid ""
10741
- "Some settings fields are locked and you will need %s to modify all locked "
10742
- "fields."
10743
- msgstr ""
10744
- "Einige Einstellungsfelder sind gesperrt und Du benötigst %s, um alle "
10745
- "gesperrten Felder zu ändern."
10746
-
10747
- #: woocommerce-jetpack.php:420
10748
- msgid "Buy now"
10749
- msgstr "Jetzt kaufen"
10750
-
10751
- #: woocommerce-jetpack.php:420
10752
- msgid "Visit Booster Site"
10753
- msgstr "Besuche die Booster-Site"
10754
-
10755
- #: woocommerce-jetpack.php:424
10756
- msgid ""
10757
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10758
- "to change value."
10759
- msgstr ""
10760
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10761
- "Plus</a>, um den Wert zu ändern."
10762
-
10763
- #: woocommerce-jetpack.php:427
10764
- msgid ""
10765
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10766
- "to change values below."
10767
- msgstr ""
10768
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10769
- "Plus</a>, um die Werte unten zu ändern."
10770
-
10771
- #: woocommerce-jetpack.php:430
10772
- msgid ""
10773
- "Get <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster Plus</a> "
10774
- "to change values above."
10775
- msgstr ""
10776
- "Hole Dir <a href=\"http://booster.io/plus/\" target=\"_blank\">Booster "
10777
- "Plus</a>, um die Werte oben zu ändern."
10778
-
10779
- #: woocommerce-jetpack.php:433
10780
- msgid "Get Booster Plus to change value."
10781
- msgstr "Hole Dir Booster Plus, um den Wert zu ändern."
10782
-
10783
- #: woocommerce-jetpack.php:686
10784
- msgid "Please upload a file to import!"
10785
- msgstr "Bitte lade Dir eine Datei zum Importieren hoch!"
10786
-
10787
- #: woocommerce-jetpack.php:694 woocommerce-jetpack.php:699
10788
- msgid "Wrong file format!"
10789
- msgstr "Falsches Dateiformat!"
10790
-
10791
- #: woocommerce-jetpack.php:706
10792
- msgid "%d options successfully imported."
10793
- msgstr "%d Optionen erfolgreich importiert."
10794
-
10795
- #: woocommerce-jetpack.php:771
10796
- msgid "%d options successfully deleted."
10797
- msgstr "%d Optionen erfolgreich gelöscht."
10798
-
10799
- #. Plugin URI of the plugin/theme
10800
- msgid "http://booster.io"
10801
- msgstr "http://booster.io"
10802
-
10803
- #. Description of the plugin/theme
10804
- msgid "Supercharge your WooCommerce site with these awesome powerful features."
10805
- msgstr ""
10806
- "Erweitere Deine WooCommerce-Website mit diesen großartigen mächtigen "
10807
- "Funktionen."
10808
-
10809
- #. Author of the plugin/theme
10810
- msgid "Algoritmika Ltd"
10811
- msgstr "Algoritmika Ltd"
10812
-
10813
- #. Author URI of the plugin/theme
10814
- msgid "http://www.algoritmika.com"
10815
- msgstr "http://www.algoritmika.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
langs/woocommerce-jetpack-es_ES.po DELETED
@@ -1,13688 +0,0 @@
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-fr_FR.po DELETED
@@ -1,3028 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce Jetpack v1.7.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-11-25 15:18:35+0000\n"
7
- "Last-Translator: admin <postmaster@gobeletspersonnalises.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n>1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: French\n"
15
- "X-Poedit-Country: FRANCE\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: includes/class-wcj-sorting.php:193
24
- #@ woocommerce-jetpack
25
- msgid "Add More Sorting"
26
- msgstr "Ajouter des options de tri"
27
-
28
- #: includes/class-wcj-add-to-cart.php:144
29
- #: includes/class-wcj-add-to-cart.php:315
30
- #@ woocommerce-jetpack
31
- msgid "Add to Cart"
32
- msgstr "Ajouter au panier"
33
-
34
- #: includes/class-wcj-add-to-cart.php:180
35
- #@ woocommerce-jetpack
36
- msgid "Add to Cart Button Text Options"
37
- msgstr "Options: Texte du bouton [ajouter au panier]"
38
-
39
- #: includes/class-wcj-add-to-cart.php:141
40
- #@ woocommerce-jetpack
41
- msgid "Add to Cart Options"
42
- msgstr "Options: Ajouter au panier"
43
-
44
- #: includes/class-wcj-add-to-cart.php:158
45
- #@ woocommerce-jetpack
46
- msgid "Add to Cart Redirect Options"
47
- msgstr "Options: Redirection lors de l'ajout au panier"
48
-
49
- #: includes/class-wcj-cart.php:164
50
- #: includes/class-wcj-cart.php:167
51
- #@ woocommerce-jetpack
52
- msgid "Add to Cart on Visit"
53
- msgstr "Ajouter au panier lors de la visite"
54
-
55
- #: includes/class-wcj-add-to-cart.php:183
56
- #@ woocommerce-jetpack
57
- msgid "Add to cart text"
58
- msgstr "Texte du bouton"
59
-
60
- #: includes/class-wcj-product-info.php:319
61
- #@ woocommerce-jetpack
62
- msgid "Additional Information Tab"
63
- msgstr "Onglet des informations complémentaires"
64
-
65
- #: includes/class-wcj-product-info.php:389
66
- #@ woocommerce-jetpack
67
- msgid "Ascending"
68
- msgstr "Croissant"
69
-
70
- #: includes/class-wcj-call-for-price.php:75
71
- #: includes/class-wcj-call-for-price.php:158
72
- #@ woocommerce-jetpack
73
- msgid "Call for Price"
74
- msgstr "Masquer les prix"
75
-
76
- #: includes/class-wcj-call-for-price.php:72
77
- #@ woocommerce-jetpack
78
- msgid "Call for Price Options"
79
- msgstr "Options: Masquer les prix"
80
-
81
- #: includes/class-wcj-checkout.php:144
82
- #: includes/class-wcj-checkout.php:273
83
- #@ woocommerce-jetpack
84
- msgid "Checkout"
85
- msgstr "Processus de commande"
86
-
87
- #: includes/class-wcj-checkout.php:170
88
- #@ woocommerce-jetpack
89
- msgid "Checkout Fields Options"
90
- msgstr "Options: Champs du processus de commande"
91
-
92
- #: includes/class-wcj-checkout.php:141
93
- #@ woocommerce-jetpack
94
- msgid "Checkout Options"
95
- msgstr "Options: Processus commande"
96
-
97
- #: includes/class-wcj-currencies.php:414
98
- #: includes/class-wcj-currencies.php:445
99
- #@ woocommerce-jetpack
100
- msgid "Currencies"
101
- msgstr "Devises"
102
-
103
- #: includes/class-wcj-currencies.php:411
104
- #@ woocommerce-jetpack
105
- msgid "Currencies Options"
106
- msgstr "Options: Devises"
107
-
108
- #: includes/class-wcj-general.php:86
109
- #@ woocommerce-jetpack
110
- msgid "Custom CSS - Front end (Customers)"
111
- msgstr "CSS pour les utilisateurs"
112
-
113
- #: includes/class-wcj-general.php:83
114
- #@ woocommerce-jetpack
115
- msgid "Custom CSS Options"
116
- msgstr "Options: CSS"
117
-
118
- #: includes/class-wcj-price-labels.php:312
119
- #: includes/class-wcj-price-labels.php:346
120
- #@ woocommerce-jetpack
121
- msgid "Custom Price Labels"
122
- msgstr "Prix"
123
-
124
- #: includes/class-wcj-price-labels.php:309
125
- #@ woocommerce-jetpack
126
- msgid "Custom Price Labels Options"
127
- msgstr "Options: Affichage des prix"
128
-
129
- #: includes/class-wcj-orders.php:119
130
- #: includes/class-wcj-orders.php:530
131
- #: includes/class-wcj-orders.php:533
132
- #@ woocommerce-jetpack
133
- msgid "Custom Statuses"
134
- msgstr "Statuts personnalisés"
135
-
136
- #: includes/admin/settings/class-wc-settings-jetpack.php:40
137
- #@ woocommerce-jetpack
138
- msgid "Dashboard"
139
- msgstr "Tableau de bord"
140
-
141
- #: includes/class-wcj-payment-gateways.php:133
142
- #@ woocommerce-jetpack
143
- msgid "Default WooCommerce Payment Gateways Options"
144
- msgstr "Options par défaut: Passerelles de paiement"
145
-
146
- #: includes/class-wcj-product-info.php:390
147
- #@ woocommerce-jetpack
148
- msgid "Descending"
149
- msgstr "Décroissant"
150
-
151
- #: includes/class-wcj-product-info.php:267
152
- #@ woocommerce-jetpack
153
- msgid "Description Tab"
154
- msgstr "Onglet de description"
155
-
156
- #: includes/class-wcj-cart.php:134
157
- #@ woocommerce-jetpack
158
- msgid "Empty Cart"
159
- msgstr "Vider le panier"
160
-
161
- #: includes/class-wcj-cart.php:142
162
- #@ woocommerce-jetpack
163
- msgid "Empty Cart Button Text"
164
- msgstr "Texte pour le bouton"
165
-
166
- #: includes/class-wcj-cart.php:131
167
- #@ woocommerce-jetpack
168
- msgid "Empty Cart Options"
169
- msgstr "Options: Vider le panier"
170
-
171
- #: includes/class-wcj-add-to-cart.php:162
172
- #: includes/class-wcj-add-to-cart.php:184
173
- #: includes/class-wcj-cart.php:135
174
- #: includes/class-wcj-cart.php:168
175
- #: includes/class-wcj-orders.php:415
176
- #: includes/class-wcj-orders.php:521
177
- #: includes/class-wcj-orders.php:534
178
- #: includes/class-wcj-product-info.php:187
179
- #: includes/class-wcj-product-info.php:224
180
- #: includes/class-wcj-product-info.php:350
181
- #: includes/class-wcj-sorting.php:206
182
- #: includes/class-wcj-sorting.php:224
183
- #: includes/class-wcj-sorting.php:242
184
- #: includes/class-wcj-sorting.php:260
185
- #@ woocommerce-jetpack
186
- msgid "Enable"
187
- msgstr "Activer"
188
-
189
- #: includes/shipping/class-wc-shipping-wcj-custom.php:58
190
- #@ woocommerce-jetpack
191
- msgid "Enable Custom Shipping"
192
- msgstr "Activer la livraison personnalisée"
193
-
194
- #: includes/class-wcj-add-to-cart.php:145
195
- #@ woocommerce-jetpack
196
- msgid "Enable the Add to Cart feature"
197
- msgstr "Activer les options pour ajouter au panier"
198
-
199
- #: includes/class-wcj-call-for-price.php:76
200
- #@ woocommerce-jetpack
201
- msgid "Enable the Call for Price feature"
202
- msgstr "Activer cette option pour afficher [contactez-nous] en lieu et place des prix."
203
-
204
- #: includes/class-wcj-cart.php:122
205
- #@ woocommerce-jetpack
206
- msgid "Enable the Cart feature"
207
- msgstr "Activer les options du panier"
208
-
209
- #: includes/class-wcj-checkout.php:145
210
- #@ woocommerce-jetpack
211
- msgid "Enable the Checkout feature"
212
- msgstr "Activer les options pour le processus de commande"
213
-
214
- #: includes/class-wcj-currencies.php:415
215
- #@ woocommerce-jetpack
216
- msgid "Enable the Currencies feature"
217
- msgstr "Activer les options des devises"
218
-
219
- #: includes/class-wcj-price-labels.php:313
220
- #@ woocommerce-jetpack
221
- msgid "Enable the Custom Price Labels feature"
222
- msgstr "Activer les options pour l'affichage personnalisé"
223
-
224
- #: includes/class-wcj-general.php:74
225
- #@ woocommerce-jetpack
226
- msgid "Enable the General feature"
227
- msgstr "Activer les options de stylisation"
228
-
229
- #: includes/class-wcj-product-info.php:173
230
- #@ woocommerce-jetpack
231
- msgid "Enable the Product Info feature"
232
- msgstr "activer les options pour les fiches produit"
233
-
234
- #: includes/class-wcj-old-slugs.php:86
235
- #@ woocommerce-jetpack
236
- msgid "Enable the Remove Old Product Slugs feature"
237
- msgstr "Activer la fonction de suppression des Permaliens non utilisés"
238
-
239
- #: includes/class-wcj-shipping.php:156
240
- #@ woocommerce-jetpack
241
- msgid "Enable the Shipping feature"
242
- msgstr "Activer les options de livraison"
243
-
244
- #: includes/class-wcj-sorting.php:169
245
- #@ woocommerce-jetpack
246
- msgid "Enable the Sorting feature"
247
- msgstr "Activer les options de tri"
248
-
249
- #: includes/class-wcj-add-to-cart.php:204
250
- #@ woocommerce-jetpack
251
- msgid "External product"
252
- msgstr "Produit externe / affiliation"
253
-
254
- #: includes/class-wcj-general.php:73
255
- #: includes/class-wcj-general.php:111
256
- #@ woocommerce-jetpack
257
- msgid "General"
258
- msgstr "Stylisation"
259
-
260
- #: includes/class-wcj-general.php:70
261
- #: includes/class-wcj-pdf-invoices.php:1018
262
- #@ woocommerce-jetpack
263
- msgid "General Options"
264
- msgstr "Options: Stylisation"
265
-
266
- #: includes/class-wcj-price-labels.php:322
267
- #@ woocommerce-jetpack
268
- msgid "Global Custom Price Labels"
269
- msgstr "Option: modification générale pour l'affichage des prix"
270
-
271
- #: includes/class-wcj-add-to-cart.php:209
272
- #@ woocommerce-jetpack
273
- msgid "Grouped product"
274
- msgstr "Produits groupés"
275
-
276
- #: includes/class-wcj-shipping.php:75
277
- #: includes/class-wcj-shipping.php:180
278
- #@ woocommerce-jetpack
279
- msgid "Hide all when free is available"
280
- msgstr "Tout masquer lorsque la livraison gratuite est disponible"
281
-
282
- #: includes/class-wcj-shipping.php:165
283
- #@ woocommerce-jetpack
284
- msgid "Hide if free is available"
285
- msgstr "Masquer si l'option de livraison gratuite est disponible"
286
-
287
- #: includes/class-wcj-shipping.php:64
288
- #: includes/class-wcj-shipping.php:170
289
- #@ woocommerce-jetpack
290
- msgid "Hide local delivery when free is available"
291
- msgstr "Masquer la livraison locale"
292
-
293
- #: includes/class-wcj-shipping.php:169
294
- #@ woocommerce-jetpack
295
- msgid "Hide shipping"
296
- msgstr "Masquer la livraison"
297
-
298
- #: includes/class-wcj-shipping.php:157
299
- #@ woocommerce-jetpack
300
- msgid "Hide shipping when free is available."
301
- msgstr "Permet de masquer les options de livraison lorsque la livraison gratuite est disponible."
302
-
303
- #: includes/class-wcj-call-for-price.php:96
304
- #@ woocommerce-jetpack
305
- msgid "Label to Show on Archives"
306
- msgstr "Texte pour les archives"
307
-
308
- #: includes/class-wcj-call-for-price.php:108
309
- #@ woocommerce-jetpack
310
- msgid "Label to Show on Homepage"
311
- msgstr "Texte pour la page d'accueil"
312
-
313
- #: includes/class-wcj-call-for-price.php:84
314
- #@ woocommerce-jetpack
315
- msgid "Label to Show on Single"
316
- msgstr "Texte pour les produits seul"
317
-
318
- #: includes/class-wcj-product-info.php:383
319
- #@ woocommerce-jetpack
320
- msgid "Order"
321
- msgstr "Classement"
322
-
323
- #: includes/class-wcj-product-info.php:371
324
- #@ woocommerce-jetpack
325
- msgid "Order by"
326
- msgstr "Classer par"
327
-
328
- #: includes/class-wcj-orders.php:401
329
- #: includes/class-wcj-orders.php:552
330
- #@ woocommerce-jetpack
331
- msgid "Orders"
332
- msgstr "Commandes"
333
-
334
- #: includes/class-wcj-payment-gateways.php:122
335
- #: includes/class-wcj-payment-gateways.php:165
336
- #@ woocommerce-jetpack
337
- msgid "Payment Gateways"
338
- msgstr "Paiement"
339
-
340
- #: includes/class-wcj-payment-gateways.php:119
341
- #@ woocommerce-jetpack
342
- msgid "Payment Gateways Options"
343
- msgstr "Options: Passerelles de paiement"
344
-
345
- #: includes/class-wcj-product-info.php:216
346
- #: includes/class-wcj-product-info.php:255
347
- #: includes/class-wcj-product-info.php:275
348
- #: includes/class-wcj-product-info.php:301
349
- #: includes/class-wcj-product-info.php:327
350
- #@ woocommerce-jetpack
351
- msgid "Priority (i.e. Order)"
352
- msgstr "Ordre de priorité"
353
-
354
- #: includes/class-wcj-product-info.php:172
355
- #: includes/class-wcj-product-info.php:405
356
- #@ woocommerce-jetpack
357
- msgid "Product Info"
358
- msgstr "Produits"
359
-
360
- #: includes/class-wcj-product-info.php:169
361
- #@ woocommerce-jetpack
362
- msgid "Product Info Options"
363
- msgstr "Options: Fiches produit"
364
-
365
- #: includes/class-wcj-product-info.php:264
366
- #@ woocommerce-jetpack
367
- msgid "Product Tabs Options"
368
- msgstr "Options: Onglets produit"
369
-
370
- #: includes/class-wcj-product-info.php:376
371
- #@ woocommerce-jetpack
372
- msgid "Random"
373
- msgstr "Aléatoire"
374
-
375
- #: includes/class-wcj-product-info.php:347
376
- #@ woocommerce-jetpack
377
- msgid "Related Products Options"
378
- msgstr "Options: Produits en relation"
379
-
380
- #: includes/class-wcj-sorting.php:178
381
- #: includes/class-wcj-sorting.php:181
382
- #@ woocommerce-jetpack
383
- msgid "Remove All Sorting"
384
- msgstr "Suppression des paramètres de tri."
385
-
386
- #: includes/class-wcj-old-slugs.php:60
387
- #@ woocommerce-jetpack
388
- msgid "Remove Old Slugs"
389
- msgstr "Gestion des Permaliens"
390
-
391
- #: includes/class-wcj-product-info.php:268
392
- #: includes/class-wcj-product-info.php:294
393
- #: includes/class-wcj-product-info.php:320
394
- #@ woocommerce-jetpack
395
- msgid "Remove tab from product page"
396
- msgstr "Supprimer l'onglet de la page produit"
397
-
398
- #: includes/class-wcj-product-info.php:293
399
- #@ woocommerce-jetpack
400
- msgid "Reviews Tab"
401
- msgstr "Onglet des Avis"
402
-
403
- #: includes/class-wcj-pdf-invoices.php:944
404
- #: includes/class-wcj-shipping.php:155
405
- #: includes/class-wcj-shipping.php:200
406
- #@ woocommerce-jetpack
407
- msgid "Shipping"
408
- msgstr "Livraison"
409
-
410
- #: includes/class-wcj-pdf-invoices.php:999
411
- #: includes/class-wcj-pdf-invoices.php:1002
412
- #@ woocommerce-jetpack
413
- msgid "Shipping Method"
414
- msgstr "Méthode de livraison"
415
-
416
- #: includes/class-wcj-shipping.php:152
417
- #@ woocommerce-jetpack
418
- msgid "Shipping Options"
419
- msgstr "Options: Livraison"
420
-
421
- #: includes/class-wcj-add-to-cart.php:194
422
- #@ woocommerce-jetpack
423
- msgid "Simple product"
424
- msgstr "Produit simple"
425
-
426
- #: includes/class-wcj-sorting.php:168
427
- #: includes/class-wcj-sorting.php:277
428
- #@ woocommerce-jetpack
429
- msgid "Sorting"
430
- msgstr "Tri"
431
-
432
- #: includes/class-wcj-sorting.php:165
433
- #@ woocommerce-jetpack
434
- msgid "Sorting Options"
435
- msgstr "Options: Tri"
436
-
437
- #: includes/class-wcj-orders.php:280
438
- #@ woocommerce-jetpack
439
- msgid "The tool renumerates all orders. Press the button below to renumerate all existing orders starting from order counter settings in WooCommerce > Settings > Jetpack > Order Numbers."
440
- msgstr "Les outils de re-numérotation des commandes. Presser le bouton ci-dessous pour re-numéroter toutes les commandes existantes suivant les préférences définies dans WooCommerce > Paramètres > Jetpack > Numérotation des commandes"
441
-
442
- #: includes/class-wcj-shipping.php:165
443
- #@ woocommerce-jetpack
444
- msgid "This section lets you hide other shipping options when free shipping is available on shop frontend."
445
- msgstr "Cette section vous permet de masquer les autres options de livraison si la livraison gratuite est disponible pour le client."
446
-
447
- #: includes/class-wcj-product-info.php:285
448
- #: includes/class-wcj-product-info.php:311
449
- #: includes/class-wcj-product-info.php:337
450
- #: includes/class-wcj-product-info.php:378
451
- #: includes/gateways/class-wc-gateway-wcj-custom.php:95
452
- #: includes/shipping/class-wc-shipping-wcj-custom.php:62
453
- #@ woocommerce-jetpack
454
- #@ woocommerce
455
- msgid "Title"
456
- msgstr "Titre"
457
-
458
- #: includes/admin/tools/class-wcj-tools.php:34
459
- #@ woocommerce-jetpack
460
- msgid "Tools Dashboard"
461
- msgstr "Tableau de bord"
462
-
463
- #: includes/class-wcj-add-to-cart.php:199
464
- #@ woocommerce-jetpack
465
- msgid "Variable product"
466
- msgstr "Produit variable"
467
-
468
- #: includes/class-wcj-orders.php:186
469
- #@ woocommerce-jetpack
470
- msgid "WooCommerce Jetpack - Custom Statuses"
471
- msgstr "WooCommerce Jetpack - Statuts personnalisés"
472
-
473
- #: includes/class-wcj-old-slugs.php:160
474
- #@ woocommerce-jetpack
475
- msgid "WooCommerce Jetpack - Remove Old Product Slugs"
476
- msgstr "WooCommerce Jetpack - Suppression des Permaliens non utilisés"
477
-
478
- #: includes/class-wcj-orders.php:279
479
- #@ woocommerce-jetpack
480
- msgid "WooCommerce Jetpack - Renumerate Orders"
481
- msgstr "WooCommerce Jetpack - re-numérotation des commandes"
482
-
483
- #: includes/admin/settings/class-wc-settings-jetpack.php:152
484
- #@ woocommerce-jetpack
485
- msgid "WooCommerce Jetpack Dashboard"
486
- msgstr "Tableau de bord de WooCommerce Jetpack"
487
-
488
- #: includes/class-wcj-cart.php:152
489
- #@ woocommerce-jetpack
490
- msgid "Wrapping DIV style"
491
- msgstr "Stylization des DIV"
492
-
493
- #: includes/admin/settings/class-wc-settings-jetpack.php:24
494
- #@ woocommerce-jetpack
495
- msgid "Jetpack"
496
- msgstr "Jetpack"
497
-
498
- #: includes/class-wcj-add-to-cart.php:146
499
- #@ woocommerce-jetpack
500
- msgid "Set any url to redirect to on add to cart. Change text for Add to cart button by product type. Display \"Already in cart\" instead of \"Add to cart\" button if current product is already in cart."
501
- msgstr "Permet de définir une URL de destination lors de l'ajout de produits dans le panier. Permet de changer le texte du bouton [au Panier]. Permet d'afficher [Déjà dans le panier] à la place de [Ajouter au Panier] si le produit y est déjà présent."
502
-
503
- #: includes/class-wcj-add-to-cart.php:158
504
- #@ woocommerce-jetpack
505
- msgid "This section lets you set any url to redirect to after successfully adding product to cart. Leave empty to redirect to checkout page (skipping the cart page)."
506
- msgstr "Permet de définir une URL de destination lors de l'ajout de produits dans le panier. Laisser vide si vous ne désirez pas utiliser cette option."
507
-
508
- #: includes/class-wcj-add-to-cart.php:161
509
- #@ woocommerce-jetpack
510
- msgid "Redirect"
511
- msgstr "Redirection"
512
-
513
- #: includes/class-wcj-add-to-cart.php:169
514
- #@ woocommerce-jetpack
515
- msgid "Redirect URL"
516
- msgstr "URL à utiliser:"
517
-
518
- #: includes/class-wcj-add-to-cart.php:170
519
- #@ woocommerce-jetpack
520
- msgid "Redirect URL. Leave empty to redirect to checkout."
521
- msgstr "URL de redirection. Laisser vide pour rediriger sur la page de commande."
522
-
523
- #: includes/class-wcj-add-to-cart.php:214
524
- #@ woocommerce-jetpack
525
- msgid "Other product"
526
- msgstr "Autres produits"
527
-
528
- #: includes/class-wcj-call-for-price.php:72
529
- #@ woocommerce-jetpack
530
- msgid "Leave price empty when adding or editing products. Then set the options here."
531
- msgstr "N'indiquez pas les prix des produits dans leurs fiches. Personnalisez les options d'affichage ici."
532
-
533
- #: includes/class-wcj-call-for-price.php:77
534
- #@ woocommerce-jetpack
535
- msgid "Create any custom price label for all products with empty price."
536
- msgstr "Permet de personnaliser les intitulés des produits sans prix."
537
-
538
- #: includes/class-wcj-call-for-price.php:85
539
- #: includes/class-wcj-call-for-price.php:97
540
- #: includes/class-wcj-call-for-price.php:109
541
- #: includes/class-wcj-call-for-price.php:121
542
- #@ woocommerce-jetpack
543
- msgid "This sets the html to output on empty price. Leave blank to disable."
544
- msgstr "Permet de modifier le texte en HTML lorsque le prix n'est pas défini. Laisser vide pour ne pas utiliser cette option."
545
-
546
- #: includes/class-wcj-call-for-price.php:120
547
- #@ woocommerce-jetpack
548
- msgid "Label to Show on Related"
549
- msgstr "Texte pour les produits associés"
550
-
551
- #: includes/class-wcj-call-for-price.php:132
552
- #@ woocommerce-jetpack
553
- msgid "Hide Sale! Tag"
554
- msgstr "Texte pour les promotions"
555
-
556
- #: includes/class-wcj-call-for-price.php:133
557
- #@ woocommerce-jetpack
558
- msgid "Hide the tag"
559
- msgstr "Masquer le texte"
560
-
561
- #: includes/class-wcj-cart.php:118
562
- #@ woocommerce-jetpack
563
- msgid "Cart Options"
564
- msgstr "Options: Panier"
565
-
566
- #: includes/class-wcj-cart.php:121
567
- #: includes/class-wcj-cart.php:186
568
- #@ woocommerce-jetpack
569
- msgid "Cart"
570
- msgstr "Panier"
571
-
572
- #: includes/class-wcj-cart.php:123
573
- #@ woocommerce-jetpack
574
- msgid "Add empty cart button, automatically add to cart on product visit."
575
- msgstr "Ajoute un bouton [Vider le panier]. Permet d'ajouter un produit automatiquement dans le panier."
576
-
577
- #: includes/class-wcj-cart.php:131
578
- #@ woocommerce-jetpack
579
- msgid "This section lets you add and customize \"Empty Cart\" button to cart page."
580
- msgstr "Permet d'ajouter un bouton personnalisé [Vider le panier] dans la page du panier."
581
-
582
- #: includes/class-wcj-cart.php:153
583
- #@ woocommerce-jetpack
584
- msgid "Style for the button's div. Default is \"float: right;\""
585
- msgstr "Stylization des DIV du bouton. Par défaut: [float: right;]"
586
-
587
- #: includes/class-wcj-cart.php:164
588
- #@ woocommerce-jetpack
589
- 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. "
590
- msgstr "Permet d'activer la mise dans le panier automatique lors de l'affichage de la page produit. Le produit ne peut être ajouter qu'une seule fois, donc il n'est pas possible de le dupliquer."
591
-
592
- #: includes/class-wcj-checkout.php:146
593
- #@ woocommerce-jetpack
594
- msgid "Customize checkout fields. Disable/enable fields, set required, change labels and/or placeholders."
595
- msgstr "Permet de personnaliser les champs du processus de commande. Permet d'activer/désactiver certains champs. Permet de définir des champs obligatoires."
596
-
597
- #: includes/class-wcj-checkout.php:156
598
- #@ woocommerce-jetpack
599
- msgid "Place order (Order now) Button"
600
- msgstr "Afficher un bouton [Commander maintenant]"
601
-
602
- #: includes/class-wcj-checkout.php:159
603
- #@ woocommerce-jetpack
604
- msgid "Text"
605
- msgstr "Texte"
606
-
607
- #: includes/class-wcj-checkout.php:160
608
- #@ woocommerce-jetpack
609
- msgid "leave blank for WooCommerce default"
610
- msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
611
-
612
- #: includes/class-wcj-checkout.php:161
613
- #@ woocommerce-jetpack
614
- msgid "Button on the checkout page."
615
- msgstr "Bouton sur la page de commande."
616
-
617
- #: includes/class-wcj-checkout.php:170
618
- #@ woocommerce-jetpack
619
- msgid "This section lets you customize the checkout fields: change label, placeholder, set required, or remove any field."
620
- msgstr "Permet de personnaliser les champs du processus de commande. Permet d'activer/désactiver certains champs. Permet de définir des champs obligatoires."
621
-
622
- #: includes/class-wcj-checkout.php:236
623
- #@ woocommerce-jetpack
624
- msgid "Leave blank for WooCommerce defaults."
625
- msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
626
-
627
- #: includes/class-wcj-currencies.php:389
628
- #@ woocommerce-jetpack
629
- msgid "Currency Symbol"
630
- msgstr "Symboles des devises"
631
-
632
- #: includes/class-wcj-currencies.php:390
633
- #@ woocommerce-jetpack
634
- msgid "This sets the currency symbol."
635
- msgstr "Permet de définir le symbole de la devise utilisée."
636
-
637
- #: includes/class-wcj-currencies.php:416
638
- #@ woocommerce-jetpack
639
- msgid "Add all world currencies, change currency symbol."
640
- msgstr "Permet de personnaliser les symboles des devises utilisées."
641
-
642
- #: includes/class-wcj-currencies.php:424
643
- #@ woocommerce-jetpack
644
- msgid "Currency Symbol Options"
645
- msgstr "Options: Symboles des devises"
646
-
647
- #: includes/class-wcj-emails.php:64
648
- #@ woocommerce-jetpack
649
- msgid "WooCommerce Jetpack: Email Forwarding Options"
650
- msgstr "WooCommerce Jetpack: Options de redirection des emails"
651
-
652
- #: includes/class-wcj-emails.php:64
653
- #: includes/class-wcj-emails.php:137
654
- #@ woocommerce-jetpack
655
- msgid "This section lets you add another email recipient(s) to all WooCommerce emails. Leave blank to disable."
656
- msgstr "Permet d'ajouter d'autres récipiendaires aux emails de Woocommerce. laisser vide pour ne pas utiliser cette option."
657
-
658
- #: includes/class-wcj-emails.php:68
659
- #: includes/class-wcj-emails.php:140
660
- #@ woocommerce-jetpack
661
- msgid "Cc Email"
662
- msgstr "CC"
663
-
664
- #: includes/class-wcj-emails.php:70
665
- #: includes/class-wcj-emails.php:142
666
- #@ woocommerce-jetpack
667
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
668
- msgstr "Copie de l'email à une autre adresse. Laisser vide pour ne pas utiliser cette option."
669
-
670
- #: includes/class-wcj-emails.php:80
671
- #: includes/class-wcj-emails.php:151
672
- #@ woocommerce-jetpack
673
- msgid "Bcc Email"
674
- msgstr "BCC"
675
-
676
- #: includes/class-wcj-emails.php:82
677
- #: includes/class-wcj-emails.php:153
678
- #@ woocommerce-jetpack
679
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
680
- msgstr "Copie cachée de l'email à une autre adresse. Laisser vide pour ne pas utiliser cette option."
681
-
682
- #: includes/class-wcj-emails.php:124
683
- #@ woocommerce-jetpack
684
- msgid "Emails Options"
685
- msgstr "Options: Emails"
686
-
687
- #: includes/class-wcj-emails.php:127
688
- #: includes/class-wcj-emails.php:172
689
- #@ woocommerce-jetpack
690
- msgid "Emails"
691
- msgstr "Courriels"
692
-
693
- #: includes/class-wcj-emails.php:128
694
- #@ woocommerce-jetpack
695
- msgid "Enable the Emails feature"
696
- msgstr "Activer les options pour les emails."
697
-
698
- #: includes/class-wcj-emails.php:129
699
- #@ woocommerce-jetpack
700
- msgid "Add another email recipient(s) to all WooCommerce emails."
701
- msgstr "Permet d'ajouter d'autres récipiendaires aux emails de Woocommerce."
702
-
703
- #: includes/class-wcj-emails.php:137
704
- #@ woocommerce-jetpack
705
- msgid "Email Forwarding Options"
706
- msgstr "Options: Redirections des emails"
707
-
708
- #: includes/class-wcj-general.php:75
709
- #@ woocommerce-jetpack
710
- msgid "Separate custom CSS for front and back end."
711
- msgstr "Permet de personnaliser les CCS à la fois pour la partie client et gestion."
712
-
713
- #: includes/class-wcj-general.php:83
714
- #@ woocommerce-jetpack
715
- msgid "Another custom CSS, if you need one."
716
- msgstr "Si nécessaire, vous pouvez ajouter votre propre code CSS."
717
-
718
- #: includes/class-wcj-general.php:94
719
- #@ woocommerce-jetpack
720
- msgid "Custom CSS - Back end (Admin)"
721
- msgstr "CSS pour les administrateurs"
722
-
723
- #: includes/class-wcj-old-slugs.php:82
724
- #@ woocommerce-jetpack
725
- msgid "Old Slugs Options"
726
- msgstr "Options: Liens périmés"
727
-
728
- #: includes/class-wcj-old-slugs.php:85
729
- #: includes/class-wcj-old-slugs.php:105
730
- #@ woocommerce-jetpack
731
- msgid "Old Slugs"
732
- msgstr "Permaliens"
733
-
734
- #: includes/class-wcj-old-slugs.php:161
735
- #@ woocommerce-jetpack
736
- msgid "Tool removes old slugs/permalinks from database."
737
- msgstr "Outil permettant la suppression des mauvais permaliens ou permaliens périmés de la base."
738
-
739
- #: includes/class-wcj-old-slugs.php:166
740
- #@ woocommerce-jetpack
741
- msgid "Old products slugs found:"
742
- msgstr "Permaliens périmés trouvés:"
743
-
744
- #: includes/class-wcj-old-slugs.php:174
745
- #@ woocommerce-jetpack
746
- msgid "None-products slugs found:"
747
- msgstr "Permaliens non pertinent trouvés:"
748
-
749
- #: includes/class-wcj-old-slugs.php:181
750
- #@ woocommerce-jetpack
751
- msgid "No old slugs found."
752
- msgstr "Aucun Permaliens périmés."
753
-
754
- #: includes/class-wcj-orders.php:26
755
- #@ woocommerce
756
- msgctxt "Order status"
757
- msgid "Pending payment"
758
- msgstr ""
759
-
760
- #: includes/class-wcj-orders.php:27
761
- #@ woocommerce
762
- msgctxt "Order status"
763
- msgid "Processing"
764
- msgstr ""
765
-
766
- #: includes/class-wcj-orders.php:28
767
- #@ woocommerce
768
- msgctxt "Order status"
769
- msgid "On hold"
770
- msgstr ""
771
-
772
- #: includes/class-wcj-orders.php:29
773
- #@ woocommerce
774
- msgctxt "Order status"
775
- msgid "Completed"
776
- msgstr ""
777
-
778
- #: includes/class-wcj-orders.php:30
779
- #@ woocommerce
780
- msgctxt "Order status"
781
- msgid "Cancelled"
782
- msgstr ""
783
-
784
- #: includes/class-wcj-orders.php:31
785
- #@ woocommerce
786
- msgctxt "Order status"
787
- msgid "Refunded"
788
- msgstr ""
789
-
790
- #: includes/class-wcj-orders.php:32
791
- #@ woocommerce
792
- msgctxt "Order status"
793
- msgid "Failed"
794
- msgstr ""
795
-
796
- #: includes/class-wcj-orders.php:88
797
- #, php-format
798
- #@ woocommerce-jetpack
799
- msgid " <span class=\"count\">(%s)</span>"
800
- msgid_plural " <span class=\"count\">(%s)</span>"
801
- msgstr[0] " <span class=\"count\">(%s)</span>"
802
- msgstr[1] " <span class=\"count\">(%s)</span>"
803
-
804
- #: includes/class-wcj-orders.php:149
805
- #@ woocommerce-jetpack
806
- msgid "Status slug is empty. Status not added."
807
- msgstr ""
808
-
809
- #: includes/class-wcj-orders.php:151
810
- #@ woocommerce-jetpack
811
- msgid "Status label is empty. Status not added."
812
- msgstr ""
813
-
814
- #: includes/class-wcj-orders.php:157
815
- #@ woocommerce-jetpack
816
- msgid "Duplicate slug. Status not added."
817
- msgstr ""
818
-
819
- #: includes/class-wcj-orders.php:163
820
- #@ woocommerce-jetpack
821
- msgid "New status have been successfully added!"
822
- msgstr ""
823
-
824
- #: includes/class-wcj-orders.php:165
825
- #@ woocommerce-jetpack
826
- msgid "Status was not added."
827
- msgstr ""
828
-
829
- #: includes/class-wcj-orders.php:181
830
- #@ woocommerce-jetpack
831
- msgid "Status have been successfully deleted."
832
- msgstr ""
833
-
834
- #: includes/class-wcj-orders.php:183
835
- #@ woocommerce-jetpack
836
- msgid "Delete failed."
837
- msgstr "Suppression incomplète."
838
-
839
- #: includes/class-wcj-orders.php:187
840
- #@ woocommerce-jetpack
841
- msgid "The tool lets you add or delete any custom status for WooCommerce orders."
842
- msgstr "Cette option vous permet de supprimer n'importe quel statut personnalisé dans les commandes WooCommerce"
843
-
844
- #: includes/class-wcj-orders.php:189
845
- #@ woocommerce-jetpack
846
- msgid "Statuses"
847
- msgstr "Statuts"
848
-
849
- #: includes/class-wcj-orders.php:192
850
- #@ woocommerce-jetpack
851
- msgid "Slug"
852
- msgstr "Permalien"
853
-
854
- #: includes/class-wcj-orders.php:193
855
- #: includes/class-wcj-orders.php:218
856
- #@ woocommerce-jetpack
857
- msgid "Label"
858
- msgstr "Texte"
859
-
860
- #: includes/class-wcj-orders.php:195
861
- #: includes/class-wcj-orders.php:205
862
- #@ woocommerce-jetpack
863
- msgid "Delete"
864
- msgstr "Supprimer"
865
-
866
- #: includes/class-wcj-orders.php:217
867
- #@ woocommerce-jetpack
868
- msgid "Slug (without wc- prefix)"
869
- msgstr "Permalien (sans le préfixe wc-)"
870
-
871
- #: includes/class-wcj-orders.php:264
872
- #@ woocommerce-jetpack
873
- msgid "Renumerate orders"
874
- msgstr "Re-numéroter les commandes"
875
-
876
- #: includes/class-wcj-orders.php:398
877
- #@ woocommerce-jetpack
878
- msgid "Orders Options"
879
- msgstr "Options: Commandes"
880
-
881
- #: includes/class-wcj-orders.php:402
882
- #@ woocommerce-jetpack
883
- msgid "Enable the Orders feature"
884
- msgstr "Activer les options pour les commandes"
885
-
886
- #: includes/class-wcj-orders.php:403
887
- #@ woocommerce-jetpack
888
- msgid "Sequential order numbering, custom order number prefix and number width. Minimum order amount."
889
- msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes. Permet de définir des montant minimum et/ou maximum."
890
-
891
- #: includes/class-wcj-orders.php:411
892
- #: includes/class-wcj-orders.php:414
893
- #@ woocommerce-jetpack
894
- msgid "Order Numbers"
895
- msgstr "Numérotation"
896
-
897
- #: includes/class-wcj-orders.php:411
898
- #@ woocommerce-jetpack
899
- msgid "This section lets you enable sequential order numbering, set custom number prefix and width."
900
- msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes."
901
-
902
- #: includes/class-wcj-orders.php:416
903
- #@ woocommerce-jetpack
904
- msgid "This will enable sequential order numbering and custom prefixes."
905
- msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes."
906
-
907
- #: includes/class-wcj-orders.php:423
908
- #@ woocommerce-jetpack
909
- msgid "Next Order Number"
910
- msgstr "Prochain numéro"
911
-
912
- #: includes/class-wcj-orders.php:424
913
- #@ woocommerce-jetpack
914
- msgid "Next new order will be given this number."
915
- msgstr "La prochaine commande auras ce numéro."
916
-
917
- #: includes/class-wcj-orders.php:431
918
- #@ woocommerce-jetpack
919
- msgid "Order Number Custom Prefix"
920
- msgstr "Préfixe de numérotation"
921
-
922
- #: includes/class-wcj-orders.php:433
923
- #@ woocommerce-jetpack
924
- msgid "Prefix before order number (optional). This will change the prefixes for all existing orders."
925
- msgstr "Préfixe (optionnel). Attention cette option va changer les préfixes sur l'ensemble des commandes existantes."
926
-
927
- #: includes/class-wcj-orders.php:442
928
- #@ woocommerce-jetpack
929
- msgid "Order Number Date Prefix"
930
- msgstr "Préfixe par date"
931
-
932
- #: includes/class-wcj-orders.php:444
933
- #@ woocommerce-jetpack
934
- 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."
935
- msgstr "Préfixe (Date avant le numéro). Cette option change le préfixe pour l'ensemble des commandes. Utilise la fonction [date] de PHP ce qui permet d'utiliser la majorité des symbols de date,exception faite pour le '\\'. Essayer Y-m-d- ou mdy."
936
-
937
- #: includes/class-wcj-orders.php:453
938
- #@ woocommerce-jetpack
939
- msgid "Order Number Width"
940
- msgstr "Nombre de chiffres"
941
-
942
- #: includes/class-wcj-orders.php:455
943
- #@ woocommerce-jetpack
944
- 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."
945
- msgstr "nombre de chiffres minimum (Hors préfixe). Cette option change le préfixe pour l'ensemble des commandes. Ex: entrez 5 pour avoir une numérotation de 00001 au lieu de 1. Laisser à zéro pour ne pas activer la fonction."
946
-
947
- #: includes/class-wcj-orders.php:465
948
- #@ woocommerce-jetpack
949
- msgid "Order Minimum Amount"
950
- msgstr "Options: Montant minimum"
951
-
952
- #: includes/class-wcj-orders.php:465
953
- #@ woocommerce-jetpack
954
- msgid "This section lets you set minimum order amount."
955
- msgstr "Permet de définir un montant d'achat minimum."
956
-
957
- #: includes/class-wcj-orders.php:468
958
- #@ woocommerce-jetpack
959
- msgid "Amount"
960
- msgstr "Montant"
961
-
962
- #: includes/class-wcj-orders.php:469
963
- #@ woocommerce-jetpack
964
- msgid "Minimum order amount. Set to 0 to disable."
965
- msgstr "Montant minium de la commande. Laisser à 0 pour ne pas utiliser cette option."
966
-
967
- #: includes/class-wcj-orders.php:476
968
- #@ woocommerce-jetpack
969
- msgid "Error message"
970
- msgstr "Message d'erreur"
971
-
972
- #: includes/class-wcj-orders.php:478
973
- #: includes/class-wcj-orders.php:498
974
- #, php-format
975
- #@ woocommerce-jetpack
976
- 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."
977
- msgstr "Message affiché au client si la commande est en dessous d'un montant prédéfini. Par défaut: Vous devez avoir un montant de %s pour pouvoir commander. Votre montant actuel est de %s."
978
-
979
- #: includes/class-wcj-orders.php:488
980
- #@ woocommerce-jetpack
981
- msgid "Add notice to cart page also"
982
- msgstr "Placer aussi sur la page du panier"
983
-
984
- #: includes/class-wcj-orders.php:489
985
- #@ woocommerce-jetpack
986
- msgid "Add"
987
- msgstr "Ajouter"
988
-
989
- #: includes/class-wcj-orders.php:496
990
- #@ woocommerce-jetpack
991
- msgid "Message on cart page"
992
- msgstr "Message sur la page du Panier"
993
-
994
- #: includes/class-wcj-orders.php:508
995
- #@ woocommerce-jetpack
996
- msgid "Stop customer from seeing the Checkout page if minimum amount not reached."
997
- msgstr "Ne pas afficher la page de commande si le montant minium n'est pas atteint."
998
-
999
- #: includes/class-wcj-orders.php:509
1000
- #@ woocommerce-jetpack
1001
- msgid "Redirect back to Cart page"
1002
- msgstr "Rediriger sur la page du panier"
1003
-
1004
- #: includes/class-wcj-orders.php:517
1005
- #@ woocommerce-jetpack
1006
- msgid "Orders Auto-Complete"
1007
- msgstr "Options: Commande auto-complétées"
1008
-
1009
- #: includes/class-wcj-orders.php:517
1010
- #@ woocommerce-jetpack
1011
- msgid "This section lets you enable orders auto-complete function."
1012
- msgstr "Permet d'activer les commandes auto-complétées."
1013
-
1014
- #: includes/class-wcj-orders.php:520
1015
- #@ woocommerce-jetpack
1016
- msgid "Auto-complete all WooCommerce orders"
1017
- msgstr "Auto-compléter toutes les commandes Woocommerce"
1018
-
1019
- #: includes/class-wcj-orders.php:522
1020
- #@ woocommerce-jetpack
1021
- msgid "E.g. if you sell digital products then you are not shipping anything and you may want auto-complete all your orders."
1022
- msgstr "Ex: Vous vendez des produits digitals qui n'ont pas besoin de livraison et vous voulez auto-completer toutes vos commandes."
1023
-
1024
- #: includes/class-wcj-orders.php:530
1025
- #@ woocommerce-jetpack
1026
- msgid "This section lets you enable custom statuses tool."
1027
- msgstr "Permet d'activer les statuts personnalisés."
1028
-
1029
- #: includes/class-wcj-payment-gateways.php:64
1030
- #@ woocommerce-jetpack
1031
- msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
1032
- msgstr "WooCommerce Jetpack: Options pour les passerelles de paiement WooCommerce"
1033
-
1034
- #: includes/class-wcj-payment-gateways.php:64
1035
- #: includes/class-wcj-payment-gateways.php:133
1036
- #: includes/gateways/class-wc-gateway-wcj-custom.php:125
1037
- #@ woocommerce-jetpack
1038
- msgid "If you want to show an image next to the gateway's name on the frontend, enter a URL to an image."
1039
- msgstr "Si vous désirez afficher une image à coté de la passerelle de paiement, entrez l'URL correspondant à cette image."
1040
-
1041
- #: includes/class-wcj-payment-gateways.php:123
1042
- #@ woocommerce-jetpack
1043
- msgid "Enable the Payment Gateways feature"
1044
- msgstr "Activer les options de passerelles de paiement"
1045
-
1046
- #: includes/class-wcj-payment-gateways.php:124
1047
- #@ woocommerce-jetpack
1048
- msgid "Add custom payment gateway, change icons (images) for all default WooCommerce payment gateways."
1049
- msgstr "Personnalisation des passerelles de paiement: Changer les icônes pour les passerelles de paiement par défaut de Woocommerce."
1050
-
1051
- #: includes/class-wcj-payment-gateways.php:132
1052
- #@ woocommerce-jetpack
1053
- msgid "Custom Payment Gateways Options"
1054
- msgstr "Options: Passerelles de paiement personnalisées"
1055
-
1056
- #: includes/class-wcj-payment-gateways.php:135
1057
- #@ woocommerce-jetpack
1058
- msgid "Number of Gateways"
1059
- msgstr "Nombre de passerelles"
1060
-
1061
- #: includes/class-wcj-payment-gateways.php:137
1062
- #@ woocommerce-jetpack
1063
- msgid "Number of custom payments gateways to be added. All settings for each new gateway are in WooCommerce > Settings > Checkout."
1064
- msgstr ""
1065
-
1066
- #: includes/class-wcj-pdf-invoices.php:76
1067
- #: includes/class-wcj-pdf-invoices.php:81
1068
- #@ woocommerce-jetpack
1069
- msgid "Invoice"
1070
- msgstr "Facture"
1071
-
1072
- #: includes/class-wcj-pdf-invoices.php:600
1073
- #: includes/class-wcj-pdf-invoices.php:606
1074
- #@ woocommerce-jetpack
1075
- msgid "PDF Invoice"
1076
- msgstr "Facture PDF"
1077
-
1078
- #: includes/class-wcj-pdf-invoices.php:631
1079
- #@ woocommerce-jetpack
1080
- msgid "PDF Invoices Options"
1081
- msgstr "Options: Factures PDF"
1082
-
1083
- #: includes/class-wcj-pdf-invoices.php:634
1084
- #: includes/class-wcj-pdf-invoices.php:1086
1085
- #@ woocommerce-jetpack
1086
- msgid "PDF Invoices"
1087
- msgstr "Factures PDF"
1088
-
1089
- #: includes/class-wcj-pdf-invoices.php:635
1090
- #@ woocommerce-jetpack
1091
- msgid "Enable the PDF Invoices feature"
1092
- msgstr "Activer les factures au format PDF"
1093
-
1094
- #: includes/class-wcj-pdf-invoices.php:636
1095
- #@ woocommerce-jetpack
1096
- msgid "Add PDF invoices for the store owners and for the customers."
1097
- msgstr "Permet d'éditer des factures au format PDF pour les clients."
1098
-
1099
- #: includes/class-wcj-pdf-invoices.php:644
1100
- #@ woocommerce-jetpack
1101
- msgid "Invoice Header"
1102
- msgstr "Options: En-tête"
1103
-
1104
- #: includes/class-wcj-pdf-invoices.php:644
1105
- #@ woocommerce-jetpack
1106
- msgid "This section lets you set texts for required invoice number and date, and optional logo, header text, invoice due and fulfillment dates."
1107
- msgstr "Permet de personnaliser les différents textes d'en-tête de la facture. Permet d'ajouter un logo ainsi que les différentes dates de facturation et de réglement."
1108
-
1109
- #: includes/class-wcj-pdf-invoices.php:647
1110
- #@ woocommerce-jetpack
1111
- msgid "Your Logo URL"
1112
- msgstr "URL de votre Logo"
1113
-
1114
- #: includes/class-wcj-pdf-invoices.php:648
1115
- #@ woocommerce-jetpack
1116
- msgid "Enter a URL to an image you want to show in the invoice's header. Upload your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1117
- msgstr "Entrez une URL pour le logo que vous désirez afficher sur la facture. Utilisez le <a href=\"/wp-admin/media-new.php\">Gestionnaire de média</a>."
1118
-
1119
- #: includes/class-wcj-pdf-invoices.php:649
1120
- #: includes/class-wcj-pdf-invoices.php:658
1121
- #: includes/class-wcj-pdf-invoices.php:696
1122
- #: includes/class-wcj-pdf-invoices.php:725
1123
- #: includes/class-wcj-pdf-invoices.php:789
1124
- #: includes/class-wcj-pdf-invoices.php:824
1125
- #: includes/class-wcj-pdf-invoices.php:866
1126
- #: includes/class-wcj-pdf-invoices.php:875
1127
- #: includes/class-wcj-pdf-invoices.php:884
1128
- #: includes/class-wcj-pdf-invoices.php:893
1129
- #: includes/class-wcj-pdf-invoices.php:902
1130
- #: includes/class-wcj-pdf-invoices.php:911
1131
- #: includes/class-wcj-pdf-invoices.php:991
1132
- #: includes/class-wcj-pdf-invoices.php:1000
1133
- #@ woocommerce-jetpack
1134
- msgid "Leave blank to disable"
1135
- msgstr "Laisser vide pour ne pas utiliser cette option"
1136
-
1137
- #: includes/class-wcj-pdf-invoices.php:657
1138
- #@ woocommerce-jetpack
1139
- msgid "Header Text"
1140
- msgstr "Texte d'en-tête"
1141
-
1142
- #: includes/class-wcj-pdf-invoices.php:659
1143
- #@ woocommerce-jetpack
1144
- msgid "Default: INVOICE"
1145
- msgstr "par défaut: FACTURE"
1146
-
1147
- #: includes/class-wcj-pdf-invoices.php:661
1148
- #@ woocommerce-jetpack
1149
- msgid "INVOICE"
1150
- msgstr "FACTURE"
1151
-
1152
- #: includes/class-wcj-pdf-invoices.php:667
1153
- #@ woocommerce-jetpack
1154
- msgid "Invoice Number"
1155
- msgstr "Numéro de facture"
1156
-
1157
- #: includes/class-wcj-pdf-invoices.php:668
1158
- #@ woocommerce-jetpack
1159
- msgid "Default: Invoice number"
1160
- msgstr "Par défaut: Facture numéro"
1161
-
1162
- #: includes/class-wcj-pdf-invoices.php:670
1163
- #@ woocommerce-jetpack
1164
- msgid "Invoice number"
1165
- msgstr "Numéro de facture"
1166
-
1167
- #: includes/class-wcj-pdf-invoices.php:676
1168
- #@ woocommerce-jetpack
1169
- msgid "Invoice Date"
1170
- msgstr "Date de facture"
1171
-
1172
- #: includes/class-wcj-pdf-invoices.php:677
1173
- #@ woocommerce-jetpack
1174
- msgid "Default: Invoice date"
1175
- msgstr "Par défaut: Date de facturation"
1176
-
1177
- #: includes/class-wcj-pdf-invoices.php:679
1178
- #@ woocommerce-jetpack
1179
- msgid "Invoice date"
1180
- msgstr "Date de facture"
1181
-
1182
- #: includes/class-wcj-pdf-invoices.php:695
1183
- #@ woocommerce-jetpack
1184
- msgid "Default: Invoice due date"
1185
- msgstr "Par défaut: Date d'échéance"
1186
-
1187
- #: includes/class-wcj-pdf-invoices.php:698
1188
- #@ woocommerce-jetpack
1189
- msgid "Invoice due date"
1190
- msgstr "Date d'échéance"
1191
-
1192
- #: includes/class-wcj-pdf-invoices.php:705
1193
- #: includes/class-wcj-pdf-invoices.php:734
1194
- #@ woocommerce-jetpack
1195
- msgid "days"
1196
- msgstr "jours"
1197
-
1198
- #: includes/class-wcj-pdf-invoices.php:724
1199
- #@ woocommerce-jetpack
1200
- msgid "Default: Invoice fulfillment date"
1201
- msgstr "Par défaut: Règlement effectué le"
1202
-
1203
- #: includes/class-wcj-pdf-invoices.php:727
1204
- #@ woocommerce-jetpack
1205
- msgid "Invoice fulfillment date"
1206
- msgstr "Date du règlement"
1207
-
1208
- #: includes/class-wcj-pdf-invoices.php:744
1209
- #@ woocommerce-jetpack
1210
- msgid "Seller and Buyer Info"
1211
- msgstr "Options: Informations sur le vendeur, informations sur le client."
1212
-
1213
- #: includes/class-wcj-pdf-invoices.php:747
1214
- #: includes/class-wcj-pdf-invoices.php:750
1215
- #@ woocommerce-jetpack
1216
- msgid "Seller"
1217
- msgstr "Vendeur"
1218
-
1219
- #: includes/class-wcj-pdf-invoices.php:756
1220
- #@ woocommerce-jetpack
1221
- msgid "Your business information"
1222
- msgstr "Vos informations"
1223
-
1224
- #: includes/class-wcj-pdf-invoices.php:758
1225
- #@ woocommerce-jetpack
1226
- msgid "New lines are added automatically."
1227
- msgstr "Les retours à la ligne sont créés automatiquement."
1228
-
1229
- #: includes/class-wcj-pdf-invoices.php:760
1230
- #@ woocommerce-jetpack
1231
- msgid "<strong>Company Name</strong>"
1232
- msgstr "<strong>Société</strong>"
1233
-
1234
- #: includes/class-wcj-pdf-invoices.php:766
1235
- #: includes/class-wcj-pdf-invoices.php:769
1236
- #@ woocommerce-jetpack
1237
- msgid "Buyer"
1238
- msgstr "Client"
1239
-
1240
- #: includes/class-wcj-pdf-invoices.php:776
1241
- #: includes/class-wcj-pdf-invoices.php:782
1242
- #@ woocommerce-jetpack
1243
- msgid "Items"
1244
- msgstr "Options: Produits"
1245
-
1246
- #: includes/class-wcj-pdf-invoices.php:779
1247
- #@ woocommerce-jetpack
1248
- msgid "Items Table Heading Text"
1249
- msgstr "En-tête de ligne"
1250
-
1251
- #: includes/class-wcj-pdf-invoices.php:788
1252
- #@ woocommerce-jetpack
1253
- msgid "Shipping as Item"
1254
- msgstr "Livraison en tant que Produit"
1255
-
1256
- #: includes/class-wcj-pdf-invoices.php:790
1257
- #@ woocommerce-jetpack
1258
- msgid "Display shipping as item"
1259
- msgstr "Affiche les livraisons comme des produits"
1260
-
1261
- #: includes/class-wcj-pdf-invoices.php:808
1262
- #: includes/class-wcj-pdf-invoices.php:816
1263
- #@ woocommerce-jetpack
1264
- msgid "Add shipping method info"
1265
- msgstr "Afficher les infos de livraison"
1266
-
1267
- #: includes/class-wcj-pdf-invoices.php:815
1268
- #@ woocommerce-jetpack
1269
- msgid "Do not add shipping method info"
1270
- msgstr "Ne pas afficher les infos de livraison"
1271
-
1272
- #: includes/class-wcj-pdf-invoices.php:817
1273
- #@ woocommerce-jetpack
1274
- msgid "Replace with shipping method info"
1275
- msgstr "Remplacer les infos de livraison"
1276
-
1277
- #: includes/class-wcj-pdf-invoices.php:823
1278
- #@ woocommerce-jetpack
1279
- msgid "Discount as Item"
1280
- msgstr "Remise en tant que Produit"
1281
-
1282
- #: includes/class-wcj-pdf-invoices.php:825
1283
- #@ woocommerce-jetpack
1284
- msgid "Display discount as item"
1285
- msgstr "Affiche les remises comme des produits"
1286
-
1287
- #: includes/class-wcj-pdf-invoices.php:835
1288
- #@ woocommerce-jetpack
1289
- msgid "Items Columns"
1290
- msgstr "Options: colonnes"
1291
-
1292
- #: includes/class-wcj-pdf-invoices.php:835
1293
- #@ woocommerce-jetpack
1294
- msgid "This section lets you set column names in invoice items table. You can disable some columns by leaving blank column name."
1295
- msgstr "Permet de personnaliser les titres des colonnes dans la page de facturation. Vous pouvez désactiver certaines colonnes en laissant le champ de titre vide"
1296
-
1297
- #: includes/class-wcj-pdf-invoices.php:838
1298
- #: includes/class-wcj-pdf-invoices.php:841
1299
- #@ woocommerce-jetpack
1300
- msgid "Nr."
1301
- msgstr ""
1302
-
1303
- #: includes/class-wcj-pdf-invoices.php:847
1304
- #: includes/class-wcj-pdf-invoices.php:850
1305
- #@ woocommerce-jetpack
1306
- msgid "Item Name"
1307
- msgstr "Produit"
1308
-
1309
- #: includes/class-wcj-pdf-invoices.php:856
1310
- #: includes/class-wcj-pdf-invoices.php:859
1311
- #@ woocommerce-jetpack
1312
- msgid "Qty"
1313
- msgstr "Qté"
1314
-
1315
- #: includes/class-wcj-pdf-invoices.php:865
1316
- #@ woocommerce-jetpack
1317
- msgid "Single Item Price (TAX excl.)"
1318
- msgstr "Prix (HT)"
1319
-
1320
- #: includes/class-wcj-pdf-invoices.php:868
1321
- #@ woocommerce-jetpack
1322
- msgid "Price (TAX excl.)"
1323
- msgstr "Prix (TTC)"
1324
-
1325
- #: includes/class-wcj-pdf-invoices.php:874
1326
- #@ woocommerce-jetpack
1327
- msgid "Single Item TAX"
1328
- msgstr "TVA"
1329
-
1330
- #: includes/class-wcj-pdf-invoices.php:877
1331
- #@ woocommerce-jetpack
1332
- msgid "TAX"
1333
- msgstr "TVA"
1334
-
1335
- #: includes/class-wcj-pdf-invoices.php:883
1336
- #@ woocommerce-jetpack
1337
- msgid "Single Item Price (TAX incl.)"
1338
- msgstr "Prix (TTC)"
1339
-
1340
- #: includes/class-wcj-pdf-invoices.php:886
1341
- #@ woocommerce-jetpack
1342
- msgid "Price (TAX incl.)"
1343
- msgstr "Prix (TTC)"
1344
-
1345
- #: includes/class-wcj-pdf-invoices.php:892
1346
- #: includes/class-wcj-pdf-invoices.php:895
1347
- #@ woocommerce-jetpack
1348
- msgid "Sum (TAX excl.)"
1349
- msgstr "Prix (HT)"
1350
-
1351
- #: includes/class-wcj-pdf-invoices.php:901
1352
- #@ woocommerce-jetpack
1353
- msgid "Tax Percent"
1354
- msgstr "Taux"
1355
-
1356
- #: includes/class-wcj-pdf-invoices.php:904
1357
- #@ woocommerce-jetpack
1358
- msgid "Taxes %"
1359
- msgstr "Taxes %"
1360
-
1361
- #: includes/class-wcj-pdf-invoices.php:910
1362
- #: includes/class-wcj-pdf-invoices.php:913
1363
- #: includes/class-wcj-pdf-invoices.php:971
1364
- #@ woocommerce-jetpack
1365
- msgid "Taxes"
1366
- msgstr "Taxes"
1367
-
1368
- #: includes/class-wcj-pdf-invoices.php:919
1369
- #: includes/class-wcj-pdf-invoices.php:922
1370
- #@ woocommerce-jetpack
1371
- msgid "Sum (TAX incl.)"
1372
- msgstr "Total (TTC)"
1373
-
1374
- #: includes/class-wcj-pdf-invoices.php:929
1375
- #@ woocommerce-jetpack
1376
- msgid "Totals"
1377
- msgstr "Options: Totaux"
1378
-
1379
- #: includes/class-wcj-pdf-invoices.php:929
1380
- #@ woocommerce-jetpack
1381
- msgid "This section lets you set texts for totals table."
1382
- msgstr "Permet de personnaliser le texte pour la table des totaux."
1383
-
1384
- #: includes/class-wcj-pdf-invoices.php:932
1385
- #: includes/class-wcj-pdf-invoices.php:935
1386
- #@ woocommerce-jetpack
1387
- msgid "Order Subtotal"
1388
- msgstr "Sous-total"
1389
-
1390
- #: includes/class-wcj-pdf-invoices.php:933
1391
- #@ woocommerce-jetpack
1392
- msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1393
- msgstr "Sous Total = Total - Taxes - Livraison - Remises"
1394
-
1395
- #: includes/class-wcj-pdf-invoices.php:941
1396
- #@ woocommerce-jetpack
1397
- msgid "Order Shipping Price"
1398
- msgstr "Livraison"
1399
-
1400
- #: includes/class-wcj-pdf-invoices.php:950
1401
- #@ woocommerce-jetpack
1402
- msgid "Total Discount"
1403
- msgstr "Remise"
1404
-
1405
- #: includes/class-wcj-pdf-invoices.php:953
1406
- #@ woocommerce-jetpack
1407
- msgid "Discount"
1408
- msgstr "Remise"
1409
-
1410
- #: includes/class-wcj-pdf-invoices.php:959
1411
- #: includes/class-wcj-pdf-invoices.php:962
1412
- #@ woocommerce-jetpack
1413
- msgid "Order Total (TAX excl.)"
1414
- msgstr "Total (HT)."
1415
-
1416
- #: includes/class-wcj-pdf-invoices.php:960
1417
- #@ woocommerce-jetpack
1418
- msgid "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not equal to \"Order Subtotal\""
1419
- msgstr "Total TH. = Total moins les taxes. S'affiche uniquement si les remises ou la livraison ne sont pas égales à zéro."
1420
-
1421
- #: includes/class-wcj-pdf-invoices.php:968
1422
- #@ woocommerce-jetpack
1423
- msgid "Order Total Taxes"
1424
- msgstr "TVA"
1425
-
1426
- #: includes/class-wcj-pdf-invoices.php:977
1427
- #: includes/class-wcj-pdf-invoices.php:980
1428
- #@ woocommerce-jetpack
1429
- msgid "Order Total"
1430
- msgstr "Total (TTC)."
1431
-
1432
- #: includes/class-wcj-pdf-invoices.php:987
1433
- #@ woocommerce-jetpack
1434
- msgid "Footer"
1435
- msgstr "Options: Pied de page"
1436
-
1437
- #: includes/class-wcj-pdf-invoices.php:990
1438
- #: includes/class-wcj-pdf-invoices.php:993
1439
- #@ woocommerce-jetpack
1440
- msgid "Payment Method"
1441
- msgstr "Méthode de paiement"
1442
-
1443
- #: includes/class-wcj-pdf-invoices.php:1008
1444
- #@ woocommerce-jetpack
1445
- msgid "Additional Footer"
1446
- msgstr "Texte supplémentaire de pied de page"
1447
-
1448
- #: includes/class-wcj-pdf-invoices.php:1021
1449
- #@ woocommerce-jetpack
1450
- msgid "Font size"
1451
- msgstr "Taille de la police"
1452
-
1453
- #: includes/class-wcj-pdf-invoices.php:1022
1454
- #@ woocommerce-jetpack
1455
- msgid "Default: 8"
1456
- msgstr "Par défaut: 8"
1457
-
1458
- #: includes/class-wcj-pdf-invoices.php:1030
1459
- #@ woocommerce-jetpack
1460
- msgid "CSS"
1461
- msgstr "CSS"
1462
-
1463
- #: includes/class-wcj-pdf-invoices.php:1045
1464
- #@ woocommerce-jetpack
1465
- msgid "PDF Invoices for Customers (in My Account)"
1466
- msgstr "Factures PDF pour les clients (dans Mon Compte)"
1467
-
1468
- #: includes/class-wcj-pdf-invoices.php:1046
1469
- #@ woocommerce-jetpack
1470
- msgid "Enable the PDF Invoices in customers account"
1471
- msgstr "Activer les factures au format PDF pour les clients"
1472
-
1473
- #: includes/class-wcj-pdf-invoices.php:1055
1474
- #@ woocommerce-jetpack
1475
- msgid "PDF Invoices for Customers (Email attachment)"
1476
- msgstr "Envoyer les factures au format PDF par email"
1477
-
1478
- #: includes/class-wcj-pdf-invoices.php:1056
1479
- #@ woocommerce-jetpack
1480
- msgid "Enable the PDF Invoices attachment files in customers email on order completed"
1481
- msgstr "Activer l'envoie de factures au format PDF dès que la commande est terminée"
1482
-
1483
- #: includes/class-wcj-pdf-invoices.php:1065
1484
- #@ woocommerce-jetpack
1485
- msgid "Enable Save as"
1486
- msgstr "Activer [Enregistrer sous]"
1487
-
1488
- #: includes/class-wcj-pdf-invoices.php:1066
1489
- #@ woocommerce-jetpack
1490
- msgid "Enable save as pdf instead of view pdf"
1491
- msgstr "Activer [Enregistrer sous] à la place de visualiser le PDF"
1492
-
1493
- #: includes/class-wcj-price-labels.php:114
1494
- #@ woocommerce-jetpack
1495
- msgid "Migrate from Custom Price Labels"
1496
- msgstr "Migrer depuis [Custom Price Labels]"
1497
-
1498
- #: includes/class-wcj-price-labels.php:192
1499
- #@ woocommerce-jetpack
1500
- msgid "No data to migrate found"
1501
- msgstr "Aucune donnée à importer"
1502
-
1503
- #: includes/class-wcj-price-labels.php:196
1504
- #@ woocommerce-jetpack
1505
- msgid "No products found"
1506
- msgstr "Aucun produit trouvé"
1507
-
1508
- #: includes/class-wcj-price-labels.php:314
1509
- #@ woocommerce-jetpack
1510
- msgid "Create any custom price label for any product."
1511
- msgstr "Permet de personnaliser les intitulés de tous les produits."
1512
-
1513
- #: includes/class-wcj-price-labels.php:322
1514
- #@ woocommerce-jetpack
1515
- msgid "This section lets you set price labels for all products globally."
1516
- msgstr "Permet de personnaliser les intitulés pour l'ensemble des produits."
1517
-
1518
- #: includes/class-wcj-price-labels.php:448
1519
- #@ woocommerce-jetpack
1520
- msgid "Add before the price"
1521
- msgstr "Ajouter avant le prix"
1522
-
1523
- #: includes/class-wcj-price-labels.php:449
1524
- #@ woocommerce-jetpack
1525
- msgid "Enter text to add before all products prices. Leave blank to disable."
1526
- msgstr "Entrez le texte à ajouter avant tous les prix. Laisser vide pour ne pas utiliser cette option"
1527
-
1528
- #: includes/class-wcj-price-labels.php:460
1529
- #@ woocommerce-jetpack
1530
- msgid "Add after the price"
1531
- msgstr "Ajouter après le prix"
1532
-
1533
- #: includes/class-wcj-price-labels.php:461
1534
- #@ woocommerce-jetpack
1535
- msgid "Enter text to add after all products prices. Leave blank to disable."
1536
- msgstr "Entrez le texte à ajouter après tous les prix. Laisser vide pour ne pas utiliser cette option"
1537
-
1538
- #: includes/class-wcj-price-labels.php:325
1539
- #@ woocommerce-jetpack
1540
- msgid "Remove from price"
1541
- msgstr "Supprimer du prix"
1542
-
1543
- #: includes/class-wcj-price-labels.php:327
1544
- #@ woocommerce-jetpack
1545
- msgid "Enter text to remove from all products prices. Leave blank to disable."
1546
- msgstr "Entrez un texte pour remplacer les prix sur les produits. Laisser vide pour ne pas utiliser cette option."
1547
-
1548
- #: includes/class-wcj-price-labels.php:485
1549
- #@ woocommerce-jetpack
1550
- msgid "Replace in price"
1551
- msgstr "Remplacer le prix"
1552
-
1553
- #: includes/class-wcj-price-labels.php:486
1554
- #@ woocommerce-jetpack
1555
- msgid "Enter text to replace in all products prices. Leave blank to disable."
1556
- msgstr "Entrez le texte de remplacement pour l'ensemble des produits. Laisser vide pour ne pas utiliser cette option."
1557
-
1558
- #: includes/class-wcj-price-labels.php:498
1559
- #@ woocommerce-jetpack
1560
- msgid "Enter text to replace with. Leave blank to disable."
1561
- msgstr "Entrez le texte de remplacement. Laisser vide pour ne pas utiliser cette option."
1562
-
1563
- #: includes/class-wcj-price-labels.php:510
1564
- #@ woocommerce-jetpack
1565
- msgid "Migrate from Custom Price Labels (Pro) Options"
1566
- msgstr "Options: permet d'importer les paramètres du plugin Custom Price Labels (Pro)"
1567
-
1568
- #: includes/class-wcj-price-labels.php:510
1569
- #@ woocommerce-jetpack
1570
- msgid "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
1571
- msgstr "Permet d'activer l'outils d'importation des paramètres du plugin Custom Price Labels (Pro)."
1572
-
1573
- #: includes/class-wcj-product-info.php:27
1574
- #@ woocommerce-jetpack
1575
- msgid "Before product"
1576
- msgstr "Avant le produit"
1577
-
1578
- #: includes/class-wcj-product-info.php:28
1579
- #@ woocommerce-jetpack
1580
- msgid "Before product title"
1581
- msgstr "Avant l'intitulé du produit"
1582
-
1583
- #: includes/class-wcj-product-info.php:29
1584
- #@ woocommerce-jetpack
1585
- msgid "After product"
1586
- msgstr "A la suite du produit"
1587
-
1588
- #: includes/class-wcj-product-info.php:30
1589
- #@ woocommerce-jetpack
1590
- msgid "After product title"
1591
- msgstr "Après l'intitulé du produit"
1592
-
1593
- #: includes/class-wcj-product-info.php:35
1594
- #@ woocommerce-jetpack
1595
- msgid "Inside single product summary"
1596
- msgstr ""
1597
-
1598
- #: includes/class-wcj-product-info.php:36
1599
- #@ woocommerce-jetpack
1600
- msgid "Before single product summary"
1601
- msgstr "Avant la description du produit"
1602
-
1603
- #: includes/class-wcj-product-info.php:37
1604
- #@ woocommerce-jetpack
1605
- msgid "After single product summary"
1606
- msgstr "Après la description du produit"
1607
-
1608
- #: includes/class-wcj-product-info.php:183
1609
- #@ woocommerce-jetpack
1610
- msgid "More Products Info"
1611
- msgstr "Options: Plus de produits"
1612
-
1613
- #: includes/class-wcj-product-info.php:186
1614
- #@ woocommerce-jetpack
1615
- msgid "Product Info on Archive Pages"
1616
- msgstr "Pages Archivées"
1617
-
1618
- #: includes/class-wcj-product-info.php:204
1619
- #: includes/class-wcj-product-info.php:243
1620
- #@ woocommerce-jetpack
1621
- msgid "Position"
1622
- msgstr "Position"
1623
-
1624
- #: includes/class-wcj-product-info.php:223
1625
- #@ woocommerce-jetpack
1626
- msgid "Product Info on Single Product Pages"
1627
- msgstr "Fiche Produit"
1628
-
1629
- #: includes/class-wcj-product-info.php:286
1630
- #: includes/class-wcj-product-info.php:312
1631
- #: includes/class-wcj-product-info.php:338
1632
- #@ woocommerce-jetpack
1633
- msgid "Leave blank for WooCommerce defaults"
1634
- msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
1635
-
1636
- #: includes/class-wcj-product-info.php:357
1637
- #@ woocommerce-jetpack
1638
- msgid "Related Products Number"
1639
- msgstr "Nombre de produits en relation"
1640
-
1641
- #: includes/class-wcj-product-info.php:364
1642
- #@ woocommerce-jetpack
1643
- msgid "Related Products Columns"
1644
- msgstr "Nombre de colonnes"
1645
-
1646
- #: includes/class-wcj-product-info.php:377
1647
- #@ woocommerce-jetpack
1648
- msgid "Date"
1649
- msgstr "Date"
1650
-
1651
- #: includes/class-wcj-product-info.php:384
1652
- #@ woocommerce-jetpack
1653
- msgid "Ignored if order by \"Random\" is selected above."
1654
- msgstr "Ignoré si le tri est effectué au hasard."
1655
-
1656
- #: includes/class-wcj-product-listings.php:55
1657
- #@ woocommerce-jetpack
1658
- msgid "Product Listings Options"
1659
- msgstr "Options: Liste des produits"
1660
-
1661
- #: includes/class-wcj-product-listings.php:58
1662
- #: includes/class-wcj-product-listings.php:136
1663
- #@ woocommerce-jetpack
1664
- msgid "Product Listings"
1665
- msgstr "Liste des produits"
1666
-
1667
- #: includes/class-wcj-product-listings.php:59
1668
- #@ woocommerce-jetpack
1669
- msgid "Enable the Product Listings feature"
1670
- msgstr "Activer les options pour la liste des produits"
1671
-
1672
- #: includes/class-wcj-product-listings.php:60
1673
- #@ woocommerce-jetpack
1674
- msgid "Change display options for shop and category pages: show/hide categories count, exclude categories, show/hide empty categories."
1675
- msgstr "Permet de modifier l'affichage des catégories et sous-catégories. Permet d'exclure des catégories et sous-catégories. Permet de masquer ou d'afficher des catégories et sous-catégories vides"
1676
-
1677
- #: includes/class-wcj-product-listings.php:68
1678
- #@ woocommerce-jetpack
1679
- msgid "Shop Page Display Options"
1680
- msgstr "Options: Affichage de la page de la boutique"
1681
-
1682
- #: includes/class-wcj-product-listings.php:68
1683
- #@ woocommerce-jetpack
1684
- msgid "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
1685
- msgstr "Fonctionne uniquement si les préférences d'affichage des pages boutiques de Woocommerce correspondent à: [Afficher les sous-catégories] ou [Tout afficher]."
1686
-
1687
- #: includes/class-wcj-product-listings.php:71
1688
- #@ woocommerce-jetpack
1689
- msgid "Categories Count"
1690
- msgstr "Nombre de produits"
1691
-
1692
- #: includes/class-wcj-product-listings.php:72
1693
- #: includes/class-wcj-product-listings.php:155
1694
- #@ woocommerce-jetpack
1695
- msgid "Hide categories count on shop page"
1696
- msgstr "Masquer le nombres de produits d'une catégorie sur les pages boutique"
1697
-
1698
- #: includes/class-wcj-product-listings.php:79
1699
- #@ woocommerce-jetpack
1700
- msgid "Exclude Categories"
1701
- msgstr "Exclure des catégories"
1702
-
1703
- #: includes/class-wcj-product-listings.php:81
1704
- #: includes/class-wcj-product-listings.php:180
1705
- #@ woocommerce-jetpack
1706
- msgid " Excludes one or more categories from the shop page. This parameter takes a comma-separated list of categories by unique ID, in ascending order. Leave blank to disable."
1707
- msgstr "Permet d'exclure une ou plusieurs catégories de la page boutique. Utilisez une virgule pour séparer les identifiants des catégories. Laisser vide pour ne pas utiliser cette fonction."
1708
-
1709
- #: includes/class-wcj-product-listings.php:88
1710
- #: includes/class-wcj-product-listings.php:119
1711
- #@ woocommerce-jetpack
1712
- msgid "Hide Empty"
1713
- msgstr "Masquer si vide"
1714
-
1715
- #: includes/class-wcj-product-listings.php:89
1716
- #: includes/class-wcj-product-listings.php:172
1717
- #@ woocommerce-jetpack
1718
- msgid "Hide empty categories on shop page"
1719
- msgstr "Masquer les catégories vides sur les pages boutiques"
1720
-
1721
- #: includes/class-wcj-product-listings.php:106
1722
- #@ woocommerce-jetpack
1723
- msgid "Category Display Options"
1724
- msgstr "Options: Affichage des catégories"
1725
-
1726
- #: includes/class-wcj-product-listings.php:97
1727
- #@ woocommerce-jetpack
1728
- msgid "This will work only when \"Default Category Display\" in \"WooCommerce > Settings > Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
1729
- msgstr "Fonctionne uniquement si les préférences d'affichage des pages catégories de Woocommerce correspondent à: [Afficher les sous-catégories] ou [Tout afficher]."
1730
-
1731
- #: includes/class-wcj-product-listings.php:100
1732
- #@ woocommerce-jetpack
1733
- msgid "Subcategories Count"
1734
- msgstr "Sous-catégories"
1735
-
1736
- #: includes/class-wcj-product-listings.php:101
1737
- #: includes/class-wcj-product-listings.php:184
1738
- #@ woocommerce-jetpack
1739
- msgid "Hide subcategories count on category pages"
1740
- msgstr "Masquer le nombre de produits dans les sous-catégories dans les pages catégories"
1741
-
1742
- #: includes/class-wcj-product-listings.php:110
1743
- #@ woocommerce-jetpack
1744
- msgid "Exclude Subcategories"
1745
- msgstr "Exclure les sous-catégories"
1746
-
1747
- #: includes/class-wcj-product-listings.php:120
1748
- #: includes/class-wcj-product-listings.php:218
1749
- #@ woocommerce-jetpack
1750
- msgid " Excludes one or more categories from the category (archive) pages. This parameter takes a comma-separated list of categories by unique ID, in ascending order. Leave blank to disable."
1751
- msgstr "Permet d'exclure une ou plusieurs catégories des pages d'archives. Utilisez une virgule pour séparer les identifiants des catégories. Laisser vide pour ne pas utiliser cette fonction."
1752
-
1753
- #: includes/class-wcj-product-listings.php:120
1754
- #: includes/class-wcj-product-listings.php:203
1755
- #@ woocommerce-jetpack
1756
- msgid "Hide empty subcategories on category pages"
1757
- msgstr "Masquer les catégories vides sur les pages catégories"
1758
-
1759
- #: includes/class-wcj-product-listings.php:154
1760
- #@ woocommerce-jetpack
1761
- msgid "WooJetpack: Categories Count"
1762
- msgstr "WooJetpack: Nombre de catégories"
1763
-
1764
- #: includes/class-wcj-product-listings.php:162
1765
- #@ woocommerce-jetpack
1766
- msgid "WooJetpack: Exclude Categories on Shop Page"
1767
- msgstr "WooJetpack: Exclure les catégories sur la page boutique"
1768
-
1769
- #: includes/class-wcj-product-listings.php:171
1770
- #: includes/class-wcj-product-listings.php:202
1771
- #@ woocommerce-jetpack
1772
- msgid "WooJetpack: Hide Empty"
1773
- msgstr "WooJetpack: Masquer si vide"
1774
-
1775
- #: includes/class-wcj-product-listings.php:183
1776
- #@ woocommerce-jetpack
1777
- msgid "WooJetpack: Subcategories Count"
1778
- msgstr "WooJetpack: Nombre de sous-catégories"
1779
-
1780
- #: includes/class-wcj-product-listings.php:193
1781
- #@ woocommerce-jetpack
1782
- msgid "WooJetpack: Exclude Subcategories on Category Pages"
1783
- msgstr "WooJetpack: Exclure les sous-catégories sur les pages catégories."
1784
-
1785
- #: includes/class-wcj-reports.php:44
1786
- #: includes/class-wcj-reports.php:85
1787
- #@ woocommerce-jetpack
1788
- msgid "Smart Reports"
1789
- msgstr "Rapports intelligents"
1790
-
1791
- #: includes/class-wcj-reports.php:65
1792
- #@ woocommerce-jetpack
1793
- msgid "Reports Options"
1794
- msgstr "Options: Rapports"
1795
-
1796
- #: includes/class-wcj-reports.php:68
1797
- #: includes/class-wcj-reports.php:256
1798
- #@ woocommerce-jetpack
1799
- msgid "Reports"
1800
- msgstr "Rapports"
1801
-
1802
- #: includes/class-wcj-reports.php:205
1803
- #@ woocommerce-jetpack
1804
- msgid "Enable the Reports feature"
1805
- msgstr "Activer la fonction de rapports"
1806
-
1807
- #: includes/class-wcj-reports.php:277
1808
- #@ woocommerce-jetpack
1809
- msgid "Product"
1810
- msgstr "Produit"
1811
-
1812
- #: includes/class-wcj-reports.php:278
1813
- #@ woocommerce-jetpack
1814
- msgid "Price"
1815
- msgstr "Prix"
1816
-
1817
- #: includes/class-wcj-reports.php:279
1818
- #@ woocommerce-jetpack
1819
- msgid "Stock"
1820
- msgstr "Stock"
1821
-
1822
- #: includes/class-wcj-reports.php:280
1823
- #@ woocommerce-jetpack
1824
- msgid "Stock price"
1825
- msgstr "Prix (Stock)"
1826
-
1827
- #: includes/class-wcj-reports.php:282
1828
- #@ woocommerce-jetpack
1829
- msgid "Last sale"
1830
- msgstr "Dernière vente"
1831
-
1832
- #: includes/class-wcj-reports.php:447
1833
- #: includes/class-wcj-reports.php:448
1834
- #, php-format
1835
- #@ woocommerce-jetpack
1836
- msgid "Sales in last %s days"
1837
- msgstr "Ventes dans les %s derniers jours"
1838
-
1839
- #: includes/class-wcj-reports.php:450
1840
- #@ woocommerce-jetpack
1841
- msgid "Total sales"
1842
- msgstr "Total des ventes"
1843
-
1844
- #: includes/class-wcj-reports.php:361
1845
- #@ woocommerce-jetpack
1846
- msgid "No sales yet"
1847
- msgstr "Encore aucune ventes"
1848
-
1849
- #: includes/class-wcj-reports.php:542
1850
- #@ woocommerce-jetpack
1851
- msgid "Total current stock value"
1852
- msgstr "Valeur du stock réel"
1853
-
1854
- #: includes/class-wcj-reports.php:543
1855
- #@ woocommerce-jetpack
1856
- msgid "Total stock value"
1857
- msgstr "Valeur du Stock"
1858
-
1859
- #: includes/class-wcj-reports.php:544
1860
- #@ woocommerce-jetpack
1861
- msgid "Product stock value average"
1862
- msgstr "Valeur moyenne des produits"
1863
-
1864
- #: includes/class-wcj-reports.php:545
1865
- #@ woocommerce-jetpack
1866
- msgid "Product stock average"
1867
- msgstr "Valeur des produits"
1868
-
1869
- #: includes/class-wcj-reports.php:439
1870
- #@ woocommerce-jetpack
1871
- msgid "All Products on Stock"
1872
- msgstr "Tous les produits en stock"
1873
-
1874
- #: includes/class-wcj-reports.php:497
1875
- #@ woocommerce-jetpack
1876
- msgid "Here you can generate reports. Some reports are generated using all your orders and products, so if you have a lot of them - it may take a while."
1877
- msgstr ""
1878
-
1879
- #: includes/class-wcj-shipping.php:63
1880
- #@ woocommerce-jetpack
1881
- msgid "WooCommerce Jetpack: Hide shipping"
1882
- msgstr "WooCommerce Jetpack: Masquer la livraison"
1883
-
1884
- #: includes/class-wcj-sorting.php:75
1885
- #@ woocommerce-jetpack
1886
- msgid "WooJetpack: Remove All Sorting"
1887
- msgstr "WooJetpack: Suppression des paramètres de tri"
1888
-
1889
- #: includes/class-wcj-sorting.php:79
1890
- #@ woocommerce-jetpack
1891
- msgid "Completely remove sorting from the shop front end"
1892
- msgstr "Supprimer les options de tri pour les clients"
1893
-
1894
- #: includes/class-wcj-sorting.php:170
1895
- #@ woocommerce-jetpack
1896
- msgid "Add more sorting options or remove all sorting including default."
1897
- msgstr "Permet d'ajouter ou de supprimer des options de tri."
1898
-
1899
- #: includes/class-wcj-sorting.php:182
1900
- #@ woocommerce-jetpack
1901
- msgid "Remove all sorting (including WooCommerce default)"
1902
- msgstr "Supprimer tous les paramètres de tri (cela inclus les paramètres par défaut de Woocommerce)"
1903
-
1904
- #: includes/gateways/class-wc-gateway-wcj-custom.php:89
1905
- #: includes/shipping/class-wc-shipping-wcj-custom.php:56
1906
- #@ woocommerce
1907
- msgid "Enable/Disable"
1908
- msgstr ""
1909
-
1910
- #: includes/gateways/class-wc-gateway-wcj-custom.php:91
1911
- #@ woocommerce
1912
- msgid "Enable Custom Payment"
1913
- msgstr ""
1914
-
1915
- #: includes/gateways/class-wc-gateway-wcj-custom.php:97
1916
- #: includes/shipping/class-wc-shipping-wcj-custom.php:64
1917
- #@ woocommerce
1918
- msgid "This controls the title which the user sees during checkout."
1919
- msgstr ""
1920
-
1921
- #: includes/gateways/class-wc-gateway-wcj-custom.php:98
1922
- #@ woocommerce
1923
- msgid "Custom Payment"
1924
- msgstr ""
1925
-
1926
- #: includes/gateways/class-wc-gateway-wcj-custom.php:102
1927
- #@ woocommerce
1928
- msgid "Description"
1929
- msgstr ""
1930
-
1931
- #: includes/gateways/class-wc-gateway-wcj-custom.php:104
1932
- #@ woocommerce
1933
- msgid "Payment method description that the customer will see on your checkout."
1934
- msgstr ""
1935
-
1936
- #: includes/gateways/class-wc-gateway-wcj-custom.php:105
1937
- #@ woocommerce
1938
- msgid "Custom Payment Description."
1939
- msgstr ""
1940
-
1941
- #: includes/gateways/class-wc-gateway-wcj-custom.php:109
1942
- #@ woocommerce
1943
- msgid "Instructions"
1944
- msgstr ""
1945
-
1946
- #: includes/gateways/class-wc-gateway-wcj-custom.php:111
1947
- #@ woocommerce-jetpack
1948
- msgid "Instructions that will be added to the thank you page."
1949
- msgstr ""
1950
-
1951
- #: includes/gateways/class-wc-gateway-wcj-custom.php:116
1952
- #@ woocommerce
1953
- msgid "Email Instructions"
1954
- msgstr ""
1955
-
1956
- #: includes/gateways/class-wc-gateway-wcj-custom.php:118
1957
- #@ woocommerce-jetpack
1958
- msgid "Instructions that will be added to the emails."
1959
- msgstr ""
1960
-
1961
- #: includes/gateways/class-wc-gateway-wcj-custom.php:84
1962
- #@ woocommerce-jetpack
1963
- msgid "Icon"
1964
- msgstr "icône"
1965
-
1966
- #: includes/gateways/class-wc-gateway-wcj-custom.php:92
1967
- #@ woocommerce-jetpack
1968
- msgid "Minimum order amount"
1969
- msgstr "Minimum de commande"
1970
-
1971
- #: includes/gateways/class-wc-gateway-wcj-custom.php:133
1972
- #@ woocommerce-jetpack
1973
- msgid "If you want to set minimum order amount to show this gateway on frontend, enter a number here. Set to 0 to disable."
1974
- msgstr ""
1975
-
1976
- #: includes/gateways/class-wc-gateway-wcj-custom.php:140
1977
- #@ woocommerce
1978
- msgid "Enable for shipping methods"
1979
- msgstr ""
1980
-
1981
- #: includes/gateways/class-wc-gateway-wcj-custom.php:145
1982
- #@ woocommerce-jetpack
1983
- msgid "If gateway is only available for certain shipping methods, set it up here. Leave blank to enable for all methods."
1984
- msgstr ""
1985
-
1986
- #: includes/gateways/class-wc-gateway-wcj-custom.php:149
1987
- #@ woocommerce
1988
- msgid "Select shipping methods"
1989
- msgstr ""
1990
-
1991
- #: includes/gateways/class-wc-gateway-wcj-custom.php:153
1992
- #@ woocommerce
1993
- msgid "Enable for virtual orders"
1994
- msgstr ""
1995
-
1996
- #: includes/gateways/class-wc-gateway-wcj-custom.php:154
1997
- #@ woocommerce-jetpack
1998
- msgid "Enable gateway if the order is virtual"
1999
- msgstr ""
2000
-
2001
- #: includes/gateways/class-wc-gateway-wcj-custom.php:288
2002
- #@ woocommerce
2003
- msgid "Awaiting payment"
2004
- msgstr ""
2005
-
2006
- #: includes/gateways/class-wc-gateway-wcj-custom.php:275
2007
- #@ woocommerce-jetpack
2008
- msgid "Custom Gateway"
2009
- msgstr "Passerelle personnalisée"
2010
-
2011
- #: includes/gateways/class-wc-gateway-wcj-custom.php:28
2012
- #@ woocommerce-jetpack
2013
- msgid "WooCommerce Jetpack: Custom Payment Gateway"
2014
- msgstr "WooCommerce Jetpack: Passerelles de paiement personnalisées"
2015
-
2016
- #: includes/shipping/class-wc-shipping-wcj-custom.php:19
2017
- #: includes/shipping/class-wc-shipping-wcj-custom.php:65
2018
- #@ woocommerce-jetpack
2019
- msgid "Custom Shipping"
2020
- msgstr "Livraison personnalisée"
2021
-
2022
- #: includes/shipping/class-wc-shipping-wcj-custom.php:20
2023
- #@ woocommerce-jetpack
2024
- msgid "WooCommerce Jetpack: Custom Shipping Method"
2025
- msgstr "WooCommerce Jetpack: CustMéthode de livraison personnalisées"
2026
-
2027
- #: includes/tcpdf_min/tcpdf.php:7147
2028
- #: includes/tcpdf_min/tcpdf.php:14953
2029
- #: includes/tcpdf_min/tcpdf.php:22891
2030
- #@ woocommerce-jetpack
2031
- msgctxt ""
2032
- msgid "L"
2033
- msgstr ""
2034
-
2035
- #: includes/tcpdf_min/tcpdf.php:15408
2036
- #: includes/tcpdf_min/tcpdf.php:15677
2037
- #@ woocommerce-jetpack
2038
- msgctxt ""
2039
- msgid "positionL"
2040
- msgstr ""
2041
-
2042
- #: includes/tcpdf_min/tcpdf.php:15420
2043
- #@ woocommerce-jetpack
2044
- msgctxt ""
2045
- msgid "align"
2046
- msgstr ""
2047
-
2048
- #: includes/tcpdf_min/tcpdf.php:15688
2049
- #@ woocommerce-jetpack
2050
- msgctxt ""
2051
- msgid "hpadding"
2052
- msgstr ""
2053
-
2054
- #: woocommerce-jetpack.php:94
2055
- #@ woocommerce
2056
- msgid "WooCommerce Jetpack"
2057
- msgstr ""
2058
-
2059
- #: woocommerce-jetpack.php:94
2060
- #@ woocommerce
2061
- msgid "Jetpack Settings"
2062
- msgstr ""
2063
-
2064
- #: woocommerce-jetpack.php:105
2065
- #@ woocommerce
2066
- msgid "Settings"
2067
- msgstr ""
2068
-
2069
- #: woocommerce-jetpack.php:106
2070
- #@ woocommerce
2071
- msgid "Docs"
2072
- msgstr ""
2073
-
2074
- #: woocommerce-jetpack.php:107
2075
- #@ woocommerce
2076
- msgid "Unlock all"
2077
- msgstr ""
2078
-
2079
- #: woocommerce-jetpack.php:120
2080
- #@ woocommerce-jetpack
2081
- msgid "Install WooCommerce Jetpack Plus to unlock all features"
2082
- msgstr "Installez WooCommerce Jetpack Plus pour activer l'ensemble des options."
2083
-
2084
- #: woocommerce-jetpack.php:121
2085
- #, php-format
2086
- #@ woocommerce-jetpack
2087
- msgid "Some settings fields are locked and you will need %s to modify all locked fields."
2088
- msgstr ""
2089
-
2090
- #: woocommerce-jetpack.php:122
2091
- #@ woocommerce-jetpack
2092
- msgid "Buy now"
2093
- msgstr "Acheter maintenant"
2094
-
2095
- #: woocommerce-jetpack.php:122
2096
- #, php-format
2097
- #@ woocommerce-jetpack
2098
- msgid "Visit %s"
2099
- msgstr "Visite %s"
2100
-
2101
- #: woocommerce-jetpack.php:126
2102
- #@ woocommerce-jetpack
2103
- msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change value."
2104
- msgstr "Achetez <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
2105
-
2106
- #: woocommerce-jetpack.php:129
2107
- #@ woocommerce-jetpack
2108
- msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change values below."
2109
- msgstr "Achetez <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
2110
-
2111
- #: woocommerce-jetpack.php:132
2112
- #@ woocommerce-jetpack
2113
- msgid "Get WooCommerce Jetpack Plus to change value."
2114
- msgstr "Achetez WooCommerce Jetpack Plus pour modifier cette valeur."
2115
-
2116
- #: includes/admin/settings/class-wc-settings-jetpack.php:196
2117
- #: includes/admin/settings/class-wc-settings-jetpack.php:203
2118
- #@ woocommerce-jetpack
2119
- msgid "Select All"
2120
- msgstr ""
2121
-
2122
- #: includes/admin/settings/class-wc-settings-jetpack.php:197
2123
- #: includes/admin/settings/class-wc-settings-jetpack.php:204
2124
- #@ woocommerce-jetpack
2125
- msgid "Feature"
2126
- msgstr ""
2127
-
2128
- #: includes/admin/tools/class-wcj-tools.php:63
2129
- #@ woocommerce-jetpack
2130
- msgid "WooCommerce Jetpack Tools Dashboard"
2131
- msgstr "Tableau de bord de WooCommerce Jetpack"
2132
-
2133
- #: includes/admin/tools/class-wcj-tools.php:64
2134
- #@ woocommerce-jetpack
2135
- msgid "This dashboard lets you check statuses and short descriptions of all available WooCommerce Jetpack tools. Tools can be enabled through WooCommerce > Settings > Jetpack. Enabled tools will appear in the tabs menu above."
2136
- msgstr "Permet de visualiser l'état ainsi que les descriptions de l'ensemble des options de WooCommerce Jetpack tools. Ces outils peuvent être activés depuis l'onglet WooCommerce > Paramètres > Jetpack. Les outils actifs apparaîtront dans les onglets ci dessus."
2137
-
2138
- #: includes/admin/tools/class-wcj-tools.php:67
2139
- #@ woocommerce-jetpack
2140
- msgid "Tool"
2141
- msgstr "Outil"
2142
-
2143
- #: includes/admin/tools/class-wcj-tools.php:68
2144
- #@ woocommerce-jetpack
2145
- msgid "Status"
2146
- msgstr "Statut"
2147
-
2148
- #: includes/class-wcj-add-to-cart.php:237
2149
- #@ woocommerce-jetpack
2150
- msgid "Single product view."
2151
- msgstr "Sur la Fiche produit."
2152
-
2153
- #: includes/class-wcj-add-to-cart.php:238
2154
- #: includes/class-wcj-add-to-cart.php:258
2155
- #: includes/class-wcj-add-to-cart.php:316
2156
- #: includes/class-wcj-add-to-cart.php:342
2157
- #: includes/class-wcj-payment-gateways.php:172
2158
- #@ woocommerce-jetpack
2159
- msgid "Leave blank to disable."
2160
- msgstr "Laisser vide pour ne pas utiliser cette option."
2161
-
2162
- #: includes/class-wcj-add-to-cart.php:238
2163
- #: includes/class-wcj-add-to-cart.php:258
2164
- #: includes/class-wcj-add-to-cart.php:318
2165
- #: includes/class-wcj-add-to-cart.php:344
2166
- #: includes/class-wcj-sorting.php:228
2167
- #: includes/class-wcj-sorting.php:238
2168
- #: includes/class-wcj-sorting.php:248
2169
- #: includes/class-wcj-sorting.php:258
2170
- #: includes/class-wcj-sorting.php:268
2171
- #: includes/class-wcj-sorting.php:278
2172
- #@ woocommerce-jetpack
2173
- msgid "Default: "
2174
- msgstr "Défaut: "
2175
-
2176
- #: includes/class-wcj-add-to-cart.php:257
2177
- #@ woocommerce-jetpack
2178
- msgid "Product category (archive) view."
2179
- msgstr "Dans les catégories (archive)."
2180
-
2181
- #: includes/class-wcj-add-to-cart.php:281
2182
- #@ woocommerce-jetpack
2183
- msgid "Products with price set to 0 (i.e. free). Single product view."
2184
- msgstr "Dans les produits avec un prix égal à 0, sur la fiche produit."
2185
-
2186
- #: includes/class-wcj-add-to-cart.php:282
2187
- #: includes/class-wcj-add-to-cart.php:291
2188
- #@ woocommerce-jetpack
2189
- msgid "Leave blank to disable. Default: Add to cart"
2190
- msgstr "Laisser vide pour ne pas utiliser cette option. Par défaut: Ajouter au panier"
2191
-
2192
- #: includes/class-wcj-add-to-cart.php:284
2193
- #: includes/class-wcj-add-to-cart.php:293
2194
- #: includes/class-wcj-add-to-cart.php:318
2195
- #: includes/class-wcj-add-to-cart.php:320
2196
- #: includes/class-wcj-add-to-cart.php:344
2197
- #: includes/class-wcj-add-to-cart.php:346
2198
- #@ woocommerce-jetpack
2199
- msgid "Add to cart"
2200
- msgstr "Ajouter au panier"
2201
-
2202
- #: includes/class-wcj-add-to-cart.php:290
2203
- #@ woocommerce-jetpack
2204
- msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
2205
- msgstr "Dans les produits avec un prix égal à 0, dans l'affichage des catégories (archives)."
2206
-
2207
- #: includes/class-wcj-add-to-cart.php:300
2208
- #@ woocommerce-jetpack
2209
- msgid "Products with empty price. Product category (archive) view."
2210
- msgstr "Dans les produits sans aucun prix, dans l'affichage des catégories (archives)."
2211
-
2212
- #: includes/class-wcj-add-to-cart.php:301
2213
- #@ woocommerce-jetpack
2214
- msgid "Leave blank to disable. Default: Read More"
2215
- msgstr "Laisser vide pour ne pas utiliser cette option. Par défaut: Afficher la suite"
2216
-
2217
- #: includes/class-wcj-add-to-cart.php:303
2218
- #@ woocommerce-jetpack
2219
- msgid "Read More"
2220
- msgstr "Lire la suite"
2221
-
2222
- #: includes/class-wcj-add-to-cart.php:315
2223
- #@ woocommerce-jetpack
2224
- msgid "Already in cart. Single product view."
2225
- msgstr "Déjà dans le panier, sur la fiche produit."
2226
-
2227
- #: includes/class-wcj-add-to-cart.php:317
2228
- #: includes/class-wcj-add-to-cart.php:343
2229
- #@ woocommerce-jetpack
2230
- msgid "Try: "
2231
- msgstr "Essais: "
2232
-
2233
- #: includes/class-wcj-add-to-cart.php:317
2234
- #: includes/class-wcj-add-to-cart.php:343
2235
- #@ woocommerce-jetpack
2236
- msgid "Already in cart - Add Again?"
2237
- msgstr ""
2238
-
2239
- #: includes/class-wcj-add-to-cart.php:341
2240
- #@ woocommerce-jetpack
2241
- msgid "Already in cart. Product category (archive) view."
2242
- msgstr "Déjà dans le panier, dans l'affichage des catégories (archives)."
2243
-
2244
- #: includes/class-wcj-old-slugs.php:49
2245
- #: includes/class-wcj-orders.php:110
2246
- #: includes/class-wcj-orders.php:259
2247
- #: includes/class-wcj-price-labels.php:116
2248
- #@ woocommerce-jetpack
2249
- msgid "enabled"
2250
- msgstr "Activé"
2251
-
2252
- #: includes/class-wcj-old-slugs.php:51
2253
- #: includes/class-wcj-orders.php:112
2254
- #: includes/class-wcj-orders.php:264
2255
- #: includes/class-wcj-price-labels.php:118
2256
- #@ woocommerce-jetpack
2257
- msgid "disabled"
2258
- msgstr "désactivé"
2259
-
2260
- #: includes/class-wcj-old-slugs.php:91
2261
- #, php-format
2262
- #@ woocommerce-jetpack
2263
- msgid "Remove old product slugs. When enabled, the tool is accessible through <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove Old Slugs</a>."
2264
- msgstr "Permet de supprimer les permaliens des produits obsolètes. Lorsqu'elle est activée, cette fonction est accessible via <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Gestion des permaliens</a>."
2265
-
2266
- #: includes/class-wcj-orders.php:115
2267
- #@ woocommerce-jetpack
2268
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
2269
- msgstr "Permet de rajouter ou supprimer des statuts personnalisés dans les commandes WooCommerce"
2270
-
2271
- #: includes/class-wcj-orders.php:157
2272
- #@ woocommerce-jetpack
2273
- msgid "The length of status slug must be 17 or less characters."
2274
- msgstr ""
2275
-
2276
- #: includes/class-wcj-orders.php:265
2277
- #@ woocommerce-jetpack
2278
- msgid "Orders Renumerate"
2279
- msgstr "Numérotation des commandes"
2280
-
2281
- #: includes/class-wcj-orders.php:267
2282
- #@ woocommerce-jetpack
2283
- msgid "Tool renumerates all orders."
2284
- msgstr "Outils pour re-numéroter toutes les commandes."
2285
-
2286
- #: includes/class-wcj-orders.php:478
2287
- #@ woocommerce-jetpack
2288
- msgid "Order Number Custom Suffix"
2289
- msgstr ""
2290
-
2291
- #: includes/class-wcj-orders.php:480
2292
- #@ woocommerce-jetpack
2293
- msgid "Suffix before order number (optional). This will change the suffixes for all existing orders."
2294
- msgstr ""
2295
-
2296
- #: includes/class-wcj-orders.php:560
2297
- #, php-format
2298
- #@ woocommerce-jetpack
2299
- msgid "When enabled, the Custom Statuses tool is accessible through <a href=\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools > Custom Statuses</a>."
2300
- msgstr ""
2301
-
2302
- #: includes/class-wcj-payment-gateways.php:151
2303
- #: includes/class-wcj-payment-gateways.php:342
2304
- #@ woocommerce-jetpack
2305
- msgid "Payment Gateways Fees Options"
2306
- msgstr "Options: Frais concernant les Passerelles de paiement"
2307
-
2308
- #: includes/class-wcj-payment-gateways.php:153
2309
- #@ woocommerce-jetpack
2310
- msgid "This section lets you set extra fees for payment gateways."
2311
- msgstr "Permet d'ajouter des frais pour l'utilisation des modes de paiement."
2312
-
2313
- #: includes/class-wcj-payment-gateways.php:154
2314
- #@ woocommerce-jetpack
2315
- msgid "Fees are applied BEFORE taxes."
2316
- msgstr ""
2317
-
2318
- #: includes/class-wcj-payment-gateways.php:171
2319
- #@ woocommerce-jetpack
2320
- msgid "Fee title to show to customer."
2321
- msgstr "Frais à afficher pour le client."
2322
-
2323
- #: includes/class-wcj-payment-gateways.php:180
2324
- #@ woocommerce-jetpack
2325
- msgid "Fee type."
2326
- msgstr "Type de frais."
2327
-
2328
- #: includes/class-wcj-payment-gateways.php:181
2329
- #@ woocommerce-jetpack
2330
- msgid "Percent or fixed value."
2331
- msgstr "Pourcentage ou valeur fixe."
2332
-
2333
- #: includes/class-wcj-payment-gateways.php:189
2334
- #@ woocommerce-jetpack
2335
- msgid "Percent"
2336
- msgstr "pourcent"
2337
-
2338
- #: includes/class-wcj-payment-gateways.php:188
2339
- #@ woocommerce-jetpack
2340
- msgid "Fixed"
2341
- msgstr ""
2342
-
2343
- #: includes/class-wcj-payment-gateways.php:195
2344
- #@ woocommerce-jetpack
2345
- msgid "Fee value."
2346
- msgstr "Montant des frais."
2347
-
2348
- #: includes/class-wcj-payment-gateways.php:196
2349
- #@ woocommerce-jetpack
2350
- msgid "The value."
2351
- msgstr ""
2352
-
2353
- #: includes/class-wcj-payment-gateways.php:230
2354
- #@ woocommerce-jetpack
2355
- msgid "Payment Gateways Attach PDF Invoice Options"
2356
- msgstr ""
2357
-
2358
- #: includes/class-wcj-payment-gateways.php:230
2359
- #@ woocommerce-jetpack
2360
- msgid "This section lets you choose when to attach PDF invoice to customers emails."
2361
- msgstr ""
2362
-
2363
- #: includes/class-wcj-payment-gateways.php:240
2364
- #@ woocommerce-jetpack
2365
- msgid "Attach PDF invoice."
2366
- msgstr ""
2367
-
2368
- #: includes/class-wcj-payment-gateways.php:342
2369
- #@ woocommerce-jetpack
2370
- msgid "This section lets you enable extra fees for payment gateways. When enabled all options are added to WooCommerce > Settings > Checkout"
2371
- msgstr ""
2372
-
2373
- #: includes/class-wcj-payment-gateways.php:345
2374
- #@ woocommerce-jetpack
2375
- msgid "Payment Gateways Fees"
2376
- msgstr "Frais pour les passerelles de paiement"
2377
-
2378
- #: includes/class-wcj-payment-gateways.php:346
2379
- #@ woocommerce-jetpack
2380
- msgid "Enable the Payment Gateways Fees"
2381
- msgstr "Activer la gestion des frais"
2382
-
2383
- #: includes/class-wcj-pdf-invoices.php:712
2384
- #@ woocommerce-jetpack
2385
- msgid "Order Date"
2386
- msgstr ""
2387
-
2388
- #: includes/class-wcj-pdf-invoices.php:713
2389
- #@ woocommerce-jetpack
2390
- msgid "Default: Order date"
2391
- msgstr "Par défaut: Date de la commande"
2392
-
2393
- #: includes/class-wcj-pdf-invoices.php:716
2394
- #@ woocommerce-jetpack
2395
- msgid "Order date"
2396
- msgstr ""
2397
-
2398
- #: includes/class-wcj-pdf-invoices.php:722
2399
- #@ woocommerce-jetpack
2400
- msgid "Order Time"
2401
- msgstr ""
2402
-
2403
- #: includes/class-wcj-pdf-invoices.php:723
2404
- #@ woocommerce-jetpack
2405
- msgid "Default: Order time"
2406
- msgstr "Par défaut: Heure de la commande"
2407
-
2408
- #: includes/class-wcj-pdf-invoices.php:726
2409
- #@ woocommerce-jetpack
2410
- msgid "Order time"
2411
- msgstr ""
2412
-
2413
- #: includes/class-wcj-pdf-invoices.php:760
2414
- #@ woocommerce-jetpack
2415
- msgid "Additional Header"
2416
- msgstr "En-tête supplémentaire"
2417
-
2418
- #: includes/class-wcj-pdf-invoices.php:761
2419
- #@ woocommerce-jetpack
2420
- msgid "Additional header - will be displayed above all data on invoice. You can use html and/or shortcodes here."
2421
- msgstr "En-tête supplémentaire: Affiche des informations complémentaires. Il est possible d'utiliser du code HTML et des Shorcodes."
2422
-
2423
- #: includes/class-wcj-pdf-invoices.php:882
2424
- #@ woocommerce-jetpack
2425
- msgid "Item Name Additional Info"
2426
- msgstr "Information complémentaire sur le produit"
2427
-
2428
- #: includes/class-wcj-pdf-invoices.php:904
2429
- #, php-format
2430
- #@ woocommerce-jetpack
2431
- msgid "Here you can add more info to item's name column (e.g. sku). Default is (SKU: %sku%)"
2432
- msgstr "Permet de rajouter des infos dans la colonne [nom] du produit. Par défaut (SKU: %sku%)"
2433
-
2434
- #: includes/class-wcj-pdf-invoices.php:906
2435
- #, php-format
2436
- #@ woocommerce-jetpack
2437
- msgid "(SKU: %sku%)"
2438
- msgstr "(GCU: %sku%)"
2439
-
2440
- #: includes/class-wcj-pdf-invoices.php:1064
2441
- #: includes/class-wcj-pdf-invoices.php:1067
2442
- #@ woocommerce-jetpack
2443
- msgid "Shipping Address"
2444
- msgstr "Adresse de livraison"
2445
-
2446
- #: includes/class-wcj-pdf-invoices.php:1065
2447
- #@ woocommerce-jetpack
2448
- msgid "Will be displayed only if customer's shipping address differs from billing address. Leave blank to disable"
2449
- msgstr ""
2450
-
2451
- #: includes/class-wcj-pdf-invoices.php:1044
2452
- #@ woocommerce-jetpack
2453
- msgid "Additional footer - will be displayed below all other data on invoice. You can use html and/or shortcodes here."
2454
- msgstr ""
2455
-
2456
- #: includes/class-wcj-price-labels.php:119
2457
- #@ woocommerce-jetpack
2458
- msgid "Migrate from Custom Price Labels (Pro)"
2459
- msgstr "Migrer depuis Custom Price Labels (Pro)"
2460
-
2461
- #: includes/class-wcj-price-labels.php:121
2462
- #@ woocommerce-jetpack
2463
- msgid "Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) plugin to WooCommerce Jetpack."
2464
- msgstr "Permet de récupérer l'ensemble des données utilisées par l'extension Custom Price labels (Pro) dans WooCommerce Jetpack."
2465
-
2466
- #: includes/class-wcj-price-labels.php:143
2467
- #@ woocommerce-jetpack
2468
- msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
2469
- msgstr "WooCommerce Jetpack: Migrer depuis Custom Price Labels (Pro)"
2470
-
2471
- #: includes/class-wcj-price-labels.php:191
2472
- #@ woocommerce-jetpack
2473
- msgid "Migrating (product ID "
2474
- msgstr "Récupération (product ID "
2475
-
2476
- #: includes/class-wcj-price-labels.php:192
2477
- #@ woocommerce-jetpack
2478
- msgid "Result: "
2479
- msgstr " Résultat: "
2480
-
2481
- #: includes/class-wcj-price-labels.php:214
2482
- #@ woocommerce-jetpack
2483
- msgid "Found data to migrate (product ID "
2484
- msgstr "Données trouvées (product ID "
2485
-
2486
- #: includes/class-wcj-price-labels.php:237
2487
- #@ woocommerce-jetpack
2488
- msgid "Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old labels will NOT be deleted. New labels will be overwritten."
2489
- msgstr "Cliquez sur le bouton ci dessous pour récupérer les données du plugin Custom Price Labels (Pro). Les Labels déjà utilisés ne seront pas supprimer. Les nouveaux Labels seront rajoutés."
2490
-
2491
- #: includes/class-wcj-price-labels.php:238
2492
- #@ woocommerce-jetpack
2493
- msgid "Migrate data"
2494
- msgstr "Récupérer les données"
2495
-
2496
- #: includes/class-wcj-product-info.php:118
2497
- #@ woocommerce-jetpack
2498
- msgid "Available shortcodes are:"
2499
- msgstr ""
2500
-
2501
- #: includes/class-wcj-product-info.php:385
2502
- #, php-format
2503
- #@ woocommerce-jetpack
2504
- msgid "%s ago"
2505
- msgstr ""
2506
-
2507
- #: includes/class-wcj-product-info.php:455
2508
- #@ woocommerce-jetpack
2509
- msgid "Number of product info fields. Click \"Save changes\" after you change this number."
2510
- msgstr ""
2511
-
2512
- #: includes/class-wcj-product-info.php:478
2513
- #, php-format
2514
- #@ woocommerce-jetpack
2515
- msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2516
- msgstr "Vous économisez: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2517
-
2518
- #: includes/class-wcj-product-info.php:479
2519
- #: includes/class-wcj-product-info.php:593
2520
- #, php-format
2521
- #@ woocommerce-jetpack
2522
- msgid "Total sales: %total_sales%"
2523
- msgstr "Remises: %total_sales%"
2524
-
2525
- #: includes/class-wcj-product-info.php:482
2526
- #@ woocommerce-jetpack
2527
- msgid "Default"
2528
- msgstr "Défaut"
2529
-
2530
- #: includes/class-wcj-product-info.php:484
2531
- #@ woocommerce-jetpack
2532
- msgid "Field Nr. "
2533
- msgstr ""
2534
-
2535
- #: includes/class-wcj-product-info.php:484
2536
- #@ woocommerce-jetpack
2537
- msgid "Available short codes: "
2538
- msgstr ""
2539
-
2540
- #: includes/class-wcj-product-info.php:519
2541
- #@ woocommerce-jetpack
2542
- msgid "Add additional info to product, change related products number."
2543
- msgstr "Permet d'ajouter des informations au produit. Permet de changer les produits en relation."
2544
-
2545
- #: includes/class-wcj-product-info.php:529
2546
- #@ woocommerce-jetpack
2547
- msgid "For full list of short codes, please visit <a target=\"_blank\" href=\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-info/</a>"
2548
- msgstr "Une liste complète des short codes est disponible sur <a target=\"_blank\" href=\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-info/</a>"
2549
-
2550
- #: includes/class-wcj-product-info.php:535
2551
- #@ woocommerce-jetpack
2552
- msgid "Product Info on Single Pages"
2553
- msgstr "Information produit sur les pages seules"
2554
-
2555
- #: includes/class-wcj-product-info.php:542
2556
- #@ woocommerce-jetpack
2557
- msgid "Even More Products Info"
2558
- msgstr "Options: Plus d'informations sur le produit."
2559
-
2560
- #: includes/class-wcj-product-info.php:554
2561
- #: includes/class-wcj-product-info.php:591
2562
- #@ woocommerce-jetpack
2563
- msgid "HTML info."
2564
- msgstr ""
2565
-
2566
- #: includes/class-wcj-product-info.php:556
2567
- #, php-format
2568
- #@ woocommerce-jetpack
2569
- msgid "SKU: %sku%"
2570
- msgstr "GCU: %sku%"
2571
-
2572
- #: includes/class-wcj-product-input-fields.php:73
2573
- #@ woocommerce-jetpack
2574
- msgid "Text Fields"
2575
- msgstr ""
2576
-
2577
- #: includes/class-wcj-product-input-fields.php:94
2578
- #@ woocommerce-jetpack
2579
- msgid "Required"
2580
- msgstr ""
2581
-
2582
- #: includes/class-wcj-product-input-fields.php:123
2583
- #@ woocommerce-jetpack
2584
- msgid "Fill text box before adding to cart."
2585
- msgstr ""
2586
-
2587
- #: includes/class-wcj-product-input-fields.php:186
2588
- #@ woocommerce-jetpack
2589
- msgid "Product Custom Input Options"
2590
- msgstr ""
2591
-
2592
- #: includes/class-wcj-product-input-fields.php:186
2593
- #: includes/class-wcj-product-input-fields.php:191
2594
- #@ woocommerce-jetpack
2595
- msgid "Product Custom Input."
2596
- msgstr ""
2597
-
2598
- #: includes/class-wcj-product-input-fields.php:189
2599
- #: includes/class-wcj-product-input-fields.php:207
2600
- #@ woocommerce-jetpack
2601
- msgid "Product Custom Input"
2602
- msgstr ""
2603
-
2604
- #: includes/class-wcj-product-input-fields.php:190
2605
- #@ woocommerce-jetpack
2606
- msgid "Enable the Product Custom Input feature"
2607
- msgstr ""
2608
-
2609
- #: includes/class-wcj-product-listings.php:97
2610
- #: includes/class-wcj-product-listings.php:136
2611
- #@ woocommerce-jetpack
2612
- msgid "Show Products"
2613
- msgstr "Afficher les produits"
2614
-
2615
- #: includes/class-wcj-product-listings.php:98
2616
- #: includes/class-wcj-product-listings.php:197
2617
- #@ woocommerce-jetpack
2618
- msgid "Show products if no categories are displayed on shop page"
2619
- msgstr "Afficher les produits si aucune catégorie ne s'affiche sur la page boutique"
2620
-
2621
- #: includes/class-wcj-product-listings.php:137
2622
- #: includes/class-wcj-product-listings.php:235
2623
- #@ woocommerce-jetpack
2624
- msgid "Show products if no categories are displayed on category page"
2625
- msgstr "Afficher les produits si aucune catégorie ne s'affiche sur la page des catégories"
2626
-
2627
- #: includes/class-wcj-product-listings.php:196
2628
- #: includes/class-wcj-product-listings.php:234
2629
- #@ woocommerce-jetpack
2630
- msgid "WooJetpack: Show Products"
2631
- msgstr "WooJetpack: Afficher les produits"
2632
-
2633
- #: includes/class-wcj-product-tabs.php:164
2634
- #@ woocommerce-jetpack
2635
- msgid "Total number of custom tabs"
2636
- msgstr "Nombre d'onglets personnalisés"
2637
-
2638
- #: includes/class-wcj-product-tabs.php:229
2639
- #@ woocommerce-jetpack
2640
- msgid "Click \"Update\" product after you change this number."
2641
- msgstr ""
2642
-
2643
- #: includes/class-wcj-product-tabs.php:180
2644
- #@ woocommerce-jetpack
2645
- msgid "Priority"
2646
- msgstr ""
2647
-
2648
- #: includes/class-wcj-product-tabs.php:248
2649
- #: includes/class-wcj-product-tabs.php:357
2650
- #@ woocommerce-jetpack
2651
- msgid "Content"
2652
- msgstr "Contenu"
2653
-
2654
- #: includes/class-wcj-product-tabs.php:189
2655
- #@ woocommerce-jetpack
2656
- msgid "Customize the tab(s)"
2657
- msgstr ""
2658
-
2659
- #: includes/class-wcj-product-tabs.php:193
2660
- #: includes/class-wcj-product-tabs.php:277
2661
- #@ woocommerce-jetpack
2662
- msgid "Custom Product Tab"
2663
- msgstr "Onglet produit personnalisé"
2664
-
2665
- #: includes/class-wcj-product-tabs.php:236
2666
- #: includes/class-wcj-product-tabs.php:250
2667
- #@ woocommerce-jetpack
2668
- msgid "Product Tabs"
2669
- msgstr "Onglets de produit"
2670
-
2671
- #: includes/class-wcj-product-tabs.php:251
2672
- #@ woocommerce-jetpack
2673
- msgid "Enable the Product Tabs feature"
2674
- msgstr "Activer les options pour les onglets de produit"
2675
-
2676
- #: includes/class-wcj-product-tabs.php:252
2677
- #@ woocommerce-jetpack
2678
- msgid "Add custom product tabs - globally or per product. Customize or completely remove WooCommerce default product tabs."
2679
- msgstr "Permet d'ajouter des onglets de produit (globalement ou par produit). Permet de personnaliser ou de supprimer les onglets de produit par défaut de WooCommerce."
2680
-
2681
- #: includes/class-wcj-product-tabs.php:260
2682
- #@ woocommerce-jetpack
2683
- msgid "Custom Product Tabs Options"
2684
- msgstr "Options: Onglets produit personnalisés"
2685
-
2686
- #: includes/class-wcj-product-tabs.php:263
2687
- #@ woocommerce-jetpack
2688
- msgid "Custom Product Tabs Number"
2689
- msgstr "Nombre d'onglets de produit personnalisés"
2690
-
2691
- #: includes/class-wcj-product-tabs.php:327
2692
- #@ woocommerce-jetpack
2693
- msgid "Click \"Save changes\" after you change this number."
2694
- msgstr ""
2695
-
2696
- #: includes/class-wcj-product-tabs.php:294
2697
- #@ woocommerce-jetpack
2698
- msgid "You can use shortcodes here..."
2699
- msgstr ""
2700
-
2701
- #: includes/class-wcj-product-tabs.php:366
2702
- #@ woocommerce-jetpack
2703
- msgid "Comma separated PRODUCT IDs to HIDE this tab"
2704
- msgstr "ID des PRODUITS sur lesquels cet onglet NE DOIT PAS s'afficher (séparer par des virgules)."
2705
-
2706
- #: includes/class-wcj-product-tabs.php:367
2707
- #@ woocommerce-jetpack
2708
- msgid "To hide this tab from some products, enter product IDs here."
2709
- msgstr "Pour masquer cet onglet dans certains produits, entrez son ID ici."
2710
-
2711
- #: includes/class-wcj-product-tabs.php:375
2712
- #@ woocommerce-jetpack
2713
- msgid "Comma separated CATEGORY IDs to HIDE this tab"
2714
- msgstr "ID des CATEGORIES sur lesquels cet onglet NE DOIT PAS s'afficher (séparer par des virgules)."
2715
-
2716
- #: includes/class-wcj-product-tabs.php:376
2717
- #@ woocommerce-jetpack
2718
- msgid "To hide this tab from some categories, enter category IDs here."
2719
- msgstr "Pour masquer cet onglet dans certaines catégories, entrez son ID ici."
2720
-
2721
- #: includes/class-wcj-product-tabs.php:384
2722
- #@ woocommerce-jetpack
2723
- msgid "Comma separated PRODUCT IDs to SHOW this tab"
2724
- msgstr "ID des PRODUITS sur lesquels cet onglet DOIT s'afficher (séparer par des virgules)."
2725
-
2726
- #: includes/class-wcj-product-tabs.php:385
2727
- #@ woocommerce-jetpack
2728
- msgid "To show this tab only for some products, enter product IDs here."
2729
- msgstr "Pour afficher cet onglet dans certains produits, entrez son ID ici."
2730
-
2731
- #: includes/class-wcj-product-tabs.php:393
2732
- #@ woocommerce-jetpack
2733
- msgid "Comma separated CATEGORY IDs to SHOW this tab"
2734
- msgstr "ID des CATEGORIES sur lesquels cet onglet DOIT s'afficher (séparer par des virgules)."
2735
-
2736
- #: includes/class-wcj-product-tabs.php:394
2737
- #@ woocommerce-jetpack
2738
- msgid "To show this tab only for some categories, enter category IDs here."
2739
- msgstr "Pour afficher cet onglet dans certaines catégories, entrez son ID ici."
2740
-
2741
- #: includes/class-wcj-product-tabs.php:308
2742
- #@ woocommerce-jetpack
2743
- msgid "Local Custom Product Tabs"
2744
- msgstr ""
2745
-
2746
- #: includes/class-wcj-product-tabs.php:411
2747
- #@ woocommerce-jetpack
2748
- msgid "Enable Custom Product Tabs"
2749
- msgstr "Activer les onglets personnalisés"
2750
-
2751
- #: includes/class-wcj-product-tabs.php:319
2752
- #@ woocommerce-jetpack
2753
- msgid "Default Local Custom Product Tabs Number"
2754
- msgstr ""
2755
-
2756
- #: includes/class-wcj-product-tabs.php:331
2757
- #@ woocommerce-jetpack
2758
- msgid "WooCommerce Standard Product Tabs Options"
2759
- msgstr "Options: Onglets de produit Woocomerce"
2760
-
2761
- #: includes/class-wcj-reports.php:88
2762
- #@ woocommerce-jetpack
2763
- msgid "Total customers"
2764
- msgstr "Nombre de clients"
2765
-
2766
- #: includes/class-wcj-reports.php:98
2767
- #@ woocommerce-jetpack
2768
- msgid "Country Code"
2769
- msgstr "Code Pays"
2770
-
2771
- #: includes/class-wcj-reports.php:99
2772
- #@ woocommerce-jetpack
2773
- msgid "Customers Count"
2774
- msgstr "Clients par pays"
2775
-
2776
- #: includes/class-wcj-reports.php:100
2777
- #@ woocommerce-jetpack
2778
- msgid "Percent of total"
2779
- msgstr "Pourcentage par pays"
2780
-
2781
- #: includes/class-wcj-reports.php:135
2782
- #@ woocommerce-jetpack
2783
- msgid "WooJetpack: All in stock (with sales info)"
2784
- msgstr "WooJetpack: En stock (avec les informations de ventes)"
2785
-
2786
- #: includes/class-wcj-reports.php:161
2787
- #@ woocommerce-jetpack
2788
- msgid "WooJetpack: Customers by Country"
2789
- msgstr "WooJetpack: Clients par Pays"
2790
-
2791
- #: includes/class-wcj-reports.php:180
2792
- #@ woocommerce-jetpack
2793
- msgid "<i>BETA Version</i>"
2794
- msgstr "<i>Version BETA</i>"
2795
-
2796
- #: includes/class-wcj-reports.php:206
2797
- #@ woocommerce-jetpack
2798
- msgid "Stock, sales, customers etc. reports."
2799
- msgstr "Rapports des stocks, ventes, clients etc."
2800
-
2801
- #: includes/class-wcj-reports.php:217
2802
- #@ woocommerce-jetpack
2803
- msgid "WooJetpack: Customers by Country. Available in WooCommerce > Reports > Customers."
2804
- msgstr "WooJetpack: Clients par Pays: Dans WooCommerce > Rapports > Clients."
2805
-
2806
- #: includes/class-wcj-reports.php:218
2807
- #@ woocommerce-jetpack
2808
- msgid "WooJetpack: All in stock (with sales info). Available in WooCommerce > Reports > Stock."
2809
- msgstr "WooJetpack: En stock (avec les informations de ventes): Dans WooCommerce > Rapports > Stock."
2810
-
2811
- #: includes/class-wcj-reports.php:223
2812
- #@ woocommerce-jetpack
2813
- msgid "European Union as single country"
2814
- msgstr "Définir l'Union Européenne comme un pays"
2815
-
2816
- #: includes/class-wcj-reports.php:224
2817
- #@ woocommerce-jetpack
2818
- msgid "When checked all EU contries are counted as one country in all reports."
2819
- msgstr "Permet de considérer l'ensemble des pays de l'Union Européenne comme un seul pays dans les rapports."
2820
-
2821
- #: includes/class-wcj-reports.php:240
2822
- #@ woocommerce-jetpack
2823
- msgid " - <em>BETA</em>"
2824
- msgstr " - <em>BETA</em>"
2825
-
2826
- #: includes/class-wcj-reports.php:604
2827
- #@ woocommerce-jetpack
2828
- msgid "Report shows all products that are on stock and some sales info."
2829
- msgstr "Affiche la liste des produits actuellement en stock avec des informations sur les ventes."
2830
-
2831
- #: includes/class-wcj-reports.php:665
2832
- #@ woocommerce-jetpack
2833
- msgid "Stock based reports"
2834
- msgstr ""
2835
-
2836
- #: includes/class-wcj-reports.php:678
2837
- #@ woocommerce-jetpack
2838
- msgid "Please enable stock management in <strong>WooCommerce > Settings > Products > Inventory</strong> to generate stock based reports."
2839
- msgstr ""
2840
-
2841
- #: includes/class-wcj-sorting.php:227
2842
- #@ woocommerce-jetpack
2843
- msgid "Sort by Name"
2844
- msgstr "Tri par intitulé"
2845
-
2846
- #: includes/class-wcj-sorting.php:228
2847
- #: includes/class-wcj-sorting.php:231
2848
- #@ woocommerce-jetpack
2849
- msgid "Sort by title: A to Z"
2850
- msgstr "Ordre alphabétique: A à Z"
2851
-
2852
- #: includes/class-wcj-sorting.php:229
2853
- #: includes/class-wcj-sorting.php:239
2854
- #: includes/class-wcj-sorting.php:249
2855
- #: includes/class-wcj-sorting.php:259
2856
- #: includes/class-wcj-sorting.php:269
2857
- #: includes/class-wcj-sorting.php:279
2858
- #@ woocommerce-jetpack
2859
- msgid "Text to show on frontend. Leave blank to disable."
2860
- msgstr "Texte à afficher pour les clients. Laisser vide pour ne pas utiliser cette option."
2861
-
2862
- #: includes/class-wcj-sorting.php:238
2863
- #: includes/class-wcj-sorting.php:241
2864
- #@ woocommerce-jetpack
2865
- msgid "Sort by title: Z to A"
2866
- msgstr "Ordre alphabétique: Z à A"
2867
-
2868
- #: includes/class-wcj-sorting.php:247
2869
- #@ woocommerce-jetpack
2870
- msgid "Sort by SKU"
2871
- msgstr "Tri par GCU"
2872
-
2873
- #: includes/class-wcj-sorting.php:248
2874
- #: includes/class-wcj-sorting.php:251
2875
- #@ woocommerce-jetpack
2876
- msgid "Sort by SKU: low to high"
2877
- msgstr "GCU: croissant"
2878
-
2879
- #: includes/class-wcj-sorting.php:258
2880
- #: includes/class-wcj-sorting.php:261
2881
- #@ woocommerce-jetpack
2882
- msgid "Sort by SKU: high to low"
2883
- msgstr "GCU: décroissant"
2884
-
2885
- #: includes/class-wcj-sorting.php:267
2886
- #@ woocommerce-jetpack
2887
- msgid "Sort by stock quantity"
2888
- msgstr "Tri par le stock"
2889
-
2890
- #: includes/class-wcj-sorting.php:268
2891
- #: includes/class-wcj-sorting.php:271
2892
- #@ woocommerce-jetpack
2893
- msgid "Sort by stock quantity: low to high"
2894
- msgstr "quantité en stock: croissant"
2895
-
2896
- #: includes/class-wcj-sorting.php:278
2897
- #: includes/class-wcj-sorting.php:281
2898
- #@ woocommerce-jetpack
2899
- msgid "Sort by stock quantity: high to low"
2900
- msgstr "quantité en stock: décroissant"
2901
-
2902
- #: woocommerce-jetpack.php:132
2903
- #@ woocommerce-jetpack
2904
- msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change values above."
2905
- msgstr "Acheter <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour modifier les valeurs ci dessous."
2906
-
2907
- #: includes/admin/settings/class-wc-settings-jetpack.php:90
2908
- #@ woocommerce-jetpack
2909
- msgid "Price Labels"
2910
- msgstr "Affichage des prix"
2911
-
2912
- #: includes/admin/settings/class-wc-settings-jetpack.php:95
2913
- #@ woocommerce-jetpack
2914
- msgid "Products"
2915
- msgstr "Produits"
2916
-
2917
- #: includes/admin/settings/class-wc-settings-jetpack.php:135
2918
- #@ woocommerce-jetpack
2919
- msgid "Misc."
2920
- msgstr "Divers"
2921
-
2922
- #: includes/class-wcj-price-labels.php:175
2923
- #@ woocommerce-jetpack
2924
- msgid " Result: "
2925
- msgstr " Résultat: "
2926
-
2927
- #: includes/class-wcj-price-labels.php:126
2928
- #@ woocommerce-jetpack
2929
- msgid "<h2>WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)</h2>"
2930
- msgstr "<h2>WooCommerce Jetpack - importation des paramètres du plugin Custom Price Labels (Pro)</h2>"
2931
-
2932
- #: includes/class-wcj-reports.php:73
2933
- #: includes/class-wcj-reports.php:82
2934
- #@ woocommerce
2935
- #@ woocommerce-jetpack
2936
- msgid "Customers By Country"
2937
- msgstr "Clients par Pays"
2938
-
2939
- #: includes/class-wcj-product-info.php:174
2940
- #@ woocommerce-jetpack
2941
- msgid "Customize single product tabs, change related products number."
2942
- msgstr "Permet de modifier les onglets dans les fiches produit. Permet de changer le nombre de produits en relation."
2943
-
2944
- #: includes/class-wcj-add-to-cart.php:298
2945
- #@ woocommerce-jetpack
2946
- msgid "Enable \"Already in cart\" on product archives"
2947
- msgstr "Activer [Déjà dans le panier] sur les pages produits archivés."
2948
-
2949
- #: includes/class-wcj-add-to-cart.php:279
2950
- #@ woocommerce-jetpack
2951
- msgid "Enable \"Already in cart\" on single product pages"
2952
- msgstr "Activer [Déjà dans le panier] sur les pages produits."
2953
-
2954
- #: includes/class-wcj-add-to-cart.php:254
2955
- #@ woocommerce-jetpack
2956
- msgid "Enable on product archives"
2957
- msgstr "Activer sur produits archivés"
2958
-
2959
- #: includes/class-wcj-add-to-cart.php:235
2960
- #@ woocommerce-jetpack
2961
- msgid "Enable on single product pages"
2962
- msgstr "Activer sur les pages produits"
2963
-
2964
- #: includes/class-wcj-price-labels.php:179
2965
- #@ woocommerce-jetpack
2966
- msgid "Found data to migrate: "
2967
- msgstr "Données à importer: "
2968
-
2969
- #: includes/class-wcj-product-info.php:195
2970
- #: includes/class-wcj-product-info.php:232
2971
- #, php-format
2972
- #@ woocommerce-jetpack
2973
- msgid "HTML info. Predefined: %total_sales%, %sku%"
2974
- msgstr "Info HTML. Prédéfini: %total_sales%, %sku%"
2975
-
2976
- #: includes/class-wcj-price-labels.php:174
2977
- #@ woocommerce-jetpack
2978
- msgid "Migrating: "
2979
- msgstr "Migration: "
2980
-
2981
- #: includes/class-wcj-old-slugs.php:88
2982
- #@ woocommerce-jetpack
2983
- msgid "Remove old product slugs."
2984
- msgstr "Permet de supprimer les Permaliens des produits non utilisés."
2985
-
2986
- #: includes/class-wcj-reports.php:440
2987
- #@ woocommerce-jetpack
2988
- msgid "Report shows all products that are on stock."
2989
- msgstr "Affiche la liste des produits actuellement en stock."
2990
-
2991
- #: includes/class-wcj-sorting.php:196
2992
- #@ woocommerce-jetpack
2993
- msgid "Sort by Name - Asc"
2994
- msgstr "Trier par noms [ASC]"
2995
-
2996
- #: includes/class-wcj-sorting.php:214
2997
- #@ woocommerce-jetpack
2998
- msgid "Sort by Name - Desc"
2999
- msgstr "Trier par noms [DESC]"
3000
-
3001
- #: includes/class-wcj-sorting.php:232
3002
- #@ woocommerce-jetpack
3003
- msgid "Sort by SKU - Asc"
3004
- msgstr "Trier par UGS [ASC]"
3005
-
3006
- #: includes/class-wcj-sorting.php:250
3007
- #@ woocommerce-jetpack
3008
- msgid "Sort by SKU - Desc"
3009
- msgstr "Trier par UGS [DESC]"
3010
-
3011
- #: includes/class-wcj-sorting.php:197
3012
- #: includes/class-wcj-sorting.php:215
3013
- #: includes/class-wcj-sorting.php:233
3014
- #: includes/class-wcj-sorting.php:251
3015
- #@ woocommerce-jetpack
3016
- msgid "Text visible at front end"
3017
- msgstr "Texte visible par le client"
3018
-
3019
- #: includes/class-wcj-orders.php:255
3020
- #@ woocommerce-jetpack
3021
- msgid "The tool renumerates all orders."
3022
- msgstr "Les outils de re-numérotation des commandes"
3023
-
3024
- #: includes/class-wcj-reports.php:70
3025
- #@ woocommerce-jetpack
3026
- msgid "WooCommerce Jetpack Reports"
3027
- msgstr "Rapports WooCommerce Jetpack"
3028
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
langs/woocommerce-jetpack-is_IS.mo ADDED
Binary file
langs/woocommerce-jetpack-it_IT.mo ADDED
Binary file
langs/woocommerce-jetpack-ja.mo ADDED
Binary file
langs/woocommerce-jetpack-nl_NL.po DELETED
@@ -1,6311 +0,0 @@
1
- # Copyright (C) 2014 WooCommerce Jetpack
2
- # This file is distributed under the same license as the WooCommerce Jetpack package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WooCommerce Jetpack 2.0.3\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-jetpack\n"
7
- "POT-Creation-Date: 2015-08-10 20:18+0300\n"
8
- "PO-Revision-Date: 2015-08-24 00:02+0300\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: nl_NL\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.4\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
-
18
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:80
19
- msgid "WooCommerce Jetpack: Custom Add to Cart"
20
- msgstr "Booster voor WooCommerce: Aangepaste Voeg to aan winkelwagen"
21
-
22
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
23
- msgid "Single product view"
24
- msgstr "Enkel product weergave"
25
-
26
- #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:92
27
- msgid "Product category (archive) view"
28
- msgstr "Product categorie (archief) weergave"
29
-
30
- #: includes/admin/class-wc-settings-jetpack.php:26
31
- #: includes/admin/class-wc-settings-jetpack.php:223
32
- msgid "Booster"
33
- msgstr "Booster"
34
-
35
- #: includes/admin/class-wc-settings-jetpack.php:84
36
- msgid "Save changes"
37
- msgstr "Wijzigingen opslaan"
38
-
39
- #: includes/admin/class-wc-settings-jetpack.php:121
40
- msgid "Alphabetically"
41
- msgstr "Alfabetisch"
42
-
43
- #: includes/admin/class-wc-settings-jetpack.php:122
44
- msgid "By Category"
45
- msgstr "Op categorie"
46
-
47
- #: includes/admin/class-wc-settings-jetpack.php:123
48
- msgid "Active"
49
- msgstr "Actief"
50
-
51
- #: includes/admin/class-wc-settings-jetpack.php:190
52
- #: includes/admin/wcj-modules-cats.php:15
53
- msgid "Dashboard"
54
- msgstr "Dashboard"
55
-
56
- #: includes/admin/class-wc-settings-jetpack.php:219
57
- msgid "WooCommerce"
58
- msgstr "WooCommerce"
59
-
60
- #: includes/admin/class-wc-settings-jetpack.php:221 woocommerce-jetpack.php:197
61
- msgid "Settings"
62
- msgstr "Instellingen"
63
-
64
- #: includes/admin/class-wc-settings-jetpack.php:301
65
- #: includes/admin/class-wc-settings-jetpack.php:308
66
- msgid "Select All"
67
- msgstr "Alles selecteren"
68
-
69
- #: includes/admin/class-wc-settings-jetpack.php:302
70
- #: includes/admin/class-wc-settings-jetpack.php:309
71
- msgid "Module"
72
- msgstr "Module"
73
-
74
- #: includes/admin/class-wc-settings-jetpack.php:303
75
- #: includes/admin/class-wc-settings-jetpack.php:310
76
- #: includes/admin/class-wcj-tools.php:80
77
- #: includes/gateways/class-wc-gateway-wcj-custom.php:61
78
- msgid "Description"
79
- msgstr "Omschrijving"
80
-
81
- #: includes/admin/class-wc-settings-jetpack.php:360
82
- msgid "Total Modules:"
83
- msgstr "Totale Modules:"
84
-
85
- #: includes/admin/class-wc-settings-jetpack.php:388
86
- msgid "Booster for WooCommerce - Dashboard"
87
- msgstr "Booster voor WooCommerce - Dashboard"
88
-
89
- #: includes/admin/class-wc-settings-jetpack.php:390
90
- msgid ""
91
- "This dashboard lets you enable/disable any Booster's module. Each checkbox comes "
92
- "with short module's description. Please visit <a href=\"http://boostwoo.com\" "
93
- "target=\"_blank\">BoostWoo.com</a> for detailed info on each feature."
94
- msgstr ""
95
- "Op dit dashboard kun je elke Booster module in- en uitschakelen. Elke checkbox "
96
- "komt met een korte beschrijving van de module. Voor gedetailleerde informatie van "
97
- "elke optie, bezoek <a href=\"http://boostwoo.com\" target=\"_blank\">"
98
-
99
- #: includes/admin/class-wcj-tools.php:32
100
- msgid "Booster for WooCommerce Tools"
101
- msgstr "Booster voor WooCommerce Hulpmiddelen"
102
-
103
- #: includes/admin/class-wcj-tools.php:32
104
- msgid "Booster Tools"
105
- msgstr "Booster Hulpmiddelen"
106
-
107
- #: includes/admin/class-wcj-tools.php:45
108
- msgid "Tools Dashboard"
109
- msgstr "Hulpmiddelen Dashboard"
110
-
111
- #: includes/admin/class-wcj-tools.php:74
112
- msgid "Booster for WooCommerce Tools - Dashboard"
113
- msgstr "Booster voor WooCommerce Hulpmiddelen - Dashboard"
114
-
115
- #: includes/admin/class-wcj-tools.php:75
116
- msgid ""
117
- "This dashboard lets you check statuses and short descriptions of all available "
118
- "Booster for WooCommerce tools. Tools can be enabled through WooCommerce > Settings "
119
- "> Booster. Enabled tools will appear in the tabs menu above."
120
- msgstr ""
121
- "Op dit dashboard kun je de statussen en korte beschrijvingen van elke beschikbare "
122
- "Booster voor WooCommerce Hulpmiddelen vinden. Hulpmiddelen kunnen worden "
123
- "ingeschakeld via WooCommerce > Instellingen > Booster. Ingeschakelde hulpmiddelen "
124
- "verschijnen in het tab menu hierboven."
125
-
126
- #: includes/admin/class-wcj-tools.php:78
127
- msgid "Tool"
128
- msgstr "Hulpmiddel"
129
-
130
- #: includes/admin/class-wcj-tools.php:79
131
- msgid "Status"
132
- msgstr "Status"
133
-
134
- #: includes/admin/wcj-modules-cats.php:25
135
- msgid "Prices & Currencies"
136
- msgstr "Prijzen & Valuta"
137
-
138
- #: includes/admin/wcj-modules-cats.php:37
139
- msgid "Button & Price Labels"
140
- msgstr "Knop & prijslabels"
141
-
142
- #: includes/admin/wcj-modules-cats.php:48
143
- msgid "Products"
144
- msgstr "Producten"
145
-
146
- #: includes/admin/wcj-modules-cats.php:65
147
- msgid "Cart & Checkout"
148
- msgstr "Winkelwagen & Afrekenen"
149
-
150
- #: includes/admin/wcj-modules-cats.php:82
151
- msgid "Shipping & Orders"
152
- msgstr "Verzending & Orders"
153
-
154
- #: includes/admin/wcj-modules-cats.php:95
155
- msgid "PDF Invoicing & Packing Slips"
156
- msgstr "PDF facturen & pakbonnen"
157
-
158
- #: includes/admin/wcj-modules-cats.php:111
159
- msgid "Emails & Misc."
160
- msgstr "E-mail & Div."
161
-
162
- #: includes/class-wcj-add-to-cart.php:51
163
- msgid "Per Product Type Options"
164
- msgstr "Per product type Opties"
165
-
166
- #: includes/class-wcj-add-to-cart.php:54 includes/class-wcj-add-to-cart.php:195
167
- msgid "Per Product Labels"
168
- msgstr "Per product labels"
169
-
170
- #: includes/class-wcj-add-to-cart.php:55 includes/class-wcj-add-to-cart.php:196
171
- #: includes/class-wcj-add-to-cart.php:220 includes/class-wcj-product-images.php:115
172
- #: includes/class-wcj-product-images.php:165
173
- msgid "Enable Section"
174
- msgstr "Schakel gedeelte in"
175
-
176
- #: includes/class-wcj-add-to-cart.php:65
177
- msgid "Simple product"
178
- msgstr "Simpel product"
179
-
180
- #: includes/class-wcj-add-to-cart.php:70
181
- msgid "Variable product"
182
- msgstr "Variabel product"
183
-
184
- #: includes/class-wcj-add-to-cart.php:75
185
- msgid "External product"
186
- msgstr "Extern product"
187
-
188
- #: includes/class-wcj-add-to-cart.php:80
189
- msgid "Grouped product"
190
- msgstr "Samengevoegd product"
191
-
192
- #: includes/class-wcj-add-to-cart.php:85
193
- msgid "Other product"
194
- msgstr "Ander product"
195
-
196
- #: includes/class-wcj-add-to-cart.php:96
197
- msgid "Single product view."
198
- msgstr "Enkel product weergave"
199
-
200
- #: includes/class-wcj-add-to-cart.php:97 includes/class-wcj-add-to-cart.php:108
201
- #: includes/class-wcj-add-to-cart.php:154 includes/class-wcj-add-to-cart.php:167
202
- #: includes/class-wcj-payment-gateways-fees.php:149
203
- msgid "Leave blank to disable."
204
- msgstr "Laat leeg om uit te zetten."
205
-
206
- #: includes/class-wcj-add-to-cart.php:97 includes/class-wcj-add-to-cart.php:108
207
- #: includes/class-wcj-add-to-cart.php:156 includes/class-wcj-add-to-cart.php:169
208
- #: includes/class-wcj-sorting.php:213 includes/class-wcj-sorting.php:223
209
- #: includes/class-wcj-sorting.php:233 includes/class-wcj-sorting.php:243
210
- #: includes/class-wcj-sorting.php:264 includes/class-wcj-sorting.php:274
211
- msgid "Default: "
212
- msgstr "Standaard:"
213
-
214
- #: includes/class-wcj-add-to-cart.php:107
215
- msgid "Product category (archive) view."
216
- msgstr "Product categorie (archief) weergave"
217
-
218
- #: includes/class-wcj-add-to-cart.php:119
219
- msgid "Products with price set to 0 (i.e. free). Single product view."
220
- msgstr "Producten met prijs op 0 (oftewel gratis). Enkel product weergave."
221
-
222
- #: includes/class-wcj-add-to-cart.php:120 includes/class-wcj-add-to-cart.php:129
223
- msgid "Leave blank to disable. Default: Add to cart"
224
- msgstr "Laat leeg om uit te schakelen. Default: Voeg toe aan winkelwagen."
225
-
226
- #: includes/class-wcj-add-to-cart.php:122 includes/class-wcj-add-to-cart.php:131
227
- #: includes/class-wcj-add-to-cart.php:156 includes/class-wcj-add-to-cart.php:157
228
- #: includes/class-wcj-add-to-cart.php:169 includes/class-wcj-add-to-cart.php:170
229
- msgid "Add to cart"
230
- msgstr "Voeg toe aan winkelwagen"
231
-
232
- #: includes/class-wcj-add-to-cart.php:128
233
- msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
234
- msgstr ""
235
- "Producten met prijs op 0 (oftewel gratis). Product categorie (archief) weergave."
236
-
237
- #: includes/class-wcj-add-to-cart.php:138
238
- msgid "Products with empty price. Product category (archive) view."
239
- msgstr "Producten met een lege prijs. Product categorie (archief) weergave."
240
-
241
- #: includes/class-wcj-add-to-cart.php:139
242
- msgid "Leave blank to disable. Default: Read More"
243
- msgstr "Laat leeg om uit te schakelen. Standaard: Lees meer"
244
-
245
- #: includes/class-wcj-add-to-cart.php:141
246
- msgid "Read More"
247
- msgstr "Lees meer"
248
-
249
- #: includes/class-wcj-add-to-cart.php:153
250
- msgid "Already in cart. Single product view."
251
- msgstr "Reeds in winkelwagen. Enkel product weergave"
252
-
253
- #: includes/class-wcj-add-to-cart.php:155 includes/class-wcj-add-to-cart.php:168
254
- msgid "Try: "
255
- msgstr "Probeer:"
256
-
257
- #: includes/class-wcj-add-to-cart.php:155 includes/class-wcj-add-to-cart.php:168
258
- msgid "Already in cart - Add Again?"
259
- msgstr "Reeds toegevoegd aan winkelwagen. Opnieuw toevoegen?"
260
-
261
- #: includes/class-wcj-add-to-cart.php:166
262
- msgid "Already in cart. Product category (archive) view."
263
- msgstr "Reeds in winkelwagen. Product categorie (archief) weergave."
264
-
265
- #: includes/class-wcj-add-to-cart.php:189
266
- msgid "Per Product Options"
267
- msgstr "Per product Opties"
268
-
269
- #: includes/class-wcj-add-to-cart.php:191
270
- msgid ""
271
- "This section lets you set Add to Cart button text on per product basis. When "
272
- "enabled, label for each product can be changed in \"Edit Product\"."
273
- msgstr ""
274
- "In dit gedeelte kun je de Voeg toe aan Winkelwagen knop tekst per product "
275
- "instellen. Bij inschakeling kan het label voor elk product worden veranderd in "
276
- "\"Bewerk product\"."
277
-
278
- #: includes/class-wcj-add-to-cart.php:216
279
- msgid "Per Category Options"
280
- msgstr "Per categorie Opties"
281
-
282
- #: includes/class-wcj-add-to-cart.php:216
283
- msgid "This sections lets you set Add to Cart button text on per category basis."
284
- msgstr ""
285
- "In dit gedeelte kun je de Voeg toe aan Winkelwagen knop tekst per categorie "
286
- "instellen."
287
-
288
- #: includes/class-wcj-add-to-cart.php:219
289
- msgid "Per Category Labels"
290
- msgstr "Per categorie Labels"
291
-
292
- #: includes/class-wcj-add-to-cart.php:228
293
- msgid "Category Groups Number"
294
- msgstr "Categorie Groepen Aantal"
295
-
296
- #: includes/class-wcj-add-to-cart.php:229
297
- #: includes/class-wcj-checkout-custom-fields.php:321
298
- #: includes/class-wcj-product-input-fields.php:193
299
- #: includes/class-wcj-product-tabs.php:327
300
- msgid "Click \"Save changes\" after you change this number."
301
- msgstr "Klik op \"Bewaar instellingen\" als je dit getal aanpast."
302
-
303
- #: includes/class-wcj-add-to-cart.php:266 includes/class-wcj-price-by-country.php:132
304
- #: includes/class-wcj-price-by-country.php:198
305
- msgid "Group"
306
- msgstr "Groep"
307
-
308
- #: includes/class-wcj-add-to-cart.php:267 includes/class-wcj-admin-tools.php:109
309
- #: includes/class-wcj-admin-tools.php:117
310
- #: includes/class-wcj-checkout-custom-fields.php:297
311
- #: includes/class-wcj-checkout-custom-fields.php:305
312
- #: includes/class-wcj-general.php:74 includes/class-wcj-order-numbers.php:176
313
- #: includes/class-wcj-orders.php:245 includes/class-wcj-price-by-country.php:105
314
- #: includes/class-wcj-price-labels.php:632
315
- #: includes/class-wcj-product-add-to-cart.php:56
316
- #: includes/class-wcj-product-add-to-cart.php:78
317
- #: includes/class-wcj-product-info.php:618 includes/class-wcj-product-info.php:737
318
- #: includes/class-wcj-product-info.php:774
319
- #: includes/class-wcj-product-input-fields.php:152
320
- #: includes/class-wcj-product-input-fields.php:184
321
- #: includes/class-wcj-product-input-fields.php:230
322
- #: includes/class-wcj-shipping-calculator.php:129
323
- #: includes/class-wcj-shipping-calculator.php:137
324
- #: includes/class-wcj-shipping-calculator.php:145
325
- #: includes/class-wcj-shipping-calculator.php:153 includes/class-wcj-sorting.php:205
326
- #: includes/class-wcj-wholesale-price.php:159
327
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:177
328
- msgid "Enable"
329
- msgstr "Inschakelen"
330
-
331
- #: includes/class-wcj-add-to-cart.php:283
332
- #: includes/class-wcj-checkout-custom-fields.php:460
333
- msgid "categories"
334
- msgstr "categorieën"
335
-
336
- #: includes/class-wcj-add-to-cart.php:294
337
- msgid "Button text - single product view"
338
- msgstr "Knop tekst - enkel product weergave"
339
-
340
- #: includes/class-wcj-add-to-cart.php:302
341
- msgid "Button text - product archive (category) view"
342
- msgstr "Knop tekst - product archief (categorie) weergave"
343
-
344
- #: includes/class-wcj-add-to-cart.php:327
345
- msgid "Add to Cart Options"
346
- msgstr "Toevoegen aan Winkelwagen Opties"
347
-
348
- #: includes/class-wcj-add-to-cart.php:330 includes/class-wcj-add-to-cart.php:354
349
- msgid "Add to Cart Labels"
350
- msgstr "Voeg toe aan Winkelwagen Labels"
351
-
352
- #: includes/class-wcj-add-to-cart.php:331 includes/class-wcj-call-for-price.php:89
353
- #: includes/class-wcj-checkout-core-fields.php:165
354
- #: includes/class-wcj-checkout-custom-fields.php:288
355
- #: includes/class-wcj-currencies.php:113
356
- #: includes/class-wcj-currency-external-products.php:72
357
- #: includes/class-wcj-emails.php:131 includes/class-wcj-old-slugs.php:95
358
- #: includes/class-wcj-order-numbers.php:167 includes/class-wcj-pdf-invoices.php:926
359
- #: includes/class-wcj-pdf-invoicing.php:147
360
- #: includes/class-wcj-price-by-country.php:69 includes/class-wcj-price-labels.php:535
361
- #: includes/class-wcj-product-bulk-price-converter.php:262
362
- #: includes/class-wcj-product-info.php:709
363
- #: includes/class-wcj-product-input-fields.php:132
364
- #: includes/class-wcj-product-listings.php:60 includes/class-wcj-product-tabs.php:314
365
- #: includes/class-wcj-reports.php:278 includes/class-wcj-shipping-calculator.php:120
366
- #: includes/class-wcj-shipping.php:156 includes/classes/class-wcj-module.php:170
367
- msgid "Enable Module"
368
- msgstr "Module aanzetten"
369
-
370
- #: includes/class-wcj-add-to-cart.php:332
371
- msgid ""
372
- "Change text for Add to Cart button by WooCommerce product type, by product "
373
- "category or for individual products."
374
- msgstr ""
375
- "Verander tekst van Voeg toe aan Winkelwagen knop per WooCommerce product type, per "
376
- "productcategorie of voor individuele producten."
377
-
378
- #: includes/class-wcj-address-formats.php:24
379
- msgid "Address Formats"
380
- msgstr ""
381
-
382
- #: includes/class-wcj-address-formats.php:25
383
- msgid ""
384
- "Set address format in WooCommerce orders on per country basis. Force base country "
385
- "display."
386
- msgstr ""
387
-
388
- #: includes/class-wcj-address-formats.php:125
389
- #: includes/class-wcj-address-formats.php:131
390
- msgid "Force Base Country Display"
391
- msgstr ""
392
-
393
- #: includes/class-wcj-address-formats.php:127
394
- msgid "Force Base Country Display Options."
395
- msgstr ""
396
-
397
- #: includes/class-wcj-address-formats.php:143
398
- msgid "Address Formats by Country"
399
- msgstr ""
400
-
401
- #: includes/class-wcj-address-formats.php:145
402
- msgid "Address Formats by Country Options."
403
- msgstr ""
404
-
405
- #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:29
406
- #: includes/class-wcj-admin-tools.php:48
407
- msgid "Admin Tools"
408
- msgstr "Admin Hulpmiddelen"
409
-
410
- #: includes/class-wcj-admin-tools.php:26
411
- msgid "Booster for WooCommerce debug and log tools."
412
- msgstr ""
413
-
414
- #: includes/class-wcj-admin-tools.php:45
415
- #: includes/class-wcj-checkout-custom-fields.php:351
416
- #: includes/class-wcj-old-slugs.php:49
417
- #: includes/class-wcj-order-custom-statuses.php:135
418
- #: includes/class-wcj-order-numbers.php:66 includes/class-wcj-price-labels.php:114
419
- #: includes/class-wcj-product-bulk-price-converter.php:228
420
- #: includes/class-wcj-sku.php:193
421
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:32
422
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:33
423
- msgid "enabled"
424
- msgstr "Ingeschakeld"
425
-
426
- #: includes/class-wcj-admin-tools.php:47 includes/class-wcj-old-slugs.php:51
427
- #: includes/class-wcj-order-custom-statuses.php:136
428
- #: includes/class-wcj-order-numbers.php:68 includes/class-wcj-price-labels.php:116
429
- #: includes/class-wcj-product-bulk-price-converter.php:230
430
- #: includes/class-wcj-sku.php:195
431
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:34
432
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:35
433
- msgid "disabled"
434
- msgstr "uitgeschakeld"
435
-
436
- #: includes/class-wcj-admin-tools.php:50
437
- msgid "Log."
438
- msgstr "Rapporteer."
439
-
440
- #: includes/class-wcj-admin-tools.php:60
441
- msgid "Log"
442
- msgstr "Rapporteer"
443
-
444
- #: includes/class-wcj-admin-tools.php:75
445
- msgid "Log deleted successfully."
446
- msgstr "Rapport succesvol verwijderd."
447
-
448
- #: includes/class-wcj-admin-tools.php:81
449
- msgid "Delete Log"
450
- msgstr "Verwijder rapport"
451
-
452
- #: includes/class-wcj-admin-tools.php:105
453
- msgid "Admin Tools Options"
454
- msgstr "Admin Hulpmidellen Opties"
455
-
456
- #: includes/class-wcj-admin-tools.php:108
457
- msgid "Logging"
458
- msgstr "Rapporteren"
459
-
460
- #: includes/class-wcj-admin-tools.php:116
461
- msgid "Debug"
462
- msgstr ""
463
-
464
- #: includes/class-wcj-call-for-price.php:81
465
- msgid "Call for Price Options"
466
- msgstr "Bel voor prijs mogelijkheden"
467
-
468
- #: includes/class-wcj-call-for-price.php:83
469
- msgid "Leave price empty when adding or editing products. Then set the options here."
470
- msgstr ""
471
- "Laat prijs lees tijdens het toevoegen en/of bewerken van producten. Stel daarna de "
472
- "opties hier in."
473
-
474
- #: includes/class-wcj-call-for-price.php:88 includes/class-wcj-call-for-price.php:175
475
- msgid "Call for Price"
476
- msgstr "Bel voor de prijs"
477
-
478
- #: includes/class-wcj-call-for-price.php:90
479
- msgid "Create any custom price label for all WooCommerce products with empty price."
480
- msgstr ""
481
- "Creëer elke aangepaste prijslabel voor alle WooCommerce producten met een lege "
482
- "prijs."
483
-
484
- #: includes/class-wcj-call-for-price.php:97
485
- msgid "Label to Show on Single"
486
- msgstr "Label naar toon bij enkel"
487
-
488
- #: includes/class-wcj-call-for-price.php:98 includes/class-wcj-call-for-price.php:110
489
- #: includes/class-wcj-call-for-price.php:122
490
- #: includes/class-wcj-call-for-price.php:134
491
- msgid "This sets the html to output on empty price. Leave blank to disable."
492
- msgstr "Dit zet html naar output bij lege prijs. Laat leeg om uit te schakelen."
493
-
494
- #: includes/class-wcj-call-for-price.php:109
495
- msgid "Label to Show on Archives"
496
- msgstr "Label naar toon bij Archieven"
497
-
498
- #: includes/class-wcj-call-for-price.php:121
499
- msgid "Label to Show on Homepage"
500
- msgstr "Label naar toon bij homepagina"
501
-
502
- #: includes/class-wcj-call-for-price.php:133
503
- msgid "Label to Show on Related"
504
- msgstr "Label naar toon bij gerelateerd"
505
-
506
- #: includes/class-wcj-call-for-price.php:145
507
- msgid "Hide Sale! Tag"
508
- msgstr "Verberg de Uitverkoop! tag"
509
-
510
- #: includes/class-wcj-call-for-price.php:146
511
- msgid "Hide the tag"
512
- msgstr "Verberg de tag"
513
-
514
- #: includes/class-wcj-cart.php:23
515
- msgid "Cart"
516
- msgstr "Winkelwagen"
517
-
518
- #: includes/class-wcj-cart.php:24
519
- msgid "Add custom info to WooCommerce cart page. Add empty cart button."
520
- msgstr ""
521
- "Voeg aangepaste info toe aan WooCommerce winkelwagenpagina. Voeg leeg winkelwagen "
522
- "knop toe."
523
-
524
- #: includes/class-wcj-cart.php:83
525
- msgid "Cart Custom Info Blocks"
526
- msgstr "Winkelwagen aangepaste info blokken"
527
-
528
- #: includes/class-wcj-cart.php:86 includes/class-wcj-checkout-custom-info.php:51
529
- #: includes/class-wcj-mini-cart.php:48
530
- msgid "Total Blocks"
531
- msgstr "Totale blokken"
532
-
533
- #: includes/class-wcj-cart.php:103 includes/class-wcj-checkout-custom-info.php:68
534
- #: includes/class-wcj-mini-cart.php:66
535
- msgid "Info Block"
536
- msgstr "Info Blok"
537
-
538
- #: includes/class-wcj-cart.php:106 includes/class-wcj-checkout-custom-info.php:71
539
- #: includes/class-wcj-mini-cart.php:69 includes/class-wcj-product-tabs.php:248
540
- #: includes/class-wcj-product-tabs.php:357
541
- msgid "Content"
542
- msgstr "Inhoud"
543
-
544
- #: includes/class-wcj-cart.php:114 includes/class-wcj-checkout-custom-info.php:79
545
- #: includes/class-wcj-mini-cart.php:78 includes/class-wcj-product-info.php:626
546
- #: includes/class-wcj-product-info.php:754 includes/class-wcj-product-info.php:794
547
- msgid "Position"
548
- msgstr "Positie"
549
-
550
- #: includes/class-wcj-cart.php:120
551
- msgid "Before cart"
552
- msgstr "Voor winkelwagen"
553
-
554
- #: includes/class-wcj-cart.php:121
555
- msgid "Before cart table"
556
- msgstr "Voor winkelwagen tabel"
557
-
558
- #: includes/class-wcj-cart.php:122
559
- msgid "Before cart contents"
560
- msgstr "Voor winkelwagen inhoud"
561
-
562
- #: includes/class-wcj-cart.php:123
563
- msgid "Cart contents"
564
- msgstr "Winkelwagen inhoud"
565
-
566
- #: includes/class-wcj-cart.php:124
567
- msgid "Cart coupon"
568
- msgstr "Winkelwagen coupon"
569
-
570
- #: includes/class-wcj-cart.php:125
571
- msgid "Cart actions"
572
- msgstr "Winkelwagen acties"
573
-
574
- #: includes/class-wcj-cart.php:126
575
- msgid "After cart contents"
576
- msgstr "Na winkelwagen inhoud"
577
-
578
- #: includes/class-wcj-cart.php:127
579
- msgid "After cart table"
580
- msgstr "Na winkelwagen tabel"
581
-
582
- #: includes/class-wcj-cart.php:128
583
- msgid "Cart collaterals"
584
- msgstr ""
585
-
586
- #: includes/class-wcj-cart.php:129
587
- msgid "After cart"
588
- msgstr "Na winkelwagen"
589
-
590
- #: includes/class-wcj-cart.php:131
591
- msgid "Before cart totals"
592
- msgstr "Voor winkelwagen totaal"
593
-
594
- #: includes/class-wcj-cart.php:132
595
- msgid "Cart totals: Before shipping"
596
- msgstr "Winkelwagen totaal: voor verzendkosten"
597
-
598
- #: includes/class-wcj-cart.php:133
599
- msgid "Cart totals: After shipping"
600
- msgstr "Winkelwagen totaal: na verzendkosten"
601
-
602
- #: includes/class-wcj-cart.php:134
603
- msgid "Cart totals: Before order total"
604
- msgstr "Winkelwagen totaal: voor totale order"
605
-
606
- #: includes/class-wcj-cart.php:135
607
- msgid "Cart totals: After order total"
608
- msgstr "Winkelwagen totaal: na totale order"
609
-
610
- #: includes/class-wcj-cart.php:136
611
- msgid "Proceed to checkout"
612
- msgstr "Ga door naar afrekenen"
613
-
614
- #: includes/class-wcj-cart.php:137
615
- msgid "After cart totals"
616
- msgstr "Na winkelwagen totaal"
617
-
618
- #: includes/class-wcj-cart.php:139
619
- msgid "Before shipping calculator"
620
- msgstr "Voor verzendkostenberekening"
621
-
622
- #: includes/class-wcj-cart.php:140
623
- msgid "After shipping calculator"
624
- msgstr "Na verzendkostenberekening"
625
-
626
- #: includes/class-wcj-cart.php:142
627
- msgid "If cart is empty"
628
- msgstr "Als de winkelwagen leeg is"
629
-
630
- #: includes/class-wcj-cart.php:148 includes/class-wcj-mini-cart.php:92
631
- #: includes/class-wcj-product-tabs.php:243
632
- msgid "Priority"
633
- msgstr "Prioriteit"
634
-
635
- #: includes/class-wcj-checkout-core-fields.php:161
636
- msgid "Checkout Core Fields Options"
637
- msgstr ""
638
-
639
- #: includes/class-wcj-checkout-core-fields.php:164
640
- #: includes/class-wcj-checkout-core-fields.php:282
641
- msgid "Checkout Core Fields"
642
- msgstr ""
643
-
644
- #: includes/class-wcj-checkout-core-fields.php:166
645
- msgid ""
646
- "Customize WooCommerce core checkout fields. Disable/enable fields, set required, "
647
- "change labels and/or placeholders."
648
- msgstr ""
649
-
650
- #: includes/class-wcj-checkout-core-fields.php:244
651
- msgid "Leave blank for WooCommerce defaults."
652
- msgstr "Laat leeg voor WooCommerce defaults."
653
-
654
- #: includes/class-wcj-checkout-custom-fields.php:280
655
- msgid "Checkout Custom Fields Options"
656
- msgstr "Aangepaste velden Afrekenen opties"
657
-
658
- #: includes/class-wcj-checkout-custom-fields.php:287
659
- #: includes/class-wcj-checkout-custom-fields.php:492
660
- msgid "Checkout Custom Fields"
661
- msgstr "Afrekenen aangepaste velden"
662
-
663
- #: includes/class-wcj-checkout-custom-fields.php:289
664
- msgid "Add custom fields to WooCommerce checkout page."
665
- msgstr "Voeg aangepaste velden toe aan de WooCommerce afrekenpagina."
666
-
667
- #: includes/class-wcj-checkout-custom-fields.php:296
668
- msgid "Add All Fields to Admin Emails"
669
- msgstr "Voeg alle velden toe aan e-mails van admin"
670
-
671
- #: includes/class-wcj-checkout-custom-fields.php:304
672
- msgid "Add All Fields to Customers Emails"
673
- msgstr "Voeg alle velden toe aan e-mails van klanten"
674
-
675
- #: includes/class-wcj-checkout-custom-fields.php:314
676
- msgid "The Fields"
677
- msgstr "De Velden"
678
-
679
- #: includes/class-wcj-checkout-custom-fields.php:320
680
- msgid "Custom Fields Number"
681
- msgstr "Aangepaste velden nummer"
682
-
683
- #: includes/class-wcj-checkout-custom-fields.php:350
684
- msgid "Custom Field"
685
- msgstr "Aangepast veld"
686
-
687
- # If you mean type of product then use Soort
688
- # If you mean type your text here then use vul in
689
- #: includes/class-wcj-checkout-custom-fields.php:358
690
- msgid "type"
691
- msgstr "Soort, vul in"
692
-
693
- #: includes/class-wcj-checkout-custom-fields.php:363
694
- #: includes/class-wcj-more-button-labels.php:49
695
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
696
- msgid "Text"
697
- msgstr "Tekst"
698
-
699
- #: includes/class-wcj-checkout-custom-fields.php:364
700
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:45
701
- msgid "Textarea"
702
- msgstr "Tekstveld"
703
-
704
- #: includes/class-wcj-checkout-custom-fields.php:366
705
- msgid "Datepicker"
706
- msgstr "Datumprikker"
707
-
708
- #: includes/class-wcj-checkout-custom-fields.php:367
709
- #: includes/input-fields/class-wcj-product-input-fields-abstract.php:47
710
- msgid "Checkbox"
711
- msgstr "Checkbox"
712
-
713
- #: includes/class-wcj-checkout-custom-fields.php:369
714
- msgid "Password"
715
- msgstr "Wachtwoord"
716
-
717
- #: includes/class-wcj-checkout-custom-fields.php:375
718
- msgid "required"
719
- msgstr "Verplicht"
720
-
721
- #: includes/class-wcj-checkout-custom-fields.php:382
722
- msgid "label"
723
- msgstr "Label"
724
-
725
- #: includes/class-wcj-checkout-custom-fields.php:404
726
- msgid "placeholder"
727
- msgstr "Plaatshouder"
728
-
729
- #: includes/class-wcj-checkout-custom-fields.php:413
730
- msgid "section"
731
- msgstr "Gedeelte"
732
-
733
- #: includes/class-wcj-checkout-custom-fields.php:418
734
- #: includes/class-wcj-checkout-custom-info.php:86
735
- msgid "Billing"
736
- msgstr "Facturering"
737
-
738
- #: includes/class-wcj-checkout-custom-fields.php:419
739
- #: includes/class-wcj-checkout-custom-info.php:87
740
- #: includes/class-wcj-pdf-invoices.php:1255 includes/class-wcj-shipping.php:155
741
- #: includes/class-wcj-shipping.php:200
742
- msgid "Shipping"
743
- msgstr "Verzending"
744
-
745
- #: includes/class-wcj-checkout-custom-fields.php:420
746
- msgid "Order Notes"
747
- msgstr "Order notities"
748
-
749
- #: includes/class-wcj-checkout-custom-fields.php:421
750
- msgid "Account"
751
- msgstr "Account"
752
-
753
- #: includes/class-wcj-checkout-custom-fields.php:428
754
- msgid "class"
755
- msgstr "klasse"
756
-
757
- #: includes/class-wcj-checkout-custom-fields.php:433
758
- msgid "Wide"
759
- msgstr "Breedte"
760
-
761
- #: includes/class-wcj-checkout-custom-fields.php:434
762
- msgid "First"
763
- msgstr "Eerste"
764
-
765
- #: includes/class-wcj-checkout-custom-fields.php:435
766
- msgid "Last"
767
- msgstr "Laatste"
768
-
769
- #: includes/class-wcj-checkout-custom-fields.php:442
770
- msgid "clear"
771
- msgstr "Wis"
772
-
773
- #: includes/class-wcj-checkout-custom-info.php:24
774
- msgid "Checkout Custom Info"
775
- msgstr "Afrekenen aangepaste info"
776
-
777
- #: includes/class-wcj-checkout-custom-info.php:25
778
- msgid "Add custom info to WooCommerce checkout page."
779
- msgstr "Voeg aangepaste info toe aan WooCommerce afrekenpagina."
780
-
781
- #: includes/class-wcj-checkout-custom-info.php:48
782
- msgid "Checkout Custom Info Blocks"
783
- msgstr "Afrekenen Aangepaste info blokken"
784
-
785
- #: includes/class-wcj-checkout-custom-info.php:84
786
- msgid "Before checkout form"
787
- msgstr "Voor afrekenen formulier"
788
-
789
- #: includes/class-wcj-checkout-custom-info.php:85
790
- msgid "Before customer details"
791
- msgstr "Voor klanten details"
792
-
793
- #: includes/class-wcj-checkout-custom-info.php:88
794
- msgid "After customer details"
795
- msgstr "Na klanten details"
796
-
797
- #: includes/class-wcj-checkout-custom-info.php:89
798
- msgid "Before order review"
799
- msgstr "Voor order overzicht"
800
-
801
- #: includes/class-wcj-checkout-custom-info.php:90
802
- msgid "Order review"
803
- msgstr "Order overzicht"
804
-
805
- #: includes/class-wcj-checkout-custom-info.php:91
806
- msgid "After order review"
807
- msgstr "Na order overzicht"
808
-
809
- #: includes/class-wcj-checkout-custom-info.php:92
810
- msgid "After checkout form"
811
- msgstr "Na afrekenen formulier"
812
-
813
- #: includes/class-wcj-checkout-custom-info.php:115
814
- msgid "Order (i.e. Priority)"
815
- msgstr "Volgorde (i.e. prioriteit)"
816
-
817
- #: includes/class-wcj-currencies.php:75
818
- #: includes/class-wcj-currency-external-products.php:80
819
- msgid "Currency Symbol"
820
- msgstr "Valuta symbool"
821
-
822
- #: includes/class-wcj-currencies.php:76
823
- msgid "This sets the currency symbol."
824
- msgstr "Dit stelt het valuta symbool in."
825
-
826
- #: includes/class-wcj-currencies.php:109
827
- msgid "Currencies Options"
828
- msgstr "Valuta opties"
829
-
830
- #: includes/class-wcj-currencies.php:112 includes/class-wcj-currencies.php:154
831
- msgid "Currencies"
832
- msgstr "Valuta"
833
-
834
- #: includes/class-wcj-currencies.php:114
835
- msgid "Add all world currencies to your WooCommerce store; change currency symbol."
836
- msgstr ""
837
- "Voeg alle wereldvaluta's toe aan jouw WooCommerce winkel; verander Valuta symbool."
838
-
839
- #: includes/class-wcj-currencies.php:122
840
- msgid "Currency Symbol Options"
841
- msgstr "Valuta symbool opties"
842
-
843
- #: includes/class-wcj-currencies.php:125
844
- msgid "Hide Currency Symbol"
845
- msgstr "Verberg valuta opties"
846
-
847
- #: includes/class-wcj-currencies.php:126 includes/class-wcj-product-images.php:123
848
- #: includes/class-wcj-product-images.php:131
849
- #: includes/class-wcj-product-images.php:139
850
- #: includes/class-wcj-product-images.php:147
851
- #: includes/class-wcj-related-products.php:132
852
- #: includes/class-wcj-shipping-calculator.php:167
853
- msgid "Hide"
854
- msgstr "Verberg"
855
-
856
- #: includes/class-wcj-currencies.php:127
857
- msgid "Default: no."
858
- msgstr "Default: Nee."
859
-
860
- #: includes/class-wcj-currency-external-products.php:68
861
- msgid "Currency for External Products Options"
862
- msgstr "Valuta voor externe producten Opties"
863
-
864
- #: includes/class-wcj-currency-external-products.php:71
865
- #: includes/class-wcj-currency-external-products.php:99
866
- msgid "Currency for External Products"
867
- msgstr "Valuta voor externe producten"
868
-
869
- #: includes/class-wcj-currency-external-products.php:73
870
- msgid "Set different currency for external WooCommerce products."
871
- msgstr "Stel verschillende valuta in voor externe WooCommerce producten."
872
-
873
- #: includes/class-wcj-currency-external-products.php:81
874
- #: includes/class-wcj-currency-external-products.php:82
875
- msgid "Set currency symbol for all external products."
876
- msgstr "Stel valuta symbool in voor alle externe producten."
877
-
878
- #: includes/class-wcj-emails.php:69
879
- msgid "WooCommerce Jetpack: Email Forwarding Options"
880
- msgstr "Booster voor WooCommerce: email doorstuur opties"
881
-
882
- #: includes/class-wcj-emails.php:69 includes/class-wcj-emails.php:148
883
- msgid ""
884
- "This section lets you add another email recipient(s) to all WooCommerce emails. "
885
- "Leave blank to disable."
886
- msgstr ""
887
- "In dit gedeelte kun je nog een emailontvanger toevoegen aan alle WooCommerce "
888
- "emails. Laat leeg om uit te schakelen."
889
-
890
- #: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:151
891
- msgid "Cc Email"
892
- msgstr "Cc Email"
893
-
894
- #: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:153
895
- msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
896
- msgstr "Cc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
897
-
898
- #: includes/class-wcj-emails.php:85 includes/class-wcj-emails.php:162
899
- msgid "Bcc Email"
900
- msgstr "Bcc Email"
901
-
902
- #: includes/class-wcj-emails.php:87 includes/class-wcj-emails.php:164
903
- msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
904
- msgstr "Bcc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
905
-
906
- #: includes/class-wcj-emails.php:127
907
- msgid "Emails Options"
908
- msgstr "Emails opties"
909
-
910
- #: includes/class-wcj-emails.php:130 includes/class-wcj-emails.php:182
911
- msgid "Emails"
912
- msgstr "E-mails"
913
-
914
- #: includes/class-wcj-emails.php:132
915
- msgid "Add another email recipient(s) to all WooCommerce emails."
916
- msgstr "Voeg nog een emailontvanger(s) toe aan alle WooCommerce emails."
917
-
918
- #: includes/class-wcj-emails.php:148
919
- msgid "Email Forwarding Options"
920
- msgstr "Email doorstuur opties"
921
-
922
- #: includes/class-wcj-empty-cart-button.php:24
923
- msgid "Empty Cart Button"
924
- msgstr "Leeg winkelwagen knop"
925
-
926
- #: includes/class-wcj-empty-cart-button.php:25
927
- msgid "Add and customize \"Empty Cart\" button to cart page."
928
- msgstr "Voeg \"Leeg winkelwagen\" knop toe aan winkelwagenpagina en pas aan."
929
-
930
- #: includes/class-wcj-empty-cart-button.php:96
931
- msgid "Empty Cart Options"
932
- msgstr "Lege winkelwagen opties"
933
-
934
- #: includes/class-wcj-empty-cart-button.php:96
935
- msgid "This section lets you add and customize \"Empty Cart\" button to cart page."
936
- msgstr "In dit gedeelte kun je de lege winkelwagen knop toevoegen en bewerken."
937
-
938
- #: includes/class-wcj-empty-cart-button.php:107
939
- msgid "Empty Cart Button Text"
940
- msgstr "Lege winkelwagen knop tekst"
941
-
942
- #: includes/class-wcj-empty-cart-button.php:117
943
- msgid "Wrapping DIV style"
944
- msgstr ""
945
-
946
- #: includes/class-wcj-empty-cart-button.php:118
947
- msgid "Style for the button's div. Default is \"float: right;\""
948
- msgstr ""
949
-
950
- #: includes/class-wcj-empty-cart-button.php:128
951
- msgid "Button position on the Cart page"
952
- msgstr "Positie knop op de winkelwagen pagina"
953
-
954
- #: includes/class-wcj-empty-cart-button.php:133
955
- msgid "After Cart"
956
- msgstr "Na de winkelwagen"
957
-
958
- #: includes/class-wcj-empty-cart-button.php:134
959
- msgid "Before Cart"
960
- msgstr "Voor de winkelwagen"
961
-
962
- #: includes/class-wcj-empty-cart-button.php:135
963
- msgid "After Proceed to Checkout button"
964
- msgstr "Na de ga door met afrekenen knop"
965
-
966
- #: includes/class-wcj-empty-cart-button.php:136
967
- msgid "After Cart Totals"
968
- msgstr "Na Winkelwagen totaal"
969
-
970
- #: includes/class-wcj-empty-cart-button.php:144
971
- msgid "Confirmation"
972
- msgstr "Bevestiging"
973
-
974
- #: includes/class-wcj-empty-cart-button.php:149
975
- msgid "No confirmation"
976
- msgstr "Geen bevestiging"
977
-
978
- #: includes/class-wcj-empty-cart-button.php:150
979
- msgid "Confirm by pop up box"
980
- msgstr "Bevestig door een pop up venster"
981
-
982
- #: includes/class-wcj-empty-cart-button.php:158
983
- msgid "Confirmation Text (if enabled)"
984
- msgstr "Bevestingstekst (bij inschakeling)"
985
-
986
- #: includes/class-wcj-empty-cart-button.php:160
987
- msgid "Are you sure?"
988
- msgstr "Weet je het zeker?"
989
-
990
- #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:189
991
- msgid "General"
992
- msgstr "Algemeen"
993
-
994
- #: includes/class-wcj-general.php:24
995
- msgid ""
996
- "Separate custom CSS for front and back end. Shortcodes in Wordpress text widgets."
997
- msgstr ""
998
-
999
- #: includes/class-wcj-general.php:66 includes/class-wcj-shortcodes.php:61
1000
- msgid "Shortcodes Options"
1001
- msgstr "Shortcodes Opties"
1002
-
1003
- #: includes/class-wcj-general.php:73
1004
- msgid "Enable Shortcodes in WordPress Text Widgets"
1005
- msgstr "Schakel shortcodes in bij WordPress Tekst Widgets"
1006
-
1007
- #: includes/class-wcj-general.php:86
1008
- msgid "Custom CSS Options"
1009
- msgstr "Aangepaste CSS opties"
1010
-
1011
- #: includes/class-wcj-general.php:88
1012
- msgid "Another custom CSS, if you need one."
1013
- msgstr "Nog een aangepaste CSS, als je die nodig hebt."
1014
-
1015
- #: includes/class-wcj-general.php:93
1016
- msgid "Custom CSS - Front end (Customers)"
1017
- msgstr "Aangepaste CSS - Voorkant (klanten)"
1018
-
1019
- #: includes/class-wcj-general.php:101
1020
- msgid "Custom CSS - Back end (Admin)"
1021
- msgstr "Aangepaste CSS - Achterkant (Admin)"
1022
-
1023
- #: includes/class-wcj-mini-cart.php:24
1024
- msgid "Mini Cart"
1025
- msgstr "Mini Winkelwagen"
1026
-
1027
- #: includes/class-wcj-mini-cart.php:25
1028
- msgid "Customize WooCommerce mini cart widget."
1029
- msgstr "Aanpassingen WooCommerce mini winkelwagen widget."
1030
-
1031
- #: includes/class-wcj-mini-cart.php:45
1032
- msgid "Mini Cart Custom Info Blocks"
1033
- msgstr "Mini Winkelwagen Aangepaste info Blokken"
1034
-
1035
- #: includes/class-wcj-mini-cart.php:84
1036
- msgid "Before mini cart"
1037
- msgstr "Voor mini winkelwagen"
1038
-
1039
- #: includes/class-wcj-mini-cart.php:85
1040
- msgid "Before buttons"
1041
- msgstr "Voor knoppen"
1042
-
1043
- #: includes/class-wcj-mini-cart.php:86
1044
- msgid "After mini cart"
1045
- msgstr "Na mini winkelwagen"
1046
-
1047
- #: includes/class-wcj-more-button-labels.php:24
1048
- msgid "More Button Labels"
1049
- msgstr "Meer knop labels"
1050
-
1051
- #: includes/class-wcj-more-button-labels.php:25
1052
- msgid "Set WooCommerce \"Place order\" button label."
1053
- msgstr "Stel WooCommerce \"Plaats bestelling\" knop label in."
1054
-
1055
- #: includes/class-wcj-more-button-labels.php:43
1056
- msgid "Place order (Order now) Button"
1057
- msgstr "Plaats bestelling (bestel nu) knop"
1058
-
1059
- #: includes/class-wcj-more-button-labels.php:50
1060
- msgid "leave blank for WooCommerce default"
1061
- msgstr "Laat leeg voor WooCommerce Default"
1062
-
1063
- #: includes/class-wcj-more-button-labels.php:51
1064
- msgid "Button on the checkout page."
1065
- msgstr "Knop op de afrekenpagina."
1066
-
1067
- #: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
1068
- msgid "Remove Old Slugs"
1069
- msgstr "Oude Slugs Verwijderen"
1070
-
1071
- #: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:170
1072
- msgid "Tool removes old slugs/permalinks from database."
1073
- msgstr "Hulpmiddel verwijdert oude slugs/permalinks van de database."
1074
-
1075
- #: includes/class-wcj-old-slugs.php:87
1076
- msgid "Old Slugs Options"
1077
- msgstr "Oude Slugs Opties"
1078
-
1079
- #: includes/class-wcj-old-slugs.php:89
1080
- msgid ""
1081
- "When enabled, the tool is accessible through <a href=\"%sadmin.php?page=wcj-"
1082
- "tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove Old Slugs</a>."
1083
- msgstr ""
1084
-
1085
- #: includes/class-wcj-old-slugs.php:94 includes/class-wcj-old-slugs.php:114
1086
- msgid "Old Slugs"
1087
- msgstr "Oude Slugs"
1088
-
1089
- #: includes/class-wcj-old-slugs.php:96
1090
- msgid "Remove old WooCommerce products slugs."
1091
- msgstr "Verwijder oude WooCommerce producten slugs."
1092
-
1093
- #: includes/class-wcj-old-slugs.php:169
1094
- msgid "WooCommerce Jetpack - Remove Old Product Slugs"
1095
- msgstr "Booster voor WooCommerce - Verwijder oude product slugs"
1096
-
1097
- #: includes/class-wcj-old-slugs.php:175
1098
- msgid "Old products slugs found:"
1099
- msgstr "Oude producten slugs gevonden:"
1100
-
1101
- #: includes/class-wcj-old-slugs.php:183
1102
- msgid "None-products slugs found:"
1103
- msgstr "Geen-product slugs gevonden:"
1104
-
1105
- #: includes/class-wcj-old-slugs.php:190
1106
- msgid "No old slugs found."
1107
- msgstr "Geen oude slugs gevonden."
1108
-
1109
- #: includes/class-wcj-order-custom-statuses.php:24
1110
- msgid "Order Custom Statuses"
1111
- msgstr "Sorteer Aangepaste Statussen"
1112
-
1113
- #: includes/class-wcj-order-custom-statuses.php:25
1114
- msgid "Custom statuses for WooCommerce orders."
1115
- msgstr "Aangepaste statussen voor WooCommerce orders."
1116
-
1117
- #: includes/class-wcj-order-custom-statuses.php:30
1118
- msgctxt "Order status"
1119
- msgid "Pending payment"
1120
- msgstr "In afwachting van betaling [Orderstatus]"
1121
-
1122
- #: includes/class-wcj-order-custom-statuses.php:31
1123
- #: includes/functions/wcj-functions.php:344
1124
- msgctxt "Order status"
1125
- msgid "Processing"
1126
- msgstr "In behandeling [Orderstatus]"
1127
-
1128
- #: includes/class-wcj-order-custom-statuses.php:32
1129
- msgctxt "Order status"
1130
- msgid "On hold"
1131
- msgstr "Op pauze [Orderstatus]"
1132
-
1133
- #: includes/class-wcj-order-custom-statuses.php:33
1134
- #: includes/functions/wcj-functions.php:346
1135
- msgctxt "Order status"
1136
- msgid "Completed"
1137
- msgstr "Afgerond [Orderstatus]"
1138
-
1139
- #: includes/class-wcj-order-custom-statuses.php:34
1140
- #: includes/functions/wcj-functions.php:347
1141
- msgctxt "Order status"
1142
- msgid "Cancelled"
1143
- msgstr "Geannuleerd [Orderstatus]"
1144
-
1145
- #: includes/class-wcj-order-custom-statuses.php:35
1146
- #: includes/functions/wcj-functions.php:348
1147
- msgctxt "Order status"
1148
- msgid "Refunded"
1149
- msgstr "Gecrediteerd [Orderstatus]"
1150
-
1151
- #: includes/class-wcj-order-custom-statuses.php:36
1152
- #: includes/functions/wcj-functions.php:349
1153
- msgctxt "Order status"
1154
- msgid "Failed"
1155
- msgstr "Onsuccesvol [Orderstatus]"
1156
-
1157
- #: includes/class-wcj-order-custom-statuses.php:137
1158
- #: includes/class-wcj-order-custom-statuses.php:149
1159
- #: includes/class-wcj-order-custom-statuses.php:278
1160
- msgid "Custom Statuses"
1161
- msgstr "Aangepaste statussen"
1162
-
1163
- #: includes/class-wcj-order-custom-statuses.php:139
1164
- msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1165
- msgstr ""
1166
- "Hulpmiddel laat je aangepaste statussen voor WooCommerce orders toevoegen of "
1167
- "verwijderen"
1168
-
1169
- #: includes/class-wcj-order-custom-statuses.php:179
1170
- msgid "Status slug is empty. Status not added."
1171
- msgstr "Status slug is leeg. Status niet toegevoegd."
1172
-
1173
- #: includes/class-wcj-order-custom-statuses.php:181
1174
- msgid "The length of status slug must be 17 or less characters."
1175
- msgstr "De lengte van de status slug mag maximaal 17 karakters zijn."
1176
-
1177
- #: includes/class-wcj-order-custom-statuses.php:183
1178
- msgid "Status label is empty. Status not added."
1179
- msgstr "Status label is leeg. Status niet toegevoegd."
1180
-
1181
- #: includes/class-wcj-order-custom-statuses.php:189
1182
- msgid "Duplicate slug. Status not added."
1183
- msgstr "Dupliceer slug. Status niet toegevoegd."
1184
-
1185
- #: includes/class-wcj-order-custom-statuses.php:195
1186
- msgid "New status have been successfully added!"
1187
- msgstr "Nieuwe status is succesvol toegevoegd."
1188
-
1189
- #: includes/class-wcj-order-custom-statuses.php:197
1190
- msgid "Status was not added."
1191
- msgstr "Status is niet toegevoegd."
1192
-
1193
- #: includes/class-wcj-order-custom-statuses.php:213
1194
- msgid "Status have been successfully deleted."
1195
- msgstr "Status is succesvol verwijderd."
1196
-
1197
- #: includes/class-wcj-order-custom-statuses.php:215
1198
- msgid "Delete failed."
1199
- msgstr "Verwijderen niet gelukt."
1200
-
1201
- #: includes/class-wcj-order-custom-statuses.php:218
1202
- msgid "WooCommerce Jetpack - Custom Statuses"
1203
- msgstr "Booster voor WooCommerce - Aangepaste statussen"
1204
-
1205
- #: includes/class-wcj-order-custom-statuses.php:219
1206
- msgid "The tool lets you add or delete any custom status for WooCommerce orders."
1207
- msgstr ""
1208
- "Het hulpmiddel laat je elke aangepaste status voor WooCommerce orders toevoegen of "
1209
- "verwijderen."
1210
-
1211
- #: includes/class-wcj-order-custom-statuses.php:221
1212
- msgid "Statuses"
1213
- msgstr "Statussen"
1214
-
1215
- #: includes/class-wcj-order-custom-statuses.php:224
1216
- msgid "Slug"
1217
- msgstr "Slug"
1218
-
1219
- #: includes/class-wcj-order-custom-statuses.php:225
1220
- #: includes/class-wcj-order-custom-statuses.php:250
1221
- msgid "Label"
1222
- msgstr "Label"
1223
-
1224
- #: includes/class-wcj-order-custom-statuses.php:227
1225
- #: includes/class-wcj-order-custom-statuses.php:237
1226
- msgid "Delete"
1227
- msgstr "Verwijder"
1228
-
1229
- #: includes/class-wcj-order-custom-statuses.php:249
1230
- msgid "Slug (without wc- prefix)"
1231
- msgstr ""
1232
-
1233
- #: includes/class-wcj-order-custom-statuses.php:278
1234
- msgid "This section lets you enable custom statuses tool."
1235
- msgstr "Dit gedeelte schakelt het Aangepaste statussen hulpmiddel in."
1236
-
1237
- #: includes/class-wcj-order-custom-statuses.php:290
1238
- #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1239
- msgid "Default Order Status"
1240
- msgstr "Default Orderstatus"
1241
-
1242
- #: includes/class-wcj-order-custom-statuses.php:291
1243
- #: includes/gateways/class-wc-gateway-wcj-custom.php:120
1244
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
1245
- msgstr ""
1246
- "Schakel aangepaste Status optie in om Aangepaste statussen toe te voegen aan de "
1247
- "lijst."
1248
-
1249
- #: includes/class-wcj-order-custom-statuses.php:292
1250
- msgid ""
1251
- "You can change the default order status here. However payment gateways can change "
1252
- "this status immediatelly on order creation. E.g. BACS gateway will change status "
1253
- "to On-hold."
1254
- msgstr ""
1255
-
1256
- #: includes/class-wcj-order-numbers.php:69
1257
- msgid "Orders Renumerate"
1258
- msgstr "Orders opnieuw nummeren"
1259
-
1260
- #: includes/class-wcj-order-numbers.php:71
1261
- msgid "Tool renumerates all orders."
1262
- msgstr "Hulpmiddel om alle orders opnieuw te nummeren."
1263
-
1264
- #: includes/class-wcj-order-numbers.php:81
1265
- msgid "Renumerate orders"
1266
- msgstr "Opnieuw nummeren orders"
1267
-
1268
- #: includes/class-wcj-order-numbers.php:93
1269
- msgid "Orders successfully renumerated!"
1270
- msgstr "Orders succesvol opnieuw genummerd"
1271
-
1272
- #: includes/class-wcj-order-numbers.php:96
1273
- msgid "WooCommerce Jetpack - Renumerate Orders"
1274
- msgstr "Booster voor WooCommerce - Opnieuw nummeren Orders"
1275
-
1276
- #: includes/class-wcj-order-numbers.php:97
1277
- msgid ""
1278
- "The tool renumerates all orders. Press the button below to renumerate all existing "
1279
- "orders starting from order counter settings in WooCommerce > Settings > Jetpack > "
1280
- "Order Numbers."
1281
- msgstr ""
1282
-
1283
- #: includes/class-wcj-order-numbers.php:163 includes/class-wcj-order-numbers.php:166
1284
- #: includes/class-wcj-order-numbers.php:262
1285
- msgid "Order Numbers"
1286
- msgstr "Ordernummers"
1287
-
1288
- #: includes/class-wcj-order-numbers.php:163
1289
- msgid ""
1290
- "This section lets you enable sequential order numbering, set custom number prefix, "
1291
- "suffix and width."
1292
- msgstr ""
1293
-
1294
- #: includes/class-wcj-order-numbers.php:168
1295
- msgid ""
1296
- "WooCommerce sequential order numbering, custom order number prefix, suffix and "
1297
- "number width."
1298
- msgstr ""
1299
-
1300
- #: includes/class-wcj-order-numbers.php:175
1301
- msgid "Make Order Numbers Sequential"
1302
- msgstr "Maak ordernummers opvolgend"
1303
-
1304
- #: includes/class-wcj-order-numbers.php:183
1305
- msgid "Next Order Number"
1306
- msgstr "Volgend Ordernummer"
1307
-
1308
- #: includes/class-wcj-order-numbers.php:184
1309
- msgid "Next new order will be given this number."
1310
- msgstr "Volgende nieuwe order zal dit nummer krijgen."
1311
-
1312
- #: includes/class-wcj-order-numbers.php:184
1313
- msgid "Use Renumerate Orders tool for existing orders."
1314
- msgstr "Gebruik Opnieuw nummeren Orders Hulpmiddel voor bestaande bestellingen."
1315
-
1316
- #: includes/class-wcj-order-numbers.php:185
1317
- msgid "This will be ignored if sequential order numbering is disabled."
1318
- msgstr "Dit zal worden genegeerd als opvolgende nummering uitgeschakeld is."
1319
-
1320
- #: includes/class-wcj-order-numbers.php:192
1321
- msgid "Order Number Custom Prefix"
1322
- msgstr ""
1323
-
1324
- #: includes/class-wcj-order-numbers.php:194
1325
- msgid ""
1326
- "Prefix before order number (optional). This will change the prefixes for all "
1327
- "existing orders."
1328
- msgstr ""
1329
-
1330
- #: includes/class-wcj-order-numbers.php:204
1331
- msgid "Order Number Date Prefix"
1332
- msgstr ""
1333
-
1334
- #: includes/class-wcj-order-numbers.php:206
1335
- msgid ""
1336
- "Date prefix before order number (optional). This will change the prefixes for all "
1337
- "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
1338
- "date formats can be used. The only exception is using `\\` symbol in date format, "
1339
- "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
1340
- msgstr ""
1341
-
1342
- #: includes/class-wcj-order-numbers.php:216
1343
- msgid "Order Number Width"
1344
- msgstr "Ordernummer breedte"
1345
-
1346
- #: includes/class-wcj-order-numbers.php:218
1347
- msgid ""
1348
- "Minimum width of number without prefix (zeros will be added to the left side). "
1349
- "This will change the minimum width of order number for all existing orders. E.g. "
1350
- "set to 5 to have order number displayed as 00001 instead of 1. Leave zero to "
1351
- "disable."
1352
- msgstr ""
1353
-
1354
- #: includes/class-wcj-order-numbers.php:228
1355
- msgid "Order Number Custom Suffix"
1356
- msgstr ""
1357
-
1358
- #: includes/class-wcj-order-numbers.php:230
1359
- msgid ""
1360
- "Suffix after order number (optional). This will change the suffixes for all "
1361
- "existing orders."
1362
- msgstr ""
1363
-
1364
- #: includes/class-wcj-order-numbers.php:240
1365
- msgid "Order Number Date Suffix"
1366
- msgstr ""
1367
-
1368
- #: includes/class-wcj-order-numbers.php:242
1369
- msgid ""
1370
- "Date suffix after order number (optional). This will change the suffixes for all "
1371
- "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
1372
- "date formats can be used. The only exception is using `\\` symbol in date format, "
1373
- "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
1374
- msgstr ""
1375
-
1376
- #: includes/class-wcj-orders.php:23
1377
- msgid "Orders"
1378
- msgstr "Bestellingen"
1379
-
1380
- #: includes/class-wcj-orders.php:24
1381
- msgid "Minimum WooCommerce order amount; orders auto-complete."
1382
- msgstr "Minimum WooCommerce orderbedrag; orders automatsich afronden."
1383
-
1384
- #: includes/class-wcj-orders.php:77
1385
- msgid "All countries"
1386
- msgstr "Alle landen"
1387
-
1388
- #: includes/class-wcj-orders.php:90 includes/class-wcj-orders.php:262
1389
- msgid "Country"
1390
- msgstr "Land"
1391
-
1392
- #: includes/class-wcj-orders.php:185
1393
- msgid "Order Minimum Amount"
1394
- msgstr "Minimaal bestelbedrag."
1395
-
1396
- #: includes/class-wcj-orders.php:185
1397
- msgid "This section lets you set minimum order amount."
1398
- msgstr "Dit gedeelte laat je een minimaal bestelbedrag instellen."
1399
-
1400
- #: includes/class-wcj-orders.php:188
1401
- msgid "Amount"
1402
- msgstr "Bedrag"
1403
-
1404
- #: includes/class-wcj-orders.php:189
1405
- msgid "Minimum order amount. Set to 0 to disable."
1406
- msgstr "Minimaal bestelbedrag. Zet op 0 om uit te schakelen."
1407
-
1408
- #: includes/class-wcj-orders.php:200
1409
- msgid "Error message"
1410
- msgstr "Foutmelding bericht"
1411
-
1412
- #: includes/class-wcj-orders.php:202 includes/class-wcj-orders.php:222
1413
- msgid ""
1414
- "Message to customer if order is below minimum amount. Default: You must have an "
1415
- "order with a minimum of %s to place your order, your current order total is %s."
1416
- msgstr ""
1417
- "Bericht aan klant als de order onder het minimum bestelbedrag is. Default: Je moet "
1418
- "minimaal voor %s in je winkelwagen hebben, voordat je kunt bestellen. Het "
1419
- "orderbedrag is nu %s."
1420
-
1421
- #: includes/class-wcj-orders.php:212
1422
- msgid "Add notice to cart page also"
1423
- msgstr "Voeg ook een notitie toe aan de winkelwagenpagina"
1424
-
1425
- #: includes/class-wcj-orders.php:213 includes/class-wcj-orders.php:263
1426
- #: includes/class-wcj-purchase-data.php:321
1427
- msgid "Add"
1428
- msgstr "Voeg toe"
1429
-
1430
- #: includes/class-wcj-orders.php:220
1431
- msgid "Message on cart page"
1432
- msgstr "Bericht op winkelwagen pagina"
1433
-
1434
- #: includes/class-wcj-orders.php:232
1435
- msgid "Stop customer from seeing the Checkout page if minimum amount not reached."
1436
- msgstr ""
1437
- "Zorg ervoor dat klanten niet op de afrekenpagina kunnen komen, als het minimum "
1438
- "bestelbedrag nog niet is bereikt."
1439
-
1440
- #: includes/class-wcj-orders.php:233
1441
- msgid "Redirect back to Cart page"
1442
- msgstr "Omleiding terug naar winkelwagenpagina."
1443
-
1444
- #: includes/class-wcj-orders.php:241
1445
- msgid "Orders Auto-Complete"
1446
- msgstr "Orders automatisch afronden"
1447
-
1448
- #: includes/class-wcj-orders.php:241
1449
- msgid "This section lets you enable orders auto-complete function."
1450
- msgstr "Dit gedeelte schakelt de order automatisch afronden optie in."
1451
-
1452
- #: includes/class-wcj-orders.php:244
1453
- msgid "Auto-complete all WooCommerce orders"
1454
- msgstr "Automatisch afronden van alle WooCommerce orders"
1455
-
1456
- #: includes/class-wcj-orders.php:246
1457
- msgid ""
1458
- "E.g. if you sell digital products then you are not shipping anything and you may "
1459
- "want auto-complete all your orders."
1460
- msgstr ""
1461
- "Oftewel; als je digitale producten verkoopt en je dus geen verzending nodig hebt, "
1462
- "kun je alle orders automatisch laten afronden."
1463
-
1464
- #: includes/class-wcj-orders.php:255 includes/class-wcj-purchase-data.php:314
1465
- msgid "Orders List Custom Columns"
1466
- msgstr "Lijst van Orders aangepaste Kolommen"
1467
-
1468
- #: includes/class-wcj-orders.php:257 includes/class-wcj-purchase-data.php:316
1469
- msgid "This section lets you add custom columns to WooCommerce orders list."
1470
- msgstr ""
1471
- "Dit gedeelte laat je aangepaste kolommen toevoegen aan WooCommerce orderlijst."
1472
-
1473
- #: includes/class-wcj-payment-gateways-fees.php:24
1474
- msgid "Payment Gateways Fees"
1475
- msgstr ""
1476
-
1477
- #: includes/class-wcj-payment-gateways-fees.php:25
1478
- msgid "Enable extra fees for WooCommerce payment gateways."
1479
- msgstr ""
1480
-
1481
- #: includes/class-wcj-payment-gateways-fees.php:127
1482
- msgid "Payment Gateways Fees Options"
1483
- msgstr ""
1484
-
1485
- #: includes/class-wcj-payment-gateways-fees.php:129
1486
- msgid "This section lets you set extra fees for payment gateways."
1487
- msgstr ""
1488
-
1489
- #: includes/class-wcj-payment-gateways-fees.php:148
1490
- msgid "Fee title to show to customer."
1491
- msgstr "Toeslag titel om te tonen aan klant."
1492
-
1493
- #: includes/class-wcj-payment-gateways-fees.php:157
1494
- msgid "Fee type."
1495
- msgstr "Toeslag soort"
1496
-
1497
- #: includes/class-wcj-payment-gateways-fees.php:158
1498
- msgid "Percent or fixed value."
1499
- msgstr "Percentage of vast bedrag."
1500
-
1501
- #: includes/class-wcj-payment-gateways-fees.php:165
1502
- msgid "Fixed"
1503
- msgstr "Vaste"
1504
-
1505
- #: includes/class-wcj-payment-gateways-fees.php:166
1506
- msgid "Percent"
1507
- msgstr "Procent"
1508
-
1509
- #: includes/class-wcj-payment-gateways-fees.php:172
1510
- msgid "Fee value."
1511
- msgstr "Toeslag bedrag"
1512
-
1513
- #: includes/class-wcj-payment-gateways-fees.php:173
1514
- msgid "The value."
1515
- msgstr "De waarde."
1516
-
1517
- #: includes/class-wcj-payment-gateways-fees.php:185
1518
- msgid "Minimum cart amount for adding the fee."
1519
- msgstr "Minimum winkelwagenbedrag om de toeslag toe te voegen."
1520
-
1521
- #: includes/class-wcj-payment-gateways-fees.php:186
1522
- #: includes/class-wcj-payment-gateways-fees.php:199
1523
- msgid "Set 0 to disable."
1524
- msgstr "Stel 0 in om uit te schakelen."
1525
-
1526
- #: includes/class-wcj-payment-gateways-fees.php:198
1527
- msgid "Maximum cart amount for adding the fee."
1528
- msgstr "Maximum winkelwagenbedrag om de toeslag toe te voegen."
1529
-
1530
- #: includes/class-wcj-payment-gateways-fees.php:211
1531
- msgid "Round the fee value before adding to the cart."
1532
- msgstr "Rond de toeslag af voordat deze wordt toegevoegd aan de winkelwagen."
1533
-
1534
- #: includes/class-wcj-payment-gateways-fees.php:220
1535
- msgid "If rounding is enabled, set precision here."
1536
- msgstr "Als afronding is ingeschakeld, stel hier het aantal decimalen in."
1537
-
1538
- #: includes/class-wcj-payment-gateways-fees.php:233
1539
- msgid "Is taxable?"
1540
- msgstr ""
1541
-
1542
- #: includes/class-wcj-payment-gateways-fees.php:244
1543
- msgid "Tax Class (only if Taxable selected)."
1544
- msgstr ""
1545
-
1546
- #: includes/class-wcj-payment-gateways-fees.php:249
1547
- msgid "Standard Rate"
1548
- msgstr ""
1549
-
1550
- #: includes/class-wcj-payment-gateways-icons.php:24
1551
- msgid "Payment Gateways Icons"
1552
- msgstr ""
1553
-
1554
- #: includes/class-wcj-payment-gateways-icons.php:25
1555
- msgid "Change icons (images) for all default WooCommerce payment gateways."
1556
- msgstr ""
1557
-
1558
- #: includes/class-wcj-payment-gateways-icons.php:69
1559
- msgid "Default WooCommerce Payment Gateways Icons"
1560
- msgstr ""
1561
-
1562
- #: includes/class-wcj-payment-gateways-icons.php:71
1563
- #: includes/gateways/class-wc-gateway-wcj-custom.php:84
1564
- msgid ""
1565
- "If you want to show an image next to the gateway's name on the frontend, enter a "
1566
- "URL to an image."
1567
- msgstr ""
1568
-
1569
- #: includes/class-wcj-payment-gateways-per-category.php:24
1570
- msgid "Payment Gateways per Category"
1571
- msgstr ""
1572
-
1573
- #: includes/class-wcj-payment-gateways-per-category.php:25
1574
- msgid ""
1575
- "Show gateway only if there is product of selected category in WooCommerce cart."
1576
- msgstr ""
1577
-
1578
- #: includes/class-wcj-payment-gateways-per-category.php:93
1579
- msgid "WooCommerce Jetpack: Payment Gateways per Category Options"
1580
- msgstr ""
1581
-
1582
- #: includes/class-wcj-payment-gateways-per-category.php:111
1583
- msgid "Show gateway only if there is product of selected category in cart."
1584
- msgstr ""
1585
-
1586
- #: includes/class-wcj-payment-gateways.php:25
1587
- msgid "Custom Payment Gateways"
1588
- msgstr ""
1589
-
1590
- #: includes/class-wcj-payment-gateways.php:26
1591
- msgid "Add multiple custom payment gateways to WooCommerce."
1592
- msgstr ""
1593
-
1594
- #: includes/class-wcj-payment-gateways.php:42
1595
- msgid "Custom Payment Gateways Options"
1596
- msgstr ""
1597
-
1598
- #: includes/class-wcj-payment-gateways.php:45
1599
- msgid "Number of Gateways"
1600
- msgstr ""
1601
-
1602
- #: includes/class-wcj-payment-gateways.php:47
1603
- msgid ""
1604
- "Number of custom payments gateways to be added. All settings for each new gateway "
1605
- "are in WooCommerce > Settings > Checkout."
1606
- msgstr ""
1607
-
1608
- #: includes/class-wcj-pdf-invoices.php:66
1609
- msgid "Payment Gateways Attach PDF Invoice V1 Options"
1610
- msgstr ""
1611
-
1612
- #: includes/class-wcj-pdf-invoices.php:66
1613
- msgid "This section lets you choose when to attach PDF invoice to customers emails."
1614
- msgstr ""
1615
- "Dit gedeelte laat je kiezen wanneer er een PDF factuur bijlage moet worden "
1616
- "toegevoegd aan emails van klanten."
1617
-
1618
- #: includes/class-wcj-pdf-invoices.php:76
1619
- msgid "Attach PDF invoice."
1620
- msgstr "Voeg een PDF factuur toe."
1621
-
1622
- #: includes/class-wcj-pdf-invoices.php:208 includes/class-wcj-pdf-invoices.php:213
1623
- #: includes/functions/wcj-invoicing-functions.php:10
1624
- msgid "Invoice"
1625
- msgstr "Factuur"
1626
-
1627
- #: includes/class-wcj-pdf-invoices.php:371
1628
- #: includes/classes/class-wcj-pdf-invoice.php:287
1629
- msgid "Unexpected error"
1630
- msgstr "Onverwachte foutmelding"
1631
-
1632
- #: includes/class-wcj-pdf-invoices.php:891 includes/class-wcj-pdf-invoices.php:897
1633
- msgid "PDF Invoice"
1634
- msgstr "PDF factuur"
1635
-
1636
- #: includes/class-wcj-pdf-invoices.php:922
1637
- msgid "PDF Invoices Options"
1638
- msgstr "PDF factuur opties"
1639
-
1640
- #: includes/class-wcj-pdf-invoices.php:925 includes/class-wcj-pdf-invoices.php:1437
1641
- msgid "PDF Invoices"
1642
- msgstr "PDF Facturen"
1643
-
1644
- #: includes/class-wcj-pdf-invoices.php:925
1645
- msgid "depreciated"
1646
- msgstr ""
1647
-
1648
- #: includes/class-wcj-pdf-invoices.php:927
1649
- msgid "Add PDF invoices for the WooCommerce store owners and for the customers."
1650
- msgstr ""
1651
- "Voeg PDF facturen toe voor de WooCommerce winkeleigenaren en voor de klanten."
1652
-
1653
- #: includes/class-wcj-pdf-invoices.php:935
1654
- msgid "Invoice Header"
1655
- msgstr "Factuur koptekst"
1656
-
1657
- #: includes/class-wcj-pdf-invoices.php:935
1658
- msgid ""
1659
- "This section lets you set texts for required invoice number and date, and optional "
1660
- "logo, header text, invoice due and fulfillment dates."
1661
- msgstr ""
1662
-
1663
- #: includes/class-wcj-pdf-invoices.php:938
1664
- msgid "Your Logo URL"
1665
- msgstr "Jouw Logo URL"
1666
-
1667
- #: includes/class-wcj-pdf-invoices.php:939
1668
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:54
1669
- msgid ""
1670
- "Enter a URL to an image you want to show in the invoice's header. Upload your "
1671
- "image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1672
- msgstr ""
1673
- "Voer een URL naar een plaatje toe die je wilt weergeven in de factuur kop. Upload "
1674
- "een bestand met <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1675
-
1676
- #: includes/class-wcj-pdf-invoices.php:940 includes/class-wcj-pdf-invoices.php:949
1677
- #: includes/class-wcj-pdf-invoices.php:969 includes/class-wcj-pdf-invoices.php:979
1678
- #: includes/class-wcj-pdf-invoices.php:998 includes/class-wcj-pdf-invoices.php:1018
1679
- #: includes/class-wcj-pdf-invoices.php:1091 includes/class-wcj-pdf-invoices.php:1126
1680
- #: includes/class-wcj-pdf-invoices.php:1177 includes/class-wcj-pdf-invoices.php:1186
1681
- #: includes/class-wcj-pdf-invoices.php:1195 includes/class-wcj-pdf-invoices.php:1204
1682
- #: includes/class-wcj-pdf-invoices.php:1213 includes/class-wcj-pdf-invoices.php:1222
1683
- #: includes/class-wcj-pdf-invoices.php:1302 includes/class-wcj-pdf-invoices.php:1311
1684
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:55
1685
- msgid "Leave blank to disable"
1686
- msgstr "Laat leeg om uit te schakelen"
1687
-
1688
- #: includes/class-wcj-pdf-invoices.php:948
1689
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:74
1690
- msgid "Header Text"
1691
- msgstr "Koptekst"
1692
-
1693
- #: includes/class-wcj-pdf-invoices.php:950
1694
- msgid "Default: INVOICE"
1695
- msgstr "Default: FACTUUR"
1696
-
1697
- #: includes/class-wcj-pdf-invoices.php:952
1698
- msgid "INVOICE"
1699
- msgstr "FACTUUR"
1700
-
1701
- #: includes/class-wcj-pdf-invoices.php:958
1702
- msgid "Invoice Number"
1703
- msgstr "Factuurnummer"
1704
-
1705
- #: includes/class-wcj-pdf-invoices.php:959
1706
- msgid "Default: Invoice number"
1707
- msgstr "Default: Factuurnummer"
1708
-
1709
- #: includes/class-wcj-pdf-invoices.php:961
1710
- msgid "Invoice number"
1711
- msgstr "Factuurnummer"
1712
-
1713
- #: includes/class-wcj-pdf-invoices.php:967
1714
- msgid "Order Date"
1715
- msgstr "Orderdatum"
1716
-
1717
- #: includes/class-wcj-pdf-invoices.php:968
1718
- msgid "Default: Order date"
1719
- msgstr "Default: Orderdatum"
1720
-
1721
- #: includes/class-wcj-pdf-invoices.php:971
1722
- msgid "Order date"
1723
- msgstr "Orderdatum"
1724
-
1725
- #: includes/class-wcj-pdf-invoices.php:977
1726
- msgid "Order Time"
1727
- msgstr "Ordertijd"
1728
-
1729
- #: includes/class-wcj-pdf-invoices.php:978
1730
- msgid "Default: Order time"
1731
- msgstr "Default: Ordertijd"
1732
-
1733
- #: includes/class-wcj-pdf-invoices.php:981
1734
- msgid "Order time"
1735
- msgstr "Ordertijd"
1736
-
1737
- #: includes/class-wcj-pdf-invoices.php:987
1738
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:110
1739
- msgid "Invoice Date"
1740
- msgstr "Factuurdatum"
1741
-
1742
- #: includes/class-wcj-pdf-invoices.php:988
1743
- msgid "Default: Invoice date"
1744
- msgstr "Default: Factuurdatum"
1745
-
1746
- #: includes/class-wcj-pdf-invoices.php:990
1747
- msgid "Invoice date"
1748
- msgstr "Factuurdatum"
1749
-
1750
- #: includes/class-wcj-pdf-invoices.php:997
1751
- msgid "Default: Invoice due date"
1752
- msgstr "Default: Uiterste betaaldatum"
1753
-
1754
- #: includes/class-wcj-pdf-invoices.php:1000
1755
- msgid "Invoice due date"
1756
- msgstr "Uiterste betaaldatum"
1757
-
1758
- #: includes/class-wcj-pdf-invoices.php:1007 includes/class-wcj-pdf-invoices.php:1027
1759
- msgid "days"
1760
- msgstr "dagen"
1761
-
1762
- #: includes/class-wcj-pdf-invoices.php:1017
1763
- msgid "Default: Invoice fulfillment date"
1764
- msgstr ""
1765
-
1766
- #: includes/class-wcj-pdf-invoices.php:1020
1767
- msgid "Invoice fulfillment date"
1768
- msgstr ""
1769
-
1770
- #: includes/class-wcj-pdf-invoices.php:1036
1771
- msgid "Additional Header"
1772
- msgstr "Extra koptekst"
1773
-
1774
- #: includes/class-wcj-pdf-invoices.php:1037
1775
- msgid ""
1776
- "Additional header - will be displayed above all data on invoice. You can use html "
1777
- "and/or shortcodes here."
1778
- msgstr ""
1779
- "Extra koptekst - wordt weergegeven boven alle data op de factuur. Je kunt HTML en/"
1780
- "of shortcodes gebruiken."
1781
-
1782
- #: includes/class-wcj-pdf-invoices.php:1046
1783
- msgid "Seller and Buyer Info"
1784
- msgstr "Verkoper en koper Info"
1785
-
1786
- #: includes/class-wcj-pdf-invoices.php:1049 includes/class-wcj-pdf-invoices.php:1052
1787
- #: includes/class-wcj-purchase-data.php:177
1788
- msgid "Seller"
1789
- msgstr "Verkoper"
1790
-
1791
- #: includes/class-wcj-pdf-invoices.php:1058
1792
- msgid "Your business information"
1793
- msgstr "Jouw bedrijfsinformatie"
1794
-
1795
- #: includes/class-wcj-pdf-invoices.php:1060
1796
- msgid "New lines are added automatically."
1797
- msgstr "Nieuwe regels worden automatisch toegevoegd."
1798
-
1799
- #: includes/class-wcj-pdf-invoices.php:1062
1800
- msgid "<strong>Company Name</strong>"
1801
- msgstr "<strong>Bedrijfsnaam</strong>"
1802
-
1803
- #: includes/class-wcj-pdf-invoices.php:1068 includes/class-wcj-pdf-invoices.php:1071
1804
- msgid "Buyer"
1805
- msgstr "Koper"
1806
-
1807
- #: includes/class-wcj-pdf-invoices.php:1078 includes/class-wcj-pdf-invoices.php:1084
1808
- msgid "Items"
1809
- msgstr "Producten"
1810
-
1811
- #: includes/class-wcj-pdf-invoices.php:1081
1812
- msgid "Items Table Heading Text"
1813
- msgstr "Producten tabel koptekst"
1814
-
1815
- #: includes/class-wcj-pdf-invoices.php:1090
1816
- msgid "Shipping as Item"
1817
- msgstr "Verzendkosten als product"
1818
-
1819
- #: includes/class-wcj-pdf-invoices.php:1092
1820
- msgid "Display shipping as item"
1821
- msgstr "Laat verzendkosten zien als product"
1822
-
1823
- #: includes/class-wcj-pdf-invoices.php:1110 includes/class-wcj-pdf-invoices.php:1118
1824
- msgid "Add shipping method info"
1825
- msgstr "Voeg verzendmethode informatie toe"
1826
-
1827
- #: includes/class-wcj-pdf-invoices.php:1117
1828
- msgid "Do not add shipping method info"
1829
- msgstr "Voeg geen verzendmethode informatie toe"
1830
-
1831
- #: includes/class-wcj-pdf-invoices.php:1119
1832
- msgid "Replace with shipping method info"
1833
- msgstr "Vervang verzendmethode informatie"
1834
-
1835
- #: includes/class-wcj-pdf-invoices.php:1125
1836
- msgid "Discount as Item"
1837
- msgstr "Korting als product"
1838
-
1839
- #: includes/class-wcj-pdf-invoices.php:1127
1840
- msgid "Display discount as item"
1841
- msgstr "Toon korting als product"
1842
-
1843
- #: includes/class-wcj-pdf-invoices.php:1137
1844
- msgid "Items Columns"
1845
- msgstr "Productkolommen"
1846
-
1847
- #: includes/class-wcj-pdf-invoices.php:1137
1848
- msgid ""
1849
- "This section lets you set column names in invoice items table. You can disable "
1850
- "some columns by leaving blank column name."
1851
- msgstr ""
1852
- "Dit gedeelte laat je kolomnamen invoeren in de factuur productentabel. Je kunt "
1853
- "kolommen uitschakelen door de kolomnaam leeg te laten."
1854
-
1855
- #: includes/class-wcj-pdf-invoices.php:1140 includes/class-wcj-pdf-invoices.php:1143
1856
- msgid "Nr."
1857
- msgstr "Nr."
1858
-
1859
- #: includes/class-wcj-pdf-invoices.php:1149 includes/class-wcj-pdf-invoices.php:1152
1860
- msgid "Item Name"
1861
- msgstr "Productnaam"
1862
-
1863
- #: includes/class-wcj-pdf-invoices.php:1158
1864
- msgid "Item Name Additional Info"
1865
- msgstr "Productnaam extra info"
1866
-
1867
- #: includes/class-wcj-pdf-invoices.php:1159
1868
- msgid ""
1869
- "Here you can add more info to item's name column (e.g. sku). Default is (SKU: %sku"
1870
- "%)"
1871
- msgstr ""
1872
-
1873
- #: includes/class-wcj-pdf-invoices.php:1161
1874
- msgid "(SKU: %sku%)"
1875
- msgstr ""
1876
-
1877
- #: includes/class-wcj-pdf-invoices.php:1167 includes/class-wcj-pdf-invoices.php:1170
1878
- msgid "Qty"
1879
- msgstr ""
1880
-
1881
- #: includes/class-wcj-pdf-invoices.php:1176
1882
- msgid "Single Item Price (TAX excl.)"
1883
- msgstr "Enkel productprijs (Excl. BTW)"
1884
-
1885
- #: includes/class-wcj-pdf-invoices.php:1179
1886
- msgid "Price (TAX excl.)"
1887
- msgstr "Prijs (Excl. BTW)"
1888
-
1889
- #: includes/class-wcj-pdf-invoices.php:1185
1890
- msgid "Single Item TAX"
1891
- msgstr "Enkel product BTW"
1892
-
1893
- #: includes/class-wcj-pdf-invoices.php:1188
1894
- msgid "TAX"
1895
- msgstr "BTW"
1896
-
1897
- #: includes/class-wcj-pdf-invoices.php:1194
1898
- msgid "Single Item Price (TAX incl.)"
1899
- msgstr "Enkel productprijs (Incl. BTW)"
1900
-
1901
- #: includes/class-wcj-pdf-invoices.php:1197
1902
- msgid "Price (TAX incl.)"
1903
- msgstr "Prijs (inc. BTW)"
1904
-
1905
- #: includes/class-wcj-pdf-invoices.php:1203 includes/class-wcj-pdf-invoices.php:1206
1906
- msgid "Sum (TAX excl.)"
1907
- msgstr "Totaal (excl. BTW)"
1908
-
1909
- #: includes/class-wcj-pdf-invoices.php:1212
1910
- msgid "Tax Percent"
1911
- msgstr "BTW percentage"
1912
-
1913
- #: includes/class-wcj-pdf-invoices.php:1215
1914
- msgid "Taxes %"
1915
- msgstr "BTW %"
1916
-
1917
- #: includes/class-wcj-pdf-invoices.php:1221 includes/class-wcj-pdf-invoices.php:1224
1918
- #: includes/class-wcj-pdf-invoices.php:1282
1919
- msgid "Taxes"
1920
- msgstr "BTW"
1921
-
1922
- #: includes/class-wcj-pdf-invoices.php:1230 includes/class-wcj-pdf-invoices.php:1233
1923
- msgid "Sum (TAX incl.)"
1924
- msgstr "Totaal (incl. BTW)"
1925
-
1926
- #: includes/class-wcj-pdf-invoices.php:1240
1927
- msgid "Totals"
1928
- msgstr "Totaal"
1929
-
1930
- #: includes/class-wcj-pdf-invoices.php:1240
1931
- msgid "This section lets you set texts for totals table."
1932
- msgstr "Dit gedeelte laat je teksten voor totaaltabel instellen."
1933
-
1934
- #: includes/class-wcj-pdf-invoices.php:1243 includes/class-wcj-pdf-invoices.php:1246
1935
- msgid "Order Subtotal"
1936
- msgstr "Order Subtotaal"
1937
-
1938
- #: includes/class-wcj-pdf-invoices.php:1244
1939
- msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1940
- msgstr "Order Subtotaal = Totaal - BTW - Verzendkosten - korting"
1941
-
1942
- #: includes/class-wcj-pdf-invoices.php:1252
1943
- msgid "Order Shipping Price"
1944
- msgstr "Order verzendkosten"
1945
-
1946
- #: includes/class-wcj-pdf-invoices.php:1261
1947
- msgid "Total Discount"
1948
- msgstr "Totale korting"
1949
-
1950
- #: includes/class-wcj-pdf-invoices.php:1264
1951
- msgid "Discount"
1952
- msgstr "Korting"
1953
-
1954
- #: includes/class-wcj-pdf-invoices.php:1270 includes/class-wcj-pdf-invoices.php:1273
1955
- msgid "Order Total (TAX excl.)"
1956
- msgstr "Order Totaal (Excl. BTW)"
1957
-
1958
- #: includes/class-wcj-pdf-invoices.php:1271
1959
- msgid ""
1960
- "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping is not "
1961
- "equal to zero. In other words: if \"Order Total (TAX excl.)\" not equal to \"Order "
1962
- "Subtotal\""
1963
- msgstr ""
1964
- "Order Totaal (Excl. BTW) = Totaal - BTW. Wordt alleen weergegeven als korting of "
1965
- "verzendkosten niet gelijk zijn aan nul. In andere woorden: als \"Order Totaal "
1966
- "(Excl. BTW)\" niet gelijk is aan \"Order Subtotaal\"."
1967
-
1968
- #: includes/class-wcj-pdf-invoices.php:1279
1969
- msgid "Order Total Taxes"
1970
- msgstr "Order Totaal BTW"
1971
-
1972
- #: includes/class-wcj-pdf-invoices.php:1288 includes/class-wcj-pdf-invoices.php:1291
1973
- #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:116
1974
- msgid "Order Total"
1975
- msgstr "Order Totaal"
1976
-
1977
- #: includes/class-wcj-pdf-invoices.php:1298
1978
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:24
1979
- msgid "Footer"
1980
- msgstr "Voettekst"
1981
-
1982
- #: includes/class-wcj-pdf-invoices.php:1301 includes/class-wcj-pdf-invoices.php:1304
1983
- msgid "Payment Method"
1984
- msgstr "Betaalmethode"
1985
-
1986
- #: includes/class-wcj-pdf-invoices.php:1310 includes/class-wcj-pdf-invoices.php:1313
1987
- msgid "Shipping Method"
1988
- msgstr "Verzendmethode"
1989
-
1990
- #: includes/class-wcj-pdf-invoices.php:1319 includes/class-wcj-pdf-invoices.php:1322
1991
- msgid "Shipping Address"
1992
- msgstr "Verzendadres"
1993
-
1994
- #: includes/class-wcj-pdf-invoices.php:1320
1995
- msgid ""
1996
- "Will be displayed only if customer's shipping address differs from billing "
1997
- "address. Leave blank to disable"
1998
- msgstr ""
1999
- "Wordt alleen weergegeven als het verzendadres anders is dan het factuuradres. Laat "
2000
- "leeg om uit te schakelen."
2001
-
2002
- #: includes/class-wcj-pdf-invoices.php:1328
2003
- msgid "Additional Footer"
2004
- msgstr "Extra voettekst"
2005
-
2006
- #: includes/class-wcj-pdf-invoices.php:1329
2007
- msgid ""
2008
- "Additional footer - will be displayed below all other data on invoice. You can use "
2009
- "html and/or shortcodes here."
2010
- msgstr ""
2011
- "Extra voettekst - wordt weergegeven onder alle data op factuur. Je kunt HTML en/of "
2012
- "shortcodes gebruiken."
2013
-
2014
- #: includes/class-wcj-pdf-invoices.php:1338
2015
- msgid "General Options"
2016
- msgstr "Algemene opties"
2017
-
2018
- #: includes/class-wcj-pdf-invoices.php:1341
2019
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:54
2020
- msgid "Font Family"
2021
- msgstr ""
2022
-
2023
- #: includes/class-wcj-pdf-invoices.php:1357
2024
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:70
2025
- msgid "Font Size"
2026
- msgstr "Lettergrootte"
2027
-
2028
- #: includes/class-wcj-pdf-invoices.php:1358
2029
- msgid "Default: 8"
2030
- msgstr "Default: 8"
2031
-
2032
- #: includes/class-wcj-pdf-invoices.php:1365
2033
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:79
2034
- msgid "Make Font Shadowed"
2035
- msgstr ""
2036
-
2037
- #: includes/class-wcj-pdf-invoices.php:1366
2038
- msgid "Default: Yes"
2039
- msgstr "Standaard: Ja"
2040
-
2041
- #: includes/class-wcj-pdf-invoices.php:1373
2042
- #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:46
2043
- msgid "CSS"
2044
- msgstr "CSS"
2045
-
2046
- #: includes/class-wcj-pdf-invoices.php:1387
2047
- msgid "PDF Invoices for Customers (in My Account)"
2048
- msgstr "PDF facturen voor klanten (in Mijn Account)"
2049
-
2050
- #: includes/class-wcj-pdf-invoices.php:1388
2051
- msgid "Enable the PDF Invoices in customers account"
2052
- msgstr "Schakel de PDF facturen voor klanten in Mijn Account in)"
2053
-
2054
- #: includes/class-wcj-pdf-invoices.php:1397
2055
- msgid "PDF Invoices for Customers (Email attachment)"
2056
- msgstr "PDF Facturen voor klanten (Email bijlage)"
2057
-
2058
- #: includes/class-wcj-pdf-invoices.php:1398
2059
- msgid ""
2060
- "Enable the PDF Invoices attachment files in customers email on order completed"
2061
- msgstr "Schakel de PDF factuur bijlage in email klant bij complete order in."
2062
-
2063
- #: includes/class-wcj-pdf-invoices.php:1417
2064
- msgid "Enable Save as"
2065
- msgstr "Schakel in Opslaan als"
2066
-
2067
- #: includes/class-wcj-pdf-invoices.php:1418
2068
- msgid "Enable save as pdf instead of view pdf"
2069
- msgstr "Schakel in Opslaan als in plaats van bekijken PDF"
2070
-
2071
- #: includes/class-wcj-pdf-invoicing.php:143
2072
- msgid "PDF Invoicing General Options"
2073
- msgstr "PDF facturering Algemene Opties"
2074
-
2075
- #: includes/class-wcj-pdf-invoicing.php:146
2076
- msgid "PDF Invoicing"
2077
- msgstr "PDF Facturering"
2078
-
2079
- #: includes/class-wcj-pdf-invoicing.php:148
2080
- msgid "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2081
- msgstr ""
2082
-
2083
- #: includes/class-wcj-pdf-invoicing.php:157
2084
- msgid "Disabled"
2085
- msgstr "Uitgeschakeld"
2086
-
2087
- #: includes/class-wcj-pdf-invoicing.php:158
2088
- msgid "Create on New Order"
2089
- msgstr "Creëer bij Nieuwe Order"
2090
-
2091
- #: includes/class-wcj-pdf-invoicing.php:161
2092
- msgid "Create on Order Status"
2093
- msgstr "Creëer bij Order Status"
2094
-
2095
- #: includes/class-wcj-price-by-country.php:62
2096
- msgid "Price by Country Options"
2097
- msgstr "Prijs per Land opties"
2098
-
2099
- #: includes/class-wcj-price-by-country.php:64
2100
- msgid ""
2101
- "Change product's price and currency by customer's country. Customer's country is "
2102
- "detected automatically by IP, or selected by customer manually."
2103
- msgstr ""
2104
-
2105
- #: includes/class-wcj-price-by-country.php:68
2106
- #: includes/class-wcj-price-by-country.php:295
2107
- msgid "Prices and Currencies by Country"
2108
- msgstr "Prijzen en valuta per Land"
2109
-
2110
- #: includes/class-wcj-price-by-country.php:70
2111
- msgid ""
2112
- "Change WooCommerce product price and currency automatically by customer's country."
2113
- msgstr ""
2114
-
2115
- #: includes/class-wcj-price-by-country.php:77
2116
- msgid "Customer Country Detection Method"
2117
- msgstr ""
2118
-
2119
- #: includes/class-wcj-price-by-country.php:79
2120
- msgid ""
2121
- "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
2122
- "shortcode to display country selection list on frontend."
2123
- msgstr ""
2124
-
2125
- #: includes/class-wcj-price-by-country.php:83
2126
- msgid "by IP"
2127
- msgstr "Via IP"
2128
-
2129
- #: includes/class-wcj-price-by-country.php:84
2130
- msgid "by user selection"
2131
- msgstr "Per gebruiker selectie"
2132
-
2133
- #: includes/class-wcj-price-by-country.php:90
2134
- msgid "Price Rounding"
2135
- msgstr "Prijsafronding"
2136
-
2137
- #: includes/class-wcj-price-by-country.php:91
2138
- msgid "If you choose to multiply price, set rounding options here."
2139
- msgstr ""
2140
- "Als je ervoor kiest om de prijs te vermenigvuldigen, stel hier de afrondopties in."
2141
-
2142
- #: includes/class-wcj-price-by-country.php:96
2143
- msgid "No rounding"
2144
- msgstr "Niet afronden"
2145
-
2146
- #: includes/class-wcj-price-by-country.php:97
2147
- msgid "Round"
2148
- msgstr "Afronden"
2149
-
2150
- #: includes/class-wcj-price-by-country.php:98
2151
- msgid "Round down"
2152
- msgstr "Omlaag afronden"
2153
-
2154
- #: includes/class-wcj-price-by-country.php:99
2155
- msgid "Round up"
2156
- msgstr "Omhoog afronden"
2157
-
2158
- #: includes/class-wcj-price-by-country.php:104
2159
- msgid "Price by Country on per Product Basis"
2160
- msgstr ""
2161
-
2162
- #: includes/class-wcj-price-by-country.php:106
2163
- msgid "This will add meta boxes in product edit."
2164
- msgstr ""
2165
-
2166
- #: includes/class-wcj-price-by-country.php:114
2167
- msgid "Country Groups"
2168
- msgstr "Landen groepen"
2169
-
2170
- #: includes/class-wcj-price-by-country.php:117
2171
- msgid "Groups Number"
2172
- msgstr "Groepsnumme"
2173
-
2174
- #: includes/class-wcj-price-by-country.php:133
2175
- msgid ""
2176
- "Countries. List of comma separated country codes.<br>For country codes and "
2177
- "predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
2178
- "currencies-by-customers-country\">WooJetpack.com</a>"
2179
- msgstr ""
2180
-
2181
- #: includes/class-wcj-price-by-country.php:154
2182
- msgid "Currency"
2183
- msgstr "Valuta"
2184
-
2185
- #: includes/class-wcj-price-by-country.php:164
2186
- msgid "Exchange Rates"
2187
- msgstr ""
2188
-
2189
- #: includes/class-wcj-price-by-country.php:167
2190
- msgid "Exchange Rates Updates"
2191
- msgstr ""
2192
-
2193
- #: includes/class-wcj-price-by-country.php:172
2194
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:23
2195
- msgid "Enter Rates Manually"
2196
- msgstr ""
2197
-
2198
- #: includes/class-wcj-price-by-country.php:173
2199
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:24
2200
- msgid "Automatically: Update Hourly"
2201
- msgstr "Automatisch: Elk uur updaten"
2202
-
2203
- #: includes/class-wcj-price-by-country.php:174
2204
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:25
2205
- msgid "Automatically: Update Twice Daily"
2206
- msgstr "Automatisch: Twee keer per dag updaten"
2207
-
2208
- #: includes/class-wcj-price-by-country.php:175
2209
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:26
2210
- msgid "Automatically: Update Daily"
2211
- msgstr "Automatisch: Elke dag updaten"
2212
-
2213
- #: includes/class-wcj-price-by-country.php:176
2214
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:27
2215
- msgid "Automatically: Update Weekly"
2216
- msgstr "Automatisch: Elke week updaten"
2217
-
2218
- #: includes/class-wcj-price-by-country.php:177
2219
- #: includes/price-by-country/class-wcj-exchange-rates-crons.php:28
2220
- msgid "Automatically: Update Every Minute"
2221
- msgstr "Automatisch: Elke minuut updaten"
2222
-
2223
- #: includes/class-wcj-price-by-country.php:199
2224
- msgid "Multiply Price by"
2225
- msgstr "Vermenigvuldig prijs met"
2226
-
2227
- #: includes/class-wcj-price-by-country.php:207
2228
- msgid "Grab %s rate from Yahoo.com"
2229
- msgstr ""
2230
-
2231
- #: includes/class-wcj-price-by-country.php:222
2232
- #: includes/price-by-country/class-wcj-price-by-country-local.php:141
2233
- msgid "Make empty price"
2234
- msgstr "Maak prijs leeg"
2235
-
2236
- #: includes/class-wcj-price-labels.php:117
2237
- msgid "Migrate from Custom Price Labels (Pro)"
2238
- msgstr "Migreer van Aangepaste Prijslabels (Pro)"
2239
-
2240
- #: includes/class-wcj-price-labels.php:119
2241
- msgid ""
2242
- "Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) "
2243
- "plugin to WooCommerce Jetpack."
2244
- msgstr ""
2245
- "Hulpmiddel laat je alle data (labels) kopiëren van Aangepaste Prijslabels (Pro) "
2246
- "plugin naar Booster voor WooCommerce."
2247
-
2248
- #: includes/class-wcj-price-labels.php:129
2249
- msgid "Migrate from Custom Price Labels"
2250
- msgstr "Migreer van Aangepaste Prijslabels"
2251
-
2252
- #: includes/class-wcj-price-labels.php:141
2253
- msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
2254
- msgstr "Booster voor WooCommerce - Migreer van Aangepaste Prijslabels (Pro)"
2255
-
2256
- #: includes/class-wcj-price-labels.php:189
2257
- msgid "Migrating (product ID "
2258
- msgstr "Migreren (product ID"
2259
-
2260
- #: includes/class-wcj-price-labels.php:190
2261
- msgid "Result: "
2262
- msgstr "Resultaat:"
2263
-
2264
- #: includes/class-wcj-price-labels.php:212
2265
- msgid "Found data to migrate (product ID "
2266
- msgstr "Gevonden data om te migreren (Product ID"
2267
-
2268
- #: includes/class-wcj-price-labels.php:226
2269
- msgid "No data to migrate found"
2270
- msgstr "Geen data gevonden om te migreren."
2271
-
2272
- #: includes/class-wcj-price-labels.php:230
2273
- msgid "No products found"
2274
- msgstr "Geen producten gevonden"
2275
-
2276
- #: includes/class-wcj-price-labels.php:235
2277
- msgid ""
2278
- "Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old "
2279
- "labels will NOT be deleted. New labels will be overwritten."
2280
- msgstr ""
2281
- "Druk op de knop hieronder om alle labels van Aangepaste Prijslabels (Pro) plugin "
2282
- "te kopiëren. Oude labels worden NIET verwijderd. Nieuwe labels worden overschreven."
2283
-
2284
- #: includes/class-wcj-price-labels.php:236
2285
- msgid "Migrate data"
2286
- msgstr "Migreer data"
2287
-
2288
- #: includes/class-wcj-price-labels.php:531
2289
- msgid "Custom Price Labels Options"
2290
- msgstr "Aangepaste Prijs labels Opties"
2291
-
2292
- #: includes/class-wcj-price-labels.php:534 includes/class-wcj-price-labels.php:647
2293
- msgid "Custom Price Labels"
2294
- msgstr "Aangepaste Prijs Labels"
2295
-
2296
- #: includes/class-wcj-price-labels.php:536
2297
- msgid "Create any custom price label for any WooCommerce product."
2298
- msgstr "Creëer elk aangepaste prijslabel voor elk WooCommerce product."
2299
-
2300
- #: includes/class-wcj-price-labels.php:545
2301
- msgid "Global Custom Price Labels"
2302
- msgstr "Globale aangepaste Prijslabels"
2303
-
2304
- #: includes/class-wcj-price-labels.php:547
2305
- msgid "This section lets you set price labels for all products globally."
2306
- msgstr "Dit gedeelte laat je prijslabels globaal instellen voor alle producten."
2307
-
2308
- #: includes/class-wcj-price-labels.php:552
2309
- msgid "Add before the price"
2310
- msgstr "Voeg toe voor de prijs"
2311
-
2312
- #: includes/class-wcj-price-labels.php:553
2313
- msgid "Enter text to add before all products prices. Leave blank to disable."
2314
- msgstr ""
2315
- "Vul tekst in om toe te voegen voor alle productprijzen. Laat leeg om uit te "
2316
- "schakelen."
2317
-
2318
- #: includes/class-wcj-price-labels.php:564
2319
- msgid "Add after the price"
2320
- msgstr "Voeg toe na de prijs"
2321
-
2322
- #: includes/class-wcj-price-labels.php:565
2323
- msgid "Enter text to add after all products prices. Leave blank to disable."
2324
- msgstr ""
2325
- "Vul tekst in om toe te voegen na alle productprijzen. Laat leeg om uit te "
2326
- "schakelen."
2327
-
2328
- #: includes/class-wcj-price-labels.php:576
2329
- msgid "Add between regular and sale prices"
2330
- msgstr "Voeg toe tussen standaard en uitverkoop prijzen."
2331
-
2332
- #: includes/class-wcj-price-labels.php:577
2333
- msgid "Enter text to add between regular and sale prices. Leave blank to disable."
2334
- msgstr ""
2335
- "Voeg tekst toe tussen standaard en uitverkoop prijzen. Laat leeg om uit te "
2336
- "schakelen."
2337
-
2338
- #: includes/class-wcj-price-labels.php:588
2339
- msgid "Remove from price"
2340
- msgstr "Verwijder van prijs"
2341
-
2342
- #: includes/class-wcj-price-labels.php:590
2343
- msgid "Enter text to remove from all products prices. Leave blank to disable."
2344
- msgstr ""
2345
- "Voer tekst in om te verwijderen van alle productprijzen. Laat leeg om uit te "
2346
- "schakelen."
2347
-
2348
- #: includes/class-wcj-price-labels.php:601
2349
- msgid "Replace in price"
2350
- msgstr "Vervang in prijs"
2351
-
2352
- #: includes/class-wcj-price-labels.php:602
2353
- msgid "Enter text to replace in all products prices. Leave blank to disable."
2354
- msgstr ""
2355
- "Voer tekst in om te vervangen in alle productprijzen. Laat leeg om uit te "
2356
- "schakelen."
2357
-
2358
- #: includes/class-wcj-price-labels.php:614
2359
- msgid "Enter text to replace with. Leave blank to disable."
2360
- msgstr "Voer tekst in om te vervangen met. Laat leeg om uit te schakelen."
2361
-
2362
- #: includes/class-wcj-price-labels.php:629
2363
- msgid "Migrate from Custom Price Labels (Pro) Options"
2364
- msgstr "Migreer van Aangepaste Prijslabels (Pro) Opties"
2365
-
2366
- #: includes/class-wcj-price-labels.php:629
2367
- msgid "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
2368
- msgstr ""
2369
- "Dit gedeelte laat je de \"Migreer van Aangepaste Prijslabels (Pro)\" hulpmiddel "
2370
- "inschakelen."
2371
-
2372
- #: includes/class-wcj-product-add-to-cart.php:24
2373
- msgid "Product Add to Cart"
2374
- msgstr "Product Voeg toe een Winkelwagen"
2375
-
2376
- #: includes/class-wcj-product-add-to-cart.php:25
2377
- msgid ""
2378
- "Set any local url to redirect to on WooCommerce Add to Cart. Automatically add to "
2379
- "cart on product visit."
2380
- msgstr ""
2381
-
2382
- #: includes/class-wcj-product-add-to-cart.php:48
2383
- msgid "Add to Cart Local Redirect Options"
2384
- msgstr "Voeg toe aan winkelwagen lokale omleiding opties"
2385
-
2386
- #: includes/class-wcj-product-add-to-cart.php:50
2387
- msgid ""
2388
- "This section lets you set any local URL to redirect to after successfully adding "
2389
- "product to cart. Leave empty to redirect to checkout page (skipping the cart page)."
2390
- msgstr ""
2391
- "Deze sectie laat u een lokale URL ingestellen om de bezoeker naar te leiden na een "
2392
- "succesvolle toevoeging aan winkelwagen. Laat leeg om naar de afrekenpagina te gaan "
2393
- "(en de winkelwagen pagina over te slaan)."
2394
-
2395
- #: includes/class-wcj-product-add-to-cart.php:55
2396
- msgid "Local Redirect"
2397
- msgstr "Lokale omleiding"
2398
-
2399
- #: includes/class-wcj-product-add-to-cart.php:63
2400
- msgid "Local Redirect URL"
2401
- msgstr "Lokale omleidings url"
2402
-
2403
- #: includes/class-wcj-product-add-to-cart.php:64
2404
- msgid "Performs a safe (local) redirect, using wp_redirect()."
2405
- msgstr "Voert een veilige (lokale) omleiding uit, gebruikmakend van wp_redirect()"
2406
-
2407
- #: includes/class-wcj-product-add-to-cart.php:65
2408
- msgid "Local redirect URL. Leave empty to redirect to checkout."
2409
- msgstr "Lokale redirect URL. Laat leeg om naar de afrekenen pagina te gaan."
2410
-
2411
- #: includes/class-wcj-product-add-to-cart.php:74
2412
- #: includes/class-wcj-product-add-to-cart.php:77
2413
- msgid "Add to Cart on Visit"
2414
- msgstr "Voeg toe aan winkelwagen bij bezoek"
2415
-
2416
- #: includes/class-wcj-product-add-to-cart.php:74
2417
- msgid ""
2418
- "This section lets you enable automatically adding product to cart on visiting the "
2419
- "product page. Product is only added once, so if it is already in cart - duplicate "
2420
- "product is not added. "
2421
- msgstr ""
2422
- "Dit gedeelte schakelt de optie in om automatisch een product toe te voegen aan de "
2423
- "winkelwagen bij bezoek aan productpagina. Product is eenmalig toegevoegd, dus als "
2424
- "het reeds in winkelwagen is - dupliceer product is niet toegevoegd."
2425
-
2426
- #: includes/class-wcj-product-bulk-price-converter.php:44
2427
- #: includes/class-wcj-product-bulk-price-converter.php:231
2428
- #: includes/class-wcj-product-bulk-price-converter.php:261
2429
- #: includes/class-wcj-product-bulk-price-converter.php:279
2430
- msgid "Bulk Price Converter"
2431
- msgstr ""
2432
-
2433
- #: includes/class-wcj-product-bulk-price-converter.php:113
2434
- #: includes/class-wcj-sku.php:165 includes/reports/wcj-class-reports-stock.php:285
2435
- msgid "Product"
2436
- msgstr "Product"
2437
-
2438
- #: includes/class-wcj-product-bulk-price-converter.php:114
2439
- msgid "Price Type"
2440
- msgstr "Prijstype"
2441
-
2442
- #: includes/class-wcj-product-bulk-price-converter.php:115
2443
- #: includes/reports/wcj-class-reports-stock.php:286
2444
- msgid "Price"
2445
- msgstr "Prijs"
2446
-
2447
- #: includes/class-wcj-product-bulk-price-converter.php:116
2448
- msgid "Modified Price"
2449
- msgstr ""
2450
-
2451
- #: includes/class-wcj-product-bulk-price-converter.php:136
2452
- msgid "Multiply value must be above zero."
2453
- msgstr ""
2454
-
2455
- #: includes/class-wcj-product-bulk-price-converter.php:143
2456
- msgid "Prices changed successfully!"
2457
- msgstr ""
2458
-
2459
- #: includes/class-wcj-product-bulk-price-converter.php:150
2460
- msgid "WooCommerce Jetpack - Bulk Price Converter"
2461
- msgstr ""
2462
-
2463
- #: includes/class-wcj-product-bulk-price-converter.php:151
2464
- #: includes/class-wcj-product-bulk-price-converter.php:233
2465
- msgid "Bulk Price Converter Tool."
2466
- msgstr ""
2467
-
2468
- #: includes/class-wcj-product-bulk-price-converter.php:154
2469
- msgid "Multiply all product prices by"
2470
- msgstr "Vermenigvuldig alle productprijzen per"
2471
-
2472
- #: includes/class-wcj-product-bulk-price-converter.php:254
2473
- msgid "Bulk Price Converter Options"
2474
- msgstr ""
2475
-
2476
- #: includes/class-wcj-product-bulk-price-converter.php:256
2477
- msgid ""
2478
- "When enabled, the tool is accessible through WooCommerce > Jetpack Tools > Bulk "
2479
- "Price Converter."
2480
- msgstr ""
2481
-
2482
- #: includes/class-wcj-product-bulk-price-converter.php:263
2483
- msgid "Multiply all WooCommerce products prices by set value."
2484
- msgstr ""
2485
-
2486
- #: includes/class-wcj-product-images.php:24
2487
- msgid "Product Images"
2488
- msgstr "Productafbeeldingen"
2489
-
2490
- #: includes/class-wcj-product-images.php:25
2491
- msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2492
- msgstr ""
2493
-
2494
- #: includes/class-wcj-product-images.php:80 includes/class-wcj-product-images.php:174
2495
- msgid "Sale!"
2496
- msgstr "Uitverkoop!"
2497
-
2498
- #: includes/class-wcj-product-images.php:112
2499
- msgid "Product Image and Thumbnails"
2500
- msgstr "Productafbeelding en Miniaturen"
2501
-
2502
- #: includes/class-wcj-product-images.php:122
2503
- msgid "Image and Thumbnails on Single"
2504
- msgstr ""
2505
-
2506
- #: includes/class-wcj-product-images.php:130
2507
- msgid "Image on Single"
2508
- msgstr ""
2509
-
2510
- #: includes/class-wcj-product-images.php:138
2511
- msgid "Thumbnails on Single"
2512
- msgstr ""
2513
-
2514
- #: includes/class-wcj-product-images.php:146
2515
- msgid "Image on Archives"
2516
- msgstr ""
2517
-
2518
- #: includes/class-wcj-product-images.php:154
2519
- msgid "Single Product Thumbnails Columns"
2520
- msgstr ""
2521
-
2522
- #: includes/class-wcj-product-images.php:162
2523
- msgid "Product Images Sale Flash"
2524
- msgstr ""
2525
-
2526
- #: includes/class-wcj-product-images.php:172
2527
- msgid "HTML"
2528
- msgstr "HTML"
2529
-
2530
- #: includes/class-wcj-product-images.php:180
2531
- msgid "Hide on Archives (Categories)"
2532
- msgstr ""
2533
-
2534
- #: includes/class-wcj-product-images.php:187
2535
- msgid "Hide on Single"
2536
- msgstr ""
2537
-
2538
- #: includes/class-wcj-product-info.php:26
2539
- msgid "Before product"
2540
- msgstr "Voor product"
2541
-
2542
- #: includes/class-wcj-product-info.php:27
2543
- msgid "Before product title"
2544
- msgstr "Voor producttitel"
2545
-
2546
- #: includes/class-wcj-product-info.php:28
2547
- msgid "After product"
2548
- msgstr "Na product"
2549
-
2550
- #: includes/class-wcj-product-info.php:29
2551
- msgid "After product title"
2552
- msgstr "Na producttitel"
2553
-
2554
- #: includes/class-wcj-product-info.php:34
2555
- msgid "Inside single product summary"
2556
- msgstr "In enkel product samenvatting."
2557
-
2558
- #: includes/class-wcj-product-info.php:35
2559
- msgid "Before single product summary"
2560
- msgstr "Voor enkel product samenvatting"
2561
-
2562
- #: includes/class-wcj-product-info.php:36
2563
- msgid "After single product summary"
2564
- msgstr "Na enkel product samenvatting"
2565
-
2566
- #: includes/class-wcj-product-info.php:295
2567
- msgid "Available shortcodes are:"
2568
- msgstr "Beschikbare shortcodes zijn:"
2569
-
2570
- #: includes/class-wcj-product-info.php:596
2571
- msgid "%s ago"
2572
- msgstr "% geleden"
2573
-
2574
- #: includes/class-wcj-product-info.php:638 includes/class-wcj-product-info.php:766
2575
- #: includes/class-wcj-product-info.php:806 includes/class-wcj-product-tabs.php:350
2576
- #: includes/class-wcj-product-tabs.php:442 includes/class-wcj-product-tabs.php:468
2577
- #: includes/class-wcj-product-tabs.php:494
2578
- msgid "Priority (i.e. Order)"
2579
- msgstr "Prioriteit (volgorde)"
2580
-
2581
- #: includes/class-wcj-product-info.php:646
2582
- msgid ""
2583
- "Number of product info fields. Click \"Save changes\" after you change this number."
2584
- msgstr ""
2585
- "Aantal productinformatie velden. Klik Opslaan nadat je dit nummer hebt gewijzigd."
2586
-
2587
- #: includes/class-wcj-product-info.php:669
2588
- msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2589
- msgstr ""
2590
-
2591
- #: includes/class-wcj-product-info.php:670 includes/class-wcj-product-info.php:784
2592
- msgid "Total sales: %total_sales%"
2593
- msgstr ""
2594
-
2595
- #: includes/class-wcj-product-info.php:673
2596
- msgid "Default"
2597
- msgstr "Standaard"
2598
-
2599
- #: includes/class-wcj-product-info.php:675
2600
- msgid "Field Nr. "
2601
- msgstr "Veld nr."
2602
-
2603
- #: includes/class-wcj-product-info.php:675
2604
- msgid "Available short codes: "
2605
- msgstr "Beschikbare shortcodes:"
2606
-
2607
- #: incl