Booster for WooCommerce - Version 2.2.6

Version Description

  • 15/08/2015 =
  • Fix - Shortcodes - [wcj_order_checkout_field] bug fixed.
  • Dev - Shortcodes - Products - [wcj_product_total_sales] added.
  • Dev - Code refactoring - Meta box support added to WCJ_Module.
  • Dev - Code refactoring - get_settings() added to WCJ_Module.
  • Dev - Dutch translation added.
  • Dev - POT file updated added.
  • Dev - PRICES & CURRENCIES - Price by Country - "WooJetpack" to "BoostWoo" in country group fields descriptions.
  • Dev - PRICES & CURRENCIES - Price by Country - "Override Country on Checkout with Billing Country" option added. "No country was detected" routine disabled.
  • Dev - PRICES & CURRENCIES - Wholesale Price - Option to set fixed discount value (not percent).
  • Dev - PRICES & CURRENCIES - Wholesale Price - "Apply wholesale discount only if no other cart discounts were applied" option added.
  • Dev - PRICES & CURRENCIES - Wholesale Price - old_price_html in add_discount_info_to_cart_page() modified.
  • Fix - BUTTON & PRICE LABELS - Add to Cart Labels - per Product Category - bug fixed.
  • Fix - PRODUCTS - Product Info - wp_reset_query to wp_reset_postdata.
  • Fix - PRODUCTS - Product Info - completed to wc-completed in orders WP_Query.
  • Dev - PRODUCTS - Product Images - Replace image with HTML (globally and locally) added (custom_textarea custom settings field added).
  • Dev - PRODUCTS - Related Products - delete_product_transients added on settings save (now no need to Clear transients manually from WooCommerce Status > Tools).
  • Fix - PRODUCTS - Related Products - Relate by category/tag bug fixed.
  • Dev - PRODUCTS - Crowdfunding - Initial module release. Shortcodes added: [wcj_product_total_orders], [wcj_product_total_orders_sum], [wcj_product_crowdfunding_goal], [wcj_product_crowdfunding_goal_remaining], [wcj_product_crowdfunding_startdate], [wcj_product_crowdfunding_deadline], [wcj_product_crowdfunding_time_remaining].
  • Fix - PRODUCTS - Product Cost Price - Profit column bug fixed.
  • Dev - CART & CHECKOUT - Payment Gateways Fees - Discounts (negative fee value) added. Module renamed to "Payment Gateways Fees and Discounts".
  • Fix - EMAILS & MISC. - Reports - completed to wc-completed in orders WP_Query.
Download this release

Release Info

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

Code changes from version 2.2.5 to 2.2.6

includes/add-to-cart/class-wcj-add-to-cart-per-category.php CHANGED
@@ -2,12 +2,10 @@
2
  /**
3
  * WooCommerce Jetpack Add to Cart per Category
4
  *
5
- * The WooCommerce Jetpack Add to Cart per Category class.
6
  *
7
- * @class WCJ_Add_To_Cart_Per_Category
8
- * @version 2.2.0
9
- * @category Class
10
- * @author Algoritmika Ltd.
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit;
@@ -16,56 +14,52 @@ if ( ! class_exists( 'WCJ_Add_To_Cart_Per_Category' ) ) :
16
 
17
  class WCJ_Add_To_Cart_Per_Category {
18
 
19
- /**
20
- * Constructor.
21
- */
22
- public function __construct() {
23
-
24
- // Main hooks
25
- if ( 'yes' === get_option( 'wcj_add_to_cart_per_category_enabled' ) ) {
26
- add_filter( 'woocommerce_product_single_add_to_cart_text', array( $this, 'change_add_to_cart_button_text_single' ), PHP_INT_MAX );
27
- add_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'change_add_to_cart_button_text_archive' ), PHP_INT_MAX );
28
- }
29
- }
30
 
31
- /**
32
- * change_add_to_cart_button_text_single.
33
- */
34
- public function change_add_to_cart_button_text_single( $add_to_cart_text ) {
35
  return $this->change_add_to_cart_button_text( $add_to_cart_text, 'single' );
36
  }
37
 
38
- /**
39
- * change_add_to_cart_button_text_archive.
40
- */
41
- public function change_add_to_cart_button_text_archive( $add_to_cart_text ) {
42
  return $this->change_add_to_cart_button_text( $add_to_cart_text, 'archive' );
43
  }
44
 
45
- /**
46
- * change_add_to_cart_button_text.
47
- */
48
- public function change_add_to_cart_button_text( $add_to_cart_text, $single_or_archive ) {
 
 
49
  $product_categories = get_the_terms( get_the_ID(), 'product_cat' );
50
- if ( empty( $product_categories ) )
51
- return $add_to_cart_text;
52
  for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_add_to_cart_per_category_total_groups_number', 1 ) ); $i++ ) {
53
- if ( 'yes' !== get_option( 'wcj_add_to_cart_per_category_enabled_group_' . $i ) )
54
- continue;
55
- // $categories = array_filter( explode( ',', get_option( 'wcj_add_to_cart_per_category_group_' . $i ) ) );
56
  $categories = get_option( 'wcj_add_to_cart_per_category_ids_group_' . $i );
57
- if ( empty( $categories ) )
58
- continue;
59
- foreach ( $product_categories as $product_category_id => $product_category ) {
60
  foreach ( $categories as $category ) {
61
- if ( $product_category_id == $category ) {
62
  return get_option( 'wcj_add_to_cart_per_category_text_' . $single_or_archive . '_group_' . $i, $add_to_cart_text );
63
  }
64
  }
65
  }
66
  }
67
- return $add_to_cart_text;
68
- }
69
  }
70
 
71
  endif;
2
  /**
3
  * WooCommerce Jetpack Add to Cart per Category
4
  *
5
+ * The WooCommerce Jetpack Add to Cart Label per Category class.
6
  *
7
+ * @version 2.2.6
8
+ * @author Algoritmika Ltd.
 
 
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit;
14
 
15
  class WCJ_Add_To_Cart_Per_Category {
16
 
17
+ /**
18
+ * Constructor.
19
+ */
20
+ public function __construct() {
21
+ if ( 'yes' === get_option( 'wcj_add_to_cart_per_category_enabled' ) ) {
22
+ add_filter( 'woocommerce_product_single_add_to_cart_text', array( $this, 'change_add_to_cart_button_text_single' ), PHP_INT_MAX );
23
+ add_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'change_add_to_cart_button_text_archive' ), PHP_INT_MAX );
24
+ }
25
+ }
 
 
26
 
27
+ /**
28
+ * change_add_to_cart_button_text_single.
29
+ */
30
+ public function change_add_to_cart_button_text_single( $add_to_cart_text ) {
31
  return $this->change_add_to_cart_button_text( $add_to_cart_text, 'single' );
32
  }
33
 
34
+ /**
35
+ * change_add_to_cart_button_text_archive.
36
+ */
37
+ public function change_add_to_cart_button_text_archive( $add_to_cart_text ) {
38
  return $this->change_add_to_cart_button_text( $add_to_cart_text, 'archive' );
39
  }
40
 
41
+ /**
42
+ * change_add_to_cart_button_text.
43
+ *
44
+ * @version 2.2.6
45
+ */
46
+ public function change_add_to_cart_button_text( $add_to_cart_text, $single_or_archive ) {
47
  $product_categories = get_the_terms( get_the_ID(), 'product_cat' );
48
+ if ( empty( $product_categories ) ) return $add_to_cart_text;
 
49
  for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_add_to_cart_per_category_total_groups_number', 1 ) ); $i++ ) {
50
+ if ( 'yes' !== get_option( 'wcj_add_to_cart_per_category_enabled_group_' . $i ) ) continue;
 
 
51
  $categories = get_option( 'wcj_add_to_cart_per_category_ids_group_' . $i );
52
+ if ( empty( $categories ) ) continue;
53
+ foreach ( $product_categories as $product_category ) {
 
54
  foreach ( $categories as $category ) {
55
+ if ( $product_category->term_id == $category ) {
56
  return get_option( 'wcj_add_to_cart_per_category_text_' . $single_or_archive . '_group_' . $i, $add_to_cart_text );
57
  }
58
  }
59
  }
60
  }
61
+ return $add_to_cart_text;
62
+ }
63
  }
64
 
65
  endif;
includes/admin/class-wc-settings-jetpack.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Settings class.
6
  *
7
- * @version 2.2.5
8
  * @since 1.0.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -18,7 +18,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
18
  /**
19
  * Constructor.
20
  *
21
- * @version 2.2.4
22
  */
23
  function __construct() {
24
 
@@ -27,16 +27,16 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
27
 
28
  $this->cats = include( 'wcj-modules-cats.php' );
29
 
30
- add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
31
- add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
32
- add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
33
- add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_cats_submenu' ) );
34
- add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_sections_submenu' ) );
35
-
36
- // add_action( 'woocommerce_admin_field_save_button', array( $this, 'output_save_settings_button' ) );
37
- add_action( 'woocommerce_admin_field_custom_number', array( $this, 'output_custom_number' ) );
38
 
39
- add_action( 'woocommerce_admin_field_module_tools', array( $this, 'output_module_tools' ) );
 
 
 
40
  }
41
 
42
  /**
@@ -54,6 +54,41 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
54
  <?php
55
  }
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  /**
58
  * output_module_tools.
59
  *
@@ -105,6 +140,8 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
105
 
106
  /**
107
  * Output sections (modules) sub menu
 
 
108
  */
109
  function output_sections_submenu() {
110
 
@@ -133,6 +170,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
133
  return;
134
  }
135
 
 
136
  echo '<ul class="subsubsub">';
137
 
138
  //$array_keys = array_keys( $sections );
@@ -143,7 +181,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
143
  echo '<li><a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $this->id . '&wcj-cat=' . $current_cat . '&section=' . sanitize_title( $id ) ) . '" class="' . ( $current_section == $id ? 'current' : '' ) . '">' . $label . '</a> ' . ( end( $this->cats[ $current_cat ]['all_cat_ids'] ) == $id ? '' : '|' ) . ' </li>';
144
  }
145
 
146
- echo '</ul><br class="clear" />';
147
  }
148
 
149
  /**
@@ -364,13 +402,15 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
364
 
365
  /**
366
  * Save settings
 
 
367
  */
368
  function save() {
369
  global $current_section;
370
  $settings = $this->get_settings( $current_section );
371
  WC_Admin_Settings::save_fields( $settings );
372
  echo apply_filters('get_wc_jetpack_plus_message', '', 'global' );
373
- do_action( 'woojetpack_after_settings_save', $this->get_sections() );
374
  }
375
 
376
  /**
4
  *
5
  * The WooCommerce Jetpack Settings class.
6
  *
7
+ * @version 2.2.6
8
  * @since 1.0.0
9
  * @author Algoritmika Ltd.
10
  */
18
  /**
19
  * Constructor.
20
  *
21
+ * @version 2.2.6
22
  */
23
  function __construct() {
24
 
27
 
28
  $this->cats = include( 'wcj-modules-cats.php' );
29
 
30
+ add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
31
+ add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
32
+ add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
33
+ add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_cats_submenu' ) );
34
+ add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_sections_submenu' ) );
 
 
 
35
 
36
+ // add_action( 'woocommerce_admin_field_save_button', array( $this, 'output_save_settings_button' ) );
37
+ add_action( 'woocommerce_admin_field_custom_number', array( $this, 'output_custom_number' ) );
38
+ add_action( 'woocommerce_admin_field_module_tools', array( $this, 'output_module_tools' ) );
39
+ add_action( 'woocommerce_admin_field_custom_textarea', array( $this, 'output_custom_textarea' ) );
40
  }
41
 
42
  /**
54
  <?php
55
  }
56
 
57
+ /**
58
+ * output_custom_textarea.
59
+ *
60
+ * @version 2.2.6
61
+ * @since 2.2.6
62
+ */
63
+ function output_custom_textarea( $value ) {
64
+ $option_value = get_option( $value['id'], $value['default'] );
65
+
66
+ $custom_attributes = ( isset( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) ? $value['custom_attributes'] : array();
67
+ $description = ' <p class="description">' . $value['desc'] . '</p>';
68
+ $tooltip_html = '';//' <p class="description">' . $value['desc_tip'] . '</p>';
69
+ // $tooltip_html = $value['desc_tip'];
70
+ // $tooltip_html = '<img class="help_tip" data-tip="' . esc_attr( $tooltip_html ) . '" src="' . WC()->plugin_url() . '/assets/images/help.png" height="16" width="16" />';
71
+
72
+ ?><tr valign="top">
73
+ <th scope="row" class="titledesc">
74
+ <label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
75
+ <?php echo $tooltip_html; ?>
76
+ </th>
77
+ <td class="forminp forminp-<?php echo sanitize_title( $value['type'] ) ?>">
78
+ <?php echo $description; ?>
79
+
80
+ <textarea
81
+ name="<?php echo esc_attr( $value['id'] ); ?>"
82
+ id="<?php echo esc_attr( $value['id'] ); ?>"
83
+ style="<?php echo esc_attr( $value['css'] ); ?>"
84
+ class="<?php echo esc_attr( $value['class'] ); ?>"
85
+ placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
86
+ <?php echo implode( ' ', $custom_attributes ); ?>
87
+ ><?php echo esc_textarea( $option_value ); ?></textarea>
88
+ </td>
89
+ </tr><?php
90
+ }
91
+
92
  /**
93
  * output_module_tools.
94
  *
140
 
141
  /**
142
  * Output sections (modules) sub menu
143
+ *
144
+ * @version 2.2.6
145
  */
146
  function output_sections_submenu() {
147
 
170
  return;
171
  }
172
 
173
+ echo '<p>';
174
  echo '<ul class="subsubsub">';
175
 
176
  //$array_keys = array_keys( $sections );
181
  echo '<li><a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $this->id . '&wcj-cat=' . $current_cat . '&section=' . sanitize_title( $id ) ) . '" class="' . ( $current_section == $id ? 'current' : '' ) . '">' . $label . '</a> ' . ( end( $this->cats[ $current_cat ]['all_cat_ids'] ) == $id ? '' : '|' ) . ' </li>';
182
  }
183
 
184
+ echo '</ul></p><br class="clear" />';
185
  }
186
 
187
  /**
402
 
403
  /**
404
  * Save settings
405
+ *
406
+ * @version 2.2.6
407
  */
408
  function save() {
409
  global $current_section;
410
  $settings = $this->get_settings( $current_section );
411
  WC_Admin_Settings::save_fields( $settings );
412
  echo apply_filters('get_wc_jetpack_plus_message', '', 'global' );
413
+ do_action( 'woojetpack_after_settings_save', $this->get_sections(), $current_section );
414
  }
415
 
416
  /**
includes/admin/wcj-modules-cats.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
- * @version 2.2.2
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -57,6 +57,7 @@ return array(
57
  'product_input_fields',
58
  'product_add_to_cart',
59
  'purchase_data',
 
60
  'product_images',
61
  ),
62
  ),
4
  *
5
  * The WooCommerce Modules Array.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
57
  'product_input_fields',
58
  'product_add_to_cart',
59
  'purchase_data',
60
+ 'crowdfunding',
61
  'product_images',
62
  ),
63
  ),
includes/class-wcj-crowdfunding.php ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WooCommerce Jetpack Crowdfunding
4
+ *
5
+ * The WooCommerce Jetpack Crowdfunding class.
6
+ *
7
+ * @version 2.2.6
8
+ * @since 2.2.6
9
+ * @author Algoritmika Ltd.
10
+ */
11
+
12
+ if ( ! defined( 'ABSPATH' ) ) exit;
13
+
14
+ if ( ! class_exists( 'WCJ_Crowdfunding' ) ) :
15
+
16
+ class WCJ_Crowdfunding extends WCJ_Module {
17
+
18
+ /**
19
+ * Constructor.
20
+ */
21
+ function __construct() {
22
+
23
+ $this->id = 'crowdfunding';
24
+ $this->short_desc = __( 'Crowdfunding', 'woocommerce-jetpack' );
25
+ $this->desc = __( 'Add crowdfunding products to WooCommerce.', 'woocommerce-jetpack' );
26
+ parent::__construct();
27
+
28
+ if ( $this->is_enabled() ) {
29
+
30
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
31
+ add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 );
32
+
33
+ add_action( 'woocommerce_is_purchasable', array( $this, 'check_dates' ), PHP_INT_MAX, 2 );
34
+ }
35
+ }
36
+
37
+ /**
38
+ * check_dates.
39
+ */
40
+ function check_dates( $purchasable, $_product ) {
41
+ $goal = get_post_meta( $_product->id, '_' . 'wcj_crowdfunding_goal_sum', true );
42
+ if ( 0 != $goal ) {
43
+ $start_date_str = get_post_meta( $_product->id, '_' . 'wcj_crowdfunding_startdate', true );
44
+ $end_date_str = get_post_meta( $_product->id, '_' . 'wcj_crowdfunding_deadline', true );
45
+ $start_date = ( '' != $start_date_str ) ? strtotime( $start_date_str ) : 0;
46
+ $end_date = ( '' != $end_date_str ) ? strtotime( $end_date_str ) : 0;
47
+ if ( $start_date > 0 && ( $start_date - time() ) > 0 ) $purchasable = false;
48
+ if ( $end_date > 0 && ( $end_date - time() ) < 0 ) $purchasable = false;
49
+ }
50
+ return $purchasable;
51
+ }
52
+
53
+ /**
54
+ * get_meta_box_options.
55
+ */
56
+ function get_meta_box_options() {
57
+ return array(
58
+ array(
59
+ 'name' => 'wcj_crowdfunding_goal_sum',
60
+ 'default' => 0,
61
+ 'type' => 'price',
62
+ 'title' => __( 'Goal', 'woocommerce-jetpack' ) . ' (' . get_woocommerce_currency_symbol() . ')',
63
+ ),
64
+ array(
65
+ 'name' => 'wcj_crowdfunding_startdate',
66
+ 'default' => '',
67
+ 'type' => 'date',
68
+ 'title' => __( 'Start Date', 'woocommerce-jetpack' )
69
+ ),
70
+ array(
71
+ 'name' => 'wcj_crowdfunding_deadline',
72
+ 'default' => '',
73
+ 'type' => 'date',
74
+ 'title' => __( 'Deadline', 'woocommerce-jetpack' )
75
+ ),
76
+ );
77
+ }
78
+
79
+ /**
80
+ * get_settings.
81
+ */
82
+ function get_settings() {
83
+ $module_desc = __( 'When enabled, module will add Crowdfunding metabox to product edit.', 'woocommerce-jetpack' )
84
+ . '<br>'
85
+ . __( 'To add crowdfunding info to the product, use these shortcodes:', 'woocommerce-jetpack' )
86
+ . '<br>'
87
+ . '[wcj_product_total_orders], [wcj_product_total_orders_sum],'
88
+ . '<br>'
89
+ . '[wcj_product_crowdfunding_goal], [wcj_product_crowdfunding_goal_remaining],'
90
+ . '<br>'
91
+ . '[wcj_product_crowdfunding_startdate], [wcj_product_crowdfunding_deadline], [wcj_product_crowdfunding_time_remaining].'
92
+ . '<br>'
93
+ . __( 'Shortcodes could be used in "Product Info" module.', 'woocommerce-jetpack' )
94
+ . '<br>'
95
+ . __( 'To change add to cart button labels use "Add to Cart Labels" module.', 'woocommerce-jetpack' );
96
+ return $this->add_enable_module_setting( array(), $module_desc );
97
+ }
98
+ }
99
+
100
+ endif;
101
+
102
+ return new WCJ_Crowdfunding();
includes/class-wcj-payment-gateways-fees.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Payment Gateways Fees class.
6
  *
7
- * @version 2.2.3
8
  * @since 2.2.2
9
  * @author Algoritmika Ltd.
10
  */
@@ -17,12 +17,14 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
17
 
18
  /**
19
  * Constructor.
 
 
20
  */
21
  function __construct() {
22
 
23
  $this->id = 'payment_gateways_fees';
24
- $this->short_desc = __( 'Payment Gateways Fees', 'woocommerce-jetpack' );
25
- $this->desc = __( 'Enable extra fees for WooCommerce payment gateways.', 'woocommerce-jetpack' );
26
  parent::__construct();
27
 
28
  add_filter( 'init', array( $this, 'add_hooks' ) );
@@ -120,11 +122,13 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
120
 
121
  /**
122
  * add_fees_settings.
 
 
123
  */
124
  function add_fees_settings( $settings ) {
125
  // Gateway's Extra Fees
126
  $settings[] = array(
127
- 'title' => __( 'Payment Gateways Fees Options', 'woocommerce-jetpack' ),
128
  'type' => 'title',
129
  'desc' => __( 'This section lets you set extra fees for payment gateways.', 'woocommerce-jetpack' ),
130
  // __( 'Fees are applied BEFORE taxes.', 'woocommerce-jetpack' ),
@@ -145,7 +149,7 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
145
 
146
  array(
147
  'title' => $gateway->title,
148
- 'desc' => __( 'Fee title to show to customer.', 'woocommerce-jetpack' ),
149
  'desc_tip' => __( 'Leave blank to disable.', 'woocommerce-jetpack' ),
150
  'id' => 'wcj_gateways_fees_text_' . $key,
151
  'default' => '',
@@ -154,7 +158,7 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
154
 
155
  array(
156
  'title' => '',
157
- 'desc' => __( 'Fee type.', 'woocommerce-jetpack' ),
158
  'desc_tip' => __( 'Percent or fixed value.', 'woocommerce-jetpack' ) . ' ' . apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_no_link' ),
159
  'custom_attributes'
160
  => apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' ),
@@ -169,20 +173,19 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
169
 
170
  array(
171
  'title' => '',
172
- 'desc' => __( 'Fee value.', 'woocommerce-jetpack' ),
173
- 'desc_tip' => __( 'The value.', 'woocommerce-jetpack' ),
174
  'id' => 'wcj_gateways_fees_value_' . $key,
175
  'default' => 0,
176
  'type' => 'number',
177
  'custom_attributes' => array(
178
  'step' => '0.01',
179
- 'min' => '0',
180
  ),
181
  ),
182
 
183
  array(
184
  'title' => '',
185
- 'desc' => __( 'Minimum cart amount for adding the fee.', 'woocommerce-jetpack' ),
186
  'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
187
  'id' => 'wcj_gateways_fees_min_cart_amount_' . $key,
188
  'default' => 0,
@@ -195,7 +198,7 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
195
 
196
  array(
197
  'title' => '',
198
- 'desc' => __( 'Maximum cart amount for adding the fee.', 'woocommerce-jetpack' ),
199
  'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
200
  'id' => 'wcj_gateways_fees_max_cart_amount_' . $key,
201
  'default' => 0,
@@ -208,7 +211,7 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
208
 
209
  array(
210
  'title' => '',
211
- 'desc' => __( 'Round the fee value before adding to the cart.', 'woocommerce-jetpack' ),
212
  //'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
213
  'id' => 'wcj_gateways_fees_round_' . $key,
214
  'default' => 'no',
4
  *
5
  * The WooCommerce Jetpack Payment Gateways Fees class.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.2
9
  * @author Algoritmika Ltd.
10
  */
17
 
18
  /**
19
  * Constructor.
20
+ *
21
+ * @version 2.2.6
22
  */
23
  function __construct() {
24
 
25
  $this->id = 'payment_gateways_fees';
26
+ $this->short_desc = __( 'Payment Gateways Fees and Discounts', 'woocommerce-jetpack' );
27
+ $this->desc = __( 'Enable extra fees or discounts for WooCommerce payment gateways.', 'woocommerce-jetpack' );
28
  parent::__construct();
29
 
30
  add_filter( 'init', array( $this, 'add_hooks' ) );
122
 
123
  /**
124
  * add_fees_settings.
125
+ *
126
+ * @version 2.2.6
127
  */
128
  function add_fees_settings( $settings ) {
129
  // Gateway's Extra Fees
130
  $settings[] = array(
131
+ 'title' => __( 'Payment Gateways Fees and Discounts Options', 'woocommerce-jetpack' ),
132
  'type' => 'title',
133
  'desc' => __( 'This section lets you set extra fees for payment gateways.', 'woocommerce-jetpack' ),
134
  // __( 'Fees are applied BEFORE taxes.', 'woocommerce-jetpack' ),
149
 
150
  array(
151
  'title' => $gateway->title,
152
+ 'desc' => __( 'Fee (or discount) title to show to customer.', 'woocommerce-jetpack' ),
153
  'desc_tip' => __( 'Leave blank to disable.', 'woocommerce-jetpack' ),
154
  'id' => 'wcj_gateways_fees_text_' . $key,
155
  'default' => '',
158
 
159
  array(
160
  'title' => '',
161
+ 'desc' => __( 'Fee (or discount) type.', 'woocommerce-jetpack' ),
162
  'desc_tip' => __( 'Percent or fixed value.', 'woocommerce-jetpack' ) . ' ' . apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_no_link' ),
163
  'custom_attributes'
164
  => apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' ),
173
 
174
  array(
175
  'title' => '',
176
+ 'desc' => __( 'Fee (or discount) value.', 'woocommerce-jetpack' ),
177
+ 'desc_tip' => __( 'The value. For discount enter a negative number.', 'woocommerce-jetpack' ),
178
  'id' => 'wcj_gateways_fees_value_' . $key,
179
  'default' => 0,
180
  'type' => 'number',
181
  'custom_attributes' => array(
182
  'step' => '0.01',
 
183
  ),
184
  ),
185
 
186
  array(
187
  'title' => '',
188
+ 'desc' => __( 'Minimum cart amount for adding the fee (or discount).', 'woocommerce-jetpack' ),
189
  'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
190
  'id' => 'wcj_gateways_fees_min_cart_amount_' . $key,
191
  'default' => 0,
198
 
199
  array(
200
  'title' => '',
201
+ 'desc' => __( 'Maximum cart amount for adding the fee (or discount).', 'woocommerce-jetpack' ),
202
  'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
203
  'id' => 'wcj_gateways_fees_max_cart_amount_' . $key,
204
  'default' => 0,
211
 
212
  array(
213
  'title' => '',
214
+ 'desc' => __( 'Round the fee (or discount) value before adding to the cart.', 'woocommerce-jetpack' ),
215
  //'desc_tip' => __( 'Set 0 to disable.', 'woocommerce-jetpack' ),
216
  'id' => 'wcj_gateways_fees_round_' . $key,
217
  'default' => 'no',
includes/class-wcj-price-by-country.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Price by Country class.
6
  *
7
- * @version 2.2.1
8
  * @author Algoritmika Ltd.
9
  */
10
 
@@ -53,6 +53,8 @@ class WCJ_Price_By_Country {
53
 
54
  /**
55
  * get_settings.
 
 
56
  */
57
  function get_settings() {
58
 
@@ -86,6 +88,14 @@ class WCJ_Price_By_Country {
86
  ),
87
  ),
88
 
 
 
 
 
 
 
 
 
89
  array(
90
  'title' => __( 'Price Rounding', 'woocommerce-jetpack' ),
91
  'desc' => __( 'If you choose to multiply price, set rounding options here.', 'woocommerce-jetpack' ),
@@ -130,7 +140,7 @@ class WCJ_Price_By_Country {
130
 
131
  $settings[] = array(
132
  'title' => __( 'Group', 'woocommerce-jetpack' ) . ' #' . $i,
133
- 'desc' => __( 'Countries. List of comma separated country codes.<br>For country codes and predifined sets visit <a href="http://woojetpack.com/features/prices-and-currencies-by-customers-country">WooJetpack.com</a>', 'woocommerce-jetpack' ),
134
  'id' => 'wcj_price_by_country_exchange_rate_countries_group_' . $i,
135
  'default' => '',
136
  'type' => 'textarea',
4
  *
5
  * The WooCommerce Jetpack Price by Country class.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
53
 
54
  /**
55
  * get_settings.
56
+ *
57
+ * @version 2.2.6
58
  */
59
  function get_settings() {
60
 
88
  ),
89
  ),
90
 
91
+ array(
92
+ 'title' => __( 'Override Country on Checkout with Billing Country', 'woocommerce-jetpack' ),
93
+ 'id' => 'wcj_price_by_country_override_on_checkout_with_billing_country',
94
+ 'desc' => __( 'Enable.', 'woocommerce-jetpack' ),
95
+ 'default' => 'no',
96
+ 'type' => 'checkbox',
97
+ ),
98
+
99
  array(
100
  'title' => __( 'Price Rounding', 'woocommerce-jetpack' ),
101
  'desc' => __( 'If you choose to multiply price, set rounding options here.', 'woocommerce-jetpack' ),
140
 
141
  $settings[] = array(
142
  'title' => __( 'Group', 'woocommerce-jetpack' ) . ' #' . $i,
143
+ 'desc' => __( 'Countries. List of comma separated country codes.<br>For country codes and predifined sets visit <a href="http://boostwoo.com/features/prices-and-currencies-by-customers-country">BoostWoo.com</a>', 'woocommerce-jetpack' ),
144
  'id' => 'wcj_price_by_country_exchange_rate_countries_group_' . $i,
145
  'default' => '',
146
  'type' => 'textarea',
includes/class-wcj-product-images.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Product Images class.
6
  *
7
- * @version 2.2.0
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -17,8 +17,10 @@ class WCJ_Product_Images extends WCJ_Module {
17
 
18
  /**
19
  * Constructor.
 
 
20
  */
21
- public function __construct() {
22
 
23
  $this->id = 'product_images';
24
  $this->short_desc = __( 'Product Images', 'woocommerce-jetpack' );
@@ -30,20 +32,25 @@ class WCJ_Product_Images extends WCJ_Module {
30
  // Product Image & Thumbnails
31
  if ( 'yes' === get_option( 'wcj_product_images_and_thumbnails_enabled', 'no' ) ) {
32
 
 
33
  if ( 'yes' === get_option( 'wcj_product_images_and_thumbnails_hide_on_single', 'no' ) ) {
34
  add_action( 'init', array( $this, 'product_images_and_thumbnails_hide_on_single' ), PHP_INT_MAX );
35
  } else {
36
- add_filter( 'woocommerce_single_product_image_html', array( $this, 'customize_single_product_image_html' ) );
37
  add_filter( 'woocommerce_single_product_image_thumbnail_html', array( $this, 'customize_single_product_image_thumbnail_html' ) );
38
  }
39
- if ( 'yes' === get_option( 'wcj_product_images_hide_on_archive', 'no' ) ) {
40
- add_action( 'init', array( $this, 'product_images_hide_on_archive' ), PHP_INT_MAX );
41
- }
 
42
 
43
  // Single Product Thumbnails Columns Number
44
  add_filter( 'woocommerce_product_thumbnails_columns', array( $this, 'change_product_thumbnails_columns_number' ) );
45
  }
46
 
 
 
 
47
  // Sale flash
48
  if ( 'yes' === get_option( 'wcj_product_images_sale_flash_enabled', 'no' ) ) {
49
  add_filter( 'woocommerce_sale_flash', array( $this, 'customize_sale_flash' ), PHP_INT_MAX, 3 );
@@ -51,24 +58,69 @@ class WCJ_Product_Images extends WCJ_Module {
51
  }
52
  }
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  /**
55
  * product_images_and_thumbnails_hide_on_single.
56
  */
57
- public function product_images_and_thumbnails_hide_on_single() {
58
  remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
59
  }
60
 
61
  /**
62
  * product_images_hide_on_archive.
 
 
63
  */
64
- public function product_images_hide_on_archive() {
65
- remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
 
 
 
 
 
 
 
 
66
  }
67
 
68
  /**
69
  * customize_sale_flash.
70
  */
71
- public function customize_sale_flash( $sale_flash_html, $post, $product ) {
72
 
73
  // Hiding
74
  if ( 'yes' === get_option( 'wcj_product_images_sale_flash_hide_on_archives', 'no' ) && is_archive() ) return '';
@@ -79,31 +131,47 @@ class WCJ_Product_Images extends WCJ_Module {
79
  get_option( 'wcj_product_images_sale_flash_html' ,
80
  '<span class="onsale">' . __( 'Sale!', 'woocommerce' ) . '</span>' )
81
  );
 
82
  }
83
 
84
  /**
85
  * customize_single_product_image_html.
 
 
86
  */
87
- public function customize_single_product_image_html( $image_link ) {
 
 
 
 
 
 
88
  return ( 'yes' === get_option( 'wcj_product_images_hide_on_single', 'no' ) ) ? '' : $image_link;
89
  }
90
 
91
  /**
92
  * customize_single_product_image_thumbnail_html.
 
 
93
  */
94
- public function customize_single_product_image_thumbnail_html( $image_link ) {
 
 
 
95
  return ( 'yes' === get_option( 'wcj_product_images_thumbnails_hide_on_single', 'no' ) ) ? '' : $image_link;
96
  }
97
 
98
  /**
99
  * change_product_thumbnails_columns.
100
  */
101
- public function change_product_thumbnails_columns_number( $columns_number ) {
102
  return get_option( 'wcj_product_images_thumbnails_columns', 3 );
103
  }
104
 
105
  /**
106
  * get_settings.
 
 
107
  */
108
  function get_settings() {
109
 
@@ -126,6 +194,24 @@ class WCJ_Product_Images extends WCJ_Module {
126
  'type' => 'checkbox',
127
  ),
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  array(
130
  'title' => __( 'Image on Single', 'woocommerce-jetpack' ),
131
  'desc' => __( 'Hide', 'woocommerce-jetpack' ),
@@ -142,6 +228,15 @@ class WCJ_Product_Images extends WCJ_Module {
142
  'type' => 'checkbox',
143
  ),
144
 
 
 
 
 
 
 
 
 
 
145
  array(
146
  'title' => __( 'Image on Archives', 'woocommerce-jetpack' ),
147
  'desc' => __( 'Hide', 'woocommerce-jetpack' ),
4
  *
5
  * The WooCommerce Jetpack Product Images class.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
17
 
18
  /**
19
  * Constructor.
20
+ *
21
+ * @version 2.2.6
22
  */
23
+ function __construct() {
24
 
25
  $this->id = 'product_images';
26
  $this->short_desc = __( 'Product Images', 'woocommerce-jetpack' );
32
  // Product Image & Thumbnails
33
  if ( 'yes' === get_option( 'wcj_product_images_and_thumbnails_enabled', 'no' ) ) {
34
 
35
+ // Single
36
  if ( 'yes' === get_option( 'wcj_product_images_and_thumbnails_hide_on_single', 'no' ) ) {
37
  add_action( 'init', array( $this, 'product_images_and_thumbnails_hide_on_single' ), PHP_INT_MAX );
38
  } else {
39
+ add_filter( 'woocommerce_single_product_image_html', array( $this, 'customize_single_product_image_html' ), PHP_INT_MAX, 2 );
40
  add_filter( 'woocommerce_single_product_image_thumbnail_html', array( $this, 'customize_single_product_image_thumbnail_html' ) );
41
  }
42
+
43
+ // Archives
44
+ add_action( 'woocommerce_before_shop_loop_item', array( $this, 'product_images_hide_on_archive' ) );
45
+ add_action( 'woocommerce_before_shop_loop_item_title', array( $this, 'customize_archive_product_image_html' ), 10 );
46
 
47
  // Single Product Thumbnails Columns Number
48
  add_filter( 'woocommerce_product_thumbnails_columns', array( $this, 'change_product_thumbnails_columns_number' ) );
49
  }
50
 
51
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
52
+ add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 );
53
+
54
  // Sale flash
55
  if ( 'yes' === get_option( 'wcj_product_images_sale_flash_enabled', 'no' ) ) {
56
  add_filter( 'woocommerce_sale_flash', array( $this, 'customize_sale_flash' ), PHP_INT_MAX, 3 );
58
  }
59
  }
60
 
61
+ /**
62
+ * customize_archive_product_image_html.
63
+ *
64
+ * @since 2.2.6
65
+ */
66
+ function customize_archive_product_image_html() {
67
+ if ( ( $post_id = get_the_ID() ) > 0 && '' != get_post_meta( $post_id, '_' . 'wcj_product_images_meta_custom_on_archives', true ) ) {
68
+ echo get_post_meta( $post_id, '_' . 'wcj_product_images_meta_custom_on_archives', true );
69
+ } elseif ( '' != get_option( 'wcj_product_images_custom_on_archives', '' ) ) {
70
+ echo get_option( 'wcj_product_images_custom_on_archives' );
71
+ }
72
+ }
73
+
74
+ /**
75
+ * get_meta_box_options.
76
+ *
77
+ * @since 2.2.6
78
+ */
79
+ function get_meta_box_options() {
80
+ return array(
81
+ array(
82
+ 'name' => 'wcj_product_images_meta_custom_on_single',
83
+ 'default' => '',
84
+ 'type' => 'textarea',
85
+ 'title' => __( 'Replace image with custom HTML on single product page', 'woocommerce-jetpack' ),
86
+ ),
87
+ array(
88
+ 'name' => 'wcj_product_images_meta_custom_on_archives',
89
+ 'default' => '',
90
+ 'type' => 'textarea',
91
+ 'title' => __( 'Replace image with custom HTML on archives', 'woocommerce-jetpack' ),
92
+ ),
93
+ );
94
+ }
95
+
96
  /**
97
  * product_images_and_thumbnails_hide_on_single.
98
  */
99
+ function product_images_and_thumbnails_hide_on_single() {
100
  remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
101
  }
102
 
103
  /**
104
  * product_images_hide_on_archive.
105
+ *
106
+ * @version 2.2.6
107
  */
108
+ function product_images_hide_on_archive() {
109
+ if (
110
+ 'yes' === get_option( 'wcj_product_images_hide_on_archive', 'no' ) ||
111
+ '' != get_option( 'wcj_product_images_custom_on_archives', '' ) ||
112
+ ( ( $post_id = get_the_ID() ) > 0 && '' != get_post_meta( $post_id, '_' . 'wcj_product_images_meta_custom_on_archives', true ) )
113
+ ) {
114
+
115
+ remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
116
+
117
+ }
118
  }
119
 
120
  /**
121
  * customize_sale_flash.
122
  */
123
+ function customize_sale_flash( $sale_flash_html, $post, $product ) {
124
 
125
  // Hiding
126
  if ( 'yes' === get_option( 'wcj_product_images_sale_flash_hide_on_archives', 'no' ) && is_archive() ) return '';
131
  get_option( 'wcj_product_images_sale_flash_html' ,
132
  '<span class="onsale">' . __( 'Sale!', 'woocommerce' ) . '</span>' )
133
  );
134
+
135
  }
136
 
137
  /**
138
  * customize_single_product_image_html.
139
+ *
140
+ * @version 2.2.6
141
  */
142
+ function customize_single_product_image_html( $image_link, $post_id ) {
143
+
144
+ if ( '' != get_post_meta( $post_id, '_' . 'wcj_product_images_meta_custom_on_single', true ) ) {
145
+ return get_post_meta( $post_id, '_' . 'wcj_product_images_meta_custom_on_single', true );
146
+ } elseif ( '' != get_option( 'wcj_product_images_custom_on_single', '' ) ) {
147
+ return get_option( 'wcj_product_images_custom_on_single' );
148
+ }
149
  return ( 'yes' === get_option( 'wcj_product_images_hide_on_single', 'no' ) ) ? '' : $image_link;
150
  }
151
 
152
  /**
153
  * customize_single_product_image_thumbnail_html.
154
+ *
155
+ * @version 2.2.6
156
  */
157
+ function customize_single_product_image_thumbnail_html( $image_link ) {
158
+ if ( '' != get_option( 'wcj_product_images_thumbnails_custom_on_single', '' ) ) {
159
+ return get_option( 'wcj_product_images_thumbnails_custom_on_single' );
160
+ }
161
  return ( 'yes' === get_option( 'wcj_product_images_thumbnails_hide_on_single', 'no' ) ) ? '' : $image_link;
162
  }
163
 
164
  /**
165
  * change_product_thumbnails_columns.
166
  */
167
+ function change_product_thumbnails_columns_number( $columns_number ) {
168
  return get_option( 'wcj_product_images_thumbnails_columns', 3 );
169
  }
170
 
171
  /**
172
  * get_settings.
173
+ *
174
+ * @version 2.2.6
175
  */
176
  function get_settings() {
177
 
194
  'type' => 'checkbox',
195
  ),
196
 
197
+ array(
198
+ 'title' => __( 'Replace Image on Single', 'woocommerce-jetpack' ),
199
+ 'desc' => __( 'Replace image on single product page with custom HTML. Leave blank to disable.', 'woocommerce-jetpack' ),
200
+ 'id' => 'wcj_product_images_custom_on_single',
201
+ 'default' => '',
202
+ 'type' => 'custom_textarea',
203
+ 'css' => 'width:66%; min-width:300px;',
204
+ ),
205
+
206
+ array(
207
+ 'title' => __( 'Replace Thumbnails on Single', 'woocommerce-jetpack' ),
208
+ 'desc' => __( 'Replace thumbnails on single product page with custom HTML. Leave blank to disable.', 'woocommerce-jetpack' ),
209
+ 'id' => 'wcj_product_images_thumbnails_custom_on_single',
210
+ 'default' => '',
211
+ 'type' => 'custom_textarea',
212
+ 'css' => 'width:66%; min-width:300px;',
213
+ ),
214
+
215
  array(
216
  'title' => __( 'Image on Single', 'woocommerce-jetpack' ),
217
  'desc' => __( 'Hide', 'woocommerce-jetpack' ),
228
  'type' => 'checkbox',
229
  ),
230
 
231
+ array(
232
+ 'title' => __( 'Replace Image on Archive', 'woocommerce-jetpack' ),
233
+ 'desc' => __( 'Replace image on archive pages with custom HTML. Leave blank to disable.', 'woocommerce-jetpack' ),
234
+ 'id' => 'wcj_product_images_custom_on_archives',
235
+ 'default' => '',
236
+ 'type' => 'custom_textarea',
237
+ 'css' => 'width:66%; min-width:300px;',
238
+ ),
239
+
240
  array(
241
  'title' => __( 'Image on Archives', 'woocommerce-jetpack' ),
242
  'desc' => __( 'Hide', 'woocommerce-jetpack' ),
includes/class-wcj-product-info.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * The WooCommerce Jetpack Product Info class.
6
  *
7
- * @class WCJ_Product_Info
8
- * @version 2.2.0
9
- * @category Class
10
- * @author Algoritmika Ltd.
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -567,6 +565,8 @@ class WCJ_Product_Info {
567
 
568
  /**
569
  * get_time_since_last_sale.
 
 
570
  */
571
  public function get_time_since_last_sale() {
572
  // Constants
@@ -577,7 +577,7 @@ class WCJ_Product_Info {
577
  // Create args for new query
578
  $args = array(
579
  'post_type' => 'shop_order',
580
- 'post_status' => ( true === $do_use_only_completed_orders ? 'completed' : 'any' ),
581
  'posts_per_page' => -1,
582
  'orderby' => 'date',
583
  'order' => 'DESC',
@@ -594,12 +594,14 @@ class WCJ_Product_Info {
594
  if ( $item['product_id'] == $the_ID ) {
595
  // Found sale!
596
  $result = sprintf( __( '%s ago', 'woocommerce-jetpack' ), human_time_diff( get_the_time('U'), current_time('timestamp') ) );
597
- wp_reset_query();
 
598
  return $result;
599
  }
600
  }
601
  endwhile;
602
- wp_reset_query();
 
603
  // No sales found
604
  return false;
605
  }
4
  *
5
  * The WooCommerce Jetpack Product Info class.
6
  *
7
+ * @version 2.2.6
8
+ * @author Algoritmika Ltd.
 
 
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
565
 
566
  /**
567
  * get_time_since_last_sale.
568
+ *
569
+ * @version 2.2.6
570
  */
571
  public function get_time_since_last_sale() {
572
  // Constants
577
  // Create args for new query
578
  $args = array(
579
  'post_type' => 'shop_order',
580
+ 'post_status' => ( true === $do_use_only_completed_orders ? 'wc-completed' : 'any' ),
581
  'posts_per_page' => -1,
582
  'orderby' => 'date',
583
  'order' => 'DESC',
594
  if ( $item['product_id'] == $the_ID ) {
595
  // Found sale!
596
  $result = sprintf( __( '%s ago', 'woocommerce-jetpack' ), human_time_diff( get_the_time('U'), current_time('timestamp') ) );
597
+ //wp_reset_query();
598
+ wp_reset_postdata();
599
  return $result;
600
  }
601
  }
602
  endwhile;
603
+ //wp_reset_query();
604
+ wp_reset_postdata();
605
  // No sales found
606
  return false;
607
  }
includes/class-wcj-purchase-data.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Purchase Data class.
6
  *
7
- * @version 2.2.4
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -15,24 +15,22 @@ if ( ! class_exists( 'WCJ_Purchase_Data' ) ) :
15
 
16
  class WCJ_Purchase_Data extends WCJ_Module {
17
 
18
- /**
19
- * Constructor.
20
  *
21
  * @version 2.2.4
22
- */
23
- public function __construct() {
24
 
25
  $this->id = 'purchase_data';
26
  $this->short_desc = __( 'Product Cost Price', 'woocommerce-jetpack' );
27
  $this->desc = __( 'Save WooCommerce product purchase costs data for admin reports.', 'woocommerce-jetpack' );
28
  parent::__construct();
29
 
30
- if ( $this->is_enabled() ) {
31
 
32
- //if ( 'yes' === get_option( 'wcj_purchase_price_local_enabled' ) ) {
33
- add_action( 'add_meta_boxes', array( $this, 'add_purchase_price_meta_box' ) );
34
- add_action( 'save_post_product', array( $this, 'save_purchase_price_meta_box' ), PHP_INT_MAX, 2 );
35
- //}
36
 
37
  //add_action( 'init', array( $this, 'calculate_all_products_profit' ) );
38
 
@@ -40,14 +38,14 @@ class WCJ_Purchase_Data extends WCJ_Module {
40
  add_filter( 'manage_edit-shop_order_columns', array( $this, 'add_order_columns' ), PHP_INT_MAX );
41
  add_action( 'manage_shop_order_posts_custom_column', array( $this, 'render_order_columns' ), PHP_INT_MAX );
42
  }
43
- }
44
- }
45
 
46
- /**
47
- * add_order_columns.
48
  *
49
  * @since 2.2.4
50
- */
51
  function add_order_columns( $columns ) {
52
  $columns['profit'] = __( 'Profit', 'woocommerce-jetpack' );
53
  return $columns;
@@ -55,9 +53,10 @@ class WCJ_Purchase_Data extends WCJ_Module {
55
 
56
  /**
57
  * Output custom columns for orders
58
- * @param string $column
59
  *
60
- * @since 2.2.4
 
 
61
  */
62
  public function render_order_columns( $column ) {
63
 
@@ -68,6 +67,7 @@ class WCJ_Purchase_Data extends WCJ_Module {
68
  $is_forecasted = false;
69
  foreach ( $the_order->get_items() as $item_id => $item ) {
70
  // $product = $this->get_product_from_item( $item );
 
71
  if ( 0 != ( $purchase_price = wc_get_product_purchase_price( $item['product_id'] ) ) ) {
72
  $the_profit = ( $item['line_total'] + $item['line_tax'] ) - $purchase_price * $item['qty'];
73
  // $total_profit += $the_profit;
@@ -261,9 +261,9 @@ class WCJ_Purchase_Data extends WCJ_Module {
261
  }
262
  }
263
 
264
- /**
265
- * calculate_all_products_profit.
266
- *
267
  function calculate_all_products_profit() {
268
  $args = array(
269
  'post_type' => 'product',
4
  *
5
  * The WooCommerce Jetpack Purchase Data class.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
15
 
16
  class WCJ_Purchase_Data extends WCJ_Module {
17
 
18
+ /**
19
+ * Constructor.
20
  *
21
  * @version 2.2.4
22
+ */
23
+ public function __construct() {
24
 
25
  $this->id = 'purchase_data';
26
  $this->short_desc = __( 'Product Cost Price', 'woocommerce-jetpack' );
27
  $this->desc = __( 'Save WooCommerce product purchase costs data for admin reports.', 'woocommerce-jetpack' );
28
  parent::__construct();
29
 
30
+ if ( $this->is_enabled() ) {
31
 
32
+ add_action( 'add_meta_boxes', array( $this, 'add_purchase_price_meta_box' ) );
33
+ add_action( 'save_post_product', array( $this, 'save_purchase_price_meta_box' ), PHP_INT_MAX, 2 );
 
 
34
 
35
  //add_action( 'init', array( $this, 'calculate_all_products_profit' ) );
36
 
38
  add_filter( 'manage_edit-shop_order_columns', array( $this, 'add_order_columns' ), PHP_INT_MAX );
39
  add_action( 'manage_shop_order_posts_custom_column', array( $this, 'render_order_columns' ), PHP_INT_MAX );
40
  }
41
+ }
42
+ }
43
 
44
+ /**
45
+ * add_order_columns.
46
  *
47
  * @since 2.2.4
48
+ */
49
  function add_order_columns( $columns ) {
50
  $columns['profit'] = __( 'Profit', 'woocommerce-jetpack' );
51
  return $columns;
53
 
54
  /**
55
  * Output custom columns for orders
 
56
  *
57
+ * @param string $column
58
+ * @version 2.2.6
59
+ * @since 2.2.4
60
  */
61
  public function render_order_columns( $column ) {
62
 
67
  $is_forecasted = false;
68
  foreach ( $the_order->get_items() as $item_id => $item ) {
69
  // $product = $this->get_product_from_item( $item );
70
+ $the_profit = 0;
71
  if ( 0 != ( $purchase_price = wc_get_product_purchase_price( $item['product_id'] ) ) ) {
72
  $the_profit = ( $item['line_total'] + $item['line_tax'] ) - $purchase_price * $item['qty'];
73
  // $total_profit += $the_profit;
261
  }
262
  }
263
 
264
+ /**
265
+ * calculate_all_products_profit.
266
+ *
267
  function calculate_all_products_profit() {
268
  $args = array(
269
  'post_type' => 'product',
includes/class-wcj-related-products.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Related Products class.
6
  *
7
- * @version 2.2.1
8
  * @author Algoritmika Ltd.
9
  */
10
 
@@ -16,6 +16,8 @@ class WCJ_Related_Products extends WCJ_Module {
16
 
17
  /**
18
  * Constructor.
 
 
19
  */
20
  public function __construct() {
21
 
@@ -26,38 +28,61 @@ class WCJ_Related_Products extends WCJ_Module {
26
 
27
  if ( $this->is_enabled() ) {
28
 
29
- add_filter( 'woocommerce_related_products_args', array( $this, 'related_products_limit' ), PHP_INT_MAX );
30
-
31
- add_filter( 'woocommerce_output_related_products_args', array( $this, 'related_products_limit_args' ), PHP_INT_MAX );
32
 
33
  if ( 'no' === get_option( 'wcj_product_info_related_products_relate_by_category' ) ) {
34
- apply_filters( 'woocommerce_product_related_posts_relate_by_category', false );
 
 
35
  }
36
 
37
  if ( 'no' === get_option( 'wcj_product_info_related_products_relate_by_tag' ) ) {
38
- apply_filters( 'woocommerce_product_related_posts_relate_by_tag', false );
 
 
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
  }
42
 
43
  /**
44
  * Change number of related products on product page.
 
 
45
  */
46
- function related_products_limit_args( $args ) {
 
 
 
47
  $args['posts_per_page'] = get_option( 'wcj_product_info_related_products_num' );
48
  $args['orderby'] = get_option( 'wcj_product_info_related_products_orderby' );
49
- $args['columns'] = get_option( 'wcj_product_info_related_products_columns' );
 
 
50
  return $args;
51
  }
52
 
53
  /**
54
  * Change number of related products on product page.
 
 
55
  */
56
- function related_products_limit( $args ) {
57
- $args['posts_per_page'] = get_option( 'wcj_product_info_related_products_num' );
58
- if ( 'yes' == get_option( 'wcj_product_info_related_products_hide' ) ) $args['post_type'] = '';
59
- $args['orderby'] = get_option( 'wcj_product_info_related_products_orderby' );
60
- if ( get_option( 'wcj_product_info_related_products_orderby' ) != 'rand' ) $args['order'] = get_option( 'wcj_product_info_related_products_order' );
61
  return $args;
62
  }
63
 
4
  *
5
  * The WooCommerce Jetpack Related Products class.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
16
 
17
  /**
18
  * Constructor.
19
+ *
20
+ * @version 2.2.6
21
  */
22
  public function __construct() {
23
 
28
 
29
  if ( $this->is_enabled() ) {
30
 
31
+ add_filter( 'woocommerce_related_products_args', array( $this, 'related_products_args' ), PHP_INT_MAX );
32
+ add_filter( 'woocommerce_output_related_products_args', array( $this, 'output_related_products_args' ), PHP_INT_MAX );
 
33
 
34
  if ( 'no' === get_option( 'wcj_product_info_related_products_relate_by_category' ) ) {
35
+ add_filter( 'woocommerce_product_related_posts_relate_by_category', '__return_false', PHP_INT_MAX );
36
+ } else {
37
+ add_filter( 'woocommerce_product_related_posts_relate_by_category', '__return_true', PHP_INT_MAX );
38
  }
39
 
40
  if ( 'no' === get_option( 'wcj_product_info_related_products_relate_by_tag' ) ) {
41
+ add_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_false', PHP_INT_MAX );
42
+ } else {
43
+ add_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_true', PHP_INT_MAX );
44
  }
45
+
46
+ add_action( 'woojetpack_after_settings_save', array( $this, 'delete_product_transients' ), PHP_INT_MAX, 2 );
47
+ }
48
+ }
49
+
50
+ /**
51
+ * delete_product_transients.
52
+ *
53
+ * @since 2.2.6
54
+ */
55
+ function delete_product_transients( $sections, $current_section ) {
56
+ if ( 'related_products' === $current_section ) {
57
+ wc_delete_product_transients();
58
  }
59
  }
60
 
61
  /**
62
  * Change number of related products on product page.
63
+ *
64
+ * @version 2.2.6
65
  */
66
+ function related_products_args( $args ) {
67
+ if ( 'yes' === get_option( 'wcj_product_info_related_products_hide' ) ) {
68
+ return array();
69
+ }
70
  $args['posts_per_page'] = get_option( 'wcj_product_info_related_products_num' );
71
  $args['orderby'] = get_option( 'wcj_product_info_related_products_orderby' );
72
+ if ( get_option( 'wcj_product_info_related_products_orderby' ) != 'rand' ) {
73
+ $args['order'] = get_option( 'wcj_product_info_related_products_order' );
74
+ }
75
  return $args;
76
  }
77
 
78
  /**
79
  * Change number of related products on product page.
80
+ *
81
+ * @version 2.2.6
82
  */
83
+ function output_related_products_args( $args ) {
84
+ $args['columns'] = get_option( 'wcj_product_info_related_products_columns' );
85
+ $args = $this->related_products_args( $args );
 
 
86
  return $args;
87
  }
88
 
includes/class-wcj-sorting.php CHANGED
@@ -127,33 +127,33 @@ class WCJ_Sorting extends WCJ_Module {
127
 
128
  switch ( $orderby ) :
129
  case 'title_asc':
130
- $args['orderby'] = 'title';
131
- $args['order'] = 'asc';
132
  $args['meta_key'] = '';
133
  break;
134
  case 'title_desc':
135
- $args['orderby'] = 'title';
136
- $args['order'] = 'desc';
137
  $args['meta_key'] = '';
138
  break;
139
  case 'sku_asc':
140
- $args['orderby'] = ( 'no' === apply_filters( 'wcj_get_option_filter', 'no', get_option( 'wcj_sorting_by_sku_num_enabled', 'no' ) ) ) ? 'meta_value' : 'meta_value_num';
141
- $args['order'] = 'asc';
142
  $args['meta_key'] = '_sku';
143
  break;
144
  case 'sku_desc':
145
- $args['orderby'] = ( 'no' === apply_filters( 'wcj_get_option_filter', 'no', get_option( 'wcj_sorting_by_sku_num_enabled', 'no' ) ) ) ? 'meta_value' : 'meta_value_num';
146
- $args['order'] = 'desc';
147
  $args['meta_key'] = '_sku';
148
  break;
149
  case 'stock_quantity_asc':
150
- $args['orderby'] = 'meta_value_num';
151
- $args['order'] = 'asc';
152
  $args['meta_key'] = '_stock';
153
  break;
154
  case 'stock_quantity_desc':
155
- $args['orderby'] = 'meta_value_num';
156
- $args['order'] = 'desc';
157
  $args['meta_key'] = '_stock';
158
  break;
159
  endswitch;
127
 
128
  switch ( $orderby ) :
129
  case 'title_asc':
130
+ $args['orderby'] = 'title';
131
+ $args['order'] = 'asc';
132
  $args['meta_key'] = '';
133
  break;
134
  case 'title_desc':
135
+ $args['orderby'] = 'title';
136
+ $args['order'] = 'desc';
137
  $args['meta_key'] = '';
138
  break;
139
  case 'sku_asc':
140
+ $args['orderby'] = ( 'no' === apply_filters( 'wcj_get_option_filter', 'no', get_option( 'wcj_sorting_by_sku_num_enabled', 'no' ) ) ) ? 'meta_value' : 'meta_value_num';
141
+ $args['order'] = 'asc';
142
  $args['meta_key'] = '_sku';
143
  break;
144
  case 'sku_desc':
145
+ $args['orderby'] = ( 'no' === apply_filters( 'wcj_get_option_filter', 'no', get_option( 'wcj_sorting_by_sku_num_enabled', 'no' ) ) ) ? 'meta_value' : 'meta_value_num';
146
+ $args['order'] = 'desc';
147
  $args['meta_key'] = '_sku';
148
  break;
149
  case 'stock_quantity_asc':
150
+ $args['orderby'] = 'meta_value_num';
151
+ $args['order'] = 'asc';
152
  $args['meta_key'] = '_stock';
153
  break;
154
  case 'stock_quantity_desc':
155
+ $args['orderby'] = 'meta_value_num';
156
+ $args['order'] = 'desc';
157
  $args['meta_key'] = '_stock';
158
  break;
159
  endswitch;
includes/class-wcj-wholesale-price.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Wholesale Price class.
6
  *
7
- * @version 2.2.2
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -17,6 +17,8 @@ class WCJ_Wholesale_Price extends WCJ_Module {
17
 
18
  /**
19
  * Constructor.
 
 
20
  */
21
  function __construct() {
22
 
@@ -27,9 +29,12 @@ class WCJ_Wholesale_Price extends WCJ_Module {
27
 
28
  if ( $this->is_enabled() ) {
29
 
 
 
 
30
  add_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
31
- add_filter( 'woocommerce_get_sale_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
32
- add_filter( 'woocommerce_get_regular_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
33
 
34
  if ( 'yes' === get_option( 'wcj_wholesale_price_show_info_on_cart', 'no' ) ) {
35
  add_filter( 'woocommerce_cart_item_price', array( $this, 'add_discount_info_to_cart_page' ), PHP_INT_MAX, 3 );
@@ -37,26 +42,49 @@ class WCJ_Wholesale_Price extends WCJ_Module {
37
  }
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * add_discount_info_to_cart_page.
 
 
42
  */
43
  function add_discount_info_to_cart_page( $price_html, $cart_item, $cart_item_key ) {
44
 
45
  $_product = wc_get_product( $cart_item['product_id'] );
46
 
47
  remove_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
48
- $old_price_html = $_product->get_price_html();
 
49
  add_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
50
 
51
  if ( $old_price_html != $price_html ) {
52
 
53
  $the_quantity = $this->get_wholesale_quantity( $_product );
54
- $discount_percent = $this->get_discount_percent_by_quantity( $the_quantity );
 
 
 
55
 
56
  $wholesale_price_html = get_option( 'wcj_wholesale_price_show_info_on_cart_format' );
57
  $wholesale_price_html = str_replace( '%old_price%', $old_price_html, $wholesale_price_html );
58
  $wholesale_price_html = str_replace( '%price%', $price_html, $wholesale_price_html );
59
- $wholesale_price_html = str_replace( '%discount_percent%', $discount_percent, $wholesale_price_html );
 
60
 
61
  return $wholesale_price_html;
62
  }
@@ -65,32 +93,38 @@ class WCJ_Wholesale_Price extends WCJ_Module {
65
  }
66
 
67
  /**
68
- * get_discount_percent_by_quantity.
69
  */
70
- private function get_discount_percent_by_quantity( $quantity ) {
71
 
72
  $max_qty_level = 1;
73
- $discount_percent = 0;
74
 
75
  for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_wholesale_price_levels_number', 1 ) ); $i++ ) {
76
 
77
  $level_qty = get_option( 'wcj_wholesale_price_level_min_qty_' . $i, PHP_INT_MAX );
78
  if ( $quantity >= $level_qty && $level_qty >= $max_qty_level ) {
79
  $max_qty_level = $level_qty;
80
- $discount_percent = get_option( 'wcj_wholesale_price_level_discount_percent_' . $i, 0 );
81
  }
82
  }
83
 
84
- return $discount_percent;
85
  }
86
 
87
  /**
88
  * get_wholesale_price.
 
 
89
  */
90
  private function get_wholesale_price( $price, $quantity ) {
91
- $discount_percent = $this->get_discount_percent_by_quantity( $quantity );
92
- $discount_koef = 1.0 - ( $discount_percent / 100.0 );
93
- return $price * $discount_koef;
 
 
 
 
94
  }
95
 
96
  /**
@@ -114,14 +148,21 @@ class WCJ_Wholesale_Price extends WCJ_Module {
114
 
115
  /**
116
  * wholesale_price.
 
 
117
  */
118
  function wholesale_price( $price, $_product ) {
119
 
120
  if ( ! wcj_is_product_wholesale_enabled( $_product->id ) ) return $price;
121
 
122
  // Show only on checkout and cart pages
123
- $is_ajax = ( is_admin() && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) ? true : false;
124
- if ( ! ( is_checkout() || is_cart() || $is_ajax ) ) return $price;
 
 
 
 
 
125
 
126
  // Maybe set wholesale price
127
  $the_quantity = $this->get_wholesale_quantity( $_product );
@@ -162,6 +203,14 @@ class WCJ_Wholesale_Price extends WCJ_Module {
162
  'type' => 'checkbox',
163
  ),
164
 
 
 
 
 
 
 
 
 
165
  array(
166
  'title' => __( 'Show discount info on cart page', 'woocommerce-jetpack' ),
167
  'desc' => __( 'Show', 'woocommerce-jetpack' ),
@@ -173,11 +222,22 @@ class WCJ_Wholesale_Price extends WCJ_Module {
173
  array(
174
  'title' => __( 'If show discount info on cart page is enabled, set format here', 'woocommerce-jetpack' ),
175
  'id' => 'wcj_wholesale_price_show_info_on_cart_format',
176
- 'default' => '<del>%old_price%</del> %price%<br>You save: <span style="color:red;">%discount_percent%%</span>',
177
  'type' => 'textarea',
178
  'css' => 'width: 450px;',
179
  ),
180
 
 
 
 
 
 
 
 
 
 
 
 
181
  array(
182
  'title' => __( 'Products to include', 'woocommerce-jetpack' ),
183
  'desc' => __( 'Leave blank to include all products.', 'woocommerce-jetpack' ),
@@ -214,14 +274,23 @@ class WCJ_Wholesale_Price extends WCJ_Module {
214
  'custom_attributes' => array('step' => '1', 'min' => '0', ),
215
  );
216
  $settings[] = array(
217
- 'title' => __( 'Discount (%)', 'woocommerce-jetpack' ) . ' #' . $i,
218
- 'desc' => __( 'Discount (%)', 'woocommerce-jetpack' ),
219
  'id' => 'wcj_wholesale_price_level_discount_percent_' . $i,
220
  'default' => 0,
221
  'type' => 'number',
222
  //'css' => 'width:50%;min-width:300px;height:100px;',
223
  'custom_attributes' => array('step' => '0.0001', 'min' => '0', ),
224
  );
 
 
 
 
 
 
 
 
 
225
  }
226
 
227
  $settings[] = array(
4
  *
5
  * The WooCommerce Jetpack Wholesale Price class.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
17
 
18
  /**
19
  * Constructor.
20
+ *
21
+ * @version 2.2.6
22
  */
23
  function __construct() {
24
 
29
 
30
  if ( $this->is_enabled() ) {
31
 
32
+ /* add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
33
+ add_action( 'save_post_product', array( $this, 'save_meta_box' ), PHP_INT_MAX, 2 ); */
34
+
35
  add_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
36
+ //add_filter( 'woocommerce_get_sale_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
37
+ //add_filter( 'woocommerce_get_regular_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
38
 
39
  if ( 'yes' === get_option( 'wcj_wholesale_price_show_info_on_cart', 'no' ) ) {
40
  add_filter( 'woocommerce_cart_item_price', array( $this, 'add_discount_info_to_cart_page' ), PHP_INT_MAX, 3 );
42
  }
43
  }
44
 
45
+ /**
46
+ * get_meta_box_options.
47
+ *
48
+ * @since 2.2.6
49
+ *
50
+ function get_meta_box_options() {
51
+ return array(
52
+ array(
53
+ 'name' => 'wcj_local_wholesale_price_levels_number',
54
+ 'default' => 0,
55
+ 'type' => 'number',
56
+ 'title' => __( 'Number', 'woocommerce-jetpack' ),
57
+ ),
58
+ );
59
+ }
60
+
61
  /**
62
  * add_discount_info_to_cart_page.
63
+ *
64
+ * @version 2.2.6
65
  */
66
  function add_discount_info_to_cart_page( $price_html, $cart_item, $cart_item_key ) {
67
 
68
  $_product = wc_get_product( $cart_item['product_id'] );
69
 
70
  remove_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
71
+ //$old_price_html = $_product->get_price_html();
72
+ $old_price_html = wc_price( $_product->get_price() );
73
  add_filter( 'woocommerce_get_price', array( $this, 'wholesale_price' ), PHP_INT_MAX, 2 );
74
 
75
  if ( $old_price_html != $price_html ) {
76
 
77
  $the_quantity = $this->get_wholesale_quantity( $_product );
78
+
79
+ $discount = $this->get_discount_by_quantity( $the_quantity );
80
+
81
+ if ( 'fixed' === get_option( 'wcj_wholesale_price_discount_type' ) ) $discount = wc_price( $discount );
82
 
83
  $wholesale_price_html = get_option( 'wcj_wholesale_price_show_info_on_cart_format' );
84
  $wholesale_price_html = str_replace( '%old_price%', $old_price_html, $wholesale_price_html );
85
  $wholesale_price_html = str_replace( '%price%', $price_html, $wholesale_price_html );
86
+ $wholesale_price_html = str_replace( '%discount_percent%', $discount, $wholesale_price_html ); //depreciated
87
+ $wholesale_price_html = str_replace( '%discount_value%', $discount, $wholesale_price_html );
88
 
89
  return $wholesale_price_html;
90
  }
93
  }
94
 
95
  /**
96
+ * get_discount_by_quantity.
97
  */
98
+ private function get_discount_by_quantity( $quantity ) {
99
 
100
  $max_qty_level = 1;
101
+ $discount = 0;
102
 
103
  for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_wholesale_price_levels_number', 1 ) ); $i++ ) {
104
 
105
  $level_qty = get_option( 'wcj_wholesale_price_level_min_qty_' . $i, PHP_INT_MAX );
106
  if ( $quantity >= $level_qty && $level_qty >= $max_qty_level ) {
107
  $max_qty_level = $level_qty;
108
+ $discount = get_option( 'wcj_wholesale_price_level_discount_percent_' . $i, 0 );
109
  }
110
  }
111
 
112
+ return $discount;
113
  }
114
 
115
  /**
116
  * get_wholesale_price.
117
+ *
118
+ * @version 2.2.6
119
  */
120
  private function get_wholesale_price( $price, $quantity ) {
121
+ $discount = $this->get_discount_by_quantity( $quantity );
122
+ if ( 'percent' === get_option( 'wcj_wholesale_price_discount_type' ) ) {
123
+ $discount_koef = 1.0 - ( $discount / 100.0 );
124
+ return $price * $discount_koef;
125
+ } else {
126
+ return ( $price - $discount );
127
+ }
128
  }
129
 
130
  /**
148
 
149
  /**
150
  * wholesale_price.
151
+ *
152
+ * @version 2.2.6
153
  */
154
  function wholesale_price( $price, $_product ) {
155
 
156
  if ( ! wcj_is_product_wholesale_enabled( $_product->id ) ) return $price;
157
 
158
  // Show only on checkout and cart pages
159
+ //$is_ajax = ( is_admin() && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) ? true : false;
160
+ if ( ! ( is_checkout() || is_cart() /* || $is_ajax */ ) ) return $price;
161
+
162
+ // If other discount was applied in cart...
163
+ if ( 'yes' === get_option( 'wcj_wholesale_price_apply_only_if_no_other_discounts', 'no' ) ) {
164
+ if ( WC()->cart->get_total_discount() > 0 || sizeof( WC()->cart->applied_coupons ) > 0 ) return $price;
165
+ }
166
 
167
  // Maybe set wholesale price
168
  $the_quantity = $this->get_wholesale_quantity( $_product );
203
  'type' => 'checkbox',
204
  ),
205
 
206
+ array(
207
+ 'title' => __( 'Apply wholesale discount only if no other cart discounts were applied', 'woocommerce-jetpack' ),
208
+ 'desc' => __( 'Enable', 'woocommerce-jetpack' ),
209
+ 'id' => 'wcj_wholesale_price_apply_only_if_no_other_discounts',
210
+ 'default' => 'no',
211
+ 'type' => 'checkbox',
212
+ ),
213
+
214
  array(
215
  'title' => __( 'Show discount info on cart page', 'woocommerce-jetpack' ),
216
  'desc' => __( 'Show', 'woocommerce-jetpack' ),
222
  array(
223
  'title' => __( 'If show discount info on cart page is enabled, set format here', 'woocommerce-jetpack' ),
224
  'id' => 'wcj_wholesale_price_show_info_on_cart_format',
225
+ 'default' => '<del>%old_price%</del> %price%<br>You save: <span style="color:red;">%discount_value%%</span>',
226
  'type' => 'textarea',
227
  'css' => 'width: 450px;',
228
  ),
229
 
230
+ array(
231
+ 'title' => __( 'Discount Type', 'woocommerce-jetpack' ),
232
+ 'id' => 'wcj_wholesale_price_discount_type',
233
+ 'default' => 'percent',
234
+ 'type' => 'select',
235
+ 'options' => array(
236
+ 'percent' => __( 'Percent', 'woocommerce-jetpack' ),
237
+ 'fixed' => __( 'Fixed', 'woocommerce-jetpack' ),
238
+ ),
239
+ ),
240
+
241
  array(
242
  'title' => __( 'Products to include', 'woocommerce-jetpack' ),
243
  'desc' => __( 'Leave blank to include all products.', 'woocommerce-jetpack' ),
274
  'custom_attributes' => array('step' => '1', 'min' => '0', ),
275
  );
276
  $settings[] = array(
277
+ 'title' => __( 'Discount', 'woocommerce-jetpack' ) . ' #' . $i,
278
+ 'desc' => __( 'Discount', 'woocommerce-jetpack' ),
279
  'id' => 'wcj_wholesale_price_level_discount_percent_' . $i,
280
  'default' => 0,
281
  'type' => 'number',
282
  //'css' => 'width:50%;min-width:300px;height:100px;',
283
  'custom_attributes' => array('step' => '0.0001', 'min' => '0', ),
284
  );
285
+ /* $settings[] = array(
286
+ 'title' => __( 'Discount (fixed)', 'woocommerce-jetpack' ) . ' #' . $i,
287
+ 'desc' => __( 'Discount (fixed)', 'woocommerce-jetpack' ),
288
+ 'id' => 'wcj_wholesale_price_level_discount_fixed_' . $i,
289
+ 'default' => 0,
290
+ 'type' => 'number',
291
+ //'css' => 'width:50%;min-width:300px;height:100px;',
292
+ 'custom_attributes' => array('step' => '0.0001', 'min' => '0', ),
293
+ ); */
294
  }
295
 
296
  $settings[] = array(
includes/classes/class-wcj-module.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Module class.
6
  *
7
- * @version 2.2.3
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -35,6 +35,84 @@ class WCJ_Module {
35
  }
36
  }
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  /**
39
  * is_enabled.
40
  */
@@ -70,9 +148,9 @@ class WCJ_Module {
70
  function get_cat_by_section( $section ) {
71
  $cats = include( wcj_plugin_path() . '/includes/admin/' . 'wcj-modules-cats.php' );
72
  foreach ( $cats as $id => $label_info ) {
73
- if ( ( ! empty( $label_info['all_cat_ids'] ) ) &&
74
- ( is_array( $label_info['all_cat_ids'] ) ) &&
75
- ( in_array( $section, $label_info['all_cat_ids'] ) )
76
  ) {
77
  return $id;
78
  }
4
  *
5
  * The WooCommerce Jetpack Module class.
6
  *
7
+ * @version 2.2.6
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
35
  }
36
  }
37
 
38
+ /**
39
+ * get_settings.
40
+ *
41
+ * @since 2.2.6
42
+ */
43
+ function get_settings() {
44
+ $settings = array();
45
+ return $this->add_enable_module_setting( $settings );
46
+ }
47
+
48
+ /**
49
+ * save_meta_box.
50
+ *
51
+ * @since 2.2.6
52
+ */
53
+ function save_meta_box( $post_id, $post ) {
54
+ // Check that we are saving with current metabox displayed.
55
+ if ( ! isset( $_POST[ 'woojetpack_' . $this->id . '_save_post' ] ) ) return;
56
+ // Save options
57
+ foreach ( $this->get_meta_box_options() as $option ) {
58
+ $option_value = isset( $_POST[ $option['name'] ] ) ? $_POST[ $option['name'] ] : $option['default'];
59
+ update_post_meta( $post_id, '_' . $option['name'], $option_value );
60
+ }
61
+ }
62
+
63
+ /**
64
+ * add_meta_box.
65
+ *
66
+ * @since 2.2.6
67
+ */
68
+ function add_meta_box() {
69
+ add_meta_box(
70
+ 'wc-jetpack-' . $this->id,
71
+ __( 'WooCommerce Jetpack', 'woocommerce-jetpack' ) . ': ' . $this->short_desc,
72
+ array( $this, 'create_meta_box' ),
73
+ 'product',
74
+ 'normal',
75
+ 'high' );
76
+ }
77
+
78
+ /**
79
+ * create_meta_box.
80
+ *
81
+ * @since 2.2.6
82
+ */
83
+ function create_meta_box() {
84
+ $current_post_id = get_the_ID();
85
+ $html = '';
86
+ //$html .= '<div style="width:40%;">';
87
+ $html .= '<table>';
88
+ foreach ( $this->get_meta_box_options() as $option ) {
89
+ $option_value = get_post_meta( $current_post_id, '_' . $option['name'], true );
90
+ $input_ending = ' id="' . $option['name'] . '" name="' . $option['name'] . '" value="' . $option_value . '">';
91
+ switch ( $option['type'] ) {
92
+ case 'number':
93
+ $field_html = '<input class="short" type="number"' . $input_ending;
94
+ break;
95
+ case 'price':
96
+ $field_html = '<input class="short wc_input_price" type="number" step="0.0001"' . $input_ending;
97
+ break;
98
+ case 'date':
99
+ $field_html = '<input class="input-text" display="date" type="text"' . $input_ending;
100
+ break;
101
+ case 'textarea':
102
+ $field_html = '<textarea style="min-width:300px;"' . ' id="' . $option['name'] . '" name="' . $option['name'] . '">' . $option_value . '</textarea>';
103
+ break;
104
+ }
105
+ $html .= '<tr>';
106
+ $html .= '<th style="text-align:left;">' . $option['title'] . '</th>';
107
+ $html .= '<td>' . $field_html . '</td>';
108
+ $html .= '</tr>';
109
+ }
110
+ $html .= '</table>';
111
+ $html .= '<input type="hidden" name="woojetpack_' . $this->id . '_save_post" value="woojetpack_' . $this->id . '_save_post">';
112
+ //$html .= '</div>';
113
+ echo $html;
114
+ }
115
+
116
  /**
117
  * is_enabled.
118
  */
148
  function get_cat_by_section( $section ) {
149
  $cats = include( wcj_plugin_path() . '/includes/admin/' . 'wcj-modules-cats.php' );
150
  foreach ( $cats as $id => $label_info ) {
151
+ if ( ( ! empty( $label_info['all_cat_ids'] ) ) &&
152
+ ( is_array( $label_info['all_cat_ids'] ) ) &&
153
+ ( in_array( $section, $label_info['all_cat_ids'] ) )
154
  ) {
155
  return $id;
156
  }
includes/functions/wcj-functions.php CHANGED
@@ -4,10 +4,22 @@
4
  *
5
  * The WooCommerce Jetpack Functions.
6
  *
7
- * @version 2.2.2
8
  * @author Algoritmika Ltd.
9
  */
10
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  /**
12
  * wcj_get_wcj_uploads_dir.
13
  */
4
  *
5
  * The WooCommerce Jetpack Functions.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
11
+ /*
12
+ * is_frontend()
13
+ *
14
+ * @since 2.2.6
15
+ * @return boolean
16
+ */
17
+ if ( ! function_exists( 'wcj_is_frontend' ) ) {
18
+ function wcj_is_frontend() {
19
+ return ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) ? true : false;
20
+ }
21
+ }
22
+
23
  /**
24
  * wcj_get_wcj_uploads_dir.
25
  */
includes/price-by-country/class-wcj-price-by-country-core.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Price by Country Core class.
6
  *
7
- * @version 2.2.2
8
  * @author Algoritmika Ltd.
9
  */
10
 
@@ -173,6 +173,8 @@ class WCJ_Price_by_Country_Core {
173
 
174
  /**
175
  * get_customer_country_group_id.
 
 
176
  */
177
  public function get_customer_country_group_id() {
178
 
@@ -181,11 +183,20 @@ class WCJ_Price_by_Country_Core {
181
  // return $this->customer_country_group_id;
182
 
183
  // We've already tried - no country was detected, no need to try again
184
- if ( -1 === $this->customer_country_group_id )
185
- return null;
186
 
187
  if ( isset( $_GET['country'] ) && '' != $_GET['country'] && is_super_admin() ) {
 
188
  $country = $_GET['country'];
 
 
 
 
 
 
 
 
189
  } else {
190
 
191
  if ( 'by_ip' === get_option( 'wcj_price_by_country_customer_country_detection_method', 'by_ip' ) ) {
@@ -215,6 +226,7 @@ class WCJ_Price_by_Country_Core {
215
  }
216
  }
217
 
 
218
  if ( null === $country ) {
219
  $this->customer_country_group_id = -1;
220
  return null;
4
  *
5
  * The WooCommerce Jetpack Price by Country Core class.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
173
 
174
  /**
175
  * get_customer_country_group_id.
176
+ *
177
+ * @version 2.2.6
178
  */
179
  public function get_customer_country_group_id() {
180
 
183
  // return $this->customer_country_group_id;
184
 
185
  // We've already tried - no country was detected, no need to try again
186
+ /* if ( -1 === $this->customer_country_group_id )
187
+ return null; */
188
 
189
  if ( isset( $_GET['country'] ) && '' != $_GET['country'] && is_super_admin() ) {
190
+
191
  $country = $_GET['country'];
192
+
193
+ } elseif ( 'yes' === get_option( 'wcj_price_by_country_override_on_checkout_with_billing_country', 'no' )
194
+ && is_checkout()
195
+ && '' != WC()->customer->get_country()
196
+ ) {
197
+
198
+ $country = WC()->customer->get_country();
199
+
200
  } else {
201
 
202
  if ( 'by_ip' === get_option( 'wcj_price_by_country_customer_country_detection_method', 'by_ip' ) ) {
226
  }
227
  }
228
 
229
+
230
  if ( null === $country ) {
231
  $this->customer_country_group_id = -1;
232
  return null;
includes/reports/wcj-class-reports-stock.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Stock Reports class.
6
  *
7
- * @version 2.2.2
8
  * @author Algoritmika Ltd.
9
  */
10
 
@@ -152,12 +152,14 @@ class WCJ_Reports_Stock {
152
 
153
  /*
154
  * gather_orders_data.
 
 
155
  */
156
- public function gather_orders_data( &$products_info ) {
157
 
158
  $args_orders = array(
159
  'post_type' => 'shop_order',
160
- 'post_status' => 'completed',
161
  'posts_per_page' => -1,
162
  'orderby' => 'date',
163
  'order' => 'DESC',
4
  *
5
  * The WooCommerce Jetpack Stock Reports class.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
152
 
153
  /*
154
  * gather_orders_data.
155
+ *
156
+ * @version 2.2.6
157
  */
158
+ function gather_orders_data( &$products_info ) {
159
 
160
  $args_orders = array(
161
  'post_type' => 'shop_order',
162
+ 'post_status' => 'wc-completed',
163
  'posts_per_page' => -1,
164
  'orderby' => 'date',
165
  'order' => 'DESC',
includes/shortcodes/class-wcj-orders-shortcodes.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Orders Shortcodes class.
6
  *
7
- * @version 2.2.0
8
  * @author Algoritmika Ltd.
9
  */
10
 
@@ -212,11 +212,15 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
212
  return $this->the_order->billing_phone;
213
  }
214
 
215
- /**
216
- * wcj_order_checkout_field.
217
- */
 
 
218
  function wcj_order_checkout_field( $atts ) {
219
- return ( '' != $atts['field_id'] ) ? $this->the_order->$atts['field_id'] : '';
 
 
220
  }
221
 
222
  /**
4
  *
5
  * The WooCommerce Jetpack Orders Shortcodes class.
6
  *
7
+ * @version 2.2.6
8
  * @author Algoritmika Ltd.
9
  */
10
 
212
  return $this->the_order->billing_phone;
213
  }
214
 
215
+ /**
216
+ * wcj_order_checkout_field.
217
+ *
218
+ * @version 2.2.6
219
+ */
220
  function wcj_order_checkout_field( $atts ) {
221
+ if ( '' == $atts['field_id'] ) return '';
222
+ $field_array = $this->the_order->$atts['field_id'];
223
+ return ( isset( $field_array['value'] ) ) ? $field_array['value'] : '';
224
  }
225
 
226
  /**
includes/shortcodes/class-wcj-products-shortcodes.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * The WooCommerce Jetpack Products Shortcodes class.
6
  *
7
- * @version 2.2.2
8
- * @author Algoritmika Ltd.
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit;
@@ -14,10 +14,12 @@ if ( ! class_exists( 'WCJ_Products_Shortcodes' ) ) :
14
 
15
  class WCJ_Products_Shortcodes extends WCJ_Shortcodes {
16
 
17
- /**
18
- * Constructor.
19
- */
20
- public function __construct() {
 
 
21
 
22
  $this->the_shortcodes = array(
23
  'wcj_product_image',
@@ -32,6 +34,14 @@ class WCJ_Products_Shortcodes extends WCJ_Shortcodes {
32
  'wcj_product_you_save_percent',
33
  'wcj_product_tags',
34
  'wcj_product_purchase_price',
 
 
 
 
 
 
 
 
35
  );
36
 
37
  $this->the_atts = array(
@@ -71,6 +81,144 @@ class WCJ_Products_Shortcodes extends WCJ_Shortcodes {
71
  return $atts;
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  /**
75
  * wcj_product_purchase_price.
76
  *
@@ -79,7 +227,6 @@ class WCJ_Products_Shortcodes extends WCJ_Shortcodes {
79
  function wcj_product_purchase_price( $atts ) {
80
  $purchase_price = wc_get_product_purchase_price( $the_product->id );
81
  return wc_price( $purchase_price );
82
- //return get_post_meta( $the_product->id, '_' . 'wcj_purchase_price', true );
83
  }
84
 
85
  /**
4
  *
5
  * The WooCommerce Jetpack Products Shortcodes class.
6
  *
7
+ * @version 2.2.6
8
+ * @author Algoritmika Ltd.
9
  */
10
 
11
  if ( ! defined( 'ABSPATH' ) ) exit;
14
 
15
  class WCJ_Products_Shortcodes extends WCJ_Shortcodes {
16
 
17
+ /**
18
+ * Constructor.
19
+ *
20
+ * @version 2.2.6
21
+ */
22
+ public function __construct() {
23
 
24
  $this->the_shortcodes = array(
25
  'wcj_product_image',
34
  'wcj_product_you_save_percent',
35
  'wcj_product_tags',
36
  'wcj_product_purchase_price',
37
+ 'wcj_product_total_sales',
38
+ 'wcj_product_total_orders',
39
+ 'wcj_product_total_orders_sum',
40
+ 'wcj_product_crowdfunding_goal',
41
+ 'wcj_product_crowdfunding_goal_remaining',
42
+ 'wcj_product_crowdfunding_startdate',
43
+ 'wcj_product_crowdfunding_deadline',
44
+ 'wcj_product_crowdfunding_time_remaining',
45
  );
46
 
47
  $this->the_atts = array(
81
  return $atts;
82
  }
83
 
84
+ /**
85
+ * get_product_orders_data.
86
+ *
87
+ * @version 2.2.6
88
+ * @since 2.2.6
89
+ */
90
+ function get_product_orders_data( $return_value = 'total_orders' ) {
91
+ $total_orders = 0;
92
+ $total_sum = 0;
93
+ $args = array(
94
+ 'post_type' => 'shop_order',
95
+ 'post_status' => 'wc-completed',
96
+ 'posts_per_page' => -1,
97
+ 'orderby' => 'date',
98
+ 'order' => 'ASC',
99
+ 'date_query' => array(
100
+ array(
101
+ 'after' => get_post_meta( $this->the_product->id, '_' . 'wcj_crowdfunding_startdate', true ),
102
+ 'inclusive' => true,
103
+ ),
104
+ ),
105
+ );
106
+ $loop = new WP_Query( $args );
107
+ while ( $loop->have_posts() ) : $loop->the_post();
108
+ $order_id = $loop->post->ID;
109
+ $the_order = wc_get_order( $order_id );
110
+ $the_items = $the_order->get_items();
111
+ foreach( $the_items as $item ) {
112
+ if ( $this->the_product->id == $item['product_id'] ) {
113
+ $total_sum += $item['line_total'] + $item['line_tax'];
114
+ $total_orders++;
115
+ }
116
+ }
117
+ endwhile;
118
+ wp_reset_postdata();
119
+ return ( 'orders_sum' === $return_value ) ? $total_sum : $total_orders;
120
+ }
121
+
122
+ /**
123
+ * wcj_product_total_orders.
124
+ *
125
+ * @version 2.2.6
126
+ * @since 2.2.6
127
+ */
128
+ function wcj_product_total_orders( $atts ) {
129
+ return $this->get_product_orders_data( 'total_orders' );
130
+ }
131
+
132
+ /**
133
+ * wcj_product_total_orders_sum.
134
+ *
135
+ * @version 2.2.6
136
+ * @since 2.2.6
137
+ */
138
+ function wcj_product_total_orders_sum( $atts ) {
139
+ return $this->get_product_orders_data( 'orders_sum' );
140
+ }
141
+
142
+ /**
143
+ * wcj_product_crowdfunding_startdate.
144
+ *
145
+ * @version 2.2.6
146
+ * @since 2.2.6
147
+ */
148
+ function wcj_product_crowdfunding_startdate( $atts ) {
149
+ return get_post_meta( $this->the_product->id, '_' . 'wcj_crowdfunding_startdate', true );
150
+ }
151
+
152
+ /**
153
+ * wcj_product_crowdfunding_deadline.
154
+ *
155
+ * @version 2.2.6
156
+ * @since 2.2.6
157
+ */
158
+ function wcj_product_crowdfunding_deadline( $atts ) {
159
+ return get_post_meta( $this->the_product->id, '_' . 'wcj_crowdfunding_deadline', true );
160
+ }
161
+
162
+ /**
163
+ * wcj_product_crowdfunding_time_remaining.
164
+ *
165
+ * @version 2.2.6
166
+ * @since 2.2.6
167
+ */
168
+ function wcj_product_crowdfunding_time_remaining( $atts ) {
169
+ $seconds_remaining = strtotime( $this->wcj_product_crowdfunding_deadline( $atts ) ) - time();
170
+ $days_remaining = floor( $seconds_remaining / ( 24 * 60 * 60 ) );
171
+ $hours_remaining = floor( $seconds_remaining / ( 60 * 60 ) );
172
+ $minutes_remaining = floor( $seconds_remaining / 60 );
173
+ if ( $seconds_remaining <= 0 ) return '';
174
+ if ( $days_remaining > 0 ) return ( 1 === $days_remaining ) ? $days_remaining . ' day left' : $days_remaining . ' days left';
175
+ if ( $hours_remaining > 0 ) return ( 1 === $hours_remaining ) ? $hours_remaining . ' hour left' : $hours_remaining . ' hours left';
176
+ if ( $minutes_remaining > 0 ) return ( 1 === $minutes_remaining ) ? $minutes_remaining . ' minute left' : $minutes_remaining . ' minutes left';
177
+ return ( 1 === $seconds_remaining ) ? $seconds_remaining . ' second left' : $seconds_remaining . ' seconds left';
178
+ /* if ( ( $seconds_remaining = strtotime( $this->wcj_product_crowdfunding_deadline( $atts ) ) - time() ) <= 0 ) return '';
179
+ if ( ( $days_remaining = floor( $seconds_remaining / ( 24 * 60 * 60 ) ) ) > 0 ) {
180
+ return ( 1 === $days_remaining ) ? $days_remaining . ' day left' : $days_remaining . ' days left';
181
+ }
182
+ if ( ( $hours_remaining = floor( $seconds_remaining / ( 60 * 60 ) ) ) > 0 ) {
183
+ return ( 1 === $hours_remaining ) ? $hours_remaining . ' hour left' : $hours_remaining . ' hours left';
184
+ }
185
+ if ( ( $minutes_remaining = floor( $seconds_remaining / 60 ) ) > 0 ) {
186
+ return ( 1 === $minutes_remaining ) ? $minutes_remaining . ' minute left' : $minutes_remaining . ' minutes left';
187
+ }
188
+ return ( 1 === $seconds_remaining ) ? $seconds_remaining . ' second left' : $seconds_remaining . ' seconds left'; */
189
+ }
190
+
191
+ /**
192
+ * wcj_product_crowdfunding_goal.
193
+ *
194
+ * @version 2.2.6
195
+ * @since 2.2.6
196
+ */
197
+ function wcj_product_crowdfunding_goal( $atts ) {
198
+ return get_post_meta( $this->the_product->id, '_' . 'wcj_crowdfunding_goal_sum', true );
199
+ }
200
+
201
+ /**
202
+ * wcj_product_crowdfunding_goal_remaining.
203
+ *
204
+ * @version 2.2.6
205
+ * @since 2.2.6
206
+ */
207
+ function wcj_product_crowdfunding_goal_remaining( $atts ) {
208
+ return $this->wcj_product_crowdfunding_goal( $atts ) - $this->wcj_product_total_orders_sum( $atts );
209
+ }
210
+
211
+ /**
212
+ * wcj_product_total_sales.
213
+ *
214
+ * @version 2.2.6
215
+ * @since 2.2.6
216
+ */
217
+ function wcj_product_total_sales( $atts ) {
218
+ $product_custom_fields = get_post_custom( $this->the_product->id );
219
+ return ( isset( $product_custom_fields['total_sales'][0] ) ) ? $product_custom_fields['total_sales'][0] : false;
220
+ }
221
+
222
  /**
223
  * wcj_product_purchase_price.
224
  *
227
  function wcj_product_purchase_price( $atts ) {
228
  $purchase_price = wc_get_product_purchase_price( $the_product->id );
229
  return wc_price( $purchase_price );
 
230
  }
231
 
232
  /**
langs/woocommerce-jetpack-nl_NL.mo ADDED
Binary file
langs/woocommerce-jetpack-nl_NL.po ADDED
@@ -0,0 +1,3635 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WooCommerce Jetpack
2
+ # This file is distributed under the same license as the WooCommerce Jetpack package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WooCommerce Jetpack 2.0.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
7
+ "POT-Creation-Date: 2015-07-21 20:22+0200\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-08-04 13:56+0200\n"
12
+ "Language-Team: \n"
13
+ "X-Generator: Poedit 1.8.2\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: nl_NL\n"
16
+ "Last-Translator: \n"
17
+
18
+ #: includes/abstracts/class-wcj-product-input-fields.php:35
19
+ msgid "Enabled"
20
+ msgstr "Ingeschakeld"
21
+
22
+ #: includes/abstracts/class-wcj-product-input-fields.php:41
23
+ msgid "Required"
24
+ msgstr "Verplicht"
25
+
26
+ #: includes/abstracts/class-wcj-product-input-fields.php:47
27
+ #: includes/class-wcj-product-info.php:841 includes/class-wcj-product-tabs.php:238
28
+ #: includes/class-wcj-product-tabs.php:342 includes/class-wcj-product-tabs.php:452
29
+ #: includes/class-wcj-product-tabs.php:478 includes/class-wcj-product-tabs.php:504
30
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:56
31
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:62
32
+ msgid "Title"
33
+ msgstr "Titel"
34
+
35
+ #: includes/abstracts/class-wcj-product-input-fields.php:53
36
+ msgid "Placeholder"
37
+ msgstr "Plaatshouder"
38
+
39
+ #: includes/abstracts/class-wcj-product-input-fields.php:59
40
+ msgid "Message on required"
41
+ msgstr "Bericht bij verplicht"
42
+
43
+ #: includes/abstracts/class-wcj-product-input-fields.php:73
44
+ #: includes/class-wcj-product-input-fields-global.php:112
45
+ msgid "Product Input Field"
46
+ msgstr "Product invoerveld"
47
+
48
+ #: includes/admin/settings/class-wc-settings-jetpack.php:24
49
+ msgid "Jetpack"
50
+ msgstr "Jetpack"
51
+
52
+ #: includes/admin/settings/class-wc-settings-jetpack.php:29
53
+ #: includes/admin/settings/class-wc-settings-jetpack.php:165
54
+ msgid "Dashboard"
55
+ msgstr "Dashboard"
56
+
57
+ #: includes/admin/settings/class-wc-settings-jetpack.php:34
58
+ msgid "Price Labels"
59
+ msgstr "Prijs labels"
60
+
61
+ #: includes/admin/settings/class-wc-settings-jetpack.php:39
62
+ msgid "Products"
63
+ msgstr "Producten"
64
+
65
+ #: includes/admin/settings/class-wc-settings-jetpack.php:44
66
+ #: includes/class-wcj-cart.php:142 includes/class-wcj-cart.php:230
67
+ msgid "Cart"
68
+ msgstr "Winkelwagen"
69
+
70
+ #: includes/admin/settings/class-wc-settings-jetpack.php:49
71
+ #: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
72
+ msgid "Checkout"
73
+ msgstr "Afrekenen"
74
+
75
+ #: includes/admin/settings/class-wc-settings-jetpack.php:54
76
+ #: includes/class-wcj-checkout-custom-fields.php:310
77
+ #: includes/class-wcj-pdf-invoices.php:1119 includes/class-wcj-shipping.php:155
78
+ #: includes/class-wcj-shipping.php:200
79
+ msgid "Shipping"
80
+ msgstr "Verzending"
81
+
82
+ #: includes/admin/settings/class-wc-settings-jetpack.php:59
83
+ #: includes/class-wcj-orders.php:318 includes/class-wcj-orders.php:440
84
+ msgid "Orders"
85
+ msgstr "Bestellingen"
86
+
87
+ #: includes/admin/settings/class-wc-settings-jetpack.php:64
88
+ #: includes/class-wcj-pdf-invoices.php:789 includes/class-wcj-pdf-invoices.php:1279
89
+ msgid "PDF Invoices"
90
+ msgstr "PDF Facturen"
91
+
92
+ #: includes/admin/settings/class-wc-settings-jetpack.php:69
93
+ #: includes/class-wcj-emails.php:118 includes/class-wcj-emails.php:162
94
+ msgid "Emails"
95
+ msgstr "E-mails"
96
+
97
+ #: includes/admin/settings/class-wc-settings-jetpack.php:74
98
+ #: includes/class-wcj-currencies.php:91 includes/class-wcj-currencies.php:131
99
+ msgid "Currencies"
100
+ msgstr "Valuta"
101
+
102
+ #: includes/admin/settings/class-wc-settings-jetpack.php:79
103
+ msgid "Misc."
104
+ msgstr "Diversen"
105
+
106
+ #: includes/admin/settings/class-wc-settings-jetpack.php:198
107
+ #: includes/admin/settings/class-wc-settings-jetpack.php:205
108
+ msgid "Select All"
109
+ msgstr "Alles selecteren"
110
+
111
+ #: includes/admin/settings/class-wc-settings-jetpack.php:199
112
+ #: includes/admin/settings/class-wc-settings-jetpack.php:206
113
+ msgid "Feature"
114
+ msgstr "Functie"
115
+
116
+ #: includes/admin/settings/class-wc-settings-jetpack.php:200
117
+ #: includes/admin/settings/class-wc-settings-jetpack.php:207
118
+ #: includes/admin/tools/class-wcj-tools.php:69
119
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:63
120
+ msgid "Description"
121
+ msgstr "Omschrijving"
122
+
123
+ #: includes/admin/settings/class-wc-settings-jetpack.php:267
124
+ msgid "WooCommerce Jetpack Dashboard"
125
+ msgstr "WooCommerce Jetpack Dashboard"
126
+
127
+ #: includes/admin/settings/class-wc-settings-jetpack.php:269
128
+ msgid ""
129
+ "This dashboard lets you enable/disable any Jetpack feature. Each checkbox comes "
130
+ "with short feature's description. Please visit <a href=\"http://woojetpack.com\" "
131
+ "target=\"_blank\">WooJetpack.com</a> for detailed info on each feature."
132
+ msgstr ""
133
+ "Dit dashboard laat u een Jetpack-functie in-of uitschakelen. Bij elke checkbox "
134
+ "staat een korte functiebeschrijving. Bezoek <a href=\"http://woojetpack.com\" "
135
+ "target=\"_blank\">WooJetpack.com</a> voor gedetailleerde informatie over elke "
136
+ "functie."
137
+
138
+ #: includes/admin/tools/class-wcj-tools.php:34
139
+ msgid "Tools Dashboard"
140
+ msgstr "Hulpmiddelen Dashboard"
141
+
142
+ #: includes/admin/tools/class-wcj-tools.php:63
143
+ msgid "WooCommerce Jetpack Tools Dashboard"
144
+ msgstr "WooCommerce Jetpack Hulpmiddelen Dashboard"
145
+
146
+ #: includes/admin/tools/class-wcj-tools.php:64
147
+ msgid ""
148
+ "This dashboard lets you check statuses and short descriptions of all available "
149
+ "WooCommerce Jetpack tools. Tools can be enabled through WooCommerce > Settings > "
150
+ "Jetpack. Enabled tools will appear in the tabs menu above."
151
+ msgstr ""
152
+ "Dit dashboard laat u de statussen en korte beschrijvingen van alle beschikbare "
153
+ "WooCommerce Jetpack Hulpmiddelen controleren. Hulpmiddelen kunnen worden "
154
+ "ingeschakeld via WooCommerce > Instellingen > Jetpack. Ingeschakelde hulpmiddelen "
155
+ "worden weergegeven in het menu hierboven."
156
+
157
+ #: includes/admin/tools/class-wcj-tools.php:67
158
+ msgid "Tool"
159
+ msgstr "Hulpmiddel"
160
+
161
+ #: includes/admin/tools/class-wcj-tools.php:68
162
+ msgid "Status"
163
+ msgstr "Status"
164
+
165
+ #: includes/class-wcj-add-to-cart-per-category.php:90
166
+ msgid "Add to Cart per Category Options"
167
+ msgstr "Voeg toe aan winkelmandje per categorie opties"
168
+
169
+ #: includes/class-wcj-add-to-cart-per-category.php:93
170
+ #: includes/class-wcj-add-to-cart-per-category.php:208
171
+ msgid "Add to Cart - per Category"
172
+ msgstr "Voeg toe aan winkelmandje per categorie"
173
+
174
+ #: includes/class-wcj-add-to-cart-per-category.php:94
175
+ #: includes/class-wcj-add-to-cart-per-product.php:176
176
+ #: includes/class-wcj-shipping-calculator.php:120
177
+ msgid "Enable Module"
178
+ msgstr "Module aanzetten"
179
+
180
+ #: includes/class-wcj-add-to-cart-per-category.php:95
181
+ msgid "Add to cart button text on per category basis."
182
+ msgstr "Voeg toe aan winkelwagentje knoptekst op basis van categorie."
183
+
184
+ #: includes/class-wcj-add-to-cart-per-category.php:102
185
+ msgid "Category Groups Number"
186
+ msgstr "Categorie Groepen Aantal"
187
+
188
+ #: includes/class-wcj-add-to-cart-per-category.php:103
189
+ #: includes/class-wcj-checkout-custom-fields.php:230
190
+ #: includes/class-wcj-product-input-fields-global.php:97
191
+ #: includes/class-wcj-product-tabs.php:327
192
+ msgid "Click \"Save changes\" after you change this number."
193
+ msgstr "Klik op \"Bewaar instellingen\" als je dit getal aanpast."
194
+
195
+ #: includes/class-wcj-add-to-cart-per-category.php:123
196
+ #: includes/class-wcj-price-by-country.php:458
197
+ msgid "Group"
198
+ msgstr "Groep"
199
+
200
+ #: includes/class-wcj-add-to-cart-per-category.php:124
201
+ #: includes/class-wcj-add-to-cart.php:175 includes/class-wcj-add-to-cart.php:198
202
+ #: includes/class-wcj-cart.php:164 includes/class-wcj-cart.php:212
203
+ #: includes/class-wcj-order-numbers.php:166 includes/class-wcj-orders.php:384
204
+ #: includes/class-wcj-orders.php:397 includes/class-wcj-price-labels.php:629
205
+ #: includes/class-wcj-product-info.php:613 includes/class-wcj-product-info.php:732
206
+ #: includes/class-wcj-product-info.php:769 includes/class-wcj-product-info.php:813
207
+ #: includes/class-wcj-product-input-fields-global.php:88
208
+ #: includes/class-wcj-product-input-fields-per-product.php:205
209
+ #: includes/class-wcj-shipping-calculator.php:129
210
+ #: includes/class-wcj-shipping-calculator.php:137
211
+ #: includes/class-wcj-shipping-calculator.php:145
212
+ #: includes/class-wcj-shipping-calculator.php:153 includes/class-wcj-sorting.php:230
213
+ msgid "Enable"
214
+ msgstr "Inschakelen"
215
+
216
+ #: includes/class-wcj-add-to-cart-per-category.php:131
217
+ msgid "Product Category IDs List"
218
+ msgstr "Product Categorie ID's"
219
+
220
+ #: includes/class-wcj-add-to-cart-per-category.php:132
221
+ msgid "Comma separated list of product category IDs."
222
+ msgstr "Door komma's gescheiden lijst van productcategorie-id's."
223
+
224
+ #: includes/class-wcj-add-to-cart-per-category.php:140
225
+ msgid "Button text - single product view"
226
+ msgstr "Knop tekst - enkel product weergave"
227
+
228
+ #: includes/class-wcj-add-to-cart-per-category.php:148
229
+ msgid "Button text - product archive (category) view"
230
+ msgstr "Knop tekst - product archief (categorie) weergave"
231
+
232
+ #: includes/class-wcj-add-to-cart-per-category.php:172
233
+ msgid "Product Category Name"
234
+ msgstr "Product Categorie Naam"
235
+
236
+ #: includes/class-wcj-add-to-cart-per-category.php:175
237
+ msgid "Product Category ID"
238
+ msgstr "Product Categorie ID"
239
+
240
+ #: includes/class-wcj-add-to-cart-per-category.php:194
241
+ msgid "Product Category IDs"
242
+ msgstr "Product Categorie ID's"
243
+
244
+ #: includes/class-wcj-add-to-cart-per-product.php:104
245
+ msgid "WooCommerce Jetpack: Custom Add to Cart"
246
+ msgstr "WooCommerce Jetpack: Aangepaste Voeg to aan winkelwagen"
247
+
248
+ #: includes/class-wcj-add-to-cart-per-product.php:115
249
+ msgid "Single product view"
250
+ msgstr "Enkel product weergave"
251
+
252
+ #: includes/class-wcj-add-to-cart-per-product.php:116
253
+ msgid "Product category (archive) view"
254
+ msgstr "Product categorie (archief) weergave"
255
+
256
+ #: includes/class-wcj-add-to-cart-per-product.php:169
257
+ msgid "Add to Cart per Product Options"
258
+ msgstr "Toevoegen aan winkelwagen per productopties"
259
+
260
+ #: includes/class-wcj-add-to-cart-per-product.php:171
261
+ msgid ""
262
+ "When module is enabled, add to cart button text for each product can be changed in "
263
+ "\"Edit Product\"."
264
+ msgstr ""
265
+ "Wanneer de module is ingeschakeld, kan de Voeg toe aan winkelwagen knop per "
266
+ "product worden veranderd in \"Bewerk product\""
267
+
268
+ #: includes/class-wcj-add-to-cart-per-product.php:175
269
+ #: includes/class-wcj-add-to-cart-per-product.php:193
270
+ msgid "Add to Cart - per Product"
271
+ msgstr "Toevoegen aan Winkelwagen - per Product"
272
+
273
+ #: includes/class-wcj-add-to-cart-per-product.php:177
274
+ msgid "Add to cart button text on per product basis."
275
+ msgstr "Toevoegen aan winkelwagen tekst per product basis."
276
+
277
+ #: includes/class-wcj-add-to-cart.php:150
278
+ msgid "Add to Cart Options"
279
+ msgstr "Toevoegen aan Winkelwagen Opties"
280
+
281
+ #: includes/class-wcj-add-to-cart.php:153 includes/class-wcj-add-to-cart.php:375
282
+ msgid "Add to Cart"
283
+ msgstr "Toevoegen aan Winkelwagen"
284
+
285
+ #: includes/class-wcj-add-to-cart.php:154
286
+ msgid "Enable the Add to Cart feature"
287
+ msgstr "Toevoegen aan Winkelwagen optie inschakelen"
288
+
289
+ #: includes/class-wcj-add-to-cart.php:155
290
+ msgid ""
291
+ "Set any local url to redirect to on Add to cart. Change text for Add to cart "
292
+ "button by product type. Display \"Already in cart\" instead of \"Add to cart\" "
293
+ "button if current product is already in cart."
294
+ msgstr ""
295
+ "Stel elke lokale url in om om te leiden naar een Voeg toe aan winkelwagen. "
296
+ "Verander de tekst van Voeg toe aan winkelwagen knop per productsoort. Toon \"Reeds "
297
+ "in winkelwagen\" in plaats van \"Voeg toe aan winkelwagen\" knop als het huidige "
298
+ "product al in de winkelwagen zit."
299
+
300
+ #: includes/class-wcj-add-to-cart.php:168
301
+ msgid "Add to Cart Local Redirect Options"
302
+ msgstr "Voeg toe aan winkelwagen lokale omleiding opties"
303
+
304
+ #: includes/class-wcj-add-to-cart.php:170
305
+ msgid ""
306
+ "This section lets you set any local URL to redirect to after successfully adding "
307
+ "product to cart. Leave empty to redirect to checkout page (skipping the cart page)."
308
+ msgstr ""
309
+ "Deze sectie laat u een lokale URL ingestellen om de bezoeker naar te leiden na een "
310
+ "succesvolle toevoeging aan winkelwagen. Laat leeg om naar de afrekenpagina te gaan "
311
+ "(en de winkelwagen pagina over te slaan)."
312
+
313
+ #: includes/class-wcj-add-to-cart.php:174
314
+ msgid "Local Redirect"
315
+ msgstr "Lokale omleiding"
316
+
317
+ #: includes/class-wcj-add-to-cart.php:182
318
+ msgid "Local Redirect URL"
319
+ msgstr "Lokale omleidings url"
320
+
321
+ #: includes/class-wcj-add-to-cart.php:183
322
+ msgid "Performs a safe (local) redirect, using wp_redirect()."
323
+ msgstr "Voert een veilige (lokale) omleiding uit, gebruikmakend van wp_redirect()"
324
+
325
+ #: includes/class-wcj-add-to-cart.php:184
326
+ msgid "Local redirect URL. Leave empty to redirect to checkout."
327
+ msgstr "Lokale redirect URL. Laat leeg om naar de afrekenen pagina te gaan."
328
+
329
+ #: includes/class-wcj-add-to-cart.php:194
330
+ msgid "Add to Cart Button Text Options"
331
+ msgstr "Voeg toe aan winkelwagen knop tekst opties"
332
+
333
+ #: includes/class-wcj-add-to-cart.php:197
334
+ msgid "Add to cart text"
335
+ msgstr "Toevoegen aan winkelwagen tekst"
336
+
337
+ #: includes/class-wcj-add-to-cart.php:208
338
+ msgid "Simple product"
339
+ msgstr "Simpel product"
340
+
341
+ #: includes/class-wcj-add-to-cart.php:213
342
+ msgid "Variable product"
343
+ msgstr "Variabel product"
344
+
345
+ #: includes/class-wcj-add-to-cart.php:218
346
+ msgid "External product"
347
+ msgstr "Extern product"
348
+
349
+ #: includes/class-wcj-add-to-cart.php:223
350
+ msgid "Grouped product"
351
+ msgstr "Samengevoegd product"
352
+
353
+ #: includes/class-wcj-add-to-cart.php:228
354
+ msgid "Other product"
355
+ msgstr "Ander product"
356
+
357
+ #: includes/class-wcj-add-to-cart.php:241
358
+ msgid "Single product view."
359
+ msgstr "Enkel product weergave"
360
+
361
+ #: includes/class-wcj-add-to-cart.php:242 includes/class-wcj-add-to-cart.php:262
362
+ #: includes/class-wcj-add-to-cart.php:320 includes/class-wcj-add-to-cart.php:346
363
+ #: includes/class-wcj-payment-gateways.php:173
364
+ msgid "Leave blank to disable."
365
+ msgstr "Laat leeg om uit te zetten."
366
+
367
+ #: includes/class-wcj-add-to-cart.php:242 includes/class-wcj-add-to-cart.php:262
368
+ #: includes/class-wcj-add-to-cart.php:322 includes/class-wcj-add-to-cart.php:348
369
+ #: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:248
370
+ #: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:268
371
+ #: includes/class-wcj-sorting.php:278 includes/class-wcj-sorting.php:288
372
+ msgid "Default: "
373
+ msgstr "Standaard:"
374
+
375
+ #: includes/class-wcj-add-to-cart.php:261
376
+ msgid "Product category (archive) view."
377
+ msgstr "Product categorie (archief) weergave"
378
+
379
+ #: includes/class-wcj-add-to-cart.php:285
380
+ msgid "Products with price set to 0 (i.e. free). Single product view."
381
+ msgstr "Producten met prijs op 0 (oftewel gratis). Enkel product weergave."
382
+
383
+ #: includes/class-wcj-add-to-cart.php:286 includes/class-wcj-add-to-cart.php:295
384
+ msgid "Leave blank to disable. Default: Add to cart"
385
+ msgstr "Laat leeg om uit te schakelen. Default: Voeg toe aan winkelwagen."
386
+
387
+ #: includes/class-wcj-add-to-cart.php:288 includes/class-wcj-add-to-cart.php:297
388
+ #: includes/class-wcj-add-to-cart.php:322 includes/class-wcj-add-to-cart.php:324
389
+ #: includes/class-wcj-add-to-cart.php:348 includes/class-wcj-add-to-cart.php:350
390
+ msgid "Add to cart"
391
+ msgstr "Voeg toe aan winkelwagen"
392
+
393
+ #: includes/class-wcj-add-to-cart.php:294
394
+ msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
395
+ msgstr ""
396
+ "Producten met prijs op 0 (oftewel gratis). Product categorie (archief) weergave."
397
+
398
+ #: includes/class-wcj-add-to-cart.php:304
399
+ msgid "Products with empty price. Product category (archive) view."
400
+ msgstr "Producten met een lege prijs. Product categorie (archief) weergave."
401
+
402
+ #: includes/class-wcj-add-to-cart.php:305
403
+ msgid "Leave blank to disable. Default: Read More"
404
+ msgstr "Laat leeg om uit te schakelen. Standaard: Lees meer"
405
+
406
+ #: includes/class-wcj-add-to-cart.php:307
407
+ msgid "Read More"
408
+ msgstr "Lees meer"
409
+
410
+ #: includes/class-wcj-add-to-cart.php:319
411
+ msgid "Already in cart. Single product view."
412
+ msgstr "Reeds in winkelwagen. Enkel product weergave"
413
+
414
+ #: includes/class-wcj-add-to-cart.php:321 includes/class-wcj-add-to-cart.php:347
415
+ msgid "Try: "
416
+ msgstr "Probeer:"
417
+
418
+ #: includes/class-wcj-add-to-cart.php:321 includes/class-wcj-add-to-cart.php:347
419
+ msgid "Already in cart - Add Again?"
420
+ msgstr "Reeds toegevoegd aan winkelwagen. Opnieuw toevoegen?"
421
+
422
+ #: includes/class-wcj-add-to-cart.php:345
423
+ msgid "Already in cart. Product category (archive) view."
424
+ msgstr "Reeds in winkelwagen. Product categorie (archief) weergave."
425
+
426
+ #: includes/class-wcj-call-for-price.php:80
427
+ msgid "Call for Price Options"
428
+ msgstr "Bel voor prijs mogelijkheden"
429
+
430
+ #: includes/class-wcj-call-for-price.php:80
431
+ msgid "Leave price empty when adding or editing products. Then set the options here."
432
+ msgstr ""
433
+ "Laat prijs lees tijdens het toevoegen en/of bewerken van producten. Stel daarna de "
434
+ "opties hier in."
435
+
436
+ #: includes/class-wcj-call-for-price.php:83
437
+ #: includes/class-wcj-call-for-price.php:166
438
+ msgid "Call for Price"
439
+ msgstr "Bel voor de prijs"
440
+
441
+ #: includes/class-wcj-call-for-price.php:84
442
+ msgid "Enable the Call for Price feature"
443
+ msgstr "Schakel de Bel voor de prijs optie in"
444
+
445
+ #: includes/class-wcj-call-for-price.php:85
446
+ msgid "Create any custom price label for all products with empty price."
447
+ msgstr "Maak een aangepast prijs label voor alle producten met zonder prijs."
448
+
449
+ #: includes/class-wcj-call-for-price.php:92
450
+ msgid "Label to Show on Single"
451
+ msgstr "Label naar toon bij enkel"
452
+
453
+ #: includes/class-wcj-call-for-price.php:93
454
+ #: includes/class-wcj-call-for-price.php:105
455
+ #: includes/class-wcj-call-for-price.php:117
456
+ #: includes/class-wcj-call-for-price.php:129
457
+ msgid "This sets the html to output on empty price. Leave blank to disable."
458
+ msgstr "Dit zet html naar output bij lege prijs. Laat leeg om uit te schakelen."
459
+
460
+ #: includes/class-wcj-call-for-price.php:104
461
+ msgid "Label to Show on Archives"
462
+ msgstr "Label naar toon bij Archieven"
463
+
464
+ #: includes/class-wcj-call-for-price.php:116
465
+ msgid "Label to Show on Homepage"
466
+ msgstr "Label naar toon bij homepagina"
467
+
468
+ #: includes/class-wcj-call-for-price.php:128
469
+ msgid "Label to Show on Related"
470
+ msgstr "Label naar toon bij gerelateerd"
471
+
472
+ #: includes/class-wcj-call-for-price.php:140
473
+ msgid "Hide Sale! Tag"
474
+ msgstr "Verberg de Uitverkoop! tag"
475
+
476
+ #: includes/class-wcj-call-for-price.php:141
477
+ msgid "Hide the tag"
478
+ msgstr "Verberg de tag"
479
+
480
+ #: includes/class-wcj-cart.php:139
481
+ msgid "Cart Options"
482
+ msgstr "Winkelwagen opties"
483
+
484
+ #: includes/class-wcj-cart.php:143
485
+ msgid "Enable the Cart feature"
486
+ msgstr "Schakel de winkelwagen optie in"
487
+
488
+ #: includes/class-wcj-cart.php:144
489
+ msgid "Add empty cart button, automatically add to cart on product visit."
490
+ msgstr ""
491
+ "Voeg leeg winkelwagen knop toe, voeg automatisch toe aan winkelwagen bij bezoeken "
492
+ "productpagina."
493
+
494
+ #: includes/class-wcj-cart.php:160
495
+ msgid "Empty Cart Options"
496
+ msgstr "Lege winkelwagen opties"
497
+
498
+ #: includes/class-wcj-cart.php:160
499
+ msgid "This section lets you add and customize \"Empty Cart\" button to cart page."
500
+ msgstr "In dit gedeelte kun je de lege winkelwagen knop toevoegen en bewerken."
501
+
502
+ #: includes/class-wcj-cart.php:163
503
+ msgid "Empty Cart"
504
+ msgstr "Lege winkelwagen"
505
+
506
+ #: includes/class-wcj-cart.php:171
507
+ msgid "Empty Cart Button Text"
508
+ msgstr "Lege winkelwagen knop tekst"
509
+
510
+ #: includes/class-wcj-cart.php:181
511
+ msgid "Wrapping DIV style"
512
+ msgstr ""
513
+
514
+ #: includes/class-wcj-cart.php:182
515
+ msgid "Style for the button's div. Default is \"float: right;\""
516
+ msgstr ""
517
+
518
+ #: includes/class-wcj-cart.php:192
519
+ msgid "Button position on the Cart page"
520
+ msgstr "Positie knop op de winkelwagen pagina"
521
+
522
+ #: includes/class-wcj-cart.php:197
523
+ msgid "After Cart"
524
+ msgstr "Na de winkelwagen"
525
+
526
+ #: includes/class-wcj-cart.php:198
527
+ msgid "Before Cart"
528
+ msgstr "Voor de winkelwagen"
529
+
530
+ #: includes/class-wcj-cart.php:199
531
+ msgid "After Proceed to Checkout button"
532
+ msgstr "Na de ga door met afrekenen knop"
533
+
534
+ #: includes/class-wcj-cart.php:208 includes/class-wcj-cart.php:211
535
+ msgid "Add to Cart on Visit"
536
+ msgstr "Voeg toe aan winkelwagen bij bezoek"
537
+
538
+ #: includes/class-wcj-cart.php:208
539
+ msgid ""
540
+ "This section lets you enable automatically adding product to cart on visiting the "
541
+ "product page. Product is only added once, so if it is already in cart - duplicate "
542
+ "product is not added. "
543
+ msgstr ""
544
+ "Dit gedeelte schakelt de optie in om automatisch een product toe te voegen aan de "
545
+ "winkelwagen bij bezoek aan productpagina. Product is eenmalig toegevoegd, dus als "
546
+ "het reeds in winkelwagen is - dupliceer product is niet toegevoegd."
547
+
548
+ #: includes/class-wcj-checkout-custom-fields.php:217
549
+ msgid "Checkout Custom Fields Options"
550
+ msgstr "Aangepaste velden Afrekenen opties"
551
+
552
+ #: includes/class-wcj-checkout-custom-fields.php:217
553
+ msgid "This section lets you add custom checkout fields."
554
+ msgstr "Dit gedeelte laat je aangepaste afrekenvelden toevoegen"
555
+
556
+ #: includes/class-wcj-checkout-custom-fields.php:220
557
+ #: includes/class-wcj-checkout-custom-fields.php:351
558
+ msgid "Custom Checkout Fields"
559
+ msgstr "Aangepaste afrekenvelden"
560
+
561
+ #: includes/class-wcj-checkout-custom-fields.php:221
562
+ msgid "Enable the Checkout Custom Fields feature"
563
+ msgstr "Schakel de aangepaste afrekenvelden optie in"
564
+
565
+ #: includes/class-wcj-checkout-custom-fields.php:222
566
+ msgid "Add custom fields to the Checkout page."
567
+ msgstr "Voeg aangepaste velden toe aan de afrekenenpagina."
568
+
569
+ #: includes/class-wcj-checkout-custom-fields.php:229
570
+ msgid "Custom Fields Number"
571
+ msgstr "Aangepaste velden nummer"
572
+
573
+ #: includes/class-wcj-checkout-custom-fields.php:244
574
+ msgid "Custom Field"
575
+ msgstr "Aangepast veld"
576
+
577
+ #: includes/class-wcj-checkout-custom-fields.php:245
578
+ #: includes/class-wcj-old-slugs.php:49 includes/class-wcj-order-numbers.php:64
579
+ #: includes/class-wcj-orders.php:112 includes/class-wcj-price-labels.php:116
580
+ msgid "enabled"
581
+ msgstr "Ingeschakeld"
582
+
583
+ # If you mean type of product then use Soort
584
+ # If you mean type your text here then use vul in
585
+ #: includes/class-wcj-checkout-custom-fields.php:252
586
+ msgid "type"
587
+ msgstr "Soort, vul in"
588
+
589
+ #: includes/class-wcj-checkout-custom-fields.php:257
590
+ #: includes/class-wcj-checkout.php:159
591
+ msgid "Text"
592
+ msgstr "Tekst"
593
+
594
+ #: includes/class-wcj-checkout-custom-fields.php:258
595
+ msgid "Textarea"
596
+ msgstr "Tekstveld"
597
+
598
+ #: includes/class-wcj-checkout-custom-fields.php:260
599
+ msgid "Datepicker"
600
+ msgstr "Datumprikker"
601
+
602
+ #: includes/class-wcj-checkout-custom-fields.php:261
603
+ msgid "Checkbox"
604
+ msgstr "Checkbox"
605
+
606
+ #: includes/class-wcj-checkout-custom-fields.php:263
607
+ msgid "Password"
608
+ msgstr "Wachtwoord"
609
+
610
+ #: includes/class-wcj-checkout-custom-fields.php:268
611
+ msgid "required"
612
+ msgstr "Verplicht"
613
+
614
+ #: includes/class-wcj-checkout-custom-fields.php:275
615
+ msgid "label"
616
+ msgstr "Label"
617
+
618
+ #: includes/class-wcj-checkout-custom-fields.php:296
619
+ msgid "placeholder"
620
+ msgstr "Plaatshouder"
621
+
622
+ #: includes/class-wcj-checkout-custom-fields.php:304
623
+ msgid "section"
624
+ msgstr "Gedeelte"
625
+
626
+ #: includes/class-wcj-checkout-custom-fields.php:309
627
+ msgid "Billing"
628
+ msgstr "Facturering"
629
+
630
+ #: includes/class-wcj-checkout-custom-fields.php:311
631
+ msgid "Order Notes"
632
+ msgstr "Order notities"
633
+
634
+ #: includes/class-wcj-checkout-custom-fields.php:312
635
+ msgid "Account"
636
+ msgstr "Account"
637
+
638
+ #: includes/class-wcj-checkout-custom-fields.php:318
639
+ msgid "class"
640
+ msgstr "klasse"
641
+
642
+ #: includes/class-wcj-checkout-custom-fields.php:323
643
+ msgid "Wide"
644
+ msgstr "Breedte"
645
+
646
+ #: includes/class-wcj-checkout-custom-fields.php:324
647
+ msgid "First"
648
+ msgstr "Eerste"
649
+
650
+ #: includes/class-wcj-checkout-custom-fields.php:325
651
+ msgid "Last"
652
+ msgstr "Laatste"
653
+
654
+ #: includes/class-wcj-checkout.php:141
655
+ msgid "Checkout Options"
656
+ msgstr "Afrekenopties"
657
+
658
+ #: includes/class-wcj-checkout.php:145
659
+ msgid "Enable the Checkout feature"
660
+ msgstr "Schakel de afrekenoptie in"
661
+
662
+ #: includes/class-wcj-checkout.php:146
663
+ msgid ""
664
+ "Customize checkout fields. Disable/enable fields, set required, change labels and/"
665
+ "or placeholders."
666
+ msgstr ""
667
+ "Pas afrekenvelden aan. Schakel velden in of it, stel verplicht velden in, verander "
668
+ "label en/of plaatshouders."
669
+
670
+ #: includes/class-wcj-checkout.php:156
671
+ msgid "Place order (Order now) Button"
672
+ msgstr "Plaats bestelling (bestel nu) knop"
673
+
674
+ #: includes/class-wcj-checkout.php:160
675
+ msgid "leave blank for WooCommerce default"
676
+ msgstr "Laat leeg voor WooCommerce Default"
677
+
678
+ #: includes/class-wcj-checkout.php:161
679
+ msgid "Button on the checkout page."
680
+ msgstr "Knop op de afrekenpagina."
681
+
682
+ #: includes/class-wcj-checkout.php:170
683
+ msgid "Checkout Fields Options"
684
+ msgstr "Afrekenveld opties"
685
+
686
+ #: includes/class-wcj-checkout.php:170
687
+ msgid ""
688
+ "This section lets you customize the checkout fields: change label, placeholder, "
689
+ "set required, or remove any field."
690
+ msgstr ""
691
+ "Dit gedeelte laat je afrekenvelden aanpassen: verander label, plaatshouder, stel "
692
+ "verplicht in, of verwijder elk veld."
693
+
694
+ #: includes/class-wcj-checkout.php:236
695
+ msgid "Leave blank for WooCommerce defaults."
696
+ msgstr "Laat leeg voor WooCommerce defaults."
697
+
698
+ #: includes/class-wcj-currencies.php:66
699
+ #: includes/class-wcj-currency-external-products.php:80
700
+ msgid "Currency Symbol"
701
+ msgstr "Valuta symbool"
702
+
703
+ #: includes/class-wcj-currencies.php:67
704
+ msgid "This sets the currency symbol."
705
+ msgstr "Dit stelt het valuta symbool in."
706
+
707
+ #: includes/class-wcj-currencies.php:88
708
+ msgid "Currencies Options"
709
+ msgstr "Valuta opties"
710
+
711
+ #: includes/class-wcj-currencies.php:92
712
+ msgid "Enable the Currencies feature"
713
+ msgstr "Schakel de valuta optie in."
714
+
715
+ #: includes/class-wcj-currencies.php:93
716
+ msgid "Add all world currencies, change currency symbol."
717
+ msgstr "Voeg alle wereldwijde valuta toe, verander valuta symbool"
718
+
719
+ #: includes/class-wcj-currencies.php:101
720
+ msgid "Currency Symbol Options"
721
+ msgstr "Valuta symbool opties"
722
+
723
+ #: includes/class-wcj-currencies.php:104
724
+ msgid "Hide Currency Symbol"
725
+ msgstr "Verberg valuta opties"
726
+
727
+ #: includes/class-wcj-currencies.php:105
728
+ #: includes/class-wcj-shipping-calculator.php:167
729
+ msgid "Hide"
730
+ msgstr "Verberg"
731
+
732
+ #: includes/class-wcj-currencies.php:106
733
+ msgid "Default: no."
734
+ msgstr "Default: Nee."
735
+
736
+ #: includes/class-wcj-currency-external-products.php:68
737
+ msgid "Currency for External Products Options"
738
+ msgstr "Valuta voor externe producten Opties"
739
+
740
+ #: includes/class-wcj-currency-external-products.php:71
741
+ #: includes/class-wcj-currency-external-products.php:99
742
+ msgid "Currency for External Products"
743
+ msgstr "Valuta voor externe producten"
744
+
745
+ #: includes/class-wcj-currency-external-products.php:72
746
+ msgid "Enable Feature"
747
+ msgstr "Schakel optie in"
748
+
749
+ #: includes/class-wcj-currency-external-products.php:73
750
+ msgid "Set different currency for external products."
751
+ msgstr "Stel verschillende valuta in voor externe producten."
752
+
753
+ #: includes/class-wcj-currency-external-products.php:81
754
+ #: includes/class-wcj-currency-external-products.php:82
755
+ msgid "Set currency symbol for all external products."
756
+ msgstr "Stel valuta symbool in voor alle externe producten."
757
+
758
+ #: includes/class-wcj-emails.php:57
759
+ msgid "WooCommerce Jetpack: Email Forwarding Options"
760
+ msgstr "WooCommerce Jetpack: email doorstuur opties"
761
+
762
+ #: includes/class-wcj-emails.php:57 includes/class-wcj-emails.php:128
763
+ msgid ""
764
+ "This section lets you add another email recipient(s) to all WooCommerce emails. "
765
+ "Leave blank to disable."
766
+ msgstr ""
767
+ "In dit gedeelte kun je nog een emailontvanger toevoegen aan alle WooCommerce "
768
+ "emails. Laat leeg om uit te schakelen."
769
+
770
+ #: includes/class-wcj-emails.php:61 includes/class-wcj-emails.php:131
771
+ msgid "Cc Email"
772
+ msgstr "Cc Email"
773
+
774
+ #: includes/class-wcj-emails.php:63 includes/class-wcj-emails.php:133
775
+ msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
776
+ msgstr "Cc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
777
+
778
+ #: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:142
779
+ msgid "Bcc Email"
780
+ msgstr "Bcc Email"
781
+
782
+ #: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:144
783
+ msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
784
+ msgstr "Bcc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
785
+
786
+ #: includes/class-wcj-emails.php:115
787
+ msgid "Emails Options"
788
+ msgstr "Emails opties"
789
+
790
+ #: includes/class-wcj-emails.php:119
791
+ msgid "Enable the Emails feature"
792
+ msgstr "Schakel de emailoptie in"
793
+
794
+ #: includes/class-wcj-emails.php:120
795
+ msgid "Add another email recipient(s) to all WooCommerce emails."
796
+ msgstr "Voeg nog een emailontvanger(s) toe aan alle WooCommerce emails."
797
+
798
+ #: includes/class-wcj-emails.php:128
799
+ msgid "Email Forwarding Options"
800
+ msgstr "Email doorstuur opties"
801
+
802
+ #: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1202
803
+ msgid "General Options"
804
+ msgstr "Algemene opties"
805
+
806
+ #: includes/class-wcj-general.php:73 includes/class-wcj-general.php:111
807
+ msgid "General"
808
+ msgstr "Algemeen"
809
+
810
+ #: includes/class-wcj-general.php:74
811
+ msgid "Enable the General feature"
812
+ msgstr "Schakel de algemene optie in"
813
+
814
+ #: includes/class-wcj-general.php:75
815
+ msgid "Separate custom CSS for front and back end."
816
+ msgstr "Scheidt aangepaste CSS, voor voorkant en achterkant)"
817
+
818
+ #: includes/class-wcj-general.php:83
819
+ msgid "Custom CSS Options"
820
+ msgstr "Aangepaste CSS opties"
821
+
822
+ #: includes/class-wcj-general.php:83
823
+ msgid "Another custom CSS, if you need one."
824
+ msgstr "Nog een aangepaste CSS, als je die nodig hebt."
825
+
826
+ #: includes/class-wcj-general.php:86
827
+ msgid "Custom CSS - Front end (Customers)"
828
+ msgstr "Aangepaste CSS - Voorkant (klanten)"
829
+
830
+ #: includes/class-wcj-general.php:94
831
+ msgid "Custom CSS - Back end (Admin)"
832
+ msgstr "Aangepaste CSS - Achterkant (Admin)"
833
+
834
+ #: includes/class-wcj-old-slugs.php:51 includes/class-wcj-order-numbers.php:66
835
+ #: includes/class-wcj-orders.php:114 includes/class-wcj-price-labels.php:118
836
+ msgid "disabled"
837
+ msgstr "uitgeschakeld"
838
+
839
+ #: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
840
+ msgid "Remove Old Slugs"
841
+ msgstr "Oude Slugs Verwijderen"
842
+
843
+ #: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:165
844
+ msgid "Tool removes old slugs/permalinks from database."
845
+ msgstr "Hulpmiddel verwijdert oude slugs/permalinks van de database."
846
+
847
+ #: includes/class-wcj-old-slugs.php:86
848
+ msgid "Old Slugs Options"
849
+ msgstr "Oude Slugs Opties"
850
+
851
+ #: includes/class-wcj-old-slugs.php:89 includes/class-wcj-old-slugs.php:109
852
+ msgid "Old Slugs"
853
+ msgstr "Oude Slugs"
854
+
855
+ #: includes/class-wcj-old-slugs.php:90
856
+ msgid "Enable the Remove Old Product Slugs feature"
857
+ msgstr "Schakel de Verwijder oude Slugs optie in"
858
+
859
+ #: includes/class-wcj-old-slugs.php:91
860
+ msgid ""
861
+ "Remove old product slugs. When enabled, the tool is accessible through <a href="
862
+ "\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove "
863
+ "Old Slugs</a>."
864
+ msgstr ""
865
+ "Verwijder oude product slugs. Wanneer deze optie is ingeschakeld, is de tool "
866
+ "toegankelijk via <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce "
867
+ "> Jetpack Tools > oude slugs verwijderen</a>."
868
+
869
+ #: includes/class-wcj-old-slugs.php:164
870
+ msgid "WooCommerce Jetpack - Remove Old Product Slugs"
871
+ msgstr "WooCommerce Jetpack - Verwijder oude product slugs"
872
+
873
+ #: includes/class-wcj-old-slugs.php:170
874
+ msgid "Old products slugs found:"
875
+ msgstr "Oude producten slugs gevonden:"
876
+
877
+ #: includes/class-wcj-old-slugs.php:178
878
+ msgid "None-products slugs found:"
879
+ msgstr "Geen-product slugs gevonden:"
880
+
881
+ #: includes/class-wcj-old-slugs.php:185
882
+ msgid "No old slugs found."
883
+ msgstr "Geen oude slugs gevonden."
884
+
885
+ #: includes/class-wcj-order-numbers.php:67
886
+ msgid "Orders Renumerate"
887
+ msgstr "Orders opnieuw nummeren"
888
+
889
+ #: includes/class-wcj-order-numbers.php:69
890
+ msgid "Tool renumerates all orders."
891
+ msgstr "Hulpmiddel om alle orders opnieuw te nummeren."
892
+
893
+ #: includes/class-wcj-order-numbers.php:79
894
+ msgid "Renumerate orders"
895
+ msgstr "Opnieuw nummeren orders"
896
+
897
+ #: includes/class-wcj-order-numbers.php:91
898
+ msgid "Orders successfully renumerated!"
899
+ msgstr "Orders succesvol opnieuw genummerd"
900
+
901
+ #: includes/class-wcj-order-numbers.php:94
902
+ msgid "WooCommerce Jetpack - Renumerate Orders"
903
+ msgstr "WooCommerce Jetpack - Opnieuw nummeren Orders"
904
+
905
+ #: includes/class-wcj-order-numbers.php:95
906
+ msgid ""
907
+ "The tool renumerates all orders. Press the button below to renumerate all existing "
908
+ "orders starting from order counter settings in WooCommerce > Settings > Jetpack > "
909
+ "Order Numbers."
910
+ msgstr ""
911
+
912
+ #: includes/class-wcj-order-numbers.php:153 includes/class-wcj-order-numbers.php:156
913
+ #: includes/class-wcj-order-numbers.php:247
914
+ msgid "Order Numbers"
915
+ msgstr "Ordernummers"
916
+
917
+ #: includes/class-wcj-order-numbers.php:153
918
+ msgid ""
919
+ "This section lets you enable sequential order numbering, set custom number prefix, "
920
+ "suffix and width."
921
+ msgstr ""
922
+
923
+ #: includes/class-wcj-order-numbers.php:157
924
+ msgid "Enable Order Numbers WooJetpack Module"
925
+ msgstr "Schakel de Ordernummers WooJetpack Module in"
926
+
927
+ #: includes/class-wcj-order-numbers.php:158
928
+ msgid ""
929
+ "Sequential order numbering, custom order number prefix, suffix and number width."
930
+ msgstr ""
931
+
932
+ #: includes/class-wcj-order-numbers.php:165
933
+ msgid "Make Order Numbers Sequential"
934
+ msgstr "Maak ordernummers opvolgend"
935
+
936
+ #: includes/class-wcj-order-numbers.php:173
937
+ msgid "Next Order Number"
938
+ msgstr "Volgend Ordernummer"
939
+
940
+ #: includes/class-wcj-order-numbers.php:174
941
+ msgid "Next new order will be given this number."
942
+ msgstr "Volgende nieuwe order zal dit nummer krijgen."
943
+
944
+ #: includes/class-wcj-order-numbers.php:174
945
+ msgid "Use Renumerate Orders tool for existing orders."
946
+ msgstr "Gebruik Opnieuw nummeren Orders Hulpmiddel voor bestaande bestellingen."
947
+
948
+ #: includes/class-wcj-order-numbers.php:175
949
+ msgid "This will be ignored if sequential order numbering is disabled."
950
+ msgstr "Dit zal worden genegeerd als opvolgende nummering uitgeschakeld is."
951
+
952
+ #: includes/class-wcj-order-numbers.php:182
953
+ msgid "Order Number Custom Prefix"
954
+ msgstr ""
955
+
956
+ #: includes/class-wcj-order-numbers.php:184
957
+ msgid ""
958
+ "Prefix before order number (optional). This will change the prefixes for all "
959
+ "existing orders."
960
+ msgstr ""
961
+
962
+ #: includes/class-wcj-order-numbers.php:193
963
+ msgid "Order Number Date Prefix"
964
+ msgstr ""
965
+
966
+ #: includes/class-wcj-order-numbers.php:195
967
+ msgid ""
968
+ "Date prefix before order number (optional). This will change the prefixes for all "
969
+ "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
970
+ "date formats can be used. The only exception is using `\\` symbol in date format, "
971
+ "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
972
+ msgstr ""
973
+
974
+ #: includes/class-wcj-order-numbers.php:204
975
+ msgid "Order Number Width"
976
+ msgstr "Ordernummer breedte"
977
+
978
+ #: includes/class-wcj-order-numbers.php:206
979
+ msgid ""
980
+ "Minimum width of number without prefix (zeros will be added to the left side). "
981
+ "This will change the minimum width of order number for all existing orders. E.g. "
982
+ "set to 5 to have order number displayed as 00001 instead of 1. Leave zero to "
983
+ "disable."
984
+ msgstr ""
985
+
986
+ #: includes/class-wcj-order-numbers.php:215
987
+ msgid "Order Number Custom Suffix"
988
+ msgstr ""
989
+
990
+ #: includes/class-wcj-order-numbers.php:217
991
+ msgid ""
992
+ "Suffix after order number (optional). This will change the suffixes for all "
993
+ "existing orders."
994
+ msgstr ""
995
+
996
+ #: includes/class-wcj-order-numbers.php:226
997
+ msgid "Order Number Date Suffix"
998
+ msgstr ""
999
+
1000
+ #: includes/class-wcj-order-numbers.php:228
1001
+ msgid ""
1002
+ "Date suffix after order number (optional). This will change the suffixes for all "
1003
+ "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
1004
+ "date formats can be used. The only exception is using `\\` symbol in date format, "
1005
+ "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
1006
+ msgstr ""
1007
+
1008
+ #: includes/class-wcj-orders.php:26
1009
+ msgctxt "Order status"
1010
+ msgid "Pending payment"
1011
+ msgstr "In afwachting van betaling [Orderstatus]"
1012
+
1013
+ #: includes/class-wcj-orders.php:27
1014
+ msgctxt "Order status"
1015
+ msgid "Processing"
1016
+ msgstr "In behandeling [Orderstatus]"
1017
+
1018
+ #: includes/class-wcj-orders.php:28
1019
+ msgctxt "Order status"
1020
+ msgid "On hold"
1021
+ msgstr "Op pauze [Orderstatus]"
1022
+
1023
+ #: includes/class-wcj-orders.php:29
1024
+ msgctxt "Order status"
1025
+ msgid "Completed"
1026
+ msgstr "Afgerond [Orderstatus]"
1027
+
1028
+ #: includes/class-wcj-orders.php:30
1029
+ msgctxt "Order status"
1030
+ msgid "Cancelled"
1031
+ msgstr "Geannuleerd [Orderstatus]"
1032
+
1033
+ #: includes/class-wcj-orders.php:31
1034
+ msgctxt "Order status"
1035
+ msgid "Refunded"
1036
+ msgstr "Gecrediteerd [Orderstatus]"
1037
+
1038
+ #: includes/class-wcj-orders.php:32
1039
+ msgctxt "Order status"
1040
+ msgid "Failed"
1041
+ msgstr "Onsuccesvol [Orderstatus]"
1042
+
1043
+ #: includes/class-wcj-orders.php:115 includes/class-wcj-orders.php:127
1044
+ #: includes/class-wcj-orders.php:393 includes/class-wcj-orders.php:396
1045
+ msgid "Custom Statuses"
1046
+ msgstr "Aangepaste statussen"
1047
+
1048
+ #: includes/class-wcj-orders.php:117
1049
+ msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1050
+ msgstr ""
1051
+ "Hulpmiddel laat je aangepaste statussen voor WooCommerce orders toevoegen of "
1052
+ "verwijderen"
1053
+
1054
+ #: includes/class-wcj-orders.php:157
1055
+ msgid "Status slug is empty. Status not added."
1056
+ msgstr "Status slug is leeg. Status niet toegevoegd."
1057
+
1058
+ #: includes/class-wcj-orders.php:159
1059
+ msgid "The length of status slug must be 17 or less characters."
1060
+ msgstr "De lengte van de status slug mag maximaal 17 karakters zijn."
1061
+
1062
+ #: includes/class-wcj-orders.php:161
1063
+ msgid "Status label is empty. Status not added."
1064
+ msgstr "Status label is leeg. Status niet toegevoegd."
1065
+
1066
+ #: includes/class-wcj-orders.php:167
1067
+ msgid "Duplicate slug. Status not added."
1068
+ msgstr "Dupliceer slug. Status niet toegevoegd."
1069
+
1070
+ #: includes/class-wcj-orders.php:173
1071
+ msgid "New status have been successfully added!"
1072
+ msgstr "Nieuwe status is succesvol toegevoegd."
1073
+
1074
+ #: includes/class-wcj-orders.php:175
1075
+ msgid "Status was not added."
1076
+ msgstr "Status is niet toegevoegd."
1077
+
1078
+ #: includes/class-wcj-orders.php:191
1079
+ msgid "Status have been successfully deleted."
1080
+ msgstr "Status is succesvol verwijderd."
1081
+
1082
+ #: includes/class-wcj-orders.php:193
1083
+ msgid "Delete failed."
1084
+ msgstr "Verwijderen niet gelukt."
1085
+
1086
+ #: includes/class-wcj-orders.php:196
1087
+ msgid "WooCommerce Jetpack - Custom Statuses"
1088
+ msgstr "WooCommerce Jetpack - Aangepaste statussen"
1089
+
1090
+ #: includes/class-wcj-orders.php:197
1091
+ msgid "The tool lets you add or delete any custom status for WooCommerce orders."
1092
+ msgstr ""
1093
+ "Het hulpmiddel laat je elke aangepaste status voor WooCommerce orders toevoegen of "
1094
+ "verwijderen."
1095
+
1096
+ #: includes/class-wcj-orders.php:199
1097
+ msgid "Statuses"
1098
+ msgstr "Statussen"
1099
+
1100
+ #: includes/class-wcj-orders.php:202
1101
+ msgid "Slug"
1102
+ msgstr "Slug"
1103
+
1104
+ #: includes/class-wcj-orders.php:203 includes/class-wcj-orders.php:228
1105
+ msgid "Label"
1106
+ msgstr "Label"
1107
+
1108
+ #: includes/class-wcj-orders.php:205 includes/class-wcj-orders.php:215
1109
+ msgid "Delete"
1110
+ msgstr "Verwijder"
1111
+
1112
+ #: includes/class-wcj-orders.php:227
1113
+ msgid "Slug (without wc- prefix)"
1114
+ msgstr ""
1115
+
1116
+ #: includes/class-wcj-orders.php:315
1117
+ msgid "Orders Options"
1118
+ msgstr "Orders Opties"
1119
+
1120
+ #: includes/class-wcj-orders.php:319
1121
+ msgid "Enable the Orders feature"
1122
+ msgstr "Schakel de order optie in"
1123
+
1124
+ #: includes/class-wcj-orders.php:320
1125
+ msgid "Minimum order amount, orders auto-complete, orders custom statuses."
1126
+ msgstr ""
1127
+ "Minimaal bestelbedrag, orders automatisch afronden, orders aangepaste statussen"
1128
+
1129
+ #: includes/class-wcj-orders.php:328
1130
+ msgid "Order Minimum Amount"
1131
+ msgstr "Minimaal bestelbedrag."
1132
+
1133
+ #: includes/class-wcj-orders.php:328
1134
+ msgid "This section lets you set minimum order amount."
1135
+ msgstr "Dit gedeelte laat je een minimaal bestelbedrag instellen."
1136
+
1137
+ #: includes/class-wcj-orders.php:331
1138
+ msgid "Amount"
1139
+ msgstr "Bedrag"
1140
+
1141
+ #: includes/class-wcj-orders.php:332
1142
+ msgid "Minimum order amount. Set to 0 to disable."
1143
+ msgstr "Minimaal bestelbedrag. Zet op 0 om uit te schakelen."
1144
+
1145
+ #: includes/class-wcj-orders.php:339
1146
+ msgid "Error message"
1147
+ msgstr "Foutmelding bericht"
1148
+
1149
+ #: includes/class-wcj-orders.php:341 includes/class-wcj-orders.php:361
1150
+ msgid ""
1151
+ "Message to customer if order is below minimum amount. Default: You must have an "
1152
+ "order with a minimum of %s to place your order, your current order total is %s."
1153
+ msgstr ""
1154
+ "Bericht aan klant als de order onder het minimum bestelbedrag is. Default: Je moet "
1155
+ "minimaal voor %s in je winkelwagen hebben, voordat je kunt bestellen. Het "
1156
+ "orderbedrag is nu %s."
1157
+
1158
+ #: includes/class-wcj-orders.php:351
1159
+ msgid "Add notice to cart page also"
1160
+ msgstr "Voeg ook een notitie toe aan de winkelwagenpagina"
1161
+
1162
+ #: includes/class-wcj-orders.php:352
1163
+ msgid "Add"
1164
+ msgstr "Voeg toe"
1165
+
1166
+ #: includes/class-wcj-orders.php:359
1167
+ msgid "Message on cart page"
1168
+ msgstr "Bericht op winkelwagen pagina"
1169
+
1170
+ #: includes/class-wcj-orders.php:371
1171
+ msgid "Stop customer from seeing the Checkout page if minimum amount not reached."
1172
+ msgstr ""
1173
+ "Zorg ervoor dat klanten niet op de afrekenpagina kunnen komen, als het minimum "
1174
+ "bestelbedrag nog niet is bereikt."
1175
+
1176
+ #: includes/class-wcj-orders.php:372
1177
+ msgid "Redirect back to Cart page"
1178
+ msgstr "Omleiding terug naar winkelwagenpagina."
1179
+
1180
+ #: includes/class-wcj-orders.php:380
1181
+ msgid "Orders Auto-Complete"
1182
+ msgstr "Orders automatisch afronden"
1183
+
1184
+ #: includes/class-wcj-orders.php:380
1185
+ msgid "This section lets you enable orders auto-complete function."
1186
+ msgstr "Dit gedeelte schakelt de order automatisch afronden optie in."
1187
+
1188
+ #: includes/class-wcj-orders.php:383
1189
+ msgid "Auto-complete all WooCommerce orders"
1190
+ msgstr "Automatisch afronden van alle WooCommerce orders"
1191
+
1192
+ #: includes/class-wcj-orders.php:385
1193
+ msgid ""
1194
+ "E.g. if you sell digital products then you are not shipping anything and you may "
1195
+ "want auto-complete all your orders."
1196
+ msgstr ""
1197
+ "Oftewel; als je digitale producten verkoopt en je dus geen verzending nodig hebt, "
1198
+ "kun je alle orders automatisch laten afronden."
1199
+
1200
+ #: includes/class-wcj-orders.php:393
1201
+ msgid "This section lets you enable custom statuses tool."
1202
+ msgstr "Dit gedeelte schakelt het Aangepaste statussen hulpmiddel in."
1203
+
1204
+ #: includes/class-wcj-orders.php:398
1205
+ msgid ""
1206
+ "When enabled, the Custom Statuses tool is accessible through <a href=\"%sadmin.php?"
1207
+ "page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools > Custom "
1208
+ "Statuses</a>."
1209
+ msgstr ""
1210
+ "Bij inschakeling is het Aangepaste Statussen hulpmiddel bereikbaar via <a href="
1211
+ "\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools > "
1212
+ "Custom Statuses</a>."
1213
+
1214
+ #: includes/class-wcj-orders.php:405
1215
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:121
1216
+ msgid "Default Order Status"
1217
+ msgstr "Default Orderstatus"
1218
+
1219
+ #: includes/class-wcj-orders.php:406
1220
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:122
1221
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
1222
+ msgstr ""
1223
+ "Schakel aangepaste Status optie in om Aangepaste statussen toe te voegen aan de "
1224
+ "lijst."
1225
+
1226
+ #: includes/class-wcj-orders.php:407
1227
+ msgid ""
1228
+ "You can change the default order status here. However payment gateways can change "
1229
+ "this status immediatelly on order creation. E.g. BACS gateway will change status "
1230
+ "to On-hold."
1231
+ msgstr ""
1232
+
1233
+ #: includes/class-wcj-payment-gateways.php:119
1234
+ msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
1235
+ msgstr ""
1236
+
1237
+ #: includes/class-wcj-payment-gateways.php:119
1238
+ #: includes/class-wcj-payment-gateways.php:342
1239
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:86
1240
+ msgid ""
1241
+ "If you want to show an image next to the gateway's name on the frontend, enter a "
1242
+ "URL to an image."
1243
+ msgstr ""
1244
+
1245
+ #: includes/class-wcj-payment-gateways.php:152
1246
+ #: includes/class-wcj-payment-gateways.php:369
1247
+ msgid "Payment Gateways Fees Options"
1248
+ msgstr ""
1249
+
1250
+ #: includes/class-wcj-payment-gateways.php:154
1251
+ msgid "This section lets you set extra fees for payment gateways."
1252
+ msgstr ""
1253
+
1254
+ #: includes/class-wcj-payment-gateways.php:155
1255
+ msgid "Fees are applied BEFORE taxes."
1256
+ msgstr "Toeslagen worden toegepast voor de BTW."
1257
+
1258
+ #: includes/class-wcj-payment-gateways.php:172
1259
+ msgid "Fee title to show to customer."
1260
+ msgstr "Toeslag titel om te tonen aan klant."
1261
+
1262
+ #: includes/class-wcj-payment-gateways.php:181
1263
+ msgid "Fee type."
1264
+ msgstr "Toeslag soort"
1265
+
1266
+ #: includes/class-wcj-payment-gateways.php:182
1267
+ msgid "Percent or fixed value."
1268
+ msgstr "Percentage of vast bedrag."
1269
+
1270
+ #: includes/class-wcj-payment-gateways.php:189
1271
+ msgid "Fixed"
1272
+ msgstr "Vaste"
1273
+
1274
+ #: includes/class-wcj-payment-gateways.php:190
1275
+ msgid "Percent"
1276
+ msgstr "Procent"
1277
+
1278
+ #: includes/class-wcj-payment-gateways.php:196
1279
+ msgid "Fee value."
1280
+ msgstr "Toeslag bedrag"
1281
+
1282
+ #: includes/class-wcj-payment-gateways.php:197
1283
+ msgid "The value."
1284
+ msgstr "De waarde."
1285
+
1286
+ #: includes/class-wcj-payment-gateways.php:209
1287
+ msgid "Minimum cart amount for adding the fee."
1288
+ msgstr "Minimum winkelwagenbedrag om de toeslag toe te voegen."
1289
+
1290
+ #: includes/class-wcj-payment-gateways.php:210
1291
+ #: includes/class-wcj-payment-gateways.php:223
1292
+ msgid "Set 0 to disable."
1293
+ msgstr "Stel 0 in om uit te schakelen."
1294
+
1295
+ #: includes/class-wcj-payment-gateways.php:222
1296
+ msgid "Maximum cart amount for adding the fee."
1297
+ msgstr "Maximum winkelwagenbedrag om de toeslag toe te voegen."
1298
+
1299
+ #: includes/class-wcj-payment-gateways.php:257
1300
+ msgid "Payment Gateways Attach PDF Invoice Options"
1301
+ msgstr ""
1302
+
1303
+ #: includes/class-wcj-payment-gateways.php:257
1304
+ msgid "This section lets you choose when to attach PDF invoice to customers emails."
1305
+ msgstr ""
1306
+ "Dit gedeelte laat je kiezen wanneer er een PDF factuur bijlage moet worden "
1307
+ "toegevoegd aan emails van klanten."
1308
+
1309
+ #: includes/class-wcj-payment-gateways.php:267
1310
+ msgid "Attach PDF invoice."
1311
+ msgstr "Voeg een PDF factuur toe."
1312
+
1313
+ #: includes/class-wcj-payment-gateways.php:310
1314
+ msgid "Payment Gateways Options"
1315
+ msgstr ""
1316
+
1317
+ #: includes/class-wcj-payment-gateways.php:313
1318
+ #: includes/class-wcj-payment-gateways.php:389
1319
+ msgid "Payment Gateways"
1320
+ msgstr ""
1321
+
1322
+ #: includes/class-wcj-payment-gateways.php:314
1323
+ msgid "Enable the Payment Gateways feature"
1324
+ msgstr ""
1325
+
1326
+ #: includes/class-wcj-payment-gateways.php:315
1327
+ msgid ""
1328
+ "Add custom payment gateway, change icons (images) for all default WooCommerce "
1329
+ "payment gateways."
1330
+ msgstr ""
1331
+
1332
+ #: includes/class-wcj-payment-gateways.php:323
1333
+ msgid "Custom Payment Gateways Options"
1334
+ msgstr ""
1335
+
1336
+ #: includes/class-wcj-payment-gateways.php:326
1337
+ msgid "Number of Gateways"
1338
+ msgstr ""
1339
+
1340
+ #: includes/class-wcj-payment-gateways.php:328
1341
+ msgid ""
1342
+ "Number of custom payments gateways to be added. All settings for each new gateway "
1343
+ "are in WooCommerce > Settings > Checkout."
1344
+ msgstr ""
1345
+
1346
+ #: includes/class-wcj-payment-gateways.php:342
1347
+ msgid "Default WooCommerce Payment Gateways Options"
1348
+ msgstr ""
1349
+
1350
+ #: includes/class-wcj-payment-gateways.php:369
1351
+ msgid ""
1352
+ "This section lets you enable extra fees for payment gateways. When enabled all "
1353
+ "options are added to WooCommerce > Settings > Checkout"
1354
+ msgstr ""
1355
+
1356
+ #: includes/class-wcj-payment-gateways.php:372
1357
+ msgid "Payment Gateways Fees"
1358
+ msgstr ""
1359
+
1360
+ #: includes/class-wcj-payment-gateways.php:373
1361
+ msgid "Enable the Payment Gateways Fees"
1362
+ msgstr ""
1363
+
1364
+ #: includes/class-wcj-pdf-invoices.php:178 includes/class-wcj-pdf-invoices.php:183
1365
+ msgid "Invoice"
1366
+ msgstr "Factuur"
1367
+
1368
+ #: includes/class-wcj-pdf-invoices.php:755 includes/class-wcj-pdf-invoices.php:761
1369
+ msgid "PDF Invoice"
1370
+ msgstr "PDF factuur"
1371
+
1372
+ #: includes/class-wcj-pdf-invoices.php:786
1373
+ msgid "PDF Invoices Options"
1374
+ msgstr "PDF factuur opties"
1375
+
1376
+ #: includes/class-wcj-pdf-invoices.php:790
1377
+ msgid "Enable the PDF Invoices feature"
1378
+ msgstr "Schakel de PDF factuur optie in."
1379
+
1380
+ #: includes/class-wcj-pdf-invoices.php:791
1381
+ msgid "Add PDF invoices for the store owners and for the customers."
1382
+ msgstr "Voeg PDF facturen toe voor de winkeleigenaar en de klanten."
1383
+
1384
+ #: includes/class-wcj-pdf-invoices.php:799
1385
+ msgid "Invoice Header"
1386
+ msgstr "Factuur koptekst"
1387
+
1388
+ #: includes/class-wcj-pdf-invoices.php:799
1389
+ msgid ""
1390
+ "This section lets you set texts for required invoice number and date, and optional "
1391
+ "logo, header text, invoice due and fulfillment dates."
1392
+ msgstr ""
1393
+
1394
+ #: includes/class-wcj-pdf-invoices.php:802
1395
+ msgid "Your Logo URL"
1396
+ msgstr "Jouw Logo URL"
1397
+
1398
+ #: includes/class-wcj-pdf-invoices.php:803
1399
+ msgid ""
1400
+ "Enter a URL to an image you want to show in the invoice's header. Upload your "
1401
+ "image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1402
+ msgstr ""
1403
+ "Voer een URL naar een plaatje toe die je wilt weergeven in de factuur kop. Upload "
1404
+ "een bestand met <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1405
+
1406
+ #: includes/class-wcj-pdf-invoices.php:804 includes/class-wcj-pdf-invoices.php:813
1407
+ #: includes/class-wcj-pdf-invoices.php:833 includes/class-wcj-pdf-invoices.php:843
1408
+ #: includes/class-wcj-pdf-invoices.php:862 includes/class-wcj-pdf-invoices.php:882
1409
+ #: includes/class-wcj-pdf-invoices.php:955 includes/class-wcj-pdf-invoices.php:990
1410
+ #: includes/class-wcj-pdf-invoices.php:1041 includes/class-wcj-pdf-invoices.php:1050
1411
+ #: includes/class-wcj-pdf-invoices.php:1059 includes/class-wcj-pdf-invoices.php:1068
1412
+ #: includes/class-wcj-pdf-invoices.php:1077 includes/class-wcj-pdf-invoices.php:1086
1413
+ #: includes/class-wcj-pdf-invoices.php:1166 includes/class-wcj-pdf-invoices.php:1175
1414
+ msgid "Leave blank to disable"
1415
+ msgstr "Laat leeg om uit te schakelen"
1416
+
1417
+ #: includes/class-wcj-pdf-invoices.php:812
1418
+ msgid "Header Text"
1419
+ msgstr "Koptekst"
1420
+
1421
+ #: includes/class-wcj-pdf-invoices.php:814
1422
+ msgid "Default: INVOICE"
1423
+ msgstr "Default: FACTUUR"
1424
+
1425
+ #: includes/class-wcj-pdf-invoices.php:816
1426
+ msgid "INVOICE"
1427
+ msgstr "FACTUUR"
1428
+
1429
+ #: includes/class-wcj-pdf-invoices.php:822
1430
+ msgid "Invoice Number"
1431
+ msgstr "Factuurnummer"
1432
+
1433
+ #: includes/class-wcj-pdf-invoices.php:823
1434
+ msgid "Default: Invoice number"
1435
+ msgstr "Default: Factuurnummer"
1436
+
1437
+ #: includes/class-wcj-pdf-invoices.php:825
1438
+ msgid "Invoice number"
1439
+ msgstr "Factuurnummer"
1440
+
1441
+ #: includes/class-wcj-pdf-invoices.php:831
1442
+ msgid "Order Date"
1443
+ msgstr "Orderdatum"
1444
+
1445
+ #: includes/class-wcj-pdf-invoices.php:832
1446
+ msgid "Default: Order date"
1447
+ msgstr "Default: Orderdatum"
1448
+
1449
+ #: includes/class-wcj-pdf-invoices.php:835
1450
+ msgid "Order date"
1451
+ msgstr "Orderdatum"
1452
+
1453
+ #: includes/class-wcj-pdf-invoices.php:841
1454
+ msgid "Order Time"
1455
+ msgstr "Ordertijd"
1456
+
1457
+ #: includes/class-wcj-pdf-invoices.php:842
1458
+ msgid "Default: Order time"
1459
+ msgstr "Default: Ordertijd"
1460
+
1461
+ #: includes/class-wcj-pdf-invoices.php:845
1462
+ msgid "Order time"
1463
+ msgstr "Ordertijd"
1464
+
1465
+ #: includes/class-wcj-pdf-invoices.php:851
1466
+ msgid "Invoice Date"
1467
+ msgstr "Factuurdatum"
1468
+
1469
+ #: includes/class-wcj-pdf-invoices.php:852
1470
+ msgid "Default: Invoice date"
1471
+ msgstr "Default: Factuurdatum"
1472
+
1473
+ #: includes/class-wcj-pdf-invoices.php:854
1474
+ msgid "Invoice date"
1475
+ msgstr "Factuurdatum"
1476
+
1477
+ #: includes/class-wcj-pdf-invoices.php:861
1478
+ msgid "Default: Invoice due date"
1479
+ msgstr "Default: Uiterste betaaldatum"
1480
+
1481
+ #: includes/class-wcj-pdf-invoices.php:864
1482
+ msgid "Invoice due date"
1483
+ msgstr "Uiterste betaaldatum"
1484
+
1485
+ #: includes/class-wcj-pdf-invoices.php:871 includes/class-wcj-pdf-invoices.php:891
1486
+ msgid "days"
1487
+ msgstr "dagen"
1488
+
1489
+ #: includes/class-wcj-pdf-invoices.php:881
1490
+ msgid "Default: Invoice fulfillment date"
1491
+ msgstr ""
1492
+
1493
+ #: includes/class-wcj-pdf-invoices.php:884
1494
+ msgid "Invoice fulfillment date"
1495
+ msgstr ""
1496
+
1497
+ #: includes/class-wcj-pdf-invoices.php:900
1498
+ msgid "Additional Header"
1499
+ msgstr "Extra koptekst"
1500
+
1501
+ #: includes/class-wcj-pdf-invoices.php:901
1502
+ msgid ""
1503
+ "Additional header - will be displayed above all data on invoice. You can use html "
1504
+ "and/or shortcodes here."
1505
+ msgstr ""
1506
+ "Extra koptekst - wordt weergegeven boven alle data op de factuur. Je kunt HTML en/"
1507
+ "of shortcodes gebruiken."
1508
+
1509
+ #: includes/class-wcj-pdf-invoices.php:910
1510
+ msgid "Seller and Buyer Info"
1511
+ msgstr "Verkoper en koper Info"
1512
+
1513
+ #: includes/class-wcj-pdf-invoices.php:913 includes/class-wcj-pdf-invoices.php:916
1514
+ msgid "Seller"
1515
+ msgstr "Verkoper"
1516
+
1517
+ #: includes/class-wcj-pdf-invoices.php:922
1518
+ msgid "Your business information"
1519
+ msgstr "Jouw bedrijfsinformatie"
1520
+
1521
+ #: includes/class-wcj-pdf-invoices.php:924
1522
+ msgid "New lines are added automatically."
1523
+ msgstr "Nieuwe regels worden automatisch toegevoegd."
1524
+
1525
+ #: includes/class-wcj-pdf-invoices.php:926
1526
+ msgid "<strong>Company Name</strong>"
1527
+ msgstr "<strong>Bedrijfsnaam</strong>"
1528
+
1529
+ #: includes/class-wcj-pdf-invoices.php:932 includes/class-wcj-pdf-invoices.php:935
1530
+ msgid "Buyer"
1531
+ msgstr "Koper"
1532
+
1533
+ #: includes/class-wcj-pdf-invoices.php:942 includes/class-wcj-pdf-invoices.php:948
1534
+ msgid "Items"
1535
+ msgstr "Producten"
1536
+
1537
+ #: includes/class-wcj-pdf-invoices.php:945
1538
+ msgid "Items Table Heading Text"
1539
+ msgstr "Producten tabel koptekst"
1540
+
1541
+ #: includes/class-wcj-pdf-invoices.php:954
1542
+ msgid "Shipping as Item"
1543
+ msgstr "Verzendkosten als product"
1544
+
1545
+ #: includes/class-wcj-pdf-invoices.php:956
1546
+ msgid "Display shipping as item"
1547
+ msgstr "Laat verzendkosten zien als product"
1548
+
1549
+ #: includes/class-wcj-pdf-invoices.php:974 includes/class-wcj-pdf-invoices.php:982
1550
+ msgid "Add shipping method info"
1551
+ msgstr "Voeg verzendmethode informatie toe"
1552
+
1553
+ #: includes/class-wcj-pdf-invoices.php:981
1554
+ msgid "Do not add shipping method info"
1555
+ msgstr "Voeg geen verzendmethode informatie toe"
1556
+
1557
+ #: includes/class-wcj-pdf-invoices.php:983
1558
+ msgid "Replace with shipping method info"
1559
+ msgstr "Vervang verzendmethode informatie"
1560
+
1561
+ #: includes/class-wcj-pdf-invoices.php:989
1562
+ msgid "Discount as Item"
1563
+ msgstr "Korting als product"
1564
+
1565
+ #: includes/class-wcj-pdf-invoices.php:991
1566
+ msgid "Display discount as item"
1567
+ msgstr "Toon korting als product"
1568
+
1569
+ #: includes/class-wcj-pdf-invoices.php:1001
1570
+ msgid "Items Columns"
1571
+ msgstr "Productkolommen"
1572
+
1573
+ #: includes/class-wcj-pdf-invoices.php:1001
1574
+ msgid ""
1575
+ "This section lets you set column names in invoice items table. You can disable "
1576
+ "some columns by leaving blank column name."
1577
+ msgstr ""
1578
+ "Dit gedeelte laat je kolomnamen invoeren in de factuur productentabel. Je kunt "
1579
+ "kolommen uitschakelen door de kolomnaam leeg te laten."
1580
+
1581
+ #: includes/class-wcj-pdf-invoices.php:1004 includes/class-wcj-pdf-invoices.php:1007
1582
+ msgid "Nr."
1583
+ msgstr "Nr."
1584
+
1585
+ #: includes/class-wcj-pdf-invoices.php:1013 includes/class-wcj-pdf-invoices.php:1016
1586
+ msgid "Item Name"
1587
+ msgstr "Productnaam"
1588
+
1589
+ #: includes/class-wcj-pdf-invoices.php:1022
1590
+ msgid "Item Name Additional Info"
1591
+ msgstr "Productnaam extra info"
1592
+
1593
+ #: includes/class-wcj-pdf-invoices.php:1023
1594
+ msgid ""
1595
+ "Here you can add more info to item's name column (e.g. sku). Default is (SKU: %sku"
1596
+ "%)"
1597
+ msgstr ""
1598
+
1599
+ #: includes/class-wcj-pdf-invoices.php:1025
1600
+ msgid "(SKU: %sku%)"
1601
+ msgstr ""
1602
+
1603
+ #: includes/class-wcj-pdf-invoices.php:1031 includes/class-wcj-pdf-invoices.php:1034
1604
+ msgid "Qty"
1605
+ msgstr ""
1606
+
1607
+ #: includes/class-wcj-pdf-invoices.php:1040
1608
+ msgid "Single Item Price (TAX excl.)"
1609
+ msgstr "Enkel productprijs (Excl. BTW)"
1610
+
1611
+ #: includes/class-wcj-pdf-invoices.php:1043
1612
+ msgid "Price (TAX excl.)"
1613
+ msgstr "Prijs (Excl. BTW)"
1614
+
1615
+ #: includes/class-wcj-pdf-invoices.php:1049
1616
+ msgid "Single Item TAX"
1617
+ msgstr "Enkel product BTW"
1618
+
1619
+ #: includes/class-wcj-pdf-invoices.php:1052
1620
+ msgid "TAX"
1621
+ msgstr "BTW"
1622
+
1623
+ #: includes/class-wcj-pdf-invoices.php:1058
1624
+ msgid "Single Item Price (TAX incl.)"
1625
+ msgstr "Enkel productprijs (Incl. BTW)"
1626
+
1627
+ #: includes/class-wcj-pdf-invoices.php:1061
1628
+ msgid "Price (TAX incl.)"
1629
+ msgstr "Prijs (inc. BTW)"
1630
+
1631
+ #: includes/class-wcj-pdf-invoices.php:1067 includes/class-wcj-pdf-invoices.php:1070
1632
+ msgid "Sum (TAX excl.)"
1633
+ msgstr "Totaal (excl. BTW)"
1634
+
1635
+ #: includes/class-wcj-pdf-invoices.php:1076
1636
+ msgid "Tax Percent"
1637
+ msgstr "BTW percentage"
1638
+
1639
+ #: includes/class-wcj-pdf-invoices.php:1079
1640
+ msgid "Taxes %"
1641
+ msgstr "BTW %"
1642
+
1643
+ #: includes/class-wcj-pdf-invoices.php:1085 includes/class-wcj-pdf-invoices.php:1088
1644
+ #: includes/class-wcj-pdf-invoices.php:1146
1645
+ msgid "Taxes"
1646
+ msgstr "BTW"
1647
+
1648
+ #: includes/class-wcj-pdf-invoices.php:1094 includes/class-wcj-pdf-invoices.php:1097
1649
+ msgid "Sum (TAX incl.)"
1650
+ msgstr "Totaal (incl. BTW)"
1651
+
1652
+ #: includes/class-wcj-pdf-invoices.php:1104
1653
+ msgid "Totals"
1654
+ msgstr "Totaal"
1655
+
1656
+ #: includes/class-wcj-pdf-invoices.php:1104
1657
+ msgid "This section lets you set texts for totals table."
1658
+ msgstr "Dit gedeelte laat je teksten voor totaaltabel instellen."
1659
+
1660
+ #: includes/class-wcj-pdf-invoices.php:1107 includes/class-wcj-pdf-invoices.php:1110
1661
+ msgid "Order Subtotal"
1662
+ msgstr "Order Subtotaal"
1663
+
1664
+ #: includes/class-wcj-pdf-invoices.php:1108
1665
+ msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1666
+ msgstr "Order Subtotaal = Totaal - BTW - Verzendkosten - korting"
1667
+
1668
+ #: includes/class-wcj-pdf-invoices.php:1116
1669
+ msgid "Order Shipping Price"
1670
+ msgstr "Order verzendkosten"
1671
+
1672
+ #: includes/class-wcj-pdf-invoices.php:1125
1673
+ msgid "Total Discount"
1674
+ msgstr "Totale korting"
1675
+
1676
+ #: includes/class-wcj-pdf-invoices.php:1128
1677
+ msgid "Discount"
1678
+ msgstr "Korting"
1679
+
1680
+ #: includes/class-wcj-pdf-invoices.php:1134 includes/class-wcj-pdf-invoices.php:1137
1681
+ msgid "Order Total (TAX excl.)"
1682
+ msgstr "Order Totaal (Excl. BTW)"
1683
+
1684
+ #: includes/class-wcj-pdf-invoices.php:1135
1685
+ msgid ""
1686
+ "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping is not "
1687
+ "equal to zero. In other words: if \"Order Total (TAX excl.)\" not equal to \"Order "
1688
+ "Subtotal\""
1689
+ msgstr ""
1690
+ "Order Totaal (Excl. BTW) = Totaal - BTW. Wordt alleen weergegeven als korting of "
1691
+ "verzendkosten niet gelijk zijn aan nul. In andere woorden: als \"Order Totaal "
1692
+ "(Excl. BTW)\" niet gelijk is aan \"Order Subtotaal\"."
1693
+
1694
+ #: includes/class-wcj-pdf-invoices.php:1143
1695
+ msgid "Order Total Taxes"
1696
+ msgstr "Order Totaal BTW"
1697
+
1698
+ #: includes/class-wcj-pdf-invoices.php:1152 includes/class-wcj-pdf-invoices.php:1155
1699
+ msgid "Order Total"
1700
+ msgstr "Order Totaal"
1701
+
1702
+ #: includes/class-wcj-pdf-invoices.php:1162
1703
+ msgid "Footer"
1704
+ msgstr "Voettekst"
1705
+
1706
+ #: includes/class-wcj-pdf-invoices.php:1165 includes/class-wcj-pdf-invoices.php:1168
1707
+ msgid "Payment Method"
1708
+ msgstr "Betaalmethode"
1709
+
1710
+ #: includes/class-wcj-pdf-invoices.php:1174 includes/class-wcj-pdf-invoices.php:1177
1711
+ msgid "Shipping Method"
1712
+ msgstr "Verzendmethode"
1713
+
1714
+ #: includes/class-wcj-pdf-invoices.php:1183 includes/class-wcj-pdf-invoices.php:1186
1715
+ msgid "Shipping Address"
1716
+ msgstr "Verzendadres"
1717
+
1718
+ #: includes/class-wcj-pdf-invoices.php:1184
1719
+ msgid ""
1720
+ "Will be displayed only if customer's shipping address differs from billing "
1721
+ "address. Leave blank to disable"
1722
+ msgstr ""
1723
+ "Wordt alleen weergegeven als het verzendadres anders is dan het factuuradres. Laat "
1724
+ "leeg om uit te schakelen."
1725
+
1726
+ #: includes/class-wcj-pdf-invoices.php:1192
1727
+ msgid "Additional Footer"
1728
+ msgstr "Extra voettekst"
1729
+
1730
+ #: includes/class-wcj-pdf-invoices.php:1193
1731
+ msgid ""
1732
+ "Additional footer - will be displayed below all other data on invoice. You can use "
1733
+ "html and/or shortcodes here."
1734
+ msgstr ""
1735
+ "Extra voettekst - wordt weergegeven onder alle data op factuur. Je kunt HTML en/of "
1736
+ "shortcodes gebruiken."
1737
+
1738
+ #: includes/class-wcj-pdf-invoices.php:1205
1739
+ msgid "Font size"
1740
+ msgstr "Tekstgrootte"
1741
+
1742
+ #: includes/class-wcj-pdf-invoices.php:1206
1743
+ msgid "Default: 8"
1744
+ msgstr "Default: 8"
1745
+
1746
+ #: includes/class-wcj-pdf-invoices.php:1214
1747
+ msgid "CSS"
1748
+ msgstr "CSS"
1749
+
1750
+ #: includes/class-wcj-pdf-invoices.php:1229
1751
+ msgid "PDF Invoices for Customers (in My Account)"
1752
+ msgstr "PDF facturen voor klanten (in Mijn Account)"
1753
+
1754
+ #: includes/class-wcj-pdf-invoices.php:1230
1755
+ msgid "Enable the PDF Invoices in customers account"
1756
+ msgstr "Schakel de PDF facturen voor klanten in Mijn Account in)"
1757
+
1758
+ #: includes/class-wcj-pdf-invoices.php:1239
1759
+ msgid "PDF Invoices for Customers (Email attachment)"
1760
+ msgstr "PDF Facturen voor klanten (Email bijlage)"
1761
+
1762
+ #: includes/class-wcj-pdf-invoices.php:1240
1763
+ msgid ""
1764
+ "Enable the PDF Invoices attachment files in customers email on order completed"
1765
+ msgstr "Schakel de PDF factuur bijlage in email klant bij complete order in."
1766
+
1767
+ #: includes/class-wcj-pdf-invoices.php:1259
1768
+ msgid "Enable Save as"
1769
+ msgstr "Schakel in Opslaan als"
1770
+
1771
+ #: includes/class-wcj-pdf-invoices.php:1260
1772
+ msgid "Enable save as pdf instead of view pdf"
1773
+ msgstr "Schakel in Opslaan als in plaats van bekijken PDF"
1774
+
1775
+ #: includes/class-wcj-price-by-country.php:82
1776
+ #: includes/class-wcj-price-by-country.php:99
1777
+ msgid "Show reports only in"
1778
+ msgstr "Toon rapportages alleen in"
1779
+
1780
+ #: includes/class-wcj-price-by-country.php:417
1781
+ msgid "Price by Country Options"
1782
+ msgstr "Prijs per Land opties"
1783
+
1784
+ #: includes/class-wcj-price-by-country.php:419
1785
+ msgid ""
1786
+ "Change product's price and currency by customer's country. Customer's country is "
1787
+ "detected automatically by IP."
1788
+ msgstr ""
1789
+ "Verander de productprijs en valuta per land van herkomst klant. Land van herkomst "
1790
+ "is automatisch gedetecteerd door IP."
1791
+
1792
+ #: includes/class-wcj-price-by-country.php:422
1793
+ msgid "IP DB version: "
1794
+ msgstr "IP DB versie:"
1795
+
1796
+ #: includes/class-wcj-price-by-country.php:427
1797
+ #: includes/class-wcj-price-by-country.php:497
1798
+ msgid "Prices and Currencies by Country"
1799
+ msgstr "Prijzen en valuta per Land"
1800
+
1801
+ #: includes/class-wcj-price-by-country.php:428
1802
+ msgid "Enable the Price by Country feature"
1803
+ msgstr "Schakel de prijs op basis van land van herkomst optie in."
1804
+
1805
+ #: includes/class-wcj-price-by-country.php:429
1806
+ msgid "Change product's price and currency by customer's country."
1807
+ msgstr "Verander de productprijs en valuta per land van herkomst."
1808
+
1809
+ #: includes/class-wcj-price-by-country.php:437
1810
+ msgid "Exchange rates"
1811
+ msgstr "Wisselkoersen"
1812
+
1813
+ #: includes/class-wcj-price-by-country.php:440
1814
+ msgid "Groups Number"
1815
+ msgstr "Groepsnumme"
1816
+
1817
+ #: includes/class-wcj-price-by-country.php:459
1818
+ msgid ""
1819
+ "Countries. List of comma separated country codes.<br>For country codes and "
1820
+ "predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
1821
+ "currencies-by-customers-country\">WooJetpack.com</a>"
1822
+ msgstr ""
1823
+
1824
+ #: includes/class-wcj-price-by-country.php:468
1825
+ msgid "Multiply Price by"
1826
+ msgstr "Vermenigvuldig prijs met"
1827
+
1828
+ #: includes/class-wcj-price-by-country.php:481
1829
+ msgid "Currency"
1830
+ msgstr "Valuta"
1831
+
1832
+ #: includes/class-wcj-price-labels.php:119
1833
+ msgid "Migrate from Custom Price Labels (Pro)"
1834
+ msgstr "Migreer van Aangepaste Prijslabels (Pro)"
1835
+
1836
+ #: includes/class-wcj-price-labels.php:121
1837
+ msgid ""
1838
+ "Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) "
1839
+ "plugin to WooCommerce Jetpack."
1840
+ msgstr ""
1841
+ "Hulpmiddel laat je alle data (labels) kopiëren van Aangepaste Prijslabels (Pro) "
1842
+ "plugin naar WooCommerce Jetpack."
1843
+
1844
+ #: includes/class-wcj-price-labels.php:131
1845
+ msgid "Migrate from Custom Price Labels"
1846
+ msgstr "Migreer van Aangepaste Prijslabels"
1847
+
1848
+ #: includes/class-wcj-price-labels.php:143
1849
+ msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
1850
+ msgstr "WooCommerce Jetpack - Migreer van Aangepaste Prijslabels (Pro)"
1851
+
1852
+ #: includes/class-wcj-price-labels.php:191
1853
+ msgid "Migrating (product ID "
1854
+ msgstr "Migreren (product ID"
1855
+
1856
+ #: includes/class-wcj-price-labels.php:192
1857
+ msgid "Result: "
1858
+ msgstr "Resultaat:"
1859
+
1860
+ #: includes/class-wcj-price-labels.php:214
1861
+ msgid "Found data to migrate (product ID "
1862
+ msgstr "Gevonden data om te migreren (Product ID"
1863
+
1864
+ #: includes/class-wcj-price-labels.php:228
1865
+ msgid "No data to migrate found"
1866
+ msgstr "Geen data gevonden om te migreren."
1867
+
1868
+ #: includes/class-wcj-price-labels.php:232
1869
+ msgid "No products found"
1870
+ msgstr "Geen producten gevonden"
1871
+
1872
+ #: includes/class-wcj-price-labels.php:237
1873
+ msgid ""
1874
+ "Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old "
1875
+ "labels will NOT be deleted. New labels will be overwritten."
1876
+ msgstr ""
1877
+ "Druk op de knop hieronder om alle labels van Aangepaste Prijslabels (Pro) plugin "
1878
+ "te kopiëren. Oude labels worden NIET verwijderd. Nieuwe labels worden overschreven."
1879
+
1880
+ #: includes/class-wcj-price-labels.php:238
1881
+ msgid "Migrate data"
1882
+ msgstr "Migreer data"
1883
+
1884
+ #: includes/class-wcj-price-labels.php:533
1885
+ msgid "Custom Price Labels Options"
1886
+ msgstr "Aangepaste Prijs labels Opties"
1887
+
1888
+ #: includes/class-wcj-price-labels.php:536 includes/class-wcj-price-labels.php:644
1889
+ msgid "Custom Price Labels"
1890
+ msgstr "Aangepaste Prijs Labels"
1891
+
1892
+ #: includes/class-wcj-price-labels.php:537
1893
+ msgid "Enable the Custom Price Labels feature"
1894
+ msgstr "Schakel de Aangepaste Prijslabels optie in."
1895
+
1896
+ #: includes/class-wcj-price-labels.php:538
1897
+ msgid "Create any custom price label for any product."
1898
+ msgstr "Creëer een Aangepast prijslabel voor elk product."
1899
+
1900
+ #: includes/class-wcj-price-labels.php:546
1901
+ msgid "Global Custom Price Labels"
1902
+ msgstr "Globale aangepaste Prijslabels"
1903
+
1904
+ #: includes/class-wcj-price-labels.php:546
1905
+ msgid "This section lets you set price labels for all products globally."
1906
+ msgstr "Dit gedeelte laat je prijslabels globaal instellen voor alle producten."
1907
+
1908
+ #: includes/class-wcj-price-labels.php:549
1909
+ msgid "Add before the price"
1910
+ msgstr "Voeg toe voor de prijs"
1911
+
1912
+ #: includes/class-wcj-price-labels.php:550
1913
+ msgid "Enter text to add before all products prices. Leave blank to disable."
1914
+ msgstr ""
1915
+ "Vul tekst in om toe te voegen voor alle productprijzen. Laat leeg om uit te "
1916
+ "schakelen."
1917
+
1918
+ #: includes/class-wcj-price-labels.php:561
1919
+ msgid "Add after the price"
1920
+ msgstr "Voeg toe na de prijs"
1921
+
1922
+ #: includes/class-wcj-price-labels.php:562
1923
+ msgid "Enter text to add after all products prices. Leave blank to disable."
1924
+ msgstr ""
1925
+ "Vul tekst in om toe te voegen na alle productprijzen. Laat leeg om uit te "
1926
+ "schakelen."
1927
+
1928
+ #: includes/class-wcj-price-labels.php:573
1929
+ msgid "Add between regular and sale prices"
1930
+ msgstr ""
1931
+
1932
+ #: includes/class-wcj-price-labels.php:574
1933
+ msgid "Enter text to add between regular and sale prices. Leave blank to disable."
1934
+ msgstr ""
1935
+
1936
+ #: includes/class-wcj-price-labels.php:588
1937
+ msgid "Remove from price"
1938
+ msgstr "Verwijder van prijs"
1939
+
1940
+ #: includes/class-wcj-price-labels.php:590
1941
+ msgid "Enter text to remove from all products prices. Leave blank to disable."
1942
+ msgstr ""
1943
+ "Voer tekst in om te verwijderen van alle productprijzen. Laat leeg om uit te "
1944
+ "schakelen."
1945
+
1946
+ #: includes/class-wcj-price-labels.php:601
1947
+ msgid "Replace in price"
1948
+ msgstr "Vervang in prijs"
1949
+
1950
+ #: includes/class-wcj-price-labels.php:602
1951
+ msgid "Enter text to replace in all products prices. Leave blank to disable."
1952
+ msgstr ""
1953
+ "Voer tekst in om te vervangen in alle productprijzen. Laat leeg om uit te "
1954
+ "schakelen."
1955
+
1956
+ #: includes/class-wcj-price-labels.php:614
1957
+ msgid "Enter text to replace with. Leave blank to disable."
1958
+ msgstr "Voer tekst in om te vervangen met. Laat leeg om uit te schakelen."
1959
+
1960
+ #: includes/class-wcj-price-labels.php:626
1961
+ msgid "Migrate from Custom Price Labels (Pro) Options"
1962
+ msgstr "Migreer van Aangepaste Prijslabels (Pro) Opties"
1963
+
1964
+ #: includes/class-wcj-price-labels.php:626
1965
+ msgid "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
1966
+ msgstr ""
1967
+ "Dit gedeelte laat je de \"Migreer van Aangepaste Prijslabels (Pro)\" hulpmiddel "
1968
+ "inschakelen."
1969
+
1970
+ #: includes/class-wcj-product-info.php:26
1971
+ msgid "Before product"
1972
+ msgstr "Voor product"
1973
+
1974
+ #: includes/class-wcj-product-info.php:27
1975
+ msgid "Before product title"
1976
+ msgstr "Voor producttitel"
1977
+
1978
+ #: includes/class-wcj-product-info.php:28
1979
+ msgid "After product"
1980
+ msgstr "Na product"
1981
+
1982
+ #: includes/class-wcj-product-info.php:29
1983
+ msgid "After product title"
1984
+ msgstr "Na producttitel"
1985
+
1986
+ #: includes/class-wcj-product-info.php:34
1987
+ msgid "Inside single product summary"
1988
+ msgstr "In enkel product samenvatting."
1989
+
1990
+ #: includes/class-wcj-product-info.php:35
1991
+ msgid "Before single product summary"
1992
+ msgstr "Voor enkel product samenvatting"
1993
+
1994
+ #: includes/class-wcj-product-info.php:36
1995
+ msgid "After single product summary"
1996
+ msgstr "Na enkel product samenvatting"
1997
+
1998
+ #: includes/class-wcj-product-info.php:295
1999
+ msgid "Available shortcodes are:"
2000
+ msgstr "Beschikbare shortcodes zijn:"
2001
+
2002
+ #: includes/class-wcj-product-info.php:571
2003
+ msgid "%s ago"
2004
+ msgstr "% geleden"
2005
+
2006
+ #: includes/class-wcj-product-info.php:621 includes/class-wcj-product-info.php:749
2007
+ #: includes/class-wcj-product-info.php:789
2008
+ msgid "Position"
2009
+ msgstr "Positie"
2010
+
2011
+ #: includes/class-wcj-product-info.php:633 includes/class-wcj-product-info.php:761
2012
+ #: includes/class-wcj-product-info.php:801 includes/class-wcj-product-tabs.php:350
2013
+ #: includes/class-wcj-product-tabs.php:442 includes/class-wcj-product-tabs.php:468
2014
+ #: includes/class-wcj-product-tabs.php:494
2015
+ msgid "Priority (i.e. Order)"
2016
+ msgstr "Prioriteit (volgorde)"
2017
+
2018
+ #: includes/class-wcj-product-info.php:641
2019
+ msgid ""
2020
+ "Number of product info fields. Click \"Save changes\" after you change this number."
2021
+ msgstr ""
2022
+ "Aantal productinformatie velden. Klik Opslaan nadat je dit nummer hebt gewijzigd."
2023
+
2024
+ #: includes/class-wcj-product-info.php:664
2025
+ msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2026
+ msgstr ""
2027
+
2028
+ #: includes/class-wcj-product-info.php:665 includes/class-wcj-product-info.php:779
2029
+ msgid "Total sales: %total_sales%"
2030
+ msgstr ""
2031
+
2032
+ #: includes/class-wcj-product-info.php:668
2033
+ msgid "Default"
2034
+ msgstr "Standaard"
2035
+
2036
+ #: includes/class-wcj-product-info.php:670
2037
+ msgid "Field Nr. "
2038
+ msgstr "Veld nr."
2039
+
2040
+ #: includes/class-wcj-product-info.php:670
2041
+ msgid "Available short codes: "
2042
+ msgstr "Beschikbare shortcodes:"
2043
+
2044
+ #: includes/class-wcj-product-info.php:700
2045
+ msgid "Product Info Options"
2046
+ msgstr "Product Info Opties"
2047
+
2048
+ #: includes/class-wcj-product-info.php:703 includes/class-wcj-product-info.php:868
2049
+ msgid "Product Info"
2050
+ msgstr "Product info"
2051
+
2052
+ #: includes/class-wcj-product-info.php:704
2053
+ msgid "Enable the Product Info feature"
2054
+ msgstr "Schakel de Product Info optie in."
2055
+
2056
+ #: includes/class-wcj-product-info.php:705
2057
+ msgid "Add additional info to product, change related products number."
2058
+ msgstr "Extra info aan product toevoegen, verwante producten aantal wijzigen."
2059
+
2060
+ #: includes/class-wcj-product-info.php:714
2061
+ msgid "More Products Info"
2062
+ msgstr "Meer productinfo"
2063
+
2064
+ #: includes/class-wcj-product-info.php:715
2065
+ msgid ""
2066
+ "For full list of short codes, please visit <a target=\"_blank\" href=\"http://"
2067
+ "woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-"
2068
+ "info/</a>"
2069
+ msgstr ""
2070
+ "Voor volledige lijst van shortcodes, bezoek <a target=\"_blank\" href=\"http://"
2071
+ "woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-"
2072
+ "info/</a>"
2073
+
2074
+ #: includes/class-wcj-product-info.php:720 includes/class-wcj-product-info.php:731
2075
+ msgid "Product Info on Archive Pages"
2076
+ msgstr "Product Info op de Archiefpagina's"
2077
+
2078
+ #: includes/class-wcj-product-info.php:721
2079
+ msgid "Product Info on Single Pages"
2080
+ msgstr "Product info op losse pagina's"
2081
+
2082
+ #: includes/class-wcj-product-info.php:728
2083
+ msgid "Even More Products Info"
2084
+ msgstr "Nog meer productinfo"
2085
+
2086
+ #: includes/class-wcj-product-info.php:740 includes/class-wcj-product-info.php:777
2087
+ msgid "HTML info."
2088
+ msgstr "HTML info."
2089
+
2090
+ #: includes/class-wcj-product-info.php:742
2091
+ msgid "SKU: %sku%"
2092
+ msgstr ""
2093
+
2094
+ #: includes/class-wcj-product-info.php:768
2095
+ msgid "Product Info on Single Product Pages"
2096
+ msgstr "Product Info op losse productpagina"
2097
+
2098
+ #: includes/class-wcj-product-info.php:810
2099
+ msgid "Related Products Options"
2100
+ msgstr "Gerelateerde producten opties"
2101
+
2102
+ #: includes/class-wcj-product-info.php:820
2103
+ msgid "Related Products Number"
2104
+ msgstr "Gerelateerde producten kollommen"
2105
+
2106
+ #: includes/class-wcj-product-info.php:827
2107
+ msgid "Related Products Columns"
2108
+ msgstr "Gerelateerde producten kollommen"
2109
+
2110
+ #: includes/class-wcj-product-info.php:834
2111
+ msgid "Order by"
2112
+ msgstr "Sorteer op"
2113
+
2114
+ #: includes/class-wcj-product-info.php:839
2115
+ msgid "Random"
2116
+ msgstr "Willekeurig"
2117
+
2118
+ #: includes/class-wcj-product-info.php:840
2119
+ msgid "Date"
2120
+ msgstr "Datum"
2121
+
2122
+ #: includes/class-wcj-product-info.php:846
2123
+ msgid "Order"
2124
+ msgstr "Volgorde"
2125
+
2126
+ #: includes/class-wcj-product-info.php:847
2127
+ msgid "Ignored if order by \"Random\" is selected above."
2128
+ msgstr "Negeer als willekeurige volgorde is geselecteerd."
2129
+
2130
+ #: includes/class-wcj-product-info.php:852
2131
+ msgid "Ascending"
2132
+ msgstr "Oplopend"
2133
+
2134
+ #: includes/class-wcj-product-info.php:853
2135
+ msgid "Descending"
2136
+ msgstr "Aflopend"
2137
+
2138
+ #: includes/class-wcj-product-input-fields-global.php:80
2139
+ msgid "Product Input Fields Global Options"
2140
+ msgstr "Product Invoervelden Globaal Opties"
2141
+
2142
+ #: includes/class-wcj-product-input-fields-global.php:82
2143
+ #: includes/class-wcj-product-input-fields-per-product.php:197
2144
+ msgid ""
2145
+ "Add custom input fields to product's single page for customer to fill before "
2146
+ "adding product to cart."
2147
+ msgstr ""
2148
+ "Voeg aangepaste invoervelden toe aan losse pagina's van een product die de klant "
2149
+ "moet invullen voordat het product kan worden toegevoegd aan de winkelwagen."
2150
+
2151
+ #: includes/class-wcj-product-input-fields-global.php:87
2152
+ #: includes/class-wcj-product-input-fields-global.php:135
2153
+ msgid "Product Input Fields - All Products"
2154
+ msgstr "Product invoervelden - Alle producten"
2155
+
2156
+ #: includes/class-wcj-product-input-fields-global.php:89
2157
+ msgid "Add custom input fields to all products."
2158
+ msgstr "Voeg aangepaste invoervelden toe aan alle producten."
2159
+
2160
+ #: includes/class-wcj-product-input-fields-global.php:96
2161
+ msgid "Product Input Fields Number"
2162
+ msgstr "Product Invoervelden nummer"
2163
+
2164
+ #: includes/class-wcj-product-input-fields-per-product.php:95
2165
+ msgid "WooCommerce Jetpack: Product Input Fields"
2166
+ msgstr "WooCommerce Jetpack: Product invoervelden"
2167
+
2168
+ #: includes/class-wcj-product-input-fields-per-product.php:104
2169
+ msgid "Product Input Fields"
2170
+ msgstr "Product invoervelden"
2171
+
2172
+ #: includes/class-wcj-product-input-fields-per-product.php:124
2173
+ msgid "Total number of "
2174
+ msgstr ""
2175
+
2176
+ #: includes/class-wcj-product-input-fields-per-product.php:130
2177
+ #: includes/class-wcj-product-tabs.php:229
2178
+ msgid "Click \"Update\" product after you change this number."
2179
+ msgstr "Klik op Update product nadat je dit nummer hebt gewijzigd."
2180
+
2181
+ #: includes/class-wcj-product-input-fields-per-product.php:195
2182
+ msgid "Product Input Fields per Product Options"
2183
+ msgstr "Product Invoervelden per product Opties"
2184
+
2185
+ #: includes/class-wcj-product-input-fields-per-product.php:199
2186
+ msgid ""
2187
+ "When enabled this module will add \"Product Input Fields\" tab to product's \"Edit"
2188
+ "\" page."
2189
+ msgstr ""
2190
+ "Bij inschakeling zal deze module een tab \"Product Invoervelden\"toevoegen aan de "
2191
+ "bewerkingspagina."
2192
+
2193
+ #: includes/class-wcj-product-input-fields-per-product.php:204
2194
+ #: includes/class-wcj-product-input-fields-per-product.php:236
2195
+ msgid "Product Input Fields - per Product"
2196
+ msgstr "Product Invoervelden - per Product"
2197
+
2198
+ #: includes/class-wcj-product-input-fields-per-product.php:206
2199
+ msgid "Add custom input field on per product basis."
2200
+ msgstr "Voeg een aangepast invoerveld toe per product basis."
2201
+
2202
+ #: includes/class-wcj-product-input-fields-per-product.php:213
2203
+ msgid "Default Number of Product Input Fields per Product"
2204
+ msgstr "Default aantal product invoervelden per product"
2205
+
2206
+ #: includes/class-wcj-product-input-fields-per-product.php:215
2207
+ msgid ""
2208
+ "You will be able to change this number later as well as define the fields, for "
2209
+ "each product individually, in product's \"Edit\"."
2210
+ msgstr ""
2211
+ "Het is mogelijk om dit nummer later te wijzigen, als ook het definieren van de "
2212
+ "velden, voor elk product afzonderlijk, in producten \"bewerken\"."
2213
+
2214
+ #: includes/class-wcj-product-listings.php:56
2215
+ msgid "Product Listings Options"
2216
+ msgstr ""
2217
+
2218
+ #: includes/class-wcj-product-listings.php:59
2219
+ #: includes/class-wcj-product-listings.php:153
2220
+ msgid "Product Listings"
2221
+ msgstr ""
2222
+
2223
+ #: includes/class-wcj-product-listings.php:60
2224
+ msgid "Enable the Product Listings feature"
2225
+ msgstr ""
2226
+
2227
+ #: includes/class-wcj-product-listings.php:61
2228
+ msgid ""
2229
+ "Change display options for shop and category pages: show/hide categories count, "
2230
+ "exclude categories, show/hide empty categories."
2231
+ msgstr ""
2232
+ "Verander weergave opties voor winkel en categoriepagina;s: toon/verberg "
2233
+ "categoriëntelling, uitsluiten van categoriën, toon/verberg lege categoriën."
2234
+
2235
+ #: includes/class-wcj-product-listings.php:69
2236
+ msgid "Shop Page Display Options"
2237
+ msgstr "Winkelpagina Weergave Opties"
2238
+
2239
+ #: includes/class-wcj-product-listings.php:69
2240
+ msgid ""
2241
+ "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
2242
+ "Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
2243
+ msgstr ""
2244
+ "Dit werkt alleen wanneer \"Winkelpagina Weergave\" in \"WooCommerce > Settings > "
2245
+ "Products > Product Listings\" is ingesteld als \"Toon subcategoriën) of \"Toon "
2246
+ "beiden\"."
2247
+
2248
+ #: includes/class-wcj-product-listings.php:72
2249
+ msgid "Categories Count"
2250
+ msgstr "Categoriën telling"
2251
+
2252
+ #: includes/class-wcj-product-listings.php:73
2253
+ #: includes/class-wcj-product-listings.php:172
2254
+ msgid "Hide categories count on shop page"
2255
+ msgstr "Verberg categoriën telling op de winkelpagina"
2256
+
2257
+ #: includes/class-wcj-product-listings.php:80
2258
+ msgid "Exclude Categories"
2259
+ msgstr "Sluit categoriën uit"
2260
+
2261
+ #: includes/class-wcj-product-listings.php:81
2262
+ #: includes/class-wcj-product-listings.php:180
2263
+ msgid ""
2264
+ " Excludes one or more categories from the shop page. This parameter takes a comma-"
2265
+ "separated list of categories by unique ID, in ascending order. Leave blank to "
2266
+ "disable."
2267
+ msgstr ""
2268
+
2269
+ #: includes/class-wcj-product-listings.php:89
2270
+ #: includes/class-wcj-product-listings.php:128
2271
+ msgid "Hide Empty"
2272
+ msgstr "Verberg leeg"
2273
+
2274
+ #: includes/class-wcj-product-listings.php:90
2275
+ #: includes/class-wcj-product-listings.php:189
2276
+ msgid "Hide empty categories on shop page"
2277
+ msgstr "Verberg lege categoriën op winkelpagina"
2278
+
2279
+ #: includes/class-wcj-product-listings.php:97
2280
+ #: includes/class-wcj-product-listings.php:136
2281
+ msgid "Show Products"
2282
+ msgstr "Toon producten"
2283
+
2284
+ #: includes/class-wcj-product-listings.php:98
2285
+ #: includes/class-wcj-product-listings.php:197
2286
+ msgid "Show products if no categories are displayed on shop page"
2287
+ msgstr "Toon producten als er geen categoriën worden getoond op de winkelpagina."
2288
+
2289
+ #: includes/class-wcj-product-listings.php:106
2290
+ msgid "Category Display Options"
2291
+ msgstr "Categorieweergave Opties"
2292
+
2293
+ #: includes/class-wcj-product-listings.php:106
2294
+ msgid ""
2295
+ "This will work only when \"Default Category Display\" in \"WooCommerce > Settings "
2296
+ "> Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
2297
+ msgstr ""
2298
+
2299
+ #: includes/class-wcj-product-listings.php:109
2300
+ msgid "Subcategories Count"
2301
+ msgstr "Subcategorieën telling"
2302
+
2303
+ #: includes/class-wcj-product-listings.php:110
2304
+ #: includes/class-wcj-product-listings.php:208
2305
+ msgid "Hide subcategories count on category pages"
2306
+ msgstr "Verberg subcategoriën telling op categoriepagina's"
2307
+
2308
+ #: includes/class-wcj-product-listings.php:119
2309
+ msgid "Exclude Subcategories"
2310
+ msgstr "Sluit subcategoriën uit"
2311
+
2312
+ #: includes/class-wcj-product-listings.php:120
2313
+ #: includes/class-wcj-product-listings.php:218
2314
+ msgid ""
2315
+ " Excludes one or more categories from the category (archive) pages. This parameter "
2316
+ "takes a comma-separated list of categories by unique ID, in ascending order. Leave "
2317
+ "blank to disable."
2318
+ msgstr ""
2319
+
2320
+ #: includes/class-wcj-product-listings.php:129
2321
+ #: includes/class-wcj-product-listings.php:227
2322
+ msgid "Hide empty subcategories on category pages"
2323
+ msgstr "Verberg lege categoriën op categoriepagina's"
2324
+
2325
+ #: includes/class-wcj-product-listings.php:137
2326
+ #: includes/class-wcj-product-listings.php:235
2327
+ msgid "Show products if no categories are displayed on category page"
2328
+ msgstr ""
2329
+ "Geef producten weer als er geen categoriën worden getoond op de categoriepagina."
2330
+
2331
+ #: includes/class-wcj-product-listings.php:171
2332
+ msgid "WooJetpack: Categories Count"
2333
+ msgstr "WooJetpack: Categoriën telling"
2334
+
2335
+ #: includes/class-wcj-product-listings.php:179
2336
+ msgid "WooJetpack: Exclude Categories on Shop Page"
2337
+ msgstr "WooJetpack: Sluit categoriën uit op de Winkelpagina"
2338
+
2339
+ #: includes/class-wcj-product-listings.php:188
2340
+ #: includes/class-wcj-product-listings.php:226
2341
+ msgid "WooJetpack: Hide Empty"
2342
+ msgstr "WooJetpack: Verberg leeg"
2343
+
2344
+ #: includes/class-wcj-product-listings.php:196
2345
+ #: includes/class-wcj-product-listings.php:234
2346
+ msgid "WooJetpack: Show Products"
2347
+ msgstr "WooJetpack: Toon producten"
2348
+
2349
+ #: includes/class-wcj-product-listings.php:207
2350
+ msgid "WooJetpack: Subcategories Count"
2351
+ msgstr "WooJetpack: Subcategoriën telling"
2352
+
2353
+ #: includes/class-wcj-product-listings.php:217
2354
+ msgid "WooJetpack: Exclude Subcategories on Category Pages"
2355
+ msgstr "WooJetpack: Sluit subcategoriën uit op de categoriepagina's"
2356
+
2357
+ #: includes/class-wcj-product-tabs.php:223
2358
+ msgid "Total number of custom tabs"
2359
+ msgstr "Totaal aantal aangepaste tabs"
2360
+
2361
+ #: includes/class-wcj-product-tabs.php:243
2362
+ msgid "Priority"
2363
+ msgstr "Prioriteit"
2364
+
2365
+ #: includes/class-wcj-product-tabs.php:248 includes/class-wcj-product-tabs.php:357
2366
+ msgid "Content"
2367
+ msgstr ""
2368
+
2369
+ #: includes/class-wcj-product-tabs.php:252
2370
+ msgid "Customize the tab(s)"
2371
+ msgstr "Pas de tab(s) aan"
2372
+
2373
+ #: includes/class-wcj-product-tabs.php:256 includes/class-wcj-product-tabs.php:341
2374
+ msgid "Custom Product Tab"
2375
+ msgstr "Aangepaste Product Tab"
2376
+
2377
+ #: includes/class-wcj-product-tabs.php:299 includes/class-wcj-product-tabs.php:313
2378
+ msgid "Product Tabs"
2379
+ msgstr "Product Tabs"
2380
+
2381
+ #: includes/class-wcj-product-tabs.php:310
2382
+ msgid "Product Tabs Options"
2383
+ msgstr "Product Tabs Opties"
2384
+
2385
+ #: includes/class-wcj-product-tabs.php:314
2386
+ msgid "Enable the Product Tabs feature"
2387
+ msgstr "Schakel de Product Tabs optie in"
2388
+
2389
+ #: includes/class-wcj-product-tabs.php:315
2390
+ msgid ""
2391
+ "Add custom product tabs - globally or per product. Customize or completely remove "
2392
+ "WooCommerce default product tabs."
2393
+ msgstr ""
2394
+ "Voeg aangepaste product tabs toe - globaal of per product. Pas aan of verwijder "
2395
+ "WooCommerce default product tabs."
2396
+
2397
+ #: includes/class-wcj-product-tabs.php:323
2398
+ msgid "Custom Product Tabs Options"
2399
+ msgstr "Aangepaste Product Tabs Opties"
2400
+
2401
+ #: includes/class-wcj-product-tabs.php:326
2402
+ msgid "Custom Product Tabs Number"
2403
+ msgstr "Aangepaste Product Tabs Nummer"
2404
+
2405
+ #: includes/class-wcj-product-tabs.php:358
2406
+ msgid "You can use shortcodes here..."
2407
+ msgstr "Hier kun je shortcodes gebruiken..."
2408
+
2409
+ #: includes/class-wcj-product-tabs.php:366
2410
+ msgid "Comma separated PRODUCT IDs to HIDE this tab"
2411
+ msgstr ""
2412
+
2413
+ #: includes/class-wcj-product-tabs.php:367
2414
+ msgid "To hide this tab from some products, enter product IDs here."
2415
+ msgstr ""
2416
+ "Om deze tab te verbergen van sommige producten, voer hier de product ID's in."
2417
+
2418
+ #: includes/class-wcj-product-tabs.php:375
2419
+ msgid "Comma separated CATEGORY IDs to HIDE this tab"
2420
+ msgstr ""
2421
+
2422
+ #: includes/class-wcj-product-tabs.php:376
2423
+ msgid "To hide this tab from some categories, enter category IDs here."
2424
+ msgstr ""
2425
+ "Om deze tab te verbergen van sommige categoriën, voer hier de categori ID's in."
2426
+
2427
+ #: includes/class-wcj-product-tabs.php:384
2428
+ msgid "Comma separated PRODUCT IDs to SHOW this tab"
2429
+ msgstr ""
2430
+
2431
+ #: includes/class-wcj-product-tabs.php:385
2432
+ msgid "To show this tab only for some products, enter product IDs here."
2433
+ msgstr "Om deze tab te tonen bij sommige producten, voer hier de product ID's in."
2434
+
2435
+ #: includes/class-wcj-product-tabs.php:393
2436
+ msgid "Comma separated CATEGORY IDs to SHOW this tab"
2437
+ msgstr ""
2438
+
2439
+ #: includes/class-wcj-product-tabs.php:394
2440
+ msgid "To show this tab only for some categories, enter category IDs here."
2441
+ msgstr "Om deze tab te tonen bij sommige categoriën, voer hier de categori ID's in."
2442
+
2443
+ #: includes/class-wcj-product-tabs.php:408
2444
+ msgid "Local Custom Product Tabs"
2445
+ msgstr "Lokale Aangepaste Product Tabs"
2446
+
2447
+ #: includes/class-wcj-product-tabs.php:411
2448
+ msgid "Enable Custom Product Tabs"
2449
+ msgstr "Schakel Aangepaste Product Tabs in"
2450
+
2451
+ #: includes/class-wcj-product-tabs.php:419
2452
+ msgid "Default Local Custom Product Tabs Number"
2453
+ msgstr "Default Lokale Aangepaste Product Tabs Nummer"
2454
+
2455
+ #: includes/class-wcj-product-tabs.php:431
2456
+ msgid "WooCommerce Standard Product Tabs Options"
2457
+ msgstr "WooCommerce Standaard Product Tabs Opties"
2458
+
2459
+ #: includes/class-wcj-product-tabs.php:434
2460
+ msgid "Description Tab"
2461
+ msgstr "Omschrijving Tab"
2462
+
2463
+ #: includes/class-wcj-product-tabs.php:435 includes/class-wcj-product-tabs.php:461
2464
+ #: includes/class-wcj-product-tabs.php:487
2465
+ msgid "Remove tab from product page"
2466
+ msgstr "Verwijder tab van productpagina"
2467
+
2468
+ #: includes/class-wcj-product-tabs.php:453 includes/class-wcj-product-tabs.php:479
2469
+ #: includes/class-wcj-product-tabs.php:505
2470
+ msgid "Leave blank for WooCommerce defaults"
2471
+ msgstr "Laat leeg voor WooCommerce defaults"
2472
+
2473
+ #: includes/class-wcj-product-tabs.php:460
2474
+ msgid "Additional Information Tab"
2475
+ msgstr "Aanvullende informatie Tab"
2476
+
2477
+ #: includes/class-wcj-product-tabs.php:486
2478
+ msgid "Reviews Tab"
2479
+ msgstr "Recensies Tab"
2480
+
2481
+ #: includes/class-wcj-reports.php:85
2482
+ msgid "WooJetpack: All in stock"
2483
+ msgstr "WooJetpack: op voorraad"
2484
+
2485
+ #: includes/class-wcj-reports.php:92
2486
+ msgid "WooJetpack: Understocked"
2487
+ msgstr ""
2488
+
2489
+ #: includes/class-wcj-reports.php:107
2490
+ msgid "WooJetpack: Customers by Country"
2491
+ msgstr "WooJetpack: Klanten per land"
2492
+
2493
+ #: includes/class-wcj-reports.php:114
2494
+ msgid "WooJetpack: Customers by Country Sets"
2495
+ msgstr ""
2496
+
2497
+ #: includes/class-wcj-reports.php:139
2498
+ msgid "Reports Options"
2499
+ msgstr "Rapporten opties"
2500
+
2501
+ #: includes/class-wcj-reports.php:142 includes/class-wcj-reports.php:177
2502
+ msgid "Reports"
2503
+ msgstr "Rapporten"
2504
+
2505
+ #: includes/class-wcj-reports.php:143
2506
+ msgid "Enable the Reports feature"
2507
+ msgstr "Schakel de Rapportages optie in."
2508
+
2509
+ #: includes/class-wcj-reports.php:144
2510
+ msgid "Stock, sales, customers etc. reports."
2511
+ msgstr "Voorraad, verkoop, klanten etc, rapportages."
2512
+
2513
+ #: includes/class-wcj-reports.php:153
2514
+ msgid "Available Reports"
2515
+ msgstr "Beschikbare Rapporten"
2516
+
2517
+ #: includes/class-wcj-reports.php:156
2518
+ msgid ""
2519
+ "WooJetpack: Customers by Country. Available in WooCommerce > Reports > Customers."
2520
+ msgstr ""
2521
+ "WooJetpack: Klanten per land. Beschikbaar in WooCommerce > Rapporten > Klanten."
2522
+
2523
+ #: includes/class-wcj-reports.php:158
2524
+ msgid ""
2525
+ "WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
2526
+ "Customers."
2527
+ msgstr ""
2528
+
2529
+ #: includes/class-wcj-reports.php:160
2530
+ msgid ""
2531
+ "WooJetpack: All in Stock with sales data. Available in WooCommerce > Reports > "
2532
+ "Stock."
2533
+ msgstr ""
2534
+
2535
+ #: includes/class-wcj-reports.php:162
2536
+ msgid ""
2537
+ "WooJetpack: Understocked products (calculated by sales data). Available in "
2538
+ "WooCommerce > Reports > Stock."
2539
+ msgstr ""
2540
+
2541
+ #: includes/class-wcj-shipping-calculator.php:116
2542
+ msgid "Shipping Calculator Options"
2543
+ msgstr "Verzendkosten calculator opties"
2544
+
2545
+ #: includes/class-wcj-shipping-calculator.php:119
2546
+ #: includes/class-wcj-shipping-calculator.php:196
2547
+ msgid "Shipping Calculator"
2548
+ msgstr "Verzendkosten calculator"
2549
+
2550
+ #: includes/class-wcj-shipping-calculator.php:121
2551
+ msgid "Customize shipping calculator on cart page."
2552
+ msgstr "Pas de verzendkosten calculator aan op de winkelwagenpagina."
2553
+
2554
+ #: includes/class-wcj-shipping-calculator.php:128
2555
+ msgid "Enable City"
2556
+ msgstr "Schakel Stad in"
2557
+
2558
+ #: includes/class-wcj-shipping-calculator.php:136
2559
+ msgid "Enable Postcode"
2560
+ msgstr "Schakel Postcode in"
2561
+
2562
+ #: includes/class-wcj-shipping-calculator.php:144
2563
+ msgid "Enable State"
2564
+ msgstr "Schakel Staat in"
2565
+
2566
+ #: includes/class-wcj-shipping-calculator.php:152
2567
+ msgid "Force Block Open"
2568
+ msgstr ""
2569
+
2570
+ #: includes/class-wcj-shipping-calculator.php:161
2571
+ msgid "Calculate Shipping button"
2572
+ msgstr "Bereken verzendkosten knop"
2573
+
2574
+ #: includes/class-wcj-shipping-calculator.php:162
2575
+ msgid ""
2576
+ "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
2577
+ "options."
2578
+ msgstr ""
2579
+
2580
+ #: includes/class-wcj-shipping-calculator.php:168
2581
+ msgid "Make non clickable"
2582
+ msgstr "Maak onklikbaar"
2583
+
2584
+ #: includes/class-wcj-shipping.php:63
2585
+ msgid "WooCommerce Jetpack: Hide shipping"
2586
+ msgstr "WooCommerce Jetpack: Verberg verzendkosten"
2587
+
2588
+ #: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
2589
+ msgid "Hide local delivery when free is available"
2590
+ msgstr "Verberg lokale levering wanneer gratis beschikbaar is"
2591
+
2592
+ #: includes/class-wcj-shipping.php:75 includes/class-wcj-shipping.php:180
2593
+ msgid "Hide all when free is available"
2594
+ msgstr "Verberg allen wanneer gratis beschikbaar is"
2595
+
2596
+ #: includes/class-wcj-shipping.php:152
2597
+ msgid "Shipping Options"
2598
+ msgstr "Verzendkosten opties"
2599
+
2600
+ #: includes/class-wcj-shipping.php:156
2601
+ msgid "Enable the Shipping feature"
2602
+ msgstr "Schakel de verzendkosten optie in."
2603
+
2604
+ #: includes/class-wcj-shipping.php:157
2605
+ msgid "Hide shipping when free is available."
2606
+ msgstr "Verberg verzendkosten wanneer gratis beschikbaar is."
2607
+
2608
+ #: includes/class-wcj-shipping.php:165
2609
+ msgid "Hide if free is available"
2610
+ msgstr "Verberg als gratis beschikbaar is"
2611
+
2612
+ #: includes/class-wcj-shipping.php:165
2613
+ msgid ""
2614
+ "This section lets you hide other shipping options when free shipping is available "
2615
+ "on shop frontend."
2616
+ msgstr ""
2617
+ "Met dit gedeelte verberg je andere verzendopties wanneer gratis verzending "
2618
+ "beschikbaar is aan de winkel voorkant."
2619
+
2620
+ #: includes/class-wcj-shipping.php:169
2621
+ msgid "Hide shipping"
2622
+ msgstr "Verberg verzendkosten"
2623
+
2624
+ #: includes/class-wcj-shortcodes.php:61
2625
+ msgid "Shortcodes Options"
2626
+ msgstr "Shortcodes Opties"
2627
+
2628
+ #: includes/class-wcj-shortcodes.php:61 includes/class-wcj-shortcodes.php:66
2629
+ msgid "Shortcodes."
2630
+ msgstr "Shortcodes."
2631
+
2632
+ #: includes/class-wcj-shortcodes.php:64 includes/class-wcj-shortcodes.php:82
2633
+ msgid "Shortcodes"
2634
+ msgstr "Shortcodes"
2635
+
2636
+ #: includes/class-wcj-shortcodes.php:65
2637
+ msgid "Enable the Shortcodes feature"
2638
+ msgstr "Schakel de shortcodes optie in"
2639
+
2640
+ #: includes/class-wcj-sorting.php:88
2641
+ msgid "WooJetpack: Remove All Sorting"
2642
+ msgstr ""
2643
+
2644
+ #: includes/class-wcj-sorting.php:92
2645
+ msgid "Completely remove sorting from the shop front end"
2646
+ msgstr ""
2647
+
2648
+ #: includes/class-wcj-sorting.php:198
2649
+ msgid "Sorting Options"
2650
+ msgstr ""
2651
+
2652
+ #: includes/class-wcj-sorting.php:201 includes/class-wcj-sorting.php:306
2653
+ msgid "Sorting"
2654
+ msgstr ""
2655
+
2656
+ #: includes/class-wcj-sorting.php:202
2657
+ msgid "Enable the Sorting feature"
2658
+ msgstr ""
2659
+
2660
+ #: includes/class-wcj-sorting.php:203
2661
+ msgid "Add more sorting options or remove all sorting including default."
2662
+ msgstr ""
2663
+ "Meer sorteeropties toevoegen of alle sorteringen verwijderen, inclusief standaard."
2664
+
2665
+ #: includes/class-wcj-sorting.php:211 includes/class-wcj-sorting.php:214
2666
+ msgid "Remove All Sorting"
2667
+ msgstr ""
2668
+
2669
+ #: includes/class-wcj-sorting.php:215
2670
+ msgid "Remove all sorting (including WooCommerce default)"
2671
+ msgstr ""
2672
+
2673
+ #: includes/class-wcj-sorting.php:226 includes/class-wcj-sorting.php:229
2674
+ msgid "Add More Sorting"
2675
+ msgstr "Voeg meer sorteren toe"
2676
+
2677
+ #: includes/class-wcj-sorting.php:237
2678
+ msgid "Sort by Name"
2679
+ msgstr "Sorteer op Naam"
2680
+
2681
+ #: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:241
2682
+ msgid "Sort by title: A to Z"
2683
+ msgstr "Sorteer op titel: A tot Z"
2684
+
2685
+ #: includes/class-wcj-sorting.php:239 includes/class-wcj-sorting.php:249
2686
+ #: includes/class-wcj-sorting.php:259 includes/class-wcj-sorting.php:269
2687
+ #: includes/class-wcj-sorting.php:279 includes/class-wcj-sorting.php:289
2688
+ msgid "Text to show on frontend. Leave blank to disable."
2689
+ msgstr "Tekst om te tonen in voorkant winkel. Laat leeg om uit te schakelen."
2690
+
2691
+ #: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:251
2692
+ msgid "Sort by title: Z to A"
2693
+ msgstr "Sorteer op titel: Z tot A"
2694
+
2695
+ #: includes/class-wcj-sorting.php:257
2696
+ msgid "Sort by SKU"
2697
+ msgstr ""
2698
+
2699
+ #: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:261
2700
+ msgid "Sort by SKU: low to high"
2701
+ msgstr ""
2702
+
2703
+ #: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:271
2704
+ msgid "Sort by SKU: high to low"
2705
+ msgstr ""
2706
+
2707
+ #: includes/class-wcj-sorting.php:277
2708
+ msgid "Sort by stock quantity"
2709
+ msgstr ""
2710
+
2711
+ #: includes/class-wcj-sorting.php:278 includes/class-wcj-sorting.php:281
2712
+ msgid "Sort by stock quantity: low to high"
2713
+ msgstr ""
2714
+
2715
+ #: includes/class-wcj-sorting.php:288 includes/class-wcj-sorting.php:291
2716
+ msgid "Sort by stock quantity: high to low"
2717
+ msgstr ""
2718
+
2719
+ #: includes/currencies/wcj-currencies.php:4
2720
+ msgid "Afghan afghani"
2721
+ msgstr "Afghaanse Afghani"
2722
+
2723
+ #: includes/currencies/wcj-currencies.php:5
2724
+ msgid "Albanian lek"
2725
+ msgstr "Albanese Lek"
2726
+
2727
+ #: includes/currencies/wcj-currencies.php:6
2728
+ msgid "Algerian dinar"
2729
+ msgstr "Algerijnse Dinar"
2730
+
2731
+ #: includes/currencies/wcj-currencies.php:7
2732
+ msgid "Angolan kwanza"
2733
+ msgstr "Angolese Kwanza"
2734
+
2735
+ #: includes/currencies/wcj-currencies.php:8
2736
+ msgid "Argentine peso"
2737
+ msgstr "Argentijnse Peso"
2738
+
2739
+ #: includes/currencies/wcj-currencies.php:9
2740
+ msgid "Armenian dram"
2741
+ msgstr "Armeense Dram"
2742
+
2743
+ #: includes/currencies/wcj-currencies.php:10
2744
+ msgid "Aruban florin"
2745
+ msgstr "Arubaanse Florin"
2746
+
2747
+ #: includes/currencies/wcj-currencies.php:11
2748
+ msgid "Australian dollar"
2749
+ msgstr "Australische Dollar"
2750
+
2751
+ #: includes/currencies/wcj-currencies.php:12
2752
+ msgid "Azerbaijani manat"
2753
+ msgstr "Azerbeidzjaanse Manat"
2754
+
2755
+ #: includes/currencies/wcj-currencies.php:13
2756
+ msgid "Bahamian dollar"
2757
+ msgstr "Bahamaanse Dollar"
2758
+
2759
+ #: includes/currencies/wcj-currencies.php:14
2760
+ msgid "Bahraini dinar"
2761
+ msgstr "Bahrein Dinar"
2762
+
2763
+ #: includes/currencies/wcj-currencies.php:15
2764
+ msgid "Bangladeshi taka"
2765
+ msgstr "Bangladese Taka"
2766
+
2767
+ #: includes/currencies/wcj-currencies.php:16
2768
+ msgid "Barbadian dollar"
2769
+ msgstr "Barbados Dollar"
2770
+
2771
+ #: includes/currencies/wcj-currencies.php:17
2772
+ msgid "Belarusian ruble"
2773
+ msgstr ""
2774
+
2775
+ #: includes/currencies/wcj-currencies.php:18
2776
+ msgid "Belize dollar"
2777
+ msgstr ""
2778
+
2779
+ #: includes/currencies/wcj-currencies.php:19
2780
+ msgid "Bhutanese ngultrum"
2781
+ msgstr "Bhutaanse Ngultrum"
2782
+
2783
+ #: includes/currencies/wcj-currencies.php:20
2784
+ msgid "Bolivian boliviano"
2785
+ msgstr "Boliviaanse Boliviano"
2786
+
2787
+ #: includes/currencies/wcj-currencies.php:21
2788
+ msgid "Bosnia and Herzegovina konvertibilna marka"
2789
+ msgstr "Bosnische Mark"
2790
+
2791
+ #: includes/currencies/wcj-currencies.php:22
2792
+ msgid "Botswana pula"
2793
+ msgstr "Botswana Pula"
2794
+
2795
+ #: includes/currencies/wcj-currencies.php:23
2796
+ msgid "Brazilian real"
2797
+ msgstr "Braziliaanse Reaal"
2798
+
2799
+ #: includes/currencies/wcj-currencies.php:24
2800
+ msgid "British pound"
2801
+ msgstr "Britse Pond"
2802
+
2803
+ #: includes/currencies/wcj-currencies.php:25
2804
+ msgid "Brunei dollar"
2805
+ msgstr "Brunei Dollar"
2806
+
2807
+ #: includes/currencies/wcj-currencies.php:26
2808
+ msgid "Bulgarian lev"
2809
+ msgstr "Bulgaarse Lev"
2810
+
2811
+ #: includes/currencies/wcj-currencies.php:27
2812
+ msgid "Burundi franc"
2813
+ msgstr "Burundese Frank"
2814
+
2815
+ #: includes/currencies/wcj-currencies.php:28
2816
+ msgid "Cayman Islands dollar"
2817
+ msgstr ""
2818
+
2819
+ #: includes/currencies/wcj-currencies.php:29
2820
+ msgid "Cambodian riel"
2821
+ msgstr ""
2822
+
2823
+ #: includes/currencies/wcj-currencies.php:30
2824
+ msgid "Canadian dollar"
2825
+ msgstr "Canadese Dollar"
2826
+
2827
+ #: includes/currencies/wcj-currencies.php:31
2828
+ msgid "Cape Verdean escudo"
2829
+ msgstr "Kaapverdische Escudo"
2830
+
2831
+ #: includes/currencies/wcj-currencies.php:32
2832
+ #: includes/currencies/wcj-currencies.php:33
2833
+ msgid "Central African CFA franc"
2834
+ msgstr ""
2835
+
2836
+ #: includes/currencies/wcj-currencies.php:34
2837
+ msgid "CFP franc"
2838
+ msgstr "CFP Frank"
2839
+
2840
+ #: includes/currencies/wcj-currencies.php:35
2841
+ msgid "Chilean peso"
2842
+ msgstr "Chileense Peso"
2843
+
2844
+ #: includes/currencies/wcj-currencies.php:36
2845
+ msgid "Chinese renminbi"
2846
+ msgstr ""
2847
+
2848
+ #: includes/currencies/wcj-currencies.php:37
2849
+ msgid "Colombian peso"
2850
+ msgstr "Colombiaanse Peso"
2851
+
2852
+ #: includes/currencies/wcj-currencies.php:38
2853
+ msgid "Comorian franc"
2854
+ msgstr "Comorese Frank"
2855
+
2856
+ #: includes/currencies/wcj-currencies.php:39
2857
+ msgid "Congolese franc"
2858
+ msgstr "Congolese Frank"
2859
+
2860
+ #: includes/currencies/wcj-currencies.php:40
2861
+ msgid "Costa Rican colon"
2862
+ msgstr "Costa Ricaanse Colon"
2863
+
2864
+ #: includes/currencies/wcj-currencies.php:41
2865
+ msgid "Croatian kuna"
2866
+ msgstr "Kroatische Kuna"
2867
+
2868
+ #: includes/currencies/wcj-currencies.php:42
2869
+ msgid "Cuban peso"
2870
+ msgstr "Cubaanse Peso"
2871
+
2872
+ #: includes/currencies/wcj-currencies.php:43
2873
+ msgid "Czech koruna"
2874
+ msgstr "Tsjechische Kroon"
2875
+
2876
+ #: includes/currencies/wcj-currencies.php:44
2877
+ msgid "Danish krone"
2878
+ msgstr "Deense Kroon"
2879
+
2880
+ #: includes/currencies/wcj-currencies.php:45
2881
+ msgid "Djiboutian franc"
2882
+ msgstr ""
2883
+
2884
+ #: includes/currencies/wcj-currencies.php:46
2885
+ msgid "Dominican peso"
2886
+ msgstr "Dominicaanse Peso"
2887
+
2888
+ #: includes/currencies/wcj-currencies.php:47
2889
+ msgid "East Caribbean dollar"
2890
+ msgstr ""
2891
+
2892
+ #: includes/currencies/wcj-currencies.php:48
2893
+ msgid "Egyptian pound"
2894
+ msgstr "Egyptisch Pond"
2895
+
2896
+ #: includes/currencies/wcj-currencies.php:49
2897
+ msgid "Eritrean nakfa"
2898
+ msgstr ""
2899
+
2900
+ #: includes/currencies/wcj-currencies.php:50
2901
+ msgid "Estonian kroon"
2902
+ msgstr "Estonische Kroon"
2903
+
2904
+ #: includes/currencies/wcj-currencies.php:51
2905
+ msgid "Ethiopian birr"
2906
+ msgstr "Ethiopie Birr"
2907
+
2908
+ #: includes/currencies/wcj-currencies.php:52
2909
+ msgid "European euro"
2910
+ msgstr "Europese euro"
2911
+
2912
+ #: includes/currencies/wcj-currencies.php:53
2913
+ msgid "Falkland Islands pound"
2914
+ msgstr "Falklandse Pond"
2915
+
2916
+ #: includes/currencies/wcj-currencies.php:54
2917
+ msgid "Fijian dollar"
2918
+ msgstr "Fiji Dollar"
2919
+
2920
+ #: includes/currencies/wcj-currencies.php:55
2921
+ msgid "Gambian dalasi"
2922
+ msgstr ""
2923
+
2924
+ #: includes/currencies/wcj-currencies.php:56
2925
+ msgid "Georgian lari"
2926
+ msgstr "Georgische Lari"
2927
+
2928
+ #: includes/currencies/wcj-currencies.php:57
2929
+ msgid "Ghanaian cedi"
2930
+ msgstr "Ghanese Cedi"
2931
+
2932
+ #: includes/currencies/wcj-currencies.php:58
2933
+ msgid "Gibraltar pound"
2934
+ msgstr ""
2935
+
2936
+ #: includes/currencies/wcj-currencies.php:59
2937
+ msgid "Guatemalan quetzal"
2938
+ msgstr "Guatemalese Quetzal"
2939
+
2940
+ #: includes/currencies/wcj-currencies.php:60
2941
+ msgid "Guinean franc"
2942
+ msgstr ""
2943
+
2944
+ #: includes/currencies/wcj-currencies.php:61
2945
+ msgid "Guyanese dollar"
2946
+ msgstr "Guianese Dollar"
2947
+
2948
+ #: includes/currencies/wcj-currencies.php:62
2949
+ msgid "Haitian gourde"
2950
+ msgstr "Haiti Gourde"
2951
+
2952
+ #: includes/currencies/wcj-currencies.php:63
2953
+ msgid "Honduran lempira"
2954
+ msgstr "Honduras Lempira"
2955
+
2956
+ #: includes/currencies/wcj-currencies.php:64
2957
+ msgid "Hong Kong dollar"
2958
+ msgstr "Hong Kong Dollar"
2959
+
2960
+ #: includes/currencies/wcj-currencies.php:65
2961
+ msgid "Hungarian forint"
2962
+ msgstr "Hongaarse Forint"
2963
+
2964
+ #: includes/currencies/wcj-currencies.php:66
2965
+ msgid "Icelandic krona"
2966
+ msgstr "Ijslandse Kroon"
2967
+
2968
+ #: includes/currencies/wcj-currencies.php:67
2969
+ msgid "Indian rupee"
2970
+ msgstr "India Rupees"
2971
+
2972
+ #: includes/currencies/wcj-currencies.php:68
2973
+ msgid "Indonesian rupiah"
2974
+ msgstr "Indonesische roepia"
2975
+
2976
+ #: includes/currencies/wcj-currencies.php:69
2977
+ msgid "Iranian rial"
2978
+ msgstr "Iraanse Rial"
2979
+
2980
+ #: includes/currencies/wcj-currencies.php:70
2981
+ msgid "Iraqi dinar"
2982
+ msgstr "Iraakse Dinar"
2983
+
2984
+ #: includes/currencies/wcj-currencies.php:71
2985
+ msgid "Israeli new sheqel"
2986
+ msgstr "Isreal Shekel"
2987
+
2988
+ #: includes/currencies/wcj-currencies.php:72
2989
+ msgid "Yemeni rial"
2990
+ msgstr "Jemen Rial"
2991
+
2992
+ #: includes/currencies/wcj-currencies.php:73
2993
+ msgid "Jamaican dollar"
2994
+ msgstr "Jamaicaanse Dollar"
2995
+
2996
+ #: includes/currencies/wcj-currencies.php:74
2997
+ msgid "Japanese yen"
2998
+ msgstr "Japanse Yen"
2999
+
3000
+ #: includes/currencies/wcj-currencies.php:75
3001
+ msgid "Jordanian dinar"
3002
+ msgstr "Jordaanse Dinar"
3003
+
3004
+ #: includes/currencies/wcj-currencies.php:76
3005
+ msgid "Kazakhstani tenge"
3006
+ msgstr "Kazachstaanse tenge"
3007
+
3008
+ #: includes/currencies/wcj-currencies.php:77
3009
+ msgid "Kenyan shilling"
3010
+ msgstr "Keniaanse Shilling"
3011
+
3012
+ #: includes/currencies/wcj-currencies.php:78
3013
+ msgid "Kyrgyzstani som"
3014
+ msgstr "Kirgizische Som"
3015
+
3016
+ #: includes/currencies/wcj-currencies.php:79
3017
+ msgid "Kuwaiti dinar"
3018
+ msgstr ""
3019
+
3020
+ #: includes/currencies/wcj-currencies.php:80
3021
+ msgid "Lao kip"
3022
+ msgstr ""
3023
+
3024
+ #: includes/currencies/wcj-currencies.php:81
3025
+ msgid "Latvian lats"
3026
+ msgstr "Letse Lats"
3027
+
3028
+ #: includes/currencies/wcj-currencies.php:82
3029
+ msgid "Lebanese lira"
3030
+ msgstr "Lebanese Pond"
3031
+
3032
+ #: includes/currencies/wcj-currencies.php:83
3033
+ msgid "Lesotho loti"
3034
+ msgstr ""
3035
+
3036
+ #: includes/currencies/wcj-currencies.php:84
3037
+ msgid "Liberian dollar"
3038
+ msgstr ""
3039
+
3040
+ #: includes/currencies/wcj-currencies.php:85
3041
+ msgid "Libyan dinar"
3042
+ msgstr "Libische Dinar"
3043
+
3044
+ #: includes/currencies/wcj-currencies.php:86
3045
+ msgid "Lithuanian litas"
3046
+ msgstr "Litouwse Litas"
3047
+
3048
+ #: includes/currencies/wcj-currencies.php:87
3049
+ msgid "Macanese pataca"
3050
+ msgstr "Macau Pataka"
3051
+
3052
+ #: includes/currencies/wcj-currencies.php:88
3053
+ msgid "Macedonian denar"
3054
+ msgstr "Macedonische Denar"
3055
+
3056
+ #: includes/currencies/wcj-currencies.php:89
3057
+ msgid "Malagasy ariary"
3058
+ msgstr ""
3059
+
3060
+ #: includes/currencies/wcj-currencies.php:90
3061
+ msgid "Malaysian ringgit"
3062
+ msgstr "Maleise Ringgit"
3063
+
3064
+ #: includes/currencies/wcj-currencies.php:91
3065
+ msgid "Malawian kwacha"
3066
+ msgstr "Malawiaanse Kwacha"
3067
+
3068
+ #: includes/currencies/wcj-currencies.php:92
3069
+ msgid "Maldivian rufiyaa"
3070
+ msgstr "Maledivische Rufiyaa"
3071
+
3072
+ #: includes/currencies/wcj-currencies.php:93
3073
+ msgid "Mauritanian ouguiya"
3074
+ msgstr ""
3075
+
3076
+ #: includes/currencies/wcj-currencies.php:94
3077
+ msgid "Mauritian rupee"
3078
+ msgstr ""
3079
+
3080
+ #: includes/currencies/wcj-currencies.php:95
3081
+ msgid "Mexican peso"
3082
+ msgstr "Mexicaanse Peso"
3083
+
3084
+ #: includes/currencies/wcj-currencies.php:96
3085
+ msgid "Myanma kyat"
3086
+ msgstr "Myanmar Kyat"
3087
+
3088
+ #: includes/currencies/wcj-currencies.php:97
3089
+ msgid "Moldovan leu"
3090
+ msgstr "Moldavische Leu"
3091
+
3092
+ #: includes/currencies/wcj-currencies.php:98
3093
+ msgid "Mongolian tugrik"
3094
+ msgstr "Mongoolse Tugrik"
3095
+
3096
+ #: includes/currencies/wcj-currencies.php:99
3097
+ msgid "Moroccan dirham"
3098
+ msgstr "Marrokaanse Dirham"
3099
+
3100
+ #: includes/currencies/wcj-currencies.php:100
3101
+ msgid "Mozambican metical"
3102
+ msgstr "Mozambique Metical"
3103
+
3104
+ #: includes/currencies/wcj-currencies.php:101
3105
+ msgid "Namibian dollar"
3106
+ msgstr "Namibische Dollar"
3107
+
3108
+ #: includes/currencies/wcj-currencies.php:102
3109
+ msgid "Nepalese rupee"
3110
+ msgstr "Nepalese Rupee"
3111
+
3112
+ #: includes/currencies/wcj-currencies.php:103
3113
+ msgid "Netherlands Antillean gulden"
3114
+ msgstr ""
3115
+
3116
+ #: includes/currencies/wcj-currencies.php:104
3117
+ msgid "New Taiwan dollar"
3118
+ msgstr ""
3119
+
3120
+ #: includes/currencies/wcj-currencies.php:105
3121
+ msgid "New Zealand dollar"
3122
+ msgstr "Nieuw Zeelandse Dollar"
3123
+
3124
+ #: includes/currencies/wcj-currencies.php:106
3125
+ msgid "Nicaraguan cordoba"
3126
+ msgstr "Nicaragua Cordoba"
3127
+
3128
+ #: includes/currencies/wcj-currencies.php:107
3129
+ msgid "Nigerian naira"
3130
+ msgstr "Nigeriaanse Naira"
3131
+
3132
+ #: includes/currencies/wcj-currencies.php:108
3133
+ msgid "North Korean won"
3134
+ msgstr ""
3135
+
3136
+ #: includes/currencies/wcj-currencies.php:109
3137
+ msgid "Norwegian krone"
3138
+ msgstr "Noorse Kroon"
3139
+
3140
+ #: includes/currencies/wcj-currencies.php:110
3141
+ msgid "Omani rial"
3142
+ msgstr "Omaanse Rial"
3143
+
3144
+ #: includes/currencies/wcj-currencies.php:111
3145
+ msgid "Paanga"
3146
+ msgstr ""
3147
+
3148
+ #: includes/currencies/wcj-currencies.php:112
3149
+ msgid "Pakistani rupee"
3150
+ msgstr "Pakistaanse Roepie"
3151
+
3152
+ #: includes/currencies/wcj-currencies.php:113
3153
+ msgid "Panamanian balboa"
3154
+ msgstr "Panamese Balboa"
3155
+
3156
+ #: includes/currencies/wcj-currencies.php:114
3157
+ msgid "Papua New Guinean kina"
3158
+ msgstr "Papua Nieuw Guinea Kina"
3159
+
3160
+ #: includes/currencies/wcj-currencies.php:115
3161
+ msgid "Paraguayan guarani"
3162
+ msgstr "Paraguayaanse Guarani"
3163
+
3164
+ #: includes/currencies/wcj-currencies.php:116
3165
+ msgid "Peruvian nuevo sol"
3166
+ msgstr "Peruaanse Sol"
3167
+
3168
+ #: includes/currencies/wcj-currencies.php:117
3169
+ msgid "Philippine peso"
3170
+ msgstr "Filipijnse Peso"
3171
+
3172
+ #: includes/currencies/wcj-currencies.php:118
3173
+ msgid "Polish zloty"
3174
+ msgstr "Poolse zloty"
3175
+
3176
+ #: includes/currencies/wcj-currencies.php:119
3177
+ msgid "Qatari riyal"
3178
+ msgstr "Quatar Rial"
3179
+
3180
+ #: includes/currencies/wcj-currencies.php:120
3181
+ msgid "Romanian leu"
3182
+ msgstr "Roemeese Leu"
3183
+
3184
+ #: includes/currencies/wcj-currencies.php:121
3185
+ msgid "Russian ruble"
3186
+ msgstr "Russische roebel"
3187
+
3188
+ #: includes/currencies/wcj-currencies.php:122
3189
+ msgid "Rwandan franc"
3190
+ msgstr "Rwandese Frank"
3191
+
3192
+ #: includes/currencies/wcj-currencies.php:123
3193
+ msgid "Saint Helena pound"
3194
+ msgstr ""
3195
+
3196
+ #: includes/currencies/wcj-currencies.php:124
3197
+ msgid "Samoan tala"
3198
+ msgstr ""
3199
+
3200
+ #: includes/currencies/wcj-currencies.php:125
3201
+ msgid "Sao Tome and Principe dobra"
3202
+ msgstr ""
3203
+
3204
+ #: includes/currencies/wcj-currencies.php:126
3205
+ msgid "Saudi riyal"
3206
+ msgstr "Saudi Rial"
3207
+
3208
+ #: includes/currencies/wcj-currencies.php:127
3209
+ msgid "Seychellois rupee"
3210
+ msgstr "Seychelse Rupee"
3211
+
3212
+ #: includes/currencies/wcj-currencies.php:128
3213
+ msgid "Serbian dinar"
3214
+ msgstr "Servische Dinar"
3215
+
3216
+ #: includes/currencies/wcj-currencies.php:129
3217
+ msgid "Sierra Leonean leone"
3218
+ msgstr ""
3219
+
3220
+ #: includes/currencies/wcj-currencies.php:130
3221
+ msgid "Singapore dollar"
3222
+ msgstr "Singapore Dollar"
3223
+
3224
+ #: includes/currencies/wcj-currencies.php:131
3225
+ msgid "Syrian pound"
3226
+ msgstr "Syrische pind"
3227
+
3228
+ #: includes/currencies/wcj-currencies.php:132
3229
+ msgid "Slovak koruna"
3230
+ msgstr ""
3231
+
3232
+ #: includes/currencies/wcj-currencies.php:133
3233
+ msgid "Solomon Islands dollar"
3234
+ msgstr "Salomon Dollar"
3235
+
3236
+ #: includes/currencies/wcj-currencies.php:134
3237
+ msgid "Somali shilling"
3238
+ msgstr ""
3239
+
3240
+ #: includes/currencies/wcj-currencies.php:135
3241
+ msgid "South African rand"
3242
+ msgstr "Zuid-afrikaanse rand"
3243
+
3244
+ #: includes/currencies/wcj-currencies.php:136
3245
+ msgid "South Korean won"
3246
+ msgstr "Zuid/Koreaanse Won"
3247
+
3248
+ #: includes/currencies/wcj-currencies.php:137
3249
+ msgid "Special Drawing Rights"
3250
+ msgstr ""
3251
+
3252
+ #: includes/currencies/wcj-currencies.php:138
3253
+ msgid "Sri Lankan rupee"
3254
+ msgstr "Sri Langkese Ruppee"
3255
+
3256
+ #: includes/currencies/wcj-currencies.php:139
3257
+ msgid "Sudanese pound"
3258
+ msgstr ""
3259
+
3260
+ #: includes/currencies/wcj-currencies.php:140
3261
+ msgid "Surinamese dollar"
3262
+ msgstr "Surinaamse dollar"
3263
+
3264
+ #: includes/currencies/wcj-currencies.php:141
3265
+ msgid "Swazi lilangeni"
3266
+ msgstr ""
3267
+
3268
+ #: includes/currencies/wcj-currencies.php:142
3269
+ msgid "Swedish krona"
3270
+ msgstr "Zweedse Kroon"
3271
+
3272
+ #: includes/currencies/wcj-currencies.php:143
3273
+ msgid "Swiss franc"
3274
+ msgstr "Zwitserse Frank"
3275
+
3276
+ #: includes/currencies/wcj-currencies.php:144
3277
+ msgid "Tajikistani somoni"
3278
+ msgstr ""
3279
+
3280
+ #: includes/currencies/wcj-currencies.php:145
3281
+ msgid "Tanzanian shilling"
3282
+ msgstr "Tanzaniaanse Shilling"
3283
+
3284
+ #: includes/currencies/wcj-currencies.php:146
3285
+ msgid "Thai baht"
3286
+ msgstr "Thailand Baht"
3287
+
3288
+ #: includes/currencies/wcj-currencies.php:147
3289
+ msgid "Trinidad and Tobago dollar"
3290
+ msgstr ""
3291
+
3292
+ #: includes/currencies/wcj-currencies.php:148
3293
+ msgid "Tunisian dinar"
3294
+ msgstr "Tunesische Dinar"
3295
+
3296
+ #: includes/currencies/wcj-currencies.php:149
3297
+ msgid "Turkish new lira"
3298
+ msgstr "Turkse Lira"
3299
+
3300
+ #: includes/currencies/wcj-currencies.php:150
3301
+ msgid "Turkmen manat"
3302
+ msgstr ""
3303
+
3304
+ #: includes/currencies/wcj-currencies.php:151
3305
+ msgid "UAE dirham"
3306
+ msgstr ""
3307
+
3308
+ #: includes/currencies/wcj-currencies.php:152
3309
+ msgid "Ugandan shilling"
3310
+ msgstr ""
3311
+
3312
+ #: includes/currencies/wcj-currencies.php:153
3313
+ msgid "Ukrainian hryvnia"
3314
+ msgstr ""
3315
+
3316
+ #: includes/currencies/wcj-currencies.php:154
3317
+ msgid "United States dollar"
3318
+ msgstr "Amerikaanse Dollar"
3319
+
3320
+ #: includes/currencies/wcj-currencies.php:155
3321
+ msgid "Uruguayan peso"
3322
+ msgstr "Uruguayaanse Peso"
3323
+
3324
+ #: includes/currencies/wcj-currencies.php:156
3325
+ msgid "Uzbekistani som"
3326
+ msgstr ""
3327
+
3328
+ #: includes/currencies/wcj-currencies.php:157
3329
+ msgid "Vanuatu vatu"
3330
+ msgstr "Vanuatu Vatu"
3331
+
3332
+ #: includes/currencies/wcj-currencies.php:158
3333
+ msgid "Venezuelan bolivar"
3334
+ msgstr "Venezolaanse Bolivar"
3335
+
3336
+ #: includes/currencies/wcj-currencies.php:159
3337
+ msgid "Vietnamese dong"
3338
+ msgstr "Vietnam Dong"
3339
+
3340
+ #: includes/currencies/wcj-currencies.php:160
3341
+ msgid "West African CFA franc"
3342
+ msgstr ""
3343
+
3344
+ #: includes/currencies/wcj-currencies.php:161
3345
+ msgid "Zambian kwacha"
3346
+ msgstr "Zambiaanse Kwacha"
3347
+
3348
+ #: includes/currencies/wcj-currencies.php:162
3349
+ msgid "Zimbabwean dollar"
3350
+ msgstr "Zimbabwaanse Dollar"
3351
+
3352
+ #: includes/currencies/wcj-currencies.php:163
3353
+ msgid "Chinese Yuan"
3354
+ msgstr "Chinese Yuan"
3355
+
3356
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:50
3357
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:56
3358
+ msgid "Enable/Disable"
3359
+ msgstr "Inschakelen/uitschakelen"
3360
+
3361
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:52
3362
+ msgid "Enable Custom Payment"
3363
+ msgstr "Schakel Aangepaste betaling in"
3364
+
3365
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:58
3366
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:64
3367
+ msgid "This controls the title which the user sees during checkout."
3368
+ msgstr ""
3369
+
3370
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:59
3371
+ msgid "Custom Payment"
3372
+ msgstr "Aangepaste betaling"
3373
+
3374
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:65
3375
+ msgid "Payment method description that the customer will see on your checkout."
3376
+ msgstr "Betaalmethode beschrijving die de klant ziet bij afrekenen."
3377
+
3378
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:66
3379
+ msgid "Custom Payment Description."
3380
+ msgstr "Aangepaste betaling omschrijving"
3381
+
3382
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:70
3383
+ msgid "Instructions"
3384
+ msgstr "Instructies"
3385
+
3386
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:72
3387
+ msgid "Instructions that will be added to the thank you page."
3388
+ msgstr "Instructies die worden toegevoegd aan de bedankt pagina."
3389
+
3390
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:77
3391
+ msgid "Email Instructions"
3392
+ msgstr "Email instructies"
3393
+
3394
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:79
3395
+ msgid "Instructions that will be added to the emails."
3396
+ msgstr "Instructies die aan de emails worden toegevoegd."
3397
+
3398
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:84
3399
+ msgid "Icon"
3400
+ msgstr "Icoon"
3401
+
3402
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:92
3403
+ msgid "Minimum order amount"
3404
+ msgstr "Minimale bestelbedrag"
3405
+
3406
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:94
3407
+ msgid ""
3408
+ "If you want to set minimum order amount to show this gateway on frontend, enter a "
3409
+ "number here. Set to 0 to disable."
3410
+ msgstr ""
3411
+
3412
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:101
3413
+ msgid "Enable for shipping methods"
3414
+ msgstr "Inschakelen voor verzendmethodes"
3415
+
3416
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:106
3417
+ msgid ""
3418
+ "If gateway is only available for certain shipping methods, set it up here. Leave "
3419
+ "blank to enable for all methods."
3420
+ msgstr ""
3421
+
3422
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:110
3423
+ msgid "Select shipping methods"
3424
+ msgstr "Selecteer verzendmethodes."
3425
+
3426
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:114
3427
+ msgid "Enable for virtual orders"
3428
+ msgstr "Inschakelen voor virtuele orders"
3429
+
3430
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:115
3431
+ msgid "Enable gateway if the order is virtual"
3432
+ msgstr ""
3433
+
3434
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:298
3435
+ msgid "Custom Gateway"
3436
+ msgstr ""
3437
+
3438
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:299
3439
+ msgid "WooCommerce Jetpack: Custom Payment Gateway"
3440
+ msgstr ""
3441
+
3442
+ #: includes/reports/wcj-class-reports-customers.php:37
3443
+ msgid "No customers found."
3444
+ msgstr "Geen klanten gevonden."
3445
+
3446
+ #: includes/reports/wcj-class-reports-customers.php:75
3447
+ msgid "Total customers"
3448
+ msgstr "Totaal aan klanten"
3449
+
3450
+ #: includes/reports/wcj-class-reports-customers.php:79
3451
+ msgid "Country Code"
3452
+ msgstr "Landcode"
3453
+
3454
+ #: includes/reports/wcj-class-reports-customers.php:80
3455
+ msgid "Customers Count"
3456
+ msgstr "Klanten telling"
3457
+
3458
+ #: includes/reports/wcj-class-reports-customers.php:81
3459
+ msgid "Percent of total"
3460
+ msgstr "Percentage van totaal"
3461
+
3462
+ #: includes/reports/wcj-class-reports-stock.php:32
3463
+ msgid "All Products on Stock"
3464
+ msgstr "Alle producten op voorraad"
3465
+
3466
+ #: includes/reports/wcj-class-reports-stock.php:33
3467
+ msgid "Report shows all products that are on stock and some sales info."
3468
+ msgstr ""
3469
+ "Rapportage toont alle producten die op voorraad zijn en bepaalde verkoop info."
3470
+
3471
+ #: includes/reports/wcj-class-reports-stock.php:37
3472
+ msgid "Understocked"
3473
+ msgstr ""
3474
+
3475
+ #: includes/reports/wcj-class-reports-stock.php:38
3476
+ msgid ""
3477
+ "Report shows all products that are low in stock calculated on product's sales data."
3478
+ msgstr ""
3479
+
3480
+ #: includes/reports/wcj-class-reports-stock.php:40
3481
+ msgid ""
3482
+ "Threshold for minimum stock is equal to half of the sales in selected days range."
3483
+ msgstr ""
3484
+
3485
+ #: includes/reports/wcj-class-reports-stock.php:277
3486
+ msgid "Product"
3487
+ msgstr "Product"
3488
+
3489
+ #: includes/reports/wcj-class-reports-stock.php:278
3490
+ msgid "Price"
3491
+ msgstr "Prijs"
3492
+
3493
+ #: includes/reports/wcj-class-reports-stock.php:279
3494
+ msgid "Stock"
3495
+ msgstr "Voorraad"
3496
+
3497
+ #: includes/reports/wcj-class-reports-stock.php:280
3498
+ msgid "Stock price"
3499
+ msgstr "Voorraad prijs"
3500
+
3501
+ #: includes/reports/wcj-class-reports-stock.php:282
3502
+ msgid "Last sale"
3503
+ msgstr "Laatste verkoop"
3504
+
3505
+ #: includes/reports/wcj-class-reports-stock.php:283
3506
+ msgid "Sales in last %s days"
3507
+ msgstr "Verkoop in laatste % dagen"
3508
+
3509
+ #: includes/reports/wcj-class-reports-stock.php:284
3510
+ msgid "Total sales"
3511
+ msgstr "Totale verkoop"
3512
+
3513
+ #: includes/reports/wcj-class-reports-stock.php:287
3514
+ msgid "Stock to minimum"
3515
+ msgstr ""
3516
+
3517
+ #: includes/reports/wcj-class-reports-stock.php:320
3518
+ msgid "No sales yet"
3519
+ msgstr "Nog geen verkopen"
3520
+
3521
+ #: includes/reports/wcj-class-reports-stock.php:345
3522
+ msgid "Total current stock value"
3523
+ msgstr "Totale waarde van voorraad nu"
3524
+
3525
+ #: includes/reports/wcj-class-reports-stock.php:346
3526
+ msgid "Total stock value"
3527
+ msgstr "Totale voorraad waarde"
3528
+
3529
+ #: includes/reports/wcj-class-reports-stock.php:347
3530
+ msgid "Product stock value average"
3531
+ msgstr "Gemiddelde waarde productvoorraad"
3532
+
3533
+ #: includes/reports/wcj-class-reports-stock.php:348
3534
+ msgid "Product stock average"
3535
+ msgstr "Gemiddelde productvoorraad "
3536
+
3537
+ #: includes/reports/wcj-class-reports-stock.php:352
3538
+ msgid "Report was generated in: "
3539
+ msgstr "Rapport gemaakt in:"
3540
+
3541
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:19
3542
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:65
3543
+ msgid "Custom Shipping"
3544
+ msgstr "Aangepaste verzendkosten"
3545
+
3546
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:20
3547
+ msgid "WooCommerce Jetpack: Custom Shipping Method"
3548
+ msgstr "WooCommerce Jetpack: Aangepaste Verzendmethode"
3549
+
3550
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:58
3551
+ msgid "Enable Custom Shipping"
3552
+ msgstr "Schakel Aangepaste Verzendkosten in."
3553
+
3554
+ #. Plugin Name of the plugin/theme
3555
+ #: woocommerce-jetpack.php:94
3556
+ msgid "WooCommerce Jetpack"
3557
+ msgstr "WooCommerce Jetpack"
3558
+
3559
+ #: woocommerce-jetpack.php:94
3560
+ msgid "Jetpack Settings"
3561
+ msgstr "Jetpack instellingen"
3562
+
3563
+ #: woocommerce-jetpack.php:105
3564
+ msgid "Settings"
3565
+ msgstr "Instellingen"
3566
+
3567
+ #: woocommerce-jetpack.php:106
3568
+ msgid "Docs"
3569
+ msgstr "Docs"
3570
+
3571
+ #: woocommerce-jetpack.php:107
3572
+ msgid "Unlock all"
3573
+ msgstr "Alles vrijgeven"
3574
+
3575
+ #: woocommerce-jetpack.php:120
3576
+ msgid "Install WooCommerce Jetpack Plus to unlock all features"
3577
+ msgstr ""
3578
+ "Installeer WooCommerce Jetpack Plus om toegang te krijgen tot alle mogelijkheden"
3579
+
3580
+ #: woocommerce-jetpack.php:121
3581
+ msgid ""
3582
+ "Some settings fields are locked and you will need %s to modify all locked fields."
3583
+ msgstr "Sommige instellingen zijn geblokkeerd, met %s kun je ze aanpassen."
3584
+
3585
+ #: woocommerce-jetpack.php:122
3586
+ msgid "Buy now"
3587
+ msgstr "Koop nu"
3588
+
3589
+ #: woocommerce-jetpack.php:122
3590
+ msgid "Visit %s"
3591
+ msgstr ""
3592
+
3593
+ #: woocommerce-jetpack.php:126
3594
+ msgid ""
3595
+ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3596
+ "Plus</a> to change value."
3597
+ msgstr ""
3598
+ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3599
+ "Plus</a> om dit aan te passen."
3600
+
3601
+ #: woocommerce-jetpack.php:129
3602
+ msgid ""
3603
+ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3604
+ "Plus</a> to change values below."
3605
+ msgstr ""
3606
+ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3607
+ "Plus</a> om de waardes hieronder aan te passen."
3608
+
3609
+ #: woocommerce-jetpack.php:132
3610
+ msgid ""
3611
+ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3612
+ "Plus</a> to change values above."
3613
+ msgstr ""
3614
+ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack "
3615
+ "Plus</a> om de waardes hierboven aan te passen."
3616
+
3617
+ #: woocommerce-jetpack.php:135
3618
+ msgid "Get WooCommerce Jetpack Plus to change value."
3619
+ msgstr "Koop WooCommerce Jetpack Plus om dit aan te passen."
3620
+
3621
+ #. Plugin URI of the plugin/theme
3622
+ msgid "http://woojetpack.com"
3623
+ msgstr "http://woojetpack.com"
3624
+
3625
+ #. Description of the plugin/theme
3626
+ msgid "Supercharge your WooCommerce site with these awesome powerful features."
3627
+ msgstr ""
3628
+
3629
+ #. Author of the plugin/theme
3630
+ msgid "Algoritmika Ltd"
3631
+ msgstr "Algoritmika Ltd"
3632
+
3633
+ #. Author URI of the plugin/theme
3634
+ msgid "http://www.algoritmika.com"
3635
+ msgstr "http://www.algoritmika.com"
langs/woocommerce-jetpack.pot CHANGED
@@ -1,726 +1,875 @@
1
- # Copyright (C) 2014 WooCommerce Jetpack
2
- # This file is distributed under the same license as the WooCommerce Jetpack package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Jetpack 2.0.3\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
7
- "POT-Creation-Date: 2014-12-16 08:22:05+00:00\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: includes/abstracts/class-wcj-product-input-fields.php:35
16
- msgid "Enabled"
17
- msgstr ""
18
-
19
- #: includes/abstracts/class-wcj-product-input-fields.php:41
20
- msgid "Required"
21
  msgstr ""
22
 
23
- #: includes/abstracts/class-wcj-product-input-fields.php:47
24
- #: includes/class-wcj-product-info.php:841
25
- #: includes/class-wcj-product-tabs.php:238
26
- #: includes/class-wcj-product-tabs.php:342
27
- #: includes/class-wcj-product-tabs.php:452
28
- #: includes/class-wcj-product-tabs.php:478
29
- #: includes/class-wcj-product-tabs.php:504
30
- #: includes/gateways/class-wc-gateway-wcj-custom.php:56
31
- #: includes/shipping/class-wc-shipping-wcj-custom.php:62
32
- msgid "Title"
33
  msgstr ""
34
 
35
- #: includes/abstracts/class-wcj-product-input-fields.php:53
36
- msgid "Placeholder"
37
  msgstr ""
38
 
39
- #: includes/abstracts/class-wcj-product-input-fields.php:59
40
- msgid "Message on required"
 
41
  msgstr ""
42
 
43
- #: includes/abstracts/class-wcj-product-input-fields.php:73
44
- #: includes/class-wcj-product-input-fields-global.php:112
45
- msgid "Product Input Field"
46
  msgstr ""
47
 
48
- #: includes/admin/settings/class-wc-settings-jetpack.php:24
49
- msgid "Jetpack"
50
  msgstr ""
51
 
52
- #: includes/admin/settings/class-wc-settings-jetpack.php:29
53
- #: includes/admin/settings/class-wc-settings-jetpack.php:165
54
- msgid "Dashboard"
55
  msgstr ""
56
 
57
- #: includes/admin/settings/class-wc-settings-jetpack.php:34
58
- msgid "Price Labels"
59
  msgstr ""
60
 
61
- #: includes/admin/settings/class-wc-settings-jetpack.php:39
62
- msgid "Products"
 
63
  msgstr ""
64
 
65
- #: includes/admin/settings/class-wc-settings-jetpack.php:44
66
- #: includes/class-wcj-cart.php:142 includes/class-wcj-cart.php:230
67
- msgid "Cart"
68
  msgstr ""
69
 
70
- #: includes/admin/settings/class-wc-settings-jetpack.php:49
71
- #: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
72
- msgid "Checkout"
73
  msgstr ""
74
 
75
- #: includes/admin/settings/class-wc-settings-jetpack.php:54
76
- #: includes/class-wcj-checkout-custom-fields.php:310
77
- #: includes/class-wcj-pdf-invoices.php:1119
78
- #: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
79
- msgid "Shipping"
80
  msgstr ""
81
 
82
- #: includes/admin/settings/class-wc-settings-jetpack.php:59
83
- #: includes/class-wcj-orders.php:318 includes/class-wcj-orders.php:440
84
- msgid "Orders"
85
  msgstr ""
86
 
87
- #: includes/admin/settings/class-wc-settings-jetpack.php:64
88
- #: includes/class-wcj-pdf-invoices.php:789
89
- #: includes/class-wcj-pdf-invoices.php:1279
90
- msgid "PDF Invoices"
 
91
  msgstr ""
92
 
93
- #: includes/admin/settings/class-wc-settings-jetpack.php:69
94
- #: includes/class-wcj-emails.php:118 includes/class-wcj-emails.php:162
95
- msgid "Emails"
96
  msgstr ""
97
 
98
- #: includes/admin/settings/class-wc-settings-jetpack.php:74
99
- #: includes/class-wcj-currencies.php:91 includes/class-wcj-currencies.php:131
100
- msgid "Currencies"
101
  msgstr ""
102
 
103
- #: includes/admin/settings/class-wc-settings-jetpack.php:79
104
- msgid "Misc."
 
 
 
 
105
  msgstr ""
106
 
107
- #: includes/admin/settings/class-wc-settings-jetpack.php:198
108
- #: includes/admin/settings/class-wc-settings-jetpack.php:205
109
- msgid "Select All"
110
  msgstr ""
111
 
112
- #: includes/admin/settings/class-wc-settings-jetpack.php:199
113
- #: includes/admin/settings/class-wc-settings-jetpack.php:206
114
- msgid "Feature"
115
  msgstr ""
116
 
117
- #: includes/admin/settings/class-wc-settings-jetpack.php:200
118
- #: includes/admin/settings/class-wc-settings-jetpack.php:207
119
- #: includes/admin/tools/class-wcj-tools.php:69
120
- #: includes/gateways/class-wc-gateway-wcj-custom.php:63
121
- msgid "Description"
122
  msgstr ""
123
 
124
- #: includes/admin/settings/class-wc-settings-jetpack.php:267
125
- msgid "WooCommerce Jetpack Dashboard"
126
  msgstr ""
127
 
128
- #: includes/admin/settings/class-wc-settings-jetpack.php:269
129
  msgid ""
130
- "This dashboard lets you enable/disable any Jetpack feature. Each checkbox "
131
- "comes with short feature's description. Please visit <a href=\"http://"
132
- "woojetpack.com\" target=\"_blank\">WooJetpack.com</a> for detailed info on "
133
- "each feature."
134
  msgstr ""
135
 
136
- #: includes/admin/tools/class-wcj-tools.php:34
137
- msgid "Tools Dashboard"
138
  msgstr ""
139
 
140
- #: includes/admin/tools/class-wcj-tools.php:63
141
- msgid "WooCommerce Jetpack Tools Dashboard"
142
  msgstr ""
143
 
144
- #: includes/admin/tools/class-wcj-tools.php:64
145
- msgid ""
146
- "This dashboard lets you check statuses and short descriptions of all "
147
- "available WooCommerce Jetpack tools. Tools can be enabled through "
148
- "WooCommerce > Settings > Jetpack. Enabled tools will appear in the tabs menu "
149
- "above."
150
  msgstr ""
151
 
152
- #: includes/admin/tools/class-wcj-tools.php:67
153
- msgid "Tool"
154
  msgstr ""
155
 
156
- #: includes/admin/tools/class-wcj-tools.php:68
157
- msgid "Status"
158
  msgstr ""
159
 
160
- #: includes/class-wcj-add-to-cart-per-category.php:90
161
- msgid "Add to Cart per Category Options"
162
  msgstr ""
163
 
164
- #: includes/class-wcj-add-to-cart-per-category.php:93
165
- #: includes/class-wcj-add-to-cart-per-category.php:208
166
- msgid "Add to Cart - per Category"
167
  msgstr ""
168
 
169
- #: includes/class-wcj-add-to-cart-per-category.php:94
170
- #: includes/class-wcj-add-to-cart-per-product.php:176
171
- #: includes/class-wcj-shipping-calculator.php:120
172
- msgid "Enable Module"
173
  msgstr ""
174
 
175
- #: includes/class-wcj-add-to-cart-per-category.php:95
176
- msgid "Add to cart button text on per category basis."
177
  msgstr ""
178
 
179
- #: includes/class-wcj-add-to-cart-per-category.php:102
180
- msgid "Category Groups Number"
181
  msgstr ""
182
 
183
- #: includes/class-wcj-add-to-cart-per-category.php:103
184
- #: includes/class-wcj-checkout-custom-fields.php:230
185
- #: includes/class-wcj-product-input-fields-global.php:97
186
- #: includes/class-wcj-product-tabs.php:327
187
- msgid "Click \"Save changes\" after you change this number."
188
  msgstr ""
189
 
190
- #: includes/class-wcj-add-to-cart-per-category.php:123
191
- #: includes/class-wcj-price-by-country.php:458
192
- msgid "Group"
 
 
 
193
  msgstr ""
194
 
195
- #: includes/class-wcj-add-to-cart-per-category.php:124
196
- #: includes/class-wcj-add-to-cart.php:175
197
- #: includes/class-wcj-add-to-cart.php:198 includes/class-wcj-cart.php:164
198
- #: includes/class-wcj-cart.php:212 includes/class-wcj-order-numbers.php:166
199
- #: includes/class-wcj-orders.php:384 includes/class-wcj-orders.php:397
200
- #: includes/class-wcj-price-labels.php:629
201
- #: includes/class-wcj-product-info.php:613
202
- #: includes/class-wcj-product-info.php:732
203
- #: includes/class-wcj-product-info.php:769
204
- #: includes/class-wcj-product-info.php:813
205
- #: includes/class-wcj-product-input-fields-global.php:88
206
- #: includes/class-wcj-product-input-fields-per-product.php:205
207
- #: includes/class-wcj-shipping-calculator.php:129
208
- #: includes/class-wcj-shipping-calculator.php:137
209
- #: includes/class-wcj-shipping-calculator.php:145
210
- #: includes/class-wcj-shipping-calculator.php:153
211
- #: includes/class-wcj-sorting.php:230
212
- msgid "Enable"
213
  msgstr ""
214
 
215
- #: includes/class-wcj-add-to-cart-per-category.php:131
216
- msgid "Product Category IDs List"
217
  msgstr ""
218
 
219
- #: includes/class-wcj-add-to-cart-per-category.php:132
220
- msgid "Comma separated list of product category IDs."
221
  msgstr ""
222
 
223
- #: includes/class-wcj-add-to-cart-per-category.php:140
224
- msgid "Button text - single product view"
225
  msgstr ""
226
 
227
- #: includes/class-wcj-add-to-cart-per-category.php:148
228
- msgid "Button text - product archive (category) view"
229
  msgstr ""
230
 
231
- #: includes/class-wcj-add-to-cart-per-category.php:172
232
- msgid "Product Category Name"
233
  msgstr ""
234
 
235
- #: includes/class-wcj-add-to-cart-per-category.php:175
236
- msgid "Product Category ID"
 
 
 
 
237
  msgstr ""
238
 
239
- #: includes/class-wcj-add-to-cart-per-category.php:194
240
- msgid "Product Category IDs"
 
 
 
 
 
 
241
  msgstr ""
242
 
243
- #: includes/class-wcj-add-to-cart-per-product.php:104
244
- msgid "WooCommerce Jetpack: Custom Add to Cart"
245
  msgstr ""
246
 
247
- #: includes/class-wcj-add-to-cart-per-product.php:115
248
- msgid "Single product view"
249
  msgstr ""
250
 
251
- #: includes/class-wcj-add-to-cart-per-product.php:116
252
- msgid "Product category (archive) view"
 
253
  msgstr ""
254
 
255
- #: includes/class-wcj-add-to-cart-per-product.php:169
256
- msgid "Add to Cart per Product Options"
 
 
 
 
 
257
  msgstr ""
258
 
259
- #: includes/class-wcj-add-to-cart-per-product.php:171
260
  msgid ""
261
- "When module is enabled, add to cart button text for each product can be "
262
- "changed in \"Edit Product\"."
263
  msgstr ""
264
 
265
- #: includes/class-wcj-add-to-cart-per-product.php:175
266
- #: includes/class-wcj-add-to-cart-per-product.php:193
267
- msgid "Add to Cart - per Product"
268
  msgstr ""
269
 
270
- #: includes/class-wcj-add-to-cart-per-product.php:177
271
- msgid "Add to cart button text on per product basis."
272
  msgstr ""
273
 
274
- #: includes/class-wcj-add-to-cart.php:150
275
- msgid "Add to Cart Options"
276
  msgstr ""
277
 
278
  #: includes/class-wcj-add-to-cart.php:153
279
- #: includes/class-wcj-add-to-cart.php:375
280
- msgid "Add to Cart"
281
  msgstr ""
282
 
283
- #: includes/class-wcj-add-to-cart.php:154
284
- msgid "Enable the Add to Cart feature"
 
285
  msgstr ""
286
 
287
  #: includes/class-wcj-add-to-cart.php:155
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  msgid ""
289
- "Set any local url to redirect to on Add to cart. Change text for Add to cart "
290
- "button by product type. Display \"Already in cart\" instead of \"Add to cart"
291
- "\" button if current product is already in cart."
292
  msgstr ""
293
 
294
- #: includes/class-wcj-add-to-cart.php:168
295
- msgid "Add to Cart Local Redirect Options"
296
  msgstr ""
297
 
298
- #: includes/class-wcj-add-to-cart.php:170
299
  msgid ""
300
- "This section lets you set any local URL to redirect to after successfully "
301
- "adding product to cart. Leave empty to redirect to checkout page (skipping "
302
- "the cart page)."
303
  msgstr ""
304
 
305
- #: includes/class-wcj-add-to-cart.php:174
306
- msgid "Local Redirect"
307
  msgstr ""
308
 
309
- #: includes/class-wcj-add-to-cart.php:182
310
- msgid "Local Redirect URL"
311
  msgstr ""
312
 
313
- #: includes/class-wcj-add-to-cart.php:183
314
- msgid "Performs a safe (local) redirect, using wp_redirect()."
 
 
 
315
  msgstr ""
316
 
317
- #: includes/class-wcj-add-to-cart.php:184
318
- msgid "Local redirect URL. Leave empty to redirect to checkout."
 
 
319
  msgstr ""
320
 
321
- #: includes/class-wcj-add-to-cart.php:194
322
- msgid "Add to Cart Button Text Options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
  msgstr ""
324
 
325
- #: includes/class-wcj-add-to-cart.php:197
326
- msgid "Add to cart text"
 
327
  msgstr ""
328
 
329
- #: includes/class-wcj-add-to-cart.php:208
330
- msgid "Simple product"
331
  msgstr ""
332
 
333
- #: includes/class-wcj-add-to-cart.php:213
334
- msgid "Variable product"
335
  msgstr ""
336
 
337
- #: includes/class-wcj-add-to-cart.php:218
338
- msgid "External product"
339
  msgstr ""
340
 
341
- #: includes/class-wcj-add-to-cart.php:223
342
- msgid "Grouped product"
 
343
  msgstr ""
344
 
345
- #: includes/class-wcj-add-to-cart.php:228
346
- msgid "Other product"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  msgstr ""
348
 
349
- #: includes/class-wcj-add-to-cart.php:241
350
- msgid "Single product view."
 
 
351
  msgstr ""
352
 
353
- #: includes/class-wcj-add-to-cart.php:242
354
- #: includes/class-wcj-add-to-cart.php:262
355
- #: includes/class-wcj-add-to-cart.php:320
356
- #: includes/class-wcj-add-to-cart.php:346
357
- #: includes/class-wcj-payment-gateways.php:173
358
- msgid "Leave blank to disable."
359
  msgstr ""
360
 
361
- #: includes/class-wcj-add-to-cart.php:242
362
- #: includes/class-wcj-add-to-cart.php:262
363
- #: includes/class-wcj-add-to-cart.php:322
364
- #: includes/class-wcj-add-to-cart.php:348 includes/class-wcj-sorting.php:238
365
- #: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:258
366
- #: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:278
367
- #: includes/class-wcj-sorting.php:288
368
- msgid "Default: "
369
  msgstr ""
370
 
371
- #: includes/class-wcj-add-to-cart.php:261
372
- msgid "Product category (archive) view."
 
373
  msgstr ""
374
 
375
- #: includes/class-wcj-add-to-cart.php:285
376
- msgid "Products with price set to 0 (i.e. free). Single product view."
377
  msgstr ""
378
 
379
- #: includes/class-wcj-add-to-cart.php:286
380
- #: includes/class-wcj-add-to-cart.php:295
381
- msgid "Leave blank to disable. Default: Add to cart"
382
  msgstr ""
383
 
384
- #: includes/class-wcj-add-to-cart.php:288
385
- #: includes/class-wcj-add-to-cart.php:297
386
- #: includes/class-wcj-add-to-cart.php:322
387
- #: includes/class-wcj-add-to-cart.php:324
388
- #: includes/class-wcj-add-to-cart.php:348
389
- #: includes/class-wcj-add-to-cart.php:350
390
- msgid "Add to cart"
391
  msgstr ""
392
 
393
- #: includes/class-wcj-add-to-cart.php:294
394
- msgid ""
395
- "Products with price set to 0 (i.e. free). Product category (archive) view."
396
  msgstr ""
397
 
398
- #: includes/class-wcj-add-to-cart.php:304
399
- msgid "Products with empty price. Product category (archive) view."
400
  msgstr ""
401
 
402
- #: includes/class-wcj-add-to-cart.php:305
403
- msgid "Leave blank to disable. Default: Read More"
 
 
 
 
 
 
 
 
 
404
  msgstr ""
405
 
406
- #: includes/class-wcj-add-to-cart.php:307
407
- msgid "Read More"
 
 
 
 
 
 
 
408
  msgstr ""
409
 
410
- #: includes/class-wcj-add-to-cart.php:319
411
- msgid "Already in cart. Single product view."
412
  msgstr ""
413
 
414
- #: includes/class-wcj-add-to-cart.php:321
415
- #: includes/class-wcj-add-to-cart.php:347
416
- msgid "Try: "
417
  msgstr ""
418
 
419
- #: includes/class-wcj-add-to-cart.php:321
420
- #: includes/class-wcj-add-to-cart.php:347
421
- msgid "Already in cart - Add Again?"
422
  msgstr ""
423
 
424
- #: includes/class-wcj-add-to-cart.php:345
425
- msgid "Already in cart. Product category (archive) view."
 
 
 
 
 
 
 
 
 
 
 
 
426
  msgstr ""
427
 
428
- #: includes/class-wcj-call-for-price.php:80
429
  msgid "Call for Price Options"
430
  msgstr ""
431
 
432
- #: includes/class-wcj-call-for-price.php:80
433
  msgid ""
434
  "Leave price empty when adding or editing products. Then set the options here."
435
  msgstr ""
436
 
437
- #: includes/class-wcj-call-for-price.php:83
438
- #: includes/class-wcj-call-for-price.php:166
439
  msgid "Call for Price"
440
  msgstr ""
441
 
442
- #: includes/class-wcj-call-for-price.php:84
443
- msgid "Enable the Call for Price feature"
444
- msgstr ""
445
-
446
- #: includes/class-wcj-call-for-price.php:85
447
- msgid "Create any custom price label for all products with empty price."
448
  msgstr ""
449
 
450
- #: includes/class-wcj-call-for-price.php:92
451
  msgid "Label to Show on Single"
452
  msgstr ""
453
 
454
- #: includes/class-wcj-call-for-price.php:93
455
- #: includes/class-wcj-call-for-price.php:105
456
- #: includes/class-wcj-call-for-price.php:117
457
- #: includes/class-wcj-call-for-price.php:129
458
  msgid "This sets the html to output on empty price. Leave blank to disable."
459
  msgstr ""
460
 
461
- #: includes/class-wcj-call-for-price.php:104
462
  msgid "Label to Show on Archives"
463
  msgstr ""
464
 
465
- #: includes/class-wcj-call-for-price.php:116
466
  msgid "Label to Show on Homepage"
467
  msgstr ""
468
 
469
- #: includes/class-wcj-call-for-price.php:128
470
  msgid "Label to Show on Related"
471
  msgstr ""
472
 
473
- #: includes/class-wcj-call-for-price.php:140
474
  msgid "Hide Sale! Tag"
475
  msgstr ""
476
 
477
- #: includes/class-wcj-call-for-price.php:141
478
  msgid "Hide the tag"
479
  msgstr ""
480
 
481
- #: includes/class-wcj-cart.php:139
482
- msgid "Cart Options"
483
  msgstr ""
484
 
485
- #: includes/class-wcj-cart.php:143
486
- msgid "Enable the Cart feature"
487
  msgstr ""
488
 
489
- #: includes/class-wcj-cart.php:144
490
- msgid "Add empty cart button, automatically add to cart on product visit."
491
  msgstr ""
492
 
493
- #: includes/class-wcj-cart.php:160
494
- msgid "Empty Cart Options"
 
 
495
  msgstr ""
496
 
497
- #: includes/class-wcj-cart.php:160
498
- msgid ""
499
- "This section lets you add and customize \"Empty Cart\" button to cart page."
 
 
 
 
 
 
 
 
500
  msgstr ""
501
 
502
- #: includes/class-wcj-cart.php:163
503
- msgid "Empty Cart"
 
 
 
 
504
  msgstr ""
505
 
506
- #: includes/class-wcj-cart.php:171
507
- msgid "Empty Cart Button Text"
508
  msgstr ""
509
 
510
- #: includes/class-wcj-cart.php:181
511
- msgid "Wrapping DIV style"
512
  msgstr ""
513
 
514
- #: includes/class-wcj-cart.php:182
515
- msgid "Style for the button's div. Default is \"float: right;\""
516
  msgstr ""
517
 
518
- #: includes/class-wcj-cart.php:192
519
- msgid "Button position on the Cart page"
520
  msgstr ""
521
 
522
- #: includes/class-wcj-cart.php:197
523
- msgid "After Cart"
524
  msgstr ""
525
 
526
- #: includes/class-wcj-cart.php:198
527
- msgid "Before Cart"
528
  msgstr ""
529
 
530
- #: includes/class-wcj-cart.php:199
531
- msgid "After Proceed to Checkout button"
532
  msgstr ""
533
 
534
- #: includes/class-wcj-cart.php:208 includes/class-wcj-cart.php:211
535
- msgid "Add to Cart on Visit"
 
 
 
 
 
 
 
 
536
  msgstr ""
537
 
538
- #: includes/class-wcj-cart.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  msgid ""
540
- "This section lets you enable automatically adding product to cart on "
541
- "visiting the product page. Product is only added once, so if it is already "
542
- "in cart - duplicate product is not added. "
543
  msgstr ""
544
 
545
- #: includes/class-wcj-checkout-custom-fields.php:217
 
 
 
 
546
  msgid "Checkout Custom Fields Options"
547
  msgstr ""
548
 
549
- #: includes/class-wcj-checkout-custom-fields.php:217
550
- msgid "This section lets you add custom checkout fields."
 
551
  msgstr ""
552
 
553
- #: includes/class-wcj-checkout-custom-fields.php:220
554
- #: includes/class-wcj-checkout-custom-fields.php:351
555
- msgid "Custom Checkout Fields"
556
  msgstr ""
557
 
558
- #: includes/class-wcj-checkout-custom-fields.php:221
559
- msgid "Enable the Checkout Custom Fields feature"
560
  msgstr ""
561
 
562
- #: includes/class-wcj-checkout-custom-fields.php:222
563
- msgid "Add custom fields to the Checkout page."
564
  msgstr ""
565
 
566
- #: includes/class-wcj-checkout-custom-fields.php:229
567
- msgid "Custom Fields Number"
568
  msgstr ""
569
 
570
- #: includes/class-wcj-checkout-custom-fields.php:244
571
- msgid "Custom Field"
572
  msgstr ""
573
 
574
- #: includes/class-wcj-checkout-custom-fields.php:245
575
- #: includes/class-wcj-old-slugs.php:49 includes/class-wcj-order-numbers.php:64
576
- #: includes/class-wcj-orders.php:112 includes/class-wcj-price-labels.php:116
577
- msgid "enabled"
578
  msgstr ""
579
 
580
- #: includes/class-wcj-checkout-custom-fields.php:252
581
  msgid "type"
582
  msgstr ""
583
 
584
- #: includes/class-wcj-checkout-custom-fields.php:257
585
- #: includes/class-wcj-checkout.php:159
 
586
  msgid "Text"
587
  msgstr ""
588
 
589
- #: includes/class-wcj-checkout-custom-fields.php:258
 
590
  msgid "Textarea"
591
  msgstr ""
592
 
593
- #: includes/class-wcj-checkout-custom-fields.php:260
594
  msgid "Datepicker"
595
  msgstr ""
596
 
597
- #: includes/class-wcj-checkout-custom-fields.php:261
 
598
  msgid "Checkbox"
599
  msgstr ""
600
 
601
- #: includes/class-wcj-checkout-custom-fields.php:263
602
  msgid "Password"
603
  msgstr ""
604
 
605
- #: includes/class-wcj-checkout-custom-fields.php:268
606
  msgid "required"
607
  msgstr ""
608
 
609
- #: includes/class-wcj-checkout-custom-fields.php:275
610
  msgid "label"
611
  msgstr ""
612
 
613
- #: includes/class-wcj-checkout-custom-fields.php:296
614
  msgid "placeholder"
615
  msgstr ""
616
 
617
- #: includes/class-wcj-checkout-custom-fields.php:304
618
  msgid "section"
619
  msgstr ""
620
 
621
- #: includes/class-wcj-checkout-custom-fields.php:309
 
622
  msgid "Billing"
623
  msgstr ""
624
 
625
- #: includes/class-wcj-checkout-custom-fields.php:311
 
 
 
 
 
 
 
626
  msgid "Order Notes"
627
  msgstr ""
628
 
629
- #: includes/class-wcj-checkout-custom-fields.php:312
630
  msgid "Account"
631
  msgstr ""
632
 
633
- #: includes/class-wcj-checkout-custom-fields.php:318
634
  msgid "class"
635
  msgstr ""
636
 
637
- #: includes/class-wcj-checkout-custom-fields.php:323
638
  msgid "Wide"
639
  msgstr ""
640
 
641
- #: includes/class-wcj-checkout-custom-fields.php:324
642
  msgid "First"
643
  msgstr ""
644
 
645
- #: includes/class-wcj-checkout-custom-fields.php:325
646
  msgid "Last"
647
  msgstr ""
648
 
649
- #: includes/class-wcj-checkout.php:141
650
- msgid "Checkout Options"
651
  msgstr ""
652
 
653
- #: includes/class-wcj-checkout.php:145
654
- msgid "Enable the Checkout feature"
655
  msgstr ""
656
 
657
- #: includes/class-wcj-checkout.php:146
658
- msgid ""
659
- "Customize checkout fields. Disable/enable fields, set required, change "
660
- "labels and/or placeholders."
661
  msgstr ""
662
 
663
- #: includes/class-wcj-checkout.php:156
664
- msgid "Place order (Order now) Button"
665
  msgstr ""
666
 
667
- #: includes/class-wcj-checkout.php:160
668
- msgid "leave blank for WooCommerce default"
669
  msgstr ""
670
 
671
- #: includes/class-wcj-checkout.php:161
672
- msgid "Button on the checkout page."
673
  msgstr ""
674
 
675
- #: includes/class-wcj-checkout.php:170
676
- msgid "Checkout Fields Options"
677
  msgstr ""
678
 
679
- #: includes/class-wcj-checkout.php:170
680
- msgid ""
681
- "This section lets you customize the checkout fields: change label, "
682
- "placeholder, set required, or remove any field."
683
  msgstr ""
684
 
685
- #: includes/class-wcj-checkout.php:236
686
- msgid "Leave blank for WooCommerce defaults."
 
 
 
 
 
 
 
 
 
 
 
 
687
  msgstr ""
688
 
689
- #: includes/class-wcj-currencies.php:66
690
  #: includes/class-wcj-currency-external-products.php:80
691
  msgid "Currency Symbol"
692
  msgstr ""
693
 
694
- #: includes/class-wcj-currencies.php:67
695
  msgid "This sets the currency symbol."
696
  msgstr ""
697
 
698
- #: includes/class-wcj-currencies.php:88
699
  msgid "Currencies Options"
700
  msgstr ""
701
 
702
- #: includes/class-wcj-currencies.php:92
703
- msgid "Enable the Currencies feature"
704
  msgstr ""
705
 
706
- #: includes/class-wcj-currencies.php:93
707
- msgid "Add all world currencies, change currency symbol."
 
708
  msgstr ""
709
 
710
- #: includes/class-wcj-currencies.php:101
711
  msgid "Currency Symbol Options"
712
  msgstr ""
713
 
714
- #: includes/class-wcj-currencies.php:104
715
  msgid "Hide Currency Symbol"
716
  msgstr ""
717
 
718
- #: includes/class-wcj-currencies.php:105
 
 
 
 
 
719
  #: includes/class-wcj-shipping-calculator.php:167
720
  msgid "Hide"
721
  msgstr ""
722
 
723
- #: includes/class-wcj-currencies.php:106
724
  msgid "Default: no."
725
  msgstr ""
726
 
@@ -733,12 +882,8 @@ msgstr ""
733
  msgid "Currency for External Products"
734
  msgstr ""
735
 
736
- #: includes/class-wcj-currency-external-products.php:72
737
- msgid "Enable Feature"
738
- msgstr ""
739
-
740
  #: includes/class-wcj-currency-external-products.php:73
741
- msgid "Set different currency for external products."
742
  msgstr ""
743
 
744
  #: includes/class-wcj-currency-external-products.php:81
@@ -746,1171 +891,1463 @@ msgstr ""
746
  msgid "Set currency symbol for all external products."
747
  msgstr ""
748
 
749
- #: includes/class-wcj-emails.php:57
750
  msgid "WooCommerce Jetpack: Email Forwarding Options"
751
  msgstr ""
752
 
753
- #: includes/class-wcj-emails.php:57 includes/class-wcj-emails.php:128
754
  msgid ""
755
  "This section lets you add another email recipient(s) to all WooCommerce "
756
  "emails. Leave blank to disable."
757
  msgstr ""
758
 
759
- #: includes/class-wcj-emails.php:61 includes/class-wcj-emails.php:131
760
  msgid "Cc Email"
761
  msgstr ""
762
 
763
- #: includes/class-wcj-emails.php:63 includes/class-wcj-emails.php:133
764
  msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
765
  msgstr ""
766
 
767
- #: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:142
768
  msgid "Bcc Email"
769
  msgstr ""
770
 
771
- #: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:144
772
  msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
773
  msgstr ""
774
 
775
- #: includes/class-wcj-emails.php:115
776
  msgid "Emails Options"
777
  msgstr ""
778
 
779
- #: includes/class-wcj-emails.php:119
780
- msgid "Enable the Emails feature"
781
  msgstr ""
782
 
783
- #: includes/class-wcj-emails.php:120
784
  msgid "Add another email recipient(s) to all WooCommerce emails."
785
  msgstr ""
786
 
787
- #: includes/class-wcj-emails.php:128
788
  msgid "Email Forwarding Options"
789
  msgstr ""
790
 
791
- #: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1202
792
- msgid "General Options"
793
  msgstr ""
794
 
795
- #: includes/class-wcj-general.php:73 includes/class-wcj-general.php:111
796
- msgid "General"
797
  msgstr ""
798
 
799
- #: includes/class-wcj-general.php:74
800
- msgid "Enable the General feature"
801
  msgstr ""
802
 
803
- #: includes/class-wcj-general.php:75
804
- msgid "Separate custom CSS for front and back end."
 
805
  msgstr ""
806
 
807
- #: includes/class-wcj-general.php:83
808
- msgid "Custom CSS Options"
809
  msgstr ""
810
 
811
- #: includes/class-wcj-general.php:83
812
- msgid "Another custom CSS, if you need one."
813
  msgstr ""
814
 
815
- #: includes/class-wcj-general.php:86
816
- msgid "Custom CSS - Front end (Customers)"
817
  msgstr ""
818
 
819
- #: includes/class-wcj-general.php:94
820
- msgid "Custom CSS - Back end (Admin)"
821
  msgstr ""
822
 
823
- #: includes/class-wcj-old-slugs.php:51 includes/class-wcj-order-numbers.php:66
824
- #: includes/class-wcj-orders.php:114 includes/class-wcj-price-labels.php:118
825
- msgid "disabled"
826
  msgstr ""
827
 
828
- #: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
829
- msgid "Remove Old Slugs"
830
  msgstr ""
831
 
832
- #: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:165
833
- msgid "Tool removes old slugs/permalinks from database."
834
  msgstr ""
835
 
836
- #: includes/class-wcj-old-slugs.php:86
837
- msgid "Old Slugs Options"
838
  msgstr ""
839
 
840
- #: includes/class-wcj-old-slugs.php:89 includes/class-wcj-old-slugs.php:109
841
- msgid "Old Slugs"
 
 
 
 
 
 
 
 
 
 
 
 
842
  msgstr ""
843
 
844
- #: includes/class-wcj-old-slugs.php:90
845
- msgid "Enable the Remove Old Product Slugs feature"
846
  msgstr ""
847
 
848
- #: includes/class-wcj-old-slugs.php:91
 
 
 
 
849
  msgid ""
850
- "Remove old product slugs. When enabled, the tool is accessible through <a "
851
- "href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack "
852
- "Tools > Remove Old Slugs</a>."
853
  msgstr ""
854
 
855
- #: includes/class-wcj-old-slugs.php:164
856
- msgid "WooCommerce Jetpack - Remove Old Product Slugs"
857
  msgstr ""
858
 
859
- #: includes/class-wcj-old-slugs.php:170
860
- msgid "Old products slugs found:"
861
  msgstr ""
862
 
863
- #: includes/class-wcj-old-slugs.php:178
864
- msgid "None-products slugs found:"
865
  msgstr ""
866
 
867
- #: includes/class-wcj-old-slugs.php:185
868
- msgid "No old slugs found."
869
  msgstr ""
870
 
871
- #: includes/class-wcj-order-numbers.php:67
872
- msgid "Orders Renumerate"
873
  msgstr ""
874
 
875
- #: includes/class-wcj-order-numbers.php:69
876
- msgid "Tool renumerates all orders."
877
  msgstr ""
878
 
879
- #: includes/class-wcj-order-numbers.php:79
880
- msgid "Renumerate orders"
881
  msgstr ""
882
 
883
- #: includes/class-wcj-order-numbers.php:91
884
- msgid "Orders successfully renumerated!"
885
  msgstr ""
886
 
887
- #: includes/class-wcj-order-numbers.php:94
888
- msgid "WooCommerce Jetpack - Renumerate Orders"
889
  msgstr ""
890
 
891
- #: includes/class-wcj-order-numbers.php:95
892
- msgid ""
893
- "The tool renumerates all orders. Press the button below to renumerate all "
894
- "existing orders starting from order counter settings in WooCommerce > "
895
- "Settings > Jetpack > Order Numbers."
896
  msgstr ""
897
 
898
- #: includes/class-wcj-order-numbers.php:153
899
- #: includes/class-wcj-order-numbers.php:156
900
- #: includes/class-wcj-order-numbers.php:247
901
- msgid "Order Numbers"
902
  msgstr ""
903
 
904
- #: includes/class-wcj-order-numbers.php:153
905
- msgid ""
906
- "This section lets you enable sequential order numbering, set custom number "
907
- "prefix, suffix and width."
908
  msgstr ""
909
 
910
- #: includes/class-wcj-order-numbers.php:157
911
- msgid "Enable Order Numbers WooJetpack Module"
912
  msgstr ""
913
 
914
- #: includes/class-wcj-order-numbers.php:158
915
- msgid ""
916
- "Sequential order numbering, custom order number prefix, suffix and number "
917
- "width."
918
  msgstr ""
919
 
920
- #: includes/class-wcj-order-numbers.php:165
921
- msgid "Make Order Numbers Sequential"
922
  msgstr ""
923
 
924
- #: includes/class-wcj-order-numbers.php:173
925
- msgid "Next Order Number"
926
  msgstr ""
927
 
928
- #: includes/class-wcj-order-numbers.php:174
929
- msgid "Next new order will be given this number."
930
  msgstr ""
931
 
932
- #: includes/class-wcj-order-numbers.php:174
933
- msgid "Use Renumerate Orders tool for existing orders."
934
  msgstr ""
935
 
936
- #: includes/class-wcj-order-numbers.php:175
937
- msgid "This will be ignored if sequential order numbering is disabled."
938
  msgstr ""
939
 
940
- #: includes/class-wcj-order-numbers.php:182
941
- msgid "Order Number Custom Prefix"
942
  msgstr ""
943
 
944
- #: includes/class-wcj-order-numbers.php:184
945
  msgid ""
946
- "Prefix before order number (optional). This will change the prefixes for all "
947
- "existing orders."
948
  msgstr ""
949
 
950
- #: includes/class-wcj-order-numbers.php:193
951
- msgid "Order Number Date Prefix"
952
  msgstr ""
953
 
954
- #: includes/class-wcj-order-numbers.php:195
955
- msgid ""
956
- "Date prefix before order number (optional). This will change the prefixes "
957
- "for all existing orders. Value is passed directly to PHP `date` function, so "
958
- "most of PHP date formats can be used. The only exception is using `\\` "
959
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
960
- "d- or mdy."
961
  msgstr ""
962
 
963
- #: includes/class-wcj-order-numbers.php:204
964
- msgid "Order Number Width"
965
  msgstr ""
966
 
967
- #: includes/class-wcj-order-numbers.php:206
968
- msgid ""
969
- "Minimum width of number without prefix (zeros will be added to the left "
970
- "side). This will change the minimum width of order number for all existing "
971
- "orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
972
- "Leave zero to disable."
973
  msgstr ""
974
 
975
- #: includes/class-wcj-order-numbers.php:215
976
- msgid "Order Number Custom Suffix"
977
  msgstr ""
978
 
979
- #: includes/class-wcj-order-numbers.php:217
980
- msgid ""
981
- "Suffix after order number (optional). This will change the suffixes for all "
982
- "existing orders."
983
  msgstr ""
984
 
985
- #: includes/class-wcj-order-numbers.php:226
986
- msgid "Order Number Date Suffix"
987
  msgstr ""
988
 
989
- #: includes/class-wcj-order-numbers.php:228
990
- msgid ""
991
- "Date suffix after order number (optional). This will change the suffixes for "
992
- "all existing orders. Value is passed directly to PHP `date` function, so "
993
- "most of PHP date formats can be used. The only exception is using `\\` "
994
- "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
995
- "d- or mdy."
996
  msgstr ""
997
 
998
- #: includes/class-wcj-orders.php:26
999
  msgctxt "Order status"
1000
  msgid "Pending payment"
1001
  msgstr ""
1002
 
1003
- #: includes/class-wcj-orders.php:27
 
1004
  msgctxt "Order status"
1005
  msgid "Processing"
1006
  msgstr ""
1007
 
1008
- #: includes/class-wcj-orders.php:28
1009
  msgctxt "Order status"
1010
  msgid "On hold"
1011
  msgstr ""
1012
 
1013
- #: includes/class-wcj-orders.php:29
 
1014
  msgctxt "Order status"
1015
  msgid "Completed"
1016
  msgstr ""
1017
 
1018
- #: includes/class-wcj-orders.php:30
 
1019
  msgctxt "Order status"
1020
  msgid "Cancelled"
1021
  msgstr ""
1022
 
1023
- #: includes/class-wcj-orders.php:31
 
1024
  msgctxt "Order status"
1025
  msgid "Refunded"
1026
  msgstr ""
1027
 
1028
- #: includes/class-wcj-orders.php:32
 
1029
  msgctxt "Order status"
1030
  msgid "Failed"
1031
  msgstr ""
1032
 
1033
- #: includes/class-wcj-orders.php:115 includes/class-wcj-orders.php:127
1034
- #: includes/class-wcj-orders.php:393 includes/class-wcj-orders.php:396
 
1035
  msgid "Custom Statuses"
1036
  msgstr ""
1037
 
1038
- #: includes/class-wcj-orders.php:117
1039
  msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1040
  msgstr ""
1041
 
1042
- #: includes/class-wcj-orders.php:157
1043
  msgid "Status slug is empty. Status not added."
1044
  msgstr ""
1045
 
1046
- #: includes/class-wcj-orders.php:159
1047
  msgid "The length of status slug must be 17 or less characters."
1048
  msgstr ""
1049
 
1050
- #: includes/class-wcj-orders.php:161
1051
  msgid "Status label is empty. Status not added."
1052
  msgstr ""
1053
 
1054
- #: includes/class-wcj-orders.php:167
1055
  msgid "Duplicate slug. Status not added."
1056
  msgstr ""
1057
 
1058
- #: includes/class-wcj-orders.php:173
1059
  msgid "New status have been successfully added!"
1060
  msgstr ""
1061
 
1062
- #: includes/class-wcj-orders.php:175
1063
  msgid "Status was not added."
1064
  msgstr ""
1065
 
1066
- #: includes/class-wcj-orders.php:191
1067
  msgid "Status have been successfully deleted."
1068
  msgstr ""
1069
 
1070
- #: includes/class-wcj-orders.php:193
1071
  msgid "Delete failed."
1072
  msgstr ""
1073
 
1074
- #: includes/class-wcj-orders.php:196
1075
  msgid "WooCommerce Jetpack - Custom Statuses"
1076
  msgstr ""
1077
 
1078
- #: includes/class-wcj-orders.php:197
1079
  msgid ""
1080
  "The tool lets you add or delete any custom status for WooCommerce orders."
1081
  msgstr ""
1082
 
1083
- #: includes/class-wcj-orders.php:199
1084
  msgid "Statuses"
1085
  msgstr ""
1086
 
1087
- #: includes/class-wcj-orders.php:202
1088
  msgid "Slug"
1089
  msgstr ""
1090
 
1091
- #: includes/class-wcj-orders.php:203 includes/class-wcj-orders.php:228
 
1092
  msgid "Label"
1093
  msgstr ""
1094
 
1095
- #: includes/class-wcj-orders.php:205 includes/class-wcj-orders.php:215
 
1096
  msgid "Delete"
1097
  msgstr ""
1098
 
1099
- #: includes/class-wcj-orders.php:227
1100
  msgid "Slug (without wc- prefix)"
1101
  msgstr ""
1102
 
1103
- #: includes/class-wcj-orders.php:315
1104
- msgid "Orders Options"
1105
  msgstr ""
1106
 
1107
- #: includes/class-wcj-orders.php:319
1108
- msgid "Enable the Orders feature"
 
1109
  msgstr ""
1110
 
1111
- #: includes/class-wcj-orders.php:320
1112
- msgid "Minimum order amount, orders auto-complete, orders custom statuses."
 
1113
  msgstr ""
1114
 
1115
- #: includes/class-wcj-orders.php:328
1116
- msgid "Order Minimum Amount"
 
 
 
1117
  msgstr ""
1118
 
1119
- #: includes/class-wcj-orders.php:328
1120
- msgid "This section lets you set minimum order amount."
1121
  msgstr ""
1122
 
1123
- #: includes/class-wcj-orders.php:331
1124
- msgid "Amount"
1125
  msgstr ""
1126
 
1127
- #: includes/class-wcj-orders.php:332
1128
- msgid "Minimum order amount. Set to 0 to disable."
1129
  msgstr ""
1130
 
1131
- #: includes/class-wcj-orders.php:339
1132
- msgid "Error message"
1133
  msgstr ""
1134
 
1135
- #: includes/class-wcj-orders.php:341 includes/class-wcj-orders.php:361
1136
- msgid ""
1137
- "Message to customer if order is below minimum amount. Default: You must have "
1138
- "an order with a minimum of %s to place your order, your current order total "
1139
- "is %s."
1140
  msgstr ""
1141
 
1142
- #: includes/class-wcj-orders.php:351
1143
- msgid "Add notice to cart page also"
 
 
 
1144
  msgstr ""
1145
 
1146
- #: includes/class-wcj-orders.php:352
1147
- msgid "Add"
 
 
1148
  msgstr ""
1149
 
1150
- #: includes/class-wcj-orders.php:359
1151
- msgid "Message on cart page"
 
 
1152
  msgstr ""
1153
 
1154
- #: includes/class-wcj-orders.php:371
1155
  msgid ""
1156
- "Stop customer from seeing the Checkout page if minimum amount not reached."
 
1157
  msgstr ""
1158
 
1159
- #: includes/class-wcj-orders.php:372
1160
- msgid "Redirect back to Cart page"
1161
  msgstr ""
1162
 
1163
- #: includes/class-wcj-orders.php:380
1164
- msgid "Orders Auto-Complete"
1165
  msgstr ""
1166
 
1167
- #: includes/class-wcj-orders.php:380
1168
- msgid "This section lets you enable orders auto-complete function."
1169
  msgstr ""
1170
 
1171
- #: includes/class-wcj-orders.php:383
1172
- msgid "Auto-complete all WooCommerce orders"
1173
  msgstr ""
1174
 
1175
- #: includes/class-wcj-orders.php:385
1176
- msgid ""
1177
- "E.g. if you sell digital products then you are not shipping anything and you "
1178
- "may want auto-complete all your orders."
1179
  msgstr ""
1180
 
1181
- #: includes/class-wcj-orders.php:393
1182
- msgid "This section lets you enable custom statuses tool."
1183
  msgstr ""
1184
 
1185
- #: includes/class-wcj-orders.php:398
1186
  msgid ""
1187
- "When enabled, the Custom Statuses tool is accessible through <a href="
1188
- "\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack "
1189
- "Tools > Custom Statuses</a>."
1190
- msgstr ""
1191
-
1192
- #: includes/class-wcj-orders.php:405
1193
- #: includes/gateways/class-wc-gateway-wcj-custom.php:121
1194
- msgid "Default Order Status"
1195
  msgstr ""
1196
 
1197
- #: includes/class-wcj-orders.php:406
1198
- #: includes/gateways/class-wc-gateway-wcj-custom.php:122
1199
- msgid "Enable Custom Statuses feature to add custom statuses to the list."
1200
  msgstr ""
1201
 
1202
- #: includes/class-wcj-orders.php:407
1203
  msgid ""
1204
- "You can change the default order status here. However payment gateways can "
1205
- "change this status immediatelly on order creation. E.g. BACS gateway will "
1206
- "change status to On-hold."
 
 
1207
  msgstr ""
1208
 
1209
- #: includes/class-wcj-payment-gateways.php:119
1210
- msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
1211
  msgstr ""
1212
 
1213
- #: includes/class-wcj-payment-gateways.php:119
1214
- #: includes/class-wcj-payment-gateways.php:342
1215
- #: includes/gateways/class-wc-gateway-wcj-custom.php:86
1216
  msgid ""
1217
- "If you want to show an image next to the gateway's name on the frontend, "
1218
- "enter a URL to an image."
 
 
1219
  msgstr ""
1220
 
1221
- #: includes/class-wcj-payment-gateways.php:152
1222
- #: includes/class-wcj-payment-gateways.php:369
1223
- msgid "Payment Gateways Fees Options"
1224
  msgstr ""
1225
 
1226
- #: includes/class-wcj-payment-gateways.php:154
1227
- msgid "This section lets you set extra fees for payment gateways."
 
 
1228
  msgstr ""
1229
 
1230
- #: includes/class-wcj-payment-gateways.php:155
1231
- msgid "Fees are applied BEFORE taxes."
1232
  msgstr ""
1233
 
1234
- #: includes/class-wcj-payment-gateways.php:172
1235
- msgid "Fee title to show to customer."
 
 
 
 
 
1236
  msgstr ""
1237
 
1238
- #: includes/class-wcj-payment-gateways.php:181
1239
- msgid "Fee type."
1240
  msgstr ""
1241
 
1242
- #: includes/class-wcj-payment-gateways.php:182
1243
- msgid "Percent or fixed value."
1244
  msgstr ""
1245
 
1246
- #: includes/class-wcj-payment-gateways.php:189
1247
- msgid "Fixed"
1248
  msgstr ""
1249
 
1250
- #: includes/class-wcj-payment-gateways.php:190
1251
- msgid "Percent"
1252
  msgstr ""
1253
 
1254
- #: includes/class-wcj-payment-gateways.php:196
1255
- msgid "Fee value."
1256
  msgstr ""
1257
 
1258
- #: includes/class-wcj-payment-gateways.php:197
1259
- msgid "The value."
1260
  msgstr ""
1261
 
1262
- #: includes/class-wcj-payment-gateways.php:209
1263
- msgid "Minimum cart amount for adding the fee."
1264
  msgstr ""
1265
 
1266
- #: includes/class-wcj-payment-gateways.php:210
1267
- #: includes/class-wcj-payment-gateways.php:223
1268
- msgid "Set 0 to disable."
1269
  msgstr ""
1270
 
1271
- #: includes/class-wcj-payment-gateways.php:222
1272
- msgid "Maximum cart amount for adding the fee."
1273
  msgstr ""
1274
 
1275
- #: includes/class-wcj-payment-gateways.php:257
1276
- msgid "Payment Gateways Attach PDF Invoice Options"
 
 
 
1277
  msgstr ""
1278
 
1279
- #: includes/class-wcj-payment-gateways.php:257
1280
- msgid ""
1281
- "This section lets you choose when to attach PDF invoice to customers emails."
1282
  msgstr ""
1283
 
1284
- #: includes/class-wcj-payment-gateways.php:267
1285
- msgid "Attach PDF invoice."
 
1286
  msgstr ""
1287
 
1288
- #: includes/class-wcj-payment-gateways.php:310
1289
- msgid "Payment Gateways Options"
1290
  msgstr ""
1291
 
1292
- #: includes/class-wcj-payment-gateways.php:313
1293
- #: includes/class-wcj-payment-gateways.php:389
1294
- msgid "Payment Gateways"
1295
  msgstr ""
1296
 
1297
- #: includes/class-wcj-payment-gateways.php:314
1298
- msgid "Enable the Payment Gateways feature"
1299
  msgstr ""
1300
 
1301
- #: includes/class-wcj-payment-gateways.php:315
1302
- msgid ""
1303
- "Add custom payment gateway, change icons (images) for all default "
1304
- "WooCommerce payment gateways."
1305
  msgstr ""
1306
 
1307
- #: includes/class-wcj-payment-gateways.php:323
1308
- msgid "Custom Payment Gateways Options"
1309
  msgstr ""
1310
 
1311
- #: includes/class-wcj-payment-gateways.php:326
1312
- msgid "Number of Gateways"
1313
  msgstr ""
1314
 
1315
- #: includes/class-wcj-payment-gateways.php:328
1316
  msgid ""
1317
- "Number of custom payments gateways to be added. All settings for each new "
1318
- "gateway are in WooCommerce > Settings > Checkout."
1319
  msgstr ""
1320
 
1321
- #: includes/class-wcj-payment-gateways.php:342
1322
- msgid "Default WooCommerce Payment Gateways Options"
1323
  msgstr ""
1324
 
1325
- #: includes/class-wcj-payment-gateways.php:369
1326
- msgid ""
1327
- "This section lets you enable extra fees for payment gateways. When enabled "
1328
- "all options are added to WooCommerce > Settings > Checkout"
1329
  msgstr ""
1330
 
1331
- #: includes/class-wcj-payment-gateways.php:372
1332
  msgid "Payment Gateways Fees"
1333
  msgstr ""
1334
 
1335
- #: includes/class-wcj-payment-gateways.php:373
1336
- msgid "Enable the Payment Gateways Fees"
1337
  msgstr ""
1338
 
1339
- #: includes/class-wcj-pdf-invoices.php:178
1340
- #: includes/class-wcj-pdf-invoices.php:183
1341
- msgid "Invoice"
1342
  msgstr ""
1343
 
1344
- #: includes/class-wcj-pdf-invoices.php:755
1345
- #: includes/class-wcj-pdf-invoices.php:761
1346
- msgid "PDF Invoice"
1347
  msgstr ""
1348
 
1349
- #: includes/class-wcj-pdf-invoices.php:786
1350
- msgid "PDF Invoices Options"
1351
  msgstr ""
1352
 
1353
- #: includes/class-wcj-pdf-invoices.php:790
1354
- msgid "Enable the PDF Invoices feature"
1355
  msgstr ""
1356
 
1357
- #: includes/class-wcj-pdf-invoices.php:791
1358
- msgid "Add PDF invoices for the store owners and for the customers."
1359
  msgstr ""
1360
 
1361
- #: includes/class-wcj-pdf-invoices.php:799
1362
- msgid "Invoice Header"
1363
  msgstr ""
1364
 
1365
- #: includes/class-wcj-pdf-invoices.php:799
1366
- msgid ""
1367
- "This section lets you set texts for required invoice number and date, and "
1368
- "optional logo, header text, invoice due and fulfillment dates."
1369
  msgstr ""
1370
 
1371
- #: includes/class-wcj-pdf-invoices.php:802
1372
- msgid "Your Logo URL"
1373
  msgstr ""
1374
 
1375
- #: includes/class-wcj-pdf-invoices.php:803
1376
- msgid ""
1377
- "Enter a URL to an image you want to show in the invoice's header. Upload "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1378
  "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1379
  msgstr ""
1380
 
1381
- #: includes/class-wcj-pdf-invoices.php:804
1382
- #: includes/class-wcj-pdf-invoices.php:813
1383
- #: includes/class-wcj-pdf-invoices.php:833
1384
- #: includes/class-wcj-pdf-invoices.php:843
1385
- #: includes/class-wcj-pdf-invoices.php:862
1386
- #: includes/class-wcj-pdf-invoices.php:882
1387
- #: includes/class-wcj-pdf-invoices.php:955
1388
- #: includes/class-wcj-pdf-invoices.php:990
1389
- #: includes/class-wcj-pdf-invoices.php:1041
1390
- #: includes/class-wcj-pdf-invoices.php:1050
1391
- #: includes/class-wcj-pdf-invoices.php:1059
1392
- #: includes/class-wcj-pdf-invoices.php:1068
1393
- #: includes/class-wcj-pdf-invoices.php:1077
1394
- #: includes/class-wcj-pdf-invoices.php:1086
1395
- #: includes/class-wcj-pdf-invoices.php:1166
1396
- #: includes/class-wcj-pdf-invoices.php:1175
 
1397
  msgid "Leave blank to disable"
1398
  msgstr ""
1399
 
1400
- #: includes/class-wcj-pdf-invoices.php:812
 
1401
  msgid "Header Text"
1402
  msgstr ""
1403
 
1404
- #: includes/class-wcj-pdf-invoices.php:814
1405
  msgid "Default: INVOICE"
1406
  msgstr ""
1407
 
1408
- #: includes/class-wcj-pdf-invoices.php:816
1409
  msgid "INVOICE"
1410
  msgstr ""
1411
 
1412
- #: includes/class-wcj-pdf-invoices.php:822
1413
  msgid "Invoice Number"
1414
  msgstr ""
1415
 
1416
- #: includes/class-wcj-pdf-invoices.php:823
1417
  msgid "Default: Invoice number"
1418
  msgstr ""
1419
 
1420
- #: includes/class-wcj-pdf-invoices.php:825
1421
  msgid "Invoice number"
1422
  msgstr ""
1423
 
1424
- #: includes/class-wcj-pdf-invoices.php:831
1425
  msgid "Order Date"
1426
  msgstr ""
1427
 
1428
- #: includes/class-wcj-pdf-invoices.php:832
1429
  msgid "Default: Order date"
1430
  msgstr ""
1431
 
1432
- #: includes/class-wcj-pdf-invoices.php:835
1433
  msgid "Order date"
1434
  msgstr ""
1435
 
1436
- #: includes/class-wcj-pdf-invoices.php:841
1437
  msgid "Order Time"
1438
  msgstr ""
1439
 
1440
- #: includes/class-wcj-pdf-invoices.php:842
1441
  msgid "Default: Order time"
1442
  msgstr ""
1443
 
1444
- #: includes/class-wcj-pdf-invoices.php:845
1445
  msgid "Order time"
1446
  msgstr ""
1447
 
1448
- #: includes/class-wcj-pdf-invoices.php:851
 
1449
  msgid "Invoice Date"
1450
  msgstr ""
1451
 
1452
- #: includes/class-wcj-pdf-invoices.php:852
1453
  msgid "Default: Invoice date"
1454
  msgstr ""
1455
 
1456
- #: includes/class-wcj-pdf-invoices.php:854
1457
  msgid "Invoice date"
1458
  msgstr ""
1459
 
1460
- #: includes/class-wcj-pdf-invoices.php:861
1461
  msgid "Default: Invoice due date"
1462
  msgstr ""
1463
 
1464
- #: includes/class-wcj-pdf-invoices.php:864
1465
  msgid "Invoice due date"
1466
  msgstr ""
1467
 
1468
- #: includes/class-wcj-pdf-invoices.php:871
1469
- #: includes/class-wcj-pdf-invoices.php:891
1470
  msgid "days"
1471
  msgstr ""
1472
 
1473
- #: includes/class-wcj-pdf-invoices.php:881
1474
  msgid "Default: Invoice fulfillment date"
1475
  msgstr ""
1476
 
1477
- #: includes/class-wcj-pdf-invoices.php:884
1478
  msgid "Invoice fulfillment date"
1479
  msgstr ""
1480
 
1481
- #: includes/class-wcj-pdf-invoices.php:900
1482
  msgid "Additional Header"
1483
  msgstr ""
1484
 
1485
- #: includes/class-wcj-pdf-invoices.php:901
1486
  msgid ""
1487
  "Additional header - will be displayed above all data on invoice. You can use "
1488
  "html and/or shortcodes here."
1489
  msgstr ""
1490
 
1491
- #: includes/class-wcj-pdf-invoices.php:910
1492
  msgid "Seller and Buyer Info"
1493
  msgstr ""
1494
 
1495
- #: includes/class-wcj-pdf-invoices.php:913
1496
- #: includes/class-wcj-pdf-invoices.php:916
 
1497
  msgid "Seller"
1498
  msgstr ""
1499
 
1500
- #: includes/class-wcj-pdf-invoices.php:922
1501
  msgid "Your business information"
1502
  msgstr ""
1503
 
1504
- #: includes/class-wcj-pdf-invoices.php:924
1505
  msgid "New lines are added automatically."
1506
  msgstr ""
1507
 
1508
- #: includes/class-wcj-pdf-invoices.php:926
1509
  msgid "<strong>Company Name</strong>"
1510
  msgstr ""
1511
 
1512
- #: includes/class-wcj-pdf-invoices.php:932
1513
- #: includes/class-wcj-pdf-invoices.php:935
1514
  msgid "Buyer"
1515
  msgstr ""
1516
 
1517
- #: includes/class-wcj-pdf-invoices.php:942
1518
- #: includes/class-wcj-pdf-invoices.php:948
1519
  msgid "Items"
1520
  msgstr ""
1521
 
1522
- #: includes/class-wcj-pdf-invoices.php:945
1523
  msgid "Items Table Heading Text"
1524
  msgstr ""
1525
 
1526
- #: includes/class-wcj-pdf-invoices.php:954
1527
  msgid "Shipping as Item"
1528
  msgstr ""
1529
 
1530
- #: includes/class-wcj-pdf-invoices.php:956
1531
  msgid "Display shipping as item"
1532
  msgstr ""
1533
 
1534
- #: includes/class-wcj-pdf-invoices.php:974
1535
- #: includes/class-wcj-pdf-invoices.php:982
1536
  msgid "Add shipping method info"
1537
  msgstr ""
1538
 
1539
- #: includes/class-wcj-pdf-invoices.php:981
1540
  msgid "Do not add shipping method info"
1541
  msgstr ""
1542
 
1543
- #: includes/class-wcj-pdf-invoices.php:983
1544
  msgid "Replace with shipping method info"
1545
  msgstr ""
1546
 
1547
- #: includes/class-wcj-pdf-invoices.php:989
1548
  msgid "Discount as Item"
1549
  msgstr ""
1550
 
1551
- #: includes/class-wcj-pdf-invoices.php:991
1552
  msgid "Display discount as item"
1553
  msgstr ""
1554
 
1555
- #: includes/class-wcj-pdf-invoices.php:1001
1556
  msgid "Items Columns"
1557
  msgstr ""
1558
 
1559
- #: includes/class-wcj-pdf-invoices.php:1001
1560
  msgid ""
1561
  "This section lets you set column names in invoice items table. You can "
1562
  "disable some columns by leaving blank column name."
1563
  msgstr ""
1564
 
1565
- #: includes/class-wcj-pdf-invoices.php:1004
1566
- #: includes/class-wcj-pdf-invoices.php:1007
1567
  msgid "Nr."
1568
  msgstr ""
1569
 
1570
- #: includes/class-wcj-pdf-invoices.php:1013
1571
- #: includes/class-wcj-pdf-invoices.php:1016
1572
  msgid "Item Name"
1573
  msgstr ""
1574
 
1575
- #: includes/class-wcj-pdf-invoices.php:1022
1576
  msgid "Item Name Additional Info"
1577
  msgstr ""
1578
 
1579
- #: includes/class-wcj-pdf-invoices.php:1023
1580
  msgid ""
1581
  "Here you can add more info to item's name column (e.g. sku). Default is "
1582
  "(SKU: %sku%)"
1583
  msgstr ""
1584
 
1585
- #: includes/class-wcj-pdf-invoices.php:1025
1586
  msgid "(SKU: %sku%)"
1587
  msgstr ""
1588
 
1589
- #: includes/class-wcj-pdf-invoices.php:1031
1590
- #: includes/class-wcj-pdf-invoices.php:1034
1591
  msgid "Qty"
1592
  msgstr ""
1593
 
1594
- #: includes/class-wcj-pdf-invoices.php:1040
1595
  msgid "Single Item Price (TAX excl.)"
1596
  msgstr ""
1597
 
1598
- #: includes/class-wcj-pdf-invoices.php:1043
1599
  msgid "Price (TAX excl.)"
1600
  msgstr ""
1601
 
1602
- #: includes/class-wcj-pdf-invoices.php:1049
1603
  msgid "Single Item TAX"
1604
  msgstr ""
1605
 
1606
- #: includes/class-wcj-pdf-invoices.php:1052
1607
  msgid "TAX"
1608
  msgstr ""
1609
 
1610
- #: includes/class-wcj-pdf-invoices.php:1058
1611
  msgid "Single Item Price (TAX incl.)"
1612
  msgstr ""
1613
 
1614
- #: includes/class-wcj-pdf-invoices.php:1061
1615
  msgid "Price (TAX incl.)"
1616
  msgstr ""
1617
 
1618
- #: includes/class-wcj-pdf-invoices.php:1067
1619
- #: includes/class-wcj-pdf-invoices.php:1070
1620
  msgid "Sum (TAX excl.)"
1621
  msgstr ""
1622
 
1623
- #: includes/class-wcj-pdf-invoices.php:1076
1624
  msgid "Tax Percent"
1625
  msgstr ""
1626
 
1627
- #: includes/class-wcj-pdf-invoices.php:1079
1628
  msgid "Taxes %"
1629
  msgstr ""
1630
 
1631
- #: includes/class-wcj-pdf-invoices.php:1085
1632
- #: includes/class-wcj-pdf-invoices.php:1088
1633
- #: includes/class-wcj-pdf-invoices.php:1146
1634
  msgid "Taxes"
1635
  msgstr ""
1636
 
1637
- #: includes/class-wcj-pdf-invoices.php:1094
1638
- #: includes/class-wcj-pdf-invoices.php:1097
1639
  msgid "Sum (TAX incl.)"
1640
  msgstr ""
1641
 
1642
- #: includes/class-wcj-pdf-invoices.php:1104
1643
  msgid "Totals"
1644
  msgstr ""
1645
 
1646
- #: includes/class-wcj-pdf-invoices.php:1104
1647
  msgid "This section lets you set texts for totals table."
1648
  msgstr ""
1649
 
1650
- #: includes/class-wcj-pdf-invoices.php:1107
1651
- #: includes/class-wcj-pdf-invoices.php:1110
1652
  msgid "Order Subtotal"
1653
  msgstr ""
1654
 
1655
- #: includes/class-wcj-pdf-invoices.php:1108
1656
  msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1657
  msgstr ""
1658
 
1659
- #: includes/class-wcj-pdf-invoices.php:1116
1660
  msgid "Order Shipping Price"
1661
  msgstr ""
1662
 
1663
- #: includes/class-wcj-pdf-invoices.php:1125
1664
  msgid "Total Discount"
1665
  msgstr ""
1666
 
1667
- #: includes/class-wcj-pdf-invoices.php:1128
1668
  msgid "Discount"
1669
  msgstr ""
1670
 
1671
- #: includes/class-wcj-pdf-invoices.php:1134
1672
- #: includes/class-wcj-pdf-invoices.php:1137
1673
  msgid "Order Total (TAX excl.)"
1674
  msgstr ""
1675
 
1676
- #: includes/class-wcj-pdf-invoices.php:1135
1677
  msgid ""
1678
  "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
1679
  "is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
1680
  "equal to \"Order Subtotal\""
1681
  msgstr ""
1682
 
1683
- #: includes/class-wcj-pdf-invoices.php:1143
1684
  msgid "Order Total Taxes"
1685
  msgstr ""
1686
 
1687
- #: includes/class-wcj-pdf-invoices.php:1152
1688
- #: includes/class-wcj-pdf-invoices.php:1155
 
1689
  msgid "Order Total"
1690
  msgstr ""
1691
 
1692
- #: includes/class-wcj-pdf-invoices.php:1162
 
1693
  msgid "Footer"
1694
  msgstr ""
1695
 
1696
- #: includes/class-wcj-pdf-invoices.php:1165
1697
- #: includes/class-wcj-pdf-invoices.php:1168
1698
  msgid "Payment Method"
1699
  msgstr ""
1700
 
1701
- #: includes/class-wcj-pdf-invoices.php:1174
1702
- #: includes/class-wcj-pdf-invoices.php:1177
1703
  msgid "Shipping Method"
1704
  msgstr ""
1705
 
1706
- #: includes/class-wcj-pdf-invoices.php:1183
1707
- #: includes/class-wcj-pdf-invoices.php:1186
1708
  msgid "Shipping Address"
1709
  msgstr ""
1710
 
1711
- #: includes/class-wcj-pdf-invoices.php:1184
1712
  msgid ""
1713
  "Will be displayed only if customer's shipping address differs from billing "
1714
  "address. Leave blank to disable"
1715
  msgstr ""
1716
 
1717
- #: includes/class-wcj-pdf-invoices.php:1192
1718
  msgid "Additional Footer"
1719
  msgstr ""
1720
 
1721
- #: includes/class-wcj-pdf-invoices.php:1193
1722
  msgid ""
1723
  "Additional footer - will be displayed below all other data on invoice. You "
1724
  "can use html and/or shortcodes here."
1725
  msgstr ""
1726
 
1727
- #: includes/class-wcj-pdf-invoices.php:1205
1728
- msgid "Font size"
1729
  msgstr ""
1730
 
1731
- #: includes/class-wcj-pdf-invoices.php:1206
 
 
 
 
 
 
 
 
 
 
1732
  msgid "Default: 8"
1733
  msgstr ""
1734
 
1735
- #: includes/class-wcj-pdf-invoices.php:1214
 
 
 
 
 
 
 
 
 
 
1736
  msgid "CSS"
1737
  msgstr ""
1738
 
1739
- #: includes/class-wcj-pdf-invoices.php:1229
1740
  msgid "PDF Invoices for Customers (in My Account)"
1741
  msgstr ""
1742
 
1743
- #: includes/class-wcj-pdf-invoices.php:1230
1744
  msgid "Enable the PDF Invoices in customers account"
1745
  msgstr ""
1746
 
1747
- #: includes/class-wcj-pdf-invoices.php:1239
1748
  msgid "PDF Invoices for Customers (Email attachment)"
1749
  msgstr ""
1750
 
1751
- #: includes/class-wcj-pdf-invoices.php:1240
1752
  msgid ""
1753
  "Enable the PDF Invoices attachment files in customers email on order "
1754
  "completed"
1755
  msgstr ""
1756
 
1757
- #: includes/class-wcj-pdf-invoices.php:1259
1758
  msgid "Enable Save as"
1759
  msgstr ""
1760
 
1761
- #: includes/class-wcj-pdf-invoices.php:1260
1762
  msgid "Enable save as pdf instead of view pdf"
1763
  msgstr ""
1764
 
1765
- #: includes/class-wcj-price-by-country.php:82
1766
- #: includes/class-wcj-price-by-country.php:99
1767
- msgid "Show reports only in"
 
 
 
1768
  msgstr ""
1769
 
1770
- #: includes/class-wcj-price-by-country.php:417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1771
  msgid "Price by Country Options"
1772
  msgstr ""
1773
 
1774
- #: includes/class-wcj-price-by-country.php:419
1775
  msgid ""
1776
  "Change product's price and currency by customer's country. Customer's "
1777
- "country is detected automatically by IP."
1778
  msgstr ""
1779
 
1780
- #: includes/class-wcj-price-by-country.php:422
1781
- msgid "IP DB version: "
 
1782
  msgstr ""
1783
 
1784
- #: includes/class-wcj-price-by-country.php:427
1785
- #: includes/class-wcj-price-by-country.php:497
1786
- msgid "Prices and Currencies by Country"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1787
  msgstr ""
1788
 
1789
- #: includes/class-wcj-price-by-country.php:428
1790
- msgid "Enable the Price by Country feature"
1791
  msgstr ""
1792
 
1793
- #: includes/class-wcj-price-by-country.php:429
1794
- msgid "Change product's price and currency by customer's country."
1795
  msgstr ""
1796
 
1797
- #: includes/class-wcj-price-by-country.php:437
1798
- msgid "Exchange rates"
1799
  msgstr ""
1800
 
1801
- #: includes/class-wcj-price-by-country.php:440
1802
  msgid "Groups Number"
1803
  msgstr ""
1804
 
1805
- #: includes/class-wcj-price-by-country.php:459
1806
  msgid ""
1807
  "Countries. List of comma separated country codes.<br>For country codes and "
1808
  "predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
1809
  "currencies-by-customers-country\">WooJetpack.com</a>"
1810
  msgstr ""
1811
 
1812
- #: includes/class-wcj-price-by-country.php:468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1813
  msgid "Multiply Price by"
1814
  msgstr ""
1815
 
1816
- #: includes/class-wcj-price-by-country.php:481
1817
- msgid "Currency"
1818
  msgstr ""
1819
 
1820
- #: includes/class-wcj-price-labels.php:119
 
 
 
 
 
1821
  msgid "Migrate from Custom Price Labels (Pro)"
1822
  msgstr ""
1823
 
1824
- #: includes/class-wcj-price-labels.php:121
1825
  msgid ""
1826
  "Tool lets you copy all the data (that is labels) from Custom Price labels "
1827
  "(Pro) plugin to WooCommerce Jetpack."
1828
  msgstr ""
1829
 
1830
- #: includes/class-wcj-price-labels.php:131
1831
  msgid "Migrate from Custom Price Labels"
1832
  msgstr ""
1833
 
1834
- #: includes/class-wcj-price-labels.php:143
1835
  msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
1836
  msgstr ""
1837
 
1838
- #: includes/class-wcj-price-labels.php:191
1839
  msgid "Migrating (product ID "
1840
  msgstr ""
1841
 
1842
- #: includes/class-wcj-price-labels.php:192
1843
  msgid "Result: "
1844
  msgstr ""
1845
 
1846
- #: includes/class-wcj-price-labels.php:214
1847
  msgid "Found data to migrate (product ID "
1848
  msgstr ""
1849
 
1850
- #: includes/class-wcj-price-labels.php:228
1851
  msgid "No data to migrate found"
1852
  msgstr ""
1853
 
1854
- #: includes/class-wcj-price-labels.php:232
1855
  msgid "No products found"
1856
  msgstr ""
1857
 
1858
- #: includes/class-wcj-price-labels.php:237
1859
  msgid ""
1860
  "Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
1861
  "Old labels will NOT be deleted. New labels will be overwritten."
1862
  msgstr ""
1863
 
1864
- #: includes/class-wcj-price-labels.php:238
1865
  msgid "Migrate data"
1866
  msgstr ""
1867
 
1868
- #: includes/class-wcj-price-labels.php:533
1869
  msgid "Custom Price Labels Options"
1870
  msgstr ""
1871
 
1872
- #: includes/class-wcj-price-labels.php:536
1873
- #: includes/class-wcj-price-labels.php:644
1874
  msgid "Custom Price Labels"
1875
  msgstr ""
1876
 
1877
- #: includes/class-wcj-price-labels.php:537
1878
- msgid "Enable the Custom Price Labels feature"
1879
- msgstr ""
1880
-
1881
- #: includes/class-wcj-price-labels.php:538
1882
- msgid "Create any custom price label for any product."
1883
  msgstr ""
1884
 
1885
- #: includes/class-wcj-price-labels.php:546
1886
  msgid "Global Custom Price Labels"
1887
  msgstr ""
1888
 
1889
- #: includes/class-wcj-price-labels.php:546
1890
  msgid "This section lets you set price labels for all products globally."
1891
  msgstr ""
1892
 
1893
- #: includes/class-wcj-price-labels.php:549
1894
  msgid "Add before the price"
1895
  msgstr ""
1896
 
1897
- #: includes/class-wcj-price-labels.php:550
1898
  msgid "Enter text to add before all products prices. Leave blank to disable."
1899
  msgstr ""
1900
 
1901
- #: includes/class-wcj-price-labels.php:561
1902
  msgid "Add after the price"
1903
  msgstr ""
1904
 
1905
- #: includes/class-wcj-price-labels.php:562
1906
  msgid "Enter text to add after all products prices. Leave blank to disable."
1907
  msgstr ""
1908
 
1909
- #: includes/class-wcj-price-labels.php:573
1910
  msgid "Add between regular and sale prices"
1911
  msgstr ""
1912
 
1913
- #: includes/class-wcj-price-labels.php:574
1914
  msgid ""
1915
  "Enter text to add between regular and sale prices. Leave blank to disable."
1916
  msgstr ""
@@ -1935,256 +2372,385 @@ msgstr ""
1935
  msgid "Enter text to replace with. Leave blank to disable."
1936
  msgstr ""
1937
 
1938
- #: includes/class-wcj-price-labels.php:626
1939
  msgid "Migrate from Custom Price Labels (Pro) Options"
1940
  msgstr ""
1941
 
1942
- #: includes/class-wcj-price-labels.php:626
1943
  msgid ""
1944
  "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
1945
  msgstr ""
1946
 
1947
- #: includes/class-wcj-product-info.php:26
1948
- msgid "Before product"
1949
- msgstr ""
1950
-
1951
- #: includes/class-wcj-product-info.php:27
1952
- msgid "Before product title"
1953
  msgstr ""
1954
 
1955
- #: includes/class-wcj-product-info.php:28
1956
- msgid "After product"
 
 
1957
  msgstr ""
1958
 
1959
- #: includes/class-wcj-product-info.php:29
1960
- msgid "After product title"
1961
  msgstr ""
1962
 
1963
- #: includes/class-wcj-product-info.php:34
1964
- msgid "Inside single product summary"
 
 
 
1965
  msgstr ""
1966
 
1967
- #: includes/class-wcj-product-info.php:35
1968
- msgid "Before single product summary"
1969
  msgstr ""
1970
 
1971
- #: includes/class-wcj-product-info.php:36
1972
- msgid "After single product summary"
1973
  msgstr ""
1974
 
1975
- #: includes/class-wcj-product-info.php:295
1976
- msgid "Available shortcodes are:"
1977
  msgstr ""
1978
 
1979
- #: includes/class-wcj-product-info.php:571
1980
- msgid "%s ago"
1981
  msgstr ""
1982
 
1983
- #: includes/class-wcj-product-info.php:621
1984
- #: includes/class-wcj-product-info.php:749
1985
- #: includes/class-wcj-product-info.php:789
1986
- msgid "Position"
1987
  msgstr ""
1988
 
1989
- #: includes/class-wcj-product-info.php:633
1990
- #: includes/class-wcj-product-info.php:761
1991
- #: includes/class-wcj-product-info.php:801
1992
- #: includes/class-wcj-product-tabs.php:350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1993
  #: includes/class-wcj-product-tabs.php:442
1994
  #: includes/class-wcj-product-tabs.php:468
1995
  #: includes/class-wcj-product-tabs.php:494
1996
  msgid "Priority (i.e. Order)"
1997
  msgstr ""
1998
 
1999
- #: includes/class-wcj-product-info.php:641
2000
  msgid ""
2001
  "Number of product info fields. Click \"Save changes\" after you change this "
2002
  "number."
2003
  msgstr ""
2004
 
2005
- #: includes/class-wcj-product-info.php:664
2006
  msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2007
  msgstr ""
2008
 
2009
- #: includes/class-wcj-product-info.php:665
2010
- #: includes/class-wcj-product-info.php:779
2011
  msgid "Total sales: %total_sales%"
2012
  msgstr ""
2013
 
2014
- #: includes/class-wcj-product-info.php:668
2015
  msgid "Default"
2016
  msgstr ""
2017
 
2018
- #: includes/class-wcj-product-info.php:670
2019
  msgid "Field Nr. "
2020
  msgstr ""
2021
 
2022
- #: includes/class-wcj-product-info.php:670
2023
  msgid "Available short codes: "
2024
  msgstr ""
2025
 
2026
- #: includes/class-wcj-product-info.php:700
2027
  msgid "Product Info Options"
2028
  msgstr ""
2029
 
2030
- #: includes/class-wcj-product-info.php:703
2031
- #: includes/class-wcj-product-info.php:868
2032
  msgid "Product Info"
2033
  msgstr ""
2034
 
2035
- #: includes/class-wcj-product-info.php:704
2036
- msgid "Enable the Product Info feature"
2037
- msgstr ""
2038
-
2039
- #: includes/class-wcj-product-info.php:705
2040
- msgid "Add additional info to product, change related products number."
2041
  msgstr ""
2042
 
2043
- #: includes/class-wcj-product-info.php:714
2044
  msgid "More Products Info"
2045
  msgstr ""
2046
 
2047
- #: includes/class-wcj-product-info.php:715
2048
  msgid ""
2049
  "For full list of short codes, please visit <a target=\"_blank\" href="
2050
  "\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
2051
  "features/product-info/</a>"
2052
  msgstr ""
2053
 
2054
- #: includes/class-wcj-product-info.php:720
2055
- #: includes/class-wcj-product-info.php:731
2056
  msgid "Product Info on Archive Pages"
2057
  msgstr ""
2058
 
2059
- #: includes/class-wcj-product-info.php:721
2060
  msgid "Product Info on Single Pages"
2061
  msgstr ""
2062
 
2063
- #: includes/class-wcj-product-info.php:728
2064
  msgid "Even More Products Info"
2065
  msgstr ""
2066
 
2067
- #: includes/class-wcj-product-info.php:740
2068
- #: includes/class-wcj-product-info.php:777
2069
  msgid "HTML info."
2070
  msgstr ""
2071
 
2072
- #: includes/class-wcj-product-info.php:742
2073
  msgid "SKU: %sku%"
2074
  msgstr ""
2075
 
2076
- #: includes/class-wcj-product-info.php:768
2077
  msgid "Product Info on Single Product Pages"
2078
  msgstr ""
2079
 
2080
- #: includes/class-wcj-product-info.php:810
2081
- msgid "Related Products Options"
2082
- msgstr ""
2083
-
2084
- #: includes/class-wcj-product-info.php:820
2085
- msgid "Related Products Number"
2086
- msgstr ""
2087
-
2088
- #: includes/class-wcj-product-info.php:827
2089
- msgid "Related Products Columns"
2090
- msgstr ""
2091
-
2092
- #: includes/class-wcj-product-info.php:834
2093
- msgid "Order by"
2094
- msgstr ""
2095
-
2096
- #: includes/class-wcj-product-info.php:839
2097
- msgid "Random"
2098
- msgstr ""
2099
-
2100
- #: includes/class-wcj-product-info.php:840
2101
- msgid "Date"
2102
  msgstr ""
2103
 
2104
- #: includes/class-wcj-product-info.php:846
2105
- msgid "Order"
2106
  msgstr ""
2107
 
2108
- #: includes/class-wcj-product-info.php:847
2109
- msgid "Ignored if order by \"Random\" is selected above."
2110
  msgstr ""
2111
 
2112
- #: includes/class-wcj-product-info.php:852
2113
- msgid "Ascending"
 
 
2114
  msgstr ""
2115
 
2116
- #: includes/class-wcj-product-info.php:853
2117
- msgid "Descending"
2118
  msgstr ""
2119
 
2120
- #: includes/class-wcj-product-input-fields-global.php:80
2121
- msgid "Product Input Fields Global Options"
2122
  msgstr ""
2123
 
2124
- #: includes/class-wcj-product-input-fields-global.php:82
2125
- #: includes/class-wcj-product-input-fields-per-product.php:197
2126
  msgid ""
2127
  "Add custom input fields to product's single page for customer to fill before "
2128
  "adding product to cart."
2129
  msgstr ""
2130
 
2131
- #: includes/class-wcj-product-input-fields-global.php:87
2132
- #: includes/class-wcj-product-input-fields-global.php:135
2133
- msgid "Product Input Fields - All Products"
2134
- msgstr ""
2135
-
2136
- #: includes/class-wcj-product-input-fields-global.php:89
2137
- msgid "Add custom input fields to all products."
2138
  msgstr ""
2139
 
2140
- #: includes/class-wcj-product-input-fields-global.php:96
2141
- msgid "Product Input Fields Number"
2142
  msgstr ""
2143
 
2144
- #: includes/class-wcj-product-input-fields-per-product.php:95
2145
- msgid "WooCommerce Jetpack: Product Input Fields"
2146
  msgstr ""
2147
 
2148
- #: includes/class-wcj-product-input-fields-per-product.php:104
2149
- msgid "Product Input Fields"
2150
  msgstr ""
2151
 
2152
- #: includes/class-wcj-product-input-fields-per-product.php:124
2153
- msgid "Total number of "
 
 
2154
  msgstr ""
2155
 
2156
- #: includes/class-wcj-product-input-fields-per-product.php:130
2157
- #: includes/class-wcj-product-tabs.php:229
2158
- msgid "Click \"Update\" product after you change this number."
2159
  msgstr ""
2160
 
2161
- #: includes/class-wcj-product-input-fields-per-product.php:195
2162
- msgid "Product Input Fields per Product Options"
2163
  msgstr ""
2164
 
2165
- #: includes/class-wcj-product-input-fields-per-product.php:199
2166
- msgid ""
2167
- "When enabled this module will add \"Product Input Fields\" tab to product's "
2168
- "\"Edit\" page."
2169
  msgstr ""
2170
 
2171
- #: includes/class-wcj-product-input-fields-per-product.php:204
2172
- #: includes/class-wcj-product-input-fields-per-product.php:236
2173
- msgid "Product Input Fields - per Product"
2174
  msgstr ""
2175
 
2176
- #: includes/class-wcj-product-input-fields-per-product.php:206
2177
- msgid "Add custom input field on per product basis."
 
2178
  msgstr ""
2179
 
2180
- #: includes/class-wcj-product-input-fields-per-product.php:213
2181
- msgid "Default Number of Product Input Fields per Product"
2182
  msgstr ""
2183
 
2184
- #: includes/class-wcj-product-input-fields-per-product.php:215
2185
- msgid ""
2186
- "You will be able to change this number later as well as define the fields, "
2187
- "for each product individually, in product's \"Edit\"."
2188
  msgstr ""
2189
 
2190
  #: includes/class-wcj-product-listings.php:56
@@ -2196,14 +2762,10 @@ msgstr ""
2196
  msgid "Product Listings"
2197
  msgstr ""
2198
 
2199
- #: includes/class-wcj-product-listings.php:60
2200
- msgid "Enable the Product Listings feature"
2201
- msgstr ""
2202
-
2203
  #: includes/class-wcj-product-listings.php:61
2204
  msgid ""
2205
- "Change display options for shop and category pages: show/hide categories "
2206
- "count, exclude categories, show/hide empty categories."
2207
  msgstr ""
2208
 
2209
  #: includes/class-wcj-product-listings.php:69
@@ -2330,13 +2892,21 @@ msgstr ""
2330
  msgid "Total number of custom tabs"
2331
  msgstr ""
2332
 
2333
- #: includes/class-wcj-product-tabs.php:243
2334
- msgid "Priority"
 
2335
  msgstr ""
2336
 
2337
- #: includes/class-wcj-product-tabs.php:248
2338
- #: includes/class-wcj-product-tabs.php:357
2339
- msgid "Content"
 
 
 
 
 
 
 
2340
  msgstr ""
2341
 
2342
  #: includes/class-wcj-product-tabs.php:252
@@ -2357,10 +2927,6 @@ msgstr ""
2357
  msgid "Product Tabs Options"
2358
  msgstr ""
2359
 
2360
- #: includes/class-wcj-product-tabs.php:314
2361
- msgid "Enable the Product Tabs feature"
2362
- msgstr ""
2363
-
2364
  #: includes/class-wcj-product-tabs.php:315
2365
  msgid ""
2366
  "Add custom product tabs - globally or per product. Customize or completely "
@@ -2451,241 +3017,537 @@ msgstr ""
2451
  msgid "Reviews Tab"
2452
  msgstr ""
2453
 
2454
- #: includes/class-wcj-reports.php:85
2455
- msgid "WooJetpack: All in stock"
2456
  msgstr ""
2457
 
2458
- #: includes/class-wcj-reports.php:92
2459
- msgid "WooJetpack: Understocked"
2460
  msgstr ""
2461
 
2462
- #: includes/class-wcj-reports.php:107
2463
- msgid "WooJetpack: Customers by Country"
 
 
2464
  msgstr ""
2465
 
2466
- #: includes/class-wcj-reports.php:114
2467
- msgid "WooJetpack: Customers by Country Sets"
2468
  msgstr ""
2469
 
2470
- #: includes/class-wcj-reports.php:139
2471
- msgid "Reports Options"
2472
  msgstr ""
2473
 
2474
- #: includes/class-wcj-reports.php:142 includes/class-wcj-reports.php:177
2475
- msgid "Reports"
2476
  msgstr ""
2477
 
2478
- #: includes/class-wcj-reports.php:143
2479
- msgid "Enable the Reports feature"
2480
  msgstr ""
2481
 
2482
- #: includes/class-wcj-reports.php:144
2483
- msgid "Stock, sales, customers etc. reports."
2484
  msgstr ""
2485
 
2486
- #: includes/class-wcj-reports.php:153
2487
- msgid "Available Reports"
2488
  msgstr ""
2489
 
2490
- #: includes/class-wcj-reports.php:156
2491
- msgid ""
2492
- "WooJetpack: Customers by Country. Available in WooCommerce > Reports > "
2493
- "Customers."
2494
  msgstr ""
2495
 
2496
- #: includes/class-wcj-reports.php:158
2497
- msgid ""
2498
- "WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
2499
- "Customers."
2500
  msgstr ""
2501
 
2502
- #: includes/class-wcj-reports.php:160
2503
- msgid ""
2504
- "WooJetpack: All in Stock with sales data. Available in WooCommerce > Reports "
2505
- "> Stock."
2506
  msgstr ""
2507
 
2508
- #: includes/class-wcj-reports.php:162
2509
  msgid ""
2510
- "WooJetpack: Understocked products (calculated by sales data). Available in "
2511
- "WooCommerce > Reports > Stock."
2512
  msgstr ""
2513
 
2514
- #: includes/class-wcj-shipping-calculator.php:116
2515
- msgid "Shipping Calculator Options"
2516
  msgstr ""
2517
 
2518
- #: includes/class-wcj-shipping-calculator.php:119
2519
- #: includes/class-wcj-shipping-calculator.php:196
2520
- msgid "Shipping Calculator"
2521
  msgstr ""
2522
 
2523
- #: includes/class-wcj-shipping-calculator.php:121
2524
- msgid "Customize shipping calculator on cart page."
2525
  msgstr ""
2526
 
2527
- #: includes/class-wcj-shipping-calculator.php:128
2528
- msgid "Enable City"
2529
  msgstr ""
2530
 
2531
- #: includes/class-wcj-shipping-calculator.php:136
2532
- msgid "Enable Postcode"
2533
  msgstr ""
2534
 
2535
- #: includes/class-wcj-shipping-calculator.php:144
2536
- msgid "Enable State"
2537
  msgstr ""
2538
 
2539
- #: includes/class-wcj-shipping-calculator.php:152
2540
- msgid "Force Block Open"
2541
  msgstr ""
2542
 
2543
- #: includes/class-wcj-shipping-calculator.php:161
2544
- msgid "Calculate Shipping button"
2545
  msgstr ""
2546
 
2547
- #: includes/class-wcj-shipping-calculator.php:162
2548
- msgid ""
2549
- "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
2550
- "options."
2551
  msgstr ""
2552
 
2553
- #: includes/class-wcj-shipping-calculator.php:168
2554
- msgid "Make non clickable"
2555
  msgstr ""
2556
 
2557
- #: includes/class-wcj-shipping.php:63
2558
- msgid "WooCommerce Jetpack: Hide shipping"
2559
  msgstr ""
2560
 
2561
- #: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
2562
- msgid "Hide local delivery when free is available"
2563
  msgstr ""
2564
 
2565
- #: includes/class-wcj-shipping.php:75 includes/class-wcj-shipping.php:180
2566
- msgid "Hide all when free is available"
2567
  msgstr ""
2568
 
2569
- #: includes/class-wcj-shipping.php:152
2570
- msgid "Shipping Options"
2571
  msgstr ""
2572
 
2573
- #: includes/class-wcj-shipping.php:156
2574
- msgid "Enable the Shipping feature"
2575
  msgstr ""
2576
 
2577
- #: includes/class-wcj-shipping.php:157
2578
- msgid "Hide shipping when free is available."
2579
  msgstr ""
2580
 
2581
- #: includes/class-wcj-shipping.php:165
2582
- msgid "Hide if free is available"
2583
  msgstr ""
2584
 
2585
- #: includes/class-wcj-shipping.php:165
2586
- msgid ""
2587
- "This section lets you hide other shipping options when free shipping is "
2588
- "available on shop frontend."
2589
  msgstr ""
2590
 
2591
- #: includes/class-wcj-shipping.php:169
2592
- msgid "Hide shipping"
2593
  msgstr ""
2594
 
2595
- #: includes/class-wcj-shortcodes.php:61
2596
- msgid "Shortcodes Options"
2597
  msgstr ""
2598
 
2599
- #: includes/class-wcj-shortcodes.php:61 includes/class-wcj-shortcodes.php:66
2600
- msgid "Shortcodes."
2601
  msgstr ""
2602
 
2603
- #: includes/class-wcj-shortcodes.php:64 includes/class-wcj-shortcodes.php:82
2604
- msgid "Shortcodes"
2605
  msgstr ""
2606
 
2607
- #: includes/class-wcj-shortcodes.php:65
2608
- msgid "Enable the Shortcodes feature"
2609
  msgstr ""
2610
 
2611
- #: includes/class-wcj-sorting.php:88
2612
- msgid "WooJetpack: Remove All Sorting"
2613
  msgstr ""
2614
 
2615
- #: includes/class-wcj-sorting.php:92
2616
- msgid "Completely remove sorting from the shop front end"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2617
  msgstr ""
2618
 
2619
- #: includes/class-wcj-sorting.php:198
2620
- msgid "Sorting Options"
2621
  msgstr ""
2622
 
2623
- #: includes/class-wcj-sorting.php:201 includes/class-wcj-sorting.php:306
 
 
 
 
 
 
 
 
 
 
2624
  msgid "Sorting"
2625
  msgstr ""
2626
 
2627
- #: includes/class-wcj-sorting.php:202
2628
- msgid "Enable the Sorting feature"
 
 
 
 
 
2629
  msgstr ""
2630
 
2631
- #: includes/class-wcj-sorting.php:203
2632
- msgid "Add more sorting options or remove all sorting including default."
2633
  msgstr ""
2634
 
2635
- #: includes/class-wcj-sorting.php:211 includes/class-wcj-sorting.php:214
2636
  msgid "Remove All Sorting"
2637
  msgstr ""
2638
 
2639
- #: includes/class-wcj-sorting.php:215
2640
  msgid "Remove all sorting (including WooCommerce default)"
2641
  msgstr ""
2642
 
2643
- #: includes/class-wcj-sorting.php:226 includes/class-wcj-sorting.php:229
2644
  msgid "Add More Sorting"
2645
  msgstr ""
2646
 
2647
- #: includes/class-wcj-sorting.php:237
2648
  msgid "Sort by Name"
2649
  msgstr ""
2650
 
2651
- #: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:241
2652
  msgid "Sort by title: A to Z"
2653
  msgstr ""
2654
 
2655
- #: includes/class-wcj-sorting.php:239 includes/class-wcj-sorting.php:249
2656
- #: includes/class-wcj-sorting.php:259 includes/class-wcj-sorting.php:269
2657
- #: includes/class-wcj-sorting.php:279 includes/class-wcj-sorting.php:289
2658
  msgid "Text to show on frontend. Leave blank to disable."
2659
  msgstr ""
2660
 
2661
- #: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:251
2662
  msgid "Sort by title: Z to A"
2663
  msgstr ""
2664
 
2665
- #: includes/class-wcj-sorting.php:257
2666
  msgid "Sort by SKU"
2667
  msgstr ""
2668
 
2669
- #: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:261
2670
  msgid "Sort by SKU: low to high"
2671
  msgstr ""
2672
 
2673
- #: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:271
2674
  msgid "Sort by SKU: high to low"
2675
  msgstr ""
2676
 
2677
- #: includes/class-wcj-sorting.php:277
 
 
 
 
2678
  msgid "Sort by stock quantity"
2679
  msgstr ""
2680
 
2681
- #: includes/class-wcj-sorting.php:278 includes/class-wcj-sorting.php:281
2682
  msgid "Sort by stock quantity: low to high"
2683
  msgstr ""
2684
 
2685
- #: includes/class-wcj-sorting.php:288 includes/class-wcj-sorting.php:291
2686
  msgid "Sort by stock quantity: high to low"
2687
  msgstr ""
2688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2689
  #: includes/currencies/wcj-currencies.php:4
2690
  msgid "Afghan afghani"
2691
  msgstr ""
@@ -2991,601 +3853,2134 @@ msgstr ""
2991
  msgid "Lao kip"
2992
  msgstr ""
2993
 
2994
- #: includes/currencies/wcj-currencies.php:81
2995
  msgid "Latvian lats"
2996
  msgstr ""
2997
 
2998
- #: includes/currencies/wcj-currencies.php:82
2999
  msgid "Lebanese lira"
3000
  msgstr ""
3001
 
3002
- #: includes/currencies/wcj-currencies.php:83
3003
  msgid "Lesotho loti"
3004
  msgstr ""
3005
 
3006
- #: includes/currencies/wcj-currencies.php:84
3007
  msgid "Liberian dollar"
3008
  msgstr ""
3009
 
3010
- #: includes/currencies/wcj-currencies.php:85
3011
  msgid "Libyan dinar"
3012
  msgstr ""
3013
 
3014
- #: includes/currencies/wcj-currencies.php:86
3015
  msgid "Lithuanian litas"
3016
  msgstr ""
3017
 
3018
- #: includes/currencies/wcj-currencies.php:87
3019
  msgid "Macanese pataca"
3020
  msgstr ""
3021
 
3022
- #: includes/currencies/wcj-currencies.php:88
3023
  msgid "Macedonian denar"
3024
  msgstr ""
3025
 
3026
- #: includes/currencies/wcj-currencies.php:89
3027
  msgid "Malagasy ariary"
3028
  msgstr ""
3029
 
3030
- #: includes/currencies/wcj-currencies.php:90
3031
  msgid "Malaysian ringgit"
3032
  msgstr ""
3033
 
3034
- #: includes/currencies/wcj-currencies.php:91
3035
  msgid "Malawian kwacha"
3036
  msgstr ""
3037
 
3038
- #: includes/currencies/wcj-currencies.php:92
3039
  msgid "Maldivian rufiyaa"
3040
  msgstr ""
3041
 
3042
- #: includes/currencies/wcj-currencies.php:93
3043
  msgid "Mauritanian ouguiya"
3044
  msgstr ""
3045
 
3046
- #: includes/currencies/wcj-currencies.php:94
3047
  msgid "Mauritian rupee"
3048
  msgstr ""
3049
 
3050
- #: includes/currencies/wcj-currencies.php:95
3051
  msgid "Mexican peso"
3052
  msgstr ""
3053
 
3054
- #: includes/currencies/wcj-currencies.php:96
3055
  msgid "Myanma kyat"
3056
  msgstr ""
3057
 
3058
- #: includes/currencies/wcj-currencies.php:97
3059
  msgid "Moldovan leu"
3060
  msgstr ""
3061
 
3062
- #: includes/currencies/wcj-currencies.php:98
3063
  msgid "Mongolian tugrik"
3064
  msgstr ""
3065
 
3066
- #: includes/currencies/wcj-currencies.php:99
3067
  msgid "Moroccan dirham"
3068
  msgstr ""
3069
 
3070
- #: includes/currencies/wcj-currencies.php:100
3071
  msgid "Mozambican metical"
3072
  msgstr ""
3073
 
3074
- #: includes/currencies/wcj-currencies.php:101
3075
  msgid "Namibian dollar"
3076
  msgstr ""
3077
 
3078
- #: includes/currencies/wcj-currencies.php:102
3079
  msgid "Nepalese rupee"
3080
  msgstr ""
3081
 
3082
- #: includes/currencies/wcj-currencies.php:103
3083
  msgid "Netherlands Antillean gulden"
3084
  msgstr ""
3085
 
3086
- #: includes/currencies/wcj-currencies.php:104
3087
  msgid "New Taiwan dollar"
3088
  msgstr ""
3089
 
3090
- #: includes/currencies/wcj-currencies.php:105
3091
  msgid "New Zealand dollar"
3092
  msgstr ""
3093
 
3094
- #: includes/currencies/wcj-currencies.php:106
3095
  msgid "Nicaraguan cordoba"
3096
  msgstr ""
3097
 
3098
- #: includes/currencies/wcj-currencies.php:107
3099
  msgid "Nigerian naira"
3100
  msgstr ""
3101
 
3102
- #: includes/currencies/wcj-currencies.php:108
3103
  msgid "North Korean won"
3104
  msgstr ""
3105
 
3106
- #: includes/currencies/wcj-currencies.php:109
3107
  msgid "Norwegian krone"
3108
  msgstr ""
3109
 
3110
- #: includes/currencies/wcj-currencies.php:110
3111
  msgid "Omani rial"
3112
  msgstr ""
3113
 
3114
- #: includes/currencies/wcj-currencies.php:111
3115
  msgid "Paanga"
3116
  msgstr ""
3117
 
3118
- #: includes/currencies/wcj-currencies.php:112
3119
  msgid "Pakistani rupee"
3120
  msgstr ""
3121
 
3122
- #: includes/currencies/wcj-currencies.php:113
3123
  msgid "Panamanian balboa"
3124
  msgstr ""
3125
 
3126
- #: includes/currencies/wcj-currencies.php:114
3127
  msgid "Papua New Guinean kina"
3128
  msgstr ""
3129
 
3130
- #: includes/currencies/wcj-currencies.php:115
3131
  msgid "Paraguayan guarani"
3132
  msgstr ""
3133
 
3134
- #: includes/currencies/wcj-currencies.php:116
3135
  msgid "Peruvian nuevo sol"
3136
  msgstr ""
3137
 
3138
- #: includes/currencies/wcj-currencies.php:117
3139
  msgid "Philippine peso"
3140
  msgstr ""
3141
 
3142
- #: includes/currencies/wcj-currencies.php:118
3143
  msgid "Polish zloty"
3144
  msgstr ""
3145
 
3146
- #: includes/currencies/wcj-currencies.php:119
3147
  msgid "Qatari riyal"
3148
  msgstr ""
3149
 
3150
- #: includes/currencies/wcj-currencies.php:120
3151
  msgid "Romanian leu"
3152
  msgstr ""
3153
 
3154
- #: includes/currencies/wcj-currencies.php:121
3155
  msgid "Russian ruble"
3156
  msgstr ""
3157
 
3158
- #: includes/currencies/wcj-currencies.php:122
3159
  msgid "Rwandan franc"
3160
  msgstr ""
3161
 
3162
- #: includes/currencies/wcj-currencies.php:123
3163
  msgid "Saint Helena pound"
3164
  msgstr ""
3165
 
3166
- #: includes/currencies/wcj-currencies.php:124
3167
  msgid "Samoan tala"
3168
  msgstr ""
3169
 
3170
- #: includes/currencies/wcj-currencies.php:125
3171
  msgid "Sao Tome and Principe dobra"
3172
  msgstr ""
3173
 
3174
- #: includes/currencies/wcj-currencies.php:126
3175
  msgid "Saudi riyal"
3176
  msgstr ""
3177
 
3178
- #: includes/currencies/wcj-currencies.php:127
3179
  msgid "Seychellois rupee"
3180
  msgstr ""
3181
 
3182
- #: includes/currencies/wcj-currencies.php:128
3183
  msgid "Serbian dinar"
3184
  msgstr ""
3185
 
3186
- #: includes/currencies/wcj-currencies.php:129
3187
  msgid "Sierra Leonean leone"
3188
  msgstr ""
3189
 
3190
- #: includes/currencies/wcj-currencies.php:130
3191
  msgid "Singapore dollar"
3192
  msgstr ""
3193
 
3194
- #: includes/currencies/wcj-currencies.php:131
3195
  msgid "Syrian pound"
3196
  msgstr ""
3197
 
3198
- #: includes/currencies/wcj-currencies.php:132
3199
  msgid "Slovak koruna"
3200
  msgstr ""
3201
 
3202
- #: includes/currencies/wcj-currencies.php:133
3203
  msgid "Solomon Islands dollar"
3204
  msgstr ""
3205
 
3206
- #: includes/currencies/wcj-currencies.php:134
3207
  msgid "Somali shilling"
3208
  msgstr ""
3209
 
3210
- #: includes/currencies/wcj-currencies.php:135
3211
  msgid "South African rand"
3212
  msgstr ""
3213
 
3214
- #: includes/currencies/wcj-currencies.php:136
3215
  msgid "South Korean won"
3216
  msgstr ""
3217
 
3218
- #: includes/currencies/wcj-currencies.php:137
3219
  msgid "Special Drawing Rights"
3220
  msgstr ""
3221
 
3222
- #: includes/currencies/wcj-currencies.php:138
3223
  msgid "Sri Lankan rupee"
3224
  msgstr ""
3225
 
3226
- #: includes/currencies/wcj-currencies.php:139
3227
  msgid "Sudanese pound"
3228
  msgstr ""
3229
 
3230
- #: includes/currencies/wcj-currencies.php:140
3231
  msgid "Surinamese dollar"
3232
  msgstr ""
3233
 
3234
- #: includes/currencies/wcj-currencies.php:141
3235
  msgid "Swazi lilangeni"
3236
  msgstr ""
3237
 
3238
- #: includes/currencies/wcj-currencies.php:142
3239
  msgid "Swedish krona"
3240
  msgstr ""
3241
 
3242
- #: includes/currencies/wcj-currencies.php:143
3243
  msgid "Swiss franc"
3244
  msgstr ""
3245
 
3246
- #: includes/currencies/wcj-currencies.php:144
3247
  msgid "Tajikistani somoni"
3248
  msgstr ""
3249
 
3250
- #: includes/currencies/wcj-currencies.php:145
3251
  msgid "Tanzanian shilling"
3252
  msgstr ""
3253
 
3254
- #: includes/currencies/wcj-currencies.php:146
3255
  msgid "Thai baht"
3256
  msgstr ""
3257
 
3258
- #: includes/currencies/wcj-currencies.php:147
3259
  msgid "Trinidad and Tobago dollar"
3260
  msgstr ""
3261
 
3262
- #: includes/currencies/wcj-currencies.php:148
3263
  msgid "Tunisian dinar"
3264
  msgstr ""
3265
 
3266
- #: includes/currencies/wcj-currencies.php:149
3267
  msgid "Turkish new lira"
3268
  msgstr ""
3269
 
3270
- #: includes/currencies/wcj-currencies.php:150
3271
  msgid "Turkmen manat"
3272
  msgstr ""
3273
 
3274
- #: includes/currencies/wcj-currencies.php:151
3275
  msgid "UAE dirham"
3276
  msgstr ""
3277
 
3278
- #: includes/currencies/wcj-currencies.php:152
3279
  msgid "Ugandan shilling"
3280
  msgstr ""
3281
 
3282
- #: includes/currencies/wcj-currencies.php:153
3283
  msgid "Ukrainian hryvnia"
3284
  msgstr ""
3285
 
3286
- #: includes/currencies/wcj-currencies.php:154
3287
  msgid "United States dollar"
3288
  msgstr ""
3289
 
3290
- #: includes/currencies/wcj-currencies.php:155
3291
  msgid "Uruguayan peso"
3292
  msgstr ""
3293
 
3294
- #: includes/currencies/wcj-currencies.php:156
3295
  msgid "Uzbekistani som"
3296
  msgstr ""
3297
 
3298
- #: includes/currencies/wcj-currencies.php:157
3299
  msgid "Vanuatu vatu"
3300
  msgstr ""
3301
 
3302
- #: includes/currencies/wcj-currencies.php:158
3303
  msgid "Venezuelan bolivar"
3304
  msgstr ""
3305
 
3306
- #: includes/currencies/wcj-currencies.php:159
3307
  msgid "Vietnamese dong"
3308
  msgstr ""
3309
 
3310
- #: includes/currencies/wcj-currencies.php:160
3311
  msgid "West African CFA franc"
3312
  msgstr ""
3313
 
3314
- #: includes/currencies/wcj-currencies.php:161
3315
  msgid "Zambian kwacha"
3316
  msgstr ""
3317
 
3318
- #: includes/currencies/wcj-currencies.php:162
3319
  msgid "Zimbabwean dollar"
3320
  msgstr ""
3321
 
3322
- #: includes/currencies/wcj-currencies.php:163
3323
  msgid "Chinese Yuan"
3324
  msgstr ""
3325
 
3326
- #: includes/gateways/class-wc-gateway-wcj-custom.php:50
3327
- #: includes/shipping/class-wc-shipping-wcj-custom.php:56
3328
- msgid "Enable/Disable"
3329
  msgstr ""
3330
 
3331
- #: includes/gateways/class-wc-gateway-wcj-custom.php:52
3332
- msgid "Enable Custom Payment"
3333
  msgstr ""
3334
 
3335
- #: includes/gateways/class-wc-gateway-wcj-custom.php:58
3336
- #: includes/shipping/class-wc-shipping-wcj-custom.php:64
3337
- msgid "This controls the title which the user sees during checkout."
3338
  msgstr ""
3339
 
3340
- #: includes/gateways/class-wc-gateway-wcj-custom.php:59
3341
- msgid "Custom Payment"
3342
  msgstr ""
3343
 
3344
- #: includes/gateways/class-wc-gateway-wcj-custom.php:65
3345
- msgid "Payment method description that the customer will see on your checkout."
3346
  msgstr ""
3347
 
3348
- #: includes/gateways/class-wc-gateway-wcj-custom.php:66
3349
- msgid "Custom Payment Description."
3350
  msgstr ""
3351
 
3352
- #: includes/gateways/class-wc-gateway-wcj-custom.php:70
3353
- msgid "Instructions"
3354
  msgstr ""
3355
 
3356
- #: includes/gateways/class-wc-gateway-wcj-custom.php:72
3357
- msgid "Instructions that will be added to the thank you page."
3358
  msgstr ""
3359
 
3360
- #: includes/gateways/class-wc-gateway-wcj-custom.php:77
3361
- msgid "Email Instructions"
3362
  msgstr ""
3363
 
3364
- #: includes/gateways/class-wc-gateway-wcj-custom.php:79
3365
- msgid "Instructions that will be added to the emails."
3366
  msgstr ""
3367
 
3368
- #: includes/gateways/class-wc-gateway-wcj-custom.php:84
3369
- msgid "Icon"
3370
  msgstr ""
3371
 
3372
- #: includes/gateways/class-wc-gateway-wcj-custom.php:92
3373
- msgid "Minimum order amount"
3374
  msgstr ""
3375
 
3376
- #: includes/gateways/class-wc-gateway-wcj-custom.php:94
3377
- msgid ""
3378
- "If you want to set minimum order amount to show this gateway on frontend, "
3379
- "enter a number here. Set to 0 to disable."
3380
  msgstr ""
3381
 
3382
- #: includes/gateways/class-wc-gateway-wcj-custom.php:101
3383
- msgid "Enable for shipping methods"
3384
  msgstr ""
3385
 
3386
- #: includes/gateways/class-wc-gateway-wcj-custom.php:106
3387
- msgid ""
3388
- "If gateway is only available for certain shipping methods, set it up here. "
3389
- "Leave blank to enable for all methods."
3390
  msgstr ""
3391
 
3392
- #: includes/gateways/class-wc-gateway-wcj-custom.php:110
3393
- msgid "Select shipping methods"
3394
  msgstr ""
3395
 
3396
- #: includes/gateways/class-wc-gateway-wcj-custom.php:114
3397
- msgid "Enable for virtual orders"
3398
  msgstr ""
3399
 
3400
- #: includes/gateways/class-wc-gateway-wcj-custom.php:115
3401
- msgid "Enable gateway if the order is virtual"
3402
  msgstr ""
3403
 
3404
- #: includes/gateways/class-wc-gateway-wcj-custom.php:298
3405
- msgid "Custom Gateway"
3406
  msgstr ""
3407
 
3408
- #: includes/gateways/class-wc-gateway-wcj-custom.php:299
3409
- msgid "WooCommerce Jetpack: Custom Payment Gateway"
3410
  msgstr ""
3411
 
3412
- #: includes/reports/wcj-class-reports-customers.php:37
3413
- msgid "No customers found."
3414
  msgstr ""
3415
 
3416
- #: includes/reports/wcj-class-reports-customers.php:75
3417
- msgid "Total customers"
3418
  msgstr ""
3419
 
3420
- #: includes/reports/wcj-class-reports-customers.php:79
3421
- msgid "Country Code"
3422
  msgstr ""
3423
 
3424
- #: includes/reports/wcj-class-reports-customers.php:80
3425
- msgid "Customers Count"
3426
  msgstr ""
3427
 
3428
- #: includes/reports/wcj-class-reports-customers.php:81
3429
- msgid "Percent of total"
3430
  msgstr ""
3431
 
3432
- #: includes/reports/wcj-class-reports-stock.php:32
3433
- msgid "All Products on Stock"
3434
  msgstr ""
3435
 
3436
- #: includes/reports/wcj-class-reports-stock.php:33
3437
- msgid "Report shows all products that are on stock and some sales info."
3438
  msgstr ""
3439
 
3440
- #: includes/reports/wcj-class-reports-stock.php:37
3441
- msgid "Understocked"
3442
  msgstr ""
3443
 
3444
- #: includes/reports/wcj-class-reports-stock.php:38
3445
- msgid ""
3446
- "Report shows all products that are low in stock calculated on product's "
3447
- "sales data."
3448
  msgstr ""
3449
 
3450
- #: includes/reports/wcj-class-reports-stock.php:40
3451
- msgid ""
3452
- "Threshold for minimum stock is equal to half of the sales in selected days "
3453
- "range."
3454
  msgstr ""
3455
 
3456
- #: includes/reports/wcj-class-reports-stock.php:277
3457
- msgid "Product"
3458
  msgstr ""
3459
 
3460
- #: includes/reports/wcj-class-reports-stock.php:278
3461
- msgid "Price"
3462
  msgstr ""
3463
 
3464
- #: includes/reports/wcj-class-reports-stock.php:279
3465
- msgid "Stock"
3466
  msgstr ""
3467
 
3468
- #: includes/reports/wcj-class-reports-stock.php:280
3469
- msgid "Stock price"
3470
  msgstr ""
3471
 
3472
- #: includes/reports/wcj-class-reports-stock.php:282
3473
- msgid "Last sale"
3474
  msgstr ""
3475
 
3476
- #: includes/reports/wcj-class-reports-stock.php:283
3477
- msgid "Sales in last %s days"
3478
  msgstr ""
3479
 
3480
- #: includes/reports/wcj-class-reports-stock.php:284
3481
- msgid "Total sales"
3482
  msgstr ""
3483
 
3484
- #: includes/reports/wcj-class-reports-stock.php:287
3485
- msgid "Stock to minimum"
3486
  msgstr ""
3487
 
3488
- #: includes/reports/wcj-class-reports-stock.php:320
3489
- msgid "No sales yet"
3490
  msgstr ""
3491
 
3492
- #: includes/reports/wcj-class-reports-stock.php:345
3493
- msgid "Total current stock value"
3494
  msgstr ""
3495
 
3496
- #: includes/reports/wcj-class-reports-stock.php:346
3497
- msgid "Total stock value"
3498
  msgstr ""
3499
 
3500
- #: includes/reports/wcj-class-reports-stock.php:347
3501
- msgid "Product stock value average"
3502
  msgstr ""
3503
 
3504
- #: includes/reports/wcj-class-reports-stock.php:348
3505
- msgid "Product stock average"
3506
  msgstr ""
3507
 
3508
- #: includes/reports/wcj-class-reports-stock.php:352
3509
- msgid "Report was generated in: "
3510
  msgstr ""
3511
 
3512
- #: includes/shipping/class-wc-shipping-wcj-custom.php:19
3513
- #: includes/shipping/class-wc-shipping-wcj-custom.php:65
3514
- msgid "Custom Shipping"
3515
  msgstr ""
3516
 
3517
- #: includes/shipping/class-wc-shipping-wcj-custom.php:20
3518
- msgid "WooCommerce Jetpack: Custom Shipping Method"
3519
  msgstr ""
3520
 
3521
- #: includes/shipping/class-wc-shipping-wcj-custom.php:58
3522
- msgid "Enable Custom Shipping"
3523
  msgstr ""
3524
 
3525
- #. #-#-#-#-# plugin.pot (WooCommerce Jetpack 2.0.3) #-#-#-#-#
3526
- #. Plugin Name of the plugin/theme
3527
- #: woocommerce-jetpack.php:94
3528
- msgid "WooCommerce Jetpack"
3529
  msgstr ""
3530
 
3531
- #: woocommerce-jetpack.php:94
3532
- msgid "Jetpack Settings"
3533
  msgstr ""
3534
 
3535
- #: woocommerce-jetpack.php:105
3536
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3537
  msgstr ""
3538
 
3539
- #: woocommerce-jetpack.php:106
3540
  msgid "Docs"
3541
  msgstr ""
3542
 
3543
- #: woocommerce-jetpack.php:107
3544
  msgid "Unlock all"
3545
  msgstr ""
3546
 
3547
- #: woocommerce-jetpack.php:120
3548
- msgid "Install WooCommerce Jetpack Plus to unlock all features"
3549
  msgstr ""
3550
 
3551
- #: woocommerce-jetpack.php:121
3552
  msgid ""
3553
  "Some settings fields are locked and you will need %s to modify all locked "
3554
  "fields."
3555
  msgstr ""
3556
 
3557
- #: woocommerce-jetpack.php:122
3558
  msgid "Buy now"
3559
  msgstr ""
3560
 
3561
- #: woocommerce-jetpack.php:122
3562
  msgid "Visit %s"
3563
  msgstr ""
3564
 
3565
- #: woocommerce-jetpack.php:126
3566
  msgid ""
3567
- "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
3568
- "Jetpack Plus</a> to change value."
3569
  msgstr ""
3570
 
3571
- #: woocommerce-jetpack.php:129
3572
  msgid ""
3573
- "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
3574
- "Jetpack Plus</a> to change values below."
3575
  msgstr ""
3576
 
3577
- #: woocommerce-jetpack.php:132
3578
  msgid ""
3579
- "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
3580
- "Jetpack Plus</a> to change values above."
3581
  msgstr ""
3582
 
3583
- #: woocommerce-jetpack.php:135
3584
- msgid "Get WooCommerce Jetpack Plus to change value."
3585
  msgstr ""
3586
 
3587
  #. Plugin URI of the plugin/theme
3588
- msgid "http://woojetpack.com"
3589
  msgstr ""
3590
 
3591
  #. Description of the plugin/theme
1
+ # Copyright (C) 2015 Booster for WooCommerce
2
+ # This file is distributed under the same license as the Booster for WooCommerce package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Booster for WooCommerce 2.2.5\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
+ "jetpack\n"
8
+ "POT-Creation-Date: 2015-08-14 15:27:43+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
16
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:80
17
+ msgid "WooCommerce Jetpack: Custom Add to Cart"
 
 
 
 
18
  msgstr ""
19
 
20
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
21
+ msgid "Single product view"
 
 
 
 
 
 
 
 
22
  msgstr ""
23
 
24
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:92
25
+ msgid "Product category (archive) view"
26
  msgstr ""
27
 
28
+ #: includes/admin/class-wc-settings-jetpack.php:26
29
+ #: includes/admin/class-wc-settings-jetpack.php:223
30
+ msgid "Booster"
31
  msgstr ""
32
 
33
+ #: includes/admin/class-wc-settings-jetpack.php:84
34
+ msgid "Save changes"
 
35
  msgstr ""
36
 
37
+ #: includes/admin/class-wc-settings-jetpack.php:121
38
+ msgid "Alphabetically"
39
  msgstr ""
40
 
41
+ #: includes/admin/class-wc-settings-jetpack.php:122
42
+ msgid "By Category"
 
43
  msgstr ""
44
 
45
+ #: includes/admin/class-wc-settings-jetpack.php:123
46
+ msgid "Active"
47
  msgstr ""
48
 
49
+ #: includes/admin/class-wc-settings-jetpack.php:190
50
+ #: includes/admin/wcj-modules-cats.php:15
51
+ msgid "Dashboard"
52
  msgstr ""
53
 
54
+ #: includes/admin/class-wc-settings-jetpack.php:219
55
+ msgid "WooCommerce"
 
56
  msgstr ""
57
 
58
+ #: includes/admin/class-wc-settings-jetpack.php:221
59
+ #: woocommerce-jetpack.php:197
60
+ msgid "Settings"
61
  msgstr ""
62
 
63
+ #: includes/admin/class-wc-settings-jetpack.php:301
64
+ #: includes/admin/class-wc-settings-jetpack.php:308
65
+ msgid "Select All"
 
 
66
  msgstr ""
67
 
68
+ #: includes/admin/class-wc-settings-jetpack.php:302
69
+ #: includes/admin/class-wc-settings-jetpack.php:309
70
+ msgid "Module"
71
  msgstr ""
72
 
73
+ #: includes/admin/class-wc-settings-jetpack.php:303
74
+ #: includes/admin/class-wc-settings-jetpack.php:310
75
+ #: includes/admin/class-wcj-tools.php:80
76
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:61
77
+ msgid "Description"
78
  msgstr ""
79
 
80
+ #: includes/admin/class-wc-settings-jetpack.php:360
81
+ msgid "Total Modules:"
 
82
  msgstr ""
83
 
84
+ #: includes/admin/class-wc-settings-jetpack.php:388
85
+ msgid "Booster for WooCommerce - Dashboard"
 
86
  msgstr ""
87
 
88
+ #: includes/admin/class-wc-settings-jetpack.php:390
89
+ msgid ""
90
+ "This dashboard lets you enable/disable any Booster's module. Each checkbox "
91
+ "comes with short module's description. Please visit <a href=\"http://"
92
+ "boostwoo.com\" target=\"_blank\">BoostWoo.com</a> for detailed info on each "
93
+ "feature."
94
  msgstr ""
95
 
96
+ #: includes/admin/class-wcj-tools.php:32
97
+ msgid "Booster for WooCommerce Tools"
 
98
  msgstr ""
99
 
100
+ #: includes/admin/class-wcj-tools.php:32
101
+ msgid "Booster Tools"
 
102
  msgstr ""
103
 
104
+ #: includes/admin/class-wcj-tools.php:45
105
+ msgid "Tools Dashboard"
 
 
 
106
  msgstr ""
107
 
108
+ #: includes/admin/class-wcj-tools.php:74
109
+ msgid "Booster for WooCommerce Tools - Dashboard"
110
  msgstr ""
111
 
112
+ #: includes/admin/class-wcj-tools.php:75
113
  msgid ""
114
+ "This dashboard lets you check statuses and short descriptions of all "
115
+ "available Booster for WooCommerce tools. Tools can be enabled through "
116
+ "WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
117
+ "above."
118
  msgstr ""
119
 
120
+ #: includes/admin/class-wcj-tools.php:78
121
+ msgid "Tool"
122
  msgstr ""
123
 
124
+ #: includes/admin/class-wcj-tools.php:79
125
+ msgid "Status"
126
  msgstr ""
127
 
128
+ #: includes/admin/wcj-modules-cats.php:25
129
+ msgid "Prices & Currencies"
 
 
 
 
130
  msgstr ""
131
 
132
+ #: includes/admin/wcj-modules-cats.php:37
133
+ msgid "Button & Price Labels"
134
  msgstr ""
135
 
136
+ #: includes/admin/wcj-modules-cats.php:48
137
+ msgid "Products"
138
  msgstr ""
139
 
140
+ #: includes/admin/wcj-modules-cats.php:65
141
+ msgid "Cart & Checkout"
142
  msgstr ""
143
 
144
+ #: includes/admin/wcj-modules-cats.php:82
145
+ msgid "Shipping & Orders"
 
146
  msgstr ""
147
 
148
+ #: includes/admin/wcj-modules-cats.php:95
149
+ msgid "PDF Invoicing & Packing Slips"
 
 
150
  msgstr ""
151
 
152
+ #: includes/admin/wcj-modules-cats.php:111
153
+ msgid "Emails & Misc."
154
  msgstr ""
155
 
156
+ #: includes/class-wcj-add-to-cart.php:51
157
+ msgid "Per Product Type Options"
158
  msgstr ""
159
 
160
+ #: includes/class-wcj-add-to-cart.php:54
161
+ #: includes/class-wcj-add-to-cart.php:195
162
+ msgid "Per Product Labels"
 
 
163
  msgstr ""
164
 
165
+ #: includes/class-wcj-add-to-cart.php:55
166
+ #: includes/class-wcj-add-to-cart.php:196
167
+ #: includes/class-wcj-add-to-cart.php:220
168
+ #: includes/class-wcj-product-images.php:115
169
+ #: includes/class-wcj-product-images.php:165
170
+ msgid "Enable Section"
171
  msgstr ""
172
 
173
+ #: includes/class-wcj-add-to-cart.php:65
174
+ msgid "Simple product"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  msgstr ""
176
 
177
+ #: includes/class-wcj-add-to-cart.php:70
178
+ msgid "Variable product"
179
  msgstr ""
180
 
181
+ #: includes/class-wcj-add-to-cart.php:75
182
+ msgid "External product"
183
  msgstr ""
184
 
185
+ #: includes/class-wcj-add-to-cart.php:80
186
+ msgid "Grouped product"
187
  msgstr ""
188
 
189
+ #: includes/class-wcj-add-to-cart.php:85
190
+ msgid "Other product"
191
  msgstr ""
192
 
193
+ #: includes/class-wcj-add-to-cart.php:96
194
+ msgid "Single product view."
195
  msgstr ""
196
 
197
+ #: includes/class-wcj-add-to-cart.php:97
198
+ #: includes/class-wcj-add-to-cart.php:108
199
+ #: includes/class-wcj-add-to-cart.php:154
200
+ #: includes/class-wcj-add-to-cart.php:167
201
+ #: includes/class-wcj-payment-gateways-fees.php:149
202
+ msgid "Leave blank to disable."
203
  msgstr ""
204
 
205
+ #: includes/class-wcj-add-to-cart.php:97
206
+ #: includes/class-wcj-add-to-cart.php:108
207
+ #: includes/class-wcj-add-to-cart.php:156
208
+ #: includes/class-wcj-add-to-cart.php:169 includes/class-wcj-sorting.php:213
209
+ #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:233
210
+ #: includes/class-wcj-sorting.php:243 includes/class-wcj-sorting.php:264
211
+ #: includes/class-wcj-sorting.php:274
212
+ msgid "Default: "
213
  msgstr ""
214
 
215
+ #: includes/class-wcj-add-to-cart.php:107
216
+ msgid "Product category (archive) view."
217
  msgstr ""
218
 
219
+ #: includes/class-wcj-add-to-cart.php:119
220
+ msgid "Products with price set to 0 (i.e. free). Single product view."
221
  msgstr ""
222
 
223
+ #: includes/class-wcj-add-to-cart.php:120
224
+ #: includes/class-wcj-add-to-cart.php:129
225
+ msgid "Leave blank to disable. Default: Add to cart"
226
  msgstr ""
227
 
228
+ #: includes/class-wcj-add-to-cart.php:122
229
+ #: includes/class-wcj-add-to-cart.php:131
230
+ #: includes/class-wcj-add-to-cart.php:156
231
+ #: includes/class-wcj-add-to-cart.php:157
232
+ #: includes/class-wcj-add-to-cart.php:169
233
+ #: includes/class-wcj-add-to-cart.php:170
234
+ msgid "Add to cart"
235
  msgstr ""
236
 
237
+ #: includes/class-wcj-add-to-cart.php:128
238
  msgid ""
239
+ "Products with price set to 0 (i.e. free). Product category (archive) view."
 
240
  msgstr ""
241
 
242
+ #: includes/class-wcj-add-to-cart.php:138
243
+ msgid "Products with empty price. Product category (archive) view."
 
244
  msgstr ""
245
 
246
+ #: includes/class-wcj-add-to-cart.php:139
247
+ msgid "Leave blank to disable. Default: Read More"
248
  msgstr ""
249
 
250
+ #: includes/class-wcj-add-to-cart.php:141
251
+ msgid "Read More"
252
  msgstr ""
253
 
254
  #: includes/class-wcj-add-to-cart.php:153
255
+ msgid "Already in cart. Single product view."
 
256
  msgstr ""
257
 
258
+ #: includes/class-wcj-add-to-cart.php:155
259
+ #: includes/class-wcj-add-to-cart.php:168
260
+ msgid "Try: "
261
  msgstr ""
262
 
263
  #: includes/class-wcj-add-to-cart.php:155
264
+ #: includes/class-wcj-add-to-cart.php:168
265
+ msgid "Already in cart - Add Again?"
266
+ msgstr ""
267
+
268
+ #: includes/class-wcj-add-to-cart.php:166
269
+ msgid "Already in cart. Product category (archive) view."
270
+ msgstr ""
271
+
272
+ #: includes/class-wcj-add-to-cart.php:189
273
+ msgid "Per Product Options"
274
+ msgstr ""
275
+
276
+ #: includes/class-wcj-add-to-cart.php:191
277
  msgid ""
278
+ "This section lets you set Add to Cart button text on per product basis. When "
279
+ "enabled, label for each product can be changed in \"Edit Product\"."
 
280
  msgstr ""
281
 
282
+ #: includes/class-wcj-add-to-cart.php:216
283
+ msgid "Per Category Options"
284
  msgstr ""
285
 
286
+ #: includes/class-wcj-add-to-cart.php:216
287
  msgid ""
288
+ "This sections lets you set Add to Cart button text on per category basis."
 
 
289
  msgstr ""
290
 
291
+ #: includes/class-wcj-add-to-cart.php:219
292
+ msgid "Per Category Labels"
293
  msgstr ""
294
 
295
+ #: includes/class-wcj-add-to-cart.php:228
296
+ msgid "Category Groups Number"
297
  msgstr ""
298
 
299
+ #: includes/class-wcj-add-to-cart.php:229
300
+ #: includes/class-wcj-checkout-custom-fields.php:321
301
+ #: includes/class-wcj-product-input-fields.php:193
302
+ #: includes/class-wcj-product-tabs.php:327
303
+ msgid "Click \"Save changes\" after you change this number."
304
  msgstr ""
305
 
306
+ #: includes/class-wcj-add-to-cart.php:266
307
+ #: includes/class-wcj-price-by-country.php:132
308
+ #: includes/class-wcj-price-by-country.php:198
309
+ msgid "Group"
310
  msgstr ""
311
 
312
+ #: includes/class-wcj-add-to-cart.php:267
313
+ #: includes/class-wcj-admin-tools.php:109
314
+ #: includes/class-wcj-admin-tools.php:117
315
+ #: includes/class-wcj-checkout-custom-fields.php:297
316
+ #: includes/class-wcj-checkout-custom-fields.php:305
317
+ #: includes/class-wcj-general.php:74 includes/class-wcj-order-numbers.php:176
318
+ #: includes/class-wcj-orders.php:245
319
+ #: includes/class-wcj-price-by-country.php:105
320
+ #: includes/class-wcj-price-labels.php:632
321
+ #: includes/class-wcj-product-add-to-cart.php:56
322
+ #: includes/class-wcj-product-add-to-cart.php:78
323
+ #: includes/class-wcj-product-info.php:618
324
+ #: includes/class-wcj-product-info.php:737
325
+ #: includes/class-wcj-product-info.php:774
326
+ #: includes/class-wcj-product-input-fields.php:152
327
+ #: includes/class-wcj-product-input-fields.php:184
328
+ #: includes/class-wcj-product-input-fields.php:230
329
+ #: includes/class-wcj-shipping-calculator.php:129
330
+ #: includes/class-wcj-shipping-calculator.php:137
331
+ #: includes/class-wcj-shipping-calculator.php:145
332
+ #: includes/class-wcj-shipping-calculator.php:153
333
+ #: includes/class-wcj-sorting.php:205
334
+ #: includes/class-wcj-wholesale-price.php:159
335
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:177
336
+ msgid "Enable"
337
  msgstr ""
338
 
339
+ #: includes/class-wcj-add-to-cart.php:283
340
+ #: includes/class-wcj-checkout-custom-fields.php:460
341
+ msgid "categories"
342
  msgstr ""
343
 
344
+ #: includes/class-wcj-add-to-cart.php:294
345
+ msgid "Button text - single product view"
346
  msgstr ""
347
 
348
+ #: includes/class-wcj-add-to-cart.php:302
349
+ msgid "Button text - product archive (category) view"
350
  msgstr ""
351
 
352
+ #: includes/class-wcj-add-to-cart.php:327
353
+ msgid "Add to Cart Options"
354
  msgstr ""
355
 
356
+ #: includes/class-wcj-add-to-cart.php:330
357
+ #: includes/class-wcj-add-to-cart.php:354
358
+ msgid "Add to Cart Labels"
359
  msgstr ""
360
 
361
+ #: includes/class-wcj-add-to-cart.php:331
362
+ #: includes/class-wcj-call-for-price.php:89
363
+ #: includes/class-wcj-checkout-core-fields.php:165
364
+ #: includes/class-wcj-checkout-custom-fields.php:288
365
+ #: includes/class-wcj-currencies.php:113
366
+ #: includes/class-wcj-currency-external-products.php:72
367
+ #: includes/class-wcj-emails.php:131 includes/class-wcj-old-slugs.php:95
368
+ #: includes/class-wcj-order-numbers.php:167
369
+ #: includes/class-wcj-pdf-invoices.php:926
370
+ #: includes/class-wcj-pdf-invoicing.php:147
371
+ #: includes/class-wcj-price-by-country.php:69
372
+ #: includes/class-wcj-price-labels.php:535
373
+ #: includes/class-wcj-product-bulk-price-converter.php:262
374
+ #: includes/class-wcj-product-info.php:709
375
+ #: includes/class-wcj-product-input-fields.php:132
376
+ #: includes/class-wcj-product-listings.php:60
377
+ #: includes/class-wcj-product-tabs.php:314 includes/class-wcj-reports.php:278
378
+ #: includes/class-wcj-shipping-calculator.php:120
379
+ #: includes/class-wcj-shipping.php:156
380
+ #: includes/classes/class-wcj-module.php:170
381
+ msgid "Enable Module"
382
  msgstr ""
383
 
384
+ #: includes/class-wcj-add-to-cart.php:332
385
+ msgid ""
386
+ "Change text for Add to Cart button by WooCommerce product type, by product "
387
+ "category or for individual products."
388
  msgstr ""
389
 
390
+ #: includes/class-wcj-address-formats.php:24
391
+ msgid "Address Formats"
 
 
 
 
392
  msgstr ""
393
 
394
+ #: includes/class-wcj-address-formats.php:25
395
+ msgid ""
396
+ "Set address format in WooCommerce orders on per country basis. Force base "
397
+ "country display."
 
 
 
 
398
  msgstr ""
399
 
400
+ #: includes/class-wcj-address-formats.php:125
401
+ #: includes/class-wcj-address-formats.php:131
402
+ msgid "Force Base Country Display"
403
  msgstr ""
404
 
405
+ #: includes/class-wcj-address-formats.php:127
406
+ msgid "Force Base Country Display Options."
407
  msgstr ""
408
 
409
+ #: includes/class-wcj-address-formats.php:143
410
+ msgid "Address Formats by Country"
 
411
  msgstr ""
412
 
413
+ #: includes/class-wcj-address-formats.php:145
414
+ msgid "Address Formats by Country Options."
 
 
 
 
 
415
  msgstr ""
416
 
417
+ #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:29
418
+ #: includes/class-wcj-admin-tools.php:48
419
+ msgid "Admin Tools"
420
  msgstr ""
421
 
422
+ #: includes/class-wcj-admin-tools.php:26
423
+ msgid "Booster for WooCommerce debug and log tools."
424
  msgstr ""
425
 
426
+ #: includes/class-wcj-admin-tools.php:45
427
+ #: includes/class-wcj-checkout-custom-fields.php:351
428
+ #: includes/class-wcj-old-slugs.php:49
429
+ #: includes/class-wcj-order-custom-statuses.php:135
430
+ #: includes/class-wcj-order-numbers.php:66
431
+ #: includes/class-wcj-price-labels.php:114
432
+ #: includes/class-wcj-product-bulk-price-converter.php:228
433
+ #: includes/class-wcj-sku.php:193
434
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:32
435
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:33
436
+ msgid "enabled"
437
  msgstr ""
438
 
439
+ #: includes/class-wcj-admin-tools.php:47 includes/class-wcj-old-slugs.php:51
440
+ #: includes/class-wcj-order-custom-statuses.php:136
441
+ #: includes/class-wcj-order-numbers.php:68
442
+ #: includes/class-wcj-price-labels.php:116
443
+ #: includes/class-wcj-product-bulk-price-converter.php:230
444
+ #: includes/class-wcj-sku.php:195
445
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:34
446
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:35
447
+ msgid "disabled"
448
  msgstr ""
449
 
450
+ #: includes/class-wcj-admin-tools.php:50
451
+ msgid "Log."
452
  msgstr ""
453
 
454
+ #: includes/class-wcj-admin-tools.php:60
455
+ msgid "Log"
 
456
  msgstr ""
457
 
458
+ #: includes/class-wcj-admin-tools.php:75
459
+ msgid "Log deleted successfully."
 
460
  msgstr ""
461
 
462
+ #: includes/class-wcj-admin-tools.php:81
463
+ msgid "Delete Log"
464
+ msgstr ""
465
+
466
+ #: includes/class-wcj-admin-tools.php:105
467
+ msgid "Admin Tools Options"
468
+ msgstr ""
469
+
470
+ #: includes/class-wcj-admin-tools.php:108
471
+ msgid "Logging"
472
+ msgstr ""
473
+
474
+ #: includes/class-wcj-admin-tools.php:116
475
+ msgid "Debug"
476
  msgstr ""
477
 
478
+ #: includes/class-wcj-call-for-price.php:81
479
  msgid "Call for Price Options"
480
  msgstr ""
481
 
482
+ #: includes/class-wcj-call-for-price.php:83
483
  msgid ""
484
  "Leave price empty when adding or editing products. Then set the options here."
485
  msgstr ""
486
 
487
+ #: includes/class-wcj-call-for-price.php:88
488
+ #: includes/class-wcj-call-for-price.php:175
489
  msgid "Call for Price"
490
  msgstr ""
491
 
492
+ #: includes/class-wcj-call-for-price.php:90
493
+ msgid ""
494
+ "Create any custom price label for all WooCommerce products with empty price."
 
 
 
495
  msgstr ""
496
 
497
+ #: includes/class-wcj-call-for-price.php:97
498
  msgid "Label to Show on Single"
499
  msgstr ""
500
 
501
+ #: includes/class-wcj-call-for-price.php:98
502
+ #: includes/class-wcj-call-for-price.php:110
503
+ #: includes/class-wcj-call-for-price.php:122
504
+ #: includes/class-wcj-call-for-price.php:134
505
  msgid "This sets the html to output on empty price. Leave blank to disable."
506
  msgstr ""
507
 
508
+ #: includes/class-wcj-call-for-price.php:109
509
  msgid "Label to Show on Archives"
510
  msgstr ""
511
 
512
+ #: includes/class-wcj-call-for-price.php:121
513
  msgid "Label to Show on Homepage"
514
  msgstr ""
515
 
516
+ #: includes/class-wcj-call-for-price.php:133
517
  msgid "Label to Show on Related"
518
  msgstr ""
519
 
520
+ #: includes/class-wcj-call-for-price.php:145
521
  msgid "Hide Sale! Tag"
522
  msgstr ""
523
 
524
+ #: includes/class-wcj-call-for-price.php:146
525
  msgid "Hide the tag"
526
  msgstr ""
527
 
528
+ #: includes/class-wcj-cart.php:23
529
+ msgid "Cart"
530
  msgstr ""
531
 
532
+ #: includes/class-wcj-cart.php:24
533
+ msgid "Add custom info to WooCommerce cart page. Add empty cart button."
534
  msgstr ""
535
 
536
+ #: includes/class-wcj-cart.php:83
537
+ msgid "Cart Custom Info Blocks"
538
  msgstr ""
539
 
540
+ #: includes/class-wcj-cart.php:86
541
+ #: includes/class-wcj-checkout-custom-info.php:51
542
+ #: includes/class-wcj-mini-cart.php:48
543
+ msgid "Total Blocks"
544
  msgstr ""
545
 
546
+ #: includes/class-wcj-cart.php:103
547
+ #: includes/class-wcj-checkout-custom-info.php:68
548
+ #: includes/class-wcj-mini-cart.php:66
549
+ msgid "Info Block"
550
+ msgstr ""
551
+
552
+ #: includes/class-wcj-cart.php:106
553
+ #: includes/class-wcj-checkout-custom-info.php:71
554
+ #: includes/class-wcj-mini-cart.php:69 includes/class-wcj-product-tabs.php:248
555
+ #: includes/class-wcj-product-tabs.php:357
556
+ msgid "Content"
557
  msgstr ""
558
 
559
+ #: includes/class-wcj-cart.php:114
560
+ #: includes/class-wcj-checkout-custom-info.php:79
561
+ #: includes/class-wcj-mini-cart.php:78 includes/class-wcj-product-info.php:626
562
+ #: includes/class-wcj-product-info.php:754
563
+ #: includes/class-wcj-product-info.php:794
564
+ msgid "Position"
565
  msgstr ""
566
 
567
+ #: includes/class-wcj-cart.php:120
568
+ msgid "Before cart"
569
  msgstr ""
570
 
571
+ #: includes/class-wcj-cart.php:121
572
+ msgid "Before cart table"
573
  msgstr ""
574
 
575
+ #: includes/class-wcj-cart.php:122
576
+ msgid "Before cart contents"
577
  msgstr ""
578
 
579
+ #: includes/class-wcj-cart.php:123
580
+ msgid "Cart contents"
581
  msgstr ""
582
 
583
+ #: includes/class-wcj-cart.php:124
584
+ msgid "Cart coupon"
585
  msgstr ""
586
 
587
+ #: includes/class-wcj-cart.php:125
588
+ msgid "Cart actions"
589
  msgstr ""
590
 
591
+ #: includes/class-wcj-cart.php:126
592
+ msgid "After cart contents"
593
  msgstr ""
594
 
595
+ #: includes/class-wcj-cart.php:127
596
+ msgid "After cart table"
597
+ msgstr ""
598
+
599
+ #: includes/class-wcj-cart.php:128
600
+ msgid "Cart collaterals"
601
+ msgstr ""
602
+
603
+ #: includes/class-wcj-cart.php:129
604
+ msgid "After cart"
605
  msgstr ""
606
 
607
+ #: includes/class-wcj-cart.php:131
608
+ msgid "Before cart totals"
609
+ msgstr ""
610
+
611
+ #: includes/class-wcj-cart.php:132
612
+ msgid "Cart totals: Before shipping"
613
+ msgstr ""
614
+
615
+ #: includes/class-wcj-cart.php:133
616
+ msgid "Cart totals: After shipping"
617
+ msgstr ""
618
+
619
+ #: includes/class-wcj-cart.php:134
620
+ msgid "Cart totals: Before order total"
621
+ msgstr ""
622
+
623
+ #: includes/class-wcj-cart.php:135
624
+ msgid "Cart totals: After order total"
625
+ msgstr ""
626
+
627
+ #: includes/class-wcj-cart.php:136
628
+ msgid "Proceed to checkout"
629
+ msgstr ""
630
+
631
+ #: includes/class-wcj-cart.php:137
632
+ msgid "After cart totals"
633
+ msgstr ""
634
+
635
+ #: includes/class-wcj-cart.php:139
636
+ msgid "Before shipping calculator"
637
+ msgstr ""
638
+
639
+ #: includes/class-wcj-cart.php:140
640
+ msgid "After shipping calculator"
641
+ msgstr ""
642
+
643
+ #: includes/class-wcj-cart.php:142
644
+ msgid "If cart is empty"
645
+ msgstr ""
646
+
647
+ #: includes/class-wcj-cart.php:148 includes/class-wcj-mini-cart.php:92
648
+ #: includes/class-wcj-product-tabs.php:243
649
+ msgid "Priority"
650
+ msgstr ""
651
+
652
+ #: includes/class-wcj-checkout-core-fields.php:161
653
+ msgid "Checkout Core Fields Options"
654
+ msgstr ""
655
+
656
+ #: includes/class-wcj-checkout-core-fields.php:164
657
+ #: includes/class-wcj-checkout-core-fields.php:282
658
+ msgid "Checkout Core Fields"
659
+ msgstr ""
660
+
661
+ #: includes/class-wcj-checkout-core-fields.php:166
662
  msgid ""
663
+ "Customize WooCommerce core checkout fields. Disable/enable fields, set "
664
+ "required, change labels and/or placeholders."
 
665
  msgstr ""
666
 
667
+ #: includes/class-wcj-checkout-core-fields.php:244
668
+ msgid "Leave blank for WooCommerce defaults."
669
+ msgstr ""
670
+
671
+ #: includes/class-wcj-checkout-custom-fields.php:280
672
  msgid "Checkout Custom Fields Options"
673
  msgstr ""
674
 
675
+ #: includes/class-wcj-checkout-custom-fields.php:287
676
+ #: includes/class-wcj-checkout-custom-fields.php:492
677
+ msgid "Checkout Custom Fields"
678
  msgstr ""
679
 
680
+ #: includes/class-wcj-checkout-custom-fields.php:289
681
+ msgid "Add custom fields to WooCommerce checkout page."
 
682
  msgstr ""
683
 
684
+ #: includes/class-wcj-checkout-custom-fields.php:296
685
+ msgid "Add All Fields to Admin Emails"
686
  msgstr ""
687
 
688
+ #: includes/class-wcj-checkout-custom-fields.php:304
689
+ msgid "Add All Fields to Customers Emails"
690
  msgstr ""
691
 
692
+ #: includes/class-wcj-checkout-custom-fields.php:314
693
+ msgid "The Fields"
694
  msgstr ""
695
 
696
+ #: includes/class-wcj-checkout-custom-fields.php:320
697
+ msgid "Custom Fields Number"
698
  msgstr ""
699
 
700
+ #: includes/class-wcj-checkout-custom-fields.php:350
701
+ msgid "Custom Field"
 
 
702
  msgstr ""
703
 
704
+ #: includes/class-wcj-checkout-custom-fields.php:358
705
  msgid "type"
706
  msgstr ""
707
 
708
+ #: includes/class-wcj-checkout-custom-fields.php:363
709
+ #: includes/class-wcj-more-button-labels.php:49
710
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
711
  msgid "Text"
712
  msgstr ""
713
 
714
+ #: includes/class-wcj-checkout-custom-fields.php:364
715
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:45
716
  msgid "Textarea"
717
  msgstr ""
718
 
719
+ #: includes/class-wcj-checkout-custom-fields.php:366
720
  msgid "Datepicker"
721
  msgstr ""
722
 
723
+ #: includes/class-wcj-checkout-custom-fields.php:367
724
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:47
725
  msgid "Checkbox"
726
  msgstr ""
727
 
728
+ #: includes/class-wcj-checkout-custom-fields.php:369
729
  msgid "Password"
730
  msgstr ""
731
 
732
+ #: includes/class-wcj-checkout-custom-fields.php:375
733
  msgid "required"
734
  msgstr ""
735
 
736
+ #: includes/class-wcj-checkout-custom-fields.php:382
737
  msgid "label"
738
  msgstr ""
739
 
740
+ #: includes/class-wcj-checkout-custom-fields.php:404
741
  msgid "placeholder"
742
  msgstr ""
743
 
744
+ #: includes/class-wcj-checkout-custom-fields.php:413
745
  msgid "section"
746
  msgstr ""
747
 
748
+ #: includes/class-wcj-checkout-custom-fields.php:418
749
+ #: includes/class-wcj-checkout-custom-info.php:86
750
  msgid "Billing"
751
  msgstr ""
752
 
753
+ #: includes/class-wcj-checkout-custom-fields.php:419
754
+ #: includes/class-wcj-checkout-custom-info.php:87
755
+ #: includes/class-wcj-pdf-invoices.php:1255
756
+ #: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
757
+ msgid "Shipping"
758
+ msgstr ""
759
+
760
+ #: includes/class-wcj-checkout-custom-fields.php:420
761
  msgid "Order Notes"
762
  msgstr ""
763
 
764
+ #: includes/class-wcj-checkout-custom-fields.php:421
765
  msgid "Account"
766
  msgstr ""
767
 
768
+ #: includes/class-wcj-checkout-custom-fields.php:428
769
  msgid "class"
770
  msgstr ""
771
 
772
+ #: includes/class-wcj-checkout-custom-fields.php:433
773
  msgid "Wide"
774
  msgstr ""
775
 
776
+ #: includes/class-wcj-checkout-custom-fields.php:434
777
  msgid "First"
778
  msgstr ""
779
 
780
+ #: includes/class-wcj-checkout-custom-fields.php:435
781
  msgid "Last"
782
  msgstr ""
783
 
784
+ #: includes/class-wcj-checkout-custom-fields.php:442
785
+ msgid "clear"
786
  msgstr ""
787
 
788
+ #: includes/class-wcj-checkout-custom-info.php:24
789
+ msgid "Checkout Custom Info"
790
  msgstr ""
791
 
792
+ #: includes/class-wcj-checkout-custom-info.php:25
793
+ msgid "Add custom info to WooCommerce checkout page."
 
 
794
  msgstr ""
795
 
796
+ #: includes/class-wcj-checkout-custom-info.php:48
797
+ msgid "Checkout Custom Info Blocks"
798
  msgstr ""
799
 
800
+ #: includes/class-wcj-checkout-custom-info.php:84
801
+ msgid "Before checkout form"
802
  msgstr ""
803
 
804
+ #: includes/class-wcj-checkout-custom-info.php:85
805
+ msgid "Before customer details"
806
  msgstr ""
807
 
808
+ #: includes/class-wcj-checkout-custom-info.php:88
809
+ msgid "After customer details"
810
  msgstr ""
811
 
812
+ #: includes/class-wcj-checkout-custom-info.php:89
813
+ msgid "Before order review"
 
 
814
  msgstr ""
815
 
816
+ #: includes/class-wcj-checkout-custom-info.php:90
817
+ msgid "Order review"
818
+ msgstr ""
819
+
820
+ #: includes/class-wcj-checkout-custom-info.php:91
821
+ msgid "After order review"
822
+ msgstr ""
823
+
824
+ #: includes/class-wcj-checkout-custom-info.php:92
825
+ msgid "After checkout form"
826
+ msgstr ""
827
+
828
+ #: includes/class-wcj-checkout-custom-info.php:115
829
+ msgid "Order (i.e. Priority)"
830
  msgstr ""
831
 
832
+ #: includes/class-wcj-currencies.php:75
833
  #: includes/class-wcj-currency-external-products.php:80
834
  msgid "Currency Symbol"
835
  msgstr ""
836
 
837
+ #: includes/class-wcj-currencies.php:76
838
  msgid "This sets the currency symbol."
839
  msgstr ""
840
 
841
+ #: includes/class-wcj-currencies.php:109
842
  msgid "Currencies Options"
843
  msgstr ""
844
 
845
+ #: includes/class-wcj-currencies.php:112 includes/class-wcj-currencies.php:154
846
+ msgid "Currencies"
847
  msgstr ""
848
 
849
+ #: includes/class-wcj-currencies.php:114
850
+ msgid ""
851
+ "Add all world currencies to your WooCommerce store; change currency symbol."
852
  msgstr ""
853
 
854
+ #: includes/class-wcj-currencies.php:122
855
  msgid "Currency Symbol Options"
856
  msgstr ""
857
 
858
+ #: includes/class-wcj-currencies.php:125
859
  msgid "Hide Currency Symbol"
860
  msgstr ""
861
 
862
+ #: includes/class-wcj-currencies.php:126
863
+ #: includes/class-wcj-product-images.php:123
864
+ #: includes/class-wcj-product-images.php:131
865
+ #: includes/class-wcj-product-images.php:139
866
+ #: includes/class-wcj-product-images.php:147
867
+ #: includes/class-wcj-related-products.php:132
868
  #: includes/class-wcj-shipping-calculator.php:167
869
  msgid "Hide"
870
  msgstr ""
871
 
872
+ #: includes/class-wcj-currencies.php:127
873
  msgid "Default: no."
874
  msgstr ""
875
 
882
  msgid "Currency for External Products"
883
  msgstr ""
884
 
 
 
 
 
885
  #: includes/class-wcj-currency-external-products.php:73
886
+ msgid "Set different currency for external WooCommerce products."
887
  msgstr ""
888
 
889
  #: includes/class-wcj-currency-external-products.php:81
891
  msgid "Set currency symbol for all external products."
892
  msgstr ""
893
 
894
+ #: includes/class-wcj-emails.php:69
895
  msgid "WooCommerce Jetpack: Email Forwarding Options"
896
  msgstr ""
897
 
898
+ #: includes/class-wcj-emails.php:69 includes/class-wcj-emails.php:148
899
  msgid ""
900
  "This section lets you add another email recipient(s) to all WooCommerce "
901
  "emails. Leave blank to disable."
902
  msgstr ""
903
 
904
+ #: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:151
905
  msgid "Cc Email"
906
  msgstr ""
907
 
908
+ #: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:153
909
  msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
910
  msgstr ""
911
 
912
+ #: includes/class-wcj-emails.php:85 includes/class-wcj-emails.php:162
913
  msgid "Bcc Email"
914
  msgstr ""
915
 
916
+ #: includes/class-wcj-emails.php:87 includes/class-wcj-emails.php:164
917
  msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
918
  msgstr ""
919
 
920
+ #: includes/class-wcj-emails.php:127
921
  msgid "Emails Options"
922
  msgstr ""
923
 
924
+ #: includes/class-wcj-emails.php:130 includes/class-wcj-emails.php:182
925
+ msgid "Emails"
926
  msgstr ""
927
 
928
+ #: includes/class-wcj-emails.php:132
929
  msgid "Add another email recipient(s) to all WooCommerce emails."
930
  msgstr ""
931
 
932
+ #: includes/class-wcj-emails.php:148
933
  msgid "Email Forwarding Options"
934
  msgstr ""
935
 
936
+ #: includes/class-wcj-empty-cart-button.php:24
937
+ msgid "Empty Cart Button"
938
  msgstr ""
939
 
940
+ #: includes/class-wcj-empty-cart-button.php:25
941
+ msgid "Add and customize \"Empty Cart\" button to cart page."
942
  msgstr ""
943
 
944
+ #: includes/class-wcj-empty-cart-button.php:96
945
+ msgid "Empty Cart Options"
946
  msgstr ""
947
 
948
+ #: includes/class-wcj-empty-cart-button.php:96
949
+ msgid ""
950
+ "This section lets you add and customize \"Empty Cart\" button to cart page."
951
  msgstr ""
952
 
953
+ #: includes/class-wcj-empty-cart-button.php:107
954
+ msgid "Empty Cart Button Text"
955
  msgstr ""
956
 
957
+ #: includes/class-wcj-empty-cart-button.php:117
958
+ msgid "Wrapping DIV style"
959
  msgstr ""
960
 
961
+ #: includes/class-wcj-empty-cart-button.php:118
962
+ msgid "Style for the button's div. Default is \"float: right;\""
963
  msgstr ""
964
 
965
+ #: includes/class-wcj-empty-cart-button.php:128
966
+ msgid "Button position on the Cart page"
967
  msgstr ""
968
 
969
+ #: includes/class-wcj-empty-cart-button.php:133
970
+ msgid "After Cart"
 
971
  msgstr ""
972
 
973
+ #: includes/class-wcj-empty-cart-button.php:134
974
+ msgid "Before Cart"
975
  msgstr ""
976
 
977
+ #: includes/class-wcj-empty-cart-button.php:135
978
+ msgid "After Proceed to Checkout button"
979
  msgstr ""
980
 
981
+ #: includes/class-wcj-empty-cart-button.php:136
982
+ msgid "After Cart Totals"
983
  msgstr ""
984
 
985
+ #: includes/class-wcj-empty-cart-button.php:144
986
+ msgid "Confirmation"
987
+ msgstr ""
988
+
989
+ #: includes/class-wcj-empty-cart-button.php:149
990
+ msgid "No confirmation"
991
+ msgstr ""
992
+
993
+ #: includes/class-wcj-empty-cart-button.php:150
994
+ msgid "Confirm by pop up box"
995
+ msgstr ""
996
+
997
+ #: includes/class-wcj-empty-cart-button.php:158
998
+ msgid "Confirmation Text (if enabled)"
999
  msgstr ""
1000
 
1001
+ #: includes/class-wcj-empty-cart-button.php:160
1002
+ msgid "Are you sure?"
1003
  msgstr ""
1004
 
1005
+ #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:189
1006
+ msgid "General"
1007
+ msgstr ""
1008
+
1009
+ #: includes/class-wcj-general.php:24
1010
  msgid ""
1011
+ "Separate custom CSS for front and back end. Shortcodes in Wordpress text "
1012
+ "widgets."
 
1013
  msgstr ""
1014
 
1015
+ #: includes/class-wcj-general.php:66 includes/class-wcj-shortcodes.php:61
1016
+ msgid "Shortcodes Options"
1017
  msgstr ""
1018
 
1019
+ #: includes/class-wcj-general.php:73
1020
+ msgid "Enable Shortcodes in WordPress Text Widgets"
1021
  msgstr ""
1022
 
1023
+ #: includes/class-wcj-general.php:86
1024
+ msgid "Custom CSS Options"
1025
  msgstr ""
1026
 
1027
+ #: includes/class-wcj-general.php:88
1028
+ msgid "Another custom CSS, if you need one."
1029
  msgstr ""
1030
 
1031
+ #: includes/class-wcj-general.php:93
1032
+ msgid "Custom CSS - Front end (Customers)"
1033
  msgstr ""
1034
 
1035
+ #: includes/class-wcj-general.php:101
1036
+ msgid "Custom CSS - Back end (Admin)"
1037
  msgstr ""
1038
 
1039
+ #: includes/class-wcj-mini-cart.php:24
1040
+ msgid "Mini Cart"
1041
  msgstr ""
1042
 
1043
+ #: includes/class-wcj-mini-cart.php:25
1044
+ msgid "Customize WooCommerce mini cart widget."
1045
  msgstr ""
1046
 
1047
+ #: includes/class-wcj-mini-cart.php:45
1048
+ msgid "Mini Cart Custom Info Blocks"
1049
  msgstr ""
1050
 
1051
+ #: includes/class-wcj-mini-cart.php:84
1052
+ msgid "Before mini cart"
 
 
 
1053
  msgstr ""
1054
 
1055
+ #: includes/class-wcj-mini-cart.php:85
1056
+ msgid "Before buttons"
 
 
1057
  msgstr ""
1058
 
1059
+ #: includes/class-wcj-mini-cart.php:86
1060
+ msgid "After mini cart"
 
 
1061
  msgstr ""
1062
 
1063
+ #: includes/class-wcj-more-button-labels.php:24
1064
+ msgid "More Button Labels"
1065
  msgstr ""
1066
 
1067
+ #: includes/class-wcj-more-button-labels.php:25
1068
+ msgid "Set WooCommerce \"Place order\" button label."
 
 
1069
  msgstr ""
1070
 
1071
+ #: includes/class-wcj-more-button-labels.php:43
1072
+ msgid "Place order (Order now) Button"
1073
  msgstr ""
1074
 
1075
+ #: includes/class-wcj-more-button-labels.php:50
1076
+ msgid "leave blank for WooCommerce default"
1077
  msgstr ""
1078
 
1079
+ #: includes/class-wcj-more-button-labels.php:51
1080
+ msgid "Button on the checkout page."
1081
  msgstr ""
1082
 
1083
+ #: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
1084
+ msgid "Remove Old Slugs"
1085
  msgstr ""
1086
 
1087
+ #: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:170
1088
+ msgid "Tool removes old slugs/permalinks from database."
1089
  msgstr ""
1090
 
1091
+ #: includes/class-wcj-old-slugs.php:87
1092
+ msgid "Old Slugs Options"
1093
  msgstr ""
1094
 
1095
+ #: includes/class-wcj-old-slugs.php:89
1096
  msgid ""
1097
+ "When enabled, the tool is accessible through <a href=\"%sadmin.php?page=wcj-"
1098
+ "tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove Old Slugs</a>."
1099
  msgstr ""
1100
 
1101
+ #: includes/class-wcj-old-slugs.php:94 includes/class-wcj-old-slugs.php:114
1102
+ msgid "Old Slugs"
1103
  msgstr ""
1104
 
1105
+ #: includes/class-wcj-old-slugs.php:96
1106
+ msgid "Remove old WooCommerce products slugs."
 
 
 
 
 
1107
  msgstr ""
1108
 
1109
+ #: includes/class-wcj-old-slugs.php:169
1110
+ msgid "WooCommerce Jetpack - Remove Old Product Slugs"
1111
  msgstr ""
1112
 
1113
+ #: includes/class-wcj-old-slugs.php:175
1114
+ msgid "Old products slugs found:"
 
 
 
 
1115
  msgstr ""
1116
 
1117
+ #: includes/class-wcj-old-slugs.php:183
1118
+ msgid "None-products slugs found:"
1119
  msgstr ""
1120
 
1121
+ #: includes/class-wcj-old-slugs.php:190
1122
+ msgid "No old slugs found."
 
 
1123
  msgstr ""
1124
 
1125
+ #: includes/class-wcj-order-custom-statuses.php:24
1126
+ msgid "Order Custom Statuses"
1127
  msgstr ""
1128
 
1129
+ #: includes/class-wcj-order-custom-statuses.php:25
1130
+ msgid "Custom statuses for WooCommerce orders."
 
 
 
 
 
1131
  msgstr ""
1132
 
1133
+ #: includes/class-wcj-order-custom-statuses.php:30
1134
  msgctxt "Order status"
1135
  msgid "Pending payment"
1136
  msgstr ""
1137
 
1138
+ #: includes/class-wcj-order-custom-statuses.php:31
1139
+ #: includes/functions/wcj-functions.php:344
1140
  msgctxt "Order status"
1141
  msgid "Processing"
1142
  msgstr ""
1143
 
1144
+ #: includes/class-wcj-order-custom-statuses.php:32
1145
  msgctxt "Order status"
1146
  msgid "On hold"
1147
  msgstr ""
1148
 
1149
+ #: includes/class-wcj-order-custom-statuses.php:33
1150
+ #: includes/functions/wcj-functions.php:346
1151
  msgctxt "Order status"
1152
  msgid "Completed"
1153
  msgstr ""
1154
 
1155
+ #: includes/class-wcj-order-custom-statuses.php:34
1156
+ #: includes/functions/wcj-functions.php:347
1157
  msgctxt "Order status"
1158
  msgid "Cancelled"
1159
  msgstr ""
1160
 
1161
+ #: includes/class-wcj-order-custom-statuses.php:35
1162
+ #: includes/functions/wcj-functions.php:348
1163
  msgctxt "Order status"
1164
  msgid "Refunded"
1165
  msgstr ""
1166
 
1167
+ #: includes/class-wcj-order-custom-statuses.php:36
1168
+ #: includes/functions/wcj-functions.php:349
1169
  msgctxt "Order status"
1170
  msgid "Failed"
1171
  msgstr ""
1172
 
1173
+ #: includes/class-wcj-order-custom-statuses.php:137
1174
+ #: includes/class-wcj-order-custom-statuses.php:149
1175
+ #: includes/class-wcj-order-custom-statuses.php:278
1176
  msgid "Custom Statuses"
1177
  msgstr ""
1178
 
1179
+ #: includes/class-wcj-order-custom-statuses.php:139
1180
  msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1181
  msgstr ""
1182
 
1183
+ #: includes/class-wcj-order-custom-statuses.php:179
1184
  msgid "Status slug is empty. Status not added."
1185
  msgstr ""
1186
 
1187
+ #: includes/class-wcj-order-custom-statuses.php:181
1188
  msgid "The length of status slug must be 17 or less characters."
1189
  msgstr ""
1190
 
1191
+ #: includes/class-wcj-order-custom-statuses.php:183
1192
  msgid "Status label is empty. Status not added."
1193
  msgstr ""
1194
 
1195
+ #: includes/class-wcj-order-custom-statuses.php:189
1196
  msgid "Duplicate slug. Status not added."
1197
  msgstr ""
1198
 
1199
+ #: includes/class-wcj-order-custom-statuses.php:195
1200
  msgid "New status have been successfully added!"
1201
  msgstr ""
1202
 
1203
+ #: includes/class-wcj-order-custom-statuses.php:197
1204
  msgid "Status was not added."
1205
  msgstr ""
1206
 
1207
+ #: includes/class-wcj-order-custom-statuses.php:213
1208
  msgid "Status have been successfully deleted."
1209
  msgstr ""
1210
 
1211
+ #: includes/class-wcj-order-custom-statuses.php:215
1212
  msgid "Delete failed."
1213
  msgstr ""
1214
 
1215
+ #: includes/class-wcj-order-custom-statuses.php:218
1216
  msgid "WooCommerce Jetpack - Custom Statuses"
1217
  msgstr ""
1218
 
1219
+ #: includes/class-wcj-order-custom-statuses.php:219
1220
  msgid ""
1221
  "The tool lets you add or delete any custom status for WooCommerce orders."
1222
  msgstr ""
1223
 
1224
+ #: includes/class-wcj-order-custom-statuses.php:221
1225
  msgid "Statuses"
1226
  msgstr ""
1227
 
1228
+ #: includes/class-wcj-order-custom-statuses.php:224
1229
  msgid "Slug"
1230
  msgstr ""
1231
 
1232
+ #: includes/class-wcj-order-custom-statuses.php:225
1233
+ #: includes/class-wcj-order-custom-statuses.php:250
1234
  msgid "Label"
1235
  msgstr ""
1236
 
1237
+ #: includes/class-wcj-order-custom-statuses.php:227
1238
+ #: includes/class-wcj-order-custom-statuses.php:237
1239
  msgid "Delete"
1240
  msgstr ""
1241
 
1242
+ #: includes/class-wcj-order-custom-statuses.php:249
1243
  msgid "Slug (without wc- prefix)"
1244
  msgstr ""
1245
 
1246
+ #: includes/class-wcj-order-custom-statuses.php:278
1247
+ msgid "This section lets you enable custom statuses tool."
1248
  msgstr ""
1249
 
1250
+ #: includes/class-wcj-order-custom-statuses.php:290
1251
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1252
+ msgid "Default Order Status"
1253
  msgstr ""
1254
 
1255
+ #: includes/class-wcj-order-custom-statuses.php:291
1256
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:120
1257
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
1258
  msgstr ""
1259
 
1260
+ #: includes/class-wcj-order-custom-statuses.php:292
1261
+ msgid ""
1262
+ "You can change the default order status here. However payment gateways can "
1263
+ "change this status immediatelly on order creation. E.g. BACS gateway will "
1264
+ "change status to On-hold."
1265
  msgstr ""
1266
 
1267
+ #: includes/class-wcj-order-numbers.php:69
1268
+ msgid "Orders Renumerate"
1269
  msgstr ""
1270
 
1271
+ #: includes/class-wcj-order-numbers.php:71
1272
+ msgid "Tool renumerates all orders."
1273
  msgstr ""
1274
 
1275
+ #: includes/class-wcj-order-numbers.php:81
1276
+ msgid "Renumerate orders"
1277
  msgstr ""
1278
 
1279
+ #: includes/class-wcj-order-numbers.php:93
1280
+ msgid "Orders successfully renumerated!"
1281
  msgstr ""
1282
 
1283
+ #: includes/class-wcj-order-numbers.php:96
1284
+ msgid "WooCommerce Jetpack - Renumerate Orders"
 
 
 
1285
  msgstr ""
1286
 
1287
+ #: includes/class-wcj-order-numbers.php:97
1288
+ msgid ""
1289
+ "The tool renumerates all orders. Press the button below to renumerate all "
1290
+ "existing orders starting from order counter settings in WooCommerce > "
1291
+ "Settings > Jetpack > Order Numbers."
1292
  msgstr ""
1293
 
1294
+ #: includes/class-wcj-order-numbers.php:163
1295
+ #: includes/class-wcj-order-numbers.php:166
1296
+ #: includes/class-wcj-order-numbers.php:262
1297
+ msgid "Order Numbers"
1298
  msgstr ""
1299
 
1300
+ #: includes/class-wcj-order-numbers.php:163
1301
+ msgid ""
1302
+ "This section lets you enable sequential order numbering, set custom number "
1303
+ "prefix, suffix and width."
1304
  msgstr ""
1305
 
1306
+ #: includes/class-wcj-order-numbers.php:168
1307
  msgid ""
1308
+ "WooCommerce sequential order numbering, custom order number prefix, suffix "
1309
+ "and number width."
1310
  msgstr ""
1311
 
1312
+ #: includes/class-wcj-order-numbers.php:175
1313
+ msgid "Make Order Numbers Sequential"
1314
  msgstr ""
1315
 
1316
+ #: includes/class-wcj-order-numbers.php:183
1317
+ msgid "Next Order Number"
1318
  msgstr ""
1319
 
1320
+ #: includes/class-wcj-order-numbers.php:184
1321
+ msgid "Next new order will be given this number."
1322
  msgstr ""
1323
 
1324
+ #: includes/class-wcj-order-numbers.php:184
1325
+ msgid "Use Renumerate Orders tool for existing orders."
1326
  msgstr ""
1327
 
1328
+ #: includes/class-wcj-order-numbers.php:185
1329
+ msgid "This will be ignored if sequential order numbering is disabled."
 
 
1330
  msgstr ""
1331
 
1332
+ #: includes/class-wcj-order-numbers.php:192
1333
+ msgid "Order Number Custom Prefix"
1334
  msgstr ""
1335
 
1336
+ #: includes/class-wcj-order-numbers.php:194
1337
  msgid ""
1338
+ "Prefix before order number (optional). This will change the prefixes for all "
1339
+ "existing orders."
 
 
 
 
 
 
1340
  msgstr ""
1341
 
1342
+ #: includes/class-wcj-order-numbers.php:204
1343
+ msgid "Order Number Date Prefix"
 
1344
  msgstr ""
1345
 
1346
+ #: includes/class-wcj-order-numbers.php:206
1347
  msgid ""
1348
+ "Date prefix before order number (optional). This will change the prefixes "
1349
+ "for all existing orders. Value is passed directly to PHP `date` function, so "
1350
+ "most of PHP date formats can be used. The only exception is using `\\` "
1351
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
1352
+ "d- or mdy."
1353
  msgstr ""
1354
 
1355
+ #: includes/class-wcj-order-numbers.php:216
1356
+ msgid "Order Number Width"
1357
  msgstr ""
1358
 
1359
+ #: includes/class-wcj-order-numbers.php:218
 
 
1360
  msgid ""
1361
+ "Minimum width of number without prefix (zeros will be added to the left "
1362
+ "side). This will change the minimum width of order number for all existing "
1363
+ "orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
1364
+ "Leave zero to disable."
1365
  msgstr ""
1366
 
1367
+ #: includes/class-wcj-order-numbers.php:228
1368
+ msgid "Order Number Custom Suffix"
 
1369
  msgstr ""
1370
 
1371
+ #: includes/class-wcj-order-numbers.php:230
1372
+ msgid ""
1373
+ "Suffix after order number (optional). This will change the suffixes for all "
1374
+ "existing orders."
1375
  msgstr ""
1376
 
1377
+ #: includes/class-wcj-order-numbers.php:240
1378
+ msgid "Order Number Date Suffix"
1379
  msgstr ""
1380
 
1381
+ #: includes/class-wcj-order-numbers.php:242
1382
+ msgid ""
1383
+ "Date suffix after order number (optional). This will change the suffixes for "
1384
+ "all existing orders. Value is passed directly to PHP `date` function, so "
1385
+ "most of PHP date formats can be used. The only exception is using `\\` "
1386
+ "symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
1387
+ "d- or mdy."
1388
  msgstr ""
1389
 
1390
+ #: includes/class-wcj-orders.php:23
1391
+ msgid "Orders"
1392
  msgstr ""
1393
 
1394
+ #: includes/class-wcj-orders.php:24
1395
+ msgid "Minimum WooCommerce order amount; orders auto-complete."
1396
  msgstr ""
1397
 
1398
+ #: includes/class-wcj-orders.php:77
1399
+ msgid "All countries"
1400
  msgstr ""
1401
 
1402
+ #: includes/class-wcj-orders.php:90 includes/class-wcj-orders.php:262
1403
+ msgid "Country"
1404
  msgstr ""
1405
 
1406
+ #: includes/class-wcj-orders.php:185
1407
+ msgid "Order Minimum Amount"
1408
  msgstr ""
1409
 
1410
+ #: includes/class-wcj-orders.php:185
1411
+ msgid "This section lets you set minimum order amount."
1412
  msgstr ""
1413
 
1414
+ #: includes/class-wcj-orders.php:188
1415
+ msgid "Amount"
1416
  msgstr ""
1417
 
1418
+ #: includes/class-wcj-orders.php:189
1419
+ msgid "Minimum order amount. Set to 0 to disable."
 
1420
  msgstr ""
1421
 
1422
+ #: includes/class-wcj-orders.php:200
1423
+ msgid "Error message"
1424
  msgstr ""
1425
 
1426
+ #: includes/class-wcj-orders.php:202 includes/class-wcj-orders.php:222
1427
+ msgid ""
1428
+ "Message to customer if order is below minimum amount. Default: You must have "
1429
+ "an order with a minimum of %s to place your order, your current order total "
1430
+ "is %s."
1431
  msgstr ""
1432
 
1433
+ #: includes/class-wcj-orders.php:212
1434
+ msgid "Add notice to cart page also"
 
1435
  msgstr ""
1436
 
1437
+ #: includes/class-wcj-orders.php:213 includes/class-wcj-orders.php:263
1438
+ #: includes/class-wcj-purchase-data.php:321
1439
+ msgid "Add"
1440
  msgstr ""
1441
 
1442
+ #: includes/class-wcj-orders.php:220
1443
+ msgid "Message on cart page"
1444
  msgstr ""
1445
 
1446
+ #: includes/class-wcj-orders.php:232
1447
+ msgid ""
1448
+ "Stop customer from seeing the Checkout page if minimum amount not reached."
1449
  msgstr ""
1450
 
1451
+ #: includes/class-wcj-orders.php:233
1452
+ msgid "Redirect back to Cart page"
1453
  msgstr ""
1454
 
1455
+ #: includes/class-wcj-orders.php:241
1456
+ msgid "Orders Auto-Complete"
 
 
1457
  msgstr ""
1458
 
1459
+ #: includes/class-wcj-orders.php:241
1460
+ msgid "This section lets you enable orders auto-complete function."
1461
  msgstr ""
1462
 
1463
+ #: includes/class-wcj-orders.php:244
1464
+ msgid "Auto-complete all WooCommerce orders"
1465
  msgstr ""
1466
 
1467
+ #: includes/class-wcj-orders.php:246
1468
  msgid ""
1469
+ "E.g. if you sell digital products then you are not shipping anything and you "
1470
+ "may want auto-complete all your orders."
1471
  msgstr ""
1472
 
1473
+ #: includes/class-wcj-orders.php:255 includes/class-wcj-purchase-data.php:314
1474
+ msgid "Orders List Custom Columns"
1475
  msgstr ""
1476
 
1477
+ #: includes/class-wcj-orders.php:257 includes/class-wcj-purchase-data.php:316
1478
+ msgid "This section lets you add custom columns to WooCommerce orders list."
 
 
1479
  msgstr ""
1480
 
1481
+ #: includes/class-wcj-payment-gateways-fees.php:24
1482
  msgid "Payment Gateways Fees"
1483
  msgstr ""
1484
 
1485
+ #: includes/class-wcj-payment-gateways-fees.php:25
1486
+ msgid "Enable extra fees for WooCommerce payment gateways."
1487
  msgstr ""
1488
 
1489
+ #: includes/class-wcj-payment-gateways-fees.php:127
1490
+ msgid "Payment Gateways Fees Options"
 
1491
  msgstr ""
1492
 
1493
+ #: includes/class-wcj-payment-gateways-fees.php:129
1494
+ msgid "This section lets you set extra fees for payment gateways."
 
1495
  msgstr ""
1496
 
1497
+ #: includes/class-wcj-payment-gateways-fees.php:148
1498
+ msgid "Fee title to show to customer."
1499
  msgstr ""
1500
 
1501
+ #: includes/class-wcj-payment-gateways-fees.php:157
1502
+ msgid "Fee type."
1503
  msgstr ""
1504
 
1505
+ #: includes/class-wcj-payment-gateways-fees.php:158
1506
+ msgid "Percent or fixed value."
1507
  msgstr ""
1508
 
1509
+ #: includes/class-wcj-payment-gateways-fees.php:165
1510
+ msgid "Fixed"
1511
  msgstr ""
1512
 
1513
+ #: includes/class-wcj-payment-gateways-fees.php:166
1514
+ msgid "Percent"
 
 
1515
  msgstr ""
1516
 
1517
+ #: includes/class-wcj-payment-gateways-fees.php:172
1518
+ msgid "Fee value."
1519
  msgstr ""
1520
 
1521
+ #: includes/class-wcj-payment-gateways-fees.php:173
1522
+ msgid "The value."
1523
+ msgstr ""
1524
+
1525
+ #: includes/class-wcj-payment-gateways-fees.php:185
1526
+ msgid "Minimum cart amount for adding the fee."
1527
+ msgstr ""
1528
+
1529
+ #: includes/class-wcj-payment-gateways-fees.php:186
1530
+ #: includes/class-wcj-payment-gateways-fees.php:199
1531
+ msgid "Set 0 to disable."
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wcj-payment-gateways-fees.php:198
1535
+ msgid "Maximum cart amount for adding the fee."
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wcj-payment-gateways-fees.php:211
1539
+ msgid "Round the fee value before adding to the cart."
1540
+ msgstr ""
1541
+
1542
+ #: includes/class-wcj-payment-gateways-fees.php:220
1543
+ msgid "If rounding is enabled, set precision here."
1544
+ msgstr ""
1545
+
1546
+ #: includes/class-wcj-payment-gateways-fees.php:233
1547
+ msgid "Is taxable?"
1548
+ msgstr ""
1549
+
1550
+ #: includes/class-wcj-payment-gateways-fees.php:244
1551
+ msgid "Tax Class (only if Taxable selected)."
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wcj-payment-gateways-fees.php:249
1555
+ msgid "Standard Rate"
1556
+ msgstr ""
1557
+
1558
+ #: includes/class-wcj-payment-gateways-icons.php:24
1559
+ msgid "Payment Gateways Icons"
1560
+ msgstr ""
1561
+
1562
+ #: includes/class-wcj-payment-gateways-icons.php:25
1563
+ msgid "Change icons (images) for all default WooCommerce payment gateways."
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wcj-payment-gateways-icons.php:69
1567
+ msgid "Default WooCommerce Payment Gateways Icons"
1568
+ msgstr ""
1569
+
1570
+ #: includes/class-wcj-payment-gateways-icons.php:71
1571
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:84
1572
+ msgid ""
1573
+ "If you want to show an image next to the gateway's name on the frontend, "
1574
+ "enter a URL to an image."
1575
+ msgstr ""
1576
+
1577
+ #: includes/class-wcj-payment-gateways-per-category.php:24
1578
+ msgid "Payment Gateways per Category"
1579
+ msgstr ""
1580
+
1581
+ #: includes/class-wcj-payment-gateways-per-category.php:25
1582
+ msgid ""
1583
+ "Show gateway only if there is product of selected category in WooCommerce "
1584
+ "cart."
1585
+ msgstr ""
1586
+
1587
+ #: includes/class-wcj-payment-gateways-per-category.php:93
1588
+ msgid "WooCommerce Jetpack: Payment Gateways per Category Options"
1589
+ msgstr ""
1590
+
1591
+ #: includes/class-wcj-payment-gateways-per-category.php:111
1592
+ msgid "Show gateway only if there is product of selected category in cart."
1593
+ msgstr ""
1594
+
1595
+ #: includes/class-wcj-payment-gateways.php:25
1596
+ msgid "Custom Payment Gateways"
1597
+ msgstr ""
1598
+
1599
+ #: includes/class-wcj-payment-gateways.php:26
1600
+ msgid "Add multiple custom payment gateways to WooCommerce."
1601
+ msgstr ""
1602
+
1603
+ #: includes/class-wcj-payment-gateways.php:42
1604
+ msgid "Custom Payment Gateways Options"
1605
+ msgstr ""
1606
+
1607
+ #: includes/class-wcj-payment-gateways.php:45
1608
+ msgid "Number of Gateways"
1609
+ msgstr ""
1610
+
1611
+ #: includes/class-wcj-payment-gateways.php:47
1612
+ msgid ""
1613
+ "Number of custom payments gateways to be added. All settings for each new "
1614
+ "gateway are in WooCommerce > Settings > Checkout."
1615
+ msgstr ""
1616
+
1617
+ #: includes/class-wcj-pdf-invoices.php:66
1618
+ msgid "Payment Gateways Attach PDF Invoice V1 Options"
1619
+ msgstr ""
1620
+
1621
+ #: includes/class-wcj-pdf-invoices.php:66
1622
+ msgid ""
1623
+ "This section lets you choose when to attach PDF invoice to customers emails."
1624
+ msgstr ""
1625
+
1626
+ #: includes/class-wcj-pdf-invoices.php:76
1627
+ msgid "Attach PDF invoice."
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-wcj-pdf-invoices.php:208
1631
+ #: includes/class-wcj-pdf-invoices.php:213
1632
+ #: includes/functions/wcj-invoicing-functions.php:10
1633
+ msgid "Invoice"
1634
+ msgstr ""
1635
+
1636
+ #: includes/class-wcj-pdf-invoices.php:371
1637
+ #: includes/classes/class-wcj-pdf-invoice.php:287
1638
+ msgid "Unexpected error"
1639
+ msgstr ""
1640
+
1641
+ #: includes/class-wcj-pdf-invoices.php:891
1642
+ #: includes/class-wcj-pdf-invoices.php:897
1643
+ msgid "PDF Invoice"
1644
+ msgstr ""
1645
+
1646
+ #: includes/class-wcj-pdf-invoices.php:922
1647
+ msgid "PDF Invoices Options"
1648
+ msgstr ""
1649
+
1650
+ #: includes/class-wcj-pdf-invoices.php:925
1651
+ #: includes/class-wcj-pdf-invoices.php:1437
1652
+ msgid "PDF Invoices"
1653
+ msgstr ""
1654
+
1655
+ #: includes/class-wcj-pdf-invoices.php:925
1656
+ msgid "depreciated"
1657
+ msgstr ""
1658
+
1659
+ #: includes/class-wcj-pdf-invoices.php:927
1660
+ msgid ""
1661
+ "Add PDF invoices for the WooCommerce store owners and for the customers."
1662
+ msgstr ""
1663
+
1664
+ #: includes/class-wcj-pdf-invoices.php:935
1665
+ msgid "Invoice Header"
1666
+ msgstr ""
1667
+
1668
+ #: includes/class-wcj-pdf-invoices.php:935
1669
+ msgid ""
1670
+ "This section lets you set texts for required invoice number and date, and "
1671
+ "optional logo, header text, invoice due and fulfillment dates."
1672
+ msgstr ""
1673
+
1674
+ #: includes/class-wcj-pdf-invoices.php:938
1675
+ msgid "Your Logo URL"
1676
+ msgstr ""
1677
+
1678
+ #: includes/class-wcj-pdf-invoices.php:939
1679
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:54
1680
+ msgid ""
1681
+ "Enter a URL to an image you want to show in the invoice's header. Upload "
1682
  "your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1683
  msgstr ""
1684
 
1685
+ #: includes/class-wcj-pdf-invoices.php:940
1686
+ #: includes/class-wcj-pdf-invoices.php:949
1687
+ #: includes/class-wcj-pdf-invoices.php:969
1688
+ #: includes/class-wcj-pdf-invoices.php:979
1689
+ #: includes/class-wcj-pdf-invoices.php:998
1690
+ #: includes/class-wcj-pdf-invoices.php:1018
1691
+ #: includes/class-wcj-pdf-invoices.php:1091
1692
+ #: includes/class-wcj-pdf-invoices.php:1126
1693
+ #: includes/class-wcj-pdf-invoices.php:1177
1694
+ #: includes/class-wcj-pdf-invoices.php:1186
1695
+ #: includes/class-wcj-pdf-invoices.php:1195
1696
+ #: includes/class-wcj-pdf-invoices.php:1204
1697
+ #: includes/class-wcj-pdf-invoices.php:1213
1698
+ #: includes/class-wcj-pdf-invoices.php:1222
1699
+ #: includes/class-wcj-pdf-invoices.php:1302
1700
+ #: includes/class-wcj-pdf-invoices.php:1311
1701
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:55
1702
  msgid "Leave blank to disable"
1703
  msgstr ""
1704
 
1705
+ #: includes/class-wcj-pdf-invoices.php:948
1706
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:74
1707
  msgid "Header Text"
1708
  msgstr ""
1709
 
1710
+ #: includes/class-wcj-pdf-invoices.php:950
1711
  msgid "Default: INVOICE"
1712
  msgstr ""
1713
 
1714
+ #: includes/class-wcj-pdf-invoices.php:952
1715
  msgid "INVOICE"
1716
  msgstr ""
1717
 
1718
+ #: includes/class-wcj-pdf-invoices.php:958
1719
  msgid "Invoice Number"
1720
  msgstr ""
1721
 
1722
+ #: includes/class-wcj-pdf-invoices.php:959
1723
  msgid "Default: Invoice number"
1724
  msgstr ""
1725
 
1726
+ #: includes/class-wcj-pdf-invoices.php:961
1727
  msgid "Invoice number"
1728
  msgstr ""
1729
 
1730
+ #: includes/class-wcj-pdf-invoices.php:967
1731
  msgid "Order Date"
1732
  msgstr ""
1733
 
1734
+ #: includes/class-wcj-pdf-invoices.php:968
1735
  msgid "Default: Order date"
1736
  msgstr ""
1737
 
1738
+ #: includes/class-wcj-pdf-invoices.php:971
1739
  msgid "Order date"
1740
  msgstr ""
1741
 
1742
+ #: includes/class-wcj-pdf-invoices.php:977
1743
  msgid "Order Time"
1744
  msgstr ""
1745
 
1746
+ #: includes/class-wcj-pdf-invoices.php:978
1747
  msgid "Default: Order time"
1748
  msgstr ""
1749
 
1750
+ #: includes/class-wcj-pdf-invoices.php:981
1751
  msgid "Order time"
1752
  msgstr ""
1753
 
1754
+ #: includes/class-wcj-pdf-invoices.php:987
1755
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:110
1756
  msgid "Invoice Date"
1757
  msgstr ""
1758
 
1759
+ #: includes/class-wcj-pdf-invoices.php:988
1760
  msgid "Default: Invoice date"
1761
  msgstr ""
1762
 
1763
+ #: includes/class-wcj-pdf-invoices.php:990
1764
  msgid "Invoice date"
1765
  msgstr ""
1766
 
1767
+ #: includes/class-wcj-pdf-invoices.php:997
1768
  msgid "Default: Invoice due date"
1769
  msgstr ""
1770
 
1771
+ #: includes/class-wcj-pdf-invoices.php:1000
1772
  msgid "Invoice due date"
1773
  msgstr ""
1774
 
1775
+ #: includes/class-wcj-pdf-invoices.php:1007
1776
+ #: includes/class-wcj-pdf-invoices.php:1027
1777
  msgid "days"
1778
  msgstr ""
1779
 
1780
+ #: includes/class-wcj-pdf-invoices.php:1017
1781
  msgid "Default: Invoice fulfillment date"
1782
  msgstr ""
1783
 
1784
+ #: includes/class-wcj-pdf-invoices.php:1020
1785
  msgid "Invoice fulfillment date"
1786
  msgstr ""
1787
 
1788
+ #: includes/class-wcj-pdf-invoices.php:1036
1789
  msgid "Additional Header"
1790
  msgstr ""
1791
 
1792
+ #: includes/class-wcj-pdf-invoices.php:1037
1793
  msgid ""
1794
  "Additional header - will be displayed above all data on invoice. You can use "
1795
  "html and/or shortcodes here."
1796
  msgstr ""
1797
 
1798
+ #: includes/class-wcj-pdf-invoices.php:1046
1799
  msgid "Seller and Buyer Info"
1800
  msgstr ""
1801
 
1802
+ #: includes/class-wcj-pdf-invoices.php:1049
1803
+ #: includes/class-wcj-pdf-invoices.php:1052
1804
+ #: includes/class-wcj-purchase-data.php:177
1805
  msgid "Seller"
1806
  msgstr ""
1807
 
1808
+ #: includes/class-wcj-pdf-invoices.php:1058
1809
  msgid "Your business information"
1810
  msgstr ""
1811
 
1812
+ #: includes/class-wcj-pdf-invoices.php:1060
1813
  msgid "New lines are added automatically."
1814
  msgstr ""
1815
 
1816
+ #: includes/class-wcj-pdf-invoices.php:1062
1817
  msgid "<strong>Company Name</strong>"
1818
  msgstr ""
1819
 
1820
+ #: includes/class-wcj-pdf-invoices.php:1068
1821
+ #: includes/class-wcj-pdf-invoices.php:1071
1822
  msgid "Buyer"
1823
  msgstr ""
1824
 
1825
+ #: includes/class-wcj-pdf-invoices.php:1078
1826
+ #: includes/class-wcj-pdf-invoices.php:1084
1827
  msgid "Items"
1828
  msgstr ""
1829
 
1830
+ #: includes/class-wcj-pdf-invoices.php:1081
1831
  msgid "Items Table Heading Text"
1832
  msgstr ""
1833
 
1834
+ #: includes/class-wcj-pdf-invoices.php:1090
1835
  msgid "Shipping as Item"
1836
  msgstr ""
1837
 
1838
+ #: includes/class-wcj-pdf-invoices.php:1092
1839
  msgid "Display shipping as item"
1840
  msgstr ""
1841
 
1842
+ #: includes/class-wcj-pdf-invoices.php:1110
1843
+ #: includes/class-wcj-pdf-invoices.php:1118
1844
  msgid "Add shipping method info"
1845
  msgstr ""
1846
 
1847
+ #: includes/class-wcj-pdf-invoices.php:1117
1848
  msgid "Do not add shipping method info"
1849
  msgstr ""
1850
 
1851
+ #: includes/class-wcj-pdf-invoices.php:1119
1852
  msgid "Replace with shipping method info"
1853
  msgstr ""
1854
 
1855
+ #: includes/class-wcj-pdf-invoices.php:1125
1856
  msgid "Discount as Item"
1857
  msgstr ""
1858
 
1859
+ #: includes/class-wcj-pdf-invoices.php:1127
1860
  msgid "Display discount as item"
1861
  msgstr ""
1862
 
1863
+ #: includes/class-wcj-pdf-invoices.php:1137
1864
  msgid "Items Columns"
1865
  msgstr ""
1866
 
1867
+ #: includes/class-wcj-pdf-invoices.php:1137
1868
  msgid ""
1869
  "This section lets you set column names in invoice items table. You can "
1870
  "disable some columns by leaving blank column name."
1871
  msgstr ""
1872
 
1873
+ #: includes/class-wcj-pdf-invoices.php:1140
1874
+ #: includes/class-wcj-pdf-invoices.php:1143
1875
  msgid "Nr."
1876
  msgstr ""
1877
 
1878
+ #: includes/class-wcj-pdf-invoices.php:1149
1879
+ #: includes/class-wcj-pdf-invoices.php:1152
1880
  msgid "Item Name"
1881
  msgstr ""
1882
 
1883
+ #: includes/class-wcj-pdf-invoices.php:1158
1884
  msgid "Item Name Additional Info"
1885
  msgstr ""
1886
 
1887
+ #: includes/class-wcj-pdf-invoices.php:1159
1888
  msgid ""
1889
  "Here you can add more info to item's name column (e.g. sku). Default is "
1890
  "(SKU: %sku%)"
1891
  msgstr ""
1892
 
1893
+ #: includes/class-wcj-pdf-invoices.php:1161
1894
  msgid "(SKU: %sku%)"
1895
  msgstr ""
1896
 
1897
+ #: includes/class-wcj-pdf-invoices.php:1167
1898
+ #: includes/class-wcj-pdf-invoices.php:1170
1899
  msgid "Qty"
1900
  msgstr ""
1901
 
1902
+ #: includes/class-wcj-pdf-invoices.php:1176
1903
  msgid "Single Item Price (TAX excl.)"
1904
  msgstr ""
1905
 
1906
+ #: includes/class-wcj-pdf-invoices.php:1179
1907
  msgid "Price (TAX excl.)"
1908
  msgstr ""
1909
 
1910
+ #: includes/class-wcj-pdf-invoices.php:1185
1911
  msgid "Single Item TAX"
1912
  msgstr ""
1913
 
1914
+ #: includes/class-wcj-pdf-invoices.php:1188
1915
  msgid "TAX"
1916
  msgstr ""
1917
 
1918
+ #: includes/class-wcj-pdf-invoices.php:1194
1919
  msgid "Single Item Price (TAX incl.)"
1920
  msgstr ""
1921
 
1922
+ #: includes/class-wcj-pdf-invoices.php:1197
1923
  msgid "Price (TAX incl.)"
1924
  msgstr ""
1925
 
1926
+ #: includes/class-wcj-pdf-invoices.php:1203
1927
+ #: includes/class-wcj-pdf-invoices.php:1206
1928
  msgid "Sum (TAX excl.)"
1929
  msgstr ""
1930
 
1931
+ #: includes/class-wcj-pdf-invoices.php:1212
1932
  msgid "Tax Percent"
1933
  msgstr ""
1934
 
1935
+ #: includes/class-wcj-pdf-invoices.php:1215
1936
  msgid "Taxes %"
1937
  msgstr ""
1938
 
1939
+ #: includes/class-wcj-pdf-invoices.php:1221
1940
+ #: includes/class-wcj-pdf-invoices.php:1224
1941
+ #: includes/class-wcj-pdf-invoices.php:1282
1942
  msgid "Taxes"
1943
  msgstr ""
1944
 
1945
+ #: includes/class-wcj-pdf-invoices.php:1230
1946
+ #: includes/class-wcj-pdf-invoices.php:1233
1947
  msgid "Sum (TAX incl.)"
1948
  msgstr ""
1949
 
1950
+ #: includes/class-wcj-pdf-invoices.php:1240
1951
  msgid "Totals"
1952
  msgstr ""
1953
 
1954
+ #: includes/class-wcj-pdf-invoices.php:1240
1955
  msgid "This section lets you set texts for totals table."
1956
  msgstr ""
1957
 
1958
+ #: includes/class-wcj-pdf-invoices.php:1243
1959
+ #: includes/class-wcj-pdf-invoices.php:1246
1960
  msgid "Order Subtotal"
1961
  msgstr ""
1962
 
1963
+ #: includes/class-wcj-pdf-invoices.php:1244
1964
  msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1965
  msgstr ""
1966
 
1967
+ #: includes/class-wcj-pdf-invoices.php:1252
1968
  msgid "Order Shipping Price"
1969
  msgstr ""
1970
 
1971
+ #: includes/class-wcj-pdf-invoices.php:1261
1972
  msgid "Total Discount"
1973
  msgstr ""
1974
 
1975
+ #: includes/class-wcj-pdf-invoices.php:1264
1976
  msgid "Discount"
1977
  msgstr ""
1978
 
1979
+ #: includes/class-wcj-pdf-invoices.php:1270
1980
+ #: includes/class-wcj-pdf-invoices.php:1273
1981
  msgid "Order Total (TAX excl.)"
1982
  msgstr ""
1983
 
1984
+ #: includes/class-wcj-pdf-invoices.php:1271
1985
  msgid ""
1986
  "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
1987
  "is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
1988
  "equal to \"Order Subtotal\""
1989
  msgstr ""
1990
 
1991
+ #: includes/class-wcj-pdf-invoices.php:1279
1992
  msgid "Order Total Taxes"
1993
  msgstr ""
1994
 
1995
+ #: includes/class-wcj-pdf-invoices.php:1288
1996
+ #: includes/class-wcj-pdf-invoices.php:1291
1997
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:116
1998
  msgid "Order Total"
1999
  msgstr ""
2000
 
2001
+ #: includes/class-wcj-pdf-invoices.php:1298
2002
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:24
2003
  msgid "Footer"
2004
  msgstr ""
2005
 
2006
+ #: includes/class-wcj-pdf-invoices.php:1301
2007
+ #: includes/class-wcj-pdf-invoices.php:1304
2008
  msgid "Payment Method"
2009
  msgstr ""
2010
 
2011
+ #: includes/class-wcj-pdf-invoices.php:1310
2012
+ #: includes/class-wcj-pdf-invoices.php:1313
2013
  msgid "Shipping Method"
2014
  msgstr ""
2015
 
2016
+ #: includes/class-wcj-pdf-invoices.php:1319
2017
+ #: includes/class-wcj-pdf-invoices.php:1322
2018
  msgid "Shipping Address"
2019
  msgstr ""
2020
 
2021
+ #: includes/class-wcj-pdf-invoices.php:1320
2022
  msgid ""
2023
  "Will be displayed only if customer's shipping address differs from billing "
2024
  "address. Leave blank to disable"
2025
  msgstr ""
2026
 
2027
+ #: includes/class-wcj-pdf-invoices.php:1328
2028
  msgid "Additional Footer"
2029
  msgstr ""
2030
 
2031
+ #: includes/class-wcj-pdf-invoices.php:1329
2032
  msgid ""
2033
  "Additional footer - will be displayed below all other data on invoice. You "
2034
  "can use html and/or shortcodes here."
2035
  msgstr ""
2036
 
2037
+ #: includes/class-wcj-pdf-invoices.php:1338
2038
+ msgid "General Options"
2039
  msgstr ""
2040
 
2041
+ #: includes/class-wcj-pdf-invoices.php:1341
2042
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:54
2043
+ msgid "Font Family"
2044
+ msgstr ""
2045
+
2046
+ #: includes/class-wcj-pdf-invoices.php:1357
2047
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:70
2048
+ msgid "Font Size"
2049
+ msgstr ""
2050
+
2051
+ #: includes/class-wcj-pdf-invoices.php:1358
2052
  msgid "Default: 8"
2053
  msgstr ""
2054
 
2055
+ #: includes/class-wcj-pdf-invoices.php:1365
2056
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:79
2057
+ msgid "Make Font Shadowed"
2058
+ msgstr ""
2059
+
2060
+ #: includes/class-wcj-pdf-invoices.php:1366
2061
+ msgid "Default: Yes"
2062
+ msgstr ""
2063
+
2064
+ #: includes/class-wcj-pdf-invoices.php:1373
2065
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:46
2066
  msgid "CSS"
2067
  msgstr ""
2068
 
2069
+ #: includes/class-wcj-pdf-invoices.php:1387
2070
  msgid "PDF Invoices for Customers (in My Account)"
2071
  msgstr ""
2072
 
2073
+ #: includes/class-wcj-pdf-invoices.php:1388
2074
  msgid "Enable the PDF Invoices in customers account"
2075
  msgstr ""
2076
 
2077
+ #: includes/class-wcj-pdf-invoices.php:1397
2078
  msgid "PDF Invoices for Customers (Email attachment)"
2079
  msgstr ""
2080
 
2081
+ #: includes/class-wcj-pdf-invoices.php:1398
2082
  msgid ""
2083
  "Enable the PDF Invoices attachment files in customers email on order "
2084
  "completed"
2085
  msgstr ""
2086
 
2087
+ #: includes/class-wcj-pdf-invoices.php:1417
2088
  msgid "Enable Save as"
2089
  msgstr ""
2090
 
2091
+ #: includes/class-wcj-pdf-invoices.php:1418
2092
  msgid "Enable save as pdf instead of view pdf"
2093
  msgstr ""
2094
 
2095
+ #: includes/class-wcj-pdf-invoicing.php:143
2096
+ msgid "PDF Invoicing General Options"
2097
+ msgstr ""
2098
+
2099
+ #: includes/class-wcj-pdf-invoicing.php:146
2100
+ msgid "PDF Invoicing"
2101
  msgstr ""
2102
 
2103
+ #: includes/class-wcj-pdf-invoicing.php:148
2104
+ msgid ""
2105
+ "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2106
+ msgstr ""
2107
+
2108
+ #: includes/class-wcj-pdf-invoicing.php:157
2109
+ msgid "Disabled"
2110
+ msgstr ""
2111
+
2112
+ #: includes/class-wcj-pdf-invoicing.php:158
2113
+ msgid "Create on New Order"
2114
+ msgstr ""
2115
+
2116
+ #: includes/class-wcj-pdf-invoicing.php:161
2117
+ msgid "Create on Order Status"
2118
+ msgstr ""
2119
+
2120
+ #: includes/class-wcj-price-by-country.php:62
2121
  msgid "Price by Country Options"
2122
  msgstr ""
2123
 
2124
+ #: includes/class-wcj-price-by-country.php:64
2125
  msgid ""
2126
  "Change product's price and currency by customer's country. Customer's "
2127
+ "country is detected automatically by IP, or selected by customer manually."
2128
  msgstr ""
2129
 
2130
+ #: includes/class-wcj-price-by-country.php:68
2131
+ #: includes/class-wcj-price-by-country.php:295
2132
+ msgid "Prices and Currencies by Country"
2133
  msgstr ""
2134
 
2135
+ #: includes/class-wcj-price-by-country.php:70
2136
+ msgid ""
2137
+ "Change WooCommerce product price and currency automatically by customer's "
2138
+ "country."
2139
+ msgstr ""
2140
+
2141
+ #: includes/class-wcj-price-by-country.php:77
2142
+ msgid "Customer Country Detection Method"
2143
+ msgstr ""
2144
+
2145
+ #: includes/class-wcj-price-by-country.php:79
2146
+ msgid ""
2147
+ "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
2148
+ "shortcode to display country selection list on frontend."
2149
+ msgstr ""
2150
+
2151
+ #: includes/class-wcj-price-by-country.php:83
2152
+ msgid "by IP"
2153
+ msgstr ""
2154
+
2155
+ #: includes/class-wcj-price-by-country.php:84
2156
+ msgid "by user selection"
2157
+ msgstr ""
2158
+
2159
+ #: includes/class-wcj-price-by-country.php:90
2160
+ msgid "Price Rounding"
2161
+ msgstr ""
2162
+
2163
+ #: includes/class-wcj-price-by-country.php:91
2164
+ msgid "If you choose to multiply price, set rounding options here."
2165
+ msgstr ""
2166
+
2167
+ #: includes/class-wcj-price-by-country.php:96
2168
+ msgid "No rounding"
2169
+ msgstr ""
2170
+
2171
+ #: includes/class-wcj-price-by-country.php:97
2172
+ msgid "Round"
2173
+ msgstr ""
2174
+
2175
+ #: includes/class-wcj-price-by-country.php:98
2176
+ msgid "Round down"
2177
+ msgstr ""
2178
+
2179
+ #: includes/class-wcj-price-by-country.php:99
2180
+ msgid "Round up"
2181
  msgstr ""
2182
 
2183
+ #: includes/class-wcj-price-by-country.php:104
2184
+ msgid "Price by Country on per Product Basis"
2185
  msgstr ""
2186
 
2187
+ #: includes/class-wcj-price-by-country.php:106
2188
+ msgid "This will add meta boxes in product edit."
2189
  msgstr ""
2190
 
2191
+ #: includes/class-wcj-price-by-country.php:114
2192
+ msgid "Country Groups"
2193
  msgstr ""
2194
 
2195
+ #: includes/class-wcj-price-by-country.php:117
2196
  msgid "Groups Number"
2197
  msgstr ""
2198
 
2199
+ #: includes/class-wcj-price-by-country.php:133
2200
  msgid ""
2201
  "Countries. List of comma separated country codes.<br>For country codes and "
2202
  "predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
2203
  "currencies-by-customers-country\">WooJetpack.com</a>"
2204
  msgstr ""
2205
 
2206
+ #: includes/class-wcj-price-by-country.php:154
2207
+ msgid "Currency"
2208
+ msgstr ""
2209
+
2210
+ #: includes/class-wcj-price-by-country.php:164
2211
+ msgid "Exchange Rates"
2212
+ msgstr ""
2213
+
2214
+ #: includes/class-wcj-price-by-country.php:167
2215
+ msgid "Exchange Rates Updates"
2216
+ msgstr ""
2217
+
2218
+ #: includes/class-wcj-price-by-country.php:172
2219
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:23
2220
+ msgid "Enter Rates Manually"
2221
+ msgstr ""
2222
+
2223
+ #: includes/class-wcj-price-by-country.php:173
2224
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:24
2225
+ msgid "Automatically: Update Hourly"
2226
+ msgstr ""
2227
+
2228
+ #: includes/class-wcj-price-by-country.php:174
2229
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:25
2230
+ msgid "Automatically: Update Twice Daily"
2231
+ msgstr ""
2232
+
2233
+ #: includes/class-wcj-price-by-country.php:175
2234
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:26
2235
+ msgid "Automatically: Update Daily"
2236
+ msgstr ""
2237
+
2238
+ #: includes/class-wcj-price-by-country.php:176
2239
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:27
2240
+ msgid "Automatically: Update Weekly"
2241
+ msgstr ""
2242
+
2243
+ #: includes/class-wcj-price-by-country.php:177
2244
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:28
2245
+ msgid "Automatically: Update Every Minute"
2246
+ msgstr ""
2247
+
2248
+ #: includes/class-wcj-price-by-country.php:199
2249
  msgid "Multiply Price by"
2250
  msgstr ""
2251
 
2252
+ #: includes/class-wcj-price-by-country.php:207
2253
+ msgid "Grab %s rate from Yahoo.com"
2254
  msgstr ""
2255
 
2256
+ #: includes/class-wcj-price-by-country.php:222
2257
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:141
2258
+ msgid "Make empty price"
2259
+ msgstr ""
2260
+
2261
+ #: includes/class-wcj-price-labels.php:117
2262
  msgid "Migrate from Custom Price Labels (Pro)"
2263
  msgstr ""
2264
 
2265
+ #: includes/class-wcj-price-labels.php:119
2266
  msgid ""
2267
  "Tool lets you copy all the data (that is labels) from Custom Price labels "
2268
  "(Pro) plugin to WooCommerce Jetpack."
2269
  msgstr ""
2270
 
2271
+ #: includes/class-wcj-price-labels.php:129
2272
  msgid "Migrate from Custom Price Labels"
2273
  msgstr ""
2274
 
2275
+ #: includes/class-wcj-price-labels.php:141
2276
  msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
2277
  msgstr ""
2278
 
2279
+ #: includes/class-wcj-price-labels.php:189
2280
  msgid "Migrating (product ID "
2281
  msgstr ""
2282
 
2283
+ #: includes/class-wcj-price-labels.php:190
2284
  msgid "Result: "
2285
  msgstr ""
2286
 
2287
+ #: includes/class-wcj-price-labels.php:212
2288
  msgid "Found data to migrate (product ID "
2289
  msgstr ""
2290
 
2291
+ #: includes/class-wcj-price-labels.php:226
2292
  msgid "No data to migrate found"
2293
  msgstr ""
2294
 
2295
+ #: includes/class-wcj-price-labels.php:230
2296
  msgid "No products found"
2297
  msgstr ""
2298
 
2299
+ #: includes/class-wcj-price-labels.php:235
2300
  msgid ""
2301
  "Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
2302
  "Old labels will NOT be deleted. New labels will be overwritten."
2303
  msgstr ""
2304
 
2305
+ #: includes/class-wcj-price-labels.php:236
2306
  msgid "Migrate data"
2307
  msgstr ""
2308
 
2309
+ #: includes/class-wcj-price-labels.php:531
2310
  msgid "Custom Price Labels Options"
2311
  msgstr ""
2312
 
2313
+ #: includes/class-wcj-price-labels.php:534
2314
+ #: includes/class-wcj-price-labels.php:647
2315
  msgid "Custom Price Labels"
2316
  msgstr ""
2317
 
2318
+ #: includes/class-wcj-price-labels.php:536
2319
+ msgid "Create any custom price label for any WooCommerce product."
 
 
 
 
2320
  msgstr ""
2321
 
2322
+ #: includes/class-wcj-price-labels.php:545
2323
  msgid "Global Custom Price Labels"
2324
  msgstr ""
2325
 
2326
+ #: includes/class-wcj-price-labels.php:547
2327
  msgid "This section lets you set price labels for all products globally."
2328
  msgstr ""
2329
 
2330
+ #: includes/class-wcj-price-labels.php:552
2331
  msgid "Add before the price"
2332
  msgstr ""
2333
 
2334
+ #: includes/class-wcj-price-labels.php:553
2335
  msgid "Enter text to add before all products prices. Leave blank to disable."
2336
  msgstr ""
2337
 
2338
+ #: includes/class-wcj-price-labels.php:564
2339
  msgid "Add after the price"
2340
  msgstr ""
2341
 
2342
+ #: includes/class-wcj-price-labels.php:565
2343
  msgid "Enter text to add after all products prices. Leave blank to disable."
2344
  msgstr ""
2345
 
2346
+ #: includes/class-wcj-price-labels.php:576
2347
  msgid "Add between regular and sale prices"
2348
  msgstr ""
2349
 
2350
+ #: includes/class-wcj-price-labels.php:577
2351
  msgid ""
2352
  "Enter text to add between regular and sale prices. Leave blank to disable."
2353
  msgstr ""
2372
  msgid "Enter text to replace with. Leave blank to disable."
2373
  msgstr ""
2374
 
2375
+ #: includes/class-wcj-price-labels.php:629
2376
  msgid "Migrate from Custom Price Labels (Pro) Options"
2377
  msgstr ""
2378
 
2379
+ #: includes/class-wcj-price-labels.php:629
2380
  msgid ""
2381
  "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
2382
  msgstr ""
2383
 
2384
+ #: includes/class-wcj-product-add-to-cart.php:24
2385
+ msgid "Product Add to Cart"
 
 
 
 
2386
  msgstr ""
2387
 
2388
+ #: includes/class-wcj-product-add-to-cart.php:25
2389
+ msgid ""
2390
+ "Set any local url to redirect to on WooCommerce Add to Cart. Automatically "
2391
+ "add to cart on product visit."
2392
  msgstr ""
2393
 
2394
+ #: includes/class-wcj-product-add-to-cart.php:48
2395
+ msgid "Add to Cart Local Redirect Options"
2396
  msgstr ""
2397
 
2398
+ #: includes/class-wcj-product-add-to-cart.php:50
2399
+ msgid ""
2400
+ "This section lets you set any local URL to redirect to after successfully "
2401
+ "adding product to cart. Leave empty to redirect to checkout page (skipping "
2402
+ "the cart page)."
2403
  msgstr ""
2404
 
2405
+ #: includes/class-wcj-product-add-to-cart.php:55
2406
+ msgid "Local Redirect"
2407
  msgstr ""
2408
 
2409
+ #: includes/class-wcj-product-add-to-cart.php:63
2410
+ msgid "Local Redirect URL"
2411
  msgstr ""
2412
 
2413
+ #: includes/class-wcj-product-add-to-cart.php:64
2414
+ msgid "Performs a safe (local) redirect, using wp_redirect()."
2415
  msgstr ""
2416
 
2417
+ #: includes/class-wcj-product-add-to-cart.php:65
2418
+ msgid "Local redirect URL. Leave empty to redirect to checkout."
2419
  msgstr ""
2420
 
2421
+ #: includes/class-wcj-product-add-to-cart.php:74
2422
+ #: includes/class-wcj-product-add-to-cart.php:77
2423
+ msgid "Add to Cart on Visit"
 
2424
  msgstr ""
2425
 
2426
+ #: includes/class-wcj-product-add-to-cart.php:74
2427
+ msgid ""
2428
+ "This section lets you enable automatically adding product to cart on "
2429
+ "visiting the product page. Product is only added once, so if it is already "
2430
+ "in cart - duplicate product is not added. "
2431
+ msgstr ""
2432
+
2433
+ #: includes/class-wcj-product-bulk-price-converter.php:44
2434
+ #: includes/class-wcj-product-bulk-price-converter.php:231
2435
+ #: includes/class-wcj-product-bulk-price-converter.php:261
2436
+ #: includes/class-wcj-product-bulk-price-converter.php:279
2437
+ msgid "Bulk Price Converter"
2438
+ msgstr ""
2439
+
2440
+ #: includes/class-wcj-product-bulk-price-converter.php:113
2441
+ #: includes/class-wcj-sku.php:165
2442
+ #: includes/reports/wcj-class-reports-stock.php:285
2443
+ msgid "Product"
2444
+ msgstr ""
2445
+
2446
+ #: includes/class-wcj-product-bulk-price-converter.php:114
2447
+ msgid "Price Type"
2448
+ msgstr ""
2449
+
2450
+ #: includes/class-wcj-product-bulk-price-converter.php:115
2451
+ #: includes/reports/wcj-class-reports-stock.php:286
2452
+ msgid "Price"
2453
+ msgstr ""
2454
+
2455
+ #: includes/class-wcj-product-bulk-price-converter.php:116
2456
+ msgid "Modified Price"
2457
+ msgstr ""
2458
+
2459
+ #: includes/class-wcj-product-bulk-price-converter.php:136
2460
+ msgid "Multiply value must be above zero."
2461
+ msgstr ""
2462
+
2463
+ #: includes/class-wcj-product-bulk-price-converter.php:143
2464
+ msgid "Prices changed successfully!"
2465
+ msgstr ""
2466
+
2467
+ #: includes/class-wcj-product-bulk-price-converter.php:150
2468
+ msgid "WooCommerce Jetpack - Bulk Price Converter"
2469
+ msgstr ""
2470
+
2471
+ #: includes/class-wcj-product-bulk-price-converter.php:151
2472
+ #: includes/class-wcj-product-bulk-price-converter.php:233
2473
+ msgid "Bulk Price Converter Tool."
2474
+ msgstr ""
2475
+
2476
+ #: includes/class-wcj-product-bulk-price-converter.php:154
2477
+ msgid "Multiply all product prices by"
2478
+ msgstr ""
2479
+
2480
+ #: includes/class-wcj-product-bulk-price-converter.php:254
2481
+ msgid "Bulk Price Converter Options"
2482
+ msgstr ""
2483
+
2484
+ #: includes/class-wcj-product-bulk-price-converter.php:256
2485
+ msgid ""
2486
+ "When enabled, the tool is accessible through WooCommerce > Jetpack Tools > "
2487
+ "Bulk Price Converter."
2488
+ msgstr ""
2489
+
2490
+ #: includes/class-wcj-product-bulk-price-converter.php:263
2491
+ msgid "Multiply all WooCommerce products prices by set value."
2492
+ msgstr ""
2493
+
2494
+ #: includes/class-wcj-product-images.php:24
2495
+ msgid "Product Images"
2496
+ msgstr ""
2497
+
2498
+ #: includes/class-wcj-product-images.php:25
2499
+ msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2500
+ msgstr ""
2501
+
2502
+ #: includes/class-wcj-product-images.php:80
2503
+ #: includes/class-wcj-product-images.php:174
2504
+ msgid "Sale!"
2505
+ msgstr ""
2506
+
2507
+ #: includes/class-wcj-product-images.php:112
2508
+ msgid "Product Image and Thumbnails"
2509
+ msgstr ""
2510
+
2511
+ #: includes/class-wcj-product-images.php:122
2512
+ msgid "Image and Thumbnails on Single"
2513
+ msgstr ""
2514
+
2515
+ #: includes/class-wcj-product-images.php:130
2516
+ msgid "Image on Single"
2517
+ msgstr ""
2518
+
2519
+ #: includes/class-wcj-product-images.php:138
2520
+ msgid "Thumbnails on Single"
2521
+ msgstr ""
2522
+
2523
+ #: includes/class-wcj-product-images.php:146
2524
+ msgid "Image on Archives"
2525
+ msgstr ""
2526
+
2527
+ #: includes/class-wcj-product-images.php:154
2528
+ msgid "Single Product Thumbnails Columns"
2529
+ msgstr ""
2530
+
2531
+ #: includes/class-wcj-product-images.php:162
2532
+ msgid "Product Images Sale Flash"
2533
+ msgstr ""
2534
+
2535
+ #: includes/class-wcj-product-images.php:172
2536
+ msgid "HTML"
2537
+ msgstr ""
2538
+
2539
+ #: includes/class-wcj-product-images.php:180
2540
+ msgid "Hide on Archives (Categories)"
2541
+ msgstr ""
2542
+
2543
+ #: includes/class-wcj-product-images.php:187
2544
+ msgid "Hide on Single"
2545
+ msgstr ""
2546
+
2547
+ #: includes/class-wcj-product-info.php:26
2548
+ msgid "Before product"
2549
+ msgstr ""
2550
+
2551
+ #: includes/class-wcj-product-info.php:27
2552
+ msgid "Before product title"
2553
+ msgstr ""
2554
+
2555
+ #: includes/class-wcj-product-info.php:28
2556
+ msgid "After product"
2557
+ msgstr ""
2558
+
2559
+ #: includes/class-wcj-product-info.php:29
2560
+ msgid "After product title"
2561
+ msgstr ""
2562
+
2563
+ #: includes/class-wcj-product-info.php:34
2564
+ msgid "Inside single product summary"
2565
+ msgstr ""
2566
+
2567
+ #: includes/class-wcj-product-info.php:35
2568
+ msgid "Before single product summary"
2569
+ msgstr ""
2570
+
2571
+ #: includes/class-wcj-product-info.php:36
2572
+ msgid "After single product summary"
2573
+ msgstr ""
2574
+
2575
+ #: includes/class-wcj-product-info.php:295
2576
+ msgid "Available shortcodes are:"
2577
+ msgstr ""
2578
+
2579
+ #: includes/class-wcj-product-info.php:596
2580
+ msgid "%s ago"
2581
+ msgstr ""
2582
+
2583
+ #: includes/class-wcj-product-info.php:638
2584
+ #: includes/class-wcj-product-info.php:766
2585
+ #: includes/class-wcj-product-info.php:806
2586
+ #: includes/class-wcj-product-tabs.php:350
2587
  #: includes/class-wcj-product-tabs.php:442
2588
  #: includes/class-wcj-product-tabs.php:468
2589
  #: includes/class-wcj-product-tabs.php:494
2590
  msgid "Priority (i.e. Order)"
2591
  msgstr ""
2592
 
2593
+ #: includes/class-wcj-product-info.php:646
2594
  msgid ""
2595
  "Number of product info fields. Click \"Save changes\" after you change this "
2596
  "number."
2597
  msgstr ""
2598
 
2599
+ #: includes/class-wcj-product-info.php:669
2600
  msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2601
  msgstr ""
2602
 
2603
+ #: includes/class-wcj-product-info.php:670
2604
+ #: includes/class-wcj-product-info.php:784
2605
  msgid "Total sales: %total_sales%"
2606
  msgstr ""
2607
 
2608
+ #: includes/class-wcj-product-info.php:673
2609
  msgid "Default"
2610
  msgstr ""
2611
 
2612
+ #: includes/class-wcj-product-info.php:675
2613
  msgid "Field Nr. "
2614
  msgstr ""
2615
 
2616
+ #: includes/class-wcj-product-info.php:675
2617
  msgid "Available short codes: "
2618
  msgstr ""
2619
 
2620
+ #: includes/class-wcj-product-info.php:705
2621
  msgid "Product Info Options"
2622
  msgstr ""
2623
 
2624
+ #: includes/class-wcj-product-info.php:708
2625
+ #: includes/class-wcj-product-info.php:832
2626
  msgid "Product Info"
2627
  msgstr ""
2628
 
2629
+ #: includes/class-wcj-product-info.php:710
2630
+ msgid "Add additional info to WooCommerce category and single product pages."
 
 
 
 
2631
  msgstr ""
2632
 
2633
+ #: includes/class-wcj-product-info.php:719
2634
  msgid "More Products Info"
2635
  msgstr ""
2636
 
2637
+ #: includes/class-wcj-product-info.php:720
2638
  msgid ""
2639
  "For full list of short codes, please visit <a target=\"_blank\" href="
2640
  "\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
2641
  "features/product-info/</a>"
2642
  msgstr ""
2643
 
2644
+ #: includes/class-wcj-product-info.php:725
2645
+ #: includes/class-wcj-product-info.php:736
2646
  msgid "Product Info on Archive Pages"
2647
  msgstr ""
2648
 
2649
+ #: includes/class-wcj-product-info.php:726
2650
  msgid "Product Info on Single Pages"
2651
  msgstr ""
2652
 
2653
+ #: includes/class-wcj-product-info.php:733
2654
  msgid "Even More Products Info"
2655
  msgstr ""
2656
 
2657
+ #: includes/class-wcj-product-info.php:745
2658
+ #: includes/class-wcj-product-info.php:782
2659
  msgid "HTML info."
2660
  msgstr ""
2661
 
2662
+ #: includes/class-wcj-product-info.php:747
2663
  msgid "SKU: %sku%"
2664
  msgstr ""
2665
 
2666
+ #: includes/class-wcj-product-info.php:773
2667
  msgid "Product Info on Single Product Pages"
2668
  msgstr ""
2669
 
2670
+ #: includes/class-wcj-product-info.php:813
2671
+ msgid "Product IDs to exclude"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2672
  msgstr ""
2673
 
2674
+ #: includes/class-wcj-product-info.php:814
2675
+ msgid "Comma separated list of product IDs to exclude from product info."
2676
  msgstr ""
2677
 
2678
+ #: includes/class-wcj-product-input-fields.php:128
2679
+ msgid "Product Input Fields Options"
2680
  msgstr ""
2681
 
2682
+ #: includes/class-wcj-product-input-fields.php:131
2683
+ #: includes/class-wcj-product-input-fields.php:246
2684
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:111
2685
+ msgid "Product Input Fields"
2686
  msgstr ""
2687
 
2688
+ #: includes/class-wcj-product-input-fields.php:133
2689
+ msgid "WooCommerce product input fields."
2690
  msgstr ""
2691
 
2692
+ #: includes/class-wcj-product-input-fields.php:142
2693
+ msgid "Product Input Fields per Product Options"
2694
  msgstr ""
2695
 
2696
+ #: includes/class-wcj-product-input-fields.php:144
2697
+ #: includes/class-wcj-product-input-fields.php:178
2698
  msgid ""
2699
  "Add custom input fields to product's single page for customer to fill before "
2700
  "adding product to cart."
2701
  msgstr ""
2702
 
2703
+ #: includes/class-wcj-product-input-fields.php:146
2704
+ msgid ""
2705
+ "When enabled this module will add \"Product Input Fields\" tab to product's "
2706
+ "\"Edit\" page."
 
 
 
2707
  msgstr ""
2708
 
2709
+ #: includes/class-wcj-product-input-fields.php:151
2710
+ msgid "Product Input Fields - per Product"
2711
  msgstr ""
2712
 
2713
+ #: includes/class-wcj-product-input-fields.php:153
2714
+ msgid "Add custom input field on per product basis."
2715
  msgstr ""
2716
 
2717
+ #: includes/class-wcj-product-input-fields.php:160
2718
+ msgid "Default Number of Product Input Fields per Product"
2719
  msgstr ""
2720
 
2721
+ #: includes/class-wcj-product-input-fields.php:162
2722
+ msgid ""
2723
+ "You will be able to change this number later as well as define the fields, "
2724
+ "for each product individually, in product's \"Edit\"."
2725
  msgstr ""
2726
 
2727
+ #: includes/class-wcj-product-input-fields.php:176
2728
+ msgid "Product Input Fields Global Options"
 
2729
  msgstr ""
2730
 
2731
+ #: includes/class-wcj-product-input-fields.php:183
2732
+ msgid "Product Input Fields - All Products"
2733
  msgstr ""
2734
 
2735
+ #: includes/class-wcj-product-input-fields.php:185
2736
+ msgid "Add custom input fields to all products."
 
 
2737
  msgstr ""
2738
 
2739
+ #: includes/class-wcj-product-input-fields.php:192
2740
+ msgid "Product Input Fields Number"
 
2741
  msgstr ""
2742
 
2743
+ #: includes/class-wcj-product-input-fields.php:208
2744
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:142
2745
+ msgid "Product Input Field"
2746
  msgstr ""
2747
 
2748
+ #: includes/class-wcj-product-input-fields.php:226
2749
+ msgid "Admin Order View Options"
2750
  msgstr ""
2751
 
2752
+ #: includes/class-wcj-product-input-fields.php:229
2753
+ msgid "Replace Field ID with Field Label"
 
 
2754
  msgstr ""
2755
 
2756
  #: includes/class-wcj-product-listings.php:56
2762
  msgid "Product Listings"
2763
  msgstr ""
2764
 
 
 
 
 
2765
  #: includes/class-wcj-product-listings.php:61
2766
  msgid ""
2767
+ "Change WooCommerce display options for shop and category pages: show/hide "
2768
+ "categories count, exclude categories, show/hide empty categories."
2769
  msgstr ""
2770
 
2771
  #: includes/class-wcj-product-listings.php:69
2892
  msgid "Total number of custom tabs"
2893
  msgstr ""
2894
 
2895
+ #: includes/class-wcj-product-tabs.php:229
2896
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:137
2897
+ msgid "Click \"Update\" product after you change this number."
2898
  msgstr ""
2899
 
2900
+ #: includes/class-wcj-product-tabs.php:238
2901
+ #: includes/class-wcj-product-tabs.php:342
2902
+ #: includes/class-wcj-product-tabs.php:452
2903
+ #: includes/class-wcj-product-tabs.php:478
2904
+ #: includes/class-wcj-product-tabs.php:504
2905
+ #: includes/class-wcj-related-products.php:100
2906
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:54
2907
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:94
2908
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:62
2909
+ msgid "Title"
2910
  msgstr ""
2911
 
2912
  #: includes/class-wcj-product-tabs.php:252
2927
  msgid "Product Tabs Options"
2928
  msgstr ""
2929
 
 
 
 
 
2930
  #: includes/class-wcj-product-tabs.php:315
2931
  msgid ""
2932
  "Add custom product tabs - globally or per product. Customize or completely "
3017
  msgid "Reviews Tab"
3018
  msgstr ""
3019
 
3020
+ #: includes/class-wcj-purchase-data.php:26
3021
+ msgid "Product Cost Price"
3022
  msgstr ""
3023
 
3024
+ #: includes/class-wcj-purchase-data.php:27
3025
+ msgid "Save WooCommerce product purchase costs data for admin reports."
3026
  msgstr ""
3027
 
3028
+ #: includes/class-wcj-purchase-data.php:52
3029
+ #: includes/class-wcj-purchase-data.php:238
3030
+ #: includes/class-wcj-purchase-data.php:320
3031
+ msgid "Profit"
3032
  msgstr ""
3033
 
3034
+ #: includes/class-wcj-purchase-data.php:144
3035
+ msgid "WooCommerce Jetpack"
3036
  msgstr ""
3037
 
3038
+ #: includes/class-wcj-purchase-data.php:169
3039
+ msgid "Product cost (purchase) price"
3040
  msgstr ""
3041
 
3042
+ #: includes/class-wcj-purchase-data.php:173
3043
+ msgid "Extra expenses (shipping etc.)"
3044
  msgstr ""
3045
 
3046
+ #: includes/class-wcj-purchase-data.php:181
3047
+ msgid "(Last) Purchase date"
3048
  msgstr ""
3049
 
3050
+ #: includes/class-wcj-purchase-data.php:185
3051
+ msgid "Purchase info"
3052
  msgstr ""
3053
 
3054
+ #: includes/class-wcj-purchase-data.php:214
3055
+ msgid "Report"
3056
  msgstr ""
3057
 
3058
+ #: includes/class-wcj-purchase-data.php:219
3059
+ msgid "Selling"
 
 
3060
  msgstr ""
3061
 
3062
+ #: includes/class-wcj-purchase-data.php:228
3063
+ msgid "Buying"
 
 
3064
  msgstr ""
3065
 
3066
+ #: includes/class-wcj-related-products.php:23
3067
+ msgid "Related Products"
 
 
3068
  msgstr ""
3069
 
3070
+ #: includes/class-wcj-related-products.php:24
3071
  msgid ""
3072
+ "Change displayed WooCommerce related products number, columns, order, relate "
3073
+ "by tag and/or category, or hide related products completely."
3074
  msgstr ""
3075
 
3076
+ #: includes/class-wcj-related-products.php:79
3077
+ msgid "Related Products Number"
3078
  msgstr ""
3079
 
3080
+ #: includes/class-wcj-related-products.php:86
3081
+ msgid "Related Products Columns"
 
3082
  msgstr ""
3083
 
3084
+ #: includes/class-wcj-related-products.php:93
3085
+ msgid "Order by"
3086
  msgstr ""
3087
 
3088
+ #: includes/class-wcj-related-products.php:98
3089
+ msgid "Random"
3090
  msgstr ""
3091
 
3092
+ #: includes/class-wcj-related-products.php:99
3093
+ msgid "Date"
3094
  msgstr ""
3095
 
3096
+ #: includes/class-wcj-related-products.php:105
3097
+ msgid "Order"
3098
  msgstr ""
3099
 
3100
+ #: includes/class-wcj-related-products.php:106
3101
+ msgid "Ignored if order by \"Random\" is selected above."
3102
  msgstr ""
3103
 
3104
+ #: includes/class-wcj-related-products.php:111
3105
+ msgid "Ascending"
3106
  msgstr ""
3107
 
3108
+ #: includes/class-wcj-related-products.php:112
3109
+ msgid "Descending"
 
 
3110
  msgstr ""
3111
 
3112
+ #: includes/class-wcj-related-products.php:117
3113
+ msgid "Relate by Category"
3114
  msgstr ""
3115
 
3116
+ #: includes/class-wcj-related-products.php:124
3117
+ msgid "Relate by Tag"
3118
  msgstr ""
3119
 
3120
+ #: includes/class-wcj-related-products.php:131
3121
+ msgid "Hide Related Products"
3122
  msgstr ""
3123
 
3124
+ #: includes/class-wcj-reports.php:67
3125
+ msgid "WooJetpack: More Ranges - Months"
3126
  msgstr ""
3127
 
3128
+ #: includes/class-wcj-reports.php:69 includes/class-wcj-reports.php:104
3129
+ msgid "Select Range"
3130
  msgstr ""
3131
 
3132
+ #: includes/class-wcj-reports.php:102
3133
+ msgid "WooJetpack: More Ranges"
3134
  msgstr ""
3135
 
3136
+ #: includes/class-wcj-reports.php:112 includes/class-wcj-reports.php:114
3137
+ msgid "Last 14 Days"
3138
  msgstr ""
3139
 
3140
+ #: includes/class-wcj-reports.php:119 includes/class-wcj-reports.php:121
3141
+ msgid "Last 30 Days"
3142
  msgstr ""
3143
 
3144
+ #: includes/class-wcj-reports.php:126 includes/class-wcj-reports.php:128
3145
+ msgid "Last 3 Months"
 
 
3146
  msgstr ""
3147
 
3148
+ #: includes/class-wcj-reports.php:133 includes/class-wcj-reports.php:135
3149
+ msgid "Last 6 Months"
3150
  msgstr ""
3151
 
3152
+ #: includes/class-wcj-reports.php:140 includes/class-wcj-reports.php:142
3153
+ msgid "Last 12 Months"
3154
  msgstr ""
3155
 
3156
+ #: includes/class-wcj-reports.php:147 includes/class-wcj-reports.php:149
3157
+ msgid "Last 24 Months"
3158
  msgstr ""
3159
 
3160
+ #: includes/class-wcj-reports.php:154 includes/class-wcj-reports.php:156
3161
+ msgid "Same Days Last Month"
3162
  msgstr ""
3163
 
3164
+ #: includes/class-wcj-reports.php:168 includes/class-wcj-reports.php:170
3165
+ msgid "Last Year"
3166
  msgstr ""
3167
 
3168
+ #: includes/class-wcj-reports.php:213
3169
+ msgid "WooJetpack: All in stock"
3170
  msgstr ""
3171
 
3172
+ #: includes/class-wcj-reports.php:220
3173
+ msgid "WooJetpack: Understocked"
3174
+ msgstr ""
3175
+
3176
+ #: includes/class-wcj-reports.php:227
3177
+ msgid "WooJetpack: Overstocked"
3178
+ msgstr ""
3179
+
3180
+ #: includes/class-wcj-reports.php:242
3181
+ msgid "WooJetpack: Customers by Country"
3182
+ msgstr ""
3183
+
3184
+ #: includes/class-wcj-reports.php:249
3185
+ msgid "WooJetpack: Customers by Country Sets"
3186
+ msgstr ""
3187
+
3188
+ #: includes/class-wcj-reports.php:274
3189
+ msgid "Reports Options"
3190
+ msgstr ""
3191
+
3192
+ #: includes/class-wcj-reports.php:277 includes/class-wcj-reports.php:314
3193
+ msgid "Reports"
3194
+ msgstr ""
3195
+
3196
+ #: includes/class-wcj-reports.php:279
3197
+ msgid "WooCommerce stock, sales, customers etc. reports."
3198
+ msgstr ""
3199
+
3200
+ #: includes/class-wcj-reports.php:288
3201
+ msgid "Available Reports"
3202
+ msgstr ""
3203
+
3204
+ #: includes/class-wcj-reports.php:291
3205
+ msgid ""
3206
+ "WooJetpack: Customers by Country. Available in WooCommerce > Reports > "
3207
+ "Customers."
3208
+ msgstr ""
3209
+
3210
+ #: includes/class-wcj-reports.php:293
3211
+ msgid ""
3212
+ "WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
3213
+ "Customers."
3214
+ msgstr ""
3215
+
3216
+ #: includes/class-wcj-reports.php:295
3217
+ msgid ""
3218
+ "WooJetpack: All in Stock with sales data. Available in WooCommerce > Reports "
3219
+ "> Stock."
3220
+ msgstr ""
3221
+
3222
+ #: includes/class-wcj-reports.php:297
3223
+ msgid ""
3224
+ "WooJetpack: Understocked products (calculated by sales data). Available in "
3225
+ "WooCommerce > Reports > Stock."
3226
+ msgstr ""
3227
+
3228
+ #: includes/class-wcj-reports.php:299
3229
+ msgid ""
3230
+ "WooJetpack: Overstocked products (calculated by sales data). Available in "
3231
+ "WooCommerce > Reports > Stock."
3232
+ msgstr ""
3233
+
3234
+ #: includes/class-wcj-shipping-calculator.php:116
3235
+ msgid "Shipping Calculator Options"
3236
+ msgstr ""
3237
+
3238
+ #: includes/class-wcj-shipping-calculator.php:119
3239
+ #: includes/class-wcj-shipping-calculator.php:196
3240
+ msgid "Shipping Calculator"
3241
+ msgstr ""
3242
+
3243
+ #: includes/class-wcj-shipping-calculator.php:121
3244
+ msgid "Customize WooCommerce shipping calculator on cart page."
3245
+ msgstr ""
3246
+
3247
+ #: includes/class-wcj-shipping-calculator.php:128
3248
+ msgid "Enable City"
3249
+ msgstr ""
3250
+
3251
+ #: includes/class-wcj-shipping-calculator.php:136
3252
+ msgid "Enable Postcode"
3253
+ msgstr ""
3254
+
3255
+ #: includes/class-wcj-shipping-calculator.php:144
3256
+ msgid "Enable State"
3257
+ msgstr ""
3258
+
3259
+ #: includes/class-wcj-shipping-calculator.php:152
3260
+ msgid "Force Block Open"
3261
+ msgstr ""
3262
+
3263
+ #: includes/class-wcj-shipping-calculator.php:161
3264
+ msgid "Calculate Shipping button"
3265
+ msgstr ""
3266
+
3267
+ #: includes/class-wcj-shipping-calculator.php:162
3268
+ msgid ""
3269
+ "When \"Force Block Open\" options is enabled, set Calculate Shipping button "
3270
+ "options."
3271
+ msgstr ""
3272
+
3273
+ #: includes/class-wcj-shipping-calculator.php:168
3274
+ msgid "Make non clickable"
3275
+ msgstr ""
3276
+
3277
+ #: includes/class-wcj-shipping.php:63
3278
+ msgid "WooCommerce Jetpack: Hide shipping"
3279
+ msgstr ""
3280
+
3281
+ #: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
3282
+ msgid "Hide local delivery when free is available"
3283
+ msgstr ""
3284
+
3285
+ #: includes/class-wcj-shipping.php:75 includes/class-wcj-shipping.php:180
3286
+ msgid "Hide all when free is available"
3287
+ msgstr ""
3288
+
3289
+ #: includes/class-wcj-shipping.php:152
3290
+ msgid "Shipping Options"
3291
+ msgstr ""
3292
+
3293
+ #: includes/class-wcj-shipping.php:157
3294
+ msgid "Hide WooCommerce shipping when free is available."
3295
+ msgstr ""
3296
+
3297
+ #: includes/class-wcj-shipping.php:165
3298
+ msgid "Hide if free is available"
3299
+ msgstr ""
3300
+
3301
+ #: includes/class-wcj-shipping.php:165
3302
+ msgid ""
3303
+ "This section lets you hide other shipping options when free shipping is "
3304
+ "available on shop frontend."
3305
+ msgstr ""
3306
+
3307
+ #: includes/class-wcj-shipping.php:169
3308
+ msgid "Hide shipping"
3309
+ msgstr ""
3310
+
3311
+ #: includes/class-wcj-shortcodes.php:61 includes/class-wcj-shortcodes.php:66
3312
+ msgid "Shortcodes."
3313
+ msgstr ""
3314
+
3315
+ #: includes/class-wcj-shortcodes.php:64 includes/class-wcj-shortcodes.php:82
3316
+ msgid "Shortcodes"
3317
+ msgstr ""
3318
+
3319
+ #: includes/class-wcj-shortcodes.php:65
3320
+ msgid "Enable the Shortcodes feature"
3321
+ msgstr ""
3322
+
3323
+ #: includes/class-wcj-sku.php:25 includes/class-wcj-sku.php:166
3324
+ msgid "SKU"
3325
+ msgstr ""
3326
+
3327
+ #: includes/class-wcj-sku.php:26
3328
+ msgid "Generate WooCommerce SKUs automatically."
3329
+ msgstr ""
3330
+
3331
+ #: includes/class-wcj-sku.php:29
3332
+ msgid "Autogenerate SKUs for Existing Products"
3333
+ msgstr ""
3334
+
3335
+ #: includes/class-wcj-sku.php:145 includes/class-wcj-sku.php:196
3336
+ msgid "Autogenerate SKUs"
3337
+ msgstr ""
3338
+
3339
+ #: includes/class-wcj-sku.php:172
3340
+ msgid "SKUs generated and set successfully!"
3341
+ msgstr ""
3342
+
3343
+ #: includes/class-wcj-sku.php:176
3344
+ msgid "WooCommerce Jetpack - Autogenerate SKUs"
3345
+ msgstr ""
3346
+
3347
+ #: includes/class-wcj-sku.php:177 includes/class-wcj-sku.php:198
3348
+ msgid "The tool generates and sets product SKUs."
3349
+ msgstr ""
3350
+
3351
+ #: includes/class-wcj-sku.php:210
3352
+ msgid "SKU Format Options"
3353
+ msgstr ""
3354
+
3355
+ #: includes/class-wcj-sku.php:217
3356
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:49
3357
+ msgid "Prefix"
3358
+ msgstr ""
3359
+
3360
+ #: includes/class-wcj-sku.php:224
3361
+ msgid "Minimum Number Length"
3362
+ msgstr ""
3363
+
3364
+ #: includes/class-wcj-sku.php:231
3365
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:61
3366
+ msgid "Suffix"
3367
+ msgstr ""
3368
+
3369
+ #: includes/class-wcj-sku.php:241
3370
+ msgid "Variable Products Variations"
3371
+ msgstr ""
3372
+
3373
+ #: includes/class-wcj-sku.php:246
3374
+ msgid "SKU same as parent's product"
3375
  msgstr ""
3376
 
3377
+ #: includes/class-wcj-sku.php:247
3378
+ msgid "Generate different SKU for each variation"
3379
  msgstr ""
3380
 
3381
+ #: includes/class-wcj-sku.php:248
3382
+ msgid "SKU same as parent's product + variation letter suffix"
3383
+ msgstr ""
3384
+
3385
+ #: includes/class-wcj-sku.php:264
3386
+ msgid ""
3387
+ "When enabled - all new products will be given (autogenerated) SKU.<br>If you "
3388
+ "wish to set SKUs for existing products, use Autogenerate SKUs Tool."
3389
+ msgstr ""
3390
+
3391
+ #: includes/class-wcj-sorting.php:27
3392
  msgid "Sorting"
3393
  msgstr ""
3394
 
3395
+ #: includes/class-wcj-sorting.php:28
3396
+ msgid ""
3397
+ "Add more WooCommerce sorting options or remove all sorting including default."
3398
+ msgstr ""
3399
+
3400
+ #: includes/class-wcj-sorting.php:64
3401
+ msgid "WooJetpack: Remove All Sorting"
3402
  msgstr ""
3403
 
3404
+ #: includes/class-wcj-sorting.php:68
3405
+ msgid "Completely remove sorting from the shop front end"
3406
  msgstr ""
3407
 
3408
+ #: includes/class-wcj-sorting.php:174 includes/class-wcj-sorting.php:181
3409
  msgid "Remove All Sorting"
3410
  msgstr ""
3411
 
3412
+ #: includes/class-wcj-sorting.php:182
3413
  msgid "Remove all sorting (including WooCommerce default)"
3414
  msgstr ""
3415
 
3416
+ #: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:204
3417
  msgid "Add More Sorting"
3418
  msgstr ""
3419
 
3420
+ #: includes/class-wcj-sorting.php:212
3421
  msgid "Sort by Name"
3422
  msgstr ""
3423
 
3424
+ #: includes/class-wcj-sorting.php:213 includes/class-wcj-sorting.php:216
3425
  msgid "Sort by title: A to Z"
3426
  msgstr ""
3427
 
3428
+ #: includes/class-wcj-sorting.php:214 includes/class-wcj-sorting.php:224
3429
+ #: includes/class-wcj-sorting.php:234 includes/class-wcj-sorting.php:244
3430
+ #: includes/class-wcj-sorting.php:265 includes/class-wcj-sorting.php:275
3431
  msgid "Text to show on frontend. Leave blank to disable."
3432
  msgstr ""
3433
 
3434
+ #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:226
3435
  msgid "Sort by title: Z to A"
3436
  msgstr ""
3437
 
3438
+ #: includes/class-wcj-sorting.php:232
3439
  msgid "Sort by SKU"
3440
  msgstr ""
3441
 
3442
+ #: includes/class-wcj-sorting.php:233 includes/class-wcj-sorting.php:236
3443
  msgid "Sort by SKU: low to high"
3444
  msgstr ""
3445
 
3446
+ #: includes/class-wcj-sorting.php:243 includes/class-wcj-sorting.php:246
3447
  msgid "Sort by SKU: high to low"
3448
  msgstr ""
3449
 
3450
+ #: includes/class-wcj-sorting.php:253
3451
+ msgid "Sort SKUs as numbers instead of as texts"
3452
+ msgstr ""
3453
+
3454
+ #: includes/class-wcj-sorting.php:263
3455
  msgid "Sort by stock quantity"
3456
  msgstr ""
3457
 
3458
+ #: includes/class-wcj-sorting.php:264 includes/class-wcj-sorting.php:267
3459
  msgid "Sort by stock quantity: low to high"
3460
  msgstr ""
3461
 
3462
+ #: includes/class-wcj-sorting.php:274 includes/class-wcj-sorting.php:277
3463
  msgid "Sort by stock quantity: high to low"
3464
  msgstr ""
3465
 
3466
+ #: includes/class-wcj-wholesale-price.php:24
3467
+ msgid "Wholesale Price"
3468
+ msgstr ""
3469
+
3470
+ #: includes/class-wcj-wholesale-price.php:25
3471
+ msgid ""
3472
+ "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
3473
+ "more pay less)."
3474
+ msgstr ""
3475
+
3476
+ #: includes/class-wcj-wholesale-price.php:151
3477
+ msgid "Wholesale Price Levels Options"
3478
+ msgstr ""
3479
+
3480
+ #: includes/class-wcj-wholesale-price.php:153
3481
+ msgid ""
3482
+ "Wholesale Price Levels Options. If you want to display prices table on "
3483
+ "frontend, use [wcj_product_wholesale_price_table] shortcode."
3484
+ msgstr ""
3485
+
3486
+ #: includes/class-wcj-wholesale-price.php:158
3487
+ msgid "Use total cart quantity instead of product quantity"
3488
+ msgstr ""
3489
+
3490
+ #: includes/class-wcj-wholesale-price.php:166
3491
+ msgid "Show discount info on cart page"
3492
+ msgstr ""
3493
+
3494
+ #: includes/class-wcj-wholesale-price.php:167
3495
+ msgid "Show"
3496
+ msgstr ""
3497
+
3498
+ #: includes/class-wcj-wholesale-price.php:174
3499
+ msgid "If show discount info on cart page is enabled, set format here"
3500
+ msgstr ""
3501
+
3502
+ #: includes/class-wcj-wholesale-price.php:182
3503
+ msgid "Products to include"
3504
+ msgstr ""
3505
+
3506
+ #: includes/class-wcj-wholesale-price.php:183
3507
+ msgid "Leave blank to include all products."
3508
+ msgstr ""
3509
+
3510
+ #: includes/class-wcj-wholesale-price.php:193
3511
+ msgid "Number of levels"
3512
+ msgstr ""
3513
+
3514
+ #: includes/class-wcj-wholesale-price.php:208
3515
+ msgid "Min quantity"
3516
+ msgstr ""
3517
+
3518
+ #: includes/class-wcj-wholesale-price.php:209
3519
+ msgid "Minimum quantity to apply discount"
3520
+ msgstr ""
3521
+
3522
+ #: includes/class-wcj-wholesale-price.php:217
3523
+ #: includes/class-wcj-wholesale-price.php:218
3524
+ msgid "Discount (%)"
3525
+ msgstr ""
3526
+
3527
+ #: includes/class-wcj-wpml.php:24
3528
+ msgid "WPML"
3529
+ msgstr ""
3530
+
3531
+ #: includes/class-wcj-wpml.php:25
3532
+ msgid "Booster for WooCommerce basic WPML support."
3533
+ msgstr ""
3534
+
3535
+ #: includes/classes/class-wcj-module.php:92
3536
+ msgid "Back to Module Settings"
3537
+ msgstr ""
3538
+
3539
+ #: includes/classes/class-wcj-module.php:104
3540
+ msgid "Tools"
3541
+ msgstr ""
3542
+
3543
+ #: includes/classes/class-wcj-module.php:110
3544
+ msgid "Module Tools"
3545
+ msgstr ""
3546
+
3547
+ #: includes/classes/class-wcj-module.php:163
3548
+ msgid "Options"
3549
+ msgstr ""
3550
+
3551
  #: includes/currencies/wcj-currencies.php:4
3552
  msgid "Afghan afghani"
3553
  msgstr ""
3853
  msgid "Lao kip"
3854
  msgstr ""
3855
 
3856
+ #: includes/currencies/wcj-currencies.php:82
3857
  msgid "Latvian lats"
3858
  msgstr ""
3859
 
3860
+ #: includes/currencies/wcj-currencies.php:83
3861
  msgid "Lebanese lira"
3862
  msgstr ""
3863
 
3864
+ #: includes/currencies/wcj-currencies.php:84
3865
  msgid "Lesotho loti"
3866
  msgstr ""
3867
 
3868
+ #: includes/currencies/wcj-currencies.php:85
3869
  msgid "Liberian dollar"
3870
  msgstr ""
3871
 
3872
+ #: includes/currencies/wcj-currencies.php:86
3873
  msgid "Libyan dinar"
3874
  msgstr ""
3875
 
3876
+ #: includes/currencies/wcj-currencies.php:87
3877
  msgid "Lithuanian litas"
3878
  msgstr ""
3879
 
3880
+ #: includes/currencies/wcj-currencies.php:88
3881
  msgid "Macanese pataca"
3882
  msgstr ""
3883
 
3884
+ #: includes/currencies/wcj-currencies.php:89
3885
  msgid "Macedonian denar"
3886
  msgstr ""
3887
 
3888
+ #: includes/currencies/wcj-currencies.php:90
3889
  msgid "Malagasy ariary"
3890
  msgstr ""
3891
 
3892
+ #: includes/currencies/wcj-currencies.php:91
3893
  msgid "Malaysian ringgit"
3894
  msgstr ""
3895
 
3896
+ #: includes/currencies/wcj-currencies.php:92
3897
  msgid "Malawian kwacha"
3898
  msgstr ""
3899
 
3900
+ #: includes/currencies/wcj-currencies.php:93
3901
  msgid "Maldivian rufiyaa"
3902
  msgstr ""
3903
 
3904
+ #: includes/currencies/wcj-currencies.php:94
3905
  msgid "Mauritanian ouguiya"
3906
  msgstr ""
3907
 
3908
+ #: includes/currencies/wcj-currencies.php:95
3909
  msgid "Mauritian rupee"
3910
  msgstr ""
3911
 
3912
+ #: includes/currencies/wcj-currencies.php:96
3913
  msgid "Mexican peso"
3914
  msgstr ""
3915
 
3916
+ #: includes/currencies/wcj-currencies.php:97
3917
  msgid "Myanma kyat"
3918
  msgstr ""
3919
 
3920
+ #: includes/currencies/wcj-currencies.php:98
3921
  msgid "Moldovan leu"
3922
  msgstr ""
3923
 
3924
+ #: includes/currencies/wcj-currencies.php:99
3925
  msgid "Mongolian tugrik"
3926
  msgstr ""
3927
 
3928
+ #: includes/currencies/wcj-currencies.php:100
3929
  msgid "Moroccan dirham"
3930
  msgstr ""
3931
 
3932
+ #: includes/currencies/wcj-currencies.php:101
3933
  msgid "Mozambican metical"
3934
  msgstr ""
3935
 
3936
+ #: includes/currencies/wcj-currencies.php:102
3937
  msgid "Namibian dollar"
3938
  msgstr ""
3939
 
3940
+ #: includes/currencies/wcj-currencies.php:103
3941
  msgid "Nepalese rupee"
3942
  msgstr ""
3943
 
3944
+ #: includes/currencies/wcj-currencies.php:104
3945
  msgid "Netherlands Antillean gulden"
3946
  msgstr ""
3947
 
3948
+ #: includes/currencies/wcj-currencies.php:105
3949
  msgid "New Taiwan dollar"
3950
  msgstr ""
3951
 
3952
+ #: includes/currencies/wcj-currencies.php:106
3953
  msgid "New Zealand dollar"
3954
  msgstr ""
3955
 
3956
+ #: includes/currencies/wcj-currencies.php:107
3957
  msgid "Nicaraguan cordoba"
3958
  msgstr ""
3959
 
3960
+ #: includes/currencies/wcj-currencies.php:108
3961
  msgid "Nigerian naira"
3962
  msgstr ""
3963
 
3964
+ #: includes/currencies/wcj-currencies.php:109
3965
  msgid "North Korean won"
3966
  msgstr ""
3967
 
3968
+ #: includes/currencies/wcj-currencies.php:110
3969
  msgid "Norwegian krone"
3970
  msgstr ""
3971
 
3972
+ #: includes/currencies/wcj-currencies.php:111
3973
  msgid "Omani rial"
3974
  msgstr ""
3975
 
3976
+ #: includes/currencies/wcj-currencies.php:112
3977
  msgid "Paanga"
3978
  msgstr ""
3979
 
3980
+ #: includes/currencies/wcj-currencies.php:113
3981
  msgid "Pakistani rupee"
3982
  msgstr ""
3983
 
3984
+ #: includes/currencies/wcj-currencies.php:114
3985
  msgid "Panamanian balboa"
3986
  msgstr ""
3987
 
3988
+ #: includes/currencies/wcj-currencies.php:115
3989
  msgid "Papua New Guinean kina"
3990
  msgstr ""
3991
 
3992
+ #: includes/currencies/wcj-currencies.php:116
3993
  msgid "Paraguayan guarani"
3994
  msgstr ""
3995
 
3996
+ #: includes/currencies/wcj-currencies.php:117
3997
  msgid "Peruvian nuevo sol"
3998
  msgstr ""
3999
 
4000
+ #: includes/currencies/wcj-currencies.php:118
4001
  msgid "Philippine peso"
4002
  msgstr ""
4003
 
4004
+ #: includes/currencies/wcj-currencies.php:119
4005
  msgid "Polish zloty"
4006
  msgstr ""
4007
 
4008
+ #: includes/currencies/wcj-currencies.php:120
4009
  msgid "Qatari riyal"
4010
  msgstr ""
4011
 
4012
+ #: includes/currencies/wcj-currencies.php:121
4013
  msgid "Romanian leu"
4014
  msgstr ""
4015
 
4016
+ #: includes/currencies/wcj-currencies.php:122
4017
  msgid "Russian ruble"
4018
  msgstr ""
4019
 
4020
+ #: includes/currencies/wcj-currencies.php:123
4021
  msgid "Rwandan franc"
4022
  msgstr ""
4023
 
4024
+ #: includes/currencies/wcj-currencies.php:124
4025
  msgid "Saint Helena pound"
4026
  msgstr ""
4027
 
4028
+ #: includes/currencies/wcj-currencies.php:125
4029
  msgid "Samoan tala"
4030
  msgstr ""
4031
 
4032
+ #: includes/currencies/wcj-currencies.php:126
4033
  msgid "Sao Tome and Principe dobra"
4034
  msgstr ""
4035
 
4036
+ #: includes/currencies/wcj-currencies.php:127
4037
  msgid "Saudi riyal"
4038
  msgstr ""
4039
 
4040
+ #: includes/currencies/wcj-currencies.php:128
4041
  msgid "Seychellois rupee"
4042
  msgstr ""
4043
 
4044
+ #: includes/currencies/wcj-currencies.php:129
4045
  msgid "Serbian dinar"
4046
  msgstr ""
4047
 
4048
+ #: includes/currencies/wcj-currencies.php:130
4049
  msgid "Sierra Leonean leone"
4050
  msgstr ""
4051
 
4052
+ #: includes/currencies/wcj-currencies.php:131
4053
  msgid "Singapore dollar"
4054
  msgstr ""
4055
 
4056
+ #: includes/currencies/wcj-currencies.php:132
4057
  msgid "Syrian pound"
4058
  msgstr ""
4059
 
4060
+ #: includes/currencies/wcj-currencies.php:133
4061
  msgid "Slovak koruna"
4062
  msgstr ""
4063
 
4064
+ #: includes/currencies/wcj-currencies.php:134
4065
  msgid "Solomon Islands dollar"
4066
  msgstr ""
4067
 
4068
+ #: includes/currencies/wcj-currencies.php:135
4069
  msgid "Somali shilling"
4070
  msgstr ""
4071
 
4072
+ #: includes/currencies/wcj-currencies.php:136
4073
  msgid "South African rand"
4074
  msgstr ""
4075
 
4076
+ #: includes/currencies/wcj-currencies.php:137
4077
  msgid "South Korean won"
4078
  msgstr ""
4079
 
4080
+ #: includes/currencies/wcj-currencies.php:138
4081
  msgid "Special Drawing Rights"
4082
  msgstr ""
4083
 
4084
+ #: includes/currencies/wcj-currencies.php:139
4085
  msgid "Sri Lankan rupee"
4086
  msgstr ""
4087
 
4088
+ #: includes/currencies/wcj-currencies.php:140
4089
  msgid "Sudanese pound"
4090
  msgstr ""
4091
 
4092
+ #: includes/currencies/wcj-currencies.php:141
4093
  msgid "Surinamese dollar"
4094
  msgstr ""
4095
 
4096
+ #: includes/currencies/wcj-currencies.php:142
4097
  msgid "Swazi lilangeni"
4098
  msgstr ""
4099
 
4100
+ #: includes/currencies/wcj-currencies.php:143
4101
  msgid "Swedish krona"
4102
  msgstr ""
4103
 
4104
+ #: includes/currencies/wcj-currencies.php:144
4105
  msgid "Swiss franc"
4106
  msgstr ""
4107
 
4108
+ #: includes/currencies/wcj-currencies.php:145
4109
  msgid "Tajikistani somoni"
4110
  msgstr ""
4111
 
4112
+ #: includes/currencies/wcj-currencies.php:146
4113
  msgid "Tanzanian shilling"
4114
  msgstr ""
4115
 
4116
+ #: includes/currencies/wcj-currencies.php:147
4117
  msgid "Thai baht"
4118
  msgstr ""
4119
 
4120
+ #: includes/currencies/wcj-currencies.php:148
4121
  msgid "Trinidad and Tobago dollar"
4122
  msgstr ""
4123
 
4124
+ #: includes/currencies/wcj-currencies.php:149
4125
  msgid "Tunisian dinar"
4126
  msgstr ""
4127
 
4128
+ #: includes/currencies/wcj-currencies.php:150
4129
  msgid "Turkish new lira"
4130
  msgstr ""
4131
 
4132
+ #: includes/currencies/wcj-currencies.php:151
4133
  msgid "Turkmen manat"
4134
  msgstr ""
4135
 
4136
+ #: includes/currencies/wcj-currencies.php:152
4137
  msgid "UAE dirham"
4138
  msgstr ""
4139
 
4140
+ #: includes/currencies/wcj-currencies.php:153
4141
  msgid "Ugandan shilling"
4142
  msgstr ""
4143
 
4144
+ #: includes/currencies/wcj-currencies.php:154
4145
  msgid "Ukrainian hryvnia"
4146
  msgstr ""
4147
 
4148
+ #: includes/currencies/wcj-currencies.php:155
4149
  msgid "United States dollar"
4150
  msgstr ""
4151
 
4152
+ #: includes/currencies/wcj-currencies.php:156
4153
  msgid "Uruguayan peso"
4154
  msgstr ""
4155
 
4156
+ #: includes/currencies/wcj-currencies.php:157
4157
  msgid "Uzbekistani som"
4158
  msgstr ""
4159
 
4160
+ #: includes/currencies/wcj-currencies.php:158
4161
  msgid "Vanuatu vatu"
4162
  msgstr ""
4163
 
4164
+ #: includes/currencies/wcj-currencies.php:159
4165
  msgid "Venezuelan bolivar"
4166
  msgstr ""
4167
 
4168
+ #: includes/currencies/wcj-currencies.php:160
4169
  msgid "Vietnamese dong"
4170
  msgstr ""
4171
 
4172
+ #: includes/currencies/wcj-currencies.php:161
4173
  msgid "West African CFA franc"
4174
  msgstr ""
4175
 
4176
+ #: includes/currencies/wcj-currencies.php:162
4177
  msgid "Zambian kwacha"
4178
  msgstr ""
4179
 
4180
+ #: includes/currencies/wcj-currencies.php:163
4181
  msgid "Zimbabwean dollar"
4182
  msgstr ""
4183
 
4184
+ #: includes/currencies/wcj-currencies.php:164
4185
  msgid "Chinese Yuan"
4186
  msgstr ""
4187
 
4188
+ #: includes/functions/wcj-country-functions.php:97
4189
+ msgid "Afghanistan"
 
4190
  msgstr ""
4191
 
4192
+ #: includes/functions/wcj-country-functions.php:98
4193
+ msgid "&#197;land Islands"
4194
  msgstr ""
4195
 
4196
+ #: includes/functions/wcj-country-functions.php:99
4197
+ msgid "Albania"
 
4198
  msgstr ""
4199
 
4200
+ #: includes/functions/wcj-country-functions.php:100
4201
+ msgid "Algeria"
4202
  msgstr ""
4203
 
4204
+ #: includes/functions/wcj-country-functions.php:101
4205
+ msgid "Andorra"
4206
  msgstr ""
4207
 
4208
+ #: includes/functions/wcj-country-functions.php:102
4209
+ msgid "Angola"
4210
  msgstr ""
4211
 
4212
+ #: includes/functions/wcj-country-functions.php:103
4213
+ msgid "Anguilla"
4214
  msgstr ""
4215
 
4216
+ #: includes/functions/wcj-country-functions.php:104
4217
+ msgid "Antarctica"
4218
  msgstr ""
4219
 
4220
+ #: includes/functions/wcj-country-functions.php:105
4221
+ msgid "Antigua and Barbuda"
4222
  msgstr ""
4223
 
4224
+ #: includes/functions/wcj-country-functions.php:106
4225
+ msgid "Argentina"
4226
  msgstr ""
4227
 
4228
+ #: includes/functions/wcj-country-functions.php:107
4229
+ msgid "Armenia"
4230
  msgstr ""
4231
 
4232
+ #: includes/functions/wcj-country-functions.php:108
4233
+ msgid "Aruba"
4234
  msgstr ""
4235
 
4236
+ #: includes/functions/wcj-country-functions.php:109
4237
+ msgid "Australia"
 
 
4238
  msgstr ""
4239
 
4240
+ #: includes/functions/wcj-country-functions.php:110
4241
+ msgid "Austria"
4242
  msgstr ""
4243
 
4244
+ #: includes/functions/wcj-country-functions.php:111
4245
+ msgid "Azerbaijan"
 
 
4246
  msgstr ""
4247
 
4248
+ #: includes/functions/wcj-country-functions.php:112
4249
+ msgid "Bahamas"
4250
  msgstr ""
4251
 
4252
+ #: includes/functions/wcj-country-functions.php:113
4253
+ msgid "Bahrain"
4254
  msgstr ""
4255
 
4256
+ #: includes/functions/wcj-country-functions.php:114
4257
+ msgid "Bangladesh"
4258
  msgstr ""
4259
 
4260
+ #: includes/functions/wcj-country-functions.php:115
4261
+ msgid "Barbados"
4262
  msgstr ""
4263
 
4264
+ #: includes/functions/wcj-country-functions.php:116
4265
+ msgid "Belarus"
4266
  msgstr ""
4267
 
4268
+ #: includes/functions/wcj-country-functions.php:117
4269
+ msgid "Belgium"
4270
  msgstr ""
4271
 
4272
+ #: includes/functions/wcj-country-functions.php:118
4273
+ msgid "Belau"
4274
  msgstr ""
4275
 
4276
+ #: includes/functions/wcj-country-functions.php:119
4277
+ msgid "Belize"
4278
  msgstr ""
4279
 
4280
+ #: includes/functions/wcj-country-functions.php:120
4281
+ msgid "Benin"
4282
  msgstr ""
4283
 
4284
+ #: includes/functions/wcj-country-functions.php:121
4285
+ msgid "Bermuda"
4286
  msgstr ""
4287
 
4288
+ #: includes/functions/wcj-country-functions.php:122
4289
+ msgid "Bhutan"
4290
  msgstr ""
4291
 
4292
+ #: includes/functions/wcj-country-functions.php:123
4293
+ msgid "Bolivia"
4294
  msgstr ""
4295
 
4296
+ #: includes/functions/wcj-country-functions.php:124
4297
+ msgid "Bonaire, Saint Eustatius and Saba"
4298
  msgstr ""
4299
 
4300
+ #: includes/functions/wcj-country-functions.php:125
4301
+ msgid "Bosnia and Herzegovina"
 
 
4302
  msgstr ""
4303
 
4304
+ #: includes/functions/wcj-country-functions.php:126
4305
+ msgid "Botswana"
 
 
4306
  msgstr ""
4307
 
4308
+ #: includes/functions/wcj-country-functions.php:127
4309
+ msgid "Bouvet Island"
4310
  msgstr ""
4311
 
4312
+ #: includes/functions/wcj-country-functions.php:128
4313
+ msgid "Brazil"
4314
  msgstr ""
4315
 
4316
+ #: includes/functions/wcj-country-functions.php:129
4317
+ msgid "British Indian Ocean Territory"
4318
  msgstr ""
4319
 
4320
+ #: includes/functions/wcj-country-functions.php:130
4321
+ msgid "British Virgin Islands"
4322
  msgstr ""
4323
 
4324
+ #: includes/functions/wcj-country-functions.php:131
4325
+ msgid "Brunei"
4326
  msgstr ""
4327
 
4328
+ #: includes/functions/wcj-country-functions.php:132
4329
+ msgid "Bulgaria"
4330
  msgstr ""
4331
 
4332
+ #: includes/functions/wcj-country-functions.php:133
4333
+ msgid "Burkina Faso"
4334
  msgstr ""
4335
 
4336
+ #: includes/functions/wcj-country-functions.php:134
4337
+ msgid "Burundi"
4338
  msgstr ""
4339
 
4340
+ #: includes/functions/wcj-country-functions.php:135
4341
+ msgid "Cambodia"
4342
  msgstr ""
4343
 
4344
+ #: includes/functions/wcj-country-functions.php:136
4345
+ msgid "Cameroon"
4346
  msgstr ""
4347
 
4348
+ #: includes/functions/wcj-country-functions.php:137
4349
+ msgid "Canada"
4350
  msgstr ""
4351
 
4352
+ #: includes/functions/wcj-country-functions.php:138
4353
+ msgid "Cape Verde"
4354
  msgstr ""
4355
 
4356
+ #: includes/functions/wcj-country-functions.php:139
4357
+ msgid "Cayman Islands"
4358
  msgstr ""
4359
 
4360
+ #: includes/functions/wcj-country-functions.php:140
4361
+ msgid "Central African Republic"
4362
  msgstr ""
4363
 
4364
+ #: includes/functions/wcj-country-functions.php:141
4365
+ msgid "Chad"
 
4366
  msgstr ""
4367
 
4368
+ #: includes/functions/wcj-country-functions.php:142
4369
+ msgid "Chile"
4370
  msgstr ""
4371
 
4372
+ #: includes/functions/wcj-country-functions.php:143
4373
+ msgid "China"
4374
  msgstr ""
4375
 
4376
+ #: includes/functions/wcj-country-functions.php:144
4377
+ msgid "Christmas Island"
 
 
4378
  msgstr ""
4379
 
4380
+ #: includes/functions/wcj-country-functions.php:145
4381
+ msgid "Cocos (Keeling) Islands"
4382
  msgstr ""
4383
 
4384
+ #: includes/functions/wcj-country-functions.php:146
4385
+ msgid "Colombia"
4386
+ msgstr ""
4387
+
4388
+ #: includes/functions/wcj-country-functions.php:147
4389
+ msgid "Comoros"
4390
+ msgstr ""
4391
+
4392
+ #: includes/functions/wcj-country-functions.php:148
4393
+ msgid "Congo (Brazzaville)"
4394
+ msgstr ""
4395
+
4396
+ #: includes/functions/wcj-country-functions.php:149
4397
+ msgid "Congo (Kinshasa)"
4398
+ msgstr ""
4399
+
4400
+ #: includes/functions/wcj-country-functions.php:150
4401
+ msgid "Cook Islands"
4402
+ msgstr ""
4403
+
4404
+ #: includes/functions/wcj-country-functions.php:151
4405
+ msgid "Costa Rica"
4406
+ msgstr ""
4407
+
4408
+ #: includes/functions/wcj-country-functions.php:152
4409
+ msgid "Croatia"
4410
+ msgstr ""
4411
+
4412
+ #: includes/functions/wcj-country-functions.php:153
4413
+ msgid "Cuba"
4414
+ msgstr ""
4415
+
4416
+ #: includes/functions/wcj-country-functions.php:154
4417
+ msgid "Cura&Ccedil;ao"
4418
+ msgstr ""
4419
+
4420
+ #: includes/functions/wcj-country-functions.php:155
4421
+ msgid "Cyprus"
4422
+ msgstr ""
4423
+
4424
+ #: includes/functions/wcj-country-functions.php:156
4425
+ msgid "Czech Republic"
4426
+ msgstr ""
4427
+
4428
+ #: includes/functions/wcj-country-functions.php:157
4429
+ msgid "Denmark"
4430
+ msgstr ""
4431
+
4432
+ #: includes/functions/wcj-country-functions.php:158
4433
+ msgid "Djibouti"
4434
+ msgstr ""
4435
+
4436
+ #: includes/functions/wcj-country-functions.php:159
4437
+ msgid "Dominica"
4438
+ msgstr ""
4439
+
4440
+ #: includes/functions/wcj-country-functions.php:160
4441
+ msgid "Dominican Republic"
4442
+ msgstr ""
4443
+
4444
+ #: includes/functions/wcj-country-functions.php:161
4445
+ msgid "Ecuador"
4446
+ msgstr ""
4447
+
4448
+ #: includes/functions/wcj-country-functions.php:162
4449
+ msgid "Egypt"
4450
+ msgstr ""
4451
+
4452
+ #: includes/functions/wcj-country-functions.php:163
4453
+ msgid "El Salvador"
4454
+ msgstr ""
4455
+
4456
+ #: includes/functions/wcj-country-functions.php:164
4457
+ msgid "Equatorial Guinea"
4458
+ msgstr ""
4459
+
4460
+ #: includes/functions/wcj-country-functions.php:165
4461
+ msgid "Eritrea"
4462
+ msgstr ""
4463
+
4464
+ #: includes/functions/wcj-country-functions.php:166
4465
+ msgid "Estonia"
4466
+ msgstr ""
4467
+
4468
+ #: includes/functions/wcj-country-functions.php:167
4469
+ msgid "Ethiopia"
4470
+ msgstr ""
4471
+
4472
+ #: includes/functions/wcj-country-functions.php:168
4473
+ msgid "Falkland Islands"
4474
+ msgstr ""
4475
+
4476
+ #: includes/functions/wcj-country-functions.php:169
4477
+ msgid "Faroe Islands"
4478
+ msgstr ""
4479
+
4480
+ #: includes/functions/wcj-country-functions.php:170
4481
+ msgid "Fiji"
4482
+ msgstr ""
4483
+
4484
+ #: includes/functions/wcj-country-functions.php:171
4485
+ msgid "Finland"
4486
+ msgstr ""
4487
+
4488
+ #: includes/functions/wcj-country-functions.php:172
4489
+ msgid "France"
4490
+ msgstr ""
4491
+
4492
+ #: includes/functions/wcj-country-functions.php:173
4493
+ msgid "French Guiana"
4494
+ msgstr ""
4495
+
4496
+ #: includes/functions/wcj-country-functions.php:174
4497
+ msgid "French Polynesia"
4498
+ msgstr ""
4499
+
4500
+ #: includes/functions/wcj-country-functions.php:175
4501
+ msgid "French Southern Territories"
4502
+ msgstr ""
4503
+
4504
+ #: includes/functions/wcj-country-functions.php:176
4505
+ msgid "Gabon"
4506
+ msgstr ""
4507
+
4508
+ #: includes/functions/wcj-country-functions.php:177
4509
+ msgid "Gambia"
4510
+ msgstr ""
4511
+
4512
+ #: includes/functions/wcj-country-functions.php:178
4513
+ msgid "Georgia"
4514
+ msgstr ""
4515
+
4516
+ #: includes/functions/wcj-country-functions.php:179
4517
+ msgid "Germany"
4518
+ msgstr ""
4519
+
4520
+ #: includes/functions/wcj-country-functions.php:180
4521
+ msgid "Ghana"
4522
+ msgstr ""
4523
+
4524
+ #: includes/functions/wcj-country-functions.php:181
4525
+ msgid "Gibraltar"
4526
+ msgstr ""
4527
+
4528
+ #: includes/functions/wcj-country-functions.php:182
4529
+ msgid "Greece"
4530
+ msgstr ""
4531
+
4532
+ #: includes/functions/wcj-country-functions.php:183
4533
+ msgid "Greenland"
4534
+ msgstr ""
4535
+
4536
+ #: includes/functions/wcj-country-functions.php:184
4537
+ msgid "Grenada"
4538
+ msgstr ""
4539
+
4540
+ #: includes/functions/wcj-country-functions.php:185
4541
+ msgid "Guadeloupe"
4542
+ msgstr ""
4543
+
4544
+ #: includes/functions/wcj-country-functions.php:186
4545
+ msgid "Guatemala"
4546
+ msgstr ""
4547
+
4548
+ #: includes/functions/wcj-country-functions.php:187
4549
+ msgid "Guernsey"
4550
+ msgstr ""
4551
+
4552
+ #: includes/functions/wcj-country-functions.php:188
4553
+ msgid "Guinea"
4554
+ msgstr ""
4555
+
4556
+ #: includes/functions/wcj-country-functions.php:189
4557
+ msgid "Guinea-Bissau"
4558
+ msgstr ""
4559
+
4560
+ #: includes/functions/wcj-country-functions.php:190
4561
+ msgid "Guyana"
4562
+ msgstr ""
4563
+
4564
+ #: includes/functions/wcj-country-functions.php:191
4565
+ msgid "Haiti"
4566
+ msgstr ""
4567
+
4568
+ #: includes/functions/wcj-country-functions.php:192
4569
+ msgid "Heard Island and McDonald Islands"
4570
+ msgstr ""
4571
+
4572
+ #: includes/functions/wcj-country-functions.php:193
4573
+ msgid "Honduras"
4574
+ msgstr ""
4575
+
4576
+ #: includes/functions/wcj-country-functions.php:194
4577
+ msgid "Hong Kong"
4578
+ msgstr ""
4579
+
4580
+ #: includes/functions/wcj-country-functions.php:195
4581
+ msgid "Hungary"
4582
+ msgstr ""
4583
+
4584
+ #: includes/functions/wcj-country-functions.php:196
4585
+ msgid "Iceland"
4586
+ msgstr ""
4587
+
4588
+ #: includes/functions/wcj-country-functions.php:197
4589
+ msgid "India"
4590
+ msgstr ""
4591
+
4592
+ #: includes/functions/wcj-country-functions.php:198
4593
+ msgid "Indonesia"
4594
+ msgstr ""
4595
+
4596
+ #: includes/functions/wcj-country-functions.php:199
4597
+ msgid "Iran"
4598
+ msgstr ""
4599
+
4600
+ #: includes/functions/wcj-country-functions.php:200
4601
+ msgid "Iraq"
4602
+ msgstr ""
4603
+
4604
+ #: includes/functions/wcj-country-functions.php:201
4605
+ msgid "Republic of Ireland"
4606
+ msgstr ""
4607
+
4608
+ #: includes/functions/wcj-country-functions.php:202
4609
+ msgid "Isle of Man"
4610
+ msgstr ""
4611
+
4612
+ #: includes/functions/wcj-country-functions.php:203
4613
+ msgid "Israel"
4614
+ msgstr ""
4615
+
4616
+ #: includes/functions/wcj-country-functions.php:204
4617
+ msgid "Italy"
4618
+ msgstr ""
4619
+
4620
+ #: includes/functions/wcj-country-functions.php:205
4621
+ msgid "Ivory Coast"
4622
+ msgstr ""
4623
+
4624
+ #: includes/functions/wcj-country-functions.php:206
4625
+ msgid "Jamaica"
4626
+ msgstr ""
4627
+
4628
+ #: includes/functions/wcj-country-functions.php:207
4629
+ msgid "Japan"
4630
+ msgstr ""
4631
+
4632
+ #: includes/functions/wcj-country-functions.php:208
4633
+ msgid "Jersey"
4634
+ msgstr ""
4635
+
4636
+ #: includes/functions/wcj-country-functions.php:209
4637
+ msgid "Jordan"
4638
+ msgstr ""
4639
+
4640
+ #: includes/functions/wcj-country-functions.php:210
4641
+ msgid "Kazakhstan"
4642
+ msgstr ""
4643
+
4644
+ #: includes/functions/wcj-country-functions.php:211
4645
+ msgid "Kenya"
4646
+ msgstr ""
4647
+
4648
+ #: includes/functions/wcj-country-functions.php:212
4649
+ msgid "Kiribati"
4650
+ msgstr ""
4651
+
4652
+ #: includes/functions/wcj-country-functions.php:213
4653
+ msgid "Kuwait"
4654
+ msgstr ""
4655
+
4656
+ #: includes/functions/wcj-country-functions.php:214
4657
+ msgid "Kyrgyzstan"
4658
+ msgstr ""
4659
+
4660
+ #: includes/functions/wcj-country-functions.php:215
4661
+ msgid "Laos"
4662
+ msgstr ""
4663
+
4664
+ #: includes/functions/wcj-country-functions.php:216
4665
+ msgid "Latvia"
4666
+ msgstr ""
4667
+
4668
+ #: includes/functions/wcj-country-functions.php:217
4669
+ msgid "Lebanon"
4670
+ msgstr ""
4671
+
4672
+ #: includes/functions/wcj-country-functions.php:218
4673
+ msgid "Lesotho"
4674
+ msgstr ""
4675
+
4676
+ #: includes/functions/wcj-country-functions.php:219
4677
+ msgid "Liberia"
4678
+ msgstr ""
4679
+
4680
+ #: includes/functions/wcj-country-functions.php:220
4681
+ msgid "Libya"
4682
+ msgstr ""
4683
+
4684
+ #: includes/functions/wcj-country-functions.php:221
4685
+ msgid "Liechtenstein"
4686
+ msgstr ""
4687
+
4688
+ #: includes/functions/wcj-country-functions.php:222
4689
+ msgid "Lithuania"
4690
+ msgstr ""
4691
+
4692
+ #: includes/functions/wcj-country-functions.php:223
4693
+ msgid "Luxembourg"
4694
+ msgstr ""
4695
+
4696
+ #: includes/functions/wcj-country-functions.php:224
4697
+ msgid "Macao S.A.R., China"
4698
+ msgstr ""
4699
+
4700
+ #: includes/functions/wcj-country-functions.php:225
4701
+ msgid "Macedonia"
4702
+ msgstr ""
4703
+
4704
+ #: includes/functions/wcj-country-functions.php:226
4705
+ msgid "Madagascar"
4706
+ msgstr ""
4707
+
4708
+ #: includes/functions/wcj-country-functions.php:227
4709
+ msgid "Malawi"
4710
+ msgstr ""
4711
+
4712
+ #: includes/functions/wcj-country-functions.php:228
4713
+ msgid "Malaysia"
4714
+ msgstr ""
4715
+
4716
+ #: includes/functions/wcj-country-functions.php:229
4717
+ msgid "Maldives"
4718
+ msgstr ""
4719
+
4720
+ #: includes/functions/wcj-country-functions.php:230
4721
+ msgid "Mali"
4722
+ msgstr ""
4723
+
4724
+ #: includes/functions/wcj-country-functions.php:231
4725
+ msgid "Malta"
4726
+ msgstr ""
4727
+
4728
+ #: includes/functions/wcj-country-functions.php:232
4729
+ msgid "Marshall Islands"
4730
+ msgstr ""
4731
+
4732
+ #: includes/functions/wcj-country-functions.php:233
4733
+ msgid "Martinique"
4734
+ msgstr ""
4735
+
4736
+ #: includes/functions/wcj-country-functions.php:234
4737
+ msgid "Mauritania"
4738
+ msgstr ""
4739
+
4740
+ #: includes/functions/wcj-country-functions.php:235
4741
+ msgid "Mauritius"
4742
+ msgstr ""
4743
+
4744
+ #: includes/functions/wcj-country-functions.php:236
4745
+ msgid "Mayotte"
4746
+ msgstr ""
4747
+
4748
+ #: includes/functions/wcj-country-functions.php:237
4749
+ msgid "Mexico"
4750
+ msgstr ""
4751
+
4752
+ #: includes/functions/wcj-country-functions.php:238
4753
+ msgid "Micronesia"
4754
+ msgstr ""
4755
+
4756
+ #: includes/functions/wcj-country-functions.php:239
4757
+ msgid "Moldova"
4758
+ msgstr ""
4759
+
4760
+ #: includes/functions/wcj-country-functions.php:240
4761
+ msgid "Monaco"
4762
+ msgstr ""
4763
+
4764
+ #: includes/functions/wcj-country-functions.php:241
4765
+ msgid "Mongolia"
4766
+ msgstr ""
4767
+
4768
+ #: includes/functions/wcj-country-functions.php:242
4769
+ msgid "Montenegro"
4770
+ msgstr ""
4771
+
4772
+ #: includes/functions/wcj-country-functions.php:243
4773
+ msgid "Montserrat"
4774
+ msgstr ""
4775
+
4776
+ #: includes/functions/wcj-country-functions.php:244
4777
+ msgid "Morocco"
4778
+ msgstr ""
4779
+
4780
+ #: includes/functions/wcj-country-functions.php:245
4781
+ msgid "Mozambique"
4782
+ msgstr ""
4783
+
4784
+ #: includes/functions/wcj-country-functions.php:246
4785
+ msgid "Myanmar"
4786
+ msgstr ""
4787
+
4788
+ #: includes/functions/wcj-country-functions.php:247
4789
+ msgid "Namibia"
4790
+ msgstr ""
4791
+
4792
+ #: includes/functions/wcj-country-functions.php:248
4793
+ msgid "Nauru"
4794
+ msgstr ""
4795
+
4796
+ #: includes/functions/wcj-country-functions.php:249
4797
+ msgid "Nepal"
4798
+ msgstr ""
4799
+
4800
+ #: includes/functions/wcj-country-functions.php:250
4801
+ msgid "Netherlands"
4802
+ msgstr ""
4803
+
4804
+ #: includes/functions/wcj-country-functions.php:251
4805
+ msgid "Netherlands Antilles"
4806
+ msgstr ""
4807
+
4808
+ #: includes/functions/wcj-country-functions.php:252
4809
+ msgid "New Caledonia"
4810
+ msgstr ""
4811
+
4812
+ #: includes/functions/wcj-country-functions.php:253
4813
+ msgid "New Zealand"
4814
+ msgstr ""
4815
+
4816
+ #: includes/functions/wcj-country-functions.php:254
4817
+ msgid "Nicaragua"
4818
+ msgstr ""
4819
+
4820
+ #: includes/functions/wcj-country-functions.php:255
4821
+ msgid "Niger"
4822
+ msgstr ""
4823
+
4824
+ #: includes/functions/wcj-country-functions.php:256
4825
+ msgid "Nigeria"
4826
+ msgstr ""
4827
+
4828
+ #: includes/functions/wcj-country-functions.php:257
4829
+ msgid "Niue"
4830
+ msgstr ""
4831
+
4832
+ #: includes/functions/wcj-country-functions.php:258
4833
+ msgid "Norfolk Island"
4834
+ msgstr ""
4835
+
4836
+ #: includes/functions/wcj-country-functions.php:259
4837
+ msgid "North Korea"
4838
+ msgstr ""
4839
+
4840
+ #: includes/functions/wcj-country-functions.php:260
4841
+ msgid "Norway"
4842
+ msgstr ""
4843
+
4844
+ #: includes/functions/wcj-country-functions.php:261
4845
+ msgid "Oman"
4846
+ msgstr ""
4847
+
4848
+ #: includes/functions/wcj-country-functions.php:262
4849
+ msgid "Pakistan"
4850
+ msgstr ""
4851
+
4852
+ #: includes/functions/wcj-country-functions.php:263
4853
+ msgid "Palestinian Territory"
4854
+ msgstr ""
4855
+
4856
+ #: includes/functions/wcj-country-functions.php:264
4857
+ msgid "Panama"
4858
+ msgstr ""
4859
+
4860
+ #: includes/functions/wcj-country-functions.php:265
4861
+ msgid "Papua New Guinea"
4862
+ msgstr ""
4863
+
4864
+ #: includes/functions/wcj-country-functions.php:266
4865
+ msgid "Paraguay"
4866
+ msgstr ""
4867
+
4868
+ #: includes/functions/wcj-country-functions.php:267
4869
+ msgid "Peru"
4870
+ msgstr ""
4871
+
4872
+ #: includes/functions/wcj-country-functions.php:268
4873
+ msgid "Philippines"
4874
+ msgstr ""
4875
+
4876
+ #: includes/functions/wcj-country-functions.php:269
4877
+ msgid "Pitcairn"
4878
+ msgstr ""
4879
+
4880
+ #: includes/functions/wcj-country-functions.php:270
4881
+ msgid "Poland"
4882
+ msgstr ""
4883
+
4884
+ #: includes/functions/wcj-country-functions.php:271
4885
+ msgid "Portugal"
4886
+ msgstr ""
4887
+
4888
+ #: includes/functions/wcj-country-functions.php:272
4889
+ msgid "Qatar"
4890
+ msgstr ""
4891
+
4892
+ #: includes/functions/wcj-country-functions.php:273
4893
+ msgid "Reunion"
4894
+ msgstr ""
4895
+
4896
+ #: includes/functions/wcj-country-functions.php:274
4897
+ msgid "Romania"
4898
+ msgstr ""
4899
+
4900
+ #: includes/functions/wcj-country-functions.php:275
4901
+ msgid "Russia"
4902
+ msgstr ""
4903
+
4904
+ #: includes/functions/wcj-country-functions.php:276
4905
+ msgid "Rwanda"
4906
+ msgstr ""
4907
+
4908
+ #: includes/functions/wcj-country-functions.php:277
4909
+ msgid "Saint Barth&eacute;lemy"
4910
+ msgstr ""
4911
+
4912
+ #: includes/functions/wcj-country-functions.php:278
4913
+ msgid "Saint Helena"
4914
+ msgstr ""
4915
+
4916
+ #: includes/functions/wcj-country-functions.php:279
4917
+ msgid "Saint Kitts and Nevis"
4918
+ msgstr ""
4919
+
4920
+ #: includes/functions/wcj-country-functions.php:280
4921
+ msgid "Saint Lucia"
4922
+ msgstr ""
4923
+
4924
+ #: includes/functions/wcj-country-functions.php:281
4925
+ msgid "Saint Martin (French part)"
4926
+ msgstr ""
4927
+
4928
+ #: includes/functions/wcj-country-functions.php:282
4929
+ msgid "Saint Martin (Dutch part)"
4930
+ msgstr ""
4931
+
4932
+ #: includes/functions/wcj-country-functions.php:283
4933
+ msgid "Saint Pierre and Miquelon"
4934
+ msgstr ""
4935
+
4936
+ #: includes/functions/wcj-country-functions.php:284
4937
+ msgid "Saint Vincent and the Grenadines"
4938
+ msgstr ""
4939
+
4940
+ #: includes/functions/wcj-country-functions.php:285
4941
+ msgid "San Marino"
4942
+ msgstr ""
4943
+
4944
+ #: includes/functions/wcj-country-functions.php:286
4945
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
4946
+ msgstr ""
4947
+
4948
+ #: includes/functions/wcj-country-functions.php:287
4949
+ msgid "Saudi Arabia"
4950
+ msgstr ""
4951
+
4952
+ #: includes/functions/wcj-country-functions.php:288
4953
+ msgid "Senegal"
4954
+ msgstr ""
4955
+
4956
+ #: includes/functions/wcj-country-functions.php:289
4957
+ msgid "Serbia"
4958
+ msgstr ""
4959
+
4960
+ #: includes/functions/wcj-country-functions.php:290
4961
+ msgid "Seychelles"
4962
+ msgstr ""
4963
+
4964
+ #: includes/functions/wcj-country-functions.php:291
4965
+ msgid "Sierra Leone"
4966
+ msgstr ""
4967
+
4968
+ #: includes/functions/wcj-country-functions.php:292
4969
+ msgid "Singapore"
4970
+ msgstr ""
4971
+
4972
+ #: includes/functions/wcj-country-functions.php:293
4973
+ msgid "Slovakia"
4974
+ msgstr ""
4975
+
4976
+ #: includes/functions/wcj-country-functions.php:294
4977
+ msgid "Slovenia"
4978
+ msgstr ""
4979
+
4980
+ #: includes/functions/wcj-country-functions.php:295
4981
+ msgid "Solomon Islands"
4982
+ msgstr ""
4983
+
4984
+ #: includes/functions/wcj-country-functions.php:296
4985
+ msgid "Somalia"
4986
+ msgstr ""
4987
+
4988
+ #: includes/functions/wcj-country-functions.php:297
4989
+ msgid "South Africa"
4990
+ msgstr ""
4991
+
4992
+ #: includes/functions/wcj-country-functions.php:298
4993
+ msgid "South Georgia/Sandwich Islands"
4994
+ msgstr ""
4995
+
4996
+ #: includes/functions/wcj-country-functions.php:299
4997
+ msgid "South Korea"
4998
+ msgstr ""
4999
+
5000
+ #: includes/functions/wcj-country-functions.php:300
5001
+ msgid "South Sudan"
5002
+ msgstr ""
5003
+
5004
+ #: includes/functions/wcj-country-functions.php:301
5005
+ msgid "Spain"
5006
+ msgstr ""
5007
+
5008
+ #: includes/functions/wcj-country-functions.php:302
5009
+ msgid "Sri Lanka"
5010
+ msgstr ""
5011
+
5012
+ #: includes/functions/wcj-country-functions.php:303
5013
+ msgid "Sudan"
5014
+ msgstr ""
5015
+
5016
+ #: includes/functions/wcj-country-functions.php:304
5017
+ msgid "Suriname"
5018
+ msgstr ""
5019
+
5020
+ #: includes/functions/wcj-country-functions.php:305
5021
+ msgid "Svalbard and Jan Mayen"
5022
+ msgstr ""
5023
+
5024
+ #: includes/functions/wcj-country-functions.php:306
5025
+ msgid "Swaziland"
5026
+ msgstr ""
5027
+
5028
+ #: includes/functions/wcj-country-functions.php:307
5029
+ msgid "Sweden"
5030
+ msgstr ""
5031
+
5032
+ #: includes/functions/wcj-country-functions.php:308
5033
+ msgid "Switzerland"
5034
+ msgstr ""
5035
+
5036
+ #: includes/functions/wcj-country-functions.php:309
5037
+ msgid "Syria"
5038
+ msgstr ""
5039
+
5040
+ #: includes/functions/wcj-country-functions.php:310
5041
+ msgid "Taiwan"
5042
+ msgstr ""
5043
+
5044
+ #: includes/functions/wcj-country-functions.php:311
5045
+ msgid "Tajikistan"
5046
+ msgstr ""
5047
+
5048
+ #: includes/functions/wcj-country-functions.php:312
5049
+ msgid "Tanzania"
5050
+ msgstr ""
5051
+
5052
+ #: includes/functions/wcj-country-functions.php:313
5053
+ msgid "Thailand"
5054
+ msgstr ""
5055
+
5056
+ #: includes/functions/wcj-country-functions.php:314
5057
+ msgid "Timor-Leste"
5058
+ msgstr ""
5059
+
5060
+ #: includes/functions/wcj-country-functions.php:315
5061
+ msgid "Togo"
5062
+ msgstr ""
5063
+
5064
+ #: includes/functions/wcj-country-functions.php:316
5065
+ msgid "Tokelau"
5066
+ msgstr ""
5067
+
5068
+ #: includes/functions/wcj-country-functions.php:317
5069
+ msgid "Tonga"
5070
+ msgstr ""
5071
+
5072
+ #: includes/functions/wcj-country-functions.php:318
5073
+ msgid "Trinidad and Tobago"
5074
+ msgstr ""
5075
+
5076
+ #: includes/functions/wcj-country-functions.php:319
5077
+ msgid "Tunisia"
5078
+ msgstr ""
5079
+
5080
+ #: includes/functions/wcj-country-functions.php:320
5081
+ msgid "Turkey"
5082
+ msgstr ""
5083
+
5084
+ #: includes/functions/wcj-country-functions.php:321
5085
+ msgid "Turkmenistan"
5086
+ msgstr ""
5087
+
5088
+ #: includes/functions/wcj-country-functions.php:322
5089
+ msgid "Turks and Caicos Islands"
5090
+ msgstr ""
5091
+
5092
+ #: includes/functions/wcj-country-functions.php:323
5093
+ msgid "Tuvalu"
5094
+ msgstr ""
5095
+
5096
+ #: includes/functions/wcj-country-functions.php:324
5097
+ msgid "Uganda"
5098
+ msgstr ""
5099
+
5100
+ #: includes/functions/wcj-country-functions.php:325
5101
+ msgid "Ukraine"
5102
+ msgstr ""
5103
+
5104
+ #: includes/functions/wcj-country-functions.php:326
5105
+ msgid "United Arab Emirates"
5106
+ msgstr ""
5107
+
5108
+ #: includes/functions/wcj-country-functions.php:327
5109
+ msgid "United Kingdom (UK)"
5110
+ msgstr ""
5111
+
5112
+ #: includes/functions/wcj-country-functions.php:328
5113
+ msgid "United States (US)"
5114
+ msgstr ""
5115
+
5116
+ #: includes/functions/wcj-country-functions.php:329
5117
+ msgid "Uruguay"
5118
+ msgstr ""
5119
+
5120
+ #: includes/functions/wcj-country-functions.php:330
5121
+ msgid "Uzbekistan"
5122
+ msgstr ""
5123
+
5124
+ #: includes/functions/wcj-country-functions.php:331
5125
+ msgid "Vanuatu"
5126
+ msgstr ""
5127
+
5128
+ #: includes/functions/wcj-country-functions.php:332
5129
+ msgid "Vatican"
5130
+ msgstr ""
5131
+
5132
+ #: includes/functions/wcj-country-functions.php:333
5133
+ msgid "Venezuela"
5134
+ msgstr ""
5135
+
5136
+ #: includes/functions/wcj-country-functions.php:334
5137
+ msgid "Vietnam"
5138
+ msgstr ""
5139
+
5140
+ #: includes/functions/wcj-country-functions.php:335
5141
+ msgid "Wallis and Futuna"
5142
+ msgstr ""
5143
+
5144
+ #: includes/functions/wcj-country-functions.php:336
5145
+ msgid "Western Sahara"
5146
+ msgstr ""
5147
+
5148
+ #: includes/functions/wcj-country-functions.php:337
5149
+ msgid "Western Samoa"
5150
+ msgstr ""
5151
+
5152
+ #: includes/functions/wcj-country-functions.php:338
5153
+ msgid "Yemen"
5154
+ msgstr ""
5155
+
5156
+ #: includes/functions/wcj-country-functions.php:339
5157
+ msgid "Zambia"
5158
+ msgstr ""
5159
+
5160
+ #: includes/functions/wcj-country-functions.php:340
5161
+ msgid "Zimbabwe"
5162
+ msgstr ""
5163
+
5164
+ #: includes/functions/wcj-functions.php:343
5165
+ msgctxt "Order status"
5166
+ msgid "Pending Payment"
5167
+ msgstr ""
5168
+
5169
+ #: includes/functions/wcj-functions.php:345
5170
+ msgctxt "Order status"
5171
+ msgid "On Hold"
5172
+ msgstr ""
5173
+
5174
+ #: includes/functions/wcj-invoicing-functions.php:11
5175
+ msgid "Invoices"
5176
+ msgstr ""
5177
+
5178
+ #: includes/functions/wcj-invoicing-functions.php:18
5179
+ msgid "Proforma Invoice"
5180
+ msgstr ""
5181
+
5182
+ #: includes/functions/wcj-invoicing-functions.php:19
5183
+ msgid "Proforma Invoices"
5184
+ msgstr ""
5185
+
5186
+ #: includes/functions/wcj-invoicing-functions.php:26
5187
+ msgid "Packing Slip"
5188
+ msgstr ""
5189
+
5190
+ #: includes/functions/wcj-invoicing-functions.php:27
5191
+ msgid "Packing Slips"
5192
+ msgstr ""
5193
+
5194
+ #: includes/functions/wcj-invoicing-functions.php:34
5195
+ msgid "Credit Note"
5196
+ msgstr ""
5197
+
5198
+ #: includes/functions/wcj-invoicing-functions.php:35
5199
+ msgid "Credit Notes"
5200
+ msgstr ""
5201
+
5202
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:48
5203
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:56
5204
+ msgid "Enable/Disable"
5205
+ msgstr ""
5206
+
5207
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:50
5208
+ msgid "Enable Custom Payment"
5209
+ msgstr ""
5210
+
5211
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:56
5212
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:64
5213
+ msgid "This controls the title which the user sees during checkout."
5214
+ msgstr ""
5215
+
5216
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:57
5217
+ msgid "Custom Payment"
5218
+ msgstr ""
5219
+
5220
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:63
5221
+ msgid "Payment method description that the customer will see on your checkout."
5222
+ msgstr ""
5223
+
5224
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:64
5225
+ msgid "Custom Payment Description."
5226
+ msgstr ""
5227
+
5228
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:68
5229
+ msgid "Instructions"
5230
+ msgstr ""
5231
+
5232
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:70
5233
+ msgid "Instructions that will be added to the thank you page."
5234
+ msgstr ""
5235
+
5236
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:75
5237
+ msgid "Email Instructions"
5238
+ msgstr ""
5239
+
5240
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:77
5241
+ msgid "Instructions that will be added to the emails."
5242
+ msgstr ""
5243
+
5244
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:82
5245
+ msgid "Icon"
5246
+ msgstr ""
5247
+
5248
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:90
5249
+ msgid "Minimum order amount"
5250
+ msgstr ""
5251
+
5252
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:92
5253
+ msgid ""
5254
+ "If you want to set minimum order amount to show this gateway on frontend, "
5255
+ "enter a number here. Set to 0 to disable."
5256
+ msgstr ""
5257
+
5258
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:99
5259
+ msgid "Enable for shipping methods"
5260
+ msgstr ""
5261
+
5262
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:104
5263
+ msgid ""
5264
+ "If gateway is only available for certain shipping methods, set it up here. "
5265
+ "Leave blank to enable for all methods."
5266
+ msgstr ""
5267
+
5268
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:108
5269
+ msgid "Select shipping methods"
5270
+ msgstr ""
5271
+
5272
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:112
5273
+ msgid "Enable for virtual orders"
5274
+ msgstr ""
5275
+
5276
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:113
5277
+ msgid "Enable gateway if the order is virtual"
5278
+ msgstr ""
5279
+
5280
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:127
5281
+ msgid "Send Additional Emails"
5282
+ msgstr ""
5283
+
5284
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:128
5285
+ msgid "Send to Admin"
5286
+ msgstr ""
5287
+
5288
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:136
5289
+ msgid "Send to Customer"
5290
+ msgstr ""
5291
+
5292
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:137
5293
+ msgid ""
5294
+ "This may help if you are using pending or custom default status and not "
5295
+ "getting new order emails."
5296
+ msgstr ""
5297
+
5298
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:315
5299
+ msgid "Custom Gateway"
5300
+ msgstr ""
5301
+
5302
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:316
5303
+ msgid "WooCommerce Jetpack: Custom Payment Gateway"
5304
+ msgstr ""
5305
+
5306
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:34
5307
+ msgid "Enabled"
5308
+ msgstr ""
5309
+
5310
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:40
5311
+ msgid "Type"
5312
+ msgstr ""
5313
+
5314
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:46
5315
+ msgid "Number"
5316
+ msgstr ""
5317
+
5318
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
5319
+ msgid "File"
5320
+ msgstr ""
5321
+
5322
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:64
5323
+ msgid "If checkbox is selected, set value for ON here"
5324
+ msgstr ""
5325
+
5326
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:65
5327
+ msgid "Checkbox: ON"
5328
+ msgstr ""
5329
+
5330
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:67
5331
+ msgid "Yes"
5332
+ msgstr ""
5333
+
5334
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:71
5335
+ msgid "If checkbox is selected, set value for OFF here"
5336
+ msgstr ""
5337
+
5338
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:72
5339
+ msgid "Checkbox: OFF"
5340
+ msgstr ""
5341
+
5342
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:74
5343
+ msgid "No"
5344
+ msgstr ""
5345
+
5346
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:80
5347
+ msgid ""
5348
+ "If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
5349
+ "\". Leave blank to accept all files"
5350
+ msgstr ""
5351
+
5352
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:81
5353
+ msgid "File: Accepted types"
5354
+ msgstr ""
5355
+
5356
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:83
5357
+ msgid ".jpg,.jpeg,.png"
5358
+ msgstr ""
5359
+
5360
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:88
5361
+ msgid "Required"
5362
+ msgstr ""
5363
+
5364
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:100
5365
+ msgid "Placeholder"
5366
+ msgstr ""
5367
+
5368
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:106
5369
+ msgid "Message on required"
5370
+ msgstr ""
5371
+
5372
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:307
5373
+ msgid "Wrong file type!"
5374
+ msgstr ""
5375
+
5376
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:102
5377
+ msgid "WooCommerce Jetpack: Product Input Fields"
5378
+ msgstr ""
5379
+
5380
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:131
5381
+ msgid "Total number of "
5382
+ msgstr ""
5383
+
5384
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:35
5385
+ msgid "Invoices Renumerate"
5386
+ msgstr ""
5387
+
5388
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:37
5389
+ msgid ""
5390
+ "Tool renumerates all invoices, proforma invoices, credit notes and packing "
5391
+ "slips."
5392
+ msgstr ""
5393
+
5394
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:47
5395
+ msgid "Renumerate Invoices"
5396
+ msgstr ""
5397
+
5398
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
5399
+ msgid "Invoices successfully renumerated!"
5400
+ msgstr ""
5401
+
5402
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:79
5403
+ msgid "Please select at least one order status."
5404
+ msgstr ""
5405
+
5406
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
5407
+ msgid "WooCommerce Jetpack - Renumerate Invoices"
5408
+ msgstr ""
5409
+
5410
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
5411
+ msgid ""
5412
+ "The tool renumerates invoices from choosen date. Invoice number format is "
5413
+ "set in WooCommerce > Settings > Jetpack > PDF Invoices (v2) > Numbering."
5414
+ msgstr ""
5415
+
5416
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
5417
+ msgid "Start Date"
5418
+ msgstr ""
5419
+
5420
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
5421
+ msgid "Date to start renumerating. Leave blank to renumerate all invoices."
5422
+ msgstr ""
5423
+
5424
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:99
5425
+ msgid "Start Number"
5426
+ msgstr ""
5427
+
5428
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:101
5429
+ msgid ""
5430
+ "Counter to start renumerating. Leave 0 to continue from current counter."
5431
+ msgstr ""
5432
+
5433
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:106
5434
+ msgid "Delete All"
5435
+ msgstr ""
5436
+
5437
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:108
5438
+ msgid "Clear all invoices before renumerating."
5439
+ msgstr ""
5440
+
5441
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
5442
+ msgid "Document Type"
5443
+ msgstr ""
5444
+
5445
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:129
5446
+ msgid "Order Statuses"
5447
+ msgstr ""
5448
+
5449
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:139
5450
+ msgid "Results"
5451
+ msgstr ""
5452
+
5453
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:195
5454
+ msgid "Total documents created: %d"
5455
+ msgstr ""
5456
+
5457
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:196
5458
+ msgid "Total documents deleted: %d"
5459
+ msgstr ""
5460
+
5461
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:36
5462
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:48
5463
+ msgid "Invoices Report"
5464
+ msgstr ""
5465
+
5466
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:38
5467
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:72
5468
+ msgid "Invoices Monthly Reports."
5469
+ msgstr ""
5470
+
5471
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:67
5472
+ msgid "Please fill year and month values."
5473
+ msgstr ""
5474
+
5475
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:71
5476
+ msgid "WooCommerce Jetpack - Invoices Report"
5477
+ msgstr ""
5478
+
5479
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:79
5480
+ msgid "Year"
5481
+ msgstr ""
5482
+
5483
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:86
5484
+ msgid "Month"
5485
+ msgstr ""
5486
+
5487
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:95
5488
+ msgid "Get Report"
5489
+ msgstr ""
5490
+
5491
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:109
5492
+ msgid "Invoice Nr."
5493
+ msgstr ""
5494
+
5495
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
5496
+ msgid "Order ID"
5497
+ msgstr ""
5498
+
5499
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:112
5500
+ msgid "Customer Country"
5501
+ msgstr ""
5502
+
5503
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:113
5504
+ msgid "Tax %"
5505
+ msgstr ""
5506
+
5507
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:114
5508
+ msgid "Order Total Tax Excl."
5509
+ msgstr ""
5510
+
5511
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:115
5512
+ msgid "Order Taxes"
5513
+ msgstr ""
5514
+
5515
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:117
5516
+ msgid "Order Currency"
5517
+ msgstr ""
5518
+
5519
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:152
5520
+ msgid "Admin's \"Orders\" Page"
5521
+ msgstr ""
5522
+
5523
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:153
5524
+ msgid "Add Column"
5525
+ msgstr ""
5526
+
5527
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:165
5528
+ msgid "Customer's \"My Account\" Page"
5529
+ msgstr ""
5530
+
5531
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:167
5532
+ msgid "Add link"
5533
+ msgstr ""
5534
+
5535
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:176
5536
+ msgid "Enable \"Save as\""
5537
+ msgstr ""
5538
+
5539
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:178
5540
+ msgid "Enable \"save as\" pdf instead of view pdf in browser"
5541
+ msgstr ""
5542
+
5543
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:187
5544
+ msgid "PDF File Name"
5545
+ msgstr ""
5546
+
5547
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:205
5548
+ msgid "Misc."
5549
+ msgstr ""
5550
+
5551
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:24
5552
+ msgid "Email Options"
5553
+ msgstr ""
5554
+
5555
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:83
5556
+ msgid "Payment gateways to include"
5557
+ msgstr ""
5558
+
5559
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:91
5560
+ msgid "Select some gateways. Leave blank to include all."
5561
+ msgstr ""
5562
+
5563
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:110
5564
+ msgid "Admin - New Order"
5565
+ msgstr ""
5566
+
5567
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:111
5568
+ msgid "Customer - Processing Order"
5569
+ msgstr ""
5570
+
5571
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:112
5572
+ msgid "Customer - Completed Order"
5573
+ msgstr ""
5574
+
5575
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:113
5576
+ msgid "Customer - Invoice"
5577
+ msgstr ""
5578
+
5579
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:117
5580
+ msgid "Attach PDF to emails"
5581
+ msgstr ""
5582
+
5583
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:126
5584
+ msgid "Select some emails"
5585
+ msgstr ""
5586
+
5587
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:43
5588
+ msgid "Enable Footer"
5589
+ msgstr ""
5590
+
5591
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:50
5592
+ msgid "Footer Text"
5593
+ msgstr ""
5594
+
5595
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:57
5596
+ msgid ""
5597
+ "You can use HTML here, as well as any WordPress shortcodes. There is two "
5598
+ "more predefined values you can use: %page_number% and %total_pages%."
5599
+ msgstr ""
5600
+
5601
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:63
5602
+ msgid "Footer Text Color"
5603
+ msgstr ""
5604
+
5605
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:71
5606
+ msgid "Footer Line Color"
5607
+ msgstr ""
5608
+
5609
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:79
5610
+ msgid "Footer Margin"
5611
+ msgstr ""
5612
+
5613
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:42
5614
+ msgid "Enable Header"
5615
+ msgstr ""
5616
+
5617
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:49
5618
+ msgid "Header Image"
5619
+ msgstr ""
5620
+
5621
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:59
5622
+ msgid "Header Image Width in mm"
5623
+ msgstr ""
5624
+
5625
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:66
5626
+ msgid "Header Title"
5627
+ msgstr ""
5628
+
5629
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:76
5630
+ msgid "Company Name"
5631
+ msgstr ""
5632
+
5633
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:79
5634
+ msgid "free version will add \"powered by woojetpack.com\" to heading text"
5635
+ msgstr ""
5636
+
5637
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:83
5638
+ msgid "Header Text Color"
5639
+ msgstr ""
5640
+
5641
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:91
5642
+ msgid "Header Line Color"
5643
+ msgstr ""
5644
+
5645
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:99
5646
+ msgid "Header Margin"
5647
+ msgstr ""
5648
+
5649
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:116
5650
+ msgid "Header"
5651
+ msgstr ""
5652
+
5653
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:37
5654
+ msgid "Sequential"
5655
+ msgstr ""
5656
+
5657
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:43
5658
+ msgid "Counter"
5659
+ msgstr ""
5660
+
5661
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:55
5662
+ msgid "Counter Width"
5663
+ msgstr ""
5664
+
5665
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:76
5666
+ msgid "Numbering"
5667
+ msgstr ""
5668
+
5669
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:43
5670
+ msgid "Page Orientation"
5671
+ msgstr ""
5672
+
5673
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:48
5674
+ msgid "Portrait"
5675
+ msgstr ""
5676
+
5677
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:49
5678
+ msgid "Landscape"
5679
+ msgstr ""
5680
+
5681
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:56
5682
+ msgid "Page Format"
5683
+ msgstr ""
5684
+
5685
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:64
5686
+ msgid "Margin Left"
5687
+ msgstr ""
5688
+
5689
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:71
5690
+ msgid "Margin Right"
5691
+ msgstr ""
5692
+
5693
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:78
5694
+ msgid "Margin Top"
5695
+ msgstr ""
5696
+
5697
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:85
5698
+ msgid "Margin Bottom"
5699
+ msgstr ""
5700
+
5701
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:101
5702
+ msgid "Page Settings"
5703
+ msgstr ""
5704
+
5705
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:96
5706
+ msgid "Styling"
5707
+ msgstr ""
5708
+
5709
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:43
5710
+ msgid "HTML Template"
5711
+ msgstr ""
5712
+
5713
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:53
5714
+ msgid "Available Shortcodes"
5715
+ msgstr ""
5716
+
5717
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:65
5718
+ msgid "Templates"
5719
+ msgstr ""
5720
+
5721
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:98
5722
+ msgid "Cron job: exchange rates successfully updated"
5723
+ msgstr ""
5724
+
5725
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:100
5726
+ msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
5727
+ msgstr ""
5728
+
5729
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:103
5730
+ msgid "Cron job: exchange rates update failed"
5731
+ msgstr ""
5732
+
5733
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:116
5734
+ msgid "Once Weekly"
5735
+ msgstr ""
5736
+
5737
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:121
5738
+ msgid "Once a Minute"
5739
+ msgstr ""
5740
+
5741
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:127
5742
+ msgid "Regular Price"
5743
+ msgstr ""
5744
+
5745
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:134
5746
+ msgid "Sale Price"
5747
+ msgstr ""
5748
+
5749
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:236
5750
+ msgid "Country Group Nr."
5751
+ msgstr ""
5752
+
5753
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:38
5754
+ msgid "Reports currency:"
5755
+ msgstr ""
5756
+
5757
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:40
5758
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:62
5759
+ msgid "Show reports only in"
5760
+ msgstr ""
5761
+
5762
+ #: includes/reports/wcj-class-reports-customers.php:41
5763
+ msgid "No customers found."
5764
+ msgstr ""
5765
+
5766
+ #: includes/reports/wcj-class-reports-customers.php:91
5767
+ msgid "Customer Name"
5768
+ msgstr ""
5769
+
5770
+ #: includes/reports/wcj-class-reports-customers.php:92
5771
+ msgid "Email"
5772
+ msgstr ""
5773
+
5774
+ #: includes/reports/wcj-class-reports-customers.php:93
5775
+ msgid "Total Spent"
5776
+ msgstr ""
5777
+
5778
+ #: includes/reports/wcj-class-reports-customers.php:94
5779
+ msgid "Registered"
5780
+ msgstr ""
5781
+
5782
+ #: includes/reports/wcj-class-reports-customers.php:133
5783
+ msgid "Total customers"
5784
+ msgstr ""
5785
+
5786
+ #: includes/reports/wcj-class-reports-customers.php:137
5787
+ msgid "Country Code"
5788
+ msgstr ""
5789
+
5790
+ #: includes/reports/wcj-class-reports-customers.php:138
5791
+ msgid "Customers Count"
5792
+ msgstr ""
5793
+
5794
+ #: includes/reports/wcj-class-reports-customers.php:139
5795
+ msgid "Percent of total"
5796
+ msgstr ""
5797
+
5798
+ #: includes/reports/wcj-class-reports-customers.php:161
5799
+ msgid "Report for:"
5800
+ msgstr ""
5801
+
5802
+ #: includes/reports/wcj-class-reports-stock.php:30
5803
+ msgid "All Products on Stock"
5804
+ msgstr ""
5805
+
5806
+ #: includes/reports/wcj-class-reports-stock.php:31
5807
+ msgid "Report shows all products that are on stock and some sales info."
5808
+ msgstr ""
5809
+
5810
+ #: includes/reports/wcj-class-reports-stock.php:35
5811
+ msgid "Understocked"
5812
+ msgstr ""
5813
+
5814
+ #: includes/reports/wcj-class-reports-stock.php:36
5815
+ msgid ""
5816
+ "Report shows all products that are low in stock calculated on product's "
5817
+ "sales data."
5818
+ msgstr ""
5819
+
5820
+ #: includes/reports/wcj-class-reports-stock.php:38
5821
+ msgid ""
5822
+ "Threshold for minimum stock is equal to half of the sales in selected days "
5823
+ "range."
5824
+ msgstr ""
5825
+
5826
+ #: includes/reports/wcj-class-reports-stock.php:42
5827
+ msgid "Overstocked"
5828
+ msgstr ""
5829
+
5830
+ #: includes/reports/wcj-class-reports-stock.php:43
5831
+ msgid ""
5832
+ "Report shows all products that are on stock, but have no sales in selected "
5833
+ "period. Only products added before the start date of selected period are "
5834
+ "accounted."
5835
+ msgstr ""
5836
+
5837
+ #: includes/reports/wcj-class-reports-stock.php:287
5838
+ msgid "Stock"
5839
+ msgstr ""
5840
+
5841
+ #: includes/reports/wcj-class-reports-stock.php:288
5842
+ msgid "Stock price"
5843
+ msgstr ""
5844
+
5845
+ #: includes/reports/wcj-class-reports-stock.php:289
5846
+ msgid "Total stock price"
5847
+ msgstr ""
5848
+
5849
+ #: includes/reports/wcj-class-reports-stock.php:291
5850
+ msgid "Last sale"
5851
+ msgstr ""
5852
+
5853
+ #: includes/reports/wcj-class-reports-stock.php:292
5854
+ msgid "Sales in last %s days"
5855
+ msgstr ""
5856
+
5857
+ #: includes/reports/wcj-class-reports-stock.php:293
5858
+ msgid "Total sales"
5859
+ msgstr ""
5860
+
5861
+ #: includes/reports/wcj-class-reports-stock.php:296
5862
+ msgid "Stock to minimum"
5863
+ msgstr ""
5864
+
5865
+ #: includes/reports/wcj-class-reports-stock.php:328
5866
+ msgid "purchase price:"
5867
+ msgstr ""
5868
+
5869
+ #: includes/reports/wcj-class-reports-stock.php:333
5870
+ msgid "stock purchase price:"
5871
+ msgstr ""
5872
+
5873
+ #: includes/reports/wcj-class-reports-stock.php:339
5874
+ msgid "No sales yet"
5875
+ msgstr ""
5876
+
5877
+ #: includes/reports/wcj-class-reports-stock.php:344
5878
+ msgid "profit:"
5879
+ msgstr ""
5880
+
5881
+ #: includes/reports/wcj-class-reports-stock.php:368
5882
+ msgid "Total current stock value"
5883
+ msgstr ""
5884
+
5885
+ #: includes/reports/wcj-class-reports-stock.php:369
5886
+ msgid "Total stock value"
5887
+ msgstr ""
5888
+
5889
+ #: includes/reports/wcj-class-reports-stock.php:370
5890
+ msgid "Product stock value average"
5891
+ msgstr ""
5892
+
5893
+ #: includes/reports/wcj-class-reports-stock.php:371
5894
+ msgid "Product stock average"
5895
+ msgstr ""
5896
+
5897
+ #: includes/reports/wcj-class-reports-stock.php:375
5898
+ msgid "Report was generated in: "
5899
+ msgstr ""
5900
+
5901
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:19
5902
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:65
5903
+ msgid "Custom Shipping"
5904
+ msgstr ""
5905
+
5906
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:20
5907
+ msgid "WooCommerce Jetpack: Custom Shipping Method"
5908
+ msgstr ""
5909
+
5910
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:58
5911
+ msgid "Enable Custom Shipping"
5912
+ msgstr ""
5913
+
5914
+ #: woocommerce-jetpack.php:134
5915
+ msgid ""
5916
+ "<strong>WooCommerce Jetpack</strong> plugin changed its name to "
5917
+ "<strong>Booster for WooCommerce</strong>."
5918
+ msgstr ""
5919
+
5920
+ #: woocommerce-jetpack.php:136
5921
+ msgid "Got it! Hide this message"
5922
+ msgstr ""
5923
+
5924
+ #. #-#-#-#-# plugin.pot (Booster for WooCommerce 2.2.5) #-#-#-#-#
5925
+ #. Plugin Name of the plugin/theme
5926
+ #: woocommerce-jetpack.php:186
5927
+ msgid "Booster for WooCommerce"
5928
+ msgstr ""
5929
+
5930
+ #: woocommerce-jetpack.php:186
5931
+ msgid "Booster Settings"
5932
  msgstr ""
5933
 
5934
+ #: woocommerce-jetpack.php:198
5935
  msgid "Docs"
5936
  msgstr ""
5937
 
5938
+ #: woocommerce-jetpack.php:199
5939
  msgid "Unlock all"
5940
  msgstr ""
5941
 
5942
+ #: woocommerce-jetpack.php:212
5943
+ msgid "Install Booster for WooCommerce Plus to unlock all features"
5944
  msgstr ""
5945
 
5946
+ #: woocommerce-jetpack.php:213
5947
  msgid ""
5948
  "Some settings fields are locked and you will need %s to modify all locked "
5949
  "fields."
5950
  msgstr ""
5951
 
5952
+ #: woocommerce-jetpack.php:214
5953
  msgid "Buy now"
5954
  msgstr ""
5955
 
5956
+ #: woocommerce-jetpack.php:214
5957
  msgid "Visit %s"
5958
  msgstr ""
5959
 
5960
+ #: woocommerce-jetpack.php:218
5961
  msgid ""
5962
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5963
+ "WooCommerce Plus</a> to change value."
5964
  msgstr ""
5965
 
5966
+ #: woocommerce-jetpack.php:221
5967
  msgid ""
5968
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5969
+ "WooCommerce Plus</a> to change values below."
5970
  msgstr ""
5971
 
5972
+ #: woocommerce-jetpack.php:224
5973
  msgid ""
5974
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5975
+ "WooCommerce Plus</a> to change values above."
5976
  msgstr ""
5977
 
5978
+ #: woocommerce-jetpack.php:227
5979
+ msgid "Get Booster for WooCommerce Plus to change value."
5980
  msgstr ""
5981
 
5982
  #. Plugin URI of the plugin/theme
5983
+ msgid "http://BoostWoo.com"
5984
  msgstr ""
5985
 
5986
  #. Description of the plugin/theme
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Booster for WooCommerce ===
2
- Contributors: algoritmika
3
  Donate link: http://algoritmika.com/donate/
4
  Tags: woocommerce,booster for woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 2.2.5
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -33,6 +33,7 @@ Booster for WooCommerce is a WordPress plugin that supercharges your site with a
33
 
34
  **Products**
35
 
 
36
  * *Product Add to Cart* - Set any local url to redirect to on WooCommerce Add to Cart. Automatically add to cart on product visit.
37
  * *Product Cost Price* - Save WooCommerce product purchase costs data for admin reports.
38
  * *Product Images* - Customize WooCommerce products images, thumbnails and sale flashes.
@@ -88,13 +89,14 @@ Booster for WooCommerce is a WordPress plugin that supercharges your site with a
88
  * Visit the [Booster for WooCommerce plugin page](http://boostwoo.com/)
89
 
90
  = Available Translations =
91
- * `FR_fr` by Jean-Marc Schreiber.
 
92
 
93
  == Installation ==
94
 
95
  1. Upload the entire `woocommerce-jetpack` folder to the `/wp-content/plugins/` directory
96
  2. Activate the plugin through the 'Plugins' menu in WordPress
97
- 3. Go to WooCommerce > Settings > Jetpack
98
 
99
  == Frequently Asked Questions ==
100
 
@@ -108,6 +110,32 @@ To unlock all Booster for WooCommerce features, please install additional <a hre
108
 
109
  == Changelog ==
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  = 2.2.5 - 02/08/2015 =
112
  * Fix - datepicker js script - issue with bazar theme (Add Shortcodes on page edit) fixed.
113
  * Dev - Plugin renaming continued.
1
  === Booster for WooCommerce ===
2
+ Contributors: algoritmika,valentinas-solovjovas
3
  Donate link: http://algoritmika.com/donate/
4
  Tags: woocommerce,booster for woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 2.2.6
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
33
 
34
  **Products**
35
 
36
+ * *Crowdfunding* - Add crowdfunding products to WooCommerce.
37
  * *Product Add to Cart* - Set any local url to redirect to on WooCommerce Add to Cart. Automatically add to cart on product visit.
38
  * *Product Cost Price* - Save WooCommerce product purchase costs data for admin reports.
39
  * *Product Images* - Customize WooCommerce products images, thumbnails and sale flashes.
89
  * Visit the [Booster for WooCommerce plugin page](http://boostwoo.com/)
90
 
91
  = Available Translations =
92
+ * French - `fr_FR` by Jean-Marc Schreiber.
93
+ * Dutch - `nl_NL`.
94
 
95
  == Installation ==
96
 
97
  1. Upload the entire `woocommerce-jetpack` folder to the `/wp-content/plugins/` directory
98
  2. Activate the plugin through the 'Plugins' menu in WordPress
99
+ 3. Go to WooCommerce > Settings > Booster
100
 
101
  == Frequently Asked Questions ==
102
 
110
 
111
  == Changelog ==
112
 
113
+ = 2.2.6 - 15/08/2015 =
114
+ * Fix - Shortcodes - `[wcj_order_checkout_field]` bug fixed.
115
+ * Dev - Shortcodes - Products - `[wcj_product_total_sales]` added.
116
+ * Dev - Code refactoring - Meta box support added to `WCJ_Module`.
117
+ * Dev - Code refactoring - `get_settings()` added to `WCJ_Module`.
118
+ * Dev - Dutch translation added.
119
+ * Dev - POT file updated added.
120
+ * Dev - PRICES & CURRENCIES - Price by Country - "WooJetpack" to "BoostWoo" in country group fields descriptions.
121
+ * Dev - PRICES & CURRENCIES - Price by Country - "Override Country on Checkout with Billing Country" option added. "No country was detected" routine disabled.
122
+ * Dev - PRICES & CURRENCIES - Wholesale Price - Option to set *fixed* discount value (not percent).
123
+ * Dev - PRICES & CURRENCIES - Wholesale Price - "Apply wholesale discount only if no other cart discounts were applied" option added.
124
+ * Dev - PRICES & CURRENCIES - Wholesale Price - `old_price_html` in `add_discount_info_to_cart_page()` modified.
125
+ * Fix - BUTTON & PRICE LABELS - Add to Cart Labels - per Product Category - bug fixed.
126
+ * Fix - PRODUCTS - Product Info - `wp_reset_query` to `wp_reset_postdata`.
127
+ * Fix - PRODUCTS - Product Info - `completed` to `wc-completed` in orders WP_Query.
128
+ * Dev - PRODUCTS - Product Images - Replace image with HTML (globally and locally) added (`custom_textarea` custom settings field added).
129
+ * Dev - PRODUCTS - Related Products - `delete_product_transients` added on settings save (now no need to Clear transients manually from WooCommerce Status > Tools).
130
+ * Fix - PRODUCTS - Related Products - Relate by category/tag bug fixed.
131
+ * Dev - PRODUCTS - Crowdfunding - Initial module release.
132
+ Shortcodes added: `[wcj_product_total_orders]`, `[wcj_product_total_orders_sum]`,
133
+ `[wcj_product_crowdfunding_goal]`, `[wcj_product_crowdfunding_goal_remaining]`,
134
+ `[wcj_product_crowdfunding_startdate]`, `[wcj_product_crowdfunding_deadline]`, `[wcj_product_crowdfunding_time_remaining]`.
135
+ * Fix - PRODUCTS - Product Cost Price - Profit column bug fixed.
136
+ * Dev - CART & CHECKOUT - Payment Gateways Fees - Discounts (negative fee value) added. Module renamed to "Payment Gateways Fees and Discounts".
137
+ * Fix - EMAILS & MISC. - Reports - `completed` to `wc-completed` in orders WP_Query.
138
+
139
  = 2.2.5 - 02/08/2015 =
140
  * Fix - datepicker js script - issue with bazar theme (Add Shortcodes on page edit) fixed.
141
  * Dev - Plugin renaming continued.
woocommerce-jetpack.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: http://BoostWoo.com
5
  Description: Supercharge your WooCommerce site with these awesome powerful features.
6
- Version: 2.2.5
7
  Author: Algoritmika Ltd
8
  Author URI: http://www.algoritmika.com
9
  Copyright: © 2015 Algoritmika Ltd.
@@ -89,9 +89,13 @@ final class WC_Jetpack {
89
 
90
  // Scripts
91
  if ( is_admin() ) {
92
- if ( 'yes' === get_option( 'wcj_purchase_data_enabled' ) || 'yes' === get_option( 'wcj_pdf_invoicing_enabled' ) ) {
 
 
 
 
93
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
94
- //add_action( 'admin_head', array( $this, 'add_datepicker_script' ) );
95
  }
96
  }
97
 
@@ -151,18 +155,6 @@ final class WC_Jetpack {
151
  wp_enqueue_style( 'jquery-ui-css', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css' );
152
  }
153
 
154
- /* public function add_datepicker_script() {
155
- ?>
156
- <script>
157
- jQuery(document).ready(function() {
158
- jQuery("input[display='date']").datepicker({
159
- dateFormat : '<?php echo wcj_date_format_php_to_js( get_option( 'date_format' ) ); ?>'
160
- });
161
- });
162
- </script>
163
- <?php
164
- } */
165
-
166
  /**
167
  * admin_footer_text
168
  *
@@ -313,6 +305,7 @@ final class WC_Jetpack {
313
  $settings[] = include_once( 'includes/class-wcj-product-input-fields.php' );
314
  $settings[] = include_once( 'includes/class-wcj-product-bulk-price-converter.php' );
315
  $settings[] = include_once( 'includes/class-wcj-purchase-data.php' );
 
316
  $settings[] = include_once( 'includes/class-wcj-wholesale-price.php' );
317
  $settings[] = include_once( 'includes/class-wcj-product-images.php' );
318
 
@@ -425,6 +418,7 @@ final class WC_Jetpack {
425
  do_action( 'before_wcj_init' );
426
  // Set up localisation
427
  load_plugin_textdomain( 'woocommerce-jetpack', false, dirname( plugin_basename( __FILE__ ) ) . '/langs/' );
 
428
  // Init action
429
  do_action( 'wcj_init' );
430
  }
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: http://BoostWoo.com
5
  Description: Supercharge your WooCommerce site with these awesome powerful features.
6
+ Version: 2.2.6
7
  Author: Algoritmika Ltd
8
  Author URI: http://www.algoritmika.com
9
  Copyright: © 2015 Algoritmika Ltd.
89
 
90
  // Scripts
91
  if ( is_admin() ) {
92
+ if (
93
+ 'yes' === get_option( 'wcj_purchase_data_enabled' ) ||
94
+ 'yes' === get_option( 'wcj_pdf_invoicing_enabled' ) ||
95
+ 'yes' === get_option( 'wcj_crowdfunding_enabled' )
96
+ ) {
97
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
98
+ //add_action( 'admin_head', array( $this, 'add_datepicker_script' ) );
99
  }
100
  }
101
 
155
  wp_enqueue_style( 'jquery-ui-css', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css' );
156
  }
157
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  /**
159
  * admin_footer_text
160
  *
305
  $settings[] = include_once( 'includes/class-wcj-product-input-fields.php' );
306
  $settings[] = include_once( 'includes/class-wcj-product-bulk-price-converter.php' );
307
  $settings[] = include_once( 'includes/class-wcj-purchase-data.php' );
308
+ $settings[] = include_once( 'includes/class-wcj-crowdfunding.php' );
309
  $settings[] = include_once( 'includes/class-wcj-wholesale-price.php' );
310
  $settings[] = include_once( 'includes/class-wcj-product-images.php' );
311
 
418
  do_action( 'before_wcj_init' );
419
  // Set up localisation
420
  load_plugin_textdomain( 'woocommerce-jetpack', false, dirname( plugin_basename( __FILE__ ) ) . '/langs/' );
421
+
422
  // Init action
423
  do_action( 'wcj_init' );
424
  }
wpml-config.xml CHANGED
@@ -37,12 +37,6 @@
37
  <key name="wcj_product_input_fields_title_global_1" />
38
  <key name="wcj_product_input_fields_placeholder_global_1" />
39
  <key name="wcj_product_input_fields_required_message_global_1" />
40
- <key name="wcj_product_input_fields_type_checkbox_yes_global_2" />
41
- <key name="wcj_product_input_fields_type_checkbox_no_global_2" />
42
- <key name="wcj_product_input_fields_type_file_accept_global_2" />
43
- <key name="wcj_product_input_fields_title_global_2" />
44
- <key name="wcj_product_input_fields_placeholder_global_2" />
45
- <key name="wcj_product_input_fields_required_message_global_2" />
46
  <key name="wcj_add_to_cart_per_category_text_single_group_1" />
47
  <key name="wcj_add_to_cart_per_category_text_archive_group_1" />
48
  <key name="wcj_add_to_cart_text_on_single_simple" />
37
  <key name="wcj_product_input_fields_title_global_1" />
38
  <key name="wcj_product_input_fields_placeholder_global_1" />
39
  <key name="wcj_product_input_fields_required_message_global_1" />
 
 
 
 
 
 
40
  <key name="wcj_add_to_cart_per_category_text_single_group_1" />
41
  <key name="wcj_add_to_cart_per_category_text_archive_group_1" />
42
  <key name="wcj_add_to_cart_text_on_single_simple" />