Booster for WooCommerce - Version 2.2.8

Version Description

  • 23/08/2015 =
  • Fix - EMAILS & MISC. - WPML - "Creating WPML XML file on each settings saving" disabled. Manual "Regenerate wpml-config.xml file" tool added.
  • Dev - Select All checkbox style modified in output_dashboard_modules function.
  • Dev - Dutch translation updated.
  • Dev - POT file updated.
Download this release

Release Info

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

Code changes from version 2.2.7 to 2.2.8

includes/admin/class-wc-settings-jetpack.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack Settings class.
6
  *
7
- * @version 2.2.6
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.6
22
  */
23
  function __construct() {
24
 
@@ -35,6 +35,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
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
  }
@@ -106,10 +107,27 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
106
  </tr><?php
107
  }
108
 
109
- /**
110
- * output_custom_number.
111
- */
112
- function output_custom_number( $value ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  $type = 'number';//$value['type'];
114
  $option_value = get_option( $value['id'], $value['default'] );
115
 
@@ -329,6 +347,8 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
329
 
330
  /**
331
  * output_dashboard_modules.
 
 
332
  */
333
  function output_dashboard_modules( $settings, $cat_id = '' ) {
334
  $readme_html = '';
@@ -336,14 +356,14 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
336
  <table class="wp-list-table widefat plugins">
337
  <thead>
338
  <tr>
339
- <th scope="col" id="cb" class="manage-column column-cb check-column" style=""><label class="screen-reader-text" for="cb-select-all-1"><?php _e( 'Select All', 'woocommerce-jetpack' ); ?></label><input id="cb-select-all-1" type="checkbox"></th>
340
  <th scope="col" id="name" class="manage-column column-name" style=""><?php _e( 'Module', 'woocommerce-jetpack' ); ?></th>
341
  <th scope="col" id="description" class="manage-column column-description" style=""><?php _e( 'Description', 'woocommerce-jetpack' ); ?></th>
342
  </tr>
343
  </thead>
344
  <tfoot>
345
  <tr>
346
- <th scope="col" class="manage-column column-cb check-column" style=""><label class="screen-reader-text" for="cb-select-all-2"><?php _e( 'Select All', 'woocommerce-jetpack' ); ?></label><input id="cb-select-all-2" type="checkbox"></th>
347
  <th scope="col" class="manage-column column-name" style=""><?php _e( 'Module', 'woocommerce-jetpack' ); ?></th>
348
  <th scope="col" class="manage-column column-description" style=""><?php _e( 'Description', 'woocommerce-jetpack' ); ?></th>
349
  </tr>
4
  *
5
  * The WooCommerce Jetpack Settings class.
6
  *
7
+ * @version 2.2.8
8
  * @since 1.0.0
9
  * @author Algoritmika Ltd.
10
  */
18
  /**
19
  * Constructor.
20
  *
21
+ * @version 2.2.8
22
  */
23
  function __construct() {
24
 
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_custom_link', array( $this, 'output_custom_link' ) );
39
  add_action( 'woocommerce_admin_field_module_tools', array( $this, 'output_module_tools' ) );
40
  add_action( 'woocommerce_admin_field_custom_textarea', array( $this, 'output_custom_textarea' ) );
41
  }
107
  </tr><?php
108
  }
109
 
110
+ /**
111
+ * output_custom_link.
112
+ *
113
+ * @version 2.2.8
114
+ * @since 2.2.8
115
+ */
116
+ function output_custom_link( $value ) {
117
+ ?><tr valign="top">
118
+ <th scope="row" class="titledesc">
119
+ <label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
120
+ </th>
121
+ <td class="forminp forminp-<?php echo sanitize_title( $value['type'] ) ?>">
122
+ <?php echo $value['link']; ?>
123
+ </td>
124
+ </tr><?php
125
+ }
126
+
127
+ /**
128
+ * output_custom_number.
129
+ */
130
+ function output_custom_number( $value ) {
131
  $type = 'number';//$value['type'];
132
  $option_value = get_option( $value['id'], $value['default'] );
133
 
347
 
348
  /**
349
  * output_dashboard_modules.
350
+ *
351
+ * @version 2.2.8
352
  */
353
  function output_dashboard_modules( $settings, $cat_id = '' ) {
354
  $readme_html = '';
356
  <table class="wp-list-table widefat plugins">
357
  <thead>
358
  <tr>
359
+ <th scope="col" id="cb" class="manage-column column-cb check-column" style=""><label class="screen-reader-text" for="cb-select-all-1"><?php _e( 'Select All', 'woocommerce-jetpack' ); ?></label><input id="cb-select-all-1" type="checkbox" style="margin-top:15px;"></th>
360
  <th scope="col" id="name" class="manage-column column-name" style=""><?php _e( 'Module', 'woocommerce-jetpack' ); ?></th>
361
  <th scope="col" id="description" class="manage-column column-description" style=""><?php _e( 'Description', 'woocommerce-jetpack' ); ?></th>
362
  </tr>
363
  </thead>
364
  <tfoot>
365
  <tr>
366
+ <th scope="col" class="manage-column column-cb check-column" style=""><label class="screen-reader-text" for="cb-select-all-2"><?php _e( 'Select All', 'woocommerce-jetpack' ); ?></label><input id="cb-select-all-2" type="checkbox" style="margin-top:15px;"></th>
367
  <th scope="col" class="manage-column column-name" style=""><?php _e( 'Module', 'woocommerce-jetpack' ); ?></th>
368
  <th scope="col" class="manage-column column-description" style=""><?php _e( 'Description', 'woocommerce-jetpack' ); ?></th>
369
  </tr>
includes/class-wcj-wpml.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * The WooCommerce Jetpack WPML class.
6
  *
7
- * @version 2.2.4
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
@@ -15,44 +15,81 @@ if ( ! class_exists( 'WCJ_WPML' ) ) :
15
 
16
  class WCJ_WPML extends WCJ_Module {
17
 
18
- /**
19
- * Constructor.
20
- */
21
- function __construct() {
 
 
22
 
23
  $this->id = 'wpml';
24
  $this->short_desc = __( 'WPML', 'woocommerce-jetpack' );
25
  $this->desc = __( 'Booster for WooCommerce basic WPML support.', 'woocommerce-jetpack' );
26
  parent::__construct();
27
 
28
- if ( $this->is_enabled() ) {
29
- add_action( 'woojetpack_after_settings_save', array( $this, 'create_wpml_xml_file' ) );
30
- }
31
- }
 
 
32
 
33
- /**
34
- * get_settings.
35
- */
36
- function get_settings() {
37
- $settings = array();
38
- return $this->add_enable_module_setting( $settings );
39
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
- /**
42
- * create_wpml_xml_file.
43
- */
44
- function create_wpml_xml_file( $sections ) {
 
 
45
 
46
- if ( false !== ( $handle = fopen( wcj_plugin_path() . '/wpml-config.xml', 'w' ) ) ) {
 
 
 
 
 
 
 
 
 
47
 
48
  fwrite( $handle, '<wpml-config>' . PHP_EOL );
49
  fwrite( $handle, "\t" );
50
  fwrite( $handle, '<admin-texts>' . PHP_EOL );
51
 
52
- //$sections = $this->get_sections();
 
53
  foreach ( $sections as $section => $section_title ) {
54
 
55
- //$settings = $this->get_settings( $section );
56
  $settings = apply_filters( 'wcj_settings_' . $section, array() );
57
 
58
  foreach ( $settings as $value ) {
@@ -68,14 +105,23 @@ class WCJ_WPML extends WCJ_Module {
68
  fwrite( $handle, '</wpml-config>' . PHP_EOL );
69
 
70
  fclose( $handle );
 
 
 
 
71
  }
72
 
73
  }
74
 
 
 
 
75
  function is_wpml_value( $section, $value ) {
76
 
 
77
  $is_type_ok = ( 'textarea' === $value['type'] || 'text' === $value['type'] ) ? true : false;
78
 
 
79
  $sections_with_wpml = array(
80
  'call_for_price',
81
  'price_labels',
@@ -104,6 +150,7 @@ class WCJ_WPML extends WCJ_Module {
104
  );
105
  $is_section_ok = ( in_array( $section, $sections_with_wpml ) ) ? true : false;
106
 
 
107
  $values_to_skip = array(
108
  'wcj_product_info_products_to_exclude',
109
 
@@ -114,7 +161,7 @@ class WCJ_WPML extends WCJ_Module {
114
 
115
  'wcj_empty_cart_div_style',
116
  );
117
- //$is_id_ok = ( in_array( $value['id'], $values_to_skip ) ) ? false : true;
118
  $is_id_ok = true;
119
  foreach ( $values_to_skip as $value_to_skip ) {
120
  if ( false !== strpos( $value['id'], $value_to_skip ) ) {
@@ -123,6 +170,7 @@ class WCJ_WPML extends WCJ_Module {
123
  }
124
  }
125
 
 
126
  return ( $is_type_ok && $is_section_ok && $is_id_ok );
127
  }
128
 
4
  *
5
  * The WooCommerce Jetpack WPML class.
6
  *
7
+ * @version 2.2.8
8
  * @since 2.2.0
9
  * @author Algoritmika Ltd.
10
  */
15
 
16
  class WCJ_WPML extends WCJ_Module {
17
 
18
+ /**
19
+ * Constructor.
20
+ *
21
+ * @version 2.2.8
22
+ */
23
+ function __construct() {
24
 
25
  $this->id = 'wpml';
26
  $this->short_desc = __( 'WPML', 'woocommerce-jetpack' );
27
  $this->desc = __( 'Booster for WooCommerce basic WPML support.', 'woocommerce-jetpack' );
28
  parent::__construct();
29
 
30
+ if ( $this->is_enabled() ) {
31
+ add_action( 'woocommerce_init', array( $this, 'create_wpml_xml_file' ), PHP_INT_MAX );
32
+ }
33
+
34
+ $this->notice = '';
35
+ }
36
 
37
+ /**
38
+ * get_settings.
39
+ *
40
+ * @version 2.2.8
41
+ */
42
+ function get_settings() {
43
+ $settings = array(
44
+ array(
45
+ 'title' => $this->short_desc . ' ' . __( 'Tools', 'woocommerce-jetpack' ),
46
+ 'type' => 'title',
47
+ 'desc' => '',
48
+ 'id' => 'wcj_' . $this->id . '_tools_options'
49
+ ),
50
+ array(
51
+ 'title' => __( 'Module Tools', 'woocommerce-jetpack' ),
52
+ 'id' => 'wcj_' . $this->id . '_module_tools',
53
+ 'type' => 'custom_link',
54
+ 'link' => '<pre><a href="' . add_query_arg( 'create_wpml_xml_file', '1' ) . '">' . __( 'Regenerate wpml-config.xml file', 'woocommerce-jetpack' ) . '</a></pre>'
55
+ . '<pre>' . $this->notice . '</pre>',
56
+ ),
57
+ array(
58
+ 'type' => 'sectionend',
59
+ 'id' => 'wcj_' . $this->id . '_tools_options'
60
+ ),
61
+ );
62
+ $this->notice = '';
63
+ return $this->add_enable_module_setting( $settings );
64
+ }
65
 
66
+ /**
67
+ * create_wpml_xml_file.
68
+ *
69
+ * @version 2.2.8
70
+ */
71
+ function create_wpml_xml_file() {
72
 
73
+ if ( ! isset( $_GET['create_wpml_xml_file'] ) || ! is_super_admin() ) {
74
+ return;
75
+ }
76
+
77
+ if ( ! isset( $_GET['section'] ) || 'wpml' != $_GET['section'] ) {
78
+ return;
79
+ }
80
+
81
+ $file_path = wcj_plugin_path() . '/wpml-config.xml';
82
+ if ( false !== ( $handle = fopen( $file_path, 'w' ) ) ) {
83
 
84
  fwrite( $handle, '<wpml-config>' . PHP_EOL );
85
  fwrite( $handle, "\t" );
86
  fwrite( $handle, '<admin-texts>' . PHP_EOL );
87
 
88
+ // $sections = $this->get_sections();
89
+ $sections = apply_filters( 'wcj_settings_sections', array() );
90
  foreach ( $sections as $section => $section_title ) {
91
 
92
+ // $settings = $this->get_settings( $section );
93
  $settings = apply_filters( 'wcj_settings_' . $section, array() );
94
 
95
  foreach ( $settings as $value ) {
105
  fwrite( $handle, '</wpml-config>' . PHP_EOL );
106
 
107
  fclose( $handle );
108
+
109
+ $this->notice = __( 'File wpml-config.xml successfully regenerated!', 'woocommerce-jetpack' ) /* . PHP_EOL
110
+ . __( 'File path:', 'woocommerce-jetpack' ) . ' ' . $file_path . PHP_EOL */;
111
+
112
  }
113
 
114
  }
115
 
116
+ /**
117
+ * is_wpml_value.
118
+ */
119
  function is_wpml_value( $section, $value ) {
120
 
121
+ // Type
122
  $is_type_ok = ( 'textarea' === $value['type'] || 'text' === $value['type'] ) ? true : false;
123
 
124
+ // Section
125
  $sections_with_wpml = array(
126
  'call_for_price',
127
  'price_labels',
150
  );
151
  $is_section_ok = ( in_array( $section, $sections_with_wpml ) ) ? true : false;
152
 
153
+ // ID
154
  $values_to_skip = array(
155
  'wcj_product_info_products_to_exclude',
156
 
161
 
162
  'wcj_empty_cart_div_style',
163
  );
164
+ // $is_id_ok = ( in_array( $value['id'], $values_to_skip ) ) ? false : true;
165
  $is_id_ok = true;
166
  foreach ( $values_to_skip as $value_to_skip ) {
167
  if ( false !== strpos( $value['id'], $value_to_skip ) ) {
170
  }
171
  }
172
 
173
+ // Final return
174
  return ( $is_type_ok && $is_section_ok && $is_id_ok );
175
  }
176
 
langs/woocommerce-jetpack-nl_NL.mo CHANGED
Binary file
langs/woocommerce-jetpack-nl_NL.po CHANGED
@@ -3,733 +3,857 @@
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
 
@@ -742,24 +866,20 @@ msgstr "Valuta voor externe producten Opties"
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."
@@ -767,386 +887,529 @@ 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."
@@ -1155,41 +1418,42 @@ msgstr ""
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."
@@ -1197,205 +1461,211 @@ 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>."
@@ -1403,102 +1673,105 @@ 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."
@@ -1506,71 +1779,72 @@ 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."
@@ -1578,110 +1852,110 @@ 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 "
@@ -1691,31 +1965,33 @@ msgstr ""
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"
@@ -1723,11 +1999,11 @@ 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."
@@ -1735,141 +2011,269 @@ 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."
@@ -1877,61 +2281,59 @@ 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"
@@ -1957,31 +2359,197 @@ msgstr ""
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"
@@ -1999,69 +2567,60 @@ msgstr "Na enkel product samenvatting"
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-"
@@ -2071,76 +2630,58 @@ msgstr ""
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."
@@ -2148,41 +2689,7 @@ 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."
@@ -2190,20 +2697,19 @@ 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\"."
@@ -2211,26 +2717,51 @@ 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"
@@ -2330,41 +2861,48 @@ msgstr ""
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)"
@@ -2382,10 +2920,6 @@ msgstr "Product Tabs"
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 "
@@ -2478,69 +3012,225 @@ msgstr "Aanvullende informatie Tab"
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
@@ -2548,8 +3238,8 @@ 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"
@@ -2583,7 +3273,7 @@ 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"
@@ -2597,13 +3287,9 @@ msgstr "Verberg allen wanneer gratis beschikbaar is"
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"
@@ -2621,10 +3307,6 @@ msgstr ""
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."
@@ -2637,85 +3319,235 @@ msgstr "Shortcodes"
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"
@@ -3021,520 +3853,2044 @@ msgstr ""
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
 
@@ -3545,82 +5901,82 @@ 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."
@@ -3633,3 +5989,323 @@ msgstr "Algoritmika Ltd"
3633
  #. Author URI of the plugin/theme
3634
  msgid "http://www.algoritmika.com"
3635
  msgstr "http://www.algoritmika.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WooCommerce Jetpack 2.0.3\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-jetpack\n"
7
+ "POT-Creation-Date: 2015-08-10 20:18+0300\n"
8
+ "PO-Revision-Date: 2015-08-24 00:02+0300\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: nl_NL\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.4\n"
 
 
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
17
 
18
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:80
19
+ msgid "WooCommerce Jetpack: Custom Add to Cart"
20
+ msgstr "Booster voor WooCommerce: Aangepaste Voeg to aan winkelwagen"
21
 
22
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:91
23
+ msgid "Single product view"
24
+ msgstr "Enkel product weergave"
25
 
26
+ #: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:92
27
+ msgid "Product category (archive) view"
28
+ msgstr "Product categorie (archief) weergave"
 
 
 
 
 
29
 
30
+ #: includes/admin/class-wc-settings-jetpack.php:26
31
+ #: includes/admin/class-wc-settings-jetpack.php:223
32
+ msgid "Booster"
33
+ msgstr "Booster"
34
 
35
+ #: includes/admin/class-wc-settings-jetpack.php:84
36
+ msgid "Save changes"
37
+ msgstr "Wijzigingen opslaan"
38
 
39
+ #: includes/admin/class-wc-settings-jetpack.php:121
40
+ msgid "Alphabetically"
41
+ msgstr "Alfabetisch"
42
+
43
+ #: includes/admin/class-wc-settings-jetpack.php:122
44
+ msgid "By Category"
45
+ msgstr "Op categorie"
46
 
47
+ #: includes/admin/class-wc-settings-jetpack.php:123
48
+ msgid "Active"
49
+ msgstr "Actief"
50
 
51
+ #: includes/admin/class-wc-settings-jetpack.php:190
52
+ #: includes/admin/wcj-modules-cats.php:15
53
  msgid "Dashboard"
54
  msgstr "Dashboard"
55
 
56
+ #: includes/admin/class-wc-settings-jetpack.php:219
57
+ msgid "WooCommerce"
58
+ msgstr "WooCommerce"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
+ #: includes/admin/class-wc-settings-jetpack.php:221 woocommerce-jetpack.php:197
61
+ msgid "Settings"
62
+ msgstr "Instellingen"
63
 
64
+ #: includes/admin/class-wc-settings-jetpack.php:301
65
+ #: includes/admin/class-wc-settings-jetpack.php:308
66
  msgid "Select All"
67
  msgstr "Alles selecteren"
68
 
69
+ #: includes/admin/class-wc-settings-jetpack.php:302
70
+ #: includes/admin/class-wc-settings-jetpack.php:309
71
+ msgid "Module"
72
+ msgstr "Module"
73
 
74
+ #: includes/admin/class-wc-settings-jetpack.php:303
75
+ #: includes/admin/class-wc-settings-jetpack.php:310
76
+ #: includes/admin/class-wcj-tools.php:80
77
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:61
78
  msgid "Description"
79
  msgstr "Omschrijving"
80
 
81
+ #: includes/admin/class-wc-settings-jetpack.php:360
82
+ msgid "Total Modules:"
83
+ msgstr "Totale Modules:"
84
 
85
+ #: includes/admin/class-wc-settings-jetpack.php:388
86
+ msgid "Booster for WooCommerce - Dashboard"
87
+ msgstr "Booster voor WooCommerce - Dashboard"
88
+
89
+ #: includes/admin/class-wc-settings-jetpack.php:390
90
  msgid ""
91
+ "This dashboard lets you enable/disable any Booster's module. Each checkbox comes "
92
+ "with short module's description. Please visit <a href=\"http://boostwoo.com\" "
93
+ "target=\"_blank\">BoostWoo.com</a> for detailed info on each feature."
94
  msgstr ""
95
+ "Op dit dashboard kun je elke Booster module in- en uitschakelen. Elke checkbox "
96
+ "komt met een korte beschrijving van de module. Voor gedetailleerde informatie van "
97
+ "elke optie, bezoek <a href=\"http://boostwoo.com\" target=\"_blank\">"
98
+
99
+ #: includes/admin/class-wcj-tools.php:32
100
+ msgid "Booster for WooCommerce Tools"
101
+ msgstr "Booster voor WooCommerce Hulpmiddelen"
102
 
103
+ #: includes/admin/class-wcj-tools.php:32
104
+ msgid "Booster Tools"
105
+ msgstr "Booster Hulpmiddelen"
106
+
107
+ #: includes/admin/class-wcj-tools.php:45
108
  msgid "Tools Dashboard"
109
  msgstr "Hulpmiddelen Dashboard"
110
 
111
+ #: includes/admin/class-wcj-tools.php:74
112
+ msgid "Booster for WooCommerce Tools - Dashboard"
113
+ msgstr "Booster voor WooCommerce Hulpmiddelen - Dashboard"
114
 
115
+ #: includes/admin/class-wcj-tools.php:75
116
  msgid ""
117
  "This dashboard lets you check statuses and short descriptions of all available "
118
+ "Booster for WooCommerce tools. Tools can be enabled through WooCommerce > Settings "
119
+ "> Booster. Enabled tools will appear in the tabs menu above."
120
  msgstr ""
121
+ "Op dit dashboard kun je de statussen en korte beschrijvingen van elke beschikbare "
122
+ "Booster voor WooCommerce Hulpmiddelen vinden. Hulpmiddelen kunnen worden "
123
+ "ingeschakeld via WooCommerce > Instellingen > Booster. Ingeschakelde hulpmiddelen "
124
+ "verschijnen in het tab menu hierboven."
125
 
126
+ #: includes/admin/class-wcj-tools.php:78
127
  msgid "Tool"
128
  msgstr "Hulpmiddel"
129
 
130
+ #: includes/admin/class-wcj-tools.php:79
131
  msgid "Status"
132
  msgstr "Status"
133
 
134
+ #: includes/admin/wcj-modules-cats.php:25
135
+ msgid "Prices & Currencies"
136
+ msgstr "Prijzen & Valuta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
+ #: includes/admin/wcj-modules-cats.php:37
139
+ msgid "Button & Price Labels"
140
+ msgstr "Knop & prijslabels"
 
 
 
 
 
 
 
141
 
142
+ #: includes/admin/wcj-modules-cats.php:48
143
+ msgid "Products"
144
+ msgstr "Producten"
145
 
146
+ #: includes/admin/wcj-modules-cats.php:65
147
+ msgid "Cart & Checkout"
148
+ msgstr "Winkelwagen & Afrekenen"
 
 
 
 
 
149
 
150
+ #: includes/admin/wcj-modules-cats.php:82
151
+ msgid "Shipping & Orders"
152
+ msgstr "Verzending & Orders"
153
 
154
+ #: includes/admin/wcj-modules-cats.php:95
155
+ msgid "PDF Invoicing & Packing Slips"
156
+ msgstr "PDF facturen & pakbonnen"
157
 
158
+ #: includes/admin/wcj-modules-cats.php:111
159
+ msgid "Emails & Misc."
160
+ msgstr "E-mail & Div."
161
 
162
+ #: includes/class-wcj-add-to-cart.php:51
163
+ msgid "Per Product Type Options"
164
+ msgstr "Per product type Opties"
165
 
166
+ #: includes/class-wcj-add-to-cart.php:54 includes/class-wcj-add-to-cart.php:195
167
+ msgid "Per Product Labels"
168
+ msgstr "Per product labels"
169
 
170
+ #: includes/class-wcj-add-to-cart.php:55 includes/class-wcj-add-to-cart.php:196
171
+ #: includes/class-wcj-add-to-cart.php:220 includes/class-wcj-product-images.php:115
172
+ #: includes/class-wcj-product-images.php:165
173
+ msgid "Enable Section"
174
+ msgstr "Schakel gedeelte in"
175
 
176
+ #: includes/class-wcj-add-to-cart.php:65
177
  msgid "Simple product"
178
  msgstr "Simpel product"
179
 
180
+ #: includes/class-wcj-add-to-cart.php:70
181
  msgid "Variable product"
182
  msgstr "Variabel product"
183
 
184
+ #: includes/class-wcj-add-to-cart.php:75
185
  msgid "External product"
186
  msgstr "Extern product"
187
 
188
+ #: includes/class-wcj-add-to-cart.php:80
189
  msgid "Grouped product"
190
  msgstr "Samengevoegd product"
191
 
192
+ #: includes/class-wcj-add-to-cart.php:85
193
  msgid "Other product"
194
  msgstr "Ander product"
195
 
196
+ #: includes/class-wcj-add-to-cart.php:96
197
  msgid "Single product view."
198
  msgstr "Enkel product weergave"
199
 
200
+ #: includes/class-wcj-add-to-cart.php:97 includes/class-wcj-add-to-cart.php:108
201
+ #: includes/class-wcj-add-to-cart.php:154 includes/class-wcj-add-to-cart.php:167
202
+ #: includes/class-wcj-payment-gateways-fees.php:149
203
  msgid "Leave blank to disable."
204
  msgstr "Laat leeg om uit te zetten."
205
 
206
+ #: includes/class-wcj-add-to-cart.php:97 includes/class-wcj-add-to-cart.php:108
207
+ #: includes/class-wcj-add-to-cart.php:156 includes/class-wcj-add-to-cart.php:169
208
+ #: includes/class-wcj-sorting.php:213 includes/class-wcj-sorting.php:223
209
+ #: includes/class-wcj-sorting.php:233 includes/class-wcj-sorting.php:243
210
+ #: includes/class-wcj-sorting.php:264 includes/class-wcj-sorting.php:274
211
  msgid "Default: "
212
  msgstr "Standaard:"
213
 
214
+ #: includes/class-wcj-add-to-cart.php:107
215
  msgid "Product category (archive) view."
216
  msgstr "Product categorie (archief) weergave"
217
 
218
+ #: includes/class-wcj-add-to-cart.php:119
219
  msgid "Products with price set to 0 (i.e. free). Single product view."
220
  msgstr "Producten met prijs op 0 (oftewel gratis). Enkel product weergave."
221
 
222
+ #: includes/class-wcj-add-to-cart.php:120 includes/class-wcj-add-to-cart.php:129
223
  msgid "Leave blank to disable. Default: Add to cart"
224
  msgstr "Laat leeg om uit te schakelen. Default: Voeg toe aan winkelwagen."
225
 
226
+ #: includes/class-wcj-add-to-cart.php:122 includes/class-wcj-add-to-cart.php:131
227
+ #: includes/class-wcj-add-to-cart.php:156 includes/class-wcj-add-to-cart.php:157
228
+ #: includes/class-wcj-add-to-cart.php:169 includes/class-wcj-add-to-cart.php:170
229
  msgid "Add to cart"
230
  msgstr "Voeg toe aan winkelwagen"
231
 
232
+ #: includes/class-wcj-add-to-cart.php:128
233
  msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
234
  msgstr ""
235
  "Producten met prijs op 0 (oftewel gratis). Product categorie (archief) weergave."
236
 
237
+ #: includes/class-wcj-add-to-cart.php:138
238
  msgid "Products with empty price. Product category (archive) view."
239
  msgstr "Producten met een lege prijs. Product categorie (archief) weergave."
240
 
241
+ #: includes/class-wcj-add-to-cart.php:139
242
  msgid "Leave blank to disable. Default: Read More"
243
  msgstr "Laat leeg om uit te schakelen. Standaard: Lees meer"
244
 
245
+ #: includes/class-wcj-add-to-cart.php:141
246
  msgid "Read More"
247
  msgstr "Lees meer"
248
 
249
+ #: includes/class-wcj-add-to-cart.php:153
250
  msgid "Already in cart. Single product view."
251
  msgstr "Reeds in winkelwagen. Enkel product weergave"
252
 
253
+ #: includes/class-wcj-add-to-cart.php:155 includes/class-wcj-add-to-cart.php:168
254
  msgid "Try: "
255
  msgstr "Probeer:"
256
 
257
+ #: includes/class-wcj-add-to-cart.php:155 includes/class-wcj-add-to-cart.php:168
258
  msgid "Already in cart - Add Again?"
259
  msgstr "Reeds toegevoegd aan winkelwagen. Opnieuw toevoegen?"
260
 
261
+ #: includes/class-wcj-add-to-cart.php:166
262
  msgid "Already in cart. Product category (archive) view."
263
  msgstr "Reeds in winkelwagen. Product categorie (archief) weergave."
264
 
265
+ #: includes/class-wcj-add-to-cart.php:189
266
+ msgid "Per Product Options"
267
+ msgstr "Per product Opties"
268
+
269
+ #: includes/class-wcj-add-to-cart.php:191
270
+ msgid ""
271
+ "This section lets you set Add to Cart button text on per product basis. When "
272
+ "enabled, label for each product can be changed in \"Edit Product\"."
273
+ msgstr ""
274
+ "In dit gedeelte kun je de Voeg toe aan Winkelwagen knop tekst per product "
275
+ "instellen. Bij inschakeling kan het label voor elk product worden veranderd in "
276
+ "\"Bewerk product\"."
277
+
278
+ #: includes/class-wcj-add-to-cart.php:216
279
+ msgid "Per Category Options"
280
+ msgstr "Per categorie Opties"
281
+
282
+ #: includes/class-wcj-add-to-cart.php:216
283
+ msgid "This sections lets you set Add to Cart button text on per category basis."
284
+ msgstr ""
285
+ "In dit gedeelte kun je de Voeg toe aan Winkelwagen knop tekst per categorie "
286
+ "instellen."
287
+
288
+ #: includes/class-wcj-add-to-cart.php:219
289
+ msgid "Per Category Labels"
290
+ msgstr "Per categorie Labels"
291
+
292
+ #: includes/class-wcj-add-to-cart.php:228
293
+ msgid "Category Groups Number"
294
+ msgstr "Categorie Groepen Aantal"
295
+
296
+ #: includes/class-wcj-add-to-cart.php:229
297
+ #: includes/class-wcj-checkout-custom-fields.php:321
298
+ #: includes/class-wcj-product-input-fields.php:193
299
+ #: includes/class-wcj-product-tabs.php:327
300
+ msgid "Click \"Save changes\" after you change this number."
301
+ msgstr "Klik op \"Bewaar instellingen\" als je dit getal aanpast."
302
+
303
+ #: includes/class-wcj-add-to-cart.php:266 includes/class-wcj-price-by-country.php:132
304
+ #: includes/class-wcj-price-by-country.php:198
305
+ msgid "Group"
306
+ msgstr "Groep"
307
+
308
+ #: includes/class-wcj-add-to-cart.php:267 includes/class-wcj-admin-tools.php:109
309
+ #: includes/class-wcj-admin-tools.php:117
310
+ #: includes/class-wcj-checkout-custom-fields.php:297
311
+ #: includes/class-wcj-checkout-custom-fields.php:305
312
+ #: includes/class-wcj-general.php:74 includes/class-wcj-order-numbers.php:176
313
+ #: includes/class-wcj-orders.php:245 includes/class-wcj-price-by-country.php:105
314
+ #: includes/class-wcj-price-labels.php:632
315
+ #: includes/class-wcj-product-add-to-cart.php:56
316
+ #: includes/class-wcj-product-add-to-cart.php:78
317
+ #: includes/class-wcj-product-info.php:618 includes/class-wcj-product-info.php:737
318
+ #: includes/class-wcj-product-info.php:774
319
+ #: includes/class-wcj-product-input-fields.php:152
320
+ #: includes/class-wcj-product-input-fields.php:184
321
+ #: includes/class-wcj-product-input-fields.php:230
322
+ #: includes/class-wcj-shipping-calculator.php:129
323
+ #: includes/class-wcj-shipping-calculator.php:137
324
+ #: includes/class-wcj-shipping-calculator.php:145
325
+ #: includes/class-wcj-shipping-calculator.php:153 includes/class-wcj-sorting.php:205
326
+ #: includes/class-wcj-wholesale-price.php:159
327
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:177
328
+ msgid "Enable"
329
+ msgstr "Inschakelen"
330
+
331
+ #: includes/class-wcj-add-to-cart.php:283
332
+ #: includes/class-wcj-checkout-custom-fields.php:460
333
+ msgid "categories"
334
+ msgstr "categorieën"
335
+
336
+ #: includes/class-wcj-add-to-cart.php:294
337
+ msgid "Button text - single product view"
338
+ msgstr "Knop tekst - enkel product weergave"
339
+
340
+ #: includes/class-wcj-add-to-cart.php:302
341
+ msgid "Button text - product archive (category) view"
342
+ msgstr "Knop tekst - product archief (categorie) weergave"
343
+
344
+ #: includes/class-wcj-add-to-cart.php:327
345
+ msgid "Add to Cart Options"
346
+ msgstr "Toevoegen aan Winkelwagen Opties"
347
+
348
+ #: includes/class-wcj-add-to-cart.php:330 includes/class-wcj-add-to-cart.php:354
349
+ msgid "Add to Cart Labels"
350
+ msgstr "Voeg toe aan Winkelwagen Labels"
351
+
352
+ #: includes/class-wcj-add-to-cart.php:331 includes/class-wcj-call-for-price.php:89
353
+ #: includes/class-wcj-checkout-core-fields.php:165
354
+ #: includes/class-wcj-checkout-custom-fields.php:288
355
+ #: includes/class-wcj-currencies.php:113
356
+ #: includes/class-wcj-currency-external-products.php:72
357
+ #: includes/class-wcj-emails.php:131 includes/class-wcj-old-slugs.php:95
358
+ #: includes/class-wcj-order-numbers.php:167 includes/class-wcj-pdf-invoices.php:926
359
+ #: includes/class-wcj-pdf-invoicing.php:147
360
+ #: includes/class-wcj-price-by-country.php:69 includes/class-wcj-price-labels.php:535
361
+ #: includes/class-wcj-product-bulk-price-converter.php:262
362
+ #: includes/class-wcj-product-info.php:709
363
+ #: includes/class-wcj-product-input-fields.php:132
364
+ #: includes/class-wcj-product-listings.php:60 includes/class-wcj-product-tabs.php:314
365
+ #: includes/class-wcj-reports.php:278 includes/class-wcj-shipping-calculator.php:120
366
+ #: includes/class-wcj-shipping.php:156 includes/classes/class-wcj-module.php:170
367
+ msgid "Enable Module"
368
+ msgstr "Module aanzetten"
369
+
370
+ #: includes/class-wcj-add-to-cart.php:332
371
+ msgid ""
372
+ "Change text for Add to Cart button by WooCommerce product type, by product "
373
+ "category or for individual products."
374
+ msgstr ""
375
+ "Verander tekst van Voeg toe aan Winkelwagen knop per WooCommerce product type, per "
376
+ "productcategorie of voor individuele producten."
377
+
378
+ #: includes/class-wcj-address-formats.php:24
379
+ msgid "Address Formats"
380
+ msgstr ""
381
+
382
+ #: includes/class-wcj-address-formats.php:25
383
+ msgid ""
384
+ "Set address format in WooCommerce orders on per country basis. Force base country "
385
+ "display."
386
+ msgstr ""
387
+
388
+ #: includes/class-wcj-address-formats.php:125
389
+ #: includes/class-wcj-address-formats.php:131
390
+ msgid "Force Base Country Display"
391
+ msgstr ""
392
+
393
+ #: includes/class-wcj-address-formats.php:127
394
+ msgid "Force Base Country Display Options."
395
+ msgstr ""
396
+
397
+ #: includes/class-wcj-address-formats.php:143
398
+ msgid "Address Formats by Country"
399
+ msgstr ""
400
+
401
+ #: includes/class-wcj-address-formats.php:145
402
+ msgid "Address Formats by Country Options."
403
+ msgstr ""
404
+
405
+ #: includes/class-wcj-admin-tools.php:25 includes/class-wcj-admin-tools.php:29
406
+ #: includes/class-wcj-admin-tools.php:48
407
+ msgid "Admin Tools"
408
+ msgstr "Admin Hulpmiddelen"
409
+
410
+ #: includes/class-wcj-admin-tools.php:26
411
+ msgid "Booster for WooCommerce debug and log tools."
412
+ msgstr ""
413
+
414
+ #: includes/class-wcj-admin-tools.php:45
415
+ #: includes/class-wcj-checkout-custom-fields.php:351
416
+ #: includes/class-wcj-old-slugs.php:49
417
+ #: includes/class-wcj-order-custom-statuses.php:135
418
+ #: includes/class-wcj-order-numbers.php:66 includes/class-wcj-price-labels.php:114
419
+ #: includes/class-wcj-product-bulk-price-converter.php:228
420
+ #: includes/class-wcj-sku.php:193
421
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:32
422
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:33
423
+ msgid "enabled"
424
+ msgstr "Ingeschakeld"
425
+
426
+ #: includes/class-wcj-admin-tools.php:47 includes/class-wcj-old-slugs.php:51
427
+ #: includes/class-wcj-order-custom-statuses.php:136
428
+ #: includes/class-wcj-order-numbers.php:68 includes/class-wcj-price-labels.php:116
429
+ #: includes/class-wcj-product-bulk-price-converter.php:230
430
+ #: includes/class-wcj-sku.php:195
431
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:34
432
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:35
433
+ msgid "disabled"
434
+ msgstr "uitgeschakeld"
435
+
436
+ #: includes/class-wcj-admin-tools.php:50
437
+ msgid "Log."
438
+ msgstr "Rapporteer."
439
+
440
+ #: includes/class-wcj-admin-tools.php:60
441
+ msgid "Log"
442
+ msgstr "Rapporteer"
443
+
444
+ #: includes/class-wcj-admin-tools.php:75
445
+ msgid "Log deleted successfully."
446
+ msgstr "Rapport succesvol verwijderd."
447
+
448
+ #: includes/class-wcj-admin-tools.php:81
449
+ msgid "Delete Log"
450
+ msgstr "Verwijder rapport"
451
+
452
+ #: includes/class-wcj-admin-tools.php:105
453
+ msgid "Admin Tools Options"
454
+ msgstr "Admin Hulpmidellen Opties"
455
+
456
+ #: includes/class-wcj-admin-tools.php:108
457
+ msgid "Logging"
458
+ msgstr "Rapporteren"
459
+
460
+ #: includes/class-wcj-admin-tools.php:116
461
+ msgid "Debug"
462
+ msgstr ""
463
+
464
+ #: includes/class-wcj-call-for-price.php:81
465
  msgid "Call for Price Options"
466
  msgstr "Bel voor prijs mogelijkheden"
467
 
468
+ #: includes/class-wcj-call-for-price.php:83
469
  msgid "Leave price empty when adding or editing products. Then set the options here."
470
  msgstr ""
471
  "Laat prijs lees tijdens het toevoegen en/of bewerken van producten. Stel daarna de "
472
  "opties hier in."
473
 
474
+ #: includes/class-wcj-call-for-price.php:88 includes/class-wcj-call-for-price.php:175
 
475
  msgid "Call for Price"
476
  msgstr "Bel voor de prijs"
477
 
478
+ #: includes/class-wcj-call-for-price.php:90
479
+ msgid "Create any custom price label for all WooCommerce products with empty price."
480
+ msgstr ""
481
+ "Creëer elke aangepaste prijslabel voor alle WooCommerce producten met een lege "
482
+ "prijs."
 
 
483
 
484
+ #: includes/class-wcj-call-for-price.php:97
485
  msgid "Label to Show on Single"
486
  msgstr "Label naar toon bij enkel"
487
 
488
+ #: includes/class-wcj-call-for-price.php:98 includes/class-wcj-call-for-price.php:110
489
+ #: includes/class-wcj-call-for-price.php:122
490
+ #: includes/class-wcj-call-for-price.php:134
 
491
  msgid "This sets the html to output on empty price. Leave blank to disable."
492
  msgstr "Dit zet html naar output bij lege prijs. Laat leeg om uit te schakelen."
493
 
494
+ #: includes/class-wcj-call-for-price.php:109
495
  msgid "Label to Show on Archives"
496
  msgstr "Label naar toon bij Archieven"
497
 
498
+ #: includes/class-wcj-call-for-price.php:121
499
  msgid "Label to Show on Homepage"
500
  msgstr "Label naar toon bij homepagina"
501
 
502
+ #: includes/class-wcj-call-for-price.php:133
503
  msgid "Label to Show on Related"
504
  msgstr "Label naar toon bij gerelateerd"
505
 
506
+ #: includes/class-wcj-call-for-price.php:145
507
  msgid "Hide Sale! Tag"
508
  msgstr "Verberg de Uitverkoop! tag"
509
 
510
+ #: includes/class-wcj-call-for-price.php:146
511
  msgid "Hide the tag"
512
  msgstr "Verberg de tag"
513
 
514
+ #: includes/class-wcj-cart.php:23
515
+ msgid "Cart"
516
+ msgstr "Winkelwagen"
 
 
 
 
517
 
518
+ #: includes/class-wcj-cart.php:24
519
+ msgid "Add custom info to WooCommerce cart page. Add empty cart button."
520
  msgstr ""
521
+ "Voeg aangepaste info toe aan WooCommerce winkelwagenpagina. Voeg leeg winkelwagen "
522
+ "knop toe."
523
 
524
+ #: includes/class-wcj-cart.php:83
525
+ msgid "Cart Custom Info Blocks"
526
+ msgstr "Winkelwagen aangepaste info blokken"
527
 
528
+ #: includes/class-wcj-cart.php:86 includes/class-wcj-checkout-custom-info.php:51
529
+ #: includes/class-wcj-mini-cart.php:48
530
+ msgid "Total Blocks"
531
+ msgstr "Totale blokken"
532
 
533
+ #: includes/class-wcj-cart.php:103 includes/class-wcj-checkout-custom-info.php:68
534
+ #: includes/class-wcj-mini-cart.php:66
535
+ msgid "Info Block"
536
+ msgstr "Info Blok"
537
 
538
+ #: includes/class-wcj-cart.php:106 includes/class-wcj-checkout-custom-info.php:71
539
+ #: includes/class-wcj-mini-cart.php:69 includes/class-wcj-product-tabs.php:248
540
+ #: includes/class-wcj-product-tabs.php:357
541
+ msgid "Content"
542
+ msgstr "Inhoud"
543
 
544
+ #: includes/class-wcj-cart.php:114 includes/class-wcj-checkout-custom-info.php:79
545
+ #: includes/class-wcj-mini-cart.php:78 includes/class-wcj-product-info.php:626
546
+ #: includes/class-wcj-product-info.php:754 includes/class-wcj-product-info.php:794
547
+ msgid "Position"
548
+ msgstr "Positie"
549
 
550
+ #: includes/class-wcj-cart.php:120
551
+ msgid "Before cart"
552
+ msgstr "Voor winkelwagen"
553
 
554
+ #: includes/class-wcj-cart.php:121
555
+ msgid "Before cart table"
556
+ msgstr "Voor winkelwagen tabel"
557
 
558
+ #: includes/class-wcj-cart.php:122
559
+ msgid "Before cart contents"
560
+ msgstr "Voor winkelwagen inhoud"
561
 
562
+ #: includes/class-wcj-cart.php:123
563
+ msgid "Cart contents"
564
+ msgstr "Winkelwagen inhoud"
565
 
566
+ #: includes/class-wcj-cart.php:124
567
+ msgid "Cart coupon"
568
+ msgstr "Winkelwagen coupon"
569
 
570
+ #: includes/class-wcj-cart.php:125
571
+ msgid "Cart actions"
572
+ msgstr "Winkelwagen acties"
573
 
574
+ #: includes/class-wcj-cart.php:126
575
+ msgid "After cart contents"
576
+ msgstr "Na winkelwagen inhoud"
577
+
578
+ #: includes/class-wcj-cart.php:127
579
+ msgid "After cart table"
580
+ msgstr "Na winkelwagen tabel"
581
+
582
+ #: includes/class-wcj-cart.php:128
583
+ msgid "Cart collaterals"
584
  msgstr ""
 
 
 
585
 
586
+ #: includes/class-wcj-cart.php:129
587
+ msgid "After cart"
588
+ msgstr "Na winkelwagen"
589
 
590
+ #: includes/class-wcj-cart.php:131
591
+ msgid "Before cart totals"
592
+ msgstr "Voor winkelwagen totaal"
593
 
594
+ #: includes/class-wcj-cart.php:132
595
+ msgid "Cart totals: Before shipping"
596
+ msgstr "Winkelwagen totaal: voor verzendkosten"
 
597
 
598
+ #: includes/class-wcj-cart.php:133
599
+ msgid "Cart totals: After shipping"
600
+ msgstr "Winkelwagen totaal: na verzendkosten"
601
 
602
+ #: includes/class-wcj-cart.php:134
603
+ msgid "Cart totals: Before order total"
604
+ msgstr "Winkelwagen totaal: voor totale order"
605
 
606
+ #: includes/class-wcj-cart.php:135
607
+ msgid "Cart totals: After order total"
608
+ msgstr "Winkelwagen totaal: na totale order"
609
 
610
+ #: includes/class-wcj-cart.php:136
611
+ msgid "Proceed to checkout"
612
+ msgstr "Ga door naar afrekenen"
613
 
614
+ #: includes/class-wcj-cart.php:137
615
+ msgid "After cart totals"
616
+ msgstr "Na winkelwagen totaal"
 
 
617
 
618
+ #: includes/class-wcj-cart.php:139
619
+ msgid "Before shipping calculator"
620
+ msgstr "Voor verzendkostenberekening"
621
+
622
+ #: includes/class-wcj-cart.php:140
623
+ msgid "After shipping calculator"
624
+ msgstr "Na verzendkostenberekening"
625
+
626
+ #: includes/class-wcj-cart.php:142
627
+ msgid "If cart is empty"
628
+ msgstr "Als de winkelwagen leeg is"
629
+
630
+ #: includes/class-wcj-cart.php:148 includes/class-wcj-mini-cart.php:92
631
+ #: includes/class-wcj-product-tabs.php:243
632
+ msgid "Priority"
633
+ msgstr "Prioriteit"
634
+
635
+ #: includes/class-wcj-checkout-core-fields.php:161
636
+ msgid "Checkout Core Fields Options"
637
+ msgstr ""
638
+
639
+ #: includes/class-wcj-checkout-core-fields.php:164
640
+ #: includes/class-wcj-checkout-core-fields.php:282
641
+ msgid "Checkout Core Fields"
642
+ msgstr ""
643
+
644
+ #: includes/class-wcj-checkout-core-fields.php:166
645
+ msgid ""
646
+ "Customize WooCommerce core checkout fields. Disable/enable fields, set required, "
647
+ "change labels and/or placeholders."
648
+ msgstr ""
649
+
650
+ #: includes/class-wcj-checkout-core-fields.php:244
651
+ msgid "Leave blank for WooCommerce defaults."
652
+ msgstr "Laat leeg voor WooCommerce defaults."
653
+
654
+ #: includes/class-wcj-checkout-custom-fields.php:280
655
+ msgid "Checkout Custom Fields Options"
656
+ msgstr "Aangepaste velden Afrekenen opties"
657
+
658
+ #: includes/class-wcj-checkout-custom-fields.php:287
659
+ #: includes/class-wcj-checkout-custom-fields.php:492
660
+ msgid "Checkout Custom Fields"
661
+ msgstr "Afrekenen aangepaste velden"
662
+
663
+ #: includes/class-wcj-checkout-custom-fields.php:289
664
+ msgid "Add custom fields to WooCommerce checkout page."
665
+ msgstr "Voeg aangepaste velden toe aan de WooCommerce afrekenpagina."
666
+
667
+ #: includes/class-wcj-checkout-custom-fields.php:296
668
+ msgid "Add All Fields to Admin Emails"
669
+ msgstr "Voeg alle velden toe aan e-mails van admin"
670
+
671
+ #: includes/class-wcj-checkout-custom-fields.php:304
672
+ msgid "Add All Fields to Customers Emails"
673
+ msgstr "Voeg alle velden toe aan e-mails van klanten"
674
+
675
+ #: includes/class-wcj-checkout-custom-fields.php:314
676
+ msgid "The Fields"
677
+ msgstr "De Velden"
678
+
679
+ #: includes/class-wcj-checkout-custom-fields.php:320
680
+ msgid "Custom Fields Number"
681
+ msgstr "Aangepaste velden nummer"
682
+
683
+ #: includes/class-wcj-checkout-custom-fields.php:350
684
+ msgid "Custom Field"
685
+ msgstr "Aangepast veld"
686
+
687
+ # If you mean type of product then use Soort
688
  # If you mean type your text here then use vul in
689
+ #: includes/class-wcj-checkout-custom-fields.php:358
690
  msgid "type"
691
  msgstr "Soort, vul in"
692
 
693
+ #: includes/class-wcj-checkout-custom-fields.php:363
694
+ #: includes/class-wcj-more-button-labels.php:49
695
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
696
  msgid "Text"
697
  msgstr "Tekst"
698
 
699
+ #: includes/class-wcj-checkout-custom-fields.php:364
700
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:45
701
  msgid "Textarea"
702
  msgstr "Tekstveld"
703
 
704
+ #: includes/class-wcj-checkout-custom-fields.php:366
705
  msgid "Datepicker"
706
  msgstr "Datumprikker"
707
 
708
+ #: includes/class-wcj-checkout-custom-fields.php:367
709
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:47
710
  msgid "Checkbox"
711
  msgstr "Checkbox"
712
 
713
+ #: includes/class-wcj-checkout-custom-fields.php:369
714
  msgid "Password"
715
  msgstr "Wachtwoord"
716
 
717
+ #: includes/class-wcj-checkout-custom-fields.php:375
718
  msgid "required"
719
  msgstr "Verplicht"
720
 
721
+ #: includes/class-wcj-checkout-custom-fields.php:382
722
  msgid "label"
723
  msgstr "Label"
724
 
725
+ #: includes/class-wcj-checkout-custom-fields.php:404
726
  msgid "placeholder"
727
  msgstr "Plaatshouder"
728
 
729
+ #: includes/class-wcj-checkout-custom-fields.php:413
730
  msgid "section"
731
  msgstr "Gedeelte"
732
 
733
+ #: includes/class-wcj-checkout-custom-fields.php:418
734
+ #: includes/class-wcj-checkout-custom-info.php:86
735
  msgid "Billing"
736
  msgstr "Facturering"
737
 
738
+ #: includes/class-wcj-checkout-custom-fields.php:419
739
+ #: includes/class-wcj-checkout-custom-info.php:87
740
+ #: includes/class-wcj-pdf-invoices.php:1255 includes/class-wcj-shipping.php:155
741
+ #: includes/class-wcj-shipping.php:200
742
+ msgid "Shipping"
743
+ msgstr "Verzending"
744
+
745
+ #: includes/class-wcj-checkout-custom-fields.php:420
746
  msgid "Order Notes"
747
  msgstr "Order notities"
748
 
749
+ #: includes/class-wcj-checkout-custom-fields.php:421
750
  msgid "Account"
751
  msgstr "Account"
752
 
753
+ #: includes/class-wcj-checkout-custom-fields.php:428
754
  msgid "class"
755
  msgstr "klasse"
756
 
757
+ #: includes/class-wcj-checkout-custom-fields.php:433
758
  msgid "Wide"
759
  msgstr "Breedte"
760
 
761
+ #: includes/class-wcj-checkout-custom-fields.php:434
762
  msgid "First"
763
  msgstr "Eerste"
764
 
765
+ #: includes/class-wcj-checkout-custom-fields.php:435
766
  msgid "Last"
767
  msgstr "Laatste"
768
 
769
+ #: includes/class-wcj-checkout-custom-fields.php:442
770
+ msgid "clear"
771
+ msgstr "Wis"
772
 
773
+ #: includes/class-wcj-checkout-custom-info.php:24
774
+ msgid "Checkout Custom Info"
775
+ msgstr "Afrekenen aangepaste info"
776
 
777
+ #: includes/class-wcj-checkout-custom-info.php:25
778
+ msgid "Add custom info to WooCommerce checkout page."
779
+ msgstr "Voeg aangepaste info toe aan WooCommerce afrekenpagina."
 
 
 
 
780
 
781
+ #: includes/class-wcj-checkout-custom-info.php:48
782
+ msgid "Checkout Custom Info Blocks"
783
+ msgstr "Afrekenen Aangepaste info blokken"
784
 
785
+ #: includes/class-wcj-checkout-custom-info.php:84
786
+ msgid "Before checkout form"
787
+ msgstr "Voor afrekenen formulier"
788
 
789
+ #: includes/class-wcj-checkout-custom-info.php:85
790
+ msgid "Before customer details"
791
+ msgstr "Voor klanten details"
792
 
793
+ #: includes/class-wcj-checkout-custom-info.php:88
794
+ msgid "After customer details"
795
+ msgstr "Na klanten details"
796
 
797
+ #: includes/class-wcj-checkout-custom-info.php:89
798
+ msgid "Before order review"
799
+ msgstr "Voor order overzicht"
 
 
 
 
800
 
801
+ #: includes/class-wcj-checkout-custom-info.php:90
802
+ msgid "Order review"
803
+ msgstr "Order overzicht"
804
+
805
+ #: includes/class-wcj-checkout-custom-info.php:91
806
+ msgid "After order review"
807
+ msgstr "Na order overzicht"
808
+
809
+ #: includes/class-wcj-checkout-custom-info.php:92
810
+ msgid "After checkout form"
811
+ msgstr "Na afrekenen formulier"
812
+
813
+ #: includes/class-wcj-checkout-custom-info.php:115
814
+ msgid "Order (i.e. Priority)"
815
+ msgstr "Volgorde (i.e. prioriteit)"
816
 
817
+ #: includes/class-wcj-currencies.php:75
818
  #: includes/class-wcj-currency-external-products.php:80
819
  msgid "Currency Symbol"
820
  msgstr "Valuta symbool"
821
 
822
+ #: includes/class-wcj-currencies.php:76
823
  msgid "This sets the currency symbol."
824
  msgstr "Dit stelt het valuta symbool in."
825
 
826
+ #: includes/class-wcj-currencies.php:109
827
  msgid "Currencies Options"
828
  msgstr "Valuta opties"
829
 
830
+ #: includes/class-wcj-currencies.php:112 includes/class-wcj-currencies.php:154
831
+ msgid "Currencies"
832
+ msgstr "Valuta"
833
 
834
+ #: includes/class-wcj-currencies.php:114
835
+ msgid "Add all world currencies to your WooCommerce store; change currency symbol."
836
+ msgstr ""
837
+ "Voeg alle wereldvaluta's toe aan jouw WooCommerce winkel; verander Valuta symbool."
838
 
839
+ #: includes/class-wcj-currencies.php:122
840
  msgid "Currency Symbol Options"
841
  msgstr "Valuta symbool opties"
842
 
843
+ #: includes/class-wcj-currencies.php:125
844
  msgid "Hide Currency Symbol"
845
  msgstr "Verberg valuta opties"
846
 
847
+ #: includes/class-wcj-currencies.php:126 includes/class-wcj-product-images.php:123
848
+ #: includes/class-wcj-product-images.php:131
849
+ #: includes/class-wcj-product-images.php:139
850
+ #: includes/class-wcj-product-images.php:147
851
+ #: includes/class-wcj-related-products.php:132
852
  #: includes/class-wcj-shipping-calculator.php:167
853
  msgid "Hide"
854
  msgstr "Verberg"
855
 
856
+ #: includes/class-wcj-currencies.php:127
857
  msgid "Default: no."
858
  msgstr "Default: Nee."
859
 
866
  msgid "Currency for External Products"
867
  msgstr "Valuta voor externe producten"
868
 
 
 
 
 
869
  #: includes/class-wcj-currency-external-products.php:73
870
+ msgid "Set different currency for external WooCommerce products."
871
+ msgstr "Stel verschillende valuta in voor externe WooCommerce producten."
872
 
873
  #: includes/class-wcj-currency-external-products.php:81
874
  #: includes/class-wcj-currency-external-products.php:82
875
  msgid "Set currency symbol for all external products."
876
  msgstr "Stel valuta symbool in voor alle externe producten."
877
 
878
+ #: includes/class-wcj-emails.php:69
879
  msgid "WooCommerce Jetpack: Email Forwarding Options"
880
+ msgstr "Booster voor WooCommerce: email doorstuur opties"
881
 
882
+ #: includes/class-wcj-emails.php:69 includes/class-wcj-emails.php:148
883
  msgid ""
884
  "This section lets you add another email recipient(s) to all WooCommerce emails. "
885
  "Leave blank to disable."
887
  "In dit gedeelte kun je nog een emailontvanger toevoegen aan alle WooCommerce "
888
  "emails. Laat leeg om uit te schakelen."
889
 
890
+ #: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:151
891
  msgid "Cc Email"
892
  msgstr "Cc Email"
893
 
894
+ #: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:153
895
  msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
896
  msgstr "Cc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
897
 
898
+ #: includes/class-wcj-emails.php:85 includes/class-wcj-emails.php:162
899
  msgid "Bcc Email"
900
  msgstr "Bcc Email"
901
 
902
+ #: includes/class-wcj-emails.php:87 includes/class-wcj-emails.php:164
903
  msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
904
  msgstr "Bcc naar email, bv youremail@yourdomain.com. Laat leeg om uit te schakelen."
905
 
906
+ #: includes/class-wcj-emails.php:127
907
  msgid "Emails Options"
908
  msgstr "Emails opties"
909
 
910
+ #: includes/class-wcj-emails.php:130 includes/class-wcj-emails.php:182
911
+ msgid "Emails"
912
+ msgstr "E-mails"
913
 
914
+ #: includes/class-wcj-emails.php:132
915
  msgid "Add another email recipient(s) to all WooCommerce emails."
916
  msgstr "Voeg nog een emailontvanger(s) toe aan alle WooCommerce emails."
917
 
918
+ #: includes/class-wcj-emails.php:148
919
  msgid "Email Forwarding Options"
920
  msgstr "Email doorstuur opties"
921
 
922
+ #: includes/class-wcj-empty-cart-button.php:24
923
+ msgid "Empty Cart Button"
924
+ msgstr "Leeg winkelwagen knop"
925
 
926
+ #: includes/class-wcj-empty-cart-button.php:25
927
+ msgid "Add and customize \"Empty Cart\" button to cart page."
928
+ msgstr "Voeg \"Leeg winkelwagen\" knop toe aan winkelwagenpagina en pas aan."
929
 
930
+ #: includes/class-wcj-empty-cart-button.php:96
931
+ msgid "Empty Cart Options"
932
+ msgstr "Lege winkelwagen opties"
933
 
934
+ #: includes/class-wcj-empty-cart-button.php:96
935
+ msgid "This section lets you add and customize \"Empty Cart\" button to cart page."
936
+ msgstr "In dit gedeelte kun je de lege winkelwagen knop toevoegen en bewerken."
937
 
938
+ #: includes/class-wcj-empty-cart-button.php:107
939
+ msgid "Empty Cart Button Text"
940
+ msgstr "Lege winkelwagen knop tekst"
941
 
942
+ #: includes/class-wcj-empty-cart-button.php:117
943
+ msgid "Wrapping DIV style"
944
+ msgstr ""
945
 
946
+ #: includes/class-wcj-empty-cart-button.php:118
947
+ msgid "Style for the button's div. Default is \"float: right;\""
948
+ msgstr ""
949
 
950
+ #: includes/class-wcj-empty-cart-button.php:128
951
+ msgid "Button position on the Cart page"
952
+ msgstr "Positie knop op de winkelwagen pagina"
953
 
954
+ #: includes/class-wcj-empty-cart-button.php:133
955
+ msgid "After Cart"
956
+ msgstr "Na de winkelwagen"
 
957
 
958
+ #: includes/class-wcj-empty-cart-button.php:134
959
+ msgid "Before Cart"
960
+ msgstr "Voor de winkelwagen"
961
 
962
+ #: includes/class-wcj-empty-cart-button.php:135
963
+ msgid "After Proceed to Checkout button"
964
+ msgstr "Na de ga door met afrekenen knop"
965
 
966
+ #: includes/class-wcj-empty-cart-button.php:136
967
+ msgid "After Cart Totals"
968
+ msgstr "Na Winkelwagen totaal"
969
 
970
+ #: includes/class-wcj-empty-cart-button.php:144
971
+ msgid "Confirmation"
972
+ msgstr "Bevestiging"
973
+
974
+ #: includes/class-wcj-empty-cart-button.php:149
975
+ msgid "No confirmation"
976
+ msgstr "Geen bevestiging"
977
+
978
+ #: includes/class-wcj-empty-cart-button.php:150
979
+ msgid "Confirm by pop up box"
980
+ msgstr "Bevestig door een pop up venster"
981
+
982
+ #: includes/class-wcj-empty-cart-button.php:158
983
+ msgid "Confirmation Text (if enabled)"
984
+ msgstr "Bevestingstekst (bij inschakeling)"
985
 
986
+ #: includes/class-wcj-empty-cart-button.php:160
987
+ msgid "Are you sure?"
988
+ msgstr "Weet je het zeker?"
989
 
990
+ #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:189
991
+ msgid "General"
992
+ msgstr "Algemeen"
993
+
994
+ #: includes/class-wcj-general.php:24
995
  msgid ""
996
+ "Separate custom CSS for front and back end. Shortcodes in Wordpress text widgets."
 
 
997
  msgstr ""
 
 
 
998
 
999
+ #: includes/class-wcj-general.php:66 includes/class-wcj-shortcodes.php:61
1000
+ msgid "Shortcodes Options"
1001
+ msgstr "Shortcodes Opties"
1002
 
1003
+ #: includes/class-wcj-general.php:73
1004
+ msgid "Enable Shortcodes in WordPress Text Widgets"
1005
+ msgstr "Schakel shortcodes in bij WordPress Tekst Widgets"
1006
 
1007
+ #: includes/class-wcj-general.php:86
1008
+ msgid "Custom CSS Options"
1009
+ msgstr "Aangepaste CSS opties"
1010
 
1011
+ #: includes/class-wcj-general.php:88
1012
+ msgid "Another custom CSS, if you need one."
1013
+ msgstr "Nog een aangepaste CSS, als je die nodig hebt."
1014
 
1015
+ #: includes/class-wcj-general.php:93
1016
+ msgid "Custom CSS - Front end (Customers)"
1017
+ msgstr "Aangepaste CSS - Voorkant (klanten)"
1018
 
1019
+ #: includes/class-wcj-general.php:101
1020
+ msgid "Custom CSS - Back end (Admin)"
1021
+ msgstr "Aangepaste CSS - Achterkant (Admin)"
1022
 
1023
+ #: includes/class-wcj-mini-cart.php:24
1024
+ msgid "Mini Cart"
1025
+ msgstr "Mini Winkelwagen"
1026
 
1027
+ #: includes/class-wcj-mini-cart.php:25
1028
+ msgid "Customize WooCommerce mini cart widget."
1029
+ msgstr "Aanpassingen WooCommerce mini winkelwagen widget."
1030
 
1031
+ #: includes/class-wcj-mini-cart.php:45
1032
+ msgid "Mini Cart Custom Info Blocks"
1033
+ msgstr "Mini Winkelwagen Aangepaste info Blokken"
1034
 
1035
+ #: includes/class-wcj-mini-cart.php:84
1036
+ msgid "Before mini cart"
1037
+ msgstr "Voor mini winkelwagen"
 
 
 
1038
 
1039
+ #: includes/class-wcj-mini-cart.php:85
1040
+ msgid "Before buttons"
1041
+ msgstr "Voor knoppen"
 
1042
 
1043
+ #: includes/class-wcj-mini-cart.php:86
1044
+ msgid "After mini cart"
1045
+ msgstr "Na mini winkelwagen"
 
 
1046
 
1047
+ #: includes/class-wcj-more-button-labels.php:24
1048
+ msgid "More Button Labels"
1049
+ msgstr "Meer knop labels"
1050
 
1051
+ #: includes/class-wcj-more-button-labels.php:25
1052
+ msgid "Set WooCommerce \"Place order\" button label."
1053
+ msgstr "Stel WooCommerce \"Plaats bestelling\" knop label in."
 
1054
 
1055
+ #: includes/class-wcj-more-button-labels.php:43
1056
+ msgid "Place order (Order now) Button"
1057
+ msgstr "Plaats bestelling (bestel nu) knop"
1058
 
1059
+ #: includes/class-wcj-more-button-labels.php:50
1060
+ msgid "leave blank for WooCommerce default"
1061
+ msgstr "Laat leeg voor WooCommerce Default"
1062
 
1063
+ #: includes/class-wcj-more-button-labels.php:51
1064
+ msgid "Button on the checkout page."
1065
+ msgstr "Knop op de afrekenpagina."
1066
 
1067
+ #: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
1068
+ msgid "Remove Old Slugs"
1069
+ msgstr "Oude Slugs Verwijderen"
1070
 
1071
+ #: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:170
1072
+ msgid "Tool removes old slugs/permalinks from database."
1073
+ msgstr "Hulpmiddel verwijdert oude slugs/permalinks van de database."
1074
 
1075
+ #: includes/class-wcj-old-slugs.php:87
1076
+ msgid "Old Slugs Options"
1077
+ msgstr "Oude Slugs Opties"
1078
 
1079
+ #: includes/class-wcj-old-slugs.php:89
1080
  msgid ""
1081
+ "When enabled, the tool is accessible through <a href=\"%sadmin.php?page=wcj-"
1082
+ "tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove Old Slugs</a>."
1083
  msgstr ""
1084
 
1085
+ #: includes/class-wcj-old-slugs.php:94 includes/class-wcj-old-slugs.php:114
1086
+ msgid "Old Slugs"
1087
+ msgstr "Oude Slugs"
1088
 
1089
+ #: includes/class-wcj-old-slugs.php:96
1090
+ msgid "Remove old WooCommerce products slugs."
1091
+ msgstr "Verwijder oude WooCommerce producten slugs."
 
 
 
 
1092
 
1093
+ #: includes/class-wcj-old-slugs.php:169
1094
+ msgid "WooCommerce Jetpack - Remove Old Product Slugs"
1095
+ msgstr "Booster voor WooCommerce - Verwijder oude product slugs"
1096
 
1097
+ #: includes/class-wcj-old-slugs.php:175
1098
+ msgid "Old products slugs found:"
1099
+ msgstr "Oude producten slugs gevonden:"
 
 
 
 
1100
 
1101
+ #: includes/class-wcj-old-slugs.php:183
1102
+ msgid "None-products slugs found:"
1103
+ msgstr "Geen-product slugs gevonden:"
1104
 
1105
+ #: includes/class-wcj-old-slugs.php:190
1106
+ msgid "No old slugs found."
1107
+ msgstr "Geen oude slugs gevonden."
 
 
1108
 
1109
+ #: includes/class-wcj-order-custom-statuses.php:24
1110
+ msgid "Order Custom Statuses"
1111
+ msgstr "Sorteer Aangepaste Statussen"
1112
 
1113
+ #: includes/class-wcj-order-custom-statuses.php:25
1114
+ msgid "Custom statuses for WooCommerce orders."
1115
+ msgstr "Aangepaste statussen voor WooCommerce orders."
 
 
 
 
1116
 
1117
+ #: includes/class-wcj-order-custom-statuses.php:30
1118
  msgctxt "Order status"
1119
  msgid "Pending payment"
1120
  msgstr "In afwachting van betaling [Orderstatus]"
1121
 
1122
+ #: includes/class-wcj-order-custom-statuses.php:31
1123
+ #: includes/functions/wcj-functions.php:344
1124
  msgctxt "Order status"
1125
  msgid "Processing"
1126
  msgstr "In behandeling [Orderstatus]"
1127
 
1128
+ #: includes/class-wcj-order-custom-statuses.php:32
1129
  msgctxt "Order status"
1130
  msgid "On hold"
1131
  msgstr "Op pauze [Orderstatus]"
1132
 
1133
+ #: includes/class-wcj-order-custom-statuses.php:33
1134
+ #: includes/functions/wcj-functions.php:346
1135
  msgctxt "Order status"
1136
  msgid "Completed"
1137
  msgstr "Afgerond [Orderstatus]"
1138
 
1139
+ #: includes/class-wcj-order-custom-statuses.php:34
1140
+ #: includes/functions/wcj-functions.php:347
1141
  msgctxt "Order status"
1142
  msgid "Cancelled"
1143
  msgstr "Geannuleerd [Orderstatus]"
1144
 
1145
+ #: includes/class-wcj-order-custom-statuses.php:35
1146
+ #: includes/functions/wcj-functions.php:348
1147
  msgctxt "Order status"
1148
  msgid "Refunded"
1149
  msgstr "Gecrediteerd [Orderstatus]"
1150
 
1151
+ #: includes/class-wcj-order-custom-statuses.php:36
1152
+ #: includes/functions/wcj-functions.php:349
1153
  msgctxt "Order status"
1154
  msgid "Failed"
1155
  msgstr "Onsuccesvol [Orderstatus]"
1156
 
1157
+ #: includes/class-wcj-order-custom-statuses.php:137
1158
+ #: includes/class-wcj-order-custom-statuses.php:149
1159
+ #: includes/class-wcj-order-custom-statuses.php:278
1160
  msgid "Custom Statuses"
1161
  msgstr "Aangepaste statussen"
1162
 
1163
+ #: includes/class-wcj-order-custom-statuses.php:139
1164
  msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1165
  msgstr ""
1166
  "Hulpmiddel laat je aangepaste statussen voor WooCommerce orders toevoegen of "
1167
  "verwijderen"
1168
 
1169
+ #: includes/class-wcj-order-custom-statuses.php:179
1170
  msgid "Status slug is empty. Status not added."
1171
  msgstr "Status slug is leeg. Status niet toegevoegd."
1172
 
1173
+ #: includes/class-wcj-order-custom-statuses.php:181
1174
  msgid "The length of status slug must be 17 or less characters."
1175
  msgstr "De lengte van de status slug mag maximaal 17 karakters zijn."
1176
 
1177
+ #: includes/class-wcj-order-custom-statuses.php:183
1178
  msgid "Status label is empty. Status not added."
1179
  msgstr "Status label is leeg. Status niet toegevoegd."
1180
 
1181
+ #: includes/class-wcj-order-custom-statuses.php:189
1182
  msgid "Duplicate slug. Status not added."
1183
  msgstr "Dupliceer slug. Status niet toegevoegd."
1184
 
1185
+ #: includes/class-wcj-order-custom-statuses.php:195
1186
  msgid "New status have been successfully added!"
1187
  msgstr "Nieuwe status is succesvol toegevoegd."
1188
 
1189
+ #: includes/class-wcj-order-custom-statuses.php:197
1190
  msgid "Status was not added."
1191
  msgstr "Status is niet toegevoegd."
1192
 
1193
+ #: includes/class-wcj-order-custom-statuses.php:213
1194
  msgid "Status have been successfully deleted."
1195
  msgstr "Status is succesvol verwijderd."
1196
 
1197
+ #: includes/class-wcj-order-custom-statuses.php:215
1198
  msgid "Delete failed."
1199
  msgstr "Verwijderen niet gelukt."
1200
 
1201
+ #: includes/class-wcj-order-custom-statuses.php:218
1202
  msgid "WooCommerce Jetpack - Custom Statuses"
1203
+ msgstr "Booster voor WooCommerce - Aangepaste statussen"
1204
 
1205
+ #: includes/class-wcj-order-custom-statuses.php:219
1206
  msgid "The tool lets you add or delete any custom status for WooCommerce orders."
1207
  msgstr ""
1208
  "Het hulpmiddel laat je elke aangepaste status voor WooCommerce orders toevoegen of "
1209
  "verwijderen."
1210
 
1211
+ #: includes/class-wcj-order-custom-statuses.php:221
1212
  msgid "Statuses"
1213
  msgstr "Statussen"
1214
 
1215
+ #: includes/class-wcj-order-custom-statuses.php:224
1216
  msgid "Slug"
1217
  msgstr "Slug"
1218
 
1219
+ #: includes/class-wcj-order-custom-statuses.php:225
1220
+ #: includes/class-wcj-order-custom-statuses.php:250
1221
  msgid "Label"
1222
  msgstr "Label"
1223
 
1224
+ #: includes/class-wcj-order-custom-statuses.php:227
1225
+ #: includes/class-wcj-order-custom-statuses.php:237
1226
  msgid "Delete"
1227
  msgstr "Verwijder"
1228
 
1229
+ #: includes/class-wcj-order-custom-statuses.php:249
1230
  msgid "Slug (without wc- prefix)"
1231
  msgstr ""
1232
 
1233
+ #: includes/class-wcj-order-custom-statuses.php:278
1234
+ msgid "This section lets you enable custom statuses tool."
1235
+ msgstr "Dit gedeelte schakelt het Aangepaste statussen hulpmiddel in."
1236
+
1237
+ #: includes/class-wcj-order-custom-statuses.php:290
1238
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1239
+ msgid "Default Order Status"
1240
+ msgstr "Default Orderstatus"
1241
 
1242
+ #: includes/class-wcj-order-custom-statuses.php:291
1243
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:120
1244
+ msgid "Enable Custom Statuses feature to add custom statuses to the list."
1245
+ msgstr ""
1246
+ "Schakel aangepaste Status optie in om Aangepaste statussen toe te voegen aan de "
1247
+ "lijst."
1248
 
1249
+ #: includes/class-wcj-order-custom-statuses.php:292
1250
+ msgid ""
1251
+ "You can change the default order status here. However payment gateways can change "
1252
+ "this status immediatelly on order creation. E.g. BACS gateway will change status "
1253
+ "to On-hold."
1254
  msgstr ""
 
1255
 
1256
+ #: includes/class-wcj-order-numbers.php:69
1257
+ msgid "Orders Renumerate"
1258
+ msgstr "Orders opnieuw nummeren"
1259
 
1260
+ #: includes/class-wcj-order-numbers.php:71
1261
+ msgid "Tool renumerates all orders."
1262
+ msgstr "Hulpmiddel om alle orders opnieuw te nummeren."
1263
 
1264
+ #: includes/class-wcj-order-numbers.php:81
1265
+ msgid "Renumerate orders"
1266
+ msgstr "Opnieuw nummeren orders"
1267
 
1268
+ #: includes/class-wcj-order-numbers.php:93
1269
+ msgid "Orders successfully renumerated!"
1270
+ msgstr "Orders succesvol opnieuw genummerd"
1271
 
1272
+ #: includes/class-wcj-order-numbers.php:96
1273
+ msgid "WooCommerce Jetpack - Renumerate Orders"
1274
+ msgstr "Booster voor WooCommerce - Opnieuw nummeren Orders"
1275
 
1276
+ #: includes/class-wcj-order-numbers.php:97
1277
+ msgid ""
1278
+ "The tool renumerates all orders. Press the button below to renumerate all existing "
1279
+ "orders starting from order counter settings in WooCommerce > Settings > Jetpack > "
1280
+ "Order Numbers."
1281
+ msgstr ""
1282
+
1283
+ #: includes/class-wcj-order-numbers.php:163 includes/class-wcj-order-numbers.php:166
1284
+ #: includes/class-wcj-order-numbers.php:262
1285
+ msgid "Order Numbers"
1286
+ msgstr "Ordernummers"
1287
+
1288
+ #: includes/class-wcj-order-numbers.php:163
1289
+ msgid ""
1290
+ "This section lets you enable sequential order numbering, set custom number prefix, "
1291
+ "suffix and width."
1292
+ msgstr ""
1293
+
1294
+ #: includes/class-wcj-order-numbers.php:168
1295
+ msgid ""
1296
+ "WooCommerce sequential order numbering, custom order number prefix, suffix and "
1297
+ "number width."
1298
+ msgstr ""
1299
+
1300
+ #: includes/class-wcj-order-numbers.php:175
1301
+ msgid "Make Order Numbers Sequential"
1302
+ msgstr "Maak ordernummers opvolgend"
1303
+
1304
+ #: includes/class-wcj-order-numbers.php:183
1305
+ msgid "Next Order Number"
1306
+ msgstr "Volgend Ordernummer"
1307
+
1308
+ #: includes/class-wcj-order-numbers.php:184
1309
+ msgid "Next new order will be given this number."
1310
+ msgstr "Volgende nieuwe order zal dit nummer krijgen."
1311
+
1312
+ #: includes/class-wcj-order-numbers.php:184
1313
+ msgid "Use Renumerate Orders tool for existing orders."
1314
+ msgstr "Gebruik Opnieuw nummeren Orders Hulpmiddel voor bestaande bestellingen."
1315
+
1316
+ #: includes/class-wcj-order-numbers.php:185
1317
+ msgid "This will be ignored if sequential order numbering is disabled."
1318
+ msgstr "Dit zal worden genegeerd als opvolgende nummering uitgeschakeld is."
1319
+
1320
+ #: includes/class-wcj-order-numbers.php:192
1321
+ msgid "Order Number Custom Prefix"
1322
+ msgstr ""
1323
+
1324
+ #: includes/class-wcj-order-numbers.php:194
1325
+ msgid ""
1326
+ "Prefix before order number (optional). This will change the prefixes for all "
1327
+ "existing orders."
1328
+ msgstr ""
1329
+
1330
+ #: includes/class-wcj-order-numbers.php:204
1331
+ msgid "Order Number Date Prefix"
1332
+ msgstr ""
1333
+
1334
+ #: includes/class-wcj-order-numbers.php:206
1335
+ msgid ""
1336
+ "Date prefix before order number (optional). This will change the prefixes for all "
1337
+ "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
1338
+ "date formats can be used. The only exception is using `\\` symbol in date format, "
1339
+ "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
1340
+ msgstr ""
1341
+
1342
+ #: includes/class-wcj-order-numbers.php:216
1343
+ msgid "Order Number Width"
1344
+ msgstr "Ordernummer breedte"
1345
+
1346
+ #: includes/class-wcj-order-numbers.php:218
1347
+ msgid ""
1348
+ "Minimum width of number without prefix (zeros will be added to the left side). "
1349
+ "This will change the minimum width of order number for all existing orders. E.g. "
1350
+ "set to 5 to have order number displayed as 00001 instead of 1. Leave zero to "
1351
+ "disable."
1352
+ msgstr ""
1353
+
1354
+ #: includes/class-wcj-order-numbers.php:228
1355
+ msgid "Order Number Custom Suffix"
1356
+ msgstr ""
1357
+
1358
+ #: includes/class-wcj-order-numbers.php:230
1359
+ msgid ""
1360
+ "Suffix after order number (optional). This will change the suffixes for all "
1361
+ "existing orders."
1362
+ msgstr ""
1363
+
1364
+ #: includes/class-wcj-order-numbers.php:240
1365
+ msgid "Order Number Date Suffix"
1366
+ msgstr ""
1367
+
1368
+ #: includes/class-wcj-order-numbers.php:242
1369
+ msgid ""
1370
+ "Date suffix after order number (optional). This will change the suffixes for all "
1371
+ "existing orders. Value is passed directly to PHP `date` function, so most of PHP "
1372
+ "date formats can be used. The only exception is using `\\` symbol in date format, "
1373
+ "as this symbol will be excluded from date. Try: Y-m-d- or mdy."
1374
+ msgstr ""
1375
+
1376
+ #: includes/class-wcj-orders.php:23
1377
+ msgid "Orders"
1378
+ msgstr "Bestellingen"
1379
+
1380
+ #: includes/class-wcj-orders.php:24
1381
+ msgid "Minimum WooCommerce order amount; orders auto-complete."
1382
+ msgstr "Minimum WooCommerce orderbedrag; orders automatsich afronden."
1383
+
1384
+ #: includes/class-wcj-orders.php:77
1385
+ msgid "All countries"
1386
+ msgstr "Alle landen"
1387
+
1388
+ #: includes/class-wcj-orders.php:90 includes/class-wcj-orders.php:262
1389
+ msgid "Country"
1390
+ msgstr "Land"
1391
+
1392
+ #: includes/class-wcj-orders.php:185
1393
+ msgid "Order Minimum Amount"
1394
+ msgstr "Minimaal bestelbedrag."
1395
+
1396
+ #: includes/class-wcj-orders.php:185
1397
+ msgid "This section lets you set minimum order amount."
1398
+ msgstr "Dit gedeelte laat je een minimaal bestelbedrag instellen."
1399
+
1400
+ #: includes/class-wcj-orders.php:188
1401
+ msgid "Amount"
1402
+ msgstr "Bedrag"
1403
+
1404
+ #: includes/class-wcj-orders.php:189
1405
+ msgid "Minimum order amount. Set to 0 to disable."
1406
+ msgstr "Minimaal bestelbedrag. Zet op 0 om uit te schakelen."
1407
+
1408
+ #: includes/class-wcj-orders.php:200
1409
+ msgid "Error message"
1410
+ msgstr "Foutmelding bericht"
1411
+
1412
+ #: includes/class-wcj-orders.php:202 includes/class-wcj-orders.php:222
1413
  msgid ""
1414
  "Message to customer if order is below minimum amount. Default: You must have an "
1415
  "order with a minimum of %s to place your order, your current order total is %s."
1418
  "minimaal voor %s in je winkelwagen hebben, voordat je kunt bestellen. Het "
1419
  "orderbedrag is nu %s."
1420
 
1421
+ #: includes/class-wcj-orders.php:212
1422
  msgid "Add notice to cart page also"
1423
  msgstr "Voeg ook een notitie toe aan de winkelwagenpagina"
1424
 
1425
+ #: includes/class-wcj-orders.php:213 includes/class-wcj-orders.php:263
1426
+ #: includes/class-wcj-purchase-data.php:321
1427
  msgid "Add"
1428
  msgstr "Voeg toe"
1429
 
1430
+ #: includes/class-wcj-orders.php:220
1431
  msgid "Message on cart page"
1432
  msgstr "Bericht op winkelwagen pagina"
1433
 
1434
+ #: includes/class-wcj-orders.php:232
1435
  msgid "Stop customer from seeing the Checkout page if minimum amount not reached."
1436
  msgstr ""
1437
  "Zorg ervoor dat klanten niet op de afrekenpagina kunnen komen, als het minimum "
1438
  "bestelbedrag nog niet is bereikt."
1439
 
1440
+ #: includes/class-wcj-orders.php:233
1441
  msgid "Redirect back to Cart page"
1442
  msgstr "Omleiding terug naar winkelwagenpagina."
1443
 
1444
+ #: includes/class-wcj-orders.php:241
1445
  msgid "Orders Auto-Complete"
1446
  msgstr "Orders automatisch afronden"
1447
 
1448
+ #: includes/class-wcj-orders.php:241
1449
  msgid "This section lets you enable orders auto-complete function."
1450
  msgstr "Dit gedeelte schakelt de order automatisch afronden optie in."
1451
 
1452
+ #: includes/class-wcj-orders.php:244
1453
  msgid "Auto-complete all WooCommerce orders"
1454
  msgstr "Automatisch afronden van alle WooCommerce orders"
1455
 
1456
+ #: includes/class-wcj-orders.php:246
1457
  msgid ""
1458
  "E.g. if you sell digital products then you are not shipping anything and you may "
1459
  "want auto-complete all your orders."
1461
  "Oftewel; als je digitale producten verkoopt en je dus geen verzending nodig hebt, "
1462
  "kun je alle orders automatisch laten afronden."
1463
 
1464
+ #: includes/class-wcj-orders.php:255 includes/class-wcj-purchase-data.php:314
1465
+ msgid "Orders List Custom Columns"
1466
+ msgstr "Lijst van Orders aangepaste Kolommen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1467
 
1468
+ #: includes/class-wcj-orders.php:257 includes/class-wcj-purchase-data.php:316
1469
+ msgid "This section lets you add custom columns to WooCommerce orders list."
 
 
 
1470
  msgstr ""
1471
+ "Dit gedeelte laat je aangepaste kolommen toevoegen aan WooCommerce orderlijst."
1472
 
1473
+ #: includes/class-wcj-payment-gateways-fees.php:24
1474
+ msgid "Payment Gateways Fees"
1475
  msgstr ""
1476
 
1477
+ #: includes/class-wcj-payment-gateways-fees.php:25
1478
+ msgid "Enable extra fees for WooCommerce payment gateways."
 
 
 
 
1479
  msgstr ""
1480
 
1481
+ #: includes/class-wcj-payment-gateways-fees.php:127
 
1482
  msgid "Payment Gateways Fees Options"
1483
  msgstr ""
1484
 
1485
+ #: includes/class-wcj-payment-gateways-fees.php:129
1486
  msgid "This section lets you set extra fees for payment gateways."
1487
  msgstr ""
1488
 
1489
+ #: includes/class-wcj-payment-gateways-fees.php:148
 
 
 
 
1490
  msgid "Fee title to show to customer."
1491
  msgstr "Toeslag titel om te tonen aan klant."
1492
 
1493
+ #: includes/class-wcj-payment-gateways-fees.php:157
1494
  msgid "Fee type."
1495
  msgstr "Toeslag soort"
1496
 
1497
+ #: includes/class-wcj-payment-gateways-fees.php:158
1498
  msgid "Percent or fixed value."
1499
  msgstr "Percentage of vast bedrag."
1500
 
1501
+ #: includes/class-wcj-payment-gateways-fees.php:165
1502
  msgid "Fixed"
1503
  msgstr "Vaste"
1504
 
1505
+ #: includes/class-wcj-payment-gateways-fees.php:166
1506
  msgid "Percent"
1507
  msgstr "Procent"
1508
 
1509
+ #: includes/class-wcj-payment-gateways-fees.php:172
1510
  msgid "Fee value."
1511
  msgstr "Toeslag bedrag"
1512
 
1513
+ #: includes/class-wcj-payment-gateways-fees.php:173
1514
  msgid "The value."
1515
  msgstr "De waarde."
1516
 
1517
+ #: includes/class-wcj-payment-gateways-fees.php:185
1518
  msgid "Minimum cart amount for adding the fee."
1519
  msgstr "Minimum winkelwagenbedrag om de toeslag toe te voegen."
1520
 
1521
+ #: includes/class-wcj-payment-gateways-fees.php:186
1522
+ #: includes/class-wcj-payment-gateways-fees.php:199
1523
  msgid "Set 0 to disable."
1524
  msgstr "Stel 0 in om uit te schakelen."
1525
 
1526
+ #: includes/class-wcj-payment-gateways-fees.php:198
1527
  msgid "Maximum cart amount for adding the fee."
1528
  msgstr "Maximum winkelwagenbedrag om de toeslag toe te voegen."
1529
 
1530
+ #: includes/class-wcj-payment-gateways-fees.php:211
1531
+ msgid "Round the fee value before adding to the cart."
1532
+ msgstr "Rond de toeslag af voordat deze wordt toegevoegd aan de winkelwagen."
1533
+
1534
+ #: includes/class-wcj-payment-gateways-fees.php:220
1535
+ msgid "If rounding is enabled, set precision here."
1536
+ msgstr "Als afronding is ingeschakeld, stel hier het aantal decimalen in."
1537
+
1538
+ #: includes/class-wcj-payment-gateways-fees.php:233
1539
+ msgid "Is taxable?"
1540
  msgstr ""
1541
 
1542
+ #: includes/class-wcj-payment-gateways-fees.php:244
1543
+ msgid "Tax Class (only if Taxable selected)."
1544
  msgstr ""
 
 
1545
 
1546
+ #: includes/class-wcj-payment-gateways-fees.php:249
1547
+ msgid "Standard Rate"
1548
+ msgstr ""
1549
+
1550
+ #: includes/class-wcj-payment-gateways-icons.php:24
1551
+ msgid "Payment Gateways Icons"
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wcj-payment-gateways-icons.php:25
1555
+ msgid "Change icons (images) for all default WooCommerce payment gateways."
1556
+ msgstr ""
1557
 
1558
+ #: includes/class-wcj-payment-gateways-icons.php:69
1559
+ msgid "Default WooCommerce Payment Gateways Icons"
1560
  msgstr ""
1561
 
1562
+ #: includes/class-wcj-payment-gateways-icons.php:71
1563
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:84
1564
+ msgid ""
1565
+ "If you want to show an image next to the gateway's name on the frontend, enter a "
1566
+ "URL to an image."
1567
  msgstr ""
1568
 
1569
+ #: includes/class-wcj-payment-gateways-per-category.php:24
1570
+ msgid "Payment Gateways per Category"
1571
  msgstr ""
1572
 
1573
+ #: includes/class-wcj-payment-gateways-per-category.php:25
1574
  msgid ""
1575
+ "Show gateway only if there is product of selected category in WooCommerce cart."
1576
+ msgstr ""
1577
+
1578
+ #: includes/class-wcj-payment-gateways-per-category.php:93
1579
+ msgid "WooCommerce Jetpack: Payment Gateways per Category Options"
1580
+ msgstr ""
1581
+
1582
+ #: includes/class-wcj-payment-gateways-per-category.php:111
1583
+ msgid "Show gateway only if there is product of selected category in cart."
1584
+ msgstr ""
1585
+
1586
+ #: includes/class-wcj-payment-gateways.php:25
1587
+ msgid "Custom Payment Gateways"
1588
+ msgstr ""
1589
+
1590
+ #: includes/class-wcj-payment-gateways.php:26
1591
+ msgid "Add multiple custom payment gateways to WooCommerce."
1592
  msgstr ""
1593
 
1594
+ #: includes/class-wcj-payment-gateways.php:42
1595
  msgid "Custom Payment Gateways Options"
1596
  msgstr ""
1597
 
1598
+ #: includes/class-wcj-payment-gateways.php:45
1599
  msgid "Number of Gateways"
1600
  msgstr ""
1601
 
1602
+ #: includes/class-wcj-payment-gateways.php:47
1603
  msgid ""
1604
  "Number of custom payments gateways to be added. All settings for each new gateway "
1605
  "are in WooCommerce > Settings > Checkout."
1606
  msgstr ""
1607
 
1608
+ #: includes/class-wcj-pdf-invoices.php:66
1609
+ msgid "Payment Gateways Attach PDF Invoice V1 Options"
 
 
 
 
 
 
1610
  msgstr ""
1611
 
1612
+ #: includes/class-wcj-pdf-invoices.php:66
1613
+ msgid "This section lets you choose when to attach PDF invoice to customers emails."
1614
  msgstr ""
1615
+ "Dit gedeelte laat je kiezen wanneer er een PDF factuur bijlage moet worden "
1616
+ "toegevoegd aan emails van klanten."
1617
 
1618
+ #: includes/class-wcj-pdf-invoices.php:76
1619
+ msgid "Attach PDF invoice."
1620
+ msgstr "Voeg een PDF factuur toe."
1621
 
1622
+ #: includes/class-wcj-pdf-invoices.php:208 includes/class-wcj-pdf-invoices.php:213
1623
+ #: includes/functions/wcj-invoicing-functions.php:10
1624
  msgid "Invoice"
1625
  msgstr "Factuur"
1626
 
1627
+ #: includes/class-wcj-pdf-invoices.php:371
1628
+ #: includes/classes/class-wcj-pdf-invoice.php:287
1629
+ msgid "Unexpected error"
1630
+ msgstr "Onverwachte foutmelding"
1631
+
1632
+ #: includes/class-wcj-pdf-invoices.php:891 includes/class-wcj-pdf-invoices.php:897
1633
  msgid "PDF Invoice"
1634
  msgstr "PDF factuur"
1635
 
1636
+ #: includes/class-wcj-pdf-invoices.php:922
1637
  msgid "PDF Invoices Options"
1638
  msgstr "PDF factuur opties"
1639
 
1640
+ #: includes/class-wcj-pdf-invoices.php:925 includes/class-wcj-pdf-invoices.php:1437
1641
+ msgid "PDF Invoices"
1642
+ msgstr "PDF Facturen"
1643
+
1644
+ #: includes/class-wcj-pdf-invoices.php:925
1645
+ msgid "depreciated"
1646
+ msgstr ""
1647
 
1648
+ #: includes/class-wcj-pdf-invoices.php:927
1649
+ msgid "Add PDF invoices for the WooCommerce store owners and for the customers."
1650
+ msgstr ""
1651
+ "Voeg PDF facturen toe voor de WooCommerce winkeleigenaren en voor de klanten."
1652
 
1653
+ #: includes/class-wcj-pdf-invoices.php:935
1654
  msgid "Invoice Header"
1655
  msgstr "Factuur koptekst"
1656
 
1657
+ #: includes/class-wcj-pdf-invoices.php:935
1658
  msgid ""
1659
  "This section lets you set texts for required invoice number and date, and optional "
1660
  "logo, header text, invoice due and fulfillment dates."
1661
  msgstr ""
1662
 
1663
+ #: includes/class-wcj-pdf-invoices.php:938
1664
  msgid "Your Logo URL"
1665
  msgstr "Jouw Logo URL"
1666
 
1667
+ #: includes/class-wcj-pdf-invoices.php:939
1668
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:54
1669
  msgid ""
1670
  "Enter a URL to an image you want to show in the invoice's header. Upload your "
1671
  "image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1673
  "Voer een URL naar een plaatje toe die je wilt weergeven in de factuur kop. Upload "
1674
  "een bestand met <a href=\"/wp-admin/media-new.php\">media uploader</a>."
1675
 
1676
+ #: includes/class-wcj-pdf-invoices.php:940 includes/class-wcj-pdf-invoices.php:949
1677
+ #: includes/class-wcj-pdf-invoices.php:969 includes/class-wcj-pdf-invoices.php:979
1678
+ #: includes/class-wcj-pdf-invoices.php:998 includes/class-wcj-pdf-invoices.php:1018
1679
+ #: includes/class-wcj-pdf-invoices.php:1091 includes/class-wcj-pdf-invoices.php:1126
1680
+ #: includes/class-wcj-pdf-invoices.php:1177 includes/class-wcj-pdf-invoices.php:1186
1681
+ #: includes/class-wcj-pdf-invoices.php:1195 includes/class-wcj-pdf-invoices.php:1204
1682
+ #: includes/class-wcj-pdf-invoices.php:1213 includes/class-wcj-pdf-invoices.php:1222
1683
+ #: includes/class-wcj-pdf-invoices.php:1302 includes/class-wcj-pdf-invoices.php:1311
1684
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:55
1685
  msgid "Leave blank to disable"
1686
  msgstr "Laat leeg om uit te schakelen"
1687
 
1688
+ #: includes/class-wcj-pdf-invoices.php:948
1689
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:74
1690
  msgid "Header Text"
1691
  msgstr "Koptekst"
1692
 
1693
+ #: includes/class-wcj-pdf-invoices.php:950
1694
  msgid "Default: INVOICE"
1695
  msgstr "Default: FACTUUR"
1696
 
1697
+ #: includes/class-wcj-pdf-invoices.php:952
1698
  msgid "INVOICE"
1699
  msgstr "FACTUUR"
1700
 
1701
+ #: includes/class-wcj-pdf-invoices.php:958
1702
  msgid "Invoice Number"
1703
  msgstr "Factuurnummer"
1704
 
1705
+ #: includes/class-wcj-pdf-invoices.php:959
1706
  msgid "Default: Invoice number"
1707
  msgstr "Default: Factuurnummer"
1708
 
1709
+ #: includes/class-wcj-pdf-invoices.php:961
1710
  msgid "Invoice number"
1711
  msgstr "Factuurnummer"
1712
 
1713
+ #: includes/class-wcj-pdf-invoices.php:967
1714
  msgid "Order Date"
1715
  msgstr "Orderdatum"
1716
 
1717
+ #: includes/class-wcj-pdf-invoices.php:968
1718
  msgid "Default: Order date"
1719
  msgstr "Default: Orderdatum"
1720
 
1721
+ #: includes/class-wcj-pdf-invoices.php:971
1722
  msgid "Order date"
1723
  msgstr "Orderdatum"
1724
 
1725
+ #: includes/class-wcj-pdf-invoices.php:977
1726
  msgid "Order Time"
1727
  msgstr "Ordertijd"
1728
 
1729
+ #: includes/class-wcj-pdf-invoices.php:978
1730
  msgid "Default: Order time"
1731
  msgstr "Default: Ordertijd"
1732
 
1733
+ #: includes/class-wcj-pdf-invoices.php:981
1734
  msgid "Order time"
1735
  msgstr "Ordertijd"
1736
 
1737
+ #: includes/class-wcj-pdf-invoices.php:987
1738
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:110
1739
  msgid "Invoice Date"
1740
  msgstr "Factuurdatum"
1741
 
1742
+ #: includes/class-wcj-pdf-invoices.php:988
1743
  msgid "Default: Invoice date"
1744
  msgstr "Default: Factuurdatum"
1745
 
1746
+ #: includes/class-wcj-pdf-invoices.php:990
1747
  msgid "Invoice date"
1748
  msgstr "Factuurdatum"
1749
 
1750
+ #: includes/class-wcj-pdf-invoices.php:997
1751
  msgid "Default: Invoice due date"
1752
  msgstr "Default: Uiterste betaaldatum"
1753
 
1754
+ #: includes/class-wcj-pdf-invoices.php:1000
1755
  msgid "Invoice due date"
1756
  msgstr "Uiterste betaaldatum"
1757
 
1758
+ #: includes/class-wcj-pdf-invoices.php:1007 includes/class-wcj-pdf-invoices.php:1027
1759
  msgid "days"
1760
  msgstr "dagen"
1761
 
1762
+ #: includes/class-wcj-pdf-invoices.php:1017
1763
  msgid "Default: Invoice fulfillment date"
1764
  msgstr ""
1765
 
1766
+ #: includes/class-wcj-pdf-invoices.php:1020
1767
  msgid "Invoice fulfillment date"
1768
  msgstr ""
1769
 
1770
+ #: includes/class-wcj-pdf-invoices.php:1036
1771
  msgid "Additional Header"
1772
  msgstr "Extra koptekst"
1773
 
1774
+ #: includes/class-wcj-pdf-invoices.php:1037
1775
  msgid ""
1776
  "Additional header - will be displayed above all data on invoice. You can use html "
1777
  "and/or shortcodes here."
1779
  "Extra koptekst - wordt weergegeven boven alle data op de factuur. Je kunt HTML en/"
1780
  "of shortcodes gebruiken."
1781
 
1782
+ #: includes/class-wcj-pdf-invoices.php:1046
1783
  msgid "Seller and Buyer Info"
1784
  msgstr "Verkoper en koper Info"
1785
 
1786
+ #: includes/class-wcj-pdf-invoices.php:1049 includes/class-wcj-pdf-invoices.php:1052
1787
+ #: includes/class-wcj-purchase-data.php:177
1788
  msgid "Seller"
1789
  msgstr "Verkoper"
1790
 
1791
+ #: includes/class-wcj-pdf-invoices.php:1058
1792
  msgid "Your business information"
1793
  msgstr "Jouw bedrijfsinformatie"
1794
 
1795
+ #: includes/class-wcj-pdf-invoices.php:1060
1796
  msgid "New lines are added automatically."
1797
  msgstr "Nieuwe regels worden automatisch toegevoegd."
1798
 
1799
+ #: includes/class-wcj-pdf-invoices.php:1062
1800
  msgid "<strong>Company Name</strong>"
1801
  msgstr "<strong>Bedrijfsnaam</strong>"
1802
 
1803
+ #: includes/class-wcj-pdf-invoices.php:1068 includes/class-wcj-pdf-invoices.php:1071
1804
  msgid "Buyer"
1805
  msgstr "Koper"
1806
 
1807
+ #: includes/class-wcj-pdf-invoices.php:1078 includes/class-wcj-pdf-invoices.php:1084
1808
  msgid "Items"
1809
  msgstr "Producten"
1810
 
1811
+ #: includes/class-wcj-pdf-invoices.php:1081
1812
  msgid "Items Table Heading Text"
1813
  msgstr "Producten tabel koptekst"
1814
 
1815
+ #: includes/class-wcj-pdf-invoices.php:1090
1816
  msgid "Shipping as Item"
1817
  msgstr "Verzendkosten als product"
1818
 
1819
+ #: includes/class-wcj-pdf-invoices.php:1092
1820
  msgid "Display shipping as item"
1821
  msgstr "Laat verzendkosten zien als product"
1822
 
1823
+ #: includes/class-wcj-pdf-invoices.php:1110 includes/class-wcj-pdf-invoices.php:1118
1824
  msgid "Add shipping method info"
1825
  msgstr "Voeg verzendmethode informatie toe"
1826
 
1827
+ #: includes/class-wcj-pdf-invoices.php:1117
1828
  msgid "Do not add shipping method info"
1829
  msgstr "Voeg geen verzendmethode informatie toe"
1830
 
1831
+ #: includes/class-wcj-pdf-invoices.php:1119
1832
  msgid "Replace with shipping method info"
1833
  msgstr "Vervang verzendmethode informatie"
1834
 
1835
+ #: includes/class-wcj-pdf-invoices.php:1125
1836
  msgid "Discount as Item"
1837
  msgstr "Korting als product"
1838
 
1839
+ #: includes/class-wcj-pdf-invoices.php:1127
1840
  msgid "Display discount as item"
1841
  msgstr "Toon korting als product"
1842
 
1843
+ #: includes/class-wcj-pdf-invoices.php:1137
1844
  msgid "Items Columns"
1845
  msgstr "Productkolommen"
1846
 
1847
+ #: includes/class-wcj-pdf-invoices.php:1137
1848
  msgid ""
1849
  "This section lets you set column names in invoice items table. You can disable "
1850
  "some columns by leaving blank column name."
1852
  "Dit gedeelte laat je kolomnamen invoeren in de factuur productentabel. Je kunt "
1853
  "kolommen uitschakelen door de kolomnaam leeg te laten."
1854
 
1855
+ #: includes/class-wcj-pdf-invoices.php:1140 includes/class-wcj-pdf-invoices.php:1143
1856
  msgid "Nr."
1857
  msgstr "Nr."
1858
 
1859
+ #: includes/class-wcj-pdf-invoices.php:1149 includes/class-wcj-pdf-invoices.php:1152
1860
  msgid "Item Name"
1861
  msgstr "Productnaam"
1862
 
1863
+ #: includes/class-wcj-pdf-invoices.php:1158
1864
  msgid "Item Name Additional Info"
1865
  msgstr "Productnaam extra info"
1866
 
1867
+ #: includes/class-wcj-pdf-invoices.php:1159
1868
  msgid ""
1869
  "Here you can add more info to item's name column (e.g. sku). Default is (SKU: %sku"
1870
  "%)"
1871
  msgstr ""
1872
 
1873
+ #: includes/class-wcj-pdf-invoices.php:1161
1874
  msgid "(SKU: %sku%)"
1875
  msgstr ""
1876
 
1877
+ #: includes/class-wcj-pdf-invoices.php:1167 includes/class-wcj-pdf-invoices.php:1170
1878
  msgid "Qty"
1879
  msgstr ""
1880
 
1881
+ #: includes/class-wcj-pdf-invoices.php:1176
1882
  msgid "Single Item Price (TAX excl.)"
1883
  msgstr "Enkel productprijs (Excl. BTW)"
1884
 
1885
+ #: includes/class-wcj-pdf-invoices.php:1179
1886
  msgid "Price (TAX excl.)"
1887
  msgstr "Prijs (Excl. BTW)"
1888
 
1889
+ #: includes/class-wcj-pdf-invoices.php:1185
1890
  msgid "Single Item TAX"
1891
  msgstr "Enkel product BTW"
1892
 
1893
+ #: includes/class-wcj-pdf-invoices.php:1188
1894
  msgid "TAX"
1895
  msgstr "BTW"
1896
 
1897
+ #: includes/class-wcj-pdf-invoices.php:1194
1898
  msgid "Single Item Price (TAX incl.)"
1899
  msgstr "Enkel productprijs (Incl. BTW)"
1900
 
1901
+ #: includes/class-wcj-pdf-invoices.php:1197
1902
  msgid "Price (TAX incl.)"
1903
  msgstr "Prijs (inc. BTW)"
1904
 
1905
+ #: includes/class-wcj-pdf-invoices.php:1203 includes/class-wcj-pdf-invoices.php:1206
1906
  msgid "Sum (TAX excl.)"
1907
  msgstr "Totaal (excl. BTW)"
1908
 
1909
+ #: includes/class-wcj-pdf-invoices.php:1212
1910
  msgid "Tax Percent"
1911
  msgstr "BTW percentage"
1912
 
1913
+ #: includes/class-wcj-pdf-invoices.php:1215
1914
  msgid "Taxes %"
1915
  msgstr "BTW %"
1916
 
1917
+ #: includes/class-wcj-pdf-invoices.php:1221 includes/class-wcj-pdf-invoices.php:1224
1918
+ #: includes/class-wcj-pdf-invoices.php:1282
1919
  msgid "Taxes"
1920
  msgstr "BTW"
1921
 
1922
+ #: includes/class-wcj-pdf-invoices.php:1230 includes/class-wcj-pdf-invoices.php:1233
1923
  msgid "Sum (TAX incl.)"
1924
  msgstr "Totaal (incl. BTW)"
1925
 
1926
+ #: includes/class-wcj-pdf-invoices.php:1240
1927
  msgid "Totals"
1928
  msgstr "Totaal"
1929
 
1930
+ #: includes/class-wcj-pdf-invoices.php:1240
1931
  msgid "This section lets you set texts for totals table."
1932
  msgstr "Dit gedeelte laat je teksten voor totaaltabel instellen."
1933
 
1934
+ #: includes/class-wcj-pdf-invoices.php:1243 includes/class-wcj-pdf-invoices.php:1246
1935
  msgid "Order Subtotal"
1936
  msgstr "Order Subtotaal"
1937
 
1938
+ #: includes/class-wcj-pdf-invoices.php:1244
1939
  msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
1940
  msgstr "Order Subtotaal = Totaal - BTW - Verzendkosten - korting"
1941
 
1942
+ #: includes/class-wcj-pdf-invoices.php:1252
1943
  msgid "Order Shipping Price"
1944
  msgstr "Order verzendkosten"
1945
 
1946
+ #: includes/class-wcj-pdf-invoices.php:1261
1947
  msgid "Total Discount"
1948
  msgstr "Totale korting"
1949
 
1950
+ #: includes/class-wcj-pdf-invoices.php:1264
1951
  msgid "Discount"
1952
  msgstr "Korting"
1953
 
1954
+ #: includes/class-wcj-pdf-invoices.php:1270 includes/class-wcj-pdf-invoices.php:1273
1955
  msgid "Order Total (TAX excl.)"
1956
  msgstr "Order Totaal (Excl. BTW)"
1957
 
1958
+ #: includes/class-wcj-pdf-invoices.php:1271
1959
  msgid ""
1960
  "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping is not "
1961
  "equal to zero. In other words: if \"Order Total (TAX excl.)\" not equal to \"Order "
1965
  "verzendkosten niet gelijk zijn aan nul. In andere woorden: als \"Order Totaal "
1966
  "(Excl. BTW)\" niet gelijk is aan \"Order Subtotaal\"."
1967
 
1968
+ #: includes/class-wcj-pdf-invoices.php:1279
1969
  msgid "Order Total Taxes"
1970
  msgstr "Order Totaal BTW"
1971
 
1972
+ #: includes/class-wcj-pdf-invoices.php:1288 includes/class-wcj-pdf-invoices.php:1291
1973
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:116
1974
  msgid "Order Total"
1975
  msgstr "Order Totaal"
1976
 
1977
+ #: includes/class-wcj-pdf-invoices.php:1298
1978
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:24
1979
  msgid "Footer"
1980
  msgstr "Voettekst"
1981
 
1982
+ #: includes/class-wcj-pdf-invoices.php:1301 includes/class-wcj-pdf-invoices.php:1304
1983
  msgid "Payment Method"
1984
  msgstr "Betaalmethode"
1985
 
1986
+ #: includes/class-wcj-pdf-invoices.php:1310 includes/class-wcj-pdf-invoices.php:1313
1987
  msgid "Shipping Method"
1988
  msgstr "Verzendmethode"
1989
 
1990
+ #: includes/class-wcj-pdf-invoices.php:1319 includes/class-wcj-pdf-invoices.php:1322
1991
  msgid "Shipping Address"
1992
  msgstr "Verzendadres"
1993
 
1994
+ #: includes/class-wcj-pdf-invoices.php:1320
1995
  msgid ""
1996
  "Will be displayed only if customer's shipping address differs from billing "
1997
  "address. Leave blank to disable"
1999
  "Wordt alleen weergegeven als het verzendadres anders is dan het factuuradres. Laat "
2000
  "leeg om uit te schakelen."
2001
 
2002
+ #: includes/class-wcj-pdf-invoices.php:1328
2003
  msgid "Additional Footer"
2004
  msgstr "Extra voettekst"
2005
 
2006
+ #: includes/class-wcj-pdf-invoices.php:1329
2007
  msgid ""
2008
  "Additional footer - will be displayed below all other data on invoice. You can use "
2009
  "html and/or shortcodes here."
2011
  "Extra voettekst - wordt weergegeven onder alle data op factuur. Je kunt HTML en/of "
2012
  "shortcodes gebruiken."
2013
 
2014
+ #: includes/class-wcj-pdf-invoices.php:1338
2015
+ msgid "General Options"
2016
+ msgstr "Algemene opties"
2017
+
2018
+ #: includes/class-wcj-pdf-invoices.php:1341
2019
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:54
2020
+ msgid "Font Family"
2021
+ msgstr ""
2022
+
2023
+ #: includes/class-wcj-pdf-invoices.php:1357
2024
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:70
2025
+ msgid "Font Size"
2026
+ msgstr "Lettergrootte"
2027
 
2028
+ #: includes/class-wcj-pdf-invoices.php:1358
2029
  msgid "Default: 8"
2030
  msgstr "Default: 8"
2031
 
2032
+ #: includes/class-wcj-pdf-invoices.php:1365
2033
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:79
2034
+ msgid "Make Font Shadowed"
2035
+ msgstr ""
2036
+
2037
+ #: includes/class-wcj-pdf-invoices.php:1366
2038
+ msgid "Default: Yes"
2039
+ msgstr "Standaard: Ja"
2040
+
2041
+ #: includes/class-wcj-pdf-invoices.php:1373
2042
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:46
2043
  msgid "CSS"
2044
  msgstr "CSS"
2045
 
2046
+ #: includes/class-wcj-pdf-invoices.php:1387
2047
  msgid "PDF Invoices for Customers (in My Account)"
2048
  msgstr "PDF facturen voor klanten (in Mijn Account)"
2049
 
2050
+ #: includes/class-wcj-pdf-invoices.php:1388
2051
  msgid "Enable the PDF Invoices in customers account"
2052
  msgstr "Schakel de PDF facturen voor klanten in Mijn Account in)"
2053
 
2054
+ #: includes/class-wcj-pdf-invoices.php:1397
2055
  msgid "PDF Invoices for Customers (Email attachment)"
2056
  msgstr "PDF Facturen voor klanten (Email bijlage)"
2057
 
2058
+ #: includes/class-wcj-pdf-invoices.php:1398
2059
  msgid ""
2060
  "Enable the PDF Invoices attachment files in customers email on order completed"
2061
  msgstr "Schakel de PDF factuur bijlage in email klant bij complete order in."
2062
 
2063
+ #: includes/class-wcj-pdf-invoices.php:1417
2064
  msgid "Enable Save as"
2065
  msgstr "Schakel in Opslaan als"
2066
 
2067
+ #: includes/class-wcj-pdf-invoices.php:1418
2068
  msgid "Enable save as pdf instead of view pdf"
2069
  msgstr "Schakel in Opslaan als in plaats van bekijken PDF"
2070
 
2071
+ #: includes/class-wcj-pdf-invoicing.php:143
2072
+ msgid "PDF Invoicing General Options"
2073
+ msgstr "PDF facturering Algemene Opties"
2074
+
2075
+ #: includes/class-wcj-pdf-invoicing.php:146
2076
+ msgid "PDF Invoicing"
2077
+ msgstr "PDF Facturering"
2078
+
2079
+ #: includes/class-wcj-pdf-invoicing.php:148
2080
+ msgid "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2081
+ msgstr ""
2082
 
2083
+ #: includes/class-wcj-pdf-invoicing.php:157
2084
+ msgid "Disabled"
2085
+ msgstr "Uitgeschakeld"
2086
+
2087
+ #: includes/class-wcj-pdf-invoicing.php:158
2088
+ msgid "Create on New Order"
2089
+ msgstr "Creëer bij Nieuwe Order"
2090
+
2091
+ #: includes/class-wcj-pdf-invoicing.php:161
2092
+ msgid "Create on Order Status"
2093
+ msgstr "Creëer bij Order Status"
2094
+
2095
+ #: includes/class-wcj-price-by-country.php:62
2096
  msgid "Price by Country Options"
2097
  msgstr "Prijs per Land opties"
2098
 
2099
+ #: includes/class-wcj-price-by-country.php:64
2100
  msgid ""
2101
  "Change product's price and currency by customer's country. Customer's country is "
2102
+ "detected automatically by IP, or selected by customer manually."
2103
  msgstr ""
 
 
 
 
 
 
2104
 
2105
+ #: includes/class-wcj-price-by-country.php:68
2106
+ #: includes/class-wcj-price-by-country.php:295
2107
  msgid "Prices and Currencies by Country"
2108
  msgstr "Prijzen en valuta per Land"
2109
 
2110
+ #: includes/class-wcj-price-by-country.php:70
2111
+ msgid ""
2112
+ "Change WooCommerce product price and currency automatically by customer's country."
2113
+ msgstr ""
2114
+
2115
+ #: includes/class-wcj-price-by-country.php:77
2116
+ msgid "Customer Country Detection Method"
2117
+ msgstr ""
2118
+
2119
+ #: includes/class-wcj-price-by-country.php:79
2120
+ msgid ""
2121
+ "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
2122
+ "shortcode to display country selection list on frontend."
2123
+ msgstr ""
2124
+
2125
+ #: includes/class-wcj-price-by-country.php:83
2126
+ msgid "by IP"
2127
+ msgstr "Via IP"
2128
+
2129
+ #: includes/class-wcj-price-by-country.php:84
2130
+ msgid "by user selection"
2131
+ msgstr "Per gebruiker selectie"
2132
+
2133
+ #: includes/class-wcj-price-by-country.php:90
2134
+ msgid "Price Rounding"
2135
+ msgstr "Prijsafronding"
2136
+
2137
+ #: includes/class-wcj-price-by-country.php:91
2138
+ msgid "If you choose to multiply price, set rounding options here."
2139
+ msgstr ""
2140
+ "Als je ervoor kiest om de prijs te vermenigvuldigen, stel hier de afrondopties in."
2141
+
2142
+ #: includes/class-wcj-price-by-country.php:96
2143
+ msgid "No rounding"
2144
+ msgstr "Niet afronden"
2145
+
2146
+ #: includes/class-wcj-price-by-country.php:97
2147
+ msgid "Round"
2148
+ msgstr "Afronden"
2149
+
2150
+ #: includes/class-wcj-price-by-country.php:98
2151
+ msgid "Round down"
2152
+ msgstr "Omlaag afronden"
2153
+
2154
+ #: includes/class-wcj-price-by-country.php:99
2155
+ msgid "Round up"
2156
+ msgstr "Omhoog afronden"
2157
+
2158
+ #: includes/class-wcj-price-by-country.php:104
2159
+ msgid "Price by Country on per Product Basis"
2160
+ msgstr ""
2161
 
2162
+ #: includes/class-wcj-price-by-country.php:106
2163
+ msgid "This will add meta boxes in product edit."
2164
+ msgstr ""
2165
 
2166
+ #: includes/class-wcj-price-by-country.php:114
2167
+ msgid "Country Groups"
2168
+ msgstr "Landen groepen"
2169
 
2170
+ #: includes/class-wcj-price-by-country.php:117
2171
  msgid "Groups Number"
2172
  msgstr "Groepsnumme"
2173
 
2174
+ #: includes/class-wcj-price-by-country.php:133
2175
  msgid ""
2176
  "Countries. List of comma separated country codes.<br>For country codes and "
2177
  "predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
2178
  "currencies-by-customers-country\">WooJetpack.com</a>"
2179
  msgstr ""
2180
 
2181
+ #: includes/class-wcj-price-by-country.php:154
2182
+ msgid "Currency"
2183
+ msgstr "Valuta"
2184
+
2185
+ #: includes/class-wcj-price-by-country.php:164
2186
+ msgid "Exchange Rates"
2187
+ msgstr ""
2188
+
2189
+ #: includes/class-wcj-price-by-country.php:167
2190
+ msgid "Exchange Rates Updates"
2191
+ msgstr ""
2192
+
2193
+ #: includes/class-wcj-price-by-country.php:172
2194
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:23
2195
+ msgid "Enter Rates Manually"
2196
+ msgstr ""
2197
+
2198
+ #: includes/class-wcj-price-by-country.php:173
2199
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:24
2200
+ msgid "Automatically: Update Hourly"
2201
+ msgstr "Automatisch: Elk uur updaten"
2202
+
2203
+ #: includes/class-wcj-price-by-country.php:174
2204
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:25
2205
+ msgid "Automatically: Update Twice Daily"
2206
+ msgstr "Automatisch: Twee keer per dag updaten"
2207
+
2208
+ #: includes/class-wcj-price-by-country.php:175
2209
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:26
2210
+ msgid "Automatically: Update Daily"
2211
+ msgstr "Automatisch: Elke dag updaten"
2212
+
2213
+ #: includes/class-wcj-price-by-country.php:176
2214
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:27
2215
+ msgid "Automatically: Update Weekly"
2216
+ msgstr "Automatisch: Elke week updaten"
2217
+
2218
+ #: includes/class-wcj-price-by-country.php:177
2219
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:28
2220
+ msgid "Automatically: Update Every Minute"
2221
+ msgstr "Automatisch: Elke minuut updaten"
2222
+
2223
+ #: includes/class-wcj-price-by-country.php:199
2224
  msgid "Multiply Price by"
2225
  msgstr "Vermenigvuldig prijs met"
2226
 
2227
+ #: includes/class-wcj-price-by-country.php:207
2228
+ msgid "Grab %s rate from Yahoo.com"
2229
+ msgstr ""
2230
 
2231
+ #: includes/class-wcj-price-by-country.php:222
2232
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:141
2233
+ msgid "Make empty price"
2234
+ msgstr "Maak prijs leeg"
2235
+
2236
+ #: includes/class-wcj-price-labels.php:117
2237
  msgid "Migrate from Custom Price Labels (Pro)"
2238
  msgstr "Migreer van Aangepaste Prijslabels (Pro)"
2239
 
2240
+ #: includes/class-wcj-price-labels.php:119
2241
  msgid ""
2242
  "Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) "
2243
  "plugin to WooCommerce Jetpack."
2244
  msgstr ""
2245
  "Hulpmiddel laat je alle data (labels) kopiëren van Aangepaste Prijslabels (Pro) "
2246
+ "plugin naar Booster voor WooCommerce."
2247
 
2248
+ #: includes/class-wcj-price-labels.php:129
2249
  msgid "Migrate from Custom Price Labels"
2250
  msgstr "Migreer van Aangepaste Prijslabels"
2251
 
2252
+ #: includes/class-wcj-price-labels.php:141
2253
  msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
2254
+ msgstr "Booster voor WooCommerce - Migreer van Aangepaste Prijslabels (Pro)"
2255
 
2256
+ #: includes/class-wcj-price-labels.php:189
2257
  msgid "Migrating (product ID "
2258
  msgstr "Migreren (product ID"
2259
 
2260
+ #: includes/class-wcj-price-labels.php:190
2261
  msgid "Result: "
2262
  msgstr "Resultaat:"
2263
 
2264
+ #: includes/class-wcj-price-labels.php:212
2265
  msgid "Found data to migrate (product ID "
2266
  msgstr "Gevonden data om te migreren (Product ID"
2267
 
2268
+ #: includes/class-wcj-price-labels.php:226
2269
  msgid "No data to migrate found"
2270
  msgstr "Geen data gevonden om te migreren."
2271
 
2272
+ #: includes/class-wcj-price-labels.php:230
2273
  msgid "No products found"
2274
  msgstr "Geen producten gevonden"
2275
 
2276
+ #: includes/class-wcj-price-labels.php:235
2277
  msgid ""
2278
  "Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old "
2279
  "labels will NOT be deleted. New labels will be overwritten."
2281
  "Druk op de knop hieronder om alle labels van Aangepaste Prijslabels (Pro) plugin "
2282
  "te kopiëren. Oude labels worden NIET verwijderd. Nieuwe labels worden overschreven."
2283
 
2284
+ #: includes/class-wcj-price-labels.php:236
2285
  msgid "Migrate data"
2286
  msgstr "Migreer data"
2287
 
2288
+ #: includes/class-wcj-price-labels.php:531
2289
  msgid "Custom Price Labels Options"
2290
  msgstr "Aangepaste Prijs labels Opties"
2291
 
2292
+ #: includes/class-wcj-price-labels.php:534 includes/class-wcj-price-labels.php:647
2293
  msgid "Custom Price Labels"
2294
  msgstr "Aangepaste Prijs Labels"
2295
 
2296
+ #: includes/class-wcj-price-labels.php:536
2297
+ msgid "Create any custom price label for any WooCommerce product."
2298
+ msgstr "Creëer elk aangepaste prijslabel voor elk WooCommerce product."
2299
 
2300
+ #: includes/class-wcj-price-labels.php:545
 
 
 
 
2301
  msgid "Global Custom Price Labels"
2302
  msgstr "Globale aangepaste Prijslabels"
2303
 
2304
+ #: includes/class-wcj-price-labels.php:547
2305
  msgid "This section lets you set price labels for all products globally."
2306
  msgstr "Dit gedeelte laat je prijslabels globaal instellen voor alle producten."
2307
 
2308
+ #: includes/class-wcj-price-labels.php:552
2309
  msgid "Add before the price"
2310
  msgstr "Voeg toe voor de prijs"
2311
 
2312
+ #: includes/class-wcj-price-labels.php:553
2313
  msgid "Enter text to add before all products prices. Leave blank to disable."
2314
  msgstr ""
2315
  "Vul tekst in om toe te voegen voor alle productprijzen. Laat leeg om uit te "
2316
  "schakelen."
2317
 
2318
+ #: includes/class-wcj-price-labels.php:564
2319
  msgid "Add after the price"
2320
  msgstr "Voeg toe na de prijs"
2321
 
2322
+ #: includes/class-wcj-price-labels.php:565
2323
  msgid "Enter text to add after all products prices. Leave blank to disable."
2324
  msgstr ""
2325
  "Vul tekst in om toe te voegen na alle productprijzen. Laat leeg om uit te "
2326
  "schakelen."
2327
 
2328
+ #: includes/class-wcj-price-labels.php:576
2329
  msgid "Add between regular and sale prices"
2330
+ msgstr "Voeg toe tussen standaard en uitverkoop prijzen."
2331
 
2332
+ #: includes/class-wcj-price-labels.php:577
2333
  msgid "Enter text to add between regular and sale prices. Leave blank to disable."
2334
  msgstr ""
2335
+ "Voeg tekst toe tussen standaard en uitverkoop prijzen. Laat leeg om uit te "
2336
+ "schakelen."
2337
 
2338
  #: includes/class-wcj-price-labels.php:588
2339
  msgid "Remove from price"
2359
  msgid "Enter text to replace with. Leave blank to disable."
2360
  msgstr "Voer tekst in om te vervangen met. Laat leeg om uit te schakelen."
2361
 
2362
+ #: includes/class-wcj-price-labels.php:629
2363
  msgid "Migrate from Custom Price Labels (Pro) Options"
2364
  msgstr "Migreer van Aangepaste Prijslabels (Pro) Opties"
2365
 
2366
+ #: includes/class-wcj-price-labels.php:629
2367
  msgid "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
2368
  msgstr ""
2369
  "Dit gedeelte laat je de \"Migreer van Aangepaste Prijslabels (Pro)\" hulpmiddel "
2370
  "inschakelen."
2371
 
2372
+ #: includes/class-wcj-product-add-to-cart.php:24
2373
+ msgid "Product Add to Cart"
2374
+ msgstr "Product Voeg toe een Winkelwagen"
 
 
 
 
2375
 
2376
+ #: includes/class-wcj-product-add-to-cart.php:25
2377
+ msgid ""
2378
+ "Set any local url to redirect to on WooCommerce Add to Cart. Automatically add to "
2379
+ "cart on product visit."
2380
+ msgstr ""
2381
 
2382
+ #: includes/class-wcj-product-add-to-cart.php:48
2383
+ msgid "Add to Cart Local Redirect Options"
2384
+ msgstr "Voeg toe aan winkelwagen lokale omleiding opties"
2385
+
2386
+ #: includes/class-wcj-product-add-to-cart.php:50
2387
+ msgid ""
2388
+ "This section lets you set any local URL to redirect to after successfully adding "
2389
+ "product to cart. Leave empty to redirect to checkout page (skipping the cart page)."
2390
+ msgstr ""
2391
+ "Deze sectie laat u een lokale URL ingestellen om de bezoeker naar te leiden na een "
2392
+ "succesvolle toevoeging aan winkelwagen. Laat leeg om naar de afrekenpagina te gaan "
2393
+ "(en de winkelwagen pagina over te slaan)."
2394
+
2395
+ #: includes/class-wcj-product-add-to-cart.php:55
2396
+ msgid "Local Redirect"
2397
+ msgstr "Lokale omleiding"
2398
+
2399
+ #: includes/class-wcj-product-add-to-cart.php:63
2400
+ msgid "Local Redirect URL"
2401
+ msgstr "Lokale omleidings url"
2402
+
2403
+ #: includes/class-wcj-product-add-to-cart.php:64
2404
+ msgid "Performs a safe (local) redirect, using wp_redirect()."
2405
+ msgstr "Voert een veilige (lokale) omleiding uit, gebruikmakend van wp_redirect()"
2406
+
2407
+ #: includes/class-wcj-product-add-to-cart.php:65
2408
+ msgid "Local redirect URL. Leave empty to redirect to checkout."
2409
+ msgstr "Lokale redirect URL. Laat leeg om naar de afrekenen pagina te gaan."
2410
+
2411
+ #: includes/class-wcj-product-add-to-cart.php:74
2412
+ #: includes/class-wcj-product-add-to-cart.php:77
2413
+ msgid "Add to Cart on Visit"
2414
+ msgstr "Voeg toe aan winkelwagen bij bezoek"
2415
+
2416
+ #: includes/class-wcj-product-add-to-cart.php:74
2417
+ msgid ""
2418
+ "This section lets you enable automatically adding product to cart on visiting the "
2419
+ "product page. Product is only added once, so if it is already in cart - duplicate "
2420
+ "product is not added. "
2421
+ msgstr ""
2422
+ "Dit gedeelte schakelt de optie in om automatisch een product toe te voegen aan de "
2423
+ "winkelwagen bij bezoek aan productpagina. Product is eenmalig toegevoegd, dus als "
2424
+ "het reeds in winkelwagen is - dupliceer product is niet toegevoegd."
2425
+
2426
+ #: includes/class-wcj-product-bulk-price-converter.php:44
2427
+ #: includes/class-wcj-product-bulk-price-converter.php:231
2428
+ #: includes/class-wcj-product-bulk-price-converter.php:261
2429
+ #: includes/class-wcj-product-bulk-price-converter.php:279
2430
+ msgid "Bulk Price Converter"
2431
+ msgstr ""
2432
+
2433
+ #: includes/class-wcj-product-bulk-price-converter.php:113
2434
+ #: includes/class-wcj-sku.php:165 includes/reports/wcj-class-reports-stock.php:285
2435
+ msgid "Product"
2436
+ msgstr "Product"
2437
+
2438
+ #: includes/class-wcj-product-bulk-price-converter.php:114
2439
+ msgid "Price Type"
2440
+ msgstr "Prijstype"
2441
+
2442
+ #: includes/class-wcj-product-bulk-price-converter.php:115
2443
+ #: includes/reports/wcj-class-reports-stock.php:286
2444
+ msgid "Price"
2445
+ msgstr "Prijs"
2446
+
2447
+ #: includes/class-wcj-product-bulk-price-converter.php:116
2448
+ msgid "Modified Price"
2449
+ msgstr ""
2450
+
2451
+ #: includes/class-wcj-product-bulk-price-converter.php:136
2452
+ msgid "Multiply value must be above zero."
2453
+ msgstr ""
2454
+
2455
+ #: includes/class-wcj-product-bulk-price-converter.php:143
2456
+ msgid "Prices changed successfully!"
2457
+ msgstr ""
2458
+
2459
+ #: includes/class-wcj-product-bulk-price-converter.php:150
2460
+ msgid "WooCommerce Jetpack - Bulk Price Converter"
2461
+ msgstr ""
2462
+
2463
+ #: includes/class-wcj-product-bulk-price-converter.php:151
2464
+ #: includes/class-wcj-product-bulk-price-converter.php:233
2465
+ msgid "Bulk Price Converter Tool."
2466
+ msgstr ""
2467
+
2468
+ #: includes/class-wcj-product-bulk-price-converter.php:154
2469
+ msgid "Multiply all product prices by"
2470
+ msgstr "Vermenigvuldig alle productprijzen per"
2471
+
2472
+ #: includes/class-wcj-product-bulk-price-converter.php:254
2473
+ msgid "Bulk Price Converter Options"
2474
+ msgstr ""
2475
+
2476
+ #: includes/class-wcj-product-bulk-price-converter.php:256
2477
+ msgid ""
2478
+ "When enabled, the tool is accessible through WooCommerce > Jetpack Tools > Bulk "
2479
+ "Price Converter."
2480
+ msgstr ""
2481
+
2482
+ #: includes/class-wcj-product-bulk-price-converter.php:263
2483
+ msgid "Multiply all WooCommerce products prices by set value."
2484
+ msgstr ""
2485
+
2486
+ #: includes/class-wcj-product-images.php:24
2487
+ msgid "Product Images"
2488
+ msgstr "Productafbeeldingen"
2489
+
2490
+ #: includes/class-wcj-product-images.php:25
2491
+ msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2492
+ msgstr ""
2493
+
2494
+ #: includes/class-wcj-product-images.php:80 includes/class-wcj-product-images.php:174
2495
+ msgid "Sale!"
2496
+ msgstr "Uitverkoop!"
2497
+
2498
+ #: includes/class-wcj-product-images.php:112
2499
+ msgid "Product Image and Thumbnails"
2500
+ msgstr "Productafbeelding en Miniaturen"
2501
+
2502
+ #: includes/class-wcj-product-images.php:122
2503
+ msgid "Image and Thumbnails on Single"
2504
+ msgstr ""
2505
+
2506
+ #: includes/class-wcj-product-images.php:130
2507
+ msgid "Image on Single"
2508
+ msgstr ""
2509
+
2510
+ #: includes/class-wcj-product-images.php:138
2511
+ msgid "Thumbnails on Single"
2512
+ msgstr ""
2513
+
2514
+ #: includes/class-wcj-product-images.php:146
2515
+ msgid "Image on Archives"
2516
+ msgstr ""
2517
+
2518
+ #: includes/class-wcj-product-images.php:154
2519
+ msgid "Single Product Thumbnails Columns"
2520
+ msgstr ""
2521
+
2522
+ #: includes/class-wcj-product-images.php:162
2523
+ msgid "Product Images Sale Flash"
2524
+ msgstr ""
2525
+
2526
+ #: includes/class-wcj-product-images.php:172
2527
+ msgid "HTML"
2528
+ msgstr "HTML"
2529
+
2530
+ #: includes/class-wcj-product-images.php:180
2531
+ msgid "Hide on Archives (Categories)"
2532
+ msgstr ""
2533
+
2534
+ #: includes/class-wcj-product-images.php:187
2535
+ msgid "Hide on Single"
2536
+ msgstr ""
2537
+
2538
+ #: includes/class-wcj-product-info.php:26
2539
+ msgid "Before product"
2540
+ msgstr "Voor product"
2541
+
2542
+ #: includes/class-wcj-product-info.php:27
2543
+ msgid "Before product title"
2544
+ msgstr "Voor producttitel"
2545
+
2546
+ #: includes/class-wcj-product-info.php:28
2547
+ msgid "After product"
2548
+ msgstr "Na product"
2549
+
2550
+ #: includes/class-wcj-product-info.php:29
2551
+ msgid "After product title"
2552
+ msgstr "Na producttitel"
2553
 
2554
  #: includes/class-wcj-product-info.php:34
2555
  msgid "Inside single product summary"
2567
  msgid "Available shortcodes are:"
2568
  msgstr "Beschikbare shortcodes zijn:"
2569
 
2570
+ #: includes/class-wcj-product-info.php:596
2571
  msgid "%s ago"
2572
  msgstr "% geleden"
2573
 
2574
+ #: includes/class-wcj-product-info.php:638 includes/class-wcj-product-info.php:766
2575
+ #: includes/class-wcj-product-info.php:806 includes/class-wcj-product-tabs.php:350
 
 
 
 
 
2576
  #: includes/class-wcj-product-tabs.php:442 includes/class-wcj-product-tabs.php:468
2577
  #: includes/class-wcj-product-tabs.php:494
2578
  msgid "Priority (i.e. Order)"
2579
  msgstr "Prioriteit (volgorde)"
2580
 
2581
+ #: includes/class-wcj-product-info.php:646
2582
  msgid ""
2583
  "Number of product info fields. Click \"Save changes\" after you change this number."
2584
  msgstr ""
2585
  "Aantal productinformatie velden. Klik Opslaan nadat je dit nummer hebt gewijzigd."
2586
 
2587
+ #: includes/class-wcj-product-info.php:669
2588
  msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2589
  msgstr ""
2590
 
2591
+ #: includes/class-wcj-product-info.php:670 includes/class-wcj-product-info.php:784
2592
  msgid "Total sales: %total_sales%"
2593
  msgstr ""
2594
 
2595
+ #: includes/class-wcj-product-info.php:673
2596
  msgid "Default"
2597
  msgstr "Standaard"
2598
 
2599
+ #: includes/class-wcj-product-info.php:675
2600
  msgid "Field Nr. "
2601
  msgstr "Veld nr."
2602
 
2603
+ #: includes/class-wcj-product-info.php:675
2604
  msgid "Available short codes: "
2605
  msgstr "Beschikbare shortcodes:"
2606
 
2607
+ #: includes/class-wcj-product-info.php:705
2608
  msgid "Product Info Options"
2609
  msgstr "Product Info Opties"
2610
 
2611
+ #: includes/class-wcj-product-info.php:708 includes/class-wcj-product-info.php:832
2612
  msgid "Product Info"
2613
  msgstr "Product info"
2614
 
2615
+ #: includes/class-wcj-product-info.php:710
2616
+ msgid "Add additional info to WooCommerce category and single product pages."
2617
+ msgstr ""
 
 
 
 
2618
 
2619
+ #: includes/class-wcj-product-info.php:719
2620
  msgid "More Products Info"
2621
  msgstr "Meer productinfo"
2622
 
2623
+ #: includes/class-wcj-product-info.php:720
2624
  msgid ""
2625
  "For full list of short codes, please visit <a target=\"_blank\" href=\"http://"
2626
  "woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-"
2630
  "woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-"
2631
  "info/</a>"
2632
 
2633
+ #: includes/class-wcj-product-info.php:725 includes/class-wcj-product-info.php:736
2634
  msgid "Product Info on Archive Pages"
2635
  msgstr "Product Info op de Archiefpagina's"
2636
 
2637
+ #: includes/class-wcj-product-info.php:726
2638
  msgid "Product Info on Single Pages"
2639
  msgstr "Product info op losse pagina's"
2640
 
2641
+ #: includes/class-wcj-product-info.php:733
2642
  msgid "Even More Products Info"
2643
  msgstr "Nog meer productinfo"
2644
 
2645
+ #: includes/class-wcj-product-info.php:745 includes/class-wcj-product-info.php:782
2646
  msgid "HTML info."
2647
  msgstr "HTML info."
2648
 
2649
+ #: includes/class-wcj-product-info.php:747
2650
  msgid "SKU: %sku%"
2651
  msgstr ""
2652
 
2653
+ #: includes/class-wcj-product-info.php:773
2654
  msgid "Product Info on Single Product Pages"
2655
  msgstr "Product Info op losse productpagina"
2656
 
2657
+ #: includes/class-wcj-product-info.php:813
2658
+ msgid "Product IDs to exclude"
2659
+ msgstr "Product ID's om uit te sluiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2660
 
2661
+ #: includes/class-wcj-product-info.php:814
2662
+ msgid "Comma separated list of product IDs to exclude from product info."
2663
+ msgstr ""
2664
 
2665
+ #: includes/class-wcj-product-input-fields.php:128
2666
+ msgid "Product Input Fields Options"
2667
+ msgstr "Product Invoervelden Opties"
2668
 
2669
+ #: includes/class-wcj-product-input-fields.php:131
2670
+ #: includes/class-wcj-product-input-fields.php:246
2671
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:111
2672
+ msgid "Product Input Fields"
2673
+ msgstr "Product invoervelden"
2674
 
2675
+ #: includes/class-wcj-product-input-fields.php:133
2676
+ msgid "WooCommerce product input fields."
2677
+ msgstr "WooCommerce product invoervelden"
2678
 
2679
+ #: includes/class-wcj-product-input-fields.php:142
2680
+ msgid "Product Input Fields per Product Options"
2681
+ msgstr "Product Invoervelden per product Opties"
2682
 
2683
+ #: includes/class-wcj-product-input-fields.php:144
2684
+ #: includes/class-wcj-product-input-fields.php:178
2685
  msgid ""
2686
  "Add custom input fields to product's single page for customer to fill before "
2687
  "adding product to cart."
2689
  "Voeg aangepaste invoervelden toe aan losse pagina's van een product die de klant "
2690
  "moet invullen voordat het product kan worden toegevoegd aan de winkelwagen."
2691
 
2692
+ #: includes/class-wcj-product-input-fields.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2693
  msgid ""
2694
  "When enabled this module will add \"Product Input Fields\" tab to product's \"Edit"
2695
  "\" page."
2697
  "Bij inschakeling zal deze module een tab \"Product Invoervelden\"toevoegen aan de "
2698
  "bewerkingspagina."
2699
 
2700
+ #: includes/class-wcj-product-input-fields.php:151
 
2701
  msgid "Product Input Fields - per Product"
2702
  msgstr "Product Invoervelden - per Product"
2703
 
2704
+ #: includes/class-wcj-product-input-fields.php:153
2705
  msgid "Add custom input field on per product basis."
2706
  msgstr "Voeg een aangepast invoerveld toe per product basis."
2707
 
2708
+ #: includes/class-wcj-product-input-fields.php:160
2709
  msgid "Default Number of Product Input Fields per Product"
2710
  msgstr "Default aantal product invoervelden per product"
2711
 
2712
+ #: includes/class-wcj-product-input-fields.php:162
2713
  msgid ""
2714
  "You will be able to change this number later as well as define the fields, for "
2715
  "each product individually, in product's \"Edit\"."
2717
  "Het is mogelijk om dit nummer later te wijzigen, als ook het definieren van de "
2718
  "velden, voor elk product afzonderlijk, in producten \"bewerken\"."
2719
 
2720
+ #: includes/class-wcj-product-input-fields.php:176
2721
+ msgid "Product Input Fields Global Options"
2722
+ msgstr "Product Invoervelden Globaal Opties"
2723
+
2724
+ #: includes/class-wcj-product-input-fields.php:183
2725
+ msgid "Product Input Fields - All Products"
2726
+ msgstr "Product invoervelden - Alle producten"
2727
+
2728
+ #: includes/class-wcj-product-input-fields.php:185
2729
+ msgid "Add custom input fields to all products."
2730
+ msgstr "Voeg aangepaste invoervelden toe aan alle producten."
2731
+
2732
+ #: includes/class-wcj-product-input-fields.php:192
2733
+ msgid "Product Input Fields Number"
2734
+ msgstr "Product Invoervelden nummer"
2735
+
2736
+ #: includes/class-wcj-product-input-fields.php:208
2737
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:142
2738
+ msgid "Product Input Field"
2739
+ msgstr "Product invoerveld"
2740
+
2741
+ #: includes/class-wcj-product-input-fields.php:226
2742
+ msgid "Admin Order View Options"
2743
+ msgstr "Admin Order Weergave Opties"
2744
+
2745
+ #: includes/class-wcj-product-input-fields.php:229
2746
+ msgid "Replace Field ID with Field Label"
2747
+ msgstr "Vervang Veld ID met Veld Label"
2748
+
2749
  #: includes/class-wcj-product-listings.php:56
2750
  msgid "Product Listings Options"
2751
+ msgstr "Product Lijsten Opties"
2752
 
2753
  #: includes/class-wcj-product-listings.php:59
2754
  #: includes/class-wcj-product-listings.php:153
2755
  msgid "Product Listings"
2756
+ msgstr "Product Lijsten"
 
 
 
 
2757
 
2758
  #: includes/class-wcj-product-listings.php:61
2759
  msgid ""
2760
+ "Change WooCommerce display options for shop and category pages: show/hide "
2761
+ "categories count, exclude categories, show/hide empty categories."
2762
  msgstr ""
2763
+ "Verander WooCommerce weergave opties voor winkel en categoriepagina's: toon/"
2764
+ "verberg categoriëntelling, sluit categoriën uit, toon/verberg lege categoriën."
2765
 
2766
  #: includes/class-wcj-product-listings.php:69
2767
  msgid "Shop Page Display Options"
2861
 
2862
  #: includes/class-wcj-product-listings.php:171
2863
  msgid "WooJetpack: Categories Count"
2864
+ msgstr "Booster voor WooCommerce: Categoriën telling"
2865
 
2866
  #: includes/class-wcj-product-listings.php:179
2867
  msgid "WooJetpack: Exclude Categories on Shop Page"
2868
+ msgstr "Booster voor WooCommerce: Sluit categoriën uit op de Winkelpagina"
2869
 
2870
  #: includes/class-wcj-product-listings.php:188
2871
  #: includes/class-wcj-product-listings.php:226
2872
  msgid "WooJetpack: Hide Empty"
2873
+ msgstr "Booster voor WooCommerce: Verberg leeg"
2874
 
2875
  #: includes/class-wcj-product-listings.php:196
2876
  #: includes/class-wcj-product-listings.php:234
2877
  msgid "WooJetpack: Show Products"
2878
+ msgstr "Booster voor WooCommerce: Toon producten"
2879
 
2880
  #: includes/class-wcj-product-listings.php:207
2881
  msgid "WooJetpack: Subcategories Count"
2882
+ msgstr "Booster voor WooCommerce: Subcategoriën telling"
2883
 
2884
  #: includes/class-wcj-product-listings.php:217
2885
  msgid "WooJetpack: Exclude Subcategories on Category Pages"
2886
+ msgstr "Booster voor WooCommerce: Sluit subcategoriën uit op de categoriepagina's"
2887
 
2888
  #: includes/class-wcj-product-tabs.php:223
2889
  msgid "Total number of custom tabs"
2890
  msgstr "Totaal aantal aangepaste tabs"
2891
 
2892
+ #: includes/class-wcj-product-tabs.php:229
2893
+ #: includes/input-fields/class-wcj-product-input-fields-per-product.php:137
2894
+ msgid "Click \"Update\" product after you change this number."
2895
+ msgstr "Klik op Update product nadat je dit nummer hebt gewijzigd."
2896
 
2897
+ #: includes/class-wcj-product-tabs.php:238 includes/class-wcj-product-tabs.php:342
2898
+ #: includes/class-wcj-product-tabs.php:452 includes/class-wcj-product-tabs.php:478
2899
+ #: includes/class-wcj-product-tabs.php:504
2900
+ #: includes/class-wcj-related-products.php:100
2901
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:54
2902
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:94
2903
+ #: includes/shipping/class-wc-shipping-wcj-custom.php:62
2904
+ msgid "Title"
2905
+ msgstr "Titel"
2906
 
2907
  #: includes/class-wcj-product-tabs.php:252
2908
  msgid "Customize the tab(s)"
2920
  msgid "Product Tabs Options"
2921
  msgstr "Product Tabs Opties"
2922
 
 
 
 
 
2923
  #: includes/class-wcj-product-tabs.php:315
2924
  msgid ""
2925
  "Add custom product tabs - globally or per product. Customize or completely remove "
3012
  msgid "Reviews Tab"
3013
  msgstr "Recensies Tab"
3014
 
3015
+ #: includes/class-wcj-purchase-data.php:26
3016
+ msgid "Product Cost Price"
3017
+ msgstr "Product Kostprijs"
3018
+
3019
+ #: includes/class-wcj-purchase-data.php:27
3020
+ msgid "Save WooCommerce product purchase costs data for admin reports."
3021
+ msgstr ""
3022
+
3023
+ #: includes/class-wcj-purchase-data.php:52 includes/class-wcj-purchase-data.php:238
3024
+ #: includes/class-wcj-purchase-data.php:320
3025
+ msgid "Profit"
3026
+ msgstr "Winst"
3027
+
3028
+ #: includes/class-wcj-purchase-data.php:144
3029
+ msgid "WooCommerce Jetpack"
3030
+ msgstr "Booster voor WooCommerce"
3031
+
3032
+ #: includes/class-wcj-purchase-data.php:169
3033
+ msgid "Product cost (purchase) price"
3034
+ msgstr ""
3035
+
3036
+ #: includes/class-wcj-purchase-data.php:173
3037
+ msgid "Extra expenses (shipping etc.)"
3038
+ msgstr "Extra uitgaven (verzendkosten etc.)"
3039
+
3040
+ #: includes/class-wcj-purchase-data.php:181
3041
+ msgid "(Last) Purchase date"
3042
+ msgstr "(laatste) aankoopdatum"
3043
+
3044
+ #: includes/class-wcj-purchase-data.php:185
3045
+ msgid "Purchase info"
3046
+ msgstr "Aankoop info"
3047
+
3048
+ #: includes/class-wcj-purchase-data.php:214
3049
+ msgid "Report"
3050
+ msgstr "Rapporteer"
3051
+
3052
+ #: includes/class-wcj-purchase-data.php:219
3053
+ msgid "Selling"
3054
+ msgstr "Verkopen"
3055
+
3056
+ #: includes/class-wcj-purchase-data.php:228
3057
+ msgid "Buying"
3058
+ msgstr "Kopen"
3059
+
3060
+ #: includes/class-wcj-related-products.php:23
3061
+ msgid "Related Products"
3062
+ msgstr "Gerelateerde producten"
3063
+
3064
+ #: includes/class-wcj-related-products.php:24
3065
+ msgid ""
3066
+ "Change displayed WooCommerce related products number, columns, order, relate by "
3067
+ "tag and/or category, or hide related products completely."
3068
+ msgstr ""
3069
+
3070
+ #: includes/class-wcj-related-products.php:79
3071
+ msgid "Related Products Number"
3072
+ msgstr "Gerelateerde producten kollommen"
3073
+
3074
+ #: includes/class-wcj-related-products.php:86
3075
+ msgid "Related Products Columns"
3076
+ msgstr "Gerelateerde producten kollommen"
3077
+
3078
+ #: includes/class-wcj-related-products.php:93
3079
+ msgid "Order by"
3080
+ msgstr "Sorteer op"
3081
+
3082
+ #: includes/class-wcj-related-products.php:98
3083
+ msgid "Random"
3084
+ msgstr "Willekeurig"
3085
+
3086
+ #: includes/class-wcj-related-products.php:99
3087
+ msgid "Date"
3088
+ msgstr "Datum"
3089
+
3090
+ #: includes/class-wcj-related-products.php:105
3091
+ msgid "Order"
3092
+ msgstr "Volgorde"
3093
+
3094
+ #: includes/class-wcj-related-products.php:106
3095
+ msgid "Ignored if order by \"Random\" is selected above."
3096
+ msgstr "Negeer als willekeurige volgorde is geselecteerd."
3097
+
3098
+ #: includes/class-wcj-related-products.php:111
3099
+ msgid "Ascending"
3100
+ msgstr "Oplopend"
3101
+
3102
+ #: includes/class-wcj-related-products.php:112
3103
+ msgid "Descending"
3104
+ msgstr "Aflopend"
3105
+
3106
+ #: includes/class-wcj-related-products.php:117
3107
+ msgid "Relate by Category"
3108
+ msgstr "Relateer per categorie"
3109
+
3110
+ #: includes/class-wcj-related-products.php:124
3111
+ msgid "Relate by Tag"
3112
+ msgstr "Relateer per Tag"
3113
+
3114
+ #: includes/class-wcj-related-products.php:131
3115
+ msgid "Hide Related Products"
3116
+ msgstr "Verberg gerelateerde producten"
3117
+
3118
+ #: includes/class-wcj-reports.php:67
3119
+ msgid "WooJetpack: More Ranges - Months"
3120
+ msgstr "Booster voor WooCommerce: Groter Bereik - Maanden"
3121
+
3122
+ #: includes/class-wcj-reports.php:69 includes/class-wcj-reports.php:104
3123
+ msgid "Select Range"
3124
+ msgstr "Selecteer Bereik"
3125
+
3126
+ #: includes/class-wcj-reports.php:102
3127
+ msgid "WooJetpack: More Ranges"
3128
+ msgstr "Booster voor WooCommerce: Groter Bereik"
3129
+
3130
+ #: includes/class-wcj-reports.php:112 includes/class-wcj-reports.php:114
3131
+ msgid "Last 14 Days"
3132
+ msgstr "Laatste 14 dagen"
3133
+
3134
+ #: includes/class-wcj-reports.php:119 includes/class-wcj-reports.php:121
3135
+ msgid "Last 30 Days"
3136
+ msgstr "Laatste 30 dagen"
3137
+
3138
+ #: includes/class-wcj-reports.php:126 includes/class-wcj-reports.php:128
3139
+ msgid "Last 3 Months"
3140
+ msgstr "Laatste 3 maanden"
3141
+
3142
+ #: includes/class-wcj-reports.php:133 includes/class-wcj-reports.php:135
3143
+ msgid "Last 6 Months"
3144
+ msgstr "Laatste 6 maanden"
3145
+
3146
+ #: includes/class-wcj-reports.php:140 includes/class-wcj-reports.php:142
3147
+ msgid "Last 12 Months"
3148
+ msgstr "Laatste 12 maanden"
3149
+
3150
+ #: includes/class-wcj-reports.php:147 includes/class-wcj-reports.php:149
3151
+ msgid "Last 24 Months"
3152
+ msgstr "Laatste 24 maanden"
3153
+
3154
+ #: includes/class-wcj-reports.php:154 includes/class-wcj-reports.php:156
3155
+ msgid "Same Days Last Month"
3156
+ msgstr "Dezelfde dagen vorige maand"
3157
+
3158
+ #: includes/class-wcj-reports.php:168 includes/class-wcj-reports.php:170
3159
+ msgid "Last Year"
3160
+ msgstr "Vorig jaar"
3161
+
3162
+ #: includes/class-wcj-reports.php:213
3163
  msgid "WooJetpack: All in stock"
3164
+ msgstr "Booster voor WooCommerce: op voorraad"
3165
 
3166
+ #: includes/class-wcj-reports.php:220
3167
  msgid "WooJetpack: Understocked"
3168
  msgstr ""
3169
 
3170
+ #: includes/class-wcj-reports.php:227
3171
+ msgid "WooJetpack: Overstocked"
3172
+ msgstr ""
3173
+
3174
+ #: includes/class-wcj-reports.php:242
3175
  msgid "WooJetpack: Customers by Country"
3176
+ msgstr "Booster voor WooCommerce: Klanten per land"
3177
 
3178
+ #: includes/class-wcj-reports.php:249
3179
  msgid "WooJetpack: Customers by Country Sets"
3180
  msgstr ""
3181
 
3182
+ #: includes/class-wcj-reports.php:274
3183
  msgid "Reports Options"
3184
  msgstr "Rapporten opties"
3185
 
3186
+ #: includes/class-wcj-reports.php:277 includes/class-wcj-reports.php:314
3187
  msgid "Reports"
3188
  msgstr "Rapporten"
3189
 
3190
+ #: includes/class-wcj-reports.php:279
3191
+ msgid "WooCommerce stock, sales, customers etc. reports."
3192
+ msgstr "WooCommerce voorraad, verkoop, klanten etc. rapporten."
3193
 
3194
+ #: includes/class-wcj-reports.php:288
 
 
 
 
3195
  msgid "Available Reports"
3196
  msgstr "Beschikbare Rapporten"
3197
 
3198
+ #: includes/class-wcj-reports.php:291
3199
  msgid ""
3200
  "WooJetpack: Customers by Country. Available in WooCommerce > Reports > Customers."
3201
  msgstr ""
3202
+ "Booster voor WoooCommerce: Klanten per land. Beschikbaar in WooCommerce > "
3203
+ "Rapporten > Klanten."
3204
 
3205
+ #: includes/class-wcj-reports.php:293
3206
  msgid ""
3207
  "WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
3208
  "Customers."
3209
  msgstr ""
3210
 
3211
+ #: includes/class-wcj-reports.php:295
3212
  msgid ""
3213
  "WooJetpack: All in Stock with sales data. Available in WooCommerce > Reports > "
3214
  "Stock."
3215
  msgstr ""
3216
+ "Booster voor WooCommerce: alles op Voorraad met verkoopdata. Beschikbaar in "
3217
+ "WooCommerce > Rapporten > Voorraad."
3218
 
3219
+ #: includes/class-wcj-reports.php:297
3220
  msgid ""
3221
  "WooJetpack: Understocked products (calculated by sales data). Available in "
3222
  "WooCommerce > Reports > Stock."
3223
  msgstr ""
3224
 
3225
+ #: includes/class-wcj-reports.php:299
3226
+ msgid ""
3227
+ "WooJetpack: Overstocked products (calculated by sales data). Available in "
3228
+ "WooCommerce > Reports > Stock."
3229
+ msgstr ""
3230
+
3231
+ #: includes/class-wcj-shipping-calculator.php:116
3232
+ msgid "Shipping Calculator Options"
3233
+ msgstr "Verzendkosten calculator opties"
3234
 
3235
  #: includes/class-wcj-shipping-calculator.php:119
3236
  #: includes/class-wcj-shipping-calculator.php:196
3238
  msgstr "Verzendkosten calculator"
3239
 
3240
  #: includes/class-wcj-shipping-calculator.php:121
3241
+ msgid "Customize WooCommerce shipping calculator on cart page."
3242
+ msgstr ""
3243
 
3244
  #: includes/class-wcj-shipping-calculator.php:128
3245
  msgid "Enable City"
3273
 
3274
  #: includes/class-wcj-shipping.php:63
3275
  msgid "WooCommerce Jetpack: Hide shipping"
3276
+ msgstr "Booster voor WooCommerce: Verberg verzendkosten"
3277
 
3278
  #: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
3279
  msgid "Hide local delivery when free is available"
3287
  msgid "Shipping Options"
3288
  msgstr "Verzendkosten opties"
3289
 
 
 
 
 
3290
  #: includes/class-wcj-shipping.php:157
3291
+ msgid "Hide WooCommerce shipping when free is available."
3292
+ msgstr "Verberg WooCommerce verzendkosten wanneer gratis beschikbaar is."
3293
 
3294
  #: includes/class-wcj-shipping.php:165
3295
  msgid "Hide if free is available"
3307
  msgid "Hide shipping"
3308
  msgstr "Verberg verzendkosten"
3309
 
 
 
 
 
3310
  #: includes/class-wcj-shortcodes.php:61 includes/class-wcj-shortcodes.php:66
3311
  msgid "Shortcodes."
3312
  msgstr "Shortcodes."
3319
  msgid "Enable the Shortcodes feature"
3320
  msgstr "Schakel de shortcodes optie in"
3321
 
3322
+ #: includes/class-wcj-sku.php:25 includes/class-wcj-sku.php:166
3323
+ msgid "SKU"
3324
  msgstr ""
3325
 
3326
+ #: includes/class-wcj-sku.php:26
3327
+ msgid "Generate WooCommerce SKUs automatically."
3328
  msgstr ""
3329
 
3330
+ #: includes/class-wcj-sku.php:29
3331
+ msgid "Autogenerate SKUs for Existing Products"
3332
  msgstr ""
3333
 
3334
+ #: includes/class-wcj-sku.php:145 includes/class-wcj-sku.php:196
3335
+ msgid "Autogenerate SKUs"
3336
  msgstr ""
3337
 
3338
+ #: includes/class-wcj-sku.php:172
3339
+ msgid "SKUs generated and set successfully!"
3340
  msgstr ""
3341
 
3342
+ #: includes/class-wcj-sku.php:176
3343
+ msgid "WooCommerce Jetpack - Autogenerate SKUs"
3344
  msgstr ""
 
3345
 
3346
+ #: includes/class-wcj-sku.php:177 includes/class-wcj-sku.php:198
3347
+ msgid "The tool generates and sets product SKUs."
3348
  msgstr ""
3349
 
3350
+ #: includes/class-wcj-sku.php:210
3351
+ msgid "SKU Format Options"
3352
+ msgstr ""
3353
+
3354
+ #: includes/class-wcj-sku.php:217
3355
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:49
3356
+ msgid "Prefix"
3357
+ msgstr ""
3358
+
3359
+ #: includes/class-wcj-sku.php:224
3360
+ msgid "Minimum Number Length"
3361
+ msgstr ""
3362
+
3363
+ #: includes/class-wcj-sku.php:231
3364
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:61
3365
+ msgid "Suffix"
3366
+ msgstr ""
3367
+
3368
+ #: includes/class-wcj-sku.php:241
3369
+ msgid "Variable Products Variations"
3370
+ msgstr ""
3371
+
3372
+ #: includes/class-wcj-sku.php:246
3373
+ msgid "SKU same as parent's product"
3374
+ msgstr ""
3375
+
3376
+ #: includes/class-wcj-sku.php:247
3377
+ msgid "Generate different SKU for each variation"
3378
+ msgstr ""
3379
+
3380
+ #: includes/class-wcj-sku.php:248
3381
+ msgid "SKU same as parent's product + variation letter suffix"
3382
+ msgstr ""
3383
+
3384
+ #: includes/class-wcj-sku.php:264
3385
+ msgid ""
3386
+ "When enabled - all new products will be given (autogenerated) SKU.<br>If you wish "
3387
+ "to set SKUs for existing products, use Autogenerate SKUs Tool."
3388
+ msgstr ""
3389
+
3390
+ #: includes/class-wcj-sorting.php:27
3391
+ msgid "Sorting"
3392
+ msgstr "Sortering"
3393
+
3394
+ #: includes/class-wcj-sorting.php:28
3395
+ msgid "Add more WooCommerce sorting options or remove all sorting including default."
3396
+ msgstr ""
3397
+ "Voeg meer WooCommerce sortering opties toe of verwijder alle sortering inclusief "
3398
+ "default."
3399
+
3400
+ #: includes/class-wcj-sorting.php:64
3401
+ msgid "WooJetpack: Remove All Sorting"
3402
+ msgstr "Booster voor WooCommerce: Verwijd alle sortering"
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 "Verwijder alle sortering"
3411
+
3412
+ #: includes/class-wcj-sorting.php:182
3413
+ msgid "Remove all sorting (including WooCommerce default)"
3414
+ msgstr "Verwijder alle sortering (inclusief WooCommerce default)"
3415
+
3416
+ #: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:204
3417
  msgid "Add More Sorting"
3418
  msgstr "Voeg meer sorteren toe"
3419
 
3420
+ #: includes/class-wcj-sorting.php:212
3421
  msgid "Sort by Name"
3422
  msgstr "Sorteer op Naam"
3423
 
3424
+ #: includes/class-wcj-sorting.php:213 includes/class-wcj-sorting.php:216
3425
  msgid "Sort by title: A to Z"
3426
  msgstr "Sorteer op titel: A tot Z"
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 "Tekst om te tonen in voorkant winkel. Laat leeg om uit te schakelen."
3433
 
3434
+ #: includes/class-wcj-sorting.php:223 includes/class-wcj-sorting.php:226
3435
  msgid "Sort by title: Z to A"
3436
  msgstr "Sorteer op titel: Z tot A"
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 more "
3473
+ "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 frontend, "
3483
+ "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 "Gebruik totale winkelwagenkwantiteit in plaats van productkwantiteit"
3489
+
3490
+ #: includes/class-wcj-wholesale-price.php:166
3491
+ msgid "Show discount info on cart page"
3492
+ msgstr "Toon korting info op winkelwagenpagina."
3493
+
3494
+ #: includes/class-wcj-wholesale-price.php:167
3495
+ msgid "Show"
3496
+ msgstr "Toon"
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 "Hulpmiddelen"
3542
+
3543
+ #: includes/classes/class-wcj-module.php:110
3544
+ msgid "Module Tools"
3545
+ msgstr "Module Hulpmiddelen"
3546
+
3547
+ #: includes/classes/class-wcj-module.php:163
3548
+ msgid "Options"
3549
+ msgstr "Opties"
3550
+
3551
  #: includes/currencies/wcj-currencies.php:4
3552
  msgid "Afghan afghani"
3553
  msgstr "Afghaanse Afghani"
3853
  msgid "Lao kip"
3854
  msgstr ""
3855
 
3856
+ #: includes/currencies/wcj-currencies.php:82
3857
  msgid "Latvian lats"
3858
  msgstr "Letse Lats"
3859
 
3860
+ #: includes/currencies/wcj-currencies.php:83
3861
  msgid "Lebanese lira"
3862
  msgstr "Lebanese Pond"
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 "Libische Dinar"
3875
 
3876
+ #: includes/currencies/wcj-currencies.php:87
3877
  msgid "Lithuanian litas"
3878
  msgstr "Litouwse Litas"
3879
 
3880
+ #: includes/currencies/wcj-currencies.php:88
3881
  msgid "Macanese pataca"
3882
  msgstr "Macau Pataka"
3883
 
3884
+ #: includes/currencies/wcj-currencies.php:89
3885
  msgid "Macedonian denar"
3886
  msgstr "Macedonische Denar"
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 "Maleise Ringgit"
3895
 
3896
+ #: includes/currencies/wcj-currencies.php:92
3897
  msgid "Malawian kwacha"
3898
  msgstr "Malawiaanse Kwacha"
3899
 
3900
+ #: includes/currencies/wcj-currencies.php:93
3901
  msgid "Maldivian rufiyaa"
3902
  msgstr "Maledivische Rufiyaa"
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 "Mexicaanse Peso"
3915
 
3916
+ #: includes/currencies/wcj-currencies.php:97
3917
  msgid "Myanma kyat"
3918
  msgstr "Myanmar Kyat"
3919
 
3920
+ #: includes/currencies/wcj-currencies.php:98
3921
  msgid "Moldovan leu"
3922
  msgstr "Moldavische Leu"
3923
 
3924
+ #: includes/currencies/wcj-currencies.php:99
3925
  msgid "Mongolian tugrik"
3926
  msgstr "Mongoolse Tugrik"
3927
 
3928
+ #: includes/currencies/wcj-currencies.php:100
3929
  msgid "Moroccan dirham"
3930
  msgstr "Marrokaanse Dirham"
3931
 
3932
+ #: includes/currencies/wcj-currencies.php:101
3933
  msgid "Mozambican metical"
3934
  msgstr "Mozambique Metical"
3935
 
3936
+ #: includes/currencies/wcj-currencies.php:102
3937
  msgid "Namibian dollar"
3938
  msgstr "Namibische Dollar"
3939
 
3940
+ #: includes/currencies/wcj-currencies.php:103
3941
  msgid "Nepalese rupee"
3942
  msgstr "Nepalese Rupee"
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 "Nieuw Zeelandse Dollar"
3955
 
3956
+ #: includes/currencies/wcj-currencies.php:107
3957
  msgid "Nicaraguan cordoba"
3958
  msgstr "Nicaragua Cordoba"
3959
 
3960
+ #: includes/currencies/wcj-currencies.php:108
3961
  msgid "Nigerian naira"
3962
  msgstr "Nigeriaanse Naira"
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 "Noorse Kroon"
3971
 
3972
+ #: includes/currencies/wcj-currencies.php:111
3973
  msgid "Omani rial"
3974
  msgstr "Omaanse Rial"
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 "Pakistaanse Roepie"
3983
 
3984
+ #: includes/currencies/wcj-currencies.php:114
3985
  msgid "Panamanian balboa"
3986
  msgstr "Panamese Balboa"
3987
 
3988
+ #: includes/currencies/wcj-currencies.php:115
3989
  msgid "Papua New Guinean kina"
3990
  msgstr "Papua Nieuw Guinea Kina"
3991
 
3992
+ #: includes/currencies/wcj-currencies.php:116
3993
  msgid "Paraguayan guarani"
3994
  msgstr "Paraguayaanse Guarani"
3995
 
3996
+ #: includes/currencies/wcj-currencies.php:117
3997
  msgid "Peruvian nuevo sol"
3998
  msgstr "Peruaanse Sol"
3999
 
4000
+ #: includes/currencies/wcj-currencies.php:118
4001
  msgid "Philippine peso"
4002
  msgstr "Filipijnse Peso"
4003
 
4004
+ #: includes/currencies/wcj-currencies.php:119
4005
  msgid "Polish zloty"
4006
  msgstr "Poolse zloty"
4007
 
4008
+ #: includes/currencies/wcj-currencies.php:120
4009
  msgid "Qatari riyal"
4010
  msgstr "Quatar Rial"
4011
 
4012
+ #: includes/currencies/wcj-currencies.php:121
4013
  msgid "Romanian leu"
4014
  msgstr "Roemeese Leu"
4015
 
4016
+ #: includes/currencies/wcj-currencies.php:122
4017
  msgid "Russian ruble"
4018
  msgstr "Russische roebel"
4019
 
4020
+ #: includes/currencies/wcj-currencies.php:123
4021
  msgid "Rwandan franc"
4022
  msgstr "Rwandese Frank"
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 "Saudi Rial"
4039
 
4040
+ #: includes/currencies/wcj-currencies.php:128
4041
  msgid "Seychellois rupee"
4042
  msgstr "Seychelse Rupee"
4043
 
4044
+ #: includes/currencies/wcj-currencies.php:129
4045
  msgid "Serbian dinar"
4046
  msgstr "Servische Dinar"
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 "Singapore Dollar"
4055
 
4056
+ #: includes/currencies/wcj-currencies.php:132
4057
  msgid "Syrian pound"
4058
  msgstr "Syrische pind"
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 "Salomon Dollar"
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 "Zuid-afrikaanse rand"
4075
 
4076
+ #: includes/currencies/wcj-currencies.php:137
4077
  msgid "South Korean won"
4078
  msgstr "Zuid/Koreaanse Won"
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 "Sri Langkese Ruppee"
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 "Surinaamse dollar"
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 "Zweedse Kroon"
4103
+
4104
+ #: includes/currencies/wcj-currencies.php:144
4105
+ msgid "Swiss franc"
4106
+ msgstr "Zwitserse Frank"
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 "Tanzaniaanse Shilling"
4115
+
4116
+ #: includes/currencies/wcj-currencies.php:147
4117
+ msgid "Thai baht"
4118
+ msgstr "Thailand Baht"
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 "Tunesische Dinar"
4127
+
4128
+ #: includes/currencies/wcj-currencies.php:150
4129
+ msgid "Turkish new lira"
4130
+ msgstr "Turkse Lira"
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 "Amerikaanse Dollar"
4151
+
4152
+ #: includes/currencies/wcj-currencies.php:156
4153
+ msgid "Uruguayan peso"
4154
+ msgstr "Uruguayaanse Peso"
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 "Vanuatu Vatu"
4163
+
4164
+ #: includes/currencies/wcj-currencies.php:159
4165
+ msgid "Venezuelan bolivar"
4166
+ msgstr "Venezolaanse Bolivar"
4167
+
4168
+ #: includes/currencies/wcj-currencies.php:160
4169
+ msgid "Vietnamese dong"
4170
+ msgstr "Vietnam Dong"
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 "Zambiaanse Kwacha"
4179
+
4180
+ #: includes/currencies/wcj-currencies.php:163
4181
+ msgid "Zimbabwean dollar"
4182
+ msgstr "Zimbabwaanse Dollar"
4183
+
4184
+ #: includes/currencies/wcj-currencies.php:164
4185
+ msgid "Chinese Yuan"
4186
+ msgstr "Chinese Yuan"
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 "Argentinië"
4227
+
4228
+ #: includes/functions/wcj-country-functions.php:107
4229
+ msgid "Armenia"
4230
+ msgstr "Armenië"
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 "Australië"
4239
+
4240
+ #: includes/functions/wcj-country-functions.php:110
4241
+ msgid "Austria"
4242
+ msgstr "Oostenrijk"
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 "België"
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 "Brazilië"
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 "Bulgarije"
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 "Chili"
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 "Kroatië"
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 "Tsjechië"
4427
+
4428
+ #: includes/functions/wcj-country-functions.php:157
4429
+ msgid "Denmark"
4430
+ msgstr "Denemarken"
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 "Egypte"
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 "Estland"
4467
+
4468
+ #: includes/functions/wcj-country-functions.php:167
4469
+ msgid "Ethiopia"
4470
+ msgstr "Ethiopië"
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 "Frankrijk"
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 "Duitsland"
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 "Griekenland"
4531
+
4532
+ #: includes/functions/wcj-country-functions.php:183
4533
+ msgid "Greenland"
4534
+ msgstr "Groenland"
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 "Hongarije"
4583
+
4584
+ #: includes/functions/wcj-country-functions.php:196
4585
+ msgid "Iceland"
4586
+ msgstr "Ijsland"
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 "Indonesië"
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 "Irak"
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 "Italië"
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 "Kenia"
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 "Koeweit"
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 "Litouwen"
4691
+
4692
+ #: includes/functions/wcj-country-functions.php:223
4693
+ msgid "Luxembourg"
4694
+ msgstr "Luxemburg"
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 "Maleisië"
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 "Marokko"
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 "Nederland"
4803
+
4804
+ #: includes/functions/wcj-country-functions.php:251
4805
+ msgid "Netherlands Antilles"
4806
+ msgstr "Nederlandse Antillen"
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 "Nieuw Zeeland"
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 "Noord-Korea"
4839
+
4840
+ #: includes/functions/wcj-country-functions.php:260
4841
+ msgid "Norway"
4842
+ msgstr "Noorwegen"
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 "Polen"
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 "Rusland"
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 "Slowakije"
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 "Zuid-Afrika"
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 "Zuid-Korea"
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 "Spanje"
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 "Zweden"
5031
+
5032
+ #: includes/functions/wcj-country-functions.php:308
5033
+ msgid "Switzerland"
5034
+ msgstr "Zwitserland"
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 "Tunesië"
5079
+
5080
+ #: includes/functions/wcj-country-functions.php:320
5081
+ msgid "Turkey"
5082
+ msgstr "Turkije"
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 "Groot-Brittanië"
5111
+
5112
+ #: includes/functions/wcj-country-functions.php:328
5113
+ msgid "United States (US)"
5114
+ msgstr "Amerika"
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 "Facturen"
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 "Pakbon"
5189
+
5190
+ #: includes/functions/wcj-invoicing-functions.php:27
5191
+ msgid "Packing Slips"
5192
+ msgstr "Pakbonnen"
5193
+
5194
+ #: includes/functions/wcj-invoicing-functions.php:34
5195
+ msgid "Credit Note"
5196
+ msgstr "Creditnota"
5197
+
5198
+ #: includes/functions/wcj-invoicing-functions.php:35
5199
+ msgid "Credit Notes"
5200
+ msgstr "Creditnota's"
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 "Inschakelen/uitschakelen"
5206
+
5207
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:50
5208
+ msgid "Enable Custom Payment"
5209
+ msgstr "Schakel Aangepaste betaling in"
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 "Dit bepaalt de titel die de gebruiker ziet gedurende het afrekenen."
5215
+
5216
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:57
5217
+ msgid "Custom Payment"
5218
+ msgstr "Aangepaste betaling"
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 "Betaalmethode beschrijving die de klant ziet bij afrekenen."
5223
+
5224
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:64
5225
+ msgid "Custom Payment Description."
5226
+ msgstr "Aangepaste betaling omschrijving"
5227
+
5228
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:68
5229
+ msgid "Instructions"
5230
+ msgstr "Instructies"
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 "Instructies die worden toegevoegd aan de bedankt pagina."
5235
+
5236
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:75
5237
+ msgid "Email Instructions"
5238
+ msgstr "Email instructies"
5239
+
5240
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:77
5241
+ msgid "Instructions that will be added to the emails."
5242
+ msgstr "Instructies die aan de emails worden toegevoegd."
5243
+
5244
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:82
5245
+ msgid "Icon"
5246
+ msgstr "Icoon"
5247
+
5248
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:90
5249
+ msgid "Minimum order amount"
5250
+ msgstr "Minimale bestelbedrag"
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, enter a "
5255
+ "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 "Inschakelen voor verzendmethodes"
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. Leave "
5265
+ "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 "Selecteer verzendmethodes."
5271
+
5272
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:112
5273
+ msgid "Enable for virtual orders"
5274
+ msgstr "Inschakelen voor virtuele orders"
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 "Stuur extra e-mails."
5283
+
5284
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:128
5285
+ msgid "Send to Admin"
5286
+ msgstr "Stuur naar Admin"
5287
+
5288
+ #: includes/gateways/class-wc-gateway-wcj-custom.php:136
5289
+ msgid "Send to Customer"
5290
+ msgstr "Stuur naar Klant"
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 getting "
5295
+ "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 "Ingeschakeld"
5309
+
5310
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:40
5311
+ msgid "Type"
5312
+ msgstr "Type"
5313
+
5314
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:46
5315
+ msgid "Number"
5316
+ msgstr "Nummer"
5317
+
5318
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:48
5319
+ msgid "File"
5320
+ msgstr "Bestand"
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 "Checkbox: AAN"
5329
+
5330
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:67
5331
+ msgid "Yes"
5332
+ msgstr "Ja"
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 "Checkbox: UIT"
5341
+
5342
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:74
5343
+ msgid "No"
5344
+ msgstr "Nee"
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 "Verplicht"
5363
+
5364
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:100
5365
+ msgid "Placeholder"
5366
+ msgstr "Plaatshouder"
5367
+
5368
+ #: includes/input-fields/class-wcj-product-input-fields-abstract.php:106
5369
+ msgid "Message on required"
5370
+ msgstr "Bericht bij verplicht"
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 "Booster voor WooCommerce: Product invoervelden"
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 slips."
5391
+ msgstr ""
5392
+
5393
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:47
5394
+ msgid "Renumerate Invoices"
5395
+ msgstr ""
5396
+
5397
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
5398
+ msgid "Invoices successfully renumerated!"
5399
+ msgstr ""
5400
+
5401
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:79
5402
+ msgid "Please select at least one order status."
5403
+ msgstr ""
5404
+
5405
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
5406
+ msgid "WooCommerce Jetpack - Renumerate Invoices"
5407
+ msgstr "Booster voor WooCommerce - hernummer facturen"
5408
+
5409
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:85
5410
+ msgid ""
5411
+ "The tool renumerates invoices from choosen date. Invoice number format is set in "
5412
+ "WooCommerce > Settings > Jetpack > PDF Invoices (v2) > Numbering."
5413
+ msgstr ""
5414
+
5415
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
5416
+ msgid "Start Date"
5417
+ msgstr "Begindatum"
5418
+
5419
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
5420
+ msgid "Date to start renumerating. Leave blank to renumerate all invoices."
5421
+ msgstr ""
5422
+
5423
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:99
5424
+ msgid "Start Number"
5425
+ msgstr "Beginnummer"
5426
+
5427
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:101
5428
+ msgid "Counter to start renumerating. Leave 0 to continue from current counter."
5429
+ msgstr ""
5430
+
5431
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:106
5432
+ msgid "Delete All"
5433
+ msgstr "Verwijder allen"
5434
+
5435
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:108
5436
+ msgid "Clear all invoices before renumerating."
5437
+ msgstr ""
5438
+
5439
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
5440
+ msgid "Document Type"
5441
+ msgstr ""
5442
+
5443
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:129
5444
+ msgid "Order Statuses"
5445
+ msgstr "Order statussen"
5446
+
5447
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:139
5448
+ msgid "Results"
5449
+ msgstr "Resultaten"
5450
+
5451
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:195
5452
+ msgid "Total documents created: %d"
5453
+ msgstr ""
5454
+
5455
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:196
5456
+ msgid "Total documents deleted: %d"
5457
+ msgstr ""
5458
+
5459
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:36
5460
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:48
5461
+ msgid "Invoices Report"
5462
+ msgstr "Facturenrapport"
5463
+
5464
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:38
5465
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:72
5466
+ msgid "Invoices Monthly Reports."
5467
+ msgstr ""
5468
+
5469
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:67
5470
+ msgid "Please fill year and month values."
5471
+ msgstr ""
5472
+
5473
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:71
5474
+ msgid "WooCommerce Jetpack - Invoices Report"
5475
+ msgstr "Booster voor WooCommerce - Facturenrapport"
5476
+
5477
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:79
5478
+ msgid "Year"
5479
+ msgstr "Jaar"
5480
+
5481
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:86
5482
+ msgid "Month"
5483
+ msgstr "Maand"
5484
+
5485
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:95
5486
+ msgid "Get Report"
5487
+ msgstr ""
5488
+
5489
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:109
5490
+ msgid "Invoice Nr."
5491
+ msgstr "Factuurnummer"
5492
+
5493
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
5494
+ msgid "Order ID"
5495
+ msgstr "Order ID"
5496
+
5497
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:112
5498
+ msgid "Customer Country"
5499
+ msgstr ""
5500
+
5501
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:113
5502
+ msgid "Tax %"
5503
+ msgstr ""
5504
+
5505
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:114
5506
+ msgid "Order Total Tax Excl."
5507
+ msgstr "Order totaal zonder BTW"
5508
+
5509
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:115
5510
+ msgid "Order Taxes"
5511
+ msgstr "Order BTW"
5512
+
5513
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:117
5514
+ msgid "Order Currency"
5515
+ msgstr ""
5516
+
5517
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:152
5518
+ msgid "Admin's \"Orders\" Page"
5519
+ msgstr ""
5520
+
5521
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:153
5522
+ msgid "Add Column"
5523
+ msgstr "Voeg kolom toe"
5524
+
5525
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:165
5526
+ msgid "Customer's \"My Account\" Page"
5527
+ msgstr ""
5528
+
5529
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:167
5530
+ msgid "Add link"
5531
+ msgstr "Voeg link toe"
5532
+
5533
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:176
5534
+ msgid "Enable \"Save as\""
5535
+ msgstr ""
5536
+
5537
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:178
5538
+ msgid "Enable \"save as\" pdf instead of view pdf in browser"
5539
+ msgstr ""
5540
+
5541
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:187
5542
+ msgid "PDF File Name"
5543
+ msgstr "PDF Bestandsnaam"
5544
+
5545
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:205
5546
+ msgid "Misc."
5547
+ msgstr "Diversen"
5548
+
5549
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:24
5550
+ msgid "Email Options"
5551
+ msgstr "E-mail opties"
5552
 
5553
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:83
5554
+ msgid "Payment gateways to include"
5555
  msgstr ""
5556
 
5557
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:91
5558
+ msgid "Select some gateways. Leave blank to include all."
5559
+ msgstr ""
 
 
 
 
5560
 
5561
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:110
5562
+ msgid "Admin - New Order"
5563
  msgstr ""
5564
 
5565
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:111
5566
+ msgid "Customer - Processing Order"
5567
+ msgstr "Klant - Order in behandeling"
5568
 
5569
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:112
5570
+ msgid "Customer - Completed Order"
5571
+ msgstr "Klant - Order Afgerond"
5572
 
5573
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:113
5574
+ msgid "Customer - Invoice"
5575
+ msgstr "Klant - Factuur"
5576
 
5577
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:117
5578
+ msgid "Attach PDF to emails"
5579
+ msgstr "Voeg PDF toe aan e-mails"
5580
 
5581
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:126
5582
+ msgid "Select some emails"
5583
+ msgstr "Selecteer bepaalde e-mails"
5584
 
5585
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:43
5586
+ msgid "Enable Footer"
5587
+ msgstr "Schakel voettekst in"
5588
+
5589
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:50
5590
+ msgid "Footer Text"
5591
+ msgstr "Voettekst"
5592
+
5593
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:57
5594
+ msgid ""
5595
+ "You can use HTML here, as well as any WordPress shortcodes. There is two more "
5596
+ "predefined values you can use: %page_number% and %total_pages%."
5597
  msgstr ""
5598
 
5599
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:63
5600
+ msgid "Footer Text Color"
5601
+ msgstr "Voettekst kleur"
5602
+
5603
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:71
5604
+ msgid "Footer Line Color"
5605
  msgstr ""
5606
 
5607
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-footer.php:79
5608
+ msgid "Footer Margin"
5609
  msgstr ""
5610
 
5611
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:42
5612
+ msgid "Enable Header"
5613
+ msgstr "Schakel koptekst in"
5614
+
5615
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:49
5616
+ msgid "Header Image"
5617
+ msgstr "Kop afbeelding"
5618
+
5619
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:59
5620
+ msgid "Header Image Width in mm"
5621
+ msgstr "Kop afbeelding wijdte in mm"
5622
+
5623
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:66
5624
+ msgid "Header Title"
5625
+ msgstr "Kop titel"
5626
+
5627
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:76
5628
+ msgid "Company Name"
5629
  msgstr ""
5630
 
5631
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:79
5632
+ msgid "free version will add \"powered by woojetpack.com\" to heading text"
5633
+ msgstr "Gratis versie voegt \"Powered by WooBooster.com\" toe aan koptekst."
5634
 
5635
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:83
5636
+ msgid "Header Text Color"
5637
+ msgstr "Koptekst kleur"
5638
 
5639
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:91
5640
+ msgid "Header Line Color"
5641
  msgstr ""
5642
 
5643
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:99
5644
+ msgid "Header Margin"
5645
+ msgstr ""
5646
 
5647
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-header.php:116
5648
+ msgid "Header"
5649
+ msgstr ""
5650
 
5651
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:37
5652
+ msgid "Sequential"
5653
+ msgstr ""
5654
 
5655
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:43
5656
+ msgid "Counter"
5657
  msgstr ""
5658
 
5659
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:55
5660
+ msgid "Counter Width"
5661
+ msgstr ""
5662
 
5663
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-numbering.php:76
5664
+ msgid "Numbering"
5665
+ msgstr "Nummering"
5666
 
5667
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:43
5668
+ msgid "Page Orientation"
5669
+ msgstr ""
5670
 
5671
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:48
5672
+ msgid "Portrait"
5673
+ msgstr "Portret"
 
5674
 
5675
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:49
5676
+ msgid "Landscape"
5677
+ msgstr "Landschap"
5678
 
5679
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:56
5680
+ msgid "Page Format"
 
5681
  msgstr ""
5682
 
5683
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:64
5684
+ msgid "Margin Left"
5685
+ msgstr ""
5686
 
5687
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:71
5688
+ msgid "Margin Right"
5689
+ msgstr ""
5690
 
5691
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:78
5692
+ msgid "Margin Top"
5693
+ msgstr ""
5694
 
5695
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:85
5696
+ msgid "Margin Bottom"
5697
+ msgstr ""
5698
 
5699
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-page.php:101
5700
+ msgid "Page Settings"
5701
+ msgstr "Pagina instellingen"
5702
 
5703
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-styling.php:96
5704
+ msgid "Styling"
5705
+ msgstr ""
5706
 
5707
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:43
5708
+ msgid "HTML Template"
5709
+ msgstr ""
5710
 
5711
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:53
5712
+ msgid "Available Shortcodes"
5713
+ msgstr "Beschikbare shortcodes"
5714
 
5715
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-templates.php:65
5716
+ msgid "Templates"
5717
+ msgstr ""
5718
 
5719
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:98
5720
+ msgid "Cron job: exchange rates successfully updated"
 
 
5721
  msgstr ""
5722
 
5723
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:100
5724
+ msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
5725
+ msgstr ""
5726
 
5727
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:103
5728
+ msgid "Cron job: exchange rates update failed"
 
 
5729
  msgstr ""
5730
 
5731
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:116
5732
+ msgid "Once Weekly"
5733
+ msgstr "Eenmaal per week"
5734
 
5735
+ #: includes/price-by-country/class-wcj-exchange-rates-crons.php:121
5736
+ msgid "Once a Minute"
5737
+ msgstr "Eenmaal per minuut"
5738
 
5739
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:127
5740
+ msgid "Regular Price"
5741
+ msgstr "Normale Prijs"
5742
+
5743
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:134
5744
+ msgid "Sale Price"
5745
  msgstr ""
5746
 
5747
+ #: includes/price-by-country/class-wcj-price-by-country-local.php:236
5748
+ msgid "Country Group Nr."
5749
  msgstr ""
5750
 
5751
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:38
5752
+ msgid "Reports currency:"
5753
  msgstr ""
5754
 
5755
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:40
5756
+ #: includes/price-by-country/class-wcj-price-by-country-reports.php:62
5757
+ msgid "Show reports only in"
5758
+ msgstr "Toon rapportages alleen in"
5759
+
5760
+ #: includes/reports/wcj-class-reports-customers.php:41
5761
  msgid "No customers found."
5762
  msgstr "Geen klanten gevonden."
5763
 
5764
+ #: includes/reports/wcj-class-reports-customers.php:91
5765
+ msgid "Customer Name"
5766
+ msgstr "Klantnaam"
5767
+
5768
+ #: includes/reports/wcj-class-reports-customers.php:92
5769
+ msgid "Email"
5770
+ msgstr "E-mail"
5771
+
5772
+ #: includes/reports/wcj-class-reports-customers.php:93
5773
+ msgid "Total Spent"
5774
+ msgstr "Totaal uitgegeven"
5775
+
5776
+ #: includes/reports/wcj-class-reports-customers.php:94
5777
+ msgid "Registered"
5778
+ msgstr "Geregistreerd"
5779
+
5780
+ #: includes/reports/wcj-class-reports-customers.php:133
5781
  msgid "Total customers"
5782
  msgstr "Totaal aan klanten"
5783
 
5784
+ #: includes/reports/wcj-class-reports-customers.php:137
5785
  msgid "Country Code"
5786
  msgstr "Landcode"
5787
 
5788
+ #: includes/reports/wcj-class-reports-customers.php:138
5789
  msgid "Customers Count"
5790
  msgstr "Klanten telling"
5791
 
5792
+ #: includes/reports/wcj-class-reports-customers.php:139
5793
  msgid "Percent of total"
5794
  msgstr "Percentage van totaal"
5795
 
5796
+ #: includes/reports/wcj-class-reports-customers.php:161
5797
+ msgid "Report for:"
5798
+ msgstr ""
5799
+
5800
+ #: includes/reports/wcj-class-reports-stock.php:30
5801
  msgid "All Products on Stock"
5802
  msgstr "Alle producten op voorraad"
5803
 
5804
+ #: includes/reports/wcj-class-reports-stock.php:31
5805
  msgid "Report shows all products that are on stock and some sales info."
5806
  msgstr ""
5807
  "Rapportage toont alle producten die op voorraad zijn en bepaalde verkoop info."
5808
 
5809
+ #: includes/reports/wcj-class-reports-stock.php:35
5810
  msgid "Understocked"
5811
  msgstr ""
5812
 
5813
+ #: includes/reports/wcj-class-reports-stock.php:36
5814
  msgid ""
5815
  "Report shows all products that are low in stock calculated on product's sales data."
5816
  msgstr ""
5817
 
5818
+ #: includes/reports/wcj-class-reports-stock.php:38
5819
  msgid ""
5820
  "Threshold for minimum stock is equal to half of the sales in selected days range."
5821
  msgstr ""
5822
 
5823
+ #: includes/reports/wcj-class-reports-stock.php:42
5824
+ msgid "Overstocked"
5825
+ msgstr ""
5826
 
5827
+ #: includes/reports/wcj-class-reports-stock.php:43
5828
+ msgid ""
5829
+ "Report shows all products that are on stock, but have no sales in selected period. "
5830
+ "Only products added before the start date of selected period are accounted."
5831
+ msgstr ""
5832
 
5833
+ #: includes/reports/wcj-class-reports-stock.php:287
5834
  msgid "Stock"
5835
  msgstr "Voorraad"
5836
 
5837
+ #: includes/reports/wcj-class-reports-stock.php:288
5838
  msgid "Stock price"
5839
  msgstr "Voorraad prijs"
5840
 
5841
+ #: includes/reports/wcj-class-reports-stock.php:289
5842
+ msgid "Total stock price"
5843
+ msgstr ""
5844
+
5845
+ #: includes/reports/wcj-class-reports-stock.php:291
5846
  msgid "Last sale"
5847
  msgstr "Laatste verkoop"
5848
 
5849
+ #: includes/reports/wcj-class-reports-stock.php:292
5850
  msgid "Sales in last %s days"
5851
  msgstr "Verkoop in laatste % dagen"
5852
 
5853
+ #: includes/reports/wcj-class-reports-stock.php:293
5854
  msgid "Total sales"
5855
  msgstr "Totale verkoop"
5856
 
5857
+ #: includes/reports/wcj-class-reports-stock.php:296
5858
  msgid "Stock to minimum"
5859
  msgstr ""
5860
 
5861
+ #: includes/reports/wcj-class-reports-stock.php:328
5862
+ msgid "purchase price:"
5863
+ msgstr ""
5864
+
5865
+ #: includes/reports/wcj-class-reports-stock.php:333
5866
+ msgid "stock purchase price:"
5867
+ msgstr ""
5868
+
5869
+ #: includes/reports/wcj-class-reports-stock.php:339
5870
  msgid "No sales yet"
5871
  msgstr "Nog geen verkopen"
5872
 
5873
+ #: includes/reports/wcj-class-reports-stock.php:344
5874
+ msgid "profit:"
5875
+ msgstr "winst:"
5876
+
5877
+ #: includes/reports/wcj-class-reports-stock.php:368
5878
  msgid "Total current stock value"
5879
  msgstr "Totale waarde van voorraad nu"
5880
 
5881
+ #: includes/reports/wcj-class-reports-stock.php:369
5882
  msgid "Total stock value"
5883
  msgstr "Totale voorraad waarde"
5884
 
5885
+ #: includes/reports/wcj-class-reports-stock.php:370
5886
  msgid "Product stock value average"
5887
  msgstr "Gemiddelde waarde productvoorraad"
5888
 
5889
+ #: includes/reports/wcj-class-reports-stock.php:371
5890
  msgid "Product stock average"
5891
  msgstr "Gemiddelde productvoorraad "
5892
 
5893
+ #: includes/reports/wcj-class-reports-stock.php:375
5894
  msgid "Report was generated in: "
5895
  msgstr "Rapport gemaakt in:"
5896
 
5901
 
5902
  #: includes/shipping/class-wc-shipping-wcj-custom.php:20
5903
  msgid "WooCommerce Jetpack: Custom Shipping Method"
5904
+ msgstr "Booster voor WooCommerce: Aangepaste Verzendmethode"
5905
 
5906
  #: includes/shipping/class-wc-shipping-wcj-custom.php:58
5907
  msgid "Enable Custom Shipping"
5908
  msgstr "Schakel Aangepaste Verzendkosten in."
5909
 
5910
+ #: woocommerce-jetpack.php:134
5911
+ msgid ""
5912
+ "<strong>WooCommerce Jetpack</strong> plugin changed its name to <strong>Booster "
5913
+ "for WooCommerce</strong>."
5914
+ msgstr ""
5915
 
5916
+ #: woocommerce-jetpack.php:136
5917
+ msgid "Got it! Hide this message"
5918
+ msgstr ""
5919
 
5920
+ #. Plugin Name of the plugin/theme
5921
+ #: woocommerce-jetpack.php:186
5922
+ msgid "Booster for WooCommerce"
5923
+ msgstr ""
5924
 
5925
+ #: woocommerce-jetpack.php:186
5926
+ msgid "Booster Settings"
5927
+ msgstr "Booster Instellingen"
5928
+
5929
+ #: woocommerce-jetpack.php:198
5930
  msgid "Docs"
5931
  msgstr "Docs"
5932
 
5933
+ #: woocommerce-jetpack.php:199
5934
  msgid "Unlock all"
5935
  msgstr "Alles vrijgeven"
5936
 
5937
+ #: woocommerce-jetpack.php:212
5938
+ msgid "Install Booster for WooCommerce Plus to unlock all features"
5939
  msgstr ""
5940
+ "Installeer Booster voor WooCommerce Plus om toegang te krijgen tot alle opties"
5941
 
5942
+ #: woocommerce-jetpack.php:213
5943
  msgid ""
5944
  "Some settings fields are locked and you will need %s to modify all locked fields."
5945
  msgstr "Sommige instellingen zijn geblokkeerd, met %s kun je ze aanpassen."
5946
 
5947
+ #: woocommerce-jetpack.php:214
5948
  msgid "Buy now"
5949
  msgstr "Koop nu"
5950
 
5951
+ #: woocommerce-jetpack.php:214
5952
  msgid "Visit %s"
5953
  msgstr ""
5954
 
5955
+ #: woocommerce-jetpack.php:218
5956
  msgid ""
5957
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5958
+ "WooCommerce Plus</a> to change value."
5959
  msgstr ""
 
 
5960
 
5961
+ #: woocommerce-jetpack.php:221
5962
  msgid ""
5963
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5964
+ "WooCommerce Plus</a> to change values below."
5965
  msgstr ""
 
 
5966
 
5967
+ #: woocommerce-jetpack.php:224
5968
  msgid ""
5969
+ "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
5970
+ "WooCommerce Plus</a> to change values above."
5971
  msgstr ""
 
 
5972
 
5973
+ #: woocommerce-jetpack.php:227
5974
+ msgid "Get Booster for WooCommerce Plus to change value."
5975
+ msgstr ""
5976
 
5977
  #. Plugin URI of the plugin/theme
5978
+ msgid "http://BoostWoo.com"
5979
+ msgstr ""
5980
 
5981
  #. Description of the plugin/theme
5982
  msgid "Supercharge your WooCommerce site with these awesome powerful features."
5989
  #. Author URI of the plugin/theme
5990
  msgid "http://www.algoritmika.com"
5991
  msgstr "http://www.algoritmika.com"
5992
+
5993
+ #~ msgid "Jetpack"
5994
+ #~ msgstr "Jetpack"
5995
+
5996
+ #~ msgid "Price Labels"
5997
+ #~ msgstr "Prijs labels"
5998
+
5999
+ #~ msgid "Checkout"
6000
+ #~ msgstr "Afrekenen"
6001
+
6002
+ #~ msgid "Feature"
6003
+ #~ msgstr "Functie"
6004
+
6005
+ #~ msgid "WooCommerce Jetpack Dashboard"
6006
+ #~ msgstr "WooCommerce Jetpack Dashboard"
6007
+
6008
+ #~ msgid ""
6009
+ #~ "This dashboard lets you enable/disable any Jetpack feature. Each checkbox comes "
6010
+ #~ "with short feature's description. Please visit <a href=\"http://woojetpack.com"
6011
+ #~ "\" target=\"_blank\">WooJetpack.com</a> for detailed info on each feature."
6012
+ #~ msgstr ""
6013
+ #~ "Dit dashboard laat u een Jetpack-functie in-of uitschakelen. Bij elke checkbox "
6014
+ #~ "staat een korte functiebeschrijving. Bezoek <a href=\"http://woojetpack.com\" "
6015
+ #~ "target=\"_blank\">WooJetpack.com</a> voor gedetailleerde informatie over elke "
6016
+ #~ "functie."
6017
+
6018
+ #~ msgid "WooCommerce Jetpack Tools Dashboard"
6019
+ #~ msgstr "WooCommerce Jetpack Hulpmiddelen Dashboard"
6020
+
6021
+ #~ msgid ""
6022
+ #~ "This dashboard lets you check statuses and short descriptions of all available "
6023
+ #~ "WooCommerce Jetpack tools. Tools can be enabled through WooCommerce > Settings "
6024
+ #~ "> Jetpack. Enabled tools will appear in the tabs menu above."
6025
+ #~ msgstr ""
6026
+ #~ "Dit dashboard laat u de statussen en korte beschrijvingen van alle beschikbare "
6027
+ #~ "WooCommerce Jetpack Hulpmiddelen controleren. Hulpmiddelen kunnen worden "
6028
+ #~ "ingeschakeld via WooCommerce > Instellingen > Jetpack. Ingeschakelde "
6029
+ #~ "hulpmiddelen worden weergegeven in het menu hierboven."
6030
+
6031
+ #~ msgid "Add to Cart per Category Options"
6032
+ #~ msgstr "Voeg toe aan winkelmandje per categorie opties"
6033
+
6034
+ #~ msgid "Add to Cart - per Category"
6035
+ #~ msgstr "Voeg toe aan winkelmandje per categorie"
6036
+
6037
+ #~ msgid "Add to cart button text on per category basis."
6038
+ #~ msgstr "Voeg toe aan winkelwagentje knoptekst op basis van categorie."
6039
+
6040
+ #~ msgid "Product Category IDs List"
6041
+ #~ msgstr "Product Categorie ID's"
6042
+
6043
+ #~ msgid "Comma separated list of product category IDs."
6044
+ #~ msgstr "Door komma's gescheiden lijst van productcategorie-id's."
6045
+
6046
+ #~ msgid "Product Category Name"
6047
+ #~ msgstr "Product Categorie Naam"
6048
+
6049
+ #~ msgid "Product Category ID"
6050
+ #~ msgstr "Product Categorie ID"
6051
+
6052
+ #~ msgid "Product Category IDs"
6053
+ #~ msgstr "Product Categorie ID's"
6054
+
6055
+ #~ msgid "Add to Cart per Product Options"
6056
+ #~ msgstr "Toevoegen aan winkelwagen per productopties"
6057
+
6058
+ #~ msgid ""
6059
+ #~ "When module is enabled, add to cart button text for each product can be changed "
6060
+ #~ "in \"Edit Product\"."
6061
+ #~ msgstr ""
6062
+ #~ "Wanneer de module is ingeschakeld, kan de Voeg toe aan winkelwagen knop per "
6063
+ #~ "product worden veranderd in \"Bewerk product\""
6064
+
6065
+ #~ msgid "Add to Cart - per Product"
6066
+ #~ msgstr "Toevoegen aan Winkelwagen - per Product"
6067
+
6068
+ #~ msgid "Add to cart button text on per product basis."
6069
+ #~ msgstr "Toevoegen aan winkelwagen tekst per product basis."
6070
+
6071
+ #~ msgid "Add to Cart"
6072
+ #~ msgstr "Toevoegen aan Winkelwagen"
6073
+
6074
+ #~ msgid "Enable the Add to Cart feature"
6075
+ #~ msgstr "Toevoegen aan Winkelwagen optie inschakelen"
6076
+
6077
+ #~ msgid ""
6078
+ #~ "Set any local url to redirect to on Add to cart. Change text for Add to cart "
6079
+ #~ "button by product type. Display \"Already in cart\" instead of \"Add to cart\" "
6080
+ #~ "button if current product is already in cart."
6081
+ #~ msgstr ""
6082
+ #~ "Stel elke lokale url in om om te leiden naar een Voeg toe aan winkelwagen. "
6083
+ #~ "Verander de tekst van Voeg toe aan winkelwagen knop per productsoort. Toon "
6084
+ #~ "\"Reeds in winkelwagen\" in plaats van \"Voeg toe aan winkelwagen\" knop als "
6085
+ #~ "het huidige product al in de winkelwagen zit."
6086
+
6087
+ #~ msgid "Add to Cart Button Text Options"
6088
+ #~ msgstr "Voeg toe aan winkelwagen knop tekst opties"
6089
+
6090
+ #~ msgid "Add to cart text"
6091
+ #~ msgstr "Toevoegen aan winkelwagen tekst"
6092
+
6093
+ #~ msgid "Enable the Call for Price feature"
6094
+ #~ msgstr "Schakel de Bel voor de prijs optie in"
6095
+
6096
+ #~ msgid "Create any custom price label for all products with empty price."
6097
+ #~ msgstr "Maak een aangepast prijs label voor alle producten met zonder prijs."
6098
+
6099
+ #~ msgid "Cart Options"
6100
+ #~ msgstr "Winkelwagen opties"
6101
+
6102
+ #~ msgid "Enable the Cart feature"
6103
+ #~ msgstr "Schakel de winkelwagen optie in"
6104
+
6105
+ #~ msgid "Add empty cart button, automatically add to cart on product visit."
6106
+ #~ msgstr ""
6107
+ #~ "Voeg leeg winkelwagen knop toe, voeg automatisch toe aan winkelwagen bij "
6108
+ #~ "bezoeken productpagina."
6109
+
6110
+ #~ msgid "Empty Cart"
6111
+ #~ msgstr "Lege winkelwagen"
6112
+
6113
+ #~ msgid "This section lets you add custom checkout fields."
6114
+ #~ msgstr "Dit gedeelte laat je aangepaste afrekenvelden toevoegen"
6115
+
6116
+ #~ msgid "Custom Checkout Fields"
6117
+ #~ msgstr "Aangepaste afrekenvelden"
6118
+
6119
+ #~ msgid "Enable the Checkout Custom Fields feature"
6120
+ #~ msgstr "Schakel de aangepaste afrekenvelden optie in"
6121
+
6122
+ #~ msgid "Add custom fields to the Checkout page."
6123
+ #~ msgstr "Voeg aangepaste velden toe aan de afrekenenpagina."
6124
+
6125
+ #~ msgid "Checkout Options"
6126
+ #~ msgstr "Afrekenopties"
6127
+
6128
+ #~ msgid "Enable the Checkout feature"
6129
+ #~ msgstr "Schakel de afrekenoptie in"
6130
+
6131
+ #~ msgid ""
6132
+ #~ "Customize checkout fields. Disable/enable fields, set required, change labels "
6133
+ #~ "and/or placeholders."
6134
+ #~ msgstr ""
6135
+ #~ "Pas afrekenvelden aan. Schakel velden in of it, stel verplicht velden in, "
6136
+ #~ "verander label en/of plaatshouders."
6137
+
6138
+ #~ msgid "Checkout Fields Options"
6139
+ #~ msgstr "Afrekenveld opties"
6140
+
6141
+ #~ msgid ""
6142
+ #~ "This section lets you customize the checkout fields: change label, placeholder, "
6143
+ #~ "set required, or remove any field."
6144
+ #~ msgstr ""
6145
+ #~ "Dit gedeelte laat je afrekenvelden aanpassen: verander label, plaatshouder, "
6146
+ #~ "stel verplicht in, of verwijder elk veld."
6147
+
6148
+ #~ msgid "Enable the Currencies feature"
6149
+ #~ msgstr "Schakel de valuta optie in."
6150
+
6151
+ #~ msgid "Add all world currencies, change currency symbol."
6152
+ #~ msgstr "Voeg alle wereldwijde valuta toe, verander valuta symbool"
6153
+
6154
+ #~ msgid "Enable Feature"
6155
+ #~ msgstr "Schakel optie in"
6156
+
6157
+ #~ msgid "Set different currency for external products."
6158
+ #~ msgstr "Stel verschillende valuta in voor externe producten."
6159
+
6160
+ #~ msgid "Enable the Emails feature"
6161
+ #~ msgstr "Schakel de emailoptie in"
6162
+
6163
+ #~ msgid "Enable the General feature"
6164
+ #~ msgstr "Schakel de algemene optie in"
6165
+
6166
+ #~ msgid "Separate custom CSS for front and back end."
6167
+ #~ msgstr "Scheidt aangepaste CSS, voor voorkant en achterkant)"
6168
+
6169
+ #~ msgid "Enable the Remove Old Product Slugs feature"
6170
+ #~ msgstr "Schakel de Verwijder oude Slugs optie in"
6171
+
6172
+ #~ msgid ""
6173
+ #~ "Remove old product slugs. When enabled, the tool is accessible through <a href="
6174
+ #~ "\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > "
6175
+ #~ "Remove Old Slugs</a>."
6176
+ #~ msgstr ""
6177
+ #~ "Verwijder oude product slugs. Wanneer deze optie is ingeschakeld, is de tool "
6178
+ #~ "toegankelijk via <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs"
6179
+ #~ "\">WooCommerce > Jetpack Tools > oude slugs verwijderen</a>."
6180
+
6181
+ #~ msgid "Enable Order Numbers WooJetpack Module"
6182
+ #~ msgstr "Schakel de Ordernummers WooJetpack Module in"
6183
+
6184
+ #~ msgid "Orders Options"
6185
+ #~ msgstr "Orders Opties"
6186
+
6187
+ #~ msgid "Enable the Orders feature"
6188
+ #~ msgstr "Schakel de order optie in"
6189
+
6190
+ #~ msgid "Minimum order amount, orders auto-complete, orders custom statuses."
6191
+ #~ msgstr ""
6192
+ #~ "Minimaal bestelbedrag, orders automatisch afronden, orders aangepaste statussen"
6193
+
6194
+ #~ msgid ""
6195
+ #~ "When enabled, the Custom Statuses tool is accessible through <a href=\"%sadmin."
6196
+ #~ "php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools > Custom "
6197
+ #~ "Statuses</a>."
6198
+ #~ msgstr ""
6199
+ #~ "Bij inschakeling is het Aangepaste Statussen hulpmiddel bereikbaar via <a href="
6200
+ #~ "\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools "
6201
+ #~ "> Custom Statuses</a>."
6202
+
6203
+ #~ msgid "Fees are applied BEFORE taxes."
6204
+ #~ msgstr "Toeslagen worden toegepast voor de BTW."
6205
+
6206
+ #~ msgid "Enable the PDF Invoices feature"
6207
+ #~ msgstr "Schakel de PDF factuur optie in."
6208
+
6209
+ #~ msgid "Add PDF invoices for the store owners and for the customers."
6210
+ #~ msgstr "Voeg PDF facturen toe voor de winkeleigenaar en de klanten."
6211
+
6212
+ #~ msgid "Font size"
6213
+ #~ msgstr "Tekstgrootte"
6214
+
6215
+ #~ msgid ""
6216
+ #~ "Change product's price and currency by customer's country. Customer's country "
6217
+ #~ "is detected automatically by IP."
6218
+ #~ msgstr ""
6219
+ #~ "Verander de productprijs en valuta per land van herkomst klant. Land van "
6220
+ #~ "herkomst is automatisch gedetecteerd door IP."
6221
+
6222
+ #~ msgid "IP DB version: "
6223
+ #~ msgstr "IP DB versie:"
6224
+
6225
+ #~ msgid "Enable the Price by Country feature"
6226
+ #~ msgstr "Schakel de prijs op basis van land van herkomst optie in."
6227
+
6228
+ #~ msgid "Change product's price and currency by customer's country."
6229
+ #~ msgstr "Verander de productprijs en valuta per land van herkomst."
6230
+
6231
+ #~ msgid "Exchange rates"
6232
+ #~ msgstr "Wisselkoersen"
6233
+
6234
+ #~ msgid "Enable the Custom Price Labels feature"
6235
+ #~ msgstr "Schakel de Aangepaste Prijslabels optie in."
6236
+
6237
+ #~ msgid "Create any custom price label for any product."
6238
+ #~ msgstr "Creëer een Aangepast prijslabel voor elk product."
6239
+
6240
+ #~ msgid "Enable the Product Info feature"
6241
+ #~ msgstr "Schakel de Product Info optie in."
6242
+
6243
+ #~ msgid "Add additional info to product, change related products number."
6244
+ #~ msgstr "Extra info aan product toevoegen, verwante producten aantal wijzigen."
6245
+
6246
+ #~ msgid "Related Products Options"
6247
+ #~ msgstr "Gerelateerde producten opties"
6248
+
6249
+ #~ msgid ""
6250
+ #~ "Change display options for shop and category pages: show/hide categories count, "
6251
+ #~ "exclude categories, show/hide empty categories."
6252
+ #~ msgstr ""
6253
+ #~ "Verander weergave opties voor winkel en categoriepagina;s: toon/verberg "
6254
+ #~ "categoriëntelling, uitsluiten van categoriën, toon/verberg lege categoriën."
6255
+
6256
+ #~ msgid "Enable the Product Tabs feature"
6257
+ #~ msgstr "Schakel de Product Tabs optie in"
6258
+
6259
+ #~ msgid "Enable the Reports feature"
6260
+ #~ msgstr "Schakel de Rapportages optie in."
6261
+
6262
+ #~ msgid "Stock, sales, customers etc. reports."
6263
+ #~ msgstr "Voorraad, verkoop, klanten etc, rapportages."
6264
+
6265
+ #~ msgid "Customize shipping calculator on cart page."
6266
+ #~ msgstr "Pas de verzendkosten calculator aan op de winkelwagenpagina."
6267
+
6268
+ #~ msgid "Enable the Shipping feature"
6269
+ #~ msgstr "Schakel de verzendkosten optie in."
6270
+
6271
+ #~ msgid "Hide shipping when free is available."
6272
+ #~ msgstr "Verberg verzendkosten wanneer gratis beschikbaar is."
6273
+
6274
+ #~ msgid "Add more sorting options or remove all sorting including default."
6275
+ #~ msgstr ""
6276
+ #~ "Meer sorteeropties toevoegen of alle sorteringen verwijderen, inclusief "
6277
+ #~ "standaard."
6278
+
6279
+ #~ msgid "Jetpack Settings"
6280
+ #~ msgstr "Jetpack instellingen"
6281
+
6282
+ #~ msgid "Install WooCommerce Jetpack Plus to unlock all features"
6283
+ #~ msgstr ""
6284
+ #~ "Installeer WooCommerce Jetpack Plus om toegang te krijgen tot alle mogelijkheden"
6285
+
6286
+ #~ msgid ""
6287
+ #~ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6288
+ #~ "Jetpack Plus</a> to change value."
6289
+ #~ msgstr ""
6290
+ #~ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6291
+ #~ "Jetpack Plus</a> om dit aan te passen."
6292
+
6293
+ #~ msgid ""
6294
+ #~ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6295
+ #~ "Jetpack Plus</a> to change values below."
6296
+ #~ msgstr ""
6297
+ #~ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6298
+ #~ "Jetpack Plus</a> om de waardes hieronder aan te passen."
6299
+
6300
+ #~ msgid ""
6301
+ #~ "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6302
+ #~ "Jetpack Plus</a> to change values above."
6303
+ #~ msgstr ""
6304
+ #~ "Koop <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
6305
+ #~ "Jetpack Plus</a> om de waardes hierboven aan te passen."
6306
+
6307
+ #~ msgid "Get WooCommerce Jetpack Plus to change value."
6308
+ #~ msgstr "Koop WooCommerce Jetpack Plus om dit aan te passen."
6309
+
6310
+ #~ msgid "http://woojetpack.com"
6311
+ #~ msgstr "http://woojetpack.com"
langs/woocommerce-jetpack.pot CHANGED
@@ -2,10 +2,10 @@
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"
@@ -26,66 +26,66 @@ 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://"
@@ -137,19 +137,19 @@ msgstr ""
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
 
@@ -165,8 +165,8 @@ msgstr ""
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
 
@@ -198,7 +198,7 @@ msgstr ""
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
 
@@ -297,32 +297,32 @@ 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
@@ -331,13 +331,14 @@ msgstr ""
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
 
@@ -360,24 +361,21 @@ 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
 
@@ -424,10 +422,10 @@ 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
@@ -437,8 +435,8 @@ 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
@@ -558,9 +556,9 @@ 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
 
@@ -649,139 +647,154 @@ msgstr ""
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
 
@@ -829,6 +842,43 @@ msgstr ""
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"
@@ -860,11 +910,11 @@ 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 ""
@@ -1002,7 +1052,7 @@ msgstr ""
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
 
@@ -1122,228 +1172,239 @@ msgstr ""
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 "
@@ -1352,11 +1413,11 @@ msgid ""
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 "
@@ -1364,21 +1425,21 @@ msgid ""
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 "
@@ -1434,11 +1495,6 @@ msgstr ""
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 ""
@@ -1478,80 +1534,82 @@ msgstr ""
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
 
@@ -1629,7 +1687,7 @@ 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
 
@@ -1973,6 +2031,8 @@ msgid "Total Discount"
1973
  msgstr ""
1974
 
1975
  #: includes/class-wcj-pdf-invoices.php:1264
 
 
1976
  msgid "Discount"
1977
  msgstr ""
1978
 
@@ -2092,168 +2152,176 @@ msgstr ""
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 ""
@@ -2439,7 +2507,7 @@ 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
 
@@ -2448,7 +2516,7 @@ 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
 
@@ -2491,88 +2559,125 @@ msgstr ""
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
 
@@ -2580,9 +2685,9 @@ msgstr ""
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
@@ -2590,88 +2695,84 @@ msgstr ""
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
 
@@ -2902,7 +3003,7 @@ msgstr ""
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
@@ -3025,13 +3126,14 @@ msgstr ""
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
 
@@ -3063,61 +3165,61 @@ msgstr ""
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
 
@@ -3463,67 +3565,70 @@ msgstr ""
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 ""
@@ -3532,20 +3637,20 @@ msgstr ""
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
@@ -5161,44 +5266,52 @@ msgstr ""
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"
@@ -5413,10 +5526,6 @@ msgid ""
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 ""
@@ -5560,27 +5669,35 @@ msgstr ""
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
 
@@ -5834,67 +5951,67 @@ msgid ""
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
 
@@ -5911,71 +6028,71 @@ msgstr ""
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
 
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.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
  "jetpack\n"
8
+ "POT-Creation-Date: 2015-08-23 21:02:57+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
26
  msgstr ""
27
 
28
  #: includes/admin/class-wc-settings-jetpack.php:26
29
+ #: includes/admin/class-wc-settings-jetpack.php:261
30
  msgid "Booster"
31
  msgstr ""
32
 
33
+ #: includes/admin/class-wc-settings-jetpack.php:119
34
  msgid "Save changes"
35
  msgstr ""
36
 
37
+ #: includes/admin/class-wc-settings-jetpack.php:158
38
  msgid "Alphabetically"
39
  msgstr ""
40
 
41
+ #: includes/admin/class-wc-settings-jetpack.php:159
42
  msgid "By Category"
43
  msgstr ""
44
 
45
+ #: includes/admin/class-wc-settings-jetpack.php:160
46
  msgid "Active"
47
  msgstr ""
48
 
49
+ #: includes/admin/class-wc-settings-jetpack.php:228
50
  #: includes/admin/wcj-modules-cats.php:15
51
  msgid "Dashboard"
52
  msgstr ""
53
 
54
+ #: includes/admin/class-wc-settings-jetpack.php:257
55
  msgid "WooCommerce"
56
  msgstr ""
57
 
58
+ #: includes/admin/class-wc-settings-jetpack.php:259
59
+ #: woocommerce-jetpack.php:189
60
  msgid "Settings"
61
  msgstr ""
62
 
63
+ #: includes/admin/class-wc-settings-jetpack.php:339
64
+ #: includes/admin/class-wc-settings-jetpack.php:346
65
  msgid "Select All"
66
  msgstr ""
67
 
68
+ #: includes/admin/class-wc-settings-jetpack.php:340
69
+ #: includes/admin/class-wc-settings-jetpack.php:347
70
  msgid "Module"
71
  msgstr ""
72
 
73
+ #: includes/admin/class-wc-settings-jetpack.php:341
74
+ #: includes/admin/class-wc-settings-jetpack.php:348
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:398
81
  msgid "Total Modules:"
82
  msgstr ""
83
 
84
+ #: includes/admin/class-wc-settings-jetpack.php:428
85
  msgid "Booster for WooCommerce - Dashboard"
86
  msgstr ""
87
 
88
+ #: includes/admin/class-wc-settings-jetpack.php:430
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://"
137
  msgid "Products"
138
  msgstr ""
139
 
140
+ #: includes/admin/wcj-modules-cats.php:66
141
  msgid "Cart & Checkout"
142
  msgstr ""
143
 
144
+ #: includes/admin/wcj-modules-cats.php:83
145
  msgid "Shipping & Orders"
146
  msgstr ""
147
 
148
+ #: includes/admin/wcj-modules-cats.php:96
149
  msgid "PDF Invoicing & Packing Slips"
150
  msgstr ""
151
 
152
+ #: includes/admin/wcj-modules-cats.php:112
153
  msgid "Emails & Misc."
154
  msgstr ""
155
 
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:183
169
+ #: includes/class-wcj-product-images.php:260
170
  msgid "Enable Section"
171
  msgstr ""
172
 
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:153
202
  msgid "Leave blank to disable."
203
  msgstr ""
204
 
297
  msgstr ""
298
 
299
  #: includes/class-wcj-add-to-cart.php:229
300
+ #: includes/class-wcj-checkout-custom-fields.php:322
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:142
308
+ #: includes/class-wcj-price-by-country.php:208
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:298
316
+ #: includes/class-wcj-checkout-custom-fields.php:306
317
+ #: includes/class-wcj-general.php:74 includes/class-wcj-order-numbers.php:165
318
  #: includes/class-wcj-orders.php:245
319
+ #: includes/class-wcj-price-by-country.php:115
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:620
324
+ #: includes/class-wcj-product-info.php:739
325
+ #: includes/class-wcj-product-info.php:776
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
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:201
335
+ #: includes/class-wcj-wholesale-price.php:209
336
  #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-display.php:177
337
  msgid "Enable"
338
  msgstr ""
339
 
340
  #: includes/class-wcj-add-to-cart.php:283
341
+ #: includes/class-wcj-checkout-custom-fields.php:461
342
  msgid "categories"
343
  msgstr ""
344
 
361
 
362
  #: includes/class-wcj-add-to-cart.php:331
363
  #: includes/class-wcj-call-for-price.php:89
 
 
364
  #: includes/class-wcj-currencies.php:113
365
  #: includes/class-wcj-currency-external-products.php:72
366
  #: includes/class-wcj-emails.php:131 includes/class-wcj-old-slugs.php:95
 
367
  #: includes/class-wcj-pdf-invoices.php:926
368
+ #: includes/class-wcj-pdf-invoicing.php:156
369
+ #: includes/class-wcj-price-by-country.php:71
370
  #: includes/class-wcj-price-labels.php:535
371
  #: includes/class-wcj-product-bulk-price-converter.php:262
372
+ #: includes/class-wcj-product-info.php:711
373
  #: includes/class-wcj-product-input-fields.php:132
374
  #: includes/class-wcj-product-listings.php:60
375
  #: includes/class-wcj-product-tabs.php:314 includes/class-wcj-reports.php:278
376
  #: includes/class-wcj-shipping-calculator.php:120
377
  #: includes/class-wcj-shipping.php:156
378
+ #: includes/classes/class-wcj-module.php:248
379
  msgid "Enable Module"
380
  msgstr ""
381
 
422
  msgstr ""
423
 
424
  #: includes/class-wcj-admin-tools.php:45
425
+ #: includes/class-wcj-checkout-custom-fields.php:352
426
  #: includes/class-wcj-old-slugs.php:49
427
+ #: includes/class-wcj-order-custom-statuses.php:132
428
+ #: includes/class-wcj-order-numbers.php:68
429
  #: includes/class-wcj-price-labels.php:114
430
  #: includes/class-wcj-product-bulk-price-converter.php:228
431
  #: includes/class-wcj-sku.php:193
435
  msgstr ""
436
 
437
  #: includes/class-wcj-admin-tools.php:47 includes/class-wcj-old-slugs.php:51
438
+ #: includes/class-wcj-order-custom-statuses.php:133
439
+ #: includes/class-wcj-order-numbers.php:70
440
  #: includes/class-wcj-price-labels.php:116
441
  #: includes/class-wcj-product-bulk-price-converter.php:230
442
  #: includes/class-wcj-sku.php:195
556
 
557
  #: includes/class-wcj-cart.php:114
558
  #: includes/class-wcj-checkout-custom-info.php:79
559
+ #: includes/class-wcj-mini-cart.php:78 includes/class-wcj-product-info.php:628
560
+ #: includes/class-wcj-product-info.php:756
561
+ #: includes/class-wcj-product-info.php:796
562
  msgid "Position"
563
  msgstr ""
564
 
647
  msgid "Priority"
648
  msgstr ""
649
 
650
+ #: includes/class-wcj-checkout-core-fields.php:64
 
 
 
 
 
651
  msgid "Checkout Core Fields"
652
  msgstr ""
653
 
654
+ #: includes/class-wcj-checkout-core-fields.php:65
655
  msgid ""
656
  "Customize WooCommerce core checkout fields. Disable/enable fields, set "
657
  "required, change labels and/or placeholders."
658
  msgstr ""
659
 
660
+ #: includes/class-wcj-checkout-core-fields.php:161
661
+ msgid "Checkout Core Fields Options"
662
+ msgstr ""
663
+
664
+ #: includes/class-wcj-checkout-core-fields.php:229
665
  msgid "Leave blank for WooCommerce defaults."
666
  msgstr ""
667
 
668
+ #: includes/class-wcj-checkout-core-fields.php:244
669
+ #: includes/class-wcj-product-info.php:675
670
+ msgid "Default"
671
+ msgstr ""
672
+
673
+ #: includes/class-wcj-checkout-core-fields.php:245
674
+ msgid "Align Left"
675
  msgstr ""
676
 
677
+ #: includes/class-wcj-checkout-core-fields.php:246
678
+ msgid "Align Right"
679
+ msgstr ""
680
+
681
+ #: includes/class-wcj-checkout-core-fields.php:247
682
+ msgid "Full Row"
683
+ msgstr ""
684
+
685
+ #: includes/class-wcj-checkout-custom-fields.php:23
686
  msgid "Checkout Custom Fields"
687
  msgstr ""
688
 
689
+ #: includes/class-wcj-checkout-custom-fields.php:24
690
  msgid "Add custom fields to WooCommerce checkout page."
691
  msgstr ""
692
 
693
+ #: includes/class-wcj-checkout-custom-fields.php:290
694
+ msgid "Checkout Custom Fields Options"
695
+ msgstr ""
696
+
697
+ #: includes/class-wcj-checkout-custom-fields.php:297
698
  msgid "Add All Fields to Admin Emails"
699
  msgstr ""
700
 
701
+ #: includes/class-wcj-checkout-custom-fields.php:305
702
  msgid "Add All Fields to Customers Emails"
703
  msgstr ""
704
 
705
+ #: includes/class-wcj-checkout-custom-fields.php:315
706
  msgid "The Fields"
707
  msgstr ""
708
 
709
+ #: includes/class-wcj-checkout-custom-fields.php:321
710
  msgid "Custom Fields Number"
711
  msgstr ""
712
 
713
+ #: includes/class-wcj-checkout-custom-fields.php:351
714
  msgid "Custom Field"
715
  msgstr ""
716
 
717
+ #: includes/class-wcj-checkout-custom-fields.php:359
718
  msgid "type"
719
  msgstr ""
720
 
721
+ #: includes/class-wcj-checkout-custom-fields.php:364
722
  #: includes/class-wcj-more-button-labels.php:49
723
  #: includes/input-fields/class-wcj-product-input-fields-abstract.php:44
724
  msgid "Text"
725
  msgstr ""
726
 
727
+ #: includes/class-wcj-checkout-custom-fields.php:365
728
  #: includes/input-fields/class-wcj-product-input-fields-abstract.php:45
729
  msgid "Textarea"
730
  msgstr ""
731
 
732
+ #: includes/class-wcj-checkout-custom-fields.php:367
733
  msgid "Datepicker"
734
  msgstr ""
735
 
736
+ #: includes/class-wcj-checkout-custom-fields.php:368
737
  #: includes/input-fields/class-wcj-product-input-fields-abstract.php:47
738
  msgid "Checkbox"
739
  msgstr ""
740
 
741
+ #: includes/class-wcj-checkout-custom-fields.php:370
742
  msgid "Password"
743
  msgstr ""
744
 
745
+ #: includes/class-wcj-checkout-custom-fields.php:376
746
  msgid "required"
747
  msgstr ""
748
 
749
+ #: includes/class-wcj-checkout-custom-fields.php:383
750
  msgid "label"
751
  msgstr ""
752
 
753
+ #: includes/class-wcj-checkout-custom-fields.php:405
754
  msgid "placeholder"
755
  msgstr ""
756
 
757
+ #: includes/class-wcj-checkout-custom-fields.php:414
758
  msgid "section"
759
  msgstr ""
760
 
761
+ #: includes/class-wcj-checkout-custom-fields.php:419
762
  #: includes/class-wcj-checkout-custom-info.php:86
763
  msgid "Billing"
764
  msgstr ""
765
 
766
+ #: includes/class-wcj-checkout-custom-fields.php:420
767
  #: includes/class-wcj-checkout-custom-info.php:87
768
  #: includes/class-wcj-pdf-invoices.php:1255
769
  #: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
770
  msgid "Shipping"
771
  msgstr ""
772
 
773
+ #: includes/class-wcj-checkout-custom-fields.php:421
774
  msgid "Order Notes"
775
  msgstr ""
776
 
777
+ #: includes/class-wcj-checkout-custom-fields.php:422
778
  msgid "Account"
779
  msgstr ""
780
 
781
+ #: includes/class-wcj-checkout-custom-fields.php:429
782
  msgid "class"
783
  msgstr ""
784
 
785
+ #: includes/class-wcj-checkout-custom-fields.php:434
786
  msgid "Wide"
787
  msgstr ""
788
 
789
+ #: includes/class-wcj-checkout-custom-fields.php:435
790
  msgid "First"
791
  msgstr ""
792
 
793
+ #: includes/class-wcj-checkout-custom-fields.php:436
794
  msgid "Last"
795
  msgstr ""
796
 
797
+ #: includes/class-wcj-checkout-custom-fields.php:443
798
  msgid "clear"
799
  msgstr ""
800
 
842
  msgid "Order (i.e. Priority)"
843
  msgstr ""
844
 
845
+ #: includes/class-wcj-crowdfunding.php:24
846
+ msgid "Crowdfunding"
847
+ msgstr ""
848
+
849
+ #: includes/class-wcj-crowdfunding.php:25
850
+ msgid "Add crowdfunding products to WooCommerce."
851
+ msgstr ""
852
+
853
+ #: includes/class-wcj-crowdfunding.php:62
854
+ msgid "Goal"
855
+ msgstr ""
856
+
857
+ #: includes/class-wcj-crowdfunding.php:68
858
+ #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:92
859
+ msgid "Start Date"
860
+ msgstr ""
861
+
862
+ #: includes/class-wcj-crowdfunding.php:74
863
+ msgid "Deadline"
864
+ msgstr ""
865
+
866
+ #: includes/class-wcj-crowdfunding.php:83
867
+ msgid "When enabled, module will add Crowdfunding metabox to product edit."
868
+ msgstr ""
869
+
870
+ #: includes/class-wcj-crowdfunding.php:85
871
+ msgid "To add crowdfunding info to the product, use these shortcodes:"
872
+ msgstr ""
873
+
874
+ #: includes/class-wcj-crowdfunding.php:93
875
+ msgid "Shortcodes could be used in \"Product Info\" module."
876
+ msgstr ""
877
+
878
+ #: includes/class-wcj-crowdfunding.php:95
879
+ msgid "To change add to cart button labels use \"Add to Cart Labels\" module."
880
+ msgstr ""
881
+
882
  #: includes/class-wcj-currencies.php:75
883
  #: includes/class-wcj-currency-external-products.php:80
884
  msgid "Currency Symbol"
910
  msgstr ""
911
 
912
  #: includes/class-wcj-currencies.php:126
913
+ #: includes/class-wcj-product-images.php:191
914
+ #: includes/class-wcj-product-images.php:217
915
+ #: includes/class-wcj-product-images.php:225
916
+ #: includes/class-wcj-product-images.php:242
917
+ #: includes/class-wcj-related-products.php:157
918
  #: includes/class-wcj-shipping-calculator.php:167
919
  msgid "Hide"
920
  msgstr ""
1052
  msgid "Are you sure?"
1053
  msgstr ""
1054
 
1055
+ #: includes/class-wcj-general.php:23 includes/class-wcj-pdf-invoicing.php:198
1056
  msgid "General"
1057
  msgstr ""
1058
 
1172
  msgid "No old slugs found."
1173
  msgstr ""
1174
 
1175
+ #: includes/class-wcj-order-custom-statuses.php:26
1176
  msgid "Order Custom Statuses"
1177
  msgstr ""
1178
 
1179
+ #: includes/class-wcj-order-custom-statuses.php:27
1180
  msgid "Custom statuses for WooCommerce orders."
1181
  msgstr ""
1182
 
1183
+ #: includes/class-wcj-order-custom-statuses.php:32
1184
  msgctxt "Order status"
1185
  msgid "Pending payment"
1186
  msgstr ""
1187
 
1188
+ #: includes/class-wcj-order-custom-statuses.php:33
1189
+ #: includes/functions/wcj-functions.php:356
1190
  msgctxt "Order status"
1191
  msgid "Processing"
1192
  msgstr ""
1193
 
1194
+ #: includes/class-wcj-order-custom-statuses.php:34
1195
  msgctxt "Order status"
1196
  msgid "On hold"
1197
  msgstr ""
1198
 
1199
+ #: includes/class-wcj-order-custom-statuses.php:35
1200
+ #: includes/functions/wcj-functions.php:358
1201
  msgctxt "Order status"
1202
  msgid "Completed"
1203
  msgstr ""
1204
 
1205
+ #: includes/class-wcj-order-custom-statuses.php:36
1206
+ #: includes/functions/wcj-functions.php:359
1207
  msgctxt "Order status"
1208
  msgid "Cancelled"
1209
  msgstr ""
1210
 
1211
+ #: includes/class-wcj-order-custom-statuses.php:37
1212
+ #: includes/functions/wcj-functions.php:360
1213
  msgctxt "Order status"
1214
  msgid "Refunded"
1215
  msgstr ""
1216
 
1217
+ #: includes/class-wcj-order-custom-statuses.php:38
1218
+ #: includes/functions/wcj-functions.php:361
1219
  msgctxt "Order status"
1220
  msgid "Failed"
1221
  msgstr ""
1222
 
1223
+ #: includes/class-wcj-order-custom-statuses.php:134
1224
+ #: includes/class-wcj-order-custom-statuses.php:146
1225
+ #: includes/class-wcj-order-custom-statuses.php:302
1226
  msgid "Custom Statuses"
1227
  msgstr ""
1228
 
1229
+ #: includes/class-wcj-order-custom-statuses.php:136
1230
  msgid "Tool lets you add or delete any custom status for WooCommerce orders."
1231
  msgstr ""
1232
 
1233
+ #: includes/class-wcj-order-custom-statuses.php:177
1234
  msgid "Status slug is empty. Status not added."
1235
  msgstr ""
1236
 
1237
+ #: includes/class-wcj-order-custom-statuses.php:179
1238
  msgid "The length of status slug must be 17 or less characters."
1239
  msgstr ""
1240
 
1241
+ #: includes/class-wcj-order-custom-statuses.php:181
1242
  msgid "Status label is empty. Status not added."
1243
  msgstr ""
1244
 
1245
+ #: includes/class-wcj-order-custom-statuses.php:187
1246
  msgid "Duplicate slug. Status not added."
1247
  msgstr ""
1248
 
1249
+ #: includes/class-wcj-order-custom-statuses.php:193
1250
  msgid "New status have been successfully added!"
1251
  msgstr ""
1252
 
1253
+ #: includes/class-wcj-order-custom-statuses.php:195
1254
  msgid "Status was not added."
1255
  msgstr ""
1256
 
1257
+ #: includes/class-wcj-order-custom-statuses.php:211
1258
  msgid "Status have been successfully deleted."
1259
  msgstr ""
1260
 
1261
+ #: includes/class-wcj-order-custom-statuses.php:213
1262
  msgid "Delete failed."
1263
  msgstr ""
1264
 
1265
+ #: includes/class-wcj-order-custom-statuses.php:216
1266
  msgid "WooCommerce Jetpack - Custom Statuses"
1267
  msgstr ""
1268
 
1269
+ #: includes/class-wcj-order-custom-statuses.php:217
1270
  msgid ""
1271
  "The tool lets you add or delete any custom status for WooCommerce orders."
1272
  msgstr ""
1273
 
1274
+ #: includes/class-wcj-order-custom-statuses.php:219
1275
  msgid "Statuses"
1276
  msgstr ""
1277
 
1278
+ #: includes/class-wcj-order-custom-statuses.php:222
1279
  msgid "Slug"
1280
  msgstr ""
1281
 
1282
+ #: includes/class-wcj-order-custom-statuses.php:223
1283
+ #: includes/class-wcj-order-custom-statuses.php:248
1284
  msgid "Label"
1285
  msgstr ""
1286
 
1287
+ #: includes/class-wcj-order-custom-statuses.php:225
1288
+ #: includes/class-wcj-order-custom-statuses.php:235
1289
  msgid "Delete"
1290
  msgstr ""
1291
 
1292
+ #: includes/class-wcj-order-custom-statuses.php:247
1293
  msgid "Slug (without wc- prefix)"
1294
  msgstr ""
1295
 
1296
+ #: includes/class-wcj-order-custom-statuses.php:272
1297
+ #: includes/class-wcj-order-custom-statuses.php:273
1298
+ msgid "Mark"
1299
  msgstr ""
1300
 
1301
+ #: includes/class-wcj-order-custom-statuses.php:309
1302
  #: includes/gateways/class-wc-gateway-wcj-custom.php:119
1303
  msgid "Default Order Status"
1304
  msgstr ""
1305
 
1306
+ #: includes/class-wcj-order-custom-statuses.php:310
1307
  #: includes/gateways/class-wc-gateway-wcj-custom.php:120
1308
  msgid "Enable Custom Statuses feature to add custom statuses to the list."
1309
  msgstr ""
1310
 
1311
+ #: includes/class-wcj-order-custom-statuses.php:311
1312
  msgid ""
1313
  "You can change the default order status here. However payment gateways can "
1314
  "change this status immediatelly on order creation. E.g. BACS gateway will "
1315
  "change status to On-hold."
1316
  msgstr ""
1317
 
1318
+ #: includes/class-wcj-order-custom-statuses.php:319
1319
+ msgid "Add All Statuses to Admin Order Bulk Actions"
1320
+ msgstr ""
1321
+
1322
+ #: includes/class-wcj-order-custom-statuses.php:320
1323
+ #: includes/class-wcj-orders.php:213 includes/class-wcj-orders.php:263
1324
+ #: includes/class-wcj-purchase-data.php:321
1325
+ msgid "Add"
1326
+ msgstr ""
1327
+
1328
+ #: includes/class-wcj-order-numbers.php:25
1329
+ #: includes/class-wcj-order-numbers.php:161
1330
+ msgid "Order Numbers"
1331
+ msgstr ""
1332
+
1333
+ #: includes/class-wcj-order-numbers.php:26
1334
+ msgid ""
1335
+ "WooCommerce sequential order numbering, custom order number prefix, suffix "
1336
+ "and number width."
1337
  msgstr ""
1338
 
1339
  #: includes/class-wcj-order-numbers.php:71
1340
+ msgid "Orders Renumerate"
1341
+ msgstr ""
1342
+
1343
+ #: includes/class-wcj-order-numbers.php:73
1344
  msgid "Tool renumerates all orders."
1345
  msgstr ""
1346
 
1347
+ #: includes/class-wcj-order-numbers.php:83
1348
+ #: includes/class-wcj-order-numbers.php:104
1349
  msgid "Renumerate orders"
1350
  msgstr ""
1351
 
1352
+ #: includes/class-wcj-order-numbers.php:97
1353
  msgid "Orders successfully renumerated!"
1354
  msgstr ""
1355
 
1356
+ #: includes/class-wcj-order-numbers.php:100
1357
  msgid "WooCommerce Jetpack - Renumerate Orders"
1358
  msgstr ""
1359
 
1360
+ #: includes/class-wcj-order-numbers.php:101
1361
  msgid ""
1362
  "The tool renumerates all orders. Press the button below to renumerate all "
1363
  "existing orders starting from order counter settings in WooCommerce > "
1364
  "Settings > Jetpack > Order Numbers."
1365
  msgstr ""
1366
 
1367
+ #: includes/class-wcj-order-numbers.php:161
 
 
 
 
 
 
1368
  msgid ""
1369
  "This section lets you enable sequential order numbering, set custom number "
1370
  "prefix, suffix and width."
1371
  msgstr ""
1372
 
1373
+ #: includes/class-wcj-order-numbers.php:164
 
 
 
 
 
 
1374
  msgid "Make Order Numbers Sequential"
1375
  msgstr ""
1376
 
1377
+ #: includes/class-wcj-order-numbers.php:172
1378
  msgid "Next Order Number"
1379
  msgstr ""
1380
 
1381
+ #: includes/class-wcj-order-numbers.php:173
1382
  msgid "Next new order will be given this number."
1383
  msgstr ""
1384
 
1385
+ #: includes/class-wcj-order-numbers.php:173
1386
  msgid "Use Renumerate Orders tool for existing orders."
1387
  msgstr ""
1388
 
1389
+ #: includes/class-wcj-order-numbers.php:174
1390
  msgid "This will be ignored if sequential order numbering is disabled."
1391
  msgstr ""
1392
 
1393
+ #: includes/class-wcj-order-numbers.php:181
1394
  msgid "Order Number Custom Prefix"
1395
  msgstr ""
1396
 
1397
+ #: includes/class-wcj-order-numbers.php:182
1398
  msgid ""
1399
  "Prefix before order number (optional). This will change the prefixes for all "
1400
  "existing orders."
1401
  msgstr ""
1402
 
1403
+ #: includes/class-wcj-order-numbers.php:190
1404
  msgid "Order Number Date Prefix"
1405
  msgstr ""
1406
 
1407
+ #: includes/class-wcj-order-numbers.php:192
1408
  msgid ""
1409
  "Date prefix before order number (optional). This will change the prefixes "
1410
  "for all existing orders. Value is passed directly to PHP `date` function, so "
1413
  "d- or mdy."
1414
  msgstr ""
1415
 
1416
+ #: includes/class-wcj-order-numbers.php:202
1417
  msgid "Order Number Width"
1418
  msgstr ""
1419
 
1420
+ #: includes/class-wcj-order-numbers.php:204
1421
  msgid ""
1422
  "Minimum width of number without prefix (zeros will be added to the left "
1423
  "side). This will change the minimum width of order number for all existing "
1425
  "Leave zero to disable."
1426
  msgstr ""
1427
 
1428
+ #: includes/class-wcj-order-numbers.php:214
1429
  msgid "Order Number Custom Suffix"
1430
  msgstr ""
1431
 
1432
+ #: includes/class-wcj-order-numbers.php:216
1433
  msgid ""
1434
  "Suffix after order number (optional). This will change the suffixes for all "
1435
  "existing orders."
1436
  msgstr ""
1437
 
1438
+ #: includes/class-wcj-order-numbers.php:226
1439
  msgid "Order Number Date Suffix"
1440
  msgstr ""
1441
 
1442
+ #: includes/class-wcj-order-numbers.php:228
1443
  msgid ""
1444
  "Date suffix after order number (optional). This will change the suffixes for "
1445
  "all existing orders. Value is passed directly to PHP `date` function, so "
1495
  msgid "Add notice to cart page also"
1496
  msgstr ""
1497
 
 
 
 
 
 
1498
  #: includes/class-wcj-orders.php:220
1499
  msgid "Message on cart page"
1500
  msgstr ""
1534
  msgid "This section lets you add custom columns to WooCommerce orders list."
1535
  msgstr ""
1536
 
1537
+ #: includes/class-wcj-payment-gateways-fees.php:26
1538
+ msgid "Payment Gateways Fees and Discounts"
1539
  msgstr ""
1540
 
1541
+ #: includes/class-wcj-payment-gateways-fees.php:27
1542
+ msgid "Enable extra fees or discounts for WooCommerce payment gateways."
1543
  msgstr ""
1544
 
1545
+ #: includes/class-wcj-payment-gateways-fees.php:131
1546
+ msgid "Payment Gateways Fees and Discounts Options"
1547
  msgstr ""
1548
 
1549
+ #: includes/class-wcj-payment-gateways-fees.php:133
1550
  msgid "This section lets you set extra fees for payment gateways."
1551
  msgstr ""
1552
 
1553
+ #: includes/class-wcj-payment-gateways-fees.php:152
1554
+ msgid "Fee (or discount) title to show to customer."
1555
  msgstr ""
1556
 
1557
+ #: includes/class-wcj-payment-gateways-fees.php:161
1558
+ msgid "Fee (or discount) type."
1559
  msgstr ""
1560
 
1561
+ #: includes/class-wcj-payment-gateways-fees.php:162
1562
  msgid "Percent or fixed value."
1563
  msgstr ""
1564
 
1565
+ #: includes/class-wcj-payment-gateways-fees.php:169
1566
+ #: includes/class-wcj-wholesale-price.php:238
1567
  msgid "Fixed"
1568
  msgstr ""
1569
 
1570
+ #: includes/class-wcj-payment-gateways-fees.php:170
1571
+ #: includes/class-wcj-wholesale-price.php:237
1572
  msgid "Percent"
1573
  msgstr ""
1574
 
1575
+ #: includes/class-wcj-payment-gateways-fees.php:176
1576
+ msgid "Fee (or discount) value."
1577
  msgstr ""
1578
 
1579
+ #: includes/class-wcj-payment-gateways-fees.php:177
1580
+ msgid "The value. For discount enter a negative number."
1581
  msgstr ""
1582
 
1583
+ #: includes/class-wcj-payment-gateways-fees.php:188
1584
+ msgid "Minimum cart amount for adding the fee (or discount)."
1585
  msgstr ""
1586
 
1587
+ #: includes/class-wcj-payment-gateways-fees.php:189
1588
+ #: includes/class-wcj-payment-gateways-fees.php:202
1589
  msgid "Set 0 to disable."
1590
  msgstr ""
1591
 
1592
+ #: includes/class-wcj-payment-gateways-fees.php:201
1593
+ msgid "Maximum cart amount for adding the fee (or discount)."
1594
  msgstr ""
1595
 
1596
+ #: includes/class-wcj-payment-gateways-fees.php:214
1597
+ msgid "Round the fee (or discount) value before adding to the cart."
1598
  msgstr ""
1599
 
1600
+ #: includes/class-wcj-payment-gateways-fees.php:223
1601
  msgid "If rounding is enabled, set precision here."
1602
  msgstr ""
1603
 
1604
+ #: includes/class-wcj-payment-gateways-fees.php:236
1605
  msgid "Is taxable?"
1606
  msgstr ""
1607
 
1608
+ #: includes/class-wcj-payment-gateways-fees.php:247
1609
  msgid "Tax Class (only if Taxable selected)."
1610
  msgstr ""
1611
 
1612
+ #: includes/class-wcj-payment-gateways-fees.php:252
1613
  msgid "Standard Rate"
1614
  msgstr ""
1615
 
1687
 
1688
  #: includes/class-wcj-pdf-invoices.php:208
1689
  #: includes/class-wcj-pdf-invoices.php:213
1690
+ #: includes/functions/wcj-invoicing-functions.php:19
1691
  msgid "Invoice"
1692
  msgstr ""
1693
 
2031
  msgstr ""
2032
 
2033
  #: includes/class-wcj-pdf-invoices.php:1264
2034
+ #: includes/class-wcj-wholesale-price.php:278
2035
+ #: includes/class-wcj-wholesale-price.php:279
2036
  msgid "Discount"
2037
  msgstr ""
2038
 
2152
  msgid "Enable save as pdf instead of view pdf"
2153
  msgstr ""
2154
 
2155
+ #: includes/class-wcj-pdf-invoicing.php:152
2156
  msgid "PDF Invoicing General Options"
2157
  msgstr ""
2158
 
2159
+ #: includes/class-wcj-pdf-invoicing.php:155
2160
  msgid "PDF Invoicing"
2161
  msgstr ""
2162
 
2163
+ #: includes/class-wcj-pdf-invoicing.php:157
2164
  msgid ""
2165
  "WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
2166
  msgstr ""
2167
 
2168
+ #: includes/class-wcj-pdf-invoicing.php:166
2169
  msgid "Disabled"
2170
  msgstr ""
2171
 
2172
+ #: includes/class-wcj-pdf-invoicing.php:167
2173
  msgid "Create on New Order"
2174
  msgstr ""
2175
 
2176
+ #: includes/class-wcj-pdf-invoicing.php:170
2177
  msgid "Create on Order Status"
2178
  msgstr ""
2179
 
2180
+ #: includes/class-wcj-price-by-country.php:64
2181
  msgid "Price by Country Options"
2182
  msgstr ""
2183
 
2184
+ #: includes/class-wcj-price-by-country.php:66
2185
  msgid ""
2186
  "Change product's price and currency by customer's country. Customer's "
2187
  "country is detected automatically by IP, or selected by customer manually."
2188
  msgstr ""
2189
 
2190
+ #: includes/class-wcj-price-by-country.php:70
2191
+ #: includes/class-wcj-price-by-country.php:305
2192
  msgid "Prices and Currencies by Country"
2193
  msgstr ""
2194
 
2195
+ #: includes/class-wcj-price-by-country.php:72
2196
  msgid ""
2197
  "Change WooCommerce product price and currency automatically by customer's "
2198
  "country."
2199
  msgstr ""
2200
 
2201
+ #: includes/class-wcj-price-by-country.php:79
2202
  msgid "Customer Country Detection Method"
2203
  msgstr ""
2204
 
2205
+ #: includes/class-wcj-price-by-country.php:81
2206
  msgid ""
2207
  "If you choose \"by user selection\", use [wcj_country_select_drop_down_list] "
2208
  "shortcode to display country selection list on frontend."
2209
  msgstr ""
2210
 
2211
+ #: includes/class-wcj-price-by-country.php:85
2212
  msgid "by IP"
2213
  msgstr ""
2214
 
2215
+ #: includes/class-wcj-price-by-country.php:86
2216
  msgid "by user selection"
2217
  msgstr ""
2218
 
2219
+ #: includes/class-wcj-price-by-country.php:92
2220
+ msgid "Override Country on Checkout with Billing Country"
2221
+ msgstr ""
2222
+
2223
+ #: includes/class-wcj-price-by-country.php:94
2224
+ msgid "Enable."
2225
+ msgstr ""
2226
+
2227
+ #: includes/class-wcj-price-by-country.php:100
2228
  msgid "Price Rounding"
2229
  msgstr ""
2230
 
2231
+ #: includes/class-wcj-price-by-country.php:101
2232
  msgid "If you choose to multiply price, set rounding options here."
2233
  msgstr ""
2234
 
2235
+ #: includes/class-wcj-price-by-country.php:106
2236
  msgid "No rounding"
2237
  msgstr ""
2238
 
2239
+ #: includes/class-wcj-price-by-country.php:107
2240
  msgid "Round"
2241
  msgstr ""
2242
 
2243
+ #: includes/class-wcj-price-by-country.php:108
2244
  msgid "Round down"
2245
  msgstr ""
2246
 
2247
+ #: includes/class-wcj-price-by-country.php:109
2248
  msgid "Round up"
2249
  msgstr ""
2250
 
2251
+ #: includes/class-wcj-price-by-country.php:114
2252
  msgid "Price by Country on per Product Basis"
2253
  msgstr ""
2254
 
2255
+ #: includes/class-wcj-price-by-country.php:116
2256
  msgid "This will add meta boxes in product edit."
2257
  msgstr ""
2258
 
2259
+ #: includes/class-wcj-price-by-country.php:124
2260
  msgid "Country Groups"
2261
  msgstr ""
2262
 
2263
+ #: includes/class-wcj-price-by-country.php:127
2264
  msgid "Groups Number"
2265
  msgstr ""
2266
 
2267
+ #: includes/class-wcj-price-by-country.php:143
2268
  msgid ""
2269
  "Countries. List of comma separated country codes.<br>For country codes and "
2270
+ "predifined sets visit <a href=\"http://boostwoo.com/features/prices-and-"
2271
+ "currencies-by-customers-country\">BoostWoo.com</a>"
2272
  msgstr ""
2273
 
2274
+ #: includes/class-wcj-price-by-country.php:164
2275
  msgid "Currency"
2276
  msgstr ""
2277
 
2278
+ #: includes/class-wcj-price-by-country.php:174
2279
  msgid "Exchange Rates"
2280
  msgstr ""
2281
 
2282
+ #: includes/class-wcj-price-by-country.php:177
2283
  msgid "Exchange Rates Updates"
2284
  msgstr ""
2285
 
2286
+ #: includes/class-wcj-price-by-country.php:182
2287
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:23
2288
  msgid "Enter Rates Manually"
2289
  msgstr ""
2290
 
2291
+ #: includes/class-wcj-price-by-country.php:183
2292
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:24
2293
  msgid "Automatically: Update Hourly"
2294
  msgstr ""
2295
 
2296
+ #: includes/class-wcj-price-by-country.php:184
2297
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:25
2298
  msgid "Automatically: Update Twice Daily"
2299
  msgstr ""
2300
 
2301
+ #: includes/class-wcj-price-by-country.php:185
2302
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:26
2303
  msgid "Automatically: Update Daily"
2304
  msgstr ""
2305
 
2306
+ #: includes/class-wcj-price-by-country.php:186
2307
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:27
2308
  msgid "Automatically: Update Weekly"
2309
  msgstr ""
2310
 
2311
+ #: includes/class-wcj-price-by-country.php:187
2312
  #: includes/price-by-country/class-wcj-exchange-rates-crons.php:28
2313
  msgid "Automatically: Update Every Minute"
2314
  msgstr ""
2315
 
2316
+ #: includes/class-wcj-price-by-country.php:209
2317
  msgid "Multiply Price by"
2318
  msgstr ""
2319
 
2320
+ #: includes/class-wcj-price-by-country.php:217
2321
  msgid "Grab %s rate from Yahoo.com"
2322
  msgstr ""
2323
 
2324
+ #: includes/class-wcj-price-by-country.php:232
2325
  #: includes/price-by-country/class-wcj-price-by-country-local.php:141
2326
  msgid "Make empty price"
2327
  msgstr ""
2507
 
2508
  #: includes/class-wcj-product-bulk-price-converter.php:113
2509
  #: includes/class-wcj-sku.php:165
2510
+ #: includes/reports/wcj-class-reports-stock.php:287
2511
  msgid "Product"
2512
  msgstr ""
2513
 
2516
  msgstr ""
2517
 
2518
  #: includes/class-wcj-product-bulk-price-converter.php:115
2519
+ #: includes/reports/wcj-class-reports-stock.php:288
2520
  msgid "Price"
2521
  msgstr ""
2522
 
2559
  msgid "Multiply all WooCommerce products prices by set value."
2560
  msgstr ""
2561
 
2562
+ #: includes/class-wcj-product-images.php:26
2563
  msgid "Product Images"
2564
  msgstr ""
2565
 
2566
+ #: includes/class-wcj-product-images.php:27
2567
  msgid "Customize WooCommerce products images, thumbnails and sale flashes."
2568
  msgstr ""
2569
 
2570
+ #: includes/class-wcj-product-images.php:85
2571
+ msgid "Replace image with custom HTML on single product page"
2572
+ msgstr ""
2573
+
2574
+ #: includes/class-wcj-product-images.php:91
2575
+ msgid "Replace image with custom HTML on archives"
2576
+ msgstr ""
2577
+
2578
+ #: includes/class-wcj-product-images.php:132
2579
+ #: includes/class-wcj-product-images.php:269
2580
  msgid "Sale!"
2581
  msgstr ""
2582
 
2583
+ #: includes/class-wcj-product-images.php:180
2584
  msgid "Product Image and Thumbnails"
2585
  msgstr ""
2586
 
2587
+ #: includes/class-wcj-product-images.php:190
2588
  msgid "Image and Thumbnails on Single"
2589
  msgstr ""
2590
 
2591
+ #: includes/class-wcj-product-images.php:198
2592
+ msgid "Replace Image on Single"
2593
+ msgstr ""
2594
+
2595
+ #: includes/class-wcj-product-images.php:199
2596
+ msgid ""
2597
+ "Replace image on single product page with custom HTML. Leave blank to "
2598
+ "disable."
2599
+ msgstr ""
2600
+
2601
+ #: includes/class-wcj-product-images.php:207
2602
+ msgid "Replace Thumbnails on Single"
2603
+ msgstr ""
2604
+
2605
+ #: includes/class-wcj-product-images.php:208
2606
+ msgid ""
2607
+ "Replace thumbnails on single product page with custom HTML. Leave blank to "
2608
+ "disable."
2609
+ msgstr ""
2610
+
2611
+ #: includes/class-wcj-product-images.php:216
2612
  msgid "Image on Single"
2613
  msgstr ""
2614
 
2615
+ #: includes/class-wcj-product-images.php:224
2616
  msgid "Thumbnails on Single"
2617
  msgstr ""
2618
 
2619
+ #: includes/class-wcj-product-images.php:232
2620
+ msgid "Replace Image on Archive"
2621
+ msgstr ""
2622
+
2623
+ #: includes/class-wcj-product-images.php:233
2624
+ msgid ""
2625
+ "Replace image on archive pages with custom HTML. Leave blank to disable."
2626
+ msgstr ""
2627
+
2628
+ #: includes/class-wcj-product-images.php:241
2629
  msgid "Image on Archives"
2630
  msgstr ""
2631
 
2632
+ #: includes/class-wcj-product-images.php:249
2633
  msgid "Single Product Thumbnails Columns"
2634
  msgstr ""
2635
 
2636
+ #: includes/class-wcj-product-images.php:257
2637
  msgid "Product Images Sale Flash"
2638
  msgstr ""
2639
 
2640
+ #: includes/class-wcj-product-images.php:267
2641
  msgid "HTML"
2642
  msgstr ""
2643
 
2644
+ #: includes/class-wcj-product-images.php:275
2645
  msgid "Hide on Archives (Categories)"
2646
  msgstr ""
2647
 
2648
+ #: includes/class-wcj-product-images.php:282
2649
  msgid "Hide on Single"
2650
  msgstr ""
2651
 
2652
+ #: includes/class-wcj-product-info.php:24
2653
  msgid "Before product"
2654
  msgstr ""
2655
 
2656
+ #: includes/class-wcj-product-info.php:25
2657
  msgid "Before product title"
2658
  msgstr ""
2659
 
2660
+ #: includes/class-wcj-product-info.php:26
2661
  msgid "After product"
2662
  msgstr ""
2663
 
2664
+ #: includes/class-wcj-product-info.php:27
2665
  msgid "After product title"
2666
  msgstr ""
2667
 
2668
+ #: includes/class-wcj-product-info.php:32
2669
  msgid "Inside single product summary"
2670
  msgstr ""
2671
 
2672
+ #: includes/class-wcj-product-info.php:33
2673
  msgid "Before single product summary"
2674
  msgstr ""
2675
 
2676
+ #: includes/class-wcj-product-info.php:34
2677
  msgid "After single product summary"
2678
  msgstr ""
2679
 
2680
+ #: includes/class-wcj-product-info.php:293
2681
  msgid "Available shortcodes are:"
2682
  msgstr ""
2683
 
2685
  msgid "%s ago"
2686
  msgstr ""
2687
 
2688
+ #: includes/class-wcj-product-info.php:640
2689
+ #: includes/class-wcj-product-info.php:768
2690
+ #: includes/class-wcj-product-info.php:808
2691
  #: includes/class-wcj-product-tabs.php:350
2692
  #: includes/class-wcj-product-tabs.php:442
2693
  #: includes/class-wcj-product-tabs.php:468
2695
  msgid "Priority (i.e. Order)"
2696
  msgstr ""
2697
 
2698
+ #: includes/class-wcj-product-info.php:648
2699
  msgid ""
2700
  "Number of product info fields. Click \"Save changes\" after you change this "
2701
  "number."
2702
  msgstr ""
2703
 
2704
+ #: includes/class-wcj-product-info.php:671
2705
  msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
2706
  msgstr ""
2707
 
2708
+ #: includes/class-wcj-product-info.php:672
2709
+ #: includes/class-wcj-product-info.php:786
2710
  msgid "Total sales: %total_sales%"
2711
  msgstr ""
2712
 
2713
+ #: includes/class-wcj-product-info.php:677
 
 
 
 
2714
  msgid "Field Nr. "
2715
  msgstr ""
2716
 
2717
+ #: includes/class-wcj-product-info.php:677
2718
  msgid "Available short codes: "
2719
  msgstr ""
2720
 
2721
+ #: includes/class-wcj-product-info.php:707
2722
  msgid "Product Info Options"
2723
  msgstr ""
2724
 
2725
+ #: includes/class-wcj-product-info.php:710
2726
+ #: includes/class-wcj-product-info.php:834
2727
  msgid "Product Info"
2728
  msgstr ""
2729
 
2730
+ #: includes/class-wcj-product-info.php:712
2731
  msgid "Add additional info to WooCommerce category and single product pages."
2732
  msgstr ""
2733
 
2734
+ #: includes/class-wcj-product-info.php:721
2735
  msgid "More Products Info"
2736
  msgstr ""
2737
 
2738
+ #: includes/class-wcj-product-info.php:722
2739
  msgid ""
2740
  "For full list of short codes, please visit <a target=\"_blank\" href="
2741
  "\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
2742
  "features/product-info/</a>"
2743
  msgstr ""
2744
 
2745
+ #: includes/class-wcj-product-info.php:727
2746
+ #: includes/class-wcj-product-info.php:738
2747
  msgid "Product Info on Archive Pages"
2748
  msgstr ""
2749
 
2750
+ #: includes/class-wcj-product-info.php:728
2751
  msgid "Product Info on Single Pages"
2752
  msgstr ""
2753
 
2754
+ #: includes/class-wcj-product-info.php:735
2755
  msgid "Even More Products Info"
2756
  msgstr ""
2757
 
2758
+ #: includes/class-wcj-product-info.php:747
2759
+ #: includes/class-wcj-product-info.php:784
2760
  msgid "HTML info."
2761
  msgstr ""
2762
 
2763
+ #: includes/class-wcj-product-info.php:749
2764
  msgid "SKU: %sku%"
2765
  msgstr ""
2766
 
2767
+ #: includes/class-wcj-product-info.php:775
2768
  msgid "Product Info on Single Product Pages"
2769
  msgstr ""
2770
 
2771
+ #: includes/class-wcj-product-info.php:815
2772
  msgid "Product IDs to exclude"
2773
  msgstr ""
2774
 
2775
+ #: includes/class-wcj-product-info.php:816
2776
  msgid "Comma separated list of product IDs to exclude from product info."
2777
  msgstr ""
2778
 
3003
  #: includes/class-wcj-product-tabs.php:452
3004
  #: includes/class-wcj-product-tabs.php:478
3005
  #: includes/class-wcj-product-tabs.php:504
3006
+ #: includes/class-wcj-related-products.php:125
3007
  #: includes/gateways/class-wc-gateway-wcj-custom.php:54
3008
  #: includes/input-fields/class-wcj-product-input-fields-abstract.php:94
3009
  #: includes/shipping/class-wc-shipping-wcj-custom.php:62
3126
  msgid "Save WooCommerce product purchase costs data for admin reports."
3127
  msgstr ""
3128
 
3129
+ #: includes/class-wcj-purchase-data.php:50
3130
  #: includes/class-wcj-purchase-data.php:238
3131
  #: includes/class-wcj-purchase-data.php:320
3132
  msgid "Profit"
3133
  msgstr ""
3134
 
3135
  #: includes/class-wcj-purchase-data.php:144
3136
+ #: includes/classes/class-wcj-module.php:71
3137
  msgid "WooCommerce Jetpack"
3138
  msgstr ""
3139
 
3165
  msgid "Buying"
3166
  msgstr ""
3167
 
3168
+ #: includes/class-wcj-related-products.php:25
3169
  msgid "Related Products"
3170
  msgstr ""
3171
 
3172
+ #: includes/class-wcj-related-products.php:26
3173
  msgid ""
3174
  "Change displayed WooCommerce related products number, columns, order, relate "
3175
  "by tag and/or category, or hide related products completely."
3176
  msgstr ""
3177
 
3178
+ #: includes/class-wcj-related-products.php:104
3179
  msgid "Related Products Number"
3180
  msgstr ""
3181
 
3182
+ #: includes/class-wcj-related-products.php:111
3183
  msgid "Related Products Columns"
3184
  msgstr ""
3185
 
3186
+ #: includes/class-wcj-related-products.php:118
3187
  msgid "Order by"
3188
  msgstr ""
3189
 
3190
+ #: includes/class-wcj-related-products.php:123
3191
  msgid "Random"
3192
  msgstr ""
3193
 
3194
+ #: includes/class-wcj-related-products.php:124
3195
  msgid "Date"
3196
  msgstr ""
3197
 
3198
+ #: includes/class-wcj-related-products.php:130
3199
  msgid "Order"
3200
  msgstr ""
3201
 
3202
+ #: includes/class-wcj-related-products.php:131
3203
  msgid "Ignored if order by \"Random\" is selected above."
3204
  msgstr ""
3205
 
3206
+ #: includes/class-wcj-related-products.php:136
3207
  msgid "Ascending"
3208
  msgstr ""
3209
 
3210
+ #: includes/class-wcj-related-products.php:137
3211
  msgid "Descending"
3212
  msgstr ""
3213
 
3214
+ #: includes/class-wcj-related-products.php:142
3215
  msgid "Relate by Category"
3216
  msgstr ""
3217
 
3218
+ #: includes/class-wcj-related-products.php:149
3219
  msgid "Relate by Tag"
3220
  msgstr ""
3221
 
3222
+ #: includes/class-wcj-related-products.php:156
3223
  msgid "Hide Related Products"
3224
  msgstr ""
3225
 
3565
  msgid "Sort by stock quantity: high to low"
3566
  msgstr ""
3567
 
3568
+ #: includes/class-wcj-wholesale-price.php:26
3569
  msgid "Wholesale Price"
3570
  msgstr ""
3571
 
3572
+ #: includes/class-wcj-wholesale-price.php:27
3573
  msgid ""
3574
  "Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
3575
  "more pay less)."
3576
  msgstr ""
3577
 
3578
+ #: includes/class-wcj-wholesale-price.php:193
3579
  msgid "Wholesale Price Levels Options"
3580
  msgstr ""
3581
 
3582
+ #: includes/class-wcj-wholesale-price.php:195
3583
  msgid ""
3584
  "Wholesale Price Levels Options. If you want to display prices table on "
3585
  "frontend, use [wcj_product_wholesale_price_table] shortcode."
3586
  msgstr ""
3587
 
3588
+ #: includes/class-wcj-wholesale-price.php:200
3589
  msgid "Use total cart quantity instead of product quantity"
3590
  msgstr ""
3591
 
3592
+ #: includes/class-wcj-wholesale-price.php:208
3593
+ msgid "Apply wholesale discount only if no other cart discounts were applied"
3594
+ msgstr ""
3595
+
3596
+ #: includes/class-wcj-wholesale-price.php:216
3597
  msgid "Show discount info on cart page"
3598
  msgstr ""
3599
 
3600
+ #: includes/class-wcj-wholesale-price.php:217
3601
  msgid "Show"
3602
  msgstr ""
3603
 
3604
+ #: includes/class-wcj-wholesale-price.php:224
3605
  msgid "If show discount info on cart page is enabled, set format here"
3606
  msgstr ""
3607
 
3608
+ #: includes/class-wcj-wholesale-price.php:232
3609
+ msgid "Discount Type"
3610
+ msgstr ""
3611
+
3612
+ #: includes/class-wcj-wholesale-price.php:243
3613
  msgid "Products to include"
3614
  msgstr ""
3615
 
3616
+ #: includes/class-wcj-wholesale-price.php:244
3617
  msgid "Leave blank to include all products."
3618
  msgstr ""
3619
 
3620
+ #: includes/class-wcj-wholesale-price.php:254
3621
  msgid "Number of levels"
3622
  msgstr ""
3623
 
3624
+ #: includes/class-wcj-wholesale-price.php:269
3625
  msgid "Min quantity"
3626
  msgstr ""
3627
 
3628
+ #: includes/class-wcj-wholesale-price.php:270
3629
  msgid "Minimum quantity to apply discount"
3630
  msgstr ""
3631
 
 
 
 
 
 
3632
  #: includes/class-wcj-wpml.php:24
3633
  msgid "WPML"
3634
  msgstr ""
3637
  msgid "Booster for WooCommerce basic WPML support."
3638
  msgstr ""
3639
 
3640
+ #: includes/classes/class-wcj-module.php:170
3641
  msgid "Back to Module Settings"
3642
  msgstr ""
3643
 
3644
+ #: includes/classes/class-wcj-module.php:182
3645
  msgid "Tools"
3646
  msgstr ""
3647
 
3648
+ #: includes/classes/class-wcj-module.php:188
3649
  msgid "Module Tools"
3650
  msgstr ""
3651
 
3652
+ #: includes/classes/class-wcj-module.php:241
3653
+ msgid "Module Options"
3654
  msgstr ""
3655
 
3656
  #: includes/currencies/wcj-currencies.php:4
5266
  msgid "Zimbabwe"
5267
  msgstr ""
5268
 
5269
+ #: includes/functions/wcj-functions.php:355
5270
  msgctxt "Order status"
5271
  msgid "Pending Payment"
5272
  msgstr ""
5273
 
5274
+ #: includes/functions/wcj-functions.php:357
5275
  msgctxt "Order status"
5276
  msgid "On Hold"
5277
  msgstr ""
5278
 
5279
+ #: includes/functions/wcj-invoicing-functions.php:20
5280
  msgid "Invoices"
5281
  msgstr ""
5282
 
5283
+ #: includes/functions/wcj-invoicing-functions.php:27
5284
  msgid "Proforma Invoice"
5285
  msgstr ""
5286
 
5287
+ #: includes/functions/wcj-invoicing-functions.php:28
5288
  msgid "Proforma Invoices"
5289
  msgstr ""
5290
 
5291
+ #: includes/functions/wcj-invoicing-functions.php:35
5292
  msgid "Packing Slip"
5293
  msgstr ""
5294
 
5295
+ #: includes/functions/wcj-invoicing-functions.php:36
5296
  msgid "Packing Slips"
5297
  msgstr ""
5298
 
5299
+ #: includes/functions/wcj-invoicing-functions.php:43
5300
  msgid "Credit Note"
5301
  msgstr ""
5302
 
5303
+ #: includes/functions/wcj-invoicing-functions.php:44
5304
  msgid "Credit Notes"
5305
  msgstr ""
5306
 
5307
+ #: includes/functions/wcj-invoicing-functions.php:51
5308
+ msgid "Custom Document"
5309
+ msgstr ""
5310
+
5311
+ #: includes/functions/wcj-invoicing-functions.php:52
5312
+ msgid "Custom Documents"
5313
+ msgstr ""
5314
+
5315
  #: includes/gateways/class-wc-gateway-wcj-custom.php:48
5316
  #: includes/shipping/class-wc-shipping-wcj-custom.php:56
5317
  msgid "Enable/Disable"
5526
  "set in WooCommerce > Settings > Jetpack > PDF Invoices (v2) > Numbering."
5527
  msgstr ""
5528
 
 
 
 
 
5529
  #: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:94
5530
  msgid "Date to start renumerating. Leave blank to renumerate all invoices."
5531
  msgstr ""
5669
  msgid "Select some gateways. Leave blank to include all."
5670
  msgstr ""
5671
 
5672
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:117
5673
  msgid "Admin - New Order"
5674
  msgstr ""
5675
 
5676
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:118
5677
+ msgid "Admin - Cancelled Order"
5678
+ msgstr ""
5679
+
5680
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:119
5681
  msgid "Customer - Processing Order"
5682
  msgstr ""
5683
 
5684
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:120
5685
  msgid "Customer - Completed Order"
5686
  msgstr ""
5687
 
5688
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:121
5689
  msgid "Customer - Invoice"
5690
  msgstr ""
5691
 
5692
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:122
5693
+ msgid "Customer - Refunded Order"
5694
+ msgstr ""
5695
+
5696
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:125
5697
  msgid "Attach PDF to emails"
5698
  msgstr ""
5699
 
5700
+ #: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:134
5701
  msgid "Select some emails"
5702
  msgstr ""
5703
 
5951
  "accounted."
5952
  msgstr ""
5953
 
5954
+ #: includes/reports/wcj-class-reports-stock.php:289
5955
  msgid "Stock"
5956
  msgstr ""
5957
 
5958
+ #: includes/reports/wcj-class-reports-stock.php:290
5959
  msgid "Stock price"
5960
  msgstr ""
5961
 
5962
+ #: includes/reports/wcj-class-reports-stock.php:291
5963
  msgid "Total stock price"
5964
  msgstr ""
5965
 
5966
+ #: includes/reports/wcj-class-reports-stock.php:293
5967
  msgid "Last sale"
5968
  msgstr ""
5969
 
5970
+ #: includes/reports/wcj-class-reports-stock.php:294
5971
  msgid "Sales in last %s days"
5972
  msgstr ""
5973
 
5974
+ #: includes/reports/wcj-class-reports-stock.php:295
5975
  msgid "Total sales"
5976
  msgstr ""
5977
 
5978
+ #: includes/reports/wcj-class-reports-stock.php:298
5979
  msgid "Stock to minimum"
5980
  msgstr ""
5981
 
5982
+ #: includes/reports/wcj-class-reports-stock.php:330
5983
  msgid "purchase price:"
5984
  msgstr ""
5985
 
5986
+ #: includes/reports/wcj-class-reports-stock.php:335
5987
  msgid "stock purchase price:"
5988
  msgstr ""
5989
 
5990
+ #: includes/reports/wcj-class-reports-stock.php:341
5991
  msgid "No sales yet"
5992
  msgstr ""
5993
 
5994
+ #: includes/reports/wcj-class-reports-stock.php:346
5995
  msgid "profit:"
5996
  msgstr ""
5997
 
5998
+ #: includes/reports/wcj-class-reports-stock.php:370
5999
  msgid "Total current stock value"
6000
  msgstr ""
6001
 
6002
+ #: includes/reports/wcj-class-reports-stock.php:371
6003
  msgid "Total stock value"
6004
  msgstr ""
6005
 
6006
+ #: includes/reports/wcj-class-reports-stock.php:372
6007
  msgid "Product stock value average"
6008
  msgstr ""
6009
 
6010
+ #: includes/reports/wcj-class-reports-stock.php:373
6011
  msgid "Product stock average"
6012
  msgstr ""
6013
 
6014
+ #: includes/reports/wcj-class-reports-stock.php:377
6015
  msgid "Report was generated in: "
6016
  msgstr ""
6017
 
6028
  msgid "Enable Custom Shipping"
6029
  msgstr ""
6030
 
6031
+ #: woocommerce-jetpack.php:138
6032
  msgid ""
6033
  "<strong>WooCommerce Jetpack</strong> plugin changed its name to "
6034
  "<strong>Booster for WooCommerce</strong>."
6035
  msgstr ""
6036
 
6037
+ #: woocommerce-jetpack.php:140
6038
  msgid "Got it! Hide this message"
6039
  msgstr ""
6040
 
6041
+ #. #-#-#-#-# plugin.pot (Booster for WooCommerce 2.2.7) #-#-#-#-#
6042
  #. Plugin Name of the plugin/theme
6043
+ #: woocommerce-jetpack.php:178
6044
  msgid "Booster for WooCommerce"
6045
  msgstr ""
6046
 
6047
+ #: woocommerce-jetpack.php:178
6048
  msgid "Booster Settings"
6049
  msgstr ""
6050
 
6051
+ #: woocommerce-jetpack.php:190
6052
  msgid "Docs"
6053
  msgstr ""
6054
 
6055
+ #: woocommerce-jetpack.php:191
6056
  msgid "Unlock all"
6057
  msgstr ""
6058
 
6059
+ #: woocommerce-jetpack.php:204
6060
  msgid "Install Booster for WooCommerce Plus to unlock all features"
6061
  msgstr ""
6062
 
6063
+ #: woocommerce-jetpack.php:205
6064
  msgid ""
6065
  "Some settings fields are locked and you will need %s to modify all locked "
6066
  "fields."
6067
  msgstr ""
6068
 
6069
+ #: woocommerce-jetpack.php:206
6070
  msgid "Buy now"
6071
  msgstr ""
6072
 
6073
+ #: woocommerce-jetpack.php:206
6074
  msgid "Visit %s"
6075
  msgstr ""
6076
 
6077
+ #: woocommerce-jetpack.php:210
6078
  msgid ""
6079
  "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
6080
  "WooCommerce Plus</a> to change value."
6081
  msgstr ""
6082
 
6083
+ #: woocommerce-jetpack.php:213
6084
  msgid ""
6085
  "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
6086
  "WooCommerce Plus</a> to change values below."
6087
  msgstr ""
6088
 
6089
+ #: woocommerce-jetpack.php:216
6090
  msgid ""
6091
  "Get <a href=\"http://BoostWoo.com/plus/\" target=\"_blank\">Booster for "
6092
  "WooCommerce Plus</a> to change values above."
6093
  msgstr ""
6094
 
6095
+ #: woocommerce-jetpack.php:219
6096
  msgid "Get Booster for WooCommerce Plus to change value."
6097
  msgstr ""
6098
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.3
7
- Stable tag: 2.2.7
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -111,6 +111,12 @@ To unlock all Booster for WooCommerce features, please install additional <a hre
111
 
112
  == Changelog ==
113
 
 
 
 
 
 
 
114
  = 2.2.7 - 22/08/2015 =
115
  * Dev - Russian translation added.
116
  * Dev - "Module" added to `add_enable_module_setting()` in `WCJ_Module`.
@@ -132,7 +138,7 @@ To unlock all Booster for WooCommerce features, please install additional <a hre
132
  * Dev - Code refactoring - Meta box support added to `WCJ_Module`.
133
  * Dev - Code refactoring - `get_settings()` added to `WCJ_Module`.
134
  * Dev - Dutch translation added.
135
- * Dev - POT file updated added.
136
  * Dev - PRICES & CURRENCIES - Price by Country - "WooJetpack" to "BoostWoo" in country group fields descriptions.
137
  * Dev - PRICES & CURRENCIES - Price by Country - "Override Country on Checkout with Billing Country" option added. "No country was detected" routine disabled.
138
  * Dev - PRICES & CURRENCIES - Wholesale Price - Option to set *fixed* discount value (not percent).
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.3
7
+ Stable tag: 2.2.8
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
111
 
112
  == Changelog ==
113
 
114
+ = 2.2.8 - 23/08/2015 =
115
+ * Fix - EMAILS & MISC. - WPML - "Creating WPML XML file on each settings saving" disabled. Manual "Regenerate wpml-config.xml file" tool added.
116
+ * Dev - Select All checkbox style modified in `output_dashboard_modules` function.
117
+ * Dev - Dutch translation updated.
118
+ * Dev - POT file updated.
119
+
120
  = 2.2.7 - 22/08/2015 =
121
  * Dev - Russian translation added.
122
  * Dev - "Module" added to `add_enable_module_setting()` in `WCJ_Module`.
138
  * Dev - Code refactoring - Meta box support added to `WCJ_Module`.
139
  * Dev - Code refactoring - `get_settings()` added to `WCJ_Module`.
140
  * Dev - Dutch translation added.
141
+ * Dev - POT file updated.
142
  * Dev - PRICES & CURRENCIES - Price by Country - "WooJetpack" to "BoostWoo" in country group fields descriptions.
143
  * Dev - PRICES & CURRENCIES - Price by Country - "Override Country on Checkout with Billing Country" option added. "No country was detected" routine disabled.
144
  * Dev - PRICES & CURRENCIES - Wholesale Price - Option to set *fixed* discount value (not percent).
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.7
7
  Author: Algoritmika Ltd
8
  Author URI: http://www.algoritmika.com
9
  Copyright: © 2015 Algoritmika Ltd.
@@ -364,6 +364,8 @@ final class WC_Jetpack {
364
  foreach ( $settings as $section ) {
365
 
366
  $values = $section->get_settings();
 
 
367
  $submodules_classes = array(
368
  'WCJ_PDF_Invoicing_Display',
369
  'WCJ_PDF_Invoicing_Emails',
@@ -378,9 +380,11 @@ final class WC_Jetpack {
378
  $this->module_statuses[] = $values[1];
379
  }
380
 
 
381
  foreach ( $values as $value ) {
382
  if ( isset( $value['default'] ) && isset( $value['id'] ) ) {
383
 
 
384
  if ( isset ( $_GET['woojetpack_admin_options_reset'] ) ) {
385
  require_once( ABSPATH . 'wp-includes/pluggable.php' );
386
  if ( is_super_admin() ) {
@@ -388,6 +392,7 @@ final class WC_Jetpack {
388
  }
389
  }
390
 
 
391
  $autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
392
  add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );
393
 
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.8
7
  Author: Algoritmika Ltd
8
  Author URI: http://www.algoritmika.com
9
  Copyright: © 2015 Algoritmika Ltd.
364
  foreach ( $settings as $section ) {
365
 
366
  $values = $section->get_settings();
367
+
368
+ // Modules statuses
369
  $submodules_classes = array(
370
  'WCJ_PDF_Invoicing_Display',
371
  'WCJ_PDF_Invoicing_Emails',
380
  $this->module_statuses[] = $values[1];
381
  }
382
 
383
+ // Adding options
384
  foreach ( $values as $value ) {
385
  if ( isset( $value['default'] ) && isset( $value['id'] ) ) {
386
 
387
+ // Admin reset
388
  if ( isset ( $_GET['woojetpack_admin_options_reset'] ) ) {
389
  require_once( ABSPATH . 'wp-includes/pluggable.php' );
390
  if ( is_super_admin() ) {
392
  }
393
  }
394
 
395
+ // Finally adding options
396
  $autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
397
  add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );
398
 
wpml-config.xml CHANGED
@@ -71,6 +71,15 @@
71
  <key name="wcj_add_to_cart_text_on_archives_in_cart_other" />
72
  <key name="wcj_checkout_place_order_button_text" />
73
  <key name="wcj_cart_custom_info_content_1" />
 
 
 
 
 
 
 
 
 
74
  <key name="wcj_mini_cart_custom_info_content_1" />
75
  <key name="wcj_checkout_fields_billing_country_label" />
76
  <key name="wcj_checkout_fields_billing_country_placeholder" />
71
  <key name="wcj_add_to_cart_text_on_archives_in_cart_other" />
72
  <key name="wcj_checkout_place_order_button_text" />
73
  <key name="wcj_cart_custom_info_content_1" />
74
+ <key name="wcj_cart_custom_info_content_2" />
75
+ <key name="wcj_cart_custom_info_content_3" />
76
+ <key name="wcj_cart_custom_info_content_4" />
77
+ <key name="wcj_cart_custom_info_content_5" />
78
+ <key name="wcj_cart_custom_info_content_6" />
79
+ <key name="wcj_cart_custom_info_content_7" />
80
+ <key name="wcj_cart_custom_info_content_8" />
81
+ <key name="wcj_cart_custom_info_content_9" />
82
+ <key name="wcj_cart_custom_info_content_10" />
83
  <key name="wcj_mini_cart_custom_info_content_1" />
84
  <key name="wcj_checkout_fields_billing_country_label" />
85
  <key name="wcj_checkout_fields_billing_country_placeholder" />