WooCommerce Extended Coupon Features - Version 2.3.1

Version Description

  • FIX: WPML Compatibility for AND Products / AND Categories
  • FIX: Redirect to page without ?apply_coupon
Download this release

Release Info

Developer josk79
Plugin Icon 128x128 WooCommerce Extended Coupon Features
Version 2.3.1
Comparing to
See all releases

Code changes from version 2.3.0 to 2.3.1

includes/wjecf-autocoupon.php CHANGED
@@ -214,6 +214,8 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
214
  foreach ( $split as $coupon_code ) {
215
  $cart->add_discount( $coupon_code );
216
  }
 
 
217
  }
218
  }
219
 
@@ -562,7 +564,13 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
562
  'post_type' => 'shop_coupon',
563
  'post_status' => 'publish',
564
  'orderby' => array( 'title' => 'ASC' ),
565
- 'meta_query' => array( 'key' => '_wjecf_is_auto_coupon', 'compare' => '=', 'value' => 'yes')
 
 
 
 
 
 
566
  );
567
 
568
  $query = new WP_Query($query_args);
@@ -573,7 +581,7 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
573
  }
574
  }
575
 
576
- //Sort by prio
577
  @uasort( $this->_autocoupons , array( $this, 'sort_auto_coupons' ) ); //Ignore error PHP Bug #50688
578
 
579
  $coupon_codes = array();
214
  foreach ( $split as $coupon_code ) {
215
  $cart->add_discount( $coupon_code );
216
  }
217
+ $current_url = home_url( $_SERVER['REQUEST_URI'] );
218
+ wp_safe_redirect( remove_query_arg( 'apply_coupon', ( $current_url ) ) );
219
  }
220
  }
221
 
564
  'post_type' => 'shop_coupon',
565
  'post_status' => 'publish',
566
  'orderby' => array( 'title' => 'ASC' ),
567
+ 'meta_query' => array(
568
+ array(
569
+ 'key' => '_wjecf_is_auto_coupon',
570
+ 'compare' => '=',
571
+ 'value' => 'yes',
572
+ ),
573
+ )
574
  );
575
 
576
  $query = new WP_Query($query_args);
581
  }
582
  }
583
 
584
+ //Sort by priority
585
  @uasort( $this->_autocoupons , array( $this, 'sort_auto_coupons' ) ); //Ignore error PHP Bug #50688
586
 
587
  $coupon_codes = array();
includes/wjecf-controller.php CHANGED
@@ -140,6 +140,9 @@ class WJECF_Controller {
140
 
141
  /* Extra validation rules for coupons */
142
  public function coupon_is_valid ( $valid, $coupon ) {
 
 
 
143
  //error_log("is valid? " . $coupon->code );
144
  //Not valid? Then it will never validate, so get out of here
145
  if ( ! $valid ) {
@@ -147,7 +150,7 @@ class WJECF_Controller {
147
  }
148
 
149
  //============================
150
- //Test if ALL products are in the cart (if AND-operator selected in stead of the default OR)
151
  $products_and = get_post_meta( $coupon->id, '_wjecf_products_and', true ) == 'yes';
152
  if ( $products_and && sizeof( $coupon->product_ids ) > 1 ) { // We use > 1, because if size == 1, 'AND' makes no difference
153
  //Get array of all cart product and variation ids
@@ -156,6 +159,9 @@ class WJECF_Controller {
156
  $cart_item_ids[] = $cart_item['product_id'];
157
  $cart_item_ids[] = $cart_item['variation_id'];
158
  }
 
 
 
159
  //check if every single product is in the cart
160
  foreach( $coupon->product_ids as $product_id ) {
161
  if ( ! in_array( $product_id, $cart_item_ids ) ) {
@@ -165,7 +171,7 @@ class WJECF_Controller {
165
  }
166
 
167
  //============================
168
- //Test if products form ALL categories are in the cart (if AND-operator selected in stead of the default OR)
169
  $categories_and = get_post_meta( $coupon->id, '_wjecf_categories_and', true ) == 'yes';
170
  if ( $categories_and && sizeof( $coupon->product_categories ) > 1 ) { // We use > 1, because if size == 1, 'AND' makes no difference
171
  //Get array of all cart product and variation ids
@@ -173,13 +179,14 @@ class WJECF_Controller {
173
  foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
174
  $cart_product_cats = array_merge ( $cart_product_cats, wp_get_post_terms( $cart_item['product_id'], 'product_cat', array( "fields" => "ids" ) ) );
175
  }
 
 
176
  //check if every single category is in the cart
177
  foreach( $coupon->product_categories as $cat_id ) {
178
  if ( ! in_array( $cat_id, $cart_product_cats ) ) {
179
  return false;
180
  }
181
- }
182
-
183
  }
184
 
185
  //============================
@@ -194,28 +201,28 @@ class WJECF_Controller {
194
  $multiplier = null; //null = not initialized
195
 
196
  //Validate quantity
197
- $min_matching_product_qty = intval(get_post_meta( $coupon->id, '_wjecf_min_matching_product_qty', true ));
198
- $max_matching_product_qty = intval(get_post_meta( $coupon->id, '_wjecf_max_matching_product_qty', true ));
199
  if ( $min_matching_product_qty > 0 || $max_matching_product_qty > 0 ) {
200
  //Count the products
201
  $qty = $this->get_quantity_of_matching_products( $coupon );
202
- if ($min_matching_product_qty > 0 && $qty < $min_matching_product_qty) return false;
203
- if ($max_matching_product_qty > 0 && $qty > $max_matching_product_qty) return false;
204
 
205
- if ($min_matching_product_qty > 0) {
206
  $multiplier = self::min_value( floor( $qty / $min_matching_product_qty ), $multiplier );
207
  }
208
  }
209
 
210
  //Validate subtotal (2.2.2)
211
- $min_matching_product_subtotal = intval(get_post_meta( $coupon->id, '_wjecf_min_matching_product_subtotal', true ));
212
- $max_matching_product_subtotal = intval(get_post_meta( $coupon->id, '_wjecf_max_matching_product_subtotal', true ));
213
  if ( $min_matching_product_subtotal > 0 || $max_matching_product_subtotal > 0 ) {
214
  $subtotal = $this->get_subtotal_of_matching_products( $coupon );
215
- if ($min_matching_product_subtotal > 0 && $subtotal < $min_matching_product_subtotal) return false;
216
- if ($max_matching_product_subtotal > 0 && $subtotal > $max_matching_product_subtotal) return false;
217
 
218
- if ($min_matching_product_subtotal > 0) {
219
  $multiplier = self::min_value( floor( $subtotal / $min_matching_product_subtotal ), $multiplier );
220
  }
221
  }
140
 
141
  /* Extra validation rules for coupons */
142
  public function coupon_is_valid ( $valid, $coupon ) {
143
+ //WPML
144
+ global $sitepress, $woocommerce_wpml;
145
+
146
  //error_log("is valid? " . $coupon->code );
147
  //Not valid? Then it will never validate, so get out of here
148
  if ( ! $valid ) {
150
  }
151
 
152
  //============================
153
+ //Test if ALL products are in the cart (if AND-operator selected instead of the default OR)
154
  $products_and = get_post_meta( $coupon->id, '_wjecf_products_and', true ) == 'yes';
155
  if ( $products_and && sizeof( $coupon->product_ids ) > 1 ) { // We use > 1, because if size == 1, 'AND' makes no difference
156
  //Get array of all cart product and variation ids
159
  $cart_item_ids[] = $cart_item['product_id'];
160
  $cart_item_ids[] = $cart_item['variation_id'];
161
  }
162
+ //Filter used by WJECF_WPML hook
163
+ $cart_item_ids = apply_filters( 'wjecf_get_cart_product_ids', $cart_item_ids, $cart );
164
+
165
  //check if every single product is in the cart
166
  foreach( $coupon->product_ids as $product_id ) {
167
  if ( ! in_array( $product_id, $cart_item_ids ) ) {
171
  }
172
 
173
  //============================
174
+ //Test if products form ALL categories are in the cart (if AND-operator selected instead of the default OR)
175
  $categories_and = get_post_meta( $coupon->id, '_wjecf_categories_and', true ) == 'yes';
176
  if ( $categories_and && sizeof( $coupon->product_categories ) > 1 ) { // We use > 1, because if size == 1, 'AND' makes no difference
177
  //Get array of all cart product and variation ids
179
  foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
180
  $cart_product_cats = array_merge ( $cart_product_cats, wp_get_post_terms( $cart_item['product_id'], 'product_cat', array( "fields" => "ids" ) ) );
181
  }
182
+ //Filter used by WJECF_WPML hook
183
+ $cart_product_cats = apply_filters( 'wjecf_get_cart_product_cat_ids', $cart_product_cats, $cart );
184
  //check if every single category is in the cart
185
  foreach( $coupon->product_categories as $cat_id ) {
186
  if ( ! in_array( $cat_id, $cart_product_cats ) ) {
187
  return false;
188
  }
189
+ }
 
190
  }
191
 
192
  //============================
201
  $multiplier = null; //null = not initialized
202
 
203
  //Validate quantity
204
+ $min_matching_product_qty = intval( get_post_meta( $coupon->id, '_wjecf_min_matching_product_qty', true ) );
205
+ $max_matching_product_qty = intval( get_post_meta( $coupon->id, '_wjecf_max_matching_product_qty', true ) );
206
  if ( $min_matching_product_qty > 0 || $max_matching_product_qty > 0 ) {
207
  //Count the products
208
  $qty = $this->get_quantity_of_matching_products( $coupon );
209
+ if ( $min_matching_product_qty > 0 && $qty < $min_matching_product_qty ) return false;
210
+ if ( $max_matching_product_qty > 0 && $qty > $max_matching_product_qty ) return false;
211
 
212
+ if ( $min_matching_product_qty > 0 ) {
213
  $multiplier = self::min_value( floor( $qty / $min_matching_product_qty ), $multiplier );
214
  }
215
  }
216
 
217
  //Validate subtotal (2.2.2)
218
+ $min_matching_product_subtotal = floatval( get_post_meta( $coupon->id, '_wjecf_min_matching_product_subtotal', true ) );
219
+ $max_matching_product_subtotal = floatval( get_post_meta( $coupon->id, '_wjecf_max_matching_product_subtotal', true ) );
220
  if ( $min_matching_product_subtotal > 0 || $max_matching_product_subtotal > 0 ) {
221
  $subtotal = $this->get_subtotal_of_matching_products( $coupon );
222
+ if ( $min_matching_product_subtotal > 0 && $subtotal < $min_matching_product_subtotal ) return false;
223
+ if ( $max_matching_product_subtotal > 0 && $subtotal > $max_matching_product_subtotal ) return false;
224
 
225
+ if ( $min_matching_product_subtotal > 0 ) {
226
  $multiplier = self::min_value( floor( $subtotal / $min_matching_product_subtotal ), $multiplier );
227
  }
228
  }
includes/wjecf-wpml.php ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ defined('ABSPATH') or die();
4
+
5
+ /**
6
+ * Class to make WJECF compatible with WPML
7
+ */
8
+ class WJECF_WPML extends Abstract_WJECF_Plugin {
9
+
10
+ public function __construct() {
11
+ add_action('init', array( $this, 'controller_init' ) );
12
+ }
13
+
14
+ public function controller_init() {
15
+ global $sitepress;
16
+ if ( isset( $sitepress ) ) {
17
+ //WJECF_Controller hooks
18
+ add_filter( 'wjecf_get_cart_product_ids', array( $this, 'filter_get_cart_product_ids' ), 10, 2 );
19
+ add_filter( 'wjecf_get_cart_product_cat_ids', array( $this, 'filter_get_cart_product_cat_ids' ), 10, 2 );
20
+ }
21
+ }
22
+
23
+ //HOOKS
24
+
25
+ public function filter_get_cart_product_ids( $product_ids, $cart ) {
26
+ return $this->get_translation_product_ids( $product_ids );
27
+ }
28
+
29
+ public function filter_get_cart_product_cat_ids( $product_cat_ids, $cart ) {
30
+ return $this->get_translation_product_cat_ids( $product_cat_ids );
31
+ }
32
+
33
+
34
+ //FUNCTIONS
35
+
36
+ /**
37
+ * If WPML exists, get the ids of all the product translations. Otherwise return the original array
38
+ *
39
+ * @param int|array $product_ids The product_ids to find the translations for
40
+ * @return array The product ids of all translations
41
+ *
42
+ */
43
+ public function get_translation_product_ids( $product_ids ) {
44
+ //Make sure it's an array
45
+ if ( ! is_array( $product_ids ) ) {
46
+ $product_ids = array( $product_ids );
47
+ }
48
+
49
+ //WPML exists?
50
+ global $sitepress;
51
+ if ( ! isset( $sitepress ) ) {
52
+ return $product_ids;
53
+ }
54
+
55
+ $translation_product_ids = array();
56
+ foreach( $product_ids as $prod_id) {
57
+ $post_type = get_post_field( 'post_type', $prod_id );
58
+ $trid = $sitepress->get_element_trid( $prod_id, 'post_' . $post_type );
59
+ $translations = $sitepress->get_element_translations( $trid, 'post_' . $post_type );
60
+ foreach( $translations as $translation ){
61
+ $translation_product_ids[] = $translation->element_id;
62
+ }
63
+ }
64
+ return $translation_product_ids;
65
+ }
66
+
67
+ /**
68
+ * If WPML and WPML WooCommerce exists, get the ids of all the product_cat translations. Otherwise return the original array
69
+ *
70
+ * @param int|array $product_cat_ids The product_cat_ids to find the translations for
71
+ * @return array The product_cat ids of all translations
72
+ *
73
+ */
74
+ public function get_translation_product_cat_ids( $product_cat_ids ) {
75
+ //Make sure it's an array
76
+ if ( ! is_array( $product_cat_ids ) ) {
77
+ $product_cat_ids = array( $product_cat_ids );
78
+ }
79
+
80
+ //WPML and WPML WooCommerce exist?
81
+ global $sitepress, $woocommerce_wpml;
82
+ if ( ! isset( $sitepress ) || ! isset( $woocommerce_wpml ) ) {
83
+ return $product_cat_ids;
84
+ }
85
+
86
+ $translation_product_cat_ids = array();
87
+ foreach( $product_cat_ids as $cat_id) {
88
+ $term = $woocommerce_wpml->products->wcml_get_term_by_id( $cat_id, 'product_cat' );
89
+ $trid = $sitepress->get_element_trid( $term->term_taxonomy_id, 'tax_product_cat' );
90
+ $translations = $sitepress->get_element_translations( $trid, 'tax_product_cat' );
91
+
92
+ foreach( $translations as $translation ){
93
+ $translation_product_cat_ids[] = $translation->term_id;
94
+ }
95
+ }
96
+ return $translation_product_cat_ids;
97
+ }
98
+
99
+ }
languages/woocommerce-jos-autocoupon-es_ES.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce auto added coupons 1.1.3.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-added-coupons\n"
7
- "POT-Creation-Date: 2015-11-22 21:04+0100\n"
8
- "PO-Revision-Date: 2015-11-22 21:09+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_ES\n"
@@ -17,70 +17,47 @@ msgstr ""
17
  "X-Poedit-Basepath: C:/lamp/www/qrvm_woo/wp-content/plugins\n"
18
  "X-Poedit-SearchPath-0: woocommerce-auto-added-coupons\n"
19
 
20
- #: includes/wjecf-autocoupon.php:54 includes/wjecf-autocoupon.php:61
21
- msgid "Auto coupon"
22
- msgstr "Aplicar cupón automaticamente"
23
-
24
- #: includes/wjecf-autocoupon.php:62
25
- msgid ""
26
- "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
27
- "description when you check this box, the description will be shown in the customer's cart if "
28
- "the coupon is applied."
29
- msgstr ""
30
- "Aplicar el cupón automaticamente al carrito de compras cuando los requisitos sean cumplidos. "
31
- "Por favor ingrese una descripción, ya que este será mostrado al cliente cuando el cupón esté "
32
- "aplicado."
33
-
34
- #: includes/wjecf-autocoupon.php:69
35
- msgid "Apply silently"
36
- msgstr "Aplicar sin mensaje"
37
-
38
- #: includes/wjecf-autocoupon.php:70
39
- msgid "Don't display a message when this coupon is automatically applied."
40
- msgstr "No mostrar mensaje cuando el cupon esté aplicado automaticamente."
41
-
42
- #: includes/wjecf-autocoupon.php:165
43
- msgid "Free shipping coupon"
44
- msgstr "Cupón para envío gratis"
45
-
46
- #: includes/wjecf-autocoupon.php:305
47
- #, php-format
48
- msgid "Discount applied: %s"
49
- msgstr "Descuento aplicado: %s"
50
-
51
- #: includes/wjecf-coupon-extensions.php:142
52
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
53
  msgstr "Le gusta WooCommerce Extended Coupon Features?"
54
 
55
- #: includes/wjecf-coupon-extensions.php:144
56
  msgid "Express your gratitude"
57
  msgstr "Exprese su gratitud"
58
 
59
- #: includes/wjecf-coupon-extensions.php:148
60
  msgid "Donate to the developer"
61
  msgstr "Hacer una donación"
62
 
63
- #: includes/wjecf-coupon-extensions.php:160
 
 
 
 
 
 
 
 
64
  msgid "Products"
65
  msgstr "Productos"
66
 
67
- #: includes/wjecf-coupon-extensions.php:166 includes/wjecf-coupon-extensions.php:273
68
  msgid "Checkout"
69
  msgstr "Tramitar"
70
 
71
- #: includes/wjecf-coupon-extensions.php:172 includes/wjecf-coupon-extensions.php:383
72
  msgid "Miscellaneous"
73
  msgstr "Diversos"
74
 
75
- #: includes/wjecf-coupon-extensions.php:184
76
  msgid "Matching products"
77
  msgstr "Productos conformes"
78
 
79
- #: includes/wjecf-coupon-extensions.php:189
80
  msgid "AND Products (not OR)"
81
  msgstr "TODOS los productos"
82
 
83
- #: includes/wjecf-coupon-extensions.php:190
84
  msgid ""
85
  "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
86
  "use this coupon (instead of only one of the products)."
@@ -88,11 +65,11 @@ msgstr ""
88
  "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') necesitan estar en el "
89
  "carrito de compras (en lugar de uno de los productos)."
90
 
91
- #: includes/wjecf-coupon-extensions.php:197
92
  msgid "AND Categories (not OR)"
93
  msgstr "TODAS las categorias"
94
 
95
- #: includes/wjecf-coupon-extensions.php:198
96
  msgid ""
97
  "Check this box if products from ALL of the categories (see tab 'usage restriction') must be "
98
  "in the cart to use this coupon (instead of only one from one of the categories)."
@@ -100,93 +77,93 @@ msgstr ""
100
  "Marque esta casilla si productos de TODAS las categorias (vea 'Restricción de uso') necesitan "
101
  "estar en el carrito de compras (en lugar de un producto de uno de los productos)."
102
 
103
- #: includes/wjecf-coupon-extensions.php:203
104
  msgid "(AND)"
105
  msgstr "(TODOS)"
106
 
107
- #: includes/wjecf-coupon-extensions.php:204
108
  msgid "(OR)"
109
  msgstr "(UNO)"
110
 
111
- #: includes/wjecf-coupon-extensions.php:233
112
  msgid "Minimum quantity of matching products"
113
  msgstr "Cantidad mínima de productos conformes."
114
 
115
- #: includes/wjecf-coupon-extensions.php:234 includes/wjecf-coupon-extensions.php:254
116
  msgid "No minimum"
117
  msgstr "Sin mínimo"
118
 
119
- #: includes/wjecf-coupon-extensions.php:235
120
  msgid ""
121
  "Minimum quantity of the products that match the given product or category restrictions (see "
122
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
123
  "number of products is used."
124
  msgstr "Cantidad mínima de productos conformes (vea 'Restricción de uso')."
125
 
126
- #: includes/wjecf-coupon-extensions.php:243
127
  msgid "Maximum quantity of matching products"
128
  msgstr "Cantidad máxima de productos conformes."
129
 
130
- #: includes/wjecf-coupon-extensions.php:244 includes/wjecf-coupon-extensions.php:264
131
  msgid "No maximum"
132
  msgstr "Sin máximo"
133
 
134
- #: includes/wjecf-coupon-extensions.php:245
135
  msgid ""
136
  "Maximum quantity of the products that match the given product or category restrictions (see "
137
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
138
  "number of products is used."
139
  msgstr "Cantidad máxima de productos conformes (vea 'Restricción de uso')."
140
 
141
- #: includes/wjecf-coupon-extensions.php:253
142
  msgid "Minimum subtotal of matching products"
143
  msgstr "Subtotal mínimo de productos conformes."
144
 
145
- #: includes/wjecf-coupon-extensions.php:255
146
  msgid ""
147
  "Minimum price subtotal of the products that match the given product or category restrictions "
148
  "(see tab 'usage restriction')."
149
  msgstr "Subtotal mínimo de productos conformes (vea 'Restricción de uso')."
150
 
151
- #: includes/wjecf-coupon-extensions.php:263
152
  msgid "Maximum subtotal of matching products"
153
  msgstr "Subtotal máximo de productos conformes."
154
 
155
- #: includes/wjecf-coupon-extensions.php:265
156
  msgid ""
157
  "Maximum price subtotal of the products that match the given product or category restrictions "
158
  "(see tab 'usage restriction')."
159
  msgstr "Subtotal máximo de productos conformes (vea 'Restricción de uso')."
160
 
161
- #: includes/wjecf-coupon-extensions.php:278
162
  msgid "Shipping methods"
163
  msgstr "Métodos de envío"
164
 
165
- #: includes/wjecf-coupon-extensions.php:279
166
  msgid "Any shipping method"
167
  msgstr "Métodos de envío"
168
 
169
- #: includes/wjecf-coupon-extensions.php:288
170
  msgid "One of these shipping methods must be selected in order for this coupon to be valid."
171
  msgstr "Uno de estos métodos de pago tiene que ser seleccionado para usar este cupón."
172
 
173
- #: includes/wjecf-coupon-extensions.php:294
174
  msgid "Payment methods"
175
  msgstr "Métodos de pago"
176
 
177
- #: includes/wjecf-coupon-extensions.php:295
178
  msgid "Any payment method"
179
  msgstr "Métodos de pago"
180
 
181
- #: includes/wjecf-coupon-extensions.php:306
182
  msgid "One of these payment methods must be selected in order for this coupon to be valid."
183
  msgstr "Uno de estos métodos de envío tiene que ser seleccionado para usar este cupón."
184
 
185
- #: includes/wjecf-coupon-extensions.php:314
186
  msgid "Customer restrictions"
187
  msgstr "Restricción de clientes"
188
 
189
- #: includes/wjecf-coupon-extensions.php:315
190
  msgid ""
191
  "If both a customer and a role restriction are supplied, matching either one of them will "
192
  "suffice."
@@ -194,52 +171,207 @@ msgstr ""
194
  "Si se ha introducido tanto una restricción de cliente como una restricción de perfil, sí "
195
  "coincide uno de ellos será suficiente."
196
 
197
- #: includes/wjecf-coupon-extensions.php:320
198
  msgid "Allowed Customers"
199
  msgstr "Clientes"
200
 
201
- #: includes/wjecf-coupon-extensions.php:321
202
  msgid "Any customer"
203
  msgstr "Clientes"
204
 
205
- #: includes/wjecf-coupon-extensions.php:334
206
  msgid "Only these customers may use this coupon."
207
  msgstr "Solo estos clientes pueden usar este cupón."
208
 
209
- #: includes/wjecf-coupon-extensions.php:341
210
  msgid "Allowed User Roles"
211
  msgstr "Perfiles del cliente"
212
 
213
- #: includes/wjecf-coupon-extensions.php:342 includes/wjecf-coupon-extensions.php:364
214
  msgid "Any role"
215
  msgstr "Perfiles del cliente"
216
 
217
- #: includes/wjecf-coupon-extensions.php:356
218
  msgid "Only these User Roles may use this coupon."
219
  msgstr "Solo clientes con este perfil pueden usar este cupón."
220
 
221
- #: includes/wjecf-coupon-extensions.php:363
222
  msgid "Disallowed User Roles"
223
  msgstr "Perfiles del cliente excluidos"
224
 
225
- #: includes/wjecf-coupon-extensions.php:377
226
  msgid "These User Roles will be specifically excluded from using this coupon."
227
  msgstr "Clientes con este perfil no pueden usar este cupón."
228
 
229
- #: includes/wjecf-coupon-extensions.php:388
230
  msgid "Allow when minimum spend not reached"
231
  msgstr ""
232
 
233
- #: includes/wjecf-coupon-extensions.php:389
 
234
  msgid "EXPERIMENTAL: "
235
  msgstr "EXPERIMENTAL:"
236
 
237
- #: includes/wjecf-coupon-extensions.php:389
238
  msgid ""
239
  "Check this box to allow the coupon to be in the cart even when minimum spend (see tab 'usage "
240
  "restriction') is not reached. Value of the discount will be 0 until minimum spend is reached."
241
  msgstr ""
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  #~ msgid "Extended Coupon Features"
244
  #~ msgstr "Opciones extendidas para el cupón"
245
 
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce auto added coupons 1.1.3.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-added-coupons\n"
7
+ "POT-Creation-Date: 2016-01-18 20:19+0100\n"
8
+ "PO-Revision-Date: 2016-01-18 20:26+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_ES\n"
17
  "X-Poedit-Basepath: C:/lamp/www/qrvm_woo/wp-content/plugins\n"
18
  "X-Poedit-SearchPath-0: woocommerce-auto-added-coupons\n"
19
 
20
+ #: includes/admin/wjecf-admin.php:94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
22
  msgstr "Le gusta WooCommerce Extended Coupon Features?"
23
 
24
+ #: includes/admin/wjecf-admin.php:96
25
  msgid "Express your gratitude"
26
  msgstr "Exprese su gratitud"
27
 
28
+ #: includes/admin/wjecf-admin.php:100
29
  msgid "Donate to the developer"
30
  msgstr "Hacer una donación"
31
 
32
+ #: includes/admin/wjecf-admin.php:107
33
+ msgid "Documentation"
34
+ msgstr "Documentación"
35
+
36
+ #: includes/admin/wjecf-admin.php:109
37
+ msgid "WooCommerce Extended Coupon Features Documentation"
38
+ msgstr "Documentación de WooCommerce Extended Coupon Features"
39
+
40
+ #: includes/admin/wjecf-admin.php:117
41
  msgid "Products"
42
  msgstr "Productos"
43
 
44
+ #: includes/admin/wjecf-admin.php:123 includes/admin/wjecf-admin.php:230
45
  msgid "Checkout"
46
  msgstr "Tramitar"
47
 
48
+ #: includes/admin/wjecf-admin.php:129 includes/admin/wjecf-admin.php:340
49
  msgid "Miscellaneous"
50
  msgstr "Diversos"
51
 
52
+ #: includes/admin/wjecf-admin.php:141
53
  msgid "Matching products"
54
  msgstr "Productos conformes"
55
 
56
+ #: includes/admin/wjecf-admin.php:146
57
  msgid "AND Products (not OR)"
58
  msgstr "TODOS los productos"
59
 
60
+ #: includes/admin/wjecf-admin.php:147
61
  msgid ""
62
  "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
63
  "use this coupon (instead of only one of the products)."
65
  "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') necesitan estar en el "
66
  "carrito de compras (en lugar de uno de los productos)."
67
 
68
+ #: includes/admin/wjecf-admin.php:154
69
  msgid "AND Categories (not OR)"
70
  msgstr "TODAS las categorias"
71
 
72
+ #: includes/admin/wjecf-admin.php:155
73
  msgid ""
74
  "Check this box if products from ALL of the categories (see tab 'usage restriction') must be "
75
  "in the cart to use this coupon (instead of only one from one of the categories)."
77
  "Marque esta casilla si productos de TODAS las categorias (vea 'Restricción de uso') necesitan "
78
  "estar en el carrito de compras (en lugar de un producto de uno de los productos)."
79
 
80
+ #: includes/admin/wjecf-admin.php:160
81
  msgid "(AND)"
82
  msgstr "(TODOS)"
83
 
84
+ #: includes/admin/wjecf-admin.php:161
85
  msgid "(OR)"
86
  msgstr "(UNO)"
87
 
88
+ #: includes/admin/wjecf-admin.php:190
89
  msgid "Minimum quantity of matching products"
90
  msgstr "Cantidad mínima de productos conformes."
91
 
92
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
93
  msgid "No minimum"
94
  msgstr "Sin mínimo"
95
 
96
+ #: includes/admin/wjecf-admin.php:192
97
  msgid ""
98
  "Minimum quantity of the products that match the given product or category restrictions (see "
99
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
100
  "number of products is used."
101
  msgstr "Cantidad mínima de productos conformes (vea 'Restricción de uso')."
102
 
103
+ #: includes/admin/wjecf-admin.php:200
104
  msgid "Maximum quantity of matching products"
105
  msgstr "Cantidad máxima de productos conformes."
106
 
107
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
108
  msgid "No maximum"
109
  msgstr "Sin máximo"
110
 
111
+ #: includes/admin/wjecf-admin.php:202
112
  msgid ""
113
  "Maximum quantity of the products that match the given product or category restrictions (see "
114
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
115
  "number of products is used."
116
  msgstr "Cantidad máxima de productos conformes (vea 'Restricción de uso')."
117
 
118
+ #: includes/admin/wjecf-admin.php:210
119
  msgid "Minimum subtotal of matching products"
120
  msgstr "Subtotal mínimo de productos conformes."
121
 
122
+ #: includes/admin/wjecf-admin.php:212
123
  msgid ""
124
  "Minimum price subtotal of the products that match the given product or category restrictions "
125
  "(see tab 'usage restriction')."
126
  msgstr "Subtotal mínimo de productos conformes (vea 'Restricción de uso')."
127
 
128
+ #: includes/admin/wjecf-admin.php:220
129
  msgid "Maximum subtotal of matching products"
130
  msgstr "Subtotal máximo de productos conformes."
131
 
132
+ #: includes/admin/wjecf-admin.php:222
133
  msgid ""
134
  "Maximum price subtotal of the products that match the given product or category restrictions "
135
  "(see tab 'usage restriction')."
136
  msgstr "Subtotal máximo de productos conformes (vea 'Restricción de uso')."
137
 
138
+ #: includes/admin/wjecf-admin.php:235
139
  msgid "Shipping methods"
140
  msgstr "Métodos de envío"
141
 
142
+ #: includes/admin/wjecf-admin.php:236
143
  msgid "Any shipping method"
144
  msgstr "Métodos de envío"
145
 
146
+ #: includes/admin/wjecf-admin.php:245
147
  msgid "One of these shipping methods must be selected in order for this coupon to be valid."
148
  msgstr "Uno de estos métodos de pago tiene que ser seleccionado para usar este cupón."
149
 
150
+ #: includes/admin/wjecf-admin.php:251
151
  msgid "Payment methods"
152
  msgstr "Métodos de pago"
153
 
154
+ #: includes/admin/wjecf-admin.php:252
155
  msgid "Any payment method"
156
  msgstr "Métodos de pago"
157
 
158
+ #: includes/admin/wjecf-admin.php:263
159
  msgid "One of these payment methods must be selected in order for this coupon to be valid."
160
  msgstr "Uno de estos métodos de envío tiene que ser seleccionado para usar este cupón."
161
 
162
+ #: includes/admin/wjecf-admin.php:271
163
  msgid "Customer restrictions"
164
  msgstr "Restricción de clientes"
165
 
166
+ #: includes/admin/wjecf-admin.php:272
167
  msgid ""
168
  "If both a customer and a role restriction are supplied, matching either one of them will "
169
  "suffice."
171
  "Si se ha introducido tanto una restricción de cliente como una restricción de perfil, sí "
172
  "coincide uno de ellos será suficiente."
173
 
174
+ #: includes/admin/wjecf-admin.php:277
175
  msgid "Allowed Customers"
176
  msgstr "Clientes"
177
 
178
+ #: includes/admin/wjecf-admin.php:278
179
  msgid "Any customer"
180
  msgstr "Clientes"
181
 
182
+ #: includes/admin/wjecf-admin.php:291
183
  msgid "Only these customers may use this coupon."
184
  msgstr "Solo estos clientes pueden usar este cupón."
185
 
186
+ #: includes/admin/wjecf-admin.php:298
187
  msgid "Allowed User Roles"
188
  msgstr "Perfiles del cliente"
189
 
190
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
191
  msgid "Any role"
192
  msgstr "Perfiles del cliente"
193
 
194
+ #: includes/admin/wjecf-admin.php:313
195
  msgid "Only these User Roles may use this coupon."
196
  msgstr "Solo clientes con este perfil pueden usar este cupón."
197
 
198
+ #: includes/admin/wjecf-admin.php:320
199
  msgid "Disallowed User Roles"
200
  msgstr "Perfiles del cliente excluidos"
201
 
202
+ #: includes/admin/wjecf-admin.php:334
203
  msgid "These User Roles will be specifically excluded from using this coupon."
204
  msgstr "Clientes con este perfil no pueden usar este cupón."
205
 
206
+ #: includes/admin/wjecf-admin.php:345
207
  msgid "Allow when minimum spend not reached"
208
  msgstr ""
209
 
210
+ #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
211
+ #: includes/wjecf-pro-free-products.php:474 includes/wjecf-pro-free-products.php:482
212
  msgid "EXPERIMENTAL: "
213
  msgstr "EXPERIMENTAL:"
214
 
215
+ #: includes/admin/wjecf-admin.php:346
216
  msgid ""
217
  "Check this box to allow the coupon to be in the cart even when minimum spend (see tab 'usage "
218
  "restriction') is not reached. Value of the discount will be 0 until minimum spend is reached."
219
  msgstr ""
220
 
221
+ #: includes/wjecf-autocoupon.php:53 includes/wjecf-autocoupon.php:125
222
+ #: includes/wjecf-autocoupon.php:132
223
+ msgid "Auto coupon"
224
+ msgstr "Aplicar cupón automaticamente"
225
+
226
+ #: includes/wjecf-autocoupon.php:58
227
+ msgid "Individual use"
228
+ msgstr "Uso individual"
229
+
230
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
231
+ msgid "Yes"
232
+ msgstr ""
233
+
234
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
235
+ msgid "No"
236
+ msgstr ""
237
+
238
+ #: includes/wjecf-autocoupon.php:97
239
+ msgid "Auto coupons"
240
+ msgstr "Cupones autom."
241
+
242
+ #: includes/wjecf-autocoupon.php:133
243
+ msgid ""
244
+ "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
245
+ "description when you check this box, the description will be shown in the customer's cart if "
246
+ "the coupon is applied."
247
+ msgstr ""
248
+ "Aplicar el cupón automaticamente al carrito de compras cuando los requisitos sean cumplidos. "
249
+ "Por favor ingrese una descripción, ya que este será mostrado al cliente cuando el cupón esté "
250
+ "aplicado."
251
+
252
+ #: includes/wjecf-autocoupon.php:141
253
+ msgid "Priority"
254
+ msgstr "Prioridad"
255
+
256
+ #: includes/wjecf-autocoupon.php:142
257
+ msgid "No priority"
258
+ msgstr "Sin prioridad"
259
+
260
+ #: includes/wjecf-autocoupon.php:143
261
+ msgid ""
262
+ "When 'individual use' is checked, auto coupons with a higher value will have priority over "
263
+ "other auto coupons."
264
+ msgstr ""
265
+ "Al activar 'uso individual', cupones automáticos con mayor prioridad tendrán preferencia "
266
+ "sobre los otros cupones."
267
+
268
+ #: includes/wjecf-autocoupon.php:153
269
+ msgid "Apply silently"
270
+ msgstr "Aplicar sin mensaje"
271
+
272
+ #: includes/wjecf-autocoupon.php:154
273
+ msgid "Don't display a message when this coupon is automatically applied."
274
+ msgstr "No mostrar mensaje cuando el cupon esté aplicado automaticamente."
275
+
276
+ #: includes/wjecf-autocoupon.php:257
277
+ msgid "Free shipping coupon"
278
+ msgstr "Cupón para envío gratis"
279
+
280
+ #: includes/wjecf-autocoupon.php:413
281
+ #, php-format
282
+ msgid "Discount applied: %s"
283
+ msgstr "Descuento aplicado: %s"
284
+
285
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
286
+ msgid "Limit discount to"
287
+ msgstr "Limitar descuento a"
288
+
289
+ #: includes/wjecf-pro-controller.php:61
290
+ msgid ""
291
+ "Please note that when the discount type is 'Product discount' (see 'General'-tab), the "
292
+ "discount will only be applied to <em>matching</em> products."
293
+ msgstr ""
294
+
295
+ #: includes/wjecf-pro-controller.php:67
296
+ msgid "Discount on cart with excluded products"
297
+ msgstr ""
298
+
299
+ #: includes/wjecf-pro-controller.php:73
300
+ msgid "Allow discount on cart with excluded items"
301
+ msgstr ""
302
+
303
+ #: includes/wjecf-pro-controller.php:75
304
+ msgid ""
305
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when excluded items are "
306
+ "in the cart (see tab 'usage restriction')."
307
+ msgstr ""
308
+
309
+ #: includes/wjecf-pro-free-products.php:80
310
+ msgid "Please select your free gift."
311
+ msgstr "Elije tu regalo."
312
+
313
+ #: includes/wjecf-pro-free-products.php:337 includes/wjecf-pro-free-products.php:347
314
+ msgid "Free!"
315
+ msgstr "Gratis!"
316
+
317
+ #: includes/wjecf-pro-free-products.php:412 includes/wjecf-pro-free-products.php:435
318
+ #: includes/wjecf-pro-free-products.php:441
319
+ msgid "Free products"
320
+ msgstr "Productos gratis"
321
+
322
+ #: includes/wjecf-pro-free-products.php:446
323
+ msgid "Free products that will be added to the cart when this coupon is applied."
324
+ msgstr ""
325
+
326
+ #: includes/wjecf-pro-free-products.php:453
327
+ msgid "Select one"
328
+ msgstr "Elejir uno"
329
+
330
+ #: includes/wjecf-pro-free-products.php:454
331
+ msgid "Check this box if the customer must choose from the free products."
332
+ msgstr ""
333
+
334
+ #: includes/wjecf-pro-free-products.php:462
335
+ msgid "'Select your gift'-message"
336
+ msgstr "Mensaje 'Elije tu regalo'"
337
+
338
+ #: includes/wjecf-pro-free-products.php:463
339
+ msgid "Please choose your free gift:"
340
+ msgstr "Elije tu regalo:"
341
+
342
+ #: includes/wjecf-pro-free-products.php:464
343
+ msgid "This message is displayed when the customer must choose a free product."
344
+ msgstr ""
345
+
346
+ #: includes/wjecf-pro-free-products.php:473
347
+ msgid "Allow multiplication of the free products"
348
+ msgstr ""
349
+
350
+ #: includes/wjecf-pro-free-products.php:474
351
+ msgid ""
352
+ "The amount of free products is multiplied every time the minimum spend, subtotal or quantity "
353
+ "is reached."
354
+ msgstr ""
355
+
356
+ #: includes/wjecf-pro-free-products.php:481
357
+ msgid "BOGO matching products"
358
+ msgstr "1+1 gratis para los productos conformes"
359
+
360
+ #: includes/wjecf-pro-free-products.php:483
361
+ msgid ""
362
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-tab) and get one "
363
+ "free. Check 'Allow multiplication' to get one free item for every matching item in the cart."
364
+ msgstr ""
365
+
366
+ #: includes/wjecf-pro-free-products.php:497
367
+ msgid "Search for a product…"
368
+ msgstr "Buscar producto..."
369
+
370
+ #: woocommerce-jos-autocoupon-pro.php:33
371
+ msgid ""
372
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could not be detected."
373
+ msgstr ""
374
+
375
  #~ msgid "Extended Coupon Features"
376
  #~ msgstr "Opciones extendidas para el cupón"
377
 
languages/woocommerce-jos-autocoupon-nl_NL.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-nl_NL.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce auto added coupons 1.1.3.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-added-coupons\n"
7
- "POT-Creation-Date: 2015-11-22 21:02+0100\n"
8
- "PO-Revision-Date: 2015-11-22 21:03+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: nl_NL\n"
@@ -17,70 +17,47 @@ msgstr ""
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: includes/wjecf-autocoupon.php:54 includes/wjecf-autocoupon.php:61
21
- msgid "Auto coupon"
22
- msgstr "Automatisch toepassen"
23
-
24
- #: includes/wjecf-autocoupon.php:62
25
- msgid ""
26
- "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
27
- "description when you check this box, the description will be shown in the customer's cart if "
28
- "the coupon is applied."
29
- msgstr ""
30
- "Voeg de kortingsbon automatisch toe aan het winkelwagentje als aan alle voorwaarden wordt "
31
- "voldaan. Vult u a.u.b. een omschrijving in als u deze optie aanvinkt, de omschrijving zal aan "
32
- "de klant worden getoond wanneer de kortingsbon wordt toegevoegd."
33
-
34
- #: includes/wjecf-autocoupon.php:69
35
- msgid "Apply silently"
36
- msgstr "Toepassen zonder melding"
37
-
38
- #: includes/wjecf-autocoupon.php:70
39
- msgid "Don't display a message when this coupon is automatically applied."
40
- msgstr "Geen melding weergeven wanneer deze kortingsbon automatisch wordt toegepast."
41
-
42
- #: includes/wjecf-autocoupon.php:165
43
- msgid "Free shipping coupon"
44
- msgstr "Gratis verzending kortingsbon"
45
-
46
- #: includes/wjecf-autocoupon.php:305
47
- #, php-format
48
- msgid "Discount applied: %s"
49
- msgstr "Korting toegepast: %s"
50
-
51
- #: includes/wjecf-coupon-extensions.php:142
52
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
53
  msgstr "Vindt u WooCommerce Extended Coupon Features handig?"
54
 
55
- #: includes/wjecf-coupon-extensions.php:144
56
  msgid "Express your gratitude"
57
  msgstr "Toon uw waardering"
58
 
59
- #: includes/wjecf-coupon-extensions.php:148
60
  msgid "Donate to the developer"
61
  msgstr "Doneer aan de ontwikkelaar"
62
 
63
- #: includes/wjecf-coupon-extensions.php:160
 
 
 
 
 
 
 
 
64
  msgid "Products"
65
  msgstr "Producten"
66
 
67
- #: includes/wjecf-coupon-extensions.php:166 includes/wjecf-coupon-extensions.php:273
68
  msgid "Checkout"
69
  msgstr "Afrekenen"
70
 
71
- #: includes/wjecf-coupon-extensions.php:172 includes/wjecf-coupon-extensions.php:383
72
  msgid "Miscellaneous"
73
  msgstr "Diversen"
74
 
75
- #: includes/wjecf-coupon-extensions.php:184
76
  msgid "Matching products"
77
  msgstr "Overeenkomende producten"
78
 
79
- #: includes/wjecf-coupon-extensions.php:189
80
  msgid "AND Products (not OR)"
81
  msgstr "ALLE Producten (niet OF)"
82
 
83
- #: includes/wjecf-coupon-extensions.php:190
84
  msgid ""
85
  "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
86
  "use this coupon (instead of only one of the products)."
@@ -88,11 +65,11 @@ msgstr ""
88
  "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de winkelwagen moeten zitten "
89
  "om deze kortingsbon te kunnen gebruiken (in plaats van één van de producten)."
90
 
91
- #: includes/wjecf-coupon-extensions.php:197
92
  msgid "AND Categories (not OR)"
93
  msgstr "ALLE Categorieën (niet OF)"
94
 
95
- #: includes/wjecf-coupon-extensions.php:198
96
  msgid ""
97
  "Check this box if products from ALL of the categories (see tab 'usage restriction') must be "
98
  "in the cart to use this coupon (instead of only one from one of the categories)."
@@ -101,23 +78,23 @@ msgstr ""
101
  "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in plaats van een product "
102
  "van één van de categorieën)."
103
 
104
- #: includes/wjecf-coupon-extensions.php:203
105
  msgid "(AND)"
106
  msgstr "(ALLE)"
107
 
108
- #: includes/wjecf-coupon-extensions.php:204
109
  msgid "(OR)"
110
  msgstr "(OF)"
111
 
112
- #: includes/wjecf-coupon-extensions.php:233
113
  msgid "Minimum quantity of matching products"
114
  msgstr "Minimum aantal overeengekomen producten"
115
 
116
- #: includes/wjecf-coupon-extensions.php:234 includes/wjecf-coupon-extensions.php:254
117
  msgid "No minimum"
118
  msgstr "Geen minimum"
119
 
120
- #: includes/wjecf-coupon-extensions.php:235
121
  msgid ""
122
  "Minimum quantity of the products that match the given product or category restrictions (see "
123
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
@@ -127,15 +104,15 @@ msgstr ""
127
  "'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven worden alle "
128
  "producten in de winkelwagen geteld."
129
 
130
- #: includes/wjecf-coupon-extensions.php:243
131
  msgid "Maximum quantity of matching products"
132
  msgstr "Maximum aantal overeengekomen producten"
133
 
134
- #: includes/wjecf-coupon-extensions.php:244 includes/wjecf-coupon-extensions.php:264
135
  msgid "No maximum"
136
  msgstr "Geen maximum"
137
 
138
- #: includes/wjecf-coupon-extensions.php:245
139
  msgid ""
140
  "Maximum quantity of the products that match the given product or category restrictions (see "
141
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
@@ -145,11 +122,11 @@ msgstr ""
145
  "'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven worden alle "
146
  "producten in de winkelwagen geteld."
147
 
148
- #: includes/wjecf-coupon-extensions.php:253
149
  msgid "Minimum subtotal of matching products"
150
  msgstr "Minimum subtotaal overeengekomen producten"
151
 
152
- #: includes/wjecf-coupon-extensions.php:255
153
  msgid ""
154
  "Minimum price subtotal of the products that match the given product or category restrictions "
155
  "(see tab 'usage restriction')."
@@ -158,11 +135,11 @@ msgstr ""
158
  "tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven wordt het "
159
  "subtotaal van alle producten in de winkelwagen opgeteld."
160
 
161
- #: includes/wjecf-coupon-extensions.php:263
162
  msgid "Maximum subtotal of matching products"
163
  msgstr "Maximum subtotaal overeengekomen producten"
164
 
165
- #: includes/wjecf-coupon-extensions.php:265
166
  msgid ""
167
  "Maximum price subtotal of the products that match the given product or category restrictions "
168
  "(see tab 'usage restriction')."
@@ -171,35 +148,35 @@ msgstr ""
171
  "tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven wordt het "
172
  "subtotaal van alle producten in de winkelwagen opgeteld."
173
 
174
- #: includes/wjecf-coupon-extensions.php:278
175
  msgid "Shipping methods"
176
  msgstr "Verzendmethoden"
177
 
178
- #: includes/wjecf-coupon-extensions.php:279
179
  msgid "Any shipping method"
180
  msgstr "Verzendmethoden"
181
 
182
- #: includes/wjecf-coupon-extensions.php:288
183
  msgid "One of these shipping methods must be selected in order for this coupon to be valid."
184
  msgstr "Een van deze verzendmethoden moet gekozen zijn om deze kortingsbon te kunnen gebruiken."
185
 
186
- #: includes/wjecf-coupon-extensions.php:294
187
  msgid "Payment methods"
188
  msgstr "Betaalmethoden"
189
 
190
- #: includes/wjecf-coupon-extensions.php:295
191
  msgid "Any payment method"
192
  msgstr "Betaalmethoden"
193
 
194
- #: includes/wjecf-coupon-extensions.php:306
195
  msgid "One of these payment methods must be selected in order for this coupon to be valid."
196
  msgstr "Een van deze betaalmethoden moet gekozen zijn om deze kortingsbon te kunnen gebruiken."
197
 
198
- #: includes/wjecf-coupon-extensions.php:314
199
  msgid "Customer restrictions"
200
  msgstr "Klantbeperkingen"
201
 
202
- #: includes/wjecf-coupon-extensions.php:315
203
  msgid ""
204
  "If both a customer and a role restriction are supplied, matching either one of them will "
205
  "suffice."
@@ -207,47 +184,48 @@ msgstr ""
207
  "Als zowel een klant- als klantrolrestrictie is opgegeven hoeft slechts aan één van de "
208
  "restricties worden voldaan."
209
 
210
- #: includes/wjecf-coupon-extensions.php:320
211
  msgid "Allowed Customers"
212
  msgstr "Toegestane klanten"
213
 
214
- #: includes/wjecf-coupon-extensions.php:321
215
  msgid "Any customer"
216
  msgstr "Klanten"
217
 
218
- #: includes/wjecf-coupon-extensions.php:334
219
  msgid "Only these customers may use this coupon."
220
  msgstr "Alleen deze klanten kunnen deze kortingsbon gebruiken."
221
 
222
- #: includes/wjecf-coupon-extensions.php:341
223
  msgid "Allowed User Roles"
224
  msgstr "Toegestane klantrollen"
225
 
226
- #: includes/wjecf-coupon-extensions.php:342 includes/wjecf-coupon-extensions.php:364
227
  msgid "Any role"
228
  msgstr "Klantrollen"
229
 
230
- #: includes/wjecf-coupon-extensions.php:356
231
  msgid "Only these User Roles may use this coupon."
232
  msgstr "Alleen deze klantrollen kunnen deze kortingsbon gebruiken."
233
 
234
- #: includes/wjecf-coupon-extensions.php:363
235
  msgid "Disallowed User Roles"
236
  msgstr "Uitgesloten klantrollen"
237
 
238
- #: includes/wjecf-coupon-extensions.php:377
239
  msgid "These User Roles will be specifically excluded from using this coupon."
240
  msgstr "Deze klantrollen zijn uitgesloten om deze kortingsbon te gebruiken."
241
 
242
- #: includes/wjecf-coupon-extensions.php:388
243
  msgid "Allow when minimum spend not reached"
244
  msgstr "Toestaan wanneer minimale besteding nog niet is behaald."
245
 
246
- #: includes/wjecf-coupon-extensions.php:389
 
247
  msgid "EXPERIMENTAL: "
248
  msgstr "EXPERIMENTEEL:"
249
 
250
- #: includes/wjecf-coupon-extensions.php:389
251
  msgid ""
252
  "Check this box to allow the coupon to be in the cart even when minimum spend (see tab 'usage "
253
  "restriction') is not reached. Value of the discount will be 0 until minimum spend is reached."
@@ -255,6 +233,170 @@ msgstr ""
255
  "Aanvinken als de coupon in de winkelwagen mag zitten zelfs als minimale besteding nog niet is "
256
  "gehaald. De coupon zal een waarde van 0 hebben tot de minimale besteding is bereikt."
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  #~ msgid ""
259
  #~ "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
260
  #~ "use this coupon (in stead of only one of the products)."
@@ -279,26 +421,6 @@ msgstr ""
279
  #~ "Aanvinken als de kortingsbon ook in de winkelwagen mag zitten als 'minimale besteding' nog "
280
  #~ "niet is bereikt."
281
 
282
- #~ msgid "Free!"
283
- #~ msgstr "Gratis!"
284
-
285
- #~ msgid "Free products"
286
- #~ msgstr "Gratis producten"
287
-
288
- #~ msgid "Free products that will be added to the cart when this coupon is applied."
289
- #~ msgstr ""
290
- #~ "Gratis producten welke aan de winkelwagen worden toegevoegd als de coupon is toegepast."
291
-
292
- #~ msgid "Allow multiplication of the free products"
293
- #~ msgstr "Vermenigvuldigen gratis producten toestaan"
294
-
295
- #~ msgid ""
296
- #~ "The amount of free products is multiplied every time the minimum spend, subtotal or "
297
- #~ "quantity is reached."
298
- #~ msgstr ""
299
- #~ "Het aantal van de gratis producten wordt vermenigvuldigd met het totale aantal keer dat "
300
- #~ "minimale besteding, subtotaal of aantal is bereikt."
301
-
302
  #~ msgid "Customers"
303
  #~ msgstr "Klanten"
304
 
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce auto added coupons 1.1.3.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-added-coupons\n"
7
+ "POT-Creation-Date: 2016-01-18 20:10+0100\n"
8
+ "PO-Revision-Date: 2016-01-18 20:19+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: nl_NL\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: includes/admin/wjecf-admin.php:94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
22
  msgstr "Vindt u WooCommerce Extended Coupon Features handig?"
23
 
24
+ #: includes/admin/wjecf-admin.php:96
25
  msgid "Express your gratitude"
26
  msgstr "Toon uw waardering"
27
 
28
+ #: includes/admin/wjecf-admin.php:100
29
  msgid "Donate to the developer"
30
  msgstr "Doneer aan de ontwikkelaar"
31
 
32
+ #: includes/admin/wjecf-admin.php:107
33
+ msgid "Documentation"
34
+ msgstr "Documentatie"
35
+
36
+ #: includes/admin/wjecf-admin.php:109
37
+ msgid "WooCommerce Extended Coupon Features Documentation"
38
+ msgstr "WooCommerce Extended Coupon Features Documentatie"
39
+
40
+ #: includes/admin/wjecf-admin.php:117
41
  msgid "Products"
42
  msgstr "Producten"
43
 
44
+ #: includes/admin/wjecf-admin.php:123 includes/admin/wjecf-admin.php:230
45
  msgid "Checkout"
46
  msgstr "Afrekenen"
47
 
48
+ #: includes/admin/wjecf-admin.php:129 includes/admin/wjecf-admin.php:340
49
  msgid "Miscellaneous"
50
  msgstr "Diversen"
51
 
52
+ #: includes/admin/wjecf-admin.php:141
53
  msgid "Matching products"
54
  msgstr "Overeenkomende producten"
55
 
56
+ #: includes/admin/wjecf-admin.php:146
57
  msgid "AND Products (not OR)"
58
  msgstr "ALLE Producten (niet OF)"
59
 
60
+ #: includes/admin/wjecf-admin.php:147
61
  msgid ""
62
  "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
63
  "use this coupon (instead of only one of the products)."
65
  "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de winkelwagen moeten zitten "
66
  "om deze kortingsbon te kunnen gebruiken (in plaats van één van de producten)."
67
 
68
+ #: includes/admin/wjecf-admin.php:154
69
  msgid "AND Categories (not OR)"
70
  msgstr "ALLE Categorieën (niet OF)"
71
 
72
+ #: includes/admin/wjecf-admin.php:155
73
  msgid ""
74
  "Check this box if products from ALL of the categories (see tab 'usage restriction') must be "
75
  "in the cart to use this coupon (instead of only one from one of the categories)."
78
  "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in plaats van een product "
79
  "van één van de categorieën)."
80
 
81
+ #: includes/admin/wjecf-admin.php:160
82
  msgid "(AND)"
83
  msgstr "(ALLE)"
84
 
85
+ #: includes/admin/wjecf-admin.php:161
86
  msgid "(OR)"
87
  msgstr "(OF)"
88
 
89
+ #: includes/admin/wjecf-admin.php:190
90
  msgid "Minimum quantity of matching products"
91
  msgstr "Minimum aantal overeengekomen producten"
92
 
93
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
94
  msgid "No minimum"
95
  msgstr "Geen minimum"
96
 
97
+ #: includes/admin/wjecf-admin.php:192
98
  msgid ""
99
  "Minimum quantity of the products that match the given product or category restrictions (see "
100
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
104
  "'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven worden alle "
105
  "producten in de winkelwagen geteld."
106
 
107
+ #: includes/admin/wjecf-admin.php:200
108
  msgid "Maximum quantity of matching products"
109
  msgstr "Maximum aantal overeengekomen producten"
110
 
111
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
112
  msgid "No maximum"
113
  msgstr "Geen maximum"
114
 
115
+ #: includes/admin/wjecf-admin.php:202
116
  msgid ""
117
  "Maximum quantity of the products that match the given product or category restrictions (see "
118
  "tab 'usage restriction'). If no product or category restrictions are specified, the total "
122
  "'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven worden alle "
123
  "producten in de winkelwagen geteld."
124
 
125
+ #: includes/admin/wjecf-admin.php:210
126
  msgid "Minimum subtotal of matching products"
127
  msgstr "Minimum subtotaal overeengekomen producten"
128
 
129
+ #: includes/admin/wjecf-admin.php:212
130
  msgid ""
131
  "Minimum price subtotal of the products that match the given product or category restrictions "
132
  "(see tab 'usage restriction')."
135
  "tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven wordt het "
136
  "subtotaal van alle producten in de winkelwagen opgeteld."
137
 
138
+ #: includes/admin/wjecf-admin.php:220
139
  msgid "Maximum subtotal of matching products"
140
  msgstr "Maximum subtotaal overeengekomen producten"
141
 
142
+ #: includes/admin/wjecf-admin.php:222
143
  msgid ""
144
  "Maximum price subtotal of the products that match the given product or category restrictions "
145
  "(see tab 'usage restriction')."
148
  "tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is opgegeven wordt het "
149
  "subtotaal van alle producten in de winkelwagen opgeteld."
150
 
151
+ #: includes/admin/wjecf-admin.php:235
152
  msgid "Shipping methods"
153
  msgstr "Verzendmethoden"
154
 
155
+ #: includes/admin/wjecf-admin.php:236
156
  msgid "Any shipping method"
157
  msgstr "Verzendmethoden"
158
 
159
+ #: includes/admin/wjecf-admin.php:245
160
  msgid "One of these shipping methods must be selected in order for this coupon to be valid."
161
  msgstr "Een van deze verzendmethoden moet gekozen zijn om deze kortingsbon te kunnen gebruiken."
162
 
163
+ #: includes/admin/wjecf-admin.php:251
164
  msgid "Payment methods"
165
  msgstr "Betaalmethoden"
166
 
167
+ #: includes/admin/wjecf-admin.php:252
168
  msgid "Any payment method"
169
  msgstr "Betaalmethoden"
170
 
171
+ #: includes/admin/wjecf-admin.php:263
172
  msgid "One of these payment methods must be selected in order for this coupon to be valid."
173
  msgstr "Een van deze betaalmethoden moet gekozen zijn om deze kortingsbon te kunnen gebruiken."
174
 
175
+ #: includes/admin/wjecf-admin.php:271
176
  msgid "Customer restrictions"
177
  msgstr "Klantbeperkingen"
178
 
179
+ #: includes/admin/wjecf-admin.php:272
180
  msgid ""
181
  "If both a customer and a role restriction are supplied, matching either one of them will "
182
  "suffice."
184
  "Als zowel een klant- als klantrolrestrictie is opgegeven hoeft slechts aan één van de "
185
  "restricties worden voldaan."
186
 
187
+ #: includes/admin/wjecf-admin.php:277
188
  msgid "Allowed Customers"
189
  msgstr "Toegestane klanten"
190
 
191
+ #: includes/admin/wjecf-admin.php:278
192
  msgid "Any customer"
193
  msgstr "Klanten"
194
 
195
+ #: includes/admin/wjecf-admin.php:291
196
  msgid "Only these customers may use this coupon."
197
  msgstr "Alleen deze klanten kunnen deze kortingsbon gebruiken."
198
 
199
+ #: includes/admin/wjecf-admin.php:298
200
  msgid "Allowed User Roles"
201
  msgstr "Toegestane klantrollen"
202
 
203
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
204
  msgid "Any role"
205
  msgstr "Klantrollen"
206
 
207
+ #: includes/admin/wjecf-admin.php:313
208
  msgid "Only these User Roles may use this coupon."
209
  msgstr "Alleen deze klantrollen kunnen deze kortingsbon gebruiken."
210
 
211
+ #: includes/admin/wjecf-admin.php:320
212
  msgid "Disallowed User Roles"
213
  msgstr "Uitgesloten klantrollen"
214
 
215
+ #: includes/admin/wjecf-admin.php:334
216
  msgid "These User Roles will be specifically excluded from using this coupon."
217
  msgstr "Deze klantrollen zijn uitgesloten om deze kortingsbon te gebruiken."
218
 
219
+ #: includes/admin/wjecf-admin.php:345
220
  msgid "Allow when minimum spend not reached"
221
  msgstr "Toestaan wanneer minimale besteding nog niet is behaald."
222
 
223
+ #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
224
+ #: includes/wjecf-pro-free-products.php:474 includes/wjecf-pro-free-products.php:482
225
  msgid "EXPERIMENTAL: "
226
  msgstr "EXPERIMENTEEL:"
227
 
228
+ #: includes/admin/wjecf-admin.php:346
229
  msgid ""
230
  "Check this box to allow the coupon to be in the cart even when minimum spend (see tab 'usage "
231
  "restriction') is not reached. Value of the discount will be 0 until minimum spend is reached."
233
  "Aanvinken als de coupon in de winkelwagen mag zitten zelfs als minimale besteding nog niet is "
234
  "gehaald. De coupon zal een waarde van 0 hebben tot de minimale besteding is bereikt."
235
 
236
+ #: includes/wjecf-autocoupon.php:53 includes/wjecf-autocoupon.php:125
237
+ #: includes/wjecf-autocoupon.php:132
238
+ msgid "Auto coupon"
239
+ msgstr "Automatisch toepassen"
240
+
241
+ #: includes/wjecf-autocoupon.php:58
242
+ msgid "Individual use"
243
+ msgstr "Individueel gebruik"
244
+
245
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
246
+ msgid "Yes"
247
+ msgstr ""
248
+
249
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
250
+ msgid "No"
251
+ msgstr ""
252
+
253
+ #: includes/wjecf-autocoupon.php:97
254
+ msgid "Auto coupons"
255
+ msgstr ""
256
+
257
+ #: includes/wjecf-autocoupon.php:133
258
+ msgid ""
259
+ "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
260
+ "description when you check this box, the description will be shown in the customer's cart if "
261
+ "the coupon is applied."
262
+ msgstr ""
263
+ "Voeg de kortingsbon automatisch toe aan het winkelwagentje als aan alle voorwaarden wordt "
264
+ "voldaan. Vult u a.u.b. een omschrijving in als u deze optie aanvinkt, de omschrijving zal aan "
265
+ "de klant worden getoond wanneer de kortingsbon wordt toegevoegd."
266
+
267
+ #: includes/wjecf-autocoupon.php:141
268
+ msgid "Priority"
269
+ msgstr "Prioriteit"
270
+
271
+ #: includes/wjecf-autocoupon.php:142
272
+ msgid "No priority"
273
+ msgstr "Geen prioriteit"
274
+
275
+ #: includes/wjecf-autocoupon.php:143
276
+ msgid ""
277
+ "When 'individual use' is checked, auto coupons with a higher value will have priority over "
278
+ "other auto coupons."
279
+ msgstr ""
280
+ "Wanneer 'individueel gebruik' is aangevinkt, zullen auto coupons met een hogere prioriteit "
281
+ "voorrang krijgen boven andere auto coupons."
282
+
283
+ #: includes/wjecf-autocoupon.php:153
284
+ msgid "Apply silently"
285
+ msgstr "Toepassen zonder melding"
286
+
287
+ #: includes/wjecf-autocoupon.php:154
288
+ msgid "Don't display a message when this coupon is automatically applied."
289
+ msgstr "Geen melding weergeven wanneer deze kortingsbon automatisch wordt toegepast."
290
+
291
+ #: includes/wjecf-autocoupon.php:257
292
+ msgid "Free shipping coupon"
293
+ msgstr "Gratis verzending kortingsbon"
294
+
295
+ #: includes/wjecf-autocoupon.php:413
296
+ #, php-format
297
+ msgid "Discount applied: %s"
298
+ msgstr "Korting toegepast: %s"
299
+
300
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
301
+ msgid "Limit discount to"
302
+ msgstr "Limiteer korting tot"
303
+
304
+ #: includes/wjecf-pro-controller.php:61
305
+ msgid ""
306
+ "Please note that when the discount type is 'Product discount' (see 'General'-tab), the "
307
+ "discount will only be applied to <em>matching</em> products."
308
+ msgstr ""
309
+ "Let op dat wanneer het type korting 'Product korting' (zie tab 'Algemeen') is gekozen, de "
310
+ "korting alleen zal worden toegepast op overeengekomen producten."
311
+
312
+ #: includes/wjecf-pro-controller.php:67
313
+ msgid "Discount on cart with excluded products"
314
+ msgstr "Korting op winkelwagen met uitgesloten producten"
315
+
316
+ #: includes/wjecf-pro-controller.php:73
317
+ msgid "Allow discount on cart with excluded items"
318
+ msgstr "Korting toestaan op winkelwagen met uitgesloten producten"
319
+
320
+ #: includes/wjecf-pro-controller.php:75
321
+ msgid ""
322
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when excluded items are "
323
+ "in the cart (see tab 'usage restriction')."
324
+ msgstr ""
325
+ "Aanvinken om een 'Winkelwagen korting'-coupon ook te accepteren als er uitgesloten producten "
326
+ "in de winkelwagen aanwezig zijn (zie tab 'gebruiksbeperking')."
327
+
328
+ #: includes/wjecf-pro-free-products.php:80
329
+ msgid "Please select your free gift."
330
+ msgstr "Kies een gratis artikel."
331
+
332
+ #: includes/wjecf-pro-free-products.php:337 includes/wjecf-pro-free-products.php:347
333
+ msgid "Free!"
334
+ msgstr "Gratis!"
335
+
336
+ #: includes/wjecf-pro-free-products.php:412 includes/wjecf-pro-free-products.php:435
337
+ #: includes/wjecf-pro-free-products.php:441
338
+ msgid "Free products"
339
+ msgstr "Gratis producten"
340
+
341
+ #: includes/wjecf-pro-free-products.php:446
342
+ msgid "Free products that will be added to the cart when this coupon is applied."
343
+ msgstr "Gratis producten welke aan de winkelwagen worden toegevoegd als de coupon is toegepast."
344
+
345
+ #: includes/wjecf-pro-free-products.php:453
346
+ msgid "Select one"
347
+ msgstr "Kies één"
348
+
349
+ #: includes/wjecf-pro-free-products.php:454
350
+ msgid "Check this box if the customer must choose from the free products."
351
+ msgstr "Aanvinken als de klant één van de gratis producten moet kiezen."
352
+
353
+ #: includes/wjecf-pro-free-products.php:462
354
+ msgid "'Select your gift'-message"
355
+ msgstr "'Kies uw gratis product'-boodschap"
356
+
357
+ #: includes/wjecf-pro-free-products.php:463
358
+ msgid "Please choose your free gift:"
359
+ msgstr "Kies uw gratis product:"
360
+
361
+ #: includes/wjecf-pro-free-products.php:464
362
+ msgid "This message is displayed when the customer must choose a free product."
363
+ msgstr "Deze melding wordt getoond wanneer de klant een gratis product moet kiezen."
364
+
365
+ #: includes/wjecf-pro-free-products.php:473
366
+ msgid "Allow multiplication of the free products"
367
+ msgstr "Vermenigvuldigen gratis producten toestaan"
368
+
369
+ #: includes/wjecf-pro-free-products.php:474
370
+ msgid ""
371
+ "The amount of free products is multiplied every time the minimum spend, subtotal or quantity "
372
+ "is reached."
373
+ msgstr ""
374
+ "Het aantal van de gratis producten wordt vermenigvuldigd met het totale aantal keer dat "
375
+ "minimale besteding, subtotaal of aantal is bereikt."
376
+
377
+ #: includes/wjecf-pro-free-products.php:481
378
+ msgid "BOGO matching products"
379
+ msgstr "1+1 gratis voor overeengekomen producten"
380
+
381
+ #: includes/wjecf-pro-free-products.php:483
382
+ msgid ""
383
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-tab) and get one "
384
+ "free. Check 'Allow multiplication' to get one free item for every matching item in the cart."
385
+ msgstr ""
386
+ "Koop één of meer van de overeenkomende producten en ontvang er één gratis. Gebruik "
387
+ "'vermenigvuldigen toestaan' om een gratis artikel voor elk overeenkomend artikel te krijgen."
388
+
389
+ #: includes/wjecf-pro-free-products.php:497
390
+ msgid "Search for a product…"
391
+ msgstr "Zoek een product..."
392
+
393
+ #: woocommerce-jos-autocoupon-pro.php:33
394
+ msgid ""
395
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could not be detected."
396
+ msgstr ""
397
+ "WooCommerce Extended Coupon Features is uitgeschakeld omdat WooCommerce niet kon worden "
398
+ "gedetecteerd."
399
+
400
  #~ msgid ""
401
  #~ "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
402
  #~ "use this coupon (in stead of only one of the products)."
421
  #~ "Aanvinken als de kortingsbon ook in de winkelwagen mag zitten als 'minimale besteding' nog "
422
  #~ "niet is bereikt."
423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  #~ msgid "Customers"
425
  #~ msgstr "Klanten"
426
 
languages/woocommerce-jos-autocoupon.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
5
- "POT-Creation-Date: 2015-11-22 21:01+0100\n"
6
  "PO-Revision-Date: 2015-05-09 18:12+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jos Koenis\n"
@@ -16,227 +16,358 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: includes/wjecf-autocoupon.php:54 includes/wjecf-autocoupon.php:61
20
- msgid "Auto coupon"
21
- msgstr ""
22
-
23
- #: includes/wjecf-autocoupon.php:62
24
- msgid ""
25
- "Automatically add the coupon to the cart if the restrictions are met. Please "
26
- "enter a description when you check this box, the description will be shown "
27
- "in the customer's cart if the coupon is applied."
28
- msgstr ""
29
-
30
- #: includes/wjecf-autocoupon.php:69
31
- msgid "Apply silently"
32
- msgstr ""
33
-
34
- #: includes/wjecf-autocoupon.php:70
35
- msgid "Don't display a message when this coupon is automatically applied."
36
- msgstr ""
37
-
38
- #: includes/wjecf-autocoupon.php:165
39
- msgid "Free shipping coupon"
40
  msgstr ""
41
 
42
- #: includes/wjecf-autocoupon.php:305
43
- #, php-format
44
- msgid "Discount applied: %s"
45
  msgstr ""
46
 
47
- #: includes/wjecf-coupon-extensions.php:142
48
- msgid "Do you find WooCommerce Extended Coupon Features useful?"
49
  msgstr ""
50
 
51
- #: includes/wjecf-coupon-extensions.php:144
52
- msgid "Express your gratitude"
53
  msgstr ""
54
 
55
- #: includes/wjecf-coupon-extensions.php:148
56
- msgid "Donate to the developer"
57
  msgstr ""
58
 
59
- #: includes/wjecf-coupon-extensions.php:160
60
  msgid "Products"
61
  msgstr ""
62
 
63
- #: includes/wjecf-coupon-extensions.php:166
64
- #: includes/wjecf-coupon-extensions.php:273
65
  msgid "Checkout"
66
  msgstr ""
67
 
68
- #: includes/wjecf-coupon-extensions.php:172
69
- #: includes/wjecf-coupon-extensions.php:383
70
  msgid "Miscellaneous"
71
  msgstr ""
72
 
73
- #: includes/wjecf-coupon-extensions.php:184
74
  msgid "Matching products"
75
  msgstr ""
76
 
77
- #: includes/wjecf-coupon-extensions.php:189
78
  msgid "AND Products (not OR)"
79
  msgstr ""
80
 
81
- #: includes/wjecf-coupon-extensions.php:190
82
  msgid ""
83
  "Check this box if ALL of the products (see tab 'usage restriction') must be "
84
  "in the cart to use this coupon (instead of only one of the products)."
85
  msgstr ""
86
 
87
- #: includes/wjecf-coupon-extensions.php:197
88
  msgid "AND Categories (not OR)"
89
  msgstr ""
90
 
91
- #: includes/wjecf-coupon-extensions.php:198
92
  msgid ""
93
  "Check this box if products from ALL of the categories (see tab 'usage "
94
  "restriction') must be in the cart to use this coupon (instead of only one "
95
  "from one of the categories)."
96
  msgstr ""
97
 
98
- #: includes/wjecf-coupon-extensions.php:203
99
  msgid "(AND)"
100
  msgstr ""
101
 
102
- #: includes/wjecf-coupon-extensions.php:204
103
  msgid "(OR)"
104
  msgstr ""
105
 
106
- #: includes/wjecf-coupon-extensions.php:233
107
  msgid "Minimum quantity of matching products"
108
  msgstr ""
109
 
110
- #: includes/wjecf-coupon-extensions.php:234
111
- #: includes/wjecf-coupon-extensions.php:254
112
  msgid "No minimum"
113
  msgstr ""
114
 
115
- #: includes/wjecf-coupon-extensions.php:235
116
  msgid ""
117
  "Minimum quantity of the products that match the given product or category "
118
  "restrictions (see tab 'usage restriction'). If no product or category "
119
  "restrictions are specified, the total number of products is used."
120
  msgstr ""
121
 
122
- #: includes/wjecf-coupon-extensions.php:243
123
  msgid "Maximum quantity of matching products"
124
  msgstr ""
125
 
126
- #: includes/wjecf-coupon-extensions.php:244
127
- #: includes/wjecf-coupon-extensions.php:264
128
  msgid "No maximum"
129
  msgstr ""
130
 
131
- #: includes/wjecf-coupon-extensions.php:245
132
  msgid ""
133
  "Maximum quantity of the products that match the given product or category "
134
  "restrictions (see tab 'usage restriction'). If no product or category "
135
  "restrictions are specified, the total number of products is used."
136
  msgstr ""
137
 
138
- #: includes/wjecf-coupon-extensions.php:253
139
  msgid "Minimum subtotal of matching products"
140
  msgstr ""
141
 
142
- #: includes/wjecf-coupon-extensions.php:255
143
  msgid ""
144
  "Minimum price subtotal of the products that match the given product or "
145
  "category restrictions (see tab 'usage restriction')."
146
  msgstr ""
147
 
148
- #: includes/wjecf-coupon-extensions.php:263
149
  msgid "Maximum subtotal of matching products"
150
  msgstr ""
151
 
152
- #: includes/wjecf-coupon-extensions.php:265
153
  msgid ""
154
  "Maximum price subtotal of the products that match the given product or "
155
  "category restrictions (see tab 'usage restriction')."
156
  msgstr ""
157
 
158
- #: includes/wjecf-coupon-extensions.php:278
159
  msgid "Shipping methods"
160
  msgstr ""
161
 
162
- #: includes/wjecf-coupon-extensions.php:279
163
  msgid "Any shipping method"
164
  msgstr ""
165
 
166
- #: includes/wjecf-coupon-extensions.php:288
167
  msgid ""
168
  "One of these shipping methods must be selected in order for this coupon to "
169
  "be valid."
170
  msgstr ""
171
 
172
- #: includes/wjecf-coupon-extensions.php:294
173
  msgid "Payment methods"
174
  msgstr ""
175
 
176
- #: includes/wjecf-coupon-extensions.php:295
177
  msgid "Any payment method"
178
  msgstr ""
179
 
180
- #: includes/wjecf-coupon-extensions.php:306
181
  msgid ""
182
  "One of these payment methods must be selected in order for this coupon to be "
183
  "valid."
184
  msgstr ""
185
 
186
- #: includes/wjecf-coupon-extensions.php:314
187
  msgid "Customer restrictions"
188
  msgstr ""
189
 
190
- #: includes/wjecf-coupon-extensions.php:315
191
  msgid ""
192
  "If both a customer and a role restriction are supplied, matching either one "
193
  "of them will suffice."
194
  msgstr ""
195
 
196
- #: includes/wjecf-coupon-extensions.php:320
197
  msgid "Allowed Customers"
198
  msgstr ""
199
 
200
- #: includes/wjecf-coupon-extensions.php:321
201
  msgid "Any customer"
202
  msgstr ""
203
 
204
- #: includes/wjecf-coupon-extensions.php:334
205
  msgid "Only these customers may use this coupon."
206
  msgstr ""
207
 
208
- #: includes/wjecf-coupon-extensions.php:341
209
  msgid "Allowed User Roles"
210
  msgstr ""
211
 
212
- #: includes/wjecf-coupon-extensions.php:342
213
- #: includes/wjecf-coupon-extensions.php:364
214
  msgid "Any role"
215
  msgstr ""
216
 
217
- #: includes/wjecf-coupon-extensions.php:356
218
  msgid "Only these User Roles may use this coupon."
219
  msgstr ""
220
 
221
- #: includes/wjecf-coupon-extensions.php:363
222
  msgid "Disallowed User Roles"
223
  msgstr ""
224
 
225
- #: includes/wjecf-coupon-extensions.php:377
226
  msgid "These User Roles will be specifically excluded from using this coupon."
227
  msgstr ""
228
 
229
- #: includes/wjecf-coupon-extensions.php:388
230
  msgid "Allow when minimum spend not reached"
231
  msgstr ""
232
 
233
- #: includes/wjecf-coupon-extensions.php:389
 
 
234
  msgid "EXPERIMENTAL: "
235
  msgstr ""
236
 
237
- #: includes/wjecf-coupon-extensions.php:389
238
  msgid ""
239
  "Check this box to allow the coupon to be in the cart even when minimum spend "
240
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
241
  "0 until minimum spend is reached."
242
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
5
+ "POT-Creation-Date: 2016-01-18 20:10+0100\n"
6
  "PO-Revision-Date: 2015-05-09 18:12+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jos Koenis\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: includes/admin/wjecf-admin.php:94
20
+ msgid "Do you find WooCommerce Extended Coupon Features useful?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
+ #: includes/admin/wjecf-admin.php:96
24
+ msgid "Express your gratitude"
 
25
  msgstr ""
26
 
27
+ #: includes/admin/wjecf-admin.php:100
28
+ msgid "Donate to the developer"
29
  msgstr ""
30
 
31
+ #: includes/admin/wjecf-admin.php:107
32
+ msgid "Documentation"
33
  msgstr ""
34
 
35
+ #: includes/admin/wjecf-admin.php:109
36
+ msgid "WooCommerce Extended Coupon Features Documentation"
37
  msgstr ""
38
 
39
+ #: includes/admin/wjecf-admin.php:117
40
  msgid "Products"
41
  msgstr ""
42
 
43
+ #: includes/admin/wjecf-admin.php:123 includes/admin/wjecf-admin.php:230
 
44
  msgid "Checkout"
45
  msgstr ""
46
 
47
+ #: includes/admin/wjecf-admin.php:129 includes/admin/wjecf-admin.php:340
 
48
  msgid "Miscellaneous"
49
  msgstr ""
50
 
51
+ #: includes/admin/wjecf-admin.php:141
52
  msgid "Matching products"
53
  msgstr ""
54
 
55
+ #: includes/admin/wjecf-admin.php:146
56
  msgid "AND Products (not OR)"
57
  msgstr ""
58
 
59
+ #: includes/admin/wjecf-admin.php:147
60
  msgid ""
61
  "Check this box if ALL of the products (see tab 'usage restriction') must be "
62
  "in the cart to use this coupon (instead of only one of the products)."
63
  msgstr ""
64
 
65
+ #: includes/admin/wjecf-admin.php:154
66
  msgid "AND Categories (not OR)"
67
  msgstr ""
68
 
69
+ #: includes/admin/wjecf-admin.php:155
70
  msgid ""
71
  "Check this box if products from ALL of the categories (see tab 'usage "
72
  "restriction') must be in the cart to use this coupon (instead of only one "
73
  "from one of the categories)."
74
  msgstr ""
75
 
76
+ #: includes/admin/wjecf-admin.php:160
77
  msgid "(AND)"
78
  msgstr ""
79
 
80
+ #: includes/admin/wjecf-admin.php:161
81
  msgid "(OR)"
82
  msgstr ""
83
 
84
+ #: includes/admin/wjecf-admin.php:190
85
  msgid "Minimum quantity of matching products"
86
  msgstr ""
87
 
88
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
 
89
  msgid "No minimum"
90
  msgstr ""
91
 
92
+ #: includes/admin/wjecf-admin.php:192
93
  msgid ""
94
  "Minimum quantity of the products that match the given product or category "
95
  "restrictions (see tab 'usage restriction'). If no product or category "
96
  "restrictions are specified, the total number of products is used."
97
  msgstr ""
98
 
99
+ #: includes/admin/wjecf-admin.php:200
100
  msgid "Maximum quantity of matching products"
101
  msgstr ""
102
 
103
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
 
104
  msgid "No maximum"
105
  msgstr ""
106
 
107
+ #: includes/admin/wjecf-admin.php:202
108
  msgid ""
109
  "Maximum quantity of the products that match the given product or category "
110
  "restrictions (see tab 'usage restriction'). If no product or category "
111
  "restrictions are specified, the total number of products is used."
112
  msgstr ""
113
 
114
+ #: includes/admin/wjecf-admin.php:210
115
  msgid "Minimum subtotal of matching products"
116
  msgstr ""
117
 
118
+ #: includes/admin/wjecf-admin.php:212
119
  msgid ""
120
  "Minimum price subtotal of the products that match the given product or "
121
  "category restrictions (see tab 'usage restriction')."
122
  msgstr ""
123
 
124
+ #: includes/admin/wjecf-admin.php:220
125
  msgid "Maximum subtotal of matching products"
126
  msgstr ""
127
 
128
+ #: includes/admin/wjecf-admin.php:222
129
  msgid ""
130
  "Maximum price subtotal of the products that match the given product or "
131
  "category restrictions (see tab 'usage restriction')."
132
  msgstr ""
133
 
134
+ #: includes/admin/wjecf-admin.php:235
135
  msgid "Shipping methods"
136
  msgstr ""
137
 
138
+ #: includes/admin/wjecf-admin.php:236
139
  msgid "Any shipping method"
140
  msgstr ""
141
 
142
+ #: includes/admin/wjecf-admin.php:245
143
  msgid ""
144
  "One of these shipping methods must be selected in order for this coupon to "
145
  "be valid."
146
  msgstr ""
147
 
148
+ #: includes/admin/wjecf-admin.php:251
149
  msgid "Payment methods"
150
  msgstr ""
151
 
152
+ #: includes/admin/wjecf-admin.php:252
153
  msgid "Any payment method"
154
  msgstr ""
155
 
156
+ #: includes/admin/wjecf-admin.php:263
157
  msgid ""
158
  "One of these payment methods must be selected in order for this coupon to be "
159
  "valid."
160
  msgstr ""
161
 
162
+ #: includes/admin/wjecf-admin.php:271
163
  msgid "Customer restrictions"
164
  msgstr ""
165
 
166
+ #: includes/admin/wjecf-admin.php:272
167
  msgid ""
168
  "If both a customer and a role restriction are supplied, matching either one "
169
  "of them will suffice."
170
  msgstr ""
171
 
172
+ #: includes/admin/wjecf-admin.php:277
173
  msgid "Allowed Customers"
174
  msgstr ""
175
 
176
+ #: includes/admin/wjecf-admin.php:278
177
  msgid "Any customer"
178
  msgstr ""
179
 
180
+ #: includes/admin/wjecf-admin.php:291
181
  msgid "Only these customers may use this coupon."
182
  msgstr ""
183
 
184
+ #: includes/admin/wjecf-admin.php:298
185
  msgid "Allowed User Roles"
186
  msgstr ""
187
 
188
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
 
189
  msgid "Any role"
190
  msgstr ""
191
 
192
+ #: includes/admin/wjecf-admin.php:313
193
  msgid "Only these User Roles may use this coupon."
194
  msgstr ""
195
 
196
+ #: includes/admin/wjecf-admin.php:320
197
  msgid "Disallowed User Roles"
198
  msgstr ""
199
 
200
+ #: includes/admin/wjecf-admin.php:334
201
  msgid "These User Roles will be specifically excluded from using this coupon."
202
  msgstr ""
203
 
204
+ #: includes/admin/wjecf-admin.php:345
205
  msgid "Allow when minimum spend not reached"
206
  msgstr ""
207
 
208
+ #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
209
+ #: includes/wjecf-pro-free-products.php:474
210
+ #: includes/wjecf-pro-free-products.php:482
211
  msgid "EXPERIMENTAL: "
212
  msgstr ""
213
 
214
+ #: includes/admin/wjecf-admin.php:346
215
  msgid ""
216
  "Check this box to allow the coupon to be in the cart even when minimum spend "
217
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
218
  "0 until minimum spend is reached."
219
  msgstr ""
220
+
221
+ #: includes/wjecf-autocoupon.php:53 includes/wjecf-autocoupon.php:125
222
+ #: includes/wjecf-autocoupon.php:132
223
+ msgid "Auto coupon"
224
+ msgstr ""
225
+
226
+ #: includes/wjecf-autocoupon.php:58
227
+ msgid "Individual use"
228
+ msgstr ""
229
+
230
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
231
+ msgid "Yes"
232
+ msgstr ""
233
+
234
+ #: includes/wjecf-autocoupon.php:78 includes/wjecf-autocoupon.php:86
235
+ msgid "No"
236
+ msgstr ""
237
+
238
+ #: includes/wjecf-autocoupon.php:97
239
+ msgid "Auto coupons"
240
+ msgstr ""
241
+
242
+ #: includes/wjecf-autocoupon.php:133
243
+ msgid ""
244
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
245
+ "enter a description when you check this box, the description will be shown "
246
+ "in the customer's cart if the coupon is applied."
247
+ msgstr ""
248
+
249
+ #: includes/wjecf-autocoupon.php:141
250
+ msgid "Priority"
251
+ msgstr ""
252
+
253
+ #: includes/wjecf-autocoupon.php:142
254
+ msgid "No priority"
255
+ msgstr ""
256
+
257
+ #: includes/wjecf-autocoupon.php:143
258
+ msgid ""
259
+ "When 'individual use' is checked, auto coupons with a higher value will have "
260
+ "priority over other auto coupons."
261
+ msgstr ""
262
+
263
+ #: includes/wjecf-autocoupon.php:153
264
+ msgid "Apply silently"
265
+ msgstr ""
266
+
267
+ #: includes/wjecf-autocoupon.php:154
268
+ msgid "Don't display a message when this coupon is automatically applied."
269
+ msgstr ""
270
+
271
+ #: includes/wjecf-autocoupon.php:257
272
+ msgid "Free shipping coupon"
273
+ msgstr ""
274
+
275
+ #: includes/wjecf-autocoupon.php:413
276
+ #, php-format
277
+ msgid "Discount applied: %s"
278
+ msgstr ""
279
+
280
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
281
+ msgid "Limit discount to"
282
+ msgstr ""
283
+
284
+ #: includes/wjecf-pro-controller.php:61
285
+ msgid ""
286
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
287
+ "tab), the discount will only be applied to <em>matching</em> products."
288
+ msgstr ""
289
+
290
+ #: includes/wjecf-pro-controller.php:67
291
+ msgid "Discount on cart with excluded products"
292
+ msgstr ""
293
+
294
+ #: includes/wjecf-pro-controller.php:73
295
+ msgid "Allow discount on cart with excluded items"
296
+ msgstr ""
297
+
298
+ #: includes/wjecf-pro-controller.php:75
299
+ msgid ""
300
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
301
+ "excluded items are in the cart (see tab 'usage restriction')."
302
+ msgstr ""
303
+
304
+ #: includes/wjecf-pro-free-products.php:80
305
+ msgid "Please select your free gift."
306
+ msgstr ""
307
+
308
+ #: includes/wjecf-pro-free-products.php:337
309
+ #: includes/wjecf-pro-free-products.php:347
310
+ msgid "Free!"
311
+ msgstr ""
312
+
313
+ #: includes/wjecf-pro-free-products.php:412
314
+ #: includes/wjecf-pro-free-products.php:435
315
+ #: includes/wjecf-pro-free-products.php:441
316
+ msgid "Free products"
317
+ msgstr ""
318
+
319
+ #: includes/wjecf-pro-free-products.php:446
320
+ msgid ""
321
+ "Free products that will be added to the cart when this coupon is applied."
322
+ msgstr ""
323
+
324
+ #: includes/wjecf-pro-free-products.php:453
325
+ msgid "Select one"
326
+ msgstr ""
327
+
328
+ #: includes/wjecf-pro-free-products.php:454
329
+ msgid "Check this box if the customer must choose from the free products."
330
+ msgstr ""
331
+
332
+ #: includes/wjecf-pro-free-products.php:462
333
+ msgid "'Select your gift'-message"
334
+ msgstr ""
335
+
336
+ #: includes/wjecf-pro-free-products.php:463
337
+ msgid "Please choose your free gift:"
338
+ msgstr ""
339
+
340
+ #: includes/wjecf-pro-free-products.php:464
341
+ msgid "This message is displayed when the customer must choose a free product."
342
+ msgstr ""
343
+
344
+ #: includes/wjecf-pro-free-products.php:473
345
+ msgid "Allow multiplication of the free products"
346
+ msgstr ""
347
+
348
+ #: includes/wjecf-pro-free-products.php:474
349
+ msgid ""
350
+ "The amount of free products is multiplied every time the minimum spend, "
351
+ "subtotal or quantity is reached."
352
+ msgstr ""
353
+
354
+ #: includes/wjecf-pro-free-products.php:481
355
+ msgid "BOGO matching products"
356
+ msgstr ""
357
+
358
+ #: includes/wjecf-pro-free-products.php:483
359
+ msgid ""
360
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
361
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
362
+ "every matching item in the cart."
363
+ msgstr ""
364
+
365
+ #: includes/wjecf-pro-free-products.php:497
366
+ msgid "Search for a product…"
367
+ msgstr ""
368
+
369
+ #: woocommerce-jos-autocoupon-pro.php:33
370
+ msgid ""
371
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
372
+ "not be detected."
373
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: josk79
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: woocommerce, coupons, discount
5
  Requires at least: 4.0.0
6
- Tested up to: 4.3.1
7
- Stable tag: 2.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -102,6 +102,14 @@ Sure! [This](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQ
102
  4. Additionals restrictions based on shipping or payment method or the customer
103
 
104
  == Changelog ==
 
 
 
 
 
 
 
 
105
  = 2.3.0 =
106
  * (PRO) FEATURE: Allow customer to choose a free product
107
  * (PRO) FEATURE: Setting the priority of auto coupons (Useful for Individual use coupons)
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: woocommerce, coupons, discount
5
  Requires at least: 4.0.0
6
+ Tested up to: 4.4.1
7
+ Stable tag: 2.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
102
  4. Additionals restrictions based on shipping or payment method or the customer
103
 
104
  == Changelog ==
105
+ = 2.3.1 =
106
+ * FIX: WPML Compatibility for AND Products / AND Categories
107
+ * FIX: Redirect to page without ?apply_coupon= after applying coupon by url
108
+ * FIX: Auto coupon meta_query issue (thanks to hwillson)
109
+ * FIX: Compatibility with WooCommerce prior to 2.2.9 (WC_Cart::get_cart_item)
110
+ * (PRO) FIX: Free products: Add variant attributes to cart items for variable products
111
+ * (PRO) FEATURE: Apply discount only to the cheapest product
112
+
113
  = 2.3.0 =
114
  * (PRO) FEATURE: Allow customer to choose a free product
115
  * (PRO) FEATURE: Setting the priority of auto coupons (Useful for Individual use coupons)
woocommerce-jos-autocoupon.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce Extended Coupon Features
4
  * Plugin URI: http://www.soft79.nl
5
  * Description: Additional functionality for WooCommerce Coupons: Apply certain coupons automatically, allow applying coupons via an url, etc...
6
- * Version: 2.3.0
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */
@@ -20,6 +20,7 @@ if ( ! function_exists( 'wjecf_load_plugin_textdomain' ) ) {
20
  require_once( 'includes/admin/wjecf-admin.php' );
21
  //Optional
22
  @include_once( 'includes/wjecf-autocoupon.php' );
 
23
  //PRO
24
  @include_once( 'includes/wjecf-pro-controller.php' );
25
  @include_once( 'includes/wjecf-pro-free-products.php' );
@@ -53,6 +54,7 @@ if ( ! function_exists( 'wjecf_load_plugin_textdomain' ) ) {
53
  $wjecf_extended_coupon_features = WJECF();
54
  WJECF()->add_plugin('WJECF_Admin');
55
  WJECF()->add_plugin('WJECF_AutoCoupon');
 
56
  WJECF()->add_plugin('WJECF_Pro_Free_Products');
57
  }
58
 
3
  * Plugin Name: WooCommerce Extended Coupon Features
4
  * Plugin URI: http://www.soft79.nl
5
  * Description: Additional functionality for WooCommerce Coupons: Apply certain coupons automatically, allow applying coupons via an url, etc...
6
+ * Version: 2.3.1
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */
20
  require_once( 'includes/admin/wjecf-admin.php' );
21
  //Optional
22
  @include_once( 'includes/wjecf-autocoupon.php' );
23
+ @include_once( 'includes/wjecf-wpml.php' );
24
  //PRO
25
  @include_once( 'includes/wjecf-pro-controller.php' );
26
  @include_once( 'includes/wjecf-pro-free-products.php' );
54
  $wjecf_extended_coupon_features = WJECF();
55
  WJECF()->add_plugin('WJECF_Admin');
56
  WJECF()->add_plugin('WJECF_AutoCoupon');
57
+ WJECF()->add_plugin('WJECF_WPML');
58
  WJECF()->add_plugin('WJECF_Pro_Free_Products');
59
  }
60