Version Description
- 01/09/2015 =
- Dev - Shortcodes - Orders -
[wcj_order_meta]
shortcode added (attribute:meta_key
). - Dev - Shortcodes - Orders -
[wcj_order_custom_meta_field]
shortcode added. Suggested by https://wordpress.org/support/topic/pdf-invoice-get-order-item-meta-data. - Dev - Shortcodes - General -
[wcj_text]
shortcode added. - Dev - Shortcodes - General -
not_lang
attribute added to[wcj_wpml]
shortcode;lang
modified to accept comma separated values. - Dev - Shortcodes -
wpml_not_language
attribute added to all shortcodes;wpml_language
modified to accept comma separated values. - Dev - Shortcodes -
billing_country
andnot_billing_country
attributes added to all shortcodes. - Fix - PRODUCTS - Product Input Fields - Local (i.e. per Product) Product Input Fields - Bug when increasing (and saving) the number of input fields, fixed.
- Dev - PRODUCTS - Product Input Fields - Local (i.e. per Product) Product Input Fields - Meta box layout changed.
- Dev - PRODUCTS - Product Tabs - Code refactoring.
- Dev - PRODUCTS - Product Tabs - Local (i.e. per Product) Custom Product Tabs - Meta box layout changed.
- Fix - PRODUCTS - Product Tabs - Local (i.e. per Product) Custom Product Tabs - Bug when increasing (and saving) the number of custom product tabs, fixed.
- Dev - PRODUCTS - Sorting - Remove All Sorting - Blaszok theme compatibility added.
- Dev - CART & CHECKOUT - Payment Gateways Fees and Discounts - Plus lock removed from "Tax Class" option.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 2.2.9 |
Comparing to | |
See all releases |
Code changes from version 2.2.7 to 2.2.9
- includes/admin/class-wc-settings-jetpack.php +32 -12
- includes/class-wcj-address-formats.php +2 -3
- includes/class-wcj-payment-gateways-fees.php +26 -32
- includes/class-wcj-product-input-fields.php +1 -0
- includes/class-wcj-product-tabs.php +231 -215
- includes/class-wcj-sorting.php +5 -11
- includes/class-wcj-wpml.php +72 -24
- includes/classes/class-wcj-pdf-invoice.php +5 -3
- includes/functions/wcj-html-functions.php +18 -19
- includes/input-fields/class-wcj-product-input-fields-per-product.php +61 -58
- includes/shortcodes/class-wcj-general-shortcodes.php +18 -3
- includes/shortcodes/class-wcj-orders-shortcodes.php +127 -101
- includes/shortcodes/class-wcj-shortcodes.php +48 -8
- langs/woocommerce-jetpack-nl_NL.mo +0 -0
- langs/woocommerce-jetpack-nl_NL.po +4116 -1440
- langs/woocommerce-jetpack.pot +506 -389
- readme.txt +23 -2
- woocommerce-jetpack.php +6 -1
- wpml-config.xml +9 -0
includes/admin/class-wc-settings-jetpack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Settings class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
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.
|
22 |
*/
|
23 |
function __construct() {
|
24 |
|
@@ -35,14 +35,15 @@ 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 |
}
|
41 |
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
?>
|
47 |
<tr valign="top">
|
48 |
<th scope="row" class="titledesc">
|
@@ -106,10 +107,27 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
|
|
106 |
</tr><?php
|
107 |
}
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
}
|
42 |
|
43 |
+
/**
|
44 |
+
* output_save_settings_button.
|
45 |
+
*
|
46 |
+
function output_save_settings_button( $value ) {
|
47 |
?>
|
48 |
<tr valign="top">
|
49 |
<th scope="row" class="titledesc">
|
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-address-formats.php
CHANGED
@@ -145,9 +145,8 @@ class WCJ_Address_Formats extends WCJ_Module {
|
|
145 |
'desc' => __( 'Address Formats by Country Options.', 'woocommerce-jetpack' ),
|
146 |
'id' => 'wcj_address_formats_country_options'
|
147 |
);
|
148 |
-
|
149 |
-
|
150 |
-
//wcj_log( $formats );
|
151 |
$formats = $this->get_default_address_formats();
|
152 |
foreach ( $formats as $country_code => $format ) {
|
153 |
$settings[] = array(
|
145 |
'desc' => __( 'Address Formats by Country Options.', 'woocommerce-jetpack' ),
|
146 |
'id' => 'wcj_address_formats_country_options'
|
147 |
);
|
148 |
+
// $formats = apply_filters( 'wcj_get_address_formats_filter', array() );
|
149 |
+
// $formats = WC()->countries->get_address_formats();
|
|
|
150 |
$formats = $this->get_default_address_formats();
|
151 |
foreach ( $formats as $country_code => $format ) {
|
152 |
$settings[] = array(
|
includes/class-wcj-payment-gateways-fees.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Payment Gateways Fees class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @since 2.2.2
|
9 |
* @author Algoritmika Ltd.
|
10 |
*/
|
@@ -47,33 +47,33 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
|
|
47 |
return $this->add_enable_module_setting( $settings );
|
48 |
}
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
add_filter( 'wcj_payment_gateways_fees_settings', array( $this, 'add_fees_settings' ) );
|
55 |
}
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
return;
|
70 |
wp_enqueue_script( 'wcj-payment-gateways-checkout' );
|
71 |
-
|
72 |
|
73 |
/**
|
74 |
* gateways_fees.
|
75 |
*
|
76 |
-
* @version 2.2.
|
77 |
*/
|
78 |
function gateways_fees() {
|
79 |
global $woocommerce;
|
@@ -110,7 +110,7 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
|
|
110 |
$taxable = ( 'yes' === get_option( 'wcj_gateways_fees_is_taxable_' . $current_gateway ) ) ? true : false;
|
111 |
$tax_class_name = '';
|
112 |
if ( $taxable ) {
|
113 |
-
$tax_class_id =
|
114 |
$tax_class_names = array_merge( array( '', ), WC_Tax::get_tax_classes() );
|
115 |
$tax_class_name = $tax_class_names[ $tax_class_id ];
|
116 |
}
|
@@ -120,14 +120,14 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
|
|
120 |
}
|
121 |
}
|
122 |
|
123 |
-
|
124 |
-
|
125 |
*
|
126 |
-
* @version 2.2.
|
127 |
-
|
128 |
function add_fees_settings( $settings ) {
|
129 |
// Gateway's Extra Fees
|
130 |
-
|
131 |
'title' => __( 'Payment Gateways Fees and Discounts Options', 'woocommerce-jetpack' ),
|
132 |
'type' => 'title',
|
133 |
'desc' => __( 'This section lets you set extra fees for payment gateways.', 'woocommerce-jetpack' ),
|
@@ -234,30 +234,24 @@ class WCJ_Payment_Gateways_Fees extends WCJ_Module {
|
|
234 |
array(
|
235 |
'title' => '',
|
236 |
'desc' => __( 'Is taxable?', 'woocommerce-jetpack' ),
|
237 |
-
/* 'desc_tip' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ), */
|
238 |
'id' => 'wcj_gateways_fees_is_taxable_' . $key,
|
239 |
'default' => 'no',
|
240 |
'type' => 'checkbox',
|
241 |
-
/* 'custom_attributes'
|
242 |
-
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' ), */
|
243 |
),
|
244 |
|
245 |
array(
|
246 |
'title' => '',
|
247 |
'desc' => __( 'Tax Class (only if Taxable selected).', 'woocommerce-jetpack' ),
|
248 |
-
'desc_tip' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_no_link' ),
|
249 |
'id' => 'wcj_gateways_fees_tax_class_id_' . $key,
|
250 |
'default' => '',
|
251 |
'type' => 'select',
|
252 |
'options' => array_merge( array( __( 'Standard Rate', 'woocommerce-jetpack' ) ), WC_Tax::get_tax_classes() ),
|
253 |
-
'custom_attributes'
|
254 |
-
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' ),
|
255 |
),
|
256 |
|
257 |
) );
|
258 |
-
|
259 |
|
260 |
-
|
261 |
|
262 |
return $settings;
|
263 |
}
|
4 |
*
|
5 |
* The WooCommerce Jetpack Payment Gateways Fees class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @since 2.2.2
|
9 |
* @author Algoritmika Ltd.
|
10 |
*/
|
47 |
return $this->add_enable_module_setting( $settings );
|
48 |
}
|
49 |
|
50 |
+
/**
|
51 |
+
* add_hooks.
|
52 |
+
*/
|
53 |
+
function add_hooks() {
|
54 |
add_filter( 'wcj_payment_gateways_fees_settings', array( $this, 'add_fees_settings' ) );
|
55 |
}
|
56 |
|
57 |
+
/**
|
58 |
+
* register_script.
|
59 |
+
*/
|
60 |
+
public function register_script() {
|
61 |
+
wp_register_script( 'wcj-payment-gateways-checkout', trailingslashit( plugin_dir_url( __FILE__ ) ) . 'js/checkout.js', array( 'jquery' ), false, true );
|
62 |
+
}
|
63 |
|
64 |
+
/**
|
65 |
+
* enqueue_checkout_script.
|
66 |
+
*/
|
67 |
+
public function enqueue_checkout_script() {
|
68 |
+
if( ! is_checkout() )
|
69 |
return;
|
70 |
wp_enqueue_script( 'wcj-payment-gateways-checkout' );
|
71 |
+
}
|
72 |
|
73 |
/**
|
74 |
* gateways_fees.
|
75 |
*
|
76 |
+
* @version 2.2.9
|
77 |
*/
|
78 |
function gateways_fees() {
|
79 |
global $woocommerce;
|
110 |
$taxable = ( 'yes' === get_option( 'wcj_gateways_fees_is_taxable_' . $current_gateway ) ) ? true : false;
|
111 |
$tax_class_name = '';
|
112 |
if ( $taxable ) {
|
113 |
+
$tax_class_id = get_option( 'wcj_gateways_fees_tax_class_id_' . $current_gateway, 0 );
|
114 |
$tax_class_names = array_merge( array( '', ), WC_Tax::get_tax_classes() );
|
115 |
$tax_class_name = $tax_class_names[ $tax_class_id ];
|
116 |
}
|
120 |
}
|
121 |
}
|
122 |
|
123 |
+
/**
|
124 |
+
* add_fees_settings.
|
125 |
*
|
126 |
+
* @version 2.2.9
|
127 |
+
*/
|
128 |
function add_fees_settings( $settings ) {
|
129 |
// Gateway's Extra Fees
|
130 |
+
$settings[] = array(
|
131 |
'title' => __( 'Payment Gateways Fees and Discounts Options', 'woocommerce-jetpack' ),
|
132 |
'type' => 'title',
|
133 |
'desc' => __( 'This section lets you set extra fees for payment gateways.', 'woocommerce-jetpack' ),
|
234 |
array(
|
235 |
'title' => '',
|
236 |
'desc' => __( 'Is taxable?', 'woocommerce-jetpack' ),
|
|
|
237 |
'id' => 'wcj_gateways_fees_is_taxable_' . $key,
|
238 |
'default' => 'no',
|
239 |
'type' => 'checkbox',
|
|
|
|
|
240 |
),
|
241 |
|
242 |
array(
|
243 |
'title' => '',
|
244 |
'desc' => __( 'Tax Class (only if Taxable selected).', 'woocommerce-jetpack' ),
|
|
|
245 |
'id' => 'wcj_gateways_fees_tax_class_id_' . $key,
|
246 |
'default' => '',
|
247 |
'type' => 'select',
|
248 |
'options' => array_merge( array( __( 'Standard Rate', 'woocommerce-jetpack' ) ), WC_Tax::get_tax_classes() ),
|
|
|
|
|
249 |
),
|
250 |
|
251 |
) );
|
252 |
+
}
|
253 |
|
254 |
+
$settings[] = array( 'type' => 'sectionend', 'id' => 'wcj_payment_gateways_fees_options' );
|
255 |
|
256 |
return $settings;
|
257 |
}
|
includes/class-wcj-product-input-fields.php
CHANGED
@@ -64,6 +64,7 @@ class WCJ_Product_Input_Fields {
|
|
64 |
|
65 |
/**
|
66 |
* handle_downloads.
|
|
|
67 |
* @version 2.2.2
|
68 |
* @since 2.2.2
|
69 |
*/
|
64 |
|
65 |
/**
|
66 |
* handle_downloads.
|
67 |
+
*
|
68 |
* @version 2.2.2
|
69 |
* @since 2.2.2
|
70 |
*/
|
includes/class-wcj-product-tabs.php
CHANGED
@@ -4,46 +4,43 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Product Tabs class.
|
6 |
*
|
7 |
-
* @
|
8 |
-
* @
|
9 |
-
* @category Class
|
10 |
-
* @author Algoritmika Ltd.
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
|
15 |
if ( ! class_exists( 'WCJ_Product_Tabs' ) ) :
|
16 |
|
17 |
-
class WCJ_Product_Tabs {
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
23 |
|
24 |
-
|
25 |
-
|
|
|
|
|
26 |
|
|
|
27 |
add_filter( 'woocommerce_product_tabs', array( $this, 'customize_product_tabs' ), 98 );
|
28 |
-
|
29 |
if ( 'yes' === get_option( 'wcj_custom_product_tabs_local_enabled' ) ) {
|
30 |
add_action( 'add_meta_boxes', array( $this, 'add_custom_tabs_meta_box' ) );
|
31 |
add_action( 'save_post_product', array( $this, 'save_custom_tabs_meta_box' ), 100, 2 );
|
32 |
}
|
33 |
-
|
34 |
-
|
35 |
-
// Settings hooks
|
36 |
-
add_filter( 'wcj_settings_sections', array( $this, 'settings_section' ) );
|
37 |
-
add_filter( 'wcj_settings_product_tabs', array( $this, 'get_settings' ), 100 );
|
38 |
-
add_filter( 'wcj_features_status', array( $this, 'add_enabled_option' ), 100 );
|
39 |
-
}
|
40 |
-
|
41 |
|
42 |
/**
|
43 |
* Customize the product tabs.
|
44 |
*/
|
45 |
function customize_product_tabs( $tabs ) {
|
46 |
|
|
|
47 |
// Unset
|
48 |
if ( get_option( 'wcj_product_info_product_tabs_description_disable' ) === 'yes' )
|
49 |
unset( $tabs['description'] );
|
@@ -69,6 +66,7 @@ class WCJ_Product_Tabs {
|
|
69 |
$tabs['additional_information']['title'] = get_option( 'wcj_product_info_product_tabs_additional_information_title' );
|
70 |
}
|
71 |
|
|
|
72 |
// Add New
|
73 |
// Add New - Global
|
74 |
global $product;
|
@@ -120,7 +118,7 @@ class WCJ_Product_Tabs {
|
|
120 |
$do_include = false;
|
121 |
$product_categories_objects = get_the_terms( $product->id, 'product_cat' );
|
122 |
if ( $product_categories_objects && ! empty( $product_categories_objects ) ) {
|
123 |
-
foreach ( $product_categories_objects as $product_categories_object )
|
124 |
if ( $product && $array_to_include && in_array( $product_categories_object->term_id, $array_to_include ) ) {
|
125 |
$do_include = true;
|
126 |
break;
|
@@ -133,9 +131,9 @@ class WCJ_Product_Tabs {
|
|
133 |
|
134 |
// Adding the tab
|
135 |
$tabs[ $key ] = array(
|
136 |
-
'title'
|
137 |
-
'priority'
|
138 |
-
'callback'
|
139 |
);
|
140 |
}
|
141 |
}
|
@@ -156,58 +154,85 @@ class WCJ_Product_Tabs {
|
|
156 |
|
157 |
if ( '' != get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_title_' . $key, true ) && '' != get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_content_' . $key, true ) )
|
158 |
$tabs[ $key ] = array(
|
159 |
-
'title'
|
160 |
-
'priority'
|
161 |
-
'callback'
|
162 |
);
|
163 |
}
|
164 |
|
165 |
return $tabs;
|
166 |
}
|
167 |
|
|
|
|
|
|
|
168 |
function create_new_custom_product_tab_local( $key, $tab ) {
|
169 |
$current_post_id = get_the_ID();
|
170 |
echo apply_filters( 'the_content', get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_content_' . $key, true ) );
|
171 |
}
|
172 |
|
|
|
|
|
|
|
173 |
function create_new_custom_product_tab_global( $key, $tab ) {
|
174 |
echo apply_filters( 'the_content', get_option( 'wcj_custom_product_tabs_content_' . $key ) );
|
175 |
}
|
176 |
|
177 |
/**
|
178 |
* save_custom_tabs_meta_box.
|
|
|
|
|
179 |
*/
|
180 |
public function save_custom_tabs_meta_box( $post_id, $post ) {
|
|
|
181 |
// Check that we are saving with custom tab metabox displayed.
|
182 |
if ( ! isset( $_POST['woojetpack_custom_tabs_save_post'] ) )
|
183 |
return;
|
184 |
-
|
185 |
-
$option_name = 'wcj_custom_product_tabs_local_total_number';
|
186 |
-
$total_custom_tabs = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_custom_product_tabs_local_total_number_default', 1 ) );
|
187 |
-
update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
188 |
// Save: title, priority, content
|
189 |
$option_names = array(
|
190 |
'wcj_custom_product_tabs_title_local_',
|
191 |
'wcj_custom_product_tabs_priority_local_',
|
192 |
'wcj_custom_product_tabs_content_local_',
|
193 |
);
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
196 |
update_post_meta( $post_id, '_' . $option_name . $i, $_POST[ $option_name . $i ] );
|
|
|
197 |
}
|
|
|
|
|
|
|
|
|
|
|
198 |
}
|
199 |
|
200 |
/**
|
201 |
* add_custom_tabs_meta_box.
|
|
|
|
|
202 |
*/
|
203 |
public function add_custom_tabs_meta_box() {
|
204 |
-
add_meta_box(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
}
|
206 |
|
207 |
/**
|
208 |
* create_custom_tabs_meta_box.
|
|
|
|
|
209 |
*/
|
210 |
public function create_custom_tabs_meta_box() {
|
|
|
211 |
$current_post_id = get_the_ID();
|
212 |
$option_name = 'wcj_custom_product_tabs_local_total_number';
|
213 |
if ( ! ( $total_custom_tabs = get_post_meta( $current_post_id, '_' . $option_name, true ) ) )
|
@@ -234,168 +259,139 @@ class WCJ_Product_Tabs {
|
|
234 |
|
235 |
$options = array(
|
236 |
array(
|
237 |
-
'id'
|
238 |
-
'title'
|
239 |
-
'type'
|
240 |
),
|
241 |
array(
|
242 |
-
'id'
|
243 |
-
'title'
|
244 |
-
'type'
|
245 |
),
|
246 |
array(
|
247 |
-
'id'
|
248 |
-
'title'
|
249 |
-
'type'
|
250 |
),
|
251 |
);
|
252 |
-
$html .= '<h4>' . __( 'Customize the tab(s)', 'woocommerce-jetpack' ) . '</h4>';
|
253 |
-
$html .= '<table style="width:100%;">';
|
254 |
for ( $i = 1; $i <= $total_custom_tabs; $i++ ) {
|
255 |
-
$
|
256 |
-
$html .= '<
|
|
|
257 |
foreach ( $options as $option ) {
|
258 |
$option_id = $option['id'] . $i;
|
259 |
$option_value = get_post_meta( $current_post_id, '_' . $option_id, true );
|
260 |
if ( ! $option_value && 'wcj_custom_product_tabs_priority_local_' == $option['id'] )
|
261 |
$option_value = 50;
|
262 |
-
$html .= '<th>' . $option['title'] . '</th>';
|
263 |
-
if ( 'textarea' === $option['type'] )
|
264 |
-
$html .= '<td style="width:30%;">';
|
265 |
-
else
|
266 |
-
$html .= '<td>';
|
267 |
switch ( $option['type'] ) {
|
268 |
case 'number':
|
269 |
case 'text':
|
270 |
-
$
|
271 |
break;
|
272 |
case 'textarea':
|
273 |
-
$
|
274 |
break;
|
275 |
}
|
276 |
-
$
|
277 |
}
|
278 |
-
$html .= '
|
279 |
}
|
280 |
-
$html .= '</table>';
|
281 |
$html .= '<input type="hidden" name="woojetpack_custom_tabs_save_post" value="woojetpack_custom_tabs_save_post">';
|
282 |
echo $html;
|
283 |
}
|
284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
|
286 |
-
|
287 |
-
* add_enabled_option.
|
288 |
-
*/
|
289 |
-
public function add_enabled_option( $settings ) {
|
290 |
-
$all_settings = $this->get_settings();
|
291 |
-
$settings[] = $all_settings[1];
|
292 |
-
return $settings;
|
293 |
-
}
|
294 |
-
|
295 |
-
/**
|
296 |
-
* settings_section.
|
297 |
-
*/
|
298 |
-
function settings_section( $sections ) {
|
299 |
-
$sections['product_tabs'] = __( 'Product Tabs', 'woocommerce-jetpack' );
|
300 |
-
return $sections;
|
301 |
-
}
|
302 |
-
|
303 |
-
/**
|
304 |
-
* get_settings.
|
305 |
-
*/
|
306 |
-
function get_settings() {
|
307 |
-
|
308 |
-
$settings = array(
|
309 |
-
|
310 |
-
array( 'title' => __( 'Product Tabs Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => '', 'id' => 'wcj_product_tabs_options' ),
|
311 |
-
|
312 |
-
array(
|
313 |
-
'title' => __( 'Product Tabs', 'woocommerce-jetpack' ),
|
314 |
-
'desc' => '<strong>' . __( 'Enable Module', 'woocommerce-jetpack' ) . '</strong>',
|
315 |
-
'desc_tip' => __( 'Add custom product tabs - globally or per product. Customize or completely remove WooCommerce default product tabs.', 'woocommerce-jetpack' ),
|
316 |
-
'id' => 'wcj_product_tabs_enabled',
|
317 |
-
'default' => 'no',
|
318 |
-
'type' => 'checkbox',
|
319 |
-
),
|
320 |
-
|
321 |
-
array( 'type' => 'sectionend', 'id' => 'wcj_product_tabs_options' ),
|
322 |
|
323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
|
325 |
array(
|
326 |
-
'title'
|
327 |
-
'desc_tip'
|
328 |
-
'id'
|
329 |
-
'default'
|
330 |
-
'type'
|
331 |
-
'desc'
|
332 |
'custom_attributes'
|
333 |
-
|
334 |
),
|
335 |
-
|
336 |
|
337 |
for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_custom_product_tabs_global_total_number', 1 ) ); $i++ ) {
|
338 |
$settings = array_merge( $settings,
|
339 |
array(
|
340 |
array(
|
341 |
-
'title'
|
342 |
-
'desc'
|
343 |
-
'id'
|
344 |
-
'default'
|
345 |
-
'type'
|
346 |
-
'css'
|
347 |
),
|
348 |
array(
|
349 |
-
'title'
|
350 |
-
'desc'
|
351 |
-
'id'
|
352 |
-
'default'
|
353 |
-
'type'
|
354 |
),
|
355 |
array(
|
356 |
-
'title'
|
357 |
-
'desc'
|
358 |
-
'desc_tip'
|
359 |
-
'id'
|
360 |
-
'default'
|
361 |
-
'type'
|
362 |
-
'css'
|
363 |
),
|
364 |
array(
|
365 |
-
'title'
|
366 |
-
'desc'
|
367 |
-
'desc_tip'
|
368 |
-
'id'
|
369 |
-
'default'
|
370 |
-
'type'
|
371 |
-
'css'
|
372 |
),
|
373 |
array(
|
374 |
-
'title'
|
375 |
-
'desc'
|
376 |
-
'desc_tip'
|
377 |
-
'id'
|
378 |
-
'default'
|
379 |
-
'type'
|
380 |
-
'css'
|
381 |
),
|
382 |
array(
|
383 |
-
'title'
|
384 |
-
'desc'
|
385 |
-
'desc_tip'
|
386 |
-
'id'
|
387 |
-
'default'
|
388 |
-
'type'
|
389 |
-
'css'
|
390 |
),
|
391 |
array(
|
392 |
-
'title'
|
393 |
-
'desc'
|
394 |
-
'desc_tip'
|
395 |
-
'id'
|
396 |
-
'default'
|
397 |
-
'type'
|
398 |
-
'css'
|
399 |
),
|
400 |
)
|
401 |
);
|
@@ -403,117 +399,137 @@ class WCJ_Product_Tabs {
|
|
403 |
|
404 |
$settings = array_merge( $settings, array(
|
405 |
|
406 |
-
array(
|
|
|
|
|
|
|
407 |
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
array(
|
411 |
-
'title'
|
412 |
-
|
413 |
-
'id'
|
414 |
-
'default'
|
415 |
-
'type'
|
416 |
),
|
417 |
|
418 |
array(
|
419 |
-
'title'
|
420 |
-
'id'
|
421 |
-
'default'
|
422 |
-
'type'
|
423 |
-
'desc'
|
424 |
'custom_attributes'
|
425 |
-
|
426 |
),
|
427 |
|
428 |
-
array(
|
|
|
|
|
|
|
429 |
|
430 |
-
|
431 |
-
array(
|
|
|
|
|
|
|
|
|
|
|
432 |
|
433 |
array(
|
434 |
-
'title'
|
435 |
-
'desc'
|
436 |
-
'id'
|
437 |
-
'default'
|
438 |
-
'type'
|
439 |
),
|
440 |
|
441 |
array(
|
442 |
-
'title'
|
443 |
-
'id'
|
444 |
-
'default'
|
445 |
-
'type'
|
446 |
-
'desc'
|
447 |
'custom_attributes'
|
448 |
-
|
449 |
),
|
450 |
|
451 |
array(
|
452 |
-
'title'
|
453 |
-
'desc_tip'
|
454 |
-
'id'
|
455 |
-
'default'
|
456 |
-
'type'
|
457 |
),
|
458 |
|
459 |
array(
|
460 |
-
'title'
|
461 |
-
'desc'
|
462 |
-
'id'
|
463 |
-
'default'
|
464 |
-
'type'
|
465 |
),
|
466 |
|
467 |
array(
|
468 |
-
'title'
|
469 |
-
'id'
|
470 |
-
'default'
|
471 |
-
'type'
|
472 |
-
'desc'
|
473 |
'custom_attributes'
|
474 |
-
|
475 |
),
|
476 |
|
477 |
array(
|
478 |
-
'title'
|
479 |
-
'desc_tip'
|
480 |
-
'id'
|
481 |
-
'default'
|
482 |
-
'type'
|
483 |
),
|
484 |
|
485 |
array(
|
486 |
-
'title'
|
487 |
-
'desc'
|
488 |
-
'id'
|
489 |
-
'default'
|
490 |
-
'type'
|
491 |
),
|
492 |
|
493 |
array(
|
494 |
-
'title'
|
495 |
-
'id'
|
496 |
-
'default'
|
497 |
-
'type'
|
498 |
-
'desc'
|
499 |
'custom_attributes'
|
500 |
-
|
501 |
),
|
502 |
|
503 |
array(
|
504 |
-
'title'
|
505 |
-
'desc_tip'
|
506 |
-
'id'
|
507 |
-
'default'
|
508 |
-
'type'
|
509 |
),
|
510 |
|
511 |
-
array(
|
|
|
|
|
|
|
512 |
|
513 |
) );
|
514 |
|
515 |
-
|
516 |
-
|
517 |
}
|
518 |
|
519 |
endif;
|
4 |
*
|
5 |
* The WooCommerce Jetpack Product Tabs class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
+
* @author Algoritmika Ltd.
|
|
|
|
|
9 |
*/
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
12 |
|
13 |
if ( ! class_exists( 'WCJ_Product_Tabs' ) ) :
|
14 |
|
15 |
+
class WCJ_Product_Tabs extends WCJ_Module {
|
16 |
|
17 |
+
/**
|
18 |
+
* Constructor.
|
19 |
+
*
|
20 |
+
* @version 2.2.9
|
21 |
+
*/
|
22 |
+
public function __construct() {
|
23 |
|
24 |
+
$this->id = 'product_tabs';
|
25 |
+
$this->short_desc = __( 'Product Tabs', 'woocommerce-jetpack' );
|
26 |
+
$this->desc = __( 'Add custom product tabs - globally or per product. Customize or completely remove WooCommerce default product tabs.', 'woocommerce-jetpack' );
|
27 |
+
parent::__construct();
|
28 |
|
29 |
+
if ( $this->is_enabled() ) {
|
30 |
add_filter( 'woocommerce_product_tabs', array( $this, 'customize_product_tabs' ), 98 );
|
|
|
31 |
if ( 'yes' === get_option( 'wcj_custom_product_tabs_local_enabled' ) ) {
|
32 |
add_action( 'add_meta_boxes', array( $this, 'add_custom_tabs_meta_box' ) );
|
33 |
add_action( 'save_post_product', array( $this, 'save_custom_tabs_meta_box' ), 100, 2 );
|
34 |
}
|
35 |
+
}
|
36 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
/**
|
39 |
* Customize the product tabs.
|
40 |
*/
|
41 |
function customize_product_tabs( $tabs ) {
|
42 |
|
43 |
+
// DEFAULT TABS
|
44 |
// Unset
|
45 |
if ( get_option( 'wcj_product_info_product_tabs_description_disable' ) === 'yes' )
|
46 |
unset( $tabs['description'] );
|
66 |
$tabs['additional_information']['title'] = get_option( 'wcj_product_info_product_tabs_additional_information_title' );
|
67 |
}
|
68 |
|
69 |
+
// CUSTOM TABS
|
70 |
// Add New
|
71 |
// Add New - Global
|
72 |
global $product;
|
118 |
$do_include = false;
|
119 |
$product_categories_objects = get_the_terms( $product->id, 'product_cat' );
|
120 |
if ( $product_categories_objects && ! empty( $product_categories_objects ) ) {
|
121 |
+
foreach ( $product_categories_objects as $product_categories_object ) {
|
122 |
if ( $product && $array_to_include && in_array( $product_categories_object->term_id, $array_to_include ) ) {
|
123 |
$do_include = true;
|
124 |
break;
|
131 |
|
132 |
// Adding the tab
|
133 |
$tabs[ $key ] = array(
|
134 |
+
'title' => get_option( 'wcj_custom_product_tabs_title_' . $key ),
|
135 |
+
'priority' => get_option( 'wcj_custom_product_tabs_priority_' . $key, 40 ),
|
136 |
+
'callback' => array( $this, 'create_new_custom_product_tab_global' ),
|
137 |
);
|
138 |
}
|
139 |
}
|
154 |
|
155 |
if ( '' != get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_title_' . $key, true ) && '' != get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_content_' . $key, true ) )
|
156 |
$tabs[ $key ] = array(
|
157 |
+
'title' => get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_title_' . $key, true ),
|
158 |
+
'priority' => $tab_priority,
|
159 |
+
'callback' => array( $this, 'create_new_custom_product_tab_local' ),
|
160 |
);
|
161 |
}
|
162 |
|
163 |
return $tabs;
|
164 |
}
|
165 |
|
166 |
+
/**
|
167 |
+
* create_new_custom_product_tab_local.
|
168 |
+
*/
|
169 |
function create_new_custom_product_tab_local( $key, $tab ) {
|
170 |
$current_post_id = get_the_ID();
|
171 |
echo apply_filters( 'the_content', get_post_meta( $current_post_id, '_' . 'wcj_custom_product_tabs_content_' . $key, true ) );
|
172 |
}
|
173 |
|
174 |
+
/**
|
175 |
+
* create_new_custom_product_tab_global.
|
176 |
+
*/
|
177 |
function create_new_custom_product_tab_global( $key, $tab ) {
|
178 |
echo apply_filters( 'the_content', get_option( 'wcj_custom_product_tabs_content_' . $key ) );
|
179 |
}
|
180 |
|
181 |
/**
|
182 |
* save_custom_tabs_meta_box.
|
183 |
+
*
|
184 |
+
* @version 2.2.9
|
185 |
*/
|
186 |
public function save_custom_tabs_meta_box( $post_id, $post ) {
|
187 |
+
|
188 |
// Check that we are saving with custom tab metabox displayed.
|
189 |
if ( ! isset( $_POST['woojetpack_custom_tabs_save_post'] ) )
|
190 |
return;
|
191 |
+
|
|
|
|
|
|
|
192 |
// Save: title, priority, content
|
193 |
$option_names = array(
|
194 |
'wcj_custom_product_tabs_title_local_',
|
195 |
'wcj_custom_product_tabs_priority_local_',
|
196 |
'wcj_custom_product_tabs_content_local_',
|
197 |
);
|
198 |
+
$default_total_custom_tabs = apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_custom_product_tabs_local_total_number_default', 1 ) );
|
199 |
+
$total_custom_tabs_before_saving = get_post_meta( $post_id, '_' . 'wcj_custom_product_tabs_local_total_number', true );
|
200 |
+
$total_custom_tabs_before_saving = ( '' != $total_custom_tabs_before_saving ) ? $total_custom_tabs_before_saving : $default_total_custom_tabs;
|
201 |
+
for ( $i = 1; $i <= $total_custom_tabs_before_saving; $i++ ) {
|
202 |
+
foreach ( $option_names as $option_name ) {
|
203 |
update_post_meta( $post_id, '_' . $option_name . $i, $_POST[ $option_name . $i ] );
|
204 |
+
}
|
205 |
}
|
206 |
+
|
207 |
+
// Save: total custom tabs number
|
208 |
+
$option_name = 'wcj_custom_product_tabs_local_total_number';
|
209 |
+
$total_custom_tabs = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : $default_total_custom_tabs;
|
210 |
+
update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
211 |
}
|
212 |
|
213 |
/**
|
214 |
* add_custom_tabs_meta_box.
|
215 |
+
*
|
216 |
+
* @version 2.2.9
|
217 |
*/
|
218 |
public function add_custom_tabs_meta_box() {
|
219 |
+
add_meta_box(
|
220 |
+
'wc-jetpack-custom-tabs',
|
221 |
+
__( 'WooCommerce Jetpack: Custom Tabs', 'woocommerce-jetpack' ),
|
222 |
+
array( $this, 'create_custom_tabs_meta_box' ),
|
223 |
+
'product',
|
224 |
+
'normal',
|
225 |
+
'high'
|
226 |
+
);
|
227 |
}
|
228 |
|
229 |
/**
|
230 |
* create_custom_tabs_meta_box.
|
231 |
+
*
|
232 |
+
* @version 2.2.9
|
233 |
*/
|
234 |
public function create_custom_tabs_meta_box() {
|
235 |
+
|
236 |
$current_post_id = get_the_ID();
|
237 |
$option_name = 'wcj_custom_product_tabs_local_total_number';
|
238 |
if ( ! ( $total_custom_tabs = get_post_meta( $current_post_id, '_' . $option_name, true ) ) )
|
259 |
|
260 |
$options = array(
|
261 |
array(
|
262 |
+
'id' => 'wcj_custom_product_tabs_title_local_',
|
263 |
+
'title' => __( 'Title', 'woocommerce-jetpack' ),
|
264 |
+
'type' => 'text',
|
265 |
),
|
266 |
array(
|
267 |
+
'id' => 'wcj_custom_product_tabs_content_local_',
|
268 |
+
'title' => __( 'Content', 'woocommerce-jetpack' ),
|
269 |
+
'type' => 'textarea',
|
270 |
),
|
271 |
array(
|
272 |
+
'id' => 'wcj_custom_product_tabs_priority_local_',
|
273 |
+
'title' => __( 'Order', 'woocommerce-jetpack' ),
|
274 |
+
'type' => 'number',
|
275 |
),
|
276 |
);
|
277 |
+
// $html .= '<h4>' . __( 'Customize the tab(s)', 'woocommerce-jetpack' ) . '</h4>';
|
|
|
278 |
for ( $i = 1; $i <= $total_custom_tabs; $i++ ) {
|
279 |
+
$data = array();
|
280 |
+
$html .= '<hr>';
|
281 |
+
$html .= '<h4>' . __( 'Custom Product Tab', 'woocommerce-jetpack' ) . ' #' . $i . '</h4>';
|
282 |
foreach ( $options as $option ) {
|
283 |
$option_id = $option['id'] . $i;
|
284 |
$option_value = get_post_meta( $current_post_id, '_' . $option_id, true );
|
285 |
if ( ! $option_value && 'wcj_custom_product_tabs_priority_local_' == $option['id'] )
|
286 |
$option_value = 50;
|
|
|
|
|
|
|
|
|
|
|
287 |
switch ( $option['type'] ) {
|
288 |
case 'number':
|
289 |
case 'text':
|
290 |
+
$the_field = '<input type="' . $option['type'] . '" id="' . $option_id . '" name="' . $option_id . '" value="' . $option_value . '">';
|
291 |
break;
|
292 |
case 'textarea':
|
293 |
+
$the_field = '<textarea class="short" rows="10" cols="40" id="' . $option_id . '" name="' . $option_id . '">' . $option_value . '</textarea>';
|
294 |
break;
|
295 |
}
|
296 |
+
$data[] = array( $option['title'], $the_field );
|
297 |
}
|
298 |
+
$html .= wcj_get_table_html( $data, array( 'table_heading_type' => 'vertical', ) );
|
299 |
}
|
|
|
300 |
$html .= '<input type="hidden" name="woojetpack_custom_tabs_save_post" value="woojetpack_custom_tabs_save_post">';
|
301 |
echo $html;
|
302 |
}
|
303 |
|
304 |
+
/**
|
305 |
+
* get_settings.
|
306 |
+
*
|
307 |
+
* @version 2.2.9
|
308 |
+
*/
|
309 |
+
function get_settings() {
|
310 |
|
311 |
+
$settings = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
|
313 |
+
// Global Custom Tabs
|
314 |
+
array(
|
315 |
+
'title' => __( 'Custom Product Tabs Options', 'woocommerce-jetpack' ),
|
316 |
+
'type' => 'title',
|
317 |
+
'desc' => __( 'This section lets you add custom single product tabs.', 'woocommerce-jetpack' ),
|
318 |
+
'id' => 'wcj_custom_product_tabs_options',
|
319 |
+
),
|
320 |
|
321 |
array(
|
322 |
+
'title' => __( 'Custom Product Tabs Number', 'woocommerce-jetpack' ),
|
323 |
+
'desc_tip' => __( 'Click "Save changes" after you change this number.', 'woocommerce-jetpack' ),
|
324 |
+
'id' => 'wcj_custom_product_tabs_global_total_number',
|
325 |
+
'default' => 1,
|
326 |
+
'type' => 'number',
|
327 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
328 |
'custom_attributes'
|
329 |
+
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
330 |
),
|
331 |
+
);
|
332 |
|
333 |
for ( $i = 1; $i <= apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_custom_product_tabs_global_total_number', 1 ) ); $i++ ) {
|
334 |
$settings = array_merge( $settings,
|
335 |
array(
|
336 |
array(
|
337 |
+
'title' => __( 'Custom Product Tab', 'woocommerce-jetpack' ) . ' #' . $i,
|
338 |
+
'desc' => __( 'Title', 'woocommerce-jetpack' ),
|
339 |
+
'id' => 'wcj_custom_product_tabs_title_global_' . $i,
|
340 |
+
'default' => '',
|
341 |
+
'type' => 'text',
|
342 |
+
'css' => 'width:30%;min-width:300px;',
|
343 |
),
|
344 |
array(
|
345 |
+
'title' => '',
|
346 |
+
'desc' => __( 'Priority (i.e. Order)', 'woocommerce-jetpack' ),
|
347 |
+
'id' => 'wcj_custom_product_tabs_priority_global_' . $i,
|
348 |
+
'default' => (40 + $i - 1),
|
349 |
+
'type' => 'number',
|
350 |
),
|
351 |
array(
|
352 |
+
'title' => '',
|
353 |
+
'desc' => __( 'Content', 'woocommerce-jetpack' ),
|
354 |
+
'desc_tip' => __( 'You can use shortcodes here...', 'woocommerce-jetpack' ),
|
355 |
+
'id' => 'wcj_custom_product_tabs_content_global_' . $i,
|
356 |
+
'default' => '',
|
357 |
+
'type' => 'textarea',
|
358 |
+
'css' => 'width:50%;min-width:300px;height:200px;',
|
359 |
),
|
360 |
array(
|
361 |
+
'title' => '',
|
362 |
+
'desc' => __( 'Comma separated PRODUCT IDs to HIDE this tab', 'woocommerce-jetpack' ),
|
363 |
+
'desc_tip' => __( 'To hide this tab from some products, enter product IDs here.', 'woocommerce-jetpack' ),
|
364 |
+
'id' => 'wcj_custom_product_tabs_title_global_hide_in_product_ids_' . $i,
|
365 |
+
'default' => '',
|
366 |
+
'type' => 'text',
|
367 |
+
'css' => 'width:30%;min-width:300px;',
|
368 |
),
|
369 |
array(
|
370 |
+
'title' => '',
|
371 |
+
'desc' => __( 'Comma separated CATEGORY IDs to HIDE this tab', 'woocommerce-jetpack' ),
|
372 |
+
'desc_tip' => __( 'To hide this tab from some categories, enter category IDs here.', 'woocommerce-jetpack' ),
|
373 |
+
'id' => 'wcj_custom_product_tabs_title_global_hide_in_cats_ids_' . $i,
|
374 |
+
'default' => '',
|
375 |
+
'type' => 'text',
|
376 |
+
'css' => 'width:30%;min-width:300px;',
|
377 |
),
|
378 |
array(
|
379 |
+
'title' => '',
|
380 |
+
'desc' => __( 'Comma separated PRODUCT IDs to SHOW this tab', 'woocommerce-jetpack' ),
|
381 |
+
'desc_tip' => __( 'To show this tab only for some products, enter product IDs here.', 'woocommerce-jetpack' ),
|
382 |
+
'id' => 'wcj_custom_product_tabs_title_global_show_in_product_ids_' . $i,
|
383 |
+
'default' => '',
|
384 |
+
'type' => 'text',
|
385 |
+
'css' => 'width:30%;min-width:300px;',
|
386 |
),
|
387 |
array(
|
388 |
+
'title' => '',
|
389 |
+
'desc' => __( 'Comma separated CATEGORY IDs to SHOW this tab', 'woocommerce-jetpack' ),
|
390 |
+
'desc_tip' => __( 'To show this tab only for some categories, enter category IDs here.', 'woocommerce-jetpack' ),
|
391 |
+
'id' => 'wcj_custom_product_tabs_title_global_show_in_cats_ids_' . $i,
|
392 |
+
'default' => '',
|
393 |
+
'type' => 'text',
|
394 |
+
'css' => 'width:30%;min-width:300px;',
|
395 |
),
|
396 |
)
|
397 |
);
|
399 |
|
400 |
$settings = array_merge( $settings, array(
|
401 |
|
402 |
+
array(
|
403 |
+
'type' => 'sectionend',
|
404 |
+
'id' => 'wcj_custom_product_tabs_options',
|
405 |
+
),
|
406 |
|
407 |
+
// Local Custom Tabs
|
408 |
+
array(
|
409 |
+
'title' => __( 'Local Custom Product Tabs', 'woocommerce-jetpack' ),
|
410 |
+
'type' => 'title',
|
411 |
+
'desc' => __( 'This section lets you set defaults for local custom tabs.', 'woocommerce-jetpack' ),
|
412 |
+
'id' => 'wcj_custom_product_tabs_options_local',
|
413 |
+
),
|
414 |
|
415 |
array(
|
416 |
+
'title' => __( 'Enable Custom Product Tabs', 'woocommerce-jetpack' ),
|
417 |
+
// 'desc' => __( 'Remove tab from product page', 'woocommerce-jetpack' ),
|
418 |
+
'id' => 'wcj_custom_product_tabs_local_enabled',
|
419 |
+
'default' => 'yes',
|
420 |
+
'type' => 'checkbox',
|
421 |
),
|
422 |
|
423 |
array(
|
424 |
+
'title' => __( 'Default Local Custom Product Tabs Number', 'woocommerce-jetpack' ),
|
425 |
+
'id' => 'wcj_custom_product_tabs_local_total_number_default',
|
426 |
+
'default' => 1,
|
427 |
+
'type' => 'number',
|
428 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
429 |
'custom_attributes'
|
430 |
+
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
431 |
),
|
432 |
|
433 |
+
array(
|
434 |
+
'type' => 'sectionend',
|
435 |
+
'id' => 'wcj_custom_product_tabs_options_local',
|
436 |
+
),
|
437 |
|
438 |
+
// Standard WooCommerce Tabs
|
439 |
+
array(
|
440 |
+
'title' => __( 'WooCommerce Standard Product Tabs Options', 'woocommerce-jetpack' ),
|
441 |
+
'type' => 'title',
|
442 |
+
'desc' => __( 'This section lets you customize single product tabs.', 'woocommerce-jetpack' ),
|
443 |
+
'id' => 'wcj_product_info_product_tabs_options',
|
444 |
+
),
|
445 |
|
446 |
array(
|
447 |
+
'title' => __( 'Description Tab', 'woocommerce-jetpack' ),
|
448 |
+
'desc' => __( 'Remove tab from product page', 'woocommerce-jetpack' ),
|
449 |
+
'id' => 'wcj_product_info_product_tabs_description_disable',
|
450 |
+
'default' => 'no',
|
451 |
+
'type' => 'checkbox',
|
452 |
),
|
453 |
|
454 |
array(
|
455 |
+
'title' => __( 'Priority (i.e. Order)', 'woocommerce-jetpack' ),
|
456 |
+
'id' => 'wcj_product_info_product_tabs_description_priority',
|
457 |
+
'default' => 10,
|
458 |
+
'type' => 'number',
|
459 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
460 |
'custom_attributes'
|
461 |
+
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
462 |
),
|
463 |
|
464 |
array(
|
465 |
+
'title' => __( 'Title', 'woocommerce-jetpack' ),
|
466 |
+
'desc_tip' => __( 'Leave blank for WooCommerce defaults', 'woocommerce-jetpack' ),
|
467 |
+
'id' => 'wcj_product_info_product_tabs_description_title',
|
468 |
+
'default' => '',
|
469 |
+
'type' => 'text',
|
470 |
),
|
471 |
|
472 |
array(
|
473 |
+
'title' => __( 'Additional Information Tab', 'woocommerce-jetpack' ),
|
474 |
+
'desc' => __( 'Remove tab from product page', 'woocommerce-jetpack' ),
|
475 |
+
'id' => 'wcj_product_info_product_tabs_additional_information_disable',
|
476 |
+
'default' => 'no',
|
477 |
+
'type' => 'checkbox',
|
478 |
),
|
479 |
|
480 |
array(
|
481 |
+
'title' => __( 'Priority (i.e. Order)', 'woocommerce-jetpack' ),
|
482 |
+
'id' => 'wcj_product_info_product_tabs_additional_information_priority',
|
483 |
+
'default' => 20,
|
484 |
+
'type' => 'number',
|
485 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
486 |
'custom_attributes'
|
487 |
+
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
488 |
),
|
489 |
|
490 |
array(
|
491 |
+
'title' => __( 'Title', 'woocommerce-jetpack' ),
|
492 |
+
'desc_tip' => __( 'Leave blank for WooCommerce defaults', 'woocommerce-jetpack' ),
|
493 |
+
'id' => 'wcj_product_info_product_tabs_additional_information_title',
|
494 |
+
'default' => '',
|
495 |
+
'type' => 'text',
|
496 |
),
|
497 |
|
498 |
array(
|
499 |
+
'title' => __( 'Reviews Tab', 'woocommerce-jetpack' ),
|
500 |
+
'desc' => __( 'Remove tab from product page', 'woocommerce-jetpack' ),
|
501 |
+
'id' => 'wcj_product_info_product_tabs_reviews_disable',
|
502 |
+
'default' => 'no',
|
503 |
+
'type' => 'checkbox',
|
504 |
),
|
505 |
|
506 |
array(
|
507 |
+
'title' => __( 'Priority (i.e. Order)', 'woocommerce-jetpack' ),
|
508 |
+
'id' => 'wcj_product_info_product_tabs_reviews_priority',
|
509 |
+
'default' => 30,
|
510 |
+
'type' => 'number',
|
511 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
512 |
'custom_attributes'
|
513 |
+
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
514 |
),
|
515 |
|
516 |
array(
|
517 |
+
'title' => __( 'Title', 'woocommerce-jetpack' ),
|
518 |
+
'desc_tip' => __( 'Leave blank for WooCommerce defaults', 'woocommerce-jetpack' ),
|
519 |
+
'id' => 'wcj_product_info_product_tabs_reviews_title',
|
520 |
+
'default' => '',
|
521 |
+
'type' => 'text',
|
522 |
),
|
523 |
|
524 |
+
array(
|
525 |
+
'type' => 'sectionend',
|
526 |
+
'id' => 'wcj_product_info_product_tabs_options',
|
527 |
+
),
|
528 |
|
529 |
) );
|
530 |
|
531 |
+
return $this->add_enable_module_setting( $settings );
|
532 |
+
}
|
533 |
}
|
534 |
|
535 |
endif;
|
includes/class-wcj-sorting.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Sorting class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -28,7 +28,7 @@ class WCJ_Sorting extends WCJ_Module {
|
|
28 |
$this->desc = __( 'Add more WooCommerce sorting options or remove all sorting including default.', 'woocommerce-jetpack' );
|
29 |
parent::__construct();
|
30 |
|
31 |
-
|
32 |
|
33 |
if ( 'yes' === get_option( 'wcj_more_sorting_enabled' ) ) {
|
34 |
add_filter( 'woocommerce_get_catalog_ordering_args', array( $this, 'custom_woocommerce_get_catalog_ordering_args' ), 100 );// Sorting
|
@@ -48,9 +48,12 @@ class WCJ_Sorting extends WCJ_Module {
|
|
48 |
|
49 |
/**
|
50 |
* Unlocks - Sorting - remove_sorting.
|
|
|
|
|
51 |
*/
|
52 |
public function remove_sorting() {
|
53 |
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
|
|
|
54 |
}
|
55 |
|
56 |
/*
|
@@ -75,15 +78,6 @@ class WCJ_Sorting extends WCJ_Module {
|
|
75 |
return $updated_settings;
|
76 |
}
|
77 |
|
78 |
-
/*
|
79 |
-
* Custom Init - remove all sorting action
|
80 |
-
*
|
81 |
-
function custom_init() {
|
82 |
-
|
83 |
-
if ( get_option( 'wcj_sorting_remove_all_enabled' ) )
|
84 |
-
do_action( 'wcj_sorting_remove_action' );
|
85 |
-
}
|
86 |
-
|
87 |
/*
|
88 |
* maybe_add_sorting.
|
89 |
*
|
4 |
*
|
5 |
* The WooCommerce Jetpack Sorting class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
28 |
$this->desc = __( 'Add more WooCommerce sorting options or remove all sorting including default.', 'woocommerce-jetpack' );
|
29 |
parent::__construct();
|
30 |
|
31 |
+
if ( $this->is_enabled() ) {
|
32 |
|
33 |
if ( 'yes' === get_option( 'wcj_more_sorting_enabled' ) ) {
|
34 |
add_filter( 'woocommerce_get_catalog_ordering_args', array( $this, 'custom_woocommerce_get_catalog_ordering_args' ), 100 );// Sorting
|
48 |
|
49 |
/**
|
50 |
* Unlocks - Sorting - remove_sorting.
|
51 |
+
*
|
52 |
+
* @version 2.2.9
|
53 |
*/
|
54 |
public function remove_sorting() {
|
55 |
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
|
56 |
+
remove_action( 'mpcth_before_shop_loop', 'woocommerce_catalog_ordering', 40 ); // Blaszok theme
|
57 |
}
|
58 |
|
59 |
/*
|
78 |
return $updated_settings;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
/*
|
82 |
* maybe_add_sorting.
|
83 |
*
|
includes/class-wcj-wpml.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack WPML class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
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 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
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 |
-
|
29 |
-
add_action( '
|
30 |
-
|
31 |
-
|
|
|
|
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
45 |
|
46 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
fwrite( $handle, '<wpml-config>' . PHP_EOL );
|
49 |
fwrite( $handle, "\t" );
|
50 |
fwrite( $handle, '<admin-texts>' . PHP_EOL );
|
51 |
|
52 |
-
|
|
|
53 |
foreach ( $sections as $section => $section_title ) {
|
54 |
|
55 |
-
|
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 |
-
|
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 |
|
includes/classes/class-wcj-pdf-invoice.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack PDF Invoice class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -177,13 +177,15 @@ class WCJ_PDF_Invoice extends WCJ_Invoice {
|
|
177 |
|
178 |
/**
|
179 |
* get_pdf.
|
|
|
|
|
180 |
*/
|
181 |
-
//function get_pdf( $get_by_order_id = 0 ) {
|
182 |
-
//function get_pdf( $order_id, $invoice_type, $name, $dest ) {
|
183 |
function get_pdf( $dest ) {
|
184 |
|
185 |
// Get invoice content HTML
|
186 |
$_GET['order_id'] = $this->order_id;
|
|
|
|
|
187 |
$html = do_shortcode( get_option( 'wcj_invoicing_' . $this->invoice_type . '_template' ) );
|
188 |
$html = force_balance_tags( $html );
|
189 |
//$html = apply_filters( 'the_content', get_option( 'wcj_invoicing_' . $this->invoice_type . '_template' ) );
|
4 |
*
|
5 |
* The WooCommerce Jetpack PDF Invoice class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
177 |
|
178 |
/**
|
179 |
* get_pdf.
|
180 |
+
*
|
181 |
+
* @version 2.2.9
|
182 |
*/
|
|
|
|
|
183 |
function get_pdf( $dest ) {
|
184 |
|
185 |
// Get invoice content HTML
|
186 |
$_GET['order_id'] = $this->order_id;
|
187 |
+
$the_order = wc_get_order( $this->order_id );
|
188 |
+
if ( ! isset( $_GET['billing_country'] ) ) $_GET['billing_country'] = $the_order->billing_country;
|
189 |
$html = do_shortcode( get_option( 'wcj_invoicing_' . $this->invoice_type . '_template' ) );
|
190 |
$html = force_balance_tags( $html );
|
191 |
//$html = apply_filters( 'the_content', get_option( 'wcj_invoicing_' . $this->invoice_type . '_template' ) );
|
includes/functions/wcj-html-functions.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack HTML functions.
|
6 |
*
|
7 |
-
* @version
|
8 |
-
* @author
|
9 |
*/
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
@@ -13,22 +13,21 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
13 |
/**
|
14 |
* wcj_get_table_html.
|
15 |
*/
|
16 |
-
if ( ! function_exists( 'wcj_get_table_html' ) ) {
|
17 |
-
//function wcj_get_table_html( $data, $table_class = '', $table_heading_type = 'horizontal', $columns_classes = array(), $columns_styles = array() ) {
|
18 |
function wcj_get_table_html( $data, $args = array() ) {
|
19 |
-
$defaults = array(
|
20 |
'table_class' => '',
|
21 |
'table_style' => '',
|
22 |
-
'table_heading_type' => 'horizontal',
|
23 |
-
'columns_classes' => array(),
|
24 |
'columns_styles' => array(),
|
25 |
);
|
26 |
//wp_parse_args( $args, $defaults );
|
27 |
-
$args = array_merge( $defaults, $args );
|
28 |
-
extract( $args );
|
29 |
$table_class = ( '' == $table_class ) ? '' : ' class="' . $table_class . '"';
|
30 |
$table_style = ( '' == $table_style ) ? '' : ' style="' . $table_style . '"';
|
31 |
-
$html = '';
|
32 |
$html .= '<table' . $table_class . $table_style . '>';
|
33 |
$html .= '<tbody>';
|
34 |
foreach( $data as $row_number => $row ) {
|
@@ -43,9 +42,9 @@ if ( ! function_exists( 'wcj_get_table_html' ) ) {
|
|
43 |
$html .= '</' . $th_or_td . '>';
|
44 |
}
|
45 |
$html .= '</tr>';
|
46 |
-
}
|
47 |
$html .= '</tbody>';
|
48 |
-
$html .= '</table>';
|
49 |
return $html;
|
50 |
}
|
51 |
}
|
@@ -55,11 +54,11 @@ if ( ! function_exists( 'wcj_get_table_html' ) ) {
|
|
55 |
*/
|
56 |
if ( ! function_exists( 'wcj_get_option_html' ) ) {
|
57 |
function wcj_get_option_html( $option_type, $option_id, $option_value, $option_description, $option_class ) {
|
58 |
-
|
59 |
if ( 'checkbox' === $option_type )
|
60 |
-
$is_checked = checked( $option_value, 'on', false );
|
61 |
-
|
62 |
-
$html = '';
|
63 |
switch ( $option_type ) {
|
64 |
case 'number':
|
65 |
case 'text':
|
@@ -74,9 +73,9 @@ if ( ! function_exists( 'wcj_get_option_html' ) ) {
|
|
74 |
case 'select':
|
75 |
$html .= '<select class="' . $option_class . '" id="' . $option_id . '" name="' . $option_id . '">' . $option_value . '</select>';
|
76 |
break;
|
77 |
-
}
|
78 |
$html .= '<span class="description">' . $option_description . '</span>';
|
79 |
-
|
80 |
-
return $html;
|
81 |
}
|
82 |
}
|
4 |
*
|
5 |
* The WooCommerce Jetpack HTML functions.
|
6 |
*
|
7 |
+
* @version 1.0.0
|
8 |
+
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
13 |
/**
|
14 |
* wcj_get_table_html.
|
15 |
*/
|
16 |
+
if ( ! function_exists( 'wcj_get_table_html' ) ) {
|
|
|
17 |
function wcj_get_table_html( $data, $args = array() ) {
|
18 |
+
$defaults = array(
|
19 |
'table_class' => '',
|
20 |
'table_style' => '',
|
21 |
+
'table_heading_type' => 'horizontal',
|
22 |
+
'columns_classes' => array(),
|
23 |
'columns_styles' => array(),
|
24 |
);
|
25 |
//wp_parse_args( $args, $defaults );
|
26 |
+
$args = array_merge( $defaults, $args );
|
27 |
+
extract( $args );
|
28 |
$table_class = ( '' == $table_class ) ? '' : ' class="' . $table_class . '"';
|
29 |
$table_style = ( '' == $table_style ) ? '' : ' style="' . $table_style . '"';
|
30 |
+
$html = '';
|
31 |
$html .= '<table' . $table_class . $table_style . '>';
|
32 |
$html .= '<tbody>';
|
33 |
foreach( $data as $row_number => $row ) {
|
42 |
$html .= '</' . $th_or_td . '>';
|
43 |
}
|
44 |
$html .= '</tr>';
|
45 |
+
}
|
46 |
$html .= '</tbody>';
|
47 |
+
$html .= '</table>';
|
48 |
return $html;
|
49 |
}
|
50 |
}
|
54 |
*/
|
55 |
if ( ! function_exists( 'wcj_get_option_html' ) ) {
|
56 |
function wcj_get_option_html( $option_type, $option_id, $option_value, $option_description, $option_class ) {
|
57 |
+
|
58 |
if ( 'checkbox' === $option_type )
|
59 |
+
$is_checked = checked( $option_value, 'on', false );
|
60 |
+
|
61 |
+
$html = '';
|
62 |
switch ( $option_type ) {
|
63 |
case 'number':
|
64 |
case 'text':
|
73 |
case 'select':
|
74 |
$html .= '<select class="' . $option_class . '" id="' . $option_id . '" name="' . $option_id . '">' . $option_value . '</select>';
|
75 |
break;
|
76 |
+
}
|
77 |
$html .= '<span class="description">' . $option_description . '</span>';
|
78 |
+
|
79 |
+
return $html;
|
80 |
}
|
81 |
}
|
includes/input-fields/class-wcj-product-input-fields-per-product.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Product Input Fields per Product class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -14,55 +14,48 @@ if ( ! class_exists( 'WCJ_Product_Input_Fields_Per_Product' ) ) :
|
|
14 |
|
15 |
class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abstract {
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
|
22 |
$this->scope = 'local';
|
23 |
|
24 |
-
|
25 |
-
|
26 |
|
27 |
// Product Edit
|
28 |
-
add_action( 'add_meta_boxes',
|
29 |
-
add_action( 'save_post_product',
|
30 |
|
31 |
// Show fields at frontend
|
32 |
-
add_action( 'woocommerce_before_add_to_cart_button',
|
33 |
|
34 |
// Process from $_POST to cart item data
|
35 |
-
add_filter( 'woocommerce_add_to_cart_validation',
|
36 |
-
add_filter( 'woocommerce_add_cart_item_data',
|
37 |
// from session
|
38 |
-
add_filter( 'woocommerce_get_cart_item_from_session',
|
39 |
|
40 |
// Show details at cart, order details, emails
|
41 |
-
add_filter( 'woocommerce_cart_item_name',
|
42 |
-
add_filter( 'woocommerce_order_item_name',
|
43 |
|
44 |
// Add item meta from cart to order
|
45 |
add_action( 'woocommerce_add_order_item_meta', array( $this, 'add_product_input_fields_to_order_item_meta' ), 100, 3 );
|
46 |
|
47 |
// Make nicer name for product input fields in order at backend (shop manager)
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
add_action( 'woocommerce_after_order_itemmeta',
|
52 |
if ( 'yes' === get_option( 'wcj_product_input_fields_make_nicer_name_enabled' ) ) {
|
53 |
-
|
54 |
-
add_filter( 'woocommerce_hidden_order_itemmeta', array( $this, 'hide_custom_input_fields_default_output_in_admin_order' ), 100 );
|
55 |
}
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
}
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
//add_filter( 'wcj_settings_product_input_fields_local', array( $this, 'get_settings' ), 100 );
|
64 |
-
//add_filter( 'wcj_features_status', array( $this, 'add_enabled_option' ), 100 );
|
65 |
-
}
|
66 |
|
67 |
/**
|
68 |
* get_value.
|
@@ -73,41 +66,58 @@ class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abst
|
|
73 |
|
74 |
/**
|
75 |
* Save product input fields on Product Edit.
|
|
|
|
|
76 |
*/
|
77 |
public function save_local_product_input_fields_on_product_edit( $post_id, $post ) {
|
|
|
78 |
// Check that we are saving with input fields displayed.
|
79 |
if ( ! isset( $_POST['woojetpack_product_input_fields_save_post'] ) )
|
80 |
return;
|
81 |
-
|
82 |
-
$option_name = 'wcj_product_input_fields_local_total_number';
|
83 |
-
$total_input_fields = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_product_input_fields_local_total_number_default', 1 ) );
|
84 |
-
update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
85 |
// Save enabled, required, title etc.
|
|
|
|
|
|
|
86 |
$options = $this->get_options();
|
87 |
-
for ( $i = 1; $i <= $
|
88 |
foreach ( $options as $option ) {
|
89 |
if ( isset( $_POST[ $option['id'] . $i ] ) )
|
90 |
update_post_meta( $post_id, '_' . $option['id'] . $i, $_POST[ $option['id'] . $i ] );
|
91 |
-
|
92 |
elseif ( 'checkbox' === $option['type'] )
|
93 |
update_post_meta( $post_id, '_' . $option['id'] . $i, 'off' );
|
94 |
}
|
95 |
}
|
|
|
|
|
|
|
|
|
|
|
96 |
}
|
97 |
|
98 |
/**
|
99 |
* add_local_product_input_fields_meta_box_to_product_edit.
|
100 |
*/
|
101 |
public function add_local_product_input_fields_meta_box_to_product_edit() {
|
102 |
-
add_meta_box(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
}
|
104 |
|
105 |
/**
|
106 |
* create_local_product_input_fields_meta_box.
|
|
|
|
|
107 |
*/
|
108 |
public function create_local_product_input_fields_meta_box() {
|
109 |
|
110 |
-
$meta_box_id
|
111 |
$meta_box_desc = __( 'Product Input Fields', 'woocommerce-jetpack' );
|
112 |
|
113 |
$options = $this->get_options();
|
@@ -141,11 +151,11 @@ class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abst
|
|
141 |
$html .= '</table>';
|
142 |
|
143 |
// The options
|
144 |
-
$html .= '<h4>' . $meta_box_desc . '</h4>';
|
145 |
-
$html .= '<table style="width:100%;">';
|
146 |
for ( $i = 1; $i <= $total_number; $i++ ) {
|
147 |
-
$
|
148 |
-
$html .= '<
|
|
|
149 |
foreach ( $options as $option ) {
|
150 |
$option_id = $option['id'] . $i;
|
151 |
$option_value = get_post_meta( $current_post_id, '_' . $option_id, true );
|
@@ -154,15 +164,6 @@ class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abst
|
|
154 |
$option_value = $option['default'];
|
155 |
}
|
156 |
|
157 |
-
$html .= '<th>';
|
158 |
-
$html .= ( isset( $option['short_title'] ) ) ? $option['short_title'] : $option['title'];
|
159 |
-
$html .= '</th>';
|
160 |
-
|
161 |
-
if ( 'textarea' === $option['type'] )
|
162 |
-
$html .= '<td style="width:20%;">';
|
163 |
-
else
|
164 |
-
$html .= '<td>';
|
165 |
-
|
166 |
if ( 'checkbox' === $option['type'] )
|
167 |
$is_checked = checked( $option_value, 'on', false );
|
168 |
|
@@ -176,23 +177,25 @@ class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abst
|
|
176 |
switch ( $option['type'] ) {
|
177 |
case 'number':
|
178 |
case 'text':
|
179 |
-
$
|
180 |
break;
|
181 |
case 'textarea':
|
182 |
-
$
|
183 |
break;
|
184 |
case 'checkbox':
|
185 |
-
$
|
186 |
break;
|
187 |
case 'select':
|
188 |
-
$
|
189 |
break;
|
190 |
}
|
191 |
-
$
|
|
|
|
|
|
|
192 |
}
|
193 |
-
$html .= '
|
194 |
}
|
195 |
-
$html .= '</table>';
|
196 |
$html .= '<input type="hidden" name="woojetpack_' . $meta_box_id . '_save_post" value="woojetpack_' . $meta_box_id . '_save_post">';
|
197 |
|
198 |
// Output
|
4 |
*
|
5 |
* The WooCommerce Jetpack Product Input Fields per Product class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
14 |
|
15 |
class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields_Abstract {
|
16 |
|
17 |
+
/**
|
18 |
+
* Constructor.
|
19 |
+
*/
|
20 |
+
public function __construct() {
|
21 |
|
22 |
$this->scope = 'local';
|
23 |
|
24 |
+
// Main hooks
|
25 |
+
if ( 'yes' === get_option( 'wcj_product_input_fields_local_enabled' ) ) {
|
26 |
|
27 |
// Product Edit
|
28 |
+
add_action( 'add_meta_boxes', array( $this, 'add_local_product_input_fields_meta_box_to_product_edit' ) );
|
29 |
+
add_action( 'save_post_product', array( $this, 'save_local_product_input_fields_on_product_edit' ), 999, 2 );
|
30 |
|
31 |
// Show fields at frontend
|
32 |
+
add_action( 'woocommerce_before_add_to_cart_button', array( $this, 'add_product_input_fields_to_frontend' ), 100 );
|
33 |
|
34 |
// Process from $_POST to cart item data
|
35 |
+
add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'validate_product_input_fields_on_add_to_cart' ), 100, 2 );
|
36 |
+
add_filter( 'woocommerce_add_cart_item_data', array( $this, 'add_product_input_fields_to_cart_item_data' ), 100, 3 );
|
37 |
// from session
|
38 |
+
add_filter( 'woocommerce_get_cart_item_from_session', array( $this, 'get_cart_item_product_input_fields_from_session' ), 100, 3 );
|
39 |
|
40 |
// Show details at cart, order details, emails
|
41 |
+
add_filter( 'woocommerce_cart_item_name', array( $this, 'add_product_input_fields_to_cart_item_name' ), 100, 3 );
|
42 |
+
add_filter( 'woocommerce_order_item_name', array( $this, 'add_product_input_fields_to_order_item_name' ), 100, 2 );
|
43 |
|
44 |
// Add item meta from cart to order
|
45 |
add_action( 'woocommerce_add_order_item_meta', array( $this, 'add_product_input_fields_to_order_item_meta' ), 100, 3 );
|
46 |
|
47 |
// Make nicer name for product input fields in order at backend (shop manager)
|
48 |
+
// add_action( 'woocommerce_before_order_itemmeta', array( $this, 'start_making_nicer_name_for_product_input_fields' ), 100, 3 );
|
49 |
+
// add_action( 'woocommerce_before_order_itemmeta', 'ob_start' );
|
50 |
+
// add_action( 'woocommerce_after_order_itemmeta', array( $this, 'finish_making_nicer_name_for_product_input_fields' ), 100, 3 );
|
51 |
+
add_action( 'woocommerce_after_order_itemmeta', array( $this, 'output_custom_input_fields_in_admin_order' ), 100, 3 );
|
52 |
if ( 'yes' === get_option( 'wcj_product_input_fields_make_nicer_name_enabled' ) ) {
|
53 |
+
add_filter( 'woocommerce_hidden_order_itemmeta', array( $this, 'hide_custom_input_fields_default_output_in_admin_order' ), 100 );
|
|
|
54 |
}
|
55 |
+
// add_filter( 'woocommerce_attribute_label', array( $this, 'change_woocommerce_attribute_label' ), PHP_INT_MAX, 2 );
|
|
|
|
|
|
|
56 |
|
57 |
+
}
|
58 |
+
}
|
|
|
|
|
|
|
59 |
|
60 |
/**
|
61 |
* get_value.
|
66 |
|
67 |
/**
|
68 |
* Save product input fields on Product Edit.
|
69 |
+
*
|
70 |
+
* @version 2.2.9
|
71 |
*/
|
72 |
public function save_local_product_input_fields_on_product_edit( $post_id, $post ) {
|
73 |
+
|
74 |
// Check that we are saving with input fields displayed.
|
75 |
if ( ! isset( $_POST['woojetpack_product_input_fields_save_post'] ) )
|
76 |
return;
|
77 |
+
|
|
|
|
|
|
|
78 |
// Save enabled, required, title etc.
|
79 |
+
$default_total_input_fields = apply_filters( 'wcj_get_option_filter', 1, get_option( 'wcj_product_input_fields_local_total_number_default', 1 ) );
|
80 |
+
$total_input_fields_before_saving = get_post_meta( $post_id, '_' . 'wcj_product_input_fields_local_total_number', true );
|
81 |
+
$total_input_fields_before_saving = ( '' != $total_input_fields_before_saving ) ? $total_input_fields_before_saving : $default_total_input_fields;
|
82 |
$options = $this->get_options();
|
83 |
+
for ( $i = 1; $i <= $total_input_fields_before_saving; $i++ ) {
|
84 |
foreach ( $options as $option ) {
|
85 |
if ( isset( $_POST[ $option['id'] . $i ] ) )
|
86 |
update_post_meta( $post_id, '_' . $option['id'] . $i, $_POST[ $option['id'] . $i ] );
|
87 |
+
// elseif ( 'wcj_product_input_fields_title_local_' != $option['id'] && 'wcj_product_input_fields_placeholder_local_' != $option['id'] )
|
88 |
elseif ( 'checkbox' === $option['type'] )
|
89 |
update_post_meta( $post_id, '_' . $option['id'] . $i, 'off' );
|
90 |
}
|
91 |
}
|
92 |
+
|
93 |
+
// Save total product input fields number
|
94 |
+
$option_name = 'wcj_product_input_fields_local_total_number';
|
95 |
+
$total_input_fields = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : $default_total_input_fields;
|
96 |
+
update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
97 |
}
|
98 |
|
99 |
/**
|
100 |
* add_local_product_input_fields_meta_box_to_product_edit.
|
101 |
*/
|
102 |
public function add_local_product_input_fields_meta_box_to_product_edit() {
|
103 |
+
add_meta_box(
|
104 |
+
'wc-jetpack-product-input-fields',
|
105 |
+
__( 'WooCommerce Jetpack: Product Input Fields', 'woocommerce-jetpack' ),
|
106 |
+
array( $this, 'create_local_product_input_fields_meta_box' ),
|
107 |
+
'product',
|
108 |
+
'normal',
|
109 |
+
'high'
|
110 |
+
);
|
111 |
}
|
112 |
|
113 |
/**
|
114 |
* create_local_product_input_fields_meta_box.
|
115 |
+
*
|
116 |
+
* @version 2.2.9
|
117 |
*/
|
118 |
public function create_local_product_input_fields_meta_box() {
|
119 |
|
120 |
+
$meta_box_id = 'product_input_fields';
|
121 |
$meta_box_desc = __( 'Product Input Fields', 'woocommerce-jetpack' );
|
122 |
|
123 |
$options = $this->get_options();
|
151 |
$html .= '</table>';
|
152 |
|
153 |
// The options
|
154 |
+
// $html .= '<h4>' . $meta_box_desc . '</h4>';
|
|
|
155 |
for ( $i = 1; $i <= $total_number; $i++ ) {
|
156 |
+
$data = array();
|
157 |
+
$html .= '<hr>';
|
158 |
+
$html .= '<h4>' . __( 'Product Input Field', 'woocommerce-jetpack' ) . ' #' . $i . '</h4>';
|
159 |
foreach ( $options as $option ) {
|
160 |
$option_id = $option['id'] . $i;
|
161 |
$option_value = get_post_meta( $current_post_id, '_' . $option_id, true );
|
164 |
$option_value = $option['default'];
|
165 |
}
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
if ( 'checkbox' === $option['type'] )
|
168 |
$is_checked = checked( $option_value, 'on', false );
|
169 |
|
177 |
switch ( $option['type'] ) {
|
178 |
case 'number':
|
179 |
case 'text':
|
180 |
+
$the_field = '<input type="' . $option['type'] . '" id="' . $option_id . '" name="' . $option_id . '" value="' . $option_value . '">';
|
181 |
break;
|
182 |
case 'textarea':
|
183 |
+
$the_field = '<textarea style="width:100%;" id="' . $option_id . '" name="' . $option_id . '">' . $option_value . '</textarea>';
|
184 |
break;
|
185 |
case 'checkbox':
|
186 |
+
$the_field = '<input class="checkbox" type="checkbox" name="' . $option_id . '" id="' . $option_id . '" ' . $is_checked . ' />';
|
187 |
break;
|
188 |
case 'select':
|
189 |
+
$the_field = '<select id="' . $option_id . '" name="' . $option_id . '">' . $select_options_html . '</select>';
|
190 |
break;
|
191 |
}
|
192 |
+
$data[] = array(
|
193 |
+
( isset( $option['short_title'] ) ) ? $option['short_title'] : $option['title'],
|
194 |
+
$the_field,
|
195 |
+
);
|
196 |
}
|
197 |
+
$html .= wcj_get_table_html( $data, array( 'table_heading_type' => 'vertical', 'columns_styles' => array( 'text-align:right;', ), ) );
|
198 |
}
|
|
|
199 |
$html .= '<input type="hidden" name="woojetpack_' . $meta_box_id . '_save_post" value="woojetpack_' . $meta_box_id . '_save_post">';
|
200 |
|
201 |
// Output
|
includes/shortcodes/class-wcj-general-shortcodes.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack General Shortcodes class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -16,6 +16,8 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
|
|
16 |
|
17 |
/**
|
18 |
* Constructor.
|
|
|
|
|
19 |
*/
|
20 |
public function __construct() {
|
21 |
|
@@ -26,6 +28,7 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
|
|
26 |
'wcj_wpml',
|
27 |
'wcj_wpml_translate',
|
28 |
'wcj_country_select_drop_down_list',
|
|
|
29 |
);
|
30 |
|
31 |
$this->the_atts = array(
|
@@ -78,12 +81,24 @@ class WCJ_General_Shortcodes extends WCJ_Shortcodes {
|
|
78 |
return $html;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
/**
|
82 |
* wcj_wpml.
|
|
|
|
|
83 |
*/
|
84 |
function wcj_wpml( $atts, $content ) {
|
85 |
-
if ( '' == $atts['lang'] || ( defined( 'ICL_LANGUAGE_CODE' ) && ICL_LANGUAGE_CODE === $atts['lang'] ) ) return do_shortcode( $content );
|
86 |
-
else return '';
|
|
|
87 |
}
|
88 |
|
89 |
/**
|
4 |
*
|
5 |
* The WooCommerce Jetpack General Shortcodes class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
16 |
|
17 |
/**
|
18 |
* Constructor.
|
19 |
+
*
|
20 |
+
* @version 2.2.9
|
21 |
*/
|
22 |
public function __construct() {
|
23 |
|
28 |
'wcj_wpml',
|
29 |
'wcj_wpml_translate',
|
30 |
'wcj_country_select_drop_down_list',
|
31 |
+
'wcj_text',
|
32 |
);
|
33 |
|
34 |
$this->the_atts = array(
|
81 |
return $html;
|
82 |
}
|
83 |
|
84 |
+
/**
|
85 |
+
* wcj_text.
|
86 |
+
*
|
87 |
+
* @since 2.2.9
|
88 |
+
*/
|
89 |
+
function wcj_text( $atts, $content ) {
|
90 |
+
return /* do_shortcode( */ $content /* ) */;
|
91 |
+
}
|
92 |
+
|
93 |
/**
|
94 |
* wcj_wpml.
|
95 |
+
*
|
96 |
+
* @version 2.2.9
|
97 |
*/
|
98 |
function wcj_wpml( $atts, $content ) {
|
99 |
+
/* if ( '' == $atts['lang'] || ( defined( 'ICL_LANGUAGE_CODE' ) && ICL_LANGUAGE_CODE === $atts['lang'] ) ) return do_shortcode( $content );
|
100 |
+
else return ''; */
|
101 |
+
return do_shortcode( $content );
|
102 |
}
|
103 |
|
104 |
/**
|
includes/shortcodes/class-wcj-orders-shortcodes.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Orders Shortcodes class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -14,10 +14,12 @@ if ( ! class_exists( 'WCJ_Orders_Shortcodes' ) ) :
|
|
14 |
|
15 |
class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
21 |
|
22 |
$this->the_shortcodes = array(
|
23 |
|
@@ -31,6 +33,8 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
31 |
'wcj_order_checkout_field',
|
32 |
'wcj_order_shipping_address',
|
33 |
'wcj_order_customer_note',
|
|
|
|
|
34 |
|
35 |
'wcj_order_subtotal',
|
36 |
'wcj_order_subtotal_plus_shipping',
|
@@ -58,11 +62,11 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
58 |
);
|
59 |
|
60 |
parent::__construct();
|
61 |
-
|
62 |
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
function add_extra_atts( $atts ) {
|
67 |
$modified_atts = array_merge( array(
|
68 |
'order_id' => 0,
|
@@ -79,9 +83,9 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
79 |
return $modified_atts;
|
80 |
}
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
function init_atts( $atts ) {
|
86 |
|
87 |
// Atts
|
@@ -99,16 +103,16 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
99 |
return $atts;
|
100 |
}
|
101 |
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
private function wcj_price_shortcode( $raw_price, $atts ) {
|
106 |
return ( 'yes' === $atts['hide_if_zero'] && 0 == $raw_price ) ? '' : wcj_price( $raw_price, $this->the_order->get_order_currency(), $atts['hide_currency'] );
|
107 |
}
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
function wcj_order_total_fees( $atts ) {
|
113 |
$total_fees = 0;
|
114 |
$the_fees = $this->the_order->get_fees();
|
@@ -118,9 +122,9 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
118 |
return $this->wcj_price_shortcode( $total_fees, $atts );
|
119 |
}
|
120 |
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
function wcj_order_fees_html( $atts ) {
|
125 |
$fees_html = '';
|
126 |
$the_fees = $this->the_order->get_fees();
|
@@ -131,8 +135,8 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
131 |
}
|
132 |
|
133 |
/**
|
134 |
-
|
135 |
-
|
136 |
function wcj_order_fee( $atts ) {
|
137 |
if ( '' == $atts['name'] ) return '';
|
138 |
$the_fees = $this->the_order->get_fees();
|
@@ -143,24 +147,24 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
143 |
}
|
144 |
return '';
|
145 |
}
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
function wcj_order_shipping_method( $atts ) {
|
150 |
return $this->the_order->get_shipping_method();
|
151 |
}
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
function wcj_order_payment_method( $atts ) {
|
157 |
//return $this->the_order->payment_method_title;
|
158 |
return get_post_meta( $this->the_order->id, '_payment_method_title', true );
|
159 |
}
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
function wcj_order_items_total_weight( $atts ) {
|
165 |
$total_weight = 0;
|
166 |
$the_items = $this->the_order->get_items();
|
@@ -171,9 +175,9 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
171 |
return ( 0 == $total_weight && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_weight;
|
172 |
}
|
173 |
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
function wcj_order_items_total_quantity( $atts ) {
|
178 |
$total_quantity = 0;
|
179 |
$the_items = $this->the_order->get_items();
|
@@ -183,35 +187,57 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
183 |
return ( 0 == $total_quantity && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_quantity;
|
184 |
}
|
185 |
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
function wcj_order_items_total_number( $atts ) {
|
190 |
$total_number = count( $this->the_order->get_items() );
|
191 |
return ( 0 == $total_number && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_number;
|
192 |
}
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
function wcj_order_billing_address( $atts ) {
|
198 |
return $this->the_order->get_formatted_billing_address();
|
199 |
}
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
function wcj_order_customer_note( $atts ) {
|
205 |
return $this->the_order->customer_note;
|
206 |
}
|
207 |
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
function wcj_order_billing_phone( $atts ) {
|
212 |
return $this->the_order->billing_phone;
|
213 |
}
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
/**
|
216 |
* wcj_order_checkout_field.
|
217 |
*
|
@@ -223,53 +249,53 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
223 |
return ( isset( $field_array['value'] ) ) ? $field_array['value'] : '';
|
224 |
}
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
function wcj_order_shipping_address( $atts ) {
|
230 |
return $this->the_order->get_formatted_shipping_address();
|
231 |
}
|
232 |
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
function wcj_order_date( $atts ) {
|
237 |
return date_i18n( $atts['date_format'], strtotime( $this->the_order->order_date ) );
|
238 |
}
|
239 |
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
function wcj_order_time( $atts ) {
|
244 |
return date_i18n( $atts['time_format'], strtotime( $this->the_order->order_date ) );
|
245 |
}
|
246 |
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
function wcj_order_number( $atts ) {
|
251 |
return $this->the_order->get_order_number();
|
252 |
}
|
253 |
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
function wcj_order_id( $atts ) {
|
258 |
return $atts['order_id'];
|
259 |
}
|
260 |
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
function wcj_order_shipping_price( $atts ) {
|
265 |
$the_result = $this->the_order->get_total_shipping();
|
266 |
if ( false === $atts['excl_tax'] ) $the_result = $the_result + $this->the_order->get_shipping_tax();
|
267 |
return $this->wcj_price_shortcode( $the_result, $atts );
|
268 |
}
|
269 |
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
function wcj_order_get_cart_discount_tax() {
|
274 |
|
275 |
$the_cart_discount = $this->the_order->get_cart_discount();
|
@@ -300,9 +326,9 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
300 |
return false;
|
301 |
}
|
302 |
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
function wcj_order_total_discount( $atts ) {
|
307 |
|
308 |
$the_discount = $this->the_order->get_total_discount( $atts['excl_tax'] );
|
@@ -316,23 +342,23 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
316 |
return $this->wcj_price_shortcode( $the_discount, $atts );
|
317 |
}
|
318 |
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
function wcj_order_cart_discount( $atts ) {
|
323 |
return $this->wcj_price_shortcode( $this->the_order->get_cart_discount() , $atts );
|
324 |
}
|
325 |
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
function wcj_order_shipping_tax( $atts ) {
|
330 |
return $this->wcj_price_shortcode( $this->the_order->get_shipping_tax(), $atts );
|
331 |
}
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
function wcj_order_total_tax_percent( $atts ) {
|
337 |
|
338 |
$order_total_excl_tax = $this->the_order->get_total() - $this->the_order->get_total_tax();
|
@@ -344,27 +370,27 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
344 |
return $order_total_tax_percent;
|
345 |
}
|
346 |
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
function wcj_order_total_tax( $atts ) {
|
351 |
$order_total_tax = $this->the_order->get_total_tax();
|
352 |
$order_total_tax = apply_filters( 'wcj_order_total_tax', $order_total_tax, $this->the_order );
|
353 |
return $this->wcj_price_shortcode( $order_total_tax, $atts );
|
354 |
}
|
355 |
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
function wcj_order_subtotal_plus_shipping( $atts ) {
|
360 |
$the_subtotal = $this->the_order->get_subtotal();
|
361 |
$the_shipping = $this->the_order->get_total_shipping();
|
362 |
return $this->wcj_price_shortcode( $the_subtotal + $the_shipping, $atts );
|
363 |
}
|
364 |
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
function wcj_order_subtotal( $atts ) {
|
369 |
|
370 |
if ( 'yes' === $atts['round_by_line'] ) {
|
@@ -379,9 +405,9 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
379 |
return $this->wcj_price_shortcode( $the_subtotal, $atts );
|
380 |
}
|
381 |
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
function wcj_order_total_excl_tax( $atts ) {
|
386 |
//$order_total_tax = $this->the_order->get_total() - $this->the_order->get_subtotal() + $this->the_order->get_total_discount( true );
|
387 |
$order_total_tax = $this->the_order->get_total_tax();
|
@@ -390,24 +416,24 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
390 |
return $this->wcj_price_shortcode( $order_total, $atts );
|
391 |
}
|
392 |
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
function wcj_order_currency( $atts ) {
|
397 |
return $this->the_order->get_order_currency();
|
398 |
}
|
399 |
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
function wcj_order_total( $atts ) {
|
404 |
$order_total = ( true === $atts['excl_tax'] ) ? $this->the_order->get_total() - $this->the_order->get_total_tax() : $this->the_order->get_total();
|
405 |
return $this->wcj_price_shortcode( $order_total, $atts );
|
406 |
}
|
407 |
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
function wcj_order_total_in_words( $atts ) {
|
412 |
$order_total = ( true === $atts['excl_tax'] ) ? $this->the_order->get_total() - $this->the_order->get_total_tax() : $this->the_order->get_total();
|
413 |
$order_total_dollars = intval( $order_total );
|
4 |
*
|
5 |
* The WooCommerce Jetpack Orders Shortcodes class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
14 |
|
15 |
class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
16 |
|
17 |
+
/**
|
18 |
+
* Constructor.
|
19 |
+
*
|
20 |
+
* @version 2.2.9
|
21 |
+
*/
|
22 |
+
public function __construct() {
|
23 |
|
24 |
$this->the_shortcodes = array(
|
25 |
|
33 |
'wcj_order_checkout_field',
|
34 |
'wcj_order_shipping_address',
|
35 |
'wcj_order_customer_note',
|
36 |
+
'wcj_order_custom_meta_field',
|
37 |
+
'wcj_order_meta',
|
38 |
|
39 |
'wcj_order_subtotal',
|
40 |
'wcj_order_subtotal_plus_shipping',
|
62 |
);
|
63 |
|
64 |
parent::__construct();
|
65 |
+
}
|
66 |
|
67 |
+
/**
|
68 |
+
* add_extra_atts.
|
69 |
+
*/
|
70 |
function add_extra_atts( $atts ) {
|
71 |
$modified_atts = array_merge( array(
|
72 |
'order_id' => 0,
|
83 |
return $modified_atts;
|
84 |
}
|
85 |
|
86 |
+
/**
|
87 |
+
* init_atts.
|
88 |
+
*/
|
89 |
function init_atts( $atts ) {
|
90 |
|
91 |
// Atts
|
103 |
return $atts;
|
104 |
}
|
105 |
|
106 |
+
/**
|
107 |
+
* wcj_price_shortcode.
|
108 |
+
*/
|
109 |
private function wcj_price_shortcode( $raw_price, $atts ) {
|
110 |
return ( 'yes' === $atts['hide_if_zero'] && 0 == $raw_price ) ? '' : wcj_price( $raw_price, $this->the_order->get_order_currency(), $atts['hide_currency'] );
|
111 |
}
|
112 |
|
113 |
+
/**
|
114 |
+
* wcj_order_total_fees.
|
115 |
+
*/
|
116 |
function wcj_order_total_fees( $atts ) {
|
117 |
$total_fees = 0;
|
118 |
$the_fees = $this->the_order->get_fees();
|
122 |
return $this->wcj_price_shortcode( $total_fees, $atts );
|
123 |
}
|
124 |
|
125 |
+
/**
|
126 |
+
* wcj_order_fees_html.
|
127 |
+
*/
|
128 |
function wcj_order_fees_html( $atts ) {
|
129 |
$fees_html = '';
|
130 |
$the_fees = $this->the_order->get_fees();
|
135 |
}
|
136 |
|
137 |
/**
|
138 |
+
* wcj_order_fee.
|
139 |
+
*/
|
140 |
function wcj_order_fee( $atts ) {
|
141 |
if ( '' == $atts['name'] ) return '';
|
142 |
$the_fees = $this->the_order->get_fees();
|
147 |
}
|
148 |
return '';
|
149 |
}
|
150 |
+
/**
|
151 |
+
* wcj_order_shipping_method.
|
152 |
+
*/
|
153 |
function wcj_order_shipping_method( $atts ) {
|
154 |
return $this->the_order->get_shipping_method();
|
155 |
}
|
156 |
|
157 |
+
/**
|
158 |
+
* wcj_order_payment_method.
|
159 |
+
*/
|
160 |
function wcj_order_payment_method( $atts ) {
|
161 |
//return $this->the_order->payment_method_title;
|
162 |
return get_post_meta( $this->the_order->id, '_payment_method_title', true );
|
163 |
}
|
164 |
|
165 |
+
/**
|
166 |
+
* wcj_order_items_total_weight.
|
167 |
+
*/
|
168 |
function wcj_order_items_total_weight( $atts ) {
|
169 |
$total_weight = 0;
|
170 |
$the_items = $this->the_order->get_items();
|
175 |
return ( 0 == $total_weight && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_weight;
|
176 |
}
|
177 |
|
178 |
+
/**
|
179 |
+
* wcj_order_items_total_quantity.
|
180 |
+
*/
|
181 |
function wcj_order_items_total_quantity( $atts ) {
|
182 |
$total_quantity = 0;
|
183 |
$the_items = $this->the_order->get_items();
|
187 |
return ( 0 == $total_quantity && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_quantity;
|
188 |
}
|
189 |
|
190 |
+
/**
|
191 |
+
* wcj_order_items_total_number.
|
192 |
+
*/
|
193 |
function wcj_order_items_total_number( $atts ) {
|
194 |
$total_number = count( $this->the_order->get_items() );
|
195 |
return ( 0 == $total_number && 'yes' === $atts['hide_if_zero'] ) ? '' : $total_number;
|
196 |
}
|
197 |
|
198 |
+
/**
|
199 |
+
* wcj_order_billing_address.
|
200 |
+
*/
|
201 |
function wcj_order_billing_address( $atts ) {
|
202 |
return $this->the_order->get_formatted_billing_address();
|
203 |
}
|
204 |
|
205 |
+
/**
|
206 |
+
* wcj_order_customer_note.
|
207 |
+
*/
|
208 |
function wcj_order_customer_note( $atts ) {
|
209 |
return $this->the_order->customer_note;
|
210 |
}
|
211 |
|
212 |
+
/**
|
213 |
+
* wcj_order_billing_phone.
|
214 |
+
*/
|
215 |
function wcj_order_billing_phone( $atts ) {
|
216 |
return $this->the_order->billing_phone;
|
217 |
}
|
218 |
|
219 |
+
/**
|
220 |
+
* wcj_order_meta.
|
221 |
+
*
|
222 |
+
* @version 2.2.9
|
223 |
+
* @since 2.2.9
|
224 |
+
*/
|
225 |
+
function wcj_order_meta( $atts ) {
|
226 |
+
return get_post_meta( $this->the_order->id, $atts['meta_key'], true );
|
227 |
+
}
|
228 |
+
|
229 |
+
/**
|
230 |
+
* wcj_order_custom_meta_field.
|
231 |
+
*
|
232 |
+
* @version 2.2.9
|
233 |
+
* @since 2.2.9
|
234 |
+
*/
|
235 |
+
function wcj_order_custom_meta_field( $atts ) {
|
236 |
+
if ( '' == $atts['field_id'] ) return '';
|
237 |
+
$field_value = $this->the_order->$atts['field_id'];
|
238 |
+
return ( isset( $field_value ) ) ? $field_value : '';
|
239 |
+
}
|
240 |
+
|
241 |
/**
|
242 |
* wcj_order_checkout_field.
|
243 |
*
|
249 |
return ( isset( $field_array['value'] ) ) ? $field_array['value'] : '';
|
250 |
}
|
251 |
|
252 |
+
/**
|
253 |
+
* wcj_order_shipping_address.
|
254 |
+
*/
|
255 |
function wcj_order_shipping_address( $atts ) {
|
256 |
return $this->the_order->get_formatted_shipping_address();
|
257 |
}
|
258 |
|
259 |
+
/**
|
260 |
+
* wcj_order_date.
|
261 |
+
*/
|
262 |
function wcj_order_date( $atts ) {
|
263 |
return date_i18n( $atts['date_format'], strtotime( $this->the_order->order_date ) );
|
264 |
}
|
265 |
|
266 |
+
/**
|
267 |
+
* wcj_order_time.
|
268 |
+
*/
|
269 |
function wcj_order_time( $atts ) {
|
270 |
return date_i18n( $atts['time_format'], strtotime( $this->the_order->order_date ) );
|
271 |
}
|
272 |
|
273 |
+
/**
|
274 |
+
* wcj_order_number.
|
275 |
+
*/
|
276 |
function wcj_order_number( $atts ) {
|
277 |
return $this->the_order->get_order_number();
|
278 |
}
|
279 |
|
280 |
+
/**
|
281 |
+
* wcj_order_id.
|
282 |
+
*/
|
283 |
function wcj_order_id( $atts ) {
|
284 |
return $atts['order_id'];
|
285 |
}
|
286 |
|
287 |
+
/**
|
288 |
+
* wcj_order_shipping_price.
|
289 |
+
*/
|
290 |
function wcj_order_shipping_price( $atts ) {
|
291 |
$the_result = $this->the_order->get_total_shipping();
|
292 |
if ( false === $atts['excl_tax'] ) $the_result = $the_result + $this->the_order->get_shipping_tax();
|
293 |
return $this->wcj_price_shortcode( $the_result, $atts );
|
294 |
}
|
295 |
|
296 |
+
/**
|
297 |
+
* wcj_order_get_cart_discount_tax.
|
298 |
+
*/
|
299 |
function wcj_order_get_cart_discount_tax() {
|
300 |
|
301 |
$the_cart_discount = $this->the_order->get_cart_discount();
|
326 |
return false;
|
327 |
}
|
328 |
|
329 |
+
/**
|
330 |
+
* wcj_order_total_discount.
|
331 |
+
*/
|
332 |
function wcj_order_total_discount( $atts ) {
|
333 |
|
334 |
$the_discount = $this->the_order->get_total_discount( $atts['excl_tax'] );
|
342 |
return $this->wcj_price_shortcode( $the_discount, $atts );
|
343 |
}
|
344 |
|
345 |
+
/**
|
346 |
+
* wcj_order_cart_discount.
|
347 |
+
*/
|
348 |
function wcj_order_cart_discount( $atts ) {
|
349 |
return $this->wcj_price_shortcode( $this->the_order->get_cart_discount() , $atts );
|
350 |
}
|
351 |
|
352 |
+
/**
|
353 |
+
* wcj_order_shipping_tax.
|
354 |
+
*/
|
355 |
function wcj_order_shipping_tax( $atts ) {
|
356 |
return $this->wcj_price_shortcode( $this->the_order->get_shipping_tax(), $atts );
|
357 |
}
|
358 |
|
359 |
+
/**
|
360 |
+
* wcj_order_total_tax_percent.
|
361 |
+
*/
|
362 |
function wcj_order_total_tax_percent( $atts ) {
|
363 |
|
364 |
$order_total_excl_tax = $this->the_order->get_total() - $this->the_order->get_total_tax();
|
370 |
return $order_total_tax_percent;
|
371 |
}
|
372 |
|
373 |
+
/**
|
374 |
+
* wcj_order_total_tax.
|
375 |
+
*/
|
376 |
function wcj_order_total_tax( $atts ) {
|
377 |
$order_total_tax = $this->the_order->get_total_tax();
|
378 |
$order_total_tax = apply_filters( 'wcj_order_total_tax', $order_total_tax, $this->the_order );
|
379 |
return $this->wcj_price_shortcode( $order_total_tax, $atts );
|
380 |
}
|
381 |
|
382 |
+
/**
|
383 |
+
* wcj_order_subtotal_plus_shipping.
|
384 |
+
*/
|
385 |
function wcj_order_subtotal_plus_shipping( $atts ) {
|
386 |
$the_subtotal = $this->the_order->get_subtotal();
|
387 |
$the_shipping = $this->the_order->get_total_shipping();
|
388 |
return $this->wcj_price_shortcode( $the_subtotal + $the_shipping, $atts );
|
389 |
}
|
390 |
|
391 |
+
/**
|
392 |
+
* wcj_order_subtotal.
|
393 |
+
*/
|
394 |
function wcj_order_subtotal( $atts ) {
|
395 |
|
396 |
if ( 'yes' === $atts['round_by_line'] ) {
|
405 |
return $this->wcj_price_shortcode( $the_subtotal, $atts );
|
406 |
}
|
407 |
|
408 |
+
/**
|
409 |
+
* wcj_order_total_excl_tax.
|
410 |
+
*/
|
411 |
function wcj_order_total_excl_tax( $atts ) {
|
412 |
//$order_total_tax = $this->the_order->get_total() - $this->the_order->get_subtotal() + $this->the_order->get_total_discount( true );
|
413 |
$order_total_tax = $this->the_order->get_total_tax();
|
416 |
return $this->wcj_price_shortcode( $order_total, $atts );
|
417 |
}
|
418 |
|
419 |
+
/**
|
420 |
+
* wcj_order_currency.
|
421 |
+
*/
|
422 |
function wcj_order_currency( $atts ) {
|
423 |
return $this->the_order->get_order_currency();
|
424 |
}
|
425 |
|
426 |
+
/**
|
427 |
+
* wcj_order_total.
|
428 |
+
*/
|
429 |
function wcj_order_total( $atts ) {
|
430 |
$order_total = ( true === $atts['excl_tax'] ) ? $this->the_order->get_total() - $this->the_order->get_total_tax() : $this->the_order->get_total();
|
431 |
return $this->wcj_price_shortcode( $order_total, $atts );
|
432 |
}
|
433 |
|
434 |
+
/**
|
435 |
+
* wcj_order_total_in_words.
|
436 |
+
*/
|
437 |
function wcj_order_total_in_words( $atts ) {
|
438 |
$order_total = ( true === $atts['excl_tax'] ) ? $this->the_order->get_total() - $this->the_order->get_total_tax() : $this->the_order->get_total();
|
439 |
$order_total_dollars = intval( $order_total );
|
includes/shortcodes/class-wcj-shortcodes.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* The WooCommerce Jetpack Shortcodes class.
|
6 |
*
|
7 |
-
* @version 2.2.
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
@@ -53,18 +53,23 @@ class WCJ_Shortcodes {
|
|
53 |
|
54 |
/**
|
55 |
* wcj_shortcode.
|
|
|
|
|
56 |
*/
|
57 |
function wcj_shortcode( $atts, $content, $shortcode ) {
|
58 |
|
59 |
// Init
|
60 |
if ( empty( $atts ) ) $atts = array();
|
61 |
$global_defaults = array(
|
62 |
-
'before'
|
63 |
-
'after'
|
64 |
-
'visibility'
|
65 |
-
'site_visibility'
|
66 |
-
'location'
|
67 |
-
'wpml_language'
|
|
|
|
|
|
|
68 |
);
|
69 |
$atts = array_merge( $global_defaults, $atts );
|
70 |
|
@@ -87,8 +92,29 @@ class WCJ_Shortcodes {
|
|
87 |
if ( '' != $atts['location'] && 'all' != $atts['location'] && $atts['location'] != $this->wcj_get_user_location() ) return '';
|
88 |
|
89 |
// Check if language is ok
|
|
|
|
|
90 |
if ( '' != $atts['wpml_language'] ) {
|
91 |
-
if ( ! defined( 'ICL_LANGUAGE_CODE' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
|
94 |
// Add child class specific atts
|
@@ -104,6 +130,20 @@ class WCJ_Shortcodes {
|
|
104 |
return '';
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
function wcj_get_user_location() {
|
108 |
$country = '';
|
109 |
if ( isset( $_GET['country'] ) && '' != $_GET['country'] && is_super_admin() ) {
|
4 |
*
|
5 |
* The WooCommerce Jetpack Shortcodes class.
|
6 |
*
|
7 |
+
* @version 2.2.9
|
8 |
* @author Algoritmika Ltd.
|
9 |
*/
|
10 |
|
53 |
|
54 |
/**
|
55 |
* wcj_shortcode.
|
56 |
+
*
|
57 |
+
* @version 2.2.9
|
58 |
*/
|
59 |
function wcj_shortcode( $atts, $content, $shortcode ) {
|
60 |
|
61 |
// Init
|
62 |
if ( empty( $atts ) ) $atts = array();
|
63 |
$global_defaults = array(
|
64 |
+
'before' => '',
|
65 |
+
'after' => '',
|
66 |
+
'visibility' => '',//user_visibility
|
67 |
+
'site_visibility' => '',
|
68 |
+
'location' => '',//user_location
|
69 |
+
'wpml_language' => '',
|
70 |
+
'wpml_not_language' => '',
|
71 |
+
'billing_country' => '',
|
72 |
+
'not_billing_country' => '',
|
73 |
);
|
74 |
$atts = array_merge( $global_defaults, $atts );
|
75 |
|
92 |
if ( '' != $atts['location'] && 'all' != $atts['location'] && $atts['location'] != $this->wcj_get_user_location() ) return '';
|
93 |
|
94 |
// Check if language is ok
|
95 |
+
if ( 'wcj_wpml' === $shortcode || 'wcj_wpml_translate' === $shortcode ) $atts['wpml_language'] = $atts['lang'];
|
96 |
+
if ( 'wcj_wpml' === $shortcode || 'wcj_wpml_translate' === $shortcode ) $atts['wpml_not_language'] = $atts['not_lang'];
|
97 |
if ( '' != $atts['wpml_language'] ) {
|
98 |
+
if ( ! defined( 'ICL_LANGUAGE_CODE' ) ) return '';
|
99 |
+
if ( ! in_array( ICL_LANGUAGE_CODE, $this->custom_explode( $atts['wpml_language'] ) ) ) return '';
|
100 |
+
}
|
101 |
+
// Check if language is ok (not in...)
|
102 |
+
if ( '' != $atts['wpml_not_language'] ) {
|
103 |
+
if ( defined( 'ICL_LANGUAGE_CODE' ) ) {
|
104 |
+
if ( in_array( ICL_LANGUAGE_CODE, $this->custom_explode( $atts['wpml_not_language'] ) ) ) return '';
|
105 |
+
}
|
106 |
+
}
|
107 |
+
|
108 |
+
// Check if billing country by arg is ok
|
109 |
+
if ( '' != $atts['billing_country'] ) {
|
110 |
+
if ( ! isset( $_GET['billing_country'] ) ) return '';
|
111 |
+
if ( ! in_array( $_GET['billing_country'], $this->custom_explode( $atts['billing_country'] ) ) ) return '';
|
112 |
+
}
|
113 |
+
// Check if billing country by arg is ok (not in...)
|
114 |
+
if ( '' != $atts['not_billing_country'] ) {
|
115 |
+
if ( isset( $_GET['billing_country'] ) ) {
|
116 |
+
if ( in_array( $_GET['billing_country'], $this->custom_explode( $atts['not_billing_country'] ) ) ) return '';
|
117 |
+
}
|
118 |
}
|
119 |
|
120 |
// Add child class specific atts
|
130 |
return '';
|
131 |
}
|
132 |
|
133 |
+
/**
|
134 |
+
* custom_explode.
|
135 |
+
*
|
136 |
+
* @since 2.2.9
|
137 |
+
*/
|
138 |
+
function custom_explode( $string_to_explode ) {
|
139 |
+
$string_to_explode = str_replace( ' ', '', $string_to_explode );
|
140 |
+
$string_to_explode = trim( $string_to_explode, ',' );
|
141 |
+
return explode( ',', $string_to_explode );
|
142 |
+
}
|
143 |
+
|
144 |
+
/**
|
145 |
+
* wcj_get_user_location.
|
146 |
+
*/
|
147 |
function wcj_get_user_location() {
|
148 |
$country = '';
|
149 |
if ( isset( $_GET['country'] ) && '' != $_GET['country'] && is_super_admin() ) {
|
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:
|
7 |
-
"POT-Creation-Date: 2015-
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
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/
|
19 |
-
msgid "
|
20 |
-
msgstr "
|
21 |
|
22 |
-
#: includes/
|
23 |
-
msgid "
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#: includes/
|
27 |
-
|
28 |
-
|
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/
|
36 |
-
|
37 |
-
|
|
|
38 |
|
39 |
-
#: includes/
|
40 |
-
msgid "
|
41 |
-
msgstr "
|
42 |
|
43 |
-
#: includes/
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
47 |
|
48 |
-
#: includes/admin/
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: includes/admin/
|
53 |
-
#: includes/admin/
|
54 |
msgid "Dashboard"
|
55 |
msgstr "Dashboard"
|
56 |
|
57 |
-
#: includes/admin/
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
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/
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
|
106 |
-
#: includes/admin/
|
107 |
-
#: includes/admin/
|
108 |
msgid "Select All"
|
109 |
msgstr "Alles selecteren"
|
110 |
|
111 |
-
#: includes/admin/
|
112 |
-
#: includes/admin/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: includes/admin/
|
117 |
-
#: includes/admin/
|
118 |
-
#: includes/admin/
|
119 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
120 |
msgid "Description"
|
121 |
msgstr "Omschrijving"
|
122 |
|
123 |
-
#: includes/admin/
|
124 |
-
msgid "
|
125 |
-
msgstr "
|
126 |
|
127 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
128 |
msgid ""
|
129 |
-
"This dashboard lets you enable/disable any
|
130 |
-
"with short
|
131 |
-
"target=\"_blank\">
|
132 |
msgstr ""
|
133 |
-
"
|
134 |
-
"
|
135 |
-
"target=\"_blank\">
|
136 |
-
|
|
|
|
|
|
|
137 |
|
138 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
139 |
msgid "Tools Dashboard"
|
140 |
msgstr "Hulpmiddelen Dashboard"
|
141 |
|
142 |
-
#: includes/admin/
|
143 |
-
msgid "WooCommerce
|
144 |
-
msgstr "WooCommerce
|
145 |
|
146 |
-
#: includes/admin/
|
147 |
msgid ""
|
148 |
"This dashboard lets you check statuses and short descriptions of all available "
|
149 |
-
"WooCommerce
|
150 |
-
"
|
151 |
msgstr ""
|
152 |
-
"
|
153 |
-
"WooCommerce
|
154 |
-
"ingeschakeld via WooCommerce > Instellingen >
|
155 |
-
"
|
156 |
|
157 |
-
#: includes/admin/
|
158 |
msgid "Tool"
|
159 |
msgstr "Hulpmiddel"
|
160 |
|
161 |
-
#: includes/admin/
|
162 |
msgid "Status"
|
163 |
msgstr "Status"
|
164 |
|
165 |
-
#: includes/
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
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/
|
290 |
-
msgid ""
|
291 |
-
"
|
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/
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
|
304 |
-
#: includes/
|
305 |
-
msgid ""
|
306 |
-
"
|
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/
|
314 |
-
msgid "
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: includes/
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: includes/
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: includes/class-wcj-add-to-cart.php:
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: includes/class-wcj-add-to-cart.php:
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#: includes/class-wcj-add-to-cart.php:
|
334 |
-
|
335 |
-
|
|
|
|
|
336 |
|
337 |
-
#: includes/class-wcj-add-to-cart.php:
|
338 |
msgid "Simple product"
|
339 |
msgstr "Simpel product"
|
340 |
|
341 |
-
#: includes/class-wcj-add-to-cart.php:
|
342 |
msgid "Variable product"
|
343 |
msgstr "Variabel product"
|
344 |
|
345 |
-
#: includes/class-wcj-add-to-cart.php:
|
346 |
msgid "External product"
|
347 |
msgstr "Extern product"
|
348 |
|
349 |
-
#: includes/class-wcj-add-to-cart.php:
|
350 |
msgid "Grouped product"
|
351 |
msgstr "Samengevoegd product"
|
352 |
|
353 |
-
#: includes/class-wcj-add-to-cart.php:
|
354 |
msgid "Other product"
|
355 |
msgstr "Ander product"
|
356 |
|
357 |
-
#: includes/class-wcj-add-to-cart.php:
|
358 |
msgid "Single product view."
|
359 |
msgstr "Enkel product weergave"
|
360 |
|
361 |
-
#: includes/class-wcj-add-to-cart.php:
|
362 |
-
#: includes/class-wcj-add-to-cart.php:
|
363 |
-
#: includes/class-wcj-payment-gateways.php:
|
364 |
msgid "Leave blank to disable."
|
365 |
msgstr "Laat leeg om uit te zetten."
|
366 |
|
367 |
-
#: includes/class-wcj-add-to-cart.php:
|
368 |
-
#: includes/class-wcj-add-to-cart.php:
|
369 |
-
#: includes/class-wcj-sorting.php:
|
370 |
-
#: includes/class-wcj-sorting.php:
|
371 |
-
#: includes/class-wcj-sorting.php:
|
372 |
msgid "Default: "
|
373 |
msgstr "Standaard:"
|
374 |
|
375 |
-
#: includes/class-wcj-add-to-cart.php:
|
376 |
msgid "Product category (archive) view."
|
377 |
msgstr "Product categorie (archief) weergave"
|
378 |
|
379 |
-
#: includes/class-wcj-add-to-cart.php:
|
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:
|
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:
|
388 |
-
#: includes/class-wcj-add-to-cart.php:
|
389 |
-
#: includes/class-wcj-add-to-cart.php:
|
390 |
msgid "Add to cart"
|
391 |
msgstr "Voeg toe aan winkelwagen"
|
392 |
|
393 |
-
#: includes/class-wcj-add-to-cart.php:
|
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:
|
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:
|
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:
|
407 |
msgid "Read More"
|
408 |
msgstr "Lees meer"
|
409 |
|
410 |
-
#: includes/class-wcj-add-to-cart.php:
|
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:
|
415 |
msgid "Try: "
|
416 |
msgstr "Probeer:"
|
417 |
|
418 |
-
#: includes/class-wcj-add-to-cart.php:
|
419 |
msgid "Already in cart - Add Again?"
|
420 |
msgstr "Reeds toegevoegd aan winkelwagen. Opnieuw toevoegen?"
|
421 |
|
422 |
-
#: includes/class-wcj-add-to-cart.php:
|
423 |
msgid "Already in cart. Product category (archive) view."
|
424 |
msgstr "Reeds in winkelwagen. Product categorie (archief) weergave."
|
425 |
|
426 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
msgid "Call for Price Options"
|
428 |
msgstr "Bel voor prijs mogelijkheden"
|
429 |
|
430 |
-
#: includes/class-wcj-call-for-price.php:
|
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:
|
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:
|
442 |
-
msgid "
|
443 |
-
msgstr "
|
444 |
-
|
445 |
-
|
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:
|
450 |
msgid "Label to Show on Single"
|
451 |
msgstr "Label naar toon bij enkel"
|
452 |
|
453 |
-
#: includes/class-wcj-call-for-price.php:
|
454 |
-
#: includes/class-wcj-call-for-price.php:
|
455 |
-
#: includes/class-wcj-call-for-price.php:
|
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:
|
461 |
msgid "Label to Show on Archives"
|
462 |
msgstr "Label naar toon bij Archieven"
|
463 |
|
464 |
-
#: includes/class-wcj-call-for-price.php:
|
465 |
msgid "Label to Show on Homepage"
|
466 |
msgstr "Label naar toon bij homepagina"
|
467 |
|
468 |
-
#: includes/class-wcj-call-for-price.php:
|
469 |
msgid "Label to Show on Related"
|
470 |
msgstr "Label naar toon bij gerelateerd"
|
471 |
|
472 |
-
#: includes/class-wcj-call-for-price.php:
|
473 |
msgid "Hide Sale! Tag"
|
474 |
msgstr "Verberg de Uitverkoop! tag"
|
475 |
|
476 |
-
#: includes/class-wcj-call-for-price.php:
|
477 |
msgid "Hide the tag"
|
478 |
msgstr "Verberg de tag"
|
479 |
|
480 |
-
#: includes/class-wcj-cart.php:
|
481 |
-
msgid "Cart
|
482 |
-
msgstr "Winkelwagen
|
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:
|
489 |
-
msgid "Add
|
490 |
msgstr ""
|
491 |
-
"Voeg
|
492 |
-
"
|
493 |
|
494 |
-
#: includes/class-wcj-cart.php:
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
|
498 |
-
#: includes/class-wcj-cart.php:
|
499 |
-
|
500 |
-
|
|
|
501 |
|
502 |
-
#: includes/class-wcj-cart.php:
|
503 |
-
|
504 |
-
|
|
|
505 |
|
506 |
-
#: includes/class-wcj-cart.php:
|
507 |
-
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: includes/class-wcj-cart.php:
|
511 |
-
|
512 |
-
|
|
|
|
|
513 |
|
514 |
-
#: includes/class-wcj-cart.php:
|
515 |
-
msgid "
|
516 |
-
msgstr ""
|
517 |
|
518 |
-
#: includes/class-wcj-cart.php:
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
|
522 |
-
#: includes/class-wcj-cart.php:
|
523 |
-
msgid "
|
524 |
-
msgstr "
|
525 |
|
526 |
-
#: includes/class-wcj-cart.php:
|
527 |
-
msgid "
|
528 |
-
msgstr "
|
529 |
|
530 |
-
#: includes/class-wcj-cart.php:
|
531 |
-
msgid "
|
532 |
-
msgstr "
|
533 |
|
534 |
-
#: includes/class-wcj-cart.php:
|
535 |
-
msgid "
|
536 |
-
msgstr "
|
537 |
|
538 |
-
#: includes/class-wcj-cart.php:
|
539 |
-
msgid ""
|
540 |
-
"
|
541 |
-
|
542 |
-
|
|
|
|
|
|
|
|
|
|
|
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-
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#: includes/class-wcj-
|
553 |
-
msgid "
|
554 |
-
msgstr "
|
555 |
|
556 |
-
#: includes/class-wcj-
|
557 |
-
|
558 |
-
|
559 |
-
msgstr "Aangepaste afrekenvelden"
|
560 |
|
561 |
-
#: includes/class-wcj-
|
562 |
-
msgid "
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#: includes/class-wcj-
|
566 |
-
msgid "
|
567 |
-
msgstr "
|
568 |
|
569 |
-
#: includes/class-wcj-
|
570 |
-
msgid "
|
571 |
-
msgstr "
|
572 |
|
573 |
-
#: includes/class-wcj-
|
574 |
-
msgid "
|
575 |
-
msgstr "
|
576 |
|
577 |
-
#: includes/class-wcj-
|
578 |
-
|
579 |
-
|
580 |
-
msgid "enabled"
|
581 |
-
msgstr "Ingeschakeld"
|
582 |
|
583 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
# If you mean type your text here then use vul in
|
585 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
586 |
msgid "type"
|
587 |
msgstr "Soort, vul in"
|
588 |
|
589 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
590 |
-
#: includes/class-wcj-
|
|
|
591 |
msgid "Text"
|
592 |
msgstr "Tekst"
|
593 |
|
594 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
|
|
595 |
msgid "Textarea"
|
596 |
msgstr "Tekstveld"
|
597 |
|
598 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
599 |
msgid "Datepicker"
|
600 |
msgstr "Datumprikker"
|
601 |
|
602 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
|
|
603 |
msgid "Checkbox"
|
604 |
msgstr "Checkbox"
|
605 |
|
606 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
607 |
msgid "Password"
|
608 |
msgstr "Wachtwoord"
|
609 |
|
610 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
611 |
msgid "required"
|
612 |
msgstr "Verplicht"
|
613 |
|
614 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
615 |
msgid "label"
|
616 |
msgstr "Label"
|
617 |
|
618 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
619 |
msgid "placeholder"
|
620 |
msgstr "Plaatshouder"
|
621 |
|
622 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
623 |
msgid "section"
|
624 |
msgstr "Gedeelte"
|
625 |
|
626 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
|
|
627 |
msgid "Billing"
|
628 |
msgstr "Facturering"
|
629 |
|
630 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
msgid "Order Notes"
|
632 |
msgstr "Order notities"
|
633 |
|
634 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
635 |
msgid "Account"
|
636 |
msgstr "Account"
|
637 |
|
638 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
639 |
msgid "class"
|
640 |
msgstr "klasse"
|
641 |
|
642 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
643 |
msgid "Wide"
|
644 |
msgstr "Breedte"
|
645 |
|
646 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
647 |
msgid "First"
|
648 |
msgstr "Eerste"
|
649 |
|
650 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
651 |
msgid "Last"
|
652 |
msgstr "Laatste"
|
653 |
|
654 |
-
#: includes/class-wcj-checkout.php:
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#: includes/class-wcj-checkout.php:
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#: includes/class-wcj-checkout.php:
|
663 |
-
msgid ""
|
664 |
-
"
|
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:
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#: includes/class-wcj-checkout.php:
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#: includes/class-wcj-checkout.php:
|
679 |
-
msgid "
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#: includes/class-wcj-checkout.php:
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: includes/class-wcj-checkout.php:
|
687 |
-
msgid ""
|
688 |
-
"
|
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:
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
|
698 |
-
#: includes/class-wcj-currencies.php:
|
699 |
#: includes/class-wcj-currency-external-products.php:80
|
700 |
msgid "Currency Symbol"
|
701 |
msgstr "Valuta symbool"
|
702 |
|
703 |
-
#: includes/class-wcj-currencies.php:
|
704 |
msgid "This sets the currency symbol."
|
705 |
msgstr "Dit stelt het valuta symbool in."
|
706 |
|
707 |
-
#: includes/class-wcj-currencies.php:
|
708 |
msgid "Currencies Options"
|
709 |
msgstr "Valuta opties"
|
710 |
|
711 |
-
#: includes/class-wcj-currencies.php:
|
712 |
-
msgid "
|
713 |
-
msgstr "
|
714 |
|
715 |
-
#: includes/class-wcj-currencies.php:
|
716 |
-
msgid "Add all world currencies
|
717 |
-
msgstr "
|
|
|
718 |
|
719 |
-
#: includes/class-wcj-currencies.php:
|
720 |
msgid "Currency Symbol Options"
|
721 |
msgstr "Valuta symbool opties"
|
722 |
|
723 |
-
#: includes/class-wcj-currencies.php:
|
724 |
msgid "Hide Currency Symbol"
|
725 |
msgstr "Verberg valuta opties"
|
726 |
|
727 |
-
#: includes/class-wcj-currencies.php:
|
|
|
|
|
|
|
|
|
728 |
#: includes/class-wcj-shipping-calculator.php:167
|
729 |
msgid "Hide"
|
730 |
msgstr "Verberg"
|
731 |
|
732 |
-
#: includes/class-wcj-currencies.php:
|
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:
|
759 |
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
760 |
-
msgstr "WooCommerce
|
761 |
|
762 |
-
#: includes/class-wcj-emails.php:
|
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:
|
771 |
msgid "Cc Email"
|
772 |
msgstr "Cc Email"
|
773 |
|
774 |
-
#: includes/class-wcj-emails.php:
|
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:
|
779 |
msgid "Bcc Email"
|
780 |
msgstr "Bcc Email"
|
781 |
|
782 |
-
#: includes/class-wcj-emails.php:
|
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:
|
787 |
msgid "Emails Options"
|
788 |
msgstr "Emails opties"
|
789 |
|
790 |
-
#: includes/class-wcj-emails.php:
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#: includes/class-wcj-emails.php:
|
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:
|
799 |
msgid "Email Forwarding Options"
|
800 |
msgstr "Email doorstuur opties"
|
801 |
|
802 |
-
#: includes/class-wcj-
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: includes/class-wcj-
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
|
810 |
-
#: includes/class-wcj-
|
811 |
-
msgid "
|
812 |
-
msgstr "
|
813 |
|
814 |
-
#: includes/class-wcj-
|
815 |
-
msgid "
|
816 |
-
msgstr "
|
817 |
|
818 |
-
#: includes/class-wcj-
|
819 |
-
msgid "
|
820 |
-
msgstr "
|
821 |
|
822 |
-
#: includes/class-wcj-
|
823 |
-
msgid "
|
824 |
-
msgstr "
|
825 |
|
826 |
-
#: includes/class-wcj-
|
827 |
-
msgid "
|
828 |
-
msgstr "
|
829 |
|
830 |
-
#: includes/class-wcj-
|
831 |
-
msgid "
|
832 |
-
msgstr "
|
833 |
|
834 |
-
#: includes/class-wcj-
|
835 |
-
|
836 |
-
|
837 |
-
msgstr "uitgeschakeld"
|
838 |
|
839 |
-
#: includes/class-wcj-
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
|
843 |
-
#: includes/class-wcj-
|
844 |
-
msgid "
|
845 |
-
msgstr "
|
846 |
|
847 |
-
#: includes/class-wcj-
|
848 |
-
msgid "
|
849 |
-
msgstr "
|
850 |
|
851 |
-
#: includes/class-wcj-
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
|
855 |
-
#: includes/class-wcj-
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
|
859 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
860 |
msgid ""
|
861 |
-
"
|
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-
|
870 |
-
msgid "
|
871 |
-
msgstr "
|
872 |
|
873 |
-
#: includes/class-wcj-
|
874 |
-
msgid "
|
875 |
-
msgstr "
|
876 |
|
877 |
-
#: includes/class-wcj-
|
878 |
-
msgid "
|
879 |
-
msgstr "
|
880 |
|
881 |
-
#: includes/class-wcj-
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
|
885 |
-
#: includes/class-wcj-
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
|
889 |
-
#: includes/class-wcj-
|
890 |
-
msgid "
|
891 |
-
msgstr "
|
892 |
|
893 |
-
#: includes/class-wcj-
|
894 |
-
msgid "
|
895 |
-
msgstr "
|
896 |
|
897 |
-
#: includes/class-wcj-
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
#: includes/class-wcj-
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#: includes/class-wcj-
|
906 |
-
msgid ""
|
907 |
-
"
|
908 |
-
"orders starting from order counter settings in WooCommerce > Settings > Jetpack > "
|
909 |
-
"Order Numbers."
|
910 |
-
msgstr ""
|
911 |
|
912 |
-
#: includes/class-wcj-
|
913 |
-
|
914 |
-
|
915 |
-
msgstr "Ordernummers"
|
916 |
|
917 |
-
#: includes/class-wcj-
|
918 |
-
msgid ""
|
919 |
-
"
|
920 |
-
"suffix and width."
|
921 |
-
msgstr ""
|
922 |
|
923 |
-
#: includes/class-wcj-
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
|
927 |
-
#: includes/class-wcj-
|
928 |
-
msgid ""
|
929 |
-
"
|
930 |
-
msgstr ""
|
931 |
|
932 |
-
#: includes/class-wcj-
|
933 |
-
msgid "
|
934 |
-
msgstr "
|
935 |
|
936 |
-
#: includes/class-wcj-
|
937 |
-
msgid "
|
938 |
-
msgstr "
|
939 |
|
940 |
-
#: includes/class-wcj-
|
941 |
-
msgid "
|
942 |
-
msgstr "
|
943 |
|
944 |
-
#: includes/class-wcj-
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#: includes/class-wcj-
|
949 |
-
msgid "
|
950 |
-
msgstr "
|
951 |
|
952 |
-
#: includes/class-wcj-
|
953 |
-
msgid "
|
954 |
-
msgstr ""
|
955 |
|
956 |
-
#: includes/class-wcj-
|
957 |
msgid ""
|
958 |
-
"
|
959 |
-
"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/class-wcj-
|
963 |
-
msgid "
|
964 |
-
msgstr ""
|
965 |
|
966 |
-
#: includes/class-wcj-
|
967 |
-
msgid ""
|
968 |
-
"
|
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-
|
975 |
-
msgid "
|
976 |
-
msgstr "
|
977 |
|
978 |
-
#: includes/class-wcj-
|
979 |
-
msgid ""
|
980 |
-
"
|
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-
|
987 |
-
msgid "
|
988 |
-
msgstr ""
|
989 |
|
990 |
-
#: includes/class-wcj-
|
991 |
-
msgid ""
|
992 |
-
"
|
993 |
-
"existing orders."
|
994 |
-
msgstr ""
|
995 |
|
996 |
-
#: includes/class-wcj-order-
|
997 |
-
msgid "Order
|
998 |
-
msgstr ""
|
999 |
|
1000 |
-
#: includes/class-wcj-order-
|
1001 |
-
msgid ""
|
1002 |
-
"
|
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-
|
1009 |
msgctxt "Order status"
|
1010 |
msgid "Pending payment"
|
1011 |
msgstr "In afwachting van betaling [Orderstatus]"
|
1012 |
|
1013 |
-
#: includes/class-wcj-
|
|
|
1014 |
msgctxt "Order status"
|
1015 |
msgid "Processing"
|
1016 |
msgstr "In behandeling [Orderstatus]"
|
1017 |
|
1018 |
-
#: includes/class-wcj-
|
1019 |
msgctxt "Order status"
|
1020 |
msgid "On hold"
|
1021 |
msgstr "Op pauze [Orderstatus]"
|
1022 |
|
1023 |
-
#: includes/class-wcj-
|
|
|
1024 |
msgctxt "Order status"
|
1025 |
msgid "Completed"
|
1026 |
msgstr "Afgerond [Orderstatus]"
|
1027 |
|
1028 |
-
#: includes/class-wcj-
|
|
|
1029 |
msgctxt "Order status"
|
1030 |
msgid "Cancelled"
|
1031 |
msgstr "Geannuleerd [Orderstatus]"
|
1032 |
|
1033 |
-
#: includes/class-wcj-
|
|
|
1034 |
msgctxt "Order status"
|
1035 |
msgid "Refunded"
|
1036 |
msgstr "Gecrediteerd [Orderstatus]"
|
1037 |
|
1038 |
-
#: includes/class-wcj-
|
|
|
1039 |
msgctxt "Order status"
|
1040 |
msgid "Failed"
|
1041 |
msgstr "Onsuccesvol [Orderstatus]"
|
1042 |
|
1043 |
-
#: includes/class-wcj-
|
1044 |
-
#: includes/class-wcj-
|
|
|
1045 |
msgid "Custom Statuses"
|
1046 |
msgstr "Aangepaste statussen"
|
1047 |
|
1048 |
-
#: includes/class-wcj-
|
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-
|
1055 |
msgid "Status slug is empty. Status not added."
|
1056 |
msgstr "Status slug is leeg. Status niet toegevoegd."
|
1057 |
|
1058 |
-
#: includes/class-wcj-
|
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-
|
1063 |
msgid "Status label is empty. Status not added."
|
1064 |
msgstr "Status label is leeg. Status niet toegevoegd."
|
1065 |
|
1066 |
-
#: includes/class-wcj-
|
1067 |
msgid "Duplicate slug. Status not added."
|
1068 |
msgstr "Dupliceer slug. Status niet toegevoegd."
|
1069 |
|
1070 |
-
#: includes/class-wcj-
|
1071 |
msgid "New status have been successfully added!"
|
1072 |
msgstr "Nieuwe status is succesvol toegevoegd."
|
1073 |
|
1074 |
-
#: includes/class-wcj-
|
1075 |
msgid "Status was not added."
|
1076 |
msgstr "Status is niet toegevoegd."
|
1077 |
|
1078 |
-
#: includes/class-wcj-
|
1079 |
msgid "Status have been successfully deleted."
|
1080 |
msgstr "Status is succesvol verwijderd."
|
1081 |
|
1082 |
-
#: includes/class-wcj-
|
1083 |
msgid "Delete failed."
|
1084 |
msgstr "Verwijderen niet gelukt."
|
1085 |
|
1086 |
-
#: includes/class-wcj-
|
1087 |
msgid "WooCommerce Jetpack - Custom Statuses"
|
1088 |
-
msgstr "WooCommerce
|
1089 |
|
1090 |
-
#: includes/class-wcj-
|
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-
|
1097 |
msgid "Statuses"
|
1098 |
msgstr "Statussen"
|
1099 |
|
1100 |
-
#: includes/class-wcj-
|
1101 |
msgid "Slug"
|
1102 |
msgstr "Slug"
|
1103 |
|
1104 |
-
#: includes/class-wcj-
|
|
|
1105 |
msgid "Label"
|
1106 |
msgstr "Label"
|
1107 |
|
1108 |
-
#: includes/class-wcj-
|
|
|
1109 |
msgid "Delete"
|
1110 |
msgstr "Verwijder"
|
1111 |
|
1112 |
-
#: includes/class-wcj-
|
1113 |
msgid "Slug (without wc- prefix)"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: includes/class-wcj-
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
1119 |
|
1120 |
-
#: includes/class-wcj-
|
1121 |
-
|
1122 |
-
|
|
|
|
|
|
|
1123 |
|
1124 |
-
#: includes/class-wcj-
|
1125 |
-
msgid "
|
|
|
|
|
|
|
1126 |
msgstr ""
|
1127 |
-
"Minimaal bestelbedrag, orders automatisch afronden, orders aangepaste statussen"
|
1128 |
|
1129 |
-
#: includes/class-wcj-
|
1130 |
-
msgid "
|
1131 |
-
msgstr "
|
1132 |
|
1133 |
-
#: includes/class-wcj-
|
1134 |
-
msgid "
|
1135 |
-
msgstr "
|
1136 |
|
1137 |
-
#: includes/class-wcj-
|
1138 |
-
msgid "
|
1139 |
-
msgstr "
|
1140 |
|
1141 |
-
#: includes/class-wcj-
|
1142 |
-
msgid "
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
-
#: includes/class-wcj-
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
|
|
1163 |
msgid "Add"
|
1164 |
msgstr "Voeg toe"
|
1165 |
|
1166 |
-
#: includes/class-wcj-orders.php:
|
1167 |
msgid "Message on cart page"
|
1168 |
msgstr "Bericht op winkelwagen pagina"
|
1169 |
|
1170 |
-
#: includes/class-wcj-orders.php:
|
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:
|
1177 |
msgid "Redirect back to Cart page"
|
1178 |
msgstr "Omleiding terug naar winkelwagenpagina."
|
1179 |
|
1180 |
-
#: includes/class-wcj-orders.php:
|
1181 |
msgid "Orders Auto-Complete"
|
1182 |
msgstr "Orders automatisch afronden"
|
1183 |
|
1184 |
-
#: includes/class-wcj-orders.php:
|
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:
|
1189 |
msgid "Auto-complete all WooCommerce orders"
|
1190 |
msgstr "Automatisch afronden van alle WooCommerce orders"
|
1191 |
|
1192 |
-
#: includes/class-wcj-orders.php:
|
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:
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
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:
|
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:
|
1234 |
-
msgid "
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/class-wcj-payment-gateways.php:
|
1238 |
-
|
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:
|
1246 |
-
#: includes/class-wcj-payment-gateways.php:369
|
1247 |
msgid "Payment Gateways Fees Options"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/class-wcj-payment-gateways.php:
|
1251 |
msgid "This section lets you set extra fees for payment gateways."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
1263 |
msgid "Fee type."
|
1264 |
msgstr "Toeslag soort"
|
1265 |
|
1266 |
-
#: includes/class-wcj-payment-gateways.php:
|
1267 |
msgid "Percent or fixed value."
|
1268 |
msgstr "Percentage of vast bedrag."
|
1269 |
|
1270 |
-
#: includes/class-wcj-payment-gateways.php:
|
1271 |
msgid "Fixed"
|
1272 |
msgstr "Vaste"
|
1273 |
|
1274 |
-
#: includes/class-wcj-payment-gateways.php:
|
1275 |
msgid "Percent"
|
1276 |
msgstr "Procent"
|
1277 |
|
1278 |
-
#: includes/class-wcj-payment-gateways.php:
|
1279 |
msgid "Fee value."
|
1280 |
msgstr "Toeslag bedrag"
|
1281 |
|
1282 |
-
#: includes/class-wcj-payment-gateways.php:
|
1283 |
msgid "The value."
|
1284 |
msgstr "De waarde."
|
1285 |
|
1286 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
1291 |
-
#: includes/class-wcj-payment-gateways.php:
|
1292 |
msgid "Set 0 to disable."
|
1293 |
msgstr "Stel 0 in om uit te schakelen."
|
1294 |
|
1295 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
1300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/class-wcj-payment-gateways.php:
|
1304 |
-
msgid "
|
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:
|
1310 |
-
msgid "
|
1311 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
|
1313 |
-
#: includes/class-wcj-payment-gateways.php:
|
1314 |
-
msgid "Payment Gateways
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/class-wcj-payment-gateways.php:
|
1318 |
-
#: includes/class-wcj-
|
1319 |
-
msgid "
|
|
|
|
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/class-wcj-payment-gateways.php:
|
1323 |
-
msgid "
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/class-wcj-payment-gateways.php:
|
1327 |
msgid ""
|
1328 |
-
"
|
1329 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: includes/class-wcj-payment-gateways.php:
|
1333 |
msgid "Custom Payment Gateways Options"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: includes/class-wcj-payment-gateways.php:
|
1337 |
msgid "Number of Gateways"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: includes/class-wcj-payment-gateways.php:
|
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-
|
1347 |
-
msgid "
|
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-
|
1357 |
-
msgid "
|
1358 |
msgstr ""
|
|
|
|
|
1359 |
|
1360 |
-
#: includes/class-wcj-
|
1361 |
-
msgid "
|
1362 |
-
msgstr ""
|
1363 |
|
1364 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1365 |
msgid "Invoice"
|
1366 |
msgstr "Factuur"
|
1367 |
|
1368 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
1369 |
msgid "PDF Invoice"
|
1370 |
msgstr "PDF factuur"
|
1371 |
|
1372 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1373 |
msgid "PDF Invoices Options"
|
1374 |
msgstr "PDF factuur opties"
|
1375 |
|
1376 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1377 |
-
msgid "
|
1378 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1379 |
|
1380 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1381 |
-
msgid "Add PDF invoices for the store owners and for the customers."
|
1382 |
-
msgstr "
|
|
|
1383 |
|
1384 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1385 |
msgid "Invoice Header"
|
1386 |
msgstr "Factuur koptekst"
|
1387 |
|
1388 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1395 |
msgid "Your Logo URL"
|
1396 |
msgstr "Jouw Logo URL"
|
1397 |
|
1398 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
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:
|
1407 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1408 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1409 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1410 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1411 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1412 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1413 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1414 |
msgid "Leave blank to disable"
|
1415 |
msgstr "Laat leeg om uit te schakelen"
|
1416 |
|
1417 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1418 |
msgid "Header Text"
|
1419 |
msgstr "Koptekst"
|
1420 |
|
1421 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1422 |
msgid "Default: INVOICE"
|
1423 |
msgstr "Default: FACTUUR"
|
1424 |
|
1425 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1426 |
msgid "INVOICE"
|
1427 |
msgstr "FACTUUR"
|
1428 |
|
1429 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1430 |
msgid "Invoice Number"
|
1431 |
msgstr "Factuurnummer"
|
1432 |
|
1433 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1434 |
msgid "Default: Invoice number"
|
1435 |
msgstr "Default: Factuurnummer"
|
1436 |
|
1437 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1438 |
msgid "Invoice number"
|
1439 |
msgstr "Factuurnummer"
|
1440 |
|
1441 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1442 |
msgid "Order Date"
|
1443 |
msgstr "Orderdatum"
|
1444 |
|
1445 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1446 |
msgid "Default: Order date"
|
1447 |
msgstr "Default: Orderdatum"
|
1448 |
|
1449 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1450 |
msgid "Order date"
|
1451 |
msgstr "Orderdatum"
|
1452 |
|
1453 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1454 |
msgid "Order Time"
|
1455 |
msgstr "Ordertijd"
|
1456 |
|
1457 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1458 |
msgid "Default: Order time"
|
1459 |
msgstr "Default: Ordertijd"
|
1460 |
|
1461 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1462 |
msgid "Order time"
|
1463 |
msgstr "Ordertijd"
|
1464 |
|
1465 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1466 |
msgid "Invoice Date"
|
1467 |
msgstr "Factuurdatum"
|
1468 |
|
1469 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1470 |
msgid "Default: Invoice date"
|
1471 |
msgstr "Default: Factuurdatum"
|
1472 |
|
1473 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1474 |
msgid "Invoice date"
|
1475 |
msgstr "Factuurdatum"
|
1476 |
|
1477 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1478 |
msgid "Default: Invoice due date"
|
1479 |
msgstr "Default: Uiterste betaaldatum"
|
1480 |
|
1481 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1482 |
msgid "Invoice due date"
|
1483 |
msgstr "Uiterste betaaldatum"
|
1484 |
|
1485 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1486 |
msgid "days"
|
1487 |
msgstr "dagen"
|
1488 |
|
1489 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1490 |
msgid "Default: Invoice fulfillment date"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1494 |
msgid "Invoice fulfillment date"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1498 |
msgid "Additional Header"
|
1499 |
msgstr "Extra koptekst"
|
1500 |
|
1501 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1510 |
msgid "Seller and Buyer Info"
|
1511 |
msgstr "Verkoper en koper Info"
|
1512 |
|
1513 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1514 |
msgid "Seller"
|
1515 |
msgstr "Verkoper"
|
1516 |
|
1517 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1518 |
msgid "Your business information"
|
1519 |
msgstr "Jouw bedrijfsinformatie"
|
1520 |
|
1521 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1522 |
msgid "New lines are added automatically."
|
1523 |
msgstr "Nieuwe regels worden automatisch toegevoegd."
|
1524 |
|
1525 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1526 |
msgid "<strong>Company Name</strong>"
|
1527 |
msgstr "<strong>Bedrijfsnaam</strong>"
|
1528 |
|
1529 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1530 |
msgid "Buyer"
|
1531 |
msgstr "Koper"
|
1532 |
|
1533 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1534 |
msgid "Items"
|
1535 |
msgstr "Producten"
|
1536 |
|
1537 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1538 |
msgid "Items Table Heading Text"
|
1539 |
msgstr "Producten tabel koptekst"
|
1540 |
|
1541 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1542 |
msgid "Shipping as Item"
|
1543 |
msgstr "Verzendkosten als product"
|
1544 |
|
1545 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1546 |
msgid "Display shipping as item"
|
1547 |
msgstr "Laat verzendkosten zien als product"
|
1548 |
|
1549 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1550 |
msgid "Add shipping method info"
|
1551 |
msgstr "Voeg verzendmethode informatie toe"
|
1552 |
|
1553 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1554 |
msgid "Do not add shipping method info"
|
1555 |
msgstr "Voeg geen verzendmethode informatie toe"
|
1556 |
|
1557 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1558 |
msgid "Replace with shipping method info"
|
1559 |
msgstr "Vervang verzendmethode informatie"
|
1560 |
|
1561 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1562 |
msgid "Discount as Item"
|
1563 |
msgstr "Korting als product"
|
1564 |
|
1565 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1566 |
msgid "Display discount as item"
|
1567 |
msgstr "Toon korting als product"
|
1568 |
|
1569 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1570 |
msgid "Items Columns"
|
1571 |
msgstr "Productkolommen"
|
1572 |
|
1573 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1582 |
msgid "Nr."
|
1583 |
msgstr "Nr."
|
1584 |
|
1585 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1586 |
msgid "Item Name"
|
1587 |
msgstr "Productnaam"
|
1588 |
|
1589 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1590 |
msgid "Item Name Additional Info"
|
1591 |
msgstr "Productnaam extra info"
|
1592 |
|
1593 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1600 |
msgid "(SKU: %sku%)"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1604 |
msgid "Qty"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1608 |
msgid "Single Item Price (TAX excl.)"
|
1609 |
msgstr "Enkel productprijs (Excl. BTW)"
|
1610 |
|
1611 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1612 |
msgid "Price (TAX excl.)"
|
1613 |
msgstr "Prijs (Excl. BTW)"
|
1614 |
|
1615 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1616 |
msgid "Single Item TAX"
|
1617 |
msgstr "Enkel product BTW"
|
1618 |
|
1619 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1620 |
msgid "TAX"
|
1621 |
msgstr "BTW"
|
1622 |
|
1623 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1624 |
msgid "Single Item Price (TAX incl.)"
|
1625 |
msgstr "Enkel productprijs (Incl. BTW)"
|
1626 |
|
1627 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1628 |
msgid "Price (TAX incl.)"
|
1629 |
msgstr "Prijs (inc. BTW)"
|
1630 |
|
1631 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1632 |
msgid "Sum (TAX excl.)"
|
1633 |
msgstr "Totaal (excl. BTW)"
|
1634 |
|
1635 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1636 |
msgid "Tax Percent"
|
1637 |
msgstr "BTW percentage"
|
1638 |
|
1639 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1640 |
msgid "Taxes %"
|
1641 |
msgstr "BTW %"
|
1642 |
|
1643 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1644 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1645 |
msgid "Taxes"
|
1646 |
msgstr "BTW"
|
1647 |
|
1648 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1649 |
msgid "Sum (TAX incl.)"
|
1650 |
msgstr "Totaal (incl. BTW)"
|
1651 |
|
1652 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1653 |
msgid "Totals"
|
1654 |
msgstr "Totaal"
|
1655 |
|
1656 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1661 |
msgid "Order Subtotal"
|
1662 |
msgstr "Order Subtotaal"
|
1663 |
|
1664 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1665 |
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1666 |
msgstr "Order Subtotaal = Totaal - BTW - Verzendkosten - korting"
|
1667 |
|
1668 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1669 |
msgid "Order Shipping Price"
|
1670 |
msgstr "Order verzendkosten"
|
1671 |
|
1672 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1673 |
msgid "Total Discount"
|
1674 |
msgstr "Totale korting"
|
1675 |
|
1676 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1677 |
msgid "Discount"
|
1678 |
msgstr "Korting"
|
1679 |
|
1680 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1681 |
msgid "Order Total (TAX excl.)"
|
1682 |
msgstr "Order Totaal (Excl. BTW)"
|
1683 |
|
1684 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1695 |
msgid "Order Total Taxes"
|
1696 |
msgstr "Order Totaal BTW"
|
1697 |
|
1698 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1699 |
msgid "Order Total"
|
1700 |
msgstr "Order Totaal"
|
1701 |
|
1702 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
1703 |
msgid "Footer"
|
1704 |
msgstr "Voettekst"
|
1705 |
|
1706 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1707 |
msgid "Payment Method"
|
1708 |
msgstr "Betaalmethode"
|
1709 |
|
1710 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1711 |
msgid "Shipping Method"
|
1712 |
msgstr "Verzendmethode"
|
1713 |
|
1714 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1715 |
msgid "Shipping Address"
|
1716 |
msgstr "Verzendadres"
|
1717 |
|
1718 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1727 |
msgid "Additional Footer"
|
1728 |
msgstr "Extra voettekst"
|
1729 |
|
1730 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1739 |
-
msgid "
|
1740 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1741 |
|
1742 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1743 |
msgid "Default: 8"
|
1744 |
msgstr "Default: 8"
|
1745 |
|
1746 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1747 |
msgid "CSS"
|
1748 |
msgstr "CSS"
|
1749 |
|
1750 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
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:
|
1759 |
msgid "PDF Invoices for Customers (Email attachment)"
|
1760 |
msgstr "PDF Facturen voor klanten (Email bijlage)"
|
1761 |
|
1762 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1768 |
msgid "Enable Save as"
|
1769 |
msgstr "Schakel in Opslaan als"
|
1770 |
|
1771 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1779 |
|
1780 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
msgid "Price by Country Options"
|
1782 |
msgstr "Prijs per Land opties"
|
1783 |
|
1784 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
1797 |
-
#: includes/class-wcj-price-by-country.php:
|
1798 |
msgid "Prices and Currencies by Country"
|
1799 |
msgstr "Prijzen en valuta per Land"
|
1800 |
|
1801 |
-
#: includes/class-wcj-price-by-country.php:
|
1802 |
-
msgid "
|
1803 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1804 |
|
1805 |
-
#: includes/class-wcj-price-by-country.php:
|
1806 |
-
msgid "
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
-
#: includes/class-wcj-price-by-country.php:
|
1810 |
-
msgid "
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
-
#: includes/class-wcj-price-by-country.php:
|
1814 |
msgid "Groups Number"
|
1815 |
msgstr "Groepsnumme"
|
1816 |
|
1817 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1825 |
msgid "Multiply Price by"
|
1826 |
msgstr "Vermenigvuldig prijs met"
|
1827 |
|
1828 |
-
#: includes/class-wcj-price-by-country.php:
|
1829 |
-
msgid "
|
1830 |
-
msgstr "
|
1831 |
|
1832 |
-
#: includes/class-wcj-price-
|
|
|
|
|
|
|
|
|
|
|
1833 |
msgid "Migrate from Custom Price Labels (Pro)"
|
1834 |
msgstr "Migreer van Aangepaste Prijslabels (Pro)"
|
1835 |
|
1836 |
-
#: includes/class-wcj-price-labels.php:
|
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
|
1843 |
|
1844 |
-
#: includes/class-wcj-price-labels.php:
|
1845 |
msgid "Migrate from Custom Price Labels"
|
1846 |
msgstr "Migreer van Aangepaste Prijslabels"
|
1847 |
|
1848 |
-
#: includes/class-wcj-price-labels.php:
|
1849 |
msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
|
1850 |
-
msgstr "WooCommerce
|
1851 |
|
1852 |
-
#: includes/class-wcj-price-labels.php:
|
1853 |
msgid "Migrating (product ID "
|
1854 |
msgstr "Migreren (product ID"
|
1855 |
|
1856 |
-
#: includes/class-wcj-price-labels.php:
|
1857 |
msgid "Result: "
|
1858 |
msgstr "Resultaat:"
|
1859 |
|
1860 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1865 |
msgid "No data to migrate found"
|
1866 |
msgstr "Geen data gevonden om te migreren."
|
1867 |
|
1868 |
-
#: includes/class-wcj-price-labels.php:
|
1869 |
msgid "No products found"
|
1870 |
msgstr "Geen producten gevonden"
|
1871 |
|
1872 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1881 |
msgid "Migrate data"
|
1882 |
msgstr "Migreer data"
|
1883 |
|
1884 |
-
#: includes/class-wcj-price-labels.php:
|
1885 |
msgid "Custom Price Labels Options"
|
1886 |
msgstr "Aangepaste Prijs labels Opties"
|
1887 |
|
1888 |
-
#: includes/class-wcj-price-labels.php:
|
1889 |
msgid "Custom Price Labels"
|
1890 |
msgstr "Aangepaste Prijs Labels"
|
1891 |
|
1892 |
-
#: includes/class-wcj-price-labels.php:
|
1893 |
-
msgid "
|
1894 |
-
msgstr "
|
1895 |
|
1896 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
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:
|
1909 |
msgid "Add before the price"
|
1910 |
msgstr "Voeg toe voor de prijs"
|
1911 |
|
1912 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1919 |
msgid "Add after the price"
|
1920 |
msgstr "Voeg toe na de prijs"
|
1921 |
|
1922 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1929 |
msgid "Add between regular and sale prices"
|
1930 |
-
msgstr ""
|
1931 |
|
1932 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
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:
|
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-
|
1971 |
-
msgid "
|
1972 |
-
msgstr "
|
1973 |
-
|
1974 |
-
#: includes/class-wcj-product-info.php:27
|
1975 |
-
msgid "Before product title"
|
1976 |
-
msgstr "Voor producttitel"
|
1977 |
|
1978 |
-
#: includes/class-wcj-product-
|
1979 |
-
msgid "
|
1980 |
-
|
|
|
|
|
1981 |
|
1982 |
-
#: includes/class-wcj-product-
|
1983 |
-
msgid "
|
1984 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
2003 |
msgid "%s ago"
|
2004 |
msgstr "% geleden"
|
2005 |
|
2006 |
-
#: includes/class-wcj-product-info.php:
|
2007 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
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:
|
2025 |
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: includes/class-wcj-product-info.php:
|
2029 |
msgid "Total sales: %total_sales%"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: includes/class-wcj-product-info.php:
|
2033 |
msgid "Default"
|
2034 |
msgstr "Standaard"
|
2035 |
|
2036 |
-
#: includes/class-wcj-product-info.php:
|
2037 |
msgid "Field Nr. "
|
2038 |
msgstr "Veld nr."
|
2039 |
|
2040 |
-
#: includes/class-wcj-product-info.php:
|
2041 |
msgid "Available short codes: "
|
2042 |
msgstr "Beschikbare shortcodes:"
|
2043 |
|
2044 |
-
#: includes/class-wcj-product-info.php:
|
2045 |
msgid "Product Info Options"
|
2046 |
msgstr "Product Info Opties"
|
2047 |
|
2048 |
-
#: includes/class-wcj-product-info.php:
|
2049 |
msgid "Product Info"
|
2050 |
msgstr "Product info"
|
2051 |
|
2052 |
-
#: includes/class-wcj-product-info.php:
|
2053 |
-
msgid "
|
2054 |
-
msgstr "
|
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:
|
2061 |
msgid "More Products Info"
|
2062 |
msgstr "Meer productinfo"
|
2063 |
|
2064 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
2075 |
msgid "Product Info on Archive Pages"
|
2076 |
msgstr "Product Info op de Archiefpagina's"
|
2077 |
|
2078 |
-
#: includes/class-wcj-product-info.php:
|
2079 |
msgid "Product Info on Single Pages"
|
2080 |
msgstr "Product info op losse pagina's"
|
2081 |
|
2082 |
-
#: includes/class-wcj-product-info.php:
|
2083 |
msgid "Even More Products Info"
|
2084 |
msgstr "Nog meer productinfo"
|
2085 |
|
2086 |
-
#: includes/class-wcj-product-info.php:
|
2087 |
msgid "HTML info."
|
2088 |
msgstr "HTML info."
|
2089 |
|
2090 |
-
#: includes/class-wcj-product-info.php:
|
2091 |
msgid "SKU: %sku%"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: includes/class-wcj-product-info.php:
|
2095 |
msgid "Product Info on Single Product Pages"
|
2096 |
msgstr "Product Info op losse productpagina"
|
2097 |
|
2098 |
-
#: includes/class-wcj-product-info.php:
|
2099 |
-
msgid "
|
2100 |
-
msgstr "
|
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:
|
2123 |
-
msgid "
|
2124 |
-
msgstr "
|
2125 |
|
2126 |
-
#: includes/class-wcj-product-
|
2127 |
-
msgid "
|
2128 |
-
msgstr "
|
2129 |
|
2130 |
-
#: includes/class-wcj-product-
|
2131 |
-
|
2132 |
-
|
|
|
|
|
2133 |
|
2134 |
-
#: includes/class-wcj-product-
|
2135 |
-
msgid "
|
2136 |
-
msgstr "
|
2137 |
|
2138 |
-
#: includes/class-wcj-product-input-fields
|
2139 |
-
msgid "Product Input Fields
|
2140 |
-
msgstr "Product Invoervelden
|
2141 |
|
2142 |
-
#: includes/class-wcj-product-input-fields
|
2143 |
-
#: includes/class-wcj-product-input-fields
|
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
|
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
|
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
|
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
|
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
|
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
|
2230 |
-
"exclude categories, show/hide empty categories."
|
2231 |
msgstr ""
|
2232 |
-
"Verander weergave opties voor winkel en categoriepagina
|
2233 |
-
"categoriëntelling,
|
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 "
|
2334 |
|
2335 |
#: includes/class-wcj-product-listings.php:179
|
2336 |
msgid "WooJetpack: Exclude Categories on Shop Page"
|
2337 |
-
msgstr "
|
2338 |
|
2339 |
#: includes/class-wcj-product-listings.php:188
|
2340 |
#: includes/class-wcj-product-listings.php:226
|
2341 |
msgid "WooJetpack: Hide Empty"
|
2342 |
-
msgstr "
|
2343 |
|
2344 |
#: includes/class-wcj-product-listings.php:196
|
2345 |
#: includes/class-wcj-product-listings.php:234
|
2346 |
msgid "WooJetpack: Show Products"
|
2347 |
-
msgstr "
|
2348 |
|
2349 |
#: includes/class-wcj-product-listings.php:207
|
2350 |
msgid "WooJetpack: Subcategories Count"
|
2351 |
-
msgstr "
|
2352 |
|
2353 |
#: includes/class-wcj-product-listings.php:217
|
2354 |
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
2355 |
-
msgstr "
|
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:
|
2362 |
-
|
2363 |
-
|
|
|
2364 |
|
2365 |
-
#: includes/class-wcj-product-tabs.php:
|
2366 |
-
|
2367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2482 |
msgid "WooJetpack: All in stock"
|
2483 |
-
msgstr "
|
2484 |
|
2485 |
-
#: includes/class-wcj-reports.php:
|
2486 |
msgid "WooJetpack: Understocked"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: includes/class-wcj-reports.php:
|
|
|
|
|
|
|
|
|
2490 |
msgid "WooJetpack: Customers by Country"
|
2491 |
-
msgstr "
|
2492 |
|
2493 |
-
#: includes/class-wcj-reports.php:
|
2494 |
msgid "WooJetpack: Customers by Country Sets"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: includes/class-wcj-reports.php:
|
2498 |
msgid "Reports Options"
|
2499 |
msgstr "Rapporten opties"
|
2500 |
|
2501 |
-
#: includes/class-wcj-reports.php:
|
2502 |
msgid "Reports"
|
2503 |
msgstr "Rapporten"
|
2504 |
|
2505 |
-
#: includes/class-wcj-reports.php:
|
2506 |
-
msgid "
|
2507 |
-
msgstr "
|
2508 |
|
2509 |
-
#: includes/class-wcj-reports.php:
|
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:
|
2518 |
msgid ""
|
2519 |
"WooJetpack: Customers by Country. Available in WooCommerce > Reports > Customers."
|
2520 |
msgstr ""
|
2521 |
-
"
|
|
|
2522 |
|
2523 |
-
#: includes/class-wcj-reports.php:
|
2524 |
msgid ""
|
2525 |
"WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
|
2526 |
"Customers."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: includes/class-wcj-reports.php:
|
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:
|
2536 |
msgid ""
|
2537 |
"WooJetpack: Understocked products (calculated by sales data). Available in "
|
2538 |
"WooCommerce > Reports > Stock."
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: includes/class-wcj-
|
2542 |
-
msgid "
|
2543 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
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 "
|
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
|
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-
|
2641 |
-
msgid "
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: includes/class-wcj-
|
2645 |
-
msgid "
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: includes/class-wcj-
|
2649 |
-
msgid "
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: includes/class-wcj-
|
2653 |
-
msgid "
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: includes/class-wcj-
|
2657 |
-
msgid "
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: includes/class-wcj-
|
2661 |
-
msgid "
|
2662 |
msgstr ""
|
2663 |
-
"Meer sorteeropties toevoegen of alle sorteringen verwijderen, inclusief standaard."
|
2664 |
|
2665 |
-
#: includes/class-wcj-
|
2666 |
-
msgid "
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/class-wcj-
|
2670 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: includes/class-wcj-sorting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2674 |
msgid "Add More Sorting"
|
2675 |
msgstr "Voeg meer sorteren toe"
|
2676 |
|
2677 |
-
#: includes/class-wcj-sorting.php:
|
2678 |
msgid "Sort by Name"
|
2679 |
msgstr "Sorteer op Naam"
|
2680 |
|
2681 |
-
#: includes/class-wcj-sorting.php:
|
2682 |
msgid "Sort by title: A to Z"
|
2683 |
msgstr "Sorteer op titel: A tot Z"
|
2684 |
|
2685 |
-
#: includes/class-wcj-sorting.php:
|
2686 |
-
#: includes/class-wcj-sorting.php:
|
2687 |
-
#: includes/class-wcj-sorting.php:
|
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:
|
2692 |
msgid "Sort by title: Z to A"
|
2693 |
msgstr "Sorteer op titel: Z tot A"
|
2694 |
|
2695 |
-
#: includes/class-wcj-sorting.php:
|
2696 |
msgid "Sort by SKU"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: includes/class-wcj-sorting.php:
|
2700 |
msgid "Sort by SKU: low to high"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: includes/class-wcj-sorting.php:
|
2704 |
msgid "Sort by SKU: high to low"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: includes/class-wcj-sorting.php:
|
|
|
|
|
|
|
|
|
2708 |
msgid "Sort by stock quantity"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: includes/class-wcj-sorting.php:
|
2712 |
msgid "Sort by stock quantity: low to high"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: includes/class-wcj-sorting.php:
|
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:
|
3025 |
msgid "Latvian lats"
|
3026 |
msgstr "Letse Lats"
|
3027 |
|
3028 |
-
#: includes/currencies/wcj-currencies.php:
|
3029 |
msgid "Lebanese lira"
|
3030 |
msgstr "Lebanese Pond"
|
3031 |
|
3032 |
-
#: includes/currencies/wcj-currencies.php:
|
3033 |
msgid "Lesotho loti"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: includes/currencies/wcj-currencies.php:
|
3037 |
msgid "Liberian dollar"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: includes/currencies/wcj-currencies.php:
|
3041 |
msgid "Libyan dinar"
|
3042 |
msgstr "Libische Dinar"
|
3043 |
|
3044 |
-
#: includes/currencies/wcj-currencies.php:
|
3045 |
msgid "Lithuanian litas"
|
3046 |
msgstr "Litouwse Litas"
|
3047 |
|
3048 |
-
#: includes/currencies/wcj-currencies.php:
|
3049 |
msgid "Macanese pataca"
|
3050 |
msgstr "Macau Pataka"
|
3051 |
|
3052 |
-
#: includes/currencies/wcj-currencies.php:
|
3053 |
msgid "Macedonian denar"
|
3054 |
msgstr "Macedonische Denar"
|
3055 |
|
3056 |
-
#: includes/currencies/wcj-currencies.php:
|
3057 |
msgid "Malagasy ariary"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: includes/currencies/wcj-currencies.php:
|
3061 |
msgid "Malaysian ringgit"
|
3062 |
msgstr "Maleise Ringgit"
|
3063 |
|
3064 |
-
#: includes/currencies/wcj-currencies.php:
|
3065 |
msgid "Malawian kwacha"
|
3066 |
msgstr "Malawiaanse Kwacha"
|
3067 |
|
3068 |
-
#: includes/currencies/wcj-currencies.php:
|
3069 |
msgid "Maldivian rufiyaa"
|
3070 |
msgstr "Maledivische Rufiyaa"
|
3071 |
|
3072 |
-
#: includes/currencies/wcj-currencies.php:
|
3073 |
msgid "Mauritanian ouguiya"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: includes/currencies/wcj-currencies.php:
|
3077 |
msgid "Mauritian rupee"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: includes/currencies/wcj-currencies.php:
|
3081 |
msgid "Mexican peso"
|
3082 |
msgstr "Mexicaanse Peso"
|
3083 |
|
3084 |
-
#: includes/currencies/wcj-currencies.php:
|
3085 |
msgid "Myanma kyat"
|
3086 |
msgstr "Myanmar Kyat"
|
3087 |
|
3088 |
-
#: includes/currencies/wcj-currencies.php:
|
3089 |
msgid "Moldovan leu"
|
3090 |
msgstr "Moldavische Leu"
|
3091 |
|
3092 |
-
#: includes/currencies/wcj-currencies.php:
|
3093 |
msgid "Mongolian tugrik"
|
3094 |
msgstr "Mongoolse Tugrik"
|
3095 |
|
3096 |
-
#: includes/currencies/wcj-currencies.php:
|
3097 |
msgid "Moroccan dirham"
|
3098 |
msgstr "Marrokaanse Dirham"
|
3099 |
|
3100 |
-
#: includes/currencies/wcj-currencies.php:
|
3101 |
msgid "Mozambican metical"
|
3102 |
msgstr "Mozambique Metical"
|
3103 |
|
3104 |
-
#: includes/currencies/wcj-currencies.php:
|
3105 |
msgid "Namibian dollar"
|
3106 |
msgstr "Namibische Dollar"
|
3107 |
|
3108 |
-
#: includes/currencies/wcj-currencies.php:
|
3109 |
msgid "Nepalese rupee"
|
3110 |
msgstr "Nepalese Rupee"
|
3111 |
|
3112 |
-
#: includes/currencies/wcj-currencies.php:
|
3113 |
msgid "Netherlands Antillean gulden"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: includes/currencies/wcj-currencies.php:
|
3117 |
msgid "New Taiwan dollar"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: includes/currencies/wcj-currencies.php:
|
3121 |
msgid "New Zealand dollar"
|
3122 |
msgstr "Nieuw Zeelandse Dollar"
|
3123 |
|
3124 |
-
#: includes/currencies/wcj-currencies.php:
|
3125 |
msgid "Nicaraguan cordoba"
|
3126 |
msgstr "Nicaragua Cordoba"
|
3127 |
|
3128 |
-
#: includes/currencies/wcj-currencies.php:
|
3129 |
msgid "Nigerian naira"
|
3130 |
msgstr "Nigeriaanse Naira"
|
3131 |
|
3132 |
-
#: includes/currencies/wcj-currencies.php:
|
3133 |
msgid "North Korean won"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: includes/currencies/wcj-currencies.php:
|
3137 |
msgid "Norwegian krone"
|
3138 |
msgstr "Noorse Kroon"
|
3139 |
|
3140 |
-
#: includes/currencies/wcj-currencies.php:
|
3141 |
msgid "Omani rial"
|
3142 |
msgstr "Omaanse Rial"
|
3143 |
|
3144 |
-
#: includes/currencies/wcj-currencies.php:
|
3145 |
msgid "Paanga"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: includes/currencies/wcj-currencies.php:
|
3149 |
msgid "Pakistani rupee"
|
3150 |
msgstr "Pakistaanse Roepie"
|
3151 |
|
3152 |
-
#: includes/currencies/wcj-currencies.php:
|
3153 |
msgid "Panamanian balboa"
|
3154 |
msgstr "Panamese Balboa"
|
3155 |
|
3156 |
-
#: includes/currencies/wcj-currencies.php:
|
3157 |
msgid "Papua New Guinean kina"
|
3158 |
msgstr "Papua Nieuw Guinea Kina"
|
3159 |
|
3160 |
-
#: includes/currencies/wcj-currencies.php:
|
3161 |
msgid "Paraguayan guarani"
|
3162 |
msgstr "Paraguayaanse Guarani"
|
3163 |
|
3164 |
-
#: includes/currencies/wcj-currencies.php:
|
3165 |
msgid "Peruvian nuevo sol"
|
3166 |
msgstr "Peruaanse Sol"
|
3167 |
|
3168 |
-
#: includes/currencies/wcj-currencies.php:
|
3169 |
msgid "Philippine peso"
|
3170 |
msgstr "Filipijnse Peso"
|
3171 |
|
3172 |
-
#: includes/currencies/wcj-currencies.php:
|
3173 |
msgid "Polish zloty"
|
3174 |
msgstr "Poolse zloty"
|
3175 |
|
3176 |
-
#: includes/currencies/wcj-currencies.php:
|
3177 |
msgid "Qatari riyal"
|
3178 |
msgstr "Quatar Rial"
|
3179 |
|
3180 |
-
#: includes/currencies/wcj-currencies.php:
|
3181 |
msgid "Romanian leu"
|
3182 |
msgstr "Roemeese Leu"
|
3183 |
|
3184 |
-
#: includes/currencies/wcj-currencies.php:
|
3185 |
msgid "Russian ruble"
|
3186 |
msgstr "Russische roebel"
|
3187 |
|
3188 |
-
#: includes/currencies/wcj-currencies.php:
|
3189 |
msgid "Rwandan franc"
|
3190 |
msgstr "Rwandese Frank"
|
3191 |
|
3192 |
-
#: includes/currencies/wcj-currencies.php:
|
3193 |
msgid "Saint Helena pound"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: includes/currencies/wcj-currencies.php:
|
3197 |
msgid "Samoan tala"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: includes/currencies/wcj-currencies.php:
|
3201 |
msgid "Sao Tome and Principe dobra"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: includes/currencies/wcj-currencies.php:
|
3205 |
msgid "Saudi riyal"
|
3206 |
msgstr "Saudi Rial"
|
3207 |
|
3208 |
-
#: includes/currencies/wcj-currencies.php:
|
3209 |
msgid "Seychellois rupee"
|
3210 |
msgstr "Seychelse Rupee"
|
3211 |
|
3212 |
-
#: includes/currencies/wcj-currencies.php:
|
3213 |
msgid "Serbian dinar"
|
3214 |
msgstr "Servische Dinar"
|
3215 |
|
3216 |
-
#: includes/currencies/wcj-currencies.php:
|
3217 |
msgid "Sierra Leonean leone"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: includes/currencies/wcj-currencies.php:
|
3221 |
msgid "Singapore dollar"
|
3222 |
msgstr "Singapore Dollar"
|
3223 |
|
3224 |
-
#: includes/currencies/wcj-currencies.php:
|
3225 |
msgid "Syrian pound"
|
3226 |
msgstr "Syrische pind"
|
3227 |
|
3228 |
-
#: includes/currencies/wcj-currencies.php:
|
3229 |
msgid "Slovak koruna"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: includes/currencies/wcj-currencies.php:
|
3233 |
msgid "Solomon Islands dollar"
|
3234 |
msgstr "Salomon Dollar"
|
3235 |
|
3236 |
-
#: includes/currencies/wcj-currencies.php:
|
3237 |
msgid "Somali shilling"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: includes/currencies/wcj-currencies.php:
|
3241 |
msgid "South African rand"
|
3242 |
msgstr "Zuid-afrikaanse rand"
|
3243 |
|
3244 |
-
#: includes/currencies/wcj-currencies.php:
|
3245 |
msgid "South Korean won"
|
3246 |
msgstr "Zuid/Koreaanse Won"
|
3247 |
|
3248 |
-
#: includes/currencies/wcj-currencies.php:
|
3249 |
msgid "Special Drawing Rights"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: includes/currencies/wcj-currencies.php:
|
3253 |
msgid "Sri Lankan rupee"
|
3254 |
msgstr "Sri Langkese Ruppee"
|
3255 |
|
3256 |
-
#: includes/currencies/wcj-currencies.php:
|
3257 |
msgid "Sudanese pound"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: includes/currencies/wcj-currencies.php:
|
3261 |
-
msgid "Surinamese dollar"
|
3262 |
-
msgstr "Surinaamse dollar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3263 |
|
3264 |
-
#: includes/
|
3265 |
-
msgid "
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: includes/
|
3269 |
-
msgid "
|
3270 |
-
msgstr "
|
3271 |
-
|
3272 |
-
#: includes/currencies/wcj-currencies.php:143
|
3273 |
-
msgid "Swiss franc"
|
3274 |
-
msgstr "Zwitserse Frank"
|
3275 |
|
3276 |
-
#: includes/
|
3277 |
-
msgid "
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: includes/
|
3281 |
-
msgid "
|
3282 |
-
msgstr "
|
3283 |
|
3284 |
-
#: includes/
|
3285 |
-
msgid "
|
3286 |
-
msgstr "
|
3287 |
|
3288 |
-
#: includes/
|
3289 |
-
msgid "
|
3290 |
-
msgstr ""
|
3291 |
|
3292 |
-
#: includes/
|
3293 |
-
msgid "
|
3294 |
-
msgstr "
|
3295 |
|
3296 |
-
#: includes/
|
3297 |
-
msgid "
|
3298 |
-
msgstr "
|
3299 |
|
3300 |
-
#: includes/
|
3301 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: includes/
|
3305 |
-
msgid "
|
|
|
|
|
|
|
|
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: includes/
|
3309 |
-
msgid "
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: includes/
|
3313 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: includes/
|
3317 |
-
msgid "
|
3318 |
-
msgstr "
|
3319 |
|
3320 |
-
#: includes/
|
3321 |
-
msgid "
|
3322 |
-
msgstr "
|
3323 |
|
3324 |
-
#: includes/
|
3325 |
-
msgid "
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: includes/
|
3329 |
-
msgid "
|
3330 |
-
msgstr "
|
3331 |
|
3332 |
-
#: includes/
|
3333 |
-
msgid "
|
3334 |
-
msgstr "
|
3335 |
|
3336 |
-
#: includes/
|
3337 |
-
msgid "
|
3338 |
-
msgstr "
|
3339 |
|
3340 |
-
#: includes/
|
3341 |
-
msgid "
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: includes/
|
3345 |
-
msgid "
|
3346 |
-
msgstr "
|
3347 |
|
3348 |
-
#: includes/
|
3349 |
-
msgid "
|
3350 |
-
msgstr "
|
3351 |
|
3352 |
-
#: includes/
|
3353 |
-
msgid "
|
3354 |
-
msgstr "
|
3355 |
|
3356 |
-
#: includes/
|
3357 |
-
|
3358 |
-
|
3359 |
-
msgstr "Inschakelen/uitschakelen"
|
3360 |
|
3361 |
-
#: includes/
|
3362 |
-
msgid "
|
3363 |
-
msgstr "
|
3364 |
|
3365 |
-
#: includes/
|
3366 |
-
|
3367 |
-
msgid "This controls the title which the user sees during checkout."
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: includes/
|
3371 |
-
msgid "
|
3372 |
-
msgstr "
|
3373 |
|
3374 |
-
#: includes/
|
3375 |
-
msgid "
|
3376 |
-
msgstr "
|
3377 |
|
3378 |
-
#: includes/
|
3379 |
-
msgid "
|
3380 |
-
msgstr "
|
3381 |
|
3382 |
-
#: includes/
|
3383 |
-
msgid "
|
3384 |
-
msgstr "
|
3385 |
|
3386 |
-
#: includes/
|
3387 |
-
msgid "
|
3388 |
-
msgstr "
|
3389 |
|
3390 |
-
#: includes/
|
3391 |
-
msgid "
|
3392 |
-
msgstr "
|
3393 |
|
3394 |
-
#: includes/
|
3395 |
-
msgid "
|
3396 |
-
msgstr "
|
3397 |
|
3398 |
-
#: includes/
|
3399 |
-
msgid "
|
3400 |
-
msgstr "
|
3401 |
|
3402 |
-
#: includes/
|
3403 |
-
msgid "
|
3404 |
-
msgstr "
|
3405 |
|
3406 |
-
#: includes/
|
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/
|
3413 |
-
msgid "
|
3414 |
-
msgstr "
|
3415 |
|
3416 |
-
#: includes/
|
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/
|
3423 |
-
msgid "
|
3424 |
-
msgstr "
|
3425 |
|
3426 |
-
#: includes/
|
3427 |
-
msgid "
|
3428 |
-
msgstr "
|
3429 |
|
3430 |
-
#: includes/
|
3431 |
-
msgid "
|
|
|
|
|
|
|
|
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: includes/
|
3435 |
-
msgid "
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: includes/
|
3439 |
-
msgid "
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
3443 |
msgid "No customers found."
|
3444 |
msgstr "Geen klanten gevonden."
|
3445 |
|
3446 |
-
#: includes/reports/wcj-class-reports-customers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3447 |
msgid "Total customers"
|
3448 |
msgstr "Totaal aan klanten"
|
3449 |
|
3450 |
-
#: includes/reports/wcj-class-reports-customers.php:
|
3451 |
msgid "Country Code"
|
3452 |
msgstr "Landcode"
|
3453 |
|
3454 |
-
#: includes/reports/wcj-class-reports-customers.php:
|
3455 |
msgid "Customers Count"
|
3456 |
msgstr "Klanten telling"
|
3457 |
|
3458 |
-
#: includes/reports/wcj-class-reports-customers.php:
|
3459 |
msgid "Percent of total"
|
3460 |
msgstr "Percentage van totaal"
|
3461 |
|
3462 |
-
#: includes/reports/wcj-class-reports-
|
|
|
|
|
|
|
|
|
3463 |
msgid "All Products on Stock"
|
3464 |
msgstr "Alle producten op voorraad"
|
3465 |
|
3466 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
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:
|
3472 |
msgid "Understocked"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
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:
|
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:
|
3486 |
-
msgid "
|
3487 |
-
msgstr "
|
3488 |
|
3489 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3490 |
-
msgid "
|
3491 |
-
|
|
|
|
|
3492 |
|
3493 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3494 |
msgid "Stock"
|
3495 |
msgstr "Voorraad"
|
3496 |
|
3497 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3498 |
msgid "Stock price"
|
3499 |
msgstr "Voorraad prijs"
|
3500 |
|
3501 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
|
|
|
|
|
|
|
|
3502 |
msgid "Last sale"
|
3503 |
msgstr "Laatste verkoop"
|
3504 |
|
3505 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3506 |
msgid "Sales in last %s days"
|
3507 |
msgstr "Verkoop in laatste % dagen"
|
3508 |
|
3509 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3510 |
msgid "Total sales"
|
3511 |
msgstr "Totale verkoop"
|
3512 |
|
3513 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3514 |
msgid "Stock to minimum"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3518 |
msgid "No sales yet"
|
3519 |
msgstr "Nog geen verkopen"
|
3520 |
|
3521 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
|
|
|
|
|
|
|
|
3522 |
msgid "Total current stock value"
|
3523 |
msgstr "Totale waarde van voorraad nu"
|
3524 |
|
3525 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3526 |
msgid "Total stock value"
|
3527 |
msgstr "Totale voorraad waarde"
|
3528 |
|
3529 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3530 |
msgid "Product stock value average"
|
3531 |
msgstr "Gemiddelde waarde productvoorraad"
|
3532 |
|
3533 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
3534 |
msgid "Product stock average"
|
3535 |
msgstr "Gemiddelde productvoorraad "
|
3536 |
|
3537 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
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
|
3549 |
|
3550 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:58
|
3551 |
msgid "Enable Custom Shipping"
|
3552 |
msgstr "Schakel Aangepaste Verzendkosten in."
|
3553 |
|
3554 |
-
|
3555 |
-
|
3556 |
-
|
3557 |
-
|
|
|
3558 |
|
3559 |
-
#: woocommerce-jetpack.php:
|
3560 |
-
msgid "
|
3561 |
-
msgstr "
|
3562 |
|
3563 |
-
|
3564 |
-
|
3565 |
-
|
|
|
3566 |
|
3567 |
-
#: woocommerce-jetpack.php:
|
|
|
|
|
|
|
|
|
3568 |
msgid "Docs"
|
3569 |
msgstr "Docs"
|
3570 |
|
3571 |
-
#: woocommerce-jetpack.php:
|
3572 |
msgid "Unlock all"
|
3573 |
msgstr "Alles vrijgeven"
|
3574 |
|
3575 |
-
#: woocommerce-jetpack.php:
|
3576 |
-
msgid "Install WooCommerce
|
3577 |
msgstr ""
|
3578 |
-
"Installeer WooCommerce
|
3579 |
|
3580 |
-
#: woocommerce-jetpack.php:
|
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:
|
3586 |
msgid "Buy now"
|
3587 |
msgstr "Koop nu"
|
3588 |
|
3589 |
-
#: woocommerce-jetpack.php:
|
3590 |
msgid "Visit %s"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: woocommerce-jetpack.php:
|
3594 |
msgid ""
|
3595 |
-
"Get <a href=\"http://
|
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:
|
3602 |
msgid ""
|
3603 |
-
"Get <a href=\"http://
|
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:
|
3610 |
msgid ""
|
3611 |
-
"Get <a href=\"http://
|
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:
|
3618 |
-
msgid "Get WooCommerce
|
3619 |
-
msgstr "
|
3620 |
|
3621 |
#. Plugin URI of the plugin/theme
|
3622 |
-
msgid "http://
|
3623 |
-
msgstr "
|
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 "Å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Ç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é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ão Tomé and Prí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.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
7 |
"jetpack\n"
|
8 |
-
"POT-Creation-Date: 2015-08-
|
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:
|
30 |
msgid "Booster"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
34 |
msgid "Save changes"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
38 |
msgid "Alphabetically"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
42 |
msgid "By Category"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
46 |
msgid "Active"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
50 |
#: includes/admin/wcj-modules-cats.php:15
|
51 |
msgid "Dashboard"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
55 |
msgid "WooCommerce"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
59 |
-
#: woocommerce-jetpack.php:
|
60 |
msgid "Settings"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
64 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
65 |
msgid "Select All"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
69 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
70 |
msgid "Module"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
74 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
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:
|
81 |
msgid "Total Modules:"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
85 |
msgid "Booster for WooCommerce - Dashboard"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
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:
|
141 |
msgid "Cart & Checkout"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/admin/wcj-modules-cats.php:
|
145 |
msgid "Shipping & Orders"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/admin/wcj-modules-cats.php:
|
149 |
msgid "PDF Invoicing & Packing Slips"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/admin/wcj-modules-cats.php:
|
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:
|
169 |
-
#: includes/class-wcj-product-images.php:
|
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:
|
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:
|
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:
|
308 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
316 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
317 |
-
#: includes/class-wcj-general.php:74 includes/class-wcj-order-numbers.php:
|
318 |
#: includes/class-wcj-orders.php:245
|
319 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
324 |
-
#: includes/class-wcj-product-info.php:
|
325 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
|
|
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:
|
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:
|
371 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
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:
|
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:
|
428 |
#: includes/class-wcj-old-slugs.php:49
|
429 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
430 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
441 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
562 |
-
#: includes/class-wcj-product-info.php:
|
563 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
668 |
msgid "Leave blank for WooCommerce defaults."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/class-wcj-checkout-
|
672 |
-
|
|
|
|
|
|
|
|
|
|
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/class-wcj-checkout-
|
676 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
msgid "Checkout Custom Fields"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
681 |
msgid "Add custom fields to WooCommerce checkout page."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
|
|
|
|
|
|
|
|
685 |
msgid "Add All Fields to Admin Emails"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
689 |
msgid "Add All Fields to Customers Emails"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
693 |
msgid "The Fields"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
697 |
msgid "Custom Fields Number"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
701 |
msgid "Custom Field"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
705 |
msgid "type"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
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:
|
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:
|
720 |
msgid "Datepicker"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
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:
|
729 |
msgid "Password"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
733 |
msgid "required"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
737 |
msgid "label"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
741 |
msgid "placeholder"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
745 |
msgid "section"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
749 |
#: includes/class-wcj-checkout-custom-info.php:86
|
750 |
msgid "Billing"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
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:
|
761 |
msgid "Order Notes"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
765 |
msgid "Account"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
769 |
msgid "class"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
773 |
msgid "Wide"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
777 |
msgid "First"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
781 |
msgid "Last"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: includes/class-wcj-checkout-custom-fields.php:
|
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:
|
864 |
-
#: includes/class-wcj-product-images.php:
|
865 |
-
#: includes/class-wcj-product-images.php:
|
866 |
-
#: includes/class-wcj-product-images.php:
|
867 |
-
#: includes/class-wcj-related-products.php:
|
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:
|
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:
|
1126 |
msgid "Order Custom Statuses"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1130 |
msgid "Custom statuses for WooCommerce orders."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1134 |
msgctxt "Order status"
|
1135 |
msgid "Pending payment"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1139 |
-
#: includes/functions/wcj-functions.php:
|
1140 |
msgctxt "Order status"
|
1141 |
msgid "Processing"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1145 |
msgctxt "Order status"
|
1146 |
msgid "On hold"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1150 |
-
#: includes/functions/wcj-functions.php:
|
1151 |
msgctxt "Order status"
|
1152 |
msgid "Completed"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1156 |
-
#: includes/functions/wcj-functions.php:
|
1157 |
msgctxt "Order status"
|
1158 |
msgid "Cancelled"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1162 |
-
#: includes/functions/wcj-functions.php:
|
1163 |
msgctxt "Order status"
|
1164 |
msgid "Refunded"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1168 |
-
#: includes/functions/wcj-functions.php:
|
1169 |
msgctxt "Order status"
|
1170 |
msgid "Failed"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1174 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1175 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1176 |
msgid "Custom Statuses"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
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:
|
1184 |
msgid "Status slug is empty. Status not added."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1188 |
msgid "The length of status slug must be 17 or less characters."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1192 |
msgid "Status label is empty. Status not added."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1196 |
msgid "Duplicate slug. Status not added."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1200 |
msgid "New status have been successfully added!"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1204 |
msgid "Status was not added."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1208 |
msgid "Status have been successfully deleted."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1212 |
msgid "Delete failed."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1216 |
msgid "WooCommerce Jetpack - Custom Statuses"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
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:
|
1225 |
msgid "Statuses"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1229 |
msgid "Slug"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1233 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1234 |
msgid "Label"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1238 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1239 |
msgid "Delete"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1243 |
msgid "Slug (without wc- prefix)"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1247 |
-
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
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:
|
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:
|
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-
|
1268 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
1276 |
msgid "Renumerate orders"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/class-wcj-order-numbers.php:
|
1280 |
msgid "Orders successfully renumerated!"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/class-wcj-order-numbers.php:
|
1284 |
msgid "WooCommerce Jetpack - Renumerate Orders"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
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:
|
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:
|
1317 |
msgid "Next Order Number"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: includes/class-wcj-order-numbers.php:
|
1321 |
msgid "Next new order will be given this number."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: includes/class-wcj-order-numbers.php:
|
1325 |
msgid "Use Renumerate Orders tool for existing orders."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: includes/class-wcj-order-numbers.php:
|
1329 |
msgid "This will be ignored if sequential order numbering is disabled."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: includes/class-wcj-order-numbers.php:
|
1333 |
msgid "Order Number Custom Prefix"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
1343 |
msgid "Order Number Date Prefix"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
1356 |
msgid "Order Number Width"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
1368 |
msgid "Order Number Custom Suffix"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
1378 |
msgid "Order Number Date Suffix"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: includes/class-wcj-order-numbers.php:
|
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:
|
1482 |
-
msgid "Payment Gateways Fees"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1486 |
-
msgid "Enable extra fees for WooCommerce payment gateways."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1490 |
-
msgid "Payment Gateways Fees Options"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1494 |
msgid "This section lets you set extra fees for payment gateways."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1498 |
-
msgid "Fee title to show to customer."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1502 |
-
msgid "Fee type."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1506 |
msgid "Percent or fixed value."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
|
|
1510 |
msgid "Fixed"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
|
|
1514 |
msgid "Percent"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1518 |
-
msgid "Fee value."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1522 |
-
msgid "The value."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1526 |
-
msgid "Minimum cart amount for adding the fee."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1530 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1531 |
msgid "Set 0 to disable."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1535 |
-
msgid "Maximum cart amount for adding the fee."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1539 |
-
msgid "Round the fee value before adding to the cart."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1543 |
msgid "If rounding is enabled, set precision here."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1547 |
msgid "Is taxable?"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
1551 |
msgid "Tax Class (only if Taxable selected)."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: includes/class-wcj-payment-gateways-fees.php:
|
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:
|
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:
|
2096 |
msgid "PDF Invoicing General Options"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
2100 |
msgid "PDF Invoicing"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
2104 |
msgid ""
|
2105 |
"WooCommerce Invoices, Proforma Invoices, Credit Notes and Packing Slips."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
2109 |
msgid "Disabled"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
2113 |
msgid "Create on New Order"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
2117 |
msgid "Create on Order Status"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: includes/class-wcj-price-by-country.php:
|
2121 |
msgid "Price by Country Options"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
2131 |
-
#: includes/class-wcj-price-by-country.php:
|
2132 |
msgid "Prices and Currencies by Country"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
2142 |
msgid "Customer Country Detection Method"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
2152 |
msgid "by IP"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: includes/class-wcj-price-by-country.php:
|
2156 |
msgid "by user selection"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: includes/class-wcj-price-by-country.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2160 |
msgid "Price Rounding"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: includes/class-wcj-price-by-country.php:
|
2164 |
msgid "If you choose to multiply price, set rounding options here."
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: includes/class-wcj-price-by-country.php:
|
2168 |
msgid "No rounding"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: includes/class-wcj-price-by-country.php:
|
2172 |
msgid "Round"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: includes/class-wcj-price-by-country.php:
|
2176 |
msgid "Round down"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: includes/class-wcj-price-by-country.php:
|
2180 |
msgid "Round up"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: includes/class-wcj-price-by-country.php:
|
2184 |
msgid "Price by Country on per Product Basis"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: includes/class-wcj-price-by-country.php:
|
2188 |
msgid "This will add meta boxes in product edit."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: includes/class-wcj-price-by-country.php:
|
2192 |
msgid "Country Groups"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: includes/class-wcj-price-by-country.php:
|
2196 |
msgid "Groups Number"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: includes/class-wcj-price-by-country.php:
|
2200 |
msgid ""
|
2201 |
"Countries. List of comma separated country codes.<br>For country codes and "
|
2202 |
-
"predifined sets visit <a href=\"http://
|
2203 |
-
"currencies-by-customers-country\">
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: includes/class-wcj-price-by-country.php:
|
2207 |
msgid "Currency"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: includes/class-wcj-price-by-country.php:
|
2211 |
msgid "Exchange Rates"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/class-wcj-price-by-country.php:
|
2215 |
msgid "Exchange Rates Updates"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
2249 |
msgid "Multiply Price by"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: includes/class-wcj-price-by-country.php:
|
2253 |
msgid "Grab %s rate from Yahoo.com"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: includes/class-wcj-price-by-country.php:
|
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:
|
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:
|
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:
|
2495 |
msgid "Product Images"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: includes/class-wcj-product-images.php:
|
2499 |
msgid "Customize WooCommerce products images, thumbnails and sale flashes."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/class-wcj-product-images.php:
|
2503 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2504 |
msgid "Sale!"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: includes/class-wcj-product-images.php:
|
2508 |
msgid "Product Image and Thumbnails"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: includes/class-wcj-product-images.php:
|
2512 |
msgid "Image and Thumbnails on Single"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/class-wcj-product-images.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2516 |
msgid "Image on Single"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/class-wcj-product-images.php:
|
2520 |
msgid "Thumbnails on Single"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/class-wcj-product-images.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2524 |
msgid "Image on Archives"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/class-wcj-product-images.php:
|
2528 |
msgid "Single Product Thumbnails Columns"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/class-wcj-product-images.php:
|
2532 |
msgid "Product Images Sale Flash"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: includes/class-wcj-product-images.php:
|
2536 |
msgid "HTML"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: includes/class-wcj-product-images.php:
|
2540 |
msgid "Hide on Archives (Categories)"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: includes/class-wcj-product-images.php:
|
2544 |
msgid "Hide on Single"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: includes/class-wcj-product-info.php:
|
2548 |
msgid "Before product"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: includes/class-wcj-product-info.php:
|
2552 |
msgid "Before product title"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: includes/class-wcj-product-info.php:
|
2556 |
msgid "After product"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: includes/class-wcj-product-info.php:
|
2560 |
msgid "After product title"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: includes/class-wcj-product-info.php:
|
2564 |
msgid "Inside single product summary"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: includes/class-wcj-product-info.php:
|
2568 |
msgid "Before single product summary"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: includes/class-wcj-product-info.php:
|
2572 |
msgid "After single product summary"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
2584 |
-
#: includes/class-wcj-product-info.php:
|
2585 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
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:
|
2600 |
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/class-wcj-product-info.php:
|
2604 |
-
#: includes/class-wcj-product-info.php:
|
2605 |
msgid "Total sales: %total_sales%"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
2617 |
msgid "Available short codes: "
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: includes/class-wcj-product-info.php:
|
2621 |
msgid "Product Info Options"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: includes/class-wcj-product-info.php:
|
2625 |
-
#: includes/class-wcj-product-info.php:
|
2626 |
msgid "Product Info"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: includes/class-wcj-product-info.php:
|
2630 |
msgid "Add additional info to WooCommerce category and single product pages."
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: includes/class-wcj-product-info.php:
|
2634 |
msgid "More Products Info"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
2645 |
-
#: includes/class-wcj-product-info.php:
|
2646 |
msgid "Product Info on Archive Pages"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: includes/class-wcj-product-info.php:
|
2650 |
msgid "Product Info on Single Pages"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: includes/class-wcj-product-info.php:
|
2654 |
msgid "Even More Products Info"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: includes/class-wcj-product-info.php:
|
2658 |
-
#: includes/class-wcj-product-info.php:
|
2659 |
msgid "HTML info."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: includes/class-wcj-product-info.php:
|
2663 |
msgid "SKU: %sku%"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: includes/class-wcj-product-info.php:
|
2667 |
msgid "Product Info on Single Product Pages"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: includes/class-wcj-product-info.php:
|
2671 |
msgid "Product IDs to exclude"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: includes/class-wcj-product-info.php:
|
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:
|
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:
|
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:
|
3067 |
msgid "Related Products"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: includes/class-wcj-related-products.php:
|
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:
|
3077 |
msgid "Related Products Number"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: includes/class-wcj-related-products.php:
|
3081 |
msgid "Related Products Columns"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: includes/class-wcj-related-products.php:
|
3085 |
msgid "Order by"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: includes/class-wcj-related-products.php:
|
3089 |
msgid "Random"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: includes/class-wcj-related-products.php:
|
3093 |
msgid "Date"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: includes/class-wcj-related-products.php:
|
3097 |
msgid "Order"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: includes/class-wcj-related-products.php:
|
3101 |
msgid "Ignored if order by \"Random\" is selected above."
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: includes/class-wcj-related-products.php:
|
3105 |
msgid "Ascending"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: includes/class-wcj-related-products.php:
|
3109 |
msgid "Descending"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: includes/class-wcj-related-products.php:
|
3113 |
msgid "Relate by Category"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: includes/class-wcj-related-products.php:
|
3117 |
msgid "Relate by Tag"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: includes/class-wcj-related-products.php:
|
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:
|
3467 |
msgid "Wholesale Price"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: includes/class-wcj-wholesale-price.php:
|
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:
|
3477 |
msgid "Wholesale Price Levels Options"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: includes/class-wcj-wholesale-price.php:
|
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:
|
3487 |
msgid "Use total cart quantity instead of product quantity"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: includes/class-wcj-wholesale-price.php:
|
|
|
|
|
|
|
|
|
3491 |
msgid "Show discount info on cart page"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: includes/class-wcj-wholesale-price.php:
|
3495 |
msgid "Show"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: includes/class-wcj-wholesale-price.php:
|
3499 |
msgid "If show discount info on cart page is enabled, set format here"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: includes/class-wcj-wholesale-price.php:
|
|
|
|
|
|
|
|
|
3503 |
msgid "Products to include"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: includes/class-wcj-wholesale-price.php:
|
3507 |
msgid "Leave blank to include all products."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: includes/class-wcj-wholesale-price.php:
|
3511 |
msgid "Number of levels"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: includes/class-wcj-wholesale-price.php:
|
3515 |
msgid "Min quantity"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: includes/class-wcj-wholesale-price.php:
|
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:
|
3536 |
msgid "Back to Module Settings"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: includes/classes/class-wcj-module.php:
|
3540 |
msgid "Tools"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: includes/classes/class-wcj-module.php:
|
3544 |
msgid "Module Tools"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: includes/classes/class-wcj-module.php:
|
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:
|
5165 |
msgctxt "Order status"
|
5166 |
msgid "Pending Payment"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: includes/functions/wcj-functions.php:
|
5170 |
msgctxt "Order status"
|
5171 |
msgid "On Hold"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5175 |
msgid "Invoices"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5179 |
msgid "Proforma Invoice"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5183 |
msgid "Proforma Invoices"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5187 |
msgid "Packing Slip"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5191 |
msgid "Packing Slips"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
5195 |
msgid "Credit Note"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: includes/functions/wcj-invoicing-functions.php:
|
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:
|
5564 |
msgid "Admin - New Order"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:
|
|
|
|
|
|
|
|
|
5568 |
msgid "Customer - Processing Order"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:
|
5572 |
msgid "Customer - Completed Order"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
-
#: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:
|
5576 |
msgid "Customer - Invoice"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:
|
|
|
|
|
|
|
|
|
5580 |
msgid "Attach PDF to emails"
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: includes/pdf-invoices/settings/class-wcj-pdf-invoicing-emails.php:
|
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:
|
5838 |
msgid "Stock"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5842 |
msgid "Stock price"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5846 |
msgid "Total stock price"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5850 |
msgid "Last sale"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5854 |
msgid "Sales in last %s days"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5858 |
msgid "Total sales"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5862 |
msgid "Stock to minimum"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5866 |
msgid "purchase price:"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5870 |
msgid "stock purchase price:"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5874 |
msgid "No sales yet"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5878 |
msgid "profit:"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5882 |
msgid "Total current stock value"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5886 |
msgid "Total stock value"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5890 |
msgid "Product stock value average"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
5894 |
msgid "Product stock average"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: includes/reports/wcj-class-reports-stock.php:
|
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:
|
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:
|
5921 |
msgid "Got it! Hide this message"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#. #-#-#-#-# plugin.pot (Booster for WooCommerce 2.2.
|
5925 |
#. Plugin Name of the plugin/theme
|
5926 |
-
#: woocommerce-jetpack.php:
|
5927 |
msgid "Booster for WooCommerce"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: woocommerce-jetpack.php:
|
5931 |
msgid "Booster Settings"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: woocommerce-jetpack.php:
|
5935 |
msgid "Docs"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
-
#: woocommerce-jetpack.php:
|
5939 |
msgid "Unlock all"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
-
#: woocommerce-jetpack.php:
|
5943 |
msgid "Install Booster for WooCommerce Plus to unlock all features"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#: woocommerce-jetpack.php:
|
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:
|
5953 |
msgid "Buy now"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: woocommerce-jetpack.php:
|
5957 |
msgid "Visit %s"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: woocommerce-jetpack.php:
|
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:
|
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:
|
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:
|
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.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -111,6 +111,27 @@ 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 +153,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
|
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.9
|
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.9 - 01/09/2015 =
|
115 |
+
* Dev - Shortcodes - Orders - `[wcj_order_meta]` shortcode added (attribute: `meta_key`).
|
116 |
+
* Dev - Shortcodes - Orders - `[wcj_order_custom_meta_field]` shortcode added. Suggested by https://wordpress.org/support/topic/pdf-invoice-get-order-item-meta-data.
|
117 |
+
* Dev - Shortcodes - General - `[wcj_text]` shortcode added.
|
118 |
+
* Dev - Shortcodes - General - `not_lang` attribute added to `[wcj_wpml]` shortcode; `lang` modified to accept comma separated values.
|
119 |
+
* Dev - Shortcodes - `wpml_not_language` attribute added to all shortcodes; `wpml_language` modified to accept comma separated values.
|
120 |
+
* Dev - Shortcodes - `billing_country` and `not_billing_country` attributes added to all shortcodes.
|
121 |
+
* Fix - PRODUCTS - Product Input Fields - Local (i.e. per Product) Product Input Fields - Bug when increasing (and saving) the number of input fields, fixed.
|
122 |
+
* Dev - PRODUCTS - Product Input Fields - Local (i.e. per Product) Product Input Fields - Meta box layout changed.
|
123 |
+
* Dev - PRODUCTS - Product Tabs - Code refactoring.
|
124 |
+
* Dev - PRODUCTS - Product Tabs - Local (i.e. per Product) Custom Product Tabs - Meta box layout changed.
|
125 |
+
* Fix - PRODUCTS - Product Tabs - Local (i.e. per Product) Custom Product Tabs - Bug when increasing (and saving) the number of custom product tabs, fixed.
|
126 |
+
* Dev - PRODUCTS - Sorting - Remove All Sorting - Blaszok theme compatibility added.
|
127 |
+
* Dev - CART & CHECKOUT - Payment Gateways Fees and Discounts - Plus lock removed from "Tax Class" option.
|
128 |
+
|
129 |
+
= 2.2.8 - 23/08/2015 =
|
130 |
+
* Fix - EMAILS & MISC. - WPML - "Creating WPML XML file on each settings saving" disabled. Manual "Regenerate wpml-config.xml file" tool added.
|
131 |
+
* Dev - Select All checkbox style modified in `output_dashboard_modules` function.
|
132 |
+
* Dev - Dutch translation updated.
|
133 |
+
* Dev - POT file updated.
|
134 |
+
|
135 |
= 2.2.7 - 22/08/2015 =
|
136 |
* Dev - Russian translation added.
|
137 |
* Dev - "Module" added to `add_enable_module_setting()` in `WCJ_Module`.
|
153 |
* Dev - Code refactoring - Meta box support added to `WCJ_Module`.
|
154 |
* Dev - Code refactoring - `get_settings()` added to `WCJ_Module`.
|
155 |
* Dev - Dutch translation added.
|
156 |
+
* Dev - POT file updated.
|
157 |
* Dev - PRICES & CURRENCIES - Price by Country - "WooJetpack" to "BoostWoo" in country group fields descriptions.
|
158 |
* Dev - PRICES & CURRENCIES - Price by Country - "Override Country on Checkout with Billing Country" option added. "No country was detected" routine disabled.
|
159 |
* 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 |
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.9
|
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" />
|