WooCommerce Extended Coupon Features - Version 2.3.6

Version Description

  • FIX: Compatibility with WooCommerce < 2.3.0 for coupon by url
  • COSMETIC: On the admin page, moved AND/OR selector near the product/categories input
  • (PRO) Filter matching products by custom field.
Download this release

Release Info

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

Code changes from version 2.3.4 to 2.3.6

assets/js/wjecf-admin.js ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Note: I18n is loaded into wjecf_admin_i18n
2
+
3
+ jQuery( function( $ ) {
4
+
5
+ var update_wjecf_products_and = function() {
6
+ $("#wjecf_products_and_label").html(
7
+ $("#_wjecf_products_and").val() == 'yes' ? wjecf_admin_i18n.label_and : wjecf_admin_i18n.label_or
8
+ );
9
+ };
10
+
11
+ var update_wjecf_categories_and = function() {
12
+ $("#wjecf_categories_and_label").html(
13
+ $("#_wjecf_categories_and").val() == 'yes' ? wjecf_admin_i18n.label_and : wjecf_admin_i18n.label_or
14
+ );
15
+ };
16
+
17
+ var init = function() {
18
+ $(".form-field:has('#_wjecf_products_and')").detach().insertBefore(".form-field:has('[name=\"product_ids\"]')");
19
+ $(".form-field:has('#_wjecf_categories_and')").detach().insertBefore(".form-field:has('[name=\"product_categories[]\"]')");
20
+
21
+ //Append AND/OR to the labels
22
+ $(".form-field:has('[name=\"product_ids\"]') label").append( ' <strong><span id="wjecf_products_and_label"></span></strong>' );
23
+ $(".form-field:has('[name=\"product_categories[]\"]') label").append( ' <strong><span id="wjecf_categories_and_label"></span></strong>' );
24
+
25
+ //Update AND or OR when checkbox value changes
26
+ $("#_wjecf_products_and").click( update_wjecf_products_and );
27
+ $("#_wjecf_categories_and").click( update_wjecf_categories_and );
28
+
29
+ //Update now
30
+ update_wjecf_products_and();
31
+ update_wjecf_categories_and();
32
+ };
33
+
34
+ init();
35
+ } );
includes/admin/wjecf-admin.php CHANGED
@@ -23,6 +23,8 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
23
  //Admin hooks
24
  add_action( 'admin_notices', array( $this, 'admin_notices'));
25
 
 
 
26
  add_filter( 'woocommerce_coupon_data_tabs', array( $this, 'admin_coupon_options_tabs' ), 10, 1);
27
  add_action( 'woocommerce_coupon_data_panels', array( $this, 'admin_coupon_options_panels' ), 10, 0 );
28
  add_action( 'woocommerce_process_shop_coupon_meta', array( $this, 'process_shop_coupon_meta' ), 10, 2 );
@@ -31,6 +33,10 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
31
  add_action( 'wjecf_coupon_metabox_checkout', array( $this, 'admin_coupon_metabox_checkout' ), 10, 2 );
32
  add_action( 'wjecf_coupon_metabox_customer', array( $this, 'admin_coupon_metabox_customer' ), 10, 2 );
33
  add_action( 'wjecf_coupon_metabox_misc', array( $this, 'admin_coupon_metabox_misc' ), 10, 2 );
 
 
 
 
34
  }
35
 
36
  // ===========================================================================
@@ -89,6 +95,30 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
89
  }
90
  */
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  //Add tabs to the coupon option page
93
  public function admin_coupon_options_tabs( $tabs ) {
94
 
@@ -174,48 +204,31 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
174
  echo "<h3>" . esc_html( __( 'Matching products', 'woocommerce-jos-autocoupon' ) ). "</h3>\n";
175
  //=============================
176
  // AND instead of OR the products
177
- woocommerce_wp_checkbox( array(
178
  'id' => '_wjecf_products_and',
179
- 'label' => __( 'AND Products (not OR)', 'woocommerce-jos-autocoupon' ),
180
- 'description' => __( 'Check this box if ALL of the products (see tab \'usage restriction\') must be in the cart to use this coupon (instead of only one of the products).', 'woocommerce-jos-autocoupon' )
181
- ) );
 
 
 
 
 
182
 
183
  //=============================
184
  // 2.2.3.1 AND instead of OR the categories
185
- woocommerce_wp_checkbox( array(
186
  'id' => '_wjecf_categories_and',
187
- 'label' => __( 'AND Categories (not OR)', 'woocommerce-jos-autocoupon' ),
188
- 'description' => __( 'Check this box if products from ALL of the categories (see tab \'usage restriction\') must be in the cart to use this coupon (instead of only one from one of the categories).', 'woocommerce-jos-autocoupon' )
189
- ) );
 
 
 
 
 
 
190
 
191
- //=============================
192
- //Trick to show AND or OR next to the product_ids field
193
- $label_and = __( '(AND)', 'woocommerce-jos-autocoupon' );
194
- $label_or = __( '(OR)', 'woocommerce-jos-autocoupon' );
195
- $label_prods = get_post_meta( $thepostid, '_wjecf_products_and', true ) == 'yes' ? $label_and : $label_or;
196
- $label_cats = get_post_meta( $thepostid, '_wjecf_categories_and', true ) == 'yes' ? $label_and : $label_or;
197
- ?>
198
- <script type="text/javascript">
199
- //Update AND or OR in product_ids label when checkbox value changes
200
- jQuery("#_wjecf_products_and").click(
201
- function() {
202
- jQuery("#wjecf_products_and_label").html(
203
- jQuery("#_wjecf_products_and").attr('checked') ? '<?php echo esc_js( $label_and ); ?>' : '<?php echo esc_js( $label_or ); ?>'
204
- );
205
- } );
206
- //Append AND/OR to the product_ids label
207
- jQuery(".form-field:has('[name=\"product_ids\"]') label").append( ' <strong><span id="wjecf_products_and_label"><?php echo esc_html( $label_prods ); ?></span></strong>' );
208
-
209
- jQuery("#_wjecf_categories_and").click(
210
- function() {
211
- jQuery("#wjecf_categories_and_label").html(
212
- jQuery("#_wjecf_categories_and").attr('checked') ? '<?php echo esc_js( $label_and ); ?>' : '<?php echo esc_js( $label_or ); ?>'
213
- );
214
- } );
215
- //Append AND/OR to the product_ids label
216
- jQuery(".form-field:has('[name=\"product_categories[]\"]') label").append( ' <strong><span id="wjecf_categories_and_label"><?php echo esc_html( $label_cats ); ?></span></strong>' );
217
- </script>
218
- <?php //End of the AND/OR trick
219
 
220
  // Minimum quantity of matching products (product/category)
221
  woocommerce_wp_text_input( array(
@@ -394,11 +407,11 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
394
  $wjecf_max_matching_product_subtotal = isset( $_POST['_wjecf_max_matching_product_subtotal'] ) ? $_POST['_wjecf_max_matching_product_subtotal'] : '';
395
  update_post_meta( $post_id, '_wjecf_max_matching_product_subtotal', $wjecf_max_matching_product_subtotal );
396
 
397
- $wjecf_products_and = isset( $_POST['_wjecf_products_and'] ) ? 'yes' : 'no';
398
  update_post_meta( $post_id, '_wjecf_products_and', $wjecf_products_and );
399
 
400
  //2.2.3.1
401
- $wjecf_categories_and = isset( $_POST['_wjecf_categories_and'] ) ? 'yes' : 'no';
402
  update_post_meta( $post_id, '_wjecf_categories_and', $wjecf_categories_and );
403
 
404
  //2.2.2
@@ -422,6 +435,17 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
422
 
423
  }
424
 
 
 
 
 
 
 
 
 
 
 
 
425
  /**
426
  * 2.3.4
427
  * Parse an array or comma separated string; make sure they are valid ints and return as comma separated string
@@ -436,6 +460,38 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
436
  return implode( ',', array_filter( array_map( 'intval', $int_array ) ) );
437
  }
438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
  public function render_admin_cat_selector( $dom_id, $field_name, $selected_ids, $placeholder = null ) {
440
  if ( $placeholder === null ) $placeholder = __( 'Search for a product…', 'woocommerce' );
441
 
@@ -493,7 +549,7 @@ class WJECF_Admin extends Abstract_WJECF_Plugin {
493
  . esc_attr( $placeholder ) . '" data-action="woocommerce_json_search_products_and_variations" data-selected="'
494
  . $json_encoded . '" value="' . implode( ',', array_keys( $selected_keys_and_values ) ) . '" />';
495
 
496
- }
497
 
498
  public static function get_donate_url() {
499
  return "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted";
23
  //Admin hooks
24
  add_action( 'admin_notices', array( $this, 'admin_notices'));
25
 
26
+ add_action( 'admin_head', array( $this, 'on_admin_head'));
27
+
28
  add_filter( 'woocommerce_coupon_data_tabs', array( $this, 'admin_coupon_options_tabs' ), 10, 1);
29
  add_action( 'woocommerce_coupon_data_panels', array( $this, 'admin_coupon_options_panels' ), 10, 0 );
30
  add_action( 'woocommerce_process_shop_coupon_meta', array( $this, 'process_shop_coupon_meta' ), 10, 2 );
33
  add_action( 'wjecf_coupon_metabox_checkout', array( $this, 'admin_coupon_metabox_checkout' ), 10, 2 );
34
  add_action( 'wjecf_coupon_metabox_customer', array( $this, 'admin_coupon_metabox_customer' ), 10, 2 );
35
  add_action( 'wjecf_coupon_metabox_misc', array( $this, 'admin_coupon_metabox_misc' ), 10, 2 );
36
+
37
+ WJECF_ADMIN()->add_inline_style( '
38
+ #woocommerce-coupon-data .wjecf-not-wide { width:50% }
39
+ ');
40
  }
41
 
42
  // ===========================================================================
95
  }
96
  */
97
 
98
+ //2.3.6 Inline css
99
+ private $admin_css = '';
100
+
101
+ /**
102
+ * 2.3.6
103
+ * @return void
104
+ */
105
+ function on_admin_head() {
106
+ //Output inline style for the admin pages
107
+ if ( ! empty( $this->admin_css ) ) {
108
+ echo '<style type="text/css">' . $this->admin_css . '</style>';
109
+ $this->admin_css = '';
110
+ }
111
+
112
+ //Enqueue scripts
113
+ wp_enqueue_script( "wjecf-admin", WJECF()->plugin_url . "assets/js/wjecf-admin.js", array( 'jquery' ), WJECF()->version );
114
+ wp_localize_script( 'wjecf-admin', 'wjecf_admin_i18n', array(
115
+ 'label_and' => __( '(AND)', 'woocommerce-jos-autocoupon' ),
116
+ 'label_or' => __( '(OR)', 'woocommerce-jos-autocoupon' )
117
+ ) );
118
+
119
+ }
120
+
121
+
122
  //Add tabs to the coupon option page
123
  public function admin_coupon_options_tabs( $tabs ) {
124
 
204
  echo "<h3>" . esc_html( __( 'Matching products', 'woocommerce-jos-autocoupon' ) ). "</h3>\n";
205
  //=============================
206
  // AND instead of OR the products
207
+ $this->render_select_with_default( array(
208
  'id' => '_wjecf_products_and',
209
+ 'label' => __( 'Products Operator', 'woocommerce-jos-autocoupon' ),
210
+ 'options' => array( 'no' => __( 'OR', 'woocommerce-jos-autocoupon' ), 'yes' => __( 'AND', 'woocommerce-jos-autocoupon' ) ),
211
+ 'default_value' => 'no',
212
+ 'class' => 'wjecf-not-wide',
213
+ /* translators: OLD TEXT: 'Check this box if ALL of the products (see tab \'usage restriction\') must be in the cart to use this coupon (instead of only one of the products).' */
214
+ 'description' => __( 'Use AND if ALL of the products must be in the cart to use this coupon (instead of only one of the products).', 'woocommerce-jos-autocoupon' ),
215
+ 'desc_tip' => true
216
+ ) );
217
 
218
  //=============================
219
  // 2.2.3.1 AND instead of OR the categories
220
+ $this->render_select_with_default( array(
221
  'id' => '_wjecf_categories_and',
222
+ 'label' => __( 'Categories Operator', 'woocommerce-jos-autocoupon' ),
223
+ 'options' => array( 'no' => __( 'OR', 'woocommerce-jos-autocoupon' ), 'yes' => __( 'AND', 'woocommerce-jos-autocoupon' ) ),
224
+ 'default_value' => 'no',
225
+ 'class' => 'wjecf-not-wide',
226
+ /* translators: OLD TEXT: 'Check this box if products from ALL of the categories (see tab \'usage restriction\') must be in the cart to use this coupon (instead of only one from one of the categories).' */
227
+ 'description' => __( 'Use AND if products from ALL of the categories must be in the cart to use this coupon (instead of only one from one of the categories).', 'woocommerce-jos-autocoupon' ),
228
+ 'desc_tip' => true
229
+ ) );
230
+
231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
 
233
  // Minimum quantity of matching products (product/category)
234
  woocommerce_wp_text_input( array(
407
  $wjecf_max_matching_product_subtotal = isset( $_POST['_wjecf_max_matching_product_subtotal'] ) ? $_POST['_wjecf_max_matching_product_subtotal'] : '';
408
  update_post_meta( $post_id, '_wjecf_max_matching_product_subtotal', $wjecf_max_matching_product_subtotal );
409
 
410
+ $wjecf_products_and = $_POST['_wjecf_products_and'] == 'yes' ? 'yes' : 'no';
411
  update_post_meta( $post_id, '_wjecf_products_and', $wjecf_products_and );
412
 
413
  //2.2.3.1
414
+ $wjecf_categories_and = $_POST['_wjecf_categories_and'] == 'yes' ? 'yes' : 'no';
415
  update_post_meta( $post_id, '_wjecf_categories_and', $wjecf_categories_and );
416
 
417
  //2.2.2
435
 
436
  }
437
 
438
+ /**
439
+ * 2.3.6
440
+ * Add inline style (css) to the admin page. Must be called BEFORE admin_head !
441
+ * @param string $css
442
+ * @return void
443
+ */
444
+ public function add_inline_style( $css ) {
445
+ $this->admin_css .= $css;
446
+ }
447
+
448
+
449
  /**
450
  * 2.3.4
451
  * Parse an array or comma separated string; make sure they are valid ints and return as comma separated string
460
  return implode( ',', array_filter( array_map( 'intval', $int_array ) ) );
461
  }
462
 
463
+ /**
464
+ * 2.3.6
465
+ * Renders a <SELECT> that has a default value. Relies on woocommerce_wp_select
466
+ *
467
+ * field['default_value']: The default value (if omitted the first option will be default)
468
+ * field['append_default_label']: If true or omitted the text '(DEFAULT)' will be appended to the default option caption
469
+ *
470
+ * @param array $field see wc-meta-box-functions.php:woocommerce_wp_select
471
+ * @return void
472
+ */
473
+ public function render_select_with_default( $field ) {
474
+ global $thepostid, $post;
475
+ $thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
476
+
477
+ reset( $field['options'] ); //move to first for key()
478
+ $default_value = isset( $field['default_value'] ) ? $field['default_value'] : key( $field['options'] );
479
+ $append_default_label = isset( $field['append_default_label'] ) ? $field['append_default_label'] : true;
480
+
481
+ if ( $append_default_label ) {
482
+ $field['options'][$default_value] = sprintf( __( '%s (Default)', 'woocommerce-jos-autocoupon' ), $field['options'][$default_value] );
483
+ }
484
+
485
+ if ( ! isset( $field['value'] ) ) {
486
+ $field['value'] = get_post_meta( $thepostid, $field['id'], true );
487
+ }
488
+ if ( empty( $field['value'] ) ) {
489
+ $field['value'] = $default_value;
490
+ }
491
+
492
+ woocommerce_wp_select( $field );
493
+ }
494
+
495
  public function render_admin_cat_selector( $dom_id, $field_name, $selected_ids, $placeholder = null ) {
496
  if ( $placeholder === null ) $placeholder = __( 'Search for a product…', 'woocommerce' );
497
 
549
  . esc_attr( $placeholder ) . '" data-action="woocommerce_json_search_products_and_variations" data-selected="'
550
  . $json_encoded . '" value="' . implode( ',', array_keys( $selected_keys_and_values ) ) . '" />';
551
 
552
+ }
553
 
554
  public static function get_donate_url() {
555
  return "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted";
includes/wjecf-autocoupon.php CHANGED
@@ -222,7 +222,7 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
222
  $cart = WC()->cart;
223
  foreach ( $split as $coupon_code ) {
224
  $coupon = WJECF()->get_coupon( $coupon_code );
225
- if ( ! $coupon->exists ) {
226
  wc_add_notice( $coupon->get_coupon_error( WC_Coupon::E_WC_COUPON_NOT_EXIST ), 'error' );
227
  } else {
228
  $valid = $coupon->is_valid();
@@ -238,7 +238,13 @@ class WJECF_AutoCoupon extends Abstract_WJECF_Plugin {
238
  $requested_url = is_ssl() ? 'https://' : 'http://';
239
  $requested_url .= $_SERVER['HTTP_HOST'];
240
  $requested_url .= $_SERVER['REQUEST_URI'];
241
- wp_safe_redirect( remove_query_arg( array( 'apply_coupon', 'add-to-cart' ), ( $requested_url ) ) );
 
 
 
 
 
 
242
  exit;
243
  }
244
  }
222
  $cart = WC()->cart;
223
  foreach ( $split as $coupon_code ) {
224
  $coupon = WJECF()->get_coupon( $coupon_code );
225
+ if ( WJECF()->check_woocommerce_version('2.3.0') && ! $coupon->exists ) {
226
  wc_add_notice( $coupon->get_coupon_error( WC_Coupon::E_WC_COUPON_NOT_EXIST ), 'error' );
227
  } else {
228
  $valid = $coupon->is_valid();
238
  $requested_url = is_ssl() ? 'https://' : 'http://';
239
  $requested_url .= $_SERVER['HTTP_HOST'];
240
  $requested_url .= $_SERVER['REQUEST_URI'];
241
+
242
+ //2.3.6: Since WC2.3.0 the moment of handling add-to-cart has changed
243
+ if ( WJECF()->check_woocommerce_version('2.3.0')) {
244
+ wp_safe_redirect( remove_query_arg( array( 'apply_coupon' ), ( $requested_url ) ) );
245
+ } else {
246
+ wp_safe_redirect( remove_query_arg( array( 'apply_coupon', 'add-to-cart' ), ( $requested_url ) ) );
247
+ }
248
  exit;
249
  }
250
  }
includes/wjecf-controller.php CHANGED
@@ -21,6 +21,11 @@ class WJECF_Controller {
21
  protected $log = array();
22
  public $options = false;
23
 
 
 
 
 
 
24
  /**
25
  * Singleton Instance
26
  *
@@ -36,7 +41,15 @@ class WJECF_Controller {
36
  protected static $_instance = null;
37
 
38
 
39
- public function __construct() {
 
 
 
 
 
 
 
 
40
  add_action('init', array( &$this, 'controller_init' ));
41
  }
42
 
@@ -44,7 +57,7 @@ class WJECF_Controller {
44
  if ( ! class_exists('WC_Coupon') ) {
45
  return;
46
  }
47
- $this->debug_mode = false; //defined( 'WP_DEBUG' ) && WP_DEBUG;
48
  $this->log( "INIT " . ( is_ajax() ? "AJAX" : is_admin() ? "ADMIN" : "FRONTEND" ) . " " . $_SERVER['REQUEST_URI'] );
49
 
50
  $this->init_options();
@@ -364,6 +377,10 @@ class WJECF_Controller {
364
  }
365
  }
366
 
 
 
 
 
367
  if ( $coupon->minimum_amount ) {
368
  $multiplier = self::min_value( floor( WC()->cart->subtotal / $coupon->minimum_amount ), $multiplier );
369
  }
21
  protected $log = array();
22
  public $options = false;
23
 
24
+ //Plugin data
25
+ public $plugin_path; // Has trailing slash
26
+ public $plugin_url; // Has trailing slash
27
+ public $version; // Use for js
28
+
29
  /**
30
  * Singleton Instance
31
  *
41
  protected static $_instance = null;
42
 
43
 
44
+ public function __construct() {
45
+ //Paths
46
+ $this->plugin_path = plugin_dir_path( dirname(__FILE__) );
47
+ $this->plugin_url = plugins_url( '/', dirname( __FILE__ ) );
48
+ //Version
49
+ $filename = $this->is_pro() ? "woocommerce-jos-autocoupon-pro.php" : "woocommerce-jos-autocoupon.php" ;
50
+ $plugin_data = get_plugin_data( $this->plugin_path . $filename, false, false );
51
+ $this->version = $plugin_data['Version'];
52
+
53
  add_action('init', array( &$this, 'controller_init' ));
54
  }
55
 
57
  if ( ! class_exists('WC_Coupon') ) {
58
  return;
59
  }
60
+ $this->debug_mode = false && defined( 'WP_DEBUG' ) && WP_DEBUG;
61
  $this->log( "INIT " . ( is_ajax() ? "AJAX" : is_admin() ? "ADMIN" : "FRONTEND" ) . " " . $_SERVER['REQUEST_URI'] );
62
 
63
  $this->init_options();
377
  }
378
  }
379
 
380
+ //We use our own filter (instead of woocommerce_coupon_is_valid) for easier compatibility management
381
+ //e.g. WC prior to 2.3.0 can't handle Exceptions; while 2.3.0 and above require exceptions
382
+ do_action( 'wjecf_assert_coupon_is_valid', $coupon );
383
+
384
  if ( $coupon->minimum_amount ) {
385
  $multiplier = self::min_value( floor( WC()->cart->subtotal / $coupon->minimum_amount ), $multiplier );
386
  }
languages/woocommerce-jos-autocoupon-de_DE.po CHANGED
@@ -1,412 +1,412 @@
1
- # Copyright (C) 2015 WooCommerce auto added coupons
2
- # This file is distributed under the same license as the WooCommerce auto added coupons package.
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 ""
1
+ # Copyright (C) 2015 WooCommerce auto added coupons
2
+ # This file is distributed under the same license as the WooCommerce auto added coupons package.
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
@@ -2,187 +2,192 @@
2
  # This file is distributed under the same license as the WooCommerce auto added coupons package.
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-05-14 13:07+0200\n"
9
- "PO-Revision-Date: 2016-05-14 13:15+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"
 
20
 
21
- #: includes/admin/wjecf-admin-auto-upgrade.php:36
22
  msgid ""
23
  "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
24
  "using an older version of this plugin, while the data was upgraded to a "
25
  "newer version."
26
  msgstr ""
27
 
28
- #: includes/admin/wjecf-admin-auto-upgrade.php:44
29
  msgid ""
30
  "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
31
  "upgraded to the newest version."
32
  msgstr ""
33
 
34
- #: includes/admin/wjecf-admin.php:19
35
  msgid ""
36
- "<strong>WooCommerce Extended Coupon Features:</strong> You are using a "
37
- "WooCommerce version prior to 2.3.0. Updating of WooCommerce is recommended "
38
- "as using an outdated version might cause unexpected behaviour in combination "
39
- "with modern plugins."
40
  msgstr ""
41
 
42
- #: includes/admin/wjecf-admin.php:68
 
 
 
 
 
 
 
 
43
  msgid "Products"
44
  msgstr "Productos"
45
 
46
- #: includes/admin/wjecf-admin.php:74 includes/admin/wjecf-admin.php:235
47
  msgid "Checkout"
48
  msgstr "Tramitar"
49
 
50
- #: includes/admin/wjecf-admin.php:80 includes/admin/wjecf-admin.php:345
51
  msgid "Miscellaneous"
52
  msgstr "Diversos"
53
 
54
- #: includes/admin/wjecf-admin.php:123
55
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
56
  msgstr "Le gusta WooCommerce Extended Coupon Features?"
57
 
58
- #: includes/admin/wjecf-admin.php:125
59
  msgid "Express your gratitude"
60
  msgstr "Exprese su gratitud"
61
 
62
- #: includes/admin/wjecf-admin.php:129
63
  msgid "Donate to the developer"
64
  msgstr "Hacer una donación"
65
 
66
- #: includes/admin/wjecf-admin.php:136
67
  msgid "Documentation"
68
  msgstr "Documentación"
69
 
70
- #: includes/admin/wjecf-admin.php:138
71
  msgid "WooCommerce Extended Coupon Features Documentation"
72
  msgstr "Documentación de WooCommerce Extended Coupon Features"
73
 
74
- #: includes/admin/wjecf-admin.php:146
75
  msgid "Matching products"
76
  msgstr "Productos conformes"
77
 
78
- #: includes/admin/wjecf-admin.php:151
79
- msgid "AND Products (not OR)"
80
- msgstr "TODOS los productos"
81
-
82
- #: includes/admin/wjecf-admin.php:152
83
- msgid ""
84
- "Check this box if ALL of the products (see tab 'usage restriction') must be "
85
- "in the cart to use this coupon (instead of only one of the products)."
86
  msgstr ""
87
- "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') "
88
- "necesitan estar en el carrito de compras (en lugar de uno de los productos)."
89
 
90
- #: includes/admin/wjecf-admin.php:159
91
- msgid "AND Categories (not OR)"
92
- msgstr "TODAS las categorias"
 
93
 
94
- #: includes/admin/wjecf-admin.php:160
 
 
 
 
 
95
  msgid ""
96
- "Check this box if products from ALL of the categories (see tab 'usage "
97
- "restriction') must be in the cart to use this coupon (instead of only one "
98
- "from one of the categories)."
99
  msgstr ""
100
- "Marque esta casilla si productos de TODAS las categorias (vea 'Restricción "
101
- "de uso') necesitan estar en el carrito de compras (en lugar de un producto "
102
- "de uno de los productos)."
103
 
104
- #: includes/admin/wjecf-admin.php:165
105
- msgid "(AND)"
106
- msgstr "(TODOS)"
107
 
108
- #: includes/admin/wjecf-admin.php:166
109
- msgid "(OR)"
110
- msgstr "(UNO)"
 
 
111
 
112
- #: includes/admin/wjecf-admin.php:195
113
  msgid "Minimum quantity of matching products"
114
  msgstr "Cantidad mínima de productos conformes."
115
 
116
- #: includes/admin/wjecf-admin.php:196 includes/admin/wjecf-admin.php:216
117
  msgid "No minimum"
118
  msgstr "Sin mínimo"
119
 
120
- #: includes/admin/wjecf-admin.php:197
121
  msgid ""
122
  "Minimum quantity of the products that match the given product or category "
123
  "restrictions (see tab 'usage restriction'). If no product or category "
124
  "restrictions are specified, the total number of products is used."
125
  msgstr "Cantidad mínima de productos conformes (vea 'Restricción de uso')."
126
 
127
- #: includes/admin/wjecf-admin.php:205
128
  msgid "Maximum quantity of matching products"
129
  msgstr "Cantidad máxima de productos conformes."
130
 
131
- #: includes/admin/wjecf-admin.php:206 includes/admin/wjecf-admin.php:226
132
  msgid "No maximum"
133
  msgstr "Sin máximo"
134
 
135
- #: includes/admin/wjecf-admin.php:207
136
  msgid ""
137
  "Maximum quantity of the products that match the given product or category "
138
  "restrictions (see tab 'usage restriction'). If no product or category "
139
  "restrictions are specified, the total number of products is used."
140
  msgstr "Cantidad máxima de productos conformes (vea 'Restricción de uso')."
141
 
142
- #: includes/admin/wjecf-admin.php:215
143
  msgid "Minimum subtotal of matching products"
144
  msgstr "Subtotal mínimo de productos conformes."
145
 
146
- #: includes/admin/wjecf-admin.php:217
147
  msgid ""
148
  "Minimum price subtotal of the products that match the given product or "
149
  "category restrictions (see tab 'usage restriction')."
150
  msgstr "Subtotal mínimo de productos conformes (vea 'Restricción de uso')."
151
 
152
- #: includes/admin/wjecf-admin.php:225
153
  msgid "Maximum subtotal of matching products"
154
  msgstr "Subtotal máximo de productos conformes."
155
 
156
- #: includes/admin/wjecf-admin.php:227
157
  msgid ""
158
  "Maximum price subtotal of the products that match the given product or "
159
  "category restrictions (see tab 'usage restriction')."
160
  msgstr "Subtotal máximo de productos conformes (vea 'Restricción de uso')."
161
 
162
- #: includes/admin/wjecf-admin.php:240
163
  msgid "Shipping methods"
164
  msgstr "Métodos de envío"
165
 
166
- #: includes/admin/wjecf-admin.php:241
167
  msgid "Any shipping method"
168
  msgstr "Métodos de envío"
169
 
170
- #: includes/admin/wjecf-admin.php:250
171
  msgid ""
172
  "One of these shipping methods must be selected in order for this coupon to "
173
  "be valid."
174
  msgstr ""
175
  "Uno de estos métodos de pago tiene que ser seleccionado para usar este cupón."
176
 
177
- #: includes/admin/wjecf-admin.php:256
178
  msgid "Payment methods"
179
  msgstr "Métodos de pago"
180
 
181
- #: includes/admin/wjecf-admin.php:257
182
  msgid "Any payment method"
183
  msgstr "Métodos de pago"
184
 
185
- #: includes/admin/wjecf-admin.php:268
186
  msgid ""
187
  "One of these payment methods must be selected in order for this coupon to be "
188
  "valid."
@@ -190,11 +195,11 @@ msgstr ""
190
  "Uno de estos métodos de envío tiene que ser seleccionado para usar este "
191
  "cupón."
192
 
193
- #: includes/admin/wjecf-admin.php:276
194
  msgid "Customer restrictions"
195
  msgstr "Restricción de clientes"
196
 
197
- #: includes/admin/wjecf-admin.php:277
198
  msgid ""
199
  "If both a customer and a role restriction are supplied, matching either one "
200
  "of them will suffice."
@@ -202,55 +207,60 @@ msgstr ""
202
  "Si se ha introducido tanto una restricción de cliente como una restricción "
203
  "de perfil, sí coincide uno de ellos será suficiente."
204
 
205
- #: includes/admin/wjecf-admin.php:282
206
  msgid "Allowed Customers"
207
  msgstr "Clientes"
208
 
209
- #: includes/admin/wjecf-admin.php:283
210
  msgid "Any customer"
211
  msgstr "Clientes"
212
 
213
- #: includes/admin/wjecf-admin.php:296
214
  msgid "Only these customers may use this coupon."
215
  msgstr "Solo estos clientes pueden usar este cupón."
216
 
217
- #: includes/admin/wjecf-admin.php:303
218
  msgid "Allowed User Roles"
219
  msgstr "Perfiles del cliente"
220
 
221
- #: includes/admin/wjecf-admin.php:304 includes/admin/wjecf-admin.php:326
222
  msgid "Any role"
223
  msgstr "Perfiles del cliente"
224
 
225
- #: includes/admin/wjecf-admin.php:318
226
  msgid "Only these User Roles may use this coupon."
227
  msgstr "Solo clientes con este perfil pueden usar este cupón."
228
 
229
- #: includes/admin/wjecf-admin.php:325
230
  msgid "Disallowed User Roles"
231
  msgstr "Perfiles del cliente excluidos"
232
 
233
- #: includes/admin/wjecf-admin.php:339
234
  msgid "These User Roles will be specifically excluded from using this coupon."
235
  msgstr "Clientes con este perfil no pueden usar este cupón."
236
 
237
- #: includes/admin/wjecf-admin.php:350
238
  msgid "Allow when minimum spend not reached"
239
  msgstr ""
240
 
241
- #: includes/admin/wjecf-admin.php:351 includes/wjecf-pro-free-products.php:481
242
- #: includes/wjecf-pro-free-products.php:489
243
  msgid "EXPERIMENTAL: "
244
  msgstr "EXPERIMENTAL:"
245
 
246
- #: includes/admin/wjecf-admin.php:351
247
  msgid ""
248
  "Check this box to allow the coupon to be in the cart even when minimum spend "
249
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
250
  "0 until minimum spend is reached."
251
  msgstr ""
252
 
253
- #: includes/admin/wjecf-admin.php:398 includes/admin/wjecf-admin.php:423
 
 
 
 
 
254
  msgid "Search for a product…"
255
  msgstr "Buscar producto..."
256
 
@@ -309,61 +319,55 @@ msgstr "Aplicar sin mensaje"
309
  msgid "Don't display a message when this coupon is automatically applied."
310
  msgstr "No mostrar mensaje cuando el cupon esté aplicado automaticamente."
311
 
312
- #: includes/wjecf-autocoupon.php:240
313
- #, php-format
314
- msgid "Coupon '%s' will be applied when it's conditions are met."
315
- msgstr ""
316
- "Cupón '%s' se aplicará automaticamente cuando cumpla con los requisitos."
317
-
318
- #: includes/wjecf-autocoupon.php:306
319
  msgid "Free shipping coupon"
320
  msgstr "Cupón para envío gratis"
321
 
322
- #: includes/wjecf-autocoupon.php:381 includes/wjecf-autocoupon.php:415
323
  #, php-format
324
  msgid "Discount applied: %s"
325
  msgstr "Descuento aplicado: %s"
326
 
327
- #: includes/wjecf-controller.php:169
328
  #, php-format
329
  msgid "The minimum subtotal of the matching products for this coupon is %s."
330
  msgstr "El subtotal mínimo de los productos conformes para este cupón es %s."
331
 
332
- #: includes/wjecf-controller.php:173
333
  #, php-format
334
  msgid "The maximum subtotal of the matching products for this coupon is %s."
335
  msgstr "El subtotal máximo de los productos conformes para este cupón es %s."
336
 
337
- #: includes/wjecf-controller.php:177
338
  #, php-format
339
  msgid "The minimum quantity of matching products for this coupon is %s."
340
  msgstr "La cantidad mínima de productos conformes para este cupón es %s."
341
 
342
- #: includes/wjecf-controller.php:181
343
  #, php-format
344
  msgid "The maximum quantity of matching products for this coupon is %s."
345
  msgstr "La cantidad máxima de productos conformes para este cupón es %s."
346
 
347
- #: includes/wjecf-controller.php:184
348
  msgid "The coupon is not valid for the currently selected shipping method."
349
  msgstr "El cupón no es válido para este método de envío."
350
 
351
- #: includes/wjecf-controller.php:187
352
  msgid "The coupon is not valid for the currently selected payment method."
353
  msgstr "El cupón no es válido para este método de pago."
354
 
355
- #: includes/wjecf-controller.php:190
356
  #, php-format
357
  msgid "Sorry, it seems the coupon \"%s\" is not yours."
358
  msgstr "Lo sentimos, parece que el cupón \"%s\" no es tuyo."
359
 
360
  #: includes/wjecf-pro-controller.php:59
361
  msgid "Discount on cart with excluded products"
362
- msgstr ""
363
 
364
  #: includes/wjecf-pro-controller.php:65
365
  msgid "Allow discount on cart with excluded items"
366
- msgstr ""
367
 
368
  #: includes/wjecf-pro-controller.php:66
369
  msgid ""
@@ -383,19 +387,19 @@ msgstr ""
383
 
384
  #: includes/wjecf-pro-controller.php:85
385
  msgid "(default)"
386
- msgstr ""
387
 
388
  #: includes/wjecf-pro-controller.php:86
389
  msgid "One item per order line"
390
- msgstr ""
391
 
392
  #: includes/wjecf-pro-controller.php:87
393
  msgid "Lowest priced product (single item)"
394
- msgstr ""
395
 
396
  #: includes/wjecf-pro-controller.php:88
397
  msgid "Lowest priced order line (all items)"
398
- msgstr ""
399
 
400
  #: includes/wjecf-pro-controller.php:90
401
  msgid ""
@@ -403,6 +407,17 @@ msgid ""
403
  "tab), the discount will only be applied to <em>matching</em> products."
404
  msgstr ""
405
 
 
 
 
 
 
 
 
 
 
 
 
406
  #: includes/wjecf-pro-evalmath.php:735
407
  msgid "an unexpected error occured"
408
  msgstr ""
@@ -473,63 +488,63 @@ msgid ""
473
  "given, {$a->expected} expected)"
474
  msgstr ""
475
 
476
- #: includes/wjecf-pro-free-products.php:80
477
  msgid "Please select your free gift."
478
  msgstr "Elije tu regalo."
479
 
480
- #: includes/wjecf-pro-free-products.php:344
481
- #: includes/wjecf-pro-free-products.php:354
482
  msgid "Free!"
483
  msgstr "Gratis!"
484
 
485
- #: includes/wjecf-pro-free-products.php:419
486
- #: includes/wjecf-pro-free-products.php:442
487
- #: includes/wjecf-pro-free-products.php:448
488
  msgid "Free products"
489
  msgstr "Productos gratis"
490
 
491
- #: includes/wjecf-pro-free-products.php:453
492
  msgid ""
493
  "Free products that will be added to the cart when this coupon is applied."
494
  msgstr "Productos gratuitos que serán aumentado al carrito."
495
 
496
- #: includes/wjecf-pro-free-products.php:460
497
  msgid "Select one"
498
  msgstr "Elejir uno"
499
 
500
- #: includes/wjecf-pro-free-products.php:461
501
  msgid "Check this box if the customer must choose from the free products."
502
  msgstr ""
503
  "Marque esta casilla si el cliente tiene que escojer uno de los productos "
504
  "gratuitos."
505
 
506
- #: includes/wjecf-pro-free-products.php:469
507
  msgid "'Select your gift'-message"
508
  msgstr "Mensaje 'Elije tu regalo'"
509
 
510
- #: includes/wjecf-pro-free-products.php:470
511
  msgid "Please choose your free gift:"
512
  msgstr "Elije tu regalo:"
513
 
514
- #: includes/wjecf-pro-free-products.php:471
515
  msgid "This message is displayed when the customer must choose a free product."
516
  msgstr ""
517
 
518
- #: includes/wjecf-pro-free-products.php:480
519
  msgid "Allow multiplication of the free products"
520
  msgstr "Multiplicar los productos gratuitos"
521
 
522
- #: includes/wjecf-pro-free-products.php:481
523
  msgid ""
524
  "The amount of free products is multiplied every time the minimum spend, "
525
  "subtotal or quantity is reached."
526
  msgstr ""
527
 
528
- #: includes/wjecf-pro-free-products.php:488
529
  msgid "BOGO matching products"
530
  msgstr "1+1 gratis para los productos conformes"
531
 
532
- #: includes/wjecf-pro-free-products.php:490
533
  msgid ""
534
  "Buy one or more of any of the matching products (see 'Usage Restriction'-"
535
  "tab) and get one free. Check 'Allow multiplication' to get one free item for "
@@ -539,12 +554,73 @@ msgstr ""
539
  "gratis. Marque la casilla 'multiplicar los productos gratuitos' para "
540
  "multiplicar con la cantidad de productos conformes en el carritos de compras."
541
 
542
- #: woocommerce-jos-autocoupon-pro.php:34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  msgid ""
544
  "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
545
  "not be detected."
546
  msgstr ""
547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  #~ msgid "Extended Coupon Features"
549
  #~ msgstr "Opciones extendidas para el cupón"
550
 
2
  # This file is distributed under the same license as the WooCommerce auto added coupons package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Extended Coupon Features\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-"
7
  "added-coupons\n"
8
+ "POT-Creation-Date: 2016-09-21 22:56+0200\n"
9
+ "PO-Revision-Date: 2016-09-21 23:00+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.8\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: docs\n"
21
 
22
+ #: includes/admin/wjecf-admin-auto-upgrade.php:40
23
  msgid ""
24
  "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
25
  "using an older version of this plugin, while the data was upgraded to a "
26
  "newer version."
27
  msgstr ""
28
 
29
+ #: includes/admin/wjecf-admin-auto-upgrade.php:48
30
  msgid ""
31
  "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
32
  "upgraded to the newest version."
33
  msgstr ""
34
 
35
+ #: includes/admin/wjecf-admin.php:20
36
  msgid ""
37
+ "<strong>WooCommerce Extended Coupon Features:</strong> You are using an old "
38
+ "version of WooCommerce. Updating of WooCommerce is recommended as using an "
39
+ "outdated version might cause unexpected behaviour in combination with modern "
40
+ "plugins."
41
  msgstr ""
42
 
43
+ #: includes/admin/wjecf-admin.php:115
44
+ msgid "(AND)"
45
+ msgstr "(TODOS)"
46
+
47
+ #: includes/admin/wjecf-admin.php:116
48
+ msgid "(OR)"
49
+ msgstr "(UNO)"
50
+
51
+ #: includes/admin/wjecf-admin.php:126
52
  msgid "Products"
53
  msgstr "Productos"
54
 
55
+ #: includes/admin/wjecf-admin.php:132 includes/admin/wjecf-admin.php:276
56
  msgid "Checkout"
57
  msgstr "Tramitar"
58
 
59
+ #: includes/admin/wjecf-admin.php:138 includes/admin/wjecf-admin.php:386
60
  msgid "Miscellaneous"
61
  msgstr "Diversos"
62
 
63
+ #: includes/admin/wjecf-admin.php:181
64
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
65
  msgstr "Le gusta WooCommerce Extended Coupon Features?"
66
 
67
+ #: includes/admin/wjecf-admin.php:183
68
  msgid "Express your gratitude"
69
  msgstr "Exprese su gratitud"
70
 
71
+ #: includes/admin/wjecf-admin.php:187
72
  msgid "Donate to the developer"
73
  msgstr "Hacer una donación"
74
 
75
+ #: includes/admin/wjecf-admin.php:194
76
  msgid "Documentation"
77
  msgstr "Documentación"
78
 
79
+ #: includes/admin/wjecf-admin.php:196
80
  msgid "WooCommerce Extended Coupon Features Documentation"
81
  msgstr "Documentación de WooCommerce Extended Coupon Features"
82
 
83
+ #: includes/admin/wjecf-admin.php:204
84
  msgid "Matching products"
85
  msgstr "Productos conformes"
86
 
87
+ #: includes/admin/wjecf-admin.php:209
88
+ msgid "Products Operator"
 
 
 
 
 
 
89
  msgstr ""
 
 
90
 
91
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
92
+ #: includes/wjecf-pro-product-filter.php:222
93
+ msgid "OR"
94
+ msgstr "UNO"
95
 
96
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
97
+ #: includes/wjecf-pro-product-filter.php:222
98
+ msgid "AND"
99
+ msgstr "TODOS"
100
+
101
+ #: includes/admin/wjecf-admin.php:214
102
  msgid ""
103
+ "Use AND if ALL of the products must be in the cart to use this coupon "
104
+ "(instead of only one of the products)."
 
105
  msgstr ""
 
 
 
106
 
107
+ #: includes/admin/wjecf-admin.php:222
108
+ msgid "Categories Operator"
109
+ msgstr ""
110
 
111
+ #: includes/admin/wjecf-admin.php:227
112
+ msgid ""
113
+ "Use AND if products from ALL of the categories must be in the cart to use "
114
+ "this coupon (instead of only one from one of the categories)."
115
+ msgstr ""
116
 
117
+ #: includes/admin/wjecf-admin.php:236
118
  msgid "Minimum quantity of matching products"
119
  msgstr "Cantidad mínima de productos conformes."
120
 
121
+ #: includes/admin/wjecf-admin.php:237 includes/admin/wjecf-admin.php:257
122
  msgid "No minimum"
123
  msgstr "Sin mínimo"
124
 
125
+ #: includes/admin/wjecf-admin.php:238
126
  msgid ""
127
  "Minimum quantity of the products that match the given product or category "
128
  "restrictions (see tab 'usage restriction'). If no product or category "
129
  "restrictions are specified, the total number of products is used."
130
  msgstr "Cantidad mínima de productos conformes (vea 'Restricción de uso')."
131
 
132
+ #: includes/admin/wjecf-admin.php:246
133
  msgid "Maximum quantity of matching products"
134
  msgstr "Cantidad máxima de productos conformes."
135
 
136
+ #: includes/admin/wjecf-admin.php:247 includes/admin/wjecf-admin.php:267
137
  msgid "No maximum"
138
  msgstr "Sin máximo"
139
 
140
+ #: includes/admin/wjecf-admin.php:248
141
  msgid ""
142
  "Maximum quantity of the products that match the given product or category "
143
  "restrictions (see tab 'usage restriction'). If no product or category "
144
  "restrictions are specified, the total number of products is used."
145
  msgstr "Cantidad máxima de productos conformes (vea 'Restricción de uso')."
146
 
147
+ #: includes/admin/wjecf-admin.php:256
148
  msgid "Minimum subtotal of matching products"
149
  msgstr "Subtotal mínimo de productos conformes."
150
 
151
+ #: includes/admin/wjecf-admin.php:258
152
  msgid ""
153
  "Minimum price subtotal of the products that match the given product or "
154
  "category restrictions (see tab 'usage restriction')."
155
  msgstr "Subtotal mínimo de productos conformes (vea 'Restricción de uso')."
156
 
157
+ #: includes/admin/wjecf-admin.php:266
158
  msgid "Maximum subtotal of matching products"
159
  msgstr "Subtotal máximo de productos conformes."
160
 
161
+ #: includes/admin/wjecf-admin.php:268
162
  msgid ""
163
  "Maximum price subtotal of the products that match the given product or "
164
  "category restrictions (see tab 'usage restriction')."
165
  msgstr "Subtotal máximo de productos conformes (vea 'Restricción de uso')."
166
 
167
+ #: includes/admin/wjecf-admin.php:281
168
  msgid "Shipping methods"
169
  msgstr "Métodos de envío"
170
 
171
+ #: includes/admin/wjecf-admin.php:282
172
  msgid "Any shipping method"
173
  msgstr "Métodos de envío"
174
 
175
+ #: includes/admin/wjecf-admin.php:291
176
  msgid ""
177
  "One of these shipping methods must be selected in order for this coupon to "
178
  "be valid."
179
  msgstr ""
180
  "Uno de estos métodos de pago tiene que ser seleccionado para usar este cupón."
181
 
182
+ #: includes/admin/wjecf-admin.php:297
183
  msgid "Payment methods"
184
  msgstr "Métodos de pago"
185
 
186
+ #: includes/admin/wjecf-admin.php:298
187
  msgid "Any payment method"
188
  msgstr "Métodos de pago"
189
 
190
+ #: includes/admin/wjecf-admin.php:309
191
  msgid ""
192
  "One of these payment methods must be selected in order for this coupon to be "
193
  "valid."
195
  "Uno de estos métodos de envío tiene que ser seleccionado para usar este "
196
  "cupón."
197
 
198
+ #: includes/admin/wjecf-admin.php:317
199
  msgid "Customer restrictions"
200
  msgstr "Restricción de clientes"
201
 
202
+ #: includes/admin/wjecf-admin.php:318
203
  msgid ""
204
  "If both a customer and a role restriction are supplied, matching either one "
205
  "of them will suffice."
207
  "Si se ha introducido tanto una restricción de cliente como una restricción "
208
  "de perfil, sí coincide uno de ellos será suficiente."
209
 
210
+ #: includes/admin/wjecf-admin.php:323
211
  msgid "Allowed Customers"
212
  msgstr "Clientes"
213
 
214
+ #: includes/admin/wjecf-admin.php:324
215
  msgid "Any customer"
216
  msgstr "Clientes"
217
 
218
+ #: includes/admin/wjecf-admin.php:337
219
  msgid "Only these customers may use this coupon."
220
  msgstr "Solo estos clientes pueden usar este cupón."
221
 
222
+ #: includes/admin/wjecf-admin.php:344
223
  msgid "Allowed User Roles"
224
  msgstr "Perfiles del cliente"
225
 
226
+ #: includes/admin/wjecf-admin.php:345 includes/admin/wjecf-admin.php:367
227
  msgid "Any role"
228
  msgstr "Perfiles del cliente"
229
 
230
+ #: includes/admin/wjecf-admin.php:359
231
  msgid "Only these User Roles may use this coupon."
232
  msgstr "Solo clientes con este perfil pueden usar este cupón."
233
 
234
+ #: includes/admin/wjecf-admin.php:366
235
  msgid "Disallowed User Roles"
236
  msgstr "Perfiles del cliente excluidos"
237
 
238
+ #: includes/admin/wjecf-admin.php:380
239
  msgid "These User Roles will be specifically excluded from using this coupon."
240
  msgstr "Clientes con este perfil no pueden usar este cupón."
241
 
242
+ #: includes/admin/wjecf-admin.php:391
243
  msgid "Allow when minimum spend not reached"
244
  msgstr ""
245
 
246
+ #: includes/admin/wjecf-admin.php:392 includes/wjecf-pro-free-products.php:597
247
+ #: includes/wjecf-pro-free-products.php:605
248
  msgid "EXPERIMENTAL: "
249
  msgstr "EXPERIMENTAL:"
250
 
251
+ #: includes/admin/wjecf-admin.php:392
252
  msgid ""
253
  "Check this box to allow the coupon to be in the cart even when minimum spend "
254
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
255
  "0 until minimum spend is reached."
256
  msgstr ""
257
 
258
+ #: includes/admin/wjecf-admin.php:482
259
+ #, php-format
260
+ msgid "%s (Default)"
261
+ msgstr "%s (predeterminado)"
262
+
263
+ #: includes/admin/wjecf-admin.php:496 includes/admin/wjecf-admin.php:521
264
  msgid "Search for a product…"
265
  msgstr "Buscar producto..."
266
 
319
  msgid "Don't display a message when this coupon is automatically applied."
320
  msgstr "No mostrar mensaje cuando el cupon esté aplicado automaticamente."
321
 
322
+ #: includes/wjecf-autocoupon.php:287
 
 
 
 
 
 
323
  msgid "Free shipping coupon"
324
  msgstr "Cupón para envío gratis"
325
 
326
+ #: includes/wjecf-autocoupon.php:364
327
  #, php-format
328
  msgid "Discount applied: %s"
329
  msgstr "Descuento aplicado: %s"
330
 
331
+ #: includes/wjecf-controller.php:191
332
  #, php-format
333
  msgid "The minimum subtotal of the matching products for this coupon is %s."
334
  msgstr "El subtotal mínimo de los productos conformes para este cupón es %s."
335
 
336
+ #: includes/wjecf-controller.php:195
337
  #, php-format
338
  msgid "The maximum subtotal of the matching products for this coupon is %s."
339
  msgstr "El subtotal máximo de los productos conformes para este cupón es %s."
340
 
341
+ #: includes/wjecf-controller.php:199
342
  #, php-format
343
  msgid "The minimum quantity of matching products for this coupon is %s."
344
  msgstr "La cantidad mínima de productos conformes para este cupón es %s."
345
 
346
+ #: includes/wjecf-controller.php:203
347
  #, php-format
348
  msgid "The maximum quantity of matching products for this coupon is %s."
349
  msgstr "La cantidad máxima de productos conformes para este cupón es %s."
350
 
351
+ #: includes/wjecf-controller.php:206
352
  msgid "The coupon is not valid for the currently selected shipping method."
353
  msgstr "El cupón no es válido para este método de envío."
354
 
355
+ #: includes/wjecf-controller.php:209
356
  msgid "The coupon is not valid for the currently selected payment method."
357
  msgstr "El cupón no es válido para este método de pago."
358
 
359
+ #: includes/wjecf-controller.php:212
360
  #, php-format
361
  msgid "Sorry, it seems the coupon \"%s\" is not yours."
362
  msgstr "Lo sentimos, parece que el cupón \"%s\" no es tuyo."
363
 
364
  #: includes/wjecf-pro-controller.php:59
365
  msgid "Discount on cart with excluded products"
366
+ msgstr "Descuento en carrito con productos excluidos"
367
 
368
  #: includes/wjecf-pro-controller.php:65
369
  msgid "Allow discount on cart with excluded items"
370
+ msgstr "Permitir descuento en carrito con productos excluidos"
371
 
372
  #: includes/wjecf-pro-controller.php:66
373
  msgid ""
387
 
388
  #: includes/wjecf-pro-controller.php:85
389
  msgid "(default)"
390
+ msgstr "(por defecto)"
391
 
392
  #: includes/wjecf-pro-controller.php:86
393
  msgid "One item per order line"
394
+ msgstr "Un producto por linea"
395
 
396
  #: includes/wjecf-pro-controller.php:87
397
  msgid "Lowest priced product (single item)"
398
+ msgstr "Producto con el menor precio (un producto)"
399
 
400
  #: includes/wjecf-pro-controller.php:88
401
  msgid "Lowest priced order line (all items)"
402
+ msgstr "Linea con el menor precio (todos los productos)"
403
 
404
  #: includes/wjecf-pro-controller.php:90
405
  msgid ""
407
  "tab), the discount will only be applied to <em>matching</em> products."
408
  msgstr ""
409
 
410
+ #: includes/wjecf-pro-coupon-queueing.php:57
411
+ #, php-format
412
+ msgid "Coupon '%s' will be applied when it's conditions are met."
413
+ msgstr ""
414
+ "Cupón '%s' se aplicará automaticamente cuando cumpla con los requisitos."
415
+
416
+ #: includes/wjecf-pro-coupon-queueing.php:90
417
+ #, php-format
418
+ msgid "Coupon '%s' applied."
419
+ msgstr "Cupon '%s' aplicado."
420
+
421
  #: includes/wjecf-pro-evalmath.php:735
422
  msgid "an unexpected error occured"
423
  msgstr ""
488
  "given, {$a->expected} expected)"
489
  msgstr ""
490
 
491
+ #: includes/wjecf-pro-free-products.php:196
492
  msgid "Please select your free gift."
493
  msgstr "Elije tu regalo."
494
 
495
+ #: includes/wjecf-pro-free-products.php:460
496
+ #: includes/wjecf-pro-free-products.php:470
497
  msgid "Free!"
498
  msgstr "Gratis!"
499
 
500
+ #: includes/wjecf-pro-free-products.php:535
501
+ #: includes/wjecf-pro-free-products.php:558
502
+ #: includes/wjecf-pro-free-products.php:564
503
  msgid "Free products"
504
  msgstr "Productos gratis"
505
 
506
+ #: includes/wjecf-pro-free-products.php:569
507
  msgid ""
508
  "Free products that will be added to the cart when this coupon is applied."
509
  msgstr "Productos gratuitos que serán aumentado al carrito."
510
 
511
+ #: includes/wjecf-pro-free-products.php:576
512
  msgid "Select one"
513
  msgstr "Elejir uno"
514
 
515
+ #: includes/wjecf-pro-free-products.php:577
516
  msgid "Check this box if the customer must choose from the free products."
517
  msgstr ""
518
  "Marque esta casilla si el cliente tiene que escojer uno de los productos "
519
  "gratuitos."
520
 
521
+ #: includes/wjecf-pro-free-products.php:585
522
  msgid "'Select your gift'-message"
523
  msgstr "Mensaje 'Elije tu regalo'"
524
 
525
+ #: includes/wjecf-pro-free-products.php:586
526
  msgid "Please choose your free gift:"
527
  msgstr "Elije tu regalo:"
528
 
529
+ #: includes/wjecf-pro-free-products.php:587
530
  msgid "This message is displayed when the customer must choose a free product."
531
  msgstr ""
532
 
533
+ #: includes/wjecf-pro-free-products.php:596
534
  msgid "Allow multiplication of the free products"
535
  msgstr "Multiplicar los productos gratuitos"
536
 
537
+ #: includes/wjecf-pro-free-products.php:597
538
  msgid ""
539
  "The amount of free products is multiplied every time the minimum spend, "
540
  "subtotal or quantity is reached."
541
  msgstr ""
542
 
543
+ #: includes/wjecf-pro-free-products.php:604
544
  msgid "BOGO matching products"
545
  msgstr "1+1 gratis para los productos conformes"
546
 
547
+ #: includes/wjecf-pro-free-products.php:606
548
  msgid ""
549
  "Buy one or more of any of the matching products (see 'Usage Restriction'-"
550
  "tab) and get one free. Check 'Allow multiplication' to get one free item for "
554
  "gratis. Marque la casilla 'multiplicar los productos gratuitos' para "
555
  "multiplicar con la cantidad de productos conformes en el carritos de compras."
556
 
557
+ #: includes/wjecf-pro-product-filter.php:221
558
+ msgid "Custom Fields Operator"
559
+ msgstr ""
560
+
561
+ #: includes/wjecf-pro-product-filter.php:225
562
+ msgid ""
563
+ "Use AND if all of the custom fields must be in the cart to use this coupon "
564
+ "(instead of only one of the custom fields)."
565
+ msgstr ""
566
+
567
+ #: includes/wjecf-pro-product-filter.php:231
568
+ msgid "Custom Fields"
569
+ msgstr ""
570
+
571
+ #: includes/wjecf-pro-product-filter.php:237
572
+ msgid "Name"
573
+ msgstr "Nombre"
574
+
575
+ #: includes/wjecf-pro-product-filter.php:238
576
+ msgid "Value"
577
+ msgstr "Valor"
578
+
579
+ #: includes/wjecf-pro-product-filter.php:241
580
+ msgid ""
581
+ "If multiple lines are entered, only one of them needs to match. A whole word "
582
+ "case insensitive match is executed by default and % can be used as wildcard. "
583
+ "If a line starts with a forward slash (/) it is treated as a regular "
584
+ "expression. NOTE: Regular expression matches are case sensitive by default; "
585
+ "append flag i to the regular expression for a case insensitive match. \n"
586
+ "Examples:\n"
587
+ "'roc%' matches 'Rock' and also 'Rock the house', but not 'Bedrock'\n"
588
+ "'/^rock$/i' matches 'Rock' but not 'Rock the house'"
589
+ msgstr ""
590
+
591
+ #: includes/wjecf-pro-product-filter.php:264
592
+ msgid "&mdash; Select &mdash;"
593
+ msgstr "&mdash; Escoge &mdash;"
594
+
595
+ #: woocommerce-jos-autocoupon-pro.php:43
596
  msgid ""
597
  "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
598
  "not be detected."
599
  msgstr ""
600
 
601
+ #~ msgid "AND Products (not OR)"
602
+ #~ msgstr "TODOS los productos"
603
+
604
+ #~ msgid ""
605
+ #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
606
+ #~ "be in the cart to use this coupon (instead of only one of the products)."
607
+ #~ msgstr ""
608
+ #~ "Marque esta casilla si TODOS los productos (vea 'Restricción de uso') "
609
+ #~ "necesitan estar en el carrito de compras (en lugar de uno de los "
610
+ #~ "productos)."
611
+
612
+ #~ msgid "AND Categories (not OR)"
613
+ #~ msgstr "TODAS las categorias"
614
+
615
+ #~ msgid ""
616
+ #~ "Check this box if products from ALL of the categories (see tab 'usage "
617
+ #~ "restriction') must be in the cart to use this coupon (instead of only one "
618
+ #~ "from one of the categories)."
619
+ #~ msgstr ""
620
+ #~ "Marque esta casilla si productos de TODAS las categorias (vea "
621
+ #~ "'Restricción de uso') necesitan estar en el carrito de compras (en lugar "
622
+ #~ "de un producto de uno de los productos)."
623
+
624
  #~ msgid "Extended Coupon Features"
625
  #~ msgstr "Opciones extendidas para el cupón"
626
 
languages/woocommerce-jos-autocoupon-fa_IR.po CHANGED
@@ -1,419 +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
- "نمی تواند آن را شناسایی کند."
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-nb_NO.po CHANGED
@@ -1,177 +1,177 @@
1
- # Copyright (C) 2015 WooCommerce auto added coupons
2
- # This file is distributed under the same license as the WooCommerce auto added coupons package.
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-15 15:09+0100\n"
8
- "PO-Revision-Date: 2015-08-15 15:09+0100\n"
9
- "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
10
- "Language-Team: \n"
11
- "Language: nb\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
- "Plural-Forms: nplurals=2; plural=(n != 1);\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"
20
-
21
- #: includes/wjecf-autocoupon.php:49 includes/wjecf-autocoupon.php:56
22
- msgid "Auto coupon"
23
- msgstr "Automatisk rabattkupong"
24
-
25
- #: includes/wjecf-autocoupon.php:57
26
- msgid ""
27
- "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
28
- "description when you check this box, the description will be shown in the customer's cart if "
29
- "the coupon is applied."
30
- msgstr ""
31
- "Legg rabattkupong automatisk til handlekurven om kravene er oppfylt. Vennligst skriv inn en "
32
- "beskrivelse når du velger denne boksen. Beskrivelsen vil bli vist i handlekurven om "
33
- "rabattkupongen blir lagt til."
34
-
35
- #: includes/wjecf-autocoupon.php:64
36
- msgid "Apply silently"
37
- msgstr ""
38
-
39
- #: includes/wjecf-autocoupon.php:65
40
- msgid "Don't display a message when this coupon is automatically applied."
41
- msgstr ""
42
-
43
- #: includes/wjecf-autocoupon.php:144
44
- msgid "Free shipping coupon"
45
- msgstr "Gratis frakt kupong"
46
-
47
- #: includes/wjecf-autocoupon.php:285
48
- #, php-format
49
- msgid "Discount applied: %s"
50
- msgstr "Rabatt: %s"
51
-
52
- #: includes/wjecf-coupon-extensions.php:82
53
- msgid "Extended Coupon Features"
54
- msgstr "Utvidet kupong funksjoner"
55
-
56
- #: includes/wjecf-coupon-extensions.php:85
57
- msgid "Donate to the developer"
58
- msgstr "Donèr til utvikleren"
59
-
60
- #: includes/wjecf-coupon-extensions.php:100
61
- msgid "Extended features"
62
- msgstr ""
63
-
64
- #: includes/wjecf-coupon-extensions.php:119
65
- msgid "AND Products (not OR)"
66
- msgstr ""
67
-
68
- #: includes/wjecf-coupon-extensions.php:120
69
- msgid ""
70
- "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
71
- "use this coupon (in stead of only one of the products)."
72
- msgstr ""
73
-
74
- #: includes/wjecf-coupon-extensions.php:126
75
- msgid "Minimum quantity of matching products"
76
- msgstr ""
77
-
78
- #: includes/wjecf-coupon-extensions.php:127
79
- msgid "No minimum"
80
- msgstr ""
81
-
82
- #: includes/wjecf-coupon-extensions.php:128
83
- msgid ""
84
- "Minimum quantity of the products that match the given product or category restrictions (see "
85
- "tab 'usage restriction'). If no product or category restrictions are specified, the total "
86
- "number of products is used."
87
- msgstr ""
88
-
89
- #: includes/wjecf-coupon-extensions.php:136
90
- msgid "Maximum quantity of matching products"
91
- msgstr ""
92
-
93
- #: includes/wjecf-coupon-extensions.php:137
94
- msgid "No maximum"
95
- msgstr ""
96
-
97
- #: includes/wjecf-coupon-extensions.php:138
98
- msgid ""
99
- "Maximum 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
-
104
- #: includes/wjecf-coupon-extensions.php:145
105
- msgid "(AND)"
106
- msgstr ""
107
-
108
- #: includes/wjecf-coupon-extensions.php:146
109
- msgid "(OR)"
110
- msgstr ""
111
-
112
- #: includes/wjecf-coupon-extensions.php:166
113
- msgid "Shipping methods"
114
- msgstr "Fraktmetoder"
115
-
116
- #: includes/wjecf-coupon-extensions.php:167
117
- msgid "Any shipping method"
118
- msgstr "Alle metoder"
119
-
120
- #: includes/wjecf-coupon-extensions.php:176
121
- msgid "One of these shipping methods must be selected in order for this coupon to be valid."
122
- msgstr "En av disse faktmetodene må være valgt for at denne kupongen skal være gyldig."
123
-
124
- #: includes/wjecf-coupon-extensions.php:182
125
- msgid "Payment methods"
126
- msgstr "Betalingsmåter"
127
-
128
- #: includes/wjecf-coupon-extensions.php:183
129
- #, fuzzy
130
- msgid "Any payment method"
131
- msgstr "Betalingsmåter"
132
-
133
- #: includes/wjecf-coupon-extensions.php:194
134
- msgid "One of these payment methods must be selected in order for this coupon to be valid."
135
- msgstr "En av disse betalingsmetodene må være valgt for at denne kupongen skal være valgt."
136
-
137
- #: includes/wjecf-coupon-extensions.php:200
138
- msgid "Customer restrictions"
139
- msgstr ""
140
-
141
- #: includes/wjecf-coupon-extensions.php:201
142
- msgid ""
143
- "If both a customer and a role restriction are supplied, matching either one of them will "
144
- "suffice."
145
- msgstr ""
146
-
147
- #: includes/wjecf-coupon-extensions.php:206
148
- msgid "Allowed Customers"
149
- msgstr ""
150
-
151
- #: includes/wjecf-coupon-extensions.php:207
152
- msgid "Any customer"
153
- msgstr ""
154
-
155
- #: includes/wjecf-coupon-extensions.php:220
156
- msgid "Only these customers may use this coupon."
157
- msgstr ""
158
-
159
- #: includes/wjecf-coupon-extensions.php:227
160
- msgid "Allowed User Roles"
161
- msgstr ""
162
-
163
- #: includes/wjecf-coupon-extensions.php:228 includes/wjecf-coupon-extensions.php:250
164
- msgid "Any role"
165
- msgstr ""
166
-
167
- #: includes/wjecf-coupon-extensions.php:242
168
- msgid "Only these User Roles may use this coupon."
169
- msgstr ""
170
-
171
- #: includes/wjecf-coupon-extensions.php:249
172
- msgid "Disallowed User Roles"
173
- msgstr ""
174
-
175
- #: includes/wjecf-coupon-extensions.php:263
176
- msgid "These User Roles will be specifically excluded from using this coupon."
177
- msgstr ""
1
+ # Copyright (C) 2015 WooCommerce auto added coupons
2
+ # This file is distributed under the same license as the WooCommerce auto added coupons package.
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-15 15:09+0100\n"
8
+ "PO-Revision-Date: 2015-08-15 15:09+0100\n"
9
+ "Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
10
+ "Language-Team: \n"
11
+ "Language: nb\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
+ "Plural-Forms: nplurals=2; plural=(n != 1);\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"
20
+
21
+ #: includes/wjecf-autocoupon.php:49 includes/wjecf-autocoupon.php:56
22
+ msgid "Auto coupon"
23
+ msgstr "Automatisk rabattkupong"
24
+
25
+ #: includes/wjecf-autocoupon.php:57
26
+ msgid ""
27
+ "Automatically add the coupon to the cart if the restrictions are met. Please enter a "
28
+ "description when you check this box, the description will be shown in the customer's cart if "
29
+ "the coupon is applied."
30
+ msgstr ""
31
+ "Legg rabattkupong automatisk til handlekurven om kravene er oppfylt. Vennligst skriv inn en "
32
+ "beskrivelse når du velger denne boksen. Beskrivelsen vil bli vist i handlekurven om "
33
+ "rabattkupongen blir lagt til."
34
+
35
+ #: includes/wjecf-autocoupon.php:64
36
+ msgid "Apply silently"
37
+ msgstr ""
38
+
39
+ #: includes/wjecf-autocoupon.php:65
40
+ msgid "Don't display a message when this coupon is automatically applied."
41
+ msgstr ""
42
+
43
+ #: includes/wjecf-autocoupon.php:144
44
+ msgid "Free shipping coupon"
45
+ msgstr "Gratis frakt kupong"
46
+
47
+ #: includes/wjecf-autocoupon.php:285
48
+ #, php-format
49
+ msgid "Discount applied: %s"
50
+ msgstr "Rabatt: %s"
51
+
52
+ #: includes/wjecf-coupon-extensions.php:82
53
+ msgid "Extended Coupon Features"
54
+ msgstr "Utvidet kupong funksjoner"
55
+
56
+ #: includes/wjecf-coupon-extensions.php:85
57
+ msgid "Donate to the developer"
58
+ msgstr "Donèr til utvikleren"
59
+
60
+ #: includes/wjecf-coupon-extensions.php:100
61
+ msgid "Extended features"
62
+ msgstr ""
63
+
64
+ #: includes/wjecf-coupon-extensions.php:119
65
+ msgid "AND Products (not OR)"
66
+ msgstr ""
67
+
68
+ #: includes/wjecf-coupon-extensions.php:120
69
+ msgid ""
70
+ "Check this box if ALL of the products (see tab 'usage restriction') must be in the cart to "
71
+ "use this coupon (in stead of only one of the products)."
72
+ msgstr ""
73
+
74
+ #: includes/wjecf-coupon-extensions.php:126
75
+ msgid "Minimum quantity of matching products"
76
+ msgstr ""
77
+
78
+ #: includes/wjecf-coupon-extensions.php:127
79
+ msgid "No minimum"
80
+ msgstr ""
81
+
82
+ #: includes/wjecf-coupon-extensions.php:128
83
+ msgid ""
84
+ "Minimum quantity of the products that match the given product or category restrictions (see "
85
+ "tab 'usage restriction'). If no product or category restrictions are specified, the total "
86
+ "number of products is used."
87
+ msgstr ""
88
+
89
+ #: includes/wjecf-coupon-extensions.php:136
90
+ msgid "Maximum quantity of matching products"
91
+ msgstr ""
92
+
93
+ #: includes/wjecf-coupon-extensions.php:137
94
+ msgid "No maximum"
95
+ msgstr ""
96
+
97
+ #: includes/wjecf-coupon-extensions.php:138
98
+ msgid ""
99
+ "Maximum 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
+
104
+ #: includes/wjecf-coupon-extensions.php:145
105
+ msgid "(AND)"
106
+ msgstr ""
107
+
108
+ #: includes/wjecf-coupon-extensions.php:146
109
+ msgid "(OR)"
110
+ msgstr ""
111
+
112
+ #: includes/wjecf-coupon-extensions.php:166
113
+ msgid "Shipping methods"
114
+ msgstr "Fraktmetoder"
115
+
116
+ #: includes/wjecf-coupon-extensions.php:167
117
+ msgid "Any shipping method"
118
+ msgstr "Alle metoder"
119
+
120
+ #: includes/wjecf-coupon-extensions.php:176
121
+ msgid "One of these shipping methods must be selected in order for this coupon to be valid."
122
+ msgstr "En av disse faktmetodene må være valgt for at denne kupongen skal være gyldig."
123
+
124
+ #: includes/wjecf-coupon-extensions.php:182
125
+ msgid "Payment methods"
126
+ msgstr "Betalingsmåter"
127
+
128
+ #: includes/wjecf-coupon-extensions.php:183
129
+ #, fuzzy
130
+ msgid "Any payment method"
131
+ msgstr "Betalingsmåter"
132
+
133
+ #: includes/wjecf-coupon-extensions.php:194
134
+ msgid "One of these payment methods must be selected in order for this coupon to be valid."
135
+ msgstr "En av disse betalingsmetodene må være valgt for at denne kupongen skal være valgt."
136
+
137
+ #: includes/wjecf-coupon-extensions.php:200
138
+ msgid "Customer restrictions"
139
+ msgstr ""
140
+
141
+ #: includes/wjecf-coupon-extensions.php:201
142
+ msgid ""
143
+ "If both a customer and a role restriction are supplied, matching either one of them will "
144
+ "suffice."
145
+ msgstr ""
146
+
147
+ #: includes/wjecf-coupon-extensions.php:206
148
+ msgid "Allowed Customers"
149
+ msgstr ""
150
+
151
+ #: includes/wjecf-coupon-extensions.php:207
152
+ msgid "Any customer"
153
+ msgstr ""
154
+
155
+ #: includes/wjecf-coupon-extensions.php:220
156
+ msgid "Only these customers may use this coupon."
157
+ msgstr ""
158
+
159
+ #: includes/wjecf-coupon-extensions.php:227
160
+ msgid "Allowed User Roles"
161
+ msgstr ""
162
+
163
+ #: includes/wjecf-coupon-extensions.php:228 includes/wjecf-coupon-extensions.php:250
164
+ msgid "Any role"
165
+ msgstr ""
166
+
167
+ #: includes/wjecf-coupon-extensions.php:242
168
+ msgid "Only these User Roles may use this coupon."
169
+ msgstr ""
170
+
171
+ #: includes/wjecf-coupon-extensions.php:249
172
+ msgid "Disallowed User Roles"
173
+ msgstr ""
174
+
175
+ #: includes/wjecf-coupon-extensions.php:263
176
+ msgid "These User Roles will be specifically excluded from using this coupon."
177
+ msgstr ""
languages/woocommerce-jos-autocoupon-nl_NL.mo CHANGED
Binary file
languages/woocommerce-jos-autocoupon-nl_NL.po CHANGED
@@ -2,23 +2,24 @@
2
  # This file is distributed under the same license as the WooCommerce auto added coupons package.
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-05-14 13:02+0200\n"
9
- "PO-Revision-Date: 2016-05-14 13:07+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"
 
20
 
21
- #: includes/admin/wjecf-admin-auto-upgrade.php:36
22
  msgid ""
23
  "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
24
  "using an older version of this plugin, while the data was upgraded to a "
@@ -28,7 +29,7 @@ msgstr ""
28
  "oudere versie van deze plugin, terwijl de data is opgewaardeerd naar een "
29
  "nieuwere versie."
30
 
31
- #: includes/admin/wjecf-admin-auto-upgrade.php:44
32
  msgid ""
33
  "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
34
  "upgraded to the newest version."
@@ -36,96 +37,106 @@ msgstr ""
36
  "<strong>WooCommerce Extended Coupon Features:</strong> Gegevens "
37
  "opgewaardeerd naar de nieuwste versie."
38
 
39
- #: includes/admin/wjecf-admin.php:19
40
  msgid ""
41
- "<strong>WooCommerce Extended Coupon Features:</strong> You are using a "
42
- "WooCommerce version prior to 2.3.0. Updating of WooCommerce is recommended "
43
- "as using an outdated version might cause unexpected behaviour in combination "
44
- "with modern plugins."
45
  msgstr ""
46
  "<strong>WooCommerce Extended Coupon Features:</strong> Je gebruikt een "
47
- "WooCommerce versie ouder dan 2.3.0. Updaten van WooCommerce wordt aangeraden."
 
 
48
 
49
- #: includes/admin/wjecf-admin.php:68
 
 
 
 
 
 
 
 
50
  msgid "Products"
51
  msgstr "Producten"
52
 
53
- #: includes/admin/wjecf-admin.php:74 includes/admin/wjecf-admin.php:235
54
  msgid "Checkout"
55
  msgstr "Afrekenen"
56
 
57
- #: includes/admin/wjecf-admin.php:80 includes/admin/wjecf-admin.php:345
58
  msgid "Miscellaneous"
59
  msgstr "Diversen"
60
 
61
- #: includes/admin/wjecf-admin.php:123
62
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
63
  msgstr "Vindt u WooCommerce Extended Coupon Features handig?"
64
 
65
- #: includes/admin/wjecf-admin.php:125
66
  msgid "Express your gratitude"
67
  msgstr "Toon uw waardering"
68
 
69
- #: includes/admin/wjecf-admin.php:129
70
  msgid "Donate to the developer"
71
  msgstr "Doneer aan de ontwikkelaar"
72
 
73
- #: includes/admin/wjecf-admin.php:136
74
  msgid "Documentation"
75
  msgstr "Documentatie"
76
 
77
- #: includes/admin/wjecf-admin.php:138
78
  msgid "WooCommerce Extended Coupon Features Documentation"
79
  msgstr "WooCommerce Extended Coupon Features Documentatie"
80
 
81
- #: includes/admin/wjecf-admin.php:146
82
  msgid "Matching products"
83
  msgstr "Overeenkomende producten"
84
 
85
- #: includes/admin/wjecf-admin.php:151
86
- msgid "AND Products (not OR)"
87
- msgstr "ALLE Producten (niet OF)"
88
 
89
- #: includes/admin/wjecf-admin.php:152
90
- msgid ""
91
- "Check this box if ALL of the products (see tab 'usage restriction') must be "
92
- "in the cart to use this coupon (instead of only one of the products)."
93
- msgstr ""
94
- "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de "
95
- "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in plaats "
96
- "van één van de producten)."
97
 
98
- #: includes/admin/wjecf-admin.php:159
99
- msgid "AND Categories (not OR)"
100
- msgstr "ALLE Categorieën (niet OF)"
 
101
 
102
- #: includes/admin/wjecf-admin.php:160
103
  msgid ""
104
- "Check this box if products from ALL of the categories (see tab 'usage "
105
- "restriction') must be in the cart to use this coupon (instead of only one "
106
- "from one of the categories)."
107
  msgstr ""
108
- "Aanvinken als producten van ALLE categorieën (zie tab 'gebruiksbeperkingen') "
109
- "in de winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in "
110
- "plaats van een product van één van de categorieën)."
111
 
112
- #: includes/admin/wjecf-admin.php:165
113
- msgid "(AND)"
114
- msgstr "(ALLE)"
115
 
116
- #: includes/admin/wjecf-admin.php:166
117
- msgid "(OR)"
118
- msgstr "(OF)"
 
 
 
 
 
119
 
120
- #: includes/admin/wjecf-admin.php:195
121
  msgid "Minimum quantity of matching products"
122
  msgstr "Minimum aantal overeengekomen producten"
123
 
124
- #: includes/admin/wjecf-admin.php:196 includes/admin/wjecf-admin.php:216
125
  msgid "No minimum"
126
  msgstr "Geen minimum"
127
 
128
- #: includes/admin/wjecf-admin.php:197
129
  msgid ""
130
  "Minimum quantity of the products that match the given product or category "
131
  "restrictions (see tab 'usage restriction'). If no product or category "
@@ -135,15 +146,15 @@ msgstr ""
135
  "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
136
  "opgegeven worden alle producten in de winkelwagen geteld."
137
 
138
- #: includes/admin/wjecf-admin.php:205
139
  msgid "Maximum quantity of matching products"
140
  msgstr "Maximum aantal overeengekomen producten"
141
 
142
- #: includes/admin/wjecf-admin.php:206 includes/admin/wjecf-admin.php:226
143
  msgid "No maximum"
144
  msgstr "Geen maximum"
145
 
146
- #: includes/admin/wjecf-admin.php:207
147
  msgid ""
148
  "Maximum quantity of the products that match the given product or category "
149
  "restrictions (see tab 'usage restriction'). If no product or category "
@@ -153,11 +164,11 @@ msgstr ""
153
  "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
154
  "opgegeven worden alle producten in de winkelwagen geteld."
155
 
156
- #: includes/admin/wjecf-admin.php:215
157
  msgid "Minimum subtotal of matching products"
158
  msgstr "Minimum subtotaal overeengekomen producten"
159
 
160
- #: includes/admin/wjecf-admin.php:217
161
  msgid ""
162
  "Minimum price subtotal of the products that match the given product or "
163
  "category restrictions (see tab 'usage restriction')."
@@ -167,11 +178,11 @@ msgstr ""
167
  "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
168
  "producten in de winkelwagen opgeteld."
169
 
170
- #: includes/admin/wjecf-admin.php:225
171
  msgid "Maximum subtotal of matching products"
172
  msgstr "Maximum subtotaal overeengekomen producten"
173
 
174
- #: includes/admin/wjecf-admin.php:227
175
  msgid ""
176
  "Maximum price subtotal of the products that match the given product or "
177
  "category restrictions (see tab 'usage restriction')."
@@ -181,15 +192,15 @@ msgstr ""
181
  "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
182
  "producten in de winkelwagen opgeteld."
183
 
184
- #: includes/admin/wjecf-admin.php:240
185
  msgid "Shipping methods"
186
  msgstr "Verzendmethoden"
187
 
188
- #: includes/admin/wjecf-admin.php:241
189
  msgid "Any shipping method"
190
  msgstr "Verzendmethoden"
191
 
192
- #: includes/admin/wjecf-admin.php:250
193
  msgid ""
194
  "One of these shipping methods must be selected in order for this coupon to "
195
  "be valid."
@@ -197,15 +208,15 @@ msgstr ""
197
  "Een van deze verzendmethoden moet gekozen zijn om deze kortingsbon te kunnen "
198
  "gebruiken."
199
 
200
- #: includes/admin/wjecf-admin.php:256
201
  msgid "Payment methods"
202
  msgstr "Betaalmethoden"
203
 
204
- #: includes/admin/wjecf-admin.php:257
205
  msgid "Any payment method"
206
  msgstr "Betaalmethoden"
207
 
208
- #: includes/admin/wjecf-admin.php:268
209
  msgid ""
210
  "One of these payment methods must be selected in order for this coupon to be "
211
  "valid."
@@ -213,11 +224,11 @@ msgstr ""
213
  "Een van deze betaalmethoden moet gekozen zijn om deze kortingsbon te kunnen "
214
  "gebruiken."
215
 
216
- #: includes/admin/wjecf-admin.php:276
217
  msgid "Customer restrictions"
218
  msgstr "Klantbeperkingen"
219
 
220
- #: includes/admin/wjecf-admin.php:277
221
  msgid ""
222
  "If both a customer and a role restriction are supplied, matching either one "
223
  "of them will suffice."
@@ -225,48 +236,48 @@ msgstr ""
225
  "Als zowel een klant- als klantrolrestrictie is opgegeven hoeft slechts aan "
226
  "één van de restricties worden voldaan."
227
 
228
- #: includes/admin/wjecf-admin.php:282
229
  msgid "Allowed Customers"
230
  msgstr "Toegestane klanten"
231
 
232
- #: includes/admin/wjecf-admin.php:283
233
  msgid "Any customer"
234
  msgstr "Klanten"
235
 
236
- #: includes/admin/wjecf-admin.php:296
237
  msgid "Only these customers may use this coupon."
238
  msgstr "Alleen deze klanten kunnen deze kortingsbon gebruiken."
239
 
240
- #: includes/admin/wjecf-admin.php:303
241
  msgid "Allowed User Roles"
242
  msgstr "Toegestane klantrollen"
243
 
244
- #: includes/admin/wjecf-admin.php:304 includes/admin/wjecf-admin.php:326
245
  msgid "Any role"
246
  msgstr "Klantrollen"
247
 
248
- #: includes/admin/wjecf-admin.php:318
249
  msgid "Only these User Roles may use this coupon."
250
  msgstr "Alleen deze klantrollen kunnen deze kortingsbon gebruiken."
251
 
252
- #: includes/admin/wjecf-admin.php:325
253
  msgid "Disallowed User Roles"
254
  msgstr "Uitgesloten klantrollen"
255
 
256
- #: includes/admin/wjecf-admin.php:339
257
  msgid "These User Roles will be specifically excluded from using this coupon."
258
  msgstr "Deze klantrollen zijn uitgesloten om deze kortingsbon te gebruiken."
259
 
260
- #: includes/admin/wjecf-admin.php:350
261
  msgid "Allow when minimum spend not reached"
262
  msgstr "Toestaan wanneer minimale besteding nog niet is behaald."
263
 
264
- #: includes/admin/wjecf-admin.php:351 includes/wjecf-pro-free-products.php:481
265
- #: includes/wjecf-pro-free-products.php:489
266
  msgid "EXPERIMENTAL: "
267
  msgstr "EXPERIMENTEEL:"
268
 
269
- #: includes/admin/wjecf-admin.php:351
270
  msgid ""
271
  "Check this box to allow the coupon to be in the cart even when minimum spend "
272
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
@@ -276,7 +287,12 @@ msgstr ""
276
  "besteding nog niet is gehaald. De coupon zal een waarde van 0 hebben tot de "
277
  "minimale besteding is bereikt."
278
 
279
- #: includes/admin/wjecf-admin.php:398 includes/admin/wjecf-admin.php:423
 
 
 
 
 
280
  msgid "Search for a product…"
281
  msgstr "Zoek een product..."
282
 
@@ -337,57 +353,50 @@ msgid "Don't display a message when this coupon is automatically applied."
337
  msgstr ""
338
  "Geen melding weergeven wanneer deze kortingsbon automatisch wordt toegepast."
339
 
340
- #: includes/wjecf-autocoupon.php:240
341
- #, php-format
342
- msgid "Coupon '%s' will be applied when it's conditions are met."
343
- msgstr ""
344
- "Coupon '%s' zal automatisch worden toegepast wanneer aan de voorwaarden "
345
- "wordt voldaan."
346
-
347
- #: includes/wjecf-autocoupon.php:306
348
  msgid "Free shipping coupon"
349
  msgstr "Gratis verzending kortingsbon"
350
 
351
- #: includes/wjecf-autocoupon.php:381 includes/wjecf-autocoupon.php:415
352
  #, php-format
353
  msgid "Discount applied: %s"
354
  msgstr "Korting toegepast: %s"
355
 
356
- #: includes/wjecf-controller.php:169
357
  #, php-format
358
  msgid "The minimum subtotal of the matching products for this coupon is %s."
359
  msgstr ""
360
  "Het minimale subtotaal van overeengekomen producten voor deze kortingsbon is "
361
  "%s."
362
 
363
- #: includes/wjecf-controller.php:173
364
  #, php-format
365
  msgid "The maximum subtotal of the matching products for this coupon is %s."
366
  msgstr ""
367
  "Het maximale subtotaal van overeengekomen producten voor deze kortingsbon is "
368
  "%s."
369
 
370
- #: includes/wjecf-controller.php:177
371
  #, php-format
372
  msgid "The minimum quantity of matching products for this coupon is %s."
373
  msgstr ""
374
  "Het minimale aantal overeengekomen producten voor deze kortingsbon is %s."
375
 
376
- #: includes/wjecf-controller.php:181
377
  #, php-format
378
  msgid "The maximum quantity of matching products for this coupon is %s."
379
  msgstr ""
380
  "Het maximale aantal overeengekomen producten voor deze kortingsbon is %s."
381
 
382
- #: includes/wjecf-controller.php:184
383
  msgid "The coupon is not valid for the currently selected shipping method."
384
  msgstr "De kortingsbon is niet geldig voor de gekozen verzendmethode."
385
 
386
- #: includes/wjecf-controller.php:187
387
  msgid "The coupon is not valid for the currently selected payment method."
388
  msgstr "De kortingsbon is niet geldig voor de gekozen betaalmethode."
389
 
390
- #: includes/wjecf-controller.php:190
391
  #, php-format
392
  msgid "Sorry, it seems the coupon \"%s\" is not yours."
393
  msgstr "Sorry, het lijkt erop dat kortingsbon \"%s\" niet van u is."
@@ -446,9 +455,21 @@ msgstr ""
446
  "is gekozen, de korting alleen zal worden toegepast op overeengekomen "
447
  "producten."
448
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  #: includes/wjecf-pro-evalmath.php:735
450
  msgid "an unexpected error occured"
451
- msgstr ""
452
 
453
  #: includes/wjecf-pro-evalmath.php:736
454
  msgid "cannot assign to constant '{$a}'"
@@ -516,54 +537,54 @@ msgid ""
516
  "given, {$a->expected} expected)"
517
  msgstr ""
518
 
519
- #: includes/wjecf-pro-free-products.php:80
520
  msgid "Please select your free gift."
521
  msgstr "Kies een gratis artikel."
522
 
523
- #: includes/wjecf-pro-free-products.php:344
524
- #: includes/wjecf-pro-free-products.php:354
525
  msgid "Free!"
526
  msgstr "Gratis!"
527
 
528
- #: includes/wjecf-pro-free-products.php:419
529
- #: includes/wjecf-pro-free-products.php:442
530
- #: includes/wjecf-pro-free-products.php:448
531
  msgid "Free products"
532
  msgstr "Gratis producten"
533
 
534
- #: includes/wjecf-pro-free-products.php:453
535
  msgid ""
536
  "Free products that will be added to the cart when this coupon is applied."
537
  msgstr ""
538
  "Gratis producten welke aan de winkelwagen worden toegevoegd als de coupon is "
539
  "toegepast."
540
 
541
- #: includes/wjecf-pro-free-products.php:460
542
  msgid "Select one"
543
  msgstr "Kies één"
544
 
545
- #: includes/wjecf-pro-free-products.php:461
546
  msgid "Check this box if the customer must choose from the free products."
547
  msgstr "Aanvinken als de klant één van de gratis producten moet kiezen."
548
 
549
- #: includes/wjecf-pro-free-products.php:469
550
  msgid "'Select your gift'-message"
551
  msgstr "'Kies uw gratis product'-boodschap"
552
 
553
- #: includes/wjecf-pro-free-products.php:470
554
  msgid "Please choose your free gift:"
555
  msgstr "Kies uw gratis product:"
556
 
557
- #: includes/wjecf-pro-free-products.php:471
558
  msgid "This message is displayed when the customer must choose a free product."
559
  msgstr ""
560
  "Deze melding wordt getoond wanneer de klant een gratis product moet kiezen."
561
 
562
- #: includes/wjecf-pro-free-products.php:480
563
  msgid "Allow multiplication of the free products"
564
  msgstr "Vermenigvuldigen gratis producten toestaan"
565
 
566
- #: includes/wjecf-pro-free-products.php:481
567
  msgid ""
568
  "The amount of free products is multiplied every time the minimum spend, "
569
  "subtotal or quantity is reached."
@@ -571,11 +592,11 @@ msgstr ""
571
  "Het aantal van de gratis producten wordt vermenigvuldigd met het totale "
572
  "aantal keer dat minimale besteding, subtotaal of aantal is bereikt."
573
 
574
- #: includes/wjecf-pro-free-products.php:488
575
  msgid "BOGO matching products"
576
  msgstr "1+1 gratis voor overeengekomen producten"
577
 
578
- #: includes/wjecf-pro-free-products.php:490
579
  msgid ""
580
  "Buy one or more of any of the matching products (see 'Usage Restriction'-"
581
  "tab) and get one free. Check 'Allow multiplication' to get one free item for "
@@ -585,7 +606,57 @@ msgstr ""
585
  "Gebruik 'vermenigvuldigen toestaan' om een gratis artikel voor elk "
586
  "overeenkomend artikel te krijgen."
587
 
588
- #: woocommerce-jos-autocoupon-pro.php:34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
589
  msgid ""
590
  "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
591
  "not be detected."
@@ -593,6 +664,40 @@ msgstr ""
593
  "WooCommerce Extended Coupon Features is uitgeschakeld omdat WooCommerce niet "
594
  "kon worden gedetecteerd."
595
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  #~ msgid ""
597
  #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
598
  #~ "be in the cart to use this coupon (in stead of only one of the products)."
2
  # This file is distributed under the same license as the WooCommerce auto added coupons package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Extended Coupon Features\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/woocommerce-auto-"
7
  "added-coupons\n"
8
+ "POT-Creation-Date: 2016-09-21 23:00+0200\n"
9
+ "PO-Revision-Date: 2016-09-21 23:07+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.8\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: ..\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: docs\n"
21
 
22
+ #: includes/admin/wjecf-admin-auto-upgrade.php:40
23
  msgid ""
24
  "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
25
  "using an older version of this plugin, while the data was upgraded to a "
29
  "oudere versie van deze plugin, terwijl de data is opgewaardeerd naar een "
30
  "nieuwere versie."
31
 
32
+ #: includes/admin/wjecf-admin-auto-upgrade.php:48
33
  msgid ""
34
  "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
35
  "upgraded to the newest version."
37
  "<strong>WooCommerce Extended Coupon Features:</strong> Gegevens "
38
  "opgewaardeerd naar de nieuwste versie."
39
 
40
+ #: includes/admin/wjecf-admin.php:20
41
  msgid ""
42
+ "<strong>WooCommerce Extended Coupon Features:</strong> You are using an old "
43
+ "version of WooCommerce. Updating of WooCommerce is recommended as using an "
44
+ "outdated version might cause unexpected behaviour in combination with modern "
45
+ "plugins."
46
  msgstr ""
47
  "<strong>WooCommerce Extended Coupon Features:</strong> Je gebruikt een "
48
+ "oudere versie van WooCommerce. Het actualiseren van WooCommerce is "
49
+ "aangeraden omdat het gebruik van een oude versie met moderne plugins "
50
+ "onverwachte resultaten met zich mee kan brengen."
51
 
52
+ #: includes/admin/wjecf-admin.php:115
53
+ msgid "(AND)"
54
+ msgstr "(ALLE)"
55
+
56
+ #: includes/admin/wjecf-admin.php:116
57
+ msgid "(OR)"
58
+ msgstr "(OF)"
59
+
60
+ #: includes/admin/wjecf-admin.php:126
61
  msgid "Products"
62
  msgstr "Producten"
63
 
64
+ #: includes/admin/wjecf-admin.php:132 includes/admin/wjecf-admin.php:276
65
  msgid "Checkout"
66
  msgstr "Afrekenen"
67
 
68
+ #: includes/admin/wjecf-admin.php:138 includes/admin/wjecf-admin.php:386
69
  msgid "Miscellaneous"
70
  msgstr "Diversen"
71
 
72
+ #: includes/admin/wjecf-admin.php:181
73
  msgid "Do you find WooCommerce Extended Coupon Features useful?"
74
  msgstr "Vindt u WooCommerce Extended Coupon Features handig?"
75
 
76
+ #: includes/admin/wjecf-admin.php:183
77
  msgid "Express your gratitude"
78
  msgstr "Toon uw waardering"
79
 
80
+ #: includes/admin/wjecf-admin.php:187
81
  msgid "Donate to the developer"
82
  msgstr "Doneer aan de ontwikkelaar"
83
 
84
+ #: includes/admin/wjecf-admin.php:194
85
  msgid "Documentation"
86
  msgstr "Documentatie"
87
 
88
+ #: includes/admin/wjecf-admin.php:196
89
  msgid "WooCommerce Extended Coupon Features Documentation"
90
  msgstr "WooCommerce Extended Coupon Features Documentatie"
91
 
92
+ #: includes/admin/wjecf-admin.php:204
93
  msgid "Matching products"
94
  msgstr "Overeenkomende producten"
95
 
96
+ #: includes/admin/wjecf-admin.php:209
97
+ msgid "Products Operator"
98
+ msgstr "Producten operator"
99
 
100
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
101
+ #: includes/wjecf-pro-product-filter.php:222
102
+ msgid "OR"
103
+ msgstr "OF"
 
 
 
 
104
 
105
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
106
+ #: includes/wjecf-pro-product-filter.php:222
107
+ msgid "AND"
108
+ msgstr "ALLE"
109
 
110
+ #: includes/admin/wjecf-admin.php:214
111
  msgid ""
112
+ "Use AND if ALL of the products must be in the cart to use this coupon "
113
+ "(instead of only one of the products)."
 
114
  msgstr ""
115
+ "Gebruik ALLE als alle producten in het winkelwagentje moeten zitten (in "
116
+ "plaats van één producten)."
 
117
 
118
+ #: includes/admin/wjecf-admin.php:222
119
+ msgid "Categories Operator"
120
+ msgstr "Categorieën Operator"
121
 
122
+ #: includes/admin/wjecf-admin.php:227
123
+ msgid ""
124
+ "Use AND if products from ALL of the categories must be in the cart to use "
125
+ "this coupon (instead of only one from one of the categories)."
126
+ msgstr ""
127
+ "Gebruik ALLE als alle producten uit alle opgegeven categorieën in het "
128
+ "winkelwagentje moeten zitten (in plaats van een product van één van de "
129
+ "categorieën)."
130
 
131
+ #: includes/admin/wjecf-admin.php:236
132
  msgid "Minimum quantity of matching products"
133
  msgstr "Minimum aantal overeengekomen producten"
134
 
135
+ #: includes/admin/wjecf-admin.php:237 includes/admin/wjecf-admin.php:257
136
  msgid "No minimum"
137
  msgstr "Geen minimum"
138
 
139
+ #: includes/admin/wjecf-admin.php:238
140
  msgid ""
141
  "Minimum quantity of the products that match the given product or category "
142
  "restrictions (see tab 'usage restriction'). If no product or category "
146
  "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
147
  "opgegeven worden alle producten in de winkelwagen geteld."
148
 
149
+ #: includes/admin/wjecf-admin.php:246
150
  msgid "Maximum quantity of matching products"
151
  msgstr "Maximum aantal overeengekomen producten"
152
 
153
+ #: includes/admin/wjecf-admin.php:247 includes/admin/wjecf-admin.php:267
154
  msgid "No maximum"
155
  msgstr "Geen maximum"
156
 
157
+ #: includes/admin/wjecf-admin.php:248
158
  msgid ""
159
  "Maximum quantity of the products that match the given product or category "
160
  "restrictions (see tab 'usage restriction'). If no product or category "
164
  "(zie tab 'gebruiksbeperkingen'). Als geen product- of categorierestrictie is "
165
  "opgegeven worden alle producten in de winkelwagen geteld."
166
 
167
+ #: includes/admin/wjecf-admin.php:256
168
  msgid "Minimum subtotal of matching products"
169
  msgstr "Minimum subtotaal overeengekomen producten"
170
 
171
+ #: includes/admin/wjecf-admin.php:258
172
  msgid ""
173
  "Minimum price subtotal of the products that match the given product or "
174
  "category restrictions (see tab 'usage restriction')."
178
  "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
179
  "producten in de winkelwagen opgeteld."
180
 
181
+ #: includes/admin/wjecf-admin.php:266
182
  msgid "Maximum subtotal of matching products"
183
  msgstr "Maximum subtotaal overeengekomen producten"
184
 
185
+ #: includes/admin/wjecf-admin.php:268
186
  msgid ""
187
  "Maximum price subtotal of the products that match the given product or "
188
  "category restrictions (see tab 'usage restriction')."
192
  "product- of categorierestrictie is opgegeven wordt het subtotaal van alle "
193
  "producten in de winkelwagen opgeteld."
194
 
195
+ #: includes/admin/wjecf-admin.php:281
196
  msgid "Shipping methods"
197
  msgstr "Verzendmethoden"
198
 
199
+ #: includes/admin/wjecf-admin.php:282
200
  msgid "Any shipping method"
201
  msgstr "Verzendmethoden"
202
 
203
+ #: includes/admin/wjecf-admin.php:291
204
  msgid ""
205
  "One of these shipping methods must be selected in order for this coupon to "
206
  "be valid."
208
  "Een van deze verzendmethoden moet gekozen zijn om deze kortingsbon te kunnen "
209
  "gebruiken."
210
 
211
+ #: includes/admin/wjecf-admin.php:297
212
  msgid "Payment methods"
213
  msgstr "Betaalmethoden"
214
 
215
+ #: includes/admin/wjecf-admin.php:298
216
  msgid "Any payment method"
217
  msgstr "Betaalmethoden"
218
 
219
+ #: includes/admin/wjecf-admin.php:309
220
  msgid ""
221
  "One of these payment methods must be selected in order for this coupon to be "
222
  "valid."
224
  "Een van deze betaalmethoden moet gekozen zijn om deze kortingsbon te kunnen "
225
  "gebruiken."
226
 
227
+ #: includes/admin/wjecf-admin.php:317
228
  msgid "Customer restrictions"
229
  msgstr "Klantbeperkingen"
230
 
231
+ #: includes/admin/wjecf-admin.php:318
232
  msgid ""
233
  "If both a customer and a role restriction are supplied, matching either one "
234
  "of them will suffice."
236
  "Als zowel een klant- als klantrolrestrictie is opgegeven hoeft slechts aan "
237
  "één van de restricties worden voldaan."
238
 
239
+ #: includes/admin/wjecf-admin.php:323
240
  msgid "Allowed Customers"
241
  msgstr "Toegestane klanten"
242
 
243
+ #: includes/admin/wjecf-admin.php:324
244
  msgid "Any customer"
245
  msgstr "Klanten"
246
 
247
+ #: includes/admin/wjecf-admin.php:337
248
  msgid "Only these customers may use this coupon."
249
  msgstr "Alleen deze klanten kunnen deze kortingsbon gebruiken."
250
 
251
+ #: includes/admin/wjecf-admin.php:344
252
  msgid "Allowed User Roles"
253
  msgstr "Toegestane klantrollen"
254
 
255
+ #: includes/admin/wjecf-admin.php:345 includes/admin/wjecf-admin.php:367
256
  msgid "Any role"
257
  msgstr "Klantrollen"
258
 
259
+ #: includes/admin/wjecf-admin.php:359
260
  msgid "Only these User Roles may use this coupon."
261
  msgstr "Alleen deze klantrollen kunnen deze kortingsbon gebruiken."
262
 
263
+ #: includes/admin/wjecf-admin.php:366
264
  msgid "Disallowed User Roles"
265
  msgstr "Uitgesloten klantrollen"
266
 
267
+ #: includes/admin/wjecf-admin.php:380
268
  msgid "These User Roles will be specifically excluded from using this coupon."
269
  msgstr "Deze klantrollen zijn uitgesloten om deze kortingsbon te gebruiken."
270
 
271
+ #: includes/admin/wjecf-admin.php:391
272
  msgid "Allow when minimum spend not reached"
273
  msgstr "Toestaan wanneer minimale besteding nog niet is behaald."
274
 
275
+ #: includes/admin/wjecf-admin.php:392 includes/wjecf-pro-free-products.php:597
276
+ #: includes/wjecf-pro-free-products.php:605
277
  msgid "EXPERIMENTAL: "
278
  msgstr "EXPERIMENTEEL:"
279
 
280
+ #: includes/admin/wjecf-admin.php:392
281
  msgid ""
282
  "Check this box to allow the coupon to be in the cart even when minimum spend "
283
  "(see tab 'usage restriction') is not reached. Value of the discount will be "
287
  "besteding nog niet is gehaald. De coupon zal een waarde van 0 hebben tot de "
288
  "minimale besteding is bereikt."
289
 
290
+ #: includes/admin/wjecf-admin.php:482
291
+ #, php-format
292
+ msgid "%s (Default)"
293
+ msgstr "%s (standaard)"
294
+
295
+ #: includes/admin/wjecf-admin.php:496 includes/admin/wjecf-admin.php:521
296
  msgid "Search for a product…"
297
  msgstr "Zoek een product..."
298
 
353
  msgstr ""
354
  "Geen melding weergeven wanneer deze kortingsbon automatisch wordt toegepast."
355
 
356
+ #: includes/wjecf-autocoupon.php:287
 
 
 
 
 
 
 
357
  msgid "Free shipping coupon"
358
  msgstr "Gratis verzending kortingsbon"
359
 
360
+ #: includes/wjecf-autocoupon.php:364
361
  #, php-format
362
  msgid "Discount applied: %s"
363
  msgstr "Korting toegepast: %s"
364
 
365
+ #: includes/wjecf-controller.php:191
366
  #, php-format
367
  msgid "The minimum subtotal of the matching products for this coupon is %s."
368
  msgstr ""
369
  "Het minimale subtotaal van overeengekomen producten voor deze kortingsbon is "
370
  "%s."
371
 
372
+ #: includes/wjecf-controller.php:195
373
  #, php-format
374
  msgid "The maximum subtotal of the matching products for this coupon is %s."
375
  msgstr ""
376
  "Het maximale subtotaal van overeengekomen producten voor deze kortingsbon is "
377
  "%s."
378
 
379
+ #: includes/wjecf-controller.php:199
380
  #, php-format
381
  msgid "The minimum quantity of matching products for this coupon is %s."
382
  msgstr ""
383
  "Het minimale aantal overeengekomen producten voor deze kortingsbon is %s."
384
 
385
+ #: includes/wjecf-controller.php:203
386
  #, php-format
387
  msgid "The maximum quantity of matching products for this coupon is %s."
388
  msgstr ""
389
  "Het maximale aantal overeengekomen producten voor deze kortingsbon is %s."
390
 
391
+ #: includes/wjecf-controller.php:206
392
  msgid "The coupon is not valid for the currently selected shipping method."
393
  msgstr "De kortingsbon is niet geldig voor de gekozen verzendmethode."
394
 
395
+ #: includes/wjecf-controller.php:209
396
  msgid "The coupon is not valid for the currently selected payment method."
397
  msgstr "De kortingsbon is niet geldig voor de gekozen betaalmethode."
398
 
399
+ #: includes/wjecf-controller.php:212
400
  #, php-format
401
  msgid "Sorry, it seems the coupon \"%s\" is not yours."
402
  msgstr "Sorry, het lijkt erop dat kortingsbon \"%s\" niet van u is."
455
  "is gekozen, de korting alleen zal worden toegepast op overeengekomen "
456
  "producten."
457
 
458
+ #: includes/wjecf-pro-coupon-queueing.php:57
459
+ #, php-format
460
+ msgid "Coupon '%s' will be applied when it's conditions are met."
461
+ msgstr ""
462
+ "Coupon '%s' zal automatisch worden toegepast wanneer aan de voorwaarden "
463
+ "wordt voldaan."
464
+
465
+ #: includes/wjecf-pro-coupon-queueing.php:90
466
+ #, php-format
467
+ msgid "Coupon '%s' applied."
468
+ msgstr "Coupon '%s' toegepast."
469
+
470
  #: includes/wjecf-pro-evalmath.php:735
471
  msgid "an unexpected error occured"
472
+ msgstr "er heeft een onbekende fout opgetreden"
473
 
474
  #: includes/wjecf-pro-evalmath.php:736
475
  msgid "cannot assign to constant '{$a}'"
537
  "given, {$a->expected} expected)"
538
  msgstr ""
539
 
540
+ #: includes/wjecf-pro-free-products.php:196
541
  msgid "Please select your free gift."
542
  msgstr "Kies een gratis artikel."
543
 
544
+ #: includes/wjecf-pro-free-products.php:460
545
+ #: includes/wjecf-pro-free-products.php:470
546
  msgid "Free!"
547
  msgstr "Gratis!"
548
 
549
+ #: includes/wjecf-pro-free-products.php:535
550
+ #: includes/wjecf-pro-free-products.php:558
551
+ #: includes/wjecf-pro-free-products.php:564
552
  msgid "Free products"
553
  msgstr "Gratis producten"
554
 
555
+ #: includes/wjecf-pro-free-products.php:569
556
  msgid ""
557
  "Free products that will be added to the cart when this coupon is applied."
558
  msgstr ""
559
  "Gratis producten welke aan de winkelwagen worden toegevoegd als de coupon is "
560
  "toegepast."
561
 
562
+ #: includes/wjecf-pro-free-products.php:576
563
  msgid "Select one"
564
  msgstr "Kies één"
565
 
566
+ #: includes/wjecf-pro-free-products.php:577
567
  msgid "Check this box if the customer must choose from the free products."
568
  msgstr "Aanvinken als de klant één van de gratis producten moet kiezen."
569
 
570
+ #: includes/wjecf-pro-free-products.php:585
571
  msgid "'Select your gift'-message"
572
  msgstr "'Kies uw gratis product'-boodschap"
573
 
574
+ #: includes/wjecf-pro-free-products.php:586
575
  msgid "Please choose your free gift:"
576
  msgstr "Kies uw gratis product:"
577
 
578
+ #: includes/wjecf-pro-free-products.php:587
579
  msgid "This message is displayed when the customer must choose a free product."
580
  msgstr ""
581
  "Deze melding wordt getoond wanneer de klant een gratis product moet kiezen."
582
 
583
+ #: includes/wjecf-pro-free-products.php:596
584
  msgid "Allow multiplication of the free products"
585
  msgstr "Vermenigvuldigen gratis producten toestaan"
586
 
587
+ #: includes/wjecf-pro-free-products.php:597
588
  msgid ""
589
  "The amount of free products is multiplied every time the minimum spend, "
590
  "subtotal or quantity is reached."
592
  "Het aantal van de gratis producten wordt vermenigvuldigd met het totale "
593
  "aantal keer dat minimale besteding, subtotaal of aantal is bereikt."
594
 
595
+ #: includes/wjecf-pro-free-products.php:604
596
  msgid "BOGO matching products"
597
  msgstr "1+1 gratis voor overeengekomen producten"
598
 
599
+ #: includes/wjecf-pro-free-products.php:606
600
  msgid ""
601
  "Buy one or more of any of the matching products (see 'Usage Restriction'-"
602
  "tab) and get one free. Check 'Allow multiplication' to get one free item for "
606
  "Gebruik 'vermenigvuldigen toestaan' om een gratis artikel voor elk "
607
  "overeenkomend artikel te krijgen."
608
 
609
+ #: includes/wjecf-pro-product-filter.php:221
610
+ msgid "Custom Fields Operator"
611
+ msgstr "Extra velden Operator"
612
+
613
+ #: includes/wjecf-pro-product-filter.php:225
614
+ msgid ""
615
+ "Use AND if all of the custom fields must be in the cart to use this coupon "
616
+ "(instead of only one of the custom fields)."
617
+ msgstr ""
618
+ "Gebruik ALLE als alle extra velden in het winkelwagentje moeten zitten (in "
619
+ "plaats van één van de extra velden)."
620
+
621
+ #: includes/wjecf-pro-product-filter.php:231
622
+ msgid "Custom Fields"
623
+ msgstr "Extra velden"
624
+
625
+ #: includes/wjecf-pro-product-filter.php:237
626
+ msgid "Name"
627
+ msgstr "Naam"
628
+
629
+ #: includes/wjecf-pro-product-filter.php:238
630
+ msgid "Value"
631
+ msgstr "Waarde"
632
+
633
+ #: includes/wjecf-pro-product-filter.php:241
634
+ msgid ""
635
+ "If multiple lines are entered, only one of them needs to match. A whole word "
636
+ "case insensitive match is executed by default and % can be used as wildcard. "
637
+ "If a line starts with a forward slash (/) it is treated as a regular "
638
+ "expression. NOTE: Regular expression matches are case sensitive by default; "
639
+ "append flag i to the regular expression for a case insensitive match. \n"
640
+ "Examples:\n"
641
+ "'roc%' matches 'Rock' and also 'Rock the house', but not 'Bedrock'\n"
642
+ "'/^rock$/i' matches 'Rock' but not 'Rock the house'"
643
+ msgstr ""
644
+ "Indien meerdere regels worden opgegeven, hoeft slechts aan één te worden "
645
+ "voldaan. Standaard wordt gezocht naar hele woorden, niet "
646
+ "hoofdlettergevoelig. Eventueel kan % als jokerteken worden gebruikt. Wanneer "
647
+ "een regel met slash (/) begint wordt deze als reguliere expressie "
648
+ "geïnterpreteerd. LET OP: Reguliere expressies zijn standaard wel "
649
+ "hoofdlettergevoelig; voeg flag 'i' toe om niet hoofdlettergevoelig te "
650
+ "zoeken. \n"
651
+ "Voorbeelden:\n"
652
+ "'roc%' accepteert 'Rock' en ook 'Rock the house', maar niet 'Bedrock'\n"
653
+ "'/^rock$/i' accepteert 'Rock' maar niet 'Rock the house'"
654
+
655
+ #: includes/wjecf-pro-product-filter.php:264
656
+ msgid "&mdash; Select &mdash;"
657
+ msgstr "&mdash; Selecteer &mdash;"
658
+
659
+ #: woocommerce-jos-autocoupon-pro.php:43
660
  msgid ""
661
  "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
662
  "not be detected."
664
  "WooCommerce Extended Coupon Features is uitgeschakeld omdat WooCommerce niet "
665
  "kon worden gedetecteerd."
666
 
667
+ #~ msgid "AND Products (not OR)"
668
+ #~ msgstr "ALLE Producten (niet OF)"
669
+
670
+ #~ msgid ""
671
+ #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
672
+ #~ "be in the cart to use this coupon (instead of only one of the products)."
673
+ #~ msgstr ""
674
+ #~ "Aanvinken als ALLE producten (zie tab 'gebruiksbeperkingen') in de "
675
+ #~ "winkelwagen moeten zitten om deze kortingsbon te kunnen gebruiken (in "
676
+ #~ "plaats van één van de producten)."
677
+
678
+ #~ msgid "AND Categories (not OR)"
679
+ #~ msgstr "ALLE Categorieën (niet OF)"
680
+
681
+ #~ msgid ""
682
+ #~ "Check this box if products from ALL of the categories (see tab 'usage "
683
+ #~ "restriction') must be in the cart to use this coupon (instead of only one "
684
+ #~ "from one of the categories)."
685
+ #~ msgstr ""
686
+ #~ "Aanvinken als producten van ALLE categorieën (zie tab "
687
+ #~ "'gebruiksbeperkingen') in de winkelwagen moeten zitten om deze "
688
+ #~ "kortingsbon te kunnen gebruiken (in plaats van een product van één van de "
689
+ #~ "categorieën)."
690
+
691
+ #~ msgid ""
692
+ #~ "<strong>WooCommerce Extended Coupon Features:</strong> You are using a "
693
+ #~ "WooCommerce version prior to 2.3.0. Updating of WooCommerce is "
694
+ #~ "recommended as using an outdated version might cause unexpected behaviour "
695
+ #~ "in combination with modern plugins."
696
+ #~ msgstr ""
697
+ #~ "<strong>WooCommerce Extended Coupon Features:</strong> Je gebruikt een "
698
+ #~ "WooCommerce versie ouder dan 2.3.0. Updaten van WooCommerce wordt "
699
+ #~ "aangeraden."
700
+
701
  #~ msgid ""
702
  #~ "Check this box if ALL of the products (see tab 'usage restriction') must "
703
  #~ "be in the cart to use this coupon (in stead of only one of the products)."
languages/woocommerce-jos-autocoupon-pt_BR.po CHANGED
@@ -1,456 +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."
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
@@ -1,523 +1,581 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
5
- "POT-Creation-Date: 2016-05-14 13:02+0200\n"
6
- "PO-Revision-Date: 2015-05-09 18:12+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Jos Koenis\n"
9
- "Language: en\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"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/admin/wjecf-admin-auto-upgrade.php:36
20
- msgid ""
21
- "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
22
- "using an older version of this plugin, while the data was upgraded to a "
23
- "newer version."
24
- msgstr ""
25
-
26
- #: includes/admin/wjecf-admin-auto-upgrade.php:44
27
- msgid ""
28
- "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
29
- "upgraded to the newest version."
30
- msgstr ""
31
-
32
- #: includes/admin/wjecf-admin.php:19
33
- msgid ""
34
- "<strong>WooCommerce Extended Coupon Features:</strong> You are using a "
35
- "WooCommerce version prior to 2.3.0. Updating of WooCommerce is recommended "
36
- "as using an outdated version might cause unexpected behaviour in combination "
37
- "with modern plugins."
38
- msgstr ""
39
-
40
- #: includes/admin/wjecf-admin.php:68
41
- msgid "Products"
42
- msgstr ""
43
-
44
- #: includes/admin/wjecf-admin.php:74 includes/admin/wjecf-admin.php:235
45
- msgid "Checkout"
46
- msgstr ""
47
-
48
- #: includes/admin/wjecf-admin.php:80 includes/admin/wjecf-admin.php:345
49
- msgid "Miscellaneous"
50
- msgstr ""
51
-
52
- #: includes/admin/wjecf-admin.php:123
53
- msgid "Do you find WooCommerce Extended Coupon Features useful?"
54
- msgstr ""
55
-
56
- #: includes/admin/wjecf-admin.php:125
57
- msgid "Express your gratitude"
58
- msgstr ""
59
-
60
- #: includes/admin/wjecf-admin.php:129
61
- msgid "Donate to the developer"
62
- msgstr ""
63
-
64
- #: includes/admin/wjecf-admin.php:136
65
- msgid "Documentation"
66
- msgstr ""
67
-
68
- #: includes/admin/wjecf-admin.php:138
69
- msgid "WooCommerce Extended Coupon Features Documentation"
70
- msgstr ""
71
-
72
- #: includes/admin/wjecf-admin.php:146
73
- msgid "Matching products"
74
- msgstr ""
75
-
76
- #: includes/admin/wjecf-admin.php:151
77
- msgid "AND Products (not OR)"
78
- msgstr ""
79
-
80
- #: includes/admin/wjecf-admin.php:152
81
- msgid ""
82
- "Check this box if ALL of the products (see tab 'usage restriction') must be "
83
- "in the cart to use this coupon (instead of only one of the products)."
84
- msgstr ""
85
-
86
- #: includes/admin/wjecf-admin.php:159
87
- msgid "AND Categories (not OR)"
88
- msgstr ""
89
-
90
- #: includes/admin/wjecf-admin.php:160
91
- msgid ""
92
- "Check this box if products from ALL of the categories (see tab 'usage "
93
- "restriction') must be in the cart to use this coupon (instead of only one "
94
- "from one of the categories)."
95
- msgstr ""
96
-
97
- #: includes/admin/wjecf-admin.php:165
98
- msgid "(AND)"
99
- msgstr ""
100
-
101
- #: includes/admin/wjecf-admin.php:166
102
- msgid "(OR)"
103
- msgstr ""
104
-
105
- #: includes/admin/wjecf-admin.php:195
106
- msgid "Minimum quantity of matching products"
107
- msgstr ""
108
-
109
- #: includes/admin/wjecf-admin.php:196 includes/admin/wjecf-admin.php:216
110
- msgid "No minimum"
111
- msgstr ""
112
-
113
- #: includes/admin/wjecf-admin.php:197
114
- msgid ""
115
- "Minimum 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:205
121
- msgid "Maximum quantity of matching products"
122
- msgstr ""
123
-
124
- #: includes/admin/wjecf-admin.php:206 includes/admin/wjecf-admin.php:226
125
- msgid "No maximum"
126
- msgstr ""
127
-
128
- #: includes/admin/wjecf-admin.php:207
129
- msgid ""
130
- "Maximum quantity of the products that match the given product or category "
131
- "restrictions (see tab 'usage restriction'). If no product or category "
132
- "restrictions are specified, the total number of products is used."
133
- msgstr ""
134
-
135
- #: includes/admin/wjecf-admin.php:215
136
- msgid "Minimum subtotal of matching products"
137
- msgstr ""
138
-
139
- #: includes/admin/wjecf-admin.php:217
140
- msgid ""
141
- "Minimum price subtotal of the products that match the given product or "
142
- "category restrictions (see tab 'usage restriction')."
143
- msgstr ""
144
-
145
- #: includes/admin/wjecf-admin.php:225
146
- msgid "Maximum subtotal of matching products"
147
- msgstr ""
148
-
149
- #: includes/admin/wjecf-admin.php:227
150
- msgid ""
151
- "Maximum price subtotal of the products that match the given product or "
152
- "category restrictions (see tab 'usage restriction')."
153
- msgstr ""
154
-
155
- #: includes/admin/wjecf-admin.php:240
156
- msgid "Shipping methods"
157
- msgstr ""
158
-
159
- #: includes/admin/wjecf-admin.php:241
160
- msgid "Any shipping method"
161
- msgstr ""
162
-
163
- #: includes/admin/wjecf-admin.php:250
164
- msgid ""
165
- "One of these shipping methods must be selected in order for this coupon to "
166
- "be valid."
167
- msgstr ""
168
-
169
- #: includes/admin/wjecf-admin.php:256
170
- msgid "Payment methods"
171
- msgstr ""
172
-
173
- #: includes/admin/wjecf-admin.php:257
174
- msgid "Any payment method"
175
- msgstr ""
176
-
177
- #: includes/admin/wjecf-admin.php:268
178
- msgid ""
179
- "One of these payment methods must be selected in order for this coupon to be "
180
- "valid."
181
- msgstr ""
182
-
183
- #: includes/admin/wjecf-admin.php:276
184
- msgid "Customer restrictions"
185
- msgstr ""
186
-
187
- #: includes/admin/wjecf-admin.php:277
188
- msgid ""
189
- "If both a customer and a role restriction are supplied, matching either one "
190
- "of them will suffice."
191
- msgstr ""
192
-
193
- #: includes/admin/wjecf-admin.php:282
194
- msgid "Allowed Customers"
195
- msgstr ""
196
-
197
- #: includes/admin/wjecf-admin.php:283
198
- msgid "Any customer"
199
- msgstr ""
200
-
201
- #: includes/admin/wjecf-admin.php:296
202
- msgid "Only these customers may use this coupon."
203
- msgstr ""
204
-
205
- #: includes/admin/wjecf-admin.php:303
206
- msgid "Allowed User Roles"
207
- msgstr ""
208
-
209
- #: includes/admin/wjecf-admin.php:304 includes/admin/wjecf-admin.php:326
210
- msgid "Any role"
211
- msgstr ""
212
-
213
- #: includes/admin/wjecf-admin.php:318
214
- msgid "Only these User Roles may use this coupon."
215
- msgstr ""
216
-
217
- #: includes/admin/wjecf-admin.php:325
218
- msgid "Disallowed User Roles"
219
- msgstr ""
220
-
221
- #: includes/admin/wjecf-admin.php:339
222
- msgid "These User Roles will be specifically excluded from using this coupon."
223
- msgstr ""
224
-
225
- #: includes/admin/wjecf-admin.php:350
226
- msgid "Allow when minimum spend not reached"
227
- msgstr ""
228
-
229
- #: includes/admin/wjecf-admin.php:351 includes/wjecf-pro-free-products.php:481
230
- #: includes/wjecf-pro-free-products.php:489
231
- msgid "EXPERIMENTAL: "
232
- msgstr ""
233
-
234
- #: includes/admin/wjecf-admin.php:351
235
- msgid ""
236
- "Check this box to allow the coupon to be in the cart even when minimum spend "
237
- "(see tab 'usage restriction') is not reached. Value of the discount will be "
238
- "0 until minimum spend is reached."
239
- msgstr ""
240
-
241
- #: includes/admin/wjecf-admin.php:398 includes/admin/wjecf-admin.php:423
242
- msgid "Search for a product…"
243
- msgstr ""
244
-
245
- #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
246
- #: includes/wjecf-autocoupon.php:137
247
- msgid "Auto coupon"
248
- msgstr ""
249
-
250
- #: includes/wjecf-autocoupon.php:63
251
- msgid "Individual use"
252
- msgstr ""
253
-
254
- #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
255
- msgid "Yes"
256
- msgstr ""
257
-
258
- #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
259
- msgid "No"
260
- msgstr ""
261
-
262
- #: includes/wjecf-autocoupon.php:102
263
- msgid "Auto coupons"
264
- msgstr ""
265
-
266
- #: includes/wjecf-autocoupon.php:138
267
- msgid ""
268
- "Automatically add the coupon to the cart if the restrictions are met. Please "
269
- "enter a description when you check this box, the description will be shown "
270
- "in the customer's cart if the coupon is applied."
271
- msgstr ""
272
-
273
- #: includes/wjecf-autocoupon.php:146
274
- msgid "Priority"
275
- msgstr ""
276
-
277
- #: includes/wjecf-autocoupon.php:147
278
- msgid "No priority"
279
- msgstr ""
280
-
281
- #: includes/wjecf-autocoupon.php:148
282
- msgid ""
283
- "When 'individual use' is checked, auto coupons with a higher value will have "
284
- "priority over other auto coupons."
285
- msgstr ""
286
-
287
- #: includes/wjecf-autocoupon.php:158
288
- msgid "Apply silently"
289
- msgstr ""
290
-
291
- #: includes/wjecf-autocoupon.php:159
292
- msgid "Don't display a message when this coupon is automatically applied."
293
- msgstr ""
294
-
295
- #: includes/wjecf-autocoupon.php:240
296
- #, php-format
297
- msgid "Coupon '%s' will be applied when it's conditions are met."
298
- msgstr ""
299
-
300
- #: includes/wjecf-autocoupon.php:306
301
- msgid "Free shipping coupon"
302
- msgstr ""
303
-
304
- #: includes/wjecf-autocoupon.php:381 includes/wjecf-autocoupon.php:415
305
- #, php-format
306
- msgid "Discount applied: %s"
307
- msgstr ""
308
-
309
- #: includes/wjecf-controller.php:169
310
- #, php-format
311
- msgid "The minimum subtotal of the matching products for this coupon is %s."
312
- msgstr ""
313
-
314
- #: includes/wjecf-controller.php:173
315
- #, php-format
316
- msgid "The maximum subtotal of the matching products for this coupon is %s."
317
- msgstr ""
318
-
319
- #: includes/wjecf-controller.php:177
320
- #, php-format
321
- msgid "The minimum quantity of matching products for this coupon is %s."
322
- msgstr ""
323
-
324
- #: includes/wjecf-controller.php:181
325
- #, php-format
326
- msgid "The maximum quantity of matching products for this coupon is %s."
327
- msgstr ""
328
-
329
- #: includes/wjecf-controller.php:184
330
- msgid "The coupon is not valid for the currently selected shipping method."
331
- msgstr ""
332
-
333
- #: includes/wjecf-controller.php:187
334
- msgid "The coupon is not valid for the currently selected payment method."
335
- msgstr ""
336
-
337
- #: includes/wjecf-controller.php:190
338
- #, php-format
339
- msgid "Sorry, it seems the coupon \"%s\" is not yours."
340
- msgstr ""
341
-
342
- #: includes/wjecf-pro-controller.php:59
343
- msgid "Discount on cart with excluded products"
344
- msgstr ""
345
-
346
- #: includes/wjecf-pro-controller.php:65
347
- msgid "Allow discount on cart with excluded items"
348
- msgstr ""
349
-
350
- #: includes/wjecf-pro-controller.php:66
351
- msgid ""
352
- "Check this box to allow a 'Cart Discount' coupon to be applied even when "
353
- "excluded items are in the cart (see tab 'usage restriction')."
354
- msgstr ""
355
-
356
- #: includes/wjecf-pro-controller.php:77 includes/wjecf-pro-controller.php:83
357
- msgid "Limit discount to"
358
- msgstr ""
359
-
360
- #: includes/wjecf-pro-controller.php:78
361
- msgid ""
362
- "Here you can exclude certain products from being discounted (Only applies to "
363
- "Cart % Discount, Product Discount, Product % Discount)"
364
- msgstr ""
365
-
366
- #: includes/wjecf-pro-controller.php:85
367
- msgid "(default)"
368
- msgstr ""
369
-
370
- #: includes/wjecf-pro-controller.php:86
371
- msgid "One item per order line"
372
- msgstr ""
373
-
374
- #: includes/wjecf-pro-controller.php:87
375
- msgid "Lowest priced product (single item)"
376
- msgstr ""
377
-
378
- #: includes/wjecf-pro-controller.php:88
379
- msgid "Lowest priced order line (all items)"
380
- msgstr ""
381
-
382
- #: includes/wjecf-pro-controller.php:90
383
- msgid ""
384
- "Please note that when the discount type is 'Product discount' (see 'General'-"
385
- "tab), the discount will only be applied to <em>matching</em> products."
386
- msgstr ""
387
-
388
- #: includes/wjecf-pro-evalmath.php:735
389
- msgid "an unexpected error occured"
390
- msgstr ""
391
-
392
- #: includes/wjecf-pro-evalmath.php:736
393
- msgid "cannot assign to constant '{$a}'"
394
- msgstr ""
395
-
396
- #: includes/wjecf-pro-evalmath.php:737
397
- msgid "cannot assign to readonly '{$a}'"
398
- msgstr ""
399
-
400
- #: includes/wjecf-pro-evalmath.php:738
401
- msgid "cannot redefine built-in function '{$a}()'"
402
- msgstr ""
403
-
404
- #: includes/wjecf-pro-evalmath.php:739
405
- msgid "division by zero"
406
- msgstr ""
407
-
408
- #: includes/wjecf-pro-evalmath.php:740
409
- msgid "expecting a closing bracket"
410
- msgstr ""
411
-
412
- #: includes/wjecf-pro-evalmath.php:741
413
- msgid "illegal character '{$a}'"
414
- msgstr ""
415
-
416
- #: includes/wjecf-pro-evalmath.php:742
417
- msgid "illegal character '_'"
418
- msgstr ""
419
-
420
- #: includes/wjecf-pro-evalmath.php:743
421
- msgid "expecting operator, implicit multiplication not allowed."
422
- msgstr ""
423
-
424
- #: includes/wjecf-pro-evalmath.php:744
425
- msgid "internal error"
426
- msgstr ""
427
-
428
- #: includes/wjecf-pro-evalmath.php:745
429
- msgid "operator '{$a}' lacks operand"
430
- msgstr ""
431
-
432
- #: includes/wjecf-pro-evalmath.php:746
433
- msgid "undefined variable '{$a}'"
434
- msgstr ""
435
-
436
- #: includes/wjecf-pro-evalmath.php:747
437
- msgid "undefined variable '{$a}' in function definition"
438
- msgstr ""
439
-
440
- #: includes/wjecf-pro-evalmath.php:748
441
- msgid "unexpected closing bracket"
442
- msgstr ""
443
-
444
- #: includes/wjecf-pro-evalmath.php:749
445
- msgid "unexpected comma"
446
- msgstr ""
447
-
448
- #: includes/wjecf-pro-evalmath.php:750
449
- msgid "unexpected operator '{$a}'"
450
- msgstr ""
451
-
452
- #: includes/wjecf-pro-evalmath.php:751
453
- msgid ""
454
- "wrong number of arguments for function '{$a->function}()' ({$a->given} "
455
- "given, {$a->expected} expected)"
456
- msgstr ""
457
-
458
- #: includes/wjecf-pro-free-products.php:80
459
- msgid "Please select your free gift."
460
- msgstr ""
461
-
462
- #: includes/wjecf-pro-free-products.php:344
463
- #: includes/wjecf-pro-free-products.php:354
464
- msgid "Free!"
465
- msgstr ""
466
-
467
- #: includes/wjecf-pro-free-products.php:419
468
- #: includes/wjecf-pro-free-products.php:442
469
- #: includes/wjecf-pro-free-products.php:448
470
- msgid "Free products"
471
- msgstr ""
472
-
473
- #: includes/wjecf-pro-free-products.php:453
474
- msgid ""
475
- "Free products that will be added to the cart when this coupon is applied."
476
- msgstr ""
477
-
478
- #: includes/wjecf-pro-free-products.php:460
479
- msgid "Select one"
480
- msgstr ""
481
-
482
- #: includes/wjecf-pro-free-products.php:461
483
- msgid "Check this box if the customer must choose from the free products."
484
- msgstr ""
485
-
486
- #: includes/wjecf-pro-free-products.php:469
487
- msgid "'Select your gift'-message"
488
- msgstr ""
489
-
490
- #: includes/wjecf-pro-free-products.php:470
491
- msgid "Please choose your free gift:"
492
- msgstr ""
493
-
494
- #: includes/wjecf-pro-free-products.php:471
495
- msgid "This message is displayed when the customer must choose a free product."
496
- msgstr ""
497
-
498
- #: includes/wjecf-pro-free-products.php:480
499
- msgid "Allow multiplication of the free products"
500
- msgstr ""
501
-
502
- #: includes/wjecf-pro-free-products.php:481
503
- msgid ""
504
- "The amount of free products is multiplied every time the minimum spend, "
505
- "subtotal or quantity is reached."
506
- msgstr ""
507
-
508
- #: includes/wjecf-pro-free-products.php:488
509
- msgid "BOGO matching products"
510
- msgstr ""
511
-
512
- #: includes/wjecf-pro-free-products.php:490
513
- msgid ""
514
- "Buy one or more of any of the matching products (see 'Usage Restriction'-"
515
- "tab) and get one free. Check 'Allow multiplication' to get one free item for "
516
- "every matching item in the cart."
517
- msgstr ""
518
-
519
- #: woocommerce-jos-autocoupon-pro.php:34
520
- msgid ""
521
- "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
522
- "not be detected."
523
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: WooCommerce Extended Coupon Features 2.00\n"
5
+ "POT-Creation-Date: 2016-09-21 22:56+0200\n"
6
+ "PO-Revision-Date: 2015-05-09 18:12+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Jos Koenis\n"
9
+ "Language: en\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.8\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPathExcluded-0: docs\n"
19
+
20
+ #: includes/admin/wjecf-admin-auto-upgrade.php:40
21
+ msgid ""
22
+ "<strong>WooCommerce Extended Coupon Features:</strong> Please note, you're "
23
+ "using an older version of this plugin, while the data was upgraded to a "
24
+ "newer version."
25
+ msgstr ""
26
+
27
+ #: includes/admin/wjecf-admin-auto-upgrade.php:48
28
+ msgid ""
29
+ "<strong>WooCommerce Extended Coupon Features:</strong> Data succesfully "
30
+ "upgraded to the newest version."
31
+ msgstr ""
32
+
33
+ #: includes/admin/wjecf-admin.php:20
34
+ msgid ""
35
+ "<strong>WooCommerce Extended Coupon Features:</strong> You are using an old "
36
+ "version of WooCommerce. Updating of WooCommerce is recommended as using an "
37
+ "outdated version might cause unexpected behaviour in combination with modern "
38
+ "plugins."
39
+ msgstr ""
40
+
41
+ #: includes/admin/wjecf-admin.php:115
42
+ msgid "(AND)"
43
+ msgstr ""
44
+
45
+ #: includes/admin/wjecf-admin.php:116
46
+ msgid "(OR)"
47
+ msgstr ""
48
+
49
+ #: includes/admin/wjecf-admin.php:126
50
+ msgid "Products"
51
+ msgstr ""
52
+
53
+ #: includes/admin/wjecf-admin.php:132 includes/admin/wjecf-admin.php:276
54
+ msgid "Checkout"
55
+ msgstr ""
56
+
57
+ #: includes/admin/wjecf-admin.php:138 includes/admin/wjecf-admin.php:386
58
+ msgid "Miscellaneous"
59
+ msgstr ""
60
+
61
+ #: includes/admin/wjecf-admin.php:181
62
+ msgid "Do you find WooCommerce Extended Coupon Features useful?"
63
+ msgstr ""
64
+
65
+ #: includes/admin/wjecf-admin.php:183
66
+ msgid "Express your gratitude"
67
+ msgstr ""
68
+
69
+ #: includes/admin/wjecf-admin.php:187
70
+ msgid "Donate to the developer"
71
+ msgstr ""
72
+
73
+ #: includes/admin/wjecf-admin.php:194
74
+ msgid "Documentation"
75
+ msgstr ""
76
+
77
+ #: includes/admin/wjecf-admin.php:196
78
+ msgid "WooCommerce Extended Coupon Features Documentation"
79
+ msgstr ""
80
+
81
+ #: includes/admin/wjecf-admin.php:204
82
+ msgid "Matching products"
83
+ msgstr ""
84
+
85
+ #: includes/admin/wjecf-admin.php:209
86
+ msgid "Products Operator"
87
+ msgstr ""
88
+
89
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
90
+ #: includes/wjecf-pro-product-filter.php:222
91
+ msgid "OR"
92
+ msgstr ""
93
+
94
+ #: includes/admin/wjecf-admin.php:210 includes/admin/wjecf-admin.php:223
95
+ #: includes/wjecf-pro-product-filter.php:222
96
+ msgid "AND"
97
+ msgstr ""
98
+
99
+ #: includes/admin/wjecf-admin.php:214
100
+ msgid ""
101
+ "Use AND if ALL of the products must be in the cart to use this coupon "
102
+ "(instead of only one of the products)."
103
+ msgstr ""
104
+
105
+ #: includes/admin/wjecf-admin.php:222
106
+ msgid "Categories Operator"
107
+ msgstr ""
108
+
109
+ #: includes/admin/wjecf-admin.php:227
110
+ msgid ""
111
+ "Use AND if products from ALL of the categories must be in the cart to use "
112
+ "this coupon (instead of only one from one of the categories)."
113
+ msgstr ""
114
+
115
+ #: includes/admin/wjecf-admin.php:236
116
+ msgid "Minimum quantity of matching products"
117
+ msgstr ""
118
+
119
+ #: includes/admin/wjecf-admin.php:237 includes/admin/wjecf-admin.php:257
120
+ msgid "No minimum"
121
+ msgstr ""
122
+
123
+ #: includes/admin/wjecf-admin.php:238
124
+ msgid ""
125
+ "Minimum quantity of the products that match the given product or category "
126
+ "restrictions (see tab 'usage restriction'). If no product or category "
127
+ "restrictions are specified, the total number of products is used."
128
+ msgstr ""
129
+
130
+ #: includes/admin/wjecf-admin.php:246
131
+ msgid "Maximum quantity of matching products"
132
+ msgstr ""
133
+
134
+ #: includes/admin/wjecf-admin.php:247 includes/admin/wjecf-admin.php:267
135
+ msgid "No maximum"
136
+ msgstr ""
137
+
138
+ #: includes/admin/wjecf-admin.php:248
139
+ msgid ""
140
+ "Maximum quantity of the products that match the given product or category "
141
+ "restrictions (see tab 'usage restriction'). If no product or category "
142
+ "restrictions are specified, the total number of products is used."
143
+ msgstr ""
144
+
145
+ #: includes/admin/wjecf-admin.php:256
146
+ msgid "Minimum subtotal of matching products"
147
+ msgstr ""
148
+
149
+ #: includes/admin/wjecf-admin.php:258
150
+ msgid ""
151
+ "Minimum price subtotal of the products that match the given product or "
152
+ "category restrictions (see tab 'usage restriction')."
153
+ msgstr ""
154
+
155
+ #: includes/admin/wjecf-admin.php:266
156
+ msgid "Maximum subtotal of matching products"
157
+ msgstr ""
158
+
159
+ #: includes/admin/wjecf-admin.php:268
160
+ msgid ""
161
+ "Maximum price subtotal of the products that match the given product or "
162
+ "category restrictions (see tab 'usage restriction')."
163
+ msgstr ""
164
+
165
+ #: includes/admin/wjecf-admin.php:281
166
+ msgid "Shipping methods"
167
+ msgstr ""
168
+
169
+ #: includes/admin/wjecf-admin.php:282
170
+ msgid "Any shipping method"
171
+ msgstr ""
172
+
173
+ #: includes/admin/wjecf-admin.php:291
174
+ msgid ""
175
+ "One of these shipping methods must be selected in order for this coupon to "
176
+ "be valid."
177
+ msgstr ""
178
+
179
+ #: includes/admin/wjecf-admin.php:297
180
+ msgid "Payment methods"
181
+ msgstr ""
182
+
183
+ #: includes/admin/wjecf-admin.php:298
184
+ msgid "Any payment method"
185
+ msgstr ""
186
+
187
+ #: includes/admin/wjecf-admin.php:309
188
+ msgid ""
189
+ "One of these payment methods must be selected in order for this coupon to be "
190
+ "valid."
191
+ msgstr ""
192
+
193
+ #: includes/admin/wjecf-admin.php:317
194
+ msgid "Customer restrictions"
195
+ msgstr ""
196
+
197
+ #: includes/admin/wjecf-admin.php:318
198
+ msgid ""
199
+ "If both a customer and a role restriction are supplied, matching either one "
200
+ "of them will suffice."
201
+ msgstr ""
202
+
203
+ #: includes/admin/wjecf-admin.php:323
204
+ msgid "Allowed Customers"
205
+ msgstr ""
206
+
207
+ #: includes/admin/wjecf-admin.php:324
208
+ msgid "Any customer"
209
+ msgstr ""
210
+
211
+ #: includes/admin/wjecf-admin.php:337
212
+ msgid "Only these customers may use this coupon."
213
+ msgstr ""
214
+
215
+ #: includes/admin/wjecf-admin.php:344
216
+ msgid "Allowed User Roles"
217
+ msgstr ""
218
+
219
+ #: includes/admin/wjecf-admin.php:345 includes/admin/wjecf-admin.php:367
220
+ msgid "Any role"
221
+ msgstr ""
222
+
223
+ #: includes/admin/wjecf-admin.php:359
224
+ msgid "Only these User Roles may use this coupon."
225
+ msgstr ""
226
+
227
+ #: includes/admin/wjecf-admin.php:366
228
+ msgid "Disallowed User Roles"
229
+ msgstr ""
230
+
231
+ #: includes/admin/wjecf-admin.php:380
232
+ msgid "These User Roles will be specifically excluded from using this coupon."
233
+ msgstr ""
234
+
235
+ #: includes/admin/wjecf-admin.php:391
236
+ msgid "Allow when minimum spend not reached"
237
+ msgstr ""
238
+
239
+ #: includes/admin/wjecf-admin.php:392 includes/wjecf-pro-free-products.php:597
240
+ #: includes/wjecf-pro-free-products.php:605
241
+ msgid "EXPERIMENTAL: "
242
+ msgstr ""
243
+
244
+ #: includes/admin/wjecf-admin.php:392
245
+ msgid ""
246
+ "Check this box to allow the coupon to be in the cart even when minimum spend "
247
+ "(see tab 'usage restriction') is not reached. Value of the discount will be "
248
+ "0 until minimum spend is reached."
249
+ msgstr ""
250
+
251
+ #: includes/admin/wjecf-admin.php:482
252
+ #, php-format
253
+ msgid "%s (Default)"
254
+ msgstr ""
255
+
256
+ #: includes/admin/wjecf-admin.php:496 includes/admin/wjecf-admin.php:521
257
+ msgid "Search for a product…"
258
+ msgstr ""
259
+
260
+ #: includes/wjecf-autocoupon.php:58 includes/wjecf-autocoupon.php:130
261
+ #: includes/wjecf-autocoupon.php:137
262
+ msgid "Auto coupon"
263
+ msgstr ""
264
+
265
+ #: includes/wjecf-autocoupon.php:63
266
+ msgid "Individual use"
267
+ msgstr ""
268
+
269
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
270
+ msgid "Yes"
271
+ msgstr ""
272
+
273
+ #: includes/wjecf-autocoupon.php:83 includes/wjecf-autocoupon.php:91
274
+ msgid "No"
275
+ msgstr ""
276
+
277
+ #: includes/wjecf-autocoupon.php:102
278
+ msgid "Auto coupons"
279
+ msgstr ""
280
+
281
+ #: includes/wjecf-autocoupon.php:138
282
+ msgid ""
283
+ "Automatically add the coupon to the cart if the restrictions are met. Please "
284
+ "enter a description when you check this box, the description will be shown "
285
+ "in the customer's cart if the coupon is applied."
286
+ msgstr ""
287
+
288
+ #: includes/wjecf-autocoupon.php:146
289
+ msgid "Priority"
290
+ msgstr ""
291
+
292
+ #: includes/wjecf-autocoupon.php:147
293
+ msgid "No priority"
294
+ msgstr ""
295
+
296
+ #: includes/wjecf-autocoupon.php:148
297
+ msgid ""
298
+ "When 'individual use' is checked, auto coupons with a higher value will have "
299
+ "priority over other auto coupons."
300
+ msgstr ""
301
+
302
+ #: includes/wjecf-autocoupon.php:158
303
+ msgid "Apply silently"
304
+ msgstr ""
305
+
306
+ #: includes/wjecf-autocoupon.php:159
307
+ msgid "Don't display a message when this coupon is automatically applied."
308
+ msgstr ""
309
+
310
+ #: includes/wjecf-autocoupon.php:287
311
+ msgid "Free shipping coupon"
312
+ msgstr ""
313
+
314
+ #: includes/wjecf-autocoupon.php:364
315
+ #, php-format
316
+ msgid "Discount applied: %s"
317
+ msgstr ""
318
+
319
+ #: includes/wjecf-controller.php:191
320
+ #, php-format
321
+ msgid "The minimum subtotal of the matching products for this coupon is %s."
322
+ msgstr ""
323
+
324
+ #: includes/wjecf-controller.php:195
325
+ #, php-format
326
+ msgid "The maximum subtotal of the matching products for this coupon is %s."
327
+ msgstr ""
328
+
329
+ #: includes/wjecf-controller.php:199
330
+ #, php-format
331
+ msgid "The minimum quantity of matching products for this coupon is %s."
332
+ msgstr ""
333
+
334
+ #: includes/wjecf-controller.php:203
335
+ #, php-format
336
+ msgid "The maximum quantity of matching products for this coupon is %s."
337
+ msgstr ""
338
+
339
+ #: includes/wjecf-controller.php:206
340
+ msgid "The coupon is not valid for the currently selected shipping method."
341
+ msgstr ""
342
+
343
+ #: includes/wjecf-controller.php:209
344
+ msgid "The coupon is not valid for the currently selected payment method."
345
+ msgstr ""
346
+
347
+ #: includes/wjecf-controller.php:212
348
+ #, php-format
349
+ msgid "Sorry, it seems the coupon \"%s\" is not yours."
350
+ msgstr ""
351
+
352
+ #: includes/wjecf-pro-controller.php:59
353
+ msgid "Discount on cart with excluded products"
354
+ msgstr ""
355
+
356
+ #: includes/wjecf-pro-controller.php:65
357
+ msgid "Allow discount on cart with excluded items"
358
+ msgstr ""
359
+
360
+ #: includes/wjecf-pro-controller.php:66
361
+ msgid ""
362
+ "Check this box to allow a 'Cart Discount' coupon to be applied even when "
363
+ "excluded items are in the cart (see tab 'usage restriction')."
364
+ msgstr ""
365
+
366
+ #: includes/wjecf-pro-controller.php:77 includes/wjecf-pro-controller.php:83
367
+ msgid "Limit discount to"
368
+ msgstr ""
369
+
370
+ #: includes/wjecf-pro-controller.php:78
371
+ msgid ""
372
+ "Here you can exclude certain products from being discounted (Only applies to "
373
+ "Cart % Discount, Product Discount, Product % Discount)"
374
+ msgstr ""
375
+
376
+ #: includes/wjecf-pro-controller.php:85
377
+ msgid "(default)"
378
+ msgstr ""
379
+
380
+ #: includes/wjecf-pro-controller.php:86
381
+ msgid "One item per order line"
382
+ msgstr ""
383
+
384
+ #: includes/wjecf-pro-controller.php:87
385
+ msgid "Lowest priced product (single item)"
386
+ msgstr ""
387
+
388
+ #: includes/wjecf-pro-controller.php:88
389
+ msgid "Lowest priced order line (all items)"
390
+ msgstr ""
391
+
392
+ #: includes/wjecf-pro-controller.php:90
393
+ msgid ""
394
+ "Please note that when the discount type is 'Product discount' (see 'General'-"
395
+ "tab), the discount will only be applied to <em>matching</em> products."
396
+ msgstr ""
397
+
398
+ #: includes/wjecf-pro-coupon-queueing.php:57
399
+ #, php-format
400
+ msgid "Coupon '%s' will be applied when it's conditions are met."
401
+ msgstr ""
402
+
403
+ #: includes/wjecf-pro-coupon-queueing.php:90
404
+ #, php-format
405
+ msgid "Coupon '%s' applied."
406
+ msgstr ""
407
+
408
+ #: includes/wjecf-pro-evalmath.php:735
409
+ msgid "an unexpected error occured"
410
+ msgstr ""
411
+
412
+ #: includes/wjecf-pro-evalmath.php:736
413
+ msgid "cannot assign to constant '{$a}'"
414
+ msgstr ""
415
+
416
+ #: includes/wjecf-pro-evalmath.php:737
417
+ msgid "cannot assign to readonly '{$a}'"
418
+ msgstr ""
419
+
420
+ #: includes/wjecf-pro-evalmath.php:738
421
+ msgid "cannot redefine built-in function '{$a}()'"
422
+ msgstr ""
423
+
424
+ #: includes/wjecf-pro-evalmath.php:739
425
+ msgid "division by zero"
426
+ msgstr ""
427
+
428
+ #: includes/wjecf-pro-evalmath.php:740
429
+ msgid "expecting a closing bracket"
430
+ msgstr ""
431
+
432
+ #: includes/wjecf-pro-evalmath.php:741
433
+ msgid "illegal character '{$a}'"
434
+ msgstr ""
435
+
436
+ #: includes/wjecf-pro-evalmath.php:742
437
+ msgid "illegal character '_'"
438
+ msgstr ""
439
+
440
+ #: includes/wjecf-pro-evalmath.php:743
441
+ msgid "expecting operator, implicit multiplication not allowed."
442
+ msgstr ""
443
+
444
+ #: includes/wjecf-pro-evalmath.php:744
445
+ msgid "internal error"
446
+ msgstr ""
447
+
448
+ #: includes/wjecf-pro-evalmath.php:745
449
+ msgid "operator '{$a}' lacks operand"
450
+ msgstr ""
451
+
452
+ #: includes/wjecf-pro-evalmath.php:746
453
+ msgid "undefined variable '{$a}'"
454
+ msgstr ""
455
+
456
+ #: includes/wjecf-pro-evalmath.php:747
457
+ msgid "undefined variable '{$a}' in function definition"
458
+ msgstr ""
459
+
460
+ #: includes/wjecf-pro-evalmath.php:748
461
+ msgid "unexpected closing bracket"
462
+ msgstr ""
463
+
464
+ #: includes/wjecf-pro-evalmath.php:749
465
+ msgid "unexpected comma"
466
+ msgstr ""
467
+
468
+ #: includes/wjecf-pro-evalmath.php:750
469
+ msgid "unexpected operator '{$a}'"
470
+ msgstr ""
471
+
472
+ #: includes/wjecf-pro-evalmath.php:751
473
+ msgid ""
474
+ "wrong number of arguments for function '{$a->function}()' ({$a->given} "
475
+ "given, {$a->expected} expected)"
476
+ msgstr ""
477
+
478
+ #: includes/wjecf-pro-free-products.php:196
479
+ msgid "Please select your free gift."
480
+ msgstr ""
481
+
482
+ #: includes/wjecf-pro-free-products.php:460
483
+ #: includes/wjecf-pro-free-products.php:470
484
+ msgid "Free!"
485
+ msgstr ""
486
+
487
+ #: includes/wjecf-pro-free-products.php:535
488
+ #: includes/wjecf-pro-free-products.php:558
489
+ #: includes/wjecf-pro-free-products.php:564
490
+ msgid "Free products"
491
+ msgstr ""
492
+
493
+ #: includes/wjecf-pro-free-products.php:569
494
+ msgid ""
495
+ "Free products that will be added to the cart when this coupon is applied."
496
+ msgstr ""
497
+
498
+ #: includes/wjecf-pro-free-products.php:576
499
+ msgid "Select one"
500
+ msgstr ""
501
+
502
+ #: includes/wjecf-pro-free-products.php:577
503
+ msgid "Check this box if the customer must choose from the free products."
504
+ msgstr ""
505
+
506
+ #: includes/wjecf-pro-free-products.php:585
507
+ msgid "'Select your gift'-message"
508
+ msgstr ""
509
+
510
+ #: includes/wjecf-pro-free-products.php:586
511
+ msgid "Please choose your free gift:"
512
+ msgstr ""
513
+
514
+ #: includes/wjecf-pro-free-products.php:587
515
+ msgid "This message is displayed when the customer must choose a free product."
516
+ msgstr ""
517
+
518
+ #: includes/wjecf-pro-free-products.php:596
519
+ msgid "Allow multiplication of the free products"
520
+ msgstr ""
521
+
522
+ #: includes/wjecf-pro-free-products.php:597
523
+ msgid ""
524
+ "The amount of free products is multiplied every time the minimum spend, "
525
+ "subtotal or quantity is reached."
526
+ msgstr ""
527
+
528
+ #: includes/wjecf-pro-free-products.php:604
529
+ msgid "BOGO matching products"
530
+ msgstr ""
531
+
532
+ #: includes/wjecf-pro-free-products.php:606
533
+ msgid ""
534
+ "Buy one or more of any of the matching products (see 'Usage Restriction'-"
535
+ "tab) and get one free. Check 'Allow multiplication' to get one free item for "
536
+ "every matching item in the cart."
537
+ msgstr ""
538
+
539
+ #: includes/wjecf-pro-product-filter.php:221
540
+ msgid "Custom Fields Operator"
541
+ msgstr ""
542
+
543
+ #: includes/wjecf-pro-product-filter.php:225
544
+ msgid ""
545
+ "Use AND if all of the custom fields must be in the cart to use this coupon "
546
+ "(instead of only one of the custom fields)."
547
+ msgstr ""
548
+
549
+ #: includes/wjecf-pro-product-filter.php:231
550
+ msgid "Custom Fields"
551
+ msgstr ""
552
+
553
+ #: includes/wjecf-pro-product-filter.php:237
554
+ msgid "Name"
555
+ msgstr ""
556
+
557
+ #: includes/wjecf-pro-product-filter.php:238
558
+ msgid "Value"
559
+ msgstr ""
560
+
561
+ #: includes/wjecf-pro-product-filter.php:241
562
+ msgid ""
563
+ "If multiple lines are entered, only one of them needs to match. A whole word "
564
+ "case insensitive match is executed by default and % can be used as wildcard. "
565
+ "If a line starts with a forward slash (/) it is treated as a regular "
566
+ "expression. NOTE: Regular expression matches are case sensitive by default; "
567
+ "append flag i to the regular expression for a case insensitive match. \n"
568
+ "Examples:\n"
569
+ "'roc%' matches 'Rock' and also 'Rock the house', but not 'Bedrock'\n"
570
+ "'/^rock$/i' matches 'Rock' but not 'Rock the house'"
571
+ msgstr ""
572
+
573
+ #: includes/wjecf-pro-product-filter.php:264
574
+ msgid "&mdash; Select &mdash;"
575
+ msgstr ""
576
+
577
+ #: woocommerce-jos-autocoupon-pro.php:43
578
+ msgid ""
579
+ "WooCommerce Extended Coupon Features is disabled because WooCommerce could "
580
+ "not be detected."
581
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: josk79
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: woocommerce, coupons, discount
5
  Requires at least: 4.0.0
6
- Tested up to: 4.5.3
7
- Stable tag: 2.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,7 +15,7 @@ Additional functionality for WooCommerce Coupons: Allow discounts to be automati
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.6.1. Backwards compatible with older WooCommerce versions (2.3.0 confirmed).
19
 
20
  Full documentation is available at [www.soft79.nl](http://www.soft79.nl/documentation/wjecf).
21
 
@@ -106,6 +106,15 @@ Sure! [This](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQ
106
 
107
  == Changelog ==
108
 
 
 
 
 
 
 
 
 
 
109
  = 2.3.4 =
110
  * FIX: WooCommerce 2.6 and UPS / USPS Shipping method compatibility ( those plugins use : as separator )
111
  * FIX: Coupon by url (hook on wp_loaded instead of init)
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQBCS2QHRY&lc=NL&item_name=Jos%20Koenis&item_number=wordpress%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: woocommerce, coupons, discount
5
  Requires at least: 4.0.0
6
+ Tested up to: 4.6.1
7
+ Stable tag: 2.3.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
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.6.4. Backwards compatible with older WooCommerce versions (2.3.0 confirmed).
19
 
20
  Full documentation is available at [www.soft79.nl](http://www.soft79.nl/documentation/wjecf).
21
 
106
 
107
  == Changelog ==
108
 
109
+ = 2.3.6 =
110
+ * FIX: Compatibility with WooCommerce < 2.3.0 for coupon by url
111
+ * COSMETIC: On the admin page, moved AND/OR selector near the product/categories input
112
+ * (PRO) Filter matching products by custom field.
113
+
114
+ = 2.3.5 =
115
+ * (PRO) FIX: Workaround for missing WooCommerce 2.6.3 constant WC_ROUNDING_PRECISION
116
+ * (PRO) FIX: Refresh the cart when a coupon is applied/removed by AJAX (to add/remove free products)
117
+
118
  = 2.3.4 =
119
  * FIX: WooCommerce 2.6 and UPS / USPS Shipping method compatibility ( those plugins use : as separator )
120
  * FIX: Coupon by url (hook on wp_loaded instead of init)
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.4
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */
@@ -32,6 +32,7 @@ if ( ! function_exists( 'wjecf_load_plugin_textdomain' ) ) {
32
  @include_once( 'includes/wjecf-pro-controller.php' );
33
  @include_once( 'includes/wjecf-pro-free-products.php' );
34
  @include_once( 'includes/wjecf-pro-coupon-queueing.php' );
 
35
  @include_once( 'includes/wjecf-pro-api.php' );
36
 
37
 
@@ -73,6 +74,7 @@ if ( ! function_exists( 'wjecf_load_plugin_textdomain' ) ) {
73
  WJECF()->add_plugin('WJECF_WPML');
74
  WJECF()->add_plugin('WJECF_Pro_Free_Products');
75
  WJECF()->add_plugin('WJECF_Pro_Coupon_Queueing');
 
76
  }
77
 
78
  }
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.6
7
  * Author: Jos Koenis
8
  * License: GPL2
9
  */
32
  @include_once( 'includes/wjecf-pro-controller.php' );
33
  @include_once( 'includes/wjecf-pro-free-products.php' );
34
  @include_once( 'includes/wjecf-pro-coupon-queueing.php' );
35
+ @include_once( 'includes/wjecf-pro-product-filter.php' );
36
  @include_once( 'includes/wjecf-pro-api.php' );
37
 
38
 
74
  WJECF()->add_plugin('WJECF_WPML');
75
  WJECF()->add_plugin('WJECF_Pro_Free_Products');
76
  WJECF()->add_plugin('WJECF_Pro_Coupon_Queueing');
77
+ WJECF()->add_plugin('WJECF_Pro_Product_Filter');
78
  }
79
 
80
  }