WooCommerce Extended Coupon Features - Version 2.3.2

Version Description

  • FEATURE: Display custom error message when coupon is invalidated by this plugin
  • FIX: apply_coupon redirected to wrong url when home_url contained a subdirectory
  • FIX: Remove add-to-cart when redirecting for apply_coupon
  • FIX: Auto Coupon Backwards compatability for WooCommerce versions prior to 2.3.0 that don't have hook woocommerce_after_calculate_totals
  • TRANSLATION: Persian. Thanks to Ehsan Shahnazi.
Download this release

Release Info

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

Code changes from version 2.3.1 to 2.3.2

includes/wjecf-autocoupon.php CHANGED
@@ -23,7 +23,12 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
23
  add_action( 'admin_init', array( &$this, 'admin_init' ) );
24
 
25
  //Frontend hooks - logic
26
- add_action( 'woocommerce_after_calculate_totals', array( &$this, 'update_matched_autocoupons' ) );
 
 
 
 
 
27
  add_action( 'woocommerce_check_cart_items', array( &$this, 'remove_unmatched_autocoupons' ) , 0, 0 ); //Remove coupon before WC does it and shows a message
28
  //Last check for coupons with restricted_emails
29
  add_action( 'woocommerce_checkout_update_order_review', array( &$this, 'fetch_billing_email' ), 10 ); // AJAX One page checkout
@@ -214,8 +219,12 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
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
 
23
  add_action( 'admin_init', array( &$this, 'admin_init' ) );
24
 
25
  //Frontend hooks - logic
26
+ if ( WJECF()->check_woocommerce_version('2.3.0')) {
27
+ add_action( 'woocommerce_after_calculate_totals', array( &$this, 'update_matched_autocoupons' ) );
28
+ } else {
29
+ //WC Versions prior to 2.3.0 don't have after_calculate_totals hook, this is a fallback
30
+ add_action( 'woocommerce_cart_updated', array( &$this, 'update_matched_autocoupons' ) );
31
+ }
32
  add_action( 'woocommerce_check_cart_items', array( &$this, 'remove_unmatched_autocoupons' ) , 0, 0 ); //Remove coupon before WC does it and shows a message
33
  //Last check for coupons with restricted_emails
34
  add_action( 'woocommerce_checkout_update_order_review', array( &$this, 'fetch_billing_email' ), 10 ); // AJAX One page checkout
219
  foreach ( $split as $coupon_code ) {
220
  $cart->add_discount( $coupon_code );
221
  }
222
+
223
+ $requested_url = is_ssl() ? 'https://' : 'http://';
224
+ $requested_url .= $_SERVER['HTTP_HOST'];
225
+ $requested_url .= $_SERVER['REQUEST_URI'];
226
+ wp_safe_redirect( remove_query_arg( array( 'apply_coupon', 'add-to-cart' ), ( $requested_url ) ) );
227
+ exit;
228
  }
229
  }
230
 
includes/wjecf-controller.php CHANGED
@@ -7,6 +7,16 @@ defined('ABSPATH') or die();
7
  */
8
  class WJECF_Controller {
9
 
 
 
 
 
 
 
 
 
 
 
10
  protected $debug_mode = false;
11
  protected $log = array();
12
  public $options = false;
@@ -40,7 +50,8 @@ class WJECF_Controller {
40
  $this->init_options();
41
 
42
  //Frontend hooks
43
- add_filter('woocommerce_coupon_is_valid', array( &$this, 'coupon_is_valid' ), 10, 2 );
 
44
  add_action('woocommerce_coupon_loaded', array( $this, 'woocommerce_coupon_loaded' ), 10, 1);
45
  add_filter('woocommerce_coupon_get_discount_amount', array( $this, 'woocommerce_coupon_get_discount_amount' ), 10, 5);
46
  add_action( 'wp_footer', array( &$this, 'render_log' ) ); //Log
@@ -137,13 +148,69 @@ class WJECF_Controller {
137
  return $discount;
138
  }
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 ) {
149
  return false;
@@ -165,7 +232,7 @@ class WJECF_Controller {
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 ) ) {
168
- return false;
169
  }
170
  }
171
  }
@@ -184,7 +251,7 @@ class WJECF_Controller {
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
  }
@@ -206,8 +273,8 @@ class WJECF_Controller {
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 );
@@ -219,8 +286,8 @@ class WJECF_Controller {
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 );
@@ -235,7 +302,7 @@ class WJECF_Controller {
235
  $chosen_shipping = $chosen_shipping_methods[0];
236
 
237
  if ( ! in_array( $chosen_shipping, $shipping_method_ids ) ) {
238
- return false;
239
  }
240
  }
241
 
@@ -246,7 +313,7 @@ class WJECF_Controller {
246
  $chosen_payment_method = isset( WC()->session->chosen_payment_method ) ? WC()->session->chosen_payment_method : array();
247
 
248
  if ( ! in_array( $chosen_payment_method, $payment_method_ids ) ) {
249
- return false;
250
  }
251
  }
252
 
@@ -261,7 +328,7 @@ class WJECF_Controller {
261
 
262
  //If both fail we invalidate. Otherwise it's ok
263
  if ( ! in_array( $user->ID, $coupon_customer_ids ) && ! array_intersect( $user->roles, $coupon_customer_roles ) ) {
264
- return false;
265
  }
266
  }
267
 
@@ -273,7 +340,7 @@ class WJECF_Controller {
273
 
274
  //Excluded customer roles
275
  if ( array_intersect( $user->roles, $coupon_excluded_customer_roles ) ) {
276
- return false;
277
  }
278
  }
279
 
@@ -285,7 +352,7 @@ class WJECF_Controller {
285
  $this->coupon_multiplier_values[ $coupon->code ] = $multiplier;
286
  //error_log("multiplier " . $coupon->code . " = " . $multiplier );
287
 
288
- return true;
289
  }
290
 
291
  /**
7
  */
8
  class WJECF_Controller {
9
 
10
+ // Coupon message codes
11
+ //NOTE: I use prefix 79 for this plugin; there's no guarantee that another plugin uses the same values!
12
+ const E_WC_COUPON_MIN_MATCHING_SUBTOTAL_NOT_MET = 79100;
13
+ const E_WC_COUPON_MAX_MATCHING_SUBTOTAL_NOT_MET = 79101;
14
+ const E_WC_COUPON_MIN_MATCHING_QUANTITY_NOT_MET = 79102;
15
+ const E_WC_COUPON_MAX_MATCHING_QUANTITY_NOT_MET = 79103;
16
+ const E_WC_COUPON_SHIPPING_METHOD_NOT_MET = 79104;
17
+ const E_WC_COUPON_PAYMENT_METHOD_NOT_MET = 79105;
18
+ const E_WC_COUPON_NOT_FOR_THIS_USER = 79106;
19
+
20
  protected $debug_mode = false;
21
  protected $log = array();
22
  public $options = false;
50
  $this->init_options();
51
 
52
  //Frontend hooks
53
+ add_filter('woocommerce_coupon_is_valid', array( &$this, 'assert_coupon_is_valid' ), 10, 2 );
54
+ add_filter('woocommerce_coupon_error', array( &$this, 'woocommerce_coupon_error' ), 10, 3 );
55
  add_action('woocommerce_coupon_loaded', array( $this, 'woocommerce_coupon_loaded' ), 10, 1);
56
  add_filter('woocommerce_coupon_get_discount_amount', array( $this, 'woocommerce_coupon_get_discount_amount' ), 10, 5);
57
  add_action( 'wp_footer', array( &$this, 'render_log' ) ); //Log
148
  return $discount;
149
  }
150
 
151
+ /**
152
+ * Overwrite coupon error message, if $err_code is an error code of this plugin
153
+ * @param string $err Original error message
154
+ * @param int $err_code Error code
155
+ * @param WC_Coupon $coupon The coupon
156
+ * @return string Overwritten error message
157
+ */
158
+ public function woocommerce_coupon_error( $err, $err_code, $coupon ) {
159
+ switch ( $err_code ) {
160
+ case self::E_WC_COUPON_MIN_MATCHING_SUBTOTAL_NOT_MET:
161
+ $min_price = wc_price( get_post_meta( $coupon->id, '_wjecf_min_matching_product_subtotal', true ) );
162
+ $err = sprintf( __( 'The minimum subtotal of the matching products for this coupon is %s.', 'woocommerce' ), $min_price );
163
+ break;
164
+ case self::E_WC_COUPON_MAX_MATCHING_SUBTOTAL_NOT_MET:
165
+ $max_price = wc_price( get_post_meta( $coupon->id, '_wjecf_max_matching_product_subtotal', true ) );
166
+ $err = sprintf( __( 'The maximum subtotal of the matching products for this coupon is %s.', 'woocommerce' ), $max_price );
167
+ break;
168
+ case self::E_WC_COUPON_MIN_MATCHING_QUANTITY_NOT_MET:
169
+ $min_matching_product_qty = intval( get_post_meta( $coupon->id, '_wjecf_min_matching_product_qty', true ) );
170
+ $err = sprintf( __( 'The minimum quantity of matching products for this coupon is %s.', 'woocommerce' ), $min_matching_product_qty );
171
+ break;
172
+ case self::E_WC_COUPON_MAX_MATCHING_QUANTITY_NOT_MET:
173
+ $max_matching_product_qty = intval( get_post_meta( $coupon->id, '_wjecf_min_matching_product_qty', true ) );
174
+ $err = sprintf( __( 'The maximum quantity of matching products for this coupon is %s.', 'woocommerce' ), $max_matching_product_qty );
175
+ break;
176
+ case self::E_WC_COUPON_SHIPPING_METHOD_NOT_MET:
177
+ $err = __( 'The coupon is not valid for the currently selected shipping method.', 'woocommerce' );
178
+ break;
179
+ case self::E_WC_COUPON_PAYMENT_METHOD_NOT_MET:
180
+ $err = __( 'The coupon is not valid for the currently selected payment method.', 'woocommerce' );
181
+ break;
182
+ case self::E_WC_COUPON_NOT_FOR_THIS_USER:
183
+ $err = sprintf( __( 'Sorry, it seems the coupon "%s" is not yours.', 'woocommerce' ), $coupon->code );
184
+ break;
185
+ default:
186
+ //Do nothing
187
+ break;
188
+ }
189
+ return $err;
190
+ }
191
 
192
+ /**
193
+ * Extra validation rules for coupons.
194
+ * @param bool $valid
195
+ * @param WC_Coupon $coupon
196
+ * @return bool True if valid; False if not valid.
197
+ */
198
  public function coupon_is_valid ( $valid, $coupon ) {
199
+ try {
200
+ return $this->assert_coupon_is_valid( $valid, $coupon );
201
+ } catch ( Exception $e ) {
202
+ return false;
203
+ }
204
+ }
205
+
206
+ /**
207
+ * Extra validation rules for coupons. Throw an exception when not valid.
208
+ * @param bool $valid
209
+ * @param WC_Coupon $coupon
210
+ * @return bool True if valid; False if already invalid on function call. In any other case an Exception will be thrown.
211
+ */
212
+ public function assert_coupon_is_valid ( $valid, $coupon ) {
213
+
214
  //Not valid? Then it will never validate, so get out of here
215
  if ( ! $valid ) {
216
  return false;
232
  //check if every single product is in the cart
233
  foreach( $coupon->product_ids as $product_id ) {
234
  if ( ! in_array( $product_id, $cart_item_ids ) ) {
235
+ throw new Exception( WC_Coupon::E_WC_COUPON_NOT_APPLICABLE );
236
  }
237
  }
238
  }
251
  //check if every single category is in the cart
252
  foreach( $coupon->product_categories as $cat_id ) {
253
  if ( ! in_array( $cat_id, $cart_product_cats ) ) {
254
+ throw new Exception( WC_Coupon::E_WC_COUPON_NOT_APPLICABLE );
255
  }
256
  }
257
  }
273
  if ( $min_matching_product_qty > 0 || $max_matching_product_qty > 0 ) {
274
  //Count the products
275
  $qty = $this->get_quantity_of_matching_products( $coupon );
276
+ if ( $min_matching_product_qty > 0 && $qty < $min_matching_product_qty ) throw new Exception( self::E_WC_COUPON_MIN_MATCHING_QUANTITY_NOT_MET );
277
+ if ( $max_matching_product_qty > 0 && $qty > $max_matching_product_qty ) throw new Exception( self::E_WC_COUPON_MAX_MATCHING_QUANTITY_NOT_MET );
278
 
279
  if ( $min_matching_product_qty > 0 ) {
280
  $multiplier = self::min_value( floor( $qty / $min_matching_product_qty ), $multiplier );
286
  $max_matching_product_subtotal = floatval( get_post_meta( $coupon->id, '_wjecf_max_matching_product_subtotal', true ) );
287
  if ( $min_matching_product_subtotal > 0 || $max_matching_product_subtotal > 0 ) {
288
  $subtotal = $this->get_subtotal_of_matching_products( $coupon );
289
+ if ( $min_matching_product_subtotal > 0 && $subtotal < $min_matching_product_subtotal ) throw new Exception( self::E_WC_COUPON_MIN_MATCHING_SUBTOTAL_NOT_MET );
290
+ if ( $max_matching_product_subtotal > 0 && $subtotal > $max_matching_product_subtotal ) throw new Exception( self::E_WC_COUPON_MAX_MATCHING_SUBTOTAL_NOT_MET );
291
 
292
  if ( $min_matching_product_subtotal > 0 ) {
293
  $multiplier = self::min_value( floor( $subtotal / $min_matching_product_subtotal ), $multiplier );
302
  $chosen_shipping = $chosen_shipping_methods[0];
303
 
304
  if ( ! in_array( $chosen_shipping, $shipping_method_ids ) ) {
305
+ throw new Exception( self::E_WC_COUPON_SHIPPING_METHOD_NOT_MET );
306
  }
307
  }
308
 
313
  $chosen_payment_method = isset( WC()->session->chosen_payment_method ) ? WC()->session->chosen_payment_method : array();
314
 
315
  if ( ! in_array( $chosen_payment_method, $payment_method_ids ) ) {
316
+ throw new Exception( self::E_WC_COUPON_PAYMENT_METHOD_NOT_MET );
317
  }
318
  }
319
 
328
 
329
  //If both fail we invalidate. Otherwise it's ok
330
  if ( ! in_array( $user->ID, $coupon_customer_ids ) && ! array_intersect( $user->roles, $coupon_customer_roles ) ) {
331
+ throw new Exception( self::E_WC_COUPON_NOT_FOR_THIS_USER );
332
  }
333
  }
334
 
340
 
341
  //Excluded customer roles
342
  if ( array_intersect( $user->roles, $coupon_excluded_customer_roles ) ) {
343
+ throw new Exception( self::E_WC_COUPON_NOT_FOR_THIS_USER );
344
  }
345
  }
346
 
352
  $this->coupon_multiplier_values[ $coupon->code ] = $multiplier;
353
  //error_log("multiplier " . $coupon->code . " = " . $multiplier );
354
 
355
+ return true; // VALID!
356
  }
357
 
358
  /**
languages/woocommerce-jos-autocoupon-de_DE.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-de_DE.po CHANGED
@@ -3,158 +3,410 @@
3
  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-08-14 22:52+0100\n"
8
- "PO-Revision-Date: 2015-08-14 22:52+0100\n"
 
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: de_DE\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.1\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-Basepath: c:\\lamp\\www\\qrvm_woo\n"
18
- "X-Poedit-SearchPath-0: wp-content\\plugins\\woocommerce-auto-added-coupons\n"
19
 
20
- #: includes/wjecf-autocoupon.php:48 includes/wjecf-autocoupon.php:55
21
- msgid "Auto coupon"
22
- msgstr "Automatisch einlösen"
23
 
24
- #: includes/wjecf-autocoupon.php:56
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
- "Diesen Coupon im Warenkorb automatisch einlösen, wenn die Bedingungen erfüllt wurden. Bitte "
31
- "geben Sie eine Beschreibung ein. Wenn Sie das Häkchen setzen wird die Beschreibung im "
32
- "Warenkorb des Nutzers angezeigt, sobald der Coupon eingelöst wurde."
33
 
34
- #: includes/wjecf-autocoupon.php:63
35
- msgid "Apply silently"
36
  msgstr ""
37
 
38
- #: includes/wjecf-autocoupon.php:64
39
- msgid "Don't display a message when this coupon is automatically applied."
40
  msgstr ""
41
 
42
- #: includes/wjecf-autocoupon.php:143
43
- msgid "Free shipping coupon"
44
- msgstr "Gratis verzending kortingsbon"
45
 
46
- #: includes/wjecf-autocoupon.php:284
47
- #, php-format
48
- msgid "Discount applied: %s"
49
- msgstr "Automatischer Rabatt: %s"
50
 
51
- #: includes/wjecf-coupon-extensions.php:36
52
- msgid "Extended Coupon Features"
53
  msgstr ""
54
 
55
- #: includes/wjecf-coupon-extensions.php:39
56
- msgid "Donate to the developer"
57
  msgstr ""
58
 
59
- #: includes/wjecf-coupon-extensions.php:54
60
- msgid "Extended features"
61
  msgstr ""
62
 
63
- #: includes/wjecf-coupon-extensions.php:73
64
  msgid "AND Products (not OR)"
65
  msgstr ""
66
 
67
- #: includes/wjecf-coupon-extensions.php:74
 
 
 
 
 
 
 
 
 
 
68
  msgid ""
69
- "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
70
- "use this coupon (in stead of only one of the products)."
 
 
 
 
 
71
  msgstr ""
72
 
73
- #: includes/wjecf-coupon-extensions.php:80
 
 
 
 
74
  msgid "Minimum quantity of matching products"
75
  msgstr ""
76
 
77
- #: includes/wjecf-coupon-extensions.php:81
78
  msgid "No minimum"
79
  msgstr ""
80
 
81
- #: includes/wjecf-coupon-extensions.php:82
82
  msgid ""
83
- "Minimum quantity of the products that match the given product or category restrictions (see "
84
- "tab 'usage restriction'). If no product or category restrictions are specified, the total "
85
- "number of products is used."
86
  msgstr ""
87
 
88
- #: includes/wjecf-coupon-extensions.php:89
89
- msgid "(AND)"
90
  msgstr ""
91
 
92
- #: includes/wjecf-coupon-extensions.php:90
93
- msgid "(OR)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgstr ""
95
 
96
- #: includes/wjecf-coupon-extensions.php:110
 
 
 
 
 
 
97
  msgid "Shipping methods"
98
  msgstr ""
99
 
100
- #: includes/wjecf-coupon-extensions.php:111
101
  msgid "Any shipping method"
102
  msgstr ""
103
 
104
- #: includes/wjecf-coupon-extensions.php:120
105
- msgid "One of these shipping methods must be selected in order for this coupon to be valid."
 
 
106
  msgstr ""
107
 
108
- #: includes/wjecf-coupon-extensions.php:126
109
  msgid "Payment methods"
110
  msgstr ""
111
 
112
- #: includes/wjecf-coupon-extensions.php:127
113
  msgid "Any payment method"
114
  msgstr ""
115
 
116
- #: includes/wjecf-coupon-extensions.php:138
117
- msgid "One of these payment methods must be selected in order for this coupon to be valid."
 
 
118
  msgstr ""
119
 
120
- #: includes/wjecf-coupon-extensions.php:144
121
  msgid "Customer restrictions"
122
  msgstr ""
123
 
124
- #: includes/wjecf-coupon-extensions.php:145
125
  msgid ""
126
- "If both a customer and a role restriction are supplied, matching either one of them will "
127
- "suffice."
128
  msgstr ""
129
 
130
- #: includes/wjecf-coupon-extensions.php:150
131
- msgid "Customers"
132
  msgstr ""
133
 
134
- #: includes/wjecf-coupon-extensions.php:151
135
  msgid "Any customer"
136
  msgstr ""
137
 
138
- #: includes/wjecf-coupon-extensions.php:163
139
- msgid "Coupon only applies to these customers."
140
  msgstr ""
141
 
142
- #: includes/wjecf-coupon-extensions.php:169
143
- msgid "Customer roles"
144
  msgstr ""
145
 
146
- #: includes/wjecf-coupon-extensions.php:170 includes/wjecf-coupon-extensions.php:190
147
  msgid "Any role"
148
  msgstr ""
149
 
150
- #: includes/wjecf-coupon-extensions.php:183
151
- msgid "The customer must have one of these roles in order for this coupon to be valid."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  msgstr ""
153
 
154
- #: includes/wjecf-coupon-extensions.php:189
155
- msgid "Excluded customer roles"
156
  msgstr ""
157
 
158
- #: includes/wjecf-coupon-extensions.php:202
159
- msgid "The customer must not have one of these roles in order for this coupon to be valid."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  msgstr ""
3
  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-"
7
+ "added-coupons\n"
8
+ "POT-Creation-Date: 2016-03-28 21:24+0200\n"
9
+ "PO-Revision-Date: 2016-03-28 21:24+0200\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: de_DE\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.8.6\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: c:/lamp/www/qrvm_woo\n"
19
+ "X-Poedit-SearchPath-0: wp-content/plugins/woocommerce-auto-added-coupons\n"
20
 
21
+ #: includes/admin/wjecf-admin.php:94
22
+ msgid "Do you find WooCommerce Extended Coupon Features useful?"
23
+ msgstr ""
24
 
25
+ #: includes/admin/wjecf-admin.php:96
26
+ msgid "Express your gratitude"
 
 
 
27
  msgstr ""
 
 
 
28
 
29
+ #: includes/admin/wjecf-admin.php:100
30
+ msgid "Donate to the developer"
31
  msgstr ""
32
 
33
+ #: includes/admin/wjecf-admin.php:107
34
+ msgid "Documentation"
35
  msgstr ""
36
 
37
+ #: includes/admin/wjecf-admin.php:109
38
+ msgid "WooCommerce Extended Coupon Features Documentation"
39
+ msgstr ""
40
 
41
+ #: includes/admin/wjecf-admin.php:117
42
+ msgid "Products"
43
+ msgstr ""
 
44
 
45
+ #: includes/admin/wjecf-admin.php:123 includes/admin/wjecf-admin.php:230
46
+ msgid "Checkout"
47
  msgstr ""
48
 
49
+ #: includes/admin/wjecf-admin.php:129 includes/admin/wjecf-admin.php:340
50
+ msgid "Miscellaneous"
51
  msgstr ""
52
 
53
+ #: includes/admin/wjecf-admin.php:141
54
+ msgid "Matching products"
55
  msgstr ""
56
 
57
+ #: includes/admin/wjecf-admin.php:146
58
  msgid "AND Products (not OR)"
59
  msgstr ""
60
 
61
+ #: includes/admin/wjecf-admin.php:147
62
+ msgid ""
63
+ "Check this box if ALL of the products (see tab 'usage restriction') must be "
64
+ "in the cart to use this coupon (instead of only one of the products)."
65
+ msgstr ""
66
+
67
+ #: includes/admin/wjecf-admin.php:154
68
+ msgid "AND Categories (not OR)"
69
+ msgstr ""
70
+
71
+ #: includes/admin/wjecf-admin.php:155
72
  msgid ""
73
+ "Check this box if products from ALL of the categories (see tab 'usage "
74
+ "restriction') must be in the cart to use this coupon (instead of only one "
75
+ "from one of the categories)."
76
+ msgstr ""
77
+
78
+ #: includes/admin/wjecf-admin.php:160
79
+ msgid "(AND)"
80
  msgstr ""
81
 
82
+ #: includes/admin/wjecf-admin.php:161
83
+ msgid "(OR)"
84
+ msgstr ""
85
+
86
+ #: includes/admin/wjecf-admin.php:190
87
  msgid "Minimum quantity of matching products"
88
  msgstr ""
89
 
90
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
91
  msgid "No minimum"
92
  msgstr ""
93
 
94
+ #: includes/admin/wjecf-admin.php:192
95
  msgid ""
96
+ "Minimum quantity of the products that match the given product or category "
97
+ "restrictions (see tab 'usage restriction'). If no product or category "
98
+ "restrictions are specified, the total number of products is used."
99
  msgstr ""
100
 
101
+ #: includes/admin/wjecf-admin.php:200
102
+ msgid "Maximum quantity of matching products"
103
  msgstr ""
104
 
105
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
106
+ msgid "No maximum"
107
+ msgstr ""
108
+
109
+ #: includes/admin/wjecf-admin.php:202
110
+ msgid ""
111
+ "Maximum quantity of the products that match the given product or category "
112
+ "restrictions (see tab 'usage restriction'). If no product or category "
113
+ "restrictions are specified, the total number of products is used."
114
+ msgstr ""
115
+
116
+ #: includes/admin/wjecf-admin.php:210
117
+ msgid "Minimum subtotal of matching products"
118
+ msgstr ""
119
+
120
+ #: includes/admin/wjecf-admin.php:212
121
+ msgid ""
122
+ "Minimum price subtotal of the products that match the given product or "
123
+ "category restrictions (see tab 'usage restriction')."
124
+ msgstr ""
125
+
126
+ #: includes/admin/wjecf-admin.php:220
127
+ msgid "Maximum subtotal of matching products"
128
  msgstr ""
129
 
130
+ #: includes/admin/wjecf-admin.php:222
131
+ msgid ""
132
+ "Maximum price subtotal of the products that match the given product or "
133
+ "category restrictions (see tab 'usage restriction')."
134
+ msgstr ""
135
+
136
+ #: includes/admin/wjecf-admin.php:235
137
  msgid "Shipping methods"
138
  msgstr ""
139
 
140
+ #: includes/admin/wjecf-admin.php:236
141
  msgid "Any shipping method"
142
  msgstr ""
143
 
144
+ #: includes/admin/wjecf-admin.php:245
145
+ msgid ""
146
+ "One of these shipping methods must be selected in order for this coupon to "
147
+ "be valid."
148
  msgstr ""
149
 
150
+ #: includes/admin/wjecf-admin.php:251
151
  msgid "Payment methods"
152
  msgstr ""
153
 
154
+ #: includes/admin/wjecf-admin.php:252
155
  msgid "Any payment method"
156
  msgstr ""
157
 
158
+ #: includes/admin/wjecf-admin.php:263
159
+ msgid ""
160
+ "One of these payment methods must be selected in order for this coupon to be "
161
+ "valid."
162
  msgstr ""
163
 
164
+ #: includes/admin/wjecf-admin.php:271
165
  msgid "Customer restrictions"
166
  msgstr ""
167
 
168
+ #: includes/admin/wjecf-admin.php:272
169
  msgid ""
170
+ "If both a customer and a role restriction are supplied, matching either one "
171
+ "of them will suffice."
172
  msgstr ""
173
 
174
+ #: includes/admin/wjecf-admin.php:277
175
+ msgid "Allowed Customers"
176
  msgstr ""
177
 
178
+ #: includes/admin/wjecf-admin.php:278
179
  msgid "Any customer"
180
  msgstr ""
181
 
182
+ #: includes/admin/wjecf-admin.php:291
183
+ msgid "Only these customers may use this coupon."
184
  msgstr ""
185
 
186
+ #: includes/admin/wjecf-admin.php:298
187
+ msgid "Allowed User Roles"
188
  msgstr ""
189
 
190
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
191
  msgid "Any role"
192
  msgstr ""
193
 
194
+ #: includes/admin/wjecf-admin.php:313
195
+ msgid "Only these User Roles may use this coupon."
196
+ msgstr ""
197
+
198
+ #: includes/admin/wjecf-admin.php:320
199
+ msgid "Disallowed User Roles"
200
+ msgstr ""
201
+
202
+ #: includes/admin/wjecf-admin.php:334
203
+ msgid "These User Roles will be specifically excluded from using this coupon."
204
+ msgstr ""
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
212
+ #: includes/wjecf-pro-free-products.php:482
213
+ msgid "EXPERIMENTAL: "
214
+ msgstr ""
215
+
216
+ #: includes/admin/wjecf-admin.php:346
217
+ msgid ""
218
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
219
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
220
+ "0 until minimum spend is reached."
221
+ msgstr ""
222
+
223
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
224
+ #: includes/wjecf-autocoupon.php:137
225
+ msgid "Auto coupon"
226
+ msgstr "Automatisch einlösen"
227
+
228
+ #: includes/wjecf-autocoupon.php:63
229
+ msgid "Individual use"
230
+ msgstr ""
231
+
232
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
233
+ msgid "Yes"
234
+ msgstr ""
235
+
236
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
237
+ msgid "No"
238
  msgstr ""
239
 
240
+ #: includes/wjecf-autocoupon.php:102
241
+ msgid "Auto coupons"
242
  msgstr ""
243
 
244
+ #: includes/wjecf-autocoupon.php:138
245
+ msgid ""
246
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
247
+ "enter a description when you check this box, the description will be shown "
248
+ "in the customer's cart if the coupon is applied."
249
+ msgstr ""
250
+ "Diesen Coupon im Warenkorb automatisch einlösen, wenn die Bedingungen "
251
+ "erfüllt wurden. Bitte geben Sie eine Beschreibung ein. Wenn Sie das Häkchen "
252
+ "setzen wird die Beschreibung im Warenkorb des Nutzers angezeigt, sobald der "
253
+ "Coupon eingelöst wurde."
254
+
255
+ #: includes/wjecf-autocoupon.php:146
256
+ msgid "Priority"
257
+ msgstr ""
258
+
259
+ #: includes/wjecf-autocoupon.php:147
260
+ msgid "No priority"
261
+ msgstr ""
262
+
263
+ #: includes/wjecf-autocoupon.php:148
264
+ msgid ""
265
+ "When 'individual use' is checked, auto coupons with a higher value will have "
266
+ "priority over other auto coupons."
267
+ msgstr ""
268
+
269
+ #: includes/wjecf-autocoupon.php:158
270
+ msgid "Apply silently"
271
+ msgstr ""
272
+
273
+ #: includes/wjecf-autocoupon.php:159
274
+ msgid "Don't display a message when this coupon is automatically applied."
275
+ msgstr ""
276
+
277
+ #: includes/wjecf-autocoupon.php:266
278
+ msgid "Free shipping coupon"
279
+ msgstr "Gratis verzending kortingsbon"
280
+
281
+ #: includes/wjecf-autocoupon.php:422
282
+ #, php-format
283
+ msgid "Discount applied: %s"
284
+ msgstr "Automatischer Rabatt: %s"
285
+
286
+ #: includes/wjecf-controller.php:162
287
+ #, php-format
288
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
289
+ msgstr ""
290
+
291
+ #: includes/wjecf-controller.php:166
292
+ #, php-format
293
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
294
+ msgstr ""
295
+
296
+ #: includes/wjecf-controller.php:170
297
+ #, php-format
298
+ msgid "The minimum quantity of matching products for this coupon is %s."
299
+ msgstr ""
300
+
301
+ #: includes/wjecf-controller.php:174
302
+ #, php-format
303
+ msgid "The maximum quantity of matching products for this coupon is %s."
304
+ msgstr ""
305
+
306
+ #: includes/wjecf-controller.php:177
307
+ msgid "The coupon is not valid for the currently selected shipping method."
308
+ msgstr ""
309
+
310
+ #: includes/wjecf-controller.php:180
311
+ msgid "The coupon is not valid for the currently selected payment method."
312
+ msgstr ""
313
+
314
+ #: includes/wjecf-controller.php:183
315
+ #, php-format
316
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
317
+ msgstr ""
318
+
319
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
320
+ msgid "Limit discount to"
321
+ msgstr ""
322
+
323
+ #: includes/wjecf-pro-controller.php:61
324
+ msgid ""
325
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
326
+ "tab), the discount will only be applied to <em>matching</em> products."
327
+ msgstr ""
328
+
329
+ #: includes/wjecf-pro-controller.php:67
330
+ msgid "Discount on cart with excluded products"
331
+ msgstr ""
332
+
333
+ #: includes/wjecf-pro-controller.php:73
334
+ msgid "Allow discount on cart with excluded items"
335
+ msgstr ""
336
+
337
+ #: includes/wjecf-pro-controller.php:75
338
+ msgid ""
339
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
340
+ "excluded items are in the cart (see tab 'usage restriction')."
341
+ msgstr ""
342
+
343
+ #: includes/wjecf-pro-free-products.php:80
344
+ msgid "Please select your free gift."
345
+ msgstr ""
346
+
347
+ #: includes/wjecf-pro-free-products.php:337
348
+ #: includes/wjecf-pro-free-products.php:347
349
+ msgid "Free!"
350
+ msgstr ""
351
+
352
+ #: includes/wjecf-pro-free-products.php:412
353
+ #: includes/wjecf-pro-free-products.php:435
354
+ #: includes/wjecf-pro-free-products.php:441
355
+ msgid "Free products"
356
+ msgstr ""
357
+
358
+ #: includes/wjecf-pro-free-products.php:446
359
+ msgid ""
360
+ "Free products that will be added to the cart when this coupon is applied."
361
+ msgstr ""
362
+
363
+ #: includes/wjecf-pro-free-products.php:453
364
+ msgid "Select one"
365
+ msgstr ""
366
+
367
+ #: includes/wjecf-pro-free-products.php:454
368
+ msgid "Check this box if the customer must choose from the free products."
369
+ msgstr ""
370
+
371
+ #: includes/wjecf-pro-free-products.php:462
372
+ msgid "'Select your gift'-message"
373
+ msgstr ""
374
+
375
+ #: includes/wjecf-pro-free-products.php:463
376
+ msgid "Please choose your free gift:"
377
+ msgstr ""
378
+
379
+ #: includes/wjecf-pro-free-products.php:464
380
+ msgid "This message is displayed when the customer must choose a free product."
381
+ msgstr ""
382
+
383
+ #: includes/wjecf-pro-free-products.php:473
384
+ msgid "Allow multiplication of the free products"
385
+ msgstr ""
386
+
387
+ #: includes/wjecf-pro-free-products.php:474
388
+ msgid ""
389
+ "The amount of free products is multiplied every time the minimum spend, "
390
+ "subtotal or quantity is reached."
391
+ msgstr ""
392
+
393
+ #: includes/wjecf-pro-free-products.php:481
394
+ msgid "BOGO matching products"
395
+ msgstr ""
396
+
397
+ #: includes/wjecf-pro-free-products.php:483
398
+ msgid ""
399
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
400
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
401
+ "every matching item in the cart."
402
+ msgstr ""
403
+
404
+ #: includes/wjecf-pro-free-products.php:497
405
+ msgid "Search for a product…"
406
+ msgstr ""
407
+
408
+ #: woocommerce-jos-autocoupon-pro.php:33
409
+ msgid ""
410
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
411
+ "not be detected."
412
  msgstr ""
languages/woocommerce-jos-autocoupon-es_ES.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-es_ES.po CHANGED
@@ -3,16 +3,17 @@
3
  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: 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"
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.5\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: C:/lamp/www/qrvm_woo/wp-content/plugins\n"
18
  "X-Poedit-SearchPath-0: woocommerce-auto-added-coupons\n"
@@ -59,11 +60,11 @@ 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)."
64
  msgstr ""
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)"
@@ -71,11 +72,13 @@ 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)."
 
76
  msgstr ""
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)"
@@ -95,9 +98,9 @@ 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
@@ -110,9 +113,9 @@ 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
@@ -121,8 +124,8 @@ 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
@@ -131,8 +134,8 @@ 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
@@ -144,8 +147,11 @@ 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"
@@ -156,8 +162,12 @@ 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"
@@ -165,11 +175,11 @@ 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."
170
  msgstr ""
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"
@@ -208,88 +218,123 @@ 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
@@ -302,25 +347,28 @@ 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
@@ -349,8 +397,8 @@ 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
@@ -359,8 +407,9 @@ 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
@@ -369,7 +418,8 @@ 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"
@@ -379,11 +429,12 @@ msgstr ""
379
  #~ msgstr "Opciones extendidas"
380
 
381
  #~ msgid ""
382
- #~ "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
383
- #~ "use this coupon (in stead of only one of the products)."
384
  #~ msgstr ""
385
- #~ "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') necesitan estar en "
386
- #~ "el carrito de compras (en lugar de uno de los productos)."
 
387
 
388
  #~ msgid "Customers"
389
  #~ msgstr "Clientes"
@@ -394,25 +445,28 @@ msgstr ""
394
  #~ msgid "Customer roles"
395
  #~ msgstr "Perfiles del cliente"
396
 
397
- #~ msgid "The customer must have one of these roles in order for this coupon to be valid."
 
 
398
  #~ msgstr "El cliente ha de tener este perfil para poder user este cupón."
399
 
400
  #~ msgid "Excluded customer roles"
401
  #~ msgstr "Perfiles restringidos"
402
 
403
  #~ msgid ""
404
- #~ "Check this box if ALL of the products (see above) must be in the cart to use this coupon "
405
- #~ "(in stead of only one of the products)."
406
  #~ msgstr ""
407
- #~ "Marque esta casilla si TODOS los productos (ve arriba) tienen que estar en el carrito para "
408
- #~ "poder usar este cupón (en lugar de solo uno de los productos)."
 
409
 
410
  #~ msgid ""
411
- #~ "Allow discounts to be automatically added to the cart when it's restrictions are met. "
412
- #~ "Allow applying coupons via an url."
413
  #~ msgstr ""
414
- #~ "Aplicar ciertos cupónes automaticamente al carrito de compras cuando los requisitos sean "
415
- #~ "cumplidos. Aplicar cupones a través de la url. "
416
 
417
  #~ msgid "WooCommerce auto added coupons"
418
  #~ msgstr "WooCommerce auto added coupons"
3
  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-"
7
+ "added-coupons\n"
8
+ "POT-Creation-Date: 2016-03-28 21:24+0200\n"
9
+ "PO-Revision-Date: 2016-03-28 21:28+0200\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_ES\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.8.6\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: C:/lamp/www/qrvm_woo/wp-content/plugins\n"
19
  "X-Poedit-SearchPath-0: woocommerce-auto-added-coupons\n"
60
 
61
  #: includes/admin/wjecf-admin.php:147
62
  msgid ""
63
+ "Check this box if ALL of the products (see tab 'usage restriction') must be "
64
+ "in the cart to use this coupon (instead of only one of the products)."
65
  msgstr ""
66
+ "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') "
67
+ "necesitan estar en el carrito de compras (en lugar de uno de los productos)."
68
 
69
  #: includes/admin/wjecf-admin.php:154
70
  msgid "AND Categories (not OR)"
72
 
73
  #: includes/admin/wjecf-admin.php:155
74
  msgid ""
75
+ "Check this box if products from ALL of the categories (see tab 'usage "
76
+ "restriction') must be in the cart to use this coupon (instead of only one "
77
+ "from one of the categories)."
78
  msgstr ""
79
+ "Marque esta casilla si productos de TODAS las categorias (vea 'Restricción "
80
+ "de uso') necesitan estar en el carrito de compras (en lugar de un producto "
81
+ "de uno de los productos)."
82
 
83
  #: includes/admin/wjecf-admin.php:160
84
  msgid "(AND)"
98
 
99
  #: includes/admin/wjecf-admin.php:192
100
  msgid ""
101
+ "Minimum quantity of the products that match the given product or category "
102
+ "restrictions (see tab 'usage restriction'). If no product or category "
103
+ "restrictions are specified, the total number of products is used."
104
  msgstr "Cantidad mínima de productos conformes (vea 'Restricción de uso')."
105
 
106
  #: includes/admin/wjecf-admin.php:200
113
 
114
  #: includes/admin/wjecf-admin.php:202
115
  msgid ""
116
+ "Maximum quantity of the products that match the given product or category "
117
+ "restrictions (see tab 'usage restriction'). If no product or category "
118
+ "restrictions are specified, the total number of products is used."
119
  msgstr "Cantidad máxima de productos conformes (vea 'Restricción de uso')."
120
 
121
  #: includes/admin/wjecf-admin.php:210
124
 
125
  #: includes/admin/wjecf-admin.php:212
126
  msgid ""
127
+ "Minimum price subtotal of the products that match the given product or "
128
+ "category restrictions (see tab 'usage restriction')."
129
  msgstr "Subtotal mínimo de productos conformes (vea 'Restricción de uso')."
130
 
131
  #: includes/admin/wjecf-admin.php:220
134
 
135
  #: includes/admin/wjecf-admin.php:222
136
  msgid ""
137
+ "Maximum price subtotal of the products that match the given product or "
138
+ "category restrictions (see tab 'usage restriction')."
139
  msgstr "Subtotal máximo de productos conformes (vea 'Restricción de uso')."
140
 
141
  #: includes/admin/wjecf-admin.php:235
147
  msgstr "Métodos de envío"
148
 
149
  #: includes/admin/wjecf-admin.php:245
150
+ msgid ""
151
+ "One of these shipping methods must be selected in order for this coupon to "
152
+ "be valid."
153
+ msgstr ""
154
+ "Uno de estos métodos de pago tiene que ser seleccionado para usar este cupón."
155
 
156
  #: includes/admin/wjecf-admin.php:251
157
  msgid "Payment methods"
162
  msgstr "Métodos de pago"
163
 
164
  #: includes/admin/wjecf-admin.php:263
165
+ msgid ""
166
+ "One of these payment methods must be selected in order for this coupon to be "
167
+ "valid."
168
+ msgstr ""
169
+ "Uno de estos métodos de envío tiene que ser seleccionado para usar este "
170
+ "cupón."
171
 
172
  #: includes/admin/wjecf-admin.php:271
173
  msgid "Customer restrictions"
175
 
176
  #: includes/admin/wjecf-admin.php:272
177
  msgid ""
178
+ "If both a customer and a role restriction are supplied, matching either one "
179
+ "of them will suffice."
180
  msgstr ""
181
+ "Si se ha introducido tanto una restricción de cliente como una restricción "
182
+ "de perfil, sí coincide uno de ellos será suficiente."
183
 
184
  #: includes/admin/wjecf-admin.php:277
185
  msgid "Allowed Customers"
218
  msgstr ""
219
 
220
  #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
221
+ #: includes/wjecf-pro-free-products.php:474
222
+ #: includes/wjecf-pro-free-products.php:482
223
  msgid "EXPERIMENTAL: "
224
  msgstr "EXPERIMENTAL:"
225
 
226
  #: includes/admin/wjecf-admin.php:346
227
  msgid ""
228
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
229
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
230
+ "0 until minimum spend is reached."
231
  msgstr ""
232
 
233
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
234
+ #: includes/wjecf-autocoupon.php:137
235
  msgid "Auto coupon"
236
  msgstr "Aplicar cupón automaticamente"
237
 
238
+ #: includes/wjecf-autocoupon.php:63
239
  msgid "Individual use"
240
  msgstr "Uso individual"
241
 
242
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
243
  msgid "Yes"
244
+ msgstr ""
245
 
246
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
247
  msgid "No"
248
+ msgstr "No"
249
 
250
+ #: includes/wjecf-autocoupon.php:102
251
  msgid "Auto coupons"
252
  msgstr "Cupones autom."
253
 
254
+ #: includes/wjecf-autocoupon.php:138
255
  msgid ""
256
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
257
+ "enter a description when you check this box, the description will be shown "
258
+ "in the customer's cart if the coupon is applied."
259
  msgstr ""
260
+ "Aplicar el cupón automaticamente al carrito de compras cuando los requisitos "
261
+ "sean cumplidos. Por favor ingrese una descripción, ya que este será mostrado "
262
+ "al cliente cuando el cupón esté aplicado."
263
 
264
+ #: includes/wjecf-autocoupon.php:146
265
  msgid "Priority"
266
  msgstr "Prioridad"
267
 
268
+ #: includes/wjecf-autocoupon.php:147
269
  msgid "No priority"
270
  msgstr "Sin prioridad"
271
 
272
+ #: includes/wjecf-autocoupon.php:148
273
  msgid ""
274
+ "When 'individual use' is checked, auto coupons with a higher value will have "
275
+ "priority over other auto coupons."
276
  msgstr ""
277
+ "Al activar 'uso individual', cupones automáticos con mayor prioridad tendrán "
278
+ "preferencia sobre los otros cupones."
279
 
280
+ #: includes/wjecf-autocoupon.php:158
281
  msgid "Apply silently"
282
  msgstr "Aplicar sin mensaje"
283
 
284
+ #: includes/wjecf-autocoupon.php:159
285
  msgid "Don't display a message when this coupon is automatically applied."
286
  msgstr "No mostrar mensaje cuando el cupon esté aplicado automaticamente."
287
 
288
+ #: includes/wjecf-autocoupon.php:266
289
  msgid "Free shipping coupon"
290
  msgstr "Cupón para envío gratis"
291
 
292
+ #: includes/wjecf-autocoupon.php:422
293
  #, php-format
294
  msgid "Discount applied: %s"
295
  msgstr "Descuento aplicado: %s"
296
 
297
+ #: includes/wjecf-controller.php:162
298
+ #, php-format
299
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
300
+ msgstr "El subtotal mínimo de los productos conformes para este cupón es %s."
301
+
302
+ #: includes/wjecf-controller.php:166
303
+ #, php-format
304
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
305
+ msgstr "El subtotal máximo de los productos conformes para este cupón es %s."
306
+
307
+ #: includes/wjecf-controller.php:170
308
+ #, php-format
309
+ msgid "The minimum quantity of matching products for this coupon is %s."
310
+ msgstr "La cantidad mínima de productos conformes para este cupón es %s."
311
+
312
+ #: includes/wjecf-controller.php:174
313
+ #, php-format
314
+ msgid "The maximum quantity of matching products for this coupon is %s."
315
+ msgstr "La cantidad máxima de productos conformes para este cupón es %s."
316
+
317
+ #: includes/wjecf-controller.php:177
318
+ msgid "The coupon is not valid for the currently selected shipping method."
319
+ msgstr "El cupón no es válido para este método de envío."
320
+
321
+ #: includes/wjecf-controller.php:180
322
+ msgid "The coupon is not valid for the currently selected payment method."
323
+ msgstr "El cupón no es válido para este método de pago."
324
+
325
+ #: includes/wjecf-controller.php:183
326
+ #, php-format
327
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
328
+ msgstr "Lo sentimos, parece que el cupón \"%s\" no es tuyo."
329
+
330
  #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
331
  msgid "Limit discount to"
332
  msgstr "Limitar descuento a"
333
 
334
  #: includes/wjecf-pro-controller.php:61
335
  msgid ""
336
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
337
+ "tab), the discount will only be applied to <em>matching</em> products."
338
  msgstr ""
339
 
340
  #: includes/wjecf-pro-controller.php:67
347
 
348
  #: includes/wjecf-pro-controller.php:75
349
  msgid ""
350
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
351
+ "excluded items are in the cart (see tab 'usage restriction')."
352
  msgstr ""
353
 
354
  #: includes/wjecf-pro-free-products.php:80
355
  msgid "Please select your free gift."
356
  msgstr "Elije tu regalo."
357
 
358
+ #: includes/wjecf-pro-free-products.php:337
359
+ #: includes/wjecf-pro-free-products.php:347
360
  msgid "Free!"
361
  msgstr "Gratis!"
362
 
363
+ #: includes/wjecf-pro-free-products.php:412
364
+ #: includes/wjecf-pro-free-products.php:435
365
  #: includes/wjecf-pro-free-products.php:441
366
  msgid "Free products"
367
  msgstr "Productos gratis"
368
 
369
  #: includes/wjecf-pro-free-products.php:446
370
+ msgid ""
371
+ "Free products that will be added to the cart when this coupon is applied."
372
  msgstr ""
373
 
374
  #: includes/wjecf-pro-free-products.php:453
397
 
398
  #: includes/wjecf-pro-free-products.php:474
399
  msgid ""
400
+ "The amount of free products is multiplied every time the minimum spend, "
401
+ "subtotal or quantity is reached."
402
  msgstr ""
403
 
404
  #: includes/wjecf-pro-free-products.php:481
407
 
408
  #: includes/wjecf-pro-free-products.php:483
409
  msgid ""
410
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
411
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
412
+ "every matching item in the cart."
413
  msgstr ""
414
 
415
  #: includes/wjecf-pro-free-products.php:497
418
 
419
  #: woocommerce-jos-autocoupon-pro.php:33
420
  msgid ""
421
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
422
+ "not be detected."
423
  msgstr ""
424
 
425
  #~ msgid "Extended Coupon Features"
429
  #~ msgstr "Opciones extendidas"
430
 
431
  #~ msgid ""
432
+ #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
433
+ #~ "be in the cart to use this coupon (in stead of only one of the products)."
434
  #~ msgstr ""
435
+ #~ "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') "
436
+ #~ "necesitan estar en el carrito de compras (en lugar de uno de los "
437
+ #~ "productos)."
438
 
439
  #~ msgid "Customers"
440
  #~ msgstr "Clientes"
445
  #~ msgid "Customer roles"
446
  #~ msgstr "Perfiles del cliente"
447
 
448
+ #~ msgid ""
449
+ #~ "The customer must have one of these roles in order for this coupon to be "
450
+ #~ "valid."
451
  #~ msgstr "El cliente ha de tener este perfil para poder user este cupón."
452
 
453
  #~ msgid "Excluded customer roles"
454
  #~ msgstr "Perfiles restringidos"
455
 
456
  #~ msgid ""
457
+ #~ "Check this box if ALL of the products (see above) must be in the cart to "
458
+ #~ "use this coupon (in stead of only one of the products)."
459
  #~ msgstr ""
460
+ #~ "Marque esta casilla si TODOS los productos (ve arriba) tienen que estar "
461
+ #~ "en el carrito para poder usar este cupón (en lugar de solo uno de los "
462
+ #~ "productos)."
463
 
464
  #~ msgid ""
465
+ #~ "Allow discounts to be automatically added to the cart when it's "
466
+ #~ "restrictions are met. Allow applying coupons via an url."
467
  #~ msgstr ""
468
+ #~ "Aplicar ciertos cupónes automaticamente al carrito de compras cuando los "
469
+ #~ "requisitos sean cumplidos. Aplicar cupones a través de la url. "
470
 
471
  #~ msgid "WooCommerce auto added coupons"
472
  #~ msgstr "WooCommerce auto added coupons"
languages/woocommerce-jos-autocoupon-fa_IR.mo ADDED
Binary file
languages/woocommerce-jos-autocoupon-fa_IR.po ADDED
@@ -0,0 +1,419 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
4
+ "POT-Creation-Date: 2016-03-28 21:32+0200\n"
5
+ "PO-Revision-Date: 2016-03-28 21:32+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Jos Koenis\n"
8
+ "Language: fa_IR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\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
+ "باید در سبد خرید باشند برای استفاده از این کوپن. ( به جای تنها یکی از "
66
+ "محصولات)"
67
+
68
+ #: includes/admin/wjecf-admin.php:154
69
+ msgid "AND Categories (not OR)"
70
+ msgstr "و دسته بندی ها (نه یا)"
71
+
72
+ #: includes/admin/wjecf-admin.php:155
73
+ msgid ""
74
+ "Check this box if products from ALL of the categories (see tab 'usage "
75
+ "restriction') must be in the cart to use this coupon (instead of only one "
76
+ "from one of the categories)."
77
+ msgstr ""
78
+ "این گزینه را تیک بزنید اگر محصولات از همه دسته ها ( با توجه به قسمت محدودیت "
79
+ "استفاده ) باید در سبد خرید باشند برای استفاده از این کوپن. ( به جای تنها یکی "
80
+ "از دسته ها)"
81
+
82
+ #: includes/admin/wjecf-admin.php:160
83
+ msgid "(AND)"
84
+ msgstr "(AND)"
85
+
86
+ #: includes/admin/wjecf-admin.php:161
87
+ msgid "(OR)"
88
+ msgstr "(OR)"
89
+
90
+ #: includes/admin/wjecf-admin.php:190
91
+ msgid "Minimum quantity of matching products"
92
+ msgstr "حداقل میزان تطبیق محصولات"
93
+
94
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
95
+ msgid "No minimum"
96
+ msgstr "بدون حداقل"
97
+
98
+ #: includes/admin/wjecf-admin.php:192
99
+ msgid ""
100
+ "Minimum quantity of the products that match the given product or category "
101
+ "restrictions (see tab 'usage restriction'). If no product or category "
102
+ "restrictions are specified, the total number of products is used."
103
+ msgstr ""
104
+
105
+ #: includes/admin/wjecf-admin.php:200
106
+ msgid "Maximum quantity of matching products"
107
+ msgstr "حداکثر میزان تطبیق محصولات"
108
+
109
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
110
+ msgid "No maximum"
111
+ msgstr "بدون حداکثر"
112
+
113
+ #: includes/admin/wjecf-admin.php:202
114
+ msgid ""
115
+ "Maximum quantity of the products that match the given product or category "
116
+ "restrictions (see tab 'usage restriction'). If no product or category "
117
+ "restrictions are specified, the total number of products is used."
118
+ msgstr ""
119
+
120
+ #: includes/admin/wjecf-admin.php:210
121
+ msgid "Minimum subtotal of matching products"
122
+ msgstr "حداقل میزان تطبیق محصولات"
123
+
124
+ #: includes/admin/wjecf-admin.php:212
125
+ msgid ""
126
+ "Minimum price subtotal of the products that match the given product or "
127
+ "category restrictions (see tab 'usage restriction')."
128
+ msgstr ""
129
+
130
+ #: includes/admin/wjecf-admin.php:220
131
+ msgid "Maximum subtotal of matching products"
132
+ msgstr "حداکثر میزان تطبیق محصولات"
133
+
134
+ #: includes/admin/wjecf-admin.php:222
135
+ msgid ""
136
+ "Maximum price subtotal of the products that match the given product or "
137
+ "category restrictions (see tab 'usage restriction')."
138
+ msgstr ""
139
+
140
+ #: includes/admin/wjecf-admin.php:235
141
+ msgid "Shipping methods"
142
+ msgstr "روش های ارسال"
143
+
144
+ #: includes/admin/wjecf-admin.php:236
145
+ msgid "Any shipping method"
146
+ msgstr "همه روش های حمل و نقل"
147
+
148
+ #: includes/admin/wjecf-admin.php:245
149
+ msgid ""
150
+ "One of these shipping methods must be selected in order for this coupon to "
151
+ "be valid."
152
+ msgstr ""
153
+ "یکی از این روش های ارسال باید انتخاب شود تا سفارش با این کوپن معتبر باشد."
154
+
155
+ #: includes/admin/wjecf-admin.php:251
156
+ msgid "Payment methods"
157
+ msgstr "روش های پرداخت"
158
+
159
+ #: includes/admin/wjecf-admin.php:252
160
+ msgid "Any payment method"
161
+ msgstr "همه روش های پرداخت"
162
+
163
+ #: includes/admin/wjecf-admin.php:263
164
+ msgid ""
165
+ "One of these payment methods must be selected in order for this coupon to be "
166
+ "valid."
167
+ msgstr ""
168
+ "یکی از این روش های پرداخت باید انتخاب شود تا سفارش با این کوپن معتبر باشد."
169
+
170
+ #: includes/admin/wjecf-admin.php:271
171
+ msgid "Customer restrictions"
172
+ msgstr "محدودیت های مشتری"
173
+
174
+ #: includes/admin/wjecf-admin.php:272
175
+ msgid ""
176
+ "If both a customer and a role restriction are supplied, matching either one "
177
+ "of them will suffice."
178
+ msgstr ""
179
+
180
+ #: includes/admin/wjecf-admin.php:277
181
+ msgid "Allowed Customers"
182
+ msgstr "مشتری های مجاز"
183
+
184
+ #: includes/admin/wjecf-admin.php:278
185
+ msgid "Any customer"
186
+ msgstr "همه مشتری ها"
187
+
188
+ #: includes/admin/wjecf-admin.php:291
189
+ msgid "Only these customers may use this coupon."
190
+ msgstr "فقط مشتریانی که از این کوپن استفاده کرده اند"
191
+
192
+ #: includes/admin/wjecf-admin.php:298
193
+ msgid "Allowed User Roles"
194
+ msgstr "نقش کاربران مجاز"
195
+
196
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
197
+ msgid "Any role"
198
+ msgstr "تمام نقش ها"
199
+
200
+ #: includes/admin/wjecf-admin.php:313
201
+ msgid "Only these User Roles may use this coupon."
202
+ msgstr "فقط نقش کاربرانی که از این کوپن استفاده می کنند"
203
+
204
+ #: includes/admin/wjecf-admin.php:320
205
+ msgid "Disallowed User Roles"
206
+ msgstr "نقش کاربران غیر مجاز"
207
+
208
+ #: includes/admin/wjecf-admin.php:334
209
+ msgid "These User Roles will be specifically excluded from using this coupon."
210
+ msgstr ""
211
+
212
+ #: includes/admin/wjecf-admin.php:345
213
+ msgid "Allow when minimum spend not reached"
214
+ msgstr ""
215
+
216
+ #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
217
+ #: includes/wjecf-pro-free-products.php:474
218
+ #: includes/wjecf-pro-free-products.php:482
219
+ msgid "EXPERIMENTAL: "
220
+ msgstr "تجربی:"
221
+
222
+ #: includes/admin/wjecf-admin.php:346
223
+ msgid ""
224
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
225
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
226
+ "0 until minimum spend is reached."
227
+ msgstr ""
228
+
229
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
230
+ #: includes/wjecf-autocoupon.php:137
231
+ msgid "Auto coupon"
232
+ msgstr "کوپن خودکار"
233
+
234
+ #: includes/wjecf-autocoupon.php:63
235
+ msgid "Individual use"
236
+ msgstr "استفاده شخصی"
237
+
238
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
239
+ msgid "Yes"
240
+ msgstr "بله"
241
+
242
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
243
+ msgid "No"
244
+ msgstr "نه"
245
+
246
+ #: includes/wjecf-autocoupon.php:102
247
+ msgid "Auto coupons"
248
+ msgstr "کوپن های خودکار"
249
+
250
+ #: includes/wjecf-autocoupon.php:138
251
+ msgid ""
252
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
253
+ "enter a description when you check this box, the description will be shown "
254
+ "in the customer's cart if the coupon is applied."
255
+ msgstr ""
256
+
257
+ #: includes/wjecf-autocoupon.php:146
258
+ msgid "Priority"
259
+ msgstr "اولویت"
260
+
261
+ #: includes/wjecf-autocoupon.php:147
262
+ msgid "No priority"
263
+ msgstr "بدون اولویت"
264
+
265
+ #: includes/wjecf-autocoupon.php:148
266
+ msgid ""
267
+ "When 'individual use' is checked, auto coupons with a higher value will have "
268
+ "priority over other auto coupons."
269
+ msgstr ""
270
+
271
+ #: includes/wjecf-autocoupon.php:158
272
+ msgid "Apply silently"
273
+ msgstr "اعمال بدون نمایش (مخفیانه)"
274
+
275
+ #: includes/wjecf-autocoupon.php:159
276
+ msgid "Don't display a message when this coupon is automatically applied."
277
+ msgstr "عدم نمایش پیام زمانی که کوپن به صورت خودکار اعمال می شود."
278
+
279
+ #: includes/wjecf-autocoupon.php:266
280
+ msgid "Free shipping coupon"
281
+ msgstr "کوپن حمل و نقل رایگان"
282
+
283
+ #: includes/wjecf-autocoupon.php:422
284
+ #, php-format
285
+ msgid "Discount applied: %s"
286
+ msgstr "درصد اعمال تخفیف: %s"
287
+
288
+ #: includes/wjecf-controller.php:162
289
+ #, php-format
290
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
291
+ msgstr ""
292
+
293
+ #: includes/wjecf-controller.php:166
294
+ #, php-format
295
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
296
+ msgstr ""
297
+
298
+ #: includes/wjecf-controller.php:170
299
+ #, php-format
300
+ msgid "The minimum quantity of matching products for this coupon is %s."
301
+ msgstr ""
302
+
303
+ #: includes/wjecf-controller.php:174
304
+ #, php-format
305
+ msgid "The maximum quantity of matching products for this coupon is %s."
306
+ msgstr ""
307
+
308
+ #: includes/wjecf-controller.php:177
309
+ msgid "The coupon is not valid for the currently selected shipping method."
310
+ msgstr ""
311
+
312
+ #: includes/wjecf-controller.php:180
313
+ msgid "The coupon is not valid for the currently selected payment method."
314
+ msgstr ""
315
+
316
+ #: includes/wjecf-controller.php:183
317
+ #, php-format
318
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
319
+ msgstr ""
320
+
321
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
322
+ msgid "Limit discount to"
323
+ msgstr "تخفیف محدود به"
324
+
325
+ #: includes/wjecf-pro-controller.php:61
326
+ msgid ""
327
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
328
+ "tab), the discount will only be applied to <em>matching</em> products."
329
+ msgstr ""
330
+
331
+ #: includes/wjecf-pro-controller.php:67
332
+ msgid "Discount on cart with excluded products"
333
+ msgstr ""
334
+
335
+ #: includes/wjecf-pro-controller.php:73
336
+ msgid "Allow discount on cart with excluded items"
337
+ msgstr ""
338
+
339
+ #: includes/wjecf-pro-controller.php:75
340
+ msgid ""
341
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
342
+ "excluded items are in the cart (see tab 'usage restriction')."
343
+ msgstr ""
344
+
345
+ #: includes/wjecf-pro-free-products.php:80
346
+ msgid "Please select your free gift."
347
+ msgstr "لطفا هدیه خود را انتخاب کنید."
348
+
349
+ #: includes/wjecf-pro-free-products.php:337
350
+ #: includes/wjecf-pro-free-products.php:347
351
+ msgid "Free!"
352
+ msgstr "رایگان!"
353
+
354
+ #: includes/wjecf-pro-free-products.php:412
355
+ #: includes/wjecf-pro-free-products.php:435
356
+ #: includes/wjecf-pro-free-products.php:441
357
+ msgid "Free products"
358
+ msgstr "محصولات رایگان"
359
+
360
+ #: includes/wjecf-pro-free-products.php:446
361
+ msgid ""
362
+ "Free products that will be added to the cart when this coupon is applied."
363
+ msgstr "زمانی که این کوپن اعمال شود، محصولات رایگان به سبد خرید اضافه می شوند."
364
+
365
+ #: includes/wjecf-pro-free-products.php:453
366
+ msgid "Select one"
367
+ msgstr "یکی را انتخاب کنید"
368
+
369
+ #: includes/wjecf-pro-free-products.php:454
370
+ msgid "Check this box if the customer must choose from the free products."
371
+ msgstr ""
372
+ "این گزینه را تیک بزنید، اگر میخواهید مشتریان حتمن محصولات رایگان را انتخاب "
373
+ "کنند."
374
+
375
+ #: includes/wjecf-pro-free-products.php:462
376
+ msgid "'Select your gift'-message"
377
+ msgstr "'هدیه خود را انتخاب کنید'-message"
378
+
379
+ #: includes/wjecf-pro-free-products.php:463
380
+ msgid "Please choose your free gift:"
381
+ msgstr "لطفا هریه رایگان خود را انتخاب کنید:"
382
+
383
+ #: includes/wjecf-pro-free-products.php:464
384
+ msgid "This message is displayed when the customer must choose a free product."
385
+ msgstr "این پیغام زمانی نمایش داده می شود که مشتری یک محصول رایگان انتخاب کند."
386
+
387
+ #: includes/wjecf-pro-free-products.php:473
388
+ msgid "Allow multiplication of the free products"
389
+ msgstr "اجازه افزایش محصولات رایگان"
390
+
391
+ #: includes/wjecf-pro-free-products.php:474
392
+ msgid ""
393
+ "The amount of free products is multiplied every time the minimum spend, "
394
+ "subtotal or quantity is reached."
395
+ msgstr ""
396
+
397
+ #: includes/wjecf-pro-free-products.php:481
398
+ msgid "BOGO matching products"
399
+ msgstr ""
400
+
401
+ #: includes/wjecf-pro-free-products.php:483
402
+ msgid ""
403
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
404
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
405
+ "every matching item in the cart."
406
+ msgstr ""
407
+
408
+ #: includes/wjecf-pro-free-products.php:497
409
+ msgid "Search for a product…"
410
+ msgstr "یافتن یک محصول...."
411
+
412
+ #: woocommerce-jos-autocoupon-pro.php:33
413
+ #, fuzzy
414
+ msgid ""
415
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
416
+ "not be detected."
417
+ msgstr ""
418
+ "افزونه WooCommerce Extended Coupon Features غیر فعال شده است زیرا ووکامروس "
419
+ "نمی تواند آن را شناسایی کند."
languages/woocommerce-jos-autocoupon-nl_NL.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-nl_NL.po CHANGED
@@ -3,16 +3,17 @@
3
  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: 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"
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.5\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
@@ -59,11 +60,12 @@ 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)."
64
  msgstr ""
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)"
@@ -71,12 +73,13 @@ 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)."
 
76
  msgstr ""
77
- "Aanvinken als producten van ALLE categorieën (zie tab 'gebruiksbeperkingen') in de "
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)"
@@ -96,13 +99,13 @@ 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 "
101
- "number of products is used."
102
  msgstr ""
103
- "Minimum aantal producten wat aan de product- of categorierestricties voldoet (zie tab "
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"
@@ -114,13 +117,13 @@ 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 "
119
- "number of products is used."
120
  msgstr ""
121
- "Maximum aantal producten wat aan de product- of categorierestricties voldoet (zie tab "
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"
@@ -128,12 +131,13 @@ 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')."
133
  msgstr ""
134
- "Minimum subtotaal van de producten welke aan de product- of categorierestricties voldoet (zie "
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"
@@ -141,12 +145,13 @@ 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')."
146
  msgstr ""
147
- "Maximum subtotaal van de producten welke aan de product- of categorierestricties voldoet (zie "
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"
@@ -157,8 +162,12 @@ 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"
@@ -169,8 +178,12 @@ 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"
@@ -178,11 +191,11 @@ 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."
183
  msgstr ""
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"
@@ -221,93 +234,138 @@ 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."
 
232
  msgstr ""
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"
@@ -319,28 +377,34 @@ 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"
@@ -360,7 +424,8 @@ 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"
@@ -368,11 +433,11 @@ 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"
@@ -380,11 +445,13 @@ 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…"
@@ -392,17 +459,19 @@ 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)."
403
  #~ msgstr ""
404
- #~ "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de winkelwagen moeten "
405
- #~ "zitten om deze kortingsbon te kunnen gebruiken (in plaats van één van de producten)."
 
406
 
407
  #~ msgid "Extended Coupon Features"
408
  #~ msgstr "Uitgebreide Kortingsbon Functies"
@@ -414,12 +483,12 @@ msgstr ""
414
  #~ msgstr "Toestaan als minimale besteding niet is bereikt"
415
 
416
  #~ msgid ""
417
- #~ "Check this box to allow the coupon to be in the cart even if minimum spend (see tab 'usage "
418
- #~ "restriction') is not reached. Value of the discount will be 0 until minimum spend is "
419
- #~ "reached."
420
  #~ msgstr ""
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"
@@ -430,27 +499,37 @@ msgstr ""
430
  #~ msgid "Customer roles"
431
  #~ msgstr "Klantrollen"
432
 
433
- #~ msgid "The customer must have one of these roles in order for this coupon to be valid."
434
- #~ msgstr "Dat klant moet een van deze rollen hebben om de kortingsbon te kunnen gebruiken."
 
 
 
 
435
 
436
  #~ msgid "Excluded customer roles"
437
  #~ msgstr "Uitgesloten klantrollen"
438
 
439
- #~ msgid "The customer must not have one of these roles in order for this coupon to be valid."
440
- #~ msgstr "De klant mag geen van deze rollen hebben om de kortingsbon te kunnen gebruiken."
 
 
 
 
441
 
442
  #~ msgid ""
443
- #~ "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
444
- #~ "description when you check this box, the description will be shown in the customers cart "
445
- #~ "if the coupon is applied."
446
  #~ msgstr ""
447
- #~ "Voeg de kortingsbon automatisch toe aan het winkelwagentje als aan alle voorwaarden wordt "
448
- #~ "voldaan. Vult u a.u.b. een omschrijving in als u deze optie aanvinkt, de omschrijving zal "
449
- #~ "aan de klant worden getoond wanneer de kortingsbon wordt toegevoegd."
 
450
 
451
  #~ msgid ""
452
- #~ "Check this box if ALL of the products (see above) must be in the cart to use this coupon "
453
- #~ "(in stead of only one of the products)."
454
  #~ msgstr ""
455
- #~ "Aanvinken als ALLE producten (zie boven) in de winkelwagen moeten zitten om deze "
456
- #~ "kortingsbon te kunnen gebruiken (in plaats van één van de producten)."
 
3
  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-"
7
+ "added-coupons\n"
8
+ "POT-Creation-Date: 2016-03-28 21:28+0200\n"
9
+ "PO-Revision-Date: 2016-03-28 21:30+0200\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: nl_NL\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 1.8.6\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: ..\n"
19
  "X-Poedit-SearchPath-0: .\n"
60
 
61
  #: includes/admin/wjecf-admin.php:147
62
  msgid ""
63
+ "Check this box if ALL of the products (see tab 'usage restriction') must be "
64
+ "in the cart to use this coupon (instead of only one of the products)."
65
  msgstr ""
66
+ "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de "
67
+ "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in plaats "
68
+ "van één van de producten)."
69
 
70
  #: includes/admin/wjecf-admin.php:154
71
  msgid "AND Categories (not OR)"
73
 
74
  #: includes/admin/wjecf-admin.php:155
75
  msgid ""
76
+ "Check this box if products from ALL of the categories (see tab 'usage "
77
+ "restriction') must be in the cart to use this coupon (instead of only one "
78
+ "from one of the categories)."
79
  msgstr ""
80
+ "Aanvinken als producten van ALLE categorieën (zie tab 'gebruiksbeperkingen') "
81
+ "in de winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in "
82
+ "plaats van een product van één van de categorieën)."
83
 
84
  #: includes/admin/wjecf-admin.php:160
85
  msgid "(AND)"
99
 
100
  #: includes/admin/wjecf-admin.php:192
101
  msgid ""
102
+ "Minimum quantity of the products that match the given product or category "
103
+ "restrictions (see tab 'usage restriction'). If no product or category "
104
+ "restrictions are specified, the total number of products is used."
105
  msgstr ""
106
+ "Minimum aantal producten wat aan de product- of categorierestricties voldoet "
107
+ "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
108
+ "opgegeven worden alle producten in de winkelwagen geteld."
109
 
110
  #: includes/admin/wjecf-admin.php:200
111
  msgid "Maximum quantity of matching products"
117
 
118
  #: includes/admin/wjecf-admin.php:202
119
  msgid ""
120
+ "Maximum quantity of the products that match the given product or category "
121
+ "restrictions (see tab 'usage restriction'). If no product or category "
122
+ "restrictions are specified, the total number of products is used."
123
  msgstr ""
124
+ "Maximum aantal producten wat aan de product- of categorierestricties voldoet "
125
+ "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
126
+ "opgegeven worden alle producten in de winkelwagen geteld."
127
 
128
  #: includes/admin/wjecf-admin.php:210
129
  msgid "Minimum subtotal of matching products"
131
 
132
  #: includes/admin/wjecf-admin.php:212
133
  msgid ""
134
+ "Minimum price subtotal of the products that match the given product or "
135
+ "category restrictions (see tab 'usage restriction')."
136
  msgstr ""
137
+ "Minimum subtotaal van de producten welke aan de product- of "
138
+ "categorierestricties voldoet (zie tab 'gebruiksbeperkingen'). Als geen "
139
+ "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
140
+ "producten in de winkelwagen opgeteld."
141
 
142
  #: includes/admin/wjecf-admin.php:220
143
  msgid "Maximum subtotal of matching products"
145
 
146
  #: includes/admin/wjecf-admin.php:222
147
  msgid ""
148
+ "Maximum price subtotal of the products that match the given product or "
149
+ "category restrictions (see tab 'usage restriction')."
150
  msgstr ""
151
+ "Maximum subtotaal van de producten welke aan de product- of "
152
+ "categorierestricties voldoet (zie tab 'gebruiksbeperkingen'). Als geen "
153
+ "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
154
+ "producten in de winkelwagen opgeteld."
155
 
156
  #: includes/admin/wjecf-admin.php:235
157
  msgid "Shipping methods"
162
  msgstr "Verzendmethoden"
163
 
164
  #: includes/admin/wjecf-admin.php:245
165
+ msgid ""
166
+ "One of these shipping methods must be selected in order for this coupon to "
167
+ "be valid."
168
+ msgstr ""
169
+ "Een van deze verzendmethoden moet gekozen zijn om deze kortingsbon te kunnen "
170
+ "gebruiken."
171
 
172
  #: includes/admin/wjecf-admin.php:251
173
  msgid "Payment methods"
178
  msgstr "Betaalmethoden"
179
 
180
  #: includes/admin/wjecf-admin.php:263
181
+ msgid ""
182
+ "One of these payment methods must be selected in order for this coupon to be "
183
+ "valid."
184
+ msgstr ""
185
+ "Een van deze betaalmethoden moet gekozen zijn om deze kortingsbon te kunnen "
186
+ "gebruiken."
187
 
188
  #: includes/admin/wjecf-admin.php:271
189
  msgid "Customer restrictions"
191
 
192
  #: includes/admin/wjecf-admin.php:272
193
  msgid ""
194
+ "If both a customer and a role restriction are supplied, matching either one "
195
+ "of them will suffice."
196
  msgstr ""
197
+ "Als zowel een klant- als klantrolrestrictie is opgegeven hoeft slechts aan "
198
+ "één van de restricties worden voldaan."
199
 
200
  #: includes/admin/wjecf-admin.php:277
201
  msgid "Allowed Customers"
234
  msgstr "Toestaan wanneer minimale besteding nog niet is behaald."
235
 
236
  #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
237
+ #: includes/wjecf-pro-free-products.php:474
238
+ #: includes/wjecf-pro-free-products.php:482
239
  msgid "EXPERIMENTAL: "
240
  msgstr "EXPERIMENTEEL:"
241
 
242
  #: includes/admin/wjecf-admin.php:346
243
  msgid ""
244
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
245
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
246
+ "0 until minimum spend is reached."
247
  msgstr ""
248
+ "Aanvinken als de coupon in de winkelwagen mag zitten zelfs als minimale "
249
+ "besteding nog niet is gehaald. De coupon zal een waarde van 0 hebben tot de "
250
+ "minimale besteding is bereikt."
251
 
252
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
253
+ #: includes/wjecf-autocoupon.php:137
254
  msgid "Auto coupon"
255
  msgstr "Automatisch toepassen"
256
 
257
+ #: includes/wjecf-autocoupon.php:63
258
  msgid "Individual use"
259
  msgstr "Individueel gebruik"
260
 
261
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
262
  msgid "Yes"
263
+ msgstr "Ja"
264
 
265
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
266
  msgid "No"
267
+ msgstr "Nee"
268
 
269
+ #: includes/wjecf-autocoupon.php:102
270
  msgid "Auto coupons"
271
+ msgstr "Auto coupons"
272
 
273
+ #: includes/wjecf-autocoupon.php:138
274
  msgid ""
275
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
276
+ "enter a description when you check this box, the description will be shown "
277
+ "in the customer's cart if the coupon is applied."
278
  msgstr ""
279
+ "Voeg de kortingsbon automatisch toe aan het winkelwagentje als aan alle "
280
+ "voorwaarden wordt voldaan. Vult u a.u.b. een omschrijving in als u deze "
281
+ "optie aanvinkt, de omschrijving zal aan de klant worden getoond wanneer de "
282
+ "kortingsbon wordt toegevoegd."
283
 
284
+ #: includes/wjecf-autocoupon.php:146
285
  msgid "Priority"
286
  msgstr "Prioriteit"
287
 
288
+ #: includes/wjecf-autocoupon.php:147
289
  msgid "No priority"
290
  msgstr "Geen prioriteit"
291
 
292
+ #: includes/wjecf-autocoupon.php:148
293
  msgid ""
294
+ "When 'individual use' is checked, auto coupons with a higher value will have "
295
+ "priority over other auto coupons."
296
  msgstr ""
297
+ "Wanneer 'individueel gebruik' is aangevinkt, zullen auto coupons met een "
298
+ "hogere prioriteit voorrang krijgen boven andere auto coupons."
299
 
300
+ #: includes/wjecf-autocoupon.php:158
301
  msgid "Apply silently"
302
  msgstr "Toepassen zonder melding"
303
 
304
+ #: includes/wjecf-autocoupon.php:159
305
  msgid "Don't display a message when this coupon is automatically applied."
306
+ msgstr ""
307
+ "Geen melding weergeven wanneer deze kortingsbon automatisch wordt toegepast."
308
 
309
+ #: includes/wjecf-autocoupon.php:266
310
  msgid "Free shipping coupon"
311
  msgstr "Gratis verzending kortingsbon"
312
 
313
+ #: includes/wjecf-autocoupon.php:422
314
  #, php-format
315
  msgid "Discount applied: %s"
316
  msgstr "Korting toegepast: %s"
317
 
318
+ #: includes/wjecf-controller.php:162
319
+ #, php-format
320
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
321
+ msgstr ""
322
+ "Het minimale subtotaal van overeengekomen producten voor deze kortingsbon is "
323
+ "%s."
324
+
325
+ #: includes/wjecf-controller.php:166
326
+ #, php-format
327
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
328
+ msgstr ""
329
+ "Het maximale subtotaal van overeengekomen producten voor deze kortingsbon is "
330
+ "%s."
331
+
332
+ #: includes/wjecf-controller.php:170
333
+ #, php-format
334
+ msgid "The minimum quantity of matching products for this coupon is %s."
335
+ msgstr ""
336
+ "Het minimale aantal overeengekomen producten voor deze kortingsbon is %s."
337
+
338
+ #: includes/wjecf-controller.php:174
339
+ #, php-format
340
+ msgid "The maximum quantity of matching products for this coupon is %s."
341
+ msgstr ""
342
+ "Het maximale aantal overeengekomen producten voor deze kortingsbon is %s."
343
+
344
+ #: includes/wjecf-controller.php:177
345
+ msgid "The coupon is not valid for the currently selected shipping method."
346
+ msgstr "De kortingsbon is niet geldig voor de gekozen verzendmethode."
347
+
348
+ #: includes/wjecf-controller.php:180
349
+ msgid "The coupon is not valid for the currently selected payment method."
350
+ msgstr "De kortingsbon is niet geldig voor de gekozen betaalmethode."
351
+
352
+ #: includes/wjecf-controller.php:183
353
+ #, php-format
354
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
355
+ msgstr "Sorry, het lijkt erop dat kortingsbon \"%s\" niet van u is."
356
+
357
  #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
358
  msgid "Limit discount to"
359
  msgstr "Limiteer korting tot"
360
 
361
  #: includes/wjecf-pro-controller.php:61
362
  msgid ""
363
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
364
+ "tab), the discount will only be applied to <em>matching</em> products."
365
  msgstr ""
366
+ "Let op dat wanneer het type korting 'Product korting' (zie tab 'Algemeen') "
367
+ "is gekozen, de korting alleen zal worden toegepast op overeengekomen "
368
+ "producten."
369
 
370
  #: includes/wjecf-pro-controller.php:67
371
  msgid "Discount on cart with excluded products"
377
 
378
  #: includes/wjecf-pro-controller.php:75
379
  msgid ""
380
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
381
+ "excluded items are in the cart (see tab 'usage restriction')."
382
  msgstr ""
383
+ "Aanvinken om een 'Winkelwagen korting'-coupon ook te accepteren als er "
384
+ "uitgesloten producten in de winkelwagen aanwezig zijn (zie tab "
385
+ "'gebruiksbeperking')."
386
 
387
  #: includes/wjecf-pro-free-products.php:80
388
  msgid "Please select your free gift."
389
  msgstr "Kies een gratis artikel."
390
 
391
+ #: includes/wjecf-pro-free-products.php:337
392
+ #: includes/wjecf-pro-free-products.php:347
393
  msgid "Free!"
394
  msgstr "Gratis!"
395
 
396
+ #: includes/wjecf-pro-free-products.php:412
397
+ #: includes/wjecf-pro-free-products.php:435
398
  #: includes/wjecf-pro-free-products.php:441
399
  msgid "Free products"
400
  msgstr "Gratis producten"
401
 
402
  #: includes/wjecf-pro-free-products.php:446
403
+ msgid ""
404
+ "Free products that will be added to the cart when this coupon is applied."
405
+ msgstr ""
406
+ "Gratis producten welke aan de winkelwagen worden toegevoegd als de coupon is "
407
+ "toegepast."
408
 
409
  #: includes/wjecf-pro-free-products.php:453
410
  msgid "Select one"
424
 
425
  #: includes/wjecf-pro-free-products.php:464
426
  msgid "This message is displayed when the customer must choose a free product."
427
+ msgstr ""
428
+ "Deze melding wordt getoond wanneer de klant een gratis product moet kiezen."
429
 
430
  #: includes/wjecf-pro-free-products.php:473
431
  msgid "Allow multiplication of the free products"
433
 
434
  #: includes/wjecf-pro-free-products.php:474
435
  msgid ""
436
+ "The amount of free products is multiplied every time the minimum spend, "
437
+ "subtotal or quantity is reached."
438
  msgstr ""
439
+ "Het aantal van de gratis producten wordt vermenigvuldigd met het totale "
440
+ "aantal keer dat minimale besteding, subtotaal of aantal is bereikt."
441
 
442
  #: includes/wjecf-pro-free-products.php:481
443
  msgid "BOGO matching products"
445
 
446
  #: includes/wjecf-pro-free-products.php:483
447
  msgid ""
448
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
449
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
450
+ "every matching item in the cart."
451
  msgstr ""
452
+ "Koop één of meer van de overeenkomende producten en ontvang er één gratis. "
453
+ "Gebruik 'vermenigvuldigen toestaan' om een gratis artikel voor elk "
454
+ "overeenkomend artikel te krijgen."
455
 
456
  #: includes/wjecf-pro-free-products.php:497
457
  msgid "Search for a product…"
459
 
460
  #: woocommerce-jos-autocoupon-pro.php:33
461
  msgid ""
462
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
463
+ "not be detected."
464
  msgstr ""
465
+ "WooCommerce Extended Coupon Features is uitgeschakeld omdat WooCommerce niet "
466
+ "kon worden gedetecteerd."
467
 
468
  #~ msgid ""
469
+ #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
470
+ #~ "be in the cart to use this coupon (in stead of only one of the products)."
471
  #~ msgstr ""
472
+ #~ "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de "
473
+ #~ "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in "
474
+ #~ "plaats van één van de producten)."
475
 
476
  #~ msgid "Extended Coupon Features"
477
  #~ msgstr "Uitgebreide Kortingsbon Functies"
483
  #~ msgstr "Toestaan als minimale besteding niet is bereikt"
484
 
485
  #~ msgid ""
486
+ #~ "Check this box to allow the coupon to be in the cart even if minimum "
487
+ #~ "spend (see tab 'usage restriction') is not reached. Value of the discount "
488
+ #~ "will be 0 until minimum spend is reached."
489
  #~ msgstr ""
490
+ #~ "Aanvinken als de kortingsbon ook in de winkelwagen mag zitten als "
491
+ #~ "'minimale besteding' nog niet is bereikt."
492
 
493
  #~ msgid "Customers"
494
  #~ msgstr "Klanten"
499
  #~ msgid "Customer roles"
500
  #~ msgstr "Klantrollen"
501
 
502
+ #~ msgid ""
503
+ #~ "The customer must have one of these roles in order for this coupon to be "
504
+ #~ "valid."
505
+ #~ msgstr ""
506
+ #~ "Dat klant moet een van deze rollen hebben om de kortingsbon te kunnen "
507
+ #~ "gebruiken."
508
 
509
  #~ msgid "Excluded customer roles"
510
  #~ msgstr "Uitgesloten klantrollen"
511
 
512
+ #~ msgid ""
513
+ #~ "The customer must not have one of these roles in order for this coupon to "
514
+ #~ "be valid."
515
+ #~ msgstr ""
516
+ #~ "De klant mag geen van deze rollen hebben om de kortingsbon te kunnen "
517
+ #~ "gebruiken."
518
 
519
  #~ msgid ""
520
+ #~ "Automatically add the coupon to the cart if the restrictions are met. "
521
+ #~ "Please enter a description when you check this box, the description will "
522
+ #~ "be shown in the customers cart if the coupon is applied."
523
  #~ msgstr ""
524
+ #~ "Voeg de kortingsbon automatisch toe aan het winkelwagentje als aan alle "
525
+ #~ "voorwaarden wordt voldaan. Vult u a.u.b. een omschrijving in als u deze "
526
+ #~ "optie aanvinkt, de omschrijving zal aan de klant worden getoond wanneer "
527
+ #~ "de kortingsbon wordt toegevoegd."
528
 
529
  #~ msgid ""
530
+ #~ "Check this box if ALL of the products (see above) must be in the cart to "
531
+ #~ "use this coupon (in stead of only one of the products)."
532
  #~ msgstr ""
533
+ #~ "Aanvinken als ALLE producten (zie boven) in de winkelwagen moeten zitten "
534
+ #~ "om deze kortingsbon te kunnen gebruiken (in plaats van één van de "
535
+ #~ "producten)."
languages/woocommerce-jos-autocoupon-pt_BR.mo ADDED
Binary file
languages/woocommerce-jos-autocoupon-pt_BR.po ADDED
@@ -0,0 +1,456 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
4
+ "POT-Creation-Date: 2016-03-28 21:32+0200\n"
5
+ "PO-Revision-Date: 2016-03-28 21:32+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Jos Koenis\n"
8
+ "Language: pt_BR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\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 "Você achou o WooCommerce Extended Coupon Features útil?"
22
+
23
+ #: includes/admin/wjecf-admin.php:96
24
+ msgid "Express your gratitude"
25
+ msgstr "Expresse sua gratidão!"
26
+
27
+ #: includes/admin/wjecf-admin.php:100
28
+ msgid "Donate to the developer"
29
+ msgstr "Doe ao desenvolvedor"
30
+
31
+ #: includes/admin/wjecf-admin.php:107
32
+ msgid "Documentation"
33
+ msgstr "Documentação"
34
+
35
+ #: includes/admin/wjecf-admin.php:109
36
+ msgid "WooCommerce Extended Coupon Features Documentation"
37
+ msgstr "Documentação do WooCommerce Extended Coupon Features"
38
+
39
+ #: includes/admin/wjecf-admin.php:117
40
+ msgid "Products"
41
+ msgstr "Produtos"
42
+
43
+ #: includes/admin/wjecf-admin.php:123 includes/admin/wjecf-admin.php:230
44
+ msgid "Checkout"
45
+ msgstr "Checkout"
46
+
47
+ #: includes/admin/wjecf-admin.php:129 includes/admin/wjecf-admin.php:340
48
+ msgid "Miscellaneous"
49
+ msgstr "Miscelânia"
50
+
51
+ #: includes/admin/wjecf-admin.php:141
52
+ msgid "Matching products"
53
+ msgstr "Produtos que se enquadram na promoção"
54
+
55
+ #: includes/admin/wjecf-admin.php:146
56
+ msgid "AND Products (not OR)"
57
+ msgstr "E produtos (não ou)"
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
+ "Marque essa caixa se todos os produtos devem estar no carrinho para usar "
65
+ "este cupom ao invés de apenas um dos produtos (veja a aba de \"restrição de "
66
+ "uso\")"
67
+
68
+ #: includes/admin/wjecf-admin.php:154
69
+ msgid "AND Categories (not OR)"
70
+ msgstr "E categorias (não é ou)"
71
+
72
+ #: includes/admin/wjecf-admin.php:155
73
+ msgid ""
74
+ "Check this box if products from ALL of the categories (see tab 'usage "
75
+ "restriction') must be in the cart to use this coupon (instead of only one "
76
+ "from one of the categories)."
77
+ msgstr ""
78
+ "Marque essa caixa se produtos de todas as categorias devem estar no "
79
+ "carrinho para usar este cupom ao invés de apenas um dos produtos (veja a aba "
80
+ "de \"restrição de uso\")"
81
+
82
+ #: includes/admin/wjecf-admin.php:160
83
+ msgid "(AND)"
84
+ msgstr "(E)"
85
+
86
+ #: includes/admin/wjecf-admin.php:161
87
+ msgid "(OR)"
88
+ msgstr "(OU)"
89
+
90
+ #: includes/admin/wjecf-admin.php:190
91
+ msgid "Minimum quantity of matching products"
92
+ msgstr "Mínima quantidade de produtos dentro da produção"
93
+
94
+ #: includes/admin/wjecf-admin.php:191 includes/admin/wjecf-admin.php:211
95
+ msgid "No minimum"
96
+ msgstr "Sem mínimo"
97
+
98
+ #: includes/admin/wjecf-admin.php:192
99
+ msgid ""
100
+ "Minimum quantity of the products that match the given product or category "
101
+ "restrictions (see tab 'usage restriction'). If no product or category "
102
+ "restrictions are specified, the total number of products is used."
103
+ msgstr "Quantidade mínima de produtos que devem estar na "
104
+
105
+ #: includes/admin/wjecf-admin.php:200
106
+ msgid "Maximum quantity of matching products"
107
+ msgstr "Quantidade máxima de produtos em promoção"
108
+
109
+ #: includes/admin/wjecf-admin.php:201 includes/admin/wjecf-admin.php:221
110
+ msgid "No maximum"
111
+ msgstr "Sem máximo"
112
+
113
+ #: includes/admin/wjecf-admin.php:202
114
+ msgid ""
115
+ "Maximum quantity of the products that match the given product or category "
116
+ "restrictions (see tab 'usage restriction'). If no product or category "
117
+ "restrictions are specified, the total number of products is used."
118
+ msgstr ""
119
+ "Quantidade máxima dos produtos que correspondem às restrições de produtos ou "
120
+ "categoria referidos (ver a aba \"restrição de uso\"). Se não há restrições "
121
+ "ou categoria de produtos são especificados, o número total de produtos é "
122
+ "usado."
123
+
124
+ #: includes/admin/wjecf-admin.php:210
125
+ msgid "Minimum subtotal of matching products"
126
+ msgstr "Subtotal mínimo de produtos que correspondam à promoção"
127
+
128
+ #: includes/admin/wjecf-admin.php:212
129
+ msgid ""
130
+ "Minimum price subtotal of the products that match the given product or "
131
+ "category restrictions (see tab 'usage restriction')."
132
+ msgstr ""
133
+ "Subtotal mínimo dos produtos que correspondem às restrições de produtos ou "
134
+ "categoria referidos (ver a aba \"restrição de uso\")."
135
+
136
+ #: includes/admin/wjecf-admin.php:220
137
+ msgid "Maximum subtotal of matching products"
138
+ msgstr "Subtotal máximo de produtos que correspondam a promoção"
139
+
140
+ #: includes/admin/wjecf-admin.php:222
141
+ msgid ""
142
+ "Maximum price subtotal of the products that match the given product or "
143
+ "category restrictions (see tab 'usage restriction')."
144
+ msgstr ""
145
+ "Subtotal máximo dos produtos que correspondem às restrições de produtos ou "
146
+ "categoria referidos (ver a aba \"restrição de uso\")."
147
+
148
+ #: includes/admin/wjecf-admin.php:235
149
+ msgid "Shipping methods"
150
+ msgstr "Métodos de envio"
151
+
152
+ #: includes/admin/wjecf-admin.php:236
153
+ msgid "Any shipping method"
154
+ msgstr "Qualquer método de envio"
155
+
156
+ #: includes/admin/wjecf-admin.php:245
157
+ msgid ""
158
+ "One of these shipping methods must be selected in order for this coupon to "
159
+ "be valid."
160
+ msgstr ""
161
+ "Um destes métodos de envio devem ser selecionados para tornar este cupom "
162
+ "válido"
163
+
164
+ #: includes/admin/wjecf-admin.php:251
165
+ msgid "Payment methods"
166
+ msgstr "Métodos de pagamento"
167
+
168
+ #: includes/admin/wjecf-admin.php:252
169
+ msgid "Any payment method"
170
+ msgstr "Qualquer método de pagamento"
171
+
172
+ #: includes/admin/wjecf-admin.php:263
173
+ msgid ""
174
+ "One of these payment methods must be selected in order for this coupon to be "
175
+ "valid."
176
+ msgstr ""
177
+ "Um desses métodos de pagamento deve ser selecionado para que este cupom seja "
178
+ "válido."
179
+
180
+ #: includes/admin/wjecf-admin.php:271
181
+ msgid "Customer restrictions"
182
+ msgstr "Restrições a clientes"
183
+
184
+ #: includes/admin/wjecf-admin.php:272
185
+ msgid ""
186
+ "If both a customer and a role restriction are supplied, matching either one "
187
+ "of them will suffice."
188
+ msgstr ""
189
+ "Se ambos, o cliente a restrição de tipo de cliente são apresentados, "
190
+ "corresponder um ou outro será suficiente"
191
+
192
+ #: includes/admin/wjecf-admin.php:277
193
+ msgid "Allowed Customers"
194
+ msgstr "Clientes permitidos"
195
+
196
+ #: includes/admin/wjecf-admin.php:278
197
+ msgid "Any customer"
198
+ msgstr "Qualquer cliente"
199
+
200
+ #: includes/admin/wjecf-admin.php:291
201
+ msgid "Only these customers may use this coupon."
202
+ msgstr "Apenas estes clientes podem usar este cupom"
203
+
204
+ #: includes/admin/wjecf-admin.php:298
205
+ msgid "Allowed User Roles"
206
+ msgstr "Tipos de usuário permitidos"
207
+
208
+ #: includes/admin/wjecf-admin.php:299 includes/admin/wjecf-admin.php:321
209
+ msgid "Any role"
210
+ msgstr "Qualquer tipo de usuário"
211
+
212
+ #: includes/admin/wjecf-admin.php:313
213
+ msgid "Only these User Roles may use this coupon."
214
+ msgstr "Apenas estes tipos de usuário podem usar este cupom"
215
+
216
+ #: includes/admin/wjecf-admin.php:320
217
+ msgid "Disallowed User Roles"
218
+ msgstr "Tipos de usuário não permitidos"
219
+
220
+ #: includes/admin/wjecf-admin.php:334
221
+ msgid "These User Roles will be specifically excluded from using this coupon."
222
+ msgstr ""
223
+ "Estes tipos de usuário serão especificamente excluídos de utilizar este "
224
+ "cupom."
225
+
226
+ #: includes/admin/wjecf-admin.php:345
227
+ msgid "Allow when minimum spend not reached"
228
+ msgstr "Permitir uso quando a compra mínima não for alcançada"
229
+
230
+ #: includes/admin/wjecf-admin.php:346 includes/wjecf-pro-controller.php:74
231
+ #: includes/wjecf-pro-free-products.php:474
232
+ #: includes/wjecf-pro-free-products.php:482
233
+ msgid "EXPERIMENTAL: "
234
+ msgstr "Experimental:"
235
+
236
+ #: includes/admin/wjecf-admin.php:346
237
+ msgid ""
238
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
239
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
240
+ "0 until minimum spend is reached."
241
+ msgstr ""
242
+ "Marque esta caixa para permitir que o cupom esteja no carrinho, mesmo quando "
243
+ "gasto mínimo (veja a aba \"Restrição de Uso ') não é alcançado. Valor do "
244
+ "desconto será de 0 até o gasto mínimo é alcançado."
245
+
246
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
247
+ #: includes/wjecf-autocoupon.php:137
248
+ msgid "Auto coupon"
249
+ msgstr "Cupom automático"
250
+
251
+ #: includes/wjecf-autocoupon.php:63
252
+ msgid "Individual use"
253
+ msgstr "Uso individual"
254
+
255
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
256
+ msgid "Yes"
257
+ msgstr "Sim"
258
+
259
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
260
+ msgid "No"
261
+ msgstr "Não"
262
+
263
+ #: includes/wjecf-autocoupon.php:102
264
+ msgid "Auto coupons"
265
+ msgstr "Cupon Automáticos"
266
+
267
+ #: includes/wjecf-autocoupon.php:138
268
+ msgid ""
269
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
270
+ "enter a description when you check this box, the description will be shown "
271
+ "in the customer's cart if the coupon is applied."
272
+ msgstr ""
273
+ "Automaticamente adiciona o cupom ao carrinho se as condições forem "
274
+ "atingidas. Por favor entre com uma descrição quando você marca esta caixa, a "
275
+ "descrição será vista pelos consumidores na página do carrinho quando o cupom "
276
+ "for aplicado. Por isso seja preciso e faça uma bela descrição. Seu cliente a "
277
+ "lerá!!"
278
+
279
+ #: includes/wjecf-autocoupon.php:146
280
+ msgid "Priority"
281
+ msgstr "Prioridade"
282
+
283
+ #: includes/wjecf-autocoupon.php:147
284
+ msgid "No priority"
285
+ msgstr "Sem prioridade"
286
+
287
+ #: includes/wjecf-autocoupon.php:148
288
+ msgid ""
289
+ "When 'individual use' is checked, auto coupons with a higher value will have "
290
+ "priority over other auto coupons."
291
+ msgstr ""
292
+ "Quando \"uso individual\" estiver marcado cupons automáticos com valor mais "
293
+ "alto terão prioridade sobre outros cupons automáticos"
294
+
295
+ #: includes/wjecf-autocoupon.php:158
296
+ msgid "Apply silently"
297
+ msgstr "Aplicar Silenciosamente"
298
+
299
+ #: includes/wjecf-autocoupon.php:159
300
+ msgid "Don't display a message when this coupon is automatically applied."
301
+ msgstr "Não exibe a mensagem quando um cupom automatico é aplicado"
302
+
303
+ #: includes/wjecf-autocoupon.php:266
304
+ msgid "Free shipping coupon"
305
+ msgstr "Cupom de frete grátis"
306
+
307
+ #: includes/wjecf-autocoupon.php:422
308
+ #, php-format
309
+ msgid "Discount applied: %s"
310
+ msgstr "Desconto aplicado: %s"
311
+
312
+ #: includes/wjecf-controller.php:162
313
+ #, php-format
314
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
315
+ msgstr ""
316
+
317
+ #: includes/wjecf-controller.php:166
318
+ #, php-format
319
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
320
+ msgstr ""
321
+
322
+ #: includes/wjecf-controller.php:170
323
+ #, php-format
324
+ msgid "The minimum quantity of matching products for this coupon is %s."
325
+ msgstr ""
326
+
327
+ #: includes/wjecf-controller.php:174
328
+ #, php-format
329
+ msgid "The maximum quantity of matching products for this coupon is %s."
330
+ msgstr ""
331
+
332
+ #: includes/wjecf-controller.php:177
333
+ msgid "The coupon is not valid for the currently selected shipping method."
334
+ msgstr ""
335
+
336
+ #: includes/wjecf-controller.php:180
337
+ msgid "The coupon is not valid for the currently selected payment method."
338
+ msgstr ""
339
+
340
+ #: includes/wjecf-controller.php:183
341
+ #, php-format
342
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
343
+ msgstr ""
344
+
345
+ #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
346
+ msgid "Limit discount to"
347
+ msgstr "Limitar o desconto a:"
348
+
349
+ #: includes/wjecf-pro-controller.php:61
350
+ msgid ""
351
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
352
+ "tab), the discount will only be applied to <em>matching</em> products."
353
+ msgstr ""
354
+ "Por favor observe que quando o tipo de desconto é \"desconto no produto\", "
355
+ "você pode conferir na aba \" Geral\", o desconto será apenas aplicado aos "
356
+ "produtos especificados."
357
+
358
+ #: includes/wjecf-pro-controller.php:67
359
+ msgid "Discount on cart with excluded products"
360
+ msgstr "Desconto no carrinho com produtos excluídos"
361
+
362
+ #: includes/wjecf-pro-controller.php:73
363
+ msgid "Allow discount on cart with excluded items"
364
+ msgstr "Permitir desconto no carrinho com itens excluídos"
365
+
366
+ #: includes/wjecf-pro-controller.php:75
367
+ msgid ""
368
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
369
+ "excluded items are in the cart (see tab 'usage restriction')."
370
+ msgstr ""
371
+ "Marque isso para permitir que cupons de \"Descontos no Carrinho\"sejam "
372
+ "aplicados mesmo quando itens excluídos da oferta estejam no carrinho, veja "
373
+ "na aba \"restrições de uso\""
374
+
375
+ #: includes/wjecf-pro-free-products.php:80
376
+ msgid "Please select your free gift."
377
+ msgstr "Por favor selecione o seu presente grátis"
378
+
379
+ #: includes/wjecf-pro-free-products.php:337
380
+ #: includes/wjecf-pro-free-products.php:347
381
+ msgid "Free!"
382
+ msgstr "Grátis!"
383
+
384
+ #: includes/wjecf-pro-free-products.php:412
385
+ #: includes/wjecf-pro-free-products.php:435
386
+ #: includes/wjecf-pro-free-products.php:441
387
+ msgid "Free products"
388
+ msgstr "Produtos grátis!"
389
+
390
+ #: includes/wjecf-pro-free-products.php:446
391
+ msgid ""
392
+ "Free products that will be added to the cart when this coupon is applied."
393
+ msgstr ""
394
+ "Produtos grátis que serão acrescentados ao carrinho quando o cupon for "
395
+ "aplicado."
396
+
397
+ #: includes/wjecf-pro-free-products.php:453
398
+ msgid "Select one"
399
+ msgstr "Selecione um"
400
+
401
+ #: includes/wjecf-pro-free-products.php:454
402
+ msgid "Check this box if the customer must choose from the free products."
403
+ msgstr "Marque está caixa se o cliente deve escolher o produto grátis."
404
+
405
+ #: includes/wjecf-pro-free-products.php:462
406
+ msgid "'Select your gift'-message"
407
+ msgstr "Mensagem para \"Selecione seu presente\""
408
+
409
+ #: includes/wjecf-pro-free-products.php:463
410
+ msgid "Please choose your free gift:"
411
+ msgstr "Por favor escolha seu presente gratuito:"
412
+
413
+ #: includes/wjecf-pro-free-products.php:464
414
+ msgid "This message is displayed when the customer must choose a free product."
415
+ msgstr ""
416
+ "Esta mensagem será exibida quando o consumidor deverá escolher um produto "
417
+ "grátis."
418
+
419
+ #: includes/wjecf-pro-free-products.php:473
420
+ msgid "Allow multiplication of the free products"
421
+ msgstr "Permitir Multiplicação de produtos gratuitos"
422
+
423
+ #: includes/wjecf-pro-free-products.php:474
424
+ msgid ""
425
+ "The amount of free products is multiplied every time the minimum spend, "
426
+ "subtotal or quantity is reached."
427
+ msgstr ""
428
+ "A quantidade de produtos grátis é multiplicada cada vez que o mínimo gasto, "
429
+ "subtotal, ou quantidade é atingida"
430
+
431
+ #: includes/wjecf-pro-free-products.php:481
432
+ msgid "BOGO matching products"
433
+ msgstr "Produtos dentro da promoção Compre 1 ganhe outro"
434
+
435
+ #: includes/wjecf-pro-free-products.php:483
436
+ msgid ""
437
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
438
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
439
+ "every matching item in the cart."
440
+ msgstr ""
441
+ "Compre um ou mais de qualquer um dos produtos dentro da promoção (olhe na "
442
+ "aba de Restrições de Uso) e ganhe um de graça. Marque \"Permitir "
443
+ "Multiplicação\" para ganhar um item grátis por cada item compátivel com a "
444
+ "promoção no carrinho."
445
+
446
+ #: includes/wjecf-pro-free-products.php:497
447
+ msgid "Search for a product…"
448
+ msgstr "Procutar por produto..."
449
+
450
+ #: woocommerce-jos-autocoupon-pro.php:33
451
+ msgid ""
452
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
453
+ "not be detected."
454
+ msgstr ""
455
+ "WooCommerce Extended Coupon Features está desabilitado pois não detectamos o "
456
+ "Woocommerce."
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: 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"
@@ -10,7 +10,7 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.5\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -218,65 +218,98 @@ msgid ""
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 ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
5
+ "POT-Creation-Date: 2016-03-28 21:23+0200\n"
6
  "PO-Revision-Date: 2015-05-09 18:12+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jos Koenis\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
218
  "0 until minimum spend is reached."
219
  msgstr ""
220
 
221
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
222
+ #: includes/wjecf-autocoupon.php:137
223
  msgid "Auto coupon"
224
  msgstr ""
225
 
226
+ #: includes/wjecf-autocoupon.php:63
227
  msgid "Individual use"
228
  msgstr ""
229
 
230
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
231
  msgid "Yes"
232
  msgstr ""
233
 
234
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
235
  msgid "No"
236
  msgstr ""
237
 
238
+ #: includes/wjecf-autocoupon.php:102
239
  msgid "Auto coupons"
240
  msgstr ""
241
 
242
+ #: includes/wjecf-autocoupon.php:138
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:146
250
  msgid "Priority"
251
  msgstr ""
252
 
253
+ #: includes/wjecf-autocoupon.php:147
254
  msgid "No priority"
255
  msgstr ""
256
 
257
+ #: includes/wjecf-autocoupon.php:148
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:158
264
  msgid "Apply silently"
265
  msgstr ""
266
 
267
+ #: includes/wjecf-autocoupon.php:159
268
  msgid "Don't display a message when this coupon is automatically applied."
269
  msgstr ""
270
 
271
+ #: includes/wjecf-autocoupon.php:266
272
  msgid "Free shipping coupon"
273
  msgstr ""
274
 
275
+ #: includes/wjecf-autocoupon.php:422
276
  #, php-format
277
  msgid "Discount applied: %s"
278
  msgstr ""
279
 
280
+ #: includes/wjecf-controller.php:162
281
+ #, php-format
282
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
283
+ msgstr ""
284
+
285
+ #: includes/wjecf-controller.php:166
286
+ #, php-format
287
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
288
+ msgstr ""
289
+
290
+ #: includes/wjecf-controller.php:170
291
+ #, php-format
292
+ msgid "The minimum quantity of matching products for this coupon is %s."
293
+ msgstr ""
294
+
295
+ #: includes/wjecf-controller.php:174
296
+ #, php-format
297
+ msgid "The maximum quantity of matching products for this coupon is %s."
298
+ msgstr ""
299
+
300
+ #: includes/wjecf-controller.php:177
301
+ msgid "The coupon is not valid for the currently selected shipping method."
302
+ msgstr ""
303
+
304
+ #: includes/wjecf-controller.php:180
305
+ msgid "The coupon is not valid for the currently selected payment method."
306
+ msgstr ""
307
+
308
+ #: includes/wjecf-controller.php:183
309
+ #, php-format
310
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
311
+ msgstr ""
312
+
313
  #: includes/wjecf-pro-controller.php:50 includes/wjecf-pro-controller.php:55
314
  msgid "Limit discount to"
315
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQ
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
 
@@ -12,9 +12,11 @@ Additional functionality for WooCommerce Coupons: Allow discounts to be automati
12
 
13
  == Description ==
14
 
15
- "WooCommerce Extended Coupon Features" (formerly known as: WooCommerce auto added coupons) adds functionality to the WooCommerce coupons.
16
  Very easy to use, the functionality is conveniently integrated to the WooCommerce Edit Coupon panel.
17
 
 
 
18
  Full documentation is available at [www.soft79.nl](http://www.soft79.nl/documentation/wjecf).
19
 
20
  * *Auto coupons*: Allow coupons to be automatically added to the users cart if it's restrictions are met,
@@ -102,6 +104,17 @@ 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.1 =
106
  * FIX: WPML Compatibility for AND Products / AND Categories
107
  * FIX: Redirect to page without ?apply_coupon= after applying coupon by url
4
  Tags: woocommerce, coupons, discount
5
  Requires at least: 4.0.0
6
  Tested up to: 4.4.1
7
+ Stable tag: 2.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ "WooCommerce Extended Coupon Features" adds functionality to the WooCommerce coupons and allows for automatic discount rules.
16
  Very easy to use, the functionality is conveniently integrated to the WooCommerce Edit Coupon panel.
17
 
18
+ Compatible with WooCommerce 2.5.0. Backwards compatible with older WooCommerce versions (2.2.8 confirmed).
19
+
20
  Full documentation is available at [www.soft79.nl](http://www.soft79.nl/documentation/wjecf).
21
 
22
  * *Auto coupons*: Allow coupons to be automatically added to the users cart if it's restrictions are met,
104
  4. Additionals restrictions based on shipping or payment method or the customer
105
 
106
  == Changelog ==
107
+
108
+ = 2.3.2 =
109
+ * FEATURE: Display custom error message when coupon is invalidated by this plugin
110
+ * FIX: apply_coupon redirected to wrong url when home_url contained a subdirectory
111
+ * FIX: Remove add-to-cart when redirecting for apply_coupon
112
+ * FIX: Auto Coupon Backwards compatability for WooCommerce versions prior to 2.3.0 that don't have hook woocommerce_after_calculate_totals
113
+ * TRANSLATION: Persian. Thanks to Ehsan Shahnazi.
114
+
115
+ = 2.3.1.1 =
116
+ * TRANSLATION: Brazilian Portuguese. Thanks to Francisco.
117
+
118
  = 2.3.1 =
119
  * FIX: WPML Compatibility for AND Products / AND Categories
120
  * FIX: Redirect to page without ?apply_coupon= after applying coupon by url
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.1
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */
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.2
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */