Version Description
- 15/11/2019 =
- Fix - CART & CHECKOUT - Checkout Custom Fields - Preserve checkbox field value when updating order status.
- Fix - CART & CHECKOUT - EU VAT Number - Check if EU VAT number is valid during 'woocommerce_after_checkout_validation' hook instead of trying to get the result from session.
- Fix - CART & CHECKOUT - EU VAT Number - Fix possible white space in
wcj_validate_eu_vat_number()
response from ajax by using wp_send_json(). - Fix - EMAILS & MISC. - Custom Emails - Fix bug when sending email to multiple orders at the same time using the bulk editor and when there were multiple recipients including %customer%.
- Fix - Core -
WCJ_Modules
- Also check if Meta-box option is an array. - Fix - SHIPPING & ORDERS - Replace empty translation text with only empty text due to POT file update.
- Fix - PRODUCTS - Add to Cart - Replace empty translation text with only empty text due to POT file update.
- Dev - CART & CHECKOUT - Checkout Fees - Change "Cart Min" and "Max" options to "Cart Minimum" and "Maximum Quantity".
- Dev - CART & CHECKOUT - Checkout Fees - Create "Cart Minimum" and "Maximum Total" options as Plus features.
- Dev - CART & CHECKOUT - EU VAT Number - Add new option to show VAT field for EU countries only.
- Dev - PRODUCTS - Product Addons - Add option to show addon fields by variation.
- Dev - PRODUCTS - Product Visibility by Country - Add new option to overwrite country by User Billing Country on Checkout Page.
- Dev - PRODUCTS - Product Visibility by Country - Prevents calling
update_order_review_expired()
if "Overwrite by Billing Country" option is enabled. - Tested up to: 5.3.
- WC tested up to: 3.8.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 4.6.1 |
Comparing to | |
See all releases |
Code changes from version 4.6.0 to 4.6.1
- includes/class-wcj-checkout-custom-fields.php +3 -4
- includes/class-wcj-checkout-fees.php +16 -4
- includes/class-wcj-eu-vat-number.php +9 -11
- includes/class-wcj-product-addons.php +47 -24
- includes/class-wcj-product-by-country.php +43 -6
- includes/classes/class-wcj-module.php +4 -4
- includes/emails/class-wc-email-wcj-custom.php +6 -5
- includes/js/wcj-eu-vat-number.js +26 -3
- includes/js/wcj-product-addons.js +59 -1
- includes/settings/meta-box/wcj-settings-meta-box-product-addons.php +40 -2
- includes/settings/wcj-settings-add-to-cart.php +2 -2
- includes/settings/wcj-settings-checkout-fees.php +22 -5
- includes/settings/wcj-settings-eu-vat-number.php +10 -2
- includes/settings/wcj-settings-shipping-calculator.php +2 -2
- langs/woocommerce-jetpack.pot +14359 -18642
includes/class-wcj-checkout-custom-fields.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Custom Fields
|
4 |
*
|
5 |
-
* @version 4.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -190,7 +190,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
|
|
190 |
/**
|
191 |
* update_custom_checkout_fields_order_meta.
|
192 |
*
|
193 |
-
* @version 4.
|
194 |
*/
|
195 |
function update_custom_checkout_fields_order_meta( $order_id ) {
|
196 |
for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
|
@@ -203,8 +203,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
|
|
203 |
$option_name = $the_section . '_' . 'wcj_checkout_field_' . $i;
|
204 |
$option_name_label = $the_section . '_' . 'wcj_checkout_field_label_' . $i;
|
205 |
$option_name_type = $the_section . '_' . 'wcj_checkout_field_type_' . $i;
|
206 |
-
$post_value = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : '';
|
207 |
-
$post_value = empty( $post_value ) && isset( $_POST[ '_'. $option_name ] ) ? $_POST[ '_'. $option_name ] : $post_value;
|
208 |
if ( ! empty( $post_value ) || 'checkbox' === $the_type ) {
|
209 |
update_post_meta( $order_id, '_' . $option_name_type, $the_type );
|
210 |
update_post_meta( $order_id, '_' . $option_name_label, get_option( 'wcj_checkout_custom_field_label_' . $i ) );
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Custom Fields
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
190 |
/**
|
191 |
* update_custom_checkout_fields_order_meta.
|
192 |
*
|
193 |
+
* @version 4.6.1
|
194 |
*/
|
195 |
function update_custom_checkout_fields_order_meta( $order_id ) {
|
196 |
for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
|
203 |
$option_name = $the_section . '_' . 'wcj_checkout_field_' . $i;
|
204 |
$option_name_label = $the_section . '_' . 'wcj_checkout_field_label_' . $i;
|
205 |
$option_name_type = $the_section . '_' . 'wcj_checkout_field_type_' . $i;
|
206 |
+
$post_value = isset( $_POST[ $option_name ] ) ? $_POST[ $option_name ] : ( isset( $_POST[ '_' . $option_name ] ) ? $_POST[ '_' . $option_name ] : get_post_meta( $order_id, '_' . $option_name, true ) );
|
|
|
207 |
if ( ! empty( $post_value ) || 'checkbox' === $the_type ) {
|
208 |
update_post_meta( $order_id, '_' . $option_name_type, $the_type );
|
209 |
update_post_meta( $order_id, '_' . $option_name_label, get_option( 'wcj_checkout_custom_field_label_' . $i ) );
|
includes/class-wcj-checkout-fees.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Fees
|
4 |
*
|
5 |
-
* @version 4.
|
6 |
* @since 3.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -58,7 +58,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
58 |
/**
|
59 |
* Validate fee without considering overlapping.
|
60 |
*
|
61 |
-
* @version 4.
|
62 |
* @since 4.5.0
|
63 |
*
|
64 |
* @param $fee_id
|
@@ -79,7 +79,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
79 |
return false;
|
80 |
}
|
81 |
|
82 |
-
// Check cart
|
83 |
if (
|
84 |
$cart->get_cart_contents_count() < $fees[ $fee_id ]['cart_min'] ||
|
85 |
( $fees[ $fee_id ]['cart_max'] > 0 && $cart->get_cart_contents_count() > $fees[ $fee_id ]['cart_max'] )
|
@@ -87,6 +87,14 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
87 |
return false;
|
88 |
}
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
// Check checkout fields
|
91 |
if ( ! empty( $this->checkout_fields[ $fee_id ] ) ) {
|
92 |
if ( isset( $post_data ) || isset( $_REQUEST['post_data'] ) ) {
|
@@ -126,7 +134,7 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
126 |
/**
|
127 |
* Get Fees.
|
128 |
*
|
129 |
-
* @version 4.
|
130 |
* @since 4.5.0
|
131 |
*
|
132 |
* @param bool $only_enabled
|
@@ -140,7 +148,9 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
140 |
$types = $this->get_option( 'wcj_checkout_fees_data_types', array() );
|
141 |
$values = $this->get_option( 'wcj_checkout_fees_data_values', array() );
|
142 |
$cart_min = $this->get_option( 'wcj_checkout_fees_cart_min_amount', array() );
|
|
|
143 |
$cart_max = $this->get_option( 'wcj_checkout_fees_cart_max_amount', array() );
|
|
|
144 |
$taxable = $this->get_option( 'wcj_checkout_fees_data_taxable', array() );
|
145 |
$checkout_fields = $this->get_option( 'wcj_checkout_fees_data_values', array() );
|
146 |
$enabled = $this->get_option( 'wcj_checkout_fees_data_enabled', array() );
|
@@ -159,7 +169,9 @@ class WCJ_Checkout_Fees extends WCJ_Module {
|
|
159 |
$fees[ $i ] = array(
|
160 |
'enabled' => $enabled,
|
161 |
'cart_min' => isset( $cart_min[ $i ] ) ? $cart_min[ $i ] : 1,
|
|
|
162 |
'cart_max' => isset( $cart_max[ $i ] ) ? $cart_max[ $i ] : 0,
|
|
|
163 |
'title' => isset( $titles[ $i ] ) ? $titles[ $i ] : '',
|
164 |
'type' => isset( $types[ $i ] ) ? $types[ $i ] : 'fixed',
|
165 |
'value' => isset( $values[ $i ] ) ? $values[ $i ] : 0,
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Fees
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 3.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
58 |
/**
|
59 |
* Validate fee without considering overlapping.
|
60 |
*
|
61 |
+
* @version 4.6.1
|
62 |
* @since 4.5.0
|
63 |
*
|
64 |
* @param $fee_id
|
79 |
return false;
|
80 |
}
|
81 |
|
82 |
+
// Check cart quantity
|
83 |
if (
|
84 |
$cart->get_cart_contents_count() < $fees[ $fee_id ]['cart_min'] ||
|
85 |
( $fees[ $fee_id ]['cart_max'] > 0 && $cart->get_cart_contents_count() > $fees[ $fee_id ]['cart_max'] )
|
87 |
return false;
|
88 |
}
|
89 |
|
90 |
+
// Check cart total
|
91 |
+
if (
|
92 |
+
$cart->get_cart_contents_total() < $fees[ $fee_id ]['cart_min_total'] ||
|
93 |
+
( ! empty( $fees[ $fee_id ]['cart_max_total'] ) && $fees[ $fee_id ]['cart_max_total'] > 0 && $cart->get_cart_contents_total() > $fees[ $fee_id ]['cart_max_total'] )
|
94 |
+
) {
|
95 |
+
return false;
|
96 |
+
}
|
97 |
+
|
98 |
// Check checkout fields
|
99 |
if ( ! empty( $this->checkout_fields[ $fee_id ] ) ) {
|
100 |
if ( isset( $post_data ) || isset( $_REQUEST['post_data'] ) ) {
|
134 |
/**
|
135 |
* Get Fees.
|
136 |
*
|
137 |
+
* @version 4.6.1
|
138 |
* @since 4.5.0
|
139 |
*
|
140 |
* @param bool $only_enabled
|
148 |
$types = $this->get_option( 'wcj_checkout_fees_data_types', array() );
|
149 |
$values = $this->get_option( 'wcj_checkout_fees_data_values', array() );
|
150 |
$cart_min = $this->get_option( 'wcj_checkout_fees_cart_min_amount', array() );
|
151 |
+
$cart_min_total = $this->get_option( 'wcj_checkout_fees_cart_min_total_amount', array() );
|
152 |
$cart_max = $this->get_option( 'wcj_checkout_fees_cart_max_amount', array() );
|
153 |
+
$cart_max_total = $this->get_option( 'wcj_checkout_fees_cart_max_total_amount', array() );
|
154 |
$taxable = $this->get_option( 'wcj_checkout_fees_data_taxable', array() );
|
155 |
$checkout_fields = $this->get_option( 'wcj_checkout_fees_data_values', array() );
|
156 |
$enabled = $this->get_option( 'wcj_checkout_fees_data_enabled', array() );
|
169 |
$fees[ $i ] = array(
|
170 |
'enabled' => $enabled,
|
171 |
'cart_min' => isset( $cart_min[ $i ] ) ? $cart_min[ $i ] : 1,
|
172 |
+
'cart_min_total' => isset( $cart_min_total[ $i ] ) ? $cart_min_total[ $i ] : 0,
|
173 |
'cart_max' => isset( $cart_max[ $i ] ) ? $cart_max[ $i ] : 0,
|
174 |
+
'cart_max_total' => isset( $cart_max_total[ $i ] ) ? $cart_max_total[ $i ] : '',
|
175 |
'title' => isset( $titles[ $i ] ) ? $titles[ $i ] : '',
|
176 |
'type' => isset( $types[ $i ] ) ? $types[ $i ] : 'fixed',
|
177 |
'value' => isset( $values[ $i ] ) ? $values[ $i ] : 0,
|
includes/class-wcj-eu-vat-number.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - EU VAT Number
|
4 |
*
|
5 |
-
* @version 4.6.
|
6 |
* @since 2.3.9
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -364,13 +364,15 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
|
|
364 |
/**
|
365 |
* enqueue_scripts.
|
366 |
*
|
367 |
-
* @version
|
368 |
*/
|
369 |
function enqueue_scripts() {
|
370 |
if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
|
371 |
wp_enqueue_script( 'wcj-eu-vat-number', wcj_plugin_url() . '/includes/js/wcj-eu-vat-number.js', array(), WCJ()->version, true );
|
372 |
wp_localize_script( 'wcj-eu-vat-number', 'ajax_object', array(
|
373 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
|
|
|
|
374 |
'add_progress_text' => get_option( 'wcj_eu_vat_number_add_progress_text', 'no' ),
|
375 |
'progress_text_validating' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_validating', __( 'Validating VAT. Please wait...', 'woocommerce-jetpack' ) ) ),
|
376 |
'progress_text_valid' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_valid', __( 'VAT is valid.', 'woocommerce-jetpack' ) ) ),
|
@@ -383,7 +385,7 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
|
|
383 |
/**
|
384 |
* wcj_validate_eu_vat_number.
|
385 |
*
|
386 |
-
* @version 4.6.
|
387 |
*/
|
388 |
function wcj_validate_eu_vat_number( $param ) {
|
389 |
$param = wp_parse_args( $param, array(
|
@@ -420,8 +422,7 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
|
|
420 |
$response = '2';
|
421 |
}
|
422 |
if ( $param['echo'] ) {
|
423 |
-
|
424 |
-
die();
|
425 |
} else {
|
426 |
return $response;
|
427 |
}
|
@@ -489,18 +490,15 @@ class WCJ_EU_VAT_Number extends WCJ_Module {
|
|
489 |
/**
|
490 |
* checkout_validate_vat.
|
491 |
*
|
492 |
-
* @version
|
493 |
*/
|
494 |
function checkout_validate_vat( $_posted ) {
|
495 |
if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
|
496 |
if (
|
497 |
( 'yes' === get_option( 'wcj_eu_vat_number_field_required', 'no' ) && '' == $_posted['billing_eu_vat_number'] ) ||
|
498 |
(
|
499 |
-
|
500 |
-
|
501 |
-
null === wcj_session_get( 'wcj_is_eu_vat_number_valid' ) || false == wcj_session_get( 'wcj_is_eu_vat_number_valid' ) ||
|
502 |
-
null === wcj_session_get( 'wcj_eu_vat_number_to_check' ) || $_posted['billing_eu_vat_number'] != wcj_session_get( 'wcj_eu_vat_number_to_check' )
|
503 |
-
)
|
504 |
)
|
505 |
) {
|
506 |
wc_add_notice(
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - EU VAT Number
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.3.9
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
364 |
/**
|
365 |
* enqueue_scripts.
|
366 |
*
|
367 |
+
* @version 4.6.1
|
368 |
*/
|
369 |
function enqueue_scripts() {
|
370 |
if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
|
371 |
wp_enqueue_script( 'wcj-eu-vat-number', wcj_plugin_url() . '/includes/js/wcj-eu-vat-number.js', array(), WCJ()->version, true );
|
372 |
wp_localize_script( 'wcj-eu-vat-number', 'ajax_object', array(
|
373 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
374 |
+
'eu_countries' => wcj_get_european_union_countries(),
|
375 |
+
'show_vat_field_for_eu_only' => get_option( 'wcj_eu_vat_number_show_vat_field_for_eu_only', 'no' ),
|
376 |
'add_progress_text' => get_option( 'wcj_eu_vat_number_add_progress_text', 'no' ),
|
377 |
'progress_text_validating' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_validating', __( 'Validating VAT. Please wait...', 'woocommerce-jetpack' ) ) ),
|
378 |
'progress_text_valid' => do_shortcode( get_option( 'wcj_eu_vat_number_progress_text_valid', __( 'VAT is valid.', 'woocommerce-jetpack' ) ) ),
|
385 |
/**
|
386 |
* wcj_validate_eu_vat_number.
|
387 |
*
|
388 |
+
* @version 4.6.1
|
389 |
*/
|
390 |
function wcj_validate_eu_vat_number( $param ) {
|
391 |
$param = wp_parse_args( $param, array(
|
422 |
$response = '2';
|
423 |
}
|
424 |
if ( $param['echo'] ) {
|
425 |
+
wp_send_json( array( 'result' => $response ) );
|
|
|
426 |
} else {
|
427 |
return $response;
|
428 |
}
|
490 |
/**
|
491 |
* checkout_validate_vat.
|
492 |
*
|
493 |
+
* @version 4.6.1
|
494 |
*/
|
495 |
function checkout_validate_vat( $_posted ) {
|
496 |
if ( 'yes' === get_option( 'wcj_eu_vat_number_validate', 'yes' ) ) {
|
497 |
if (
|
498 |
( 'yes' === get_option( 'wcj_eu_vat_number_field_required', 'no' ) && '' == $_posted['billing_eu_vat_number'] ) ||
|
499 |
(
|
500 |
+
'' != $_posted['billing_eu_vat_number'] ) &&
|
501 |
+
'1' !== $this->wcj_validate_eu_vat_number( array( 'wcj_eu_vat_number_to_check' => $_posted['billing_eu_vat_number'], 'echo' => false )
|
|
|
|
|
|
|
502 |
)
|
503 |
) {
|
504 |
wc_add_notice(
|
includes/class-wcj-product-addons.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Addons
|
4 |
*
|
5 |
-
* @version 4.6.
|
6 |
* @since 2.5.3
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo admin order view (names)
|
@@ -18,7 +18,7 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
18 |
/**
|
19 |
* Constructor.
|
20 |
*
|
21 |
-
* @version
|
22 |
* @since 2.5.3
|
23 |
* @todo (maybe) add "in progress" ajax message
|
24 |
* @todo (maybe) for variable products - show addons only if variation is selected (e.g. move to addons from `woocommerce_before_add_to_cart_button` to variation description)
|
@@ -56,7 +56,7 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
56 |
add_filter( 'woocommerce_add_cart_item_data', array( $this, 'add_addons_price_to_cart_item_data' ), PHP_INT_MAX, 3 );
|
57 |
add_filter( 'woocommerce_add_cart_item', array( $this, 'add_addons_price_to_cart_item' ), PHP_INT_MAX, 2 );
|
58 |
add_filter( 'woocommerce_get_cart_item_from_session', array( $this, 'get_cart_item_addons_price_from_session' ), PHP_INT_MAX, 3 );
|
59 |
-
add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'validate_on_add_to_cart' ), PHP_INT_MAX,
|
60 |
// Prices
|
61 |
add_filter( WCJ_PRODUCT_GET_PRICE_FILTER, array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
|
62 |
add_filter( 'woocommerce_product_variation_get_price', array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
|
@@ -198,12 +198,23 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
198 |
/**
|
199 |
* validate_on_add_to_cart.
|
200 |
*
|
201 |
-
* @version
|
202 |
* @since 2.5.5
|
203 |
*/
|
204 |
-
function validate_on_add_to_cart( $passed, $product_id ) {
|
|
|
|
|
|
|
205 |
$addons = $this->get_product_addons( $product_id );
|
206 |
foreach ( $addons as $addon ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
if ( 'yes' === $addon['is_required'] ) {
|
208 |
if ( ! isset( $_POST[ $addon['checkbox_key'] ] ) ) {
|
209 |
wc_add_notice( __( 'Some of the required addons are not selected!', 'woocommerce-jetpack' ), 'error' );
|
@@ -309,17 +320,19 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
309 |
/**
|
310 |
* enqueue_scripts.
|
311 |
*
|
312 |
-
* @version 4.
|
313 |
* @since 2.5.3
|
314 |
*/
|
315 |
function enqueue_scripts() {
|
316 |
if ( is_product() ) {
|
317 |
-
$the_product
|
318 |
-
$addons
|
|
|
319 |
if ( ! empty( $addons ) ) {
|
320 |
$is_variable_with_single_price = ( $the_product->is_type( 'variable' ) && ( $the_product->get_variation_price( 'min' ) == $the_product->get_variation_price( 'max' ) ) );
|
321 |
-
wp_enqueue_script(
|
322 |
wp_localize_script( 'wcj-product-addons', 'ajax_object', array(
|
|
|
323 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
324 |
'product_id' => get_the_ID(),
|
325 |
'ignore_strikethrough_price' => get_option( 'wcj_product_addons_ajax_ignore_st_price', 'no' ),
|
@@ -348,7 +361,7 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
348 |
/**
|
349 |
* get_product_addons.
|
350 |
*
|
351 |
-
* @version
|
352 |
* @since 2.5.3
|
353 |
* @todo (maybe) `checkbox_key` is mislabelled, should be `key` (or maybe `value_key`)
|
354 |
*/
|
@@ -368,6 +381,7 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
368 |
$addons[] = array(
|
369 |
// 'scope' => 'all_products',
|
370 |
// 'index' => $i,
|
|
|
371 |
'checkbox_key' => 'wcj_product_all_products_addons_' . $i,
|
372 |
'price_key' => 'wcj_product_all_products_addons_price_' . $i,
|
373 |
'label_key' => 'wcj_product_all_products_addons_label_' . $i,
|
@@ -397,19 +411,20 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
397 |
$addons[] = array(
|
398 |
// 'scope' => 'per_product',
|
399 |
// 'index' => $i,
|
400 |
-
'
|
401 |
-
'
|
402 |
-
'
|
403 |
-
'
|
404 |
-
'
|
405 |
-
'
|
406 |
-
'
|
407 |
-
'
|
408 |
-
'
|
409 |
-
'
|
410 |
-
'
|
411 |
-
'
|
412 |
-
'
|
|
|
413 |
);
|
414 |
}
|
415 |
}
|
@@ -576,12 +591,20 @@ class WCJ_Product_Addons extends WCJ_Module {
|
|
576 |
/**
|
577 |
* add_addons_price_to_cart_item_data.
|
578 |
*
|
579 |
-
* @version 4.6.
|
580 |
* @since 2.5.3
|
581 |
*/
|
582 |
function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
|
583 |
$addons = $this->get_product_addons( $product_id );
|
584 |
foreach ( $addons as $addon ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
$price_value = $this->replace_price_template_vars( $addon['price_value'], $variation_id ? $variation_id : $product_id );
|
586 |
if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
|
587 |
if ( ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) || ( 'text' == $addon['type'] && '' != $_POST[ $addon['checkbox_key'] ] ) ) {
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Addons
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.5.3
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo admin order view (names)
|
18 |
/**
|
19 |
* Constructor.
|
20 |
*
|
21 |
+
* @version 4.6.1
|
22 |
* @since 2.5.3
|
23 |
* @todo (maybe) add "in progress" ajax message
|
24 |
* @todo (maybe) for variable products - show addons only if variation is selected (e.g. move to addons from `woocommerce_before_add_to_cart_button` to variation description)
|
56 |
add_filter( 'woocommerce_add_cart_item_data', array( $this, 'add_addons_price_to_cart_item_data' ), PHP_INT_MAX, 3 );
|
57 |
add_filter( 'woocommerce_add_cart_item', array( $this, 'add_addons_price_to_cart_item' ), PHP_INT_MAX, 2 );
|
58 |
add_filter( 'woocommerce_get_cart_item_from_session', array( $this, 'get_cart_item_addons_price_from_session' ), PHP_INT_MAX, 3 );
|
59 |
+
add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'validate_on_add_to_cart' ), PHP_INT_MAX, 4 );
|
60 |
// Prices
|
61 |
add_filter( WCJ_PRODUCT_GET_PRICE_FILTER, array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
|
62 |
add_filter( 'woocommerce_product_variation_get_price', array( $this, 'change_price' ), wcj_get_module_price_hooks_priority( 'product_addons' ), 2 );
|
198 |
/**
|
199 |
* validate_on_add_to_cart.
|
200 |
*
|
201 |
+
* @version 4.6.1
|
202 |
* @since 2.5.5
|
203 |
*/
|
204 |
+
function validate_on_add_to_cart( $passed, $product_id, $quantity ) {
|
205 |
+
if ( 4 === count( $args = func_get_args() ) ) {
|
206 |
+
$variation_id = $args[3];
|
207 |
+
}
|
208 |
$addons = $this->get_product_addons( $product_id );
|
209 |
foreach ( $addons as $addon ) {
|
210 |
+
// Prevents validation on addons if not in "enable by variation" option
|
211 |
+
if (
|
212 |
+
! empty( $variation_id ) &&
|
213 |
+
! empty( $addon['enable_by_variation'] ) &&
|
214 |
+
! in_array( $variation_id, $addon['enable_by_variation'] )
|
215 |
+
) {
|
216 |
+
continue;
|
217 |
+
}
|
218 |
if ( 'yes' === $addon['is_required'] ) {
|
219 |
if ( ! isset( $_POST[ $addon['checkbox_key'] ] ) ) {
|
220 |
wc_add_notice( __( 'Some of the required addons are not selected!', 'woocommerce-jetpack' ), 'error' );
|
320 |
/**
|
321 |
* enqueue_scripts.
|
322 |
*
|
323 |
+
* @version 4.6.1
|
324 |
* @since 2.5.3
|
325 |
*/
|
326 |
function enqueue_scripts() {
|
327 |
if ( is_product() ) {
|
328 |
+
$the_product = wc_get_product();
|
329 |
+
$addons = $this->get_product_addons( wcj_get_product_id_or_variation_parent_id( $the_product ) );
|
330 |
+
$enable_by_variation = wp_list_pluck( $addons, 'enable_by_variation' );
|
331 |
if ( ! empty( $addons ) ) {
|
332 |
$is_variable_with_single_price = ( $the_product->is_type( 'variable' ) && ( $the_product->get_variation_price( 'min' ) == $the_product->get_variation_price( 'max' ) ) );
|
333 |
+
wp_enqueue_script( 'wcj-product-addons', wcj_plugin_url() . '/includes/js/wcj-product-addons.js', array(), WCJ()->version, true );
|
334 |
wp_localize_script( 'wcj-product-addons', 'ajax_object', array(
|
335 |
+
'enable_by_variation' => $enable_by_variation,
|
336 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
337 |
'product_id' => get_the_ID(),
|
338 |
'ignore_strikethrough_price' => get_option( 'wcj_product_addons_ajax_ignore_st_price', 'no' ),
|
361 |
/**
|
362 |
* get_product_addons.
|
363 |
*
|
364 |
+
* @version 4.6.1
|
365 |
* @since 2.5.3
|
366 |
* @todo (maybe) `checkbox_key` is mislabelled, should be `key` (or maybe `value_key`)
|
367 |
*/
|
381 |
$addons[] = array(
|
382 |
// 'scope' => 'all_products',
|
383 |
// 'index' => $i,
|
384 |
+
'enable_by_variation' => '',
|
385 |
'checkbox_key' => 'wcj_product_all_products_addons_' . $i,
|
386 |
'price_key' => 'wcj_product_all_products_addons_price_' . $i,
|
387 |
'label_key' => 'wcj_product_all_products_addons_label_' . $i,
|
411 |
$addons[] = array(
|
412 |
// 'scope' => 'per_product',
|
413 |
// 'index' => $i,
|
414 |
+
'enable_by_variation' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_enable_by_variation_' . $i, true ),
|
415 |
+
'checkbox_key' => 'wcj_product_per_product_addons_' . $i,
|
416 |
+
'price_key' => 'wcj_product_per_product_addons_price_' . $i,
|
417 |
+
'label_key' => 'wcj_product_per_product_addons_label_' . $i,
|
418 |
+
'price_value' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_price_' . $i, true ),
|
419 |
+
'label_value' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_label_' . $i, true ) ),
|
420 |
+
'title' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_title_' . $i, true ) ),
|
421 |
+
'placeholder' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_placeholder_' . $i, true ) ),
|
422 |
+
'class' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_class_' . $i, true ),
|
423 |
+
'tooltip' => do_shortcode( get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_tooltip_' . $i, true ) ),
|
424 |
+
'type' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_type_' . $i, true ),
|
425 |
+
'default' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_default_' . $i, true ),
|
426 |
+
'is_required' => get_post_meta( $product_id, '_' . 'wcj_product_addons_per_product_required_' . $i, true ),
|
427 |
+
'qty' => $qty,
|
428 |
);
|
429 |
}
|
430 |
}
|
591 |
/**
|
592 |
* add_addons_price_to_cart_item_data.
|
593 |
*
|
594 |
+
* @version 4.6.1
|
595 |
* @since 2.5.3
|
596 |
*/
|
597 |
function add_addons_price_to_cart_item_data( $cart_item_data, $product_id, $variation_id ) {
|
598 |
$addons = $this->get_product_addons( $product_id );
|
599 |
foreach ( $addons as $addon ) {
|
600 |
+
// Prevents adding addons to cart if not in "enable by variation" option
|
601 |
+
if (
|
602 |
+
! empty( $variation_id ) &&
|
603 |
+
! empty( $addon['enable_by_variation'] ) &&
|
604 |
+
! in_array( $variation_id, $addon['enable_by_variation'] )
|
605 |
+
) {
|
606 |
+
continue;
|
607 |
+
}
|
608 |
$price_value = $this->replace_price_template_vars( $addon['price_value'], $variation_id ? $variation_id : $product_id );
|
609 |
if ( isset( $_POST[ $addon['checkbox_key'] ] ) ) {
|
610 |
if ( ( 'checkbox' === $addon['type'] || '' == $addon['type'] ) || ( 'text' == $addon['type'] && '' != $_POST[ $addon['checkbox_key'] ] ) ) {
|
includes/class-wcj-product-by-country.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Visibility by Country
|
4 |
*
|
5 |
-
* @version
|
6 |
* @since 2.5.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -16,7 +16,7 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
|
|
16 |
/**
|
17 |
* Constructor.
|
18 |
*
|
19 |
-
* @version
|
20 |
* @since 2.5.0
|
21 |
*/
|
22 |
function __construct() {
|
@@ -31,6 +31,28 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
|
|
31 |
|
32 |
parent::__construct();
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
/**
|
@@ -47,7 +69,7 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
|
|
47 |
/**
|
48 |
* get_check_option.
|
49 |
*
|
50 |
-
* @version
|
51 |
* @since 3.6.0
|
52 |
*/
|
53 |
function get_check_option() {
|
@@ -55,13 +77,20 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
|
|
55 |
if ( '' == wcj_session_get( 'wcj_selected_country' ) ) {
|
56 |
$country = wcj_get_country_by_ip();
|
57 |
wcj_session_set( 'wcj_selected_country', $country );
|
58 |
-
|
59 |
} else {
|
60 |
-
|
61 |
}
|
62 |
} else {
|
63 |
-
|
64 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
/**
|
@@ -134,6 +163,14 @@ class WCJ_Product_By_Country extends WCJ_Module_Product_By_Condition {
|
|
134 |
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
|
135 |
'css' => 'min-width:250px;',
|
136 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
array(
|
138 |
'type' => 'sectionend',
|
139 |
'id' => 'wcj_product_by_country_selection_options',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Visibility by Country
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.5.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
16 |
/**
|
17 |
* Constructor.
|
18 |
*
|
19 |
+
* @version 4.6.1
|
20 |
* @since 2.5.0
|
21 |
*/
|
22 |
function __construct() {
|
31 |
|
32 |
parent::__construct();
|
33 |
|
34 |
+
if ( $this->is_enabled() ) {
|
35 |
+
add_filter( 'woocommerce_checkout_update_order_review_expired', array( $this, 'update_order_review_expired' ) );
|
36 |
+
}
|
37 |
+
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* update_order_review_expired.
|
42 |
+
*
|
43 |
+
* @version 4.6.1
|
44 |
+
* @since 4.6.1
|
45 |
+
*
|
46 |
+
* @param $update
|
47 |
+
*
|
48 |
+
* @return bool
|
49 |
+
*/
|
50 |
+
function update_order_review_expired( $update ) {
|
51 |
+
if ( 'yes' !== get_option( 'wcj_product_by_country_selection_billing_country_overwrite', 'no' ) ) {
|
52 |
+
return $update;
|
53 |
+
}
|
54 |
+
$update = false;
|
55 |
+
return $update;
|
56 |
}
|
57 |
|
58 |
/**
|
69 |
/**
|
70 |
* get_check_option.
|
71 |
*
|
72 |
+
* @version 4.6.1
|
73 |
* @since 3.6.0
|
74 |
*/
|
75 |
function get_check_option() {
|
77 |
if ( '' == wcj_session_get( 'wcj_selected_country' ) ) {
|
78 |
$country = wcj_get_country_by_ip();
|
79 |
wcj_session_set( 'wcj_selected_country', $country );
|
80 |
+
$check_option = $country;
|
81 |
} else {
|
82 |
+
$check_option = wcj_session_get( 'wcj_selected_country' );
|
83 |
}
|
84 |
} else {
|
85 |
+
$check_option = wcj_get_country_by_ip();
|
86 |
}
|
87 |
+
if ( 'yes' === get_option( 'wcj_product_by_country_selection_billing_country_overwrite', 'no' ) ) {
|
88 |
+
$billing_country = ! empty( $_REQUEST['country'] ) ? $_REQUEST['country'] : '';
|
89 |
+
if ( ! empty( $billing_country ) ) {
|
90 |
+
$check_option = $billing_country;
|
91 |
+
}
|
92 |
+
}
|
93 |
+
return $check_option;
|
94 |
}
|
95 |
|
96 |
/**
|
163 |
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
|
164 |
'css' => 'min-width:250px;',
|
165 |
),
|
166 |
+
array(
|
167 |
+
'title' => __( 'Overwrite by Billing Country', 'woocommerce-jetpack' ),
|
168 |
+
'desc_tip' => __( 'Tries to overwrite Country by User Billing Country on Checkout Page.', 'woocommerce-jetpack' ),
|
169 |
+
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
170 |
+
'id' => 'wcj_product_by_country_selection_billing_country_overwrite',
|
171 |
+
'default' => 'no',
|
172 |
+
'type' => 'checkbox',
|
173 |
+
),
|
174 |
array(
|
175 |
'type' => 'sectionend',
|
176 |
'id' => 'wcj_product_by_country_selection_options',
|
includes/classes/class-wcj-module.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce Module
|
4 |
*
|
5 |
-
* @version 4.
|
6 |
* @since 2.2.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo [dev] maybe should be `abstract` ?
|
@@ -349,7 +349,7 @@ class WCJ_Module {
|
|
349 |
}
|
350 |
$is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
|
351 |
if ( $is_enabled ) {
|
352 |
-
$option_value = ( isset( $_POST[ $option['name'] ] ) ) ? $_POST[ $option['name'] ] : $option['default'];
|
353 |
$the_post_id = ( isset( $option['product_id'] ) ) ? $option['product_id'] : $post_id;
|
354 |
$the_meta_name = ( isset( $option['meta_name'] ) ) ? $option['meta_name'] : '_' . $option['name'];
|
355 |
if ( isset( $option['convert'] ) && 'from_date_to_timestamp' === $option['convert'] ) {
|
@@ -389,7 +389,7 @@ class WCJ_Module {
|
|
389 |
/**
|
390 |
* create_meta_box.
|
391 |
*
|
392 |
-
* @version
|
393 |
* @todo `placeholder` for textarea
|
394 |
* @todo `class` for all types (now only for select)
|
395 |
* @todo `show_value` for all types (now only for multiple select)
|
@@ -401,7 +401,7 @@ class WCJ_Module {
|
|
401 |
$html .= '<table class="widefat striped">';
|
402 |
foreach ( $this->get_meta_box_options() as $option ) {
|
403 |
$is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
|
404 |
-
if ( $is_enabled ) {
|
405 |
if ( 'title' === $option['type'] ) {
|
406 |
$html .= '<tr>';
|
407 |
$html .= '<th colspan="3" style="' . ( isset( $option['css'] ) ? $option['css'] : 'text-align:left;font-weight:bold;' ) . '">' . $option['title'] . '</th>';
|
2 |
/**
|
3 |
* Booster for WooCommerce Module
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.2.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo [dev] maybe should be `abstract` ?
|
349 |
}
|
350 |
$is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
|
351 |
if ( $is_enabled ) {
|
352 |
+
$option_value = ( isset( $_POST[ $option['name'] ] ) ) ? $_POST[ $option['name'] ] : ( isset( $option['default'] ) ? $option['default'] : '' );
|
353 |
$the_post_id = ( isset( $option['product_id'] ) ) ? $option['product_id'] : $post_id;
|
354 |
$the_meta_name = ( isset( $option['meta_name'] ) ) ? $option['meta_name'] : '_' . $option['name'];
|
355 |
if ( isset( $option['convert'] ) && 'from_date_to_timestamp' === $option['convert'] ) {
|
389 |
/**
|
390 |
* create_meta_box.
|
391 |
*
|
392 |
+
* @version 4.6.1
|
393 |
* @todo `placeholder` for textarea
|
394 |
* @todo `class` for all types (now only for select)
|
395 |
* @todo `show_value` for all types (now only for multiple select)
|
401 |
$html .= '<table class="widefat striped">';
|
402 |
foreach ( $this->get_meta_box_options() as $option ) {
|
403 |
$is_enabled = ( isset( $option['enabled'] ) && 'no' === $option['enabled'] ) ? false : true;
|
404 |
+
if ( is_array( $option ) && $is_enabled ) {
|
405 |
if ( 'title' === $option['type'] ) {
|
406 |
$html .= '<tr>';
|
407 |
$html .= '<th colspan="3" style="' . ( isset( $option['css'] ) ? $option['css'] : 'text-align:left;font-weight:bold;' ) . '">' . $option['title'] . '</th>';
|
includes/emails/class-wc-email-wcj-custom.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* An email sent to recipient list when selected triggers are called.
|
6 |
*
|
7 |
-
* @version 4.6.
|
8 |
* @since 2.3.9
|
9 |
* @author Algoritmika Ltd.
|
10 |
* @extends WC_Email
|
@@ -21,12 +21,13 @@ class WC_Email_WCJ_Custom extends WC_Email {
|
|
21 |
/**
|
22 |
* Constructor
|
23 |
*
|
24 |
-
* @version
|
25 |
*/
|
26 |
function __construct( $id = 1 ) {
|
27 |
|
28 |
$this->id = 'wcj_custom' . '_' . $id;
|
29 |
$this->customer_email = ( '%customer%' === $this->get_option( 'recipient' ) );
|
|
|
30 |
$this->title = get_option( 'wcj_emails_custom_emails_admin_title_' . $id, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $id );
|
31 |
$this->description = __( 'Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack' );
|
32 |
|
@@ -105,7 +106,7 @@ class WC_Email_WCJ_Custom extends WC_Email {
|
|
105 |
/**
|
106 |
* trigger.
|
107 |
*
|
108 |
-
* @version 4.6.
|
109 |
*/
|
110 |
function trigger( $object_id ) {
|
111 |
|
@@ -141,8 +142,8 @@ class WC_Email_WCJ_Custom extends WC_Email {
|
|
141 |
} else {
|
142 |
if ( $this->customer_email ) {
|
143 |
$this->recipient = wcj_get_order_billing_email( $this->object );
|
144 |
-
} elseif ( false !== strpos( $this->
|
145 |
-
$this->recipient = str_replace( '%customer%', wcj_get_order_billing_email( $this->object ), $this->
|
146 |
}
|
147 |
|
148 |
$this->find['order-date'] = '{order_date}';
|
4 |
*
|
5 |
* An email sent to recipient list when selected triggers are called.
|
6 |
*
|
7 |
+
* @version 4.6.1
|
8 |
* @since 2.3.9
|
9 |
* @author Algoritmika Ltd.
|
10 |
* @extends WC_Email
|
21 |
/**
|
22 |
* Constructor
|
23 |
*
|
24 |
+
* @version 4.6.1
|
25 |
*/
|
26 |
function __construct( $id = 1 ) {
|
27 |
|
28 |
$this->id = 'wcj_custom' . '_' . $id;
|
29 |
$this->customer_email = ( '%customer%' === $this->get_option( 'recipient' ) );
|
30 |
+
$this->original_recipient = $this->get_option( 'recipient' );
|
31 |
$this->title = get_option( 'wcj_emails_custom_emails_admin_title_' . $id, __( 'Custom', 'woocommerce-jetpack' ) . ' #' . $id );
|
32 |
$this->description = __( 'Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack' );
|
33 |
|
106 |
/**
|
107 |
* trigger.
|
108 |
*
|
109 |
+
* @version 4.6.1
|
110 |
*/
|
111 |
function trigger( $object_id ) {
|
112 |
|
142 |
} else {
|
143 |
if ( $this->customer_email ) {
|
144 |
$this->recipient = wcj_get_order_billing_email( $this->object );
|
145 |
+
} elseif ( false !== strpos( $this->original_recipient, '%customer%' ) ) {
|
146 |
+
$this->recipient = str_replace( '%customer%', wcj_get_order_billing_email( $this->object ), $this->original_recipient );
|
147 |
}
|
148 |
|
149 |
$this->find['order-date'] = '{order_date}';
|
includes/js/wcj-eu-vat-number.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/**
|
2 |
* eu-vat-number.
|
3 |
*
|
4 |
-
* @version
|
5 |
*/
|
6 |
|
7 |
var _ajax_object = ajax_object;
|
@@ -48,12 +48,12 @@ jQuery( function( $ ) {
|
|
48 |
url: _ajax_object.ajax_url,
|
49 |
data: data,
|
50 |
success: function(response) {
|
51 |
-
if ('1'==response) {
|
52 |
$vatParagraph.addClass('woocommerce-validated');
|
53 |
if ('yes'==_ajax_object.add_progress_text) {
|
54 |
$progressText.text(_ajax_object.progress_text_valid);
|
55 |
}
|
56 |
-
} else if ('0'==response) {
|
57 |
$vatParagraph.addClass('woocommerce-invalid');
|
58 |
if ('yes'==_ajax_object.add_progress_text) {
|
59 |
$progressText.text(_ajax_object.progress_text_not_valid);
|
@@ -82,4 +82,27 @@ jQuery( function( $ ) {
|
|
82 |
$('body').trigger('update_checkout');
|
83 |
}
|
84 |
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
});
|
1 |
/**
|
2 |
* eu-vat-number.
|
3 |
*
|
4 |
+
* @version 4.6.1
|
5 |
*/
|
6 |
|
7 |
var _ajax_object = ajax_object;
|
48 |
url: _ajax_object.ajax_url,
|
49 |
data: data,
|
50 |
success: function(response) {
|
51 |
+
if ('1'==response.result) {
|
52 |
$vatParagraph.addClass('woocommerce-validated');
|
53 |
if ('yes'==_ajax_object.add_progress_text) {
|
54 |
$progressText.text(_ajax_object.progress_text_valid);
|
55 |
}
|
56 |
+
} else if ('0'==response.result) {
|
57 |
$vatParagraph.addClass('woocommerce-invalid');
|
58 |
if ('yes'==_ajax_object.add_progress_text) {
|
59 |
$progressText.text(_ajax_object.progress_text_not_valid);
|
82 |
$('body').trigger('update_checkout');
|
83 |
}
|
84 |
};
|
85 |
+
|
86 |
+
// Show VAT Field for EU countries only
|
87 |
+
var vatFieldContainer = jQuery('#billing_eu_vat_number_field');
|
88 |
+
var vatFieldWrapper = $vatInput.parent();
|
89 |
+
var vatField = null;
|
90 |
+
function showVATFieldForEUOnly(e){
|
91 |
+
var targetField = jQuery(e.target);
|
92 |
+
var selectedCountry = targetField.val();
|
93 |
+
if(_ajax_object.eu_countries.indexOf(selectedCountry) != -1){
|
94 |
+
if(vatField){
|
95 |
+
vatFieldWrapper.append(vatField);
|
96 |
+
vatFieldContainer.slideDown(400);
|
97 |
+
}
|
98 |
+
}else{
|
99 |
+
vatFieldContainer.slideUp(500,function(){
|
100 |
+
vatField = $vatInput.detach();
|
101 |
+
});
|
102 |
+
}
|
103 |
+
}
|
104 |
+
if('yes'==_ajax_object.show_vat_field_for_eu_only){
|
105 |
+
jQuery('#billing_country').on('change',showVATFieldForEUOnly);
|
106 |
+
jQuery('#billing_country').change();
|
107 |
+
}
|
108 |
});
|
includes/js/wcj-product-addons.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/**
|
2 |
* wcj-product-addons.
|
3 |
*
|
4 |
-
* @version 4.
|
5 |
* @since 2.5.3
|
6 |
* @todo `text` type - update price not only on change, but on each pressed key
|
7 |
* @todo fix the issue with custom price labels module
|
@@ -70,6 +70,64 @@ jQuery(document).ready(function() {
|
|
70 |
jQuery("[name^='wcj_product_all_products_addons_'], [name^='wcj_product_per_product_addons_']").each( function () {
|
71 |
jQuery(this).change( change_price );
|
72 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
});
|
74 |
|
75 |
jQuery(document.body).on('change','.variations select',change_price);
|
1 |
/**
|
2 |
* wcj-product-addons.
|
3 |
*
|
4 |
+
* @version 4.6.1
|
5 |
* @since 2.5.3
|
6 |
* @todo `text` type - update price not only on change, but on each pressed key
|
7 |
* @todo fix the issue with custom price labels module
|
70 |
jQuery("[name^='wcj_product_all_products_addons_'], [name^='wcj_product_per_product_addons_']").each( function () {
|
71 |
jQuery(this).change( change_price );
|
72 |
});
|
73 |
+
|
74 |
+
// Handle "Enable by Variation" option
|
75 |
+
function handle_enable_by_variation() {
|
76 |
+
sanitize_variation_addon_fields_array();
|
77 |
+
var addon_pattern = 'wcj_product_per_product_addons_';
|
78 |
+
function hide_variation_addon_fields() {
|
79 |
+
for (i = 0; i < _ajax_object.enable_by_variation.length; i++) {
|
80 |
+
if (Array.isArray(_ajax_object.enable_by_variation[i])) {
|
81 |
+
var addons = jQuery('input[name="' + addon_pattern + (i + 1) + '"],label[for*="' + addon_pattern + (i + 1) + '"],*[class*="' + addon_pattern + (i + 1) + '"]');
|
82 |
+
addons.each(function () {
|
83 |
+
if (jQuery(this).is('[required]')) {
|
84 |
+
jQuery(this).removeAttr('required');
|
85 |
+
jQuery(this).attr('data-required', true);
|
86 |
+
}
|
87 |
+
});
|
88 |
+
addons.hide();
|
89 |
+
}
|
90 |
+
}
|
91 |
+
}
|
92 |
+
function show_addon_field_by_variation_id(variation_id) {
|
93 |
+
hide_variation_addon_fields();
|
94 |
+
for (i = 0; i < _ajax_object.enable_by_variation.length; i++) {
|
95 |
+
if (Array.isArray(_ajax_object.enable_by_variation[i]) && _ajax_object.enable_by_variation[i].indexOf(parseInt(variation_id)) != -1) {
|
96 |
+
var addons = jQuery('input[name="' + addon_pattern + (i + 1) + '"],label[for*="' + addon_pattern + (i + 1) + '"],*[class*="' + addon_pattern + (i + 1) + '"]');
|
97 |
+
addons.each(function() {
|
98 |
+
if(jQuery(this).is('[data-required]')){
|
99 |
+
jQuery(this).attr('required','required');
|
100 |
+
}
|
101 |
+
});
|
102 |
+
addons.show();
|
103 |
+
}
|
104 |
+
}
|
105 |
+
}
|
106 |
+
function sanitize_variation_addon_fields_array(){
|
107 |
+
if (Array.isArray(_ajax_object.enable_by_variation)) {
|
108 |
+
_ajax_object.enable_by_variation = _ajax_object.enable_by_variation.map(function (e) {
|
109 |
+
if (Array.isArray(e)) {
|
110 |
+
e = e.map(function (e) {
|
111 |
+
e = parseInt(e);
|
112 |
+
return e;
|
113 |
+
});
|
114 |
+
}
|
115 |
+
return e;
|
116 |
+
});
|
117 |
+
}
|
118 |
+
}
|
119 |
+
if (Array.isArray(_ajax_object.enable_by_variation)) {
|
120 |
+
hide_variation_addon_fields();
|
121 |
+
}
|
122 |
+
jQuery(document).on('found_variation', 'form.cart', function (event, variation) {
|
123 |
+
var variation_id = variation.variation_id;
|
124 |
+
if (Array.isArray(_ajax_object.enable_by_variation)) {
|
125 |
+
show_addon_field_by_variation_id(variation_id);
|
126 |
+
}
|
127 |
+
});
|
128 |
+
}
|
129 |
+
handle_enable_by_variation();
|
130 |
+
|
131 |
});
|
132 |
|
133 |
jQuery(document.body).on('change','.variations select',change_price);
|
includes/settings/meta-box/wcj-settings-meta-box-product-addons.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings Meta Box - Product Addons
|
4 |
*
|
5 |
-
* @version 4.6.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -28,6 +28,44 @@ $options = array(
|
|
28 |
'title' => __( 'Product Addons Total Number', 'woocommerce-jetpack' ),
|
29 |
),
|
30 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
$total_number = get_post_meta( get_the_ID(), '_' . 'wcj_product_addons_per_product_total_number', true );
|
32 |
for ( $i = 1; $i <= $total_number; $i++ ) {
|
33 |
$options = array_merge( $options, array(
|
@@ -40,7 +78,7 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
|
|
40 |
'yes' => __( 'Yes', 'woocommerce-jetpack' ),
|
41 |
'no' => __( 'No', 'woocommerce-jetpack' ),
|
42 |
),
|
43 |
-
),
|
44 |
array(
|
45 |
'title' => __( 'Type', 'woocommerce-jetpack' ),
|
46 |
'name' => 'wcj_product_addons_per_product_type_' . $i,
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings Meta Box - Product Addons
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
28 |
'title' => __( 'Product Addons Total Number', 'woocommerce-jetpack' ),
|
29 |
),
|
30 |
);
|
31 |
+
|
32 |
+
if ( ! function_exists( 'wcj_get_product_addons_enable_by_variation_option' ) ) {
|
33 |
+
/**
|
34 |
+
* wcj_get_product_addons_enable_by_variation_option.
|
35 |
+
*
|
36 |
+
* @version 4.6.1
|
37 |
+
* @since 4.6.1
|
38 |
+
*/
|
39 |
+
function wcj_get_product_addons_enable_by_variation_option( $index ) {
|
40 |
+
if (
|
41 |
+
empty( $post_id = get_the_ID() ) ||
|
42 |
+
! is_a( $product = wc_get_product( $post_id ), 'WC_Product_Variable' )
|
43 |
+
) {
|
44 |
+
return false;
|
45 |
+
}
|
46 |
+
$variations = $product->get_available_variations();
|
47 |
+
$variations_options = wp_list_pluck( $variations, 'variation_id', 'variation_id' );
|
48 |
+
$custom_attributes_data = apply_filters( 'booster_message', '', 'disabled' );
|
49 |
+
$custom_attributes = array();
|
50 |
+
if ( is_array( $custom_attributes_data ) ) {
|
51 |
+
foreach ( $custom_attributes_data as $attribute => $attribute_value ) {
|
52 |
+
$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
|
53 |
+
}
|
54 |
+
}
|
55 |
+
return array(
|
56 |
+
'name' => 'wcj_product_addons_per_product_enable_by_variation_' . $index,
|
57 |
+
'type' => 'select',
|
58 |
+
'multiple' => true,
|
59 |
+
'tooltip' => apply_filters( 'booster_message', '', 'desc' ),
|
60 |
+
'css' => 'width:100%',
|
61 |
+
'class' => 'chosen_select',
|
62 |
+
'options' => $variations_options,
|
63 |
+
'custom_attributes' => implode( ' ', $custom_attributes ),
|
64 |
+
'title' => __( 'Enable by Variation', 'woocommerce-jetpack' ),
|
65 |
+
);
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
$total_number = get_post_meta( get_the_ID(), '_' . 'wcj_product_addons_per_product_total_number', true );
|
70 |
for ( $i = 1; $i <= $total_number; $i++ ) {
|
71 |
$options = array_merge( $options, array(
|
78 |
'yes' => __( 'Yes', 'woocommerce-jetpack' ),
|
79 |
'no' => __( 'No', 'woocommerce-jetpack' ),
|
80 |
),
|
81 |
+
),wcj_get_product_addons_enable_by_variation_option($i),
|
82 |
array(
|
83 |
'title' => __( 'Type', 'woocommerce-jetpack' ),
|
84 |
'name' => 'wcj_product_addons_per_product_type_' . $i,
|
includes/settings/wcj-settings-add-to-cart.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Add to Cart
|
4 |
*
|
5 |
-
* @version
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -55,7 +55,7 @@ for ( $i = 1; $i <= apply_filters( 'booster_option', 1, get_option( 'wcj_add_to_
|
|
55 |
),
|
56 |
array(
|
57 |
'desc' => __( 'categories', 'woocommerce-jetpack' ),
|
58 |
-
'desc_tip' =>
|
59 |
'id' => 'wcj_add_to_cart_per_category_ids_group_' . $i,
|
60 |
'default' => '',
|
61 |
'type' => 'multiselect',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Add to Cart
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
55 |
),
|
56 |
array(
|
57 |
'desc' => __( 'categories', 'woocommerce-jetpack' ),
|
58 |
+
'desc_tip' => '',
|
59 |
'id' => 'wcj_add_to_cart_per_category_ids_group_' . $i,
|
60 |
'default' => '',
|
61 |
'type' => 'multiselect',
|
includes/settings/wcj-settings-checkout-fees.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Checkout Fees
|
4 |
*
|
5 |
-
* @version 4.
|
6 |
* @since 3.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -80,20 +80,37 @@ for ( $i = 1; $i <= $total_number; $i++ ) {
|
|
80 |
'custom_attributes' => array( 'step' => 0.000001 ),
|
81 |
),
|
82 |
array(
|
83 |
-
'title' => __( 'Cart
|
84 |
-
'desc_tip' => __( '
|
85 |
'id' => "wcj_checkout_fees_cart_min_amount[$i]",
|
86 |
'default' => 1,
|
87 |
'type' => 'number',
|
88 |
'custom_attributes' => array( 'min' => 1 )
|
89 |
),
|
90 |
array(
|
91 |
-
'title' => __( 'Cart
|
92 |
-
'desc_tip' => __( '
|
93 |
'id' => "wcj_checkout_fees_cart_max_amount[$i]",
|
94 |
'default' => '',
|
95 |
'type' => 'number',
|
96 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
array(
|
98 |
'title' => __( 'Checkout Field', 'woocommerce-jetpack' ),
|
99 |
'desc_tip' => sprintf( __( 'If you want fee to be added only if some checkout field is enabled, enter field\'s key here. For example, if you have added one custom billing checkout field with Booster\'s "Checkout Custom Fields" module, enter %s here.', 'woocommerce-jetpack' ), '<em>billing_wcj_checkout_field_1</em>' ) . ' ' .
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Checkout Fees
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 3.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
80 |
'custom_attributes' => array( 'step' => 0.000001 ),
|
81 |
),
|
82 |
array(
|
83 |
+
'title' => __( 'Cart Minimum Quantity', 'woocommerce-jetpack' ),
|
84 |
+
'desc_tip' => __( 'Minimum amount of items in cart.', 'woocommerce-jetpack' ),
|
85 |
'id' => "wcj_checkout_fees_cart_min_amount[$i]",
|
86 |
'default' => 1,
|
87 |
'type' => 'number',
|
88 |
'custom_attributes' => array( 'min' => 1 )
|
89 |
),
|
90 |
array(
|
91 |
+
'title' => __( 'Cart Maximum Quantity', 'woocommerce-jetpack' ),
|
92 |
+
'desc_tip' => __( 'Maximum amount of items in cart.', 'woocommerce-jetpack' ) . '<br />' . __( 'Zero or empty values will not be considered', 'woocommerce-jetpack' ),
|
93 |
'id' => "wcj_checkout_fees_cart_max_amount[$i]",
|
94 |
'default' => '',
|
95 |
'type' => 'number',
|
96 |
),
|
97 |
+
array(
|
98 |
+
'title' => __( 'Cart Minimum Total', 'woocommerce-jetpack' ),
|
99 |
+
'desc_tip' => __( 'Minimum total amount in cart.', 'woocommerce-jetpack' ),
|
100 |
+
'desc' => apply_filters( 'booster_message', '', 'desc' ),
|
101 |
+
'id' => "wcj_checkout_fees_cart_min_total_amount[$i]",
|
102 |
+
'default' => 0,
|
103 |
+
'type' => 'number',
|
104 |
+
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
|
105 |
+
),
|
106 |
+
array(
|
107 |
+
'title' => __( 'Cart Maximum Total', 'woocommerce-jetpack' ),
|
108 |
+
'desc_tip' => __( 'Maximum total amount in cart.', 'woocommerce-jetpack' ),
|
109 |
+
'desc' => apply_filters( 'booster_message', '', 'desc' ),
|
110 |
+
'id' => "wcj_checkout_fees_cart_max_total_amount[$i]",
|
111 |
+
'type' => 'number',
|
112 |
+
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
|
113 |
+
),
|
114 |
array(
|
115 |
'title' => __( 'Checkout Field', 'woocommerce-jetpack' ),
|
116 |
'desc_tip' => sprintf( __( 'If you want fee to be added only if some checkout field is enabled, enter field\'s key here. For example, if you have added one custom billing checkout field with Booster\'s "Checkout Custom Fields" module, enter %s here.', 'woocommerce-jetpack' ), '<em>billing_wcj_checkout_field_1</em>' ) . ' ' .
|
includes/settings/wcj-settings-eu-vat-number.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - EU VAT Number
|
4 |
*
|
5 |
-
* @version
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo set default value for "wcj_eu_vat_number_add_progress_text" to "yes"
|
@@ -111,6 +111,14 @@ $settings = array(
|
|
111 |
'default' => 'no',
|
112 |
'type' => 'checkbox',
|
113 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
array(
|
115 |
'title' => __( 'Exempt VAT by Customer\'s EU VAT', 'woocommerce-jetpack' ),
|
116 |
'desc' => __( 'Yes', 'woocommerce-jetpack' ),
|
@@ -230,7 +238,7 @@ $settings = array(
|
|
230 |
),
|
231 |
array(
|
232 |
'title' => __( "Read '_vat_number' meta", 'woocommerce-jetpack' ),
|
233 |
-
'desc_tip' => sprintf(__( "Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> plugin, reading meta from '_vat_number'
|
234 |
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
235 |
'id' => 'wcj_eu_vat_number_read_vat_number_meta',
|
236 |
'default' => 'no',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - EU VAT Number
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo set default value for "wcj_eu_vat_number_add_progress_text" to "yes"
|
111 |
'default' => 'no',
|
112 |
'type' => 'checkbox',
|
113 |
),
|
114 |
+
array(
|
115 |
+
'title' => __( 'Show VAT field for EU countries only', 'woocommerce-jetpack' ),
|
116 |
+
'desc' => __( 'Yes', 'woocommerce-jetpack' ),
|
117 |
+
'id' => 'wcj_eu_vat_number_show_vat_field_for_eu_only',
|
118 |
+
'default' => 'no',
|
119 |
+
'type' => 'checkbox',
|
120 |
+
'custom_attributes' => apply_filters( 'booster_message', '', 'disabled' ),
|
121 |
+
),
|
122 |
array(
|
123 |
'title' => __( 'Exempt VAT by Customer\'s EU VAT', 'woocommerce-jetpack' ),
|
124 |
'desc' => __( 'Yes', 'woocommerce-jetpack' ),
|
238 |
),
|
239 |
array(
|
240 |
'title' => __( "Read '_vat_number' meta", 'woocommerce-jetpack' ),
|
241 |
+
'desc_tip' => sprintf(__( "Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> plugin, reading meta from '_vat_number'.", 'woocommerce-jetpack' ),'https://woocommerce.com/products/eu-vat-number/'),
|
242 |
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
243 |
'id' => 'wcj_eu_vat_number_read_vat_number_meta',
|
244 |
'default' => 'no',
|
includes/settings/wcj-settings-shipping-calculator.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Shipping Calculator
|
4 |
*
|
5 |
-
* @version
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -44,7 +44,7 @@ return array(
|
|
44 |
'type' => 'checkbox',
|
45 |
),
|
46 |
array(
|
47 |
-
'title' =>
|
48 |
'desc' => __( 'Calculate Shipping button', 'woocommerce-jetpack' ),
|
49 |
'desc_tip' => __( 'When "Force Block Open" options is enabled, set Calculate Shipping button options.', 'woocommerce-jetpack' ),
|
50 |
'id' => 'wcj_shipping_calculator_enable_force_block_open_button',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Shipping Calculator
|
4 |
*
|
5 |
+
* @version 4.6.1
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
44 |
'type' => 'checkbox',
|
45 |
),
|
46 |
array(
|
47 |
+
'title' => '',
|
48 |
'desc' => __( 'Calculate Shipping button', 'woocommerce-jetpack' ),
|
49 |
'desc_tip' => __( 'When "Force Block Open" options is enabled, set Calculate Shipping button options.', 'woocommerce-jetpack' ),
|
50 |
'id' => 'wcj_shipping_calculator_enable_force_block_open_button',
|
langs/woocommerce-jetpack.pot
CHANGED
@@ -1,18642 +1,18970 @@
|
|
1 |
-
|
2 |
-
msgid "
|
3 |
-
msgstr ""
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: includes/class-wcj-
|
33 |
-
msgid "
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: includes/class-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
#: includes/class-wcj-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
#: includes/class-wcj-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
73 |
-
#: includes/admin/class-
|
74 |
-
#: includes/
|
75 |
-
msgid "
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: includes/class-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
86 |
-
|
87 |
-
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: includes/class-
|
91 |
-
|
92 |
-
|
93 |
-
"
|
94 |
-
"
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
#: includes/class-
|
99 |
-
#: includes/
|
100 |
-
#: includes/settings/wcj-settings-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
#: includes/class-wcj-admin-bar.php:
|
109 |
-
msgid "
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: includes/class-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
#: includes/class-
|
118 |
-
#: includes/class-wcj-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
#: includes/
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: includes/class-
|
141 |
-
msgid "
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: includes/class-
|
145 |
-
msgid "
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/class-
|
149 |
-
msgid "
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: includes/
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
#: includes/
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
#: includes/
|
176 |
-
#: includes/
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
#: includes/
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
#: includes/class-wcj-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
#: includes/
|
189 |
-
#: includes/
|
190 |
-
#: includes/
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
#: includes/class-
|
214 |
-
msgid "
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: includes/
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
#: includes/
|
222 |
-
msgid "
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
#: includes/
|
232 |
-
#: includes/
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
#: includes/
|
246 |
-
msgid "
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: includes/class-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
#: includes/
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
#: includes/class-
|
258 |
-
#: includes/class-wcj-
|
259 |
-
#: includes/
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
#: includes/
|
270 |
-
#: includes/
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
#: includes/
|
275 |
-
|
276 |
-
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: includes/class-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
#: includes/
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
#: includes/
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
#: includes/class-wcj-
|
312 |
-
msgid "
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/class-wcj-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
#: includes/
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
#: includes/class-wcj-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
#: includes/
|
377 |
-
msgid "
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
#: includes/class-wcj-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
#: includes/
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
"
|
415 |
-
"
|
416 |
-
|
417 |
-
|
418 |
-
#: includes/
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
#: includes/
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
#: includes/
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
#: includes/
|
445 |
-
msgid "
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/
|
449 |
-
msgid "
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: includes/
|
453 |
-
msgid "
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: includes/
|
457 |
-
msgid "Admin Tools"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: includes/class-wcj-
|
461 |
-
msgid "
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: includes/class-wcj-
|
465 |
-
msgid "
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: includes/class-wcj-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
#: includes/class-wcj-admin-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
#: includes/class-wcj-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
#: includes/class-wcj-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
"
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
#: includes/
|
552 |
-
msgid "
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: includes/class-wcj-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
#: includes/class-wcj-
|
582 |
-
#: includes/class-wcj-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
#: includes/
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: includes/class-wcj-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
#: includes/
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
#: includes/
|
618 |
-
msgid "
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: includes/class-wcj-
|
622 |
-
msgid "
|
623 |
-
msgstr ""
|
624 |
-
|
625 |
-
#: includes/class-wcj-
|
626 |
-
#: includes/settings/wcj-settings-
|
627 |
-
#: includes/settings/wcj-settings-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
#: includes/
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
#: includes/class-wcj-
|
654 |
-
#: includes/class-wcj-
|
655 |
-
#: includes/class-wcj-
|
656 |
-
#: includes/
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
#: includes/
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
msgid "
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: includes/class-wcj-
|
704 |
-
msgid "
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: includes/class-wcj-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
#: includes/
|
719 |
-
#: includes/
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
#: includes/
|
724 |
-
msgid "
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: includes/class-wcj-
|
728 |
-
msgid "
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: includes/class-wcj-
|
732 |
-
msgid "
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: includes/class-wcj-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
#: includes/
|
740 |
-
msgid "
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: includes/class-wcj-
|
744 |
-
msgid "
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: includes/class-wcj-
|
748 |
-
msgid "
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: includes/class-wcj-
|
752 |
-
msgid "
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: includes/class-wcj-
|
756 |
-
msgid ""
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: includes/class-wcj-
|
769 |
-
msgid "
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: includes/class-wcj-
|
773 |
-
msgid "
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: includes/class-wcj-
|
777 |
-
msgid "
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: includes/class-wcj-
|
781 |
-
msgid "
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: includes/class-wcj-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
msgid ""
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
#: includes/
|
824 |
-
msgid "
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: includes/class-wcj-
|
828 |
-
|
829 |
-
msgid "
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: includes/class-wcj-
|
833 |
-
msgid "
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: includes/class-wcj-
|
837 |
-
msgid "
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: includes/class-wcj-
|
841 |
-
msgid "
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: includes/class-wcj-
|
845 |
-
msgid "
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: includes/class-wcj-
|
849 |
-
msgid "
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: includes/class-wcj-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
#: includes/
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
#: includes/
|
863 |
-
|
864 |
-
|
865 |
-
"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: includes/class-wcj-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
#: includes/class-wcj-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
#: includes/class-
|
892 |
-
msgid "
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: includes/class-wcj-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
#: includes/
|
936 |
-
msgid "
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: includes/class-wcj-
|
940 |
-
msgid "
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: includes/class-wcj-
|
944 |
-
msgid "
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: includes/class-wcj-
|
948 |
-
msgid "
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: includes/class-wcj-
|
952 |
-
msgid "
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
#: includes/
|
992 |
-
msgid "
|
993 |
-
msgstr ""
|
994 |
-
|
995 |
-
#: includes/class-wcj-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
#: includes/
|
1012 |
-
msgid "
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: includes/class-wcj-
|
1016 |
-
msgid "
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#: includes/class-wcj-
|
1020 |
-
msgid "
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#: includes/class-wcj-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
msgid "
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: includes/class-wcj-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
#: includes/
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
#: includes/
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid ""
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
"
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: includes/class-wcj-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
msgid "
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: includes/class-wcj-
|
1078 |
-
msgid "
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: includes/class-wcj-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
#: includes/
|
1097 |
-
#: includes/
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
#: includes/
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
#: includes/class-wcj-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
"
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
#: includes/class-wcj-
|
1156 |
-
msgid "
|
1157 |
-
msgstr ""
|
1158 |
-
|
1159 |
-
#: includes/class-wcj-
|
1160 |
-
msgid "
|
1161 |
-
msgstr ""
|
1162 |
-
|
1163 |
-
#: includes/class-wcj-
|
1164 |
-
msgid "
|
1165 |
-
msgstr ""
|
1166 |
-
|
1167 |
-
#: includes/class-wcj-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
"
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
#: includes/
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
#: includes/
|
1201 |
-
|
1202 |
-
"
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
#: includes/
|
1215 |
-
|
1216 |
-
"
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
"
|
1225 |
-
msgstr ""
|
1226 |
-
|
1227 |
-
#: includes/class-wcj-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
#: includes/
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: includes/class-wcj-
|
1256 |
-
#: includes/
|
1257 |
-
msgid "
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
#: includes/
|
1269 |
-
msgid "
|
1270 |
-
msgstr ""
|
1271 |
-
|
1272 |
-
#: includes/class-wcj-
|
1273 |
-
msgid ""
|
1274 |
-
"
|
1275 |
-
"
|
1276 |
-
"
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
#: includes/
|
1307 |
-
msgid "
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: includes/class-wcj-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
#: includes/
|
1327 |
-
msgid "
|
1328 |
-
msgstr ""
|
1329 |
-
|
1330 |
-
#: includes/class-wcj-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
#: includes/
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
#: includes/
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
msgid "
|
1462 |
-
msgstr ""
|
1463 |
-
|
1464 |
-
#: includes/class-wcj-
|
1465 |
-
msgid "
|
1466 |
-
msgstr ""
|
1467 |
-
|
1468 |
-
#: includes/class-wcj-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
#: includes/
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
#: includes/
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
#: includes/class-wcj-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
#: includes/
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
#: includes/class-wcj-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
#: includes/
|
1529 |
-
msgid "
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
#: includes/
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
#: includes/
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
#: includes/
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
#: includes/
|
1555 |
-
#: includes/settings/wcj-settings-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
#: includes/
|
1563 |
-
#: includes/
|
1564 |
-
#: includes/settings/wcj-settings-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
#: includes/
|
1571 |
-
#: includes/
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
#: includes/
|
1577 |
-
#: includes/settings/wcj-settings-
|
1578 |
-
msgid "
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
#: includes/class-wcj-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
#: includes/class-wcj-
|
1595 |
-
#: includes/
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
#: includes/
|
1601 |
-
|
1602 |
-
msgid "
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
"
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
"
|
1626 |
-
msgstr ""
|
1627 |
-
|
1628 |
-
#: includes/class-wcj-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
#: includes/
|
1633 |
-
|
1634 |
-
msgid "
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: includes/class-wcj-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
#: includes/class-wcj-
|
1654 |
-
#: includes/
|
1655 |
-
#: includes/
|
1656 |
-
msgid "
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
#: includes/class-wcj-
|
1660 |
-
msgid "
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
#: includes/
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
#: includes/
|
1685 |
-
msgid "
|
1686 |
-
msgstr ""
|
1687 |
-
|
1688 |
-
#: includes/class-wcj-
|
1689 |
-
msgid "
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
-
#: includes/class-wcj-
|
1693 |
-
#: includes/settings/wcj-settings-
|
1694 |
-
msgid "
|
1695 |
-
msgstr ""
|
1696 |
-
|
1697 |
-
#: includes/class-wcj-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
"
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
#: includes/
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
#: includes/
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
#: includes/
|
1746 |
-
msgid "
|
1747 |
-
msgstr ""
|
1748 |
-
|
1749 |
-
#: includes/class-wcj-
|
1750 |
-
msgid "
|
1751 |
-
msgstr ""
|
1752 |
-
|
1753 |
-
#: includes/class-wcj-
|
1754 |
-
msgid "
|
1755 |
-
msgstr ""
|
1756 |
-
|
1757 |
-
#: includes/class-wcj-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
#: includes/class-wcj-
|
1767 |
-
msgid "
|
1768 |
-
msgstr ""
|
1769 |
-
|
1770 |
-
#: includes/class-wcj-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
#: includes/class-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
#: includes/class-wcj-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
#: includes/
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
#: includes/
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
#: includes/class-wcj-
|
1816 |
-
#: includes/
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
#: includes/
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
#: includes/
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
#: includes/
|
1833 |
-
msgid "
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: includes/class-wcj-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
#: includes/
|
1842 |
-
|
1843 |
-
msgid "
|
1844 |
-
msgstr ""
|
1845 |
-
|
1846 |
-
#: includes/class-wcj-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
#: includes/
|
1851 |
-
msgid "
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
#: includes/class-wcj-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
msgid "
|
1869 |
-
msgstr ""
|
1870 |
-
|
1871 |
-
#: includes/class-wcj-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
#: includes/
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
#: includes/class-wcj-offer-price.php:
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
#: includes/
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
#: includes/class-wcj-
|
1906 |
-
#: includes/
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
#: includes/class-wcj-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
#: includes/
|
1926 |
-
#: includes/settings/wcj-settings-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
#: includes/
|
1931 |
-
#: includes/settings/wcj-settings-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
#: includes/
|
1937 |
-
#: includes/settings/wcj-settings-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
#: includes/
|
1943 |
-
#: includes/settings/wcj-settings-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
#: includes/
|
1949 |
-
#: includes/settings/wcj-settings-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
#: includes/
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
#: includes/class-wcj-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: includes/class-wcj-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
#: includes/
|
2032 |
-
msgid "
|
2033 |
-
msgstr ""
|
2034 |
-
|
2035 |
-
#: includes/class-wcj-
|
2036 |
-
msgid "
|
2037 |
-
msgstr ""
|
2038 |
-
|
2039 |
-
#: includes/class-wcj-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
msgstr
|
2072 |
-
|
2073 |
-
#: includes/class-wcj-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
msgid ""
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
"
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
#: includes/
|
2152 |
-
|
2153 |
-
|
2154 |
-
"
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
"
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
#: includes/class-wcj-
|
2165 |
-
#: includes/
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
#: includes/class-
|
2172 |
-
#: includes/settings/wcj-settings-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
"
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
#: includes/
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
#: includes/
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
#: includes/
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
#: includes/
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
#: includes/
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
#: includes/
|
2266 |
-
|
2267 |
-
"
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
#: includes/
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
#: includes/
|
2314 |
-
#, php-format
|
2315 |
-
msgid "%s
|
2316 |
-
msgstr ""
|
2317 |
-
|
2318 |
-
#: includes/class-wcj-
|
2319 |
-
#: includes/settings/wcj-settings-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
#: includes/
|
2332 |
-
msgid ""
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
msgstr
|
2363 |
-
|
2364 |
-
#: includes/class-wcj-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
"
|
2370 |
-
msgstr ""
|
2371 |
-
|
2372 |
-
#: includes/class-wcj-
|
2373 |
-
msgid "
|
2374 |
-
msgstr ""
|
2375 |
-
|
2376 |
-
#: includes/class-wcj-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
"
|
2385 |
-
msgstr ""
|
2386 |
-
|
2387 |
-
#: includes/class-wcj-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
#: includes/
|
2417 |
-
msgid "
|
2418 |
-
msgstr ""
|
2419 |
-
|
2420 |
-
#: includes/class-wcj-
|
2421 |
-
msgid "
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
#: includes/
|
2456 |
-
msgid "
|
2457 |
-
msgstr ""
|
2458 |
-
|
2459 |
-
#: includes/class-wcj-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
#: includes/
|
2465 |
-
msgid "
|
2466 |
-
msgstr ""
|
2467 |
-
|
2468 |
-
#: includes/class-wcj-
|
2469 |
-
msgid "
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
#: includes/class-wcj-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
#: includes/
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
#: includes/
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
#: includes/
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
#: includes/
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
#: includes/
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
#: includes/
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
#: includes/
|
2513 |
-
#: includes/settings/wcj-settings-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
#: includes/
|
2520 |
-
#: includes/settings/wcj-settings-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
#: includes/
|
2527 |
-
#: includes/settings/wcj-settings-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
#: includes/
|
2534 |
-
#: includes/settings/wcj-settings-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
#: includes/
|
2541 |
-
#: includes/settings/wcj-settings-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
#: includes/
|
2548 |
-
#: includes/settings/wcj-settings-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
#: includes/
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
#: includes/
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
#: includes/
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
#: includes/
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
#: includes/
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
#: includes/
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
#: includes/
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
#: includes/
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
#: includes/
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
#: includes/
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
#: includes/
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
#: includes/
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
#: includes/
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
#: includes/
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
#: includes/
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
#: includes/
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
#: includes/
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
#: includes/
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
#: includes/
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
#: includes/
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
#: includes/
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
#: includes/
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
#: includes/
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
#: includes/
|
2656 |
-
#: includes/settings/wcj-settings-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
#: includes/
|
2661 |
-
#: includes/settings/wcj-settings-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
#: includes/
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
#: includes/
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
#: includes/
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
#: includes/
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
#: includes/
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
#: includes/
|
2725 |
-
msgid "
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: includes/class-wcj-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
#: includes/class-wcj-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
msgid "
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
#: includes/class-wcj-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
#: includes/
|
2772 |
-
msgid "
|
2773 |
-
msgstr ""
|
2774 |
-
|
2775 |
-
#: includes/class-wcj-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
msgid "
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: includes/class-wcj-
|
2805 |
-
msgid "
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
#: includes/
|
2817 |
-
msgid "
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
#: includes/
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
#: includes/
|
2840 |
-
msgid "
|
2841 |
-
msgstr ""
|
2842 |
-
|
2843 |
-
#: includes/class-wcj-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
#: includes/class-wcj-product-
|
2849 |
-
#: includes/
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
#: includes/
|
2854 |
-
#: includes/settings/wcj-settings-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
#: includes/
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
#: includes/
|
2867 |
-
#: includes/
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
#: includes/
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
#: includes/
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
#: includes/
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
#: includes/
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
#: includes/
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
#: includes/
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
#: includes/
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
#: includes/
|
2903 |
-
#: includes/settings/wcj-settings-
|
2904 |
-
#: includes/settings/wcj-settings-
|
2905 |
-
#: includes/settings/
|
2906 |
-
#: includes/settings/
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
#: includes/
|
2911 |
-
#: includes/
|
2912 |
-
#: includes/settings/wcj-settings-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
#: includes/
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
#: includes/
|
2923 |
-
#: includes/settings/wcj-settings-
|
2924 |
-
#: includes/settings/wcj-settings-
|
2925 |
-
#: includes/settings/wcj-settings-
|
2926 |
-
#: includes/settings/wcj-settings-
|
2927 |
-
#: includes/settings/wcj-settings-
|
2928 |
-
#: includes/settings/wcj-settings-
|
2929 |
-
#: includes/settings/wcj-settings-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
#: includes/
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
#: includes/
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
#: includes/
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
#: includes/
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
#: includes/
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
#: includes/
|
2954 |
-
#: includes/
|
2955 |
-
#: includes/
|
2956 |
-
#: includes/
|
2957 |
-
#: includes/settings/wcj-settings-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
#: includes/
|
2962 |
-
#: includes/settings/wcj-settings-
|
2963 |
-
|
2964 |
-
|
2965 |
-
|
2966 |
-
#: includes/
|
2967 |
-
#: includes/settings/wcj-settings-
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
#: includes/
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
#: includes/
|
2976 |
-
#: includes/
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
#: includes/
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
#: includes/
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
#: includes/
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
#: includes/
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
#: includes/
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
#: includes/
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
#: includes/
|
3005 |
-
|
3006 |
-
|
3007 |
-
|
3008 |
-
#: includes/
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
#: includes/
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
#: includes/
|
3017 |
-
|
3018 |
-
|
3019 |
-
|
3020 |
-
#: includes/
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
#: includes/
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
#: includes/
|
3029 |
-
|
3030 |
-
|
3031 |
-
|
3032 |
-
#: includes/
|
3033 |
-
#: includes/
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
#: includes/
|
3038 |
-
#: includes/settings/wcj-settings-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
#: includes/
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
#: includes/
|
3047 |
-
#: includes/settings/wcj-settings-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
#: includes/
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
#: includes/
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
|
3063 |
-
#: includes/
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
#: includes/
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
#: includes/
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
#: includes/class-wcj-product-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
"
|
3146 |
-
msgstr ""
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
#: includes/
|
3168 |
-
msgid ""
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
"
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
#: includes/class-wcj-product-
|
3195 |
-
#: includes/
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
#: includes/
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
#: includes/class-wcj-
|
3218 |
-
#: includes/settings/wcj-settings-
|
3219 |
-
msgid "
|
3220 |
-
msgstr ""
|
3221 |
-
|
3222 |
-
#: includes/class-wcj-product-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
#: includes/class-wcj-product-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
#: includes/
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
#: includes/
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
#: includes/
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
#: includes/
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
#: includes/
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
#: includes/
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
#: includes/
|
3277 |
-
|
3278 |
-
msgid "
|
3279 |
-
msgstr ""
|
3280 |
-
|
3281 |
-
#: includes/class-wcj-product-
|
3282 |
-
#: includes/
|
3283 |
-
#: includes/
|
3284 |
-
#: includes/
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
#: includes/
|
3291 |
-
#: includes/
|
3292 |
-
#: includes/
|
3293 |
-
msgid "
|
3294 |
-
msgstr ""
|
3295 |
-
|
3296 |
-
#: includes/class-wcj-product-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
#: includes/
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
#: includes/
|
3310 |
-
msgid ""
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
#: includes/
|
3334 |
-
#: includes/
|
3335 |
-
#: includes/
|
3336 |
-
#: includes/
|
3337 |
-
#: includes/settings/wcj-settings-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
#: includes/
|
3342 |
-
#: includes/settings/wcj-settings-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
#: includes/
|
3347 |
-
#: includes/settings/wcj-settings-
|
3348 |
-
|
3349 |
-
|
3350 |
-
|
3351 |
-
#: includes/
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
#: includes/
|
3356 |
-
#: includes/
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
"
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
3388 |
-
#: includes/
|
3389 |
-
msgid "
|
3390 |
-
msgstr ""
|
3391 |
-
|
3392 |
-
#: includes/class-wcj-product-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
|
3399 |
-
|
3400 |
-
#: includes/
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
#: includes/
|
3413 |
-
#: includes/
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
#: includes/
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
#: includes/
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
#: includes/
|
3432 |
-
msgid "
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
#: includes/
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
#: includes/
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
#: includes/
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
|
3454 |
-
|
3455 |
-
#: includes/
|
3456 |
-
|
3457 |
-
|
3458 |
-
|
3459 |
-
#: includes/
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
msgstr ""
|
3464 |
-
|
3465 |
-
#: includes/class-wcj-product-
|
3466 |
-
|
3467 |
-
|
3468 |
-
"
|
3469 |
-
msgstr ""
|
3470 |
-
|
3471 |
-
#: includes/class-wcj-product-
|
3472 |
-
msgid ""
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
|
3481 |
-
|
3482 |
-
|
3483 |
-
#: includes/
|
3484 |
-
|
3485 |
-
msgid "
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
#: includes/class-wcj-
|
3493 |
-
msgid "
|
3494 |
-
msgstr ""
|
3495 |
-
|
3496 |
-
#: includes/class-wcj-product-
|
3497 |
-
msgid ""
|
3498 |
-
|
3499 |
-
|
3500 |
-
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
"
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
msgid "
|
3519 |
-
msgstr ""
|
3520 |
-
|
3521 |
-
#: includes/class-wcj-product-
|
3522 |
-
msgid "
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
-
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
|
3544 |
-
|
3545 |
-
"
|
3546 |
-
|
3547 |
-
|
3548 |
-
|
3549 |
-
|
3550 |
-
|
3551 |
-
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
|
3556 |
-
|
3557 |
-
|
3558 |
-
|
3559 |
-
|
3560 |
-
|
3561 |
-
#: includes/class-wcj-product-
|
3562 |
-
#: includes/settings/wcj-settings-product-
|
3563 |
-
msgid "
|
3564 |
-
|
3565 |
-
|
3566 |
-
|
3567 |
-
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
3571 |
-
|
3572 |
-
|
3573 |
-
|
3574 |
-
|
3575 |
-
|
3576 |
-
|
3577 |
-
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
#: includes/class-wcj-product-
|
3584 |
-
|
3585 |
-
|
3586 |
-
"
|
3587 |
-
"
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
3591 |
-
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
3596 |
-
|
3597 |
-
|
3598 |
-
|
3599 |
-
|
3600 |
-
|
3601 |
-
"
|
3602 |
-
|
3603 |
-
|
3604 |
-
|
3605 |
-
#: includes/class-wcj-
|
3606 |
-
|
3607 |
-
|
3608 |
-
|
3609 |
-
|
3610 |
-
|
3611 |
-
|
3612 |
-
|
3613 |
-
|
3614 |
-
#: includes/
|
3615 |
-
msgid "
|
3616 |
-
msgstr ""
|
3617 |
-
|
3618 |
-
#: includes/class-wcj-product-
|
3619 |
-
|
3620 |
-
|
3621 |
-
|
3622 |
-
msgstr ""
|
3623 |
-
|
3624 |
-
#: includes/class-wcj-product-
|
3625 |
-
#: includes/
|
3626 |
-
#: includes/
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
#: includes/class-wcj-product-tabs.php:
|
3632 |
-
#: includes/
|
3633 |
-
#: includes/
|
3634 |
-
#: includes/settings/wcj-settings-
|
3635 |
-
#: includes/settings/wcj-settings-
|
3636 |
-
#: includes/settings/wcj-settings-
|
3637 |
-
#: includes/settings/wcj-settings-
|
3638 |
-
#: includes/settings/wcj-settings-
|
3639 |
-
#: includes/settings/wcj-settings-
|
3640 |
-
#: includes/settings/wcj-settings-
|
3641 |
-
#: includes/settings/wcj-settings-
|
3642 |
-
#: includes/settings/wcj-settings-
|
3643 |
-
#: includes/settings/wcj-settings-
|
3644 |
-
#: includes/settings/wcj-settings-product-
|
3645 |
-
#: includes/settings/wcj-settings-product-tabs.php:
|
3646 |
-
#: includes/
|
3647 |
-
|
3648 |
-
|
3649 |
-
|
3650 |
-
#: includes/
|
3651 |
-
#: includes/settings/wcj-settings-
|
3652 |
-
#: includes/settings/wcj-settings-
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
#: includes/class-wcj-
|
3657 |
-
#: includes/
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
msgstr ""
|
3662 |
-
|
3663 |
-
#: includes/class-wcj-product-
|
3664 |
-
#: includes/
|
3665 |
-
|
3666 |
-
|
3667 |
-
|
3668 |
-
|
3669 |
-
|
3670 |
-
#: includes/
|
3671 |
-
#: includes/
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
#: includes/
|
3676 |
-
|
3677 |
-
|
3678 |
-
|
3679 |
-
#: includes/
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
3683 |
-
#: includes/
|
3684 |
-
|
3685 |
-
|
3686 |
-
|
3687 |
-
|
3688 |
-
|
3689 |
-
#: includes/
|
3690 |
-
|
3691 |
-
|
3692 |
-
|
3693 |
-
|
3694 |
-
|
3695 |
-
|
3696 |
-
|
3697 |
-
|
3698 |
-
|
3699 |
-
|
3700 |
-
#: includes/
|
3701 |
-
|
3702 |
-
|
3703 |
-
|
3704 |
-
#: includes/
|
3705 |
-
#: includes/settings/wcj-settings-
|
3706 |
-
#: includes/settings/wcj-settings-
|
3707 |
-
#: includes/settings/wcj-settings-
|
3708 |
-
#: includes/settings/wcj-settings-
|
3709 |
-
#: includes/settings/
|
3710 |
-
#: includes/settings/
|
3711 |
-
#: includes/settings/
|
3712 |
-
#: includes/settings/
|
3713 |
-
#: includes/settings/
|
3714 |
-
#: includes/settings/
|
3715 |
-
#: includes/settings/
|
3716 |
-
#: includes/settings/
|
3717 |
-
#: includes/settings/
|
3718 |
-
#: includes/settings/
|
3719 |
-
#: includes/settings/
|
3720 |
-
#: includes/settings/
|
3721 |
-
#: includes/settings/
|
3722 |
-
#: includes/settings/
|
3723 |
-
#: includes/settings/
|
3724 |
-
#: includes/settings/
|
3725 |
-
#: includes/settings/
|
3726 |
-
#: includes/settings/
|
3727 |
-
#: includes/settings/
|
3728 |
-
#: includes/settings/
|
3729 |
-
#: includes/
|
3730 |
-
|
3731 |
-
|
3732 |
-
|
3733 |
-
#: includes/
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
#: includes/
|
3738 |
-
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
#: includes/
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
3769 |
-
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
3773 |
-
#: includes/
|
3774 |
-
#: includes/
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
#: includes/
|
3780 |
-
|
3781 |
-
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
|
3787 |
-
#: includes/
|
3788 |
-
|
3789 |
-
|
3790 |
-
|
3791 |
-
|
3792 |
-
|
3793 |
-
|
3794 |
-
|
3795 |
-
|
3796 |
-
#: includes/
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
#: includes/
|
3805 |
-
|
3806 |
-
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
|
3811 |
-
|
3812 |
-
#: includes/
|
3813 |
-
|
3814 |
-
|
3815 |
-
|
3816 |
-
#: includes/
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
#: includes/
|
3821 |
-
#: includes/
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
|
3826 |
-
|
3827 |
-
|
3828 |
-
#: includes/
|
3829 |
-
#: includes/
|
3830 |
-
|
3831 |
-
|
3832 |
-
|
3833 |
-
#: includes/
|
3834 |
-
#: includes/
|
3835 |
-
#: includes/
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
3842 |
-
|
3843 |
-
|
3844 |
-
|
3845 |
-
|
3846 |
-
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
3850 |
-
msgstr ""
|
3851 |
-
|
3852 |
-
#: includes/class-wcj-
|
3853 |
-
msgid "
|
3854 |
-
msgstr ""
|
3855 |
-
|
3856 |
-
#: includes/class-wcj-
|
3857 |
-
msgid "
|
3858 |
-
msgstr ""
|
3859 |
-
|
3860 |
-
#: includes/class-wcj-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
|
3868 |
-
|
3869 |
-
|
3870 |
-
|
3871 |
-
"
|
3872 |
-
msgstr ""
|
3873 |
-
|
3874 |
-
#: includes/class-wcj-
|
3875 |
-
|
3876 |
-
|
3877 |
-
"
|
3878 |
-
"
|
3879 |
-
"
|
3880 |
-
"
|
3881 |
-
|
3882 |
-
|
3883 |
-
|
3884 |
-
|
3885 |
-
|
3886 |
-
|
3887 |
-
|
3888 |
-
|
3889 |
-
|
3890 |
-
|
3891 |
-
|
3892 |
-
|
3893 |
-
|
3894 |
-
|
3895 |
-
#: includes/
|
3896 |
-
msgid "
|
3897 |
-
msgstr ""
|
3898 |
-
|
3899 |
-
#: includes/class-wcj-
|
3900 |
-
msgid "
|
3901 |
-
msgstr ""
|
3902 |
-
|
3903 |
-
#: includes/class-wcj-
|
3904 |
-
msgid "
|
3905 |
-
msgstr ""
|
3906 |
-
|
3907 |
-
#: includes/class-wcj-
|
3908 |
-
msgid "
|
3909 |
-
msgstr ""
|
3910 |
-
|
3911 |
-
#: includes/class-wcj-
|
3912 |
-
msgid "
|
3913 |
-
|
3914 |
-
|
3915 |
-
|
3916 |
-
|
3917 |
-
msgstr ""
|
3918 |
-
|
3919 |
-
#: includes/class-wcj-
|
3920 |
-
|
3921 |
-
|
3922 |
-
|
3923 |
-
|
3924 |
-
|
3925 |
-
|
3926 |
-
|
3927 |
-
|
3928 |
-
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
3932 |
-
|
3933 |
-
|
3934 |
-
|
3935 |
-
#: includes/
|
3936 |
-
|
3937 |
-
|
3938 |
-
|
3939 |
-
|
3940 |
-
|
3941 |
-
|
3942 |
-
|
3943 |
-
|
3944 |
-
|
3945 |
-
|
3946 |
-
|
3947 |
-
#: includes/
|
3948 |
-
msgid "
|
3949 |
-
msgstr ""
|
3950 |
-
|
3951 |
-
#: includes/class-wcj-
|
3952 |
-
msgid "
|
3953 |
-
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
|
3964 |
-
|
3965 |
-
|
3966 |
-
|
3967 |
-
|
3968 |
-
|
3969 |
-
|
3970 |
-
|
3971 |
-
msgstr ""
|
3972 |
-
|
3973 |
-
#: includes/class-wcj-
|
3974 |
-
msgid "
|
3975 |
-
msgstr ""
|
3976 |
-
|
3977 |
-
#: includes/class-wcj-
|
3978 |
-
|
3979 |
-
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
#: includes/
|
3987 |
-
|
3988 |
-
|
3989 |
-
|
3990 |
-
|
3991 |
-
|
3992 |
-
|
3993 |
-
|
3994 |
-
|
3995 |
-
#: includes/
|
3996 |
-
|
3997 |
-
|
3998 |
-
|
3999 |
-
|
4000 |
-
#: includes/
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
|
4005 |
-
#: includes/
|
4006 |
-
#: includes/settings/wcj-settings-shipping
|
4007 |
-
|
4008 |
-
|
4009 |
-
|
4010 |
-
#: includes/
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
#: includes/
|
4021 |
-
|
4022 |
-
|
4023 |
-
|
4024 |
-
|
4025 |
-
#: includes/
|
4026 |
-
msgid "
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
#: includes/
|
4039 |
-
|
4040 |
-
|
4041 |
-
|
4042 |
-
#: includes/
|
4043 |
-
#: includes/
|
4044 |
-
|
4045 |
-
|
4046 |
-
|
4047 |
-
#: includes/
|
4048 |
-
|
4049 |
-
|
4050 |
-
|
4051 |
-
#: includes/
|
4052 |
-
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
|
4057 |
-
#: includes/
|
4058 |
-
|
4059 |
-
|
4060 |
-
|
4061 |
-
#: includes/
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
|
4066 |
-
|
4067 |
-
|
4068 |
-
|
4069 |
-
|
4070 |
-
|
4071 |
-
#: includes/
|
4072 |
-
|
4073 |
-
|
4074 |
-
|
4075 |
-
#: includes/
|
4076 |
-
|
4077 |
-
|
4078 |
-
|
4079 |
-
|
4080 |
-
|
4081 |
-
#: includes/
|
4082 |
-
#: includes/settings/wcj-settings-
|
4083 |
-
#: includes/settings/wcj-settings-
|
4084 |
-
#: includes/settings/wcj-settings-
|
4085 |
-
#: includes/settings/wcj-settings-
|
4086 |
-
#: includes/settings/wcj-settings-
|
4087 |
-
#: includes/settings/wcj-settings-
|
4088 |
-
#: includes/settings/wcj-settings-
|
4089 |
-
#: includes/settings/wcj-settings-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
#: includes/
|
4094 |
-
|
4095 |
-
|
4096 |
-
|
4097 |
-
#: includes/
|
4098 |
-
|
4099 |
-
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
|
4105 |
-
|
4106 |
-
#: includes/
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
|
4111 |
-
#: includes/
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
|
4117 |
-
#: includes/
|
4118 |
-
|
4119 |
-
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
4123 |
-
|
4124 |
-
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
|
4129 |
-
|
4130 |
-
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
|
4141 |
-
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
|
4148 |
-
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
4153 |
-
|
4154 |
-
#: includes/
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
4159 |
-
|
4160 |
-
"
|
4161 |
-
msgstr ""
|
4162 |
-
|
4163 |
-
#: includes/class-wcj-
|
4164 |
-
msgid "
|
4165 |
-
msgstr ""
|
4166 |
-
|
4167 |
-
#: includes/class-wcj-
|
4168 |
-
msgid "
|
4169 |
-
msgstr ""
|
4170 |
-
|
4171 |
-
#: includes/class-wcj-
|
4172 |
-
|
4173 |
-
|
4174 |
-
|
4175 |
-
|
4176 |
-
|
4177 |
-
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
4191 |
-
|
4192 |
-
|
4193 |
-
|
4194 |
-
#: includes/class-
|
4195 |
-
|
4196 |
-
|
4197 |
-
|
4198 |
-
|
4199 |
-
|
4200 |
-
|
4201 |
-
|
4202 |
-
#: includes/
|
4203 |
-
|
4204 |
-
|
4205 |
-
|
4206 |
-
|
4207 |
-
|
4208 |
-
|
4209 |
-
|
4210 |
-
#: includes/
|
4211 |
-
msgid "
|
4212 |
-
msgstr ""
|
4213 |
-
|
4214 |
-
#: includes/class-wcj-
|
4215 |
-
msgid "
|
4216 |
-
msgstr ""
|
4217 |
-
|
4218 |
-
#: includes/class-wcj-
|
4219 |
-
|
4220 |
-
|
4221 |
-
|
4222 |
-
|
4223 |
-
|
4224 |
-
|
4225 |
-
|
4226 |
-
#: includes/
|
4227 |
-
msgid "
|
4228 |
-
|
4229 |
-
|
4230 |
-
|
4231 |
-
|
4232 |
-
|
4233 |
-
|
4234 |
-
|
4235 |
-
|
4236 |
-
|
4237 |
-
|
4238 |
-
|
4239 |
-
|
4240 |
-
|
4241 |
-
|
4242 |
-
|
4243 |
-
|
4244 |
-
|
4245 |
-
|
4246 |
-
|
4247 |
-
"
|
4248 |
-
|
4249 |
-
|
4250 |
-
|
4251 |
-
|
4252 |
-
|
4253 |
-
|
4254 |
-
|
4255 |
-
|
4256 |
-
|
4257 |
-
|
4258 |
-
#: includes/
|
4259 |
-
|
4260 |
-
|
4261 |
-
|
4262 |
-
|
4263 |
-
|
4264 |
-
|
4265 |
-
|
4266 |
-
|
4267 |
-
|
4268 |
-
|
4269 |
-
|
4270 |
-
|
4271 |
-
|
4272 |
-
|
4273 |
-
|
4274 |
-
|
4275 |
-
|
4276 |
-
|
4277 |
-
|
4278 |
-
|
4279 |
-
|
4280 |
-
|
4281 |
-
|
4282 |
-
|
4283 |
-
|
4284 |
-
|
4285 |
-
|
4286 |
-
|
4287 |
-
|
4288 |
-
|
4289 |
-
|
4290 |
-
|
4291 |
-
|
4292 |
-
|
4293 |
-
|
4294 |
-
|
4295 |
-
|
4296 |
-
|
4297 |
-
|
4298 |
-
|
4299 |
-
|
4300 |
-
|
4301 |
-
|
4302 |
-
|
4303 |
-
|
4304 |
-
|
4305 |
-
|
4306 |
-
#: includes/
|
4307 |
-
msgid "
|
4308 |
-
msgstr ""
|
4309 |
-
|
4310 |
-
#: includes/class-wcj-
|
4311 |
-
msgid "
|
4312 |
-
msgstr ""
|
4313 |
-
|
4314 |
-
#: includes/class-wcj-
|
4315 |
-
msgid "
|
4316 |
-
|
4317 |
-
|
4318 |
-
|
4319 |
-
|
4320 |
-
|
4321 |
-
|
4322 |
-
msgstr ""
|
4323 |
-
|
4324 |
-
#: includes/class-wcj-
|
4325 |
-
msgid "
|
4326 |
-
msgstr ""
|
4327 |
-
|
4328 |
-
#: includes/class-wcj-
|
4329 |
-
msgid "
|
4330 |
-
msgstr ""
|
4331 |
-
|
4332 |
-
#: includes/class-wcj-
|
4333 |
-
msgid "
|
4334 |
-
msgstr ""
|
4335 |
-
|
4336 |
-
#: includes/class-wcj-
|
4337 |
-
|
4338 |
-
|
4339 |
-
|
4340 |
-
|
4341 |
-
|
4342 |
-
msgstr ""
|
4343 |
-
|
4344 |
-
#: includes/class-wcj-
|
4345 |
-
|
4346 |
-
|
4347 |
-
|
4348 |
-
|
4349 |
-
|
4350 |
-
|
4351 |
-
|
4352 |
-
|
4353 |
-
|
4354 |
-
|
4355 |
-
|
4356 |
-
|
4357 |
-
|
4358 |
-
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
msgstr ""
|
4363 |
-
|
4364 |
-
#: includes/class-wcj-
|
4365 |
-
|
4366 |
-
|
4367 |
-
|
4368 |
-
|
4369 |
-
|
4370 |
-
|
4371 |
-
|
4372 |
-
|
4373 |
-
|
4374 |
-
|
4375 |
-
|
4376 |
-
|
4377 |
-
|
4378 |
-
|
4379 |
-
|
4380 |
-
#: includes/
|
4381 |
-
msgid "
|
4382 |
-
msgstr ""
|
4383 |
-
|
4384 |
-
#: includes/class-wcj-
|
4385 |
-
msgid "
|
4386 |
-
msgstr ""
|
4387 |
-
|
4388 |
-
#: includes/class-wcj-
|
4389 |
-
|
4390 |
-
|
4391 |
-
|
4392 |
-
|
4393 |
-
|
4394 |
-
|
4395 |
-
|
4396 |
-
|
4397 |
-
#: includes/
|
4398 |
-
msgid "
|
4399 |
-
msgstr ""
|
4400 |
-
|
4401 |
-
#: includes/class-wcj-
|
4402 |
-
|
4403 |
-
|
4404 |
-
|
4405 |
-
|
4406 |
-
|
4407 |
-
msgid "
|
4408 |
-
msgstr ""
|
4409 |
-
|
4410 |
-
#: includes/class-wcj-
|
4411 |
-
|
4412 |
-
|
4413 |
-
|
4414 |
-
|
4415 |
-
|
4416 |
-
|
4417 |
-
|
4418 |
-
|
4419 |
-
|
4420 |
-
|
4421 |
-
|
4422 |
-
|
4423 |
-
|
4424 |
-
|
4425 |
-
|
4426 |
-
|
4427 |
-
|
4428 |
-
msgstr ""
|
4429 |
-
|
4430 |
-
#: includes/class-wcj-
|
4431 |
-
|
4432 |
-
|
4433 |
-
|
4434 |
-
|
4435 |
-
|
4436 |
-
|
4437 |
-
|
4438 |
-
|
4439 |
-
|
4440 |
-
|
4441 |
-
|
4442 |
-
|
4443 |
-
#: includes/
|
4444 |
-
|
4445 |
-
|
4446 |
-
|
4447 |
-
|
4448 |
-
|
4449 |
-
|
4450 |
-
|
4451 |
-
|
4452 |
-
|
4453 |
-
|
4454 |
-
|
4455 |
-
|
4456 |
-
|
4457 |
-
|
4458 |
-
|
4459 |
-
|
4460 |
-
|
4461 |
-
|
4462 |
-
|
4463 |
-
|
4464 |
-
|
4465 |
-
|
4466 |
-
|
4467 |
-
msgid ""
|
4468 |
-
|
4469 |
-
|
4470 |
-
|
4471 |
-
|
4472 |
-
|
4473 |
-
|
4474 |
-
msgstr ""
|
4475 |
-
|
4476 |
-
#: includes/class-wcj-
|
4477 |
-
|
4478 |
-
|
4479 |
-
|
4480 |
-
|
4481 |
-
|
4482 |
-
|
4483 |
-
|
4484 |
-
|
4485 |
-
|
4486 |
-
|
4487 |
-
|
4488 |
-
|
4489 |
-
msgid "
|
4490 |
-
|
4491 |
-
|
4492 |
-
|
4493 |
-
|
4494 |
-
|
4495 |
-
|
4496 |
-
|
4497 |
-
|
4498 |
-
|
4499 |
-
"
|
4500 |
-
|
4501 |
-
|
4502 |
-
|
4503 |
-
|
4504 |
-
|
4505 |
-
|
4506 |
-
|
4507 |
-
|
4508 |
-
|
4509 |
-
|
4510 |
-
|
4511 |
-
|
4512 |
-
|
4513 |
-
|
4514 |
-
|
4515 |
-
|
4516 |
-
|
4517 |
-
msgid ""
|
4518 |
-
"
|
4519 |
-
|
4520 |
-
|
4521 |
-
|
4522 |
-
|
4523 |
-
|
4524 |
-
|
4525 |
-
|
4526 |
-
|
4527 |
-
|
4528 |
-
|
4529 |
-
|
4530 |
-
|
4531 |
-
|
4532 |
-
|
4533 |
-
|
4534 |
-
|
4535 |
-
|
4536 |
-
|
4537 |
-
|
4538 |
-
|
4539 |
-
|
4540 |
-
|
4541 |
-
|
4542 |
-
|
4543 |
-
|
4544 |
-
|
4545 |
-
|
4546 |
-
|
4547 |
-
|
4548 |
-
|
4549 |
-
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
4553 |
-
|
4554 |
-
|
4555 |
-
|
4556 |
-
|
4557 |
-
|
4558 |
-
|
4559 |
-
|
4560 |
-
|
4561 |
-
|
4562 |
-
|
4563 |
-
|
4564 |
-
|
4565 |
-
#: includes/
|
4566 |
-
msgid "
|
4567 |
-
msgstr ""
|
4568 |
-
|
4569 |
-
#: includes/
|
4570 |
-
|
4571 |
-
|
4572 |
-
|
4573 |
-
#: includes/
|
4574 |
-
|
4575 |
-
|
4576 |
-
|
4577 |
-
#: includes/
|
4578 |
-
#: includes/
|
4579 |
-
msgid "
|
4580 |
-
|
4581 |
-
|
4582 |
-
|
4583 |
-
|
4584 |
-
|
4585 |
-
|
4586 |
-
|
4587 |
-
|
4588 |
-
|
4589 |
-
|
4590 |
-
#: includes/
|
4591 |
-
msgid "
|
4592 |
-
msgstr ""
|
4593 |
-
|
4594 |
-
#: includes/
|
4595 |
-
|
4596 |
-
"
|
4597 |
-
|
4598 |
-
|
4599 |
-
|
4600 |
-
|
4601 |
-
|
4602 |
-
|
4603 |
-
|
4604 |
-
|
4605 |
-
|
4606 |
-
|
4607 |
-
|
4608 |
-
|
4609 |
-
|
4610 |
-
|
4611 |
-
"
|
4612 |
-
"
|
4613 |
-
|
4614 |
-
|
4615 |
-
#: includes/
|
4616 |
-
|
4617 |
-
|
4618 |
-
|
4619 |
-
|
4620 |
-
|
4621 |
-
|
4622 |
-
|
4623 |
-
msgid "
|
4624 |
-
msgstr ""
|
4625 |
-
|
4626 |
-
#: includes/
|
4627 |
-
|
4628 |
-
|
4629 |
-
|
4630 |
-
|
4631 |
-
|
4632 |
-
"
|
4633 |
-
msgstr ""
|
4634 |
-
|
4635 |
-
#: includes/
|
4636 |
-
msgid "
|
4637 |
-
msgstr ""
|
4638 |
-
|
4639 |
-
#: includes/
|
4640 |
-
|
4641 |
-
|
4642 |
-
|
4643 |
-
|
4644 |
-
|
4645 |
-
|
4646 |
-
|
4647 |
-
|
4648 |
-
|
4649 |
-
|
4650 |
-
|
4651 |
-
|
4652 |
-
|
4653 |
-
|
4654 |
-
|
4655 |
-
|
4656 |
-
|
4657 |
-
|
4658 |
-
|
4659 |
-
|
4660 |
-
|
4661 |
-
|
4662 |
-
|
4663 |
-
|
4664 |
-
|
4665 |
-
|
4666 |
-
|
4667 |
-
|
4668 |
-
|
4669 |
-
|
4670 |
-
|
4671 |
-
|
4672 |
-
|
4673 |
-
|
4674 |
-
|
4675 |
-
|
4676 |
-
|
4677 |
-
|
4678 |
-
msgid "
|
4679 |
-
|
4680 |
-
|
4681 |
-
|
4682 |
-
|
4683 |
-
|
4684 |
-
|
4685 |
-
|
4686 |
-
|
4687 |
-
|
4688 |
-
|
4689 |
-
|
4690 |
-
|
4691 |
-
|
4692 |
-
|
4693 |
-
|
4694 |
-
|
4695 |
-
|
4696 |
-
|
4697 |
-
|
4698 |
-
|
4699 |
-
|
4700 |
-
|
4701 |
-
|
4702 |
-
|
4703 |
-
|
4704 |
-
"
|
4705 |
-
|
4706 |
-
|
4707 |
-
|
4708 |
-
|
4709 |
-
|
4710 |
-
|
4711 |
-
|
4712 |
-
|
4713 |
-
|
4714 |
-
|
4715 |
-
|
4716 |
-
"
|
4717 |
-
|
4718 |
-
|
4719 |
-
|
4720 |
-
|
4721 |
-
|
4722 |
-
|
4723 |
-
|
4724 |
-
|
4725 |
-
|
4726 |
-
|
4727 |
-
|
4728 |
-
"
|
4729 |
-
|
4730 |
-
|
4731 |
-
|
4732 |
-
|
4733 |
-
|
4734 |
-
|
4735 |
-
|
4736 |
-
|
4737 |
-
|
4738 |
-
|
4739 |
-
|
4740 |
-
|
4741 |
-
|
4742 |
-
|
4743 |
-
|
4744 |
-
|
4745 |
-
|
4746 |
-
|
4747 |
-
|
4748 |
-
|
4749 |
-
|
4750 |
-
|
4751 |
-
|
4752 |
-
"
|
4753 |
-
"
|
4754 |
-
|
4755 |
-
|
4756 |
-
#: includes/
|
4757 |
-
|
4758 |
-
|
4759 |
-
|
4760 |
-
#: includes/
|
4761 |
-
|
4762 |
-
|
4763 |
-
|
4764 |
-
|
4765 |
-
|
4766 |
-
|
4767 |
-
|
4768 |
-
|
4769 |
-
|
4770 |
-
|
4771 |
-
|
4772 |
-
|
4773 |
-
#: includes/
|
4774 |
-
msgid "
|
4775 |
-
msgstr ""
|
4776 |
-
|
4777 |
-
#: includes/
|
4778 |
-
msgid ""
|
4779 |
-
|
4780 |
-
|
4781 |
-
|
4782 |
-
|
4783 |
-
|
4784 |
-
|
4785 |
-
|
4786 |
-
|
4787 |
-
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
|
4792 |
-
|
4793 |
-
|
4794 |
-
|
4795 |
-
|
4796 |
-
|
4797 |
-
|
4798 |
-
|
4799 |
-
|
4800 |
-
|
4801 |
-
|
4802 |
-
|
4803 |
-
|
4804 |
-
|
4805 |
-
|
4806 |
-
|
4807 |
-
|
4808 |
-
|
4809 |
-
#: includes/
|
4810 |
-
msgid "
|
4811 |
-
msgstr ""
|
4812 |
-
|
4813 |
-
#: includes/
|
4814 |
-
|
4815 |
-
|
4816 |
-
|
4817 |
-
|
4818 |
-
|
4819 |
-
"
|
4820 |
-
|
4821 |
-
|
4822 |
-
|
4823 |
-
|
4824 |
-
|
4825 |
-
|
4826 |
-
|
4827 |
-
|
4828 |
-
|
4829 |
-
msgstr ""
|
4830 |
-
|
4831 |
-
#: includes/
|
4832 |
-
|
4833 |
-
|
4834 |
-
|
4835 |
-
|
4836 |
-
|
4837 |
-
|
4838 |
-
|
4839 |
-
|
4840 |
-
|
4841 |
-
|
4842 |
-
|
4843 |
-
|
4844 |
-
|
4845 |
-
|
4846 |
-
|
4847 |
-
#: includes/
|
4848 |
-
#: includes/settings/wcj-settings-product-
|
4849 |
-
|
4850 |
-
|
4851 |
-
|
4852 |
-
|
4853 |
-
#: includes/
|
4854 |
-
msgid "
|
4855 |
-
msgstr ""
|
4856 |
-
|
4857 |
-
#: includes/classes/class-wcj-module.php:
|
4858 |
-
|
4859 |
-
|
4860 |
-
|
4861 |
-
|
4862 |
-
|
4863 |
-
|
4864 |
-
|
4865 |
-
|
4866 |
-
|
4867 |
-
|
4868 |
-
|
4869 |
-
|
4870 |
-
|
4871 |
-
|
4872 |
-
|
4873 |
-
|
4874 |
-
|
4875 |
-
|
4876 |
-
|
4877 |
-
|
4878 |
-
|
4879 |
-
|
4880 |
-
|
4881 |
-
|
4882 |
-
|
4883 |
-
|
4884 |
-
|
4885 |
-
|
4886 |
-
|
4887 |
-
|
4888 |
-
|
4889 |
-
#: includes/
|
4890 |
-
|
4891 |
-
|
4892 |
-
|
4893 |
-
|
4894 |
-
|
4895 |
-
|
4896 |
-
|
4897 |
-
|
4898 |
-
|
4899 |
-
|
4900 |
-
|
4901 |
-
|
4902 |
-
|
4903 |
-
|
4904 |
-
|
4905 |
-
|
4906 |
-
|
4907 |
-
|
4908 |
-
|
4909 |
-
|
4910 |
-
|
4911 |
-
|
4912 |
-
|
4913 |
-
|
4914 |
-
|
4915 |
-
|
4916 |
-
|
4917 |
-
|
4918 |
-
"
|
4919 |
-
|
4920 |
-
|
4921 |
-
|
4922 |
-
#: includes/
|
4923 |
-
msgid "
|
4924 |
-
msgstr ""
|
4925 |
-
|
4926 |
-
#: includes/
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
|
4932 |
-
|
4933 |
-
|
4934 |
-
|
4935 |
-
msgid ""
|
4936 |
-
|
4937 |
-
|
4938 |
-
|
4939 |
-
|
4940 |
-
|
4941 |
-
|
4942 |
-
|
4943 |
-
|
4944 |
-
|
4945 |
-
|
4946 |
-
|
4947 |
-
|
4948 |
-
|
4949 |
-
|
4950 |
-
|
4951 |
-
|
4952 |
-
|
4953 |
-
|
4954 |
-
|
4955 |
-
|
4956 |
-
|
4957 |
-
|
4958 |
-
|
4959 |
-
|
4960 |
-
|
4961 |
-
|
4962 |
-
|
4963 |
-
|
4964 |
-
|
4965 |
-
|
4966 |
-
#: includes/
|
4967 |
-
|
4968 |
-
|
4969 |
-
|
4970 |
-
|
4971 |
-
|
4972 |
-
|
4973 |
-
|
4974 |
-
|
4975 |
-
|
4976 |
-
|
4977 |
-
|
4978 |
-
|
4979 |
-
|
4980 |
-
|
4981 |
-
|
4982 |
-
|
4983 |
-
|
4984 |
-
|
4985 |
-
|
4986 |
-
|
4987 |
-
|
4988 |
-
|
4989 |
-
|
4990 |
-
|
4991 |
-
|
4992 |
-
|
4993 |
-
|
4994 |
-
msgid "
|
4995 |
-
msgstr ""
|
4996 |
-
|
4997 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
4998 |
-
|
4999 |
-
|
5000 |
-
|
5001 |
-
|
5002 |
-
|
5003 |
-
|
5004 |
-
|
5005 |
-
|
5006 |
-
|
5007 |
-
|
5008 |
-
|
5009 |
-
#: includes/
|
5010 |
-
|
5011 |
-
|
5012 |
-
|
5013 |
-
#: includes/
|
5014 |
-
msgid "
|
5015 |
-
msgstr ""
|
5016 |
-
|
5017 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
5018 |
-
msgid "
|
5019 |
-
msgstr ""
|
5020 |
-
|
5021 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
5022 |
-
msgid "
|
5023 |
-
msgstr ""
|
5024 |
-
|
5025 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
5026 |
-
msgid "
|
5027 |
-
|
5028 |
-
|
5029 |
-
|
5030 |
-
|
5031 |
-
|
5032 |
-
|
5033 |
-
|
5034 |
-
|
5035 |
-
|
5036 |
-
|
5037 |
-
|
5038 |
-
|
5039 |
-
|
5040 |
-
|
5041 |
-
|
5042 |
-
|
5043 |
-
|
5044 |
-
|
5045 |
-
|
5046 |
-
msgid ""
|
5047 |
-
|
5048 |
-
|
5049 |
-
|
5050 |
-
|
5051 |
-
|
5052 |
-
|
5053 |
-
|
5054 |
-
|
5055 |
-
|
5056 |
-
|
5057 |
-
|
5058 |
-
|
5059 |
-
|
5060 |
-
|
5061 |
-
|
5062 |
-
|
5063 |
-
|
5064 |
-
|
5065 |
-
|
5066 |
-
"
|
5067 |
-
msgstr ""
|
5068 |
-
|
5069 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
5070 |
-
|
5071 |
-
|
5072 |
-
|
5073 |
-
|
5074 |
-
|
5075 |
-
|
5076 |
-
|
5077 |
-
|
5078 |
-
msgstr ""
|
5079 |
-
|
5080 |
-
#: includes/emails/class-wc-email-wcj-custom.php:
|
5081 |
-
|
5082 |
-
|
5083 |
-
|
5084 |
-
|
5085 |
-
|
5086 |
-
|
5087 |
-
|
5088 |
-
|
5089 |
-
|
5090 |
-
|
5091 |
-
|
5092 |
-
|
5093 |
-
msgstr ""
|
5094 |
-
|
5095 |
-
#: includes/
|
5096 |
-
|
5097 |
-
|
5098 |
-
|
5099 |
-
|
5100 |
-
|
5101 |
-
|
5102 |
-
|
5103 |
-
#: includes/
|
5104 |
-
msgid "
|
5105 |
-
msgstr ""
|
5106 |
-
|
5107 |
-
#: includes/
|
5108 |
-
|
5109 |
-
|
5110 |
-
|
5111 |
-
msgstr ""
|
5112 |
-
|
5113 |
-
#: includes/
|
5114 |
-
|
5115 |
-
|
5116 |
-
|
5117 |
-
|
5118 |
-
|
5119 |
-
|
5120 |
-
|
5121 |
-
|
5122 |
-
|
5123 |
-
|
5124 |
-
|
5125 |
-
|
5126 |
-
|
5127 |
-
|
5128 |
-
|
5129 |
-
|
5130 |
-
|
5131 |
-
|
5132 |
-
|
5133 |
-
|
5134 |
-
|
5135 |
-
#: includes/
|
5136 |
-
|
5137 |
-
|
5138 |
-
|
5139 |
-
|
5140 |
-
|
5141 |
-
#: includes/
|
5142 |
-
|
5143 |
-
|
5144 |
-
|
5145 |
-
|
5146 |
-
|
5147 |
-
#: includes/
|
5148 |
-
|
5149 |
-
|
5150 |
-
|
5151 |
-
|
5152 |
-
|
5153 |
-
#: includes/
|
5154 |
-
|
5155 |
-
|
5156 |
-
|
5157 |
-
|
5158 |
-
|
5159 |
-
#: includes/
|
5160 |
-
|
5161 |
-
|
5162 |
-
|
5163 |
-
|
5164 |
-
|
5165 |
-
|
5166 |
-
|
5167 |
-
#: includes/
|
5168 |
-
msgid "
|
5169 |
-
msgstr ""
|
5170 |
-
|
5171 |
-
#: includes/
|
5172 |
-
|
5173 |
-
|
5174 |
-
|
5175 |
-
|
5176 |
-
|
5177 |
-
|
5178 |
-
|
5179 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5180 |
-
|
5181 |
-
|
5182 |
-
|
5183 |
-
|
5184 |
-
|
5185 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5186 |
-
|
5187 |
-
|
5188 |
-
|
5189 |
-
|
5190 |
-
|
5191 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5192 |
-
|
5193 |
-
|
5194 |
-
|
5195 |
-
|
5196 |
-
|
5197 |
-
|
5198 |
-
|
5199 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5200 |
-
msgid "
|
5201 |
-
msgstr ""
|
5202 |
-
|
5203 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5204 |
-
|
5205 |
-
|
5206 |
-
|
5207 |
-
|
5208 |
-
|
5209 |
-
|
5210 |
-
|
5211 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5212 |
-
msgid "
|
5213 |
-
msgstr ""
|
5214 |
-
|
5215 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5216 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5217 |
-
#: includes/
|
5218 |
-
msgid "
|
5219 |
-
msgstr ""
|
5220 |
-
|
5221 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5222 |
-
#: includes/
|
5223 |
-
|
5224 |
-
|
5225 |
-
|
5226 |
-
|
5227 |
-
|
5228 |
-
|
5229 |
-
|
5230 |
-
|
5231 |
-
|
5232 |
-
|
5233 |
-
#: includes/
|
5234 |
-
#: includes/
|
5235 |
-
|
5236 |
-
|
5237 |
-
|
5238 |
-
|
5239 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5240 |
-
msgid "Order
|
5241 |
-
msgstr ""
|
5242 |
-
|
5243 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5244 |
-
|
5245 |
-
|
5246 |
-
|
5247 |
-
|
5248 |
-
|
5249 |
-
|
5250 |
-
|
5251 |
-
|
5252 |
-
|
5253 |
-
|
5254 |
-
|
5255 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5256 |
-
msgid "
|
5257 |
-
msgstr ""
|
5258 |
-
|
5259 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5260 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5261 |
-
|
5262 |
-
|
5263 |
-
|
5264 |
-
|
5265 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5266 |
-
#: includes/
|
5267 |
-
|
5268 |
-
|
5269 |
-
|
5270 |
-
|
5271 |
-
|
5272 |
-
|
5273 |
-
|
5274 |
-
#: includes/
|
5275 |
-
#: includes/
|
5276 |
-
|
5277 |
-
|
5278 |
-
|
5279 |
-
|
5280 |
-
|
5281 |
-
|
5282 |
-
|
5283 |
-
|
5284 |
-
|
5285 |
-
|
5286 |
-
|
5287 |
-
|
5288 |
-
|
5289 |
-
#: includes/
|
5290 |
-
|
5291 |
-
|
5292 |
-
|
5293 |
-
|
5294 |
-
|
5295 |
-
|
5296 |
-
|
5297 |
-
|
5298 |
-
|
5299 |
-
|
5300 |
-
|
5301 |
-
|
5302 |
-
|
5303 |
-
|
5304 |
-
|
5305 |
-
|
5306 |
-
|
5307 |
-
|
5308 |
-
|
5309 |
-
|
5310 |
-
#: includes/
|
5311 |
-
#: includes/
|
5312 |
-
|
5313 |
-
|
5314 |
-
|
5315 |
-
|
5316 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5317 |
-
|
5318 |
-
|
5319 |
-
|
5320 |
-
|
5321 |
-
|
5322 |
-
|
5323 |
-
|
5324 |
-
|
5325 |
-
|
5326 |
-
|
5327 |
-
|
5328 |
-
|
5329 |
-
|
5330 |
-
|
5331 |
-
|
5332 |
-
|
5333 |
-
|
5334 |
-
|
5335 |
-
#: includes/
|
5336 |
-
|
5337 |
-
|
5338 |
-
|
5339 |
-
|
5340 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5341 |
-
msgid "
|
5342 |
-
msgstr ""
|
5343 |
-
|
5344 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5345 |
-
|
5346 |
-
|
5347 |
-
|
5348 |
-
|
5349 |
-
|
5350 |
-
|
5351 |
-
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
|
5357 |
-
|
5358 |
-
|
5359 |
-
|
5360 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5361 |
-
msgid "
|
5362 |
-
msgstr ""
|
5363 |
-
|
5364 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5365 |
-
|
5366 |
-
|
5367 |
-
|
5368 |
-
|
5369 |
-
|
5370 |
-
|
5371 |
-
|
5372 |
-
|
5373 |
-
|
5374 |
-
|
5375 |
-
|
5376 |
-
|
5377 |
-
|
5378 |
-
|
5379 |
-
|
5380 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5381 |
-
msgid "
|
5382 |
-
msgstr ""
|
5383 |
-
|
5384 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5385 |
-
msgid "Item
|
5386 |
-
msgstr ""
|
5387 |
-
|
5388 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5389 |
-
msgid "Item
|
5390 |
-
msgstr ""
|
5391 |
-
|
5392 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5393 |
-
msgid "Item
|
5394 |
-
msgstr ""
|
5395 |
-
|
5396 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5397 |
-
msgid "
|
5398 |
-
msgstr ""
|
5399 |
-
|
5400 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5401 |
-
msgid "
|
5402 |
-
msgstr ""
|
5403 |
-
|
5404 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5405 |
-
msgid "
|
5406 |
-
msgstr ""
|
5407 |
-
|
5408 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5409 |
-
msgid "
|
5410 |
-
msgstr ""
|
5411 |
-
|
5412 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5413 |
-
msgid "
|
5414 |
-
msgstr ""
|
5415 |
-
|
5416 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5417 |
-
|
5418 |
-
|
5419 |
-
|
5420 |
-
#: includes/
|
5421 |
-
|
5422 |
-
|
5423 |
-
|
5424 |
-
|
5425 |
-
|
5426 |
-
|
5427 |
-
|
5428 |
-
#: includes/
|
5429 |
-
|
5430 |
-
|
5431 |
-
|
5432 |
-
#: includes/
|
5433 |
-
msgid "
|
5434 |
-
msgstr ""
|
5435 |
-
|
5436 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5437 |
-
|
5438 |
-
|
5439 |
-
|
5440 |
-
#: includes/
|
5441 |
-
|
5442 |
-
|
5443 |
-
|
5444 |
-
#: includes/
|
5445 |
-
|
5446 |
-
|
5447 |
-
|
5448 |
-
#: includes/
|
5449 |
-
|
5450 |
-
|
5451 |
-
|
5452 |
-
|
5453 |
-
|
5454 |
-
|
5455 |
-
|
5456 |
-
|
5457 |
-
|
5458 |
-
|
5459 |
-
|
5460 |
-
#: includes/
|
5461 |
-
#: includes/
|
5462 |
-
#: includes/
|
5463 |
-
|
5464 |
-
|
5465 |
-
|
5466 |
-
#: includes/
|
5467 |
-
msgid "
|
5468 |
-
msgstr ""
|
5469 |
-
|
5470 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5471 |
-
|
5472 |
-
|
5473 |
-
|
5474 |
-
#: includes/
|
5475 |
-
|
5476 |
-
|
5477 |
-
|
5478 |
-
|
5479 |
-
|
5480 |
-
|
5481 |
-
|
5482 |
-
|
5483 |
-
#: includes/
|
5484 |
-
|
5485 |
-
|
5486 |
-
|
5487 |
-
#: includes/
|
5488 |
-
|
5489 |
-
|
5490 |
-
|
5491 |
-
#: includes/
|
5492 |
-
|
5493 |
-
|
5494 |
-
|
5495 |
-
|
5496 |
-
|
5497 |
-
|
5498 |
-
|
5499 |
-
#: includes/
|
5500 |
-
msgid "
|
5501 |
-
msgstr ""
|
5502 |
-
|
5503 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5504 |
-
|
5505 |
-
|
5506 |
-
|
5507 |
-
|
5508 |
-
|
5509 |
-
|
5510 |
-
|
5511 |
-
|
5512 |
-
|
5513 |
-
|
5514 |
-
|
5515 |
-
|
5516 |
-
|
5517 |
-
|
5518 |
-
|
5519 |
-
|
5520 |
-
|
5521 |
-
|
5522 |
-
|
5523 |
-
#: includes/
|
5524 |
-
msgid "
|
5525 |
-
msgstr ""
|
5526 |
-
|
5527 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5528 |
-
msgid "
|
5529 |
-
msgstr ""
|
5530 |
-
|
5531 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5532 |
-
msgid "
|
5533 |
-
msgstr ""
|
5534 |
-
|
5535 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5536 |
-
msgid "
|
5537 |
-
msgstr ""
|
5538 |
-
|
5539 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5540 |
-
msgid "
|
5541 |
-
msgstr ""
|
5542 |
-
|
5543 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5544 |
-
msgid "
|
5545 |
-
msgstr ""
|
5546 |
-
|
5547 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5548 |
-
msgid "
|
5549 |
-
msgstr ""
|
5550 |
-
|
5551 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5552 |
-
msgid "
|
5553 |
-
msgstr ""
|
5554 |
-
|
5555 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5556 |
-
msgid "
|
5557 |
-
msgstr ""
|
5558 |
-
|
5559 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5560 |
-
msgid "
|
5561 |
-
msgstr ""
|
5562 |
-
|
5563 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5564 |
-
msgid "
|
5565 |
-
msgstr ""
|
5566 |
-
|
5567 |
-
#: includes/export/class-wcj-fields-helper.php:
|
5568 |
-
msgid "
|
5569 |
-
msgstr ""
|
5570 |
-
|
5571 |
-
#: includes/
|
5572 |
-
|
5573 |
-
|
5574 |
-
|
5575 |
-
|
5576 |
-
|
5577 |
-
|
5578 |
-
|
5579 |
-
|
5580 |
-
|
5581 |
-
|
5582 |
-
|
5583 |
-
|
5584 |
-
|
5585 |
-
|
5586 |
-
|
5587 |
-
#: includes/
|
5588 |
-
|
5589 |
-
|
5590 |
-
|
5591 |
-
|
5592 |
-
|
5593 |
-
|
5594 |
-
|
5595 |
-
|
5596 |
-
msgid "
|
5597 |
-
msgstr ""
|
5598 |
-
|
5599 |
-
#: includes/
|
5600 |
-
msgid "
|
5601 |
-
msgstr ""
|
5602 |
-
|
5603 |
-
#: includes/
|
5604 |
-
|
5605 |
-
|
5606 |
-
|
5607 |
-
|
5608 |
-
|
5609 |
-
|
5610 |
-
|
5611 |
-
|
5612 |
-
|
5613 |
-
|
5614 |
-
|
5615 |
-
|
5616 |
-
|
5617 |
-
|
5618 |
-
|
5619 |
-
|
5620 |
-
|
5621 |
-
|
5622 |
-
|
5623 |
-
|
5624 |
-
|
5625 |
-
|
5626 |
-
|
5627 |
-
"
|
5628 |
-
msgstr ""
|
5629 |
-
|
5630 |
-
#: includes/functions/wcj-functions-admin.php:
|
5631 |
-
|
5632 |
-
|
5633 |
-
|
5634 |
-
|
5635 |
-
|
5636 |
-
|
5637 |
-
|
5638 |
-
|
5639 |
-
|
5640 |
-
|
5641 |
-
|
5642 |
-
|
5643 |
-
|
5644 |
-
|
5645 |
-
msgstr ""
|
5646 |
-
|
5647 |
-
#: includes/functions/wcj-functions-admin.php:
|
5648 |
-
|
5649 |
-
|
5650 |
-
|
5651 |
-
|
5652 |
-
|
5653 |
-
|
5654 |
-
|
5655 |
-
|
5656 |
-
|
5657 |
-
|
5658 |
-
|
5659 |
-
|
5660 |
-
|
5661 |
-
|
5662 |
-
|
5663 |
-
|
5664 |
-
msgid "
|
5665 |
-
msgstr ""
|
5666 |
-
|
5667 |
-
#: includes/functions/wcj-functions-
|
5668 |
-
|
5669 |
-
|
5670 |
-
|
5671 |
-
|
5672 |
-
|
5673 |
-
|
5674 |
-
|
5675 |
-
|
5676 |
-
msgid "
|
5677 |
-
msgstr ""
|
5678 |
-
|
5679 |
-
#: includes/functions/wcj-functions-
|
5680 |
-
|
5681 |
-
|
5682 |
-
|
5683 |
-
|
5684 |
-
|
5685 |
-
|
5686 |
-
|
5687 |
-
|
5688 |
-
|
5689 |
-
msgstr ""
|
5690 |
-
|
5691 |
-
#: includes/functions/wcj-functions-
|
5692 |
-
msgid "
|
5693 |
-
msgstr ""
|
5694 |
-
|
5695 |
-
#: includes/functions/wcj-functions-country.php:
|
5696 |
-
msgid "
|
5697 |
-
msgstr ""
|
5698 |
-
|
5699 |
-
#: includes/functions/wcj-functions-country.php:
|
5700 |
-
msgid "
|
5701 |
-
msgstr ""
|
5702 |
-
|
5703 |
-
#: includes/functions/wcj-functions-country.php:
|
5704 |
-
msgid "
|
5705 |
-
msgstr ""
|
5706 |
-
|
5707 |
-
#: includes/functions/wcj-functions-country.php:
|
5708 |
-
msgid "
|
5709 |
-
msgstr ""
|
5710 |
-
|
5711 |
-
#: includes/functions/wcj-functions-country.php:
|
5712 |
-
msgid "
|
5713 |
-
msgstr ""
|
5714 |
-
|
5715 |
-
#: includes/functions/wcj-functions-country.php:
|
5716 |
-
msgid "
|
5717 |
-
msgstr ""
|
5718 |
-
|
5719 |
-
#: includes/functions/wcj-functions-country.php:
|
5720 |
-
msgid "
|
5721 |
-
msgstr ""
|
5722 |
-
|
5723 |
-
#: includes/functions/wcj-functions-country.php:
|
5724 |
-
msgid "
|
5725 |
-
msgstr ""
|
5726 |
-
|
5727 |
-
#: includes/functions/wcj-functions-country.php:
|
5728 |
-
msgid "
|
5729 |
-
msgstr ""
|
5730 |
-
|
5731 |
-
#: includes/functions/wcj-functions-country.php:
|
5732 |
-
msgid "
|
5733 |
-
msgstr ""
|
5734 |
-
|
5735 |
-
#: includes/functions/wcj-functions-country.php:
|
5736 |
-
msgid "
|
5737 |
-
msgstr ""
|
5738 |
-
|
5739 |
-
#: includes/functions/wcj-functions-country.php:
|
5740 |
-
msgid "
|
5741 |
-
msgstr ""
|
5742 |
-
|
5743 |
-
#: includes/functions/wcj-functions-country.php:
|
5744 |
-
msgid "
|
5745 |
-
msgstr ""
|
5746 |
-
|
5747 |
-
#: includes/functions/wcj-functions-country.php:
|
5748 |
-
msgid "
|
5749 |
-
msgstr ""
|
5750 |
-
|
5751 |
-
#: includes/functions/wcj-functions-country.php:
|
5752 |
-
msgid "
|
5753 |
-
msgstr ""
|
5754 |
-
|
5755 |
-
#: includes/functions/wcj-functions-country.php:
|
5756 |
-
msgid "
|
5757 |
-
msgstr ""
|
5758 |
-
|
5759 |
-
#: includes/functions/wcj-functions-country.php:
|
5760 |
-
msgid "
|
5761 |
-
msgstr ""
|
5762 |
-
|
5763 |
-
#: includes/functions/wcj-functions-country.php:
|
5764 |
-
msgid "
|
5765 |
-
msgstr ""
|
5766 |
-
|
5767 |
-
#: includes/functions/wcj-functions-country.php:
|
5768 |
-
msgid "
|
5769 |
-
msgstr ""
|
5770 |
-
|
5771 |
-
#: includes/functions/wcj-functions-country.php:
|
5772 |
-
msgid "
|
5773 |
-
msgstr ""
|
5774 |
-
|
5775 |
-
#: includes/functions/wcj-functions-country.php:
|
5776 |
-
msgid "
|
5777 |
-
msgstr ""
|
5778 |
-
|
5779 |
-
#: includes/functions/wcj-functions-country.php:
|
5780 |
-
msgid "
|
5781 |
-
msgstr ""
|
5782 |
-
|
5783 |
-
#: includes/functions/wcj-functions-country.php:
|
5784 |
-
msgid "
|
5785 |
-
msgstr ""
|
5786 |
-
|
5787 |
-
#: includes/functions/wcj-functions-country.php:
|
5788 |
-
msgid "
|
5789 |
-
msgstr ""
|
5790 |
-
|
5791 |
-
#: includes/functions/wcj-functions-country.php:
|
5792 |
-
msgid "
|
5793 |
-
msgstr ""
|
5794 |
-
|
5795 |
-
#: includes/functions/wcj-functions-country.php:
|
5796 |
-
msgid "
|
5797 |
-
msgstr ""
|
5798 |
-
|
5799 |
-
#: includes/functions/wcj-functions-country.php:
|
5800 |
-
msgid "
|
5801 |
-
msgstr ""
|
5802 |
-
|
5803 |
-
#: includes/functions/wcj-functions-country.php:
|
5804 |
-
msgid "
|
5805 |
-
msgstr ""
|
5806 |
-
|
5807 |
-
#: includes/functions/wcj-functions-country.php:
|
5808 |
-
msgid "
|
5809 |
-
msgstr ""
|
5810 |
-
|
5811 |
-
#: includes/functions/wcj-functions-country.php:
|
5812 |
-
msgid "
|
5813 |
-
msgstr ""
|
5814 |
-
|
5815 |
-
#: includes/functions/wcj-functions-country.php:
|
5816 |
-
msgid "
|
5817 |
-
msgstr ""
|
5818 |
-
|
5819 |
-
#: includes/functions/wcj-functions-country.php:
|
5820 |
-
msgid "
|
5821 |
-
msgstr ""
|
5822 |
-
|
5823 |
-
#: includes/functions/wcj-functions-country.php:
|
5824 |
-
msgid "
|
5825 |
-
msgstr ""
|
5826 |
-
|
5827 |
-
#: includes/functions/wcj-functions-country.php:
|
5828 |
-
msgid "
|
5829 |
-
msgstr ""
|
5830 |
-
|
5831 |
-
#: includes/functions/wcj-functions-country.php:
|
5832 |
-
msgid "
|
5833 |
-
msgstr ""
|
5834 |
-
|
5835 |
-
#: includes/functions/wcj-functions-country.php:
|
5836 |
-
msgid "
|
5837 |
-
msgstr ""
|
5838 |
-
|
5839 |
-
#: includes/functions/wcj-functions-country.php:
|
5840 |
-
msgid "
|
5841 |
-
msgstr ""
|
5842 |
-
|
5843 |
-
#: includes/functions/wcj-functions-country.php:
|
5844 |
-
msgid "
|
5845 |
-
msgstr ""
|
5846 |
-
|
5847 |
-
#: includes/functions/wcj-functions-country.php:
|
5848 |
-
msgid "
|
5849 |
-
msgstr ""
|
5850 |
-
|
5851 |
-
#: includes/functions/wcj-functions-country.php:
|
5852 |
-
msgid "
|
5853 |
-
msgstr ""
|
5854 |
-
|
5855 |
-
#: includes/functions/wcj-functions-country.php:
|
5856 |
-
msgid "
|
5857 |
-
msgstr ""
|
5858 |
-
|
5859 |
-
#: includes/functions/wcj-functions-country.php:
|
5860 |
-
msgid "
|
5861 |
-
msgstr ""
|
5862 |
-
|
5863 |
-
#: includes/functions/wcj-functions-country.php:
|
5864 |
-
msgid "
|
5865 |
-
msgstr ""
|
5866 |
-
|
5867 |
-
#: includes/functions/wcj-functions-country.php:
|
5868 |
-
msgid "
|
5869 |
-
msgstr ""
|
5870 |
-
|
5871 |
-
#: includes/functions/wcj-functions-country.php:
|
5872 |
-
msgid "
|
5873 |
-
msgstr ""
|
5874 |
-
|
5875 |
-
#: includes/functions/wcj-functions-country.php:
|
5876 |
-
msgid "
|
5877 |
-
msgstr ""
|
5878 |
-
|
5879 |
-
#: includes/functions/wcj-functions-country.php:
|
5880 |
-
msgid "
|
5881 |
-
msgstr ""
|
5882 |
-
|
5883 |
-
#: includes/functions/wcj-functions-country.php:
|
5884 |
-
msgid "
|
5885 |
-
msgstr ""
|
5886 |
-
|
5887 |
-
#: includes/functions/wcj-functions-country.php:
|
5888 |
-
msgid "
|
5889 |
-
msgstr ""
|
5890 |
-
|
5891 |
-
#: includes/functions/wcj-functions-country.php:
|
5892 |
-
msgid "
|
5893 |
-
msgstr ""
|
5894 |
-
|
5895 |
-
#: includes/functions/wcj-functions-country.php:
|
5896 |
-
msgid "
|
5897 |
-
msgstr ""
|
5898 |
-
|
5899 |
-
#: includes/functions/wcj-functions-country.php:
|
5900 |
-
msgid "
|
5901 |
-
msgstr ""
|
5902 |
-
|
5903 |
-
#: includes/functions/wcj-functions-country.php:
|
5904 |
-
msgid "
|
5905 |
-
msgstr ""
|
5906 |
-
|
5907 |
-
#: includes/functions/wcj-functions-country.php:
|
5908 |
-
msgid "
|
5909 |
-
msgstr ""
|
5910 |
-
|
5911 |
-
#: includes/functions/wcj-functions-country.php:
|
5912 |
-
msgid "
|
5913 |
-
msgstr ""
|
5914 |
-
|
5915 |
-
#: includes/functions/wcj-functions-country.php:
|
5916 |
-
msgid "
|
5917 |
-
msgstr ""
|
5918 |
-
|
5919 |
-
#: includes/functions/wcj-functions-country.php:
|
5920 |
-
msgid "
|
5921 |
-
msgstr ""
|
5922 |
-
|
5923 |
-
#: includes/functions/wcj-functions-country.php:
|
5924 |
-
msgid "
|
5925 |
-
msgstr ""
|
5926 |
-
|
5927 |
-
#: includes/functions/wcj-functions-country.php:
|
5928 |
-
msgid "
|
5929 |
-
msgstr ""
|
5930 |
-
|
5931 |
-
#: includes/functions/wcj-functions-country.php:
|
5932 |
-
msgid "
|
5933 |
-
msgstr ""
|
5934 |
-
|
5935 |
-
#: includes/functions/wcj-functions-country.php:
|
5936 |
-
msgid "
|
5937 |
-
msgstr ""
|
5938 |
-
|
5939 |
-
#: includes/functions/wcj-functions-country.php:
|
5940 |
-
msgid "
|
5941 |
-
msgstr ""
|
5942 |
-
|
5943 |
-
#: includes/functions/wcj-functions-country.php:
|
5944 |
-
msgid "
|
5945 |
-
msgstr ""
|
5946 |
-
|
5947 |
-
#: includes/functions/wcj-functions-country.php:
|
5948 |
-
msgid "
|
5949 |
-
msgstr ""
|
5950 |
-
|
5951 |
-
#: includes/functions/wcj-functions-country.php:
|
5952 |
-
msgid "
|
5953 |
-
msgstr ""
|
5954 |
-
|
5955 |
-
#: includes/functions/wcj-functions-country.php:
|
5956 |
-
msgid "
|
5957 |
-
msgstr ""
|
5958 |
-
|
5959 |
-
#: includes/functions/wcj-functions-country.php:
|
5960 |
-
msgid "
|
5961 |
-
msgstr ""
|
5962 |
-
|
5963 |
-
#: includes/functions/wcj-functions-country.php:
|
5964 |
-
msgid "
|
5965 |
-
msgstr ""
|
5966 |
-
|
5967 |
-
#: includes/functions/wcj-functions-country.php:
|
5968 |
-
msgid "
|
5969 |
-
msgstr ""
|
5970 |
-
|
5971 |
-
#: includes/functions/wcj-functions-country.php:
|
5972 |
-
msgid "
|
5973 |
-
msgstr ""
|
5974 |
-
|
5975 |
-
#: includes/functions/wcj-functions-country.php:
|
5976 |
-
msgid "
|
5977 |
-
msgstr ""
|
5978 |
-
|
5979 |
-
#: includes/functions/wcj-functions-country.php:
|
5980 |
-
msgid "
|
5981 |
-
msgstr ""
|
5982 |
-
|
5983 |
-
#: includes/functions/wcj-functions-country.php:
|
5984 |
-
msgid "
|
5985 |
-
msgstr ""
|
5986 |
-
|
5987 |
-
#: includes/functions/wcj-functions-country.php:
|
5988 |
-
msgid "
|
5989 |
-
msgstr ""
|
5990 |
-
|
5991 |
-
#: includes/functions/wcj-functions-country.php:
|
5992 |
-
msgid "
|
5993 |
-
msgstr ""
|
5994 |
-
|
5995 |
-
#: includes/functions/wcj-functions-country.php:
|
5996 |
-
msgid "
|
5997 |
-
msgstr ""
|
5998 |
-
|
5999 |
-
#: includes/functions/wcj-functions-country.php:
|
6000 |
-
msgid "
|
6001 |
-
msgstr ""
|
6002 |
-
|
6003 |
-
#: includes/functions/wcj-functions-country.php:
|
6004 |
-
msgid "
|
6005 |
-
msgstr ""
|
6006 |
-
|
6007 |
-
#: includes/functions/wcj-functions-country.php:
|
6008 |
-
msgid "
|
6009 |
-
msgstr ""
|
6010 |
-
|
6011 |
-
#: includes/functions/wcj-functions-country.php:
|
6012 |
-
msgid "
|
6013 |
-
msgstr ""
|
6014 |
-
|
6015 |
-
#: includes/functions/wcj-functions-country.php:
|
6016 |
-
msgid "
|
6017 |
-
msgstr ""
|
6018 |
-
|
6019 |
-
#: includes/functions/wcj-functions-country.php:
|
6020 |
-
msgid "
|
6021 |
-
msgstr ""
|
6022 |
-
|
6023 |
-
#: includes/functions/wcj-functions-country.php:
|
6024 |
-
msgid "
|
6025 |
-
msgstr ""
|
6026 |
-
|
6027 |
-
#: includes/functions/wcj-functions-country.php:
|
6028 |
-
msgid "
|
6029 |
-
msgstr ""
|
6030 |
-
|
6031 |
-
#: includes/functions/wcj-functions-country.php:
|
6032 |
-
msgid "
|
6033 |
-
msgstr ""
|
6034 |
-
|
6035 |
-
#: includes/functions/wcj-functions-country.php:
|
6036 |
-
msgid "
|
6037 |
-
msgstr ""
|
6038 |
-
|
6039 |
-
#: includes/functions/wcj-functions-country.php:
|
6040 |
-
msgid "
|
6041 |
-
msgstr ""
|
6042 |
-
|
6043 |
-
#: includes/functions/wcj-functions-country.php:
|
6044 |
-
msgid "
|
6045 |
-
msgstr ""
|
6046 |
-
|
6047 |
-
#: includes/functions/wcj-functions-country.php:
|
6048 |
-
msgid "
|
6049 |
-
msgstr ""
|
6050 |
-
|
6051 |
-
#: includes/functions/wcj-functions-country.php:
|
6052 |
-
msgid "
|
6053 |
-
msgstr ""
|
6054 |
-
|
6055 |
-
#: includes/functions/wcj-functions-country.php:
|
6056 |
-
msgid "
|
6057 |
-
msgstr ""
|
6058 |
-
|
6059 |
-
#: includes/functions/wcj-functions-country.php:
|
6060 |
-
msgid "
|
6061 |
-
msgstr ""
|
6062 |
-
|
6063 |
-
#: includes/functions/wcj-functions-country.php:
|
6064 |
-
msgid "
|
6065 |
-
msgstr ""
|
6066 |
-
|
6067 |
-
#: includes/functions/wcj-functions-country.php:
|
6068 |
-
msgid "
|
6069 |
-
msgstr ""
|
6070 |
-
|
6071 |
-
#: includes/functions/wcj-functions-country.php:
|
6072 |
-
msgid "
|
6073 |
-
msgstr ""
|
6074 |
-
|
6075 |
-
#: includes/functions/wcj-functions-country.php:
|
6076 |
-
msgid "
|
6077 |
-
msgstr ""
|
6078 |
-
|
6079 |
-
#: includes/functions/wcj-functions-country.php:
|
6080 |
-
msgid "
|
6081 |
-
msgstr ""
|
6082 |
-
|
6083 |
-
#: includes/functions/wcj-functions-country.php:
|
6084 |
-
msgid "
|
6085 |
-
msgstr ""
|
6086 |
-
|
6087 |
-
#: includes/functions/wcj-functions-country.php:
|
6088 |
-
msgid "
|
6089 |
-
msgstr ""
|
6090 |
-
|
6091 |
-
#: includes/functions/wcj-functions-country.php:
|
6092 |
-
msgid "
|
6093 |
-
msgstr ""
|
6094 |
-
|
6095 |
-
#: includes/functions/wcj-functions-country.php:
|
6096 |
-
msgid "
|
6097 |
-
msgstr ""
|
6098 |
-
|
6099 |
-
#: includes/functions/wcj-functions-country.php:
|
6100 |
-
msgid "
|
6101 |
-
msgstr ""
|
6102 |
-
|
6103 |
-
#: includes/functions/wcj-functions-country.php:
|
6104 |
-
msgid "
|
6105 |
-
msgstr ""
|
6106 |
-
|
6107 |
-
#: includes/functions/wcj-functions-country.php:
|
6108 |
-
msgid "
|
6109 |
-
msgstr ""
|
6110 |
-
|
6111 |
-
#: includes/functions/wcj-functions-country.php:
|
6112 |
-
msgid "
|
6113 |
-
msgstr ""
|
6114 |
-
|
6115 |
-
#: includes/functions/wcj-functions-country.php:
|
6116 |
-
msgid "
|
6117 |
-
msgstr ""
|
6118 |
-
|
6119 |
-
#: includes/functions/wcj-functions-country.php:
|
6120 |
-
msgid "
|
6121 |
-
msgstr ""
|
6122 |
-
|
6123 |
-
#: includes/functions/wcj-functions-country.php:
|
6124 |
-
msgid "
|
6125 |
-
msgstr ""
|
6126 |
-
|
6127 |
-
#: includes/functions/wcj-functions-country.php:
|
6128 |
-
msgid "
|
6129 |
-
msgstr ""
|
6130 |
-
|
6131 |
-
#: includes/functions/wcj-functions-country.php:
|
6132 |
-
msgid "
|
6133 |
-
msgstr ""
|
6134 |
-
|
6135 |
-
#: includes/functions/wcj-functions-country.php:
|
6136 |
-
msgid "
|
6137 |
-
msgstr ""
|
6138 |
-
|
6139 |
-
#: includes/functions/wcj-functions-country.php:
|
6140 |
-
msgid "
|
6141 |
-
msgstr ""
|
6142 |
-
|
6143 |
-
#: includes/functions/wcj-functions-country.php:
|
6144 |
-
msgid "
|
6145 |
-
msgstr ""
|
6146 |
-
|
6147 |
-
#: includes/functions/wcj-functions-country.php:
|
6148 |
-
msgid "
|
6149 |
-
msgstr ""
|
6150 |
-
|
6151 |
-
#: includes/functions/wcj-functions-country.php:
|
6152 |
-
msgid "
|
6153 |
-
msgstr ""
|
6154 |
-
|
6155 |
-
#: includes/functions/wcj-functions-country.php:
|
6156 |
-
msgid "
|
6157 |
-
msgstr ""
|
6158 |
-
|
6159 |
-
#: includes/functions/wcj-functions-country.php:
|
6160 |
-
msgid "
|
6161 |
-
msgstr ""
|
6162 |
-
|
6163 |
-
#: includes/functions/wcj-functions-country.php:
|
6164 |
-
msgid "
|
6165 |
-
msgstr ""
|
6166 |
-
|
6167 |
-
#: includes/functions/wcj-functions-country.php:
|
6168 |
-
msgid "
|
6169 |
-
msgstr ""
|
6170 |
-
|
6171 |
-
#: includes/functions/wcj-functions-country.php:
|
6172 |
-
msgid "
|
6173 |
-
msgstr ""
|
6174 |
-
|
6175 |
-
#: includes/functions/wcj-functions-country.php:
|
6176 |
-
msgid "
|
6177 |
-
msgstr ""
|
6178 |
-
|
6179 |
-
#: includes/functions/wcj-functions-country.php:
|
6180 |
-
msgid "
|
6181 |
-
msgstr ""
|
6182 |
-
|
6183 |
-
#: includes/functions/wcj-functions-country.php:
|
6184 |
-
msgid "
|
6185 |
-
msgstr ""
|
6186 |
-
|
6187 |
-
#: includes/functions/wcj-functions-country.php:
|
6188 |
-
msgid "
|
6189 |
-
msgstr ""
|
6190 |
-
|
6191 |
-
#: includes/functions/wcj-functions-country.php:
|
6192 |
-
msgid "
|
6193 |
-
msgstr ""
|
6194 |
-
|
6195 |
-
#: includes/functions/wcj-functions-country.php:
|
6196 |
-
msgid "
|
6197 |
-
msgstr ""
|
6198 |
-
|
6199 |
-
#: includes/functions/wcj-functions-country.php:
|
6200 |
-
msgid "
|
6201 |
-
msgstr ""
|
6202 |
-
|
6203 |
-
#: includes/functions/wcj-functions-country.php:
|
6204 |
-
msgid "
|
6205 |
-
msgstr ""
|
6206 |
-
|
6207 |
-
#: includes/functions/wcj-functions-country.php:
|
6208 |
-
msgid "
|
6209 |
-
msgstr ""
|
6210 |
-
|
6211 |
-
#: includes/functions/wcj-functions-country.php:
|
6212 |
-
msgid "
|
6213 |
-
msgstr ""
|
6214 |
-
|
6215 |
-
#: includes/functions/wcj-functions-country.php:
|
6216 |
-
msgid "
|
6217 |
-
msgstr ""
|
6218 |
-
|
6219 |
-
#: includes/functions/wcj-functions-country.php:
|
6220 |
-
msgid "
|
6221 |
-
msgstr ""
|
6222 |
-
|
6223 |
-
#: includes/functions/wcj-functions-country.php:
|
6224 |
-
msgid "
|
6225 |
-
msgstr ""
|
6226 |
-
|
6227 |
-
#: includes/functions/wcj-functions-country.php:
|
6228 |
-
msgid "
|
6229 |
-
msgstr ""
|
6230 |
-
|
6231 |
-
#: includes/functions/wcj-functions-country.php:
|
6232 |
-
msgid "
|
6233 |
-
msgstr ""
|
6234 |
-
|
6235 |
-
#: includes/functions/wcj-functions-country.php:
|
6236 |
-
msgid "
|
6237 |
-
msgstr ""
|
6238 |
-
|
6239 |
-
#: includes/functions/wcj-functions-country.php:
|
6240 |
-
msgid "
|
6241 |
-
msgstr ""
|
6242 |
-
|
6243 |
-
#: includes/functions/wcj-functions-country.php:
|
6244 |
-
msgid "
|
6245 |
-
msgstr ""
|
6246 |
-
|
6247 |
-
#: includes/functions/wcj-functions-country.php:
|
6248 |
-
msgid "
|
6249 |
-
msgstr ""
|
6250 |
-
|
6251 |
-
#: includes/functions/wcj-functions-country.php:
|
6252 |
-
msgid "
|
6253 |
-
msgstr ""
|
6254 |
-
|
6255 |
-
#: includes/functions/wcj-functions-country.php:
|
6256 |
-
msgid "
|
6257 |
-
msgstr ""
|
6258 |
-
|
6259 |
-
#: includes/functions/wcj-functions-country.php:
|
6260 |
-
msgid "
|
6261 |
-
msgstr ""
|
6262 |
-
|
6263 |
-
#: includes/functions/wcj-functions-country.php:
|
6264 |
-
msgid "
|
6265 |
-
msgstr ""
|
6266 |
-
|
6267 |
-
#: includes/functions/wcj-functions-country.php:
|
6268 |
-
msgid "
|
6269 |
-
msgstr ""
|
6270 |
-
|
6271 |
-
#: includes/functions/wcj-functions-country.php:
|
6272 |
-
msgid "
|
6273 |
-
msgstr ""
|
6274 |
-
|
6275 |
-
#: includes/functions/wcj-functions-country.php:
|
6276 |
-
msgid "
|
6277 |
-
msgstr ""
|
6278 |
-
|
6279 |
-
#: includes/functions/wcj-functions-country.php:
|
6280 |
-
msgid "
|
6281 |
-
msgstr ""
|
6282 |
-
|
6283 |
-
#: includes/functions/wcj-functions-country.php:
|
6284 |
-
msgid "
|
6285 |
-
msgstr ""
|
6286 |
-
|
6287 |
-
#: includes/functions/wcj-functions-country.php:
|
6288 |
-
msgid "
|
6289 |
-
msgstr ""
|
6290 |
-
|
6291 |
-
#: includes/functions/wcj-functions-country.php:
|
6292 |
-
msgid "
|
6293 |
-
msgstr ""
|
6294 |
-
|
6295 |
-
#: includes/functions/wcj-functions-country.php:
|
6296 |
-
msgid "
|
6297 |
-
msgstr ""
|
6298 |
-
|
6299 |
-
#: includes/functions/wcj-functions-country.php:
|
6300 |
-
msgid "
|
6301 |
-
msgstr ""
|
6302 |
-
|
6303 |
-
#: includes/functions/wcj-functions-country.php:
|
6304 |
-
msgid "
|
6305 |
-
msgstr ""
|
6306 |
-
|
6307 |
-
#: includes/functions/wcj-functions-country.php:
|
6308 |
-
msgid "
|
6309 |
-
msgstr ""
|
6310 |
-
|
6311 |
-
#: includes/functions/wcj-functions-country.php:
|
6312 |
-
msgid "
|
6313 |
-
msgstr ""
|
6314 |
-
|
6315 |
-
#: includes/functions/wcj-functions-country.php:
|
6316 |
-
msgid "
|
6317 |
-
msgstr ""
|
6318 |
-
|
6319 |
-
#: includes/functions/wcj-functions-country.php:
|
6320 |
-
msgid "
|
6321 |
-
msgstr ""
|
6322 |
-
|
6323 |
-
#: includes/functions/wcj-functions-country.php:
|
6324 |
-
msgid "
|
6325 |
-
msgstr ""
|
6326 |
-
|
6327 |
-
#: includes/functions/wcj-functions-country.php:
|
6328 |
-
msgid "
|
6329 |
-
msgstr ""
|
6330 |
-
|
6331 |
-
#: includes/functions/wcj-functions-country.php:
|
6332 |
-
msgid "
|
6333 |
-
msgstr ""
|
6334 |
-
|
6335 |
-
#: includes/functions/wcj-functions-country.php:
|
6336 |
-
msgid "
|
6337 |
-
msgstr ""
|
6338 |
-
|
6339 |
-
#: includes/functions/wcj-functions-country.php:
|
6340 |
-
msgid "
|
6341 |
-
msgstr ""
|
6342 |
-
|
6343 |
-
#: includes/functions/wcj-functions-country.php:
|
6344 |
-
msgid "
|
6345 |
-
msgstr ""
|
6346 |
-
|
6347 |
-
#: includes/functions/wcj-functions-country.php:
|
6348 |
-
msgid "
|
6349 |
-
msgstr ""
|
6350 |
-
|
6351 |
-
#: includes/functions/wcj-functions-country.php:
|
6352 |
-
msgid "
|
6353 |
-
msgstr ""
|
6354 |
-
|
6355 |
-
#: includes/functions/wcj-functions-country.php:
|
6356 |
-
msgid "
|
6357 |
-
msgstr ""
|
6358 |
-
|
6359 |
-
#: includes/functions/wcj-functions-country.php:
|
6360 |
-
msgid "
|
6361 |
-
msgstr ""
|
6362 |
-
|
6363 |
-
#: includes/functions/wcj-functions-country.php:
|
6364 |
-
msgid "
|
6365 |
-
msgstr ""
|
6366 |
-
|
6367 |
-
#: includes/functions/wcj-functions-country.php:
|
6368 |
-
msgid "
|
6369 |
-
msgstr ""
|
6370 |
-
|
6371 |
-
#: includes/functions/wcj-functions-country.php:
|
6372 |
-
msgid "
|
6373 |
-
msgstr ""
|
6374 |
-
|
6375 |
-
#: includes/functions/wcj-functions-country.php:
|
6376 |
-
msgid "
|
6377 |
-
msgstr ""
|
6378 |
-
|
6379 |
-
#: includes/functions/wcj-functions-country.php:
|
6380 |
-
msgid "
|
6381 |
-
msgstr ""
|
6382 |
-
|
6383 |
-
#: includes/functions/wcj-functions-country.php:
|
6384 |
-
msgid "
|
6385 |
-
msgstr ""
|
6386 |
-
|
6387 |
-
#: includes/functions/wcj-functions-country.php:
|
6388 |
-
msgid "
|
6389 |
-
msgstr ""
|
6390 |
-
|
6391 |
-
#: includes/functions/wcj-functions-country.php:
|
6392 |
-
msgid "
|
6393 |
-
msgstr ""
|
6394 |
-
|
6395 |
-
#: includes/functions/wcj-functions-country.php:
|
6396 |
-
msgid "
|
6397 |
-
msgstr ""
|
6398 |
-
|
6399 |
-
#: includes/functions/wcj-functions-country.php:
|
6400 |
-
msgid "
|
6401 |
-
msgstr ""
|
6402 |
-
|
6403 |
-
#: includes/functions/wcj-functions-country.php:
|
6404 |
-
msgid "
|
6405 |
-
msgstr ""
|
6406 |
-
|
6407 |
-
#: includes/functions/wcj-functions-country.php:
|
6408 |
-
msgid "
|
6409 |
-
msgstr ""
|
6410 |
-
|
6411 |
-
#: includes/functions/wcj-functions-country.php:
|
6412 |
-
msgid "
|
6413 |
-
msgstr ""
|
6414 |
-
|
6415 |
-
#: includes/functions/wcj-functions-country.php:
|
6416 |
-
msgid "
|
6417 |
-
msgstr ""
|
6418 |
-
|
6419 |
-
#: includes/functions/wcj-functions-country.php:
|
6420 |
-
msgid "
|
6421 |
-
msgstr ""
|
6422 |
-
|
6423 |
-
#: includes/functions/wcj-functions-country.php:
|
6424 |
-
msgid "
|
6425 |
-
msgstr ""
|
6426 |
-
|
6427 |
-
#: includes/functions/wcj-functions-country.php:
|
6428 |
-
msgid "
|
6429 |
-
msgstr ""
|
6430 |
-
|
6431 |
-
#: includes/functions/wcj-functions-country.php:
|
6432 |
-
msgid "
|
6433 |
-
msgstr ""
|
6434 |
-
|
6435 |
-
#: includes/functions/wcj-functions-country.php:
|
6436 |
-
msgid "
|
6437 |
-
msgstr ""
|
6438 |
-
|
6439 |
-
#: includes/functions/wcj-functions-country.php:
|
6440 |
-
msgid "
|
6441 |
-
msgstr ""
|
6442 |
-
|
6443 |
-
#: includes/functions/wcj-functions-country.php:
|
6444 |
-
msgid "
|
6445 |
-
msgstr ""
|
6446 |
-
|
6447 |
-
#: includes/functions/wcj-functions-country.php:
|
6448 |
-
msgid "
|
6449 |
-
msgstr ""
|
6450 |
-
|
6451 |
-
#: includes/functions/wcj-functions-country.php:
|
6452 |
-
msgid "
|
6453 |
-
msgstr ""
|
6454 |
-
|
6455 |
-
#: includes/functions/wcj-functions-country.php:
|
6456 |
-
msgid "
|
6457 |
-
msgstr ""
|
6458 |
-
|
6459 |
-
#: includes/functions/wcj-functions-country.php:
|
6460 |
-
msgid "
|
6461 |
-
msgstr ""
|
6462 |
-
|
6463 |
-
#: includes/functions/wcj-functions-country.php:
|
6464 |
-
msgid "
|
6465 |
-
msgstr ""
|
6466 |
-
|
6467 |
-
#: includes/functions/wcj-functions-country.php:
|
6468 |
-
msgid "
|
6469 |
-
msgstr ""
|
6470 |
-
|
6471 |
-
#: includes/functions/wcj-functions-country.php:
|
6472 |
-
msgid "
|
6473 |
-
msgstr ""
|
6474 |
-
|
6475 |
-
#: includes/functions/wcj-functions-country.php:
|
6476 |
-
msgid "
|
6477 |
-
msgstr ""
|
6478 |
-
|
6479 |
-
#: includes/functions/wcj-functions-country.php:
|
6480 |
-
msgid "
|
6481 |
-
msgstr ""
|
6482 |
-
|
6483 |
-
#: includes/functions/wcj-functions-country.php:
|
6484 |
-
msgid "
|
6485 |
-
msgstr ""
|
6486 |
-
|
6487 |
-
#: includes/functions/wcj-functions-country.php:
|
6488 |
-
msgid "
|
6489 |
-
msgstr ""
|
6490 |
-
|
6491 |
-
#: includes/functions/wcj-functions-country.php:
|
6492 |
-
msgid "
|
6493 |
-
msgstr ""
|
6494 |
-
|
6495 |
-
#: includes/functions/wcj-functions-country.php:
|
6496 |
-
msgid "
|
6497 |
-
msgstr ""
|
6498 |
-
|
6499 |
-
#: includes/functions/wcj-functions-country.php:
|
6500 |
-
msgid "
|
6501 |
-
msgstr ""
|
6502 |
-
|
6503 |
-
#: includes/functions/wcj-functions-country.php:
|
6504 |
-
msgid "
|
6505 |
-
msgstr ""
|
6506 |
-
|
6507 |
-
#: includes/functions/wcj-functions-country.php:
|
6508 |
-
msgid "
|
6509 |
-
msgstr ""
|
6510 |
-
|
6511 |
-
#: includes/functions/wcj-functions-country.php:
|
6512 |
-
msgid "
|
6513 |
-
msgstr ""
|
6514 |
-
|
6515 |
-
#: includes/functions/wcj-functions-country.php:
|
6516 |
-
msgid "
|
6517 |
-
msgstr ""
|
6518 |
-
|
6519 |
-
#: includes/functions/wcj-functions-country.php:
|
6520 |
-
msgid "
|
6521 |
-
msgstr ""
|
6522 |
-
|
6523 |
-
#: includes/functions/wcj-functions-country.php:
|
6524 |
-
msgid "
|
6525 |
-
msgstr ""
|
6526 |
-
|
6527 |
-
#: includes/functions/wcj-functions-country.php:
|
6528 |
-
msgid "
|
6529 |
-
msgstr ""
|
6530 |
-
|
6531 |
-
#: includes/functions/wcj-functions-country.php:
|
6532 |
-
msgid "
|
6533 |
-
msgstr ""
|
6534 |
-
|
6535 |
-
#: includes/functions/wcj-functions-country.php:
|
6536 |
-
msgid "
|
6537 |
-
msgstr ""
|
6538 |
-
|
6539 |
-
#: includes/functions/wcj-functions-country.php:
|
6540 |
-
msgid "
|
6541 |
-
msgstr ""
|
6542 |
-
|
6543 |
-
#: includes/functions/wcj-functions-country.php:
|
6544 |
-
msgid "
|
6545 |
-
msgstr ""
|
6546 |
-
|
6547 |
-
#: includes/functions/wcj-functions-country.php:
|
6548 |
-
msgid "
|
6549 |
-
msgstr ""
|
6550 |
-
|
6551 |
-
#: includes/functions/wcj-functions-country.php:
|
6552 |
-
msgid "
|
6553 |
-
msgstr ""
|
6554 |
-
|
6555 |
-
#: includes/functions/wcj-functions-country.php:
|
6556 |
-
msgid "
|
6557 |
-
msgstr ""
|
6558 |
-
|
6559 |
-
#: includes/functions/wcj-functions-country.php:
|
6560 |
-
msgid "
|
6561 |
-
msgstr ""
|
6562 |
-
|
6563 |
-
#: includes/functions/wcj-functions-country.php:
|
6564 |
-
msgid "
|
6565 |
-
msgstr ""
|
6566 |
-
|
6567 |
-
#: includes/functions/wcj-functions-country.php:
|
6568 |
-
msgid "
|
6569 |
-
msgstr ""
|
6570 |
-
|
6571 |
-
#: includes/functions/wcj-functions-country.php:
|
6572 |
-
msgid "
|
6573 |
-
msgstr ""
|
6574 |
-
|
6575 |
-
#: includes/functions/wcj-functions-country.php:
|
6576 |
-
msgid "
|
6577 |
-
msgstr ""
|
6578 |
-
|
6579 |
-
#: includes/functions/wcj-functions-country.php:
|
6580 |
-
msgid "
|
6581 |
-
msgstr ""
|
6582 |
-
|
6583 |
-
#: includes/functions/wcj-functions-country.php:
|
6584 |
-
msgid "
|
6585 |
-
msgstr ""
|
6586 |
-
|
6587 |
-
#: includes/functions/wcj-functions-country.php:
|
6588 |
-
msgid "
|
6589 |
-
msgstr ""
|
6590 |
-
|
6591 |
-
#: includes/functions/wcj-functions-country.php:
|
6592 |
-
msgid "
|
6593 |
-
msgstr ""
|
6594 |
-
|
6595 |
-
#: includes/functions/wcj-functions-country.php:
|
6596 |
-
msgid "
|
6597 |
-
msgstr ""
|
6598 |
-
|
6599 |
-
#: includes/functions/wcj-functions-country.php:
|
6600 |
-
msgid "
|
6601 |
-
msgstr ""
|
6602 |
-
|
6603 |
-
#: includes/functions/wcj-functions-country.php:
|
6604 |
-
msgid "
|
6605 |
-
msgstr ""
|
6606 |
-
|
6607 |
-
#: includes/functions/wcj-functions-country.php:
|
6608 |
-
msgid "
|
6609 |
-
msgstr ""
|
6610 |
-
|
6611 |
-
#: includes/functions/wcj-functions-country.php:
|
6612 |
-
msgid "
|
6613 |
-
msgstr ""
|
6614 |
-
|
6615 |
-
#: includes/functions/wcj-functions-country.php:
|
6616 |
-
msgid "
|
6617 |
-
msgstr ""
|
6618 |
-
|
6619 |
-
#: includes/functions/wcj-functions-country.php:
|
6620 |
-
msgid "
|
6621 |
-
msgstr ""
|
6622 |
-
|
6623 |
-
#: includes/functions/wcj-functions-country.php:
|
6624 |
-
msgid "
|
6625 |
-
msgstr ""
|
6626 |
-
|
6627 |
-
#: includes/functions/wcj-functions-country.php:
|
6628 |
-
msgid "
|
6629 |
-
msgstr ""
|
6630 |
-
|
6631 |
-
#: includes/functions/wcj-functions-
|
6632 |
-
msgid "
|
6633 |
-
msgstr ""
|
6634 |
-
|
6635 |
-
#: includes/functions/wcj-functions-
|
6636 |
-
|
6637 |
-
|
6638 |
-
|
6639 |
-
|
6640 |
-
|
6641 |
-
|
6642 |
-
|
6643 |
-
|
6644 |
-
|
6645 |
-
|
6646 |
-
|
6647 |
-
|
6648 |
-
|
6649 |
-
|
6650 |
-
|
6651 |
-
|
6652 |
-
msgid "
|
6653 |
-
msgstr ""
|
6654 |
-
|
6655 |
-
#: includes/functions/wcj-functions-
|
6656 |
-
|
6657 |
-
|
6658 |
-
|
6659 |
-
|
6660 |
-
|
6661 |
-
|
6662 |
-
|
6663 |
-
|
6664 |
-
|
6665 |
-
|
6666 |
-
|
6667 |
-
|
6668 |
-
|
6669 |
-
|
6670 |
-
|
6671 |
-
|
6672 |
-
msgid "
|
6673 |
-
msgstr ""
|
6674 |
-
|
6675 |
-
#: includes/functions/wcj-functions-crons.php:
|
6676 |
-
|
6677 |
-
|
6678 |
-
|
6679 |
-
|
6680 |
-
|
6681 |
-
|
6682 |
-
|
6683 |
-
|
6684 |
-
|
6685 |
-
|
6686 |
-
msgid "
|
6687 |
-
msgstr ""
|
6688 |
-
|
6689 |
-
#: includes/functions/wcj-functions-crons.php:
|
6690 |
-
|
6691 |
-
|
6692 |
-
|
6693 |
-
|
6694 |
-
|
6695 |
-
|
6696 |
-
|
6697 |
-
|
6698 |
-
|
6699 |
-
|
6700 |
-
|
6701 |
-
|
6702 |
-
|
6703 |
-
|
6704 |
-
|
6705 |
-
|
6706 |
-
msgid "
|
6707 |
-
msgstr ""
|
6708 |
-
|
6709 |
-
#: includes/functions/wcj-functions-
|
6710 |
-
|
6711 |
-
|
6712 |
-
|
6713 |
-
|
6714 |
-
|
6715 |
-
|
6716 |
-
|
6717 |
-
|
6718 |
-
|
6719 |
-
|
6720 |
-
|
6721 |
-
|
6722 |
-
|
6723 |
-
|
6724 |
-
|
6725 |
-
|
6726 |
-
msgid "
|
6727 |
-
msgstr ""
|
6728 |
-
|
6729 |
-
#: includes/functions/wcj-functions-
|
6730 |
-
msgid "
|
6731 |
-
msgstr ""
|
6732 |
-
|
6733 |
-
#: includes/functions/wcj-functions-
|
6734 |
-
|
6735 |
-
|
6736 |
-
|
6737 |
-
|
6738 |
-
|
6739 |
-
|
6740 |
-
|
6741 |
-
|
6742 |
-
|
6743 |
-
|
6744 |
-
|
6745 |
-
|
6746 |
-
|
6747 |
-
|
6748 |
-
|
6749 |
-
|
6750 |
-
|
6751 |
-
|
6752 |
-
|
6753 |
-
|
6754 |
-
|
6755 |
-
|
6756 |
-
|
6757 |
-
|
6758 |
-
|
6759 |
-
|
6760 |
-
|
6761 |
-
|
6762 |
-
|
6763 |
-
|
6764 |
-
|
6765 |
-
|
6766 |
-
|
6767 |
-
|
6768 |
-
|
6769 |
-
|
6770 |
-
|
6771 |
-
|
6772 |
-
|
6773 |
-
#: includes/
|
6774 |
-
|
6775 |
-
|
6776 |
-
|
6777 |
-
|
6778 |
-
#: includes/
|
6779 |
-
|
6780 |
-
|
6781 |
-
|
6782 |
-
|
6783 |
-
#: includes/
|
6784 |
-
msgid "
|
6785 |
-
msgstr ""
|
6786 |
-
|
6787 |
-
#: includes/functions/wcj-functions-general.php:
|
6788 |
-
|
6789 |
-
|
6790 |
-
|
6791 |
-
|
6792 |
-
|
6793 |
-
|
6794 |
-
|
6795 |
-
|
6796 |
-
|
6797 |
-
|
6798 |
-
|
6799 |
-
|
6800 |
-
|
6801 |
-
|
6802 |
-
|
6803 |
-
|
6804 |
-
|
6805 |
-
|
6806 |
-
|
6807 |
-
|
6808 |
-
|
6809 |
-
|
6810 |
-
|
6811 |
-
|
6812 |
-
|
6813 |
-
|
6814 |
-
|
6815 |
-
|
6816 |
-
|
6817 |
-
|
6818 |
-
#: includes/
|
6819 |
-
msgid "
|
6820 |
-
msgstr ""
|
6821 |
-
|
6822 |
-
#: includes/functions/wcj-functions-
|
6823 |
-
|
6824 |
-
|
6825 |
-
|
6826 |
-
|
6827 |
-
#: includes/
|
6828 |
-
msgid "
|
6829 |
-
msgstr ""
|
6830 |
-
|
6831 |
-
#: includes/functions/wcj-functions-
|
6832 |
-
|
6833 |
-
|
6834 |
-
|
6835 |
-
|
6836 |
-
|
6837 |
-
|
6838 |
-
|
6839 |
-
|
6840 |
-
|
6841 |
-
|
6842 |
-
|
6843 |
-
|
6844 |
-
|
6845 |
-
|
6846 |
-
|
6847 |
-
|
6848 |
-
|
6849 |
-
|
6850 |
-
|
6851 |
-
|
6852 |
-
|
6853 |
-
|
6854 |
-
|
6855 |
-
|
6856 |
-
|
6857 |
-
|
6858 |
-
|
6859 |
-
|
6860 |
-
|
6861 |
-
|
6862 |
-
|
6863 |
-
|
6864 |
-
|
6865 |
-
|
6866 |
-
|
6867 |
-
|
6868 |
-
|
6869 |
-
|
6870 |
-
|
6871 |
-
|
6872 |
-
|
6873 |
-
|
6874 |
-
|
6875 |
-
|
6876 |
-
|
6877 |
-
|
6878 |
-
|
6879 |
-
|
6880 |
-
|
6881 |
-
|
6882 |
-
|
6883 |
-
|
6884 |
-
|
6885 |
-
|
6886 |
-
|
6887 |
-
|
6888 |
-
|
6889 |
-
|
6890 |
-
|
6891 |
-
|
6892 |
-
|
6893 |
-
|
6894 |
-
|
6895 |
-
|
6896 |
-
|
6897 |
-
|
6898 |
-
|
6899 |
-
|
6900 |
-
|
6901 |
-
|
6902 |
-
|
6903 |
-
|
6904 |
-
|
6905 |
-
#: includes/
|
6906 |
-
msgid "
|
6907 |
-
msgstr ""
|
6908 |
-
|
6909 |
-
#: includes/functions/wcj-functions-reports.php:
|
6910 |
-
msgid "
|
6911 |
-
msgstr ""
|
6912 |
-
|
6913 |
-
#: includes/functions/wcj-functions-reports.php:
|
6914 |
-
msgid "
|
6915 |
-
msgstr ""
|
6916 |
-
|
6917 |
-
#: includes/functions/wcj-functions-reports.php:
|
6918 |
-
msgid "Last
|
6919 |
-
msgstr ""
|
6920 |
-
|
6921 |
-
#: includes/functions/wcj-functions-reports.php:
|
6922 |
-
msgid "
|
6923 |
-
msgstr ""
|
6924 |
-
|
6925 |
-
#: includes/functions/wcj-functions-reports.php:
|
6926 |
-
msgid "
|
6927 |
-
msgstr ""
|
6928 |
-
|
6929 |
-
#: includes/functions/wcj-functions-
|
6930 |
-
|
6931 |
-
|
6932 |
-
|
6933 |
-
|
6934 |
-
|
6935 |
-
|
6936 |
-
|
6937 |
-
|
6938 |
-
|
6939 |
-
|
6940 |
-
|
6941 |
-
|
6942 |
-
|
6943 |
-
|
6944 |
-
|
6945 |
-
#: includes/
|
6946 |
-
|
6947 |
-
|
6948 |
-
|
6949 |
-
|
6950 |
-
|
6951 |
-
|
6952 |
-
|
6953 |
-
|
6954 |
-
|
6955 |
-
|
6956 |
-
|
6957 |
-
|
6958 |
-
|
6959 |
-
|
6960 |
-
|
6961 |
-
|
6962 |
-
|
6963 |
-
|
6964 |
-
|
6965 |
-
|
6966 |
-
|
6967 |
-
|
6968 |
-
|
6969 |
-
|
6970 |
-
|
6971 |
-
|
6972 |
-
|
6973 |
-
|
6974 |
-
|
6975 |
-
msgid "
|
6976 |
-
msgstr ""
|
6977 |
-
|
6978 |
-
#: includes/
|
6979 |
-
|
6980 |
-
|
6981 |
-
|
6982 |
-
|
6983 |
-
|
6984 |
-
|
6985 |
-
|
6986 |
-
|
6987 |
-
|
6988 |
-
|
6989 |
-
|
6990 |
-
|
6991 |
-
|
6992 |
-
|
6993 |
-
|
6994 |
-
#: includes/
|
6995 |
-
msgid "
|
6996 |
-
msgstr ""
|
6997 |
-
|
6998 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
6999 |
-
msgid ""
|
7000 |
-
|
7001 |
-
|
7002 |
-
|
7003 |
-
|
7004 |
-
|
7005 |
-
|
7006 |
-
|
7007 |
-
|
7008 |
-
|
7009 |
-
|
7010 |
-
|
7011 |
-
|
7012 |
-
|
7013 |
-
|
7014 |
-
|
7015 |
-
|
7016 |
-
|
7017 |
-
|
7018 |
-
|
7019 |
-
|
7020 |
-
|
7021 |
-
|
7022 |
-
|
7023 |
-
|
7024 |
-
|
7025 |
-
|
7026 |
-
|
7027 |
-
|
7028 |
-
|
7029 |
-
|
7030 |
-
|
7031 |
-
|
7032 |
-
|
7033 |
-
|
7034 |
-
|
7035 |
-
msgstr ""
|
7036 |
-
|
7037 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
7038 |
-
|
7039 |
-
|
7040 |
-
|
7041 |
-
|
7042 |
-
|
7043 |
-
|
7044 |
-
|
7045 |
-
|
7046 |
-
|
7047 |
-
|
7048 |
-
|
7049 |
-
#: includes/
|
7050 |
-
msgid ""
|
7051 |
-
|
7052 |
-
|
7053 |
-
|
7054 |
-
|
7055 |
-
|
7056 |
-
|
7057 |
-
msgstr ""
|
7058 |
-
|
7059 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
7060 |
-
|
7061 |
-
|
7062 |
-
|
7063 |
-
|
7064 |
-
|
7065 |
-
|
7066 |
-
|
7067 |
-
|
7068 |
-
#: includes/
|
7069 |
-
msgid "
|
7070 |
-
msgstr ""
|
7071 |
-
|
7072 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
7073 |
-
|
7074 |
-
|
7075 |
-
|
7076 |
-
|
7077 |
-
|
7078 |
-
|
7079 |
-
|
7080 |
-
|
7081 |
-
|
7082 |
-
|
7083 |
-
|
7084 |
-
|
7085 |
-
#: includes/
|
7086 |
-
|
7087 |
-
|
7088 |
-
|
7089 |
-
|
7090 |
-
|
7091 |
-
|
7092 |
-
|
7093 |
-
|
7094 |
-
|
7095 |
-
|
7096 |
-
|
7097 |
-
|
7098 |
-
|
7099 |
-
|
7100 |
-
|
7101 |
-
|
7102 |
-
|
7103 |
-
#: includes/
|
7104 |
-
|
7105 |
-
|
7106 |
-
|
7107 |
-
#: includes/
|
7108 |
-
|
7109 |
-
|
7110 |
-
|
7111 |
-
#: includes/
|
7112 |
-
#: includes/settings/wcj-settings-
|
7113 |
-
|
7114 |
-
|
7115 |
-
|
7116 |
-
#: includes/
|
7117 |
-
|
7118 |
-
|
7119 |
-
|
7120 |
-
|
7121 |
-
|
7122 |
-
|
7123 |
-
|
7124 |
-
|
7125 |
-
|
7126 |
-
|
7127 |
-
|
7128 |
-
#: includes/
|
7129 |
-
#: includes/
|
7130 |
-
#: includes/settings/wcj-settings-
|
7131 |
-
|
7132 |
-
|
7133 |
-
|
7134 |
-
|
7135 |
-
|
7136 |
-
|
7137 |
-
|
7138 |
-
|
7139 |
-
|
7140 |
-
|
7141 |
-
|
7142 |
-
#: includes/
|
7143 |
-
|
7144 |
-
|
7145 |
-
|
7146 |
-
|
7147 |
-
#: includes/
|
7148 |
-
#: includes/settings/wcj-settings-
|
7149 |
-
#: includes/settings/wcj-settings-product-
|
7150 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-
|
7151 |
-
|
7152 |
-
|
7153 |
-
|
7154 |
-
#: includes/
|
7155 |
-
#: includes/settings/wcj-settings-
|
7156 |
-
|
7157 |
-
|
7158 |
-
|
7159 |
-
#: includes/
|
7160 |
-
#: includes/settings/wcj-settings-
|
7161 |
-
|
7162 |
-
|
7163 |
-
|
7164 |
-
|
7165 |
-
|
7166 |
-
|
7167 |
-
|
7168 |
-
|
7169 |
-
|
7170 |
-
|
7171 |
-
|
7172 |
-
|
7173 |
-
|
7174 |
-
#: includes/
|
7175 |
-
#: includes/settings/wcj-settings-
|
7176 |
-
|
7177 |
-
|
7178 |
-
|
7179 |
-
|
7180 |
-
#: includes/
|
7181 |
-
|
7182 |
-
|
7183 |
-
|
7184 |
-
|
7185 |
-
#: includes/
|
7186 |
-
|
7187 |
-
|
7188 |
-
|
7189 |
-
|
7190 |
-
|
7191 |
-
|
7192 |
-
|
7193 |
-
|
7194 |
-
#: includes/
|
7195 |
-
|
7196 |
-
|
7197 |
-
|
7198 |
-
#: includes/
|
7199 |
-
|
7200 |
-
|
7201 |
-
|
7202 |
-
|
7203 |
-
#: includes/
|
7204 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
7205 |
-
|
7206 |
-
|
7207 |
-
|
7208 |
-
|
7209 |
-
|
7210 |
-
|
7211 |
-
|
7212 |
-
|
7213 |
-
|
7214 |
-
|
7215 |
-
|
7216 |
-
|
7217 |
-
|
7218 |
-
|
7219 |
-
|
7220 |
-
|
7221 |
-
|
7222 |
-
|
7223 |
-
|
7224 |
-
|
7225 |
-
|
7226 |
-
|
7227 |
-
|
7228 |
-
|
7229 |
-
#: includes/
|
7230 |
-
msgid "
|
7231 |
-
msgstr ""
|
7232 |
-
|
7233 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7234 |
-
|
7235 |
-
|
7236 |
-
|
7237 |
-
|
7238 |
-
|
7239 |
-
|
7240 |
-
|
7241 |
-
#: includes/
|
7242 |
-
|
7243 |
-
|
7244 |
-
|
7245 |
-
|
7246 |
-
#: includes/
|
7247 |
-
|
7248 |
-
|
7249 |
-
|
7250 |
-
#: includes/
|
7251 |
-
#: includes/settings/wcj-settings-
|
7252 |
-
|
7253 |
-
|
7254 |
-
|
7255 |
-
|
7256 |
-
|
7257 |
-
|
7258 |
-
|
7259 |
-
|
7260 |
-
|
7261 |
-
|
7262 |
-
|
7263 |
-
|
7264 |
-
|
7265 |
-
|
7266 |
-
"
|
7267 |
-
msgstr ""
|
7268 |
-
|
7269 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7270 |
-
msgid "
|
7271 |
-
msgstr ""
|
7272 |
-
|
7273 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7274 |
-
msgid "
|
7275 |
-
msgstr ""
|
7276 |
-
|
7277 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7278 |
-
msgid ""
|
7279 |
-
|
7280 |
-
|
7281 |
-
|
7282 |
-
|
7283 |
-
|
7284 |
-
|
7285 |
-
|
7286 |
-
|
7287 |
-
|
7288 |
-
|
7289 |
-
|
7290 |
-
|
7291 |
-
|
7292 |
-
|
7293 |
-
|
7294 |
-
#: includes/
|
7295 |
-
|
7296 |
-
|
7297 |
-
|
7298 |
-
|
7299 |
-
|
7300 |
-
|
7301 |
-
|
7302 |
-
|
7303 |
-
|
7304 |
-
msgstr ""
|
7305 |
-
|
7306 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7307 |
-
msgid "
|
7308 |
-
|
7309 |
-
|
7310 |
-
|
7311 |
-
|
7312 |
-
|
7313 |
-
|
7314 |
-
|
7315 |
-
|
7316 |
-
|
7317 |
-
|
7318 |
-
|
7319 |
-
|
7320 |
-
|
7321 |
-
|
7322 |
-
|
7323 |
-
|
7324 |
-
|
7325 |
-
|
7326 |
-
|
7327 |
-
|
7328 |
-
|
7329 |
-
|
7330 |
-
|
7331 |
-
|
7332 |
-
|
7333 |
-
|
7334 |
-
|
7335 |
-
msgstr ""
|
7336 |
-
|
7337 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7338 |
-
|
7339 |
-
|
7340 |
-
|
7341 |
-
|
7342 |
-
|
7343 |
-
|
7344 |
-
|
7345 |
-
|
7346 |
-
#: includes/
|
7347 |
-
msgid "
|
7348 |
-
msgstr ""
|
7349 |
-
|
7350 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7351 |
-
|
7352 |
-
|
7353 |
-
|
7354 |
-
|
7355 |
-
|
7356 |
-
|
7357 |
-
|
7358 |
-
|
7359 |
-
|
7360 |
-
|
7361 |
-
|
7362 |
-
|
7363 |
-
|
7364 |
-
|
7365 |
-
|
7366 |
-
|
7367 |
-
|
7368 |
-
|
7369 |
-
|
7370 |
-
|
7371 |
-
#: includes/
|
7372 |
-
msgid "
|
7373 |
-
|
7374 |
-
|
7375 |
-
|
7376 |
-
|
7377 |
-
|
7378 |
-
|
7379 |
-
|
7380 |
-
|
7381 |
-
|
7382 |
-
"If
|
7383 |
-
|
7384 |
-
|
7385 |
-
|
7386 |
-
|
7387 |
-
|
7388 |
-
|
7389 |
-
|
7390 |
-
|
7391 |
-
|
7392 |
-
|
7393 |
-
|
7394 |
-
|
7395 |
-
|
7396 |
-
|
7397 |
-
|
7398 |
-
|
7399 |
-
|
7400 |
-
|
7401 |
-
|
7402 |
-
|
7403 |
-
|
7404 |
-
|
7405 |
-
|
7406 |
-
|
7407 |
-
msgstr ""
|
7408 |
-
|
7409 |
-
#: includes/input-fields/wcj-product-input-fields-options.php:
|
7410 |
-
|
7411 |
-
|
7412 |
-
|
7413 |
-
|
7414 |
-
|
7415 |
-
|
7416 |
-
|
7417 |
-
|
7418 |
-
|
7419 |
-
|
7420 |
-
|
7421 |
-
|
7422 |
-
|
7423 |
-
|
7424 |
-
|
7425 |
-
|
7426 |
-
|
7427 |
-
|
7428 |
-
|
7429 |
-
msgstr ""
|
7430 |
-
|
7431 |
-
#: includes/
|
7432 |
-
msgid "
|
7433 |
-
msgstr ""
|
7434 |
-
|
7435 |
-
#: includes/
|
7436 |
-
msgid "
|
7437 |
-
|
7438 |
-
|
7439 |
-
|
7440 |
-
|
7441 |
-
|
7442 |
-
|
7443 |
-
|
7444 |
-
|
7445 |
-
|
7446 |
-
|
7447 |
-
"
|
7448 |
-
|
7449 |
-
|
7450 |
-
|
7451 |
-
|
7452 |
-
|
7453 |
-
|
7454 |
-
|
7455 |
-
|
7456 |
-
|
7457 |
-
|
7458 |
-
|
7459 |
-
|
7460 |
-
|
7461 |
-
|
7462 |
-
|
7463 |
-
|
7464 |
-
|
7465 |
-
|
7466 |
-
|
7467 |
-
|
7468 |
-
|
7469 |
-
|
7470 |
-
|
7471 |
-
#: includes/
|
7472 |
-
msgid ""
|
7473 |
-
|
7474 |
-
|
7475 |
-
|
7476 |
-
|
7477 |
-
|
7478 |
-
|
7479 |
-
|
7480 |
-
|
7481 |
-
|
7482 |
-
|
7483 |
-
|
7484 |
-
|
7485 |
-
|
7486 |
-
|
7487 |
-
|
7488 |
-
|
7489 |
-
|
7490 |
-
|
7491 |
-
|
7492 |
-
|
7493 |
-
|
7494 |
-
|
7495 |
-
|
7496 |
-
|
7497 |
-
|
7498 |
-
|
7499 |
-
|
7500 |
-
|
7501 |
-
|
7502 |
-
|
7503 |
-
|
7504 |
-
|
7505 |
-
|
7506 |
-
|
7507 |
-
|
7508 |
-
msgid "
|
7509 |
-
msgstr ""
|
7510 |
-
|
7511 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-
|
7512 |
-
|
7513 |
-
|
7514 |
-
|
7515 |
-
|
7516 |
-
|
7517 |
-
|
7518 |
-
|
7519 |
-
|
7520 |
-
|
7521 |
-
|
7522 |
-
|
7523 |
-
|
7524 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-
|
7525 |
-
msgid "
|
7526 |
-
msgstr ""
|
7527 |
-
|
7528 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-
|
7529 |
-
|
7530 |
-
|
7531 |
-
|
7532 |
-
|
7533 |
-
|
7534 |
-
|
7535 |
-
|
7536 |
-
|
7537 |
-
|
7538 |
-
|
7539 |
-
|
7540 |
-
|
7541 |
-
|
7542 |
-
|
7543 |
-
|
7544 |
-
|
7545 |
-
|
7546 |
-
|
7547 |
-
|
7548 |
-
|
7549 |
-
|
7550 |
-
#: includes/
|
7551 |
-
|
7552 |
-
|
7553 |
-
|
7554 |
-
|
7555 |
-
#: includes/
|
7556 |
-
|
7557 |
-
|
7558 |
-
|
7559 |
-
|
7560 |
-
|
7561 |
-
|
7562 |
-
|
7563 |
-
|
7564 |
-
|
7565 |
-
|
7566 |
-
|
7567 |
-
|
7568 |
-
|
7569 |
-
|
7570 |
-
|
7571 |
-
|
7572 |
-
|
7573 |
-
|
7574 |
-
|
7575 |
-
|
7576 |
-
|
7577 |
-
|
7578 |
-
|
7579 |
-
|
7580 |
-
#: includes/pdf-invoices/
|
7581 |
-
msgid "
|
7582 |
-
msgstr ""
|
7583 |
-
|
7584 |
-
#: includes/pdf-invoices/
|
7585 |
-
|
7586 |
-
|
7587 |
-
|
7588 |
-
|
7589 |
-
|
7590 |
-
|
7591 |
-
|
7592 |
-
|
7593 |
-
|
7594 |
-
#: includes/
|
7595 |
-
#: includes/
|
7596 |
-
|
7597 |
-
|
7598 |
-
|
7599 |
-
#: includes/
|
7600 |
-
#: includes/
|
7601 |
-
msgid "
|
7602 |
-
msgstr ""
|
7603 |
-
|
7604 |
-
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:
|
7605 |
-
|
7606 |
-
|
7607 |
-
|
7608 |
-
|
7609 |
-
|
7610 |
-
|
7611 |
-
|
7612 |
-
|
7613 |
-
|
7614 |
-
|
7615 |
-
|
7616 |
-
|
7617 |
-
|
7618 |
-
|
7619 |
-
|
7620 |
-
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:
|
7621 |
-
msgid "
|
7622 |
-
msgstr ""
|
7623 |
-
|
7624 |
-
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:
|
7625 |
-
|
7626 |
-
|
7627 |
-
|
7628 |
-
|
7629 |
-
|
7630 |
-
|
7631 |
-
|
7632 |
-
|
7633 |
-
|
7634 |
-
|
7635 |
-
|
7636 |
-
|
7637 |
-
|
7638 |
-
|
7639 |
-
|
7640 |
-
|
7641 |
-
|
7642 |
-
|
7643 |
-
|
7644 |
-
|
7645 |
-
|
7646 |
-
|
7647 |
-
|
7648 |
-
|
7649 |
-
|
7650 |
-
|
7651 |
-
|
7652 |
-
|
7653 |
-
|
7654 |
-
|
7655 |
-
|
7656 |
-
|
7657 |
-
|
7658 |
-
"
|
7659 |
-
|
7660 |
-
|
7661 |
-
|
7662 |
-
|
7663 |
-
|
7664 |
-
|
7665 |
-
|
7666 |
-
|
7667 |
-
|
7668 |
-
|
7669 |
-
#: includes/
|
7670 |
-
|
7671 |
-
|
7672 |
-
|
7673 |
-
|
7674 |
-
|
7675 |
-
|
7676 |
-
|
7677 |
-
|
7678 |
-
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-
|
7679 |
-
msgid "
|
7680 |
-
msgstr ""
|
7681 |
-
|
7682 |
-
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-
|
7683 |
-
|
7684 |
-
|
7685 |
-
|
7686 |
-
|
7687 |
-
#: includes/
|
7688 |
-
|
7689 |
-
|
7690 |
-
|
7691 |
-
|
7692 |
-
|
7693 |
-
|
7694 |
-
|
7695 |
-
|
7696 |
-
|
7697 |
-
|
7698 |
-
|
7699 |
-
|
7700 |
-
|
7701 |
-
#: includes/
|
7702 |
-
msgid "
|
7703 |
-
|
7704 |
-
|
7705 |
-
|
7706 |
-
|
7707 |
-
#: includes/
|
7708 |
-
#: includes/settings/wcj-settings-
|
7709 |
-
#: includes/settings/wcj-settings-
|
7710 |
-
|
7711 |
-
|
7712 |
-
|
7713 |
-
|
7714 |
-
|
7715 |
-
|
7716 |
-
|
7717 |
-
|
7718 |
-
|
7719 |
-
|
7720 |
-
|
7721 |
-
|
7722 |
-
|
7723 |
-
|
7724 |
-
|
7725 |
-
|
7726 |
-
|
7727 |
-
|
7728 |
-
|
7729 |
-
|
7730 |
-
|
7731 |
-
|
7732 |
-
|
7733 |
-
|
7734 |
-
|
7735 |
-
|
7736 |
-
|
7737 |
-
|
7738 |
-
|
7739 |
-
|
7740 |
-
|
7741 |
-
|
7742 |
-
|
7743 |
-
msgid "
|
7744 |
-
msgstr ""
|
7745 |
-
|
7746 |
-
#: includes/
|
7747 |
-
|
7748 |
-
|
7749 |
-
|
7750 |
-
|
7751 |
-
|
7752 |
-
|
7753 |
-
|
7754 |
-
|
7755 |
-
|
7756 |
-
|
7757 |
-
|
7758 |
-
|
7759 |
-
|
7760 |
-
msgstr ""
|
7761 |
-
|
7762 |
-
#: includes/
|
7763 |
-
|
7764 |
-
|
7765 |
-
|
7766 |
-
|
7767 |
-
|
7768 |
-
|
7769 |
-
|
7770 |
-
|
7771 |
-
|
7772 |
-
|
7773 |
-
|
7774 |
-
|
7775 |
-
|
7776 |
-
|
7777 |
-
|
7778 |
-
#: includes/
|
7779 |
-
msgid "
|
7780 |
-
msgstr ""
|
7781 |
-
|
7782 |
-
#: includes/
|
7783 |
-
|
7784 |
-
|
7785 |
-
|
7786 |
-
|
7787 |
-
|
7788 |
-
|
7789 |
-
|
7790 |
-
|
7791 |
-
|
7792 |
-
|
7793 |
-
msgstr ""
|
7794 |
-
|
7795 |
-
#: includes/
|
7796 |
-
msgid "
|
7797 |
-
msgstr ""
|
7798 |
-
|
7799 |
-
#: includes/
|
7800 |
-
|
7801 |
-
|
7802 |
-
|
7803 |
-
|
7804 |
-
|
7805 |
-
|
7806 |
-
|
7807 |
-
|
7808 |
-
#: includes/
|
7809 |
-
|
7810 |
-
|
7811 |
-
|
7812 |
-
|
7813 |
-
|
7814 |
-
|
7815 |
-
|
7816 |
-
|
7817 |
-
|
7818 |
-
|
7819 |
-
|
7820 |
-
|
7821 |
-
|
7822 |
-
|
7823 |
-
|
7824 |
-
|
7825 |
-
|
7826 |
-
|
7827 |
-
|
7828 |
-
|
7829 |
-
|
7830 |
-
|
7831 |
-
|
7832 |
-
|
7833 |
-
|
7834 |
-
|
7835 |
-
|
7836 |
-
|
7837 |
-
|
7838 |
-
|
7839 |
-
|
7840 |
-
#: includes/
|
7841 |
-
#: includes/
|
7842 |
-
#: includes/
|
7843 |
-
|
7844 |
-
|
7845 |
-
|
7846 |
-
#: includes/
|
7847 |
-
|
7848 |
-
|
7849 |
-
|
7850 |
-
|
7851 |
-
|
7852 |
-
|
7853 |
-
|
7854 |
-
|
7855 |
-
|
7856 |
-
|
7857 |
-
|
7858 |
-
|
7859 |
-
|
7860 |
-
|
7861 |
-
|
7862 |
-
|
7863 |
-
|
7864 |
-
|
7865 |
-
|
7866 |
-
|
7867 |
-
|
7868 |
-
|
7869 |
-
|
7870 |
-
|
7871 |
-
|
7872 |
-
#: includes/reports/wcj-class-reports-
|
7873 |
-
|
7874 |
-
|
7875 |
-
|
7876 |
-
|
7877 |
-
|
7878 |
-
|
7879 |
-
|
7880 |
-
|
7881 |
-
|
7882 |
-
|
7883 |
-
|
7884 |
-
#: includes/reports/wcj-class-reports-
|
7885 |
-
|
7886 |
-
|
7887 |
-
|
7888 |
-
|
7889 |
-
|
7890 |
-
|
7891 |
-
|
7892 |
-
|
7893 |
-
|
7894 |
-
|
7895 |
-
|
7896 |
-
|
7897 |
-
|
7898 |
-
|
7899 |
-
|
7900 |
-
|
7901 |
-
|
7902 |
-
|
7903 |
-
|
7904 |
-
|
7905 |
-
|
7906 |
-
|
7907 |
-
|
7908 |
-
|
7909 |
-
|
7910 |
-
|
7911 |
-
|
7912 |
-
|
7913 |
-
|
7914 |
-
|
7915 |
-
|
7916 |
-
|
7917 |
-
#: includes/reports/wcj-class-reports-
|
7918 |
-
msgid "
|
7919 |
-
msgstr ""
|
7920 |
-
|
7921 |
-
#: includes/reports/wcj-class-reports-
|
7922 |
-
msgid "
|
7923 |
-
msgstr ""
|
7924 |
-
|
7925 |
-
#: includes/reports/wcj-class-reports-
|
7926 |
-
msgid "
|
7927 |
-
msgstr ""
|
7928 |
-
|
7929 |
-
#: includes/reports/wcj-class-reports-
|
7930 |
-
msgid ""
|
7931 |
-
|
7932 |
-
|
7933 |
-
|
7934 |
-
|
7935 |
-
|
7936 |
-
|
7937 |
-
|
7938 |
-
"
|
7939 |
-
msgstr ""
|
7940 |
-
|
7941 |
-
#: includes/reports/wcj-class-reports-
|
7942 |
-
|
7943 |
-
|
7944 |
-
|
7945 |
-
|
7946 |
-
msgid ""
|
7947 |
-
|
7948 |
-
|
7949 |
-
|
7950 |
-
|
7951 |
-
|
7952 |
-
|
7953 |
-
|
7954 |
-
|
7955 |
-
|
7956 |
-
|
7957 |
-
|
7958 |
-
|
7959 |
-
|
7960 |
-
|
7961 |
-
|
7962 |
-
|
7963 |
-
|
7964 |
-
|
7965 |
-
|
7966 |
-
|
7967 |
-
|
7968 |
-
|
7969 |
-
|
7970 |
-
|
7971 |
-
|
7972 |
-
|
7973 |
-
|
7974 |
-
|
7975 |
-
|
7976 |
-
|
7977 |
-
|
7978 |
-
|
7979 |
-
|
7980 |
-
|
7981 |
-
#: includes/reports/wcj-class-reports-
|
7982 |
-
msgid "
|
7983 |
-
msgstr ""
|
7984 |
-
|
7985 |
-
#: includes/reports/wcj-class-reports-
|
7986 |
-
|
7987 |
-
|
7988 |
-
|
7989 |
-
|
7990 |
-
|
7991 |
-
|
7992 |
-
|
7993 |
-
|
7994 |
-
|
7995 |
-
|
7996 |
-
|
7997 |
-
|
7998 |
-
|
7999 |
-
|
8000 |
-
|
8001 |
-
|
8002 |
-
msgid "
|
8003 |
-
msgstr ""
|
8004 |
-
|
8005 |
-
#: includes/reports/wcj-class-reports-
|
8006 |
-
|
8007 |
-
|
8008 |
-
|
8009 |
-
|
8010 |
-
|
8011 |
-
|
8012 |
-
|
8013 |
-
#: includes/reports/wcj-class-reports-
|
8014 |
-
msgid "
|
8015 |
-
msgstr ""
|
8016 |
-
|
8017 |
-
#: includes/
|
8018 |
-
#: includes/
|
8019 |
-
#: includes/
|
8020 |
-
|
8021 |
-
|
8022 |
-
|
8023 |
-
|
8024 |
-
|
8025 |
-
|
8026 |
-
|
8027 |
-
#: includes/
|
8028 |
-
|
8029 |
-
|
8030 |
-
|
8031 |
-
#: includes/
|
8032 |
-
|
8033 |
-
|
8034 |
-
|
8035 |
-
#: includes/
|
8036 |
-
|
8037 |
-
|
8038 |
-
|
8039 |
-
#: includes/
|
8040 |
-
|
8041 |
-
|
8042 |
-
|
8043 |
-
#: includes/
|
8044 |
-
|
8045 |
-
|
8046 |
-
|
8047 |
-
#: includes/
|
8048 |
-
|
8049 |
-
|
8050 |
-
|
8051 |
-
#: includes/
|
8052 |
-
|
8053 |
-
|
8054 |
-
|
8055 |
-
#: includes/
|
8056 |
-
|
8057 |
-
|
8058 |
-
|
8059 |
-
#: includes/
|
8060 |
-
msgid "
|
8061 |
-
msgstr ""
|
8062 |
-
|
8063 |
-
#: includes/
|
8064 |
-
|
8065 |
-
|
8066 |
-
|
8067 |
-
|
8068 |
-
|
8069 |
-
#: includes/
|
8070 |
-
|
8071 |
-
|
8072 |
-
|
8073 |
-
|
8074 |
-
|
8075 |
-
#: includes/
|
8076 |
-
|
8077 |
-
|
8078 |
-
|
8079 |
-
#: includes/
|
8080 |
-
|
8081 |
-
|
8082 |
-
|
8083 |
-
|
8084 |
-
msgstr ""
|
8085 |
-
|
8086 |
-
#: includes/
|
8087 |
-
|
8088 |
-
|
8089 |
-
|
8090 |
-
|
8091 |
-
|
8092 |
-
|
8093 |
-
|
8094 |
-
|
8095 |
-
"
|
8096 |
-
|
8097 |
-
|
8098 |
-
|
8099 |
-
|
8100 |
-
|
8101 |
-
|
8102 |
-
|
8103 |
-
|
8104 |
-
|
8105 |
-
|
8106 |
-
|
8107 |
-
|
8108 |
-
|
8109 |
-
|
8110 |
-
|
8111 |
-
|
8112 |
-
"
|
8113 |
-
msgstr ""
|
8114 |
-
|
8115 |
-
#: includes/
|
8116 |
-
|
8117 |
-
|
8118 |
-
|
8119 |
-
|
8120 |
-
|
8121 |
-
|
8122 |
-
|
8123 |
-
|
8124 |
-
|
8125 |
-
|
8126 |
-
|
8127 |
-
|
8128 |
-
"
|
8129 |
-
msgstr ""
|
8130 |
-
|
8131 |
-
#: includes/
|
8132 |
-
|
8133 |
-
|
8134 |
-
|
8135 |
-
#: includes/
|
8136 |
-
|
8137 |
-
|
8138 |
-
|
8139 |
-
#: includes/
|
8140 |
-
|
8141 |
-
|
8142 |
-
|
8143 |
-
|
8144 |
-
|
8145 |
-
|
8146 |
-
|
8147 |
-
#: includes/
|
8148 |
-
|
8149 |
-
|
8150 |
-
|
8151 |
-
|
8152 |
-
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:
|
8153 |
-
#: includes/settings/wcj-settings-
|
8154 |
-
#: includes/settings/wcj-settings-
|
8155 |
-
|
8156 |
-
|
8157 |
-
|
8158 |
-
#: includes/settings/wcj-settings-
|
8159 |
-
|
8160 |
-
|
8161 |
-
|
8162 |
-
#: includes/settings/wcj-settings-
|
8163 |
-
|
8164 |
-
|
8165 |
-
|
8166 |
-
|
8167 |
-
#: includes/settings/wcj-settings-
|
8168 |
-
|
8169 |
-
|
8170 |
-
|
8171 |
-
#: includes/settings/wcj-settings-
|
8172 |
-
#: includes/settings/wcj-settings-
|
8173 |
-
#: includes/settings/wcj-settings-
|
8174 |
-
#: includes/settings/wcj-settings-
|
8175 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:
|
8176 |
-
#: includes/settings/wcj-settings-
|
8177 |
-
|
8178 |
-
|
8179 |
-
|
8180 |
-
|
8181 |
-
|
8182 |
-
#: includes/settings/wcj-settings-
|
8183 |
-
msgid "
|
8184 |
-
msgstr ""
|
8185 |
-
|
8186 |
-
#: includes/settings/wcj-settings-add-to-cart.php:29
|
8187 |
-
|
8188 |
-
|
8189 |
-
|
8190 |
-
|
8191 |
-
#: includes/settings/wcj-settings-add-to-cart.php:
|
8192 |
-
|
8193 |
-
|
8194 |
-
|
8195 |
-
#: includes/settings/wcj-settings-
|
8196 |
-
#: includes/settings/wcj-settings-
|
8197 |
-
|
8198 |
-
|
8199 |
-
|
8200 |
-
|
8201 |
-
|
8202 |
-
|
8203 |
-
|
8204 |
-
|
8205 |
-
|
8206 |
-
|
8207 |
-
|
8208 |
-
|
8209 |
-
#: includes/settings/wcj-settings-
|
8210 |
-
|
8211 |
-
|
8212 |
-
|
8213 |
-
|
8214 |
-
|
8215 |
-
|
8216 |
-
|
8217 |
-
|
8218 |
-
|
8219 |
-
|
8220 |
-
|
8221 |
-
|
8222 |
-
|
8223 |
-
|
8224 |
-
|
8225 |
-
|
8226 |
-
|
8227 |
-
|
8228 |
-
|
8229 |
-
|
8230 |
-
|
8231 |
-
|
8232 |
-
|
8233 |
-
|
8234 |
-
|
8235 |
-
|
8236 |
-
|
8237 |
-
|
8238 |
-
|
8239 |
-
|
8240 |
-
#: includes/settings/wcj-settings-
|
8241 |
-
#: includes/settings/wcj-settings-
|
8242 |
-
#: includes/settings/wcj-settings-
|
8243 |
-
#: includes/settings/wcj-settings-
|
8244 |
-
#: includes/settings/wcj-settings-
|
8245 |
-
|
8246 |
-
|
8247 |
-
|
8248 |
-
|
8249 |
-
|
8250 |
-
|
8251 |
-
|
8252 |
-
|
8253 |
-
|
8254 |
-
|
8255 |
-
|
8256 |
-
|
8257 |
-
|
8258 |
-
|
8259 |
-
|
8260 |
-
|
8261 |
-
|
8262 |
-
|
8263 |
-
|
8264 |
-
|
8265 |
-
|
8266 |
-
|
8267 |
-
|
8268 |
-
|
8269 |
-
|
8270 |
-
|
8271 |
-
|
8272 |
-
|
8273 |
-
|
8274 |
-
|
8275 |
-
|
8276 |
-
|
8277 |
-
|
8278 |
-
|
8279 |
-
|
8280 |
-
|
8281 |
-
|
8282 |
-
|
8283 |
-
#: includes/settings/wcj-settings-
|
8284 |
-
#: includes/settings/wcj-settings-
|
8285 |
-
|
8286 |
-
|
8287 |
-
|
8288 |
-
#: includes/settings/wcj-settings-
|
8289 |
-
msgid "
|
8290 |
-
msgstr ""
|
8291 |
-
|
8292 |
-
#: includes/settings/wcj-settings-
|
8293 |
-
#: includes/settings/wcj-settings-
|
8294 |
-
#: includes/settings/wcj-settings-
|
8295 |
-
|
8296 |
-
|
8297 |
-
|
8298 |
-
#: includes/settings/wcj-settings-
|
8299 |
-
#: includes/settings/wcj-settings-
|
8300 |
-
#: includes/settings/wcj-settings-
|
8301 |
-
#: includes/settings/wcj-settings-
|
8302 |
-
|
8303 |
-
|
8304 |
-
|
8305 |
-
|
8306 |
-
|
8307 |
-
|
8308 |
-
|
8309 |
-
#: includes/settings/wcj-settings-
|
8310 |
-
msgid "
|
8311 |
-
msgstr ""
|
8312 |
-
|
8313 |
-
#: includes/settings/wcj-settings-
|
8314 |
-
#: includes/settings/wcj-settings-
|
8315 |
-
|
8316 |
-
|
8317 |
-
|
8318 |
-
|
8319 |
-
|
8320 |
-
|
8321 |
-
|
8322 |
-
|
8323 |
-
|
8324 |
-
|
8325 |
-
#: includes/settings/wcj-settings-
|
8326 |
-
|
8327 |
-
|
8328 |
-
|
8329 |
-
|
8330 |
-
|
8331 |
-
|
8332 |
-
|
8333 |
-
#: includes/settings/wcj-settings-
|
8334 |
-
|
8335 |
-
"
|
8336 |
-
msgstr ""
|
8337 |
-
|
8338 |
-
#: includes/settings/wcj-settings-
|
8339 |
-
|
8340 |
-
|
8341 |
-
|
8342 |
-
|
8343 |
-
|
8344 |
-
|
8345 |
-
|
8346 |
-
|
8347 |
-
|
8348 |
-
|
8349 |
-
|
8350 |
-
|
8351 |
-
|
8352 |
-
|
8353 |
-
|
8354 |
-
|
8355 |
-
|
8356 |
-
|
8357 |
-
|
8358 |
-
|
8359 |
-
|
8360 |
-
|
8361 |
-
|
8362 |
-
|
8363 |
-
|
8364 |
-
|
8365 |
-
|
8366 |
-
|
8367 |
-
|
8368 |
-
|
8369 |
-
|
8370 |
-
|
8371 |
-
|
8372 |
-
|
8373 |
-
|
8374 |
-
|
8375 |
-
|
8376 |
-
|
8377 |
-
|
8378 |
-
|
8379 |
-
|
8380 |
-
|
8381 |
-
|
8382 |
-
|
8383 |
-
|
8384 |
-
|
8385 |
-
#: includes/settings/wcj-settings-
|
8386 |
-
msgid "
|
8387 |
-
msgstr ""
|
8388 |
-
|
8389 |
-
#: includes/settings/wcj-settings-
|
8390 |
-
|
8391 |
-
|
8392 |
-
|
8393 |
-
|
8394 |
-
#: includes/settings/wcj-settings-
|
8395 |
-
#: includes/settings/wcj-settings-
|
8396 |
-
msgid "
|
8397 |
-
|
8398 |
-
|
8399 |
-
|
8400 |
-
|
8401 |
-
|
8402 |
-
|
8403 |
-
|
8404 |
-
|
8405 |
-
|
8406 |
-
|
8407 |
-
|
8408 |
-
|
8409 |
-
|
8410 |
-
|
8411 |
-
|
8412 |
-
|
8413 |
-
|
8414 |
-
|
8415 |
-
|
8416 |
-
|
8417 |
-
|
8418 |
-
|
8419 |
-
#: includes/settings/wcj-settings-
|
8420 |
-
|
8421 |
-
|
8422 |
-
|
8423 |
-
#: includes/settings/wcj-settings-
|
8424 |
-
#: includes/settings/wcj-settings-
|
8425 |
-
#: includes/settings/wcj-settings-
|
8426 |
-
#: includes/settings/wcj-settings-
|
8427 |
-
#: includes/settings/wcj-settings-
|
8428 |
-
#: includes/settings/wcj-settings-
|
8429 |
-
#: includes/settings/wcj-settings-
|
8430 |
-
#: includes/settings/wcj-settings-
|
8431 |
-
#: includes/settings/wcj-settings-
|
8432 |
-
#: includes/settings/wcj-settings-
|
8433 |
-
#: includes/settings/wcj-settings-
|
8434 |
-
|
8435 |
-
|
8436 |
-
|
8437 |
-
|
8438 |
-
|
8439 |
-
|
8440 |
-
|
8441 |
-
|
8442 |
-
|
8443 |
-
|
8444 |
-
|
8445 |
-
|
8446 |
-
|
8447 |
-
|
8448 |
-
#: includes/settings/wcj-settings-
|
8449 |
-
msgid "
|
8450 |
-
msgstr ""
|
8451 |
-
|
8452 |
-
#: includes/settings/wcj-settings-
|
8453 |
-
msgid "
|
8454 |
-
msgstr ""
|
8455 |
-
|
8456 |
-
#: includes/settings/wcj-settings-
|
8457 |
-
|
8458 |
-
|
8459 |
-
|
8460 |
-
|
8461 |
-
#: includes/settings/wcj-settings-
|
8462 |
-
|
8463 |
-
|
8464 |
-
|
8465 |
-
|
8466 |
-
|
8467 |
-
|
8468 |
-
|
8469 |
-
|
8470 |
-
|
8471 |
-
#: includes/settings/wcj-settings-
|
8472 |
-
#: includes/settings/wcj-settings-
|
8473 |
-
|
8474 |
-
|
8475 |
-
|
8476 |
-
|
8477 |
-
#: includes/settings/wcj-settings-
|
8478 |
-
|
8479 |
-
|
8480 |
-
|
8481 |
-
|
8482 |
-
|
8483 |
-
|
8484 |
-
|
8485 |
-
|
8486 |
-
|
8487 |
-
|
8488 |
-
|
8489 |
-
#: includes/settings/wcj-settings-
|
8490 |
-
|
8491 |
-
|
8492 |
-
|
8493 |
-
|
8494 |
-
#: includes/settings/wcj-settings-
|
8495 |
-
#: includes/settings/wcj-settings-
|
8496 |
-
|
8497 |
-
|
8498 |
-
|
8499 |
-
#: includes/settings/wcj-settings-
|
8500 |
-
#: includes/settings/wcj-settings-product-
|
8501 |
-
|
8502 |
-
|
8503 |
-
|
8504 |
-
#: includes/settings/wcj-settings-product-
|
8505 |
-
#: includes/settings/wcj-settings-
|
8506 |
-
#: includes/settings/wcj-settings-
|
8507 |
-
|
8508 |
-
|
8509 |
-
|
8510 |
-
#: includes/settings/wcj-settings-
|
8511 |
-
#: includes/settings/wcj-settings-
|
8512 |
-
|
8513 |
-
|
8514 |
-
|
8515 |
-
msgstr ""
|
8516 |
-
|
8517 |
-
#: includes/settings/wcj-settings-
|
8518 |
-
|
8519 |
-
|
8520 |
-
|
8521 |
-
|
8522 |
-
|
8523 |
-
|
8524 |
-
|
8525 |
-
|
8526 |
-
|
8527 |
-
|
8528 |
-
|
8529 |
-
|
8530 |
-
|
8531 |
-
|
8532 |
-
|
8533 |
-
|
8534 |
-
|
8535 |
-
|
8536 |
-
|
8537 |
-
msgstr ""
|
8538 |
-
|
8539 |
-
#: includes/settings/wcj-settings-
|
8540 |
-
|
8541 |
-
|
8542 |
-
|
8543 |
-
|
8544 |
-
|
8545 |
-
|
8546 |
-
|
8547 |
-
|
8548 |
-
#: includes/settings/wcj-settings-
|
8549 |
-
msgid "
|
8550 |
-
|
8551 |
-
|
8552 |
-
|
8553 |
-
|
8554 |
-
|
8555 |
-
|
8556 |
-
|
8557 |
-
|
8558 |
-
|
8559 |
-
|
8560 |
-
|
8561 |
-
|
8562 |
-
#: includes/settings/wcj-settings-
|
8563 |
-
#: includes/settings/wcj-settings-
|
8564 |
-
|
8565 |
-
|
8566 |
-
|
8567 |
-
#: includes/settings/wcj-settings-
|
8568 |
-
#: includes/settings/wcj-settings-
|
8569 |
-
msgid "
|
8570 |
-
msgstr ""
|
8571 |
-
|
8572 |
-
#: includes/settings/wcj-settings-
|
8573 |
-
|
8574 |
-
|
8575 |
-
|
8576 |
-
|
8577 |
-
|
8578 |
-
|
8579 |
-
|
8580 |
-
|
8581 |
-
|
8582 |
-
|
8583 |
-
|
8584 |
-
|
8585 |
-
|
8586 |
-
|
8587 |
-
|
8588 |
-
|
8589 |
-
|
8590 |
-
"
|
8591 |
-
msgstr ""
|
8592 |
-
|
8593 |
-
#: includes/settings/wcj-settings-
|
8594 |
-
|
8595 |
-
|
8596 |
-
|
8597 |
-
|
8598 |
-
|
8599 |
-
msgid "
|
8600 |
-
|
8601 |
-
|
8602 |
-
|
8603 |
-
|
8604 |
-
|
8605 |
-
"
|
8606 |
-
msgstr ""
|
8607 |
-
|
8608 |
-
#: includes/settings/wcj-settings-
|
8609 |
-
msgid "
|
8610 |
-
msgstr ""
|
8611 |
-
|
8612 |
-
#: includes/settings/wcj-settings-
|
8613 |
-
msgid "
|
8614 |
-
msgstr ""
|
8615 |
-
|
8616 |
-
#: includes/settings/wcj-settings-
|
8617 |
-
|
8618 |
-
|
8619 |
-
|
8620 |
-
|
8621 |
-
|
8622 |
-
|
8623 |
-
|
8624 |
-
|
8625 |
-
|
8626 |
-
|
8627 |
-
|
8628 |
-
|
8629 |
-
|
8630 |
-
|
8631 |
-
|
8632 |
-
|
8633 |
-
|
8634 |
-
|
8635 |
-
|
8636 |
-
#: includes/settings/wcj-settings-
|
8637 |
-
msgid "
|
8638 |
-
msgstr ""
|
8639 |
-
|
8640 |
-
#: includes/settings/wcj-settings-
|
8641 |
-
|
8642 |
-
|
8643 |
-
|
8644 |
-
|
8645 |
-
|
8646 |
-
|
8647 |
-
|
8648 |
-
|
8649 |
-
|
8650 |
-
|
8651 |
-
|
8652 |
-
|
8653 |
-
|
8654 |
-
|
8655 |
-
|
8656 |
-
|
8657 |
-
|
8658 |
-
|
8659 |
-
|
8660 |
-
|
8661 |
-
|
8662 |
-
|
8663 |
-
"
|
8664 |
-
|
8665 |
-
|
8666 |
-
|
8667 |
-
#: includes/settings/wcj-settings-
|
8668 |
-
#: includes/settings/wcj-settings-
|
8669 |
-
|
8670 |
-
|
8671 |
-
|
8672 |
-
|
8673 |
-
#: includes/settings/wcj-settings-
|
8674 |
-
|
8675 |
-
|
8676 |
-
|
8677 |
-
#: includes/settings/wcj-settings-
|
8678 |
-
msgid "
|
8679 |
-
msgstr ""
|
8680 |
-
|
8681 |
-
#: includes/settings/wcj-settings-
|
8682 |
-
|
8683 |
-
|
8684 |
-
|
8685 |
-
#: includes/settings/wcj-settings-
|
8686 |
-
|
8687 |
-
|
8688 |
-
|
8689 |
-
|
8690 |
-
|
8691 |
-
|
8692 |
-
|
8693 |
-
|
8694 |
-
|
8695 |
-
|
8696 |
-
|
8697 |
-
|
8698 |
-
|
8699 |
-
|
8700 |
-
|
8701 |
-
|
8702 |
-
|
8703 |
-
|
8704 |
-
#: includes/settings/wcj-settings-
|
8705 |
-
#: includes/settings/wcj-settings-
|
8706 |
-
|
8707 |
-
|
8708 |
-
|
8709 |
-
|
8710 |
-
#: includes/settings/wcj-settings-
|
8711 |
-
msgid "
|
8712 |
-
|
8713 |
-
|
8714 |
-
|
8715 |
-
|
8716 |
-
|
8717 |
-
|
8718 |
-
#: includes/settings/wcj-settings-
|
8719 |
-
|
8720 |
-
|
8721 |
-
|
8722 |
-
|
8723 |
-
|
8724 |
-
|
8725 |
-
|
8726 |
-
|
8727 |
-
|
8728 |
-
|
8729 |
-
|
8730 |
-
#: includes/settings/wcj-settings-
|
8731 |
-
|
8732 |
-
|
8733 |
-
|
8734 |
-
|
8735 |
-
|
8736 |
-
|
8737 |
-
|
8738 |
-
#: includes/settings/wcj-settings-
|
8739 |
-
|
8740 |
-
|
8741 |
-
|
8742 |
-
|
8743 |
-
|
8744 |
-
|
8745 |
-
|
8746 |
-
|
8747 |
-
|
8748 |
-
#: includes/settings/wcj-settings-cart-
|
8749 |
-
|
8750 |
-
|
8751 |
-
|
8752 |
-
#: includes/settings/wcj-settings-
|
8753 |
-
|
8754 |
-
|
8755 |
-
|
8756 |
-
#: includes/settings/wcj-settings-
|
8757 |
-
|
8758 |
-
|
8759 |
-
|
8760 |
-
#: includes/settings/wcj-settings-
|
8761 |
-
|
8762 |
-
|
8763 |
-
|
8764 |
-
#: includes/settings/wcj-settings-
|
8765 |
-
|
8766 |
-
|
8767 |
-
|
8768 |
-
#: includes/settings/wcj-settings-
|
8769 |
-
|
8770 |
-
|
8771 |
-
|
8772 |
-
#: includes/settings/wcj-settings-
|
8773 |
-
|
8774 |
-
|
8775 |
-
|
8776 |
-
|
8777 |
-
|
8778 |
-
#: includes/settings/wcj-settings-
|
8779 |
-
|
8780 |
-
"
|
8781 |
-
|
8782 |
-
|
8783 |
-
|
8784 |
-
#: includes/settings/wcj-settings-cart.php:
|
8785 |
-
msgid ""
|
8786 |
-
|
8787 |
-
|
8788 |
-
|
8789 |
-
|
8790 |
-
#: includes/settings/wcj-settings-cart.php:
|
8791 |
-
|
8792 |
-
|
8793 |
-
|
8794 |
-
#: includes/settings/wcj-settings-
|
8795 |
-
|
8796 |
-
|
8797 |
-
|
8798 |
-
|
8799 |
-
|
8800 |
-
|
8801 |
-
#: includes/settings/wcj-settings-
|
8802 |
-
|
8803 |
-
|
8804 |
-
|
8805 |
-
|
8806 |
-
#: includes/settings/wcj-settings-
|
8807 |
-
|
8808 |
-
|
8809 |
-
|
8810 |
-
|
8811 |
-
|
8812 |
-
|
8813 |
-
|
8814 |
-
|
8815 |
-
msgstr ""
|
8816 |
-
|
8817 |
-
#: includes/settings/wcj-settings-cart.php:
|
8818 |
-
|
8819 |
-
|
8820 |
-
|
8821 |
-
|
8822 |
-
|
8823 |
-
"
|
8824 |
-
msgstr ""
|
8825 |
-
|
8826 |
-
#: includes/settings/wcj-settings-
|
8827 |
-
#: includes/settings/wcj-settings-
|
8828 |
-
|
8829 |
-
|
8830 |
-
|
8831 |
-
|
8832 |
-
|
8833 |
-
#: includes/settings/wcj-settings-
|
8834 |
-
#: includes/settings/wcj-settings-
|
8835 |
-
#: includes/settings/wcj-settings-
|
8836 |
-
#: includes/settings/wcj-settings-
|
8837 |
-
#: includes/settings/wcj-settings-
|
8838 |
-
#: includes/settings/wcj-settings-
|
8839 |
-
#: includes/settings/wcj-settings-
|
8840 |
-
#: includes/settings/wcj-settings-product-
|
8841 |
-
#: includes/settings/wcj-settings-
|
8842 |
-
#: includes/settings/wcj-settings-
|
8843 |
-
#: includes/settings/wcj-settings-
|
8844 |
-
|
8845 |
-
|
8846 |
-
|
8847 |
-
|
8848 |
-
|
8849 |
-
#: includes/settings/wcj-settings-
|
8850 |
-
|
8851 |
-
|
8852 |
-
|
8853 |
-
|
8854 |
-
#: includes/settings/wcj-settings-
|
8855 |
-
|
8856 |
-
|
8857 |
-
|
8858 |
-
|
8859 |
-
|
8860 |
-
|
8861 |
-
|
8862 |
-
|
8863 |
-
|
8864 |
-
#: includes/settings/wcj-settings-
|
8865 |
-
msgid "
|
8866 |
-
|
8867 |
-
|
8868 |
-
|
8869 |
-
|
8870 |
-
|
8871 |
-
|
8872 |
-
|
8873 |
-
|
8874 |
-
|
8875 |
-
|
8876 |
-
#: includes/settings/wcj-settings-
|
8877 |
-
|
8878 |
-
|
8879 |
-
|
8880 |
-
|
8881 |
-
|
8882 |
-
|
8883 |
-
|
8884 |
-
|
8885 |
-
|
8886 |
-
|
8887 |
-
|
8888 |
-
#: includes/settings/wcj-settings-
|
8889 |
-
#: includes/settings/wcj-settings-
|
8890 |
-
|
8891 |
-
|
8892 |
-
|
8893 |
-
|
8894 |
-
|
8895 |
-
|
8896 |
-
|
8897 |
-
|
8898 |
-
|
8899 |
-
|
8900 |
-
|
8901 |
-
|
8902 |
-
|
8903 |
-
|
8904 |
-
|
8905 |
-
|
8906 |
-
|
8907 |
-
#: includes/settings/wcj-settings-
|
8908 |
-
#: includes/settings/wcj-settings-
|
8909 |
-
#: includes/settings/wcj-settings-
|
8910 |
-
msgid "
|
8911 |
-
msgstr ""
|
8912 |
-
|
8913 |
-
#: includes/settings/wcj-settings-
|
8914 |
-
msgid "
|
8915 |
-
|
8916 |
-
|
8917 |
-
|
8918 |
-
|
8919 |
-
|
8920 |
-
|
8921 |
-
|
8922 |
-
|
8923 |
-
|
8924 |
-
|
8925 |
-
|
8926 |
-
|
8927 |
-
|
8928 |
-
|
8929 |
-
|
8930 |
-
|
8931 |
-
|
8932 |
-
|
8933 |
-
|
8934 |
-
|
8935 |
-
|
8936 |
-
|
8937 |
-
#: includes/settings/wcj-settings-
|
8938 |
-
|
8939 |
-
|
8940 |
-
|
8941 |
-
#: includes/settings/wcj-settings-
|
8942 |
-
|
8943 |
-
|
8944 |
-
|
8945 |
-
|
8946 |
-
|
8947 |
-
|
8948 |
-
|
8949 |
-
|
8950 |
-
|
8951 |
-
|
8952 |
-
|
8953 |
-
|
8954 |
-
|
8955 |
-
|
8956 |
-
|
8957 |
-
|
8958 |
-
|
8959 |
-
|
8960 |
-
|
8961 |
-
"
|
8962 |
-
|
8963 |
-
|
8964 |
-
|
8965 |
-
|
8966 |
-
|
8967 |
-
|
8968 |
-
|
8969 |
-
|
8970 |
-
|
8971 |
-
|
8972 |
-
|
8973 |
-
|
8974 |
-
|
8975 |
-
|
8976 |
-
|
8977 |
-
|
8978 |
-
|
8979 |
-
|
8980 |
-
|
8981 |
-
|
8982 |
-
#: includes/settings/wcj-settings-
|
8983 |
-
#: includes/settings/wcj-settings-
|
8984 |
-
|
8985 |
-
|
8986 |
-
|
8987 |
-
|
8988 |
-
|
8989 |
-
|
8990 |
-
|
8991 |
-
|
8992 |
-
#: includes/settings/wcj-settings-
|
8993 |
-
|
8994 |
-
|
8995 |
-
|
8996 |
-
|
8997 |
-
|
8998 |
-
#: includes/settings/wcj-settings-
|
8999 |
-
msgid "
|
9000 |
-
msgstr ""
|
9001 |
-
|
9002 |
-
#: includes/settings/wcj-settings-
|
9003 |
-
msgid "
|
9004 |
-
msgstr ""
|
9005 |
-
|
9006 |
-
#: includes/settings/wcj-settings-
|
9007 |
-
msgid "
|
9008 |
-
msgstr ""
|
9009 |
-
|
9010 |
-
#: includes/settings/wcj-settings-
|
9011 |
-
|
9012 |
-
|
9013 |
-
|
9014 |
-
#: includes/settings/wcj-settings-
|
9015 |
-
|
9016 |
-
|
9017 |
-
|
9018 |
-
|
9019 |
-
|
9020 |
-
|
9021 |
-
|
9022 |
-
|
9023 |
-
|
9024 |
-
|
9025 |
-
|
9026 |
-
|
9027 |
-
|
9028 |
-
|
9029 |
-
|
9030 |
-
|
9031 |
-
|
9032 |
-
|
9033 |
-
|
9034 |
-
|
9035 |
-
|
9036 |
-
|
9037 |
-
|
9038 |
-
|
9039 |
-
|
9040 |
-
|
9041 |
-
|
9042 |
-
|
9043 |
-
|
9044 |
-
|
9045 |
-
|
9046 |
-
|
9047 |
-
|
9048 |
-
|
9049 |
-
|
9050 |
-
|
9051 |
-
|
9052 |
-
|
9053 |
-
|
9054 |
-
|
9055 |
-
|
9056 |
-
|
9057 |
-
#: includes/
|
9058 |
-
msgid "
|
9059 |
-
msgstr ""
|
9060 |
-
|
9061 |
-
#: includes/settings/wcj-settings-
|
9062 |
-
#: includes/settings/wcj-settings-
|
9063 |
-
msgid "
|
9064 |
-
msgstr ""
|
9065 |
-
|
9066 |
-
#: includes/settings/wcj-settings-
|
9067 |
-
|
9068 |
-
|
9069 |
-
|
9070 |
-
|
9071 |
-
|
9072 |
-
|
9073 |
-
|
9074 |
-
|
9075 |
-
|
9076 |
-
|
9077 |
-
|
9078 |
-
#: includes/
|
9079 |
-
|
9080 |
-
|
9081 |
-
|
9082 |
-
|
9083 |
-
|
9084 |
-
|
9085 |
-
|
9086 |
-
|
9087 |
-
|
9088 |
-
|
9089 |
-
|
9090 |
-
|
9091 |
-
#: includes/settings/wcj-settings-
|
9092 |
-
|
9093 |
-
|
9094 |
-
|
9095 |
-
|
9096 |
-
|
9097 |
-
|
9098 |
-
|
9099 |
-
|
9100 |
-
|
9101 |
-
|
9102 |
-
|
9103 |
-
|
9104 |
-
|
9105 |
-
|
9106 |
-
|
9107 |
-
|
9108 |
-
|
9109 |
-
|
9110 |
-
|
9111 |
-
#: includes/settings/wcj-settings-
|
9112 |
-
msgid "
|
9113 |
-
msgstr ""
|
9114 |
-
|
9115 |
-
#: includes/settings/wcj-settings-
|
9116 |
-
|
9117 |
-
|
9118 |
-
|
9119 |
-
|
9120 |
-
|
9121 |
-
|
9122 |
-
|
9123 |
-
#: includes/settings/wcj-settings-checkout-
|
9124 |
-
|
9125 |
-
|
9126 |
-
|
9127 |
-
#: includes/settings/wcj-settings-
|
9128 |
-
|
9129 |
-
|
9130 |
-
|
9131 |
-
|
9132 |
-
|
9133 |
-
|
9134 |
-
|
9135 |
-
|
9136 |
-
|
9137 |
-
|
9138 |
-
|
9139 |
-
|
9140 |
-
|
9141 |
-
|
9142 |
-
|
9143 |
-
|
9144 |
-
|
9145 |
-
|
9146 |
-
|
9147 |
-
|
9148 |
-
|
9149 |
-
|
9150 |
-
|
9151 |
-
|
9152 |
-
|
9153 |
-
|
9154 |
-
|
9155 |
-
|
9156 |
-
|
9157 |
-
|
9158 |
-
|
9159 |
-
|
9160 |
-
"
|
9161 |
-
|
9162 |
-
|
9163 |
-
|
9164 |
-
|
9165 |
-
|
9166 |
-
|
9167 |
-
|
9168 |
-
#: includes/settings/wcj-settings-
|
9169 |
-
|
9170 |
-
|
9171 |
-
|
9172 |
-
|
9173 |
-
|
9174 |
-
|
9175 |
-
"
|
9176 |
-
msgstr ""
|
9177 |
-
|
9178 |
-
#: includes/settings/wcj-settings-
|
9179 |
-
msgid "
|
9180 |
-
msgstr ""
|
9181 |
-
|
9182 |
-
#: includes/settings/wcj-settings-
|
9183 |
-
|
9184 |
-
|
9185 |
-
|
9186 |
-
|
9187 |
-
|
9188 |
-
|
9189 |
-
|
9190 |
-
|
9191 |
-
|
9192 |
-
|
9193 |
-
|
9194 |
-
|
9195 |
-
|
9196 |
-
|
9197 |
-
|
9198 |
-
|
9199 |
-
|
9200 |
-
|
9201 |
-
|
9202 |
-
|
9203 |
-
|
9204 |
-
#: includes/settings/wcj-settings-
|
9205 |
-
msgid "
|
9206 |
-
msgstr ""
|
9207 |
-
|
9208 |
-
#: includes/settings/wcj-settings-
|
9209 |
-
msgid "
|
9210 |
-
msgstr ""
|
9211 |
-
|
9212 |
-
#: includes/settings/wcj-settings-
|
9213 |
-
|
9214 |
-
|
9215 |
-
|
9216 |
-
|
9217 |
-
|
9218 |
-
|
9219 |
-
|
9220 |
-
|
9221 |
-
|
9222 |
-
|
9223 |
-
|
9224 |
-
|
9225 |
-
|
9226 |
-
#: includes/
|
9227 |
-
msgid ""
|
9228 |
-
|
9229 |
-
|
9230 |
-
|
9231 |
-
|
9232 |
-
#: includes/settings/wcj-settings-
|
9233 |
-
msgid "
|
9234 |
-
msgstr ""
|
9235 |
-
|
9236 |
-
#: includes/settings/wcj-settings-
|
9237 |
-
|
9238 |
-
"
|
9239 |
-
"
|
9240 |
-
|
9241 |
-
|
9242 |
-
#: includes/settings/wcj-settings-
|
9243 |
-
|
9244 |
-
|
9245 |
-
|
9246 |
-
|
9247 |
-
|
9248 |
-
#: includes/settings/wcj-settings-
|
9249 |
-
|
9250 |
-
|
9251 |
-
|
9252 |
-
|
9253 |
-
|
9254 |
-
|
9255 |
-
|
9256 |
-
|
9257 |
-
|
9258 |
-
|
9259 |
-
|
9260 |
-
|
9261 |
-
|
9262 |
-
|
9263 |
-
|
9264 |
-
|
9265 |
-
|
9266 |
-
|
9267 |
-
|
9268 |
-
|
9269 |
-
|
9270 |
-
|
9271 |
-
|
9272 |
-
|
9273 |
-
|
9274 |
-
|
9275 |
-
|
9276 |
-
|
9277 |
-
|
9278 |
-
|
9279 |
-
|
9280 |
-
|
9281 |
-
#: includes/settings/wcj-settings-
|
9282 |
-
msgid "
|
9283 |
-
msgstr ""
|
9284 |
-
|
9285 |
-
#: includes/settings/wcj-settings-
|
9286 |
-
msgid "
|
9287 |
-
msgstr ""
|
9288 |
-
|
9289 |
-
#: includes/settings/wcj-settings-
|
9290 |
-
msgid "
|
9291 |
-
msgstr ""
|
9292 |
-
|
9293 |
-
#: includes/settings/wcj-settings-
|
9294 |
-
msgid "
|
9295 |
-
msgstr ""
|
9296 |
-
|
9297 |
-
#: includes/settings/wcj-settings-
|
9298 |
-
msgid "
|
9299 |
-
msgstr ""
|
9300 |
-
|
9301 |
-
#: includes/settings/wcj-settings-
|
9302 |
-
|
9303 |
-
|
9304 |
-
|
9305 |
-
|
9306 |
-
|
9307 |
-
msgstr ""
|
9308 |
-
|
9309 |
-
#: includes/settings/wcj-settings-
|
9310 |
-
|
9311 |
-
|
9312 |
-
|
9313 |
-
|
9314 |
-
|
9315 |
-
|
9316 |
-
|
9317 |
-
|
9318 |
-
|
9319 |
-
|
9320 |
-
|
9321 |
-
|
9322 |
-
|
9323 |
-
|
9324 |
-
|
9325 |
-
|
9326 |
-
|
9327 |
-
|
9328 |
-
|
9329 |
-
|
9330 |
-
|
9331 |
-
|
9332 |
-
|
9333 |
-
|
9334 |
-
|
9335 |
-
|
9336 |
-
|
9337 |
-
|
9338 |
-
#: includes/settings/wcj-settings-
|
9339 |
-
msgid "
|
9340 |
-
msgstr ""
|
9341 |
-
|
9342 |
-
#: includes/settings/wcj-settings-
|
9343 |
-
msgid "
|
9344 |
-
msgstr ""
|
9345 |
-
|
9346 |
-
#: includes/settings/wcj-settings-
|
9347 |
-
msgid "
|
9348 |
-
msgstr ""
|
9349 |
-
|
9350 |
-
#: includes/settings/wcj-settings-
|
9351 |
-
|
9352 |
-
|
9353 |
-
|
9354 |
-
|
9355 |
-
|
9356 |
-
|
9357 |
-
|
9358 |
-
|
9359 |
-
|
9360 |
-
|
9361 |
-
msgstr ""
|
9362 |
-
|
9363 |
-
#: includes/settings/wcj-settings-
|
9364 |
-
msgid "
|
9365 |
-
msgstr ""
|
9366 |
-
|
9367 |
-
#: includes/settings/wcj-settings-
|
9368 |
-
msgid "
|
9369 |
-
msgstr ""
|
9370 |
-
|
9371 |
-
#: includes/settings/wcj-settings-
|
9372 |
-
|
9373 |
-
|
9374 |
-
|
9375 |
-
#: includes/settings/wcj-settings-
|
9376 |
-
msgid "
|
9377 |
-
msgstr ""
|
9378 |
-
|
9379 |
-
#: includes/settings/wcj-settings-
|
9380 |
-
|
9381 |
-
|
9382 |
-
|
9383 |
-
|
9384 |
-
|
9385 |
-
|
9386 |
-
|
9387 |
-
|
9388 |
-
|
9389 |
-
|
9390 |
-
|
9391 |
-
|
9392 |
-
|
9393 |
-
|
9394 |
-
|
9395 |
-
|
9396 |
-
|
9397 |
-
|
9398 |
-
|
9399 |
-
|
9400 |
-
|
9401 |
-
|
9402 |
-
|
9403 |
-
|
9404 |
-
|
9405 |
-
|
9406 |
-
|
9407 |
-
|
9408 |
-
|
9409 |
-
|
9410 |
-
|
9411 |
-
|
9412 |
-
|
9413 |
-
|
9414 |
-
|
9415 |
-
|
9416 |
-
|
9417 |
-
|
9418 |
-
|
9419 |
-
|
9420 |
-
|
9421 |
-
|
9422 |
-
|
9423 |
-
|
9424 |
-
|
9425 |
-
|
9426 |
-
|
9427 |
-
|
9428 |
-
|
9429 |
-
|
9430 |
-
|
9431 |
-
|
9432 |
-
|
9433 |
-
|
9434 |
-
|
9435 |
-
|
9436 |
-
|
9437 |
-
|
9438 |
-
|
9439 |
-
|
9440 |
-
|
9441 |
-
|
9442 |
-
|
9443 |
-
|
9444 |
-
|
9445 |
-
|
9446 |
-
|
9447 |
-
|
9448 |
-
|
9449 |
-
|
9450 |
-
|
9451 |
-
|
9452 |
-
|
9453 |
-
|
9454 |
-
|
9455 |
-
|
9456 |
-
|
9457 |
-
|
9458 |
-
|
9459 |
-
|
9460 |
-
|
9461 |
-
|
9462 |
-
#: includes/settings/wcj-settings-
|
9463 |
-
#: includes/settings/wcj-settings-
|
9464 |
-
msgid "
|
9465 |
-
msgstr ""
|
9466 |
-
|
9467 |
-
#: includes/settings/wcj-settings-
|
9468 |
-
#: includes/settings/wcj-settings-
|
9469 |
-
#: includes/settings/wcj-settings-
|
9470 |
-
#: includes/settings/wcj-settings-my-account.php:
|
9471 |
-
|
9472 |
-
|
9473 |
-
|
9474 |
-
#: includes/settings/
|
9475 |
-
|
9476 |
-
|
9477 |
-
|
9478 |
-
#: includes/settings/wcj-settings-
|
9479 |
-
msgid "
|
9480 |
-
msgstr ""
|
9481 |
-
|
9482 |
-
#: includes/settings/wcj-settings-
|
9483 |
-
|
9484 |
-
|
9485 |
-
|
9486 |
-
|
9487 |
-
|
9488 |
-
|
9489 |
-
|
9490 |
-
|
9491 |
-
|
9492 |
-
|
9493 |
-
|
9494 |
-
|
9495 |
-
|
9496 |
-
|
9497 |
-
#: includes/settings/wcj-settings-
|
9498 |
-
|
9499 |
-
|
9500 |
-
|
9501 |
-
|
9502 |
-
#: includes/settings/wcj-settings-
|
9503 |
-
#: includes/settings/wcj-settings-
|
9504 |
-
|
9505 |
-
|
9506 |
-
|
9507 |
-
#: includes/settings/wcj-settings-
|
9508 |
-
#: includes/settings/wcj-settings-
|
9509 |
-
|
9510 |
-
|
9511 |
-
|
9512 |
-
#: includes/settings/wcj-settings-
|
9513 |
-
|
9514 |
-
|
9515 |
-
|
9516 |
-
|
9517 |
-
|
9518 |
-
|
9519 |
-
|
9520 |
-
|
9521 |
-
|
9522 |
-
|
9523 |
-
|
9524 |
-
|
9525 |
-
|
9526 |
-
|
9527 |
-
|
9528 |
-
#: includes/settings/wcj-settings-checkout-
|
9529 |
-
|
9530 |
-
|
9531 |
-
|
9532 |
-
|
9533 |
-
#: includes/settings/wcj-settings-checkout-
|
9534 |
-
|
9535 |
-
|
9536 |
-
|
9537 |
-
#: includes/settings/wcj-settings-
|
9538 |
-
|
9539 |
-
|
9540 |
-
|
9541 |
-
|
9542 |
-
|
9543 |
-
|
9544 |
-
|
9545 |
-
#: includes/settings/wcj-settings-
|
9546 |
-
|
9547 |
-
|
9548 |
-
|
9549 |
-
|
9550 |
-
|
9551 |
-
|
9552 |
-
|
9553 |
-
|
9554 |
-
|
9555 |
-
|
9556 |
-
#: includes/
|
9557 |
-
msgid "
|
9558 |
-
msgstr ""
|
9559 |
-
|
9560 |
-
#: includes/settings/wcj-settings-checkout-
|
9561 |
-
msgid "
|
9562 |
-
msgstr ""
|
9563 |
-
|
9564 |
-
#: includes/settings/wcj-settings-checkout-
|
9565 |
-
msgid "
|
9566 |
-
msgstr ""
|
9567 |
-
|
9568 |
-
#: includes/settings/wcj-settings-checkout-
|
9569 |
-
|
9570 |
-
|
9571 |
-
|
9572 |
-
|
9573 |
-
|
9574 |
-
|
9575 |
-
|
9576 |
-
|
9577 |
-
|
9578 |
-
|
9579 |
-
|
9580 |
-
|
9581 |
-
|
9582 |
-
|
9583 |
-
|
9584 |
-
|
9585 |
-
|
9586 |
-
|
9587 |
-
|
9588 |
-
|
9589 |
-
|
9590 |
-
|
9591 |
-
|
9592 |
-
|
9593 |
-
|
9594 |
-
|
9595 |
-
|
9596 |
-
|
9597 |
-
|
9598 |
-
#: includes/settings/wcj-settings-
|
9599 |
-
msgid "
|
9600 |
-
msgstr ""
|
9601 |
-
|
9602 |
-
#: includes/settings/wcj-settings-checkout-
|
9603 |
-
msgid "
|
9604 |
-
msgstr ""
|
9605 |
-
|
9606 |
-
#: includes/settings/wcj-settings-checkout-
|
9607 |
-
msgid "
|
9608 |
-
msgstr ""
|
9609 |
-
|
9610 |
-
#: includes/settings/wcj-settings-checkout-
|
9611 |
-
|
9612 |
-
|
9613 |
-
|
9614 |
-
|
9615 |
-
|
9616 |
-
|
9617 |
-
|
9618 |
-
|
9619 |
-
|
9620 |
-
|
9621 |
-
|
9622 |
-
|
9623 |
-
|
9624 |
-
|
9625 |
-
|
9626 |
-
|
9627 |
-
|
9628 |
-
|
9629 |
-
|
9630 |
-
|
9631 |
-
|
9632 |
-
|
9633 |
-
|
9634 |
-
|
9635 |
-
|
9636 |
-
|
9637 |
-
|
9638 |
-
|
9639 |
-
#: includes/settings/wcj-settings-checkout-
|
9640 |
-
msgid "
|
9641 |
-
msgstr ""
|
9642 |
-
|
9643 |
-
#: includes/settings/wcj-settings-checkout-
|
9644 |
-
|
9645 |
-
|
9646 |
-
"
|
9647 |
-
|
9648 |
-
|
9649 |
-
#: includes/settings/wcj-settings-checkout-
|
9650 |
-
msgid "
|
9651 |
-
msgstr ""
|
9652 |
-
|
9653 |
-
#: includes/settings/wcj-settings-checkout-
|
9654 |
-
msgid "
|
9655 |
-
|
9656 |
-
|
9657 |
-
|
9658 |
-
|
9659 |
-
|
9660 |
-
|
9661 |
-
|
9662 |
-
|
9663 |
-
#: includes/settings/wcj-settings-checkout-
|
9664 |
-
|
9665 |
-
|
9666 |
-
|
9667 |
-
|
9668 |
-
|
9669 |
-
|
9670 |
-
|
9671 |
-
|
9672 |
-
|
9673 |
-
|
9674 |
-
|
9675 |
-
|
9676 |
-
|
9677 |
-
msgid "
|
9678 |
-
msgstr ""
|
9679 |
-
|
9680 |
-
#: includes/settings/wcj-settings-checkout-
|
9681 |
-
msgid "
|
9682 |
-
msgstr ""
|
9683 |
-
|
9684 |
-
#: includes/settings/wcj-settings-checkout-
|
9685 |
-
msgid "
|
9686 |
-
msgstr ""
|
9687 |
-
|
9688 |
-
#: includes/settings/wcj-settings-checkout-
|
9689 |
-
|
9690 |
-
"
|
9691 |
-
|
9692 |
-
|
9693 |
-
|
9694 |
-
|
9695 |
-
|
9696 |
-
|
9697 |
-
|
9698 |
-
|
9699 |
-
|
9700 |
-
|
9701 |
-
|
9702 |
-
|
9703 |
-
|
9704 |
-
|
9705 |
-
|
9706 |
-
|
9707 |
-
|
9708 |
-
|
9709 |
-
|
9710 |
-
|
9711 |
-
|
9712 |
-
|
9713 |
-
|
9714 |
-
|
9715 |
-
|
9716 |
-
|
9717 |
-
|
9718 |
-
#: includes/
|
9719 |
-
|
9720 |
-
|
9721 |
-
|
9722 |
-
|
9723 |
-
#: includes/settings/wcj-settings-
|
9724 |
-
msgid "
|
9725 |
-
msgstr ""
|
9726 |
-
|
9727 |
-
#: includes/settings/wcj-settings-checkout-
|
9728 |
-
|
9729 |
-
|
9730 |
-
|
9731 |
-
|
9732 |
-
|
9733 |
-
#: includes/settings/wcj-settings-
|
9734 |
-
msgid "
|
9735 |
-
msgstr ""
|
9736 |
-
|
9737 |
-
#: includes/settings/wcj-settings-checkout-
|
9738 |
-
|
9739 |
-
|
9740 |
-
|
9741 |
-
|
9742 |
-
|
9743 |
-
|
9744 |
-
|
9745 |
-
|
9746 |
-
|
9747 |
-
|
9748 |
-
|
9749 |
-
"
|
9750 |
-
|
9751 |
-
|
9752 |
-
|
9753 |
-
|
9754 |
-
|
9755 |
-
|
9756 |
-
|
9757 |
-
|
9758 |
-
|
9759 |
-
|
9760 |
-
|
9761 |
-
|
9762 |
-
|
9763 |
-
|
9764 |
-
|
9765 |
-
|
9766 |
-
|
9767 |
-
|
9768 |
-
#: includes/settings/wcj-settings-
|
9769 |
-
msgid "
|
9770 |
-
msgstr ""
|
9771 |
-
|
9772 |
-
#: includes/settings/wcj-settings-checkout-
|
9773 |
-
|
9774 |
-
|
9775 |
-
|
9776 |
-
|
9777 |
-
|
9778 |
-
|
9779 |
-
|
9780 |
-
#: includes/settings/wcj-settings-
|
9781 |
-
msgid "
|
9782 |
-
msgstr ""
|
9783 |
-
|
9784 |
-
#: includes/settings/wcj-settings-checkout-
|
9785 |
-
|
9786 |
-
|
9787 |
-
|
9788 |
-
|
9789 |
-
|
9790 |
-
|
9791 |
-
|
9792 |
-
|
9793 |
-
|
9794 |
-
|
9795 |
-
|
9796 |
-
|
9797 |
-
|
9798 |
-
|
9799 |
-
|
9800 |
-
|
9801 |
-
|
9802 |
-
|
9803 |
-
|
9804 |
-
|
9805 |
-
|
9806 |
-
|
9807 |
-
|
9808 |
-
|
9809 |
-
|
9810 |
-
|
9811 |
-
|
9812 |
-
|
9813 |
-
|
9814 |
-
|
9815 |
-
|
9816 |
-
#: includes/settings/wcj-settings-checkout-
|
9817 |
-
|
9818 |
-
|
9819 |
-
|
9820 |
-
|
9821 |
-
|
9822 |
-
|
9823 |
-
|
9824 |
-
|
9825 |
-
|
9826 |
-
|
9827 |
-
|
9828 |
-
|
9829 |
-
#: includes/settings/wcj-settings-
|
9830 |
-
msgid "
|
9831 |
-
msgstr ""
|
9832 |
-
|
9833 |
-
#: includes/settings/wcj-settings-checkout-
|
9834 |
-
msgid "
|
9835 |
-
|
9836 |
-
|
9837 |
-
|
9838 |
-
|
9839 |
-
#: includes/settings/wcj-settings-checkout-
|
9840 |
-
|
9841 |
-
|
9842 |
-
|
9843 |
-
|
9844 |
-
|
9845 |
-
|
9846 |
-
|
9847 |
-
|
9848 |
-
|
9849 |
-
|
9850 |
-
|
9851 |
-
|
9852 |
-
|
9853 |
-
|
9854 |
-
|
9855 |
-
|
9856 |
-
|
9857 |
-
|
9858 |
-
|
9859 |
-
|
9860 |
-
|
9861 |
-
|
9862 |
-
|
9863 |
-
|
9864 |
-
#: includes/settings/wcj-settings-
|
9865 |
-
|
9866 |
-
msgid "
|
9867 |
-
msgstr ""
|
9868 |
-
|
9869 |
-
#: includes/settings/wcj-settings-checkout-
|
9870 |
-
msgid "
|
9871 |
-
msgstr ""
|
9872 |
-
|
9873 |
-
#: includes/settings/wcj-settings-checkout-
|
9874 |
-
#: includes/settings/wcj-settings-
|
9875 |
-
#: includes/settings/wcj-settings-
|
9876 |
-
|
9877 |
-
|
9878 |
-
|
9879 |
-
#: includes/settings/wcj-settings-
|
9880 |
-
|
9881 |
-
|
9882 |
-
|
9883 |
-
|
9884 |
-
|
9885 |
-
|
9886 |
-
|
9887 |
-
|
9888 |
-
|
9889 |
-
|
9890 |
-
|
9891 |
-
|
9892 |
-
|
9893 |
-
|
9894 |
-
|
9895 |
-
|
9896 |
-
|
9897 |
-
|
9898 |
-
|
9899 |
-
|
9900 |
-
|
9901 |
-
msgstr ""
|
9902 |
-
|
9903 |
-
#: includes/settings/wcj-settings-checkout-
|
9904 |
-
msgid "
|
9905 |
-
msgstr ""
|
9906 |
-
|
9907 |
-
#: includes/settings/wcj-settings-checkout-
|
9908 |
-
|
9909 |
-
|
9910 |
-
|
9911 |
-
|
9912 |
-
|
9913 |
-
|
9914 |
-
|
9915 |
-
|
9916 |
-
|
9917 |
-
|
9918 |
-
|
9919 |
-
|
9920 |
-
#: includes/settings/wcj-settings-
|
9921 |
-
msgid ""
|
9922 |
-
|
9923 |
-
|
9924 |
-
|
9925 |
-
|
9926 |
-
|
9927 |
-
|
9928 |
-
|
9929 |
-
|
9930 |
-
#: includes/settings/wcj-settings-
|
9931 |
-
msgid ""
|
9932 |
-
|
9933 |
-
|
9934 |
-
|
9935 |
-
|
9936 |
-
|
9937 |
-
|
9938 |
-
|
9939 |
-
|
9940 |
-
#: includes/settings/wcj-settings-
|
9941 |
-
|
9942 |
-
|
9943 |
-
|
9944 |
-
|
9945 |
-
|
9946 |
-
|
9947 |
-
"
|
9948 |
-
msgstr ""
|
9949 |
-
|
9950 |
-
#: includes/settings/wcj-settings-
|
9951 |
-
msgid "
|
9952 |
-
msgstr ""
|
9953 |
-
|
9954 |
-
#: includes/settings/wcj-settings-
|
9955 |
-
msgid "
|
9956 |
-
msgstr ""
|
9957 |
-
|
9958 |
-
#: includes/settings/wcj-settings-
|
9959 |
-
|
9960 |
-
|
9961 |
-
|
9962 |
-
|
9963 |
-
|
9964 |
-
|
9965 |
-
|
9966 |
-
|
9967 |
-
|
9968 |
-
|
9969 |
-
|
9970 |
-
|
9971 |
-
|
9972 |
-
|
9973 |
-
|
9974 |
-
|
9975 |
-
|
9976 |
-
|
9977 |
-
|
9978 |
-
|
9979 |
-
|
9980 |
-
|
9981 |
-
|
9982 |
-
|
9983 |
-
|
9984 |
-
|
9985 |
-
|
9986 |
-
|
9987 |
-
|
9988 |
-
|
9989 |
-
|
9990 |
-
|
9991 |
-
|
9992 |
-
|
9993 |
-
"
|
9994 |
-
msgstr ""
|
9995 |
-
|
9996 |
-
#: includes/settings/wcj-settings-
|
9997 |
-
msgid "
|
9998 |
-
|
9999 |
-
|
10000 |
-
|
10001 |
-
|
10002 |
-
|
10003 |
-
|
10004 |
-
|
10005 |
-
|
10006 |
-
|
10007 |
-
"
|
10008 |
-
|
10009 |
-
|
10010 |
-
|
10011 |
-
|
10012 |
-
|
10013 |
-
|
10014 |
-
|
10015 |
-
|
10016 |
-
|
10017 |
-
|
10018 |
-
#: includes/settings/wcj-settings-
|
10019 |
-
msgid "
|
10020 |
-
msgstr ""
|
10021 |
-
|
10022 |
-
#: includes/settings/wcj-settings-
|
10023 |
-
|
10024 |
-
|
10025 |
-
|
10026 |
-
|
10027 |
-
|
10028 |
-
|
10029 |
-
|
10030 |
-
|
10031 |
-
|
10032 |
-
|
10033 |
-
|
10034 |
-
|
10035 |
-
|
10036 |
-
|
10037 |
-
|
10038 |
-
|
10039 |
-
|
10040 |
-
|
10041 |
-
|
10042 |
-
#: includes/settings/wcj-settings-
|
10043 |
-
|
10044 |
-
|
10045 |
-
|
10046 |
-
|
10047 |
-
|
10048 |
-
|
10049 |
-
|
10050 |
-
#: includes/settings/wcj-settings-
|
10051 |
-
|
10052 |
-
|
10053 |
-
|
10054 |
-
|
10055 |
-
|
10056 |
-
|
10057 |
-
|
10058 |
-
#: includes/settings/wcj-settings-
|
10059 |
-
|
10060 |
-
|
10061 |
-
|
10062 |
-
|
10063 |
-
|
10064 |
-
|
10065 |
-
|
10066 |
-
|
10067 |
-
#: includes/settings/wcj-settings-
|
10068 |
-
|
10069 |
-
|
10070 |
-
|
10071 |
-
|
10072 |
-
|
10073 |
-
|
10074 |
-
|
10075 |
-
#: includes/settings/wcj-settings-
|
10076 |
-
|
10077 |
-
|
10078 |
-
|
10079 |
-
|
10080 |
-
|
10081 |
-
|
10082 |
-
|
10083 |
-
|
10084 |
-
|
10085 |
-
|
10086 |
-
|
10087 |
-
|
10088 |
-
#: includes/settings/wcj-settings-
|
10089 |
-
|
10090 |
-
|
10091 |
-
|
10092 |
-
|
10093 |
-
#: includes/settings/wcj-settings-
|
10094 |
-
|
10095 |
-
|
10096 |
-
|
10097 |
-
|
10098 |
-
|
10099 |
-
|
10100 |
-
|
10101 |
-
|
10102 |
-
"
|
10103 |
-
msgstr ""
|
10104 |
-
|
10105 |
-
#: includes/settings/wcj-settings-
|
10106 |
-
|
10107 |
-
|
10108 |
-
|
10109 |
-
|
10110 |
-
|
10111 |
-
|
10112 |
-
|
10113 |
-
|
10114 |
-
|
10115 |
-
"
|
10116 |
-
msgstr ""
|
10117 |
-
|
10118 |
-
#: includes/settings/wcj-settings-
|
10119 |
-
msgid "
|
10120 |
-
msgstr ""
|
10121 |
-
|
10122 |
-
#: includes/settings/wcj-settings-
|
10123 |
-
msgid "
|
10124 |
-
msgstr ""
|
10125 |
-
|
10126 |
-
#: includes/settings/wcj-settings-
|
10127 |
-
msgid ""
|
10128 |
-
|
10129 |
-
|
10130 |
-
|
10131 |
-
|
10132 |
-
|
10133 |
-
|
10134 |
-
|
10135 |
-
|
10136 |
-
|
10137 |
-
|
10138 |
-
|
10139 |
-
|
10140 |
-
|
10141 |
-
|
10142 |
-
|
10143 |
-
|
10144 |
-
|
10145 |
-
|
10146 |
-
"
|
10147 |
-
|
10148 |
-
|
10149 |
-
|
10150 |
-
|
10151 |
-
|
10152 |
-
|
10153 |
-
|
10154 |
-
|
10155 |
-
|
10156 |
-
|
10157 |
-
|
10158 |
-
|
10159 |
-
|
10160 |
-
|
10161 |
-
|
10162 |
-
|
10163 |
-
|
10164 |
-
|
10165 |
-
|
10166 |
-
|
10167 |
-
|
10168 |
-
|
10169 |
-
|
10170 |
-
#: includes/settings/wcj-settings-
|
10171 |
-
#: includes/settings/wcj-settings-
|
10172 |
-
|
10173 |
-
|
10174 |
-
|
10175 |
-
|
10176 |
-
|
10177 |
-
|
10178 |
-
|
10179 |
-
|
10180 |
-
|
10181 |
-
|
10182 |
-
|
10183 |
-
|
10184 |
-
|
10185 |
-
|
10186 |
-
|
10187 |
-
|
10188 |
-
|
10189 |
-
#: includes/settings/wcj-settings-
|
10190 |
-
#: includes/settings/
|
10191 |
-
msgid "
|
10192 |
-
msgstr ""
|
10193 |
-
|
10194 |
-
#: includes/settings/wcj-settings-
|
10195 |
-
msgid "
|
10196 |
-
|
10197 |
-
|
10198 |
-
|
10199 |
-
|
10200 |
-
|
10201 |
-
|
10202 |
-
|
10203 |
-
|
10204 |
-
|
10205 |
-
|
10206 |
-
|
10207 |
-
|
10208 |
-
|
10209 |
-
|
10210 |
-
"
|
10211 |
-
msgstr ""
|
10212 |
-
|
10213 |
-
#: includes/settings/wcj-settings-
|
10214 |
-
msgid "
|
10215 |
-
msgstr ""
|
10216 |
-
|
10217 |
-
#: includes/settings/wcj-settings-
|
10218 |
-
msgid "
|
10219 |
-
msgstr ""
|
10220 |
-
|
10221 |
-
#: includes/settings/wcj-settings-
|
10222 |
-
msgid ""
|
10223 |
-
|
10224 |
-
|
10225 |
-
|
10226 |
-
|
10227 |
-
|
10228 |
-
|
10229 |
-
|
10230 |
-
|
10231 |
-
|
10232 |
-
|
10233 |
-
|
10234 |
-
|
10235 |
-
|
10236 |
-
|
10237 |
-
|
10238 |
-
|
10239 |
-
|
10240 |
-
|
10241 |
-
|
10242 |
-
|
10243 |
-
|
10244 |
-
|
10245 |
-
|
10246 |
-
|
10247 |
-
|
10248 |
-
|
10249 |
-
|
10250 |
-
|
10251 |
-
msgid "
|
10252 |
-
msgstr ""
|
10253 |
-
|
10254 |
-
#: includes/settings/wcj-settings-
|
10255 |
-
msgid "
|
10256 |
-
msgstr ""
|
10257 |
-
|
10258 |
-
#: includes/settings/wcj-settings-
|
10259 |
-
|
10260 |
-
|
10261 |
-
|
10262 |
-
|
10263 |
-
|
10264 |
-
|
10265 |
-
|
10266 |
-
#: includes/settings/wcj-settings-
|
10267 |
-
msgid "
|
10268 |
-
msgstr ""
|
10269 |
-
|
10270 |
-
#: includes/settings/wcj-settings-
|
10271 |
-
|
10272 |
-
msgid "
|
10273 |
-
|
10274 |
-
|
10275 |
-
|
10276 |
-
|
10277 |
-
|
10278 |
-
|
10279 |
-
|
10280 |
-
|
10281 |
-
|
10282 |
-
|
10283 |
-
|
10284 |
-
|
10285 |
-
|
10286 |
-
|
10287 |
-
|
10288 |
-
|
10289 |
-
|
10290 |
-
|
10291 |
-
#: includes/settings/wcj-settings-
|
10292 |
-
#: includes/settings/wcj-settings-
|
10293 |
-
|
10294 |
-
|
10295 |
-
|
10296 |
-
#: includes/settings/wcj-settings-
|
10297 |
-
msgid "
|
10298 |
-
msgstr ""
|
10299 |
-
|
10300 |
-
#: includes/settings/wcj-settings-
|
10301 |
-
msgid "
|
10302 |
-
msgstr ""
|
10303 |
-
|
10304 |
-
#: includes/settings/wcj-settings-
|
10305 |
-
|
10306 |
-
|
10307 |
-
|
10308 |
-
|
10309 |
-
|
10310 |
-
|
10311 |
-
|
10312 |
-
|
10313 |
-
|
10314 |
-
|
10315 |
-
|
10316 |
-
|
10317 |
-
#: includes/settings/wcj-settings-
|
10318 |
-
msgid "
|
10319 |
-
msgstr ""
|
10320 |
-
|
10321 |
-
#: includes/settings/wcj-settings-
|
10322 |
-
|
10323 |
-
|
10324 |
-
|
10325 |
-
|
10326 |
-
|
10327 |
-
|
10328 |
-
|
10329 |
-
|
10330 |
-
|
10331 |
-
|
10332 |
-
|
10333 |
-
|
10334 |
-
|
10335 |
-
|
10336 |
-
|
10337 |
-
|
10338 |
-
|
10339 |
-
|
10340 |
-
|
10341 |
-
|
10342 |
-
|
10343 |
-
|
10344 |
-
|
10345 |
-
|
10346 |
-
|
10347 |
-
|
10348 |
-
|
10349 |
-
|
10350 |
-
|
10351 |
-
|
10352 |
-
|
10353 |
-
|
10354 |
-
|
10355 |
-
|
10356 |
-
|
10357 |
-
|
10358 |
-
|
10359 |
-
msgid "
|
10360 |
-
msgstr ""
|
10361 |
-
|
10362 |
-
#: includes/settings/wcj-settings-
|
10363 |
-
msgid "
|
10364 |
-
msgstr ""
|
10365 |
-
|
10366 |
-
#: includes/settings/wcj-settings-
|
10367 |
-
|
10368 |
-
|
10369 |
-
|
10370 |
-
#: includes/settings/wcj-settings-
|
10371 |
-
msgid "
|
10372 |
-
msgstr ""
|
10373 |
-
|
10374 |
-
#: includes/settings/wcj-settings-
|
10375 |
-
|
10376 |
-
|
10377 |
-
|
10378 |
-
#: includes/settings/wcj-settings-
|
10379 |
-
msgid "
|
10380 |
-
msgstr ""
|
10381 |
-
|
10382 |
-
#: includes/settings/wcj-settings-
|
10383 |
-
|
10384 |
-
|
10385 |
-
|
10386 |
-
|
10387 |
-
|
10388 |
-
|
10389 |
-
|
10390 |
-
|
10391 |
-
|
10392 |
-
#: includes/settings/wcj-settings-
|
10393 |
-
|
10394 |
-
|
10395 |
-
|
10396 |
-
msgstr ""
|
10397 |
-
|
10398 |
-
#: includes/settings/wcj-settings-
|
10399 |
-
|
10400 |
-
|
10401 |
-
|
10402 |
-
|
10403 |
-
|
10404 |
-
|
10405 |
-
|
10406 |
-
|
10407 |
-
|
10408 |
-
|
10409 |
-
|
10410 |
-
|
10411 |
-
|
10412 |
-
#: includes/settings/wcj-settings-
|
10413 |
-
#: includes/settings/wcj-settings-
|
10414 |
-
msgid "
|
10415 |
-
msgstr ""
|
10416 |
-
|
10417 |
-
#: includes/settings/wcj-settings-
|
10418 |
-
msgid "
|
10419 |
-
msgstr ""
|
10420 |
-
|
10421 |
-
#: includes/settings/wcj-settings-
|
10422 |
-
msgid "
|
10423 |
-
|
10424 |
-
|
10425 |
-
|
10426 |
-
|
10427 |
-
|
10428 |
-
|
10429 |
-
|
10430 |
-
|
10431 |
-
|
10432 |
-
|
10433 |
-
"
|
10434 |
-
|
10435 |
-
|
10436 |
-
|
10437 |
-
|
10438 |
-
|
10439 |
-
|
10440 |
-
|
10441 |
-
|
10442 |
-
msgid "
|
10443 |
-
|
10444 |
-
|
10445 |
-
|
10446 |
-
|
10447 |
-
|
10448 |
-
|
10449 |
-
|
10450 |
-
|
10451 |
-
|
10452 |
-
|
10453 |
-
|
10454 |
-
|
10455 |
-
|
10456 |
-
|
10457 |
-
#: includes/settings/wcj-settings-
|
10458 |
-
msgid "
|
10459 |
-
msgstr ""
|
10460 |
-
|
10461 |
-
#: includes/settings/wcj-settings-
|
10462 |
-
|
10463 |
-
|
10464 |
-
|
10465 |
-
|
10466 |
-
|
10467 |
-
|
10468 |
-
|
10469 |
-
|
10470 |
-
|
10471 |
-
|
10472 |
-
|
10473 |
-
|
10474 |
-
#: includes/settings/wcj-settings-
|
10475 |
-
msgid "
|
10476 |
-
msgstr ""
|
10477 |
-
|
10478 |
-
#: includes/settings/wcj-settings-
|
10479 |
-
|
10480 |
-
|
10481 |
-
|
10482 |
-
|
10483 |
-
|
10484 |
-
|
10485 |
-
|
10486 |
-
|
10487 |
-
|
10488 |
-
|
10489 |
-
|
10490 |
-
|
10491 |
-
|
10492 |
-
#: includes/settings/wcj-settings-
|
10493 |
-
|
10494 |
-
|
10495 |
-
|
10496 |
-
|
10497 |
-
|
10498 |
-
|
10499 |
-
|
10500 |
-
|
10501 |
-
|
10502 |
-
|
10503 |
-
|
10504 |
-
|
10505 |
-
|
10506 |
-
|
10507 |
-
|
10508 |
-
|
10509 |
-
|
10510 |
-
|
10511 |
-
#: includes/settings/wcj-settings-
|
10512 |
-
|
10513 |
-
msgid "
|
10514 |
-
msgstr ""
|
10515 |
-
|
10516 |
-
#: includes/settings/wcj-settings-
|
10517 |
-
|
10518 |
-
|
10519 |
-
|
10520 |
-
|
10521 |
-
#: includes/settings/wcj-settings-
|
10522 |
-
|
10523 |
-
|
10524 |
-
|
10525 |
-
|
10526 |
-
|
10527 |
-
|
10528 |
-
|
10529 |
-
|
10530 |
-
|
10531 |
-
|
10532 |
-
|
10533 |
-
#: includes/settings/wcj-settings-
|
10534 |
-
|
10535 |
-
|
10536 |
-
|
10537 |
-
|
10538 |
-
|
10539 |
-
|
10540 |
-
|
10541 |
-
|
10542 |
-
|
10543 |
-
|
10544 |
-
|
10545 |
-
|
10546 |
-
|
10547 |
-
|
10548 |
-
|
10549 |
-
|
10550 |
-
|
10551 |
-
|
10552 |
-
|
10553 |
-
#: includes/settings/wcj-settings-
|
10554 |
-
|
10555 |
-
|
10556 |
-
|
10557 |
-
|
10558 |
-
|
10559 |
-
|
10560 |
-
|
10561 |
-
|
10562 |
-
|
10563 |
-
#: includes/settings/wcj-settings-
|
10564 |
-
msgid "
|
10565 |
-
msgstr ""
|
10566 |
-
|
10567 |
-
#: includes/settings/wcj-settings-
|
10568 |
-
|
10569 |
-
|
10570 |
-
|
10571 |
-
|
10572 |
-
|
10573 |
-
|
10574 |
-
#: includes/settings/wcj-settings-
|
10575 |
-
|
10576 |
-
|
10577 |
-
|
10578 |
-
|
10579 |
-
|
10580 |
-
|
10581 |
-
|
10582 |
-
|
10583 |
-
|
10584 |
-
|
10585 |
-
|
10586 |
-
|
10587 |
-
|
10588 |
-
|
10589 |
-
|
10590 |
-
|
10591 |
-
|
10592 |
-
|
10593 |
-
|
10594 |
-
|
10595 |
-
|
10596 |
-
|
10597 |
-
|
10598 |
-
"
|
10599 |
-
|
10600 |
-
|
10601 |
-
|
10602 |
-
|
10603 |
-
msgid "
|
10604 |
-
msgstr ""
|
10605 |
-
|
10606 |
-
#: includes/settings/wcj-settings-
|
10607 |
-
msgid "
|
10608 |
-
msgstr ""
|
10609 |
-
|
10610 |
-
#: includes/settings/wcj-settings-
|
10611 |
-
msgid "
|
10612 |
-
msgstr ""
|
10613 |
-
|
10614 |
-
#: includes/settings/wcj-settings-
|
10615 |
-
msgid "
|
10616 |
-
|
10617 |
-
|
10618 |
-
|
10619 |
-
|
10620 |
-
|
10621 |
-
|
10622 |
-
|
10623 |
-
|
10624 |
-
|
10625 |
-
|
10626 |
-
|
10627 |
-
|
10628 |
-
msgstr ""
|
10629 |
-
|
10630 |
-
#: includes/settings/wcj-settings-
|
10631 |
-
msgid "
|
10632 |
-
msgstr ""
|
10633 |
-
|
10634 |
-
#: includes/settings/wcj-settings-
|
10635 |
-
msgid "
|
10636 |
-
msgstr ""
|
10637 |
-
|
10638 |
-
#: includes/settings/wcj-settings-
|
10639 |
-
|
10640 |
-
|
10641 |
-
|
10642 |
-
|
10643 |
-
|
10644 |
-
|
10645 |
-
|
10646 |
-
|
10647 |
-
|
10648 |
-
#: includes/settings/wcj-settings-
|
10649 |
-
msgid "
|
10650 |
-
msgstr ""
|
10651 |
-
|
10652 |
-
#: includes/settings/wcj-settings-
|
10653 |
-
|
10654 |
-
|
10655 |
-
|
10656 |
-
|
10657 |
-
|
10658 |
-
|
10659 |
-
|
10660 |
-
#: includes/settings/wcj-settings-
|
10661 |
-
|
10662 |
-
|
10663 |
-
|
10664 |
-
|
10665 |
-
|
10666 |
-
|
10667 |
-
|
10668 |
-
|
10669 |
-
"
|
10670 |
-
msgstr ""
|
10671 |
-
|
10672 |
-
#: includes/settings/wcj-settings-
|
10673 |
-
msgid "
|
10674 |
-
msgstr ""
|
10675 |
-
|
10676 |
-
#: includes/settings/wcj-settings-
|
10677 |
-
msgid "
|
10678 |
-
msgstr ""
|
10679 |
-
|
10680 |
-
#: includes/settings/wcj-settings-
|
10681 |
-
msgid ""
|
10682 |
-
|
10683 |
-
|
10684 |
-
|
10685 |
-
|
10686 |
-
|
10687 |
-
|
10688 |
-
msgstr ""
|
10689 |
-
|
10690 |
-
#: includes/settings/wcj-settings-
|
10691 |
-
msgid "
|
10692 |
-
msgstr ""
|
10693 |
-
|
10694 |
-
#: includes/settings/wcj-settings-
|
10695 |
-
|
10696 |
-
|
10697 |
-
|
10698 |
-
|
10699 |
-
|
10700 |
-
|
10701 |
-
|
10702 |
-
|
10703 |
-
|
10704 |
-
|
10705 |
-
|
10706 |
-
|
10707 |
-
|
10708 |
-
|
10709 |
-
|
10710 |
-
#: includes/settings/wcj-settings-
|
10711 |
-
|
10712 |
-
|
10713 |
-
|
10714 |
-
|
10715 |
-
|
10716 |
-
|
10717 |
-
|
10718 |
-
|
10719 |
-
|
10720 |
-
|
10721 |
-
|
10722 |
-
|
10723 |
-
|
10724 |
-
|
10725 |
-
|
10726 |
-
|
10727 |
-
|
10728 |
-
|
10729 |
-
|
10730 |
-
#: includes/settings/wcj-settings-
|
10731 |
-
|
10732 |
-
|
10733 |
-
|
10734 |
-
|
10735 |
-
|
10736 |
-
|
10737 |
-
|
10738 |
-
#: includes/settings/wcj-settings-
|
10739 |
-
msgid "
|
10740 |
-
msgstr ""
|
10741 |
-
|
10742 |
-
#: includes/settings/wcj-settings-
|
10743 |
-
|
10744 |
-
|
10745 |
-
|
10746 |
-
|
10747 |
-
|
10748 |
-
|
10749 |
-
|
10750 |
-
#: includes/settings/wcj-settings-
|
10751 |
-
|
10752 |
-
|
10753 |
-
|
10754 |
-
|
10755 |
-
|
10756 |
-
|
10757 |
-
|
10758 |
-
|
10759 |
-
|
10760 |
-
|
10761 |
-
|
10762 |
-
|
10763 |
-
|
10764 |
-
|
10765 |
-
|
10766 |
-
|
10767 |
-
|
10768 |
-
|
10769 |
-
#: includes/settings/wcj-settings-
|
10770 |
-
|
10771 |
-
|
10772 |
-
|
10773 |
-
|
10774 |
-
|
10775 |
-
|
10776 |
-
|
10777 |
-
|
10778 |
-
|
10779 |
-
|
10780 |
-
|
10781 |
-
|
10782 |
-
|
10783 |
-
|
10784 |
-
|
10785 |
-
|
10786 |
-
|
10787 |
-
|
10788 |
-
|
10789 |
-
|
10790 |
-
|
10791 |
-
|
10792 |
-
|
10793 |
-
|
10794 |
-
|
10795 |
-
|
10796 |
-
|
10797 |
-
|
10798 |
-
|
10799 |
-
|
10800 |
-
|
10801 |
-
|
10802 |
-
|
10803 |
-
|
10804 |
-
|
10805 |
-
|
10806 |
-
|
10807 |
-
|
10808 |
-
|
10809 |
-
|
10810 |
-
|
10811 |
-
|
10812 |
-
|
10813 |
-
|
10814 |
-
|
10815 |
-
|
10816 |
-
|
10817 |
-
|
10818 |
-
|
10819 |
-
|
10820 |
-
|
10821 |
-
|
10822 |
-
|
10823 |
-
|
10824 |
-
msgstr ""
|
10825 |
-
|
10826 |
-
#: includes/settings/wcj-settings-
|
10827 |
-
msgid "
|
10828 |
-
msgstr ""
|
10829 |
-
|
10830 |
-
#: includes/settings/wcj-settings-
|
10831 |
-
msgid "
|
10832 |
-
|
10833 |
-
|
10834 |
-
|
10835 |
-
|
10836 |
-
|
10837 |
-
|
10838 |
-
|
10839 |
-
|
10840 |
-
|
10841 |
-
|
10842 |
-
|
10843 |
-
|
10844 |
-
"
|
10845 |
-
|
10846 |
-
|
10847 |
-
|
10848 |
-
|
10849 |
-
|
10850 |
-
|
10851 |
-
msgstr ""
|
10852 |
-
|
10853 |
-
#: includes/settings/wcj-settings-
|
10854 |
-
|
10855 |
-
|
10856 |
-
|
10857 |
-
|
10858 |
-
#: includes/settings/wcj-settings-
|
10859 |
-
|
10860 |
-
|
10861 |
-
|
10862 |
-
|
10863 |
-
|
10864 |
-
|
10865 |
-
|
10866 |
-
#: includes/settings/wcj-settings-
|
10867 |
-
|
10868 |
-
|
10869 |
-
|
10870 |
-
|
10871 |
-
|
10872 |
-
|
10873 |
-
|
10874 |
-
|
10875 |
-
|
10876 |
-
|
10877 |
-
|
10878 |
-
|
10879 |
-
|
10880 |
-
#: includes/settings/wcj-settings-
|
10881 |
-
|
10882 |
-
|
10883 |
-
|
10884 |
-
|
10885 |
-
|
10886 |
-
|
10887 |
-
|
10888 |
-
|
10889 |
-
|
10890 |
-
|
10891 |
-
|
10892 |
-
|
10893 |
-
|
10894 |
-
|
10895 |
-
|
10896 |
-
|
10897 |
-
|
10898 |
-
|
10899 |
-
|
10900 |
-
|
10901 |
-
|
10902 |
-
|
10903 |
-
|
10904 |
-
|
10905 |
-
|
10906 |
-
|
10907 |
-
|
10908 |
-
|
10909 |
-
|
10910 |
-
|
10911 |
-
msgstr ""
|
10912 |
-
|
10913 |
-
#: includes/settings/wcj-settings-
|
10914 |
-
msgid "
|
10915 |
-
msgstr ""
|
10916 |
-
|
10917 |
-
#: includes/settings/wcj-settings-
|
10918 |
-
msgid "
|
10919 |
-
|
10920 |
-
|
10921 |
-
|
10922 |
-
|
10923 |
-
|
10924 |
-
|
10925 |
-
|
10926 |
-
|
10927 |
-
|
10928 |
-
|
10929 |
-
|
10930 |
-
|
10931 |
-
|
10932 |
-
|
10933 |
-
|
10934 |
-
|
10935 |
-
|
10936 |
-
|
10937 |
-
|
10938 |
-
|
10939 |
-
|
10940 |
-
|
10941 |
-
|
10942 |
-
|
10943 |
-
|
10944 |
-
|
10945 |
-
|
10946 |
-
|
10947 |
-
|
10948 |
-
|
10949 |
-
msgstr ""
|
10950 |
-
|
10951 |
-
#: includes/settings/wcj-settings-
|
10952 |
-
|
10953 |
-
|
10954 |
-
|
10955 |
-
|
10956 |
-
|
10957 |
-
|
10958 |
-
|
10959 |
-
|
10960 |
-
|
10961 |
-
|
10962 |
-
|
10963 |
-
|
10964 |
-
|
10965 |
-
|
10966 |
-
|
10967 |
-
|
10968 |
-
|
10969 |
-
"
|
10970 |
-
"
|
10971 |
-
msgstr ""
|
10972 |
-
|
10973 |
-
#: includes/settings/wcj-settings-
|
10974 |
-
msgid "
|
10975 |
-
msgstr ""
|
10976 |
-
|
10977 |
-
#: includes/settings/wcj-settings-
|
10978 |
-
|
10979 |
-
|
10980 |
-
|
10981 |
-
#: includes/settings/wcj-settings-
|
10982 |
-
|
10983 |
-
|
10984 |
-
|
10985 |
-
|
10986 |
-
|
10987 |
-
|
10988 |
-
|
10989 |
-
|
10990 |
-
|
10991 |
-
|
10992 |
-
|
10993 |
-
|
10994 |
-
|
10995 |
-
|
10996 |
-
|
10997 |
-
|
10998 |
-
|
10999 |
-
|
11000 |
-
|
11001 |
-
|
11002 |
-
#: includes/settings/wcj-settings-
|
11003 |
-
|
11004 |
-
|
11005 |
-
|
11006 |
-
|
11007 |
-
#: includes/settings/wcj-settings-product
|
11008 |
-
#: includes/settings/
|
11009 |
-
msgid "
|
11010 |
-
|
11011 |
-
|
11012 |
-
|
11013 |
-
|
11014 |
-
|
11015 |
-
|
11016 |
-
|
11017 |
-
|
11018 |
-
|
11019 |
-
|
11020 |
-
|
11021 |
-
|
11022 |
-
|
11023 |
-
|
11024 |
-
|
11025 |
-
|
11026 |
-
|
11027 |
-
|
11028 |
-
|
11029 |
-
|
11030 |
-
|
11031 |
-
|
11032 |
-
|
11033 |
-
|
11034 |
-
|
11035 |
-
|
11036 |
-
|
11037 |
-
|
11038 |
-
|
11039 |
-
|
11040 |
-
|
11041 |
-
|
11042 |
-
|
11043 |
-
|
11044 |
-
|
11045 |
-
|
11046 |
-
|
11047 |
-
|
11048 |
-
|
11049 |
-
|
11050 |
-
|
11051 |
-
|
11052 |
-
|
11053 |
-
|
11054 |
-
|
11055 |
-
|
11056 |
-
|
11057 |
-
|
11058 |
-
|
11059 |
-
|
11060 |
-
|
11061 |
-
|
11062 |
-
#: includes/settings/wcj-settings-
|
11063 |
-
|
11064 |
-
|
11065 |
-
|
11066 |
-
|
11067 |
-
|
11068 |
-
|
11069 |
-
|
11070 |
-
#: includes/settings/wcj-settings-
|
11071 |
-
|
11072 |
-
|
11073 |
-
|
11074 |
-
msgstr ""
|
11075 |
-
|
11076 |
-
#: includes/settings/wcj-settings-
|
11077 |
-
|
11078 |
-
|
11079 |
-
|
11080 |
-
#: includes/settings/wcj-settings-
|
11081 |
-
msgid ""
|
11082 |
-
|
11083 |
-
|
11084 |
-
|
11085 |
-
|
11086 |
-
#: includes/settings/wcj-settings-
|
11087 |
-
msgid "
|
11088 |
-
msgstr ""
|
11089 |
-
|
11090 |
-
#: includes/settings/wcj-settings-
|
11091 |
-
msgid "
|
11092 |
-
|
11093 |
-
|
11094 |
-
|
11095 |
-
|
11096 |
-
|
11097 |
-
|
11098 |
-
#: includes/settings/wcj-settings-
|
11099 |
-
|
11100 |
-
"
|
11101 |
-
msgstr ""
|
11102 |
-
|
11103 |
-
#: includes/settings/wcj-settings-
|
11104 |
-
msgid "
|
11105 |
-
msgstr ""
|
11106 |
-
|
11107 |
-
#: includes/settings/wcj-settings-
|
11108 |
-
msgid "
|
11109 |
-
msgstr ""
|
11110 |
-
|
11111 |
-
#: includes/settings/wcj-settings-
|
11112 |
-
msgid "
|
11113 |
-
msgstr ""
|
11114 |
-
|
11115 |
-
#: includes/settings/wcj-settings-
|
11116 |
-
|
11117 |
-
|
11118 |
-
|
11119 |
-
|
11120 |
-
|
11121 |
-
|
11122 |
-
|
11123 |
-
|
11124 |
-
|
11125 |
-
|
11126 |
-
|
11127 |
-
|
11128 |
-
|
11129 |
-
|
11130 |
-
|
11131 |
-
|
11132 |
-
|
11133 |
-
|
11134 |
-
|
11135 |
-
|
11136 |
-
|
11137 |
-
|
11138 |
-
|
11139 |
-
|
11140 |
-
|
11141 |
-
|
11142 |
-
|
11143 |
-
|
11144 |
-
|
11145 |
-
|
11146 |
-
|
11147 |
-
|
11148 |
-
|
11149 |
-
|
11150 |
-
|
11151 |
-
|
11152 |
-
|
11153 |
-
|
11154 |
-
|
11155 |
-
|
11156 |
-
|
11157 |
-
|
11158 |
-
|
11159 |
-
|
11160 |
-
|
11161 |
-
|
11162 |
-
|
11163 |
-
|
11164 |
-
|
11165 |
-
|
11166 |
-
|
11167 |
-
|
11168 |
-
|
11169 |
-
|
11170 |
-
|
11171 |
-
|
11172 |
-
|
11173 |
-
|
11174 |
-
|
11175 |
-
|
11176 |
-
|
11177 |
-
|
11178 |
-
#: includes/settings/wcj-settings-
|
11179 |
-
#: includes/settings/wcj-settings-
|
11180 |
-
|
11181 |
-
|
11182 |
-
|
11183 |
-
|
11184 |
-
|
11185 |
-
|
11186 |
-
|
11187 |
-
|
11188 |
-
|
11189 |
-
|
11190 |
-
|
11191 |
-
|
11192 |
-
|
11193 |
-
|
11194 |
-
|
11195 |
-
|
11196 |
-
|
11197 |
-
|
11198 |
-
|
11199 |
-
|
11200 |
-
|
11201 |
-
|
11202 |
-
|
11203 |
-
|
11204 |
-
|
11205 |
-
msgid "
|
11206 |
-
msgstr ""
|
11207 |
-
|
11208 |
-
#: includes/settings/wcj-settings-
|
11209 |
-
msgid "
|
11210 |
-
msgstr ""
|
11211 |
-
|
11212 |
-
#: includes/settings/wcj-settings-
|
11213 |
-
msgid "
|
11214 |
-
msgstr ""
|
11215 |
-
|
11216 |
-
#: includes/settings/wcj-settings-
|
11217 |
-
msgid "
|
11218 |
-
msgstr ""
|
11219 |
-
|
11220 |
-
#: includes/settings/wcj-settings-
|
11221 |
-
msgid "
|
11222 |
-
msgstr ""
|
11223 |
-
|
11224 |
-
#: includes/settings/wcj-settings-
|
11225 |
-
msgid "
|
11226 |
-
msgstr ""
|
11227 |
-
|
11228 |
-
#: includes/settings/wcj-settings-
|
11229 |
-
msgid "
|
11230 |
-
msgstr ""
|
11231 |
-
|
11232 |
-
#: includes/settings/wcj-settings-
|
11233 |
-
|
11234 |
-
|
11235 |
-
|
11236 |
-
#: includes/settings/
|
11237 |
-
|
11238 |
-
|
11239 |
-
|
11240 |
-
|
11241 |
-
|
11242 |
-
|
11243 |
-
|
11244 |
-
|
11245 |
-
|
11246 |
-
|
11247 |
-
|
11248 |
-
|
11249 |
-
#: includes/settings/wcj-settings-
|
11250 |
-
|
11251 |
-
|
11252 |
-
|
11253 |
-
|
11254 |
-
#: includes/settings/wcj-settings-
|
11255 |
-
|
11256 |
-
|
11257 |
-
|
11258 |
-
|
11259 |
-
|
11260 |
-
|
11261 |
-
|
11262 |
-
|
11263 |
-
|
11264 |
-
|
11265 |
-
|
11266 |
-
|
11267 |
-
|
11268 |
-
|
11269 |
-
|
11270 |
-
|
11271 |
-
|
11272 |
-
|
11273 |
-
|
11274 |
-
|
11275 |
-
|
11276 |
-
|
11277 |
-
|
11278 |
-
|
11279 |
-
|
11280 |
-
|
11281 |
-
|
11282 |
-
|
11283 |
-
|
11284 |
-
|
11285 |
-
|
11286 |
-
|
11287 |
-
|
11288 |
-
|
11289 |
-
#: includes/settings/wcj-settings-
|
11290 |
-
msgid "
|
11291 |
-
msgstr ""
|
11292 |
-
|
11293 |
-
#: includes/settings/wcj-settings-
|
11294 |
-
msgid "
|
11295 |
-
msgstr ""
|
11296 |
-
|
11297 |
-
#: includes/settings/wcj-settings-
|
11298 |
-
msgid "
|
11299 |
-
msgstr ""
|
11300 |
-
|
11301 |
-
#: includes/settings/wcj-settings-
|
11302 |
-
msgid "
|
11303 |
-
msgstr ""
|
11304 |
-
|
11305 |
-
#: includes/settings/wcj-settings-
|
11306 |
-
msgid "
|
11307 |
-
msgstr ""
|
11308 |
-
|
11309 |
-
#: includes/settings/wcj-settings-
|
11310 |
-
msgid ""
|
11311 |
-
|
11312 |
-
|
11313 |
-
|
11314 |
-
|
11315 |
-
|
11316 |
-
|
11317 |
-
#: includes/settings/wcj-settings-
|
11318 |
-
msgid "
|
11319 |
-
msgstr ""
|
11320 |
-
|
11321 |
-
#: includes/settings/wcj-settings-
|
11322 |
-
msgid "
|
11323 |
-
msgstr ""
|
11324 |
-
|
11325 |
-
#: includes/settings/wcj-settings-
|
11326 |
-
#: includes/settings/wcj-settings-
|
11327 |
-
msgid "
|
11328 |
-
msgstr ""
|
11329 |
-
|
11330 |
-
#: includes/settings/wcj-settings-
|
11331 |
-
|
11332 |
-
|
11333 |
-
|
11334 |
-
|
11335 |
-
#: includes/settings/wcj-settings-
|
11336 |
-
msgid ""
|
11337 |
-
|
11338 |
-
|
11339 |
-
|
11340 |
-
|
11341 |
-
|
11342 |
-
|
11343 |
-
|
11344 |
-
|
11345 |
-
|
11346 |
-
|
11347 |
-
|
11348 |
-
"
|
11349 |
-
|
11350 |
-
|
11351 |
-
|
11352 |
-
|
11353 |
-
|
11354 |
-
|
11355 |
-
|
11356 |
-
|
11357 |
-
|
11358 |
-
|
11359 |
-
|
11360 |
-
"
|
11361 |
-
msgstr ""
|
11362 |
-
|
11363 |
-
#: includes/settings/wcj-settings-
|
11364 |
-
|
11365 |
-
|
11366 |
-
|
11367 |
-
|
11368 |
-
|
11369 |
-
|
11370 |
-
"
|
11371 |
-
|
11372 |
-
|
11373 |
-
|
11374 |
-
|
11375 |
-
|
11376 |
-
|
11377 |
-
|
11378 |
-
|
11379 |
-
|
11380 |
-
|
11381 |
-
|
11382 |
-
"
|
11383 |
-
|
11384 |
-
|
11385 |
-
|
11386 |
-
|
11387 |
-
|
11388 |
-
|
11389 |
-
|
11390 |
-
|
11391 |
-
|
11392 |
-
|
11393 |
-
|
11394 |
-
|
11395 |
-
|
11396 |
-
|
11397 |
-
|
11398 |
-
"
|
11399 |
-
msgstr ""
|
11400 |
-
|
11401 |
-
#: includes/settings/wcj-settings-
|
11402 |
-
|
11403 |
-
|
11404 |
-
|
11405 |
-
#: includes/settings/wcj-settings-
|
11406 |
-
msgid "
|
11407 |
-
msgstr ""
|
11408 |
-
|
11409 |
-
#: includes/settings/wcj-settings-
|
11410 |
-
|
11411 |
-
|
11412 |
-
|
11413 |
-
#: includes/settings/wcj-settings-
|
11414 |
-
|
11415 |
-
|
11416 |
-
|
11417 |
-
|
11418 |
-
"
|
11419 |
-
msgstr ""
|
11420 |
-
|
11421 |
-
#: includes/settings/wcj-settings-
|
11422 |
-
msgid "
|
11423 |
-
msgstr ""
|
11424 |
-
|
11425 |
-
#: includes/settings/wcj-settings-
|
11426 |
-
msgid ""
|
11427 |
-
|
11428 |
-
|
11429 |
-
|
11430 |
-
|
11431 |
-
|
11432 |
-
|
11433 |
-
|
11434 |
-
|
11435 |
-
msgstr ""
|
11436 |
-
|
11437 |
-
#: includes/settings/wcj-settings-
|
11438 |
-
|
11439 |
-
|
11440 |
-
|
11441 |
-
|
11442 |
-
|
11443 |
-
|
11444 |
-
|
11445 |
-
|
11446 |
-
|
11447 |
-
|
11448 |
-
|
11449 |
-
|
11450 |
-
|
11451 |
-
|
11452 |
-
|
11453 |
-
|
11454 |
-
|
11455 |
-
|
11456 |
-
|
11457 |
-
|
11458 |
-
|
11459 |
-
|
11460 |
-
|
11461 |
-
|
11462 |
-
|
11463 |
-
|
11464 |
-
|
11465 |
-
|
11466 |
-
|
11467 |
-
|
11468 |
-
|
11469 |
-
|
11470 |
-
|
11471 |
-
|
11472 |
-
|
11473 |
-
|
11474 |
-
|
11475 |
-
|
11476 |
-
#: includes/settings/wcj-settings-
|
11477 |
-
msgid "
|
11478 |
-
msgstr ""
|
11479 |
-
|
11480 |
-
#: includes/settings/wcj-settings-
|
11481 |
-
|
11482 |
-
|
11483 |
-
|
11484 |
-
|
11485 |
-
|
11486 |
-
|
11487 |
-
|
11488 |
-
|
11489 |
-
|
11490 |
-
|
11491 |
-
|
11492 |
-
|
11493 |
-
|
11494 |
-
|
11495 |
-
msgid "
|
11496 |
-
|
11497 |
-
|
11498 |
-
|
11499 |
-
|
11500 |
-
|
11501 |
-
|
11502 |
-
|
11503 |
-
|
11504 |
-
|
11505 |
-
|
11506 |
-
|
11507 |
-
|
11508 |
-
msgstr ""
|
11509 |
-
|
11510 |
-
#: includes/settings/wcj-settings-
|
11511 |
-
msgid "
|
11512 |
-
msgstr ""
|
11513 |
-
|
11514 |
-
#: includes/settings/wcj-settings-
|
11515 |
-
msgid "
|
11516 |
-
msgstr ""
|
11517 |
-
|
11518 |
-
#: includes/settings/wcj-settings-
|
11519 |
-
msgid "
|
11520 |
-
msgstr ""
|
11521 |
-
|
11522 |
-
#: includes/settings/wcj-settings-
|
11523 |
-
msgid ""
|
11524 |
-
|
11525 |
-
|
11526 |
-
|
11527 |
-
|
11528 |
-
|
11529 |
-
|
11530 |
-
|
11531 |
-
"
|
11532 |
-
msgstr ""
|
11533 |
-
|
11534 |
-
#: includes/settings/wcj-settings-
|
11535 |
-
msgid "
|
11536 |
-
msgstr ""
|
11537 |
-
|
11538 |
-
#: includes/settings/wcj-settings-
|
11539 |
-
|
11540 |
-
|
11541 |
-
|
11542 |
-
|
11543 |
-
|
11544 |
-
|
11545 |
-
|
11546 |
-
|
11547 |
-
|
11548 |
-
|
11549 |
-
|
11550 |
-
|
11551 |
-
|
11552 |
-
|
11553 |
-
|
11554 |
-
msgstr ""
|
11555 |
-
|
11556 |
-
#: includes/settings/wcj-settings-
|
11557 |
-
|
11558 |
-
"
|
11559 |
-
|
11560 |
-
|
11561 |
-
|
11562 |
-
|
11563 |
-
|
11564 |
-
|
11565 |
-
|
11566 |
-
|
11567 |
-
|
11568 |
-
|
11569 |
-
|
11570 |
-
|
11571 |
-
|
11572 |
-
|
11573 |
-
|
11574 |
-
|
11575 |
-
|
11576 |
-
|
11577 |
-
|
11578 |
-
"
|
11579 |
-
msgstr ""
|
11580 |
-
|
11581 |
-
#: includes/settings/wcj-settings-
|
11582 |
-
msgid "
|
11583 |
-
msgstr ""
|
11584 |
-
|
11585 |
-
#: includes/settings/wcj-settings-
|
11586 |
-
msgid ""
|
11587 |
-
|
11588 |
-
|
11589 |
-
|
11590 |
-
|
11591 |
-
|
11592 |
-
|
11593 |
-
|
11594 |
-
|
11595 |
-
|
11596 |
-
|
11597 |
-
|
11598 |
-
|
11599 |
-
#: includes/settings/wcj-settings-
|
11600 |
-
|
11601 |
-
|
11602 |
-
|
11603 |
-
|
11604 |
-
|
11605 |
-
|
11606 |
-
|
11607 |
-
|
11608 |
-
|
11609 |
-
|
11610 |
-
|
11611 |
-
|
11612 |
-
|
11613 |
-
|
11614 |
-
|
11615 |
-
|
11616 |
-
|
11617 |
-
|
11618 |
-
|
11619 |
-
|
11620 |
-
|
11621 |
-
|
11622 |
-
|
11623 |
-
|
11624 |
-
|
11625 |
-
|
11626 |
-
|
11627 |
-
|
11628 |
-
|
11629 |
-
|
11630 |
-
|
11631 |
-
|
11632 |
-
|
11633 |
-
|
11634 |
-
|
11635 |
-
|
11636 |
-
|
11637 |
-
|
11638 |
-
|
11639 |
-
|
11640 |
-
|
11641 |
-
|
11642 |
-
|
11643 |
-
|
11644 |
-
|
11645 |
-
|
11646 |
-
|
11647 |
-
|
11648 |
-
|
11649 |
-
|
11650 |
-
|
11651 |
-
|
11652 |
-
|
11653 |
-
|
11654 |
-
|
11655 |
-
|
11656 |
-
|
11657 |
-
"
|
11658 |
-
msgstr ""
|
11659 |
-
|
11660 |
-
#: includes/settings/wcj-settings-
|
11661 |
-
msgid "
|
11662 |
-
msgstr ""
|
11663 |
-
|
11664 |
-
#: includes/settings/wcj-settings-
|
11665 |
-
|
11666 |
-
|
11667 |
-
"
|
11668 |
-
|
11669 |
-
|
11670 |
-
|
11671 |
-
|
11672 |
-
|
11673 |
-
|
11674 |
-
|
11675 |
-
|
11676 |
-
|
11677 |
-
|
11678 |
-
|
11679 |
-
"
|
11680 |
-
msgstr ""
|
11681 |
-
|
11682 |
-
#: includes/settings/wcj-settings-
|
11683 |
-
msgid "
|
11684 |
-
msgstr ""
|
11685 |
-
|
11686 |
-
#: includes/settings/wcj-settings-
|
11687 |
-
msgid "
|
11688 |
-
|
11689 |
-
|
11690 |
-
|
11691 |
-
|
11692 |
-
|
11693 |
-
"
|
11694 |
-
msgstr ""
|
11695 |
-
|
11696 |
-
#: includes/settings/wcj-settings-
|
11697 |
-
msgid "
|
11698 |
-
msgstr ""
|
11699 |
-
|
11700 |
-
#: includes/settings/wcj-settings-
|
11701 |
-
msgid "
|
11702 |
-
msgstr ""
|
11703 |
-
|
11704 |
-
#: includes/settings/wcj-settings-
|
11705 |
-
msgid "
|
11706 |
-
msgstr ""
|
11707 |
-
|
11708 |
-
#: includes/settings/wcj-settings-
|
11709 |
-
msgid "
|
11710 |
-
msgstr ""
|
11711 |
-
|
11712 |
-
#: includes/settings/wcj-settings-
|
11713 |
-
|
11714 |
-
|
11715 |
-
|
11716 |
-
|
11717 |
-
|
11718 |
-
|
11719 |
-
|
11720 |
-
|
11721 |
-
|
11722 |
-
|
11723 |
-
|
11724 |
-
|
11725 |
-
|
11726 |
-
|
11727 |
-
|
11728 |
-
|
11729 |
-
#: includes/settings/wcj-settings-
|
11730 |
-
msgid "
|
11731 |
-
msgstr ""
|
11732 |
-
|
11733 |
-
#: includes/settings/wcj-settings-
|
11734 |
-
|
11735 |
-
|
11736 |
-
|
11737 |
-
|
11738 |
-
|
11739 |
-
|
11740 |
-
|
11741 |
-
|
11742 |
-
|
11743 |
-
|
11744 |
-
|
11745 |
-
|
11746 |
-
|
11747 |
-
|
11748 |
-
|
11749 |
-
|
11750 |
-
|
11751 |
-
|
11752 |
-
|
11753 |
-
|
11754 |
-
|
11755 |
-
|
11756 |
-
|
11757 |
-
|
11758 |
-
|
11759 |
-
|
11760 |
-
|
11761 |
-
|
11762 |
-
|
11763 |
-
|
11764 |
-
|
11765 |
-
|
11766 |
-
msgid ""
|
11767 |
-
"
|
11768 |
-
"
|
11769 |
-
msgstr ""
|
11770 |
-
|
11771 |
-
#: includes/settings/wcj-settings-
|
11772 |
-
msgid "
|
11773 |
-
msgstr ""
|
11774 |
-
|
11775 |
-
#: includes/settings/wcj-settings-
|
11776 |
-
msgid "WooCommerce
|
11777 |
-
msgstr ""
|
11778 |
-
|
11779 |
-
#: includes/settings/wcj-settings-
|
11780 |
-
msgid "
|
11781 |
-
msgstr ""
|
11782 |
-
|
11783 |
-
#: includes/settings/wcj-settings-
|
11784 |
-
msgid "
|
11785 |
-
|
11786 |
-
|
11787 |
-
|
11788 |
-
|
11789 |
-
|
11790 |
-
|
11791 |
-
|
11792 |
-
|
11793 |
-
|
11794 |
-
|
11795 |
-
|
11796 |
-
|
11797 |
-
|
11798 |
-
|
11799 |
-
|
11800 |
-
|
11801 |
-
|
11802 |
-
|
11803 |
-
|
11804 |
-
|
11805 |
-
|
11806 |
-
|
11807 |
-
|
11808 |
-
|
11809 |
-
|
11810 |
-
|
11811 |
-
|
11812 |
-
|
11813 |
-
|
11814 |
-
|
11815 |
-
|
11816 |
-
|
11817 |
-
|
11818 |
-
|
11819 |
-
|
11820 |
-
|
11821 |
-
|
11822 |
-
|
11823 |
-
|
11824 |
-
|
11825 |
-
|
11826 |
-
|
11827 |
-
|
11828 |
-
|
11829 |
-
|
11830 |
-
|
11831 |
-
|
11832 |
-
|
11833 |
-
|
11834 |
-
"
|
11835 |
-
|
11836 |
-
|
11837 |
-
|
11838 |
-
|
11839 |
-
|
11840 |
-
|
11841 |
-
|
11842 |
-
|
11843 |
-
|
11844 |
-
|
11845 |
-
|
11846 |
-
|
11847 |
-
|
11848 |
-
|
11849 |
-
|
11850 |
-
|
11851 |
-
|
11852 |
-
|
11853 |
-
|
11854 |
-
|
11855 |
-
|
11856 |
-
|
11857 |
-
|
11858 |
-
|
11859 |
-
|
11860 |
-
|
11861 |
-
|
11862 |
-
|
11863 |
-
|
11864 |
-
|
11865 |
-
|
11866 |
-
|
11867 |
-
|
11868 |
-
|
11869 |
-
|
11870 |
-
|
11871 |
-
|
11872 |
-
|
11873 |
-
|
11874 |
-
|
11875 |
-
|
11876 |
-
|
11877 |
-
|
11878 |
-
|
11879 |
-
|
11880 |
-
|
11881 |
-
|
11882 |
-
|
11883 |
-
|
11884 |
-
|
11885 |
-
|
11886 |
-
|
11887 |
-
|
11888 |
-
|
11889 |
-
|
11890 |
-
|
11891 |
-
#: includes/settings/wcj-settings-
|
11892 |
-
|
11893 |
-
|
11894 |
-
|
11895 |
-
|
11896 |
-
|
11897 |
-
|
11898 |
-
|
11899 |
-
|
11900 |
-
|
11901 |
-
|
11902 |
-
|
11903 |
-
|
11904 |
-
|
11905 |
-
|
11906 |
-
|
11907 |
-
|
11908 |
-
|
11909 |
-
|
11910 |
-
|
11911 |
-
|
11912 |
-
|
11913 |
-
|
11914 |
-
|
11915 |
-
|
11916 |
-
|
11917 |
-
|
11918 |
-
|
11919 |
-
|
11920 |
-
|
11921 |
-
|
11922 |
-
|
11923 |
-
|
11924 |
-
|
11925 |
-
|
11926 |
-
msgid "
|
11927 |
-
msgstr ""
|
11928 |
-
|
11929 |
-
#: includes/settings/wcj-settings-
|
11930 |
-
|
11931 |
-
|
11932 |
-
|
11933 |
-
|
11934 |
-
|
11935 |
-
|
11936 |
-
|
11937 |
-
|
11938 |
-
|
11939 |
-
|
11940 |
-
|
11941 |
-
|
11942 |
-
|
11943 |
-
|
11944 |
-
|
11945 |
-
|
11946 |
-
|
11947 |
-
|
11948 |
-
|
11949 |
-
|
11950 |
-
|
11951 |
-
|
11952 |
-
|
11953 |
-
|
11954 |
-
"
|
11955 |
-
|
11956 |
-
|
11957 |
-
|
11958 |
-
#: includes/settings/wcj-settings-
|
11959 |
-
#: includes/settings/wcj-settings-
|
11960 |
-
#: includes/
|
11961 |
-
|
11962 |
-
|
11963 |
-
|
11964 |
-
|
11965 |
-
|
11966 |
-
|
11967 |
-
|
11968 |
-
|
11969 |
-
|
11970 |
-
|
11971 |
-
|
11972 |
-
|
11973 |
-
|
11974 |
-
|
11975 |
-
|
11976 |
-
|
11977 |
-
|
11978 |
-
|
11979 |
-
|
11980 |
-
|
11981 |
-
|
11982 |
-
|
11983 |
-
|
11984 |
-
|
11985 |
-
|
11986 |
-
|
11987 |
-
|
11988 |
-
|
11989 |
-
|
11990 |
-
|
11991 |
-
#: includes/settings/wcj-settings-
|
11992 |
-
|
11993 |
-
|
11994 |
-
|
11995 |
-
|
11996 |
-
|
11997 |
-
|
11998 |
-
|
11999 |
-
|
12000 |
-
|
12001 |
-
|
12002 |
-
|
12003 |
-
|
12004 |
-
|
12005 |
-
|
12006 |
-
|
12007 |
-
|
12008 |
-
|
12009 |
-
|
12010 |
-
|
12011 |
-
|
12012 |
-
|
12013 |
-
|
12014 |
-
|
12015 |
-
|
12016 |
-
|
12017 |
-
|
12018 |
-
|
12019 |
-
|
12020 |
-
|
12021 |
-
|
12022 |
-
|
12023 |
-
|
12024 |
-
|
12025 |
-
|
12026 |
-
|
12027 |
-
|
12028 |
-
|
12029 |
-
|
12030 |
-
|
12031 |
-
#: includes/settings/wcj-settings-
|
12032 |
-
msgid "
|
12033 |
-
msgstr ""
|
12034 |
-
|
12035 |
-
#: includes/settings/wcj-settings-
|
12036 |
-
|
12037 |
-
|
12038 |
-
|
12039 |
-
|
12040 |
-
|
12041 |
-
|
12042 |
-
|
12043 |
-
|
12044 |
-
|
12045 |
-
|
12046 |
-
|
12047 |
-
#: includes/settings/wcj-settings-
|
12048 |
-
msgid "
|
12049 |
-
msgstr ""
|
12050 |
-
|
12051 |
-
#: includes/settings/wcj-settings-
|
12052 |
-
msgid "
|
12053 |
-
|
12054 |
-
|
12055 |
-
|
12056 |
-
|
12057 |
-
|
12058 |
-
|
12059 |
-
|
12060 |
-
|
12061 |
-
|
12062 |
-
|
12063 |
-
|
12064 |
-
|
12065 |
-
|
12066 |
-
|
12067 |
-
|
12068 |
-
|
12069 |
-
|
12070 |
-
|
12071 |
-
|
12072 |
-
|
12073 |
-
|
12074 |
-
|
12075 |
-
|
12076 |
-
|
12077 |
-
msgstr ""
|
12078 |
-
|
12079 |
-
#: includes/settings/wcj-settings-
|
12080 |
-
msgid "
|
12081 |
-
|
12082 |
-
|
12083 |
-
|
12084 |
-
|
12085 |
-
|
12086 |
-
|
12087 |
-
|
12088 |
-
|
12089 |
-
msgstr ""
|
12090 |
-
|
12091 |
-
#: includes/settings/wcj-settings-
|
12092 |
-
|
12093 |
-
|
12094 |
-
|
12095 |
-
|
12096 |
-
|
12097 |
-
|
12098 |
-
|
12099 |
-
|
12100 |
-
|
12101 |
-
|
12102 |
-
|
12103 |
-
|
12104 |
-
|
12105 |
-
|
12106 |
-
|
12107 |
-
#: includes/settings/wcj-settings-
|
12108 |
-
|
12109 |
-
|
12110 |
-
|
12111 |
-
#: includes/settings/wcj-settings-
|
12112 |
-
msgid "
|
12113 |
-
msgstr ""
|
12114 |
-
|
12115 |
-
#: includes/settings/wcj-settings-
|
12116 |
-
|
12117 |
-
|
12118 |
-
|
12119 |
-
#: includes/settings/wcj-settings-
|
12120 |
-
|
12121 |
-
|
12122 |
-
|
12123 |
-
|
12124 |
-
|
12125 |
-
msgstr ""
|
12126 |
-
|
12127 |
-
#: includes/settings/wcj-settings-
|
12128 |
-
msgid "
|
12129 |
-
msgstr ""
|
12130 |
-
|
12131 |
-
#: includes/settings/wcj-settings-
|
12132 |
-
msgid "
|
12133 |
-
|
12134 |
-
|
12135 |
-
|
12136 |
-
|
12137 |
-
|
12138 |
-
|
12139 |
-
|
12140 |
-
|
12141 |
-
msgstr ""
|
12142 |
-
|
12143 |
-
#: includes/settings/wcj-settings-
|
12144 |
-
#, php-format
|
12145 |
-
msgid "
|
12146 |
-
msgstr ""
|
12147 |
-
|
12148 |
-
#: includes/settings/wcj-settings-
|
12149 |
-
msgid ""
|
12150 |
-
|
12151 |
-
|
12152 |
-
|
12153 |
-
|
12154 |
-
#: includes/settings/wcj-settings-
|
12155 |
-
|
12156 |
-
|
12157 |
-
|
12158 |
-
|
12159 |
-
|
12160 |
-
|
12161 |
-
|
12162 |
-
|
12163 |
-
|
12164 |
-
|
12165 |
-
|
12166 |
-
|
12167 |
-
|
12168 |
-
|
12169 |
-
|
12170 |
-
|
12171 |
-
|
12172 |
-
|
12173 |
-
#: includes/settings/wcj-settings-
|
12174 |
-
msgid "
|
12175 |
-
msgstr ""
|
12176 |
-
|
12177 |
-
#: includes/settings/wcj-settings-
|
12178 |
-
msgid "
|
12179 |
-
msgstr ""
|
12180 |
-
|
12181 |
-
#: includes/settings/wcj-settings-
|
12182 |
-
|
12183 |
-
|
12184 |
-
|
12185 |
-
|
12186 |
-
|
12187 |
-
|
12188 |
-
|
12189 |
-
|
12190 |
-
|
12191 |
-
#: includes/settings/wcj-settings-
|
12192 |
-
|
12193 |
-
|
12194 |
-
|
12195 |
-
|
12196 |
-
#: includes/settings/wcj-settings-
|
12197 |
-
msgid "
|
12198 |
-
msgstr ""
|
12199 |
-
|
12200 |
-
#: includes/settings/wcj-settings-
|
12201 |
-
|
12202 |
-
|
12203 |
-
|
12204 |
-
|
12205 |
-
|
12206 |
-
|
12207 |
-
|
12208 |
-
|
12209 |
-
|
12210 |
-
|
12211 |
-
|
12212 |
-
#: includes/settings/wcj-settings-
|
12213 |
-
msgid "
|
12214 |
-
msgstr ""
|
12215 |
-
|
12216 |
-
#: includes/settings/wcj-settings-
|
12217 |
-
msgid "
|
12218 |
-
msgstr ""
|
12219 |
-
|
12220 |
-
#: includes/settings/wcj-settings-
|
12221 |
-
msgid "
|
12222 |
-
msgstr ""
|
12223 |
-
|
12224 |
-
#: includes/settings/wcj-settings-
|
12225 |
-
msgid "
|
12226 |
-
msgstr ""
|
12227 |
-
|
12228 |
-
#: includes/settings/wcj-settings-
|
12229 |
-
msgid ""
|
12230 |
-
"
|
12231 |
-
"
|
12232 |
-
msgstr ""
|
12233 |
-
|
12234 |
-
#: includes/settings/wcj-settings-
|
12235 |
-
msgid "
|
12236 |
-
|
12237 |
-
|
12238 |
-
|
12239 |
-
|
12240 |
-
|
12241 |
-
"
|
12242 |
-
msgstr ""
|
12243 |
-
|
12244 |
-
#: includes/settings/wcj-settings-
|
12245 |
-
|
12246 |
-
|
12247 |
-
|
12248 |
-
|
12249 |
-
|
12250 |
-
|
12251 |
-
|
12252 |
-
|
12253 |
-
#: includes/settings/wcj-settings-
|
12254 |
-
|
12255 |
-
|
12256 |
-
msgstr ""
|
12257 |
-
|
12258 |
-
#: includes/settings/wcj-settings-
|
12259 |
-
|
12260 |
-
|
12261 |
-
|
12262 |
-
|
12263 |
-
|
12264 |
-
|
12265 |
-
|
12266 |
-
msgstr ""
|
12267 |
-
|
12268 |
-
#: includes/settings/wcj-settings-
|
12269 |
-
#: includes/settings/
|
12270 |
-
|
12271 |
-
|
12272 |
-
|
12273 |
-
|
12274 |
-
|
12275 |
-
|
12276 |
-
|
12277 |
-
|
12278 |
-
|
12279 |
-
|
12280 |
-
|
12281 |
-
|
12282 |
-
|
12283 |
-
|
12284 |
-
|
12285 |
-
|
12286 |
-
|
12287 |
-
|
12288 |
-
|
12289 |
-
|
12290 |
-
|
12291 |
-
|
12292 |
-
|
12293 |
-
|
12294 |
-
|
12295 |
-
|
12296 |
-
|
12297 |
-
|
12298 |
-
|
12299 |
-
|
12300 |
-
|
12301 |
-
|
12302 |
-
|
12303 |
-
|
12304 |
-
|
12305 |
-
|
12306 |
-
|
12307 |
-
|
12308 |
-
|
12309 |
-
|
12310 |
-
|
12311 |
-
|
12312 |
-
|
12313 |
-
|
12314 |
-
|
12315 |
-
|
12316 |
-
|
12317 |
-
msgstr ""
|
12318 |
-
|
12319 |
-
#: includes/settings/wcj-settings-
|
12320 |
-
msgid "
|
12321 |
-
msgstr ""
|
12322 |
-
|
12323 |
-
#: includes/settings/wcj-settings-
|
12324 |
-
#: includes/settings/wcj-settings-
|
12325 |
-
msgid "
|
12326 |
-
msgstr ""
|
12327 |
-
|
12328 |
-
#: includes/settings/wcj-settings-
|
12329 |
-
msgid "
|
12330 |
-
msgstr ""
|
12331 |
-
|
12332 |
-
#: includes/settings/wcj-settings-
|
12333 |
-
msgid "
|
12334 |
-
msgstr ""
|
12335 |
-
|
12336 |
-
#: includes/settings/wcj-settings-
|
12337 |
-
|
12338 |
-
msgid "
|
12339 |
-
msgstr ""
|
12340 |
-
|
12341 |
-
#: includes/settings/wcj-settings-
|
12342 |
-
|
12343 |
-
|
12344 |
-
|
12345 |
-
|
12346 |
-
|
12347 |
-
|
12348 |
-
|
12349 |
-
|
12350 |
-
|
12351 |
-
|
12352 |
-
|
12353 |
-
|
12354 |
-
|
12355 |
-
|
12356 |
-
|
12357 |
-
|
12358 |
-
"
|
12359 |
-
|
12360 |
-
|
12361 |
-
|
12362 |
-
|
12363 |
-
|
12364 |
-
|
12365 |
-
msgstr ""
|
12366 |
-
|
12367 |
-
#: includes/settings/wcj-settings-
|
12368 |
-
msgid "
|
12369 |
-
msgstr ""
|
12370 |
-
|
12371 |
-
#: includes/settings/wcj-settings-
|
12372 |
-
msgid ""
|
12373 |
-
"If you
|
12374 |
-
"
|
12375 |
-
|
12376 |
-
|
12377 |
-
|
12378 |
-
|
12379 |
-
|
12380 |
-
|
12381 |
-
|
12382 |
-
|
12383 |
-
|
12384 |
-
"
|
12385 |
-
|
12386 |
-
|
12387 |
-
|
12388 |
-
|
12389 |
-
|
12390 |
-
|
12391 |
-
|
12392 |
-
|
12393 |
-
|
12394 |
-
"
|
12395 |
-
|
12396 |
-
|
12397 |
-
|
12398 |
-
|
12399 |
-
|
12400 |
-
|
12401 |
-
|
12402 |
-
|
12403 |
-
|
12404 |
-
|
12405 |
-
|
12406 |
-
|
12407 |
-
|
12408 |
-
|
12409 |
-
|
12410 |
-
|
12411 |
-
|
12412 |
-
|
12413 |
-
|
12414 |
-
|
12415 |
-
|
12416 |
-
|
12417 |
-
|
12418 |
-
|
12419 |
-
|
12420 |
-
|
12421 |
-
#: includes/settings/wcj-settings-
|
12422 |
-
msgid "
|
12423 |
-
msgstr ""
|
12424 |
-
|
12425 |
-
#: includes/settings/wcj-settings-
|
12426 |
-
msgid ""
|
12427 |
-
|
12428 |
-
|
12429 |
-
|
12430 |
-
|
12431 |
-
#: includes/
|
12432 |
-
msgid "
|
12433 |
-
msgstr ""
|
12434 |
-
|
12435 |
-
#: includes/settings/wcj-settings-
|
12436 |
-
|
12437 |
-
|
12438 |
-
|
12439 |
-
|
12440 |
-
|
12441 |
-
|
12442 |
-
|
12443 |
-
#: includes/settings/wcj-settings-
|
12444 |
-
|
12445 |
-
|
12446 |
-
|
12447 |
-
|
12448 |
-
|
12449 |
-
|
12450 |
-
|
12451 |
-
|
12452 |
-
|
12453 |
-
|
12454 |
-
"
|
12455 |
-
msgstr ""
|
12456 |
-
|
12457 |
-
#: includes/settings/wcj-settings-
|
12458 |
-
msgid "
|
12459 |
-
msgstr ""
|
12460 |
-
|
12461 |
-
#: includes/settings/wcj-settings-
|
12462 |
-
msgid "
|
12463 |
-
msgstr ""
|
12464 |
-
|
12465 |
-
#: includes/settings/wcj-settings-
|
12466 |
-
|
12467 |
-
|
12468 |
-
|
12469 |
-
|
12470 |
-
|
12471 |
-
|
12472 |
-
|
12473 |
-
|
12474 |
-
|
12475 |
-
|
12476 |
-
|
12477 |
-
|
12478 |
-
|
12479 |
-
msgstr ""
|
12480 |
-
|
12481 |
-
#: includes/settings/wcj-settings-
|
12482 |
-
|
12483 |
-
|
12484 |
-
|
12485 |
-
|
12486 |
-
"
|
12487 |
-
|
12488 |
-
|
12489 |
-
|
12490 |
-
|
12491 |
-
|
12492 |
-
|
12493 |
-
|
12494 |
-
|
12495 |
-
|
12496 |
-
|
12497 |
-
|
12498 |
-
|
12499 |
-
|
12500 |
-
|
12501 |
-
|
12502 |
-
|
12503 |
-
|
12504 |
-
|
12505 |
-
|
12506 |
-
|
12507 |
-
|
12508 |
-
|
12509 |
-
msgstr ""
|
12510 |
-
|
12511 |
-
#: includes/settings/wcj-settings-
|
12512 |
-
|
12513 |
-
|
12514 |
-
|
12515 |
-
|
12516 |
-
|
12517 |
-
msgid ""
|
12518 |
-
"
|
12519 |
-
|
12520 |
-
|
12521 |
-
|
12522 |
-
|
12523 |
-
|
12524 |
-
|
12525 |
-
|
12526 |
-
|
12527 |
-
|
12528 |
-
|
12529 |
-
|
12530 |
-
|
12531 |
-
|
12532 |
-
"
|
12533 |
-
msgstr ""
|
12534 |
-
|
12535 |
-
#: includes/settings/wcj-settings-
|
12536 |
-
|
12537 |
-
|
12538 |
-
msgstr ""
|
12539 |
-
|
12540 |
-
#: includes/settings/wcj-settings-
|
12541 |
-
|
12542 |
-
|
12543 |
-
|
12544 |
-
msgstr ""
|
12545 |
-
|
12546 |
-
#: includes/settings/wcj-settings-
|
12547 |
-
|
12548 |
-
|
12549 |
-
|
12550 |
-
|
12551 |
-
|
12552 |
-
|
12553 |
-
|
12554 |
-
|
12555 |
-
|
12556 |
-
|
12557 |
-
|
12558 |
-
|
12559 |
-
|
12560 |
-
|
12561 |
-
|
12562 |
-
|
12563 |
-
|
12564 |
-
|
12565 |
-
|
12566 |
-
|
12567 |
-
|
12568 |
-
|
12569 |
-
|
12570 |
-
|
12571 |
-
|
12572 |
-
|
12573 |
-
|
12574 |
-
|
12575 |
-
|
12576 |
-
|
12577 |
-
|
12578 |
-
|
12579 |
-
|
12580 |
-
|
12581 |
-
|
12582 |
-
|
12583 |
-
|
12584 |
-
|
12585 |
-
|
12586 |
-
|
12587 |
-
|
12588 |
-
|
12589 |
-
|
12590 |
-
|
12591 |
-
|
12592 |
-
|
12593 |
-
|
12594 |
-
|
12595 |
-
|
12596 |
-
|
12597 |
-
|
12598 |
-
|
12599 |
-
|
12600 |
-
"
|
12601 |
-
|
12602 |
-
|
12603 |
-
|
12604 |
-
|
12605 |
-
msgstr ""
|
12606 |
-
|
12607 |
-
#: includes/settings/wcj-settings-
|
12608 |
-
|
12609 |
-
|
12610 |
-
|
12611 |
-
|
12612 |
-
|
12613 |
-
"
|
12614 |
-
|
12615 |
-
|
12616 |
-
|
12617 |
-
|
12618 |
-
|
12619 |
-
|
12620 |
-
|
12621 |
-
|
12622 |
-
|
12623 |
-
|
12624 |
-
|
12625 |
-
"
|
12626 |
-
|
12627 |
-
|
12628 |
-
|
12629 |
-
|
12630 |
-
|
12631 |
-
|
12632 |
-
|
12633 |
-
|
12634 |
-
msgid ""
|
12635 |
-
|
12636 |
-
|
12637 |
-
|
12638 |
-
"
|
12639 |
-
|
12640 |
-
|
12641 |
-
|
12642 |
-
|
12643 |
-
|
12644 |
-
|
12645 |
-
|
12646 |
-
|
12647 |
-
msgid ""
|
12648 |
-
|
12649 |
-
|
12650 |
-
|
12651 |
-
|
12652 |
-
|
12653 |
-
|
12654 |
-
|
12655 |
-
|
12656 |
-
|
12657 |
-
|
12658 |
-
|
12659 |
-
|
12660 |
-
|
12661 |
-
|
12662 |
-
|
12663 |
-
|
12664 |
-
#: includes/settings/wcj-settings-
|
12665 |
-
msgid "
|
12666 |
-
msgstr ""
|
12667 |
-
|
12668 |
-
#: includes/settings/wcj-settings-
|
12669 |
-
msgid ""
|
12670 |
-
|
12671 |
-
|
12672 |
-
|
12673 |
-
|
12674 |
-
|
12675 |
-
|
12676 |
-
|
12677 |
-
|
12678 |
-
|
12679 |
-
|
12680 |
-
|
12681 |
-
|
12682 |
-
#: includes/settings/wcj-settings-
|
12683 |
-
|
12684 |
-
|
12685 |
-
|
12686 |
-
|
12687 |
-
|
12688 |
-
|
12689 |
-
|
12690 |
-
|
12691 |
-
|
12692 |
-
|
12693 |
-
|
12694 |
-
|
12695 |
-
|
12696 |
-
|
12697 |
-
|
12698 |
-
|
12699 |
-
|
12700 |
-
|
12701 |
-
"
|
12702 |
-
msgstr ""
|
12703 |
-
|
12704 |
-
#: includes/settings/wcj-settings-
|
12705 |
-
msgid "
|
12706 |
-
msgstr ""
|
12707 |
-
|
12708 |
-
#: includes/settings/wcj-settings-
|
12709 |
-
msgid "
|
12710 |
-
msgstr ""
|
12711 |
-
|
12712 |
-
#: includes/settings/wcj-settings-
|
12713 |
-
msgid "
|
12714 |
-
msgstr ""
|
12715 |
-
|
12716 |
-
#: includes/settings/wcj-settings-
|
12717 |
-
msgid "
|
12718 |
-
msgstr ""
|
12719 |
-
|
12720 |
-
#: includes/settings/wcj-settings-
|
12721 |
-
msgid "
|
12722 |
-
msgstr ""
|
12723 |
-
|
12724 |
-
#: includes/settings/wcj-settings-
|
12725 |
-
msgid "
|
12726 |
-
msgstr ""
|
12727 |
-
|
12728 |
-
#: includes/settings/wcj-settings-
|
12729 |
-
msgid "
|
12730 |
-
msgstr ""
|
12731 |
-
|
12732 |
-
#: includes/settings/wcj-settings-
|
12733 |
-
msgid "
|
12734 |
-
msgstr ""
|
12735 |
-
|
12736 |
-
#: includes/settings/wcj-settings-
|
12737 |
-
|
12738 |
-
|
12739 |
-
|
12740 |
-
|
12741 |
-
|
12742 |
-
|
12743 |
-
|
12744 |
-
|
12745 |
-
|
12746 |
-
|
12747 |
-
|
12748 |
-
|
12749 |
-
|
12750 |
-
|
12751 |
-
|
12752 |
-
|
12753 |
-
|
12754 |
-
|
12755 |
-
|
12756 |
-
|
12757 |
-
|
12758 |
-
|
12759 |
-
|
12760 |
-
|
12761 |
-
|
12762 |
-
|
12763 |
-
|
12764 |
-
|
12765 |
-
|
12766 |
-
|
12767 |
-
|
12768 |
-
|
12769 |
-
|
12770 |
-
|
12771 |
-
|
12772 |
-
#: includes/settings/wcj-settings-
|
12773 |
-
|
12774 |
-
|
12775 |
-
|
12776 |
-
#: includes/settings/wcj-settings-
|
12777 |
-
msgid "
|
12778 |
-
msgstr ""
|
12779 |
-
|
12780 |
-
#: includes/settings/wcj-settings-
|
12781 |
-
|
12782 |
-
|
12783 |
-
|
12784 |
-
|
12785 |
-
|
12786 |
-
|
12787 |
-
|
12788 |
-
|
12789 |
-
|
12790 |
-
|
12791 |
-
|
12792 |
-
|
12793 |
-
|
12794 |
-
|
12795 |
-
|
12796 |
-
#: includes/settings/wcj-settings-
|
12797 |
-
msgid "
|
12798 |
-
msgstr ""
|
12799 |
-
|
12800 |
-
#: includes/settings/wcj-settings-
|
12801 |
-
msgid "
|
12802 |
-
msgstr ""
|
12803 |
-
|
12804 |
-
#: includes/settings/wcj-settings-
|
12805 |
-
|
12806 |
-
|
12807 |
-
|
12808 |
-
|
12809 |
-
|
12810 |
-
|
12811 |
-
|
12812 |
-
|
12813 |
-
|
12814 |
-
|
12815 |
-
|
12816 |
-
|
12817 |
-
|
12818 |
-
|
12819 |
-
|
12820 |
-
|
12821 |
-
|
12822 |
-
|
12823 |
-
|
12824 |
-
|
12825 |
-
|
12826 |
-
|
12827 |
-
|
12828 |
-
|
12829 |
-
|
12830 |
-
|
12831 |
-
|
12832 |
-
|
12833 |
-
|
12834 |
-
|
12835 |
-
|
12836 |
-
|
12837 |
-
"
|
12838 |
-
msgstr ""
|
12839 |
-
|
12840 |
-
#: includes/settings/wcj-settings-
|
12841 |
-
|
12842 |
-
|
12843 |
-
|
12844 |
-
|
12845 |
-
|
12846 |
-
|
12847 |
-
|
12848 |
-
|
12849 |
-
|
12850 |
-
|
12851 |
-
|
12852 |
-
|
12853 |
-
|
12854 |
-
|
12855 |
-
|
12856 |
-
|
12857 |
-
"
|
12858 |
-
|
12859 |
-
|
12860 |
-
|
12861 |
-
"
|
12862 |
-
msgstr ""
|
12863 |
-
|
12864 |
-
#: includes/settings/wcj-settings-
|
12865 |
-
|
12866 |
-
|
12867 |
-
|
12868 |
-
|
12869 |
-
#: includes/settings/wcj-settings-
|
12870 |
-
msgid "
|
12871 |
-
|
12872 |
-
|
12873 |
-
|
12874 |
-
|
12875 |
-
|
12876 |
-
"
|
12877 |
-
msgstr ""
|
12878 |
-
|
12879 |
-
#: includes/settings/wcj-settings-
|
12880 |
-
msgid "
|
12881 |
-
msgstr ""
|
12882 |
-
|
12883 |
-
#: includes/settings/wcj-settings-
|
12884 |
-
|
12885 |
-
|
12886 |
-
|
12887 |
-
|
12888 |
-
|
12889 |
-
|
12890 |
-
|
12891 |
-
|
12892 |
-
|
12893 |
-
|
12894 |
-
|
12895 |
-
|
12896 |
-
|
12897 |
-
|
12898 |
-
|
12899 |
-
|
12900 |
-
|
12901 |
-
|
12902 |
-
|
12903 |
-
|
12904 |
-
|
12905 |
-
|
12906 |
-
|
12907 |
-
|
12908 |
-
|
12909 |
-
|
12910 |
-
|
12911 |
-
#: includes/settings/wcj-settings-
|
12912 |
-
|
12913 |
-
"
|
12914 |
-
|
12915 |
-
|
12916 |
-
|
12917 |
-
#: includes/settings/wcj-settings-
|
12918 |
-
msgid ""
|
12919 |
-
|
12920 |
-
|
12921 |
-
|
12922 |
-
|
12923 |
-
|
12924 |
-
|
12925 |
-
|
12926 |
-
|
12927 |
-
#: includes/settings/wcj-settings-
|
12928 |
-
|
12929 |
-
|
12930 |
-
|
12931 |
-
|
12932 |
-
|
12933 |
-
#: includes/settings/wcj-settings-
|
12934 |
-
msgid "
|
12935 |
-
msgstr ""
|
12936 |
-
|
12937 |
-
#: includes/settings/wcj-settings-
|
12938 |
-
msgid "
|
12939 |
-
msgstr ""
|
12940 |
-
|
12941 |
-
#: includes/settings/wcj-settings-
|
12942 |
-
msgid "
|
12943 |
-
msgstr ""
|
12944 |
-
|
12945 |
-
#: includes/settings/wcj-settings-
|
12946 |
-
msgid ""
|
12947 |
-
|
12948 |
-
|
12949 |
-
|
12950 |
-
|
12951 |
-
|
12952 |
-
|
12953 |
-
msgstr ""
|
12954 |
-
|
12955 |
-
#: includes/settings/wcj-settings-
|
12956 |
-
msgid ""
|
12957 |
-
|
12958 |
-
|
12959 |
-
|
12960 |
-
|
12961 |
-
|
12962 |
-
|
12963 |
-
msgstr ""
|
12964 |
-
|
12965 |
-
#: includes/settings/wcj-settings-
|
12966 |
-
msgid "
|
12967 |
-
msgstr ""
|
12968 |
-
|
12969 |
-
#: includes/settings/wcj-settings-
|
12970 |
-
msgid "
|
12971 |
-
msgstr ""
|
12972 |
-
|
12973 |
-
#: includes/settings/wcj-settings-
|
12974 |
-
msgid "
|
12975 |
-
msgstr ""
|
12976 |
-
|
12977 |
-
#: includes/settings/wcj-settings-
|
12978 |
-
msgid "
|
12979 |
-
msgstr ""
|
12980 |
-
|
12981 |
-
#: includes/settings/wcj-settings-
|
12982 |
-
msgid "
|
12983 |
-
msgstr ""
|
12984 |
-
|
12985 |
-
#: includes/settings/wcj-settings-
|
12986 |
-
msgid "
|
12987 |
-
msgstr ""
|
12988 |
-
|
12989 |
-
#: includes/settings/wcj-settings-
|
12990 |
-
msgid "
|
12991 |
-
msgstr ""
|
12992 |
-
|
12993 |
-
#: includes/settings/wcj-settings-
|
12994 |
-
msgid "
|
12995 |
-
msgstr ""
|
12996 |
-
|
12997 |
-
#: includes/settings/wcj-settings-
|
12998 |
-
msgid "
|
12999 |
-
msgstr ""
|
13000 |
-
|
13001 |
-
#: includes/settings/wcj-settings-
|
13002 |
-
msgid "
|
13003 |
-
msgstr ""
|
13004 |
-
|
13005 |
-
#: includes/settings/wcj-settings-
|
13006 |
-
msgid "
|
13007 |
-
msgstr ""
|
13008 |
-
|
13009 |
-
#: includes/settings/wcj-settings-
|
13010 |
-
msgid "
|
13011 |
-
msgstr ""
|
13012 |
-
|
13013 |
-
#: includes/settings/wcj-settings-
|
13014 |
-
#: includes/settings/wcj-settings-
|
13015 |
-
|
13016 |
-
|
13017 |
-
|
13018 |
-
|
13019 |
-
|
13020 |
-
|
13021 |
-
|
13022 |
-
|
13023 |
-
|
13024 |
-
|
13025 |
-
|
13026 |
-
|
13027 |
-
|
13028 |
-
|
13029 |
-
|
13030 |
-
|
13031 |
-
|
13032 |
-
|
13033 |
-
|
13034 |
-
|
13035 |
-
#: includes/settings/wcj-settings-
|
13036 |
-
|
13037 |
-
|
13038 |
-
|
13039 |
-
|
13040 |
-
|
13041 |
-
|
13042 |
-
#: includes/settings/wcj-settings-
|
13043 |
-
|
13044 |
-
|
13045 |
-
|
13046 |
-
#: includes/settings/wcj-settings-
|
13047 |
-
|
13048 |
-
|
13049 |
-
|
13050 |
-
|
13051 |
-
"
|
13052 |
-
msgstr ""
|
13053 |
-
|
13054 |
-
#: includes/settings/wcj-settings-
|
13055 |
-
msgid ""
|
13056 |
-
"
|
13057 |
-
"
|
13058 |
-
|
13059 |
-
|
13060 |
-
|
13061 |
-
#: includes/settings/wcj-settings-
|
13062 |
-
|
13063 |
-
msgid ""
|
13064 |
-
|
13065 |
-
|
13066 |
-
|
13067 |
-
|
13068 |
-
|
13069 |
-
|
13070 |
-
|
13071 |
-
|
13072 |
-
|
13073 |
-
|
13074 |
-
msgstr ""
|
13075 |
-
|
13076 |
-
#: includes/settings/wcj-settings-
|
13077 |
-
msgid "
|
13078 |
-
msgstr ""
|
13079 |
-
|
13080 |
-
#: includes/settings/wcj-settings-
|
13081 |
-
msgid "
|
13082 |
-
|
13083 |
-
|
13084 |
-
|
13085 |
-
|
13086 |
-
|
13087 |
-
|
13088 |
-
|
13089 |
-
|
13090 |
-
#: includes/settings/wcj-settings-
|
13091 |
-
msgid "
|
13092 |
-
|
13093 |
-
|
13094 |
-
|
13095 |
-
|
13096 |
-
|
13097 |
-
|
13098 |
-
|
13099 |
-
|
13100 |
-
|
13101 |
-
|
13102 |
-
|
13103 |
-
|
13104 |
-
"
|
13105 |
-
"
|
13106 |
-
msgstr ""
|
13107 |
-
|
13108 |
-
#: includes/settings/wcj-settings-
|
13109 |
-
msgid "
|
13110 |
-
msgstr ""
|
13111 |
-
|
13112 |
-
#: includes/settings/wcj-settings-
|
13113 |
-
msgid "
|
13114 |
-
msgstr ""
|
13115 |
-
|
13116 |
-
#: includes/settings/wcj-settings-
|
13117 |
-
msgid "
|
13118 |
-
msgstr ""
|
13119 |
-
|
13120 |
-
#: includes/settings/wcj-settings-
|
13121 |
-
msgid "
|
13122 |
-
msgstr ""
|
13123 |
-
|
13124 |
-
#: includes/settings/wcj-settings-
|
13125 |
-
msgid "
|
13126 |
-
|
13127 |
-
|
13128 |
-
|
13129 |
-
|
13130 |
-
|
13131 |
-
|
13132 |
-
|
13133 |
-
|
13134 |
-
|
13135 |
-
|
13136 |
-
|
13137 |
-
|
13138 |
-
|
13139 |
-
|
13140 |
-
|
13141 |
-
|
13142 |
-
|
13143 |
-
|
13144 |
-
|
13145 |
-
|
13146 |
-
|
13147 |
-
|
13148 |
-
|
13149 |
-
|
13150 |
-
|
13151 |
-
|
13152 |
-
|
13153 |
-
|
13154 |
-
|
13155 |
-
|
13156 |
-
|
13157 |
-
|
13158 |
-
|
13159 |
-
|
13160 |
-
|
13161 |
-
|
13162 |
-
|
13163 |
-
|
13164 |
-
|
13165 |
-
|
13166 |
-
|
13167 |
-
|
13168 |
-
|
13169 |
-
|
13170 |
-
|
13171 |
-
|
13172 |
-
|
13173 |
-
|
13174 |
-
|
13175 |
-
|
13176 |
-
|
13177 |
-
|
13178 |
-
|
13179 |
-
|
13180 |
-
|
13181 |
-
|
13182 |
-
|
13183 |
-
|
13184 |
-
|
13185 |
-
|
13186 |
-
|
13187 |
-
|
13188 |
-
|
13189 |
-
|
13190 |
-
|
13191 |
-
|
13192 |
-
|
13193 |
-
|
13194 |
-
|
13195 |
-
|
13196 |
-
|
13197 |
-
|
13198 |
-
"
|
13199 |
-
"
|
13200 |
-
|
13201 |
-
|
13202 |
-
|
13203 |
-
|
13204 |
-
|
13205 |
-
|
13206 |
-
#: includes/settings/wcj-settings-payment-gateways-
|
13207 |
-
msgid "
|
13208 |
-
msgstr ""
|
13209 |
-
|
13210 |
-
#: includes/settings/wcj-settings-
|
13211 |
-
|
13212 |
-
|
13213 |
-
|
13214 |
-
|
13215 |
-
|
13216 |
-
|
13217 |
-
|
13218 |
-
|
13219 |
-
|
13220 |
-
|
13221 |
-
|
13222 |
-
|
13223 |
-
|
13224 |
-
|
13225 |
-
|
13226 |
-
|
13227 |
-
|
13228 |
-
|
13229 |
-
|
13230 |
-
|
13231 |
-
|
13232 |
-
|
13233 |
-
|
13234 |
-
|
13235 |
-
#: includes/settings/wcj-settings-
|
13236 |
-
msgid "
|
13237 |
-
msgstr ""
|
13238 |
-
|
13239 |
-
#: includes/settings/wcj-settings-
|
13240 |
-
|
13241 |
-
|
13242 |
-
|
13243 |
-
|
13244 |
-
|
13245 |
-
|
13246 |
-
|
13247 |
-
|
13248 |
-
|
13249 |
-
|
13250 |
-
|
13251 |
-
|
13252 |
-
|
13253 |
-
|
13254 |
-
|
13255 |
-
|
13256 |
-
|
13257 |
-
|
13258 |
-
|
13259 |
-
|
13260 |
-
|
13261 |
-
|
13262 |
-
|
13263 |
-
|
13264 |
-
|
13265 |
-
|
13266 |
-
|
13267 |
-
|
13268 |
-
|
13269 |
-
|
13270 |
-
|
13271 |
-
|
13272 |
-
|
13273 |
-
|
13274 |
-
|
13275 |
-
|
13276 |
-
|
13277 |
-
|
13278 |
-
|
13279 |
-
|
13280 |
-
|
13281 |
-
|
13282 |
-
|
13283 |
-
|
13284 |
-
|
13285 |
-
|
13286 |
-
|
13287 |
-
#: includes/settings/wcj-settings-
|
13288 |
-
msgid "
|
13289 |
-
|
13290 |
-
|
13291 |
-
|
13292 |
-
|
13293 |
-
|
13294 |
-
"
|
13295 |
-
msgstr ""
|
13296 |
-
|
13297 |
-
#: includes/settings/wcj-settings-
|
13298 |
-
|
13299 |
-
|
13300 |
-
|
13301 |
-
|
13302 |
-
|
13303 |
-
|
13304 |
-
|
13305 |
-
|
13306 |
-
|
13307 |
-
|
13308 |
-
|
13309 |
-
|
13310 |
-
#: includes/settings/wcj-settings-
|
13311 |
-
|
13312 |
-
|
13313 |
-
|
13314 |
-
|
13315 |
-
|
13316 |
-
|
13317 |
-
|
13318 |
-
|
13319 |
-
|
13320 |
-
|
13321 |
-
|
13322 |
-
#: includes/settings/wcj-settings-
|
13323 |
-
|
13324 |
-
|
13325 |
-
|
13326 |
-
|
13327 |
-
|
13328 |
-
|
13329 |
-
"
|
13330 |
-
|
13331 |
-
|
13332 |
-
|
13333 |
-
|
13334 |
-
|
13335 |
-
|
13336 |
-
|
13337 |
-
|
13338 |
-
|
13339 |
-
msgstr ""
|
13340 |
-
|
13341 |
-
#: includes/settings/wcj-settings-
|
13342 |
-
msgid "
|
13343 |
-
msgstr ""
|
13344 |
-
|
13345 |
-
#: includes/settings/wcj-settings-
|
13346 |
-
|
13347 |
-
|
13348 |
-
|
13349 |
-
|
13350 |
-
|
13351 |
-
|
13352 |
-
|
13353 |
-
|
13354 |
-
|
13355 |
-
|
13356 |
-
"
|
13357 |
-
|
13358 |
-
|
13359 |
-
|
13360 |
-
|
13361 |
-
|
13362 |
-
|
13363 |
-
|
13364 |
-
|
13365 |
-
|
13366 |
-
|
13367 |
-
|
13368 |
-
|
13369 |
-
|
13370 |
-
|
13371 |
-
msgstr ""
|
13372 |
-
|
13373 |
-
#: includes/settings/wcj-settings-
|
13374 |
-
msgid ""
|
13375 |
-
|
13376 |
-
|
13377 |
-
|
13378 |
-
|
13379 |
-
|
13380 |
-
|
13381 |
-
|
13382 |
-
|
13383 |
-
|
13384 |
-
|
13385 |
-
|
13386 |
-
|
13387 |
-
|
13388 |
-
|
13389 |
-
|
13390 |
-
|
13391 |
-
|
13392 |
-
|
13393 |
-
|
13394 |
-
"
|
13395 |
-
"
|
13396 |
-
|
13397 |
-
|
13398 |
-
|
13399 |
-
|
13400 |
-
|
13401 |
-
msgstr ""
|
13402 |
-
|
13403 |
-
#: includes/settings/wcj-settings-
|
13404 |
-
|
13405 |
-
|
13406 |
-
|
13407 |
-
|
13408 |
-
|
13409 |
-
|
13410 |
-
|
13411 |
-
|
13412 |
-
|
13413 |
-
|
13414 |
-
|
13415 |
-
|
13416 |
-
|
13417 |
-
|
13418 |
-
|
13419 |
-
|
13420 |
-
|
13421 |
-
|
13422 |
-
|
13423 |
-
|
13424 |
-
|
13425 |
-
|
13426 |
-
|
13427 |
-
|
13428 |
-
|
13429 |
-
|
13430 |
-
|
13431 |
-
|
13432 |
-
|
13433 |
-
|
13434 |
-
|
13435 |
-
|
13436 |
-
|
13437 |
-
|
13438 |
-
|
13439 |
-
|
13440 |
-
|
13441 |
-
|
13442 |
-
|
13443 |
-
|
13444 |
-
|
13445 |
-
|
13446 |
-
|
13447 |
-
|
13448 |
-
|
13449 |
-
|
13450 |
-
|
13451 |
-
|
13452 |
-
|
13453 |
-
|
13454 |
-
|
13455 |
-
|
13456 |
-
|
13457 |
-
|
13458 |
-
|
13459 |
-
|
13460 |
-
|
13461 |
-
|
13462 |
-
|
13463 |
-
|
13464 |
-
|
13465 |
-
|
13466 |
-
|
13467 |
-
|
13468 |
-
#: includes/settings/wcj-settings-
|
13469 |
-
|
13470 |
-
|
13471 |
-
|
13472 |
-
|
13473 |
-
|
13474 |
-
|
13475 |
-
|
13476 |
-
|
13477 |
-
|
13478 |
-
|
13479 |
-
|
13480 |
-
#: includes/settings/wcj-settings-
|
13481 |
-
msgid "
|
13482 |
-
msgstr ""
|
13483 |
-
|
13484 |
-
#: includes/settings/wcj-settings-
|
13485 |
-
|
13486 |
-
|
13487 |
-
|
13488 |
-
|
13489 |
-
|
13490 |
-
|
13491 |
-
|
13492 |
-
|
13493 |
-
|
13494 |
-
|
13495 |
-
|
13496 |
-
|
13497 |
-
|
13498 |
-
|
13499 |
-
|
13500 |
-
|
13501 |
-
|
13502 |
-
|
13503 |
-
|
13504 |
-
|
13505 |
-
|
13506 |
-
|
13507 |
-
|
13508 |
-
|
13509 |
-
|
13510 |
-
|
13511 |
-
|
13512 |
-
|
13513 |
-
|
13514 |
-
|
13515 |
-
|
13516 |
-
|
13517 |
-
|
13518 |
-
|
13519 |
-
|
13520 |
-
|
13521 |
-
|
13522 |
-
msgstr ""
|
13523 |
-
|
13524 |
-
#: includes/settings/wcj-settings-
|
13525 |
-
|
13526 |
-
|
13527 |
-
|
13528 |
-
|
13529 |
-
|
13530 |
-
|
13531 |
-
|
13532 |
-
|
13533 |
-
|
13534 |
-
|
13535 |
-
|
13536 |
-
|
13537 |
-
|
13538 |
-
|
13539 |
-
|
13540 |
-
|
13541 |
-
|
13542 |
-
|
13543 |
-
|
13544 |
-
|
13545 |
-
|
13546 |
-
|
13547 |
-
|
13548 |
-
|
13549 |
-
|
13550 |
-
|
13551 |
-
|
13552 |
-
|
13553 |
-
|
13554 |
-
|
13555 |
-
|
13556 |
-
|
13557 |
-
|
13558 |
-
|
13559 |
-
|
13560 |
-
|
13561 |
-
|
13562 |
-
|
13563 |
-
|
13564 |
-
|
13565 |
-
|
13566 |
-
|
13567 |
-
|
13568 |
-
|
13569 |
-
|
13570 |
-
|
13571 |
-
|
13572 |
-
|
13573 |
-
|
13574 |
-
|
13575 |
-
#: includes/settings/wcj-settings-
|
13576 |
-
msgid "
|
13577 |
-
msgstr ""
|
13578 |
-
|
13579 |
-
#: includes/settings/wcj-settings-
|
13580 |
-
|
13581 |
-
|
13582 |
-
|
13583 |
-
|
13584 |
-
|
13585 |
-
|
13586 |
-
|
13587 |
-
|
13588 |
-
|
13589 |
-
|
13590 |
-
|
13591 |
-
|
13592 |
-
|
13593 |
-
|
13594 |
-
|
13595 |
-
|
13596 |
-
|
13597 |
-
|
13598 |
-
|
13599 |
-
msgstr ""
|
13600 |
-
|
13601 |
-
#: includes/settings/wcj-settings-
|
13602 |
-
msgid "
|
13603 |
-
|
13604 |
-
|
13605 |
-
|
13606 |
-
|
13607 |
-
|
13608 |
-
"
|
13609 |
-
msgstr ""
|
13610 |
-
|
13611 |
-
#: includes/settings/wcj-settings-
|
13612 |
-
msgid "
|
13613 |
-
|
13614 |
-
|
13615 |
-
|
13616 |
-
|
13617 |
-
|
13618 |
-
|
13619 |
-
|
13620 |
-
|
13621 |
-
|
13622 |
-
|
13623 |
-
|
13624 |
-
|
13625 |
-
|
13626 |
-
|
13627 |
-
|
13628 |
-
|
13629 |
-
|
13630 |
-
|
13631 |
-
|
13632 |
-
|
13633 |
-
msgstr ""
|
13634 |
-
|
13635 |
-
#: includes/settings/wcj-settings-
|
13636 |
-
msgid "
|
13637 |
-
msgstr ""
|
13638 |
-
|
13639 |
-
#: includes/settings/wcj-settings-
|
13640 |
-
msgid "
|
13641 |
-
|
13642 |
-
|
13643 |
-
|
13644 |
-
|
13645 |
-
|
13646 |
-
|
13647 |
-
|
13648 |
-
|
13649 |
-
|
13650 |
-
|
13651 |
-
|
13652 |
-
|
13653 |
-
|
13654 |
-
|
13655 |
-
|
13656 |
-
|
13657 |
-
|
13658 |
-
|
13659 |
-
|
13660 |
-
|
13661 |
-
|
13662 |
-
|
13663 |
-
|
13664 |
-
|
13665 |
-
|
13666 |
-
"
|
13667 |
-
|
13668 |
-
|
13669 |
-
|
13670 |
-
|
13671 |
-
|
13672 |
-
|
13673 |
-
|
13674 |
-
|
13675 |
-
|
13676 |
-
|
13677 |
-
|
13678 |
-
|
13679 |
-
|
13680 |
-
|
13681 |
-
|
13682 |
-
|
13683 |
-
|
13684 |
-
|
13685 |
-
#: includes/settings/wcj-settings-
|
13686 |
-
msgid "
|
13687 |
-
msgstr ""
|
13688 |
-
|
13689 |
-
#: includes/settings/wcj-settings-
|
13690 |
-
msgid "
|
13691 |
-
msgstr ""
|
13692 |
-
|
13693 |
-
#: includes/settings/wcj-settings-
|
13694 |
-
msgid "
|
13695 |
-
msgstr ""
|
13696 |
-
|
13697 |
-
#: includes/settings/wcj-settings-
|
13698 |
-
|
13699 |
-
|
13700 |
-
|
13701 |
-
|
13702 |
-
|
13703 |
-
|
13704 |
-
|
13705 |
-
|
13706 |
-
|
13707 |
-
|
13708 |
-
|
13709 |
-
|
13710 |
-
|
13711 |
-
|
13712 |
-
|
13713 |
-
|
13714 |
-
|
13715 |
-
|
13716 |
-
|
13717 |
-
#: includes/settings/wcj-settings-
|
13718 |
-
#: includes/settings/wcj-settings-
|
13719 |
-
#: includes/settings/wcj-settings-
|
13720 |
-
|
13721 |
-
|
13722 |
-
|
13723 |
-
|
13724 |
-
|
13725 |
-
|
13726 |
-
|
13727 |
-
|
13728 |
-
|
13729 |
-
#: includes/settings/wcj-settings-
|
13730 |
-
#: includes/settings/wcj-settings-
|
13731 |
-
|
13732 |
-
|
13733 |
-
|
13734 |
-
|
13735 |
-
|
13736 |
-
msgstr ""
|
13737 |
-
|
13738 |
-
#: includes/settings/wcj-settings-
|
13739 |
-
msgid "
|
13740 |
-
|
13741 |
-
|
13742 |
-
|
13743 |
-
|
13744 |
-
|
13745 |
-
|
13746 |
-
|
13747 |
-
msgid "
|
13748 |
-
|
13749 |
-
|
13750 |
-
|
13751 |
-
|
13752 |
-
|
13753 |
-
|
13754 |
-
|
13755 |
-
|
13756 |
-
|
13757 |
-
|
13758 |
-
|
13759 |
-
|
13760 |
-
|
13761 |
-
|
13762 |
-
|
13763 |
-
|
13764 |
-
|
13765 |
-
|
13766 |
-
|
13767 |
-
|
13768 |
-
|
13769 |
-
|
13770 |
-
|
13771 |
-
|
13772 |
-
|
13773 |
-
|
13774 |
-
#: includes/settings/wcj-settings-
|
13775 |
-
msgid "
|
13776 |
-
msgstr ""
|
13777 |
-
|
13778 |
-
#: includes/settings/wcj-settings-
|
13779 |
-
|
13780 |
-
|
13781 |
-
|
13782 |
-
|
13783 |
-
|
13784 |
-
|
13785 |
-
|
13786 |
-
|
13787 |
-
msgid ""
|
13788 |
-
"
|
13789 |
-
"
|
13790 |
-
|
13791 |
-
|
13792 |
-
|
13793 |
-
|
13794 |
-
|
13795 |
-
|
13796 |
-
|
13797 |
-
|
13798 |
-
|
13799 |
-
|
13800 |
-
|
13801 |
-
|
13802 |
-
|
13803 |
-
|
13804 |
-
|
13805 |
-
|
13806 |
-
|
13807 |
-
|
13808 |
-
|
13809 |
-
|
13810 |
-
|
13811 |
-
|
13812 |
-
|
13813 |
-
msgid "
|
13814 |
-
msgstr ""
|
13815 |
-
|
13816 |
-
#: includes/settings/wcj-settings-
|
13817 |
-
msgid "
|
13818 |
-
msgstr ""
|
13819 |
-
|
13820 |
-
#: includes/settings/wcj-settings-
|
13821 |
-
msgid "
|
13822 |
-
msgstr ""
|
13823 |
-
|
13824 |
-
#: includes/settings/wcj-settings-
|
13825 |
-
|
13826 |
-
msgid "
|
13827 |
-
msgstr ""
|
13828 |
-
|
13829 |
-
#: includes/settings/wcj-settings-
|
13830 |
-
msgid "
|
13831 |
-
msgstr ""
|
13832 |
-
|
13833 |
-
#: includes/settings/wcj-settings-
|
13834 |
-
msgid "
|
13835 |
-
msgstr ""
|
13836 |
-
|
13837 |
-
#: includes/settings/wcj-settings-
|
13838 |
-
msgid "
|
13839 |
-
msgstr ""
|
13840 |
-
|
13841 |
-
#: includes/settings/wcj-settings-
|
13842 |
-
msgid "
|
13843 |
-
msgstr ""
|
13844 |
-
|
13845 |
-
#: includes/settings/wcj-settings-
|
13846 |
-
msgid "
|
13847 |
-
msgstr ""
|
13848 |
-
|
13849 |
-
#: includes/settings/wcj-settings-
|
13850 |
-
msgid "
|
13851 |
-
msgstr ""
|
13852 |
-
|
13853 |
-
#: includes/settings/wcj-settings-
|
13854 |
-
msgid "
|
13855 |
-
msgstr ""
|
13856 |
-
|
13857 |
-
#: includes/settings/wcj-settings-
|
13858 |
-
msgid "
|
13859 |
-
msgstr ""
|
13860 |
-
|
13861 |
-
#: includes/settings/wcj-settings-
|
13862 |
-
|
13863 |
-
|
13864 |
-
"
|
13865 |
-
|
13866 |
-
|
13867 |
-
|
13868 |
-
|
13869 |
-
|
13870 |
-
|
13871 |
-
|
13872 |
-
|
13873 |
-
"
|
13874 |
-
|
13875 |
-
|
13876 |
-
|
13877 |
-
|
13878 |
-
|
13879 |
-
|
13880 |
-
|
13881 |
-
|
13882 |
-
|
13883 |
-
"
|
13884 |
-
|
13885 |
-
|
13886 |
-
|
13887 |
-
|
13888 |
-
|
13889 |
-
|
13890 |
-
|
13891 |
-
|
13892 |
-
|
13893 |
-
|
13894 |
-
|
13895 |
-
|
13896 |
-
|
13897 |
-
|
13898 |
-
|
13899 |
-
|
13900 |
-
|
13901 |
-
|
13902 |
-
|
13903 |
-
|
13904 |
-
|
13905 |
-
msgstr ""
|
13906 |
-
|
13907 |
-
#: includes/settings/wcj-settings-
|
13908 |
-
msgid "
|
13909 |
-
msgstr ""
|
13910 |
-
|
13911 |
-
#: includes/settings/wcj-settings-
|
13912 |
-
msgid "
|
13913 |
-
msgstr ""
|
13914 |
-
|
13915 |
-
#: includes/settings/wcj-settings-
|
13916 |
-
msgid "
|
13917 |
-
msgstr ""
|
13918 |
-
|
13919 |
-
#: includes/settings/wcj-settings-
|
13920 |
-
msgid "
|
13921 |
-
msgstr ""
|
13922 |
-
|
13923 |
-
#: includes/settings/wcj-settings-
|
13924 |
-
msgid "
|
13925 |
-
msgstr ""
|
13926 |
-
|
13927 |
-
#: includes/settings/wcj-settings-
|
13928 |
-
msgid "
|
13929 |
-
msgstr ""
|
13930 |
-
|
13931 |
-
#: includes/settings/wcj-settings-
|
13932 |
-
msgid "
|
13933 |
-
msgstr ""
|
13934 |
-
|
13935 |
-
#: includes/settings/wcj-settings-
|
13936 |
-
msgid "
|
13937 |
-
msgstr ""
|
13938 |
-
|
13939 |
-
#: includes/settings/wcj-settings-
|
13940 |
-
|
13941 |
-
|
13942 |
-
|
13943 |
-
|
13944 |
-
|
13945 |
-
|
13946 |
-
"
|
13947 |
-
|
13948 |
-
|
13949 |
-
|
13950 |
-
|
13951 |
-
|
13952 |
-
|
13953 |
-
|
13954 |
-
|
13955 |
-
|
13956 |
-
|
13957 |
-
|
13958 |
-
|
13959 |
-
|
13960 |
-
|
13961 |
-
|
13962 |
-
|
13963 |
-
|
13964 |
-
|
13965 |
-
|
13966 |
-
|
13967 |
-
|
13968 |
-
|
13969 |
-
|
13970 |
-
#: includes/settings/wcj-settings-price-
|
13971 |
-
|
13972 |
-
|
13973 |
-
|
13974 |
-
|
13975 |
-
#: includes/settings/wcj-settings-
|
13976 |
-
msgid "
|
13977 |
-
|
13978 |
-
|
13979 |
-
|
13980 |
-
|
13981 |
-
|
13982 |
-
|
13983 |
-
#: includes/settings/wcj-settings-
|
13984 |
-
msgid "
|
13985 |
-
msgstr ""
|
13986 |
-
|
13987 |
-
#: includes/settings/wcj-settings-
|
13988 |
-
msgid "
|
13989 |
-
|
13990 |
-
|
13991 |
-
|
13992 |
-
|
13993 |
-
|
13994 |
-
|
13995 |
-
#: includes/settings/wcj-settings-
|
13996 |
-
msgid "
|
13997 |
-
msgstr ""
|
13998 |
-
|
13999 |
-
#: includes/settings/wcj-settings-
|
14000 |
-
msgid "
|
14001 |
-
|
14002 |
-
|
14003 |
-
|
14004 |
-
|
14005 |
-
|
14006 |
-
|
14007 |
-
|
14008 |
-
|
14009 |
-
|
14010 |
-
|
14011 |
-
|
14012 |
-
|
14013 |
-
|
14014 |
-
|
14015 |
-
|
14016 |
-
|
14017 |
-
|
14018 |
-
|
14019 |
-
|
14020 |
-
|
14021 |
-
|
14022 |
-
|
14023 |
-
|
14024 |
-
|
14025 |
-
|
14026 |
-
|
14027 |
-
|
14028 |
-
|
14029 |
-
|
14030 |
-
|
14031 |
-
msgid "
|
14032 |
-
msgstr ""
|
14033 |
-
|
14034 |
-
#: includes/settings/wcj-settings-
|
14035 |
-
msgid "
|
14036 |
-
msgstr ""
|
14037 |
-
|
14038 |
-
#: includes/settings/wcj-settings-
|
14039 |
-
msgid "
|
14040 |
-
|
14041 |
-
|
14042 |
-
|
14043 |
-
|
14044 |
-
|
14045 |
-
|
14046 |
-
|
14047 |
-
|
14048 |
-
|
14049 |
-
|
14050 |
-
|
14051 |
-
|
14052 |
-
|
14053 |
-
|
14054 |
-
|
14055 |
-
|
14056 |
-
|
14057 |
-
|
14058 |
-
|
14059 |
-
|
14060 |
-
|
14061 |
-
|
14062 |
-
|
14063 |
-
|
14064 |
-
|
14065 |
-
|
14066 |
-
|
14067 |
-
|
14068 |
-
|
14069 |
-
|
14070 |
-
|
14071 |
-
|
14072 |
-
|
14073 |
-
msgid ""
|
14074 |
-
|
14075 |
-
|
14076 |
-
|
14077 |
-
|
14078 |
-
|
14079 |
-
|
14080 |
-
|
14081 |
-
|
14082 |
-
|
14083 |
-
|
14084 |
-
msgid "
|
14085 |
-
msgstr ""
|
14086 |
-
|
14087 |
-
#: includes/settings/wcj-settings-
|
14088 |
-
|
14089 |
-
|
14090 |
-
|
14091 |
-
|
14092 |
-
|
14093 |
-
|
14094 |
-
|
14095 |
-
|
14096 |
-
|
14097 |
-
|
14098 |
-
|
14099 |
-
|
14100 |
-
|
14101 |
-
|
14102 |
-
|
14103 |
-
|
14104 |
-
|
14105 |
-
|
14106 |
-
|
14107 |
-
|
14108 |
-
|
14109 |
-
|
14110 |
-
|
14111 |
-
|
14112 |
-
|
14113 |
-
|
14114 |
-
|
14115 |
-
|
14116 |
-
|
14117 |
-
|
14118 |
-
|
14119 |
-
|
14120 |
-
|
14121 |
-
|
14122 |
-
|
14123 |
-
|
14124 |
-
|
14125 |
-
|
14126 |
-
|
14127 |
-
|
14128 |
-
|
14129 |
-
|
14130 |
-
|
14131 |
-
|
14132 |
-
|
14133 |
-
|
14134 |
-
|
14135 |
-
|
14136 |
-
|
14137 |
-
|
14138 |
-
#: includes/settings/wcj-settings-
|
14139 |
-
|
14140 |
-
|
14141 |
-
|
14142 |
-
|
14143 |
-
|
14144 |
-
|
14145 |
-
|
14146 |
-
|
14147 |
-
|
14148 |
-
#: includes/settings/wcj-settings-
|
14149 |
-
|
14150 |
-
|
14151 |
-
|
14152 |
-
|
14153 |
-
|
14154 |
-
|
14155 |
-
|
14156 |
-
|
14157 |
-
|
14158 |
-
|
14159 |
-
|
14160 |
-
|
14161 |
-
|
14162 |
-
|
14163 |
-
|
14164 |
-
#: includes/settings/wcj-settings-
|
14165 |
-
|
14166 |
-
|
14167 |
-
|
14168 |
-
|
14169 |
-
|
14170 |
-
|
14171 |
-
|
14172 |
-
|
14173 |
-
|
14174 |
-
|
14175 |
-
|
14176 |
-
|
14177 |
-
|
14178 |
-
|
14179 |
-
|
14180 |
-
|
14181 |
-
|
14182 |
-
|
14183 |
-
|
14184 |
-
|
14185 |
-
"
|
14186 |
-
|
14187 |
-
|
14188 |
-
|
14189 |
-
|
14190 |
-
|
14191 |
-
|
14192 |
-
|
14193 |
-
|
14194 |
-
|
14195 |
-
|
14196 |
-
|
14197 |
-
|
14198 |
-
|
14199 |
-
|
14200 |
-
|
14201 |
-
|
14202 |
-
|
14203 |
-
|
14204 |
-
|
14205 |
-
|
14206 |
-
|
14207 |
-
|
14208 |
-
|
14209 |
-
|
14210 |
-
|
14211 |
-
|
14212 |
-
|
14213 |
-
|
14214 |
-
|
14215 |
-
|
14216 |
-
#: includes/settings/wcj-settings-
|
14217 |
-
|
14218 |
-
|
14219 |
-
|
14220 |
-
|
14221 |
-
#: includes/settings/wcj-settings-
|
14222 |
-
|
14223 |
-
|
14224 |
-
|
14225 |
-
|
14226 |
-
|
14227 |
-
|
14228 |
-
|
14229 |
-
|
14230 |
-
|
14231 |
-
|
14232 |
-
|
14233 |
-
|
14234 |
-
|
14235 |
-
|
14236 |
-
|
14237 |
-
|
14238 |
-
|
14239 |
-
|
14240 |
-
|
14241 |
-
|
14242 |
-
|
14243 |
-
|
14244 |
-
|
14245 |
-
|
14246 |
-
|
14247 |
-
|
14248 |
-
|
14249 |
-
|
14250 |
-
|
14251 |
-
|
14252 |
-
|
14253 |
-
|
14254 |
-
|
14255 |
-
|
14256 |
-
"
|
14257 |
-
|
14258 |
-
|
14259 |
-
|
14260 |
-
#: includes/settings/wcj-settings-
|
14261 |
-
msgid "
|
14262 |
-
msgstr ""
|
14263 |
-
|
14264 |
-
#: includes/settings/wcj-settings-
|
14265 |
-
|
14266 |
-
|
14267 |
-
|
14268 |
-
|
14269 |
-
|
14270 |
-
|
14271 |
-
|
14272 |
-
|
14273 |
-
|
14274 |
-
|
14275 |
-
|
14276 |
-
|
14277 |
-
|
14278 |
-
|
14279 |
-
|
14280 |
-
|
14281 |
-
|
14282 |
-
|
14283 |
-
|
14284 |
-
|
14285 |
-
|
14286 |
-
|
14287 |
-
|
14288 |
-
|
14289 |
-
|
14290 |
-
|
14291 |
-
|
14292 |
-
|
14293 |
-
|
14294 |
-
msgstr ""
|
14295 |
-
|
14296 |
-
#: includes/settings/wcj-settings-
|
14297 |
-
msgid ""
|
14298 |
-
|
14299 |
-
|
14300 |
-
|
14301 |
-
|
14302 |
-
|
14303 |
-
|
14304 |
-
|
14305 |
-
|
14306 |
-
|
14307 |
-
|
14308 |
-
|
14309 |
-
|
14310 |
-
|
14311 |
-
|
14312 |
-
|
14313 |
-
|
14314 |
-
|
14315 |
-
|
14316 |
-
|
14317 |
-
|
14318 |
-
|
14319 |
-
|
14320 |
-
|
14321 |
-
|
14322 |
-
|
14323 |
-
|
14324 |
-
|
14325 |
-
|
14326 |
-
|
14327 |
-
|
14328 |
-
|
14329 |
-
|
14330 |
-
|
14331 |
-
|
14332 |
-
|
14333 |
-
"
|
14334 |
-
|
14335 |
-
|
14336 |
-
|
14337 |
-
|
14338 |
-
|
14339 |
-
|
14340 |
-
|
14341 |
-
|
14342 |
-
|
14343 |
-
|
14344 |
-
|
14345 |
-
"
|
14346 |
-
|
14347 |
-
|
14348 |
-
|
14349 |
-
|
14350 |
-
msgid "
|
14351 |
-
|
14352 |
-
|
14353 |
-
|
14354 |
-
|
14355 |
-
|
14356 |
-
|
14357 |
-
|
14358 |
-
|
14359 |
-
|
14360 |
-
msgid "Variable product's variation"
|
14361 |
-
msgstr ""
|
14362 |
-
|
14363 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:14
|
14364 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
|
14365 |
-
msgid "Add to Cart Local Redirect"
|
14366 |
-
msgstr ""
|
14367 |
-
|
14368 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:16
|
14369 |
-
msgid ""
|
14370 |
-
"This section lets you set any local URL to redirect to after successfully "
|
14371 |
-
"adding product to cart."
|
14372 |
-
msgstr ""
|
14373 |
-
|
14374 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:18
|
14375 |
-
#, php-format
|
14376 |
-
msgid ""
|
14377 |
-
"For archives - \"Enable AJAX add to cart buttons on archives\" checkbox in "
|
14378 |
-
"<a href=\"%s\">WooCommerce > Settings > Products > Display</a> must be "
|
14379 |
-
"disabled."
|
14380 |
-
msgstr ""
|
14381 |
-
|
14382 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:31
|
14383 |
-
msgid "URL - All Products"
|
14384 |
-
msgstr ""
|
14385 |
-
|
14386 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:32
|
14387 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
|
14388 |
-
msgid ""
|
14389 |
-
"Redirect URL. Leave empty to redirect to checkout page (skipping the cart "
|
14390 |
-
"page)."
|
14391 |
-
msgstr ""
|
14392 |
-
|
14393 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:40
|
14394 |
-
#: includes/settings/wcj-settings-product-tabs.php:233
|
14395 |
-
msgid "This will add meta boxes to each product's edit page."
|
14396 |
-
msgstr ""
|
14397 |
-
|
14398 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:52
|
14399 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:58
|
14400 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
|
14401 |
-
msgid "Add to Cart on Visit"
|
14402 |
-
msgstr ""
|
14403 |
-
|
14404 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:54
|
14405 |
-
msgid ""
|
14406 |
-
"This section lets you enable automatically adding product to cart on "
|
14407 |
-
"visiting the product page. Product is only added once, so if it is already "
|
14408 |
-
"in cart - duplicate product is not added. "
|
14409 |
-
msgstr ""
|
14410 |
-
|
14411 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:59
|
14412 |
-
msgid ""
|
14413 |
-
"If \"Per Product\" is selected - meta box will be added to each product's "
|
14414 |
-
"edit page."
|
14415 |
-
msgstr ""
|
14416 |
-
|
14417 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:66
|
14418 |
-
msgid "Per product"
|
14419 |
-
msgstr ""
|
14420 |
-
|
14421 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:74
|
14422 |
-
msgid "Add to Cart Variable Product"
|
14423 |
-
msgstr ""
|
14424 |
-
|
14425 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:79
|
14426 |
-
msgid "Display Radio Buttons Instead of Drop Box"
|
14427 |
-
msgstr ""
|
14428 |
-
|
14429 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:88
|
14430 |
-
msgid "Variation Label Template"
|
14431 |
-
msgstr ""
|
14432 |
-
|
14433 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:98
|
14434 |
-
msgid "Variation Description Template"
|
14435 |
-
msgstr ""
|
14436 |
-
|
14437 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:108
|
14438 |
-
msgid "Variation Radio Input td Style"
|
14439 |
-
msgstr ""
|
14440 |
-
|
14441 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:121
|
14442 |
-
msgid "Replace Add to Cart Button on Archives with Single"
|
14443 |
-
msgstr ""
|
14444 |
-
|
14445 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:126
|
14446 |
-
msgid ""
|
14447 |
-
"Replace Add to Cart Button on Archives with Button from Single Product Pages"
|
14448 |
-
msgstr ""
|
14449 |
-
|
14450 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:133
|
14451 |
-
msgid "Variable products only"
|
14452 |
-
msgstr ""
|
14453 |
-
|
14454 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:141
|
14455 |
-
msgid "Add to Cart Quantity"
|
14456 |
-
msgstr ""
|
14457 |
-
|
14458 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:146
|
14459 |
-
msgid "Disable Quantity Field for All Products"
|
14460 |
-
msgstr ""
|
14461 |
-
|
14462 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:147
|
14463 |
-
msgid "Disable on Single Product Page"
|
14464 |
-
msgstr ""
|
14465 |
-
|
14466 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:154
|
14467 |
-
msgid "Disable on Cart Page"
|
14468 |
-
msgstr ""
|
14469 |
-
|
14470 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:161
|
14471 |
-
msgid "Set All Products to \"Sold individually\""
|
14472 |
-
msgstr ""
|
14473 |
-
|
14474 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:172
|
14475 |
-
msgid "Add to Cart Button Custom URL"
|
14476 |
-
msgstr ""
|
14477 |
-
|
14478 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:177
|
14479 |
-
msgid "Custom Add to Cart Buttons URL on Archives on per Product Basis"
|
14480 |
-
msgstr ""
|
14481 |
-
|
14482 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:189
|
14483 |
-
msgid "Add to Cart Button AJAX"
|
14484 |
-
msgstr ""
|
14485 |
-
|
14486 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:194
|
14487 |
-
msgid "Disable/Enable Add to Cart Button AJAX on per Product Basis"
|
14488 |
-
msgstr ""
|
14489 |
-
|
14490 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:211
|
14491 |
-
msgid "Open External Products on Add to Cart in New Window"
|
14492 |
-
msgstr ""
|
14493 |
-
|
14494 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:212
|
14495 |
-
msgid "Enable on Single Product Pages"
|
14496 |
-
msgstr ""
|
14497 |
-
|
14498 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:219
|
14499 |
-
msgid "Enable on Category/Archive Pages"
|
14500 |
-
msgstr ""
|
14501 |
-
|
14502 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:230
|
14503 |
-
msgid "Add to Cart Message Options"
|
14504 |
-
msgstr ""
|
14505 |
-
|
14506 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:235
|
14507 |
-
msgid "Change \"Continue shopping\" Text"
|
14508 |
-
msgstr ""
|
14509 |
-
|
14510 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:249
|
14511 |
-
msgid "Change \"View cart\" Text"
|
14512 |
-
msgstr ""
|
14513 |
-
|
14514 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:267
|
14515 |
-
msgid "Add to Cart Button Position Options"
|
14516 |
-
msgstr ""
|
14517 |
-
|
14518 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:272
|
14519 |
-
msgid "Add to Cart Button Position"
|
14520 |
-
msgstr ""
|
14521 |
-
|
14522 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:279
|
14523 |
-
msgid "Reposition Button on Single Product Pages"
|
14524 |
-
msgstr ""
|
14525 |
-
|
14526 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:298
|
14527 |
-
#, php-format
|
14528 |
-
msgid ""
|
14529 |
-
"Here are the default WooCommerce priorities for \"Inside single product "
|
14530 |
-
"summary\" position: %s"
|
14531 |
-
msgstr ""
|
14532 |
-
|
14533 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:301
|
14534 |
-
msgid "Rating"
|
14535 |
-
msgstr ""
|
14536 |
-
|
14537 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:303
|
14538 |
-
msgid "Excerpt"
|
14539 |
-
msgstr ""
|
14540 |
-
|
14541 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:305
|
14542 |
-
msgid "Sharing"
|
14543 |
-
msgstr ""
|
14544 |
-
|
14545 |
-
#: includes/settings/wcj-settings-product-add-to-cart.php:314
|
14546 |
-
msgid "Reposition Button on Category/Archive Pages"
|
14547 |
-
msgstr ""
|
14548 |
-
|
14549 |
-
#: includes/settings/wcj-settings-product-addons.php:16
|
14550 |
-
msgid "New order"
|
14551 |
-
msgstr ""
|
14552 |
-
|
14553 |
-
#: includes/settings/wcj-settings-product-addons.php:19
|
14554 |
-
#, php-format
|
14555 |
-
msgid "Order status \"%s\""
|
14556 |
-
msgstr ""
|
14557 |
-
|
14558 |
-
#: includes/settings/wcj-settings-product-addons.php:30
|
14559 |
-
msgid "Enable per Product Addons"
|
14560 |
-
msgstr ""
|
14561 |
-
|
14562 |
-
#: includes/settings/wcj-settings-product-addons.php:32
|
14563 |
-
msgid ""
|
14564 |
-
"When enabled, this will add new \"Booster: Product Addons\" meta box to each "
|
14565 |
-
"product's edit page."
|
14566 |
-
msgstr ""
|
14567 |
-
|
14568 |
-
#: includes/settings/wcj-settings-product-addons.php:44
|
14569 |
-
msgid "All Product Options"
|
14570 |
-
msgstr ""
|
14571 |
-
|
14572 |
-
#: includes/settings/wcj-settings-product-addons.php:49
|
14573 |
-
msgid "Enable All Products Addons"
|
14574 |
-
msgstr ""
|
14575 |
-
|
14576 |
-
#: includes/settings/wcj-settings-product-addons.php:51
|
14577 |
-
msgid "When enabled, this will add addons below to all products."
|
14578 |
-
msgstr ""
|
14579 |
-
|
14580 |
-
#: includes/settings/wcj-settings-product-addons.php:57
|
14581 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
|
14582 |
-
msgid "Product Addons Total Number"
|
14583 |
-
msgstr ""
|
14584 |
-
|
14585 |
-
#: includes/settings/wcj-settings-product-addons.php:58
|
14586 |
-
msgid "Save changes after you change this number."
|
14587 |
-
msgstr ""
|
14588 |
-
|
14589 |
-
#: includes/settings/wcj-settings-product-addons.php:73
|
14590 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:35
|
14591 |
-
msgid "Product Addon"
|
14592 |
-
msgstr ""
|
14593 |
-
|
14594 |
-
#: includes/settings/wcj-settings-product-addons.php:86
|
14595 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:51
|
14596 |
-
msgid "Radio Buttons"
|
14597 |
-
msgstr ""
|
14598 |
-
|
14599 |
-
#: includes/settings/wcj-settings-product-addons.php:87
|
14600 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:52
|
14601 |
-
msgid "Select Box"
|
14602 |
-
msgstr ""
|
14603 |
-
|
14604 |
-
#: includes/settings/wcj-settings-product-addons.php:98
|
14605 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:64
|
14606 |
-
msgid "Label(s)"
|
14607 |
-
msgstr ""
|
14608 |
-
|
14609 |
-
#: includes/settings/wcj-settings-product-addons.php:99
|
14610 |
-
#: includes/settings/wcj-settings-product-addons.php:107
|
14611 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:65
|
14612 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
|
14613 |
-
msgid "For radio and select enter one value per line."
|
14614 |
-
msgstr ""
|
14615 |
-
|
14616 |
-
#: includes/settings/wcj-settings-product-addons.php:106
|
14617 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:72
|
14618 |
-
msgid "Price(s)"
|
14619 |
-
msgstr ""
|
14620 |
-
|
14621 |
-
#: includes/settings/wcj-settings-product-addons.php:115
|
14622 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:80
|
14623 |
-
msgid "Tooltip(s)"
|
14624 |
-
msgstr ""
|
14625 |
-
|
14626 |
-
#: includes/settings/wcj-settings-product-addons.php:116
|
14627 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:81
|
14628 |
-
msgid "For radio enter one value per line."
|
14629 |
-
msgstr ""
|
14630 |
-
|
14631 |
-
#: includes/settings/wcj-settings-product-addons.php:123
|
14632 |
-
#: includes/settings/wcj-settings-purchase-data.php:94
|
14633 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
|
14634 |
-
msgid "Default Value"
|
14635 |
-
msgstr ""
|
14636 |
-
|
14637 |
-
#: includes/settings/wcj-settings-product-addons.php:124
|
14638 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
|
14639 |
-
msgid ""
|
14640 |
-
"For checkbox use 'checked'; for radio and select enter default label. Leave "
|
14641 |
-
"blank for no default value."
|
14642 |
-
msgstr ""
|
14643 |
-
|
14644 |
-
#: includes/settings/wcj-settings-product-addons.php:131
|
14645 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:97
|
14646 |
-
msgid "For \"Select Box\" type only."
|
14647 |
-
msgstr ""
|
14648 |
-
|
14649 |
-
#: includes/settings/wcj-settings-product-addons.php:143
|
14650 |
-
#: includes/settings/wcj-settings-product-by-user.php:45
|
14651 |
-
msgid "Is Required"
|
14652 |
-
msgstr ""
|
14653 |
-
|
14654 |
-
#: includes/settings/wcj-settings-product-addons.php:158
|
14655 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:122
|
14656 |
-
msgid ""
|
14657 |
-
"Leave empty to disable quantity calculation for the addon. When set to zero "
|
14658 |
-
"- addon will be disabled."
|
14659 |
-
msgstr ""
|
14660 |
-
|
14661 |
-
#: includes/settings/wcj-settings-product-addons.php:178
|
14662 |
-
msgid "Enable AJAX on Single Product Page"
|
14663 |
-
msgstr ""
|
14664 |
-
|
14665 |
-
#: includes/settings/wcj-settings-product-addons.php:185
|
14666 |
-
#: includes/settings/wcj-settings-product-addons.php:186
|
14667 |
-
msgid "Ignore Strikethrough Price"
|
14668 |
-
msgstr ""
|
14669 |
-
|
14670 |
-
#: includes/settings/wcj-settings-product-addons.php:187
|
14671 |
-
msgid ""
|
14672 |
-
"If a product has both regular and sale prices, only the sale price will be "
|
14673 |
-
"updated on AJAX. The regular price will be ignored"
|
14674 |
-
msgstr ""
|
14675 |
-
|
14676 |
-
#: includes/settings/wcj-settings-product-addons.php:193
|
14677 |
-
msgid "Decrease Quantity"
|
14678 |
-
msgstr ""
|
14679 |
-
|
14680 |
-
#: includes/settings/wcj-settings-product-addons.php:194
|
14681 |
-
msgid ""
|
14682 |
-
"If you select multiple triggers to decrease quantity, it will be decreased "
|
14683 |
-
"only once (on whichever trigger is executed first)."
|
14684 |
-
msgstr ""
|
14685 |
-
|
14686 |
-
#: includes/settings/wcj-settings-product-addons.php:202
|
14687 |
-
msgid "Admin Order Page"
|
14688 |
-
msgstr ""
|
14689 |
-
|
14690 |
-
#: includes/settings/wcj-settings-product-addons.php:203
|
14691 |
-
msgid "Hide all addons"
|
14692 |
-
msgstr ""
|
14693 |
-
|
14694 |
-
#: includes/settings/wcj-settings-product-addons.php:209
|
14695 |
-
msgid "Position on Frontend"
|
14696 |
-
msgstr ""
|
14697 |
-
|
14698 |
-
#: includes/settings/wcj-settings-product-addons.php:214
|
14699 |
-
#: includes/settings/wcj-settings-product-custom-info.php:108
|
14700 |
-
#: includes/settings/wcj-settings-product-input-fields.php:195
|
14701 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:17
|
14702 |
-
msgid "Before add to cart button"
|
14703 |
-
msgstr ""
|
14704 |
-
|
14705 |
-
#: includes/settings/wcj-settings-product-addons.php:215
|
14706 |
-
#: includes/settings/wcj-settings-product-custom-info.php:109
|
14707 |
-
#: includes/settings/wcj-settings-product-input-fields.php:196
|
14708 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:18
|
14709 |
-
msgid "After add to cart button"
|
14710 |
-
msgstr ""
|
14711 |
-
|
14712 |
-
#: includes/settings/wcj-settings-product-addons.php:219
|
14713 |
-
msgid "Position Priority on Frontend"
|
14714 |
-
msgstr ""
|
14715 |
-
|
14716 |
-
#: includes/settings/wcj-settings-product-addons.php:220
|
14717 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:114
|
14718 |
-
#: includes/settings/wcj-settings-shipping-options.php:41
|
14719 |
-
msgid "Set to zero to use the default priority."
|
14720 |
-
msgstr ""
|
14721 |
-
|
14722 |
-
#: includes/settings/wcj-settings-product-addons.php:226
|
14723 |
-
msgid "Advanced: Apply Price Filter"
|
14724 |
-
msgstr ""
|
14725 |
-
|
14726 |
-
#: includes/settings/wcj-settings-product-addons.php:231
|
14727 |
-
msgid "By module"
|
14728 |
-
msgstr ""
|
14729 |
-
|
14730 |
-
#: includes/settings/wcj-settings-product-addons.php:237
|
14731 |
-
msgid ""
|
14732 |
-
"If you have selected \"By module\" for \"Advanced: Apply Price Filter\" "
|
14733 |
-
"option, you can set which modules to apply here. Leave empty to apply all "
|
14734 |
-
"modules."
|
14735 |
-
msgstr ""
|
14736 |
-
|
14737 |
-
#: includes/settings/wcj-settings-product-addons.php:256
|
14738 |
-
#: includes/settings/wcj-settings-product-bookings.php:106
|
14739 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:139
|
14740 |
-
msgid "Advanced: Check for Outputted Data"
|
14741 |
-
msgstr ""
|
14742 |
-
|
14743 |
-
#: includes/settings/wcj-settings-product-addons.php:258
|
14744 |
-
#: includes/settings/wcj-settings-product-bookings.php:108
|
14745 |
-
#: includes/settings/wcj-settings-product-input-fields.php:355
|
14746 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:141
|
14747 |
-
msgid ""
|
14748 |
-
"Ensures that data outputted only once. Enable this if you see data outputted "
|
14749 |
-
"on frontend twice. Disable if you see no data outputted."
|
14750 |
-
msgstr ""
|
14751 |
-
|
14752 |
-
#: includes/settings/wcj-settings-product-addons.php:268
|
14753 |
-
msgid "Frontend Templates"
|
14754 |
-
msgstr ""
|
14755 |
-
|
14756 |
-
#: includes/settings/wcj-settings-product-addons.php:273
|
14757 |
-
msgid "Each Addon - Title"
|
14758 |
-
msgstr ""
|
14759 |
-
|
14760 |
-
#: includes/settings/wcj-settings-product-addons.php:281
|
14761 |
-
msgid "Each Addon - Type: Checkbox"
|
14762 |
-
msgstr ""
|
14763 |
-
|
14764 |
-
#: includes/settings/wcj-settings-product-addons.php:289
|
14765 |
-
msgid "Each Addon - Type: Text"
|
14766 |
-
msgstr ""
|
14767 |
-
|
14768 |
-
#: includes/settings/wcj-settings-product-addons.php:297
|
14769 |
-
msgid "Each Addon - Type: Select Box"
|
14770 |
-
msgstr ""
|
14771 |
-
|
14772 |
-
#: includes/settings/wcj-settings-product-addons.php:305
|
14773 |
-
msgid "Each Addon - Type: Select Box (Each Option)"
|
14774 |
-
msgstr ""
|
14775 |
-
|
14776 |
-
#: includes/settings/wcj-settings-product-addons.php:313
|
14777 |
-
msgid "Each Addon - Type: Radio Button (Each)"
|
14778 |
-
msgstr ""
|
14779 |
-
|
14780 |
-
#: includes/settings/wcj-settings-product-addons.php:321
|
14781 |
-
msgid "All Addons - Final"
|
14782 |
-
msgstr ""
|
14783 |
-
|
14784 |
-
#: includes/settings/wcj-settings-product-addons.php:333
|
14785 |
-
msgid "Cart Template"
|
14786 |
-
msgstr ""
|
14787 |
-
|
14788 |
-
#: includes/settings/wcj-settings-product-addons.php:345
|
14789 |
-
#: includes/settings/wcj-settings-product-addons.php:376
|
14790 |
-
msgid "Each Addon"
|
14791 |
-
msgstr ""
|
14792 |
-
|
14793 |
-
#: includes/settings/wcj-settings-product-addons.php:364
|
14794 |
-
msgid "Order Details Table Template"
|
14795 |
-
msgstr ""
|
14796 |
-
|
14797 |
-
#: includes/settings/wcj-settings-product-bookings.php:28
|
14798 |
-
msgid "Labels and Messages"
|
14799 |
-
msgstr ""
|
14800 |
-
|
14801 |
-
#: includes/settings/wcj-settings-product-bookings.php:33
|
14802 |
-
msgid "Frontend Label: \"Date from\""
|
14803 |
-
msgstr ""
|
14804 |
-
|
14805 |
-
#: includes/settings/wcj-settings-product-bookings.php:40
|
14806 |
-
msgid "Frontend Label: \"Date to\""
|
14807 |
-
msgstr ""
|
14808 |
-
|
14809 |
-
#: includes/settings/wcj-settings-product-bookings.php:47
|
14810 |
-
msgid "Frontend Label: Period"
|
14811 |
-
msgstr ""
|
14812 |
-
|
14813 |
-
#: includes/settings/wcj-settings-product-bookings.php:54
|
14814 |
-
msgid "Frontend Label: Price per Day"
|
14815 |
-
msgstr ""
|
14816 |
-
|
14817 |
-
#: includes/settings/wcj-settings-product-bookings.php:61
|
14818 |
-
msgid "Message: \"Date from\" is missing"
|
14819 |
-
msgstr ""
|
14820 |
-
|
14821 |
-
#: includes/settings/wcj-settings-product-bookings.php:68
|
14822 |
-
#: includes/settings/wcj-settings-product-bookings.php:75
|
14823 |
-
msgid "Message: \"Date to\" is missing"
|
14824 |
-
msgstr ""
|
14825 |
-
|
14826 |
-
#: includes/settings/wcj-settings-product-bookings.php:91
|
14827 |
-
msgid "Price per Day on Variable Products"
|
14828 |
-
msgstr ""
|
14829 |
-
|
14830 |
-
#: includes/settings/wcj-settings-product-bookings.php:92
|
14831 |
-
msgid "Calculate Variable Products final price per day, according to calendar"
|
14832 |
-
msgstr ""
|
14833 |
-
|
14834 |
-
#: includes/settings/wcj-settings-product-bookings.php:93
|
14835 |
-
msgid ""
|
14836 |
-
"Disable it will make the Variable Product final price be calculated "
|
14837 |
-
"regardless of the chosen days on the calendar"
|
14838 |
-
msgstr ""
|
14839 |
-
|
14840 |
-
#: includes/settings/wcj-settings-product-bookings.php:99
|
14841 |
-
msgid "Hide Quantity Selector for Bookings Products"
|
14842 |
-
msgstr ""
|
14843 |
-
|
14844 |
-
#: includes/settings/wcj-settings-product-bookings.php:118
|
14845 |
-
msgid "Datepicker Options"
|
14846 |
-
msgstr ""
|
14847 |
-
|
14848 |
-
#: includes/settings/wcj-settings-product-bookings.php:119
|
14849 |
-
msgid "This settings will be applied to all your bookings products."
|
14850 |
-
msgstr ""
|
14851 |
-
|
14852 |
-
#: includes/settings/wcj-settings-product-bookings.php:124
|
14853 |
-
msgid "Date from: Exclude Days"
|
14854 |
-
msgstr ""
|
14855 |
-
|
14856 |
-
#: includes/settings/wcj-settings-product-bookings.php:125
|
14857 |
-
#: includes/settings/wcj-settings-product-bookings.php:134
|
14858 |
-
msgid "Leave blank to include all days."
|
14859 |
-
msgstr ""
|
14860 |
-
|
14861 |
-
#: includes/settings/wcj-settings-product-bookings.php:133
|
14862 |
-
msgid "Date to: Exclude Days"
|
14863 |
-
msgstr ""
|
14864 |
-
|
14865 |
-
#: includes/settings/wcj-settings-product-bookings.php:142
|
14866 |
-
msgid "Date from: Exclude Months"
|
14867 |
-
msgstr ""
|
14868 |
-
|
14869 |
-
#: includes/settings/wcj-settings-product-bookings.php:143
|
14870 |
-
#: includes/settings/wcj-settings-product-bookings.php:152
|
14871 |
-
msgid "Leave blank to include all months."
|
14872 |
-
msgstr ""
|
14873 |
-
|
14874 |
-
#: includes/settings/wcj-settings-product-bookings.php:151
|
14875 |
-
msgid "Date to: Exclude Months"
|
14876 |
-
msgstr ""
|
14877 |
-
|
14878 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:14
|
14879 |
-
msgid "Product Bulk Meta Editor Tool Options"
|
14880 |
-
msgstr ""
|
14881 |
-
|
14882 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:19
|
14883 |
-
msgid "Check if Meta Exists"
|
14884 |
-
msgstr ""
|
14885 |
-
|
14886 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:20
|
14887 |
-
msgid ""
|
14888 |
-
"When enabled - meta can be changed only if it already existed for product. "
|
14889 |
-
"If you want to be able to create new meta for products, disable this option."
|
14890 |
-
msgstr ""
|
14891 |
-
|
14892 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:27
|
14893 |
-
msgid "Add Variations to Products List"
|
14894 |
-
msgstr ""
|
14895 |
-
|
14896 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:28
|
14897 |
-
msgid ""
|
14898 |
-
"When enabled - variations of variable products will be added to the list. If "
|
14899 |
-
"you want to edit only main product's meta, disable this option."
|
14900 |
-
msgstr ""
|
14901 |
-
|
14902 |
-
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:36
|
14903 |
-
msgid "Additional Columns"
|
14904 |
-
msgstr ""
|
14905 |
-
|
14906 |
-
#: includes/settings/wcj-settings-product-by-condition.php:14
|
14907 |
-
msgid "Visibility Options"
|
14908 |
-
msgstr ""
|
14909 |
-
|
14910 |
-
#: includes/settings/wcj-settings-product-by-condition.php:19
|
14911 |
-
msgid "Hide Visibility"
|
14912 |
-
msgstr ""
|
14913 |
-
|
14914 |
-
#: includes/settings/wcj-settings-product-by-condition.php:20
|
14915 |
-
msgid ""
|
14916 |
-
"This will hide selected products in shop and search results. However product "
|
14917 |
-
"still will be accessible via direct link."
|
14918 |
-
msgstr ""
|
14919 |
-
|
14920 |
-
#: includes/settings/wcj-settings-product-by-condition.php:27
|
14921 |
-
msgid "Make Non-Purchasable"
|
14922 |
-
msgstr ""
|
14923 |
-
|
14924 |
-
#: includes/settings/wcj-settings-product-by-condition.php:28
|
14925 |
-
msgid ""
|
14926 |
-
"This will make selected products non-purchasable (i.e. product can't be "
|
14927 |
-
"added to the cart)."
|
14928 |
-
msgstr ""
|
14929 |
-
|
14930 |
-
#: includes/settings/wcj-settings-product-by-condition.php:35
|
14931 |
-
msgid "Modify Query"
|
14932 |
-
msgstr ""
|
14933 |
-
|
14934 |
-
#: includes/settings/wcj-settings-product-by-condition.php:36
|
14935 |
-
msgid "This will hide selected products completely (including direct link)."
|
14936 |
-
msgstr ""
|
14937 |
-
|
14938 |
-
#: includes/settings/wcj-settings-product-by-condition.php:43
|
14939 |
-
msgid ""
|
14940 |
-
"Enable this if you are still seeing hidden products in \"Products\" widgets."
|
14941 |
-
msgstr ""
|
14942 |
-
|
14943 |
-
#: includes/settings/wcj-settings-product-by-condition.php:62
|
14944 |
-
msgid "Visibility Method"
|
14945 |
-
msgstr ""
|
14946 |
-
|
14947 |
-
#: includes/settings/wcj-settings-product-by-condition.php:63
|
14948 |
-
msgid "This option sets how do you want to set product's visibility."
|
14949 |
-
msgstr ""
|
14950 |
-
|
14951 |
-
#: includes/settings/wcj-settings-product-by-condition.php:64
|
14952 |
-
msgid "Possible values: \"Set visible\", \"Set invisible\" or \"Set both\"."
|
14953 |
-
msgstr ""
|
14954 |
-
|
14955 |
-
#: includes/settings/wcj-settings-product-by-condition.php:69
|
14956 |
-
msgid "Set visible"
|
14957 |
-
msgstr ""
|
14958 |
-
|
14959 |
-
#: includes/settings/wcj-settings-product-by-condition.php:70
|
14960 |
-
msgid "Set invisible"
|
14961 |
-
msgstr ""
|
14962 |
-
|
14963 |
-
#: includes/settings/wcj-settings-product-by-condition.php:71
|
14964 |
-
msgid "Set both"
|
14965 |
-
msgstr ""
|
14966 |
-
|
14967 |
-
#: includes/settings/wcj-settings-product-by-condition.php:77
|
14968 |
-
msgid "Select Box Style"
|
14969 |
-
msgstr ""
|
14970 |
-
|
14971 |
-
#: includes/settings/wcj-settings-product-by-condition.php:83
|
14972 |
-
#: includes/settings/wcj-settings-related-products.php:165
|
14973 |
-
#: includes/shortcodes/class-wcj-shortcodes-order-items.php:189
|
14974 |
-
msgid "Standard"
|
14975 |
-
msgstr ""
|
14976 |
-
|
14977 |
-
#: includes/settings/wcj-settings-product-by-condition.php:87
|
14978 |
-
msgid "Quick Edit"
|
14979 |
-
msgstr ""
|
14980 |
-
|
14981 |
-
#: includes/settings/wcj-settings-product-by-condition.php:88
|
14982 |
-
msgid "This will add options to the \"Quick Edit\"."
|
14983 |
-
msgstr ""
|
14984 |
-
|
14985 |
-
#: includes/settings/wcj-settings-product-by-condition.php:95
|
14986 |
-
msgid "Bulk Edit"
|
14987 |
-
msgstr ""
|
14988 |
-
|
14989 |
-
#: includes/settings/wcj-settings-product-by-condition.php:100
|
14990 |
-
msgid "This will add options to the \"Bulk Actions > Edit\"."
|
14991 |
-
msgstr ""
|
14992 |
-
|
14993 |
-
#: includes/settings/wcj-settings-product-by-condition.php:105
|
14994 |
-
msgid "Products List Column"
|
14995 |
-
msgstr ""
|
14996 |
-
|
14997 |
-
#: includes/settings/wcj-settings-product-by-condition.php:106
|
14998 |
-
msgid "This will add column to the admin products list."
|
14999 |
-
msgstr ""
|
15000 |
-
|
15001 |
-
#: includes/settings/wcj-settings-product-by-date.php:14
|
15002 |
-
#: includes/settings/wcj-settings-product-by-time.php:14
|
15003 |
-
msgid "All Products Options"
|
15004 |
-
msgstr ""
|
15005 |
-
|
15006 |
-
#: includes/settings/wcj-settings-product-by-date.php:15
|
15007 |
-
#, php-format
|
15008 |
-
msgid "Today is <code>%s</code>."
|
15009 |
-
msgstr ""
|
15010 |
-
|
15011 |
-
#: includes/settings/wcj-settings-product-by-date.php:22
|
15012 |
-
msgid "Date formats:"
|
15013 |
-
msgstr ""
|
15014 |
-
|
15015 |
-
#: includes/settings/wcj-settings-product-by-date.php:60
|
15016 |
-
msgid "Direct Date Admin Input Date Format"
|
15017 |
-
msgstr ""
|
15018 |
-
|
15019 |
-
#: includes/settings/wcj-settings-product-by-date.php:61
|
15020 |
-
#, php-format
|
15021 |
-
msgid "E.g. %s."
|
15022 |
-
msgstr ""
|
15023 |
-
|
15024 |
-
#: includes/settings/wcj-settings-product-by-date.php:62
|
15025 |
-
msgid "Leave blank to use the default date format."
|
15026 |
-
msgstr ""
|
15027 |
-
|
15028 |
-
#: includes/settings/wcj-settings-product-by-date.php:72
|
15029 |
-
#: includes/settings/wcj-settings-product-by-time.php:64
|
15030 |
-
msgid "Frontend Messages Options"
|
15031 |
-
msgstr ""
|
15032 |
-
|
15033 |
-
#: includes/settings/wcj-settings-product-by-date.php:77
|
15034 |
-
msgid "Message (Monthly)"
|
15035 |
-
msgstr ""
|
15036 |
-
|
15037 |
-
#: includes/settings/wcj-settings-product-by-date.php:78
|
15038 |
-
msgid "Message when product is not available by date (monthly)."
|
15039 |
-
msgstr ""
|
15040 |
-
|
15041 |
-
#: includes/settings/wcj-settings-product-by-date.php:80
|
15042 |
-
#: includes/settings/wcj-settings-product-by-date.php:92
|
15043 |
-
#: includes/settings/wcj-settings-product-by-date.php:104
|
15044 |
-
#: includes/settings/wcj-settings-product-by-time.php:72
|
15045 |
-
#: includes/settings/wcj-settings-product-by-time.php:84
|
15046 |
-
#: includes/settings/wcj-settings-stock.php:35
|
15047 |
-
#: includes/settings/wcj-settings-stock.php:44
|
15048 |
-
#: includes/settings/wcj-settings-stock.php:56
|
15049 |
-
#: includes/settings/wcj-settings-stock.php:100
|
15050 |
-
#: includes/settings/wcj-settings-stock.php:145
|
15051 |
-
#: includes/settings/wcj-settings-stock.php:186
|
15052 |
-
msgid "You can also use shortcodes here."
|
15053 |
-
msgstr ""
|
15054 |
-
|
15055 |
-
#: includes/settings/wcj-settings-product-by-date.php:89
|
15056 |
-
msgid "Message (Monthly - Month Off)"
|
15057 |
-
msgstr ""
|
15058 |
-
|
15059 |
-
#: includes/settings/wcj-settings-product-by-date.php:90
|
15060 |
-
msgid "Message when product is not available by date (month off)."
|
15061 |
-
msgstr ""
|
15062 |
-
|
15063 |
-
#: includes/settings/wcj-settings-product-by-date.php:101
|
15064 |
-
msgid "Message (Direct Date)"
|
15065 |
-
msgstr ""
|
15066 |
-
|
15067 |
-
#: includes/settings/wcj-settings-product-by-date.php:102
|
15068 |
-
msgid "Message when product is not available by direct date."
|
15069 |
-
msgstr ""
|
15070 |
-
|
15071 |
-
#: includes/settings/wcj-settings-product-by-date.php:122
|
15072 |
-
msgid "Action"
|
15073 |
-
msgstr ""
|
15074 |
-
|
15075 |
-
#: includes/settings/wcj-settings-product-by-date.php:123
|
15076 |
-
msgid "Action to be taken, when product is not available by date."
|
15077 |
-
msgstr ""
|
15078 |
-
|
15079 |
-
#: includes/settings/wcj-settings-product-by-date.php:128
|
15080 |
-
msgid "Make product non-purchasable"
|
15081 |
-
msgstr ""
|
15082 |
-
|
15083 |
-
#: includes/settings/wcj-settings-product-by-date.php:129
|
15084 |
-
msgid "Only output message"
|
15085 |
-
msgstr ""
|
15086 |
-
|
15087 |
-
#: includes/settings/wcj-settings-product-by-time.php:15
|
15088 |
-
#, php-format
|
15089 |
-
msgid "Local time is <code>%s</code>."
|
15090 |
-
msgstr ""
|
15091 |
-
|
15092 |
-
#: includes/settings/wcj-settings-product-by-time.php:20
|
15093 |
-
msgid "Product by Time"
|
15094 |
-
msgstr ""
|
15095 |
-
|
15096 |
-
#: includes/settings/wcj-settings-product-by-time.php:22
|
15097 |
-
msgid "Time formats:"
|
15098 |
-
msgstr ""
|
15099 |
-
|
15100 |
-
#: includes/settings/wcj-settings-product-by-time.php:70
|
15101 |
-
msgid "Message when product is not available by time."
|
15102 |
-
msgstr ""
|
15103 |
-
|
15104 |
-
#: includes/settings/wcj-settings-product-by-time.php:71
|
15105 |
-
msgid "Replaceable values:"
|
15106 |
-
msgstr ""
|
15107 |
-
|
15108 |
-
#: includes/settings/wcj-settings-product-by-time.php:81
|
15109 |
-
msgid "Message (Day Off)"
|
15110 |
-
msgstr ""
|
15111 |
-
|
15112 |
-
#: includes/settings/wcj-settings-product-by-time.php:82
|
15113 |
-
msgid "Message when product is not available by time (day off)."
|
15114 |
-
msgstr ""
|
15115 |
-
|
15116 |
-
#: includes/settings/wcj-settings-product-by-time.php:83
|
15117 |
-
msgid "Replaceable value:"
|
15118 |
-
msgstr ""
|
15119 |
-
|
15120 |
-
#: includes/settings/wcj-settings-product-by-user.php:15
|
15121 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:178
|
15122 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:370
|
15123 |
-
msgid "Image"
|
15124 |
-
msgstr ""
|
15125 |
-
|
15126 |
-
#: includes/settings/wcj-settings-product-by-user.php:18
|
15127 |
-
msgid "Product URL (for \"External/Affiliate\" product type only)"
|
15128 |
-
msgstr ""
|
15129 |
-
|
15130 |
-
#: includes/settings/wcj-settings-product-by-user.php:35
|
15131 |
-
msgid "Additional Fields"
|
15132 |
-
msgstr ""
|
15133 |
-
|
15134 |
-
#: includes/settings/wcj-settings-product-by-user.php:61
|
15135 |
-
msgid "<em>Title</em> field is always enabled and required."
|
15136 |
-
msgstr ""
|
15137 |
-
|
15138 |
-
#: includes/settings/wcj-settings-product-by-user.php:71
|
15139 |
-
msgid "Used for price fields only."
|
15140 |
-
msgstr ""
|
15141 |
-
|
15142 |
-
#: includes/settings/wcj-settings-product-by-user.php:78
|
15143 |
-
msgid "User Visibility"
|
15144 |
-
msgstr ""
|
15145 |
-
|
15146 |
-
#: includes/settings/wcj-settings-product-by-user.php:88
|
15147 |
-
msgid "Product Type"
|
15148 |
-
msgstr ""
|
15149 |
-
|
15150 |
-
#: includes/settings/wcj-settings-product-by-user.php:94
|
15151 |
-
msgid "External/Affiliate product"
|
15152 |
-
msgstr ""
|
15153 |
-
|
15154 |
-
#: includes/settings/wcj-settings-product-by-user.php:99
|
15155 |
-
msgid "Product Status"
|
15156 |
-
msgstr ""
|
15157 |
-
|
15158 |
-
#: includes/settings/wcj-settings-product-by-user.php:106
|
15159 |
-
msgid "Require Unique Title"
|
15160 |
-
msgstr ""
|
15161 |
-
|
15162 |
-
#: includes/settings/wcj-settings-product-by-user.php:113
|
15163 |
-
msgid "Add \"My Products\" Tab to User's My Account Page"
|
15164 |
-
msgstr ""
|
15165 |
-
|
15166 |
-
#: includes/settings/wcj-settings-product-by-user.php:120
|
15167 |
-
msgid "Message: Product Successfully Added"
|
15168 |
-
msgstr ""
|
15169 |
-
|
15170 |
-
#: includes/settings/wcj-settings-product-by-user.php:122
|
15171 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:289
|
15172 |
-
msgid "\"%product_title%\" successfully added!"
|
15173 |
-
msgstr ""
|
15174 |
-
|
15175 |
-
#: includes/settings/wcj-settings-product-by-user.php:127
|
15176 |
-
msgid "Message: Product Successfully Edited"
|
15177 |
-
msgstr ""
|
15178 |
-
|
15179 |
-
#: includes/settings/wcj-settings-product-by-user.php:129
|
15180 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:296
|
15181 |
-
msgid "\"%product_title%\" successfully edited!"
|
15182 |
-
msgstr ""
|
15183 |
-
|
15184 |
-
#: includes/settings/wcj-settings-product-by-user.php:134
|
15185 |
-
msgid "Total Custom Taxonomies"
|
15186 |
-
msgstr ""
|
15187 |
-
|
15188 |
-
#: includes/settings/wcj-settings-product-by-user.php:148
|
15189 |
-
msgid "Custom Taxonomy"
|
15190 |
-
msgstr ""
|
15191 |
-
|
15192 |
-
#: includes/settings/wcj-settings-product-custom-info.php:44
|
15193 |
-
msgid "Single Product Pages"
|
15194 |
-
msgstr ""
|
15195 |
-
|
15196 |
-
#: includes/settings/wcj-settings-product-custom-info.php:44
|
15197 |
-
#: includes/settings/wcj-settings-product-msrp.php:14
|
15198 |
-
msgid "Archives"
|
15199 |
-
msgstr ""
|
15200 |
-
|
15201 |
-
#: includes/settings/wcj-settings-product-custom-info.php:83
|
15202 |
-
#, php-format
|
15203 |
-
msgid "Block #%s"
|
15204 |
-
msgstr ""
|
15205 |
-
|
15206 |
-
#: includes/settings/wcj-settings-product-custom-info.php:92
|
15207 |
-
#: includes/settings/wcj-settings-product-images.php:49
|
15208 |
-
#: includes/settings/wcj-settings-product-images.php:58
|
15209 |
-
#: includes/settings/wcj-settings-product-images.php:67
|
15210 |
-
#: includes/settings/wcj-settings-products-xml.php:111
|
15211 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
|
15212 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:26
|
15213 |
-
msgid "You can use shortcodes here."
|
15214 |
-
msgstr ""
|
15215 |
-
|
15216 |
-
#: includes/settings/wcj-settings-product-custom-info.php:111
|
15217 |
-
msgid "Product meta start"
|
15218 |
-
msgstr ""
|
15219 |
-
|
15220 |
-
#: includes/settings/wcj-settings-product-custom-info.php:112
|
15221 |
-
msgid "Product meta end"
|
15222 |
-
msgstr ""
|
15223 |
-
|
15224 |
-
#: includes/settings/wcj-settings-product-custom-info.php:117
|
15225 |
-
msgid "Inside product title"
|
15226 |
-
msgstr ""
|
15227 |
-
|
15228 |
-
#: includes/settings/wcj-settings-product-custom-info.php:130
|
15229 |
-
#: includes/settings/wcj-settings-wholesale-price.php:95
|
15230 |
-
msgid "Product Categories to Include"
|
15231 |
-
msgstr ""
|
15232 |
-
|
15233 |
-
#: includes/settings/wcj-settings-product-custom-info.php:131
|
15234 |
-
#: includes/settings/wcj-settings-product-custom-info.php:139
|
15235 |
-
#: includes/settings/wcj-settings-product-custom-info.php:147
|
15236 |
-
#: includes/settings/wcj-settings-product-custom-info.php:155
|
15237 |
-
#: includes/settings/wcj-settings-product-custom-info.php:163
|
15238 |
-
#: includes/settings/wcj-settings-product-custom-info.php:171
|
15239 |
-
msgid "Leave blank to disable the option."
|
15240 |
-
msgstr ""
|
15241 |
-
|
15242 |
-
#: includes/settings/wcj-settings-product-custom-info.php:138
|
15243 |
-
#: includes/settings/wcj-settings-wholesale-price.php:104
|
15244 |
-
msgid "Product Categories to Exclude"
|
15245 |
-
msgstr ""
|
15246 |
-
|
15247 |
-
#: includes/settings/wcj-settings-product-custom-info.php:146
|
15248 |
-
msgid "Product Tags to Include"
|
15249 |
-
msgstr ""
|
15250 |
-
|
15251 |
-
#: includes/settings/wcj-settings-product-custom-info.php:154
|
15252 |
-
msgid "Product Tags to Exclude"
|
15253 |
-
msgstr ""
|
15254 |
-
|
15255 |
-
#: includes/settings/wcj-settings-product-custom-info.php:162
|
15256 |
-
#: includes/settings/wcj-settings-products-xml.php:147
|
15257 |
-
#: includes/settings/wcj-settings-wholesale-price.php:82
|
15258 |
-
msgid "Products to Include"
|
15259 |
-
msgstr ""
|
15260 |
-
|
15261 |
-
#: includes/settings/wcj-settings-product-custom-info.php:170
|
15262 |
-
#: includes/settings/wcj-settings-products-xml.php:157
|
15263 |
-
#: includes/settings/wcj-settings-wholesale-price.php:89
|
15264 |
-
msgid "Products to Exclude"
|
15265 |
-
msgstr ""
|
15266 |
-
|
15267 |
-
#: includes/settings/wcj-settings-product-custom-info.php:190
|
15268 |
-
msgid "Extra Filters"
|
15269 |
-
msgstr ""
|
15270 |
-
|
15271 |
-
#: includes/settings/wcj-settings-product-custom-info.php:192
|
15272 |
-
msgid "You can add custom filters here (one per line, in filter|title format)."
|
15273 |
-
msgstr ""
|
15274 |
-
|
15275 |
-
#: includes/settings/wcj-settings-product-custom-info.php:193
|
15276 |
-
#, php-format
|
15277 |
-
msgid "E.g.: %s."
|
15278 |
-
msgstr ""
|
15279 |
-
|
15280 |
-
#: includes/settings/wcj-settings-product-images.php:14
|
15281 |
-
msgid "Product Image and Thumbnails"
|
15282 |
-
msgstr ""
|
15283 |
-
|
15284 |
-
#: includes/settings/wcj-settings-product-images.php:19
|
15285 |
-
msgid "Image and Thumbnails on Single"
|
15286 |
-
msgstr ""
|
15287 |
-
|
15288 |
-
#: includes/settings/wcj-settings-product-images.php:26
|
15289 |
-
msgid "Image on Single"
|
15290 |
-
msgstr ""
|
15291 |
-
|
15292 |
-
#: includes/settings/wcj-settings-product-images.php:33
|
15293 |
-
msgid "Thumbnails on Single"
|
15294 |
-
msgstr ""
|
15295 |
-
|
15296 |
-
#: includes/settings/wcj-settings-product-images.php:40
|
15297 |
-
msgid "Image on Archives"
|
15298 |
-
msgstr ""
|
15299 |
-
|
15300 |
-
#: includes/settings/wcj-settings-product-images.php:47
|
15301 |
-
msgid "Replace Image on Single"
|
15302 |
-
msgstr ""
|
15303 |
-
|
15304 |
-
#: includes/settings/wcj-settings-product-images.php:48
|
15305 |
-
msgid ""
|
15306 |
-
"Replace image on single product page with custom HTML. Leave blank to "
|
15307 |
-
"disable."
|
15308 |
-
msgstr ""
|
15309 |
-
|
15310 |
-
#: includes/settings/wcj-settings-product-images.php:56
|
15311 |
-
msgid "Replace Thumbnails on Single"
|
15312 |
-
msgstr ""
|
15313 |
-
|
15314 |
-
#: includes/settings/wcj-settings-product-images.php:57
|
15315 |
-
msgid ""
|
15316 |
-
"Replace thumbnails on single product page with custom HTML. Leave blank to "
|
15317 |
-
"disable."
|
15318 |
-
msgstr ""
|
15319 |
-
|
15320 |
-
#: includes/settings/wcj-settings-product-images.php:65
|
15321 |
-
msgid "Replace Image on Archive"
|
15322 |
-
msgstr ""
|
15323 |
-
|
15324 |
-
#: includes/settings/wcj-settings-product-images.php:66
|
15325 |
-
msgid ""
|
15326 |
-
"Replace image on archive pages with custom HTML. Leave blank to disable."
|
15327 |
-
msgstr ""
|
15328 |
-
|
15329 |
-
#: includes/settings/wcj-settings-product-images.php:74
|
15330 |
-
msgid "Single Product Thumbnails Columns"
|
15331 |
-
msgstr ""
|
15332 |
-
|
15333 |
-
#: includes/settings/wcj-settings-product-images.php:84
|
15334 |
-
msgid "Placeholder Image"
|
15335 |
-
msgstr ""
|
15336 |
-
|
15337 |
-
#: includes/settings/wcj-settings-product-images.php:89
|
15338 |
-
msgid "Custom Placeholder Image URL"
|
15339 |
-
msgstr ""
|
15340 |
-
|
15341 |
-
#: includes/settings/wcj-settings-product-images.php:90
|
15342 |
-
msgid "Leave blank to use the default placeholder image."
|
15343 |
-
msgstr ""
|
15344 |
-
|
15345 |
-
#: includes/settings/wcj-settings-product-images.php:101
|
15346 |
-
msgid "Callbacks"
|
15347 |
-
msgstr ""
|
15348 |
-
|
15349 |
-
#: includes/settings/wcj-settings-product-images.php:102
|
15350 |
-
msgid ""
|
15351 |
-
"Callback functions used by WooCommerce and the current theme in order to "
|
15352 |
-
"customize images and thumbnails"
|
15353 |
-
msgstr ""
|
15354 |
-
|
15355 |
-
#: includes/settings/wcj-settings-product-images.php:107
|
15356 |
-
msgid "Loop Thumbnail"
|
15357 |
-
msgstr ""
|
15358 |
-
|
15359 |
-
#: includes/settings/wcj-settings-product-images.php:108
|
15360 |
-
msgid "Used on hook <strong>woocommerce_before_shop_loop_item_title</strong>"
|
15361 |
-
msgstr ""
|
15362 |
-
|
15363 |
-
#: includes/settings/wcj-settings-product-images.php:114
|
15364 |
-
msgid "Loop Thumbnail Priority"
|
15365 |
-
msgstr ""
|
15366 |
-
|
15367 |
-
#: includes/settings/wcj-settings-product-images.php:120
|
15368 |
-
msgid "Show Images"
|
15369 |
-
msgstr ""
|
15370 |
-
|
15371 |
-
#: includes/settings/wcj-settings-product-images.php:121
|
15372 |
-
msgid "Used on hook <strong>woocommerce_before_single_product_summary</strong>"
|
15373 |
-
msgstr ""
|
15374 |
-
|
15375 |
-
#: includes/settings/wcj-settings-product-images.php:127
|
15376 |
-
msgid "Show Images Priority"
|
15377 |
-
msgstr ""
|
15378 |
-
|
15379 |
-
#: includes/settings/wcj-settings-product-info.php:14
|
15380 |
-
msgid "Products Info"
|
15381 |
-
msgstr ""
|
15382 |
-
|
15383 |
-
#: includes/settings/wcj-settings-product-info.php:15
|
15384 |
-
msgid ""
|
15385 |
-
"For full list of short codes, please visit <a target=\"_blank\" href="
|
15386 |
-
"\"https://booster.io/shortcodes/\">https://booster.io/shortcodes/</a>."
|
15387 |
-
msgstr ""
|
15388 |
-
|
15389 |
-
#: includes/settings/wcj-settings-product-info.php:19
|
15390 |
-
#: includes/settings/wcj-settings-product-info.php:34
|
15391 |
-
msgid "Product Info on Archive Pages"
|
15392 |
-
msgstr ""
|
15393 |
-
|
15394 |
-
#: includes/settings/wcj-settings-product-info.php:20
|
15395 |
-
msgid "Product Info on Single Pages"
|
15396 |
-
msgstr ""
|
15397 |
-
|
15398 |
-
#: includes/settings/wcj-settings-product-info.php:29
|
15399 |
-
msgid "Even More Products Info"
|
15400 |
-
msgstr ""
|
15401 |
-
|
15402 |
-
#: includes/settings/wcj-settings-product-info.php:42
|
15403 |
-
#: includes/settings/wcj-settings-product-info.php:75
|
15404 |
-
msgid "HTML info."
|
15405 |
-
msgstr ""
|
15406 |
-
|
15407 |
-
#: includes/settings/wcj-settings-product-info.php:44
|
15408 |
-
msgid "[wcj_product_sku before=\"SKU: \"]"
|
15409 |
-
msgstr ""
|
15410 |
-
|
15411 |
-
#: includes/settings/wcj-settings-product-info.php:67
|
15412 |
-
msgid "Product Info on Single Product Pages"
|
15413 |
-
msgstr ""
|
15414 |
-
|
15415 |
-
#: includes/settings/wcj-settings-product-info.php:77
|
15416 |
-
msgid "Total sales: [wcj_product_total_sales]"
|
15417 |
-
msgstr ""
|
15418 |
-
|
15419 |
-
#: includes/settings/wcj-settings-product-info.php:100
|
15420 |
-
msgid "Product IDs to exclude"
|
15421 |
-
msgstr ""
|
15422 |
-
|
15423 |
-
#: includes/settings/wcj-settings-product-info.php:101
|
15424 |
-
msgid "Comma separated list of product IDs to exclude from product info."
|
15425 |
-
msgstr ""
|
15426 |
-
|
15427 |
-
#: includes/settings/wcj-settings-product-input-fields.php:16
|
15428 |
-
msgid "Product Input Fields per Product Options"
|
15429 |
-
msgstr ""
|
15430 |
-
|
15431 |
-
#: includes/settings/wcj-settings-product-input-fields.php:18
|
15432 |
-
#: includes/settings/wcj-settings-product-input-fields.php:49
|
15433 |
-
msgid ""
|
15434 |
-
"Add custom input fields to product's single page for customer to fill before "
|
15435 |
-
"adding product to cart."
|
15436 |
-
msgstr ""
|
15437 |
-
|
15438 |
-
#: includes/settings/wcj-settings-product-input-fields.php:19
|
15439 |
-
msgid ""
|
15440 |
-
"When enabled this module will add \"Product Input Fields\" tab to each "
|
15441 |
-
"product's \"Edit\" page."
|
15442 |
-
msgstr ""
|
15443 |
-
|
15444 |
-
#: includes/settings/wcj-settings-product-input-fields.php:23
|
15445 |
-
msgid "Product Input Fields - per Product"
|
15446 |
-
msgstr ""
|
15447 |
-
|
15448 |
-
#: includes/settings/wcj-settings-product-input-fields.php:25
|
15449 |
-
msgid "Add custom input field on per product basis."
|
15450 |
-
msgstr ""
|
15451 |
-
|
15452 |
-
#: includes/settings/wcj-settings-product-input-fields.php:31
|
15453 |
-
msgid "Default Number of Product Input Fields per Product"
|
15454 |
-
msgstr ""
|
15455 |
-
|
15456 |
-
#: includes/settings/wcj-settings-product-input-fields.php:33
|
15457 |
-
msgid ""
|
15458 |
-
"You will be able to change this number later as well as define the fields, "
|
15459 |
-
"for each product individually, in product's \"Edit\"."
|
15460 |
-
msgstr ""
|
15461 |
-
|
15462 |
-
#: includes/settings/wcj-settings-product-input-fields.php:47
|
15463 |
-
msgid "Product Input Fields Global Options"
|
15464 |
-
msgstr ""
|
15465 |
-
|
15466 |
-
#: includes/settings/wcj-settings-product-input-fields.php:53
|
15467 |
-
msgid "Product Input Fields - All Products"
|
15468 |
-
msgstr ""
|
15469 |
-
|
15470 |
-
#: includes/settings/wcj-settings-product-input-fields.php:55
|
15471 |
-
msgid "Add custom input fields to all products."
|
15472 |
-
msgstr ""
|
15473 |
-
|
15474 |
-
#: includes/settings/wcj-settings-product-input-fields.php:61
|
15475 |
-
msgid "Product Input Fields Number"
|
15476 |
-
msgstr ""
|
15477 |
-
|
15478 |
-
#: includes/settings/wcj-settings-product-input-fields.php:111
|
15479 |
-
msgid "Product categories to include."
|
15480 |
-
msgstr ""
|
15481 |
-
|
15482 |
-
#: includes/settings/wcj-settings-product-input-fields.php:112
|
15483 |
-
#: includes/settings/wcj-settings-product-input-fields.php:123
|
15484 |
-
#: includes/settings/wcj-settings-product-input-fields.php:134
|
15485 |
-
#: includes/settings/wcj-settings-product-input-fields.php:145
|
15486 |
-
#: includes/settings/wcj-settings-product-input-fields.php:157
|
15487 |
-
#: includes/settings/wcj-settings-product-input-fields.php:169
|
15488 |
-
#: includes/settings/wcj-settings-wholesale-price.php:83
|
15489 |
-
#: includes/settings/wcj-settings-wholesale-price.php:96
|
15490 |
-
msgid "Leave blank to include all products."
|
15491 |
-
msgstr ""
|
15492 |
-
|
15493 |
-
#: includes/settings/wcj-settings-product-input-fields.php:122
|
15494 |
-
msgid "Product categories to exclude."
|
15495 |
-
msgstr ""
|
15496 |
-
|
15497 |
-
#: includes/settings/wcj-settings-product-input-fields.php:132
|
15498 |
-
msgid "Product Tags - Include"
|
15499 |
-
msgstr ""
|
15500 |
-
|
15501 |
-
#: includes/settings/wcj-settings-product-input-fields.php:133
|
15502 |
-
msgid "Product tags to include."
|
15503 |
-
msgstr ""
|
15504 |
-
|
15505 |
-
#: includes/settings/wcj-settings-product-input-fields.php:143
|
15506 |
-
msgid "Product Tags - Exclude"
|
15507 |
-
msgstr ""
|
15508 |
-
|
15509 |
-
#: includes/settings/wcj-settings-product-input-fields.php:144
|
15510 |
-
msgid "Product tags to exclude."
|
15511 |
-
msgstr ""
|
15512 |
-
|
15513 |
-
#: includes/settings/wcj-settings-product-input-fields.php:156
|
15514 |
-
msgid "Products to include."
|
15515 |
-
msgstr ""
|
15516 |
-
|
15517 |
-
#: includes/settings/wcj-settings-product-input-fields.php:168
|
15518 |
-
msgid "Products to exclude."
|
15519 |
-
msgstr ""
|
15520 |
-
|
15521 |
-
#: includes/settings/wcj-settings-product-input-fields.php:185
|
15522 |
-
msgid "Frontend View Options"
|
15523 |
-
msgstr ""
|
15524 |
-
|
15525 |
-
#: includes/settings/wcj-settings-product-input-fields.php:190
|
15526 |
-
msgid "Position on Single Product Page"
|
15527 |
-
msgstr ""
|
15528 |
-
|
15529 |
-
#: includes/settings/wcj-settings-product-input-fields.php:206
|
15530 |
-
msgid "HTML Template - Start"
|
15531 |
-
msgstr ""
|
15532 |
-
|
15533 |
-
#: includes/settings/wcj-settings-product-input-fields.php:213
|
15534 |
-
msgid "HTML Template - Each Field"
|
15535 |
-
msgstr ""
|
15536 |
-
|
15537 |
-
#: includes/settings/wcj-settings-product-input-fields.php:220
|
15538 |
-
msgid "HTML Template - End"
|
15539 |
-
msgstr ""
|
15540 |
-
|
15541 |
-
#: includes/settings/wcj-settings-product-input-fields.php:227
|
15542 |
-
msgid "HTML Template - Radio Field"
|
15543 |
-
msgstr ""
|
15544 |
-
|
15545 |
-
#: includes/settings/wcj-settings-product-input-fields.php:234
|
15546 |
-
msgid "HTML to add after required field title"
|
15547 |
-
msgstr ""
|
15548 |
-
|
15549 |
-
#: includes/settings/wcj-settings-product-input-fields.php:241
|
15550 |
-
msgid "Cart Display Options"
|
15551 |
-
msgstr ""
|
15552 |
-
|
15553 |
-
#: includes/settings/wcj-settings-product-input-fields.php:242
|
15554 |
-
msgid ""
|
15555 |
-
"When \"Add to cart item data\" is selected, \"Cart HTML Template\" options "
|
15556 |
-
"below will be ignored."
|
15557 |
-
msgstr ""
|
15558 |
-
|
15559 |
-
#: includes/settings/wcj-settings-product-input-fields.php:247
|
15560 |
-
msgid "Add to cart item name"
|
15561 |
-
msgstr ""
|
15562 |
-
|
15563 |
-
#: includes/settings/wcj-settings-product-input-fields.php:248
|
15564 |
-
msgid "Add to cart item data"
|
15565 |
-
msgstr ""
|
15566 |
-
|
15567 |
-
#: includes/settings/wcj-settings-product-input-fields.php:252
|
15568 |
-
msgid "Cart HTML Template - Start"
|
15569 |
-
msgstr ""
|
15570 |
-
|
15571 |
-
#: includes/settings/wcj-settings-product-input-fields.php:259
|
15572 |
-
msgid "Cart HTML Template - Each Field"
|
15573 |
-
msgstr ""
|
15574 |
-
|
15575 |
-
#: includes/settings/wcj-settings-product-input-fields.php:266
|
15576 |
-
msgid "Cart HTML Template - End"
|
15577 |
-
msgstr ""
|
15578 |
-
|
15579 |
-
#: includes/settings/wcj-settings-product-input-fields.php:273
|
15580 |
-
msgid "Order Table Template - Each Field"
|
15581 |
-
msgstr ""
|
15582 |
-
|
15583 |
-
#: includes/settings/wcj-settings-product-input-fields.php:274
|
15584 |
-
msgid "Affects Order received page, Emails and Admin Orders View"
|
15585 |
-
msgstr ""
|
15586 |
-
|
15587 |
-
#: includes/settings/wcj-settings-product-input-fields.php:281
|
15588 |
-
#: includes/settings/wcj-settings-product-input-fields.php:334
|
15589 |
-
msgid "Preserve Line Breaks"
|
15590 |
-
msgstr ""
|
15591 |
-
|
15592 |
-
#: includes/settings/wcj-settings-product-input-fields.php:283
|
15593 |
-
msgid ""
|
15594 |
-
"Preserves line breaks on frontend, making some inputs like textarea more "
|
15595 |
-
"legible"
|
15596 |
-
msgstr ""
|
15597 |
-
|
15598 |
-
#: includes/settings/wcj-settings-product-input-fields.php:320
|
15599 |
-
msgid "Admin Order View Options"
|
15600 |
-
msgstr ""
|
15601 |
-
|
15602 |
-
#: includes/settings/wcj-settings-product-input-fields.php:325
|
15603 |
-
msgid "Replace Field ID with Field Label"
|
15604 |
-
msgstr ""
|
15605 |
-
|
15606 |
-
#: includes/settings/wcj-settings-product-input-fields.php:327
|
15607 |
-
#, php-format
|
15608 |
-
msgid "Please note: %s"
|
15609 |
-
msgstr ""
|
15610 |
-
|
15611 |
-
#: includes/settings/wcj-settings-product-input-fields.php:328
|
15612 |
-
msgid ""
|
15613 |
-
"When checked - will disable input fields editing on admin order edit page."
|
15614 |
-
msgstr ""
|
15615 |
-
|
15616 |
-
#: includes/settings/wcj-settings-product-input-fields.php:336
|
15617 |
-
msgid ""
|
15618 |
-
"Preserves line breaks on admin, making some inputs like textarea more legible"
|
15619 |
-
msgstr ""
|
15620 |
-
|
15621 |
-
#: includes/settings/wcj-settings-product-input-fields.php:353
|
15622 |
-
msgid "Check for Outputted Data"
|
15623 |
-
msgstr ""
|
15624 |
-
|
15625 |
-
#: includes/settings/wcj-settings-product-input-fields.php:361
|
15626 |
-
msgid "Strip Slashes"
|
15627 |
-
msgstr ""
|
15628 |
-
|
15629 |
-
#: includes/settings/wcj-settings-product-input-fields.php:363
|
15630 |
-
#, php-format
|
15631 |
-
msgid "Enable this if you have single quotes %s converted to %s."
|
15632 |
-
msgstr ""
|
15633 |
-
|
15634 |
-
#: includes/settings/wcj-settings-product-listings.php:31
|
15635 |
-
msgid "Shop Page Display Options"
|
15636 |
-
msgstr ""
|
15637 |
-
|
15638 |
-
#: includes/settings/wcj-settings-product-listings.php:34
|
15639 |
-
#, php-format
|
15640 |
-
msgid ""
|
15641 |
-
"You can control what is shown on the product archive in <a href=\"%s"
|
15642 |
-
"\">WooCommerce > Settings > Products > Display > Shop page display</a>."
|
15643 |
-
msgstr ""
|
15644 |
-
|
15645 |
-
#: includes/settings/wcj-settings-product-listings.php:40
|
15646 |
-
msgid "Categories Count"
|
15647 |
-
msgstr ""
|
15648 |
-
|
15649 |
-
#: includes/settings/wcj-settings-product-listings.php:41
|
15650 |
-
msgid "Hide categories count on shop page"
|
15651 |
-
msgstr ""
|
15652 |
-
|
15653 |
-
#: includes/settings/wcj-settings-product-listings.php:48
|
15654 |
-
msgid ""
|
15655 |
-
" Excludes one or more categories from the shop page. Leave blank to disable."
|
15656 |
-
msgstr ""
|
15657 |
-
|
15658 |
-
#: includes/settings/wcj-settings-product-listings.php:57
|
15659 |
-
#: includes/settings/wcj-settings-product-listings.php:113
|
15660 |
-
msgid "Hide Empty"
|
15661 |
-
msgstr ""
|
15662 |
-
|
15663 |
-
#: includes/settings/wcj-settings-product-listings.php:58
|
15664 |
-
msgid "Hide empty categories on shop page"
|
15665 |
-
msgstr ""
|
15666 |
-
|
15667 |
-
#: includes/settings/wcj-settings-product-listings.php:64
|
15668 |
-
#: includes/settings/wcj-settings-product-listings.php:120
|
15669 |
-
msgid "Show Products"
|
15670 |
-
msgstr ""
|
15671 |
-
|
15672 |
-
#: includes/settings/wcj-settings-product-listings.php:65
|
15673 |
-
msgid "Show products if no categories are displayed on shop page"
|
15674 |
-
msgstr ""
|
15675 |
-
|
15676 |
-
#: includes/settings/wcj-settings-product-listings.php:71
|
15677 |
-
msgid "Exclude Categories Products"
|
15678 |
-
msgstr ""
|
15679 |
-
|
15680 |
-
#: includes/settings/wcj-settings-product-listings.php:72
|
15681 |
-
msgid ""
|
15682 |
-
" Excludes one or more categories products from the shop page. Leave blank to "
|
15683 |
-
"disable."
|
15684 |
-
msgstr ""
|
15685 |
-
|
15686 |
-
#: includes/settings/wcj-settings-product-listings.php:85
|
15687 |
-
msgid "Category Display Options"
|
15688 |
-
msgstr ""
|
15689 |
-
|
15690 |
-
#: includes/settings/wcj-settings-product-listings.php:88
|
15691 |
-
#, php-format
|
15692 |
-
msgid ""
|
15693 |
-
"You can control what is shown on category archives in <a href=\"%s"
|
15694 |
-
"\">WooCommerce > Settings > Products > Display > Default category display</"
|
15695 |
-
"a>."
|
15696 |
-
msgstr ""
|
15697 |
-
|
15698 |
-
#: includes/settings/wcj-settings-product-listings.php:94
|
15699 |
-
msgid "Subcategories Count"
|
15700 |
-
msgstr ""
|
15701 |
-
|
15702 |
-
#: includes/settings/wcj-settings-product-listings.php:95
|
15703 |
-
msgid "Hide subcategories count on category pages"
|
15704 |
-
msgstr ""
|
15705 |
-
|
15706 |
-
#: includes/settings/wcj-settings-product-listings.php:103
|
15707 |
-
msgid "Exclude Subcategories"
|
15708 |
-
msgstr ""
|
15709 |
-
|
15710 |
-
#: includes/settings/wcj-settings-product-listings.php:104
|
15711 |
-
msgid ""
|
15712 |
-
" Excludes one or more categories from the category (archive) pages. Leave "
|
15713 |
-
"blank to disable."
|
15714 |
-
msgstr ""
|
15715 |
-
|
15716 |
-
#: includes/settings/wcj-settings-product-listings.php:114
|
15717 |
-
msgid "Hide empty subcategories on category pages"
|
15718 |
-
msgstr ""
|
15719 |
-
|
15720 |
-
#: includes/settings/wcj-settings-product-listings.php:121
|
15721 |
-
msgid "Show products if no categories are displayed on category page"
|
15722 |
-
msgstr ""
|
15723 |
-
|
15724 |
-
#: includes/settings/wcj-settings-product-listings.php:131
|
15725 |
-
#: includes/settings/wcj-settings-product-listings.php:137
|
15726 |
-
msgid "Product Shop Visibility by Price"
|
15727 |
-
msgstr ""
|
15728 |
-
|
15729 |
-
#: includes/settings/wcj-settings-product-listings.php:133
|
15730 |
-
msgid ""
|
15731 |
-
"Here you can set to hide products from shop and search results depending on "
|
15732 |
-
"product's price. Products will still be accessible via direct link."
|
15733 |
-
msgstr ""
|
15734 |
-
|
15735 |
-
#: includes/settings/wcj-settings-product-listings.php:144
|
15736 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
|
15737 |
-
msgid "Min Price"
|
15738 |
-
msgstr ""
|
15739 |
-
|
15740 |
-
#: includes/settings/wcj-settings-product-listings.php:145
|
15741 |
-
msgid ""
|
15742 |
-
"Products with price below this value will be hidden. Ignored if set to zero."
|
15743 |
-
msgstr ""
|
15744 |
-
|
15745 |
-
#: includes/settings/wcj-settings-product-listings.php:152
|
15746 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
|
15747 |
-
msgid "Max Price"
|
15748 |
-
msgstr ""
|
15749 |
-
|
15750 |
-
#: includes/settings/wcj-settings-product-listings.php:153
|
15751 |
-
msgid ""
|
15752 |
-
"Products with price above this value will be hidden. Ignored if set to zero."
|
15753 |
-
msgstr ""
|
15754 |
-
|
15755 |
-
#: includes/settings/wcj-settings-product-msrp.php:20
|
15756 |
-
#, php-format
|
15757 |
-
msgid "%s Display Options"
|
15758 |
-
msgstr ""
|
15759 |
-
|
15760 |
-
#: includes/settings/wcj-settings-product-msrp.php:30
|
15761 |
-
msgid "Do not show"
|
15762 |
-
msgstr ""
|
15763 |
-
|
15764 |
-
#: includes/settings/wcj-settings-product-msrp.php:32
|
15765 |
-
msgid "Only show if MSRP is higher than the standard price"
|
15766 |
-
msgstr ""
|
15767 |
-
|
15768 |
-
#: includes/settings/wcj-settings-product-msrp.php:33
|
15769 |
-
msgid "Only show if MSRP differs from the standard price"
|
15770 |
-
msgstr ""
|
15771 |
-
|
15772 |
-
#: includes/settings/wcj-settings-product-msrp.php:42
|
15773 |
-
msgid "Before the standard price"
|
15774 |
-
msgstr ""
|
15775 |
-
|
15776 |
-
#: includes/settings/wcj-settings-product-msrp.php:43
|
15777 |
-
msgid "After the standard price"
|
15778 |
-
msgstr ""
|
15779 |
-
|
15780 |
-
#: includes/settings/wcj-settings-product-msrp.php:47
|
15781 |
-
msgid "Savings"
|
15782 |
-
msgstr ""
|
15783 |
-
|
15784 |
-
#: includes/settings/wcj-settings-product-msrp.php:48
|
15785 |
-
#, php-format
|
15786 |
-
msgid "Savings amount. To display this, use %s in \"Final Template\""
|
15787 |
-
msgstr ""
|
15788 |
-
|
15789 |
-
#: includes/settings/wcj-settings-product-msrp.php:55
|
15790 |
-
#, php-format
|
15791 |
-
msgid ""
|
15792 |
-
"Savings amount in percent. To display this, use %s in \"Final Template\""
|
15793 |
-
msgstr ""
|
15794 |
-
|
15795 |
-
#: includes/settings/wcj-settings-product-msrp.php:62
|
15796 |
-
msgid "Savings amount in percent rounding precision"
|
15797 |
-
msgstr ""
|
15798 |
-
|
15799 |
-
#: includes/settings/wcj-settings-product-msrp.php:69
|
15800 |
-
msgid "Final Template"
|
15801 |
-
msgstr ""
|
15802 |
-
|
15803 |
-
#: includes/settings/wcj-settings-product-msrp.php:91
|
15804 |
-
msgid "Admin MSRP Input Display"
|
15805 |
-
msgstr ""
|
15806 |
-
|
15807 |
-
#: includes/settings/wcj-settings-product-msrp.php:97
|
15808 |
-
msgid "As separate meta box"
|
15809 |
-
msgstr ""
|
15810 |
-
|
15811 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:27
|
15812 |
-
msgid "Frontend Label"
|
15813 |
-
msgstr ""
|
15814 |
-
|
15815 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:34
|
15816 |
-
msgid "Frontend Template"
|
15817 |
-
msgstr ""
|
15818 |
-
|
15819 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:35
|
15820 |
-
msgid "Here you can use"
|
15821 |
-
msgstr ""
|
15822 |
-
|
15823 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:43
|
15824 |
-
msgid "Frontend Input Style"
|
15825 |
-
msgstr ""
|
15826 |
-
|
15827 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:50
|
15828 |
-
msgid "Frontend Input Placeholder"
|
15829 |
-
msgstr ""
|
15830 |
-
|
15831 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:57
|
15832 |
-
msgid "Frontend Input Price Step"
|
15833 |
-
msgstr ""
|
15834 |
-
|
15835 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:64
|
15836 |
-
msgid "Frontend Position"
|
15837 |
-
msgstr ""
|
15838 |
-
|
15839 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:71
|
15840 |
-
msgid "Message on Empty Price"
|
15841 |
-
msgstr ""
|
15842 |
-
|
15843 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:78
|
15844 |
-
msgid "Message on Price too Small"
|
15845 |
-
msgstr ""
|
15846 |
-
|
15847 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:86
|
15848 |
-
msgid "Message on Price too Big"
|
15849 |
-
msgstr ""
|
15850 |
-
|
15851 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:94
|
15852 |
-
msgid "Disable Quantity Input"
|
15853 |
-
msgstr ""
|
15854 |
-
|
15855 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:101
|
15856 |
-
msgid "Enable JS Min/Max Validation"
|
15857 |
-
msgstr ""
|
15858 |
-
|
15859 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:108
|
15860 |
-
msgid "Display Product Price Info in Archives"
|
15861 |
-
msgstr ""
|
15862 |
-
|
15863 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:115
|
15864 |
-
msgid ""
|
15865 |
-
"Product price info in archives template. Replaceable values: <code>"
|
15866 |
-
"%default_price%</code>, <code>%min_price%</code>, <code>%max_price%</code>."
|
15867 |
-
msgstr ""
|
15868 |
-
|
15869 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:122
|
15870 |
-
msgid "Add \"Open Pricing\" Column to Admin Product List"
|
15871 |
-
msgstr ""
|
15872 |
-
|
15873 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:129
|
15874 |
-
msgid "Advanced: Multicurrency (Currency Switcher) Module"
|
15875 |
-
msgstr ""
|
15876 |
-
|
15877 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:134
|
15878 |
-
msgid "Allow price entering in default shop currency only"
|
15879 |
-
msgstr ""
|
15880 |
-
|
15881 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:135
|
15882 |
-
msgid "Allow price entering in switched currency"
|
15883 |
-
msgstr ""
|
15884 |
-
|
15885 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:148
|
15886 |
-
msgid "Disable open pricing for products with \"Price Changes\""
|
15887 |
-
msgstr ""
|
15888 |
-
|
15889 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:155
|
15890 |
-
msgid "Product Bundles"
|
15891 |
-
msgstr ""
|
15892 |
-
|
15893 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:156
|
15894 |
-
msgid "For \"WPC Product Bundles for WooCommerce\" plugin."
|
15895 |
-
msgstr ""
|
15896 |
-
|
15897 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:161
|
15898 |
-
msgid "No not divide"
|
15899 |
-
msgstr ""
|
15900 |
-
|
15901 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:162
|
15902 |
-
msgid "Divide by number of products in a bundle"
|
15903 |
-
msgstr ""
|
15904 |
-
|
15905 |
-
#: includes/settings/wcj-settings-product-open-pricing.php:163
|
15906 |
-
msgid "Divide proportionally to the original price"
|
15907 |
-
msgstr ""
|
15908 |
-
|
15909 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:14
|
15910 |
-
msgid "Default Settings"
|
15911 |
-
msgstr ""
|
15912 |
-
|
15913 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:16
|
15914 |
-
msgid ""
|
15915 |
-
"You can set default settings here. All settings can later be changed in "
|
15916 |
-
"individual product's edit page."
|
15917 |
-
msgstr ""
|
15918 |
-
|
15919 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:20
|
15920 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
|
15921 |
-
msgid "Formula"
|
15922 |
-
msgstr ""
|
15923 |
-
|
15924 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:21
|
15925 |
-
#, php-format
|
15926 |
-
msgid "Use %s variable for product's base price. For example: %s."
|
15927 |
-
msgstr ""
|
15928 |
-
|
15929 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:29
|
15930 |
-
msgid "Enable Price Calculation By Formula For All Products"
|
15931 |
-
msgstr ""
|
15932 |
-
|
15933 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:38
|
15934 |
-
msgid "Total Params"
|
15935 |
-
msgstr ""
|
15936 |
-
|
15937 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:59
|
15938 |
-
msgid "General Settings"
|
15939 |
-
msgstr ""
|
15940 |
-
|
15941 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:69
|
15942 |
-
msgid "No rounding (disabled)"
|
15943 |
-
msgstr ""
|
15944 |
-
|
15945 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:83
|
15946 |
-
msgid "Disable Admin Scope"
|
15947 |
-
msgstr ""
|
15948 |
-
|
15949 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:84
|
15950 |
-
msgid "Disable module on Admin scope."
|
15951 |
-
msgstr ""
|
15952 |
-
|
15953 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:85
|
15954 |
-
msgid ""
|
15955 |
-
"Disable if you want to use Product Price by Formula module only on Frontend."
|
15956 |
-
msgstr ""
|
15957 |
-
|
15958 |
-
#: includes/settings/wcj-settings-product-price-by-formula.php:85
|
15959 |
-
msgid ""
|
15960 |
-
"For example if you use Cost of Goods module the profit will be correctly "
|
15961 |
-
"calculated if you leave the box unticked"
|
15962 |
-
msgstr ""
|
15963 |
-
|
15964 |
-
#: includes/settings/wcj-settings-product-tabs.php:20
|
15965 |
-
msgid "Content Processing"
|
15966 |
-
msgstr ""
|
15967 |
-
|
15968 |
-
#: includes/settings/wcj-settings-product-tabs.php:25
|
15969 |
-
#, php-format
|
15970 |
-
msgid "Apply %s filter"
|
15971 |
-
msgstr ""
|
15972 |
-
|
15973 |
-
#: includes/settings/wcj-settings-product-tabs.php:26
|
15974 |
-
msgid "Only process shortcodes"
|
15975 |
-
msgstr ""
|
15976 |
-
|
15977 |
-
#: includes/settings/wcj-settings-product-tabs.php:36
|
15978 |
-
#: includes/settings/wcj-settings-product-tabs.php:42
|
15979 |
-
msgid "Custom Product Tabs - All Products"
|
15980 |
-
msgstr ""
|
15981 |
-
|
15982 |
-
#: includes/settings/wcj-settings-product-tabs.php:38
|
15983 |
-
msgid "This section lets you add custom single product tabs."
|
15984 |
-
msgstr ""
|
15985 |
-
|
15986 |
-
#: includes/settings/wcj-settings-product-tabs.php:49
|
15987 |
-
msgid "Custom Product Tabs Number"
|
15988 |
-
msgstr ""
|
15989 |
-
|
15990 |
-
#: includes/settings/wcj-settings-product-tabs.php:80
|
15991 |
-
#: includes/settings/wcj-settings-product-tabs.php:279
|
15992 |
-
msgid "Make sure it's unique for each tab."
|
15993 |
-
msgstr ""
|
15994 |
-
|
15995 |
-
#: includes/settings/wcj-settings-product-tabs.php:93
|
15996 |
-
#: includes/settings/wcj-settings-product-tabs.php:292
|
15997 |
-
msgid "You can use shortcodes here..."
|
15998 |
-
msgstr ""
|
15999 |
-
|
16000 |
-
#: includes/settings/wcj-settings-product-tabs.php:114
|
16001 |
-
#: includes/settings/wcj-settings-product-tabs.php:313
|
16002 |
-
msgid "PRODUCTS to HIDE this tab"
|
16003 |
-
msgstr ""
|
16004 |
-
|
16005 |
-
#: includes/settings/wcj-settings-product-tabs.php:115
|
16006 |
-
#: includes/settings/wcj-settings-product-tabs.php:314
|
16007 |
-
msgid "To hide this tab from some products, enter products here."
|
16008 |
-
msgstr ""
|
16009 |
-
|
16010 |
-
#: includes/settings/wcj-settings-product-tabs.php:123
|
16011 |
-
#: includes/settings/wcj-settings-product-tabs.php:322
|
16012 |
-
msgid "PRODUCTS to SHOW this tab"
|
16013 |
-
msgstr ""
|
16014 |
-
|
16015 |
-
#: includes/settings/wcj-settings-product-tabs.php:124
|
16016 |
-
#: includes/settings/wcj-settings-product-tabs.php:323
|
16017 |
-
msgid "To show this tab only for some products, enter products here."
|
16018 |
-
msgstr ""
|
16019 |
-
|
16020 |
-
#: includes/settings/wcj-settings-product-tabs.php:132
|
16021 |
-
#: includes/settings/wcj-settings-product-tabs.php:331
|
16022 |
-
msgid "CATEGORIES to HIDE this tab"
|
16023 |
-
msgstr ""
|
16024 |
-
|
16025 |
-
#: includes/settings/wcj-settings-product-tabs.php:133
|
16026 |
-
#: includes/settings/wcj-settings-product-tabs.php:332
|
16027 |
-
msgid "To hide this tab from some categories, enter categories here."
|
16028 |
-
msgstr ""
|
16029 |
-
|
16030 |
-
#: includes/settings/wcj-settings-product-tabs.php:141
|
16031 |
-
#: includes/settings/wcj-settings-product-tabs.php:340
|
16032 |
-
msgid "CATEGORIES to SHOW this tab"
|
16033 |
-
msgstr ""
|
16034 |
-
|
16035 |
-
#: includes/settings/wcj-settings-product-tabs.php:142
|
16036 |
-
#: includes/settings/wcj-settings-product-tabs.php:341
|
16037 |
-
msgid "To show this tab only for some categories, enter categories here."
|
16038 |
-
msgstr ""
|
16039 |
-
|
16040 |
-
#: includes/settings/wcj-settings-product-tabs.php:150
|
16041 |
-
#: includes/settings/wcj-settings-product-tabs.php:349
|
16042 |
-
msgid "TAGS to HIDE this tab"
|
16043 |
-
msgstr ""
|
16044 |
-
|
16045 |
-
#: includes/settings/wcj-settings-product-tabs.php:151
|
16046 |
-
#: includes/settings/wcj-settings-product-tabs.php:350
|
16047 |
-
msgid "To hide this tab from some tags, enter tags here."
|
16048 |
-
msgstr ""
|
16049 |
-
|
16050 |
-
#: includes/settings/wcj-settings-product-tabs.php:159
|
16051 |
-
#: includes/settings/wcj-settings-product-tabs.php:358
|
16052 |
-
msgid "TAGS to SHOW this tab"
|
16053 |
-
msgstr ""
|
16054 |
-
|
16055 |
-
#: includes/settings/wcj-settings-product-tabs.php:160
|
16056 |
-
#: includes/settings/wcj-settings-product-tabs.php:359
|
16057 |
-
msgid "To show this tab only for some tags, enter tags here."
|
16058 |
-
msgstr ""
|
16059 |
-
|
16060 |
-
#: includes/settings/wcj-settings-product-tabs.php:172
|
16061 |
-
msgid "Comma separated PRODUCT IDs to HIDE this tab"
|
16062 |
-
msgstr ""
|
16063 |
-
|
16064 |
-
#: includes/settings/wcj-settings-product-tabs.php:173
|
16065 |
-
msgid "To hide this tab from some products, enter product IDs here."
|
16066 |
-
msgstr ""
|
16067 |
-
|
16068 |
-
#: includes/settings/wcj-settings-product-tabs.php:184
|
16069 |
-
msgid "Comma separated PRODUCT IDs to SHOW this tab"
|
16070 |
-
msgstr ""
|
16071 |
-
|
16072 |
-
#: includes/settings/wcj-settings-product-tabs.php:185
|
16073 |
-
msgid "To show this tab only for some products, enter product IDs here."
|
16074 |
-
msgstr ""
|
16075 |
-
|
16076 |
-
#: includes/settings/wcj-settings-product-tabs.php:196
|
16077 |
-
msgid "Comma separated CATEGORY IDs to HIDE this tab"
|
16078 |
-
msgstr ""
|
16079 |
-
|
16080 |
-
#: includes/settings/wcj-settings-product-tabs.php:197
|
16081 |
-
msgid "To hide this tab from some categories, enter category IDs here."
|
16082 |
-
msgstr ""
|
16083 |
-
|
16084 |
-
#: includes/settings/wcj-settings-product-tabs.php:208
|
16085 |
-
msgid "Comma separated CATEGORY IDs to SHOW this tab"
|
16086 |
-
msgstr ""
|
16087 |
-
|
16088 |
-
#: includes/settings/wcj-settings-product-tabs.php:209
|
16089 |
-
msgid "To show this tab only for some categories, enter category IDs here."
|
16090 |
-
msgstr ""
|
16091 |
-
|
16092 |
-
#: includes/settings/wcj-settings-product-tabs.php:225
|
16093 |
-
msgid "Custom Product Tabs - Per Product"
|
16094 |
-
msgstr ""
|
16095 |
-
|
16096 |
-
#: includes/settings/wcj-settings-product-tabs.php:227
|
16097 |
-
msgid "This section lets you set defaults for per product custom tabs."
|
16098 |
-
msgstr ""
|
16099 |
-
|
16100 |
-
#: includes/settings/wcj-settings-product-tabs.php:231
|
16101 |
-
msgid "Enable Per Product Custom Product Tabs"
|
16102 |
-
msgstr ""
|
16103 |
-
|
16104 |
-
#: includes/settings/wcj-settings-product-tabs.php:239
|
16105 |
-
msgid "Use Visual Editor"
|
16106 |
-
msgstr ""
|
16107 |
-
|
16108 |
-
#: includes/settings/wcj-settings-product-tabs.php:246
|
16109 |
-
msgid "Add Per Product Tabs Content to \"Yoast SEO\" plugin analysis"
|
16110 |
-
msgstr ""
|
16111 |
-
|
16112 |
-
#: includes/settings/wcj-settings-product-tabs.php:253
|
16113 |
-
msgid "Default Per Product Custom Product Tabs Number"
|
16114 |
-
msgstr ""
|
16115 |
-
|
16116 |
-
#: includes/settings/wcj-settings-product-tabs.php:271
|
16117 |
-
msgid "Default Title"
|
16118 |
-
msgstr ""
|
16119 |
-
|
16120 |
-
#: includes/settings/wcj-settings-product-tabs.php:278
|
16121 |
-
msgid "Default Key"
|
16122 |
-
msgstr ""
|
16123 |
-
|
16124 |
-
#: includes/settings/wcj-settings-product-tabs.php:285
|
16125 |
-
msgid "Default Priority (i.e. Order)"
|
16126 |
-
msgstr ""
|
16127 |
-
|
16128 |
-
#: includes/settings/wcj-settings-product-tabs.php:291
|
16129 |
-
msgid "Default Content"
|
16130 |
-
msgstr ""
|
16131 |
-
|
16132 |
-
#: includes/settings/wcj-settings-product-tabs.php:299
|
16133 |
-
msgid "Default Link"
|
16134 |
-
msgstr ""
|
16135 |
-
|
16136 |
-
#: includes/settings/wcj-settings-product-tabs.php:300
|
16137 |
-
msgid "Leave blank for default behaviour."
|
16138 |
-
msgstr ""
|
16139 |
-
|
16140 |
-
#: includes/settings/wcj-settings-product-tabs.php:307
|
16141 |
-
msgid "Default \"Link - Open in New Window\""
|
16142 |
-
msgstr ""
|
16143 |
-
|
16144 |
-
#: includes/settings/wcj-settings-product-tabs.php:375
|
16145 |
-
msgid "WooCommerce Standard Product Tabs Options"
|
16146 |
-
msgstr ""
|
16147 |
-
|
16148 |
-
#: includes/settings/wcj-settings-product-tabs.php:377
|
16149 |
-
msgid "This section lets you customize single product tabs."
|
16150 |
-
msgstr ""
|
16151 |
-
|
16152 |
-
#: includes/settings/wcj-settings-product-tabs.php:381
|
16153 |
-
msgid "Description Tab"
|
16154 |
-
msgstr ""
|
16155 |
-
|
16156 |
-
#: includes/settings/wcj-settings-product-tabs.php:382
|
16157 |
-
#: includes/settings/wcj-settings-product-tabs.php:403
|
16158 |
-
#: includes/settings/wcj-settings-product-tabs.php:424
|
16159 |
-
msgid "Remove tab from product page"
|
16160 |
-
msgstr ""
|
16161 |
-
|
16162 |
-
#: includes/settings/wcj-settings-product-tabs.php:389
|
16163 |
-
#: includes/settings/wcj-settings-product-tabs.php:410
|
16164 |
-
#: includes/settings/wcj-settings-product-tabs.php:431
|
16165 |
-
msgid "Leave blank for WooCommerce defaults"
|
16166 |
-
msgstr ""
|
16167 |
-
|
16168 |
-
#: includes/settings/wcj-settings-product-tabs.php:402
|
16169 |
-
msgid "Additional Information Tab"
|
16170 |
-
msgstr ""
|
16171 |
-
|
16172 |
-
#: includes/settings/wcj-settings-product-tabs.php:423
|
16173 |
-
msgid "Reviews Tab"
|
16174 |
-
msgstr ""
|
16175 |
-
|
16176 |
-
#: includes/settings/wcj-settings-products-per-page.php:19
|
16177 |
-
msgid "Select Options"
|
16178 |
-
msgstr ""
|
16179 |
-
|
16180 |
-
#: includes/settings/wcj-settings-products-per-page.php:20
|
16181 |
-
msgid ""
|
16182 |
-
"<code>Name|Number</code>; one per line; <code>-1</code> for all products;"
|
16183 |
-
msgstr ""
|
16184 |
-
|
16185 |
-
#: includes/settings/wcj-settings-products-per-page.php:42
|
16186 |
-
msgid "Before shop loop"
|
16187 |
-
msgstr ""
|
16188 |
-
|
16189 |
-
#: includes/settings/wcj-settings-products-per-page.php:43
|
16190 |
-
msgid "After shop loop"
|
16191 |
-
msgstr ""
|
16192 |
-
|
16193 |
-
#: includes/settings/wcj-settings-products-per-page.php:47
|
16194 |
-
msgid "Position Priority"
|
16195 |
-
msgstr ""
|
16196 |
-
|
16197 |
-
#: includes/settings/wcj-settings-products-per-page.php:54
|
16198 |
-
msgid "Template - Before Form"
|
16199 |
-
msgstr ""
|
16200 |
-
|
16201 |
-
#: includes/settings/wcj-settings-products-per-page.php:61
|
16202 |
-
msgid "Template - Form"
|
16203 |
-
msgstr ""
|
16204 |
-
|
16205 |
-
#: includes/settings/wcj-settings-products-per-page.php:68
|
16206 |
-
msgid "Template - After Form"
|
16207 |
-
msgstr ""
|
16208 |
-
|
16209 |
-
#: includes/settings/wcj-settings-products-per-page.php:75
|
16210 |
-
msgid "Saving Method"
|
16211 |
-
msgstr ""
|
16212 |
-
|
16213 |
-
#: includes/settings/wcj-settings-products-per-page.php:80
|
16214 |
-
msgid "Cookie"
|
16215 |
-
msgstr ""
|
16216 |
-
|
16217 |
-
#: includes/settings/wcj-settings-products-per-page.php:81
|
16218 |
-
msgid "Session"
|
16219 |
-
msgstr ""
|
16220 |
-
|
16221 |
-
#: includes/settings/wcj-settings-products-xml.php:35
|
16222 |
-
msgid "Advanced: Block Size"
|
16223 |
-
msgstr ""
|
16224 |
-
|
16225 |
-
#: includes/settings/wcj-settings-products-xml.php:36
|
16226 |
-
msgid ""
|
16227 |
-
"If you have large number of products you may want to modify block size for "
|
16228 |
-
"WP_Query call. Leave default value if not sure."
|
16229 |
-
msgstr ""
|
16230 |
-
|
16231 |
-
#: includes/settings/wcj-settings-products-xml.php:55
|
16232 |
-
msgid ""
|
16233 |
-
"If you've made any changes in module's settings - don't forget to save "
|
16234 |
-
"changes before clicking this button."
|
16235 |
-
msgstr ""
|
16236 |
-
|
16237 |
-
#: includes/settings/wcj-settings-products-xml.php:57
|
16238 |
-
msgid "Create Now"
|
16239 |
-
msgstr ""
|
16240 |
-
|
16241 |
-
#: includes/settings/wcj-settings-products-xml.php:63
|
16242 |
-
#, php-format
|
16243 |
-
msgid "Recent file was created on %s"
|
16244 |
-
msgstr ""
|
16245 |
-
|
16246 |
-
#: includes/settings/wcj-settings-products-xml.php:70
|
16247 |
-
msgid "XML File"
|
16248 |
-
msgstr ""
|
16249 |
-
|
16250 |
-
#: includes/settings/wcj-settings-products-xml.php:83
|
16251 |
-
msgid "XML Header"
|
16252 |
-
msgstr ""
|
16253 |
-
|
16254 |
-
#: includes/settings/wcj-settings-products-xml.php:84
|
16255 |
-
#, php-format
|
16256 |
-
msgid "You can use shortcodes here. For example %s."
|
16257 |
-
msgstr ""
|
16258 |
-
|
16259 |
-
#: includes/settings/wcj-settings-products-xml.php:91
|
16260 |
-
msgid "XML Item"
|
16261 |
-
msgstr ""
|
16262 |
-
|
16263 |
-
#: includes/settings/wcj-settings-products-xml.php:93
|
16264 |
-
#, php-format
|
16265 |
-
msgid ""
|
16266 |
-
"You can use shortcodes here. Please take a look at <a target=\"_blank\" href="
|
16267 |
-
"\"%s\">Booster's products shortcodes</a>."
|
16268 |
-
msgstr ""
|
16269 |
-
|
16270 |
-
#: includes/settings/wcj-settings-products-xml.php:110
|
16271 |
-
msgid "XML Footer"
|
16272 |
-
msgstr ""
|
16273 |
-
|
16274 |
-
#: includes/settings/wcj-settings-products-xml.php:118
|
16275 |
-
msgid "XML File Path and Name"
|
16276 |
-
msgstr ""
|
16277 |
-
|
16278 |
-
#: includes/settings/wcj-settings-products-xml.php:119
|
16279 |
-
msgid "Path on server:"
|
16280 |
-
msgstr ""
|
16281 |
-
|
16282 |
-
#: includes/settings/wcj-settings-products-xml.php:129
|
16283 |
-
msgid "Update Period"
|
16284 |
-
msgstr ""
|
16285 |
-
|
16286 |
-
#: includes/settings/wcj-settings-products-xml.php:141
|
16287 |
-
msgid ""
|
16288 |
-
"Possible update periods are: every minute, hourly, twice daily, daily and "
|
16289 |
-
"weekly."
|
16290 |
-
msgstr ""
|
16291 |
-
|
16292 |
-
#: includes/settings/wcj-settings-products-xml.php:148
|
16293 |
-
msgid ""
|
16294 |
-
"To include selected products only, enter products here. Leave blank to "
|
16295 |
-
"include all products."
|
16296 |
-
msgstr ""
|
16297 |
-
|
16298 |
-
#: includes/settings/wcj-settings-products-xml.php:158
|
16299 |
-
msgid ""
|
16300 |
-
"To exclude selected products, enter products here. Leave blank to include "
|
16301 |
-
"all products."
|
16302 |
-
msgstr ""
|
16303 |
-
|
16304 |
-
#: includes/settings/wcj-settings-products-xml.php:166
|
16305 |
-
msgid "Categories to Include"
|
16306 |
-
msgstr ""
|
16307 |
-
|
16308 |
-
#: includes/settings/wcj-settings-products-xml.php:167
|
16309 |
-
msgid ""
|
16310 |
-
"To include products from selected categories only, enter categories here. "
|
16311 |
-
"Leave blank to include all products."
|
16312 |
-
msgstr ""
|
16313 |
-
|
16314 |
-
#: includes/settings/wcj-settings-products-xml.php:175
|
16315 |
-
msgid "Categories to Exclude"
|
16316 |
-
msgstr ""
|
16317 |
-
|
16318 |
-
#: includes/settings/wcj-settings-products-xml.php:176
|
16319 |
-
msgid ""
|
16320 |
-
"To exclude products from selected categories, enter categories here. Leave "
|
16321 |
-
"blank to include all products."
|
16322 |
-
msgstr ""
|
16323 |
-
|
16324 |
-
#: includes/settings/wcj-settings-products-xml.php:184
|
16325 |
-
msgid "Tags to Include"
|
16326 |
-
msgstr ""
|
16327 |
-
|
16328 |
-
#: includes/settings/wcj-settings-products-xml.php:185
|
16329 |
-
msgid ""
|
16330 |
-
"To include products from selected tags only, enter tags here. Leave blank to "
|
16331 |
-
"include all products."
|
16332 |
-
msgstr ""
|
16333 |
-
|
16334 |
-
#: includes/settings/wcj-settings-products-xml.php:193
|
16335 |
-
msgid "Tags to Exclude"
|
16336 |
-
msgstr ""
|
16337 |
-
|
16338 |
-
#: includes/settings/wcj-settings-products-xml.php:194
|
16339 |
-
msgid ""
|
16340 |
-
"To exclude products from selected tags, enter tags here. Leave blank to "
|
16341 |
-
"include all products."
|
16342 |
-
msgstr ""
|
16343 |
-
|
16344 |
-
#: includes/settings/wcj-settings-products-xml.php:202
|
16345 |
-
msgid "Products Scope"
|
16346 |
-
msgstr ""
|
16347 |
-
|
16348 |
-
#: includes/settings/wcj-settings-products-xml.php:208
|
16349 |
-
msgid "Only products that are on sale"
|
16350 |
-
msgstr ""
|
16351 |
-
|
16352 |
-
#: includes/settings/wcj-settings-products-xml.php:210
|
16353 |
-
msgid "Only products that are featured"
|
16354 |
-
msgstr ""
|
16355 |
-
|
16356 |
-
#: includes/settings/wcj-settings-products-xml.php:211
|
16357 |
-
msgid "Only products that are not featured"
|
16358 |
-
msgstr ""
|
16359 |
-
|
16360 |
-
#: includes/settings/wcj-settings-products-xml.php:215
|
16361 |
-
msgid "Sort Products by"
|
16362 |
-
msgstr ""
|
16363 |
-
|
16364 |
-
#: includes/settings/wcj-settings-products-xml.php:222
|
16365 |
-
msgid "Author"
|
16366 |
-
msgstr ""
|
16367 |
-
|
16368 |
-
#: includes/settings/wcj-settings-products-xml.php:224
|
16369 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:140
|
16370 |
-
msgid "Slug"
|
16371 |
-
msgstr ""
|
16372 |
-
|
16373 |
-
#: includes/settings/wcj-settings-products-xml.php:226
|
16374 |
-
msgid "Rand"
|
16375 |
-
msgstr ""
|
16376 |
-
|
16377 |
-
#: includes/settings/wcj-settings-products-xml.php:230
|
16378 |
-
msgid "Sorting Order"
|
16379 |
-
msgstr ""
|
16380 |
-
|
16381 |
-
#: includes/settings/wcj-settings-products-xml.php:240
|
16382 |
-
msgid "Max Products"
|
16383 |
-
msgstr ""
|
16384 |
-
|
16385 |
-
#: includes/settings/wcj-settings-products-xml.php:241
|
16386 |
-
msgid "Set to -1 to include all products."
|
16387 |
-
msgstr ""
|
16388 |
-
|
16389 |
-
#: includes/settings/wcj-settings-purchase-data.php:15
|
16390 |
-
msgid "Price Fields"
|
16391 |
-
msgstr ""
|
16392 |
-
|
16393 |
-
#: includes/settings/wcj-settings-purchase-data.php:17
|
16394 |
-
#: includes/settings/wcj-settings-purchase-data.php:59
|
16395 |
-
msgid ""
|
16396 |
-
"These fields will be added to product's edit page and will be included in "
|
16397 |
-
"product's purchase cost calculation."
|
16398 |
-
msgstr ""
|
16399 |
-
|
16400 |
-
#: includes/settings/wcj-settings-purchase-data.php:21
|
16401 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
|
16402 |
-
msgid "Product cost (purchase) price"
|
16403 |
-
msgstr ""
|
16404 |
-
|
16405 |
-
#: includes/settings/wcj-settings-purchase-data.php:28
|
16406 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
|
16407 |
-
msgid "Extra expenses (shipping etc.)"
|
16408 |
-
msgstr ""
|
16409 |
-
|
16410 |
-
#: includes/settings/wcj-settings-purchase-data.php:35
|
16411 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
|
16412 |
-
msgid "Affiliate commission"
|
16413 |
-
msgstr ""
|
16414 |
-
|
16415 |
-
#: includes/settings/wcj-settings-purchase-data.php:42
|
16416 |
-
msgid "Profit Percentage Type"
|
16417 |
-
msgstr ""
|
16418 |
-
|
16419 |
-
#: includes/settings/wcj-settings-purchase-data.php:43
|
16420 |
-
msgid "Example:"
|
16421 |
-
msgstr ""
|
16422 |
-
|
16423 |
-
#: includes/settings/wcj-settings-purchase-data.php:43
|
16424 |
-
msgid "Selling: $3.000 | Buying: $1.000"
|
16425 |
-
msgstr ""
|
16426 |
-
|
16427 |
-
#: includes/settings/wcj-settings-purchase-data.php:43
|
16428 |
-
msgid "Margin: 66% | Markup: $200%"
|
16429 |
-
msgstr ""
|
16430 |
-
|
16431 |
-
#: includes/settings/wcj-settings-purchase-data.php:47
|
16432 |
-
msgid "Margin"
|
16433 |
-
msgstr ""
|
16434 |
-
|
16435 |
-
#: includes/settings/wcj-settings-purchase-data.php:48
|
16436 |
-
msgid "Markup"
|
16437 |
-
msgstr ""
|
16438 |
-
|
16439 |
-
#: includes/settings/wcj-settings-purchase-data.php:57
|
16440 |
-
msgid "Custom Price Fields"
|
16441 |
-
msgstr ""
|
16442 |
-
|
16443 |
-
#: includes/settings/wcj-settings-purchase-data.php:63
|
16444 |
-
msgid "Total Custom Price Fields"
|
16445 |
-
msgstr ""
|
16446 |
-
|
16447 |
-
#: includes/settings/wcj-settings-purchase-data.php:75
|
16448 |
-
msgid "Custom Price Field"
|
16449 |
-
msgstr ""
|
16450 |
-
|
16451 |
-
#: includes/settings/wcj-settings-purchase-data.php:107
|
16452 |
-
msgid "Info Fields"
|
16453 |
-
msgstr ""
|
16454 |
-
|
16455 |
-
#: includes/settings/wcj-settings-purchase-data.php:109
|
16456 |
-
msgid "These fields will be added to product's edit page."
|
16457 |
-
msgstr ""
|
16458 |
-
|
16459 |
-
#: includes/settings/wcj-settings-purchase-data.php:113
|
16460 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
|
16461 |
-
msgid "(Last) Purchase date"
|
16462 |
-
msgstr ""
|
16463 |
-
|
16464 |
-
#: includes/settings/wcj-settings-purchase-data.php:120
|
16465 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
|
16466 |
-
msgid "Seller"
|
16467 |
-
msgstr ""
|
16468 |
-
|
16469 |
-
#: includes/settings/wcj-settings-purchase-data.php:127
|
16470 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
|
16471 |
-
msgid "Purchase info"
|
16472 |
-
msgstr ""
|
16473 |
-
|
16474 |
-
#: includes/settings/wcj-settings-purchase-data.php:138
|
16475 |
-
msgid "Admin Products List Custom Columns"
|
16476 |
-
msgstr ""
|
16477 |
-
|
16478 |
-
#: includes/settings/wcj-settings-purchase-data.php:140
|
16479 |
-
msgid ""
|
16480 |
-
"This section lets you add custom columns to WooCommerce admin products list."
|
16481 |
-
msgstr ""
|
16482 |
-
|
16483 |
-
#: includes/settings/wcj-settings-purchase-data.php:166
|
16484 |
-
msgid "Admin Orders List Custom Columns"
|
16485 |
-
msgstr ""
|
16486 |
-
|
16487 |
-
#: includes/settings/wcj-settings-purchase-data.php:168
|
16488 |
-
msgid ""
|
16489 |
-
"This section lets you add custom columns to WooCommerce admin orders list."
|
16490 |
-
msgstr ""
|
16491 |
-
|
16492 |
-
#: includes/settings/wcj-settings-purchase-data.php:190
|
16493 |
-
#: includes/settings/wcj-settings-sku.php:210
|
16494 |
-
#: includes/settings/wcj-settings-stock.php:199
|
16495 |
-
msgid "More Options"
|
16496 |
-
msgstr ""
|
16497 |
-
|
16498 |
-
#: includes/settings/wcj-settings-purchase-data.php:195
|
16499 |
-
msgid "Treat Variable Products as Simple Products"
|
16500 |
-
msgstr ""
|
16501 |
-
|
16502 |
-
#: includes/settings/wcj-settings-related-products.php:27
|
16503 |
-
msgid "Meta Value"
|
16504 |
-
msgstr ""
|
16505 |
-
|
16506 |
-
#: includes/settings/wcj-settings-related-products.php:28
|
16507 |
-
msgid "Meta Value (Numeric)"
|
16508 |
-
msgstr ""
|
16509 |
-
|
16510 |
-
#: includes/settings/wcj-settings-related-products.php:43
|
16511 |
-
msgid "Related Products Number"
|
16512 |
-
msgstr ""
|
16513 |
-
|
16514 |
-
#: includes/settings/wcj-settings-related-products.php:49
|
16515 |
-
msgid "Related Products Columns"
|
16516 |
-
msgstr ""
|
16517 |
-
|
16518 |
-
#: includes/settings/wcj-settings-related-products.php:64
|
16519 |
-
msgid "Order by"
|
16520 |
-
msgstr ""
|
16521 |
-
|
16522 |
-
#: includes/settings/wcj-settings-related-products.php:74
|
16523 |
-
msgid "Meta Key"
|
16524 |
-
msgstr ""
|
16525 |
-
|
16526 |
-
#: includes/settings/wcj-settings-related-products.php:75
|
16527 |
-
msgid ""
|
16528 |
-
"Used only if order by \"Meta Value\" or \"Meta Value (Numeric)\" is selected "
|
16529 |
-
"in \"Order by\"."
|
16530 |
-
msgstr ""
|
16531 |
-
|
16532 |
-
#: includes/settings/wcj-settings-related-products.php:85
|
16533 |
-
msgid "Ignored if order by \"Random\" is selected in \"Order by\"."
|
16534 |
-
msgstr ""
|
16535 |
-
|
16536 |
-
#: includes/settings/wcj-settings-related-products.php:99
|
16537 |
-
msgid "Relate"
|
16538 |
-
msgstr ""
|
16539 |
-
|
16540 |
-
#: includes/settings/wcj-settings-related-products.php:104
|
16541 |
-
msgid "Relate by Category"
|
16542 |
-
msgstr ""
|
16543 |
-
|
16544 |
-
#: includes/settings/wcj-settings-related-products.php:111
|
16545 |
-
msgid "Relate by Tag"
|
16546 |
-
msgstr ""
|
16547 |
-
|
16548 |
-
#: includes/settings/wcj-settings-related-products.php:118
|
16549 |
-
msgid "Relate by Product Attribute"
|
16550 |
-
msgstr ""
|
16551 |
-
|
16552 |
-
#: includes/settings/wcj-settings-related-products.php:125
|
16553 |
-
msgid "Attribute Type"
|
16554 |
-
msgstr ""
|
16555 |
-
|
16556 |
-
#: includes/settings/wcj-settings-related-products.php:126
|
16557 |
-
msgid ""
|
16558 |
-
"If using \"Global Attribute\" enter attribute's <em>slug</em> in \"Attribute "
|
16559 |
-
"Name\""
|
16560 |
-
msgstr ""
|
16561 |
-
|
16562 |
-
#: includes/settings/wcj-settings-related-products.php:131
|
16563 |
-
msgid "Global Attribute"
|
16564 |
-
msgstr ""
|
16565 |
-
|
16566 |
-
#: includes/settings/wcj-settings-related-products.php:132
|
16567 |
-
msgid "Local Attribute"
|
16568 |
-
msgstr ""
|
16569 |
-
|
16570 |
-
#: includes/settings/wcj-settings-related-products.php:136
|
16571 |
-
msgid "Attribute Name"
|
16572 |
-
msgstr ""
|
16573 |
-
|
16574 |
-
#: includes/settings/wcj-settings-related-products.php:142
|
16575 |
-
msgid "Attribute Value"
|
16576 |
-
msgstr ""
|
16577 |
-
|
16578 |
-
#: includes/settings/wcj-settings-related-products.php:148
|
16579 |
-
msgid "Relate Manually"
|
16580 |
-
msgstr ""
|
16581 |
-
|
16582 |
-
#: includes/settings/wcj-settings-related-products.php:150
|
16583 |
-
msgid "This will add metabox to each product's edit page."
|
16584 |
-
msgstr ""
|
16585 |
-
|
16586 |
-
#: includes/settings/wcj-settings-related-products.php:151
|
16587 |
-
msgid ""
|
16588 |
-
"You will be able to select related products manually for each product "
|
16589 |
-
"individually. There is also an option to remove related products on per "
|
16590 |
-
"product basis."
|
16591 |
-
msgstr ""
|
16592 |
-
|
16593 |
-
#: includes/settings/wcj-settings-related-products.php:159
|
16594 |
-
msgid "Relate Manually: Select box type"
|
16595 |
-
msgstr ""
|
16596 |
-
|
16597 |
-
#: includes/settings/wcj-settings-related-products.php:169
|
16598 |
-
msgid "Default metabox value"
|
16599 |
-
msgstr ""
|
16600 |
-
|
16601 |
-
#: includes/settings/wcj-settings-related-products.php:170
|
16602 |
-
msgid ""
|
16603 |
-
"If set to \"Yes\" and no products are selected it will hide related products"
|
16604 |
-
msgstr ""
|
16605 |
-
|
16606 |
-
#: includes/settings/wcj-settings-related-products.php:189
|
16607 |
-
msgid "Hide Related Products"
|
16608 |
-
msgstr ""
|
16609 |
-
|
16610 |
-
#: includes/settings/wcj-settings-related-products.php:197
|
16611 |
-
msgid ""
|
16612 |
-
"Set this field to hide related products on selected product categories only. "
|
16613 |
-
"Leave blank to hide on all products."
|
16614 |
-
msgstr ""
|
16615 |
-
|
16616 |
-
#: includes/settings/wcj-settings-related-products.php:206
|
16617 |
-
msgid ""
|
16618 |
-
"Set this field to NOT hide related products on selected product categories. "
|
16619 |
-
"Leave blank to hide on all products."
|
16620 |
-
msgstr ""
|
16621 |
-
|
16622 |
-
#: includes/settings/wcj-settings-related-products.php:215
|
16623 |
-
msgid ""
|
16624 |
-
"Set this field to hide related products on selected product tags only. Leave "
|
16625 |
-
"blank to hide on all products."
|
16626 |
-
msgstr ""
|
16627 |
-
|
16628 |
-
#: includes/settings/wcj-settings-related-products.php:224
|
16629 |
-
msgid ""
|
16630 |
-
"Set this field to NOT hide related products on selected product tags. Leave "
|
16631 |
-
"blank to hide on all products."
|
16632 |
-
msgstr ""
|
16633 |
-
|
16634 |
-
#: includes/settings/wcj-settings-related-products.php:234
|
16635 |
-
msgid ""
|
16636 |
-
"Set this field to hide related products on selected products only. Leave "
|
16637 |
-
"blank to hide on all products."
|
16638 |
-
msgstr ""
|
16639 |
-
|
16640 |
-
#: includes/settings/wcj-settings-related-products.php:245
|
16641 |
-
msgid ""
|
16642 |
-
"Set this field to NOT hide related products on selected products. Leave "
|
16643 |
-
"blank to hide on all products."
|
16644 |
-
msgstr ""
|
16645 |
-
|
16646 |
-
#: includes/settings/wcj-settings-reports.php:14
|
16647 |
-
msgid "Orders Reports"
|
16648 |
-
msgstr ""
|
16649 |
-
|
16650 |
-
#: includes/settings/wcj-settings-reports.php:19
|
16651 |
-
msgid "Product Sales (Daily)"
|
16652 |
-
msgstr ""
|
16653 |
-
|
16654 |
-
#: includes/settings/wcj-settings-reports.php:26
|
16655 |
-
msgid "Report columns"
|
16656 |
-
msgstr ""
|
16657 |
-
|
16658 |
-
#: includes/settings/wcj-settings-reports.php:27
|
16659 |
-
msgid "Set empty to include all columns."
|
16660 |
-
msgstr ""
|
16661 |
-
|
16662 |
-
#: includes/settings/wcj-settings-reports.php:35
|
16663 |
-
msgid "Order statuses"
|
16664 |
-
msgstr ""
|
16665 |
-
|
16666 |
-
#: includes/settings/wcj-settings-reports.php:36
|
16667 |
-
msgid "Set empty to include all statuses."
|
16668 |
-
msgstr ""
|
16669 |
-
|
16670 |
-
#: includes/settings/wcj-settings-reports.php:44
|
16671 |
-
#: includes/settings/wcj-settings-reports.php:85
|
16672 |
-
msgid "Include taxes"
|
16673 |
-
msgstr ""
|
16674 |
-
|
16675 |
-
#: includes/settings/wcj-settings-reports.php:51
|
16676 |
-
#: includes/settings/wcj-settings-reports.php:92
|
16677 |
-
msgid "Count variations for variable products"
|
16678 |
-
msgstr ""
|
16679 |
-
|
16680 |
-
#: includes/settings/wcj-settings-reports.php:57
|
16681 |
-
msgid "Product Sales (Monthly)"
|
16682 |
-
msgstr ""
|
16683 |
-
|
16684 |
-
#: includes/settings/wcj-settings-reports.php:64
|
16685 |
-
msgid "Display item sales"
|
16686 |
-
msgstr ""
|
16687 |
-
|
16688 |
-
#: includes/settings/wcj-settings-reports.php:71
|
16689 |
-
msgid "Display sales sum"
|
16690 |
-
msgstr ""
|
16691 |
-
|
16692 |
-
#: includes/settings/wcj-settings-reports.php:78
|
16693 |
-
msgid "Display profit"
|
16694 |
-
msgstr ""
|
16695 |
-
|
16696 |
-
#: includes/settings/wcj-settings-reports.php:98
|
16697 |
-
msgid "Monthly Sales (with Currency Conversion)"
|
16698 |
-
msgstr ""
|
16699 |
-
|
16700 |
-
#: includes/settings/wcj-settings-reports.php:105
|
16701 |
-
msgid "Include current day for current month"
|
16702 |
-
msgstr ""
|
16703 |
-
|
16704 |
-
#: includes/settings/wcj-settings-reports.php:112
|
16705 |
-
msgid "Forecast total orders and sum (excl. TAX) for current month and year"
|
16706 |
-
msgstr ""
|
16707 |
-
|
16708 |
-
#: includes/settings/wcj-settings-reports.php:128
|
16709 |
-
msgid "Customers Reports"
|
16710 |
-
msgstr ""
|
16711 |
-
|
16712 |
-
#: includes/settings/wcj-settings-reports.php:133
|
16713 |
-
msgid "Customers by Country"
|
16714 |
-
msgstr ""
|
16715 |
-
|
16716 |
-
#: includes/settings/wcj-settings-reports.php:139
|
16717 |
-
msgid "Customers by Country Sets"
|
16718 |
-
msgstr ""
|
16719 |
-
|
16720 |
-
#: includes/settings/wcj-settings-reports.php:149
|
16721 |
-
msgid "Stock Reports"
|
16722 |
-
msgstr ""
|
16723 |
-
|
16724 |
-
#: includes/settings/wcj-settings-reports.php:154
|
16725 |
-
msgid "All in Stock with sales data"
|
16726 |
-
msgstr ""
|
16727 |
-
|
16728 |
-
#: includes/settings/wcj-settings-reports.php:160
|
16729 |
-
msgid "Understocked products (calculated by sales data)"
|
16730 |
-
msgstr ""
|
16731 |
-
|
16732 |
-
#: includes/settings/wcj-settings-reports.php:166
|
16733 |
-
msgid "Overstocked products (calculated by sales data)"
|
16734 |
-
msgstr ""
|
16735 |
-
|
16736 |
-
#: includes/settings/wcj-settings-reports.php:173
|
16737 |
-
msgid "product type"
|
16738 |
-
msgstr ""
|
16739 |
-
|
16740 |
-
#: includes/settings/wcj-settings-reports.php:174
|
16741 |
-
msgid "Product type for all \"Stock\" reports."
|
16742 |
-
msgstr ""
|
16743 |
-
|
16744 |
-
#: includes/settings/wcj-settings-reports.php:180
|
16745 |
-
msgid "Both products and variations"
|
16746 |
-
msgstr ""
|
16747 |
-
|
16748 |
-
#: includes/settings/wcj-settings-reports.php:185
|
16749 |
-
msgid "Include deleted products"
|
16750 |
-
msgstr ""
|
16751 |
-
|
16752 |
-
#: includes/settings/wcj-settings-reports.php:186
|
16753 |
-
msgid "Include deleted products in all \"Stock\" reports."
|
16754 |
-
msgstr ""
|
16755 |
-
|
16756 |
-
#: includes/settings/wcj-settings-reports.php:208
|
16757 |
-
msgid "View report"
|
16758 |
-
msgstr ""
|
16759 |
-
|
16760 |
-
#: includes/settings/wcj-settings-sale-flash.php:14
|
16761 |
-
#: includes/settings/wcj-settings-sale-flash.php:19
|
16762 |
-
msgid "Globally"
|
16763 |
-
msgstr ""
|
16764 |
-
|
16765 |
-
#: includes/settings/wcj-settings-sale-flash.php:34
|
16766 |
-
msgid "Hide Everywhere"
|
16767 |
-
msgstr ""
|
16768 |
-
|
16769 |
-
#: includes/settings/wcj-settings-sale-flash.php:41
|
16770 |
-
msgid "Hide on Archives (Categories) Only"
|
16771 |
-
msgstr ""
|
16772 |
-
|
16773 |
-
#: includes/settings/wcj-settings-sale-flash.php:48
|
16774 |
-
msgid "Hide on Single Page Only"
|
16775 |
-
msgstr ""
|
16776 |
-
|
16777 |
-
#: includes/settings/wcj-settings-sale-flash.php:81
|
16778 |
-
msgid "Per Tag"
|
16779 |
-
msgstr ""
|
16780 |
-
|
16781 |
-
#: includes/settings/wcj-settings-sale-flash.php:98
|
16782 |
-
msgid "Terms to Modify"
|
16783 |
-
msgstr ""
|
16784 |
-
|
16785 |
-
#: includes/settings/wcj-settings-sale-flash.php:99
|
16786 |
-
msgid "Save changes to see new option fields."
|
16787 |
-
msgstr ""
|
16788 |
-
|
16789 |
-
#: includes/settings/wcj-settings-sale-flash.php:110
|
16790 |
-
#, php-format
|
16791 |
-
msgid "Term #%s"
|
16792 |
-
msgstr ""
|
16793 |
-
|
16794 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:41
|
16795 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:47
|
16796 |
-
#, php-format
|
16797 |
-
msgid "Shipping Methods by %s"
|
16798 |
-
msgstr ""
|
16799 |
-
|
16800 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:77
|
16801 |
-
#, php-format
|
16802 |
-
msgid "Include %s"
|
16803 |
-
msgstr ""
|
16804 |
-
|
16805 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:88
|
16806 |
-
#, php-format
|
16807 |
-
msgid "Exclude %s"
|
16808 |
-
msgstr ""
|
16809 |
-
|
16810 |
-
#: includes/settings/wcj-settings-shipping-by-condition.php:113
|
16811 |
-
msgid "Filter Priority"
|
16812 |
-
msgstr ""
|
16813 |
-
|
16814 |
-
#: includes/settings/wcj-settings-shipping-by-order-amount.php:65
|
16815 |
-
msgid "Maximum order amount"
|
16816 |
-
msgstr ""
|
16817 |
-
|
16818 |
-
#: includes/settings/wcj-settings-shipping-by-order-qty.php:57
|
16819 |
-
msgid "Minimum order quantity"
|
16820 |
-
msgstr ""
|
16821 |
-
|
16822 |
-
#: includes/settings/wcj-settings-shipping-by-order-qty.php:65
|
16823 |
-
msgid "Maximum order quantity"
|
16824 |
-
msgstr ""
|
16825 |
-
|
16826 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:14
|
16827 |
-
msgid "Shipping Calculator Options"
|
16828 |
-
msgstr ""
|
16829 |
-
|
16830 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:19
|
16831 |
-
msgid "Enable City"
|
16832 |
-
msgstr ""
|
16833 |
-
|
16834 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:26
|
16835 |
-
msgid "Enable Postcode"
|
16836 |
-
msgstr ""
|
16837 |
-
|
16838 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:33
|
16839 |
-
msgid "Enable State"
|
16840 |
-
msgstr ""
|
16841 |
-
|
16842 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:40
|
16843 |
-
msgid "Force Block Open"
|
16844 |
-
msgstr ""
|
16845 |
-
|
16846 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:48
|
16847 |
-
msgid "Calculate Shipping button"
|
16848 |
-
msgstr ""
|
16849 |
-
|
16850 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:49
|
16851 |
-
msgid ""
|
16852 |
-
"When \"Force Block Open\" options is enabled, set Calculate Shipping button "
|
16853 |
-
"options."
|
16854 |
-
msgstr ""
|
16855 |
-
|
16856 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:55
|
16857 |
-
msgid "Make non clickable"
|
16858 |
-
msgstr ""
|
16859 |
-
|
16860 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:63
|
16861 |
-
msgid "Labels Options"
|
16862 |
-
msgstr ""
|
16863 |
-
|
16864 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:68
|
16865 |
-
msgid "Labels"
|
16866 |
-
msgstr ""
|
16867 |
-
|
16868 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:77
|
16869 |
-
msgid "Label for Calculate Shipping"
|
16870 |
-
msgstr ""
|
16871 |
-
|
16872 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:79
|
16873 |
-
msgid "Calculate Shipping"
|
16874 |
-
msgstr ""
|
16875 |
-
|
16876 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:85
|
16877 |
-
msgid "Label for Update Totals"
|
16878 |
-
msgstr ""
|
16879 |
-
|
16880 |
-
#: includes/settings/wcj-settings-shipping-calculator.php:87
|
16881 |
-
msgid "Update Totals"
|
16882 |
-
msgstr ""
|
16883 |
-
|
16884 |
-
#: includes/settings/wcj-settings-shipping-description.php:16
|
16885 |
-
#, php-format
|
16886 |
-
msgid ""
|
16887 |
-
"This section will allow you to add any text (e.g. description) for shipping "
|
16888 |
-
"method. Text will be visible on cart and checkout pages. You can add HTML "
|
16889 |
-
"tags here, e.g. try %s."
|
16890 |
-
msgstr ""
|
16891 |
-
|
16892 |
-
#: includes/settings/wcj-settings-shipping-description.php:21
|
16893 |
-
msgid "Description Visibility"
|
16894 |
-
msgstr ""
|
16895 |
-
|
16896 |
-
#: includes/settings/wcj-settings-shipping-description.php:27
|
16897 |
-
#: includes/settings/wcj-settings-shipping-icons.php:36
|
16898 |
-
msgid "Only on cart page"
|
16899 |
-
msgstr ""
|
16900 |
-
|
16901 |
-
#: includes/settings/wcj-settings-shipping-description.php:28
|
16902 |
-
#: includes/settings/wcj-settings-shipping-icons.php:37
|
16903 |
-
msgid "Only on checkout page"
|
16904 |
-
msgstr ""
|
16905 |
-
|
16906 |
-
#: includes/settings/wcj-settings-shipping-description.php:30
|
16907 |
-
msgid ""
|
16908 |
-
"Possible values: on both cart and checkout pages; only on cart page; only on "
|
16909 |
-
"checkout page."
|
16910 |
-
msgstr ""
|
16911 |
-
|
16912 |
-
#: includes/settings/wcj-settings-shipping-description.php:35
|
16913 |
-
msgid "Description Position"
|
16914 |
-
msgstr ""
|
16915 |
-
|
16916 |
-
#: includes/settings/wcj-settings-shipping-description.php:40
|
16917 |
-
msgid "After the label"
|
16918 |
-
msgstr ""
|
16919 |
-
|
16920 |
-
#: includes/settings/wcj-settings-shipping-description.php:41
|
16921 |
-
msgid "Before the label"
|
16922 |
-
msgstr ""
|
16923 |
-
|
16924 |
-
#: includes/settings/wcj-settings-shipping-description.php:42
|
16925 |
-
msgid "Instead of the label"
|
16926 |
-
msgstr ""
|
16927 |
-
|
16928 |
-
#: includes/settings/wcj-settings-shipping-description.php:44
|
16929 |
-
msgid ""
|
16930 |
-
"Possible values: after the label; before the label; instead of the label."
|
16931 |
-
msgstr ""
|
16932 |
-
|
16933 |
-
#: includes/settings/wcj-settings-shipping-description.php:53
|
16934 |
-
msgid "Shipping Methods Descriptions"
|
16935 |
-
msgstr ""
|
16936 |
-
|
16937 |
-
#: includes/settings/wcj-settings-shipping-icons.php:16
|
16938 |
-
msgid ""
|
16939 |
-
"This section will allow you to add icons for shipping method. Icons will be "
|
16940 |
-
"visible on cart and checkout pages."
|
16941 |
-
msgstr ""
|
16942 |
-
|
16943 |
-
#: includes/settings/wcj-settings-shipping-icons.php:20
|
16944 |
-
msgid "Icon Position"
|
16945 |
-
msgstr ""
|
16946 |
-
|
16947 |
-
#: includes/settings/wcj-settings-shipping-icons.php:25
|
16948 |
-
msgid "Before label"
|
16949 |
-
msgstr ""
|
16950 |
-
|
16951 |
-
#: includes/settings/wcj-settings-shipping-icons.php:26
|
16952 |
-
msgid "After label"
|
16953 |
-
msgstr ""
|
16954 |
-
|
16955 |
-
#: includes/settings/wcj-settings-shipping-icons.php:30
|
16956 |
-
msgid "Icon Visibility"
|
16957 |
-
msgstr ""
|
16958 |
-
|
16959 |
-
#: includes/settings/wcj-settings-shipping-icons.php:39
|
16960 |
-
msgid ""
|
16961 |
-
"Possible values: on both cart and checkout pages; only on cart page; only on "
|
16962 |
-
"checkout page"
|
16963 |
-
msgstr ""
|
16964 |
-
|
16965 |
-
#: includes/settings/wcj-settings-shipping-icons.php:44
|
16966 |
-
msgid "Icon Style"
|
16967 |
-
msgstr ""
|
16968 |
-
|
16969 |
-
#: includes/settings/wcj-settings-shipping-icons.php:45
|
16970 |
-
msgid ""
|
16971 |
-
"You can also style icons with CSS class \"wcj_shipping_icon\", or id "
|
16972 |
-
"\"wcj_shipping_icon_method_id\""
|
16973 |
-
msgstr ""
|
16974 |
-
|
16975 |
-
#: includes/settings/wcj-settings-shipping-icons.php:55
|
16976 |
-
msgid "Shipping Methods Icons"
|
16977 |
-
msgstr ""
|
16978 |
-
|
16979 |
-
#: includes/settings/wcj-settings-shipping-options.php:14
|
16980 |
-
msgid "Hide if Free Shipping is Available"
|
16981 |
-
msgstr ""
|
16982 |
-
|
16983 |
-
#: includes/settings/wcj-settings-shipping-options.php:16
|
16984 |
-
msgid ""
|
16985 |
-
"This section lets you hide other shipping options when free shipping is "
|
16986 |
-
"available on shop frontend."
|
16987 |
-
msgstr ""
|
16988 |
-
|
16989 |
-
#: includes/settings/wcj-settings-shipping-options.php:20
|
16990 |
-
msgid "Hide when free is available"
|
16991 |
-
msgstr ""
|
16992 |
-
|
16993 |
-
#: includes/settings/wcj-settings-shipping-options.php:40
|
16994 |
-
msgid "Advanced: Filter Priority"
|
16995 |
-
msgstr ""
|
16996 |
-
|
16997 |
-
#: includes/settings/wcj-settings-shipping-options.php:53
|
16998 |
-
#: includes/settings/wcj-settings-shipping-options.php:62
|
16999 |
-
msgid "Free Shipping by Product"
|
17000 |
-
msgstr ""
|
17001 |
-
|
17002 |
-
#: includes/settings/wcj-settings-shipping-options.php:54
|
17003 |
-
msgid ""
|
17004 |
-
"In this section you can select products which grant free shipping when added "
|
17005 |
-
"to cart."
|
17006 |
-
msgstr ""
|
17007 |
-
|
17008 |
-
#: includes/settings/wcj-settings-shipping-options.php:55
|
17009 |
-
#, php-format
|
17010 |
-
msgid "Similar results can be achieved with %s module."
|
17011 |
-
msgstr ""
|
17012 |
-
|
17013 |
-
#: includes/settings/wcj-settings-shipping-options.php:78
|
17014 |
-
msgid ""
|
17015 |
-
"Select either <strong>all products</strong> or <strong>at least one product</"
|
17016 |
-
"strong> in cart must grant free shipping."
|
17017 |
-
msgstr ""
|
17018 |
-
|
17019 |
-
#: includes/settings/wcj-settings-shipping-options.php:83
|
17020 |
-
msgid "All products in cart must grant free shipping"
|
17021 |
-
msgstr ""
|
17022 |
-
|
17023 |
-
#: includes/settings/wcj-settings-shipping-options.php:84
|
17024 |
-
msgid "At least one product in cart must grant free shipping"
|
17025 |
-
msgstr ""
|
17026 |
-
|
17027 |
-
#: includes/settings/wcj-settings-shipping-time.php:39
|
17028 |
-
msgid "Use Product Shipping Classes"
|
17029 |
-
msgstr ""
|
17030 |
-
|
17031 |
-
#: includes/settings/wcj-settings-shipping-time.php:41
|
17032 |
-
msgid ""
|
17033 |
-
"Enable this if you want to set options for each shipping class separately."
|
17034 |
-
msgstr ""
|
17035 |
-
|
17036 |
-
#: includes/settings/wcj-settings-shipping-time.php:55
|
17037 |
-
msgid "Shipping Time Options"
|
17038 |
-
msgstr ""
|
17039 |
-
|
17040 |
-
#: includes/settings/wcj-settings-shipping-time.php:56
|
17041 |
-
msgid "Set estimated shipping time in <strong>days</strong>."
|
17042 |
-
msgstr ""
|
17043 |
-
|
17044 |
-
#: includes/settings/wcj-settings-shipping.php:13
|
17045 |
-
msgid "WooCommerce > Settings > Shipping"
|
17046 |
-
msgstr ""
|
17047 |
-
|
17048 |
-
#: includes/settings/wcj-settings-shipping.php:19
|
17049 |
-
msgid "This section lets you add custom shipping method."
|
17050 |
-
msgstr ""
|
17051 |
-
|
17052 |
-
#: includes/settings/wcj-settings-shipping.php:20
|
17053 |
-
#, php-format
|
17054 |
-
msgid "Visit %s to set method's options."
|
17055 |
-
msgstr ""
|
17056 |
-
|
17057 |
-
#: includes/settings/wcj-settings-shipping.php:32
|
17058 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:41
|
17059 |
-
msgid "Booster: Custom Shipping"
|
17060 |
-
msgstr ""
|
17061 |
-
|
17062 |
-
#: includes/settings/wcj-settings-shipping.php:43
|
17063 |
-
msgid "Custom Shipping (Legacy - without Shipping Zones)"
|
17064 |
-
msgstr ""
|
17065 |
-
|
17066 |
-
#: includes/settings/wcj-settings-shipping.php:46
|
17067 |
-
msgid "This section lets you set number of custom shipping methods to add."
|
17068 |
-
msgstr ""
|
17069 |
-
|
17070 |
-
#: includes/settings/wcj-settings-shipping.php:47
|
17071 |
-
#, php-format
|
17072 |
-
msgid "After setting the number, visit %s to set each method options."
|
17073 |
-
msgstr ""
|
17074 |
-
|
17075 |
-
#: includes/settings/wcj-settings-shipping.php:50
|
17076 |
-
msgid "Custom Shipping Methods Number"
|
17077 |
-
msgstr ""
|
17078 |
-
|
17079 |
-
#: includes/settings/wcj-settings-shipping.php:61
|
17080 |
-
msgid "Admin Title Custom Shipping"
|
17081 |
-
msgstr ""
|
17082 |
-
|
17083 |
-
#: includes/settings/wcj-settings-sku.php:17
|
17084 |
-
msgid "SKU Format Options"
|
17085 |
-
msgstr ""
|
17086 |
-
|
17087 |
-
#: includes/settings/wcj-settings-sku.php:27
|
17088 |
-
msgid "From product ID"
|
17089 |
-
msgstr ""
|
17090 |
-
|
17091 |
-
#: includes/settings/wcj-settings-sku.php:31
|
17092 |
-
msgid "Number generation method."
|
17093 |
-
msgstr ""
|
17094 |
-
|
17095 |
-
#: includes/settings/wcj-settings-sku.php:32
|
17096 |
-
msgid "Possible values: from product ID, sequential or pseudorandom."
|
17097 |
-
msgstr ""
|
17098 |
-
|
17099 |
-
#: includes/settings/wcj-settings-sku.php:37
|
17100 |
-
msgid "Sequential Number Generation - Counter"
|
17101 |
-
msgstr ""
|
17102 |
-
|
17103 |
-
#: includes/settings/wcj-settings-sku.php:38
|
17104 |
-
msgid ""
|
17105 |
-
"If you choose to use sequential number inside SKU, you can set current "
|
17106 |
-
"sequential number counter here."
|
17107 |
-
msgstr ""
|
17108 |
-
|
17109 |
-
#: includes/settings/wcj-settings-sku.php:49
|
17110 |
-
msgid "Sequential Number Generation - By Category"
|
17111 |
-
msgstr ""
|
17112 |
-
|
17113 |
-
#: includes/settings/wcj-settings-sku.php:50
|
17114 |
-
msgid "Enables sequential number generation by category."
|
17115 |
-
msgstr ""
|
17116 |
-
|
17117 |
-
#: includes/settings/wcj-settings-sku.php:59
|
17118 |
-
msgid "SKU prefix."
|
17119 |
-
msgstr ""
|
17120 |
-
|
17121 |
-
#: includes/settings/wcj-settings-sku.php:65
|
17122 |
-
msgid "Minimum Number Length"
|
17123 |
-
msgstr ""
|
17124 |
-
|
17125 |
-
#: includes/settings/wcj-settings-sku.php:66
|
17126 |
-
msgid "Minimum length for SKU number part."
|
17127 |
-
msgstr ""
|
17128 |
-
|
17129 |
-
#: includes/settings/wcj-settings-sku.php:73
|
17130 |
-
msgid "SKU suffix."
|
17131 |
-
msgstr ""
|
17132 |
-
|
17133 |
-
#: includes/settings/wcj-settings-sku.php:79
|
17134 |
-
msgid "Attributes Separator"
|
17135 |
-
msgstr ""
|
17136 |
-
|
17137 |
-
#: includes/settings/wcj-settings-sku.php:80
|
17138 |
-
#, php-format
|
17139 |
-
msgid "Used in %s, %s, %s and %s."
|
17140 |
-
msgstr ""
|
17141 |
-
|
17142 |
-
#: includes/settings/wcj-settings-sku.php:90
|
17143 |
-
msgid "Characters Case"
|
17144 |
-
msgstr ""
|
17145 |
-
|
17146 |
-
#: includes/settings/wcj-settings-sku.php:95
|
17147 |
-
msgid "Original (no changes)"
|
17148 |
-
msgstr ""
|
17149 |
-
|
17150 |
-
#: includes/settings/wcj-settings-sku.php:96
|
17151 |
-
msgid "Convert to lowercase"
|
17152 |
-
msgstr ""
|
17153 |
-
|
17154 |
-
#: includes/settings/wcj-settings-sku.php:97
|
17155 |
-
msgid "Convert to uppercase"
|
17156 |
-
msgstr ""
|
17157 |
-
|
17158 |
-
#: includes/settings/wcj-settings-sku.php:102
|
17159 |
-
msgid "SKU template."
|
17160 |
-
msgstr ""
|
17161 |
-
|
17162 |
-
#: includes/settings/wcj-settings-sku.php:118
|
17163 |
-
#, php-format
|
17164 |
-
msgid "You can also use shortcodes here, e.g.: %s etc."
|
17165 |
-
msgstr ""
|
17166 |
-
|
17167 |
-
#: includes/settings/wcj-settings-sku.php:128
|
17168 |
-
msgid "Variable Products Variations"
|
17169 |
-
msgstr ""
|
17170 |
-
|
17171 |
-
#: includes/settings/wcj-settings-sku.php:129
|
17172 |
-
msgid ""
|
17173 |
-
"SKU generation for variations. Please note, that if \"Generate SKU for New "
|
17174 |
-
"Products Only on First Publish\" option below is not checked, then on new "
|
17175 |
-
"variable product creation, variations will get same SKUs as parent product, "
|
17176 |
-
"and if you want variations to have different SKUs, you will need to run "
|
17177 |
-
"\"Autogenerate SKUs\" tool manually."
|
17178 |
-
msgstr ""
|
17179 |
-
|
17180 |
-
#: includes/settings/wcj-settings-sku.php:130
|
17181 |
-
msgid ""
|
17182 |
-
"Possible values: SKU same as parent's product; Generate different SKU for "
|
17183 |
-
"each variation; SKU same as parent's product + variation letter suffix."
|
17184 |
-
msgstr ""
|
17185 |
-
|
17186 |
-
#: includes/settings/wcj-settings-sku.php:135
|
17187 |
-
msgid "SKU same as parent's product"
|
17188 |
-
msgstr ""
|
17189 |
-
|
17190 |
-
#: includes/settings/wcj-settings-sku.php:136
|
17191 |
-
msgid "Generate different SKU for each variation"
|
17192 |
-
msgstr ""
|
17193 |
-
|
17194 |
-
#: includes/settings/wcj-settings-sku.php:137
|
17195 |
-
msgid "SKU same as parent's product + variation letter suffix"
|
17196 |
-
msgstr ""
|
17197 |
-
|
17198 |
-
#: includes/settings/wcj-settings-sku.php:149
|
17199 |
-
msgid "Categories Options"
|
17200 |
-
msgstr ""
|
17201 |
-
|
17202 |
-
#: includes/settings/wcj-settings-sku.php:154
|
17203 |
-
msgid "Multiple Categories"
|
17204 |
-
msgstr ""
|
17205 |
-
|
17206 |
-
#: includes/settings/wcj-settings-sku.php:155
|
17207 |
-
msgid ""
|
17208 |
-
"This options defines how to handle category prefixes and suffixes, if "
|
17209 |
-
"product has multiple categories."
|
17210 |
-
msgstr ""
|
17211 |
-
|
17212 |
-
#: includes/settings/wcj-settings-sku.php:160
|
17213 |
-
msgid "Use first category"
|
17214 |
-
msgstr ""
|
17215 |
-
|
17216 |
-
#: includes/settings/wcj-settings-sku.php:161
|
17217 |
-
msgid "\"Glue\" categories"
|
17218 |
-
msgstr ""
|
17219 |
-
|
17220 |
-
#: includes/settings/wcj-settings-sku.php:165
|
17221 |
-
msgid "Category separator (i.e. \"glue\")"
|
17222 |
-
msgstr ""
|
17223 |
-
|
17224 |
-
#: includes/settings/wcj-settings-sku.php:166
|
17225 |
-
msgid "Ignored if \"Use first category\" is selected above."
|
17226 |
-
msgstr ""
|
17227 |
-
|
17228 |
-
#: includes/settings/wcj-settings-sku.php:194
|
17229 |
-
msgid "Counter (Sequential)"
|
17230 |
-
msgstr ""
|
17231 |
-
|
17232 |
-
#: includes/settings/wcj-settings-sku.php:215
|
17233 |
-
msgid "Automatically Generate SKU for New Products"
|
17234 |
-
msgstr ""
|
17235 |
-
|
17236 |
-
#: includes/settings/wcj-settings-sku.php:217
|
17237 |
-
msgid "Alternatively you can use Autogenerate SKUs tool."
|
17238 |
-
msgstr ""
|
17239 |
-
|
17240 |
-
#: includes/settings/wcj-settings-sku.php:223
|
17241 |
-
msgid "Generate SKU for New Products Only on First Publish"
|
17242 |
-
msgstr ""
|
17243 |
-
|
17244 |
-
#: includes/settings/wcj-settings-sku.php:225
|
17245 |
-
msgid ""
|
17246 |
-
"This is important if, for example, you are using category prefix and don't "
|
17247 |
-
"want SKU generated too early, before you set the category."
|
17248 |
-
msgstr ""
|
17249 |
-
|
17250 |
-
#: includes/settings/wcj-settings-sku.php:231
|
17251 |
-
msgid "Allow Duplicate SKUs"
|
17252 |
-
msgstr ""
|
17253 |
-
|
17254 |
-
#: includes/settings/wcj-settings-sku.php:233
|
17255 |
-
msgid ""
|
17256 |
-
"If you wish to set SKUs manually, and you need to have same SKUs for "
|
17257 |
-
"different products, you can enable allow duplicate SKUs option here (which "
|
17258 |
-
"is disabled in WooCommerce by default)."
|
17259 |
-
msgstr ""
|
17260 |
-
|
17261 |
-
#: includes/settings/wcj-settings-sku.php:239
|
17262 |
-
msgid "Search by SKU"
|
17263 |
-
msgstr ""
|
17264 |
-
|
17265 |
-
#: includes/settings/wcj-settings-sku.php:241
|
17266 |
-
msgid "Add product searching by SKU on frontend."
|
17267 |
-
msgstr ""
|
17268 |
-
|
17269 |
-
#: includes/settings/wcj-settings-sku.php:247
|
17270 |
-
msgid "Advanced: Search by SKU Hook"
|
17271 |
-
msgstr ""
|
17272 |
-
|
17273 |
-
#: includes/settings/wcj-settings-sku.php:248
|
17274 |
-
msgid ""
|
17275 |
-
"If you are experiencing any issues with searching by SKU, try changing this "
|
17276 |
-
"option."
|
17277 |
-
msgstr ""
|
17278 |
-
|
17279 |
-
#: includes/settings/wcj-settings-sku.php:258
|
17280 |
-
msgid "Generate SKUs Only for Products with Empty SKU"
|
17281 |
-
msgstr ""
|
17282 |
-
|
17283 |
-
#: includes/settings/wcj-settings-sku.php:260
|
17284 |
-
msgid ""
|
17285 |
-
"This may help if you are going to use Autogenerate SKUs tool, but don't want "
|
17286 |
-
"to change your existing SKUs."
|
17287 |
-
msgstr ""
|
17288 |
-
|
17289 |
-
#: includes/settings/wcj-settings-sku.php:266
|
17290 |
-
msgid "Add SKU to Customer Emails"
|
17291 |
-
msgstr ""
|
17292 |
-
|
17293 |
-
#: includes/settings/wcj-settings-sku.php:268
|
17294 |
-
msgid "Adds product SKU to customer's emails."
|
17295 |
-
msgstr ""
|
17296 |
-
|
17297 |
-
#: includes/settings/wcj-settings-sku.php:274
|
17298 |
-
msgid "Remove SKU from Admin Emails"
|
17299 |
-
msgstr ""
|
17300 |
-
|
17301 |
-
#: includes/settings/wcj-settings-sku.php:276
|
17302 |
-
msgid "Removes product SKU from admin's emails."
|
17303 |
-
msgstr ""
|
17304 |
-
|
17305 |
-
#: includes/settings/wcj-settings-sku.php:282
|
17306 |
-
msgid "Disable SKUs"
|
17307 |
-
msgstr ""
|
17308 |
-
|
17309 |
-
#: includes/settings/wcj-settings-sku.php:284
|
17310 |
-
msgid ""
|
17311 |
-
"Enable this option if you are not going to use SKUs in your shop at all."
|
17312 |
-
msgstr ""
|
17313 |
-
|
17314 |
-
#: includes/settings/wcj-settings-sorting.php:14
|
17315 |
-
msgid "Add Custom Sorting"
|
17316 |
-
msgstr ""
|
17317 |
-
|
17318 |
-
#: includes/settings/wcj-settings-sorting.php:19
|
17319 |
-
msgid "Add More Sorting"
|
17320 |
-
msgstr ""
|
17321 |
-
|
17322 |
-
#: includes/settings/wcj-settings-sorting.php:26
|
17323 |
-
msgid "Sort by Name"
|
17324 |
-
msgstr ""
|
17325 |
-
|
17326 |
-
#: includes/settings/wcj-settings-sorting.php:27
|
17327 |
-
#: includes/settings/wcj-settings-sorting.php:30
|
17328 |
-
msgid "Sort by title: A to Z"
|
17329 |
-
msgstr ""
|
17330 |
-
|
17331 |
-
#: includes/settings/wcj-settings-sorting.php:28
|
17332 |
-
#: includes/settings/wcj-settings-sorting.php:37
|
17333 |
-
#: includes/settings/wcj-settings-sorting.php:46
|
17334 |
-
#: includes/settings/wcj-settings-sorting.php:55
|
17335 |
-
#: includes/settings/wcj-settings-sorting.php:73
|
17336 |
-
#: includes/settings/wcj-settings-sorting.php:82
|
17337 |
-
msgid "Text to show on frontend. Leave blank to disable."
|
17338 |
-
msgstr ""
|
17339 |
-
|
17340 |
-
#: includes/settings/wcj-settings-sorting.php:36
|
17341 |
-
#: includes/settings/wcj-settings-sorting.php:39
|
17342 |
-
msgid "Sort by title: Z to A"
|
17343 |
-
msgstr ""
|
17344 |
-
|
17345 |
-
#: includes/settings/wcj-settings-sorting.php:44
|
17346 |
-
msgid "Sort by SKU"
|
17347 |
-
msgstr ""
|
17348 |
-
|
17349 |
-
#: includes/settings/wcj-settings-sorting.php:45
|
17350 |
-
#: includes/settings/wcj-settings-sorting.php:48
|
17351 |
-
msgid "Sort by SKU: low to high"
|
17352 |
-
msgstr ""
|
17353 |
-
|
17354 |
-
#: includes/settings/wcj-settings-sorting.php:54
|
17355 |
-
#: includes/settings/wcj-settings-sorting.php:57
|
17356 |
-
msgid "Sort by SKU: high to low"
|
17357 |
-
msgstr ""
|
17358 |
-
|
17359 |
-
#: includes/settings/wcj-settings-sorting.php:63
|
17360 |
-
msgid "Sort SKUs as numbers instead of as texts"
|
17361 |
-
msgstr ""
|
17362 |
-
|
17363 |
-
#: includes/settings/wcj-settings-sorting.php:71
|
17364 |
-
msgid "Sort by stock quantity"
|
17365 |
-
msgstr ""
|
17366 |
-
|
17367 |
-
#: includes/settings/wcj-settings-sorting.php:72
|
17368 |
-
#: includes/settings/wcj-settings-sorting.php:75
|
17369 |
-
msgid "Sort by stock quantity: low to high"
|
17370 |
-
msgstr ""
|
17371 |
-
|
17372 |
-
#: includes/settings/wcj-settings-sorting.php:81
|
17373 |
-
#: includes/settings/wcj-settings-sorting.php:84
|
17374 |
-
msgid "Sort by stock quantity: high to low"
|
17375 |
-
msgstr ""
|
17376 |
-
|
17377 |
-
#: includes/settings/wcj-settings-sorting.php:93
|
17378 |
-
#: includes/settings/wcj-settings-sorting.php:98
|
17379 |
-
#: includes/settings/wcj-settings-sorting.php:105
|
17380 |
-
msgid "Rearrange Sorting"
|
17381 |
-
msgstr ""
|
17382 |
-
|
17383 |
-
#: includes/settings/wcj-settings-sorting.php:107
|
17384 |
-
msgid "Default:"
|
17385 |
-
msgstr ""
|
17386 |
-
|
17387 |
-
#: includes/settings/wcj-settings-sorting.php:117
|
17388 |
-
msgid "Default WooCommerce Sorting"
|
17389 |
-
msgstr ""
|
17390 |
-
|
17391 |
-
#: includes/settings/wcj-settings-sorting.php:122
|
17392 |
-
msgid "Default Sorting Options"
|
17393 |
-
msgstr ""
|
17394 |
-
|
17395 |
-
#: includes/settings/wcj-settings-sorting.php:156
|
17396 |
-
#: includes/settings/wcj-settings-sorting.php:161
|
17397 |
-
msgid "Remove All Sorting"
|
17398 |
-
msgstr ""
|
17399 |
-
|
17400 |
-
#: includes/settings/wcj-settings-sorting.php:162
|
17401 |
-
msgid "Remove all sorting (including WooCommerce default) from shop's frontend"
|
17402 |
-
msgstr ""
|
17403 |
-
|
17404 |
-
#: includes/settings/wcj-settings-sorting.php:174
|
17405 |
-
msgid "Restore Default WooCommerce Sorting"
|
17406 |
-
msgstr ""
|
17407 |
-
|
17408 |
-
#: includes/settings/wcj-settings-sorting.php:175
|
17409 |
-
msgid "Replaces theme's sorting by default WooCommerce sorting"
|
17410 |
-
msgstr ""
|
17411 |
-
|
17412 |
-
#: includes/settings/wcj-settings-sorting.php:181
|
17413 |
-
#: includes/settings/wcj-settings-sorting.php:182
|
17414 |
-
msgid "Restore"
|
17415 |
-
msgstr ""
|
17416 |
-
|
17417 |
-
#: includes/settings/wcj-settings-sorting.php:187
|
17418 |
-
msgid "Theme"
|
17419 |
-
msgstr ""
|
17420 |
-
|
17421 |
-
#: includes/settings/wcj-settings-sorting.php:188
|
17422 |
-
msgid "Theme that will have its sorting replaced."
|
17423 |
-
msgstr ""
|
17424 |
-
|
17425 |
-
#: includes/settings/wcj-settings-sorting.php:191
|
17426 |
-
msgid "Avada"
|
17427 |
-
msgstr ""
|
17428 |
-
|
17429 |
-
#: includes/settings/wcj-settings-stock.php:14
|
17430 |
-
msgid "Custom \"In Stock\" Options"
|
17431 |
-
msgstr ""
|
17432 |
-
|
17433 |
-
#: includes/settings/wcj-settings-stock.php:19
|
17434 |
-
msgid "Custom \"In Stock\""
|
17435 |
-
msgstr ""
|
17436 |
-
|
17437 |
-
#: includes/settings/wcj-settings-stock.php:26
|
17438 |
-
msgid "Custom \"In Stock\" Text"
|
17439 |
-
msgstr ""
|
17440 |
-
|
17441 |
-
#: includes/settings/wcj-settings-stock.php:33
|
17442 |
-
msgid "\"In Stock\" text."
|
17443 |
-
msgstr ""
|
17444 |
-
|
17445 |
-
#: includes/settings/wcj-settings-stock.php:34
|
17446 |
-
#: includes/settings/wcj-settings-stock.php:43
|
17447 |
-
#, php-format
|
17448 |
-
msgid "If needed, use %s to insert stock quantity."
|
17449 |
-
msgstr ""
|
17450 |
-
|
17451 |
-
#: includes/settings/wcj-settings-stock.php:42
|
17452 |
-
msgid "\"Low amount\" text."
|
17453 |
-
msgstr ""
|
17454 |
-
|
17455 |
-
#: includes/settings/wcj-settings-stock.php:45
|
17456 |
-
#, php-format
|
17457 |
-
msgid "Used only if %s is selected for %s in %s."
|
17458 |
-
msgstr ""
|
17459 |
-
|
17460 |
-
#: includes/settings/wcj-settings-stock.php:46
|
17461 |
-
msgid "Only show quantity remaining in stock when low"
|
17462 |
-
msgstr ""
|
17463 |
-
|
17464 |
-
#: includes/settings/wcj-settings-stock.php:47
|
17465 |
-
msgid "Stock display format"
|
17466 |
-
msgstr ""
|
17467 |
-
|
17468 |
-
#: includes/settings/wcj-settings-stock.php:48
|
17469 |
-
msgid "WooCommerce > Settings > Products > Inventory"
|
17470 |
-
msgstr ""
|
17471 |
-
|
17472 |
-
#: includes/settings/wcj-settings-stock.php:55
|
17473 |
-
msgid "\"Can be backordered\" text."
|
17474 |
-
msgstr ""
|
17475 |
-
|
17476 |
-
#: includes/settings/wcj-settings-stock.php:63
|
17477 |
-
msgid "Custom \"In Stock\" Class"
|
17478 |
-
msgstr ""
|
17479 |
-
|
17480 |
-
#: includes/settings/wcj-settings-stock.php:70
|
17481 |
-
#: includes/settings/wcj-settings-stock.php:101
|
17482 |
-
#: includes/settings/wcj-settings-stock.php:115
|
17483 |
-
#: includes/settings/wcj-settings-stock.php:160
|
17484 |
-
#, php-format
|
17485 |
-
msgid "Default: %s."
|
17486 |
-
msgstr ""
|
17487 |
-
|
17488 |
-
#: includes/settings/wcj-settings-stock.php:81
|
17489 |
-
msgid "Custom \"Out of Stock\" Options"
|
17490 |
-
msgstr ""
|
17491 |
-
|
17492 |
-
#: includes/settings/wcj-settings-stock.php:86
|
17493 |
-
msgid "Custom \"Out of Stock\""
|
17494 |
-
msgstr ""
|
17495 |
-
|
17496 |
-
#: includes/settings/wcj-settings-stock.php:93
|
17497 |
-
msgid "Custom \"Out of Stock\" Text"
|
17498 |
-
msgstr ""
|
17499 |
-
|
17500 |
-
#: includes/settings/wcj-settings-stock.php:108
|
17501 |
-
msgid "Custom \"Out of Stock\" Class"
|
17502 |
-
msgstr ""
|
17503 |
-
|
17504 |
-
#: includes/settings/wcj-settings-stock.php:126
|
17505 |
-
msgid "Custom \"Available on backorder\" Options"
|
17506 |
-
msgstr ""
|
17507 |
-
|
17508 |
-
#: includes/settings/wcj-settings-stock.php:131
|
17509 |
-
msgid "Custom \"Available on backorder\""
|
17510 |
-
msgstr ""
|
17511 |
-
|
17512 |
-
#: includes/settings/wcj-settings-stock.php:138
|
17513 |
-
msgid "Custom \"Available on backorder\" Text"
|
17514 |
-
msgstr ""
|
17515 |
-
|
17516 |
-
#: includes/settings/wcj-settings-stock.php:146
|
17517 |
-
#, php-format
|
17518 |
-
msgid "Default: %s or empty string."
|
17519 |
-
msgstr ""
|
17520 |
-
|
17521 |
-
#: includes/settings/wcj-settings-stock.php:146
|
17522 |
-
msgid "Available on backorder"
|
17523 |
-
msgstr ""
|
17524 |
-
|
17525 |
-
#: includes/settings/wcj-settings-stock.php:153
|
17526 |
-
msgid "Custom \"Available on backorder\" Class"
|
17527 |
-
msgstr ""
|
17528 |
-
|
17529 |
-
#: includes/settings/wcj-settings-stock.php:171
|
17530 |
-
#: includes/settings/wcj-settings-stock.php:176
|
17531 |
-
msgid "Custom Stock HTML"
|
17532 |
-
msgstr ""
|
17533 |
-
|
17534 |
-
#: includes/settings/wcj-settings-stock.php:185
|
17535 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:24
|
17536 |
-
msgid "HTML"
|
17537 |
-
msgstr ""
|
17538 |
-
|
17539 |
-
#: includes/settings/wcj-settings-stock.php:204
|
17540 |
-
msgid "Remove Stock Display"
|
17541 |
-
msgstr ""
|
17542 |
-
|
17543 |
-
#: includes/settings/wcj-settings-stock.php:205
|
17544 |
-
msgid "This will remove stock display from frontend."
|
17545 |
-
msgstr ""
|
17546 |
-
|
17547 |
-
#: includes/settings/wcj-settings-tax-display.php:20
|
17548 |
-
msgid "TAX Display - Toggle Button"
|
17549 |
-
msgstr ""
|
17550 |
-
|
17551 |
-
#: includes/settings/wcj-settings-tax-display.php:22
|
17552 |
-
#, php-format
|
17553 |
-
msgid "Use %s shortcode to display the button on frontend."
|
17554 |
-
msgstr ""
|
17555 |
-
|
17556 |
-
#: includes/settings/wcj-settings-tax-display.php:26
|
17557 |
-
msgid "TAX Toggle Button"
|
17558 |
-
msgstr ""
|
17559 |
-
|
17560 |
-
#: includes/settings/wcj-settings-tax-display.php:37
|
17561 |
-
#: includes/settings/wcj-settings-tax-display.php:43
|
17562 |
-
msgid "TAX Display by Product"
|
17563 |
-
msgstr ""
|
17564 |
-
|
17565 |
-
#: includes/settings/wcj-settings-tax-display.php:39
|
17566 |
-
msgid ""
|
17567 |
-
"If you want to display part of your products including TAX and another part "
|
17568 |
-
"excluding TAX, you can set it here."
|
17569 |
-
msgstr ""
|
17570 |
-
|
17571 |
-
#: includes/settings/wcj-settings-tax-display.php:50
|
17572 |
-
msgid "Products - Including TAX"
|
17573 |
-
msgstr ""
|
17574 |
-
|
17575 |
-
#: includes/settings/wcj-settings-tax-display.php:52
|
17576 |
-
msgid "Select products to display including TAX."
|
17577 |
-
msgstr ""
|
17578 |
-
|
17579 |
-
#: includes/settings/wcj-settings-tax-display.php:60
|
17580 |
-
msgid "Products - Excluding TAX"
|
17581 |
-
msgstr ""
|
17582 |
-
|
17583 |
-
#: includes/settings/wcj-settings-tax-display.php:62
|
17584 |
-
msgid "Select products to display excluding TAX."
|
17585 |
-
msgstr ""
|
17586 |
-
|
17587 |
-
#: includes/settings/wcj-settings-tax-display.php:70
|
17588 |
-
msgid "Product Categories - Including TAX"
|
17589 |
-
msgstr ""
|
17590 |
-
|
17591 |
-
#: includes/settings/wcj-settings-tax-display.php:72
|
17592 |
-
msgid "Select product categories to display including TAX."
|
17593 |
-
msgstr ""
|
17594 |
-
|
17595 |
-
#: includes/settings/wcj-settings-tax-display.php:80
|
17596 |
-
msgid "Product Categories - Excluding TAX"
|
17597 |
-
msgstr ""
|
17598 |
-
|
17599 |
-
#: includes/settings/wcj-settings-tax-display.php:82
|
17600 |
-
msgid "Select product categories to display excluding TAX."
|
17601 |
-
msgstr ""
|
17602 |
-
|
17603 |
-
#: includes/settings/wcj-settings-tax-display.php:94
|
17604 |
-
#: includes/settings/wcj-settings-tax-display.php:100
|
17605 |
-
msgid "TAX Display by User Role"
|
17606 |
-
msgstr ""
|
17607 |
-
|
17608 |
-
#: includes/settings/wcj-settings-tax-display.php:96
|
17609 |
-
msgid ""
|
17610 |
-
"If you want to display prices including TAX or excluding TAX for different "
|
17611 |
-
"user roles, you can set it here."
|
17612 |
-
msgstr ""
|
17613 |
-
|
17614 |
-
#: includes/settings/wcj-settings-tax-display.php:108
|
17615 |
-
msgid ""
|
17616 |
-
"Save changes after you change this option and new settings fields will "
|
17617 |
-
"appear."
|
17618 |
-
msgstr ""
|
17619 |
-
|
17620 |
-
#: includes/settings/wcj-settings-tax-display.php:109
|
17621 |
-
#, php-format
|
17622 |
-
msgid ""
|
17623 |
-
"Select user roles that you want to change tax display for. For all remaining "
|
17624 |
-
"(i.e. not selected) user roles - default TAX display (set in %s) will be "
|
17625 |
-
"applied."
|
17626 |
-
msgstr ""
|
17627 |
-
|
17628 |
-
#: includes/settings/wcj-settings-tax-display.php:110
|
17629 |
-
msgid "WooCommerce > Settings > Tax"
|
17630 |
-
msgstr ""
|
17631 |
-
|
17632 |
-
#: includes/settings/wcj-settings-tax-display.php:122
|
17633 |
-
#, php-format
|
17634 |
-
msgid "Role: %s - shop"
|
17635 |
-
msgstr ""
|
17636 |
-
|
17637 |
-
#: includes/settings/wcj-settings-tax-display.php:124
|
17638 |
-
msgid "Setup how taxes will be applied during in the shop."
|
17639 |
-
msgstr ""
|
17640 |
-
|
17641 |
-
#: includes/settings/wcj-settings-tax-display.php:128
|
17642 |
-
#: includes/settings/wcj-settings-tax-display.php:140
|
17643 |
-
msgid "Default TAX display (no changes)"
|
17644 |
-
msgstr ""
|
17645 |
-
|
17646 |
-
#: includes/settings/wcj-settings-tax-display.php:129
|
17647 |
-
#: includes/settings/wcj-settings-tax-display.php:141
|
17648 |
-
msgid "Including tax"
|
17649 |
-
msgstr ""
|
17650 |
-
|
17651 |
-
#: includes/settings/wcj-settings-tax-display.php:130
|
17652 |
-
#: includes/settings/wcj-settings-tax-display.php:142
|
17653 |
-
msgid "Excluding tax"
|
17654 |
-
msgstr ""
|
17655 |
-
|
17656 |
-
#: includes/settings/wcj-settings-tax-display.php:134
|
17657 |
-
#, php-format
|
17658 |
-
msgid "Role: %s - cart"
|
17659 |
-
msgstr ""
|
17660 |
-
|
17661 |
-
#: includes/settings/wcj-settings-tax-display.php:136
|
17662 |
-
msgid "Setup how taxes will be applied during cart and checkout."
|
17663 |
-
msgstr ""
|
17664 |
-
|
17665 |
-
#: includes/settings/wcj-settings-template-editor.php:25
|
17666 |
-
msgid "Templates to Edit"
|
17667 |
-
msgstr ""
|
17668 |
-
|
17669 |
-
#: includes/settings/wcj-settings-template-editor.php:26
|
17670 |
-
msgid "Save changes after you set this option to see new options fields."
|
17671 |
-
msgstr ""
|
17672 |
-
|
17673 |
-
#: includes/settings/wcj-settings-template-editor.php:45
|
17674 |
-
msgid "Default template path"
|
17675 |
-
msgstr ""
|
17676 |
-
|
17677 |
-
#: includes/settings/wcj-settings-template-editor.php:46
|
17678 |
-
msgid "Replaced template path"
|
17679 |
-
msgstr ""
|
17680 |
-
|
17681 |
-
#: includes/settings/wcj-settings-track-users.php:19
|
17682 |
-
msgid "Countries by Visits"
|
17683 |
-
msgstr ""
|
17684 |
-
|
17685 |
-
#: includes/settings/wcj-settings-track-users.php:20
|
17686 |
-
msgid "Enable admin dashboard widget"
|
17687 |
-
msgstr ""
|
17688 |
-
|
17689 |
-
#: includes/settings/wcj-settings-track-users.php:27
|
17690 |
-
msgid "Select which info to show in admin dashboard widget."
|
17691 |
-
msgstr ""
|
17692 |
-
|
17693 |
-
#: includes/settings/wcj-settings-track-users.php:35
|
17694 |
-
msgid "Top Countries"
|
17695 |
-
msgstr ""
|
17696 |
-
|
17697 |
-
#: includes/settings/wcj-settings-track-users.php:36
|
17698 |
-
msgid "Select how many top countries to show."
|
17699 |
-
msgstr ""
|
17700 |
-
|
17701 |
-
#: includes/settings/wcj-settings-track-users.php:43
|
17702 |
-
msgid "Track Orders"
|
17703 |
-
msgstr ""
|
17704 |
-
|
17705 |
-
#: includes/settings/wcj-settings-track-users.php:44
|
17706 |
-
msgid "Save customer's acquisition source (i.e. HTTP referer) for orders."
|
17707 |
-
msgstr ""
|
17708 |
-
|
17709 |
-
#: includes/settings/wcj-settings-track-users.php:45
|
17710 |
-
msgid ""
|
17711 |
-
"This will add \"Booster: Acquisition Source\" meta box to each order's edit "
|
17712 |
-
"page."
|
17713 |
-
msgstr ""
|
17714 |
-
|
17715 |
-
#: includes/settings/wcj-settings-track-users.php:54
|
17716 |
-
msgid "Order List Columns: Referer"
|
17717 |
-
msgstr ""
|
17718 |
-
|
17719 |
-
#: includes/settings/wcj-settings-track-users.php:55
|
17720 |
-
#, php-format
|
17721 |
-
msgid "This will add \"Referer\" column to the <a href=\"%s\">orders list</a>."
|
17722 |
-
msgstr ""
|
17723 |
-
|
17724 |
-
#: includes/settings/wcj-settings-track-users.php:64
|
17725 |
-
msgid "Order List Columns: Referer Type"
|
17726 |
-
msgstr ""
|
17727 |
-
|
17728 |
-
#: includes/settings/wcj-settings-track-users.php:65
|
17729 |
-
#, php-format
|
17730 |
-
msgid ""
|
17731 |
-
"This will add \"Referer Type\" column to the <a href=\"%s\">orders list</a>."
|
17732 |
-
msgstr ""
|
17733 |
-
|
17734 |
-
#: includes/settings/wcj-settings-upsells.php:19
|
17735 |
-
msgid "Upsells Total"
|
17736 |
-
msgstr ""
|
17737 |
-
|
17738 |
-
#: includes/settings/wcj-settings-upsells.php:27
|
17739 |
-
msgid "Upsells Columns"
|
17740 |
-
msgstr ""
|
17741 |
-
|
17742 |
-
#: includes/settings/wcj-settings-upsells.php:35
|
17743 |
-
msgid "Upsells Order By"
|
17744 |
-
msgstr ""
|
17745 |
-
|
17746 |
-
#: includes/settings/wcj-settings-upsells.php:51
|
17747 |
-
msgid "Upsells Position"
|
17748 |
-
msgstr ""
|
17749 |
-
|
17750 |
-
#: includes/settings/wcj-settings-upsells.php:52
|
17751 |
-
msgid "Upsells position on single product page."
|
17752 |
-
msgstr ""
|
17753 |
-
|
17754 |
-
#: includes/settings/wcj-settings-upsells.php:67
|
17755 |
-
msgid ""
|
17756 |
-
"Ignored if \"Upsells Position\" option above is set to \"No changes "
|
17757 |
-
"(default)\"."
|
17758 |
-
msgstr ""
|
17759 |
-
|
17760 |
-
#: includes/settings/wcj-settings-upsells.php:73
|
17761 |
-
msgid "Hide Upsells"
|
17762 |
-
msgstr ""
|
17763 |
-
|
17764 |
-
#: includes/settings/wcj-settings-upsells.php:80
|
17765 |
-
msgid "Global Upsells"
|
17766 |
-
msgstr ""
|
17767 |
-
|
17768 |
-
#: includes/settings/wcj-settings-upsells.php:82
|
17769 |
-
msgid "Enable this section if you want to add same upsells to all products."
|
17770 |
-
msgstr ""
|
17771 |
-
|
17772 |
-
#: includes/settings/wcj-settings-upsells.php:90
|
17773 |
-
msgid "Global upsells"
|
17774 |
-
msgstr ""
|
17775 |
-
|
17776 |
-
#: includes/settings/wcj-settings-url-coupons.php:15
|
17777 |
-
#, php-format
|
17778 |
-
msgid ""
|
17779 |
-
"Additionally you can hide standard coupon field on cart page in Booster's <a "
|
17780 |
-
"href=\"%s\">Cart Customization</a> module."
|
17781 |
-
msgstr ""
|
17782 |
-
|
17783 |
-
#: includes/settings/wcj-settings-url-coupons.php:21
|
17784 |
-
msgid "URL Coupons Key"
|
17785 |
-
msgstr ""
|
17786 |
-
|
17787 |
-
#: includes/settings/wcj-settings-url-coupons.php:22
|
17788 |
-
msgid ""
|
17789 |
-
"URL key. If you change this, make sure it's unique and is not used anywhere "
|
17790 |
-
"on your site (e.g. by another plugin)."
|
17791 |
-
msgstr ""
|
17792 |
-
|
17793 |
-
#: includes/settings/wcj-settings-url-coupons.php:23
|
17794 |
-
#, php-format
|
17795 |
-
msgid ""
|
17796 |
-
"Your users can apply shop's standard coupons, by visiting URL. E.g.: %s."
|
17797 |
-
msgstr ""
|
17798 |
-
|
17799 |
-
#: includes/settings/wcj-settings-url-coupons.php:30
|
17800 |
-
msgid "Redirect URL"
|
17801 |
-
msgstr ""
|
17802 |
-
|
17803 |
-
#: includes/settings/wcj-settings-url-coupons.php:31
|
17804 |
-
msgid ""
|
17805 |
-
"Possible values: No redirect; redirect to cart; redirect to checkout; "
|
17806 |
-
"redirect to custom local URL."
|
17807 |
-
msgstr ""
|
17808 |
-
|
17809 |
-
#: includes/settings/wcj-settings-url-coupons.php:36
|
17810 |
-
msgid "No redirect"
|
17811 |
-
msgstr ""
|
17812 |
-
|
17813 |
-
#: includes/settings/wcj-settings-url-coupons.php:37
|
17814 |
-
msgid "Redirect to cart"
|
17815 |
-
msgstr ""
|
17816 |
-
|
17817 |
-
#: includes/settings/wcj-settings-url-coupons.php:38
|
17818 |
-
msgid "Redirect to checkout"
|
17819 |
-
msgstr ""
|
17820 |
-
|
17821 |
-
#: includes/settings/wcj-settings-url-coupons.php:39
|
17822 |
-
msgid "Redirect to custom local URL"
|
17823 |
-
msgstr ""
|
17824 |
-
|
17825 |
-
#: includes/settings/wcj-settings-url-coupons.php:45
|
17826 |
-
msgid "Custom Local URL"
|
17827 |
-
msgstr ""
|
17828 |
-
|
17829 |
-
#: includes/settings/wcj-settings-url-coupons.php:46
|
17830 |
-
msgid "If redirect to custom local URL is selected, set URL here."
|
17831 |
-
msgstr ""
|
17832 |
-
|
17833 |
-
#: includes/settings/wcj-settings-url-coupons.php:53
|
17834 |
-
msgid "\"Fixed product discount\" Coupons"
|
17835 |
-
msgstr ""
|
17836 |
-
|
17837 |
-
#: includes/settings/wcj-settings-url-coupons.php:54
|
17838 |
-
msgid "Automatically add coupon's products to the cart"
|
17839 |
-
msgstr ""
|
17840 |
-
|
17841 |
-
#: includes/settings/wcj-settings-wholesale-price.php:17
|
17842 |
-
#, php-format
|
17843 |
-
msgid "If you want to display prices table on frontend, use %s shortcode."
|
17844 |
-
msgstr ""
|
17845 |
-
|
17846 |
-
#: includes/settings/wcj-settings-wholesale-price.php:22
|
17847 |
-
msgid "Enable per Product"
|
17848 |
-
msgstr ""
|
17849 |
-
|
17850 |
-
#: includes/settings/wcj-settings-wholesale-price.php:30
|
17851 |
-
msgid "Quantity Calculation"
|
17852 |
-
msgstr ""
|
17853 |
-
|
17854 |
-
#: includes/settings/wcj-settings-wholesale-price.php:35
|
17855 |
-
msgid "Product quantity"
|
17856 |
-
msgstr ""
|
17857 |
-
|
17858 |
-
#: includes/settings/wcj-settings-wholesale-price.php:36
|
17859 |
-
msgid "Total cart quantity (wholesale products only)"
|
17860 |
-
msgstr ""
|
17861 |
-
|
17862 |
-
#: includes/settings/wcj-settings-wholesale-price.php:37
|
17863 |
-
msgid "Total cart quantity"
|
17864 |
-
msgstr ""
|
17865 |
-
|
17866 |
-
#: includes/settings/wcj-settings-wholesale-price.php:41
|
17867 |
-
msgid "Exclusive Use Only"
|
17868 |
-
msgstr ""
|
17869 |
-
|
17870 |
-
#: includes/settings/wcj-settings-wholesale-price.php:43
|
17871 |
-
msgid "Apply wholesale discount only if no other cart discounts were applied."
|
17872 |
-
msgstr ""
|
17873 |
-
|
17874 |
-
#: includes/settings/wcj-settings-wholesale-price.php:49
|
17875 |
-
msgid "Round Single Product Price"
|
17876 |
-
msgstr ""
|
17877 |
-
|
17878 |
-
#: includes/settings/wcj-settings-wholesale-price.php:50
|
17879 |
-
msgid ""
|
17880 |
-
"If enabled will round single product price with precision set in WooCommerce "
|
17881 |
-
"> Settings > General > Number of decimals."
|
17882 |
-
msgstr ""
|
17883 |
-
|
17884 |
-
#: includes/settings/wcj-settings-wholesale-price.php:57
|
17885 |
-
msgid "Discount Info on Cart Page"
|
17886 |
-
msgstr ""
|
17887 |
-
|
17888 |
-
#: includes/settings/wcj-settings-wholesale-price.php:64
|
17889 |
-
msgid "If show discount info on cart page is enabled, set format here."
|
17890 |
-
msgstr ""
|
17891 |
-
|
17892 |
-
#: includes/settings/wcj-settings-wholesale-price.php:72
|
17893 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
|
17894 |
-
msgid "Discount Type"
|
17895 |
-
msgstr ""
|
17896 |
-
|
17897 |
-
#: includes/settings/wcj-settings-wholesale-price.php:113
|
17898 |
-
msgid "Disable wholesale pricing for products with \"Price Changes\""
|
17899 |
-
msgstr ""
|
17900 |
-
|
17901 |
-
#: includes/settings/wcj-settings-wholesale-price.php:131
|
17902 |
-
msgid "Wholesale Levels Options"
|
17903 |
-
msgstr ""
|
17904 |
-
|
17905 |
-
#: includes/settings/wcj-settings-wholesale-price.php:136
|
17906 |
-
#: includes/settings/wcj-settings-wholesale-price.php:193
|
17907 |
-
msgid "Number of Levels"
|
17908 |
-
msgstr ""
|
17909 |
-
|
17910 |
-
#: includes/settings/wcj-settings-wholesale-price.php:150
|
17911 |
-
#: includes/settings/wcj-settings-wholesale-price.php:207
|
17912 |
-
msgid "Min Quantity"
|
17913 |
-
msgstr ""
|
17914 |
-
|
17915 |
-
#: includes/settings/wcj-settings-wholesale-price.php:151
|
17916 |
-
#: includes/settings/wcj-settings-wholesale-price.php:208
|
17917 |
-
msgid "Minimum quantity to apply discount"
|
17918 |
-
msgstr ""
|
17919 |
-
|
17920 |
-
#: includes/settings/wcj-settings-wholesale-price.php:158
|
17921 |
-
#: includes/settings/wcj-settings-wholesale-price.php:159
|
17922 |
-
#: includes/settings/wcj-settings-wholesale-price.php:215
|
17923 |
-
#: includes/settings/wcj-settings-wholesale-price.php:216
|
17924 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
|
17925 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
|
17926 |
-
msgid "Discount"
|
17927 |
-
msgstr ""
|
17928 |
-
|
17929 |
-
#: includes/settings/wcj-settings-wholesale-price.php:173
|
17930 |
-
msgid "Additional User Roles Options"
|
17931 |
-
msgstr ""
|
17932 |
-
|
17933 |
-
#: includes/settings/wcj-settings-wholesale-price.php:175
|
17934 |
-
msgid ""
|
17935 |
-
"If you want to set different wholesale pricing options for different user "
|
17936 |
-
"roles, fill this section. Please note that you can also use Booster's "
|
17937 |
-
"\"Price based on User Role\" module without filling this section."
|
17938 |
-
msgstr ""
|
17939 |
-
|
17940 |
-
#: includes/settings/wcj-settings-wholesale-price.php:179
|
17941 |
-
msgid "User Roles Settings"
|
17942 |
-
msgstr ""
|
17943 |
-
|
17944 |
-
#: includes/settings/wcj-settings-wpml.php:27
|
17945 |
-
msgid "Use Translation Product IDs"
|
17946 |
-
msgstr ""
|
17947 |
-
|
17948 |
-
#: includes/settings/wcj-settings-wpml.php:34
|
17949 |
-
msgid "Auto Switch Booster Currency"
|
17950 |
-
msgstr ""
|
17951 |
-
|
17952 |
-
#: includes/settings/wcj-settings-wpml.php:36
|
17953 |
-
msgid ""
|
17954 |
-
"Try to automatically switch Booster currency according to WPML. It's "
|
17955 |
-
"necessary to enable MultiCurrency module"
|
17956 |
-
msgstr ""
|
17957 |
-
|
17958 |
-
#: includes/settings/wcj-settings-wpml.php:46
|
17959 |
-
msgid "WPML Language Configuration File Options"
|
17960 |
-
msgstr ""
|
17961 |
-
|
17962 |
-
#: includes/settings/wcj-settings-wpml.php:48
|
17963 |
-
#, php-format
|
17964 |
-
msgid "Options for regenerating %s file."
|
17965 |
-
msgstr ""
|
17966 |
-
|
17967 |
-
#: includes/settings/wcj-settings-wpml.php:52
|
17968 |
-
msgid "Automatically Regenerate"
|
17969 |
-
msgstr ""
|
17970 |
-
|
17971 |
-
#: includes/settings/wcj-settings-wpml.php:54
|
17972 |
-
#, php-format
|
17973 |
-
msgid "Automatically regenerate %s file on each Booster version update."
|
17974 |
-
msgstr ""
|
17975 |
-
|
17976 |
-
#: includes/settings/wcj-settings-wpml.php:60
|
17977 |
-
msgid "Modules to Skip"
|
17978 |
-
msgstr ""
|
17979 |
-
|
17980 |
-
#: includes/settings/wcj-settings-wpml.php:61
|
17981 |
-
msgid ""
|
17982 |
-
"Select modules, which options you wish to exclude from wpml-config.xml file."
|
17983 |
-
msgstr ""
|
17984 |
-
|
17985 |
-
#: includes/settings/wcj-settings-wpml.php:69
|
17986 |
-
msgid "Option IDs to Skip"
|
17987 |
-
msgstr ""
|
17988 |
-
|
17989 |
-
#: includes/settings/wcj-settings-wpml.php:70
|
17990 |
-
msgid "Select options, which you wish to exclude from wpml-config.xml file."
|
17991 |
-
msgstr ""
|
17992 |
-
|
17993 |
-
#: includes/settings/wcj-settings-wpml.php:71
|
17994 |
-
#, php-format
|
17995 |
-
msgid "Full or part of option ID. Separated by vertical bar %s."
|
17996 |
-
msgstr ""
|
17997 |
-
|
17998 |
-
#: includes/settings/wcj-settings-wpml.php:93
|
17999 |
-
#: includes/settings/wcj-settings-wpml.php:95
|
18000 |
-
msgid "Regenerate wpml-config.xml file"
|
18001 |
-
msgstr ""
|
18002 |
-
|
18003 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:29
|
18004 |
-
msgid "Content to replace add to cart button on single product page."
|
18005 |
-
msgstr ""
|
18006 |
-
|
18007 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:40
|
18008 |
-
msgid "Category/Archives"
|
18009 |
-
msgstr ""
|
18010 |
-
|
18011 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:48
|
18012 |
-
msgid "Content to replace add to cart button on category/archives."
|
18013 |
-
msgstr ""
|
18014 |
-
|
18015 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:19
|
18016 |
-
#, php-format
|
18017 |
-
msgid "Product ID: %s"
|
18018 |
-
msgstr ""
|
18019 |
-
|
18020 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:26
|
18021 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:45
|
18022 |
-
msgid "Regular price"
|
18023 |
-
msgstr ""
|
18024 |
-
|
18025 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:34
|
18026 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:54
|
18027 |
-
msgid "Sale price"
|
18028 |
-
msgstr ""
|
18029 |
-
|
18030 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:14
|
18031 |
-
msgid "Invalidate for roles"
|
18032 |
-
msgstr ""
|
18033 |
-
|
18034 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:15
|
18035 |
-
msgid "Invalidate coupon for selected user roles."
|
18036 |
-
msgstr ""
|
18037 |
-
|
18038 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
|
18039 |
-
msgid "Goal"
|
18040 |
-
msgstr ""
|
18041 |
-
|
18042 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
|
18043 |
-
msgid "Deadline"
|
18044 |
-
msgstr ""
|
18045 |
-
|
18046 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:25
|
18047 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
|
18048 |
-
msgid "Product Currency"
|
18049 |
-
msgstr ""
|
18050 |
-
|
18051 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:27
|
18052 |
-
msgid "Update product after you change this field's value."
|
18053 |
-
msgstr ""
|
18054 |
-
|
18055 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
|
18056 |
-
msgid "Add CSS"
|
18057 |
-
msgstr ""
|
18058 |
-
|
18059 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
|
18060 |
-
msgid "PayPal Email"
|
18061 |
-
msgstr ""
|
18062 |
-
|
18063 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:14
|
18064 |
-
msgid "Max Qty"
|
18065 |
-
msgstr ""
|
18066 |
-
|
18067 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:18
|
18068 |
-
msgid ""
|
18069 |
-
"If set to zero, and \"All Products\" section is enabled - global maximum "
|
18070 |
-
"quantity will be used; in case if \"All Products\" section is disabled - no "
|
18071 |
-
"maximum quantity will be used."
|
18072 |
-
msgstr ""
|
18073 |
-
|
18074 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
|
18075 |
-
msgid "Enable Offer Price"
|
18076 |
-
msgstr ""
|
18077 |
-
|
18078 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
|
18079 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
|
18080 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
|
18081 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
|
18082 |
-
msgid "Leave blank to use global value."
|
18083 |
-
msgstr ""
|
18084 |
-
|
18085 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:42
|
18086 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:57
|
18087 |
-
msgid "Set 0 to use global settings. Set -1 to disable."
|
18088 |
-
msgstr ""
|
18089 |
-
|
18090 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:69
|
18091 |
-
msgid "All variations"
|
18092 |
-
msgstr ""
|
18093 |
-
|
18094 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:73
|
18095 |
-
msgid "Set 0 to use global settings."
|
18096 |
-
msgstr ""
|
18097 |
-
|
18098 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
|
18099 |
-
msgid "Save order after you change this field."
|
18100 |
-
msgstr ""
|
18101 |
-
|
18102 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:24
|
18103 |
-
#, php-format
|
18104 |
-
msgid "%s number"
|
18105 |
-
msgstr ""
|
18106 |
-
|
18107 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:30
|
18108 |
-
#, php-format
|
18109 |
-
msgid "%s date"
|
18110 |
-
msgstr ""
|
18111 |
-
|
18112 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:29
|
18113 |
-
msgid "Per Product Settings (press Update after changing)"
|
18114 |
-
msgstr ""
|
18115 |
-
|
18116 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
|
18117 |
-
msgid "Add to Cart Local Redirect URL"
|
18118 |
-
msgstr ""
|
18119 |
-
|
18120 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:55
|
18121 |
-
msgid "Custom Add to Cart Button URL (Category/Archives)"
|
18122 |
-
msgstr ""
|
18123 |
-
|
18124 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
|
18125 |
-
msgid "As shop default (no changes)"
|
18126 |
-
msgstr ""
|
18127 |
-
|
18128 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:70
|
18129 |
-
msgid "Disable Add to Cart Button AJAX"
|
18130 |
-
msgstr ""
|
18131 |
-
|
18132 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
|
18133 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
|
18134 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
|
18135 |
-
msgid "Save product after you change this number."
|
18136 |
-
msgstr ""
|
18137 |
-
|
18138 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
|
18139 |
-
msgid "Is required"
|
18140 |
-
msgstr ""
|
18141 |
-
|
18142 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:14
|
18143 |
-
msgid ""
|
18144 |
-
"Use \"Control\" key to select/deselect multiple options. Hold \"Control\" "
|
18145 |
-
"and \"A\" to select all options. Leave empty to disable."
|
18146 |
-
msgstr ""
|
18147 |
-
|
18148 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:17
|
18149 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
|
18150 |
-
msgid "Enable/Disable per Product Settings"
|
18151 |
-
msgstr ""
|
18152 |
-
|
18153 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:28
|
18154 |
-
msgid "Direct Date"
|
18155 |
-
msgstr ""
|
18156 |
-
|
18157 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:32
|
18158 |
-
msgid ""
|
18159 |
-
"Fill this if you want to set one date from which the product will be "
|
18160 |
-
"available."
|
18161 |
-
msgstr ""
|
18162 |
-
|
18163 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:33
|
18164 |
-
msgid "If this field is filled in, monthly settings fields are ignored."
|
18165 |
-
msgstr ""
|
18166 |
-
|
18167 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
|
18168 |
-
msgid "Replace image with custom HTML on single product page"
|
18169 |
-
msgstr ""
|
18170 |
-
|
18171 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
|
18172 |
-
msgid "Replace image with custom HTML on archives"
|
18173 |
-
msgstr ""
|
18174 |
-
|
18175 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:37
|
18176 |
-
msgid "Hide Image on Single"
|
18177 |
-
msgstr ""
|
18178 |
-
|
18179 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:47
|
18180 |
-
msgid "Hide Thumbnails on Single"
|
18181 |
-
msgstr ""
|
18182 |
-
|
18183 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:57
|
18184 |
-
msgid "Hide Image on Archives"
|
18185 |
-
msgstr ""
|
18186 |
-
|
18187 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
|
18188 |
-
msgid ""
|
18189 |
-
"'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
|
18190 |
-
"Products' option is checked in module's settings."
|
18191 |
-
msgstr ""
|
18192 |
-
|
18193 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
|
18194 |
-
msgid "Use values below"
|
18195 |
-
msgstr ""
|
18196 |
-
|
18197 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
|
18198 |
-
msgid "Use default values"
|
18199 |
-
msgstr ""
|
18200 |
-
|
18201 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
|
18202 |
-
msgid "Calculation"
|
18203 |
-
msgstr ""
|
18204 |
-
|
18205 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
|
18206 |
-
msgid "Number of Parameters"
|
18207 |
-
msgstr ""
|
18208 |
-
|
18209 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:20
|
18210 |
-
msgid ""
|
18211 |
-
"If enabled and no products selected - will hide related products section on "
|
18212 |
-
"frontend for current product."
|
18213 |
-
msgstr ""
|
18214 |
-
|
18215 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:31
|
18216 |
-
msgid ""
|
18217 |
-
"Hold Control (Ctrl) key to select multiple products. Ctrl and \"A\" to "
|
18218 |
-
"select all products."
|
18219 |
-
msgstr ""
|
18220 |
-
|
18221 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
|
18222 |
-
msgid "Price directly"
|
18223 |
-
msgstr ""
|
18224 |
-
|
18225 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
|
18226 |
-
msgid "Enable per Product Levels"
|
18227 |
-
msgstr ""
|
18228 |
-
|
18229 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
|
18230 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
|
18231 |
-
msgid "Number of levels"
|
18232 |
-
msgstr ""
|
18233 |
-
|
18234 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
|
18235 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
|
18236 |
-
msgid ""
|
18237 |
-
"Free Booster's version is limited to one level maximum. Please visit https://"
|
18238 |
-
"booster.io to get full version."
|
18239 |
-
msgstr ""
|
18240 |
-
|
18241 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
|
18242 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
|
18243 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
|
18244 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
|
18245 |
-
msgid "Level"
|
18246 |
-
msgstr ""
|
18247 |
-
|
18248 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
|
18249 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
|
18250 |
-
msgid "Min quantity"
|
18251 |
-
msgstr ""
|
18252 |
-
|
18253 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:42
|
18254 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:38
|
18255 |
-
msgid "Booster: Custom Shipping Method"
|
18256 |
-
msgstr ""
|
18257 |
-
|
18258 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:116
|
18259 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:157
|
18260 |
-
msgid "Max Weight or Quantity"
|
18261 |
-
msgstr ""
|
18262 |
-
|
18263 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:166
|
18264 |
-
msgid "Flat rate"
|
18265 |
-
msgstr ""
|
18266 |
-
|
18267 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:167
|
18268 |
-
msgid "By total cart weight"
|
18269 |
-
msgstr ""
|
18270 |
-
|
18271 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:168
|
18272 |
-
msgid "By total cart weight table"
|
18273 |
-
msgstr ""
|
18274 |
-
|
18275 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:169
|
18276 |
-
msgid "By total cart quantity"
|
18277 |
-
msgstr ""
|
18278 |
-
|
18279 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:172
|
18280 |
-
msgid "By total cart quantity table"
|
18281 |
-
msgstr ""
|
18282 |
-
|
18283 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:186
|
18284 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:116
|
18285 |
-
msgid "Cost calculation type."
|
18286 |
-
msgstr ""
|
18287 |
-
|
18288 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:187
|
18289 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:97
|
18290 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:116
|
18291 |
-
msgid "By Total Cart Quantity Table"
|
18292 |
-
msgstr ""
|
18293 |
-
|
18294 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:196
|
18295 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:124
|
18296 |
-
msgid ""
|
18297 |
-
"Cost. If calculating by weight - then cost per one weight unit. If "
|
18298 |
-
"calculating by quantity - then cost per one piece."
|
18299 |
-
msgstr ""
|
18300 |
-
|
18301 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:202
|
18302 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:130
|
18303 |
-
msgid "Min Weight"
|
18304 |
-
msgstr ""
|
18305 |
-
|
18306 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:204
|
18307 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:132
|
18308 |
-
msgid "Minimum total cart weight. Set zero to disable."
|
18309 |
-
msgstr ""
|
18310 |
-
|
18311 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:211
|
18312 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:138
|
18313 |
-
msgid "Max Weight"
|
18314 |
-
msgstr ""
|
18315 |
-
|
18316 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:213
|
18317 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:140
|
18318 |
-
msgid "Maximum total cart weight. Set zero to disable."
|
18319 |
-
msgstr ""
|
18320 |
-
|
18321 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:220
|
18322 |
-
msgid "Apply Formula and Shortcodes to Costs"
|
18323 |
-
msgstr ""
|
18324 |
-
|
18325 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:221
|
18326 |
-
#, php-format
|
18327 |
-
msgid ""
|
18328 |
-
"You can use %s and %s params in formula, e.g.: %s. Also you can use "
|
18329 |
-
"shortcodes, e.g.: %s."
|
18330 |
-
msgstr ""
|
18331 |
-
|
18332 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:230
|
18333 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:146
|
18334 |
-
msgid "Table Total Rows"
|
18335 |
-
msgstr ""
|
18336 |
-
|
18337 |
-
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:232
|
18338 |
-
msgid ""
|
18339 |
-
"Press \"Save changes\" and reload the page after you change this number."
|
18340 |
-
msgstr ""
|
18341 |
-
|
18342 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:91
|
18343 |
-
msgid "Flat Rate"
|
18344 |
-
msgstr ""
|
18345 |
-
|
18346 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:92
|
18347 |
-
msgid "By Total Cart Weight"
|
18348 |
-
msgstr ""
|
18349 |
-
|
18350 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:93
|
18351 |
-
msgid "By Total Cart Weight Table"
|
18352 |
-
msgstr ""
|
18353 |
-
|
18354 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:94
|
18355 |
-
msgid "By Total Cart Quantity"
|
18356 |
-
msgstr ""
|
18357 |
-
|
18358 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:103
|
18359 |
-
msgid "Enable Custom Shipping"
|
18360 |
-
msgstr ""
|
18361 |
-
|
18362 |
-
#: includes/shortcodes/class-wcj-shortcodes-general.php:95
|
18363 |
-
msgid "Tax toggle (incl.)"
|
18364 |
-
msgstr ""
|
18365 |
-
|
18366 |
-
#: includes/shortcodes/class-wcj-shortcodes-general.php:96
|
18367 |
-
msgid "Tax toggle (excl.)"
|
18368 |
-
msgstr ""
|
18369 |
-
|
18370 |
-
#: includes/shortcodes/class-wcj-shortcodes-input-field.php:51
|
18371 |
-
msgid "Attribute \"name\" is required!"
|
18372 |
-
msgstr ""
|
18373 |
-
|
18374 |
-
#: includes/shortcodes/class-wcj-shortcodes-orders.php:333
|
18375 |
-
#, php-format
|
18376 |
-
msgid "Refund #%1$s - %2$s"
|
18377 |
-
msgstr ""
|
18378 |
-
|
18379 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:54
|
18380 |
-
msgid "Product by User"
|
18381 |
-
msgstr ""
|
18382 |
-
|
18383 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:163
|
18384 |
-
msgid "Title is required!"
|
18385 |
-
msgstr ""
|
18386 |
-
|
18387 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:171
|
18388 |
-
msgid "Product exists!"
|
18389 |
-
msgstr ""
|
18390 |
-
|
18391 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:181
|
18392 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:396
|
18393 |
-
msgid "Product URL"
|
18394 |
-
msgstr ""
|
18395 |
-
|
18396 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:197
|
18397 |
-
#, php-format
|
18398 |
-
msgid "%s is required!"
|
18399 |
-
msgstr ""
|
18400 |
-
|
18401 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:203
|
18402 |
-
msgid "Sale price must be less than the regular price!"
|
18403 |
-
msgstr ""
|
18404 |
-
|
18405 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:281
|
18406 |
-
msgid "Error!"
|
18407 |
-
msgstr ""
|
18408 |
-
|
18409 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:322
|
18410 |
-
msgid "Add New Product"
|
18411 |
-
msgstr ""
|
18412 |
-
|
18413 |
-
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:322
|
18414 |
-
msgid "Edit Product"
|
18415 |
-
msgstr ""
|
18416 |
-
|
18417 |
-
#: includes/shortcodes/class-wcj-shortcodes-products.php:328
|
18418 |
-
#, php-format
|
18419 |
-
msgid "%s ago"
|
18420 |
-
msgstr ""
|
18421 |
-
|
18422 |
-
#: includes/shortcodes/class-wcj-shortcodes-products.php:335
|
18423 |
-
msgid "No sales yet."
|
18424 |
-
msgstr ""
|
18425 |
-
|
18426 |
-
#: includes/shortcodes/class-wcj-shortcodes-products.php:562
|
18427 |
-
msgid "In stock"
|
18428 |
-
msgstr ""
|
18429 |
-
|
18430 |
-
#: includes/templates/wcj-radio-for-variations.php:16
|
18431 |
-
msgid "This product is currently out of stock and unavailable."
|
18432 |
-
msgstr ""
|
18433 |
-
|
18434 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:41
|
18435 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:68
|
18436 |
-
msgid "VAT"
|
18437 |
-
msgstr ""
|
18438 |
-
|
18439 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
|
18440 |
-
msgid "Add EU Countries VAT Rates"
|
18441 |
-
msgstr ""
|
18442 |
-
|
18443 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:75
|
18444 |
-
msgid "Note: will add duplicates."
|
18445 |
-
msgstr ""
|
18446 |
-
|
18447 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:83
|
18448 |
-
msgid "List of EU VAT rates to be added"
|
18449 |
-
msgstr ""
|
18450 |
-
|
18451 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:89
|
18452 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:103
|
18453 |
-
msgid "Rate"
|
18454 |
-
msgstr ""
|
18455 |
-
|
18456 |
-
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:97
|
18457 |
-
msgid "Current standard tax rates"
|
18458 |
-
msgstr ""
|
18459 |
-
|
18460 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:35
|
18461 |
-
msgid "Status slug is empty. Status was not added!"
|
18462 |
-
msgstr ""
|
18463 |
-
|
18464 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:38
|
18465 |
-
msgid ""
|
18466 |
-
"The length of status slug must be 17 or less characters (excluding prefix). "
|
18467 |
-
"Status was not added!"
|
18468 |
-
msgstr ""
|
18469 |
-
|
18470 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:42
|
18471 |
-
msgid "Status label is empty. Status was not added!"
|
18472 |
-
msgstr ""
|
18473 |
-
|
18474 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:48
|
18475 |
-
msgid "Duplicate slug. Status was not added!"
|
18476 |
-
msgstr ""
|
18477 |
-
|
18478 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:60
|
18479 |
-
#, php-format
|
18480 |
-
msgid "%s status has been successfully added."
|
18481 |
-
msgstr ""
|
18482 |
-
|
18483 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:62
|
18484 |
-
#, php-format
|
18485 |
-
msgid "%s status was not added!"
|
18486 |
-
msgstr ""
|
18487 |
-
|
18488 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:75
|
18489 |
-
msgid "Status label is empty. Status was not edited!"
|
18490 |
-
msgstr ""
|
18491 |
-
|
18492 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:86
|
18493 |
-
#, php-format
|
18494 |
-
msgid "%s status has been successfully edited!"
|
18495 |
-
msgstr ""
|
18496 |
-
|
18497 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:88
|
18498 |
-
#, php-format
|
18499 |
-
msgid "%s status was not edited!"
|
18500 |
-
msgstr ""
|
18501 |
-
|
18502 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:108
|
18503 |
-
#, php-format
|
18504 |
-
msgid "%s status has been successfully deleted."
|
18505 |
-
msgstr ""
|
18506 |
-
|
18507 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:110
|
18508 |
-
#, php-format
|
18509 |
-
msgid "%s status delete failed!"
|
18510 |
-
msgstr ""
|
18511 |
-
|
18512 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:142
|
18513 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:218
|
18514 |
-
msgid "Icon Code"
|
18515 |
-
msgstr ""
|
18516 |
-
|
18517 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:143
|
18518 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:219
|
18519 |
-
msgid "Color"
|
18520 |
-
msgstr ""
|
18521 |
-
|
18522 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:144
|
18523 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:220
|
18524 |
-
msgid "Text Color"
|
18525 |
-
msgstr ""
|
18526 |
-
|
18527 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:163
|
18528 |
-
msgid "Get Booster Plus to enable."
|
18529 |
-
msgstr ""
|
18530 |
-
|
18531 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:206
|
18532 |
-
#, php-format
|
18533 |
-
msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
|
18534 |
-
msgstr ""
|
18535 |
-
|
18536 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:211
|
18537 |
-
msgid "Edit custom status"
|
18538 |
-
msgstr ""
|
18539 |
-
|
18540 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:211
|
18541 |
-
msgid "Add new custom status"
|
18542 |
-
msgstr ""
|
18543 |
-
|
18544 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:216
|
18545 |
-
msgid "Slug (without <code>wc-</code> prefix)"
|
18546 |
-
msgstr ""
|
18547 |
-
|
18548 |
-
#: includes/tools/class-wcj-order-statuses-tool.php:269
|
18549 |
-
msgid "Delete All Custom Statuses"
|
18550 |
-
msgstr ""
|
18551 |
-
|
18552 |
-
#: includes/widgets/class-wcj-widget-country-switcher.php:27
|
18553 |
-
msgid "Booster - Country Switcher"
|
18554 |
-
msgstr ""
|
18555 |
-
|
18556 |
-
#: includes/widgets/class-wcj-widget-country-switcher.php:29
|
18557 |
-
msgid "Booster: Country Switcher Widget"
|
18558 |
-
msgstr ""
|
18559 |
-
|
18560 |
-
#: includes/widgets/class-wcj-widget-country-switcher.php:41
|
18561 |
-
msgid "Prices and Currencies by Country module not enabled!"
|
18562 |
-
msgstr ""
|
18563 |
-
|
18564 |
-
#: includes/widgets/class-wcj-widget-country-switcher.php:43
|
18565 |
-
msgid "Customer Country Detection Method must include \"by user selection\"!"
|
18566 |
-
msgstr ""
|
18567 |
-
|
18568 |
-
#: includes/widgets/class-wcj-widget-country-switcher.php:76
|
18569 |
-
msgid "Replace with currency"
|
18570 |
-
msgstr ""
|
18571 |
-
|
18572 |
-
#: includes/widgets/class-wcj-widget-left-to-free-shipping.php:27
|
18573 |
-
msgid "Booster - Left to Free Shipping"
|
18574 |
-
msgstr ""
|
18575 |
-
|
18576 |
-
#: includes/widgets/class-wcj-widget-left-to-free-shipping.php:29
|
18577 |
-
msgid "Booster: Left to Free Shipping Widget"
|
18578 |
-
msgstr ""
|
18579 |
-
|
18580 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:29
|
18581 |
-
msgid "Booster: Multicurrency Switcher Widget"
|
18582 |
-
msgstr ""
|
18583 |
-
|
18584 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:41
|
18585 |
-
msgid "Multicurrency module not enabled!"
|
18586 |
-
msgstr ""
|
18587 |
-
|
18588 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:81
|
18589 |
-
msgid "Drop down"
|
18590 |
-
msgstr ""
|
18591 |
-
|
18592 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:82
|
18593 |
-
msgid "Radio list"
|
18594 |
-
msgstr ""
|
18595 |
-
|
18596 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:83
|
18597 |
-
msgid "Link list"
|
18598 |
-
msgstr ""
|
18599 |
-
|
18600 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:88
|
18601 |
-
msgid "Form Method"
|
18602 |
-
msgstr ""
|
18603 |
-
|
18604 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:89
|
18605 |
-
msgid "HTML form method for \"Drop down\" and \"Radio list\" types."
|
18606 |
-
msgstr ""
|
18607 |
-
|
18608 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:94
|
18609 |
-
msgid "Post"
|
18610 |
-
msgstr ""
|
18611 |
-
|
18612 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:95
|
18613 |
-
msgid "Get"
|
18614 |
-
msgstr ""
|
18615 |
-
|
18616 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:101
|
18617 |
-
msgid "HTML class for \"Drop down\" type."
|
18618 |
-
msgstr ""
|
18619 |
-
|
18620 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:108
|
18621 |
-
msgid "Style"
|
18622 |
-
msgstr ""
|
18623 |
-
|
18624 |
-
#: includes/widgets/class-wcj-widget-multicurrency.php:109
|
18625 |
-
msgid "HTML style for \"Drop down\" type."
|
18626 |
-
msgstr ""
|
18627 |
-
|
18628 |
-
#: includes/widgets/class-wcj-widget-selector.php:29
|
18629 |
-
msgid "Booster: Selector Widget"
|
18630 |
-
msgstr ""
|
18631 |
-
|
18632 |
-
#: includes/widgets/class-wcj-widget-selector.php:29
|
18633 |
-
msgid "currently for \"Product Visibility by Country\" module only"
|
18634 |
-
msgstr ""
|
18635 |
-
|
18636 |
-
#: includes/widgets/class-wcj-widget-selector.php:59
|
18637 |
-
msgid "Selector Type"
|
18638 |
-
msgstr ""
|
18639 |
-
|
18640 |
-
#: includes/widgets/class-wcj-widget-selector.php:65
|
18641 |
-
msgid "Product custom visibility"
|
18642 |
-
msgstr ""
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Booster for WooCommerce\n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.1.1\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
|
17 |
+
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;eschtml_e;esc_html_x:1,2c;"
|
18 |
+
"esc_html_e\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: assets\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-1: .idea\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-2: .git\n"
|
23 |
+
|
24 |
+
#: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:81
|
25 |
+
msgid "Booster: Custom Add to Cart"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:97
|
29 |
+
msgid "Single product view"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: includes/add-to-cart/class-wcj-add-to-cart-per-product.php:98
|
33 |
+
msgid "Product category (archive) view"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: includes/admin/class-wc-settings-jetpack.php:24
|
37 |
+
#: includes/admin/class-wc-settings-jetpack.php:221
|
38 |
+
#: includes/class-wcj-admin-bar.php:276
|
39 |
+
#: includes/class-wcj-checkout-files-upload.php:218
|
40 |
+
#: includes/class-wcj-eu-vat-number.php:165
|
41 |
+
#: includes/class-wcj-max-products-per-user.php:184
|
42 |
+
#: includes/class-wcj-orders.php:124 includes/class-wcj-orders.php:153
|
43 |
+
#: includes/class-wcj-payment-gateways.php:91
|
44 |
+
#: includes/class-wcj-track-users.php:163
|
45 |
+
#: includes/class-wcj-track-users.php:251
|
46 |
+
#: includes/classes/class-wcj-module.php:381
|
47 |
+
#: includes/classes/class-wcj-module.php:581
|
48 |
+
#: includes/settings/wcj-settings-price-by-country.php:178
|
49 |
+
msgid "Booster"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: includes/admin/class-wc-settings-jetpack.php:83
|
53 |
+
#: includes/class-wcj-admin-bar.php:140
|
54 |
+
msgid "Alphabetically"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/admin/class-wc-settings-jetpack.php:84
|
58 |
+
#: includes/class-wcj-admin-bar.php:144
|
59 |
+
msgid "By Category"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/admin/class-wc-settings-jetpack.php:85
|
63 |
+
#: includes/class-wcj-admin-bar.php:148
|
64 |
+
msgid "Active"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: includes/admin/class-wc-settings-jetpack.php:86
|
68 |
+
#: includes/class-wcj-admin-bar.php:152
|
69 |
+
msgid "Manage Settings"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: includes/admin/class-wc-settings-jetpack.php:146
|
73 |
+
#: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
|
74 |
+
#: includes/class-wcj-my-account.php:33
|
75 |
+
msgid "Dashboard"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/admin/class-wc-settings-jetpack.php:190
|
79 |
+
#, php-format
|
80 |
+
msgid ""
|
81 |
+
"Please note that current <em>%s</em> module is deprecated and will be "
|
82 |
+
"removed in future updates. Please use <em>%s</em> module instead."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/admin/class-wc-settings-jetpack.php:195
|
86 |
+
msgid ""
|
87 |
+
"Module will be removed from the module's list as soon as you disable it."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/admin/class-wc-settings-jetpack.php:206
|
91 |
+
#, php-format
|
92 |
+
msgid ""
|
93 |
+
"Please note that <em>%s</em> module is currently under development. Until "
|
94 |
+
"stable module version is released, options can be changed or some options "
|
95 |
+
"can be moved to paid plugin version."
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/admin/class-wc-settings-jetpack.php:217
|
99 |
+
#: includes/class-wcj-admin-bar.php:384
|
100 |
+
#: includes/settings/wcj-settings-emails-verification.php:146
|
101 |
+
#: includes/settings/wcj-settings-price-by-country.php:177
|
102 |
+
msgid "WooCommerce"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/admin/class-wc-settings-jetpack.php:219
|
106 |
+
#: includes/admin/class-wc-settings-jetpack.php:414
|
107 |
+
#: includes/class-wcj-admin-bar.php:168 includes/class-wcj-admin-bar.php:508
|
108 |
+
#: includes/class-wcj-admin-bar.php:608 includes/core/class-wcj-admin.php:113
|
109 |
+
msgid "Settings"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: includes/admin/class-wc-settings-jetpack.php:270
|
113 |
+
msgid ""
|
114 |
+
"This section lets you export, import or reset all Booster's modules settings."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/admin/class-wc-settings-jetpack.php:294
|
118 |
+
#: includes/class-wcj-export-import.php:26
|
119 |
+
msgid "Export"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/admin/class-wc-settings-jetpack.php:295
|
123 |
+
msgid "Export all Booster's options to a file."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/admin/class-wc-settings-jetpack.php:298
|
127 |
+
#: includes/class-wcj-purchase-data.php:93
|
128 |
+
msgid "Import"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/class-wc-settings-jetpack.php:300
|
132 |
+
msgid "Import all Booster's options from a file."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/admin/class-wc-settings-jetpack.php:304
|
136 |
+
msgid ""
|
137 |
+
"This will reset settings to defaults for all Booster modules. Are you sure?"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: includes/admin/class-wc-settings-jetpack.php:305
|
141 |
+
msgid "Reset"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: includes/admin/class-wc-settings-jetpack.php:306
|
145 |
+
msgid "Reset all Booster's options."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/admin/class-wc-settings-jetpack.php:310
|
149 |
+
msgid "This will delete all Booster meta. Are you sure?"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/admin/class-wc-settings-jetpack.php:311
|
153 |
+
msgid "Reset meta"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: includes/admin/class-wc-settings-jetpack.php:312
|
157 |
+
msgid "Reset all Booster's meta."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: includes/admin/class-wc-settings-jetpack.php:350
|
161 |
+
msgid "Version"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: includes/admin/class-wc-settings-jetpack.php:371
|
165 |
+
#: includes/admin/class-wc-settings-jetpack.php:378
|
166 |
+
msgid "Select All"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/admin/class-wc-settings-jetpack.php:372
|
170 |
+
#: includes/admin/class-wc-settings-jetpack.php:379
|
171 |
+
#: includes/admin/class-wcj-tools.php:72
|
172 |
+
msgid "Module"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/admin/class-wc-settings-jetpack.php:373
|
176 |
+
#: includes/admin/class-wc-settings-jetpack.php:380
|
177 |
+
#: includes/admin/class-wcj-tools.php:73
|
178 |
+
#: includes/export/class-wcj-fields-helper.php:293
|
179 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
180 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:172
|
181 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:34
|
182 |
+
#: includes/settings/wcj-settings-product-by-user.php:13
|
183 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:176
|
184 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:342
|
185 |
+
msgid "Description"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/class-wc-settings-jetpack.php:416
|
189 |
+
#: includes/class-wcj-admin-bar.php:172
|
190 |
+
#: includes/classes/class-wcj-module.php:721
|
191 |
+
msgid "Documentation"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/admin/class-wc-settings-jetpack.php:427
|
195 |
+
msgid "No active modules found."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/admin/class-wc-settings-jetpack.php:430
|
199 |
+
msgid "Total Modules:"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/admin/class-wc-settings-jetpack.php:468
|
203 |
+
msgid "Autoload Booster's Options"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/admin/class-wc-settings-jetpack.php:470
|
207 |
+
msgid ""
|
208 |
+
"Choose if you want Booster's options to be autoloaded when calling "
|
209 |
+
"add_option. After saving this option, you need to Reset all Booster's "
|
210 |
+
"settings. Leave default value (i.e. Enabled) if not sure."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/admin/class-wc-settings-jetpack.php:475
|
214 |
+
msgid "Load Modules on Init Hook"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/admin/class-wc-settings-jetpack.php:477
|
218 |
+
msgid "Choose if you want to load Booster Modules on Init hook."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/admin/class-wc-settings-jetpack.php:477
|
222 |
+
msgid ""
|
223 |
+
"It will load the locale appropriately if users change it from the profile "
|
224 |
+
"page."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/admin/class-wc-settings-jetpack.php:482
|
228 |
+
msgid "Use List Instead of Comma Separated Text for Products in Settings"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/admin/class-wc-settings-jetpack.php:484
|
232 |
+
#: includes/admin/class-wc-settings-jetpack.php:498
|
233 |
+
#: includes/admin/class-wc-settings-jetpack.php:507
|
234 |
+
#, php-format
|
235 |
+
msgid "Supported modules: %s."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/admin/class-wc-settings-jetpack.php:485
|
239 |
+
#: includes/class-wcj-payment-gateways-per-category.php:26
|
240 |
+
msgid "Gateways per Product or Category"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/admin/class-wc-settings-jetpack.php:486
|
244 |
+
#: includes/class-wcj-global-discount.php:27
|
245 |
+
#: includes/settings/wcj-settings-product-addons.php:245
|
246 |
+
msgid "Global Discount"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/admin/class-wc-settings-jetpack.php:487
|
250 |
+
#: includes/admin/class-wc-settings-jetpack.php:499
|
251 |
+
#: includes/admin/class-wc-settings-jetpack.php:508
|
252 |
+
#: includes/class-wcj-product-custom-info.php:24
|
253 |
+
#: includes/functions/wcj-functions-general.php:449
|
254 |
+
msgid "Product Info"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/admin/class-wc-settings-jetpack.php:488
|
258 |
+
#: includes/class-wcj-product-input-fields.php:24
|
259 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:185
|
260 |
+
msgid "Product Input Fields"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: includes/admin/class-wc-settings-jetpack.php:489
|
264 |
+
msgid "Products XML"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: includes/admin/class-wc-settings-jetpack.php:490
|
268 |
+
#: includes/class-wcj-related-products.php:38
|
269 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:30
|
270 |
+
#: includes/settings/wcj-settings-free-price.php:20
|
271 |
+
msgid "Related Products"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/admin/class-wc-settings-jetpack.php:496
|
275 |
+
msgid ""
|
276 |
+
"Use List Instead of Comma Separated Text for Products Categories in Settings"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/admin/class-wc-settings-jetpack.php:505
|
280 |
+
msgid "Use List Instead of Comma Separated Text for Products Tags in Settings"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/admin/class-wc-settings-jetpack.php:532
|
284 |
+
#: includes/core/class-wcj-admin.php:97
|
285 |
+
msgid "Booster for WooCommerce"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: includes/admin/class-wcj-settings-custom-fields.php:65
|
289 |
+
#, php-format
|
290 |
+
msgid "Grab raw %s rate from %s."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/admin/class-wcj-settings-custom-fields.php:66
|
294 |
+
msgid "Doesn't apply rounding, offset etc."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: includes/admin/class-wcj-settings-custom-fields.php:260
|
298 |
+
#: includes/settings/wcj-settings-wpml.php:88
|
299 |
+
msgid "To use tools, module must be enabled."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/admin/class-wcj-settings-custom-fields.php:299
|
303 |
+
msgid "Save changes"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin/class-wcj-settings-manager.php:62
|
307 |
+
msgid "Please upload a file to import!"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin/class-wcj-settings-manager.php:72
|
311 |
+
#: includes/admin/class-wcj-settings-manager.php:77
|
312 |
+
msgid "Wrong file format!"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/admin/class-wcj-settings-manager.php:86
|
316 |
+
#, php-format
|
317 |
+
msgid "%d options successfully imported."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/admin/class-wcj-settings-manager.php:140
|
321 |
+
#, php-format
|
322 |
+
msgid "%d meta successfully deleted."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/admin/class-wcj-settings-manager.php:158
|
326 |
+
#, php-format
|
327 |
+
msgid "%d options successfully deleted."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/admin/class-wcj-tools.php:32
|
331 |
+
msgid "Booster for WooCommerce Tools"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/admin/class-wcj-tools.php:33
|
335 |
+
msgid "Booster Tools"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/admin/class-wcj-tools.php:51
|
339 |
+
msgid "Tools Dashboard"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/admin/class-wcj-tools.php:65
|
343 |
+
msgid "Booster for WooCommerce Tools - Dashboard"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: includes/admin/class-wcj-tools.php:66
|
347 |
+
msgid ""
|
348 |
+
"This dashboard lets you check statuses and short descriptions of all "
|
349 |
+
"available Booster for WooCommerce tools. Tools can be enabled through "
|
350 |
+
"WooCommerce > Settings > Booster. Enabled tools will appear in the tabs menu "
|
351 |
+
"above."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/admin/class-wcj-tools.php:71
|
355 |
+
msgid "Tool"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: includes/admin/class-wcj-tools.php:74
|
359 |
+
#: includes/class-wcj-product-by-user.php:197
|
360 |
+
#: includes/export/class-wcj-fields-helper.php:294
|
361 |
+
msgid "Status"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/admin/wcj-modules-cats.php:15
|
365 |
+
msgid ""
|
366 |
+
"This dashboard lets you enable/disable any Booster's module. Each checkbox "
|
367 |
+
"comes with short module's description. Please visit <a href=\"https://"
|
368 |
+
"booster.io\" target=\"_blank\">https://booster.io</a> for detailed info on "
|
369 |
+
"each feature."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/admin/wcj-modules-cats.php:25
|
373 |
+
msgid "Prices & Currencies"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: includes/admin/wcj-modules-cats.php:26
|
377 |
+
msgid ""
|
378 |
+
"Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price "
|
379 |
+
"based on User Role and more."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: includes/admin/wcj-modules-cats.php:47
|
383 |
+
msgid "Button & Price Labels"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: includes/admin/wcj-modules-cats.php:48
|
387 |
+
msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: includes/admin/wcj-modules-cats.php:59 includes/class-wcj-admin-bar.php:466
|
391 |
+
#: includes/class-wcj-admin-bar.php:470 includes/class-wcj-admin-bar.php:516
|
392 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:263
|
393 |
+
#: includes/class-wcj-product-by-user.php:96
|
394 |
+
#: includes/class-wcj-product-by-user.php:132
|
395 |
+
#: includes/class-wcj-shipping-by-products.php:32
|
396 |
+
#: includes/settings/wcj-settings-reports.php:178
|
397 |
+
#: includes/settings/wcj-settings-shipping-options.php:69
|
398 |
+
msgid "Products"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/wcj-modules-cats.php:60
|
402 |
+
msgid ""
|
403 |
+
"Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
|
404 |
+
"Listings, Product Tabs and more."
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/admin/wcj-modules-cats.php:96
|
408 |
+
msgid "Cart & Checkout"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: includes/admin/wcj-modules-cats.php:97
|
412 |
+
msgid ""
|
413 |
+
"Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
|
414 |
+
"more."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/wcj-modules-cats.php:117
|
418 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:55
|
419 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
|
420 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:37
|
421 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:14
|
422 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:15
|
423 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:81
|
424 |
+
#: includes/settings/wcj-settings-reports.php:118
|
425 |
+
msgid "Payment Gateways"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: includes/admin/wcj-modules-cats.php:118
|
429 |
+
msgid ""
|
430 |
+
"Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
|
431 |
+
"more."
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: includes/admin/wcj-modules-cats.php:134
|
435 |
+
msgid "Shipping & Orders"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: includes/admin/wcj-modules-cats.php:135
|
439 |
+
msgid ""
|
440 |
+
"Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
|
441 |
+
"Methods and more."
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: includes/admin/wcj-modules-cats.php:162
|
445 |
+
msgid "PDF Invoicing & Packing Slips"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: includes/admin/wcj-modules-cats.php:163
|
449 |
+
msgid "PDF Documents"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: includes/admin/wcj-modules-cats.php:179
|
453 |
+
msgid "Emails & Misc."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: includes/admin/wcj-modules-cats.php:180
|
457 |
+
msgid "Emails, Reports, Export, Admin Tools, General Options and more."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/class-wcj-add-to-cart-button-visibility.php:26
|
461 |
+
msgid "Add to Cart Button Visibility"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/class-wcj-add-to-cart-button-visibility.php:27
|
465 |
+
msgid "Enable/disable Add to Cart button globally or on per product basis."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/class-wcj-add-to-cart-button-visibility.php:29
|
469 |
+
#, php-format
|
470 |
+
msgid ""
|
471 |
+
"If you need to enable/disable Add to Cart button for some <strong>user "
|
472 |
+
"roles</strong> only, we suggest using this module in conjunction with "
|
473 |
+
"Booster's %s module."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/class-wcj-add-to-cart-button-visibility.php:31
|
477 |
+
#: includes/class-wcj-modules-by-user-roles.php:25
|
478 |
+
msgid "Modules By User Roles"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/class-wcj-add-to-cart.php:23
|
482 |
+
msgid "Add to Cart Button Labels"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/class-wcj-add-to-cart.php:24
|
486 |
+
msgid ""
|
487 |
+
"Change text for Add to Cart button by product type, by product category or "
|
488 |
+
"for individual products."
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: includes/class-wcj-address-formats.php:24
|
492 |
+
msgid "Address Formats"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: includes/class-wcj-address-formats.php:25
|
496 |
+
msgid ""
|
497 |
+
"Set address format in orders on per country basis. Force base country "
|
498 |
+
"display."
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/class-wcj-admin-bar.php:30
|
502 |
+
msgid "Admin Bar"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/class-wcj-admin-bar.php:31
|
506 |
+
msgid "WooCommerce admin bar."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/class-wcj-admin-bar.php:215
|
510 |
+
msgid ""
|
511 |
+
"This dashboard lets you check statuses and short descriptions of all "
|
512 |
+
"available Booster for WooCommerce tools. Tools can be enabled through "
|
513 |
+
"WooCommerce > Settings > Booster."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/class-wcj-admin-bar.php:245 includes/class-wcj-admin-bar.php:288
|
517 |
+
#: includes/class-wcj-admin-bar.php:632
|
518 |
+
#: includes/classes/class-wcj-module.php:554
|
519 |
+
#: includes/settings/wcj-settings-wpml.php:82
|
520 |
+
msgid "Tools"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/class-wcj-admin-bar.php:253
|
524 |
+
msgid "Booster: Active"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/class-wcj-admin-bar.php:256
|
528 |
+
msgid "Booster - Active"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/class-wcj-admin-bar.php:279
|
532 |
+
msgid "Booster - Settings"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/class-wcj-admin-bar.php:283
|
536 |
+
msgid "Modules"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: includes/class-wcj-admin-bar.php:307
|
540 |
+
msgid "Sales by date"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: includes/class-wcj-admin-bar.php:308
|
544 |
+
msgid "Sales by product"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: includes/class-wcj-admin-bar.php:309
|
548 |
+
msgid "Sales by category"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: includes/class-wcj-admin-bar.php:310
|
552 |
+
msgid "Coupons by date"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/class-wcj-admin-bar.php:318 includes/class-wcj-track-users.php:34
|
556 |
+
#: includes/functions/wcj-functions-reports.php:62
|
557 |
+
msgid "Last 7 days"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: includes/class-wcj-admin-bar.php:322
|
561 |
+
#: includes/functions/wcj-functions-reports.php:57
|
562 |
+
msgid "This month"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: includes/class-wcj-admin-bar.php:326
|
566 |
+
#: includes/functions/wcj-functions-reports.php:52
|
567 |
+
msgid "Last month"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/class-wcj-admin-bar.php:330
|
571 |
+
#: includes/functions/wcj-functions-reports.php:47
|
572 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:125
|
573 |
+
msgid "Year"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/class-wcj-admin-bar.php:387
|
577 |
+
msgid "WooCommerce settings"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/class-wcj-admin-bar.php:391 includes/class-wcj-admin-bar.php:395
|
581 |
+
#: includes/class-wcj-admin-bar.php:413 includes/class-wcj-my-account.php:34
|
582 |
+
#: includes/class-wcj-my-account.php:42 includes/class-wcj-orders.php:26
|
583 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:153
|
584 |
+
#: includes/settings/wcj-settings-reports.php:21
|
585 |
+
#: includes/settings/wcj-settings-reports.php:59
|
586 |
+
#: includes/settings/wcj-settings-reports.php:100
|
587 |
+
#: includes/settings/wcj-settings-reports.php:120
|
588 |
+
msgid "Orders"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: includes/class-wcj-admin-bar.php:399
|
592 |
+
msgid "Add order"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: includes/class-wcj-admin-bar.php:403 includes/class-wcj-admin-bar.php:418
|
596 |
+
#: includes/settings/wcj-settings-reports.php:135
|
597 |
+
#: includes/settings/wcj-settings-reports.php:141
|
598 |
+
msgid "Customers"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: includes/class-wcj-admin-bar.php:409 includes/class-wcj-reports.php:33
|
602 |
+
msgid "Reports"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: includes/class-wcj-admin-bar.php:422
|
606 |
+
msgid "Customers vs. guests"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: includes/class-wcj-admin-bar.php:426
|
610 |
+
msgid "Customer list"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: includes/class-wcj-admin-bar.php:432 includes/class-wcj-stock.php:27
|
614 |
+
#: includes/reports/wcj-class-reports-stock.php:272
|
615 |
+
#: includes/settings/wcj-settings-reports.php:156
|
616 |
+
#: includes/settings/wcj-settings-reports.php:162
|
617 |
+
#: includes/settings/wcj-settings-reports.php:168
|
618 |
+
msgid "Stock"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: includes/class-wcj-admin-bar.php:436
|
622 |
+
msgid "Low in stock"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: includes/class-wcj-admin-bar.php:440
|
626 |
+
#: includes/settings/wcj-settings-offer-price.php:49
|
627 |
+
#: includes/settings/wcj-settings-stock.php:101
|
628 |
+
#: includes/shortcodes/class-wcj-shortcodes-products.php:565
|
629 |
+
msgid "Out of stock"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/class-wcj-admin-bar.php:444
|
633 |
+
msgid "Most Stocked"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/class-wcj-admin-bar.php:450
|
637 |
+
#: includes/class-wcj-eu-vat-number.php:229
|
638 |
+
msgid "Taxes"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/class-wcj-admin-bar.php:454
|
642 |
+
msgid "Taxes by code"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/class-wcj-admin-bar.php:458
|
646 |
+
msgid "Taxes by date"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: includes/class-wcj-admin-bar.php:474
|
650 |
+
msgid "Add product"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: includes/class-wcj-admin-bar.php:478
|
654 |
+
#: includes/class-wcj-product-bulk-price-converter.php:149
|
655 |
+
#: includes/class-wcj-sku.php:538
|
656 |
+
#: includes/export/class-wcj-fields-helper.php:318
|
657 |
+
#: includes/settings/wcj-settings-product-by-user.php:19
|
658 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:182
|
659 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:403
|
660 |
+
msgid "Categories"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/class-wcj-admin-bar.php:483
|
664 |
+
#: includes/export/class-wcj-fields-helper.php:319
|
665 |
+
#: includes/settings/wcj-settings-product-by-user.php:20
|
666 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:183
|
667 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:408
|
668 |
+
msgid "Tags"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/class-wcj-admin-bar.php:488
|
672 |
+
msgid "Attributes"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/class-wcj-admin-bar.php:494 includes/class-wcj-admin-bar.php:498
|
676 |
+
msgid "Coupons"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/class-wcj-admin-bar.php:502
|
680 |
+
msgid "Add coupon"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/class-wcj-admin-bar.php:512 includes/class-wcj-admin-bar.php:520
|
684 |
+
#: includes/class-wcj-general.php:24 includes/class-wcj-pdf-invoicing.php:24
|
685 |
+
#: includes/settings/wcj-settings-related-products.php:38
|
686 |
+
msgid "General"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/class-wcj-admin-bar.php:524
|
690 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:170
|
691 |
+
#: includes/settings/wcj-settings-product-msrp.php:25
|
692 |
+
msgid "Display"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/class-wcj-admin-bar.php:528
|
696 |
+
msgid "Inventory"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/class-wcj-admin-bar.php:532
|
700 |
+
msgid "Downloadable products"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/class-wcj-admin-bar.php:538
|
704 |
+
msgid "Tax"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: includes/class-wcj-admin-bar.php:542
|
708 |
+
msgid "Tax options"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/class-wcj-admin-bar.php:546
|
712 |
+
msgid "Standard rates"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: includes/class-wcj-admin-bar.php:552
|
716 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:193
|
717 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:57
|
718 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:115
|
719 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:46
|
720 |
+
msgid "Shipping"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: includes/class-wcj-admin-bar.php:556
|
724 |
+
msgid "Shipping zones"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: includes/class-wcj-admin-bar.php:560
|
728 |
+
msgid "Shipping options"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: includes/class-wcj-admin-bar.php:564
|
732 |
+
msgid "Shipping classes"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/class-wcj-admin-bar.php:570
|
736 |
+
msgid "Checkout"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: includes/class-wcj-admin-bar.php:574
|
740 |
+
msgid "Checkout options"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: includes/class-wcj-admin-bar.php:578
|
744 |
+
msgid "BACS"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: includes/class-wcj-admin-bar.php:582
|
748 |
+
msgid "Check payments"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: includes/class-wcj-admin-bar.php:586
|
752 |
+
msgid "Cash on delivery"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: includes/class-wcj-admin-bar.php:590
|
756 |
+
msgid "PayPal"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: includes/class-wcj-admin-bar.php:596
|
760 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:195
|
761 |
+
msgid "Account"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/class-wcj-admin-bar.php:600
|
765 |
+
msgid "Emails"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: includes/class-wcj-admin-bar.php:604
|
769 |
+
msgid "API"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: includes/class-wcj-admin-bar.php:612
|
773 |
+
msgid "Keys/Apps"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: includes/class-wcj-admin-bar.php:616
|
777 |
+
msgid "Webhooks"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: includes/class-wcj-admin-bar.php:624 includes/class-wcj-admin-bar.php:628
|
781 |
+
msgid "System status"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: includes/class-wcj-admin-bar.php:636
|
785 |
+
msgid "Logs"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: includes/class-wcj-admin-bar.php:642
|
789 |
+
msgid "Extensions"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: includes/class-wcj-admin-orders-list.php:25
|
793 |
+
msgid "Admin Orders List"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: includes/class-wcj-admin-orders-list.php:26
|
797 |
+
msgid ""
|
798 |
+
"Customize admin orders list: add custom columns; add multiple status "
|
799 |
+
"filtering."
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: includes/class-wcj-admin-orders-list.php:208
|
803 |
+
msgid "Not Completed"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: includes/class-wcj-admin-orders-list.php:243
|
807 |
+
msgid "Trash"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: includes/class-wcj-admin-orders-list.php:326
|
811 |
+
#: includes/class-wcj-product-by-country.php:194
|
812 |
+
msgid "All countries"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: includes/class-wcj-admin-orders-list.php:335
|
816 |
+
msgid "All currencies"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: includes/class-wcj-admin-orders-list.php:375
|
820 |
+
#: includes/export/class-wcj-fields-helper.php:44
|
821 |
+
#: includes/export/class-wcj-fields-helper.php:129
|
822 |
+
#: includes/export/class-wcj-fields-helper.php:214
|
823 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:27
|
824 |
+
msgid "Billing Country"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: includes/class-wcj-admin-orders-list.php:378
|
828 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:34
|
829 |
+
msgid "Currency Code"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: includes/class-wcj-admin-products-list.php:25
|
833 |
+
msgid "Admin Products List"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: includes/class-wcj-admin-products-list.php:26
|
837 |
+
msgid "Customize admin products list."
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: includes/class-wcj-admin-tools.php:24
|
841 |
+
msgid "Admin Tools"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: includes/class-wcj-admin-tools.php:25
|
845 |
+
msgid "Booster for WooCommerce general back-end tools."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: includes/class-wcj-admin-tools.php:31
|
849 |
+
msgid "Products Attributes"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: includes/class-wcj-admin-tools.php:32
|
853 |
+
msgid "All Products and All Attributes."
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: includes/class-wcj-admin-tools.php:126
|
857 |
+
#: includes/settings/wcj-settings-export.php:157
|
858 |
+
#: includes/settings/wcj-settings-export.php:236
|
859 |
+
msgid "Product Meta"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/class-wcj-admin-tools.php:143
|
863 |
+
#: includes/settings/wcj-settings-export.php:86
|
864 |
+
#: includes/settings/wcj-settings-export.php:154
|
865 |
+
msgid "Order Meta"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: includes/class-wcj-admin-tools.php:177
|
869 |
+
msgid "Order Items Meta"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: includes/class-wcj-admin-tools.php:179
|
873 |
+
msgid "Item Key"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: includes/class-wcj-admin-tools.php:179
|
877 |
+
msgid "Item Meta Key"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/class-wcj-admin-tools.php:179
|
881 |
+
msgid "Item Meta Value"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/class-wcj-admin-tools.php:214
|
885 |
+
#: includes/class-wcj-admin-tools.php:256
|
886 |
+
#: includes/class-wcj-admin-tools.php:265
|
887 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:339
|
888 |
+
#: includes/class-wcj-product-bulk-price-converter.php:148
|
889 |
+
#: includes/class-wcj-sku.php:537
|
890 |
+
#: includes/reports/wcj-class-reports-sales.php:197
|
891 |
+
#: includes/reports/wcj-class-reports-stock.php:269
|
892 |
+
msgid "Product"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: includes/class-wcj-admin-tools.php:215
|
896 |
+
#: includes/class-wcj-admin-tools.php:257
|
897 |
+
#: includes/class-wcj-admin-tools.php:266
|
898 |
+
#: includes/reports/wcj-class-reports-stock.php:270
|
899 |
+
msgid "Category"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: includes/class-wcj-admin-tools.php:282
|
903 |
+
msgid "Total Products:"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: includes/class-wcj-breadcrumbs.php:28
|
907 |
+
msgid "Breadcrumbs"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: includes/class-wcj-breadcrumbs.php:29
|
911 |
+
msgid "Customize WooCommerce breadcrumbs."
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: includes/class-wcj-call-for-price.php:25
|
915 |
+
msgid "Call for Price"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: includes/class-wcj-call-for-price.php:26
|
919 |
+
msgid "Create any custom price label for all products with empty price."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: includes/class-wcj-cart-customization.php:25
|
923 |
+
msgid "Cart Customization"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: includes/class-wcj-cart-customization.php:26
|
927 |
+
msgid ""
|
928 |
+
"Customize WooCommerce cart - hide coupon field; item remove link; change "
|
929 |
+
"empty cart \"Return to shop\" button text."
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/class-wcj-cart-customization.php:62
|
933 |
+
#: includes/class-wcj-cart-customization.php:100
|
934 |
+
#: includes/settings/wcj-settings-cart-customization.php:52
|
935 |
+
#: includes/templates/cart-empty.php:33
|
936 |
+
msgid "Return to shop"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: includes/class-wcj-cart.php:23
|
940 |
+
msgid "Cart Custom Info"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: includes/class-wcj-cart.php:24
|
944 |
+
msgid "Add custom info to the cart page."
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: includes/class-wcj-checkout-core-fields.php:25
|
948 |
+
msgid "Checkout Core Fields"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/class-wcj-checkout-core-fields.php:26
|
952 |
+
msgid ""
|
953 |
+
"Customize core checkout fields. Disable/enable fields, set required, change "
|
954 |
+
"labels and/or placeholders etc."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/class-wcj-checkout-custom-fields.php:24
|
958 |
+
msgid "Checkout Custom Fields"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/class-wcj-checkout-custom-fields.php:25
|
962 |
+
msgid "Add custom fields to the checkout page."
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/class-wcj-checkout-custom-info.php:24
|
966 |
+
#: includes/class-wcj-cross-sells.php:31
|
967 |
+
msgid "Checkout Custom Info"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/class-wcj-checkout-custom-info.php:25
|
971 |
+
msgid "Add custom info to the checkout page."
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: includes/class-wcj-checkout-customization.php:25
|
975 |
+
msgid "Checkout Customization"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/class-wcj-checkout-customization.php:26
|
979 |
+
msgid ""
|
980 |
+
"Customize WooCommerce checkout - restrict countries by customer's IP; hide "
|
981 |
+
"\"Order Again\" button; disable selected fields on checkout for logged users "
|
982 |
+
"and more."
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: includes/class-wcj-checkout-customization.php:200
|
986 |
+
#: includes/settings/wcj-settings-checkout-customization.php:220
|
987 |
+
msgid "Returning customer?"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: includes/class-wcj-checkout-customization.php:215
|
991 |
+
#: includes/settings/wcj-settings-checkout-customization.php:198
|
992 |
+
msgid "Thank you. Your order has been received."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: includes/class-wcj-checkout-customization.php:240
|
996 |
+
#: includes/class-wcj-checkout-customization.php:270
|
997 |
+
#: includes/settings/wcj-settings-checkout-customization.php:155
|
998 |
+
msgid "This field can not be changed"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/class-wcj-checkout-fees.php:26
|
1002 |
+
msgid "Checkout Fees"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: includes/class-wcj-checkout-fees.php:27
|
1006 |
+
msgid "Add fees to WooCommerce cart & checkout."
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/class-wcj-checkout-fees.php:231
|
1010 |
+
#: includes/settings/wcj-settings-checkout-fees.php:41
|
1011 |
+
#: includes/settings/wcj-settings-checkout-fees.php:62
|
1012 |
+
msgid "Fee"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: includes/class-wcj-checkout-files-upload.php:26
|
1016 |
+
msgid "Checkout Files Upload"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: includes/class-wcj-checkout-files-upload.php:27
|
1020 |
+
msgid "Let customers upload files on (or after) the checkout."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: includes/class-wcj-checkout-files-upload.php:69
|
1024 |
+
#: includes/class-wcj-checkout-files-upload.php:73
|
1025 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:362
|
1026 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:403
|
1027 |
+
#, php-format
|
1028 |
+
msgid "File: %s"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/class-wcj-checkout-files-upload.php:180
|
1032 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:116
|
1033 |
+
msgid "File is required!"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: includes/class-wcj-checkout-files-upload.php:194
|
1037 |
+
#: includes/class-wcj-checkout-files-upload.php:200
|
1038 |
+
#: includes/class-wcj-checkout-files-upload.php:416
|
1039 |
+
#: includes/class-wcj-checkout-files-upload.php:423
|
1040 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:110
|
1041 |
+
#, php-format
|
1042 |
+
msgid "Wrong file type: \"%s\"!"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: includes/class-wcj-checkout-files-upload.php:218
|
1046 |
+
msgid "Uploaded Files"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: includes/class-wcj-checkout-files-upload.php:250
|
1050 |
+
msgid "No files uploaded."
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: includes/class-wcj-checkout-files-upload.php:253
|
1054 |
+
msgid "Delete all files"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: includes/class-wcj-checkout-files-upload.php:332
|
1058 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:240
|
1059 |
+
msgid "Files were successfully removed."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/class-wcj-checkout-files-upload.php:359
|
1063 |
+
msgid "Booster for WooCommerce: Checkout Files Upload: %action%"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: includes/class-wcj-checkout-files-upload.php:360
|
1067 |
+
msgid "Order ID: %order_id%; File name: %file_name%"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: includes/class-wcj-checkout-files-upload.php:373
|
1071 |
+
#: includes/class-wcj-checkout-files-upload.php:396
|
1072 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:136
|
1073 |
+
#, php-format
|
1074 |
+
msgid "File \"%s\" was successfully removed."
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: includes/class-wcj-checkout-files-upload.php:380
|
1078 |
+
msgid "File Removed"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: includes/class-wcj-checkout-files-upload.php:434
|
1082 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:123
|
1083 |
+
#, php-format
|
1084 |
+
msgid "File \"%s\" was successfully uploaded."
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: includes/class-wcj-checkout-files-upload.php:444
|
1088 |
+
msgid "File Uploaded"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/class-wcj-checkout-files-upload.php:462
|
1092 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:129
|
1093 |
+
msgid "Please select file to upload!"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: includes/class-wcj-checkout-files-upload.php:736
|
1097 |
+
#: includes/class-wcj-checkout-files-upload.php:737
|
1098 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:97
|
1099 |
+
msgid "Upload"
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/class-wcj-checkout-files-upload.php:746
|
1103 |
+
#: includes/class-wcj-checkout-files-upload.php:747
|
1104 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:103
|
1105 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:78
|
1106 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:86
|
1107 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:166
|
1108 |
+
#: includes/settings/wcj-settings-sku.php:275
|
1109 |
+
#: includes/settings/wcj-settings-sorting.php:144
|
1110 |
+
#: includes/settings/wcj-settings-stock.php:206
|
1111 |
+
msgid "Remove"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/class-wcj-coupon-by-user-role.php:27
|
1115 |
+
msgid "Coupon by User Role"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/class-wcj-coupon-by-user-role.php:28
|
1119 |
+
msgid "Coupons by user roles."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/class-wcj-coupon-by-user-role.php:79
|
1123 |
+
#: includes/class-wcj-coupon-by-user-role.php:80
|
1124 |
+
#: includes/class-wcj-coupon-by-user-role.php:94
|
1125 |
+
#: includes/class-wcj-coupon-by-user-role.php:95
|
1126 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:68
|
1127 |
+
msgid "Coupon is not valid for your user role."
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/class-wcj-coupon-code-generator.php:28
|
1131 |
+
msgid "Coupon Code Generator"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/class-wcj-coupon-code-generator.php:29
|
1135 |
+
msgid "Coupon code generator."
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/class-wcj-cross-sells.php:26
|
1139 |
+
msgid "Cross-sells"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/class-wcj-cross-sells.php:27
|
1143 |
+
msgid ""
|
1144 |
+
"Cross-sells are products which you promote in the cart, based on the current "
|
1145 |
+
"product."
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: includes/class-wcj-cross-sells.php:28
|
1149 |
+
#, php-format
|
1150 |
+
msgid ""
|
1151 |
+
"You can also use %s shortcode to display cross-sells anywhere on your site, "
|
1152 |
+
"for example on checkout page with %s module."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: includes/class-wcj-cross-sells.php:32
|
1156 |
+
msgid "Customize cross-sells products display."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: includes/class-wcj-crowdfunding.php:25
|
1160 |
+
msgid "Crowdfunding"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: includes/class-wcj-crowdfunding.php:26
|
1164 |
+
msgid "Add crowdfunding products to WooCommerce."
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: includes/class-wcj-crowdfunding.php:28
|
1168 |
+
msgid "When enabled, module will add Crowdfunding metabox to product edit."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/class-wcj-crowdfunding.php:30
|
1172 |
+
#, php-format
|
1173 |
+
msgid ""
|
1174 |
+
"To add crowdfunding info to the product, use <a href=\"%s\" target=\"_blank"
|
1175 |
+
"\">Booster's crowdfunding shortcodes</a>."
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/class-wcj-crowdfunding.php:34
|
1179 |
+
#, php-format
|
1180 |
+
msgid ""
|
1181 |
+
"Shortcodes could be used for example in <a href=\"%s\">Product Info module</"
|
1182 |
+
"a>."
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: includes/class-wcj-crowdfunding.php:38
|
1186 |
+
#, php-format
|
1187 |
+
msgid ""
|
1188 |
+
"To change add to cart button labels use <a href=\"%s\">Add to Cart Labels "
|
1189 |
+
"module</a>."
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: includes/class-wcj-currency-exchange-rates.php:24
|
1193 |
+
msgid "Currency Exchange Rates"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: includes/class-wcj-currency-exchange-rates.php:25
|
1197 |
+
msgid "Automatic currency exchange rates for WooCommerce."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: includes/class-wcj-currency-exchange-rates.php:181
|
1201 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:46
|
1202 |
+
msgid "Exchange Rates Server"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: includes/class-wcj-currency-exchange-rates.php:186
|
1206 |
+
#, php-format
|
1207 |
+
msgid "Use default: %s"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/class-wcj-currency-exchange-rates.php:209
|
1211 |
+
msgid "Exchange Rates Offset (Percent)"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/class-wcj-currency-exchange-rates.php:214
|
1215 |
+
#, php-format
|
1216 |
+
msgid "Use default: %s%%"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: includes/class-wcj-currency-exchange-rates.php:215
|
1220 |
+
msgid "Custom offset"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/class-wcj-currency-exchange-rates.php:219
|
1224 |
+
msgid "Custom offset (Percent)"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/class-wcj-currency-exchange-rates.php:220
|
1228 |
+
msgid "Used when \"Custom offset\" option is selected above."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: includes/class-wcj-currency-external-products.php:23
|
1232 |
+
msgid "Currency for External Products"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: includes/class-wcj-currency-external-products.php:24
|
1236 |
+
msgid "Set different currency for external products."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: includes/class-wcj-currency-per-product.php:26
|
1240 |
+
#: includes/settings/wcj-settings-currency-per-product.php:64
|
1241 |
+
msgid "Currency per Product"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: includes/class-wcj-currency-per-product.php:27
|
1245 |
+
msgid "Display prices for products in different currencies."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: includes/class-wcj-currency-per-product.php:172
|
1249 |
+
#: includes/settings/wcj-settings-currency-per-product.php:43
|
1250 |
+
msgid ""
|
1251 |
+
"Only one product can be added to the cart. Clear the cart or finish the "
|
1252 |
+
"order, before adding another product to the cart."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/class-wcj-currency-per-product.php:187
|
1256 |
+
#: includes/settings/wcj-settings-currency-per-product.php:50
|
1257 |
+
msgid ""
|
1258 |
+
"Only products with same currency can be added to the cart. Clear the cart or "
|
1259 |
+
"finish the order, before adding products with another currency to the cart."
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/class-wcj-currency-per-product.php:226
|
1263 |
+
#, php-format
|
1264 |
+
msgctxt "Price range: from-to"
|
1265 |
+
msgid "%1$s–%2$s"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: includes/class-wcj-currency.php:27
|
1269 |
+
msgid "Currencies"
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: includes/class-wcj-currency.php:28
|
1273 |
+
msgid ""
|
1274 |
+
"Add all world currencies and cryptocurrencies to your store; change currency "
|
1275 |
+
"symbol."
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/class-wcj-currency.php:67
|
1279 |
+
msgid "Auroracoin"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/class-wcj-currency.php:68
|
1283 |
+
msgid "BitConnect"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/class-wcj-currency.php:69
|
1287 |
+
msgid "Bitcoin Cash"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/class-wcj-currency.php:70
|
1291 |
+
msgid "Coinye"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/class-wcj-currency.php:71
|
1295 |
+
msgid "DigitalNote"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: includes/class-wcj-currency.php:72
|
1299 |
+
msgid "Emercoin"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/class-wcj-currency.php:73
|
1303 |
+
msgid "Ethereum Classic"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/class-wcj-currency.php:74
|
1307 |
+
msgid "Ethereum"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/class-wcj-currency.php:75
|
1311 |
+
msgid "Freemasoncoin"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/class-wcj-currency.php:76
|
1315 |
+
msgid "Gridcoin"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/class-wcj-currency.php:77
|
1319 |
+
msgid "IOTA"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: includes/class-wcj-currency.php:78
|
1323 |
+
msgid "Litecoin"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: includes/class-wcj-currency.php:79
|
1327 |
+
msgid "MazaCoin"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/class-wcj-currency.php:80
|
1331 |
+
msgid "Monero"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: includes/class-wcj-currency.php:81
|
1335 |
+
msgid "Namecoin"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/class-wcj-currency.php:82
|
1339 |
+
msgid "NEM"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/class-wcj-currency.php:83
|
1343 |
+
msgid "Nxt"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/class-wcj-currency.php:84
|
1347 |
+
msgid "Omni"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/class-wcj-currency.php:85
|
1351 |
+
msgid "Peercoin"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: includes/class-wcj-currency.php:86
|
1355 |
+
msgid "PotCoin"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: includes/class-wcj-currency.php:87
|
1359 |
+
msgid "Primecoin"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: includes/class-wcj-currency.php:88
|
1363 |
+
msgid "Ripple"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/class-wcj-currency.php:89
|
1367 |
+
msgid "SixEleven"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: includes/class-wcj-currency.php:90
|
1371 |
+
msgid "Synereo AMP"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: includes/class-wcj-currency.php:91
|
1375 |
+
msgid "Titcoin"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: includes/class-wcj-currency.php:92
|
1379 |
+
msgid "Ubiq"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: includes/class-wcj-currency.php:93
|
1383 |
+
msgid "Vertcoin"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/class-wcj-currency.php:94
|
1387 |
+
msgid "Zcash"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/class-wcj-currency.php:96
|
1391 |
+
msgid "Special Drawing Rights"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/class-wcj-currency.php:98
|
1395 |
+
msgid "myCred"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/class-wcj-currency.php:174
|
1399 |
+
msgid "Booster: Currency Symbol"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/class-wcj-currency.php:175
|
1403 |
+
msgid "This sets the currency symbol."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/class-wcj-custom-css.php:28
|
1407 |
+
msgid "Custom CSS"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/class-wcj-custom-css.php:29
|
1411 |
+
msgid "Separate custom CSS for front and back end. Per product CSS."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/class-wcj-custom-js.php:27
|
1415 |
+
msgid "Custom JS"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/class-wcj-custom-js.php:28
|
1419 |
+
msgid "Separate custom JS for front and back end."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/class-wcj-custom-php.php:27
|
1423 |
+
#: includes/settings/wcj-settings-custom-php.php:21
|
1424 |
+
msgid "Custom PHP"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: includes/class-wcj-custom-php.php:28
|
1428 |
+
msgid "Custom PHP tool."
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/class-wcj-custom-php.php:30
|
1432 |
+
#, php-format
|
1433 |
+
msgid ""
|
1434 |
+
"Please note that if you enable the module and enter non-valid PHP code here, "
|
1435 |
+
"your site will become unavailable. To fix this you will have to add %s "
|
1436 |
+
"attribute to the URL (you must be logged as shop manager or admin (for this "
|
1437 |
+
"reason custom PHP code is not executed on %s page))."
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: includes/class-wcj-custom-php.php:32
|
1441 |
+
#: includes/settings/wcj-settings-multicurrency.php:169
|
1442 |
+
#: includes/settings/wcj-settings-offer-price.php:84
|
1443 |
+
#, php-format
|
1444 |
+
msgid "E.g.: %s"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: includes/class-wcj-debug-tools.php:25
|
1448 |
+
msgid "Debug Tools"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: includes/class-wcj-debug-tools.php:26
|
1452 |
+
msgid "Booster for WooCommerce debug and log tools."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: includes/class-wcj-debug-tools.php:32
|
1456 |
+
#: includes/settings/wcj-settings-debug-tools.php:19
|
1457 |
+
msgid "Log"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: includes/class-wcj-debug-tools.php:33
|
1461 |
+
msgid "Log."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/class-wcj-debug-tools.php:55
|
1465 |
+
msgid "Delete Log"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: includes/class-wcj-debug-tools.php:58
|
1469 |
+
#, php-format
|
1470 |
+
msgid "Now: %s"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/class-wcj-debug-tools.php:62
|
1474 |
+
msgid "Log is empty."
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: includes/class-wcj-debug-tools.php:93
|
1478 |
+
msgid "NOT DEFINED"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: includes/class-wcj-email-options.php:26
|
1482 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-emails.php:24
|
1483 |
+
#: includes/settings/wcj-settings-emails-verification.php:115
|
1484 |
+
#: includes/settings/wcj-settings-offer-price.php:309
|
1485 |
+
msgid "Email Options"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: includes/class-wcj-email-options.php:27
|
1489 |
+
msgid ""
|
1490 |
+
"WooCommerce email options. E.g.: add another email recipient(s) to all "
|
1491 |
+
"WooCommerce emails."
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: includes/class-wcj-email-options.php:110
|
1495 |
+
msgid "Booster: Email Forwarding Options"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: includes/class-wcj-email-options.php:111
|
1499 |
+
msgid "Email Forwarding Options"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: includes/class-wcj-email-options.php:113
|
1503 |
+
msgid ""
|
1504 |
+
"This section lets you add another email recipient(s) to all WooCommerce "
|
1505 |
+
"emails. Leave blank to disable."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: includes/class-wcj-email-options.php:117
|
1509 |
+
msgid "Cc Email"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: includes/class-wcj-email-options.php:118
|
1513 |
+
msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: includes/class-wcj-email-options.php:124
|
1517 |
+
msgid "Bcc Email"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: includes/class-wcj-email-options.php:125
|
1521 |
+
msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/class-wcj-email-options.php:131
|
1525 |
+
msgid "Orders Emails: Enable for Statuses"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: includes/class-wcj-email-options.php:133
|
1529 |
+
msgid ""
|
1530 |
+
"If you want to forward emails for certain orders only, set order statuses "
|
1531 |
+
"here. Leave blank to send for all orders statuses."
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: includes/class-wcj-emails-verification.php:25
|
1535 |
+
msgid "Email Verification"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: includes/class-wcj-emails-verification.php:26
|
1539 |
+
msgid "Add WooCommerce email verification."
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: includes/class-wcj-emails-verification.php:70
|
1543 |
+
msgid "Verified"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: includes/class-wcj-emails-verification.php:83
|
1547 |
+
msgid "Email verified"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: includes/class-wcj-emails-verification.php:84
|
1551 |
+
msgid "Email not verified"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: includes/class-wcj-emails-verification.php:122
|
1555 |
+
#: includes/settings/wcj-settings-emails-verification.php:78
|
1556 |
+
msgid ""
|
1557 |
+
"Your account has to be activated before you can login. You can resend email "
|
1558 |
+
"with verification link by clicking <a href=\"%resend_verification_url%"
|
1559 |
+
"\">here</a>."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: includes/class-wcj-emails-verification.php:142
|
1563 |
+
#: includes/class-wcj-emails-verification.php:144
|
1564 |
+
#: includes/settings/wcj-settings-emails-verification.php:133
|
1565 |
+
msgid ""
|
1566 |
+
"Please click the following link to verify your email:<br><br><a href="
|
1567 |
+
"\"%verification_url%\">%verification_url%</a>"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: includes/class-wcj-emails-verification.php:147
|
1571 |
+
#: includes/class-wcj-emails-verification.php:149
|
1572 |
+
#: includes/settings/wcj-settings-emails-verification.php:123
|
1573 |
+
msgid "Please activate your account"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: includes/class-wcj-emails-verification.php:154
|
1577 |
+
#: includes/settings/wcj-settings-emails-verification.php:155
|
1578 |
+
msgid "Activate your account"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: includes/class-wcj-emails-verification.php:171
|
1582 |
+
#: includes/settings/wcj-settings-emails-verification.php:70
|
1583 |
+
msgid "<strong>Success:</strong> Your account has been activated!"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: includes/class-wcj-emails-verification.php:188
|
1587 |
+
#: includes/settings/wcj-settings-emails-verification.php:86
|
1588 |
+
msgid ""
|
1589 |
+
"<strong>Error:</strong> Activation failed, please contact our administrator. "
|
1590 |
+
"You can resend email with verification link by clicking <a href="
|
1591 |
+
"\"%resend_verification_url%\">here</a>."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: includes/class-wcj-emails-verification.php:195
|
1595 |
+
#: includes/settings/wcj-settings-emails-verification.php:93
|
1596 |
+
msgid ""
|
1597 |
+
"<strong>Error:</strong> Activation failed, please contact our administrator."
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/class-wcj-emails-verification.php:200
|
1601 |
+
#: includes/settings/wcj-settings-emails-verification.php:100
|
1602 |
+
msgid ""
|
1603 |
+
"Thank you for your registration. Your account has to be activated before you "
|
1604 |
+
"can login. Please check your email."
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: includes/class-wcj-emails-verification.php:204
|
1608 |
+
#: includes/settings/wcj-settings-emails-verification.php:107
|
1609 |
+
msgid ""
|
1610 |
+
"<strong>Success:</strong> Your activation email has been resent. Please "
|
1611 |
+
"check your email."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: includes/class-wcj-emails.php:23
|
1615 |
+
#: includes/settings/wcj-settings-emails.php:14
|
1616 |
+
msgid "Custom Emails"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: includes/class-wcj-emails.php:24
|
1620 |
+
msgid "Add custom emails to WooCommerce."
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/class-wcj-emails.php:57
|
1624 |
+
#, php-format
|
1625 |
+
msgid "Booster: Emails: %s manually sent."
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: includes/class-wcj-emails.php:58 includes/class-wcj-emails.php:76
|
1629 |
+
#: includes/emails/class-wc-email-wcj-custom.php:31
|
1630 |
+
#: includes/settings/wcj-settings-emails.php:37
|
1631 |
+
#: includes/settings/wcj-settings-pdf-invoicing-page.php:36
|
1632 |
+
#: includes/settings/wcj-settings-shipping.php:63
|
1633 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:37
|
1634 |
+
msgid "Custom"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/class-wcj-emails.php:75
|
1638 |
+
#, php-format
|
1639 |
+
msgid "Booster: Send Email: %s"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: includes/class-wcj-empty-cart-button.php:25
|
1643 |
+
#: includes/shortcodes/class-wcj-shortcodes-general.php:517
|
1644 |
+
msgid "Empty Cart Button"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: includes/class-wcj-empty-cart-button.php:26
|
1648 |
+
msgid ""
|
1649 |
+
"Add (and customize) \"Empty Cart\" button to the cart and checkout pages."
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: includes/class-wcj-eu-vat-number.php:25
|
1653 |
+
#: includes/class-wcj-eu-vat-number.php:303
|
1654 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:22
|
1655 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:29
|
1656 |
+
msgid "EU VAT Number"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: includes/class-wcj-eu-vat-number.php:26
|
1660 |
+
msgid ""
|
1661 |
+
"Collect and validate EU VAT numbers on the checkout. Automatically disable "
|
1662 |
+
"VAT for valid numbers. Add all EU countries VAT standard rates to "
|
1663 |
+
"WooCommerce."
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: includes/class-wcj-eu-vat-number.php:32
|
1667 |
+
msgid "EU Countries VAT Rates"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: includes/class-wcj-eu-vat-number.php:33
|
1671 |
+
msgid "Add all EU countries VAT standard rates to WooCommerce."
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: includes/class-wcj-eu-vat-number.php:217
|
1675 |
+
msgid "Customer IP"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: includes/class-wcj-eu-vat-number.php:221 includes/class-wcj-orders.php:153
|
1679 |
+
#: includes/settings/wcj-settings-orders.php:126
|
1680 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:27
|
1681 |
+
msgid "Country by IP"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: includes/class-wcj-eu-vat-number.php:225
|
1685 |
+
msgid "Customer EU VAT Number"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: includes/class-wcj-eu-vat-number.php:235
|
1689 |
+
msgid "Validate VAT and remove taxes"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: includes/class-wcj-eu-vat-number.php:377
|
1693 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:189
|
1694 |
+
msgid "Validating VAT. Please wait..."
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: includes/class-wcj-eu-vat-number.php:378
|
1698 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:196
|
1699 |
+
msgid "VAT is valid."
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: includes/class-wcj-eu-vat-number.php:379
|
1703 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:203
|
1704 |
+
msgid "VAT is not valid."
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: includes/class-wcj-eu-vat-number.php:380
|
1708 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:211
|
1709 |
+
msgid "Validation failed. Please try again."
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: includes/class-wcj-eu-vat-number.php:505
|
1713 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:83
|
1714 |
+
msgid "<strong>EU VAT Number</strong> is not valid."
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/class-wcj-export-import.php:27
|
1718 |
+
msgid "WooCommerce export tools."
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: includes/class-wcj-export-import.php:33
|
1722 |
+
msgid "Export Customers"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: includes/class-wcj-export-import.php:34
|
1726 |
+
msgid "Export Customers."
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: includes/class-wcj-export-import.php:37
|
1730 |
+
msgid "Export Customers from Orders"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: includes/class-wcj-export-import.php:38
|
1734 |
+
msgid "Export Customers (extracted from orders)."
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: includes/class-wcj-export-import.php:39
|
1738 |
+
msgid "Customers are identified by billing email."
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: includes/class-wcj-export-import.php:42
|
1742 |
+
msgid "Export Orders"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: includes/class-wcj-export-import.php:43
|
1746 |
+
msgid "Export Orders."
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: includes/class-wcj-export-import.php:46
|
1750 |
+
msgid "Export Orders Items"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: includes/class-wcj-export-import.php:47
|
1754 |
+
msgid "Export Orders Items."
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: includes/class-wcj-export-import.php:50
|
1758 |
+
msgid "Export Products"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: includes/class-wcj-export-import.php:51
|
1762 |
+
msgid "Export Products."
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#: includes/class-wcj-export-import.php:192
|
1766 |
+
#: includes/class-wcj-export-import.php:198
|
1767 |
+
msgid "Filter by Billing Country"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: includes/class-wcj-export-import.php:193
|
1771 |
+
msgid "Filter by Product Title"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: includes/class-wcj-export-import.php:212
|
1775 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:189
|
1776 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:137
|
1777 |
+
#: includes/settings/wcj-settings-orders.php:45
|
1778 |
+
msgid "Filter"
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/class-wcj-export-import.php:232
|
1782 |
+
#: includes/class-wcj-track-users.php:36
|
1783 |
+
msgid "All time"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: includes/class-wcj-export-import.php:246
|
1787 |
+
msgid "Custom:"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: includes/class-wcj-export-import.php:251
|
1791 |
+
msgid "Go"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: includes/class-wcj-export-import.php:271
|
1795 |
+
msgid "Download CSV"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: includes/class-wcj-export-import.php:274
|
1799 |
+
msgid "Download XML"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: includes/class-wcj-export-import.php:276
|
1803 |
+
msgid "Filter by All Fields"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: includes/class-wcj-free-price.php:26
|
1807 |
+
msgid "Free Price Labels"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: includes/class-wcj-free-price.php:27
|
1811 |
+
msgid "Set free price labels."
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: includes/class-wcj-free-price.php:131 includes/class-wcj-free-price.php:144
|
1815 |
+
#: includes/class-wcj-free-price.php:154 includes/class-wcj-free-price.php:164
|
1816 |
+
#: includes/settings/wcj-settings-free-price.php:27
|
1817 |
+
msgid "Free!"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: includes/class-wcj-general.php:25
|
1821 |
+
msgid "Booster for WooCommerce general front-end tools."
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: includes/class-wcj-general.php:31
|
1825 |
+
msgid "Add/Manage Custom Roles"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: includes/class-wcj-general.php:32
|
1829 |
+
msgid "Custom Roles"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: includes/class-wcj-general.php:33
|
1833 |
+
msgid "Manage Custom Roles."
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: includes/class-wcj-general.php:46
|
1837 |
+
#, php-format
|
1838 |
+
msgid "Current PHP memory limit: %s."
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: includes/class-wcj-general.php:52
|
1842 |
+
#, php-format
|
1843 |
+
msgid "Current PHP time limit: %s seconds."
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: includes/class-wcj-general.php:123
|
1847 |
+
msgid "Booster User Role"
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: includes/class-wcj-general.php:184
|
1851 |
+
msgid "All fields are required!"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: includes/class-wcj-general.php:188
|
1855 |
+
msgid "Role ID must not be numbers only!"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: includes/class-wcj-general.php:197
|
1859 |
+
msgid "Role successfully added!"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: includes/class-wcj-general.php:199
|
1863 |
+
msgid "Role already exists!"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: includes/class-wcj-general.php:212
|
1867 |
+
#, php-format
|
1868 |
+
msgid "Role %s successfully deleted!"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: includes/class-wcj-general.php:218 includes/class-wcj-general.php:233
|
1872 |
+
#: includes/class-wcj-sku.php:536
|
1873 |
+
#: includes/reports/wcj-class-reports-sales.php:196
|
1874 |
+
#: includes/settings/wcj-settings-cross-sells.php:43
|
1875 |
+
#: includes/settings/wcj-settings-order-numbers.php:150
|
1876 |
+
#: includes/settings/wcj-settings-product-by-user.php:161
|
1877 |
+
#: includes/settings/wcj-settings-products-xml.php:221
|
1878 |
+
#: includes/settings/wcj-settings-related-products.php:30
|
1879 |
+
#: includes/settings/wcj-settings-upsells.php:43
|
1880 |
+
msgid "ID"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/class-wcj-general.php:218 includes/class-wcj-general.php:234
|
1884 |
+
#: includes/class-wcj-offer-price.php:167
|
1885 |
+
#: includes/export/class-wcj-fields-helper.php:282
|
1886 |
+
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
|
1887 |
+
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:104
|
1888 |
+
msgid "Name"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/class-wcj-general.php:218 includes/class-wcj-general.php:235
|
1892 |
+
msgid "Capabilities"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: includes/class-wcj-general.php:218
|
1896 |
+
#: includes/class-wcj-product-by-user.php:197
|
1897 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:107
|
1898 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:145
|
1899 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:221
|
1900 |
+
msgid "Actions"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: includes/class-wcj-general.php:225
|
1904 |
+
#: includes/class-wcj-payment-gateways.php:117
|
1905 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:367
|
1906 |
+
#: includes/class-wcj-product-by-user.php:206
|
1907 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:140
|
1908 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:315
|
1909 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
|
1910 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:161
|
1911 |
+
msgid "Delete"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: includes/class-wcj-general.php:229
|
1915 |
+
msgid "Existing Roles"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: includes/class-wcj-general.php:236
|
1919 |
+
msgid "Add New Role"
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: includes/class-wcj-general.php:239
|
1923 |
+
#: includes/class-wcj-shipping-by-products.php:206
|
1924 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:134
|
1925 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:22
|
1926 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:29
|
1927 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:55
|
1928 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:217
|
1929 |
+
#: includes/settings/wcj-settings-email-options.php:20
|
1930 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:181
|
1931 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:217
|
1932 |
+
#: includes/settings/wcj-settings-export.php:27
|
1933 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:29
|
1934 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:37
|
1935 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:70
|
1936 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:97
|
1937 |
+
#: includes/settings/wcj-settings-order-min-amount.php:53
|
1938 |
+
#: includes/settings/wcj-settings-orders.php:132
|
1939 |
+
#: includes/settings/wcj-settings-orders.php:159
|
1940 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:132
|
1941 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:190
|
1942 |
+
#: includes/settings/wcj-settings-product-by-condition.php:107
|
1943 |
+
#: includes/settings/wcj-settings-product-by-user.php:114
|
1944 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:123
|
1945 |
+
#: includes/settings/wcj-settings-product-tabs.php:247
|
1946 |
+
#: includes/settings/wcj-settings-purchase-data.php:145
|
1947 |
+
#: includes/settings/wcj-settings-purchase-data.php:154
|
1948 |
+
#: includes/settings/wcj-settings-purchase-data.php:173
|
1949 |
+
#: includes/settings/wcj-settings-purchase-data.php:180
|
1950 |
+
#: includes/settings/wcj-settings-sku.php:240
|
1951 |
+
#: includes/settings/wcj-settings-sku.php:267
|
1952 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
|
1953 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:236
|
1954 |
+
msgid "Add"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: includes/class-wcj-global-discount.php:28
|
1958 |
+
msgid "Add global discount to all products."
|
1959 |
+
msgstr ""
|
1960 |
+
|
1961 |
+
#: includes/class-wcj-left-to-free-shipping.php:25
|
1962 |
+
msgid "Left to Free Shipping"
|
1963 |
+
msgstr ""
|
1964 |
+
|
1965 |
+
#: includes/class-wcj-left-to-free-shipping.php:26
|
1966 |
+
msgid "Display \"left to free shipping\" info."
|
1967 |
+
msgstr ""
|
1968 |
+
|
1969 |
+
#: includes/class-wcj-left-to-free-shipping.php:62
|
1970 |
+
#: includes/class-wcj-left-to-free-shipping.php:72
|
1971 |
+
#: includes/class-wcj-left-to-free-shipping.php:82
|
1972 |
+
#: includes/functions/wcj-functions-shipping.php:285
|
1973 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:37
|
1974 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:68
|
1975 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:102
|
1976 |
+
#: includes/widgets/class-wcj-widget-left-to-free-shipping.php:61
|
1977 |
+
#, php-format
|
1978 |
+
msgid "%left_to_free% left to free shipping"
|
1979 |
+
msgstr ""
|
1980 |
+
|
1981 |
+
#: includes/class-wcj-max-products-per-user.php:30
|
1982 |
+
msgid "Maximum Products per User"
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: includes/class-wcj-max-products-per-user.php:31
|
1986 |
+
msgid "Limit number of items your (logged) customers can buy."
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: includes/class-wcj-max-products-per-user.php:32
|
1990 |
+
msgid ""
|
1991 |
+
"Please note, that there is no maximum quantity set for not-logged (i.e. "
|
1992 |
+
"guest) users. Product quantities are updated, when order status is changed "
|
1993 |
+
"to status listed in module's \"Order Status\" option."
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: includes/class-wcj-max-products-per-user.php:113
|
1997 |
+
#: includes/class-wcj-max-products-per-user.php:332
|
1998 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:74
|
1999 |
+
msgid ""
|
2000 |
+
"You can only buy maximum %max_qty% pcs. of %product_title% (you already "
|
2001 |
+
"bought %qty_already_bought% pcs.)."
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: includes/class-wcj-max-products-per-user.php:131
|
2005 |
+
msgid "Data re-calculated."
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: includes/class-wcj-max-products-per-user.php:132
|
2009 |
+
#, php-format
|
2010 |
+
msgid "%s order(s) processed."
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: includes/class-wcj-max-products-per-user.php:184
|
2014 |
+
msgid "Maximum Products per User: Sales Data"
|
2015 |
+
msgstr ""
|
2016 |
+
|
2017 |
+
#: includes/class-wcj-max-products-per-user.php:201
|
2018 |
+
msgid "User ID"
|
2019 |
+
msgstr ""
|
2020 |
+
|
2021 |
+
#: includes/class-wcj-max-products-per-user.php:201
|
2022 |
+
msgid "User Name"
|
2023 |
+
msgstr ""
|
2024 |
+
|
2025 |
+
#: includes/class-wcj-max-products-per-user.php:201
|
2026 |
+
msgid "Qty Bought"
|
2027 |
+
msgstr ""
|
2028 |
+
|
2029 |
+
#: includes/class-wcj-max-products-per-user.php:204
|
2030 |
+
#: includes/functions/wcj-functions-users.php:159
|
2031 |
+
#: includes/functions/wcj-functions-users.php:182
|
2032 |
+
msgid "Guest"
|
2033 |
+
msgstr ""
|
2034 |
+
|
2035 |
+
#: includes/class-wcj-max-products-per-user.php:213
|
2036 |
+
msgid "No data yet."
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: includes/class-wcj-mini-cart.php:24
|
2040 |
+
msgid "Mini Cart Custom Info"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: includes/class-wcj-mini-cart.php:25
|
2044 |
+
msgid "Add custom info to the mini cart widget."
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: includes/class-wcj-modules-by-user-roles.php:26
|
2048 |
+
msgid "Enable/disable Booster for WooCommerce modules by user roles."
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: includes/class-wcj-more-button-labels.php:24
|
2052 |
+
msgid "More Button Labels"
|
2053 |
+
msgstr ""
|
2054 |
+
|
2055 |
+
#: includes/class-wcj-more-button-labels.php:25
|
2056 |
+
msgid "Set \"Place order\" button label."
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: includes/class-wcj-multicurrency-product-base-price.php:25
|
2060 |
+
#: includes/settings/wcj-settings-product-addons.php:243
|
2061 |
+
msgid "Multicurrency Product Base Price"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: includes/class-wcj-multicurrency-product-base-price.php:26
|
2065 |
+
msgid "Enter prices for products in different currencies."
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: includes/class-wcj-multicurrency.php:30
|
2069 |
+
#: includes/settings/wcj-settings-product-addons.php:244
|
2070 |
+
msgid "Multicurrency (Currency Switcher)"
|
2071 |
+
msgstr ""
|
2072 |
+
|
2073 |
+
#: includes/class-wcj-multicurrency.php:31
|
2074 |
+
msgid "Add multiple currencies (currency switcher) to WooCommerce."
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: includes/class-wcj-multicurrency.php:33
|
2078 |
+
#, php-format
|
2079 |
+
msgid ""
|
2080 |
+
"After setting currencies in the Currencies Options section below, you can "
|
2081 |
+
"add switcher to the frontend with: %s"
|
2082 |
+
msgstr ""
|
2083 |
+
|
2084 |
+
#: includes/class-wcj-multicurrency.php:35
|
2085 |
+
#, php-format
|
2086 |
+
msgid "<strong>Widget:</strong> \"%s\""
|
2087 |
+
msgstr ""
|
2088 |
+
|
2089 |
+
#: includes/class-wcj-multicurrency.php:36
|
2090 |
+
#: includes/widgets/class-wcj-widget-multicurrency.php:27
|
2091 |
+
msgid "Booster - Multicurrency Switcher"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: includes/class-wcj-multicurrency.php:38
|
2095 |
+
#, php-format
|
2096 |
+
msgid "<strong>Shortcodes:</strong> %s"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: includes/class-wcj-multicurrency.php:41
|
2100 |
+
#, php-format
|
2101 |
+
msgid "<strong>PHP code:</strong> by using %s function, e.g.: %s"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: includes/class-wcj-my-account.php:27
|
2105 |
+
msgid "My Account"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: includes/class-wcj-my-account.php:28
|
2109 |
+
msgid "WooCommerce \"My Account\" page customization."
|
2110 |
+
msgstr ""
|
2111 |
+
|
2112 |
+
#: includes/class-wcj-my-account.php:35 includes/class-wcj-my-account.php:44
|
2113 |
+
msgid "Downloads"
|
2114 |
+
msgstr ""
|
2115 |
+
|
2116 |
+
#: includes/class-wcj-my-account.php:36 includes/class-wcj-my-account.php:46
|
2117 |
+
msgid "Addresses"
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: includes/class-wcj-my-account.php:37 includes/class-wcj-my-account.php:47
|
2121 |
+
#: includes/settings/wcj-settings-orders.php:112
|
2122 |
+
msgid "Payment methods"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: includes/class-wcj-my-account.php:38 includes/class-wcj-my-account.php:45
|
2126 |
+
msgid "Account details"
|
2127 |
+
msgstr ""
|
2128 |
+
|
2129 |
+
#: includes/class-wcj-my-account.php:39 includes/class-wcj-my-account.php:49
|
2130 |
+
msgid "Logout"
|
2131 |
+
msgstr ""
|
2132 |
+
|
2133 |
+
#: includes/class-wcj-my-account.php:43
|
2134 |
+
#: includes/settings/wcj-settings-my-account.php:302
|
2135 |
+
msgid "View order"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: includes/class-wcj-my-account.php:45
|
2139 |
+
msgid "Edit account"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: includes/class-wcj-my-account.php:48
|
2143 |
+
msgid "Lost password"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: includes/class-wcj-my-account.php:227
|
2147 |
+
#, php-format
|
2148 |
+
msgid "Hello %1$s (not %1$s? <a href=\"%2$s\">Log out</a>)"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
#: includes/class-wcj-my-account.php:237
|
2152 |
+
#, php-format
|
2153 |
+
msgid ""
|
2154 |
+
"From your account dashboard you can view your <a href=\"%1$s\">recent "
|
2155 |
+
"orders</a>, manage your <a href=\"%2$s\">shipping and billing addresses</a>, "
|
2156 |
+
"and <a href=\"%3$s\">edit your password and account details</a>."
|
2157 |
+
msgstr ""
|
2158 |
+
|
2159 |
+
#: includes/class-wcj-my-account.php:343
|
2160 |
+
msgid "User role"
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#: includes/class-wcj-my-account.php:423
|
2164 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:279
|
2165 |
+
#: includes/class-wcj-product-by-user.php:206
|
2166 |
+
#: includes/class-wcj-purchase-data.php:94
|
2167 |
+
#: includes/class-wcj-track-users.php:334
|
2168 |
+
#: includes/classes/class-wcj-module.php:690
|
2169 |
+
#: includes/functions/wcj-functions-general.php:189
|
2170 |
+
#: includes/functions/wcj-functions-html.php:117
|
2171 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:351
|
2172 |
+
#: includes/settings/wcj-settings-empty-cart.php:85
|
2173 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:364
|
2174 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:161
|
2175 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:269
|
2176 |
+
msgid "Are you sure?"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: includes/class-wcj-offer-price.php:36
|
2180 |
+
msgid "Offer Your Price"
|
2181 |
+
msgstr ""
|
2182 |
+
|
2183 |
+
#: includes/class-wcj-offer-price.php:37
|
2184 |
+
msgid "Let your customers to suggest their price for products."
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: includes/class-wcj-offer-price.php:148
|
2188 |
+
msgid "Booster: Offer Price History"
|
2189 |
+
msgstr ""
|
2190 |
+
|
2191 |
+
#: includes/class-wcj-offer-price.php:164
|
2192 |
+
#: includes/functions/wcj-functions-reports.php:21
|
2193 |
+
#: includes/settings/wcj-settings-cross-sells.php:44
|
2194 |
+
#: includes/settings/wcj-settings-order-numbers.php:151
|
2195 |
+
#: includes/settings/wcj-settings-products-xml.php:220
|
2196 |
+
#: includes/settings/wcj-settings-related-products.php:23
|
2197 |
+
#: includes/settings/wcj-settings-upsells.php:44
|
2198 |
+
msgid "Date"
|
2199 |
+
msgstr ""
|
2200 |
+
|
2201 |
+
#: includes/class-wcj-offer-price.php:165
|
2202 |
+
#: includes/export/class-wcj-fields-helper.php:288
|
2203 |
+
#: includes/reports/wcj-class-reports-stock.php:271
|
2204 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
|
2205 |
+
#: includes/settings/wcj-settings-cross-sells.php:47
|
2206 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:302
|
2207 |
+
#: includes/settings/wcj-settings-related-products.php:33
|
2208 |
+
#: includes/settings/wcj-settings-upsells.php:47
|
2209 |
+
msgid "Price"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: includes/class-wcj-offer-price.php:166
|
2213 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:60
|
2214 |
+
#: includes/settings/wcj-settings-currency-per-product.php:41
|
2215 |
+
#: includes/settings/wcj-settings-currency-per-product.php:48
|
2216 |
+
#: includes/settings/wcj-settings-order-quantities.php:231
|
2217 |
+
#: includes/settings/wcj-settings-order-quantities.php:258
|
2218 |
+
#: includes/settings/wcj-settings-product-by-time.php:69
|
2219 |
+
msgid "Message"
|
2220 |
+
msgstr ""
|
2221 |
+
|
2222 |
+
#: includes/class-wcj-offer-price.php:168
|
2223 |
+
#: includes/export/class-wcj-fields-helper.php:75
|
2224 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:45
|
2225 |
+
#: includes/reports/wcj-class-reports-customers.php:93
|
2226 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:147
|
2227 |
+
msgid "Email"
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
+
#: includes/class-wcj-offer-price.php:169
|
2231 |
+
#: includes/export/class-wcj-fields-helper.php:74
|
2232 |
+
msgid "Customer ID"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: includes/class-wcj-offer-price.php:170
|
2236 |
+
msgid "User IP"
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: includes/class-wcj-offer-price.php:171
|
2240 |
+
msgid "User Agent"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: includes/class-wcj-offer-price.php:172
|
2244 |
+
msgid "Sent to"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: includes/class-wcj-offer-price.php:184
|
2248 |
+
msgid "No price offers yet."
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: includes/class-wcj-offer-price.php:240
|
2252 |
+
#, php-format
|
2253 |
+
msgid "Average offer: %s (from %s offer(s))"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: includes/class-wcj-offer-price.php:247
|
2257 |
+
msgid "Delete history"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: includes/class-wcj-offer-price.php:248
|
2261 |
+
msgid "Update product after checking the box."
|
2262 |
+
msgstr ""
|
2263 |
+
|
2264 |
+
#: includes/class-wcj-offer-price.php:322
|
2265 |
+
#: includes/settings/wcj-settings-offer-price.php:163
|
2266 |
+
#, php-format
|
2267 |
+
msgid "Your price (%s)"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: includes/class-wcj-offer-price.php:328
|
2271 |
+
#: includes/settings/wcj-settings-offer-price.php:234
|
2272 |
+
#, php-format
|
2273 |
+
msgid "Suggest your price for %s"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: includes/class-wcj-offer-price.php:383
|
2277 |
+
#: includes/settings/wcj-settings-offer-price.php:202
|
2278 |
+
msgid "Your email"
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: includes/class-wcj-offer-price.php:387
|
2282 |
+
#: includes/settings/wcj-settings-offer-price.php:210
|
2283 |
+
msgid "Your name"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: includes/class-wcj-offer-price.php:391
|
2287 |
+
#: includes/settings/wcj-settings-offer-price.php:218
|
2288 |
+
msgid "Your message"
|
2289 |
+
msgstr ""
|
2290 |
+
|
2291 |
+
#: includes/class-wcj-offer-price.php:395
|
2292 |
+
#: includes/settings/wcj-settings-offer-price.php:241
|
2293 |
+
msgid "Send"
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: includes/class-wcj-offer-price.php:397
|
2297 |
+
#: includes/settings/wcj-settings-offer-price.php:226
|
2298 |
+
msgid "Send a copy to your email"
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: includes/class-wcj-offer-price.php:464
|
2302 |
+
#: includes/settings/wcj-settings-offer-price.php:68
|
2303 |
+
msgid "Make an offer"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: includes/class-wcj-offer-price.php:522
|
2307 |
+
#: includes/settings/wcj-settings-offer-price.php:340
|
2308 |
+
#, php-format
|
2309 |
+
msgid "Product: %s"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: includes/class-wcj-offer-price.php:523
|
2313 |
+
#: includes/settings/wcj-settings-offer-price.php:341
|
2314 |
+
#, php-format
|
2315 |
+
msgid "Offered price: %s"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: includes/class-wcj-offer-price.php:524
|
2319 |
+
#: includes/settings/wcj-settings-offer-price.php:342
|
2320 |
+
#, php-format
|
2321 |
+
msgid "From: %s %s"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
+
#: includes/class-wcj-offer-price.php:525
|
2325 |
+
#: includes/settings/wcj-settings-offer-price.php:343
|
2326 |
+
#, php-format
|
2327 |
+
msgid "Message: %s"
|
2328 |
+
msgstr ""
|
2329 |
+
|
2330 |
+
#: includes/class-wcj-offer-price.php:538
|
2331 |
+
#: includes/settings/wcj-settings-offer-price.php:331
|
2332 |
+
msgid "Price Offer"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: includes/class-wcj-offer-price.php:548
|
2336 |
+
#: includes/settings/wcj-settings-offer-price.php:262
|
2337 |
+
msgid "Your price offer has been sent."
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: includes/class-wcj-old-slugs.php:23
|
2341 |
+
msgid "Old Slugs"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: includes/class-wcj-old-slugs.php:24
|
2345 |
+
msgid "Remove old products slugs."
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: includes/class-wcj-old-slugs.php:30
|
2349 |
+
msgid "Remove Old Slugs"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: includes/class-wcj-old-slugs.php:31
|
2353 |
+
msgid "Tool removes old slugs/permalinks from database."
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: includes/class-wcj-old-slugs.php:48
|
2357 |
+
msgid "Old slug"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: includes/class-wcj-old-slugs.php:49
|
2361 |
+
msgid "Post title"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: includes/class-wcj-old-slugs.php:50
|
2365 |
+
msgid "Post id"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: includes/class-wcj-old-slugs.php:51
|
2369 |
+
msgid "Post type"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: includes/class-wcj-old-slugs.php:52
|
2373 |
+
msgid "Current slug"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: includes/class-wcj-old-slugs.php:85
|
2377 |
+
#, php-format
|
2378 |
+
msgid ""
|
2379 |
+
"Removing old slugs from database finished! <strong>%d</strong> old slug(s) "
|
2380 |
+
"deleted."
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: includes/class-wcj-old-slugs.php:87
|
2384 |
+
msgid "Please <a href=\"\">refresh</a> the page."
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: includes/class-wcj-old-slugs.php:107
|
2388 |
+
msgid "Old products slugs found:"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: includes/class-wcj-old-slugs.php:110
|
2392 |
+
msgid "Remove all old product slugs"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: includes/class-wcj-old-slugs.php:113
|
2396 |
+
msgid "Old non-products slugs found:"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/class-wcj-old-slugs.php:116
|
2400 |
+
msgid "Remove all old non-product slugs"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: includes/class-wcj-old-slugs.php:130
|
2404 |
+
msgid "No old slugs found."
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: includes/class-wcj-order-custom-statuses.php:26
|
2408 |
+
msgid "Order Custom Statuses"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: includes/class-wcj-order-custom-statuses.php:27
|
2412 |
+
msgid "Custom statuses for WooCommerce orders."
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: includes/class-wcj-order-custom-statuses.php:33
|
2416 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:14
|
2417 |
+
msgid "Custom Statuses"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: includes/class-wcj-order-custom-statuses.php:34
|
2421 |
+
msgid ""
|
2422 |
+
"Tool lets you add, edit or delete any custom status for WooCommerce orders."
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: includes/class-wcj-order-custom-statuses.php:158
|
2426 |
+
#, php-format
|
2427 |
+
msgid "Change order status to %s"
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: includes/class-wcj-order-custom-statuses.php:168
|
2431 |
+
msgid "Change status: "
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: includes/class-wcj-order-custom-statuses.php:208
|
2435 |
+
msgid "Processing"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: includes/class-wcj-order-custom-statuses.php:218
|
2439 |
+
msgid "Complete"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: includes/class-wcj-order-custom-statuses.php:323
|
2443 |
+
#, php-format
|
2444 |
+
msgid " <span class=\"count\">(%s)</span>"
|
2445 |
+
msgid_plural " <span class=\"count\">(%s)</span>"
|
2446 |
+
msgstr[0] ""
|
2447 |
+
msgstr[1] ""
|
2448 |
+
|
2449 |
+
#: includes/class-wcj-order-custom-statuses.php:397
|
2450 |
+
#: includes/class-wcj-order-custom-statuses.php:399
|
2451 |
+
msgid "Mark"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: includes/class-wcj-order-min-amount.php:26
|
2455 |
+
#: includes/settings/wcj-settings-order-min-amount.php:14
|
2456 |
+
msgid "Order Minimum Amount"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: includes/class-wcj-order-min-amount.php:27
|
2460 |
+
msgid "Minimum order amount (optionally by user role)."
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: includes/class-wcj-order-numbers.php:25
|
2464 |
+
#: includes/settings/wcj-settings-order-numbers.php:15
|
2465 |
+
msgid "Order Numbers"
|
2466 |
+
msgstr ""
|
2467 |
+
|
2468 |
+
#: includes/class-wcj-order-numbers.php:26
|
2469 |
+
msgid ""
|
2470 |
+
"Sequential order numbering, custom order number prefix, suffix and number "
|
2471 |
+
"width."
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: includes/class-wcj-order-numbers.php:32
|
2475 |
+
msgid "Orders Renumerate"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: includes/class-wcj-order-numbers.php:33
|
2479 |
+
msgid "Tool renumerates all orders."
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: includes/class-wcj-order-numbers.php:244
|
2483 |
+
msgid "Orders successfully renumerated!"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: includes/class-wcj-order-numbers.php:247
|
2487 |
+
#, php-format
|
2488 |
+
msgid "Sequential number generation is enabled. Next order number will be %s."
|
2489 |
+
msgstr ""
|
2490 |
+
|
2491 |
+
#: includes/class-wcj-order-numbers.php:256
|
2492 |
+
#, php-format
|
2493 |
+
msgid ""
|
2494 |
+
"Press the button below to renumerate all existing orders starting from order "
|
2495 |
+
"counter settings in <a href=\"%s\">Order Numbers</a> module."
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: includes/class-wcj-order-numbers.php:263
|
2499 |
+
msgid "Renumerate orders"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: includes/class-wcj-order-quantities.php:30
|
2503 |
+
msgid "Order Quantities"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: includes/class-wcj-order-quantities.php:31
|
2507 |
+
msgid ""
|
2508 |
+
"Manage product quantities in WooCommerce order: set min, max, step; enable "
|
2509 |
+
"decimal quantities etc."
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: includes/class-wcj-order-quantities.php:260
|
2513 |
+
#: includes/settings/wcj-settings-order-quantities.php:260
|
2514 |
+
msgid ""
|
2515 |
+
"Only one item can be added to the cart. Clear the cart or finish the order, "
|
2516 |
+
"before adding another item to the cart."
|
2517 |
+
msgstr ""
|
2518 |
+
|
2519 |
+
#: includes/class-wcj-order-quantities.php:429
|
2520 |
+
#: includes/settings/wcj-settings-order-quantities.php:160
|
2521 |
+
msgid ""
|
2522 |
+
"Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
|
2523 |
+
"order quantity is %cart_total_quantity%."
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: includes/class-wcj-order-quantities.php:437
|
2527 |
+
#: includes/settings/wcj-settings-order-quantities.php:102
|
2528 |
+
msgid ""
|
2529 |
+
"Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
|
2530 |
+
"order quantity is %cart_total_quantity%."
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: includes/class-wcj-order-quantities.php:447
|
2534 |
+
#: includes/settings/wcj-settings-order-quantities.php:186
|
2535 |
+
msgid ""
|
2536 |
+
"Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
|
2537 |
+
"Your current item quantity is %item_quantity%."
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: includes/class-wcj-order-quantities.php:457
|
2541 |
+
#: includes/settings/wcj-settings-order-quantities.php:128
|
2542 |
+
msgid ""
|
2543 |
+
"Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
|
2544 |
+
"Your current item quantity is %item_quantity%."
|
2545 |
+
msgstr ""
|
2546 |
+
|
2547 |
+
#: includes/class-wcj-order-quantities.php:467
|
2548 |
+
#: includes/settings/wcj-settings-order-quantities.php:234
|
2549 |
+
msgid ""
|
2550 |
+
"Required step for %product_title% is %required_step%. Your current item "
|
2551 |
+
"quantity is %item_quantity%."
|
2552 |
+
msgstr ""
|
2553 |
+
|
2554 |
+
#: includes/class-wcj-orders.php:27
|
2555 |
+
msgid ""
|
2556 |
+
"Orders auto-complete; admin order currency; admin order navigation; bulk "
|
2557 |
+
"regenerate download permissions for orders."
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: includes/class-wcj-orders.php:124
|
2561 |
+
msgid "Order Navigation"
|
2562 |
+
msgstr ""
|
2563 |
+
|
2564 |
+
#: includes/class-wcj-orders.php:140
|
2565 |
+
msgid "Previous order"
|
2566 |
+
msgstr ""
|
2567 |
+
|
2568 |
+
#: includes/class-wcj-orders.php:141
|
2569 |
+
msgid "Next order"
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: includes/class-wcj-orders.php:180
|
2573 |
+
msgid "No data."
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: includes/class-wcj-orders.php:225
|
2577 |
+
msgid "Regenerate download permissions"
|
2578 |
+
msgstr ""
|
2579 |
+
|
2580 |
+
#: includes/class-wcj-orders.php:239
|
2581 |
+
#, php-format
|
2582 |
+
msgid "Download permissions regenerated for %s order."
|
2583 |
+
msgid_plural "Download permissions regenerated for %s orders."
|
2584 |
+
msgstr[0] ""
|
2585 |
+
msgstr[1] ""
|
2586 |
+
|
2587 |
+
#: includes/class-wcj-payment-gateways-by-country.php:24
|
2588 |
+
msgid "Gateways by Country, State or Postcode"
|
2589 |
+
msgstr ""
|
2590 |
+
|
2591 |
+
#: includes/class-wcj-payment-gateways-by-country.php:25
|
2592 |
+
msgid ""
|
2593 |
+
"Set countries, states or postcodes to include/exclude for payment gateways "
|
2594 |
+
"to show up."
|
2595 |
+
msgstr ""
|
2596 |
+
|
2597 |
+
#: includes/class-wcj-payment-gateways-by-currency.php:25
|
2598 |
+
msgid "Gateways by Currency"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
#: includes/class-wcj-payment-gateways-by-currency.php:26
|
2602 |
+
msgid "Set allowed currencies for payment gateways to show up."
|
2603 |
+
msgstr ""
|
2604 |
+
|
2605 |
+
#: includes/class-wcj-payment-gateways-by-shipping.php:26
|
2606 |
+
msgid "Gateways by Shipping"
|
2607 |
+
msgstr ""
|
2608 |
+
|
2609 |
+
#: includes/class-wcj-payment-gateways-by-shipping.php:27
|
2610 |
+
msgid "Set \"enable for shipping methods\" for payment gateways."
|
2611 |
+
msgstr ""
|
2612 |
+
|
2613 |
+
#: includes/class-wcj-payment-gateways-by-user-role.php:25
|
2614 |
+
msgid "Gateways by User Role"
|
2615 |
+
msgstr ""
|
2616 |
+
|
2617 |
+
#: includes/class-wcj-payment-gateways-by-user-role.php:26
|
2618 |
+
msgid "Set user roles to include/exclude for payment gateways to show up."
|
2619 |
+
msgstr ""
|
2620 |
+
|
2621 |
+
#: includes/class-wcj-payment-gateways-currency.php:25
|
2622 |
+
msgid "Gateways Currency Converter"
|
2623 |
+
msgstr ""
|
2624 |
+
|
2625 |
+
#: includes/class-wcj-payment-gateways-currency.php:26
|
2626 |
+
msgid "Currency converter for payment gateways."
|
2627 |
+
msgstr ""
|
2628 |
+
|
2629 |
+
#: includes/class-wcj-payment-gateways-fees.php:25
|
2630 |
+
msgid "Gateways Fees and Discounts"
|
2631 |
+
msgstr ""
|
2632 |
+
|
2633 |
+
#: includes/class-wcj-payment-gateways-fees.php:26
|
2634 |
+
msgid "Enable extra fees or discounts for payment gateways."
|
2635 |
+
msgstr ""
|
2636 |
+
|
2637 |
+
#: includes/class-wcj-payment-gateways-icons.php:24
|
2638 |
+
msgid "Gateways Icons"
|
2639 |
+
msgstr ""
|
2640 |
+
|
2641 |
+
#: includes/class-wcj-payment-gateways-icons.php:25
|
2642 |
+
msgid ""
|
2643 |
+
"Change or completely remove icons (images) for any (default or custom) "
|
2644 |
+
"payment gateway."
|
2645 |
+
msgstr ""
|
2646 |
+
|
2647 |
+
#: includes/class-wcj-payment-gateways-min-max.php:25
|
2648 |
+
msgid "Gateways Min/Max Amounts"
|
2649 |
+
msgstr ""
|
2650 |
+
|
2651 |
+
#: includes/class-wcj-payment-gateways-min-max.php:26
|
2652 |
+
msgid "Add min/max amounts for payment gateways to show up."
|
2653 |
+
msgstr ""
|
2654 |
+
|
2655 |
+
#: includes/class-wcj-payment-gateways-min-max.php:51
|
2656 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:37
|
2657 |
+
msgid "Minimum amount for %gateway_title% is %min_amount%"
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: includes/class-wcj-payment-gateways-min-max.php:52
|
2661 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:45
|
2662 |
+
msgid "Maximum amount for %gateway_title% is %max_amount%"
|
2663 |
+
msgstr ""
|
2664 |
+
|
2665 |
+
#: includes/class-wcj-payment-gateways-per-category.php:27
|
2666 |
+
msgid ""
|
2667 |
+
"Show payment gateway only if there is selected product or product category "
|
2668 |
+
"in cart."
|
2669 |
+
msgstr ""
|
2670 |
+
|
2671 |
+
#: includes/class-wcj-payment-gateways.php:23
|
2672 |
+
msgid "Custom Gateways"
|
2673 |
+
msgstr ""
|
2674 |
+
|
2675 |
+
#: includes/class-wcj-payment-gateways.php:24
|
2676 |
+
msgid "Add multiple custom payment gateways to WooCommerce."
|
2677 |
+
msgstr ""
|
2678 |
+
|
2679 |
+
#: includes/class-wcj-payment-gateways.php:67
|
2680 |
+
#, php-format
|
2681 |
+
msgid "<strong>%s</strong> is a required field."
|
2682 |
+
msgstr ""
|
2683 |
+
|
2684 |
+
#: includes/class-wcj-payment-gateways.php:91
|
2685 |
+
#, php-format
|
2686 |
+
msgid "%s Fields"
|
2687 |
+
msgstr ""
|
2688 |
+
|
2689 |
+
#: includes/class-wcj-pdf-invoicing.php:23
|
2690 |
+
#: includes/settings/wcj-settings-wpml.php:15
|
2691 |
+
msgid "PDF Invoicing"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: includes/class-wcj-pdf-invoicing.php:25
|
2695 |
+
msgid "Invoices, Proforma Invoices, Credit Notes and Packing Slips."
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: includes/class-wcj-pdf-invoicing.php:31
|
2699 |
+
msgid "Invoices Renumerate"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: includes/class-wcj-pdf-invoicing.php:32
|
2703 |
+
msgid ""
|
2704 |
+
"Tool renumerates all invoices, proforma invoices, credit notes and packing "
|
2705 |
+
"slips."
|
2706 |
+
msgstr ""
|
2707 |
+
|
2708 |
+
#: includes/class-wcj-pdf-invoicing.php:35
|
2709 |
+
msgid "Invoices Report"
|
2710 |
+
msgstr ""
|
2711 |
+
|
2712 |
+
#: includes/class-wcj-pdf-invoicing.php:36
|
2713 |
+
msgid "Invoices Monthly Reports."
|
2714 |
+
msgstr ""
|
2715 |
+
|
2716 |
+
#: includes/class-wcj-pdf-invoicing.php:93
|
2717 |
+
msgid "Generate"
|
2718 |
+
msgstr ""
|
2719 |
+
|
2720 |
+
#: includes/class-wcj-pdf-invoicing.php:94
|
2721 |
+
msgid "Download (Zip)"
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: includes/class-wcj-pdf-invoicing.php:95
|
2725 |
+
msgid "Merge (Print)"
|
2726 |
+
msgstr ""
|
2727 |
+
|
2728 |
+
#: includes/class-wcj-pdf-invoicing.php:117
|
2729 |
+
#, php-format
|
2730 |
+
msgid "Document generated."
|
2731 |
+
msgid_plural "%s documents generated."
|
2732 |
+
msgstr[0] ""
|
2733 |
+
msgstr[1] ""
|
2734 |
+
|
2735 |
+
#: includes/class-wcj-pdf-invoicing.php:124
|
2736 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:172
|
2737 |
+
#, php-format
|
2738 |
+
msgid ""
|
2739 |
+
"Booster: %s class is not accessible on your server. Please contact your "
|
2740 |
+
"hosting provider."
|
2741 |
+
msgstr ""
|
2742 |
+
|
2743 |
+
#: includes/class-wcj-pdf-invoicing.php:130
|
2744 |
+
msgid "Booster: ZipArchive error."
|
2745 |
+
msgstr ""
|
2746 |
+
|
2747 |
+
#: includes/class-wcj-pdf-invoicing.php:135
|
2748 |
+
msgid "Booster: Merge PDFs: No files."
|
2749 |
+
msgstr ""
|
2750 |
+
|
2751 |
+
#: includes/class-wcj-pdf-invoicing.php:140
|
2752 |
+
#, php-format
|
2753 |
+
msgid ""
|
2754 |
+
"Booster: Merge PDFs: Command requires PHP version 5.3.0 at least. You have "
|
2755 |
+
"PHP version %s installed."
|
2756 |
+
msgstr ""
|
2757 |
+
|
2758 |
+
#: includes/class-wcj-pdf-invoicing.php:145
|
2759 |
+
#, php-format
|
2760 |
+
msgid "Booster: %s."
|
2761 |
+
msgstr ""
|
2762 |
+
|
2763 |
+
#: includes/class-wcj-pdf-invoicing.php:438
|
2764 |
+
msgid "You are not allowed to view the invoice."
|
2765 |
+
msgstr ""
|
2766 |
+
|
2767 |
+
#: includes/class-wcj-price-by-country.php:30
|
2768 |
+
msgid "Prices and Currencies by Country"
|
2769 |
+
msgstr ""
|
2770 |
+
|
2771 |
+
#: includes/class-wcj-price-by-country.php:31
|
2772 |
+
msgid "Change product price and currency automatically by customer's country."
|
2773 |
+
msgstr ""
|
2774 |
+
|
2775 |
+
#: includes/class-wcj-price-by-country.php:99
|
2776 |
+
msgid "Price filter widget product prices recalculated."
|
2777 |
+
msgstr ""
|
2778 |
+
|
2779 |
+
#: includes/class-wcj-price-by-user-role.php:26
|
2780 |
+
msgid "Price based on User Role"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: includes/class-wcj-price-by-user-role.php:27
|
2784 |
+
msgid "Display products prices by user roles."
|
2785 |
+
msgstr ""
|
2786 |
+
|
2787 |
+
#: includes/class-wcj-price-by-user-role.php:143
|
2788 |
+
msgid "user roles & variations"
|
2789 |
+
msgstr ""
|
2790 |
+
|
2791 |
+
#: includes/class-wcj-price-by-user-role.php:147
|
2792 |
+
msgid "variations"
|
2793 |
+
msgstr ""
|
2794 |
+
|
2795 |
+
#: includes/class-wcj-price-by-user-role.php:151
|
2796 |
+
msgid "user roles"
|
2797 |
+
msgstr ""
|
2798 |
+
|
2799 |
+
#: includes/class-wcj-price-by-user-role.php:164
|
2800 |
+
#, php-format
|
2801 |
+
msgid "Copy price to all %s"
|
2802 |
+
msgstr ""
|
2803 |
+
|
2804 |
+
#: includes/class-wcj-price-by-user-role.php:244
|
2805 |
+
msgid ""
|
2806 |
+
"Booster: Free plugin's version is limited to only one price by user role per "
|
2807 |
+
"products settings product enabled at a time. You will need to get <a href="
|
2808 |
+
"\"https://booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add "
|
2809 |
+
"unlimited number of price by user role per product settings products."
|
2810 |
+
msgstr ""
|
2811 |
+
|
2812 |
+
#: includes/class-wcj-price-formats.php:25
|
2813 |
+
msgid "Price Formats"
|
2814 |
+
msgstr ""
|
2815 |
+
|
2816 |
+
#: includes/class-wcj-price-formats.php:26
|
2817 |
+
msgid ""
|
2818 |
+
"Set different price formats for different currencies. Set general price "
|
2819 |
+
"format options."
|
2820 |
+
msgstr ""
|
2821 |
+
|
2822 |
+
#: includes/class-wcj-price-labels.php:23
|
2823 |
+
msgid "Custom Price Labels"
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: includes/class-wcj-price-labels.php:24
|
2827 |
+
msgid "Create any custom price label for any product."
|
2828 |
+
msgstr ""
|
2829 |
+
|
2830 |
+
#: includes/class-wcj-price-labels.php:32
|
2831 |
+
#: includes/settings/wcj-settings-price-labels.php:99
|
2832 |
+
msgid "Instead of the price"
|
2833 |
+
msgstr ""
|
2834 |
+
|
2835 |
+
#: includes/class-wcj-price-labels.php:33
|
2836 |
+
msgid "Before the price"
|
2837 |
+
msgstr ""
|
2838 |
+
|
2839 |
+
#: includes/class-wcj-price-labels.php:34
|
2840 |
+
msgid "Between regular and sale prices"
|
2841 |
+
msgstr ""
|
2842 |
+
|
2843 |
+
#: includes/class-wcj-price-labels.php:35
|
2844 |
+
msgid "After the price"
|
2845 |
+
msgstr ""
|
2846 |
+
|
2847 |
+
#: includes/class-wcj-price-labels.php:40
|
2848 |
+
#: includes/class-wcj-product-by-country.php:169
|
2849 |
+
#: includes/class-wcj-product-info.php:235
|
2850 |
+
#: includes/class-wcj-shipping-by-products.php:195
|
2851 |
+
#: includes/class-wcj-shipping-options.php:121
|
2852 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:68
|
2853 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
|
2854 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:19
|
2855 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:14
|
2856 |
+
#: includes/settings/wcj-settings-add-to-cart.php:51
|
2857 |
+
#: includes/settings/wcj-settings-address-formats.php:20
|
2858 |
+
#: includes/settings/wcj-settings-admin-bar.php:20
|
2859 |
+
#: includes/settings/wcj-settings-admin-bar.php:42
|
2860 |
+
#: includes/settings/wcj-settings-admin-bar.php:49
|
2861 |
+
#: includes/settings/wcj-settings-admin-tools.php:22
|
2862 |
+
#: includes/settings/wcj-settings-admin-tools.php:29
|
2863 |
+
#: includes/settings/wcj-settings-admin-tools.php:38
|
2864 |
+
#: includes/settings/wcj-settings-admin-tools.php:56
|
2865 |
+
#: includes/settings/wcj-settings-admin-tools.php:73
|
2866 |
+
#: includes/settings/wcj-settings-admin-tools.php:81
|
2867 |
+
#: includes/settings/wcj-settings-admin-tools.php:89
|
2868 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:20
|
2869 |
+
#: includes/settings/wcj-settings-call-for-price.php:79
|
2870 |
+
#: includes/settings/wcj-settings-cart-customization.php:34
|
2871 |
+
#: includes/settings/wcj-settings-cart-customization.php:57
|
2872 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:44
|
2873 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:122
|
2874 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:232
|
2875 |
+
#: includes/settings/wcj-settings-checkout-customization.php:20
|
2876 |
+
#: includes/settings/wcj-settings-checkout-customization.php:27
|
2877 |
+
#: includes/settings/wcj-settings-checkout-customization.php:38
|
2878 |
+
#: includes/settings/wcj-settings-checkout-customization.php:47
|
2879 |
+
#: includes/settings/wcj-settings-checkout-customization.php:56
|
2880 |
+
#: includes/settings/wcj-settings-checkout-customization.php:190
|
2881 |
+
#: includes/settings/wcj-settings-checkout-customization.php:213
|
2882 |
+
#: includes/settings/wcj-settings-checkout-customization.php:236
|
2883 |
+
#: includes/settings/wcj-settings-checkout-customization.php:261
|
2884 |
+
#: includes/settings/wcj-settings-checkout-fees.php:47
|
2885 |
+
#: includes/settings/wcj-settings-checkout-fees.php:54
|
2886 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:227
|
2887 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:329
|
2888 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:438
|
2889 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:47
|
2890 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:32
|
2891 |
+
#: includes/settings/wcj-settings-cross-sells.php:97
|
2892 |
+
#: includes/settings/wcj-settings-cross-sells.php:115
|
2893 |
+
#: includes/settings/wcj-settings-cross-sells.php:125
|
2894 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:54
|
2895 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:85
|
2896 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:93
|
2897 |
+
#: includes/settings/wcj-settings-currency-per-product.php:66
|
2898 |
+
#: includes/settings/wcj-settings-currency-per-product.php:83
|
2899 |
+
#: includes/settings/wcj-settings-currency-per-product.php:90
|
2900 |
+
#: includes/settings/wcj-settings-currency-per-product.php:97
|
2901 |
+
#: includes/settings/wcj-settings-currency-per-product.php:104
|
2902 |
+
#: includes/settings/wcj-settings-currency-per-product.php:258
|
2903 |
+
#: includes/settings/wcj-settings-custom-css.php:44
|
2904 |
+
#: includes/settings/wcj-settings-debug-tools.php:21
|
2905 |
+
#: includes/settings/wcj-settings-debug-tools.php:29
|
2906 |
+
#: includes/settings/wcj-settings-debug-tools.php:37
|
2907 |
+
#: includes/settings/wcj-settings-emails-verification.php:28
|
2908 |
+
#: includes/settings/wcj-settings-emails-verification.php:36
|
2909 |
+
#: includes/settings/wcj-settings-emails-verification.php:43
|
2910 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:242
|
2911 |
+
#: includes/settings/wcj-settings-general.php:21
|
2912 |
+
#: includes/settings/wcj-settings-general.php:73
|
2913 |
+
#: includes/settings/wcj-settings-general.php:146
|
2914 |
+
#: includes/settings/wcj-settings-general.php:197
|
2915 |
+
#: includes/settings/wcj-settings-global-discount.php:52
|
2916 |
+
#: includes/settings/wcj-settings-global-discount.php:181
|
2917 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:28
|
2918 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:57
|
2919 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:91
|
2920 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:80
|
2921 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:88
|
2922 |
+
#: includes/settings/wcj-settings-more-button-labels.php:28
|
2923 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:38
|
2924 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:53
|
2925 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:70
|
2926 |
+
#: includes/settings/wcj-settings-multicurrency.php:39
|
2927 |
+
#: includes/settings/wcj-settings-multicurrency.php:112
|
2928 |
+
#: includes/settings/wcj-settings-multicurrency.php:120
|
2929 |
+
#: includes/settings/wcj-settings-multicurrency.php:127
|
2930 |
+
#: includes/settings/wcj-settings-multicurrency.php:135
|
2931 |
+
#: includes/settings/wcj-settings-multicurrency.php:143
|
2932 |
+
#: includes/settings/wcj-settings-multicurrency.php:151
|
2933 |
+
#: includes/settings/wcj-settings-multicurrency.php:184
|
2934 |
+
#: includes/settings/wcj-settings-multicurrency.php:193
|
2935 |
+
#: includes/settings/wcj-settings-my-account.php:29
|
2936 |
+
#: includes/settings/wcj-settings-my-account.php:87
|
2937 |
+
#: includes/settings/wcj-settings-my-account.php:104
|
2938 |
+
#: includes/settings/wcj-settings-offer-price.php:27
|
2939 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:45
|
2940 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:88
|
2941 |
+
#: includes/settings/wcj-settings-order-numbers.php:97
|
2942 |
+
#: includes/settings/wcj-settings-order-numbers.php:105
|
2943 |
+
#: includes/settings/wcj-settings-order-numbers.php:112
|
2944 |
+
#: includes/settings/wcj-settings-order-numbers.php:119
|
2945 |
+
#: includes/settings/wcj-settings-order-quantities.php:23
|
2946 |
+
#: includes/settings/wcj-settings-order-quantities.php:42
|
2947 |
+
#: includes/settings/wcj-settings-order-quantities.php:49
|
2948 |
+
#: includes/settings/wcj-settings-order-quantities.php:117
|
2949 |
+
#: includes/settings/wcj-settings-order-quantities.php:175
|
2950 |
+
#: includes/settings/wcj-settings-order-quantities.php:216
|
2951 |
+
#: includes/settings/wcj-settings-order-quantities.php:225
|
2952 |
+
#: includes/settings/wcj-settings-orders.php:32
|
2953 |
+
#: includes/settings/wcj-settings-orders.php:60
|
2954 |
+
#: includes/settings/wcj-settings-orders.php:80
|
2955 |
+
#: includes/settings/wcj-settings-orders.php:105
|
2956 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:23
|
2957 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:95
|
2958 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:67
|
2959 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:83
|
2960 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:25
|
2961 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:55
|
2962 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:118
|
2963 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
|
2964 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:24
|
2965 |
+
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
|
2966 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:73
|
2967 |
+
#: includes/settings/wcj-settings-price-by-country.php:70
|
2968 |
+
#: includes/settings/wcj-settings-price-by-country.php:90
|
2969 |
+
#: includes/settings/wcj-settings-price-by-country.php:106
|
2970 |
+
#: includes/settings/wcj-settings-price-by-country.php:133
|
2971 |
+
#: includes/settings/wcj-settings-price-by-country.php:142
|
2972 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:20
|
2973 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:47
|
2974 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:119
|
2975 |
+
#: includes/settings/wcj-settings-price-formats.php:21
|
2976 |
+
#: includes/settings/wcj-settings-price-labels.php:23
|
2977 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:25
|
2978 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:41
|
2979 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:80
|
2980 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:132
|
2981 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:162
|
2982 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:178
|
2983 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:195
|
2984 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:236
|
2985 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:250
|
2986 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:280
|
2987 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:315
|
2988 |
+
#: includes/settings/wcj-settings-product-addons.php:31
|
2989 |
+
#: includes/settings/wcj-settings-product-addons.php:50
|
2990 |
+
#: includes/settings/wcj-settings-product-addons.php:74
|
2991 |
+
#: includes/settings/wcj-settings-product-addons.php:179
|
2992 |
+
#: includes/settings/wcj-settings-product-addons.php:257
|
2993 |
+
#: includes/settings/wcj-settings-product-bookings.php:107
|
2994 |
+
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
|
2995 |
+
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
|
2996 |
+
#: includes/settings/wcj-settings-product-by-condition.php:21
|
2997 |
+
#: includes/settings/wcj-settings-product-by-condition.php:29
|
2998 |
+
#: includes/settings/wcj-settings-product-by-condition.php:37
|
2999 |
+
#: includes/settings/wcj-settings-product-by-condition.php:44
|
3000 |
+
#: includes/settings/wcj-settings-product-by-condition.php:89
|
3001 |
+
#: includes/settings/wcj-settings-product-by-condition.php:96
|
3002 |
+
#: includes/settings/wcj-settings-product-by-date.php:21
|
3003 |
+
#: includes/settings/wcj-settings-product-by-date.php:53
|
3004 |
+
#: includes/settings/wcj-settings-product-by-time.php:21
|
3005 |
+
#: includes/settings/wcj-settings-product-by-time.php:53
|
3006 |
+
#: includes/settings/wcj-settings-product-by-user.php:107
|
3007 |
+
#: includes/settings/wcj-settings-product-info.php:35
|
3008 |
+
#: includes/settings/wcj-settings-product-info.php:68
|
3009 |
+
#: includes/settings/wcj-settings-product-input-fields.php:24
|
3010 |
+
#: includes/settings/wcj-settings-product-input-fields.php:54
|
3011 |
+
#: includes/settings/wcj-settings-product-input-fields.php:282
|
3012 |
+
#: includes/settings/wcj-settings-product-input-fields.php:326
|
3013 |
+
#: includes/settings/wcj-settings-product-input-fields.php:335
|
3014 |
+
#: includes/settings/wcj-settings-product-input-fields.php:354
|
3015 |
+
#: includes/settings/wcj-settings-product-input-fields.php:362
|
3016 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:102
|
3017 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:109
|
3018 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:140
|
3019 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:30
|
3020 |
+
#: includes/settings/wcj-settings-product-tabs.php:43
|
3021 |
+
#: includes/settings/wcj-settings-product-tabs.php:232
|
3022 |
+
#: includes/settings/wcj-settings-product-tabs.php:240
|
3023 |
+
#: includes/settings/wcj-settings-products-xml.php:77
|
3024 |
+
#: includes/settings/wcj-settings-purchase-data.php:22
|
3025 |
+
#: includes/settings/wcj-settings-purchase-data.php:29
|
3026 |
+
#: includes/settings/wcj-settings-purchase-data.php:36
|
3027 |
+
#: includes/settings/wcj-settings-purchase-data.php:114
|
3028 |
+
#: includes/settings/wcj-settings-purchase-data.php:121
|
3029 |
+
#: includes/settings/wcj-settings-purchase-data.php:128
|
3030 |
+
#: includes/settings/wcj-settings-purchase-data.php:196
|
3031 |
+
#: includes/settings/wcj-settings-related-products.php:105
|
3032 |
+
#: includes/settings/wcj-settings-related-products.php:112
|
3033 |
+
#: includes/settings/wcj-settings-related-products.php:119
|
3034 |
+
#: includes/settings/wcj-settings-related-products.php:149
|
3035 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:26
|
3036 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:21
|
3037 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:21
|
3038 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:20
|
3039 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:27
|
3040 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:34
|
3041 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:41
|
3042 |
+
#: includes/settings/wcj-settings-shipping-description.php:59
|
3043 |
+
#: includes/settings/wcj-settings-shipping-icons.php:61
|
3044 |
+
#: includes/settings/wcj-settings-shipping-options.php:63
|
3045 |
+
#: includes/settings/wcj-settings-shipping-time.php:31
|
3046 |
+
#: includes/settings/wcj-settings-shipping-time.php:40
|
3047 |
+
#: includes/settings/wcj-settings-shipping.php:24
|
3048 |
+
#: includes/settings/wcj-settings-sku.php:51
|
3049 |
+
#: includes/settings/wcj-settings-sku.php:216
|
3050 |
+
#: includes/settings/wcj-settings-sku.php:224
|
3051 |
+
#: includes/settings/wcj-settings-sku.php:232
|
3052 |
+
#: includes/settings/wcj-settings-sku.php:259
|
3053 |
+
#: includes/settings/wcj-settings-stock.php:27
|
3054 |
+
#: includes/settings/wcj-settings-stock.php:64
|
3055 |
+
#: includes/settings/wcj-settings-stock.php:94
|
3056 |
+
#: includes/settings/wcj-settings-stock.php:109
|
3057 |
+
#: includes/settings/wcj-settings-stock.php:139
|
3058 |
+
#: includes/settings/wcj-settings-stock.php:154
|
3059 |
+
#: includes/settings/wcj-settings-track-users.php:47
|
3060 |
+
#: includes/settings/wcj-settings-upsells.php:81
|
3061 |
+
#: includes/settings/wcj-settings-wholesale-price.php:24
|
3062 |
+
#: includes/settings/wcj-settings-wholesale-price.php:42
|
3063 |
+
#: includes/settings/wcj-settings-wholesale-price.php:51
|
3064 |
+
#: includes/settings/wcj-settings-wpml.php:28
|
3065 |
+
#: includes/settings/wcj-settings-wpml.php:35
|
3066 |
+
#: includes/settings/wcj-settings-wpml.php:53
|
3067 |
+
msgid "Enable"
|
3068 |
+
msgstr ""
|
3069 |
+
|
3070 |
+
#: includes/class-wcj-price-labels.php:41
|
3071 |
+
msgid "Hide on home page"
|
3072 |
+
msgstr ""
|
3073 |
+
|
3074 |
+
#: includes/class-wcj-price-labels.php:42
|
3075 |
+
msgid "Hide on products page"
|
3076 |
+
msgstr ""
|
3077 |
+
|
3078 |
+
#: includes/class-wcj-price-labels.php:43
|
3079 |
+
msgid "Hide on single"
|
3080 |
+
msgstr ""
|
3081 |
+
|
3082 |
+
#: includes/class-wcj-price-labels.php:44
|
3083 |
+
msgid "Hide on all pages"
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: includes/class-wcj-price-labels.php:45
|
3087 |
+
msgid "Hide on cart page only"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: includes/class-wcj-price-labels.php:46
|
3091 |
+
msgid "Hide for main price"
|
3092 |
+
msgstr ""
|
3093 |
+
|
3094 |
+
#: includes/class-wcj-price-labels.php:47
|
3095 |
+
msgid "Hide for all variations"
|
3096 |
+
msgstr ""
|
3097 |
+
|
3098 |
+
#: includes/class-wcj-price-labels.php:134
|
3099 |
+
msgid "Booster: Custom Price Labels"
|
3100 |
+
msgstr ""
|
3101 |
+
|
3102 |
+
#: includes/class-wcj-product-add-to-cart.php:26
|
3103 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:306
|
3104 |
+
msgid "Add to Cart"
|
3105 |
+
msgstr ""
|
3106 |
+
|
3107 |
+
#: includes/class-wcj-product-add-to-cart.php:27
|
3108 |
+
msgid "Set any local url to redirect to on Add to Cart."
|
3109 |
+
msgstr ""
|
3110 |
+
|
3111 |
+
#: includes/class-wcj-product-add-to-cart.php:28
|
3112 |
+
msgid "Automatically add to cart on product visit."
|
3113 |
+
msgstr ""
|
3114 |
+
|
3115 |
+
#: includes/class-wcj-product-add-to-cart.php:29
|
3116 |
+
msgid "Display radio buttons instead of drop box for variable products."
|
3117 |
+
msgstr ""
|
3118 |
+
|
3119 |
+
#: includes/class-wcj-product-add-to-cart.php:30
|
3120 |
+
msgid "Disable quantity input."
|
3121 |
+
msgstr ""
|
3122 |
+
|
3123 |
+
#: includes/class-wcj-product-add-to-cart.php:31
|
3124 |
+
msgid "Open external products on add to cart in new window."
|
3125 |
+
msgstr ""
|
3126 |
+
|
3127 |
+
#: includes/class-wcj-product-add-to-cart.php:32
|
3128 |
+
msgid ""
|
3129 |
+
"Replace Add to Cart button on archives with button from single product pages."
|
3130 |
+
msgstr ""
|
3131 |
+
|
3132 |
+
#: includes/class-wcj-product-add-to-cart.php:33
|
3133 |
+
msgid "Customize Add to Cart messages."
|
3134 |
+
msgstr ""
|
3135 |
+
|
3136 |
+
#: includes/class-wcj-product-add-to-cart.php:178
|
3137 |
+
#, php-format
|
3138 |
+
msgctxt "Item name in quotes"
|
3139 |
+
msgid "“%s”"
|
3140 |
+
msgstr ""
|
3141 |
+
|
3142 |
+
#: includes/class-wcj-product-add-to-cart.php:183
|
3143 |
+
#, php-format
|
3144 |
+
msgid "%s has been added to your cart."
|
3145 |
+
msgid_plural "%s have been added to your cart."
|
3146 |
+
msgstr[0] ""
|
3147 |
+
msgstr[1] ""
|
3148 |
+
|
3149 |
+
#: includes/class-wcj-product-add-to-cart.php:187
|
3150 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:245
|
3151 |
+
msgid "Continue shopping"
|
3152 |
+
msgstr ""
|
3153 |
+
|
3154 |
+
#: includes/class-wcj-product-add-to-cart.php:189
|
3155 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:259
|
3156 |
+
msgid "View cart"
|
3157 |
+
msgstr ""
|
3158 |
+
|
3159 |
+
#: includes/class-wcj-product-addons.php:30
|
3160 |
+
msgid "Product Addons"
|
3161 |
+
msgstr ""
|
3162 |
+
|
3163 |
+
#: includes/class-wcj-product-addons.php:31
|
3164 |
+
msgid "Add (paid/free/discount) addons to products."
|
3165 |
+
msgstr ""
|
3166 |
+
|
3167 |
+
#: includes/class-wcj-product-addons.php:220
|
3168 |
+
msgid "Some of the required addons are not selected!"
|
3169 |
+
msgstr ""
|
3170 |
+
|
3171 |
+
#: includes/class-wcj-product-addons.php:235
|
3172 |
+
msgid ""
|
3173 |
+
"Booster: Free plugin's version is limited to only three products with per "
|
3174 |
+
"product addons enabled at a time. You will need to get <a href=\"https://"
|
3175 |
+
"booster.io/plus/\" target=\"_blank\">Booster Plus</a> to add unlimited "
|
3176 |
+
"number of products with per product addons."
|
3177 |
+
msgstr ""
|
3178 |
+
|
3179 |
+
#: includes/class-wcj-product-bookings.php:25
|
3180 |
+
msgid "Bookings"
|
3181 |
+
msgstr ""
|
3182 |
+
|
3183 |
+
#: includes/class-wcj-product-bookings.php:26
|
3184 |
+
msgid "Add bookings products to WooCommerce."
|
3185 |
+
msgstr ""
|
3186 |
+
|
3187 |
+
#: includes/class-wcj-product-bookings.php:28
|
3188 |
+
msgid ""
|
3189 |
+
"When enabled, module will add new \"Booster: Bookings\" meta box to each "
|
3190 |
+
"product's edit page."
|
3191 |
+
msgstr ""
|
3192 |
+
|
3193 |
+
#: includes/class-wcj-product-bookings.php:140
|
3194 |
+
#: includes/class-wcj-product-bookings.php:247
|
3195 |
+
#: includes/settings/wcj-settings-product-bookings.php:77
|
3196 |
+
msgid "\"Date to\" must be after \"Date from\""
|
3197 |
+
msgstr ""
|
3198 |
+
|
3199 |
+
#: includes/class-wcj-product-bookings.php:151
|
3200 |
+
#: includes/class-wcj-product-open-pricing.php:261
|
3201 |
+
#: includes/settings/wcj-settings-add-to-cart.php:140
|
3202 |
+
#: includes/settings/wcj-settings-add-to-cart.php:167
|
3203 |
+
#: includes/settings/wcj-settings-add-to-cart.php:202
|
3204 |
+
msgid "Read more"
|
3205 |
+
msgstr ""
|
3206 |
+
|
3207 |
+
#: includes/class-wcj-product-bookings.php:205
|
3208 |
+
#: includes/settings/wcj-settings-product-bookings.php:49
|
3209 |
+
msgid "Period"
|
3210 |
+
msgstr ""
|
3211 |
+
|
3212 |
+
#: includes/class-wcj-product-bookings.php:237
|
3213 |
+
#: includes/settings/wcj-settings-product-bookings.php:63
|
3214 |
+
msgid "\"Date from\" must be set"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: includes/class-wcj-product-bookings.php:241
|
3218 |
+
#: includes/settings/wcj-settings-product-bookings.php:70
|
3219 |
+
msgid "\"Date to\" must be set"
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: includes/class-wcj-product-bookings.php:370
|
3223 |
+
#: includes/settings/wcj-settings-product-bookings.php:35
|
3224 |
+
msgid "Date from"
|
3225 |
+
msgstr ""
|
3226 |
+
|
3227 |
+
#: includes/class-wcj-product-bookings.php:374
|
3228 |
+
#: includes/settings/wcj-settings-product-bookings.php:42
|
3229 |
+
msgid "Date to"
|
3230 |
+
msgstr ""
|
3231 |
+
|
3232 |
+
#: includes/class-wcj-product-bookings.php:397
|
3233 |
+
#: includes/settings/wcj-settings-product-bookings.php:56
|
3234 |
+
msgid "/ day"
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: includes/class-wcj-product-bookings.php:471
|
3238 |
+
msgid ""
|
3239 |
+
"Booster: Free plugin's version is limited to only one bookings product "
|
3240 |
+
"enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
|
3241 |
+
"target=\"_blank\">Booster Plus</a> to add unlimited number of bookings "
|
3242 |
+
"products."
|
3243 |
+
msgstr ""
|
3244 |
+
|
3245 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:25
|
3246 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:32
|
3247 |
+
msgid "Product Bulk Meta Editor"
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:26
|
3251 |
+
msgid "Set products meta with bulk editor."
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:33
|
3255 |
+
msgid "Product Bulk Meta Editor Tool."
|
3256 |
+
msgstr ""
|
3257 |
+
|
3258 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:164
|
3259 |
+
msgid "Please enter meta key."
|
3260 |
+
msgstr ""
|
3261 |
+
|
3262 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:184
|
3263 |
+
#, php-format
|
3264 |
+
msgid "Meta for <strong>%d</strong> product(s) was updated."
|
3265 |
+
msgstr ""
|
3266 |
+
|
3267 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:187
|
3268 |
+
#, php-format
|
3269 |
+
msgid "Meta for <strong>%d</strong> product(s) was not updated."
|
3270 |
+
msgstr ""
|
3271 |
+
|
3272 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:224
|
3273 |
+
msgid "Meta key"
|
3274 |
+
msgstr ""
|
3275 |
+
|
3276 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:226
|
3277 |
+
#, php-format
|
3278 |
+
msgid "for example %s"
|
3279 |
+
msgstr ""
|
3280 |
+
|
3281 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:232
|
3282 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:19
|
3283 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:38
|
3284 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:70
|
3285 |
+
#: includes/settings/wcj-settings-product-msrp.php:31
|
3286 |
+
#: includes/settings/wcj-settings-wholesale-price.php:58
|
3287 |
+
msgid "Show"
|
3288 |
+
msgstr ""
|
3289 |
+
|
3290 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:236
|
3291 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:340
|
3292 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:304
|
3293 |
+
msgid "Meta"
|
3294 |
+
msgstr ""
|
3295 |
+
|
3296 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:259
|
3297 |
+
msgid ""
|
3298 |
+
"Hold <strong>Control</strong> key to select multiple products. Press "
|
3299 |
+
"<strong>Control</strong> + <strong>A</strong> to select all products."
|
3300 |
+
msgstr ""
|
3301 |
+
|
3302 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:294
|
3303 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:71
|
3304 |
+
#: includes/settings/wcj-settings-admin-products-list.php:56
|
3305 |
+
#: includes/settings/wcj-settings-checkout-fees.php:76
|
3306 |
+
#: includes/settings/wcj-settings-export.php:91
|
3307 |
+
#: includes/settings/wcj-settings-export.php:162
|
3308 |
+
#: includes/settings/wcj-settings-export.php:241
|
3309 |
+
#: includes/settings/wcj-settings-global-discount.php:69
|
3310 |
+
msgid "Value"
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:299
|
3314 |
+
msgid "Set"
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:303
|
3318 |
+
msgid "Set Meta for All Products"
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:320
|
3322 |
+
msgid "Save all"
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:323
|
3326 |
+
msgid "Delete all"
|
3327 |
+
msgstr ""
|
3328 |
+
|
3329 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:364
|
3330 |
+
msgid "Save"
|
3331 |
+
msgstr ""
|
3332 |
+
|
3333 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:389
|
3334 |
+
#: includes/class-wcj-purchase-data.php:77
|
3335 |
+
#: includes/export/class-wcj-fields-helper.php:280
|
3336 |
+
#: includes/functions/wcj-functions-reports.php:24
|
3337 |
+
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
|
3338 |
+
msgid "Product ID"
|
3339 |
+
msgstr ""
|
3340 |
+
|
3341 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:392
|
3342 |
+
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:43
|
3343 |
+
msgid "Product status"
|
3344 |
+
msgstr ""
|
3345 |
+
|
3346 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:395
|
3347 |
+
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:44
|
3348 |
+
msgid "Meta keys"
|
3349 |
+
msgstr ""
|
3350 |
+
|
3351 |
+
#: includes/class-wcj-product-bulk-meta-editor.php:417
|
3352 |
+
msgid "Show all"
|
3353 |
+
msgstr ""
|
3354 |
+
|
3355 |
+
#: includes/class-wcj-product-bulk-price-converter.php:23
|
3356 |
+
#: includes/class-wcj-product-bulk-price-converter.php:30
|
3357 |
+
msgid "Bulk Price Converter"
|
3358 |
+
msgstr ""
|
3359 |
+
|
3360 |
+
#: includes/class-wcj-product-bulk-price-converter.php:24
|
3361 |
+
msgid "Multiply all products prices by set value."
|
3362 |
+
msgstr ""
|
3363 |
+
|
3364 |
+
#: includes/class-wcj-product-bulk-price-converter.php:31
|
3365 |
+
msgid "Bulk Price Converter Tool."
|
3366 |
+
msgstr ""
|
3367 |
+
|
3368 |
+
#: includes/class-wcj-product-bulk-price-converter.php:150
|
3369 |
+
msgid "Price Type"
|
3370 |
+
msgstr ""
|
3371 |
+
|
3372 |
+
#: includes/class-wcj-product-bulk-price-converter.php:151
|
3373 |
+
msgid "Original Price"
|
3374 |
+
msgstr ""
|
3375 |
+
|
3376 |
+
#: includes/class-wcj-product-bulk-price-converter.php:152
|
3377 |
+
msgid "Modified Price"
|
3378 |
+
msgstr ""
|
3379 |
+
|
3380 |
+
#: includes/class-wcj-product-bulk-price-converter.php:207
|
3381 |
+
msgid "Multiply value must be above zero."
|
3382 |
+
msgstr ""
|
3383 |
+
|
3384 |
+
#: includes/class-wcj-product-bulk-price-converter.php:214
|
3385 |
+
msgid "Prices changed successfully!"
|
3386 |
+
msgstr ""
|
3387 |
+
|
3388 |
+
#: includes/class-wcj-product-bulk-price-converter.php:239
|
3389 |
+
msgid "Multiply all product prices by"
|
3390 |
+
msgstr ""
|
3391 |
+
|
3392 |
+
#: includes/class-wcj-product-bulk-price-converter.php:247
|
3393 |
+
msgid "Price type to modify"
|
3394 |
+
msgstr ""
|
3395 |
+
|
3396 |
+
#: includes/class-wcj-product-bulk-price-converter.php:249
|
3397 |
+
msgid "Both"
|
3398 |
+
msgstr ""
|
3399 |
+
|
3400 |
+
#: includes/class-wcj-product-bulk-price-converter.php:251
|
3401 |
+
msgid "Sale prices only"
|
3402 |
+
msgstr ""
|
3403 |
+
|
3404 |
+
#: includes/class-wcj-product-bulk-price-converter.php:253
|
3405 |
+
msgid "Regular prices only"
|
3406 |
+
msgstr ""
|
3407 |
+
|
3408 |
+
#: includes/class-wcj-product-bulk-price-converter.php:260
|
3409 |
+
msgid "Products category"
|
3410 |
+
msgstr ""
|
3411 |
+
|
3412 |
+
#: includes/class-wcj-product-bulk-price-converter.php:262
|
3413 |
+
#: includes/shortcodes/class-wcj-shortcodes-products.php:354
|
3414 |
+
msgid "Any"
|
3415 |
+
msgstr ""
|
3416 |
+
|
3417 |
+
#: includes/class-wcj-product-bulk-price-converter.php:264
|
3418 |
+
#: includes/settings/wcj-settings-global-discount.php:84
|
3419 |
+
msgid "None"
|
3420 |
+
msgstr ""
|
3421 |
+
|
3422 |
+
#: includes/class-wcj-product-bulk-price-converter.php:271
|
3423 |
+
msgid "\"Pretty prices\" threshold"
|
3424 |
+
msgstr ""
|
3425 |
+
|
3426 |
+
#: includes/class-wcj-product-bulk-price-converter.php:271
|
3427 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:83
|
3428 |
+
msgid "Leave zero to disable."
|
3429 |
+
msgstr ""
|
3430 |
+
|
3431 |
+
#: includes/class-wcj-product-bulk-price-converter.php:272
|
3432 |
+
msgid ""
|
3433 |
+
"Otherwise - all prices below \"threshold\" will end with 0,99 and all prices "
|
3434 |
+
"above or equal to \"threshold\" will end with 9,00."
|
3435 |
+
msgstr ""
|
3436 |
+
|
3437 |
+
#: includes/class-wcj-product-bulk-price-converter.php:273
|
3438 |
+
msgid ""
|
3439 |
+
"E.g.: if you set \"threshold\" to 100, then all prices below 100 will be "
|
3440 |
+
"like 45,99 and all other prices will be like 109,00."
|
3441 |
+
msgstr ""
|
3442 |
+
|
3443 |
+
#: includes/class-wcj-product-bulk-price-converter.php:281
|
3444 |
+
msgid "Preview Prices"
|
3445 |
+
msgstr ""
|
3446 |
+
|
3447 |
+
#: includes/class-wcj-product-bulk-price-converter.php:288
|
3448 |
+
msgid "Change Prices"
|
3449 |
+
msgstr ""
|
3450 |
+
|
3451 |
+
#: includes/class-wcj-product-by-country.php:25
|
3452 |
+
msgid "Product Visibility by Country"
|
3453 |
+
msgstr ""
|
3454 |
+
|
3455 |
+
#: includes/class-wcj-product-by-country.php:26
|
3456 |
+
msgid "Display products by customer's country."
|
3457 |
+
msgstr ""
|
3458 |
+
|
3459 |
+
#: includes/class-wcj-product-by-country.php:28
|
3460 |
+
msgid ""
|
3461 |
+
"When enabled, module will add new \"Booster: Product Visibility by Country\" "
|
3462 |
+
"meta box to each product's edit page."
|
3463 |
+
msgstr ""
|
3464 |
+
|
3465 |
+
#: includes/class-wcj-product-by-country.php:30
|
3466 |
+
#: includes/widgets/class-wcj-widget-country-switcher.php:69
|
3467 |
+
#: includes/widgets/class-wcj-widget-selector.php:64
|
3468 |
+
msgid "Countries"
|
3469 |
+
msgstr ""
|
3470 |
+
|
3471 |
+
#: includes/class-wcj-product-by-country.php:144
|
3472 |
+
msgid "User Country Selection Options"
|
3473 |
+
msgstr ""
|
3474 |
+
|
3475 |
+
#: includes/class-wcj-product-by-country.php:149
|
3476 |
+
msgid "User Country Selection Method"
|
3477 |
+
msgstr ""
|
3478 |
+
|
3479 |
+
#: includes/class-wcj-product-by-country.php:150
|
3480 |
+
msgid "Possible values: \"Automatically by IP\" or \"Manually\"."
|
3481 |
+
msgstr ""
|
3482 |
+
|
3483 |
+
#: includes/class-wcj-product-by-country.php:152
|
3484 |
+
#, php-format
|
3485 |
+
msgid ""
|
3486 |
+
"If \"Manually\" option is selected, you can add country selection drop box "
|
3487 |
+
"to frontend with \"%s\" widget or %s shortcode."
|
3488 |
+
msgstr ""
|
3489 |
+
|
3490 |
+
#: includes/class-wcj-product-by-country.php:153
|
3491 |
+
#: includes/class-wcj-product-custom-visibility.php:31
|
3492 |
+
#: includes/widgets/class-wcj-widget-selector.php:27
|
3493 |
+
msgid "Booster - Selector"
|
3494 |
+
msgstr ""
|
3495 |
+
|
3496 |
+
#: includes/class-wcj-product-by-country.php:160
|
3497 |
+
msgid "Automatically by IP"
|
3498 |
+
msgstr ""
|
3499 |
+
|
3500 |
+
#: includes/class-wcj-product-by-country.php:161
|
3501 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:32
|
3502 |
+
msgid "Manually"
|
3503 |
+
msgstr ""
|
3504 |
+
|
3505 |
+
#: includes/class-wcj-product-by-country.php:167
|
3506 |
+
msgid "Overwrite by Billing Country"
|
3507 |
+
msgstr ""
|
3508 |
+
|
3509 |
+
#: includes/class-wcj-product-by-country.php:168
|
3510 |
+
msgid "Tries to overwrite Country by User Billing Country on Checkout Page."
|
3511 |
+
msgstr ""
|
3512 |
+
|
3513 |
+
#: includes/class-wcj-product-by-country.php:179
|
3514 |
+
msgid "Admin Country List Options"
|
3515 |
+
msgstr ""
|
3516 |
+
|
3517 |
+
#: includes/class-wcj-product-by-country.php:184
|
3518 |
+
msgid "Country List"
|
3519 |
+
msgstr ""
|
3520 |
+
|
3521 |
+
#: includes/class-wcj-product-by-country.php:185
|
3522 |
+
msgid ""
|
3523 |
+
"This option sets which countries will be added to list in product's edit "
|
3524 |
+
"page. Possible values: \"All countries\" or \"WooCommerce selling locations"
|
3525 |
+
"\"."
|
3526 |
+
msgstr ""
|
3527 |
+
|
3528 |
+
#: includes/class-wcj-product-by-country.php:187
|
3529 |
+
#, php-format
|
3530 |
+
msgid ""
|
3531 |
+
"If \"WooCommerce selling locations\" option is selected, country list will "
|
3532 |
+
"be set by <a href=\"%s\">WooCommerce > Settings > General > Selling "
|
3533 |
+
"location(s)</a>."
|
3534 |
+
msgstr ""
|
3535 |
+
|
3536 |
+
#: includes/class-wcj-product-by-country.php:195
|
3537 |
+
msgid "WooCommerce selling locations"
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#: includes/class-wcj-product-by-date.php:29
|
3541 |
+
msgid "Product Availability by Date"
|
3542 |
+
msgstr ""
|
3543 |
+
|
3544 |
+
#: includes/class-wcj-product-by-date.php:30
|
3545 |
+
msgid "Set product availability by date."
|
3546 |
+
msgstr ""
|
3547 |
+
|
3548 |
+
#: includes/class-wcj-product-by-date.php:110
|
3549 |
+
#: includes/settings/wcj-settings-product-by-date.php:107
|
3550 |
+
msgid "%product_title% is not available until %direct_date%."
|
3551 |
+
msgstr ""
|
3552 |
+
|
3553 |
+
#: includes/class-wcj-product-by-date.php:117
|
3554 |
+
#: includes/class-wcj-product-by-date.php:119
|
3555 |
+
#: includes/settings/wcj-settings-product-by-date.php:95
|
3556 |
+
msgid ""
|
3557 |
+
"<p style=\"color:red;\">%product_title% is not available this month.</p>"
|
3558 |
+
msgstr ""
|
3559 |
+
|
3560 |
+
#: includes/class-wcj-product-by-date.php:120
|
3561 |
+
#: includes/class-wcj-product-by-date.php:122
|
3562 |
+
#: includes/settings/wcj-settings-product-by-date.php:83
|
3563 |
+
msgid ""
|
3564 |
+
"<p style=\"color:red;\">%product_title% is available only on %date_this_month"
|
3565 |
+
"% this month.</p>"
|
3566 |
+
msgstr ""
|
3567 |
+
|
3568 |
+
#: includes/class-wcj-product-by-time.php:29
|
3569 |
+
msgid "Product Availability by Time"
|
3570 |
+
msgstr ""
|
3571 |
+
|
3572 |
+
#: includes/class-wcj-product-by-time.php:30
|
3573 |
+
msgid "Set product availability by time."
|
3574 |
+
msgstr ""
|
3575 |
+
|
3576 |
+
#: includes/class-wcj-product-by-time.php:91
|
3577 |
+
#: includes/class-wcj-product-by-time.php:93
|
3578 |
+
#: includes/settings/wcj-settings-product-by-time.php:87
|
3579 |
+
msgid "<p style=\"color:red;\">%product_title% is not available today.</p>"
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#: includes/class-wcj-product-by-time.php:94
|
3583 |
+
#: includes/class-wcj-product-by-time.php:96
|
3584 |
+
#: includes/settings/wcj-settings-product-by-time.php:75
|
3585 |
+
msgid ""
|
3586 |
+
"<p style=\"color:red;\">%product_title% is available only at %time_today% "
|
3587 |
+
"today.</p>"
|
3588 |
+
msgstr ""
|
3589 |
+
|
3590 |
+
#: includes/class-wcj-product-by-user-role.php:25
|
3591 |
+
msgid "Product Visibility by User Role"
|
3592 |
+
msgstr ""
|
3593 |
+
|
3594 |
+
#: includes/class-wcj-product-by-user-role.php:26
|
3595 |
+
msgid "Display products by customer's user role."
|
3596 |
+
msgstr ""
|
3597 |
+
|
3598 |
+
#: includes/class-wcj-product-by-user-role.php:28
|
3599 |
+
msgid ""
|
3600 |
+
"When enabled, module will add new \"Booster: Product Visibility by User Role"
|
3601 |
+
"\" meta box to each product's edit page."
|
3602 |
+
msgstr ""
|
3603 |
+
|
3604 |
+
#: includes/class-wcj-product-by-user-role.php:30
|
3605 |
+
#: includes/class-wcj-shipping-by-user-role.php:31
|
3606 |
+
#: includes/settings/wcj-settings-tax-display.php:107
|
3607 |
+
msgid "User Roles"
|
3608 |
+
msgstr ""
|
3609 |
+
|
3610 |
+
#: includes/class-wcj-product-by-user.php:26
|
3611 |
+
msgid "User Products"
|
3612 |
+
msgstr ""
|
3613 |
+
|
3614 |
+
#: includes/class-wcj-product-by-user.php:27
|
3615 |
+
msgid "Let users add new products from frontend."
|
3616 |
+
msgstr ""
|
3617 |
+
|
3618 |
+
#: includes/class-wcj-product-by-user.php:29
|
3619 |
+
msgid ""
|
3620 |
+
"Use <strong>[wcj_product_add_new]</strong> shortcode to add product upload "
|
3621 |
+
"form to frontend."
|
3622 |
+
msgstr ""
|
3623 |
+
|
3624 |
+
#: includes/class-wcj-product-by-user.php:154
|
3625 |
+
#: includes/class-wcj-product-by-user.php:163
|
3626 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:310
|
3627 |
+
msgid "Wrong user ID!"
|
3628 |
+
msgstr ""
|
3629 |
+
|
3630 |
+
#: includes/class-wcj-product-by-user.php:197
|
3631 |
+
#: includes/class-wcj-product-tabs.php:620
|
3632 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:55
|
3633 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:51
|
3634 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:95
|
3635 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:172
|
3636 |
+
#: includes/settings/wcj-settings-checkout-fees.php:60
|
3637 |
+
#: includes/settings/wcj-settings-cross-sells.php:42
|
3638 |
+
#: includes/settings/wcj-settings-export.php:75
|
3639 |
+
#: includes/settings/wcj-settings-export.php:143
|
3640 |
+
#: includes/settings/wcj-settings-export.php:225
|
3641 |
+
#: includes/settings/wcj-settings-my-account.php:161
|
3642 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:300
|
3643 |
+
#: includes/settings/wcj-settings-product-addons.php:92
|
3644 |
+
#: includes/settings/wcj-settings-product-by-user.php:167
|
3645 |
+
#: includes/settings/wcj-settings-product-tabs.php:72
|
3646 |
+
#: includes/settings/wcj-settings-product-tabs.php:388
|
3647 |
+
#: includes/settings/wcj-settings-product-tabs.php:409
|
3648 |
+
#: includes/settings/wcj-settings-product-tabs.php:430
|
3649 |
+
#: includes/settings/wcj-settings-products-xml.php:223
|
3650 |
+
#: includes/settings/wcj-settings-purchase-data.php:77
|
3651 |
+
#: includes/settings/wcj-settings-related-products.php:24
|
3652 |
+
#: includes/settings/wcj-settings-upsells.php:42
|
3653 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:191
|
3654 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:107
|
3655 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:334
|
3656 |
+
#: includes/widgets/class-wcj-widget-country-switcher.php:62
|
3657 |
+
#: includes/widgets/class-wcj-widget-left-to-free-shipping.php:52
|
3658 |
+
#: includes/widgets/class-wcj-widget-multicurrency.php:69
|
3659 |
+
#: includes/widgets/class-wcj-widget-selector.php:52
|
3660 |
+
msgid "Title"
|
3661 |
+
msgstr ""
|
3662 |
+
|
3663 |
+
#: includes/class-wcj-product-by-user.php:205
|
3664 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:422
|
3665 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:164
|
3666 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:236
|
3667 |
+
msgid "Edit"
|
3668 |
+
msgstr ""
|
3669 |
+
|
3670 |
+
#: includes/class-wcj-product-custom-info.php:25
|
3671 |
+
#: includes/class-wcj-product-info.php:102
|
3672 |
+
msgid "Add additional info to category and single product pages."
|
3673 |
+
msgstr ""
|
3674 |
+
|
3675 |
+
#: includes/class-wcj-product-custom-visibility.php:25
|
3676 |
+
msgid "Product Custom Visibility"
|
3677 |
+
msgstr ""
|
3678 |
+
|
3679 |
+
#: includes/class-wcj-product-custom-visibility.php:26
|
3680 |
+
msgid "Display products by custom param."
|
3681 |
+
msgstr ""
|
3682 |
+
|
3683 |
+
#: includes/class-wcj-product-custom-visibility.php:28
|
3684 |
+
msgid ""
|
3685 |
+
"When enabled, module will add new \"Booster: Product Custom Visibility\" "
|
3686 |
+
"meta box to each product's edit page."
|
3687 |
+
msgstr ""
|
3688 |
+
|
3689 |
+
#: includes/class-wcj-product-custom-visibility.php:30
|
3690 |
+
#, php-format
|
3691 |
+
msgid ""
|
3692 |
+
"You can add selection drop box to frontend with \"%s\" widget (set \"Product "
|
3693 |
+
"custom visibility\" as \"Selector Type\") or %s shortcode."
|
3694 |
+
msgstr ""
|
3695 |
+
|
3696 |
+
#: includes/class-wcj-product-custom-visibility.php:34
|
3697 |
+
msgid "Custom Visibility"
|
3698 |
+
msgstr ""
|
3699 |
+
|
3700 |
+
#: includes/class-wcj-product-custom-visibility.php:92
|
3701 |
+
msgid "Options List"
|
3702 |
+
msgstr ""
|
3703 |
+
|
3704 |
+
#: includes/class-wcj-product-custom-visibility.php:97
|
3705 |
+
#: includes/settings/wcj-settings-admin-bar.php:14
|
3706 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:14
|
3707 |
+
#: includes/settings/wcj-settings-cart-customization.php:14
|
3708 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:16
|
3709 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:18
|
3710 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:25
|
3711 |
+
#: includes/settings/wcj-settings-cross-sells.php:14
|
3712 |
+
#: includes/settings/wcj-settings-custom-css.php:14
|
3713 |
+
#: includes/settings/wcj-settings-custom-js.php:14
|
3714 |
+
#: includes/settings/wcj-settings-custom-php.php:16
|
3715 |
+
#: includes/settings/wcj-settings-empty-cart.php:14
|
3716 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:15
|
3717 |
+
#: includes/settings/wcj-settings-global-discount.php:19
|
3718 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:17
|
3719 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:63
|
3720 |
+
#: includes/settings/wcj-settings-payment-gateways-icons.php:14
|
3721 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:14
|
3722 |
+
#: includes/settings/wcj-settings-product-addons.php:173
|
3723 |
+
#: includes/settings/wcj-settings-product-bookings.php:86
|
3724 |
+
#: includes/settings/wcj-settings-product-by-user.php:59
|
3725 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:22
|
3726 |
+
#: includes/settings/wcj-settings-products-per-page.php:14
|
3727 |
+
#: includes/settings/wcj-settings-products-xml.php:20
|
3728 |
+
#: includes/settings/wcj-settings-shipping-description.php:14
|
3729 |
+
#: includes/settings/wcj-settings-shipping-icons.php:14
|
3730 |
+
#: includes/settings/wcj-settings-track-users.php:14
|
3731 |
+
#: includes/settings/wcj-settings-upsells.php:14
|
3732 |
+
#: includes/settings/wcj-settings-url-coupons.php:14
|
3733 |
+
#: includes/settings/wcj-settings-wholesale-price.php:15
|
3734 |
+
msgid "Options"
|
3735 |
+
msgstr ""
|
3736 |
+
|
3737 |
+
#: includes/class-wcj-product-custom-visibility.php:98
|
3738 |
+
msgid "One per line."
|
3739 |
+
msgstr ""
|
3740 |
+
|
3741 |
+
#: includes/class-wcj-product-custom-visibility.php:99
|
3742 |
+
msgid ""
|
3743 |
+
"Can not be empty. Options will be added to each product's admin edit page "
|
3744 |
+
"and to the selection drop box on frontend."
|
3745 |
+
msgstr ""
|
3746 |
+
|
3747 |
+
#: includes/class-wcj-product-images.php:25
|
3748 |
+
msgid "Product Images"
|
3749 |
+
msgstr ""
|
3750 |
+
|
3751 |
+
#: includes/class-wcj-product-images.php:26
|
3752 |
+
msgid "Customize products images and thumbnails."
|
3753 |
+
msgstr ""
|
3754 |
+
|
3755 |
+
#: includes/class-wcj-product-info.php:101
|
3756 |
+
msgid "Product Info V1"
|
3757 |
+
msgstr ""
|
3758 |
+
|
3759 |
+
#: includes/class-wcj-product-info.php:123
|
3760 |
+
#: includes/settings/wcj-settings-offer-price.php:116
|
3761 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:326
|
3762 |
+
#: includes/settings/wcj-settings-product-custom-info.php:115
|
3763 |
+
msgid "Before product"
|
3764 |
+
msgstr ""
|
3765 |
+
|
3766 |
+
#: includes/class-wcj-product-info.php:124
|
3767 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:327
|
3768 |
+
#: includes/settings/wcj-settings-product-custom-info.php:116
|
3769 |
+
msgid "Before product title"
|
3770 |
+
msgstr ""
|
3771 |
+
|
3772 |
+
#: includes/class-wcj-product-info.php:125
|
3773 |
+
#: includes/settings/wcj-settings-offer-price.php:117
|
3774 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:328
|
3775 |
+
#: includes/settings/wcj-settings-product-custom-info.php:119
|
3776 |
+
msgid "After product"
|
3777 |
+
msgstr ""
|
3778 |
+
|
3779 |
+
#: includes/class-wcj-product-info.php:126
|
3780 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:329
|
3781 |
+
#: includes/settings/wcj-settings-product-custom-info.php:118
|
3782 |
+
msgid "After product title"
|
3783 |
+
msgstr ""
|
3784 |
+
|
3785 |
+
#: includes/class-wcj-product-info.php:138
|
3786 |
+
#: includes/settings/wcj-settings-offer-price.php:95
|
3787 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:292
|
3788 |
+
#: includes/settings/wcj-settings-product-custom-info.php:104
|
3789 |
+
#: includes/settings/wcj-settings-upsells.php:60
|
3790 |
+
msgid "Inside single product summary"
|
3791 |
+
msgstr ""
|
3792 |
+
|
3793 |
+
#: includes/class-wcj-product-info.php:139
|
3794 |
+
#: includes/settings/wcj-settings-offer-price.php:94
|
3795 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:291
|
3796 |
+
#: includes/settings/wcj-settings-product-custom-info.php:103
|
3797 |
+
#: includes/settings/wcj-settings-upsells.php:59
|
3798 |
+
msgid "Before single product summary"
|
3799 |
+
msgstr ""
|
3800 |
+
|
3801 |
+
#: includes/class-wcj-product-info.php:140
|
3802 |
+
#: includes/settings/wcj-settings-offer-price.php:98
|
3803 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:293
|
3804 |
+
#: includes/settings/wcj-settings-product-custom-info.php:105
|
3805 |
+
#: includes/settings/wcj-settings-upsells.php:61
|
3806 |
+
msgid "After single product summary"
|
3807 |
+
msgstr ""
|
3808 |
+
|
3809 |
+
#: includes/class-wcj-product-info.php:242
|
3810 |
+
#: includes/settings/wcj-settings-cart.php:51
|
3811 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:48
|
3812 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:52
|
3813 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:42
|
3814 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:73
|
3815 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:107
|
3816 |
+
#: includes/settings/wcj-settings-mini-cart.php:46
|
3817 |
+
#: includes/settings/wcj-settings-my-account.php:261
|
3818 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:286
|
3819 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:321
|
3820 |
+
#: includes/settings/wcj-settings-product-custom-info.php:96
|
3821 |
+
#: includes/settings/wcj-settings-product-info.php:50
|
3822 |
+
#: includes/settings/wcj-settings-product-info.php:83
|
3823 |
+
#: includes/settings/wcj-settings-product-msrp.php:37
|
3824 |
+
#: includes/settings/wcj-settings-products-per-page.php:36
|
3825 |
+
msgid "Position"
|
3826 |
+
msgstr ""
|
3827 |
+
|
3828 |
+
#: includes/class-wcj-product-info.php:253
|
3829 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:180
|
3830 |
+
#: includes/settings/wcj-settings-product-info.php:61
|
3831 |
+
#: includes/settings/wcj-settings-product-info.php:94
|
3832 |
+
#: includes/settings/wcj-settings-product-tabs.php:86
|
3833 |
+
#: includes/settings/wcj-settings-product-tabs.php:398
|
3834 |
+
#: includes/settings/wcj-settings-product-tabs.php:419
|
3835 |
+
#: includes/settings/wcj-settings-product-tabs.php:440
|
3836 |
+
msgid "Priority (i.e. Order)"
|
3837 |
+
msgstr ""
|
3838 |
+
|
3839 |
+
#: includes/class-wcj-product-info.php:260
|
3840 |
+
msgid ""
|
3841 |
+
"Number of product info fields. Click \"Save changes\" after you change this "
|
3842 |
+
"number."
|
3843 |
+
msgstr ""
|
3844 |
+
|
3845 |
+
#: includes/class-wcj-product-info.php:282
|
3846 |
+
msgid ""
|
3847 |
+
"[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" "
|
3848 |
+
"after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" "
|
3849 |
+
"before=\" (\" after=\"%)\"]"
|
3850 |
+
msgstr ""
|
3851 |
+
|
3852 |
+
#: includes/class-wcj-product-info.php:283
|
3853 |
+
msgid "[wcj_product_total_sales before=\"Total sales: \"]"
|
3854 |
+
msgstr ""
|
3855 |
+
|
3856 |
+
#: includes/class-wcj-product-input-fields.php:25
|
3857 |
+
msgid "Add input fields to the products."
|
3858 |
+
msgstr ""
|
3859 |
+
|
3860 |
+
#: includes/class-wcj-product-listings.php:27
|
3861 |
+
msgid "Product Listings"
|
3862 |
+
msgstr ""
|
3863 |
+
|
3864 |
+
#: includes/class-wcj-product-listings.php:28
|
3865 |
+
msgid ""
|
3866 |
+
"Change display options for shop and category pages: show/hide categories "
|
3867 |
+
"count, exclude categories, show/hide empty categories."
|
3868 |
+
msgstr ""
|
3869 |
+
|
3870 |
+
#: includes/class-wcj-product-msrp.php:30
|
3871 |
+
msgid "Product MSRP"
|
3872 |
+
msgstr ""
|
3873 |
+
|
3874 |
+
#: includes/class-wcj-product-msrp.php:31
|
3875 |
+
msgid ""
|
3876 |
+
"The <strong>manufacturer's suggested retail price</strong> (<strong>MSRP</"
|
3877 |
+
"strong>), also known as the <strong>list price</strong>, or the "
|
3878 |
+
"<strong>recommended retail price</strong> (<strong>RRP</strong>), or the "
|
3879 |
+
"<strong>suggested retail price</strong> (<strong>SRP</strong>), of a product "
|
3880 |
+
"is the price at which the manufacturer recommends that the retailer sell the "
|
3881 |
+
"product."
|
3882 |
+
msgstr ""
|
3883 |
+
|
3884 |
+
#: includes/class-wcj-product-msrp.php:32
|
3885 |
+
#, php-format
|
3886 |
+
msgid "Booster stores MSRP as product meta with %s key."
|
3887 |
+
msgstr ""
|
3888 |
+
|
3889 |
+
#: includes/class-wcj-product-msrp.php:33
|
3890 |
+
msgid "Save and display product MSRP in WooCommerce."
|
3891 |
+
msgstr ""
|
3892 |
+
|
3893 |
+
#: includes/class-wcj-product-msrp.php:92
|
3894 |
+
#: includes/class-wcj-product-msrp.php:123
|
3895 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-msrp.php:35
|
3896 |
+
msgid "MSRP"
|
3897 |
+
msgstr ""
|
3898 |
+
|
3899 |
+
#: includes/class-wcj-product-open-pricing.php:25
|
3900 |
+
msgid "Product Open Pricing (Name Your Price)"
|
3901 |
+
msgstr ""
|
3902 |
+
|
3903 |
+
#: includes/class-wcj-product-open-pricing.php:26
|
3904 |
+
msgid "Let your store customers enter price for the product manually."
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: includes/class-wcj-product-open-pricing.php:78
|
3908 |
+
msgid "Open Pricing"
|
3909 |
+
msgstr ""
|
3910 |
+
|
3911 |
+
#: includes/class-wcj-product-open-pricing.php:222
|
3912 |
+
msgid ""
|
3913 |
+
"Booster: Free plugin's version is limited to only one open pricing product "
|
3914 |
+
"enabled at a time. You will need to get <a href=\"https://booster.io/plus/\" "
|
3915 |
+
"target=\"_blank\">Booster Plus</a> to add unlimited number of open pricing "
|
3916 |
+
"products."
|
3917 |
+
msgstr ""
|
3918 |
+
|
3919 |
+
#: includes/class-wcj-product-open-pricing.php:334
|
3920 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:73
|
3921 |
+
msgid "Price is required!"
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: includes/class-wcj-product-open-pricing.php:340
|
3925 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:81
|
3926 |
+
msgid "Entered price is too small!"
|
3927 |
+
msgstr ""
|
3928 |
+
|
3929 |
+
#: includes/class-wcj-product-open-pricing.php:345
|
3930 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:89
|
3931 |
+
msgid "Entered price is too big!"
|
3932 |
+
msgstr ""
|
3933 |
+
|
3934 |
+
#: includes/class-wcj-product-open-pricing.php:439
|
3935 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:29
|
3936 |
+
msgid "Name Your Price"
|
3937 |
+
msgstr ""
|
3938 |
+
|
3939 |
+
#: includes/class-wcj-product-price-by-formula.php:26
|
3940 |
+
msgid "Product Price by Formula"
|
3941 |
+
msgstr ""
|
3942 |
+
|
3943 |
+
#: includes/class-wcj-product-price-by-formula.php:27
|
3944 |
+
msgid "Set formula for automatic product price calculation."
|
3945 |
+
msgstr ""
|
3946 |
+
|
3947 |
+
#: includes/class-wcj-product-price-by-formula.php:136
|
3948 |
+
msgid "Error in formula"
|
3949 |
+
msgstr ""
|
3950 |
+
|
3951 |
+
#: includes/class-wcj-product-price-by-formula.php:228
|
3952 |
+
msgid ""
|
3953 |
+
"Booster: Free plugin's version is limited to only one price by formula "
|
3954 |
+
"product enabled at a time. You will need to get <a href=\"https://booster.io/"
|
3955 |
+
"plus/\" target=\"_blank\">Booster Plus</a> to add unlimited number of price "
|
3956 |
+
"by formula products."
|
3957 |
+
msgstr ""
|
3958 |
+
|
3959 |
+
#: includes/class-wcj-product-price-by-formula.php:262
|
3960 |
+
msgid "Final Price Preview"
|
3961 |
+
msgstr ""
|
3962 |
+
|
3963 |
+
#: includes/class-wcj-product-tabs.php:24
|
3964 |
+
msgid "Product Tabs"
|
3965 |
+
msgstr ""
|
3966 |
+
|
3967 |
+
#: includes/class-wcj-product-tabs.php:25
|
3968 |
+
msgid ""
|
3969 |
+
"Add custom product tabs - globally or per product. Customize or completely "
|
3970 |
+
"remove WooCommerce default product tabs."
|
3971 |
+
msgstr ""
|
3972 |
+
|
3973 |
+
#: includes/class-wcj-product-tabs.php:577
|
3974 |
+
msgid "Booster: Custom Tabs"
|
3975 |
+
msgstr ""
|
3976 |
+
|
3977 |
+
#: includes/class-wcj-product-tabs.php:604
|
3978 |
+
msgid "Total number of custom tabs"
|
3979 |
+
msgstr ""
|
3980 |
+
|
3981 |
+
#: includes/class-wcj-product-tabs.php:610
|
3982 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:213
|
3983 |
+
msgid "Click \"Update\" product after you change this number."
|
3984 |
+
msgstr ""
|
3985 |
+
|
3986 |
+
#: includes/class-wcj-product-tabs.php:625
|
3987 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:123
|
3988 |
+
#: includes/settings/wcj-settings-product-tabs.php:79
|
3989 |
+
msgid "Key"
|
3990 |
+
msgstr ""
|
3991 |
+
|
3992 |
+
#: includes/class-wcj-product-tabs.php:630
|
3993 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:21
|
3994 |
+
#: includes/settings/wcj-settings-related-products.php:59
|
3995 |
+
#: includes/settings/wcj-settings-related-products.php:84
|
3996 |
+
msgid "Order"
|
3997 |
+
msgstr ""
|
3998 |
+
|
3999 |
+
#: includes/class-wcj-product-tabs.php:635
|
4000 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:47
|
4001 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:73
|
4002 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:122
|
4003 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:138
|
4004 |
+
#: includes/settings/wcj-settings-cart.php:44
|
4005 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:41
|
4006 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:34
|
4007 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:65
|
4008 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:99
|
4009 |
+
#: includes/settings/wcj-settings-mini-cart.php:39
|
4010 |
+
#: includes/settings/wcj-settings-my-account.php:166
|
4011 |
+
#: includes/settings/wcj-settings-my-account.php:253
|
4012 |
+
#: includes/settings/wcj-settings-product-custom-info.php:88
|
4013 |
+
#: includes/settings/wcj-settings-product-tabs.php:92
|
4014 |
+
#: includes/widgets/class-wcj-widget-left-to-free-shipping.php:59
|
4015 |
+
msgid "Content"
|
4016 |
+
msgstr ""
|
4017 |
+
|
4018 |
+
#: includes/class-wcj-product-tabs.php:640
|
4019 |
+
#: includes/settings/wcj-settings-cart-customization.php:63
|
4020 |
+
#: includes/settings/wcj-settings-product-tabs.php:100
|
4021 |
+
msgid "Link"
|
4022 |
+
msgstr ""
|
4023 |
+
|
4024 |
+
#: includes/class-wcj-product-tabs.php:642
|
4025 |
+
#: includes/settings/wcj-settings-product-tabs.php:101
|
4026 |
+
msgid ""
|
4027 |
+
"If you wish to forward tab to new link, enter it here. In this case content "
|
4028 |
+
"is ignored. Leave blank to show content."
|
4029 |
+
msgstr ""
|
4030 |
+
|
4031 |
+
#: includes/class-wcj-product-tabs.php:646
|
4032 |
+
#: includes/settings/wcj-settings-product-tabs.php:108
|
4033 |
+
msgid "Link - Open in New Window"
|
4034 |
+
msgstr ""
|
4035 |
+
|
4036 |
+
#: includes/class-wcj-product-tabs.php:649
|
4037 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:101
|
4038 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
|
4039 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:60
|
4040 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
|
4041 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:64
|
4042 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
|
4043 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:134
|
4044 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:21
|
4045 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:43
|
4046 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
|
4047 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:79
|
4048 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:155
|
4049 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
|
4050 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:35
|
4051 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:45
|
4052 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:55
|
4053 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:20
|
4054 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:19
|
4055 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:25
|
4056 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:20
|
4057 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:32
|
4058 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:84
|
4059 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:265
|
4060 |
+
#: includes/settings/wcj-settings-product-addons.php:233
|
4061 |
+
#: includes/settings/wcj-settings-related-products.php:176
|
4062 |
+
#: includes/widgets/class-wcj-widget-country-switcher.php:82
|
4063 |
+
msgid "No"
|
4064 |
+
msgstr ""
|
4065 |
+
|
4066 |
+
#: includes/class-wcj-product-tabs.php:650
|
4067 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:94
|
4068 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
|
4069 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:61
|
4070 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
|
4071 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:65
|
4072 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:36
|
4073 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:133
|
4074 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:20
|
4075 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:42
|
4076 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
|
4077 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:78
|
4078 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:154
|
4079 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
|
4080 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:34
|
4081 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:44
|
4082 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:54
|
4083 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:19
|
4084 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:18
|
4085 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:26
|
4086 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:19
|
4087 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:31
|
4088 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:259
|
4089 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:50
|
4090 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:57
|
4091 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:75
|
4092 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:101
|
4093 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:108
|
4094 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:116
|
4095 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:124
|
4096 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:135
|
4097 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:154
|
4098 |
+
#: includes/settings/wcj-settings-product-addons.php:232
|
4099 |
+
#: includes/settings/wcj-settings-related-products.php:175
|
4100 |
+
#: includes/widgets/class-wcj-widget-country-switcher.php:83
|
4101 |
+
msgid "Yes"
|
4102 |
+
msgstr ""
|
4103 |
+
|
4104 |
+
#: includes/class-wcj-product-tabs.php:658
|
4105 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:22
|
4106 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
|
4107 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:71
|
4108 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:158
|
4109 |
+
#: includes/settings/wcj-settings-order-numbers.php:46
|
4110 |
+
#: includes/settings/wcj-settings-orders.php:180
|
4111 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:64
|
4112 |
+
msgid "Disabled"
|
4113 |
+
msgstr ""
|
4114 |
+
|
4115 |
+
#: includes/class-wcj-product-tabs.php:661
|
4116 |
+
#: includes/settings/wcj-settings-product-tabs.php:71
|
4117 |
+
#: includes/settings/wcj-settings-product-tabs.php:270
|
4118 |
+
msgid "Custom Product Tab"
|
4119 |
+
msgstr ""
|
4120 |
+
|
4121 |
+
#: includes/class-wcj-products-per-page.php:28
|
4122 |
+
msgid "Products per Page"
|
4123 |
+
msgstr ""
|
4124 |
+
|
4125 |
+
#: includes/class-wcj-products-per-page.php:29
|
4126 |
+
msgid "Add \"products per page\" selector to WooCommerce."
|
4127 |
+
msgstr ""
|
4128 |
+
|
4129 |
+
#: includes/class-wcj-products-per-page.php:85
|
4130 |
+
#: includes/settings/wcj-settings-products-per-page.php:63
|
4131 |
+
msgid ""
|
4132 |
+
"Products <strong>%from% - %to%</strong> from <strong>%total%</strong>. "
|
4133 |
+
"Products on page %select_form%"
|
4134 |
+
msgstr ""
|
4135 |
+
|
4136 |
+
#: includes/class-wcj-products-xml.php:26
|
4137 |
+
msgid "Products XML Feeds"
|
4138 |
+
msgstr ""
|
4139 |
+
|
4140 |
+
#: includes/class-wcj-products-xml.php:27
|
4141 |
+
msgid "Products XML feeds."
|
4142 |
+
msgstr ""
|
4143 |
+
|
4144 |
+
#: includes/class-wcj-products-xml.php:95
|
4145 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:210
|
4146 |
+
msgid "Once Weekly"
|
4147 |
+
msgstr ""
|
4148 |
+
|
4149 |
+
#: includes/class-wcj-products-xml.php:99
|
4150 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:214
|
4151 |
+
msgid "Once a Minute"
|
4152 |
+
msgstr ""
|
4153 |
+
|
4154 |
+
#: includes/class-wcj-products-xml.php:114
|
4155 |
+
msgid "An error has occurred while creating products XML file."
|
4156 |
+
msgstr ""
|
4157 |
+
|
4158 |
+
#: includes/class-wcj-products-xml.php:117
|
4159 |
+
#, php-format
|
4160 |
+
msgid "Products XML file #%s created successfully."
|
4161 |
+
msgstr ""
|
4162 |
+
|
4163 |
+
#: includes/class-wcj-purchase-data.php:28
|
4164 |
+
msgid "Cost of Goods"
|
4165 |
+
msgstr ""
|
4166 |
+
|
4167 |
+
#: includes/class-wcj-purchase-data.php:29
|
4168 |
+
msgid "Save product purchase costs data for admin reports."
|
4169 |
+
msgstr ""
|
4170 |
+
|
4171 |
+
#: includes/class-wcj-purchase-data.php:35
|
4172 |
+
msgid "\"WooCommerce Cost of Goods\" Data Import"
|
4173 |
+
msgstr ""
|
4174 |
+
|
4175 |
+
#: includes/class-wcj-purchase-data.php:36
|
4176 |
+
msgid "Import products costs from \"WooCommerce Cost of Goods\"."
|
4177 |
+
msgstr ""
|
4178 |
+
|
4179 |
+
#: includes/class-wcj-purchase-data.php:78
|
4180 |
+
msgid "Product Title"
|
4181 |
+
msgstr ""
|
4182 |
+
|
4183 |
+
#: includes/class-wcj-purchase-data.php:79
|
4184 |
+
msgid "WooCommerce Cost of Goods (source)"
|
4185 |
+
msgstr ""
|
4186 |
+
|
4187 |
+
#: includes/class-wcj-purchase-data.php:80
|
4188 |
+
msgid "Booster: Product cost (destination)"
|
4189 |
+
msgstr ""
|
4190 |
+
|
4191 |
+
#: includes/class-wcj-purchase-data.php:115
|
4192 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:139
|
4193 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:209
|
4194 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:122
|
4195 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:164
|
4196 |
+
msgid "Cost"
|
4197 |
+
msgstr ""
|
4198 |
+
|
4199 |
+
#: includes/class-wcj-purchase-data.php:118
|
4200 |
+
#: includes/class-wcj-purchase-data.php:181
|
4201 |
+
#: includes/class-wcj-purchase-data.php:268
|
4202 |
+
#: includes/functions/wcj-functions-reports.php:28
|
4203 |
+
#: includes/settings/wcj-settings-purchase-data.php:144
|
4204 |
+
#: includes/settings/wcj-settings-purchase-data.php:172
|
4205 |
+
msgid "Profit"
|
4206 |
+
msgstr ""
|
4207 |
+
|
4208 |
+
#: includes/class-wcj-purchase-data.php:184
|
4209 |
+
#: includes/settings/wcj-settings-purchase-data.php:153
|
4210 |
+
#: includes/settings/wcj-settings-purchase-data.php:179
|
4211 |
+
msgid "Purchase Cost"
|
4212 |
+
msgstr ""
|
4213 |
+
|
4214 |
+
#: includes/class-wcj-purchase-data.php:266
|
4215 |
+
msgid "Selling"
|
4216 |
+
msgstr ""
|
4217 |
+
|
4218 |
+
#: includes/class-wcj-purchase-data.php:267
|
4219 |
+
msgid "Buying"
|
4220 |
+
msgstr ""
|
4221 |
+
|
4222 |
+
#: includes/class-wcj-purchase-data.php:275
|
4223 |
+
msgid "Report"
|
4224 |
+
msgstr ""
|
4225 |
+
|
4226 |
+
#: includes/class-wcj-related-products.php:39
|
4227 |
+
msgid ""
|
4228 |
+
"Change displayed related products number, columns, order; relate by tag, "
|
4229 |
+
"category, product attribute or manually on per product basis. Hide related "
|
4230 |
+
"products completely."
|
4231 |
+
msgstr ""
|
4232 |
+
|
4233 |
+
#: includes/class-wcj-related-products.php:42
|
4234 |
+
#, php-format
|
4235 |
+
msgid ""
|
4236 |
+
"You may need to <a href=\"%s\">clear all products transients</a> to "
|
4237 |
+
"immediately see results on frontend after changing module's settings. "
|
4238 |
+
"Alternatively you can just update each product individually to clear its "
|
4239 |
+
"transients."
|
4240 |
+
msgstr ""
|
4241 |
+
|
4242 |
+
#: includes/class-wcj-reports.php:34
|
4243 |
+
msgid "Stock, sales, customers etc. reports."
|
4244 |
+
msgstr ""
|
4245 |
+
|
4246 |
+
#: includes/class-wcj-reports.php:74
|
4247 |
+
msgid "Booster: More Ranges - Months"
|
4248 |
+
msgstr ""
|
4249 |
+
|
4250 |
+
#: includes/class-wcj-reports.php:76 includes/class-wcj-reports.php:121
|
4251 |
+
msgid "Select Range"
|
4252 |
+
msgstr ""
|
4253 |
+
|
4254 |
+
#: includes/class-wcj-reports.php:119
|
4255 |
+
msgid "Booster: More Ranges"
|
4256 |
+
msgstr ""
|
4257 |
+
|
4258 |
+
#: includes/class-wcj-reports.php:222
|
4259 |
+
msgid "Booster: Product Sales (Daily)"
|
4260 |
+
msgstr ""
|
4261 |
+
|
4262 |
+
#: includes/class-wcj-reports.php:229
|
4263 |
+
msgid "Booster: Product Sales (Monthly)"
|
4264 |
+
msgstr ""
|
4265 |
+
|
4266 |
+
#: includes/class-wcj-reports.php:236
|
4267 |
+
msgid "Booster: Monthly Sales (with Currency Conversion)"
|
4268 |
+
msgstr ""
|
4269 |
+
|
4270 |
+
#: includes/class-wcj-reports.php:243
|
4271 |
+
msgid "Booster: Payment Gateways"
|
4272 |
+
msgstr ""
|
4273 |
+
|
4274 |
+
#: includes/class-wcj-reports.php:258
|
4275 |
+
msgid "Booster: All in stock"
|
4276 |
+
msgstr ""
|
4277 |
+
|
4278 |
+
#: includes/class-wcj-reports.php:265
|
4279 |
+
msgid "Booster: Understocked"
|
4280 |
+
msgstr ""
|
4281 |
+
|
4282 |
+
#: includes/class-wcj-reports.php:272
|
4283 |
+
msgid "Booster: Overstocked"
|
4284 |
+
msgstr ""
|
4285 |
+
|
4286 |
+
#: includes/class-wcj-reports.php:287
|
4287 |
+
msgid "Booster: Customers by Country"
|
4288 |
+
msgstr ""
|
4289 |
+
|
4290 |
+
#: includes/class-wcj-reports.php:294
|
4291 |
+
msgid "Booster: Customers by Country Sets"
|
4292 |
+
msgstr ""
|
4293 |
+
|
4294 |
+
#: includes/class-wcj-sale-flash.php:28
|
4295 |
+
#: includes/settings/wcj-settings-sale-flash.php:26
|
4296 |
+
msgid "Sale Flash"
|
4297 |
+
msgstr ""
|
4298 |
+
|
4299 |
+
#: includes/class-wcj-sale-flash.php:29
|
4300 |
+
msgid "Customize products sale flash."
|
4301 |
+
msgstr ""
|
4302 |
+
|
4303 |
+
#: includes/class-wcj-sale-flash.php:84 includes/class-wcj-sale-flash.php:120
|
4304 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:26
|
4305 |
+
#: includes/settings/wcj-settings-sale-flash.php:29
|
4306 |
+
#: includes/settings/wcj-settings-sale-flash.php:113
|
4307 |
+
msgid "Sale!"
|
4308 |
+
msgstr ""
|
4309 |
+
|
4310 |
+
#: includes/class-wcj-shipping-by-cities.php:25
|
4311 |
+
msgid "Shipping Methods by City or Postcode"
|
4312 |
+
msgstr ""
|
4313 |
+
|
4314 |
+
#: includes/class-wcj-shipping-by-cities.php:26
|
4315 |
+
msgid ""
|
4316 |
+
"Set shipping cities or postcodes to include/exclude for shipping methods to "
|
4317 |
+
"show up."
|
4318 |
+
msgstr ""
|
4319 |
+
|
4320 |
+
#: includes/class-wcj-shipping-by-cities.php:31
|
4321 |
+
msgid "Cities"
|
4322 |
+
msgstr ""
|
4323 |
+
|
4324 |
+
#: includes/class-wcj-shipping-by-cities.php:32
|
4325 |
+
msgid "Otherwise enter cities one per line."
|
4326 |
+
msgstr ""
|
4327 |
+
|
4328 |
+
#: includes/class-wcj-shipping-by-cities.php:38
|
4329 |
+
msgid "Postcodes"
|
4330 |
+
msgstr ""
|
4331 |
+
|
4332 |
+
#: includes/class-wcj-shipping-by-cities.php:39
|
4333 |
+
msgid "Otherwise enter postcodes one per line."
|
4334 |
+
msgstr ""
|
4335 |
+
|
4336 |
+
#: includes/class-wcj-shipping-by-cities.php:40
|
4337 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:121
|
4338 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:131
|
4339 |
+
msgid ""
|
4340 |
+
"Postcodes containing wildcards (e.g. CB23*) and fully numeric ranges (e.g. "
|
4341 |
+
"<code>90210...99000</code>) are also supported."
|
4342 |
+
msgstr ""
|
4343 |
+
|
4344 |
+
#: includes/class-wcj-shipping-by-order-amount.php:26
|
4345 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:33
|
4346 |
+
msgid "Shipping Methods by Min/Max Order Amount"
|
4347 |
+
msgstr ""
|
4348 |
+
|
4349 |
+
#: includes/class-wcj-shipping-by-order-amount.php:27
|
4350 |
+
msgid ""
|
4351 |
+
"Set minimum and/or maximum order amount for shipping methods to show up."
|
4352 |
+
msgstr ""
|
4353 |
+
|
4354 |
+
#: includes/class-wcj-shipping-by-order-qty.php:26
|
4355 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:33
|
4356 |
+
msgid "Shipping Methods by Min/Max Order Quantity"
|
4357 |
+
msgstr ""
|
4358 |
+
|
4359 |
+
#: includes/class-wcj-shipping-by-order-qty.php:27
|
4360 |
+
msgid ""
|
4361 |
+
"Set minimum and/or maximum order quantity for shipping methods to show up."
|
4362 |
+
msgstr ""
|
4363 |
+
|
4364 |
+
#: includes/class-wcj-shipping-by-products.php:26
|
4365 |
+
#: includes/settings/wcj-settings-shipping-options.php:57
|
4366 |
+
msgid "Shipping Methods by Products"
|
4367 |
+
msgstr ""
|
4368 |
+
|
4369 |
+
#: includes/class-wcj-shipping-by-products.php:27
|
4370 |
+
msgid ""
|
4371 |
+
"Set products, product categories, tags or shipping classes to include/"
|
4372 |
+
"exclude for shipping methods to show up."
|
4373 |
+
msgstr ""
|
4374 |
+
|
4375 |
+
#: includes/class-wcj-shipping-by-products.php:33
|
4376 |
+
msgid "Shipping methods by <strong>products</strong>."
|
4377 |
+
msgstr ""
|
4378 |
+
|
4379 |
+
#: includes/class-wcj-shipping-by-products.php:36
|
4380 |
+
#: includes/settings/wcj-settings-currency-per-product.php:223
|
4381 |
+
msgid "Product Categories"
|
4382 |
+
msgstr ""
|
4383 |
+
|
4384 |
+
#: includes/class-wcj-shipping-by-products.php:37
|
4385 |
+
msgid "Shipping methods by <strong>products categories</strong>."
|
4386 |
+
msgstr ""
|
4387 |
+
|
4388 |
+
#: includes/class-wcj-shipping-by-products.php:40
|
4389 |
+
#: includes/settings/wcj-settings-currency-per-product.php:235
|
4390 |
+
msgid "Product Tags"
|
4391 |
+
msgstr ""
|
4392 |
+
|
4393 |
+
#: includes/class-wcj-shipping-by-products.php:41
|
4394 |
+
msgid "Shipping methods by <strong>products tags</strong>."
|
4395 |
+
msgstr ""
|
4396 |
+
|
4397 |
+
#: includes/class-wcj-shipping-by-products.php:44
|
4398 |
+
msgid "Product Shipping Classes"
|
4399 |
+
msgstr ""
|
4400 |
+
|
4401 |
+
#: includes/class-wcj-shipping-by-products.php:168
|
4402 |
+
#: includes/functions/wcj-functions-shipping.php:108
|
4403 |
+
msgid "No shipping class"
|
4404 |
+
msgstr ""
|
4405 |
+
|
4406 |
+
#: includes/class-wcj-shipping-by-products.php:185
|
4407 |
+
msgid "\"Include\" Options"
|
4408 |
+
msgstr ""
|
4409 |
+
|
4410 |
+
#: includes/class-wcj-shipping-by-products.php:186
|
4411 |
+
msgid ""
|
4412 |
+
"Enable this checkbox if you want all products in cart to be valid (instead "
|
4413 |
+
"of at least one)."
|
4414 |
+
msgstr ""
|
4415 |
+
|
4416 |
+
#: includes/class-wcj-shipping-by-products.php:187
|
4417 |
+
msgid "Validate all"
|
4418 |
+
msgstr ""
|
4419 |
+
|
4420 |
+
#: includes/class-wcj-shipping-by-products.php:193
|
4421 |
+
msgid "Cart instead of Package"
|
4422 |
+
msgstr ""
|
4423 |
+
|
4424 |
+
#: includes/class-wcj-shipping-by-products.php:194
|
4425 |
+
msgid ""
|
4426 |
+
"Enable this checkbox if you want to check all cart products instead of "
|
4427 |
+
"package."
|
4428 |
+
msgstr ""
|
4429 |
+
|
4430 |
+
#: includes/class-wcj-shipping-by-products.php:203
|
4431 |
+
msgid "Add Products Variations"
|
4432 |
+
msgstr ""
|
4433 |
+
|
4434 |
+
#: includes/class-wcj-shipping-by-products.php:204
|
4435 |
+
msgid ""
|
4436 |
+
"Enable this checkbox if you want to add products variations to the products "
|
4437 |
+
"list."
|
4438 |
+
msgstr ""
|
4439 |
+
|
4440 |
+
#: includes/class-wcj-shipping-by-products.php:205
|
4441 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:25
|
4442 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:28
|
4443 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:23
|
4444 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:23
|
4445 |
+
#: includes/settings/wcj-settings-shipping-description.php:61
|
4446 |
+
#: includes/settings/wcj-settings-shipping-icons.php:63
|
4447 |
+
#: includes/settings/wcj-settings-shipping-time.php:33
|
4448 |
+
#: includes/settings/wcj-settings-shipping-time.php:42
|
4449 |
+
msgid "Save changes after enabling this option."
|
4450 |
+
msgstr ""
|
4451 |
+
|
4452 |
+
#: includes/class-wcj-shipping-by-time.php:27
|
4453 |
+
msgid "Shipping Methods by Current Date/Time"
|
4454 |
+
msgstr ""
|
4455 |
+
|
4456 |
+
#: includes/class-wcj-shipping-by-time.php:28
|
4457 |
+
msgid ""
|
4458 |
+
"Set date and/or time to include/exclude for shipping methods to show up."
|
4459 |
+
msgstr ""
|
4460 |
+
|
4461 |
+
#: includes/class-wcj-shipping-by-time.php:33
|
4462 |
+
msgid "Current Date/Time"
|
4463 |
+
msgstr ""
|
4464 |
+
|
4465 |
+
#: includes/class-wcj-shipping-by-time.php:34
|
4466 |
+
#, php-format
|
4467 |
+
msgid "Current time: %s."
|
4468 |
+
msgstr ""
|
4469 |
+
|
4470 |
+
#: includes/class-wcj-shipping-by-time.php:35
|
4471 |
+
#, php-format
|
4472 |
+
msgid ""
|
4473 |
+
"Time <em>from</em> and time <em>to</em> must be separated with %s symbol."
|
4474 |
+
msgstr ""
|
4475 |
+
|
4476 |
+
#: includes/class-wcj-shipping-by-time.php:36
|
4477 |
+
#, php-format
|
4478 |
+
msgid ""
|
4479 |
+
"Each time input must be set in format that is parsable by PHP %s function."
|
4480 |
+
msgstr ""
|
4481 |
+
|
4482 |
+
#: includes/class-wcj-shipping-by-time.php:38
|
4483 |
+
#, php-format
|
4484 |
+
msgid "Valid time input examples are: %s"
|
4485 |
+
msgstr ""
|
4486 |
+
|
4487 |
+
#: includes/class-wcj-shipping-by-time.php:112
|
4488 |
+
#, php-format
|
4489 |
+
msgid ""
|
4490 |
+
"According to current time, your time input will be parsed as: from %s to %s."
|
4491 |
+
msgstr ""
|
4492 |
+
|
4493 |
+
#: includes/class-wcj-shipping-by-time.php:115
|
4494 |
+
#, php-format
|
4495 |
+
msgid "Error: %s"
|
4496 |
+
msgstr ""
|
4497 |
+
|
4498 |
+
#: includes/class-wcj-shipping-by-time.php:115
|
4499 |
+
msgid "Time input is not parsable!"
|
4500 |
+
msgstr ""
|
4501 |
+
|
4502 |
+
#: includes/class-wcj-shipping-by-user-role.php:25
|
4503 |
+
msgid "Shipping Methods by Users"
|
4504 |
+
msgstr ""
|
4505 |
+
|
4506 |
+
#: includes/class-wcj-shipping-by-user-role.php:26
|
4507 |
+
msgid ""
|
4508 |
+
"Set user roles, users or membership plans to include/exclude for shipping "
|
4509 |
+
"methods to show up."
|
4510 |
+
msgstr ""
|
4511 |
+
|
4512 |
+
#: includes/class-wcj-shipping-by-user-role.php:33
|
4513 |
+
#: includes/settings/wcj-settings-multicurrency.php:261
|
4514 |
+
#: includes/settings/wcj-settings-order-min-amount.php:104
|
4515 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:134
|
4516 |
+
#, php-format
|
4517 |
+
msgid ""
|
4518 |
+
"Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
|
4519 |
+
"<a href=\"%s\">General</a> module."
|
4520 |
+
msgstr ""
|
4521 |
+
|
4522 |
+
#: includes/class-wcj-shipping-by-user-role.php:38
|
4523 |
+
msgid "Users"
|
4524 |
+
msgstr ""
|
4525 |
+
|
4526 |
+
#: includes/class-wcj-shipping-by-user-role.php:42
|
4527 |
+
msgid "User Membership Plans"
|
4528 |
+
msgstr ""
|
4529 |
+
|
4530 |
+
#: includes/class-wcj-shipping-by-user-role.php:44
|
4531 |
+
#, php-format
|
4532 |
+
msgid ""
|
4533 |
+
"This section requires <a target=\"_blank\" href=\"%s\">WooCommerce "
|
4534 |
+
"Memberships</a> plugin."
|
4535 |
+
msgstr ""
|
4536 |
+
|
4537 |
+
#: includes/class-wcj-shipping-calculator.php:23
|
4538 |
+
msgid "Shipping Calculator"
|
4539 |
+
msgstr ""
|
4540 |
+
|
4541 |
+
#: includes/class-wcj-shipping-calculator.php:24
|
4542 |
+
msgid "Customize WooCommerce shipping calculator on cart page."
|
4543 |
+
msgstr ""
|
4544 |
+
|
4545 |
+
#: includes/class-wcj-shipping-description.php:25
|
4546 |
+
msgid "Shipping Descriptions"
|
4547 |
+
msgstr ""
|
4548 |
+
|
4549 |
+
#: includes/class-wcj-shipping-description.php:26
|
4550 |
+
msgid "Add descriptions to shipping methods on frontend."
|
4551 |
+
msgstr ""
|
4552 |
+
|
4553 |
+
#: includes/class-wcj-shipping-icons.php:25
|
4554 |
+
msgid "Shipping Icons"
|
4555 |
+
msgstr ""
|
4556 |
+
|
4557 |
+
#: includes/class-wcj-shipping-icons.php:26
|
4558 |
+
msgid "Add icons to shipping methods on frontend."
|
4559 |
+
msgstr ""
|
4560 |
+
|
4561 |
+
#: includes/class-wcj-shipping-options.php:26
|
4562 |
+
msgid "Shipping Options"
|
4563 |
+
msgstr ""
|
4564 |
+
|
4565 |
+
#: includes/class-wcj-shipping-options.php:27
|
4566 |
+
msgid "Hide shipping when free is available."
|
4567 |
+
msgstr ""
|
4568 |
+
|
4569 |
+
#: includes/class-wcj-shipping-options.php:28
|
4570 |
+
msgid "Grant free shipping on per product basis."
|
4571 |
+
msgstr ""
|
4572 |
+
|
4573 |
+
#: includes/class-wcj-shipping-options.php:120
|
4574 |
+
msgid "Booster: Hide when free is available"
|
4575 |
+
msgstr ""
|
4576 |
+
|
4577 |
+
#: includes/class-wcj-shipping-options.php:128
|
4578 |
+
#: includes/settings/wcj-settings-shipping-options.php:28
|
4579 |
+
msgid ""
|
4580 |
+
"Available options: hide all; hide all except \"Local Pickup\"; hide \"Flat "
|
4581 |
+
"Rate\" only."
|
4582 |
+
msgstr ""
|
4583 |
+
|
4584 |
+
#: includes/class-wcj-shipping-options.php:132
|
4585 |
+
#: includes/settings/wcj-settings-shipping-options.php:32
|
4586 |
+
msgid "Hide all"
|
4587 |
+
msgstr ""
|
4588 |
+
|
4589 |
+
#: includes/class-wcj-shipping-options.php:133
|
4590 |
+
#: includes/settings/wcj-settings-shipping-options.php:33
|
4591 |
+
msgid "Hide all except \"Local Pickup\""
|
4592 |
+
msgstr ""
|
4593 |
+
|
4594 |
+
#: includes/class-wcj-shipping-options.php:134
|
4595 |
+
#: includes/settings/wcj-settings-shipping-options.php:34
|
4596 |
+
msgid "Hide \"Flat Rate\" only"
|
4597 |
+
msgstr ""
|
4598 |
+
|
4599 |
+
#: includes/class-wcj-shipping-time.php:25
|
4600 |
+
msgid "Shipping Time"
|
4601 |
+
msgstr ""
|
4602 |
+
|
4603 |
+
#: includes/class-wcj-shipping-time.php:26
|
4604 |
+
#, php-format
|
4605 |
+
msgid ""
|
4606 |
+
"After you set estimated shipping time here, you can display it on frontend "
|
4607 |
+
"with %s shortcodes."
|
4608 |
+
msgstr ""
|
4609 |
+
|
4610 |
+
#: includes/class-wcj-shipping-time.php:28
|
4611 |
+
msgid "Add delivery time estimation to shipping methods."
|
4612 |
+
msgstr ""
|
4613 |
+
|
4614 |
+
#: includes/class-wcj-shipping.php:23
|
4615 |
+
#: includes/settings/wcj-settings-shipping.php:16
|
4616 |
+
#: includes/settings/wcj-settings-shipping.php:23
|
4617 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:194
|
4618 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:110
|
4619 |
+
msgid "Custom Shipping"
|
4620 |
+
msgstr ""
|
4621 |
+
|
4622 |
+
#: includes/class-wcj-shipping.php:24
|
4623 |
+
msgid "Add multiple custom shipping methods to WooCommerce."
|
4624 |
+
msgstr ""
|
4625 |
+
|
4626 |
+
#: includes/class-wcj-sku.php:23 includes/class-wcj-sku.php:539
|
4627 |
+
#: includes/export/class-wcj-fields-helper.php:283
|
4628 |
+
msgid "SKU"
|
4629 |
+
msgstr ""
|
4630 |
+
|
4631 |
+
#: includes/class-wcj-sku.php:24
|
4632 |
+
msgid "Generate SKUs automatically. Search by SKU on frontend."
|
4633 |
+
msgstr ""
|
4634 |
+
|
4635 |
+
#: includes/class-wcj-sku.php:30
|
4636 |
+
msgid "Autogenerate SKUs"
|
4637 |
+
msgstr ""
|
4638 |
+
|
4639 |
+
#: includes/class-wcj-sku.php:31
|
4640 |
+
msgid "The tool generates and sets product SKUs for existing products."
|
4641 |
+
msgstr ""
|
4642 |
+
|
4643 |
+
#: includes/class-wcj-sku.php:540
|
4644 |
+
msgid "Old SKU"
|
4645 |
+
msgstr ""
|
4646 |
+
|
4647 |
+
#: includes/class-wcj-sku.php:546
|
4648 |
+
msgid "SKUs generated and set successfully!"
|
4649 |
+
msgstr ""
|
4650 |
+
|
4651 |
+
#: includes/class-wcj-sku.php:556
|
4652 |
+
msgid "Preview SKUs"
|
4653 |
+
msgstr ""
|
4654 |
+
|
4655 |
+
#: includes/class-wcj-sku.php:558
|
4656 |
+
msgid "Set SKUs"
|
4657 |
+
msgstr ""
|
4658 |
+
|
4659 |
+
#: includes/class-wcj-sku.php:561
|
4660 |
+
msgid ""
|
4661 |
+
"You can optionally limit affected products by main product's ID (set option "
|
4662 |
+
"to zero to ignore):"
|
4663 |
+
msgstr ""
|
4664 |
+
|
4665 |
+
#: includes/class-wcj-sku.php:563
|
4666 |
+
msgid "Min ID"
|
4667 |
+
msgstr ""
|
4668 |
+
|
4669 |
+
#: includes/class-wcj-sku.php:566
|
4670 |
+
msgid "Max ID"
|
4671 |
+
msgstr ""
|
4672 |
+
|
4673 |
+
#: includes/class-wcj-sorting.php:24
|
4674 |
+
msgid "Sorting"
|
4675 |
+
msgstr ""
|
4676 |
+
|
4677 |
+
#: includes/class-wcj-sorting.php:25
|
4678 |
+
msgid ""
|
4679 |
+
"Add more sorting options; rename or remove default sorting options; "
|
4680 |
+
"rearrange sorting options on frontend."
|
4681 |
+
msgstr ""
|
4682 |
+
|
4683 |
+
#: includes/class-wcj-sorting.php:214
|
4684 |
+
msgid "Default sorting"
|
4685 |
+
msgstr ""
|
4686 |
+
|
4687 |
+
#: includes/class-wcj-sorting.php:215
|
4688 |
+
msgid "Sort by popularity"
|
4689 |
+
msgstr ""
|
4690 |
+
|
4691 |
+
#: includes/class-wcj-sorting.php:216
|
4692 |
+
msgid "Sort by average rating"
|
4693 |
+
msgstr ""
|
4694 |
+
|
4695 |
+
#: includes/class-wcj-sorting.php:217
|
4696 |
+
msgid "Sort by newness"
|
4697 |
+
msgstr ""
|
4698 |
+
|
4699 |
+
#: includes/class-wcj-sorting.php:218
|
4700 |
+
msgid "Sort by price: low to high"
|
4701 |
+
msgstr ""
|
4702 |
+
|
4703 |
+
#: includes/class-wcj-sorting.php:219
|
4704 |
+
msgid "Sort by price: high to low"
|
4705 |
+
msgstr ""
|
4706 |
+
|
4707 |
+
#: includes/class-wcj-stock.php:28
|
4708 |
+
msgid "Products stock display management."
|
4709 |
+
msgstr ""
|
4710 |
+
|
4711 |
+
#: includes/class-wcj-tax-display.php:25
|
4712 |
+
msgid "Tax Display"
|
4713 |
+
msgstr ""
|
4714 |
+
|
4715 |
+
#: includes/class-wcj-tax-display.php:26
|
4716 |
+
msgid "Customize WooCommerce tax display."
|
4717 |
+
msgstr ""
|
4718 |
+
|
4719 |
+
#: includes/class-wcj-template-editor.php:25
|
4720 |
+
msgid "Template Editor"
|
4721 |
+
msgstr ""
|
4722 |
+
|
4723 |
+
#: includes/class-wcj-template-editor.php:26
|
4724 |
+
msgid "WooCommerce template editor."
|
4725 |
+
msgstr ""
|
4726 |
+
|
4727 |
+
#: includes/class-wcj-track-users.php:26
|
4728 |
+
msgid "User Tracking"
|
4729 |
+
msgstr ""
|
4730 |
+
|
4731 |
+
#: includes/class-wcj-track-users.php:27
|
4732 |
+
msgid "Track your users in WooCommerce."
|
4733 |
+
msgstr ""
|
4734 |
+
|
4735 |
+
#: includes/class-wcj-track-users.php:33
|
4736 |
+
msgid "Last 24 hours"
|
4737 |
+
msgstr ""
|
4738 |
+
|
4739 |
+
#: includes/class-wcj-track-users.php:35
|
4740 |
+
msgid "Last 28 days"
|
4741 |
+
msgstr ""
|
4742 |
+
|
4743 |
+
#: includes/class-wcj-track-users.php:78
|
4744 |
+
msgid "Referer"
|
4745 |
+
msgstr ""
|
4746 |
+
|
4747 |
+
#: includes/class-wcj-track-users.php:81
|
4748 |
+
msgid "Referer Type"
|
4749 |
+
msgstr ""
|
4750 |
+
|
4751 |
+
#: includes/class-wcj-track-users.php:163
|
4752 |
+
msgid "Acquisition Source"
|
4753 |
+
msgstr ""
|
4754 |
+
|
4755 |
+
#: includes/class-wcj-track-users.php:197
|
4756 |
+
#: includes/settings/wcj-settings-products-xml.php:120
|
4757 |
+
msgid "URL:"
|
4758 |
+
msgstr ""
|
4759 |
+
|
4760 |
+
#: includes/class-wcj-track-users.php:198
|
4761 |
+
msgid "Type:"
|
4762 |
+
msgstr ""
|
4763 |
+
|
4764 |
+
#: includes/class-wcj-track-users.php:251
|
4765 |
+
#, php-format
|
4766 |
+
msgid "Top %d countries by visits"
|
4767 |
+
msgstr ""
|
4768 |
+
|
4769 |
+
#: includes/class-wcj-track-users.php:319
|
4770 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:43
|
4771 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:145
|
4772 |
+
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
|
4773 |
+
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
|
4774 |
+
msgid "Country"
|
4775 |
+
msgstr ""
|
4776 |
+
|
4777 |
+
#: includes/class-wcj-track-users.php:319
|
4778 |
+
msgid "Visits"
|
4779 |
+
msgstr ""
|
4780 |
+
|
4781 |
+
#: includes/class-wcj-track-users.php:329
|
4782 |
+
msgid "No stats yet."
|
4783 |
+
msgstr ""
|
4784 |
+
|
4785 |
+
#: includes/class-wcj-track-users.php:335
|
4786 |
+
msgid "Delete all tracking data"
|
4787 |
+
msgstr ""
|
4788 |
+
|
4789 |
+
#: includes/class-wcj-track-users.php:340
|
4790 |
+
#, php-format
|
4791 |
+
msgid "Stats generated at %s. Next update is scheduled at %s."
|
4792 |
+
msgstr ""
|
4793 |
+
|
4794 |
+
#: includes/class-wcj-track-users.php:341
|
4795 |
+
msgid "Update now"
|
4796 |
+
msgstr ""
|
4797 |
+
|
4798 |
+
#: includes/class-wcj-upsells.php:29
|
4799 |
+
msgid "Upsells"
|
4800 |
+
msgstr ""
|
4801 |
+
|
4802 |
+
#: includes/class-wcj-upsells.php:30
|
4803 |
+
msgid ""
|
4804 |
+
"Upsells are products which you recommend instead of the currently viewed "
|
4805 |
+
"product, for example, products that are more profitable or better quality or "
|
4806 |
+
"more expensive."
|
4807 |
+
msgstr ""
|
4808 |
+
|
4809 |
+
#: includes/class-wcj-upsells.php:31
|
4810 |
+
msgid "Customize upsells products display."
|
4811 |
+
msgstr ""
|
4812 |
+
|
4813 |
+
#: includes/class-wcj-url-coupons.php:25
|
4814 |
+
msgid "URL Coupons"
|
4815 |
+
msgstr ""
|
4816 |
+
|
4817 |
+
#: includes/class-wcj-url-coupons.php:26
|
4818 |
+
msgid "WooCommerce URL coupons."
|
4819 |
+
msgstr ""
|
4820 |
+
|
4821 |
+
#: includes/class-wcj-wholesale-price.php:27
|
4822 |
+
msgid "Wholesale Price"
|
4823 |
+
msgstr ""
|
4824 |
+
|
4825 |
+
#: includes/class-wcj-wholesale-price.php:28
|
4826 |
+
msgid ""
|
4827 |
+
"Set wholesale pricing depending on product quantity in cart (buy more pay "
|
4828 |
+
"less)."
|
4829 |
+
msgstr ""
|
4830 |
+
|
4831 |
+
#: includes/class-wcj-wpml.php:24
|
4832 |
+
msgid "Booster WPML"
|
4833 |
+
msgstr ""
|
4834 |
+
|
4835 |
+
#: includes/class-wcj-wpml.php:25
|
4836 |
+
msgid "Booster for WooCommerce basic WPML support."
|
4837 |
+
msgstr ""
|
4838 |
+
|
4839 |
+
#: includes/class-wcj-wpml.php:137
|
4840 |
+
msgid "File wpml-config.xml successfully regenerated!"
|
4841 |
+
msgstr ""
|
4842 |
+
|
4843 |
+
#: includes/classes/class-wcj-module-product-by-condition.php:116
|
4844 |
+
msgid "— No change —"
|
4845 |
+
msgstr ""
|
4846 |
+
|
4847 |
+
#: includes/classes/class-wcj-module-product-by-condition.php:123
|
4848 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:29
|
4849 |
+
msgid "Visible"
|
4850 |
+
msgstr ""
|
4851 |
+
|
4852 |
+
#: includes/classes/class-wcj-module-product-by-condition.php:132
|
4853 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:41
|
4854 |
+
msgid "Invisible"
|
4855 |
+
msgstr ""
|
4856 |
+
|
4857 |
+
#: includes/classes/class-wcj-module.php:153
|
4858 |
+
#, php-format
|
4859 |
+
msgid ""
|
4860 |
+
"Booster: Free plugin's version is limited to only one \"%1$s\" product with "
|
4861 |
+
"settings on per product basis enabled at a time. You will need to get <a "
|
4862 |
+
"href=\"%2$s\" target=\"_blank\">Booster Plus</a> to add unlimited number of "
|
4863 |
+
"\"%1$s\" products."
|
4864 |
+
msgstr ""
|
4865 |
+
|
4866 |
+
#: includes/classes/class-wcj-module.php:473
|
4867 |
+
#, php-format
|
4868 |
+
msgid "Selected: %s."
|
4869 |
+
msgstr ""
|
4870 |
+
|
4871 |
+
#: includes/classes/class-wcj-module.php:542
|
4872 |
+
msgid "Back to Module Settings"
|
4873 |
+
msgstr ""
|
4874 |
+
|
4875 |
+
#: includes/classes/class-wcj-module.php:560
|
4876 |
+
#: includes/settings/wcj-settings-wpml.php:87
|
4877 |
+
msgid "Module Tools"
|
4878 |
+
msgstr ""
|
4879 |
+
|
4880 |
+
#: includes/classes/class-wcj-module.php:633
|
4881 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:64
|
4882 |
+
msgid "enabled"
|
4883 |
+
msgstr ""
|
4884 |
+
|
4885 |
+
#: includes/classes/class-wcj-module.php:634
|
4886 |
+
msgid "disabled"
|
4887 |
+
msgstr ""
|
4888 |
+
|
4889 |
+
#: includes/classes/class-wcj-module.php:642
|
4890 |
+
#: includes/settings/wcj-settings-product-tabs.php:172
|
4891 |
+
#: includes/settings/wcj-settings-product-tabs.php:184
|
4892 |
+
#: includes/settings/wcj-settings-product-tabs.php:196
|
4893 |
+
#: includes/settings/wcj-settings-product-tabs.php:208
|
4894 |
+
msgid "Deprecated"
|
4895 |
+
msgstr ""
|
4896 |
+
|
4897 |
+
#: includes/classes/class-wcj-module.php:680
|
4898 |
+
msgid "Reset Settings"
|
4899 |
+
msgstr ""
|
4900 |
+
|
4901 |
+
#: includes/classes/class-wcj-module.php:686
|
4902 |
+
msgid "Reset Module to Default Settings"
|
4903 |
+
msgstr ""
|
4904 |
+
|
4905 |
+
#: includes/classes/class-wcj-module.php:687
|
4906 |
+
msgid "Reset Submodule to Default Settings"
|
4907 |
+
msgstr ""
|
4908 |
+
|
4909 |
+
#: includes/classes/class-wcj-module.php:691
|
4910 |
+
msgid "Reset settings"
|
4911 |
+
msgstr ""
|
4912 |
+
|
4913 |
+
#: includes/classes/class-wcj-module.php:725
|
4914 |
+
msgid "Module Options"
|
4915 |
+
msgstr ""
|
4916 |
+
|
4917 |
+
#: includes/classes/class-wcj-module.php:732
|
4918 |
+
msgid "Enable Module"
|
4919 |
+
msgstr ""
|
4920 |
+
|
4921 |
+
#: includes/classes/class-wcj-pdf-invoice.php:88
|
4922 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:61
|
4923 |
+
msgid "Company Name"
|
4924 |
+
msgstr ""
|
4925 |
+
|
4926 |
+
#: includes/classes/class-wcj-pdf-invoice.php:251
|
4927 |
+
#: includes/functions/wcj-functions-general.php:145
|
4928 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:245
|
4929 |
+
msgid "Unexpected error"
|
4930 |
+
msgstr ""
|
4931 |
+
|
4932 |
+
#: includes/classes/class-wcj-shortcodes.php:109
|
4933 |
+
#: includes/shortcodes/class-wcj-shortcodes-general.php:517
|
4934 |
+
#, php-format
|
4935 |
+
msgid "\"%s\" module is not enabled!"
|
4936 |
+
msgstr ""
|
4937 |
+
|
4938 |
+
#: includes/classes/class-wcj-tcpdf.php:40
|
4939 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:31
|
4940 |
+
msgid "Page %page_number% / %total_pages%"
|
4941 |
+
msgstr ""
|
4942 |
+
|
4943 |
+
#: includes/core/class-wcj-admin.php:57
|
4944 |
+
msgid "Please update <strong>Booster Plus for WooCommerce</strong> plugin."
|
4945 |
+
msgstr ""
|
4946 |
+
|
4947 |
+
#: includes/core/class-wcj-admin.php:59
|
4948 |
+
#, php-format
|
4949 |
+
msgid ""
|
4950 |
+
"Visit <a target=\"_blank\" href=\"%s\">your account page</a> on booster.io "
|
4951 |
+
"to download the latest Booster Plus version."
|
4952 |
+
msgstr ""
|
4953 |
+
|
4954 |
+
#: includes/core/class-wcj-admin.php:63
|
4955 |
+
#, php-format
|
4956 |
+
msgid "Click <a target=\"_blank\" href=\"%s\">here</a> for more info."
|
4957 |
+
msgstr ""
|
4958 |
+
|
4959 |
+
#: includes/core/class-wcj-admin.php:81
|
4960 |
+
#, php-format
|
4961 |
+
msgid ""
|
4962 |
+
"If you like <strong>Booster for WooCommerce</strong> please leave us a %s "
|
4963 |
+
"rating. Thank you, we couldn't have done it without you!"
|
4964 |
+
msgstr ""
|
4965 |
+
|
4966 |
+
#: includes/core/class-wcj-admin.php:98
|
4967 |
+
msgid "Booster Settings"
|
4968 |
+
msgstr ""
|
4969 |
+
|
4970 |
+
#: includes/core/class-wcj-admin.php:114
|
4971 |
+
msgid "Docs"
|
4972 |
+
msgstr ""
|
4973 |
+
|
4974 |
+
#: includes/core/class-wcj-admin.php:117
|
4975 |
+
msgid "Unlock all"
|
4976 |
+
msgstr ""
|
4977 |
+
|
4978 |
+
#: includes/emails/class-wc-email-wcj-custom.php:32
|
4979 |
+
msgid ""
|
4980 |
+
"Custom emails are sent to the recipient list when selected triggers are "
|
4981 |
+
"called."
|
4982 |
+
msgstr ""
|
4983 |
+
|
4984 |
+
#: includes/emails/class-wc-email-wcj-custom.php:34
|
4985 |
+
msgid "Custom Heading"
|
4986 |
+
msgstr ""
|
4987 |
+
|
4988 |
+
#: includes/emails/class-wc-email-wcj-custom.php:35
|
4989 |
+
msgid "[{site_title}] Custom Subject - Order ({order_number}) - {order_date}"
|
4990 |
+
msgstr ""
|
4991 |
+
|
4992 |
+
#: includes/emails/class-wc-email-wcj-custom.php:225
|
4993 |
+
#, php-format
|
4994 |
+
msgid "New order (%s)"
|
4995 |
+
msgstr ""
|
4996 |
+
|
4997 |
+
#: includes/emails/class-wc-email-wcj-custom.php:226
|
4998 |
+
#, php-format
|
4999 |
+
msgid "Order status updated to %s"
|
5000 |
+
msgstr ""
|
5001 |
+
|
5002 |
+
#: includes/emails/class-wc-email-wcj-custom.php:229
|
5003 |
+
#, php-format
|
5004 |
+
msgid "Order status %s to %s"
|
5005 |
+
msgstr ""
|
5006 |
+
|
5007 |
+
#: includes/emails/class-wc-email-wcj-custom.php:236
|
5008 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:48
|
5009 |
+
#: includes/settings/wcj-settings-admin-products-list.php:19
|
5010 |
+
#: includes/settings/wcj-settings-admin-products-list.php:75
|
5011 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:121
|
5012 |
+
#: includes/settings/wcj-settings-checkout-fees.php:46
|
5013 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:101
|
5014 |
+
msgid "Enable/Disable"
|
5015 |
+
msgstr ""
|
5016 |
+
|
5017 |
+
#: includes/emails/class-wc-email-wcj-custom.php:238
|
5018 |
+
msgid "Enable this email notification"
|
5019 |
+
msgstr ""
|
5020 |
+
|
5021 |
+
#: includes/emails/class-wc-email-wcj-custom.php:242
|
5022 |
+
msgid "Trigger(s)"
|
5023 |
+
msgstr ""
|
5024 |
+
|
5025 |
+
#: includes/emails/class-wc-email-wcj-custom.php:246
|
5026 |
+
msgid ""
|
5027 |
+
"Please note, that all new orders in WooCommerce by default are created with "
|
5028 |
+
"Pending Payment status. If you want to change the default order status - you "
|
5029 |
+
"can use Booster's \"Order Custom Statuses\" module (in WooCommerce > "
|
5030 |
+
"Settings > Booster > Shipping & Orders > Order Custom Statuses)."
|
5031 |
+
msgstr ""
|
5032 |
+
|
5033 |
+
#: includes/emails/class-wc-email-wcj-custom.php:249
|
5034 |
+
msgid "New order (Any status)"
|
5035 |
+
msgstr ""
|
5036 |
+
|
5037 |
+
#: includes/emails/class-wc-email-wcj-custom.php:254
|
5038 |
+
msgid "Reset password notification"
|
5039 |
+
msgstr ""
|
5040 |
+
|
5041 |
+
#: includes/emails/class-wc-email-wcj-custom.php:255
|
5042 |
+
msgid "Order fully refunded notification"
|
5043 |
+
msgstr ""
|
5044 |
+
|
5045 |
+
#: includes/emails/class-wc-email-wcj-custom.php:256
|
5046 |
+
msgid "Order partially refunded notification"
|
5047 |
+
msgstr ""
|
5048 |
+
|
5049 |
+
#: includes/emails/class-wc-email-wcj-custom.php:257
|
5050 |
+
msgid "New customer note notification"
|
5051 |
+
msgstr ""
|
5052 |
+
|
5053 |
+
#: includes/emails/class-wc-email-wcj-custom.php:258
|
5054 |
+
msgid "Low stock notification"
|
5055 |
+
msgstr ""
|
5056 |
+
|
5057 |
+
#: includes/emails/class-wc-email-wcj-custom.php:259
|
5058 |
+
msgid "No stock notification"
|
5059 |
+
msgstr ""
|
5060 |
+
|
5061 |
+
#: includes/emails/class-wc-email-wcj-custom.php:260
|
5062 |
+
msgid "Product on backorder notification"
|
5063 |
+
msgstr ""
|
5064 |
+
|
5065 |
+
#: includes/emails/class-wc-email-wcj-custom.php:261
|
5066 |
+
msgid "Created customer notification"
|
5067 |
+
msgstr ""
|
5068 |
+
|
5069 |
+
#: includes/emails/class-wc-email-wcj-custom.php:268
|
5070 |
+
msgid "Recipient(s)"
|
5071 |
+
msgstr ""
|
5072 |
+
|
5073 |
+
#: includes/emails/class-wc-email-wcj-custom.php:270
|
5074 |
+
#, php-format
|
5075 |
+
msgid ""
|
5076 |
+
"Enter recipients (comma separated) for this email. Defaults to <code>%s</"
|
5077 |
+
"code>."
|
5078 |
+
msgstr ""
|
5079 |
+
|
5080 |
+
#: includes/emails/class-wc-email-wcj-custom.php:271
|
5081 |
+
msgid "Or enter <code>%customer%</code> to send to customer billing email."
|
5082 |
+
msgstr ""
|
5083 |
+
|
5084 |
+
#: includes/emails/class-wc-email-wcj-custom.php:277
|
5085 |
+
msgid "Subject"
|
5086 |
+
msgstr ""
|
5087 |
+
|
5088 |
+
#: includes/emails/class-wc-email-wcj-custom.php:279
|
5089 |
+
#, php-format
|
5090 |
+
msgid ""
|
5091 |
+
"This controls the email subject line. Leave blank to use the default "
|
5092 |
+
"subject: <code>%s</code>."
|
5093 |
+
msgstr ""
|
5094 |
+
|
5095 |
+
#: includes/emails/class-wc-email-wcj-custom.php:285
|
5096 |
+
msgid "Email type"
|
5097 |
+
msgstr ""
|
5098 |
+
|
5099 |
+
#: includes/emails/class-wc-email-wcj-custom.php:287
|
5100 |
+
msgid "Choose which format of email to send."
|
5101 |
+
msgstr ""
|
5102 |
+
|
5103 |
+
#: includes/emails/class-wc-email-wcj-custom.php:293
|
5104 |
+
msgid "Wrap in WC Email Template"
|
5105 |
+
msgstr ""
|
5106 |
+
|
5107 |
+
#: includes/emails/class-wc-email-wcj-custom.php:299
|
5108 |
+
msgid ""
|
5109 |
+
"WC Email Heading. Used only if \"Wrap in WC Email Template\" is enabled and "
|
5110 |
+
"only for HTML templates."
|
5111 |
+
msgstr ""
|
5112 |
+
|
5113 |
+
#: includes/emails/class-wc-email-wcj-custom.php:300
|
5114 |
+
#, php-format
|
5115 |
+
msgid ""
|
5116 |
+
"This controls the main heading contained within the email notification. "
|
5117 |
+
"Leave blank to use the default heading: <code>%s</code>."
|
5118 |
+
msgstr ""
|
5119 |
+
|
5120 |
+
#: includes/emails/class-wc-email-wcj-custom.php:306
|
5121 |
+
msgid "HTML template"
|
5122 |
+
msgstr ""
|
5123 |
+
|
5124 |
+
#: includes/emails/class-wc-email-wcj-custom.php:308
|
5125 |
+
#: includes/emails/class-wc-email-wcj-custom.php:317
|
5126 |
+
msgid "You can use shortcodes here. E.g. Booster's order shortcodes."
|
5127 |
+
msgstr ""
|
5128 |
+
|
5129 |
+
#: includes/emails/class-wc-email-wcj-custom.php:315
|
5130 |
+
msgid "Plain text template"
|
5131 |
+
msgstr ""
|
5132 |
+
|
5133 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:22
|
5134 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:36
|
5135 |
+
#: includes/settings/wcj-settings-products-xml.php:135
|
5136 |
+
msgid "Update Every Minute"
|
5137 |
+
msgstr ""
|
5138 |
+
|
5139 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:23
|
5140 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:37
|
5141 |
+
#: includes/settings/wcj-settings-products-xml.php:136
|
5142 |
+
msgid "Update Hourly"
|
5143 |
+
msgstr ""
|
5144 |
+
|
5145 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:24
|
5146 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:38
|
5147 |
+
#: includes/settings/wcj-settings-products-xml.php:137
|
5148 |
+
msgid "Update Twice Daily"
|
5149 |
+
msgstr ""
|
5150 |
+
|
5151 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:25
|
5152 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:39
|
5153 |
+
#: includes/settings/wcj-settings-products-xml.php:138
|
5154 |
+
msgid "Update Daily"
|
5155 |
+
msgstr ""
|
5156 |
+
|
5157 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:26
|
5158 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:40
|
5159 |
+
#: includes/settings/wcj-settings-products-xml.php:139
|
5160 |
+
msgid "Update Weekly"
|
5161 |
+
msgstr ""
|
5162 |
+
|
5163 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:185
|
5164 |
+
msgid "Cron job: exchange rates successfully updated"
|
5165 |
+
msgstr ""
|
5166 |
+
|
5167 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:187
|
5168 |
+
msgid "Cron job: exchange rates not updated, as currency_from == currency_to"
|
5169 |
+
msgstr ""
|
5170 |
+
|
5171 |
+
#: includes/exchange-rates/class-wcj-exchange-rates-crons.php:190
|
5172 |
+
msgid "Cron job: exchange rates update failed"
|
5173 |
+
msgstr ""
|
5174 |
+
|
5175 |
+
#: includes/export/class-wcj-fields-helper.php:34
|
5176 |
+
msgid "Customer Nr."
|
5177 |
+
msgstr ""
|
5178 |
+
|
5179 |
+
#: includes/export/class-wcj-fields-helper.php:35
|
5180 |
+
#: includes/export/class-wcj-fields-helper.php:131
|
5181 |
+
#: includes/export/class-wcj-fields-helper.php:216
|
5182 |
+
msgid "Billing Email"
|
5183 |
+
msgstr ""
|
5184 |
+
|
5185 |
+
#: includes/export/class-wcj-fields-helper.php:36
|
5186 |
+
#: includes/export/class-wcj-fields-helper.php:121
|
5187 |
+
#: includes/export/class-wcj-fields-helper.php:206
|
5188 |
+
msgid "Billing First Name"
|
5189 |
+
msgstr ""
|
5190 |
+
|
5191 |
+
#: includes/export/class-wcj-fields-helper.php:37
|
5192 |
+
#: includes/export/class-wcj-fields-helper.php:122
|
5193 |
+
#: includes/export/class-wcj-fields-helper.php:207
|
5194 |
+
msgid "Billing Last Name"
|
5195 |
+
msgstr ""
|
5196 |
+
|
5197 |
+
#: includes/export/class-wcj-fields-helper.php:38
|
5198 |
+
#: includes/export/class-wcj-fields-helper.php:123
|
5199 |
+
#: includes/export/class-wcj-fields-helper.php:208
|
5200 |
+
msgid "Billing Company"
|
5201 |
+
msgstr ""
|
5202 |
+
|
5203 |
+
#: includes/export/class-wcj-fields-helper.php:39
|
5204 |
+
#: includes/export/class-wcj-fields-helper.php:124
|
5205 |
+
#: includes/export/class-wcj-fields-helper.php:209
|
5206 |
+
msgid "Billing Address 1"
|
5207 |
+
msgstr ""
|
5208 |
+
|
5209 |
+
#: includes/export/class-wcj-fields-helper.php:40
|
5210 |
+
#: includes/export/class-wcj-fields-helper.php:125
|
5211 |
+
#: includes/export/class-wcj-fields-helper.php:210
|
5212 |
+
msgid "Billing Address 2"
|
5213 |
+
msgstr ""
|
5214 |
+
|
5215 |
+
#: includes/export/class-wcj-fields-helper.php:41
|
5216 |
+
#: includes/export/class-wcj-fields-helper.php:126
|
5217 |
+
#: includes/export/class-wcj-fields-helper.php:211
|
5218 |
+
msgid "Billing City"
|
5219 |
+
msgstr ""
|
5220 |
+
|
5221 |
+
#: includes/export/class-wcj-fields-helper.php:42
|
5222 |
+
#: includes/export/class-wcj-fields-helper.php:127
|
5223 |
+
#: includes/export/class-wcj-fields-helper.php:212
|
5224 |
+
msgid "Billing State"
|
5225 |
+
msgstr ""
|
5226 |
+
|
5227 |
+
#: includes/export/class-wcj-fields-helper.php:43
|
5228 |
+
#: includes/export/class-wcj-fields-helper.php:128
|
5229 |
+
#: includes/export/class-wcj-fields-helper.php:213
|
5230 |
+
msgid "Billing Postcode"
|
5231 |
+
msgstr ""
|
5232 |
+
|
5233 |
+
#: includes/export/class-wcj-fields-helper.php:45
|
5234 |
+
#: includes/export/class-wcj-fields-helper.php:130
|
5235 |
+
#: includes/export/class-wcj-fields-helper.php:215
|
5236 |
+
msgid "Billing Phone"
|
5237 |
+
msgstr ""
|
5238 |
+
|
5239 |
+
#: includes/export/class-wcj-fields-helper.php:46
|
5240 |
+
msgid "Last Order Date"
|
5241 |
+
msgstr ""
|
5242 |
+
|
5243 |
+
#: includes/export/class-wcj-fields-helper.php:76
|
5244 |
+
msgid "First Name"
|
5245 |
+
msgstr ""
|
5246 |
+
|
5247 |
+
#: includes/export/class-wcj-fields-helper.php:77
|
5248 |
+
msgid "Last Name"
|
5249 |
+
msgstr ""
|
5250 |
+
|
5251 |
+
#: includes/export/class-wcj-fields-helper.php:78
|
5252 |
+
msgid "Login"
|
5253 |
+
msgstr ""
|
5254 |
+
|
5255 |
+
#: includes/export/class-wcj-fields-helper.php:79
|
5256 |
+
msgid "Nicename"
|
5257 |
+
msgstr ""
|
5258 |
+
|
5259 |
+
#: includes/export/class-wcj-fields-helper.php:80
|
5260 |
+
#: includes/export/class-wcj-fields-helper.php:295
|
5261 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:148
|
5262 |
+
msgid "URL"
|
5263 |
+
msgstr ""
|
5264 |
+
|
5265 |
+
#: includes/export/class-wcj-fields-helper.php:81
|
5266 |
+
#: includes/reports/wcj-class-reports-customers.php:95
|
5267 |
+
msgid "Registered"
|
5268 |
+
msgstr ""
|
5269 |
+
|
5270 |
+
#: includes/export/class-wcj-fields-helper.php:82
|
5271 |
+
msgid "Display Name"
|
5272 |
+
msgstr ""
|
5273 |
+
|
5274 |
+
#: includes/export/class-wcj-fields-helper.php:110
|
5275 |
+
#: includes/export/class-wcj-fields-helper.php:193
|
5276 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:40
|
5277 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:64
|
5278 |
+
#: includes/settings/wcj-settings-order-numbers.php:27
|
5279 |
+
msgid "Order ID"
|
5280 |
+
msgstr ""
|
5281 |
+
|
5282 |
+
#: includes/export/class-wcj-fields-helper.php:111
|
5283 |
+
#: includes/export/class-wcj-fields-helper.php:194
|
5284 |
+
msgid "Order Number"
|
5285 |
+
msgstr ""
|
5286 |
+
|
5287 |
+
#: includes/export/class-wcj-fields-helper.php:112
|
5288 |
+
#: includes/export/class-wcj-fields-helper.php:195
|
5289 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:60
|
5290 |
+
msgid "Order Status"
|
5291 |
+
msgstr ""
|
5292 |
+
|
5293 |
+
#: includes/export/class-wcj-fields-helper.php:113
|
5294 |
+
#: includes/export/class-wcj-fields-helper.php:196
|
5295 |
+
msgid "Order Date"
|
5296 |
+
msgstr ""
|
5297 |
+
|
5298 |
+
#: includes/export/class-wcj-fields-helper.php:114
|
5299 |
+
#: includes/export/class-wcj-fields-helper.php:197
|
5300 |
+
msgid "Order Time"
|
5301 |
+
msgstr ""
|
5302 |
+
|
5303 |
+
#: includes/export/class-wcj-fields-helper.php:115
|
5304 |
+
#: includes/export/class-wcj-fields-helper.php:198
|
5305 |
+
msgid "Order Item Count"
|
5306 |
+
msgstr ""
|
5307 |
+
|
5308 |
+
#: includes/export/class-wcj-fields-helper.php:116
|
5309 |
+
#: includes/export/class-wcj-fields-helper.php:201
|
5310 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:47
|
5311 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:77
|
5312 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-orders.php:19
|
5313 |
+
msgid "Order Currency"
|
5314 |
+
msgstr ""
|
5315 |
+
|
5316 |
+
#: includes/export/class-wcj-fields-helper.php:117
|
5317 |
+
#: includes/export/class-wcj-fields-helper.php:202
|
5318 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:46
|
5319 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:76
|
5320 |
+
msgid "Order Total"
|
5321 |
+
msgstr ""
|
5322 |
+
|
5323 |
+
#: includes/export/class-wcj-fields-helper.php:118
|
5324 |
+
#: includes/export/class-wcj-fields-helper.php:203
|
5325 |
+
msgid "Order Total Tax"
|
5326 |
+
msgstr ""
|
5327 |
+
|
5328 |
+
#: includes/export/class-wcj-fields-helper.php:119
|
5329 |
+
#: includes/export/class-wcj-fields-helper.php:204
|
5330 |
+
msgid "Order Payment Method"
|
5331 |
+
msgstr ""
|
5332 |
+
|
5333 |
+
#: includes/export/class-wcj-fields-helper.php:120
|
5334 |
+
#: includes/export/class-wcj-fields-helper.php:205
|
5335 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:194
|
5336 |
+
msgid "Order Notes"
|
5337 |
+
msgstr ""
|
5338 |
+
|
5339 |
+
#: includes/export/class-wcj-fields-helper.php:132
|
5340 |
+
#: includes/export/class-wcj-fields-helper.php:217
|
5341 |
+
msgid "Shipping First Name"
|
5342 |
+
msgstr ""
|
5343 |
+
|
5344 |
+
#: includes/export/class-wcj-fields-helper.php:133
|
5345 |
+
#: includes/export/class-wcj-fields-helper.php:218
|
5346 |
+
msgid "Shipping Last Name"
|
5347 |
+
msgstr ""
|
5348 |
+
|
5349 |
+
#: includes/export/class-wcj-fields-helper.php:134
|
5350 |
+
#: includes/export/class-wcj-fields-helper.php:219
|
5351 |
+
msgid "Shipping Company"
|
5352 |
+
msgstr ""
|
5353 |
+
|
5354 |
+
#: includes/export/class-wcj-fields-helper.php:135
|
5355 |
+
#: includes/export/class-wcj-fields-helper.php:220
|
5356 |
+
msgid "Shipping Address 1"
|
5357 |
+
msgstr ""
|
5358 |
+
|
5359 |
+
#: includes/export/class-wcj-fields-helper.php:136
|
5360 |
+
#: includes/export/class-wcj-fields-helper.php:221
|
5361 |
+
msgid "Shipping Address 2"
|
5362 |
+
msgstr ""
|
5363 |
+
|
5364 |
+
#: includes/export/class-wcj-fields-helper.php:137
|
5365 |
+
#: includes/export/class-wcj-fields-helper.php:222
|
5366 |
+
msgid "Shipping City"
|
5367 |
+
msgstr ""
|
5368 |
+
|
5369 |
+
#: includes/export/class-wcj-fields-helper.php:138
|
5370 |
+
#: includes/export/class-wcj-fields-helper.php:223
|
5371 |
+
msgid "Shipping State"
|
5372 |
+
msgstr ""
|
5373 |
+
|
5374 |
+
#: includes/export/class-wcj-fields-helper.php:139
|
5375 |
+
#: includes/export/class-wcj-fields-helper.php:224
|
5376 |
+
msgid "Shipping Postcode"
|
5377 |
+
msgstr ""
|
5378 |
+
|
5379 |
+
#: includes/export/class-wcj-fields-helper.php:140
|
5380 |
+
#: includes/export/class-wcj-fields-helper.php:225
|
5381 |
+
msgid "Shipping Country"
|
5382 |
+
msgstr ""
|
5383 |
+
|
5384 |
+
#: includes/export/class-wcj-fields-helper.php:142
|
5385 |
+
msgid "Item Name"
|
5386 |
+
msgstr ""
|
5387 |
+
|
5388 |
+
#: includes/export/class-wcj-fields-helper.php:143
|
5389 |
+
msgid "Item Meta"
|
5390 |
+
msgstr ""
|
5391 |
+
|
5392 |
+
#: includes/export/class-wcj-fields-helper.php:144
|
5393 |
+
msgid "Item Variation Meta"
|
5394 |
+
msgstr ""
|
5395 |
+
|
5396 |
+
#: includes/export/class-wcj-fields-helper.php:145
|
5397 |
+
msgid "Item Quantity"
|
5398 |
+
msgstr ""
|
5399 |
+
|
5400 |
+
#: includes/export/class-wcj-fields-helper.php:146
|
5401 |
+
msgid "Item Tax Class"
|
5402 |
+
msgstr ""
|
5403 |
+
|
5404 |
+
#: includes/export/class-wcj-fields-helper.php:147
|
5405 |
+
msgid "Item Product ID"
|
5406 |
+
msgstr ""
|
5407 |
+
|
5408 |
+
#: includes/export/class-wcj-fields-helper.php:148
|
5409 |
+
msgid "Item Variation ID"
|
5410 |
+
msgstr ""
|
5411 |
+
|
5412 |
+
#: includes/export/class-wcj-fields-helper.php:149
|
5413 |
+
msgid "Item Line Subtotal"
|
5414 |
+
msgstr ""
|
5415 |
+
|
5416 |
+
#: includes/export/class-wcj-fields-helper.php:150
|
5417 |
+
msgid "Item Line Total"
|
5418 |
+
msgstr ""
|
5419 |
+
|
5420 |
+
#: includes/export/class-wcj-fields-helper.php:151
|
5421 |
+
msgid "Item Line Subtotal Tax"
|
5422 |
+
msgstr ""
|
5423 |
+
|
5424 |
+
#: includes/export/class-wcj-fields-helper.php:152
|
5425 |
+
msgid "Item Line Tax"
|
5426 |
+
msgstr ""
|
5427 |
+
|
5428 |
+
#: includes/export/class-wcj-fields-helper.php:153
|
5429 |
+
msgid "Item Line Subtotal Plus Tax"
|
5430 |
+
msgstr ""
|
5431 |
+
|
5432 |
+
#: includes/export/class-wcj-fields-helper.php:154
|
5433 |
+
msgid "Item Line Total Plus Tax"
|
5434 |
+
msgstr ""
|
5435 |
+
|
5436 |
+
#: includes/export/class-wcj-fields-helper.php:155
|
5437 |
+
msgid "Item Product Input Fields"
|
5438 |
+
msgstr ""
|
5439 |
+
|
5440 |
+
#: includes/export/class-wcj-fields-helper.php:199
|
5441 |
+
msgid "Order Items"
|
5442 |
+
msgstr ""
|
5443 |
+
|
5444 |
+
#: includes/export/class-wcj-fields-helper.php:200
|
5445 |
+
msgid "Order Items Product Input Fields"
|
5446 |
+
msgstr ""
|
5447 |
+
|
5448 |
+
#: includes/export/class-wcj-fields-helper.php:281
|
5449 |
+
msgid "Parent Product ID"
|
5450 |
+
msgstr ""
|
5451 |
+
|
5452 |
+
#: includes/export/class-wcj-fields-helper.php:284
|
5453 |
+
msgid "Total Stock"
|
5454 |
+
msgstr ""
|
5455 |
+
|
5456 |
+
#: includes/export/class-wcj-fields-helper.php:285
|
5457 |
+
msgid "Stock Quantity"
|
5458 |
+
msgstr ""
|
5459 |
+
|
5460 |
+
#: includes/export/class-wcj-fields-helper.php:286
|
5461 |
+
#: includes/price-by-country/class-wcj-price-by-country-local.php:97
|
5462 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:39
|
5463 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:92
|
5464 |
+
#: includes/settings/wcj-settings-product-by-user.php:16
|
5465 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:179
|
5466 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:378
|
5467 |
+
msgid "Regular Price"
|
5468 |
+
msgstr ""
|
5469 |
+
|
5470 |
+
#: includes/export/class-wcj-fields-helper.php:287
|
5471 |
+
#: includes/price-by-country/class-wcj-price-by-country-local.php:104
|
5472 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:48
|
5473 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:101
|
5474 |
+
#: includes/settings/wcj-settings-product-by-user.php:17
|
5475 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:180
|
5476 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:387
|
5477 |
+
msgid "Sale Price"
|
5478 |
+
msgstr ""
|
5479 |
+
|
5480 |
+
#: includes/export/class-wcj-fields-helper.php:289
|
5481 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:28
|
5482 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:83
|
5483 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:130
|
5484 |
+
#: includes/settings/wcj-settings-checkout-fees.php:66
|
5485 |
+
#: includes/settings/wcj-settings-export.php:81
|
5486 |
+
#: includes/settings/wcj-settings-export.php:149
|
5487 |
+
#: includes/settings/wcj-settings-export.php:231
|
5488 |
+
#: includes/settings/wcj-settings-global-discount.php:58
|
5489 |
+
#: includes/settings/wcj-settings-product-addons.php:80
|
5490 |
+
#: includes/settings/wcj-settings-purchase-data.php:84
|
5491 |
+
#: includes/settings/wcj-settings-shipping-options.php:77
|
5492 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:199
|
5493 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:114
|
5494 |
+
#: includes/widgets/class-wcj-widget-multicurrency.php:76
|
5495 |
+
msgid "Type"
|
5496 |
+
msgstr ""
|
5497 |
+
|
5498 |
+
#: includes/export/class-wcj-fields-helper.php:291
|
5499 |
+
#: includes/settings/wcj-settings-shipping-icons.php:75
|
5500 |
+
msgid "Image URL"
|
5501 |
+
msgstr ""
|
5502 |
+
|
5503 |
+
#: includes/export/class-wcj-fields-helper.php:292
|
5504 |
+
#: includes/settings/wcj-settings-product-by-user.php:14
|
5505 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:177
|
5506 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:351
|
5507 |
+
msgid "Short Description"
|
5508 |
+
msgstr ""
|
5509 |
+
|
5510 |
+
#: includes/export/class-wcj-fields-helper.php:296
|
5511 |
+
msgid "Shipping Class"
|
5512 |
+
msgstr ""
|
5513 |
+
|
5514 |
+
#: includes/export/class-wcj-fields-helper.php:297
|
5515 |
+
msgid "Shipping Class ID"
|
5516 |
+
msgstr ""
|
5517 |
+
|
5518 |
+
#: includes/export/class-wcj-fields-helper.php:298
|
5519 |
+
msgid "Width"
|
5520 |
+
msgstr ""
|
5521 |
+
|
5522 |
+
#: includes/export/class-wcj-fields-helper.php:299
|
5523 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:48
|
5524 |
+
msgid "Length"
|
5525 |
+
msgstr ""
|
5526 |
+
|
5527 |
+
#: includes/export/class-wcj-fields-helper.php:300
|
5528 |
+
msgid "Height"
|
5529 |
+
msgstr ""
|
5530 |
+
|
5531 |
+
#: includes/export/class-wcj-fields-helper.php:301
|
5532 |
+
msgid "Weight"
|
5533 |
+
msgstr ""
|
5534 |
+
|
5535 |
+
#: includes/export/class-wcj-fields-helper.php:302
|
5536 |
+
msgid "Downloadable"
|
5537 |
+
msgstr ""
|
5538 |
+
|
5539 |
+
#: includes/export/class-wcj-fields-helper.php:303
|
5540 |
+
msgid "Virtual"
|
5541 |
+
msgstr ""
|
5542 |
+
|
5543 |
+
#: includes/export/class-wcj-fields-helper.php:304
|
5544 |
+
msgid "Sold Individually"
|
5545 |
+
msgstr ""
|
5546 |
+
|
5547 |
+
#: includes/export/class-wcj-fields-helper.php:305
|
5548 |
+
msgid "Tax Status"
|
5549 |
+
msgstr ""
|
5550 |
+
|
5551 |
+
#: includes/export/class-wcj-fields-helper.php:306
|
5552 |
+
msgid "Tax Class"
|
5553 |
+
msgstr ""
|
5554 |
+
|
5555 |
+
#: includes/export/class-wcj-fields-helper.php:307
|
5556 |
+
msgid "Manage Stock"
|
5557 |
+
msgstr ""
|
5558 |
+
|
5559 |
+
#: includes/export/class-wcj-fields-helper.php:308
|
5560 |
+
msgid "Stock Status"
|
5561 |
+
msgstr ""
|
5562 |
+
|
5563 |
+
#: includes/export/class-wcj-fields-helper.php:309
|
5564 |
+
msgid "Backorders"
|
5565 |
+
msgstr ""
|
5566 |
+
|
5567 |
+
#: includes/export/class-wcj-fields-helper.php:310
|
5568 |
+
msgid "Featured"
|
5569 |
+
msgstr ""
|
5570 |
+
|
5571 |
+
#: includes/export/class-wcj-fields-helper.php:311
|
5572 |
+
msgid "Visibility"
|
5573 |
+
msgstr ""
|
5574 |
+
|
5575 |
+
#: includes/export/class-wcj-fields-helper.php:312
|
5576 |
+
msgid "Price Including Tax"
|
5577 |
+
msgstr ""
|
5578 |
+
|
5579 |
+
#: includes/export/class-wcj-fields-helper.php:313
|
5580 |
+
msgid "Price Excluding Tax"
|
5581 |
+
msgstr ""
|
5582 |
+
|
5583 |
+
#: includes/export/class-wcj-fields-helper.php:314
|
5584 |
+
msgid "Display Price"
|
5585 |
+
msgstr ""
|
5586 |
+
|
5587 |
+
#: includes/export/class-wcj-fields-helper.php:315
|
5588 |
+
msgid "Average Rating"
|
5589 |
+
msgstr ""
|
5590 |
+
|
5591 |
+
#: includes/export/class-wcj-fields-helper.php:316
|
5592 |
+
msgid "Rating Count"
|
5593 |
+
msgstr ""
|
5594 |
+
|
5595 |
+
#: includes/export/class-wcj-fields-helper.php:317
|
5596 |
+
msgid "Review Count"
|
5597 |
+
msgstr ""
|
5598 |
+
|
5599 |
+
#: includes/export/class-wcj-fields-helper.php:320
|
5600 |
+
msgid "Dimensions"
|
5601 |
+
msgstr ""
|
5602 |
+
|
5603 |
+
#: includes/export/class-wcj-fields-helper.php:321
|
5604 |
+
msgid "Formatted Name"
|
5605 |
+
msgstr ""
|
5606 |
+
|
5607 |
+
#: includes/export/class-wcj-fields-helper.php:322
|
5608 |
+
msgid "Availability"
|
5609 |
+
msgstr ""
|
5610 |
+
|
5611 |
+
#: includes/export/class-wcj-fields-helper.php:323
|
5612 |
+
msgid "Availability Class"
|
5613 |
+
msgstr ""
|
5614 |
+
|
5615 |
+
#: includes/functions/wcj-functions-admin.php:114
|
5616 |
+
#, php-format
|
5617 |
+
msgid ""
|
5618 |
+
"<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
|
5619 |
+
"version <strong>%s</strong>."
|
5620 |
+
msgstr ""
|
5621 |
+
|
5622 |
+
#: includes/functions/wcj-functions-admin.php:152
|
5623 |
+
msgid "Search…"
|
5624 |
+
msgstr ""
|
5625 |
+
|
5626 |
+
#: includes/functions/wcj-functions-admin.php:192
|
5627 |
+
msgid "Enter comma separated list of IDs."
|
5628 |
+
msgstr ""
|
5629 |
+
|
5630 |
+
#: includes/functions/wcj-functions-admin.php:266
|
5631 |
+
#: includes/settings/wcj-settings-emails-verification.php:75
|
5632 |
+
#: includes/settings/wcj-settings-emails-verification.php:83
|
5633 |
+
#: includes/settings/wcj-settings-emails-verification.php:130
|
5634 |
+
#, php-format
|
5635 |
+
msgid "Replaced value: %s"
|
5636 |
+
msgstr ""
|
5637 |
+
|
5638 |
+
#: includes/functions/wcj-functions-admin.php:266
|
5639 |
+
#, php-format
|
5640 |
+
msgid "Replaced values: %s"
|
5641 |
+
msgstr ""
|
5642 |
+
|
5643 |
+
#: includes/functions/wcj-functions-admin.php:295
|
5644 |
+
msgid "Install Booster Plus to unlock all features"
|
5645 |
+
msgstr ""
|
5646 |
+
|
5647 |
+
#: includes/functions/wcj-functions-admin.php:296
|
5648 |
+
#, php-format
|
5649 |
+
msgid ""
|
5650 |
+
"Some settings fields are locked and you will need %s to modify all locked "
|
5651 |
+
"fields."
|
5652 |
+
msgstr ""
|
5653 |
+
|
5654 |
+
#: includes/functions/wcj-functions-admin.php:299
|
5655 |
+
msgid "Buy now"
|
5656 |
+
msgstr ""
|
5657 |
+
|
5658 |
+
#: includes/functions/wcj-functions-admin.php:300
|
5659 |
+
msgid "Visit Booster Site"
|
5660 |
+
msgstr ""
|
5661 |
+
|
5662 |
+
#: includes/functions/wcj-functions-admin.php:305
|
5663 |
+
#, php-format
|
5664 |
+
msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
|
5665 |
+
msgstr ""
|
5666 |
+
|
5667 |
+
#: includes/functions/wcj-functions-admin.php:308
|
5668 |
+
#, php-format
|
5669 |
+
msgid ""
|
5670 |
+
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
|
5671 |
+
"option."
|
5672 |
+
msgstr ""
|
5673 |
+
|
5674 |
+
#: includes/functions/wcj-functions-admin.php:311
|
5675 |
+
#, php-format
|
5676 |
+
msgid "Get Booster Plus to enable \"%s\" option."
|
5677 |
+
msgstr ""
|
5678 |
+
|
5679 |
+
#: includes/functions/wcj-functions-admin.php:314
|
5680 |
+
#, php-format
|
5681 |
+
msgid ""
|
5682 |
+
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
|
5683 |
+
msgstr ""
|
5684 |
+
|
5685 |
+
#: includes/functions/wcj-functions-admin.php:317
|
5686 |
+
#, php-format
|
5687 |
+
msgid ""
|
5688 |
+
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
|
5689 |
+
msgstr ""
|
5690 |
+
|
5691 |
+
#: includes/functions/wcj-functions-admin.php:320
|
5692 |
+
msgid "Get Booster Plus to change value."
|
5693 |
+
msgstr ""
|
5694 |
+
|
5695 |
+
#: includes/functions/wcj-functions-country.php:167
|
5696 |
+
msgid "Afghanistan"
|
5697 |
+
msgstr ""
|
5698 |
+
|
5699 |
+
#: includes/functions/wcj-functions-country.php:168
|
5700 |
+
msgid "Åland Islands"
|
5701 |
+
msgstr ""
|
5702 |
+
|
5703 |
+
#: includes/functions/wcj-functions-country.php:169
|
5704 |
+
msgid "Albania"
|
5705 |
+
msgstr ""
|
5706 |
+
|
5707 |
+
#: includes/functions/wcj-functions-country.php:170
|
5708 |
+
msgid "Algeria"
|
5709 |
+
msgstr ""
|
5710 |
+
|
5711 |
+
#: includes/functions/wcj-functions-country.php:171
|
5712 |
+
msgid "Andorra"
|
5713 |
+
msgstr ""
|
5714 |
+
|
5715 |
+
#: includes/functions/wcj-functions-country.php:172
|
5716 |
+
msgid "Angola"
|
5717 |
+
msgstr ""
|
5718 |
+
|
5719 |
+
#: includes/functions/wcj-functions-country.php:173
|
5720 |
+
msgid "Anguilla"
|
5721 |
+
msgstr ""
|
5722 |
+
|
5723 |
+
#: includes/functions/wcj-functions-country.php:174
|
5724 |
+
msgid "Antarctica"
|
5725 |
+
msgstr ""
|
5726 |
+
|
5727 |
+
#: includes/functions/wcj-functions-country.php:175
|
5728 |
+
msgid "Antigua and Barbuda"
|
5729 |
+
msgstr ""
|
5730 |
+
|
5731 |
+
#: includes/functions/wcj-functions-country.php:176
|
5732 |
+
msgid "Argentina"
|
5733 |
+
msgstr ""
|
5734 |
+
|
5735 |
+
#: includes/functions/wcj-functions-country.php:177
|
5736 |
+
msgid "Armenia"
|
5737 |
+
msgstr ""
|
5738 |
+
|
5739 |
+
#: includes/functions/wcj-functions-country.php:178
|
5740 |
+
msgid "Aruba"
|
5741 |
+
msgstr ""
|
5742 |
+
|
5743 |
+
#: includes/functions/wcj-functions-country.php:179
|
5744 |
+
msgid "Australia"
|
5745 |
+
msgstr ""
|
5746 |
+
|
5747 |
+
#: includes/functions/wcj-functions-country.php:180
|
5748 |
+
msgid "Austria"
|
5749 |
+
msgstr ""
|
5750 |
+
|
5751 |
+
#: includes/functions/wcj-functions-country.php:181
|
5752 |
+
msgid "Azerbaijan"
|
5753 |
+
msgstr ""
|
5754 |
+
|
5755 |
+
#: includes/functions/wcj-functions-country.php:182
|
5756 |
+
msgid "Bahamas"
|
5757 |
+
msgstr ""
|
5758 |
+
|
5759 |
+
#: includes/functions/wcj-functions-country.php:183
|
5760 |
+
msgid "Bahrain"
|
5761 |
+
msgstr ""
|
5762 |
+
|
5763 |
+
#: includes/functions/wcj-functions-country.php:184
|
5764 |
+
msgid "Bangladesh"
|
5765 |
+
msgstr ""
|
5766 |
+
|
5767 |
+
#: includes/functions/wcj-functions-country.php:185
|
5768 |
+
msgid "Barbados"
|
5769 |
+
msgstr ""
|
5770 |
+
|
5771 |
+
#: includes/functions/wcj-functions-country.php:186
|
5772 |
+
msgid "Belarus"
|
5773 |
+
msgstr ""
|
5774 |
+
|
5775 |
+
#: includes/functions/wcj-functions-country.php:187
|
5776 |
+
msgid "Belgium"
|
5777 |
+
msgstr ""
|
5778 |
+
|
5779 |
+
#: includes/functions/wcj-functions-country.php:188
|
5780 |
+
msgid "Belau"
|
5781 |
+
msgstr ""
|
5782 |
+
|
5783 |
+
#: includes/functions/wcj-functions-country.php:189
|
5784 |
+
msgid "Belize"
|
5785 |
+
msgstr ""
|
5786 |
+
|
5787 |
+
#: includes/functions/wcj-functions-country.php:190
|
5788 |
+
msgid "Benin"
|
5789 |
+
msgstr ""
|
5790 |
+
|
5791 |
+
#: includes/functions/wcj-functions-country.php:191
|
5792 |
+
msgid "Bermuda"
|
5793 |
+
msgstr ""
|
5794 |
+
|
5795 |
+
#: includes/functions/wcj-functions-country.php:192
|
5796 |
+
msgid "Bhutan"
|
5797 |
+
msgstr ""
|
5798 |
+
|
5799 |
+
#: includes/functions/wcj-functions-country.php:193
|
5800 |
+
msgid "Bolivia"
|
5801 |
+
msgstr ""
|
5802 |
+
|
5803 |
+
#: includes/functions/wcj-functions-country.php:194
|
5804 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
5805 |
+
msgstr ""
|
5806 |
+
|
5807 |
+
#: includes/functions/wcj-functions-country.php:195
|
5808 |
+
msgid "Bosnia and Herzegovina"
|
5809 |
+
msgstr ""
|
5810 |
+
|
5811 |
+
#: includes/functions/wcj-functions-country.php:196
|
5812 |
+
msgid "Botswana"
|
5813 |
+
msgstr ""
|
5814 |
+
|
5815 |
+
#: includes/functions/wcj-functions-country.php:197
|
5816 |
+
msgid "Bouvet Island"
|
5817 |
+
msgstr ""
|
5818 |
+
|
5819 |
+
#: includes/functions/wcj-functions-country.php:198
|
5820 |
+
msgid "Brazil"
|
5821 |
+
msgstr ""
|
5822 |
+
|
5823 |
+
#: includes/functions/wcj-functions-country.php:199
|
5824 |
+
msgid "British Indian Ocean Territory"
|
5825 |
+
msgstr ""
|
5826 |
+
|
5827 |
+
#: includes/functions/wcj-functions-country.php:200
|
5828 |
+
msgid "British Virgin Islands"
|
5829 |
+
msgstr ""
|
5830 |
+
|
5831 |
+
#: includes/functions/wcj-functions-country.php:201
|
5832 |
+
msgid "Brunei"
|
5833 |
+
msgstr ""
|
5834 |
+
|
5835 |
+
#: includes/functions/wcj-functions-country.php:202
|
5836 |
+
msgid "Bulgaria"
|
5837 |
+
msgstr ""
|
5838 |
+
|
5839 |
+
#: includes/functions/wcj-functions-country.php:203
|
5840 |
+
msgid "Burkina Faso"
|
5841 |
+
msgstr ""
|
5842 |
+
|
5843 |
+
#: includes/functions/wcj-functions-country.php:204
|
5844 |
+
msgid "Burundi"
|
5845 |
+
msgstr ""
|
5846 |
+
|
5847 |
+
#: includes/functions/wcj-functions-country.php:205
|
5848 |
+
msgid "Cambodia"
|
5849 |
+
msgstr ""
|
5850 |
+
|
5851 |
+
#: includes/functions/wcj-functions-country.php:206
|
5852 |
+
msgid "Cameroon"
|
5853 |
+
msgstr ""
|
5854 |
+
|
5855 |
+
#: includes/functions/wcj-functions-country.php:207
|
5856 |
+
msgid "Canada"
|
5857 |
+
msgstr ""
|
5858 |
+
|
5859 |
+
#: includes/functions/wcj-functions-country.php:208
|
5860 |
+
msgid "Cape Verde"
|
5861 |
+
msgstr ""
|
5862 |
+
|
5863 |
+
#: includes/functions/wcj-functions-country.php:209
|
5864 |
+
msgid "Cayman Islands"
|
5865 |
+
msgstr ""
|
5866 |
+
|
5867 |
+
#: includes/functions/wcj-functions-country.php:210
|
5868 |
+
msgid "Central African Republic"
|
5869 |
+
msgstr ""
|
5870 |
+
|
5871 |
+
#: includes/functions/wcj-functions-country.php:211
|
5872 |
+
msgid "Chad"
|
5873 |
+
msgstr ""
|
5874 |
+
|
5875 |
+
#: includes/functions/wcj-functions-country.php:212
|
5876 |
+
msgid "Chile"
|
5877 |
+
msgstr ""
|
5878 |
+
|
5879 |
+
#: includes/functions/wcj-functions-country.php:213
|
5880 |
+
msgid "China"
|
5881 |
+
msgstr ""
|
5882 |
+
|
5883 |
+
#: includes/functions/wcj-functions-country.php:214
|
5884 |
+
msgid "Christmas Island"
|
5885 |
+
msgstr ""
|
5886 |
+
|
5887 |
+
#: includes/functions/wcj-functions-country.php:215
|
5888 |
+
msgid "Cocos (Keeling) Islands"
|
5889 |
+
msgstr ""
|
5890 |
+
|
5891 |
+
#: includes/functions/wcj-functions-country.php:216
|
5892 |
+
msgid "Colombia"
|
5893 |
+
msgstr ""
|
5894 |
+
|
5895 |
+
#: includes/functions/wcj-functions-country.php:217
|
5896 |
+
msgid "Comoros"
|
5897 |
+
msgstr ""
|
5898 |
+
|
5899 |
+
#: includes/functions/wcj-functions-country.php:218
|
5900 |
+
msgid "Congo (Brazzaville)"
|
5901 |
+
msgstr ""
|
5902 |
+
|
5903 |
+
#: includes/functions/wcj-functions-country.php:219
|
5904 |
+
msgid "Congo (Kinshasa)"
|
5905 |
+
msgstr ""
|
5906 |
+
|
5907 |
+
#: includes/functions/wcj-functions-country.php:220
|
5908 |
+
msgid "Cook Islands"
|
5909 |
+
msgstr ""
|
5910 |
+
|
5911 |
+
#: includes/functions/wcj-functions-country.php:221
|
5912 |
+
msgid "Costa Rica"
|
5913 |
+
msgstr ""
|
5914 |
+
|
5915 |
+
#: includes/functions/wcj-functions-country.php:222
|
5916 |
+
msgid "Croatia"
|
5917 |
+
msgstr ""
|
5918 |
+
|
5919 |
+
#: includes/functions/wcj-functions-country.php:223
|
5920 |
+
msgid "Cuba"
|
5921 |
+
msgstr ""
|
5922 |
+
|
5923 |
+
#: includes/functions/wcj-functions-country.php:224
|
5924 |
+
msgid "CuraÇao"
|
5925 |
+
msgstr ""
|
5926 |
+
|
5927 |
+
#: includes/functions/wcj-functions-country.php:225
|
5928 |
+
msgid "Cyprus"
|
5929 |
+
msgstr ""
|
5930 |
+
|
5931 |
+
#: includes/functions/wcj-functions-country.php:226
|
5932 |
+
msgid "Czech Republic"
|
5933 |
+
msgstr ""
|
5934 |
+
|
5935 |
+
#: includes/functions/wcj-functions-country.php:227
|
5936 |
+
msgid "Denmark"
|
5937 |
+
msgstr ""
|
5938 |
+
|
5939 |
+
#: includes/functions/wcj-functions-country.php:228
|
5940 |
+
msgid "Djibouti"
|
5941 |
+
msgstr ""
|
5942 |
+
|
5943 |
+
#: includes/functions/wcj-functions-country.php:229
|
5944 |
+
msgid "Dominica"
|
5945 |
+
msgstr ""
|
5946 |
+
|
5947 |
+
#: includes/functions/wcj-functions-country.php:230
|
5948 |
+
msgid "Dominican Republic"
|
5949 |
+
msgstr ""
|
5950 |
+
|
5951 |
+
#: includes/functions/wcj-functions-country.php:231
|
5952 |
+
msgid "Ecuador"
|
5953 |
+
msgstr ""
|
5954 |
+
|
5955 |
+
#: includes/functions/wcj-functions-country.php:232
|
5956 |
+
msgid "Egypt"
|
5957 |
+
msgstr ""
|
5958 |
+
|
5959 |
+
#: includes/functions/wcj-functions-country.php:233
|
5960 |
+
msgid "El Salvador"
|
5961 |
+
msgstr ""
|
5962 |
+
|
5963 |
+
#: includes/functions/wcj-functions-country.php:234
|
5964 |
+
msgid "Equatorial Guinea"
|
5965 |
+
msgstr ""
|
5966 |
+
|
5967 |
+
#: includes/functions/wcj-functions-country.php:235
|
5968 |
+
msgid "Eritrea"
|
5969 |
+
msgstr ""
|
5970 |
+
|
5971 |
+
#: includes/functions/wcj-functions-country.php:236
|
5972 |
+
msgid "Estonia"
|
5973 |
+
msgstr ""
|
5974 |
+
|
5975 |
+
#: includes/functions/wcj-functions-country.php:237
|
5976 |
+
msgid "Ethiopia"
|
5977 |
+
msgstr ""
|
5978 |
+
|
5979 |
+
#: includes/functions/wcj-functions-country.php:238
|
5980 |
+
msgid "Falkland Islands"
|
5981 |
+
msgstr ""
|
5982 |
+
|
5983 |
+
#: includes/functions/wcj-functions-country.php:239
|
5984 |
+
msgid "Faroe Islands"
|
5985 |
+
msgstr ""
|
5986 |
+
|
5987 |
+
#: includes/functions/wcj-functions-country.php:240
|
5988 |
+
msgid "Fiji"
|
5989 |
+
msgstr ""
|
5990 |
+
|
5991 |
+
#: includes/functions/wcj-functions-country.php:241
|
5992 |
+
msgid "Finland"
|
5993 |
+
msgstr ""
|
5994 |
+
|
5995 |
+
#: includes/functions/wcj-functions-country.php:242
|
5996 |
+
msgid "France"
|
5997 |
+
msgstr ""
|
5998 |
+
|
5999 |
+
#: includes/functions/wcj-functions-country.php:243
|
6000 |
+
msgid "French Guiana"
|
6001 |
+
msgstr ""
|
6002 |
+
|
6003 |
+
#: includes/functions/wcj-functions-country.php:244
|
6004 |
+
msgid "French Polynesia"
|
6005 |
+
msgstr ""
|
6006 |
+
|
6007 |
+
#: includes/functions/wcj-functions-country.php:245
|
6008 |
+
msgid "French Southern Territories"
|
6009 |
+
msgstr ""
|
6010 |
+
|
6011 |
+
#: includes/functions/wcj-functions-country.php:246
|
6012 |
+
msgid "Gabon"
|
6013 |
+
msgstr ""
|
6014 |
+
|
6015 |
+
#: includes/functions/wcj-functions-country.php:247
|
6016 |
+
msgid "Gambia"
|
6017 |
+
msgstr ""
|
6018 |
+
|
6019 |
+
#: includes/functions/wcj-functions-country.php:248
|
6020 |
+
msgid "Georgia"
|
6021 |
+
msgstr ""
|
6022 |
+
|
6023 |
+
#: includes/functions/wcj-functions-country.php:249
|
6024 |
+
msgid "Germany"
|
6025 |
+
msgstr ""
|
6026 |
+
|
6027 |
+
#: includes/functions/wcj-functions-country.php:250
|
6028 |
+
msgid "Ghana"
|
6029 |
+
msgstr ""
|
6030 |
+
|
6031 |
+
#: includes/functions/wcj-functions-country.php:251
|
6032 |
+
msgid "Gibraltar"
|
6033 |
+
msgstr ""
|
6034 |
+
|
6035 |
+
#: includes/functions/wcj-functions-country.php:252
|
6036 |
+
msgid "Greece"
|
6037 |
+
msgstr ""
|
6038 |
+
|
6039 |
+
#: includes/functions/wcj-functions-country.php:253
|
6040 |
+
msgid "Greenland"
|
6041 |
+
msgstr ""
|
6042 |
+
|
6043 |
+
#: includes/functions/wcj-functions-country.php:254
|
6044 |
+
msgid "Grenada"
|
6045 |
+
msgstr ""
|
6046 |
+
|
6047 |
+
#: includes/functions/wcj-functions-country.php:255
|
6048 |
+
msgid "Guadeloupe"
|
6049 |
+
msgstr ""
|
6050 |
+
|
6051 |
+
#: includes/functions/wcj-functions-country.php:256
|
6052 |
+
msgid "Guatemala"
|
6053 |
+
msgstr ""
|
6054 |
+
|
6055 |
+
#: includes/functions/wcj-functions-country.php:257
|
6056 |
+
msgid "Guernsey"
|
6057 |
+
msgstr ""
|
6058 |
+
|
6059 |
+
#: includes/functions/wcj-functions-country.php:258
|
6060 |
+
msgid "Guinea"
|
6061 |
+
msgstr ""
|
6062 |
+
|
6063 |
+
#: includes/functions/wcj-functions-country.php:259
|
6064 |
+
msgid "Guinea-Bissau"
|
6065 |
+
msgstr ""
|
6066 |
+
|
6067 |
+
#: includes/functions/wcj-functions-country.php:260
|
6068 |
+
msgid "Guyana"
|
6069 |
+
msgstr ""
|
6070 |
+
|
6071 |
+
#: includes/functions/wcj-functions-country.php:261
|
6072 |
+
msgid "Haiti"
|
6073 |
+
msgstr ""
|
6074 |
+
|
6075 |
+
#: includes/functions/wcj-functions-country.php:262
|
6076 |
+
msgid "Heard Island and McDonald Islands"
|
6077 |
+
msgstr ""
|
6078 |
+
|
6079 |
+
#: includes/functions/wcj-functions-country.php:263
|
6080 |
+
msgid "Honduras"
|
6081 |
+
msgstr ""
|
6082 |
+
|
6083 |
+
#: includes/functions/wcj-functions-country.php:264
|
6084 |
+
msgid "Hong Kong"
|
6085 |
+
msgstr ""
|
6086 |
+
|
6087 |
+
#: includes/functions/wcj-functions-country.php:265
|
6088 |
+
msgid "Hungary"
|
6089 |
+
msgstr ""
|
6090 |
+
|
6091 |
+
#: includes/functions/wcj-functions-country.php:266
|
6092 |
+
msgid "Iceland"
|
6093 |
+
msgstr ""
|
6094 |
+
|
6095 |
+
#: includes/functions/wcj-functions-country.php:267
|
6096 |
+
msgid "India"
|
6097 |
+
msgstr ""
|
6098 |
+
|
6099 |
+
#: includes/functions/wcj-functions-country.php:268
|
6100 |
+
msgid "Indonesia"
|
6101 |
+
msgstr ""
|
6102 |
+
|
6103 |
+
#: includes/functions/wcj-functions-country.php:269
|
6104 |
+
msgid "Iran"
|
6105 |
+
msgstr ""
|
6106 |
+
|
6107 |
+
#: includes/functions/wcj-functions-country.php:270
|
6108 |
+
msgid "Iraq"
|
6109 |
+
msgstr ""
|
6110 |
+
|
6111 |
+
#: includes/functions/wcj-functions-country.php:271
|
6112 |
+
msgid "Republic of Ireland"
|
6113 |
+
msgstr ""
|
6114 |
+
|
6115 |
+
#: includes/functions/wcj-functions-country.php:272
|
6116 |
+
msgid "Isle of Man"
|
6117 |
+
msgstr ""
|
6118 |
+
|
6119 |
+
#: includes/functions/wcj-functions-country.php:273
|
6120 |
+
msgid "Israel"
|
6121 |
+
msgstr ""
|
6122 |
+
|
6123 |
+
#: includes/functions/wcj-functions-country.php:274
|
6124 |
+
msgid "Italy"
|
6125 |
+
msgstr ""
|
6126 |
+
|
6127 |
+
#: includes/functions/wcj-functions-country.php:275
|
6128 |
+
msgid "Ivory Coast"
|
6129 |
+
msgstr ""
|
6130 |
+
|
6131 |
+
#: includes/functions/wcj-functions-country.php:276
|
6132 |
+
msgid "Jamaica"
|
6133 |
+
msgstr ""
|
6134 |
+
|
6135 |
+
#: includes/functions/wcj-functions-country.php:277
|
6136 |
+
msgid "Japan"
|
6137 |
+
msgstr ""
|
6138 |
+
|
6139 |
+
#: includes/functions/wcj-functions-country.php:278
|
6140 |
+
msgid "Jersey"
|
6141 |
+
msgstr ""
|
6142 |
+
|
6143 |
+
#: includes/functions/wcj-functions-country.php:279
|
6144 |
+
msgid "Jordan"
|
6145 |
+
msgstr ""
|
6146 |
+
|
6147 |
+
#: includes/functions/wcj-functions-country.php:280
|
6148 |
+
msgid "Kazakhstan"
|
6149 |
+
msgstr ""
|
6150 |
+
|
6151 |
+
#: includes/functions/wcj-functions-country.php:281
|
6152 |
+
msgid "Kenya"
|
6153 |
+
msgstr ""
|
6154 |
+
|
6155 |
+
#: includes/functions/wcj-functions-country.php:282
|
6156 |
+
msgid "Kiribati"
|
6157 |
+
msgstr ""
|
6158 |
+
|
6159 |
+
#: includes/functions/wcj-functions-country.php:283
|
6160 |
+
msgid "Kuwait"
|
6161 |
+
msgstr ""
|
6162 |
+
|
6163 |
+
#: includes/functions/wcj-functions-country.php:284
|
6164 |
+
msgid "Kyrgyzstan"
|
6165 |
+
msgstr ""
|
6166 |
+
|
6167 |
+
#: includes/functions/wcj-functions-country.php:285
|
6168 |
+
msgid "Laos"
|
6169 |
+
msgstr ""
|
6170 |
+
|
6171 |
+
#: includes/functions/wcj-functions-country.php:286
|
6172 |
+
msgid "Latvia"
|
6173 |
+
msgstr ""
|
6174 |
+
|
6175 |
+
#: includes/functions/wcj-functions-country.php:287
|
6176 |
+
msgid "Lebanon"
|
6177 |
+
msgstr ""
|
6178 |
+
|
6179 |
+
#: includes/functions/wcj-functions-country.php:288
|
6180 |
+
msgid "Lesotho"
|
6181 |
+
msgstr ""
|
6182 |
+
|
6183 |
+
#: includes/functions/wcj-functions-country.php:289
|
6184 |
+
msgid "Liberia"
|
6185 |
+
msgstr ""
|
6186 |
+
|
6187 |
+
#: includes/functions/wcj-functions-country.php:290
|
6188 |
+
msgid "Libya"
|
6189 |
+
msgstr ""
|
6190 |
+
|
6191 |
+
#: includes/functions/wcj-functions-country.php:291
|
6192 |
+
msgid "Liechtenstein"
|
6193 |
+
msgstr ""
|
6194 |
+
|
6195 |
+
#: includes/functions/wcj-functions-country.php:292
|
6196 |
+
msgid "Lithuania"
|
6197 |
+
msgstr ""
|
6198 |
+
|
6199 |
+
#: includes/functions/wcj-functions-country.php:293
|
6200 |
+
msgid "Luxembourg"
|
6201 |
+
msgstr ""
|
6202 |
+
|
6203 |
+
#: includes/functions/wcj-functions-country.php:294
|
6204 |
+
msgid "Macao S.A.R., China"
|
6205 |
+
msgstr ""
|
6206 |
+
|
6207 |
+
#: includes/functions/wcj-functions-country.php:295
|
6208 |
+
msgid "Macedonia"
|
6209 |
+
msgstr ""
|
6210 |
+
|
6211 |
+
#: includes/functions/wcj-functions-country.php:296
|
6212 |
+
msgid "Madagascar"
|
6213 |
+
msgstr ""
|
6214 |
+
|
6215 |
+
#: includes/functions/wcj-functions-country.php:297
|
6216 |
+
msgid "Malawi"
|
6217 |
+
msgstr ""
|
6218 |
+
|
6219 |
+
#: includes/functions/wcj-functions-country.php:298
|
6220 |
+
msgid "Malaysia"
|
6221 |
+
msgstr ""
|
6222 |
+
|
6223 |
+
#: includes/functions/wcj-functions-country.php:299
|
6224 |
+
msgid "Maldives"
|
6225 |
+
msgstr ""
|
6226 |
+
|
6227 |
+
#: includes/functions/wcj-functions-country.php:300
|
6228 |
+
msgid "Mali"
|
6229 |
+
msgstr ""
|
6230 |
+
|
6231 |
+
#: includes/functions/wcj-functions-country.php:301
|
6232 |
+
msgid "Malta"
|
6233 |
+
msgstr ""
|
6234 |
+
|
6235 |
+
#: includes/functions/wcj-functions-country.php:302
|
6236 |
+
msgid "Marshall Islands"
|
6237 |
+
msgstr ""
|
6238 |
+
|
6239 |
+
#: includes/functions/wcj-functions-country.php:303
|
6240 |
+
msgid "Martinique"
|
6241 |
+
msgstr ""
|
6242 |
+
|
6243 |
+
#: includes/functions/wcj-functions-country.php:304
|
6244 |
+
msgid "Mauritania"
|
6245 |
+
msgstr ""
|
6246 |
+
|
6247 |
+
#: includes/functions/wcj-functions-country.php:305
|
6248 |
+
msgid "Mauritius"
|
6249 |
+
msgstr ""
|
6250 |
+
|
6251 |
+
#: includes/functions/wcj-functions-country.php:306
|
6252 |
+
msgid "Mayotte"
|
6253 |
+
msgstr ""
|
6254 |
+
|
6255 |
+
#: includes/functions/wcj-functions-country.php:307
|
6256 |
+
msgid "Mexico"
|
6257 |
+
msgstr ""
|
6258 |
+
|
6259 |
+
#: includes/functions/wcj-functions-country.php:308
|
6260 |
+
msgid "Micronesia"
|
6261 |
+
msgstr ""
|
6262 |
+
|
6263 |
+
#: includes/functions/wcj-functions-country.php:309
|
6264 |
+
msgid "Moldova"
|
6265 |
+
msgstr ""
|
6266 |
+
|
6267 |
+
#: includes/functions/wcj-functions-country.php:310
|
6268 |
+
msgid "Monaco"
|
6269 |
+
msgstr ""
|
6270 |
+
|
6271 |
+
#: includes/functions/wcj-functions-country.php:311
|
6272 |
+
msgid "Mongolia"
|
6273 |
+
msgstr ""
|
6274 |
+
|
6275 |
+
#: includes/functions/wcj-functions-country.php:312
|
6276 |
+
msgid "Montenegro"
|
6277 |
+
msgstr ""
|
6278 |
+
|
6279 |
+
#: includes/functions/wcj-functions-country.php:313
|
6280 |
+
msgid "Montserrat"
|
6281 |
+
msgstr ""
|
6282 |
+
|
6283 |
+
#: includes/functions/wcj-functions-country.php:314
|
6284 |
+
msgid "Morocco"
|
6285 |
+
msgstr ""
|
6286 |
+
|
6287 |
+
#: includes/functions/wcj-functions-country.php:315
|
6288 |
+
msgid "Mozambique"
|
6289 |
+
msgstr ""
|
6290 |
+
|
6291 |
+
#: includes/functions/wcj-functions-country.php:316
|
6292 |
+
msgid "Myanmar"
|
6293 |
+
msgstr ""
|
6294 |
+
|
6295 |
+
#: includes/functions/wcj-functions-country.php:317
|
6296 |
+
msgid "Namibia"
|
6297 |
+
msgstr ""
|
6298 |
+
|
6299 |
+
#: includes/functions/wcj-functions-country.php:318
|
6300 |
+
msgid "Nauru"
|
6301 |
+
msgstr ""
|
6302 |
+
|
6303 |
+
#: includes/functions/wcj-functions-country.php:319
|
6304 |
+
msgid "Nepal"
|
6305 |
+
msgstr ""
|
6306 |
+
|
6307 |
+
#: includes/functions/wcj-functions-country.php:320
|
6308 |
+
msgid "Netherlands"
|
6309 |
+
msgstr ""
|
6310 |
+
|
6311 |
+
#: includes/functions/wcj-functions-country.php:321
|
6312 |
+
msgid "Netherlands Antilles"
|
6313 |
+
msgstr ""
|
6314 |
+
|
6315 |
+
#: includes/functions/wcj-functions-country.php:322
|
6316 |
+
msgid "New Caledonia"
|
6317 |
+
msgstr ""
|
6318 |
+
|
6319 |
+
#: includes/functions/wcj-functions-country.php:323
|
6320 |
+
msgid "New Zealand"
|
6321 |
+
msgstr ""
|
6322 |
+
|
6323 |
+
#: includes/functions/wcj-functions-country.php:324
|
6324 |
+
msgid "Nicaragua"
|
6325 |
+
msgstr ""
|
6326 |
+
|
6327 |
+
#: includes/functions/wcj-functions-country.php:325
|
6328 |
+
msgid "Niger"
|
6329 |
+
msgstr ""
|
6330 |
+
|
6331 |
+
#: includes/functions/wcj-functions-country.php:326
|
6332 |
+
msgid "Nigeria"
|
6333 |
+
msgstr ""
|
6334 |
+
|
6335 |
+
#: includes/functions/wcj-functions-country.php:327
|
6336 |
+
msgid "Niue"
|
6337 |
+
msgstr ""
|
6338 |
+
|
6339 |
+
#: includes/functions/wcj-functions-country.php:328
|
6340 |
+
msgid "Norfolk Island"
|
6341 |
+
msgstr ""
|
6342 |
+
|
6343 |
+
#: includes/functions/wcj-functions-country.php:329
|
6344 |
+
msgid "North Korea"
|
6345 |
+
msgstr ""
|
6346 |
+
|
6347 |
+
#: includes/functions/wcj-functions-country.php:330
|
6348 |
+
msgid "Norway"
|
6349 |
+
msgstr ""
|
6350 |
+
|
6351 |
+
#: includes/functions/wcj-functions-country.php:331
|
6352 |
+
msgid "Oman"
|
6353 |
+
msgstr ""
|
6354 |
+
|
6355 |
+
#: includes/functions/wcj-functions-country.php:332
|
6356 |
+
msgid "Pakistan"
|
6357 |
+
msgstr ""
|
6358 |
+
|
6359 |
+
#: includes/functions/wcj-functions-country.php:333
|
6360 |
+
msgid "Palestinian Territory"
|
6361 |
+
msgstr ""
|
6362 |
+
|
6363 |
+
#: includes/functions/wcj-functions-country.php:334
|
6364 |
+
msgid "Panama"
|
6365 |
+
msgstr ""
|
6366 |
+
|
6367 |
+
#: includes/functions/wcj-functions-country.php:335
|
6368 |
+
msgid "Papua New Guinea"
|
6369 |
+
msgstr ""
|
6370 |
+
|
6371 |
+
#: includes/functions/wcj-functions-country.php:336
|
6372 |
+
msgid "Paraguay"
|
6373 |
+
msgstr ""
|
6374 |
+
|
6375 |
+
#: includes/functions/wcj-functions-country.php:337
|
6376 |
+
msgid "Peru"
|
6377 |
+
msgstr ""
|
6378 |
+
|
6379 |
+
#: includes/functions/wcj-functions-country.php:338
|
6380 |
+
msgid "Philippines"
|
6381 |
+
msgstr ""
|
6382 |
+
|
6383 |
+
#: includes/functions/wcj-functions-country.php:339
|
6384 |
+
msgid "Pitcairn"
|
6385 |
+
msgstr ""
|
6386 |
+
|
6387 |
+
#: includes/functions/wcj-functions-country.php:340
|
6388 |
+
msgid "Poland"
|
6389 |
+
msgstr ""
|
6390 |
+
|
6391 |
+
#: includes/functions/wcj-functions-country.php:341
|
6392 |
+
msgid "Portugal"
|
6393 |
+
msgstr ""
|
6394 |
+
|
6395 |
+
#: includes/functions/wcj-functions-country.php:342
|
6396 |
+
msgid "Qatar"
|
6397 |
+
msgstr ""
|
6398 |
+
|
6399 |
+
#: includes/functions/wcj-functions-country.php:343
|
6400 |
+
msgid "Reunion"
|
6401 |
+
msgstr ""
|
6402 |
+
|
6403 |
+
#: includes/functions/wcj-functions-country.php:344
|
6404 |
+
msgid "Romania"
|
6405 |
+
msgstr ""
|
6406 |
+
|
6407 |
+
#: includes/functions/wcj-functions-country.php:345
|
6408 |
+
msgid "Russia"
|
6409 |
+
msgstr ""
|
6410 |
+
|
6411 |
+
#: includes/functions/wcj-functions-country.php:346
|
6412 |
+
msgid "Rwanda"
|
6413 |
+
msgstr ""
|
6414 |
+
|
6415 |
+
#: includes/functions/wcj-functions-country.php:347
|
6416 |
+
msgid "Saint Barthélemy"
|
6417 |
+
msgstr ""
|
6418 |
+
|
6419 |
+
#: includes/functions/wcj-functions-country.php:348
|
6420 |
+
msgid "Saint Helena"
|
6421 |
+
msgstr ""
|
6422 |
+
|
6423 |
+
#: includes/functions/wcj-functions-country.php:349
|
6424 |
+
msgid "Saint Kitts and Nevis"
|
6425 |
+
msgstr ""
|
6426 |
+
|
6427 |
+
#: includes/functions/wcj-functions-country.php:350
|
6428 |
+
msgid "Saint Lucia"
|
6429 |
+
msgstr ""
|
6430 |
+
|
6431 |
+
#: includes/functions/wcj-functions-country.php:351
|
6432 |
+
msgid "Saint Martin (French part)"
|
6433 |
+
msgstr ""
|
6434 |
+
|
6435 |
+
#: includes/functions/wcj-functions-country.php:352
|
6436 |
+
msgid "Saint Martin (Dutch part)"
|
6437 |
+
msgstr ""
|
6438 |
+
|
6439 |
+
#: includes/functions/wcj-functions-country.php:353
|
6440 |
+
msgid "Saint Pierre and Miquelon"
|
6441 |
+
msgstr ""
|
6442 |
+
|
6443 |
+
#: includes/functions/wcj-functions-country.php:354
|
6444 |
+
msgid "Saint Vincent and the Grenadines"
|
6445 |
+
msgstr ""
|
6446 |
+
|
6447 |
+
#: includes/functions/wcj-functions-country.php:355
|
6448 |
+
msgid "San Marino"
|
6449 |
+
msgstr ""
|
6450 |
+
|
6451 |
+
#: includes/functions/wcj-functions-country.php:356
|
6452 |
+
msgid "São Tomé and Príncipe"
|
6453 |
+
msgstr ""
|
6454 |
+
|
6455 |
+
#: includes/functions/wcj-functions-country.php:357
|
6456 |
+
msgid "Saudi Arabia"
|
6457 |
+
msgstr ""
|
6458 |
+
|
6459 |
+
#: includes/functions/wcj-functions-country.php:358
|
6460 |
+
msgid "Senegal"
|
6461 |
+
msgstr ""
|
6462 |
+
|
6463 |
+
#: includes/functions/wcj-functions-country.php:359
|
6464 |
+
msgid "Serbia"
|
6465 |
+
msgstr ""
|
6466 |
+
|
6467 |
+
#: includes/functions/wcj-functions-country.php:360
|
6468 |
+
msgid "Seychelles"
|
6469 |
+
msgstr ""
|
6470 |
+
|
6471 |
+
#: includes/functions/wcj-functions-country.php:361
|
6472 |
+
msgid "Sierra Leone"
|
6473 |
+
msgstr ""
|
6474 |
+
|
6475 |
+
#: includes/functions/wcj-functions-country.php:362
|
6476 |
+
msgid "Singapore"
|
6477 |
+
msgstr ""
|
6478 |
+
|
6479 |
+
#: includes/functions/wcj-functions-country.php:363
|
6480 |
+
msgid "Slovakia"
|
6481 |
+
msgstr ""
|
6482 |
+
|
6483 |
+
#: includes/functions/wcj-functions-country.php:364
|
6484 |
+
msgid "Slovenia"
|
6485 |
+
msgstr ""
|
6486 |
+
|
6487 |
+
#: includes/functions/wcj-functions-country.php:365
|
6488 |
+
msgid "Solomon Islands"
|
6489 |
+
msgstr ""
|
6490 |
+
|
6491 |
+
#: includes/functions/wcj-functions-country.php:366
|
6492 |
+
msgid "Somalia"
|
6493 |
+
msgstr ""
|
6494 |
+
|
6495 |
+
#: includes/functions/wcj-functions-country.php:367
|
6496 |
+
msgid "South Africa"
|
6497 |
+
msgstr ""
|
6498 |
+
|
6499 |
+
#: includes/functions/wcj-functions-country.php:368
|
6500 |
+
msgid "South Georgia/Sandwich Islands"
|
6501 |
+
msgstr ""
|
6502 |
+
|
6503 |
+
#: includes/functions/wcj-functions-country.php:369
|
6504 |
+
msgid "South Korea"
|
6505 |
+
msgstr ""
|
6506 |
+
|
6507 |
+
#: includes/functions/wcj-functions-country.php:370
|
6508 |
+
msgid "South Sudan"
|
6509 |
+
msgstr ""
|
6510 |
+
|
6511 |
+
#: includes/functions/wcj-functions-country.php:371
|
6512 |
+
msgid "Spain"
|
6513 |
+
msgstr ""
|
6514 |
+
|
6515 |
+
#: includes/functions/wcj-functions-country.php:372
|
6516 |
+
msgid "Sri Lanka"
|
6517 |
+
msgstr ""
|
6518 |
+
|
6519 |
+
#: includes/functions/wcj-functions-country.php:373
|
6520 |
+
msgid "Sudan"
|
6521 |
+
msgstr ""
|
6522 |
+
|
6523 |
+
#: includes/functions/wcj-functions-country.php:374
|
6524 |
+
msgid "Suriname"
|
6525 |
+
msgstr ""
|
6526 |
+
|
6527 |
+
#: includes/functions/wcj-functions-country.php:375
|
6528 |
+
msgid "Svalbard and Jan Mayen"
|
6529 |
+
msgstr ""
|
6530 |
+
|
6531 |
+
#: includes/functions/wcj-functions-country.php:376
|
6532 |
+
msgid "Swaziland"
|
6533 |
+
msgstr ""
|
6534 |
+
|
6535 |
+
#: includes/functions/wcj-functions-country.php:377
|
6536 |
+
msgid "Sweden"
|
6537 |
+
msgstr ""
|
6538 |
+
|
6539 |
+
#: includes/functions/wcj-functions-country.php:378
|
6540 |
+
msgid "Switzerland"
|
6541 |
+
msgstr ""
|
6542 |
+
|
6543 |
+
#: includes/functions/wcj-functions-country.php:379
|
6544 |
+
msgid "Syria"
|
6545 |
+
msgstr ""
|
6546 |
+
|
6547 |
+
#: includes/functions/wcj-functions-country.php:380
|
6548 |
+
msgid "Taiwan"
|
6549 |
+
msgstr ""
|
6550 |
+
|
6551 |
+
#: includes/functions/wcj-functions-country.php:381
|
6552 |
+
msgid "Tajikistan"
|
6553 |
+
msgstr ""
|
6554 |
+
|
6555 |
+
#: includes/functions/wcj-functions-country.php:382
|
6556 |
+
msgid "Tanzania"
|
6557 |
+
msgstr ""
|
6558 |
+
|
6559 |
+
#: includes/functions/wcj-functions-country.php:383
|
6560 |
+
msgid "Thailand"
|
6561 |
+
msgstr ""
|
6562 |
+
|
6563 |
+
#: includes/functions/wcj-functions-country.php:384
|
6564 |
+
msgid "Timor-Leste"
|
6565 |
+
msgstr ""
|
6566 |
+
|
6567 |
+
#: includes/functions/wcj-functions-country.php:385
|
6568 |
+
msgid "Togo"
|
6569 |
+
msgstr ""
|
6570 |
+
|
6571 |
+
#: includes/functions/wcj-functions-country.php:386
|
6572 |
+
msgid "Tokelau"
|
6573 |
+
msgstr ""
|
6574 |
+
|
6575 |
+
#: includes/functions/wcj-functions-country.php:387
|
6576 |
+
msgid "Tonga"
|
6577 |
+
msgstr ""
|
6578 |
+
|
6579 |
+
#: includes/functions/wcj-functions-country.php:388
|
6580 |
+
msgid "Trinidad and Tobago"
|
6581 |
+
msgstr ""
|
6582 |
+
|
6583 |
+
#: includes/functions/wcj-functions-country.php:389
|
6584 |
+
msgid "Tunisia"
|
6585 |
+
msgstr ""
|
6586 |
+
|
6587 |
+
#: includes/functions/wcj-functions-country.php:390
|
6588 |
+
msgid "Turkey"
|
6589 |
+
msgstr ""
|
6590 |
+
|
6591 |
+
#: includes/functions/wcj-functions-country.php:391
|
6592 |
+
msgid "Turkmenistan"
|
6593 |
+
msgstr ""
|
6594 |
+
|
6595 |
+
#: includes/functions/wcj-functions-country.php:392
|
6596 |
+
msgid "Turks and Caicos Islands"
|
6597 |
+
msgstr ""
|
6598 |
+
|
6599 |
+
#: includes/functions/wcj-functions-country.php:393
|
6600 |
+
msgid "Tuvalu"
|
6601 |
+
msgstr ""
|
6602 |
+
|
6603 |
+
#: includes/functions/wcj-functions-country.php:394
|
6604 |
+
msgid "Uganda"
|
6605 |
+
msgstr ""
|
6606 |
+
|
6607 |
+
#: includes/functions/wcj-functions-country.php:395
|
6608 |
+
msgid "Ukraine"
|
6609 |
+
msgstr ""
|
6610 |
+
|
6611 |
+
#: includes/functions/wcj-functions-country.php:396
|
6612 |
+
msgid "United Arab Emirates"
|
6613 |
+
msgstr ""
|
6614 |
+
|
6615 |
+
#: includes/functions/wcj-functions-country.php:397
|
6616 |
+
msgid "United Kingdom (UK)"
|
6617 |
+
msgstr ""
|
6618 |
+
|
6619 |
+
#: includes/functions/wcj-functions-country.php:398
|
6620 |
+
msgid "United States (US)"
|
6621 |
+
msgstr ""
|
6622 |
+
|
6623 |
+
#: includes/functions/wcj-functions-country.php:399
|
6624 |
+
msgid "Uruguay"
|
6625 |
+
msgstr ""
|
6626 |
+
|
6627 |
+
#: includes/functions/wcj-functions-country.php:400
|
6628 |
+
msgid "Uzbekistan"
|
6629 |
+
msgstr ""
|
6630 |
+
|
6631 |
+
#: includes/functions/wcj-functions-country.php:401
|
6632 |
+
msgid "Vanuatu"
|
6633 |
+
msgstr ""
|
6634 |
+
|
6635 |
+
#: includes/functions/wcj-functions-country.php:402
|
6636 |
+
msgid "Vatican"
|
6637 |
+
msgstr ""
|
6638 |
+
|
6639 |
+
#: includes/functions/wcj-functions-country.php:403
|
6640 |
+
msgid "Venezuela"
|
6641 |
+
msgstr ""
|
6642 |
+
|
6643 |
+
#: includes/functions/wcj-functions-country.php:404
|
6644 |
+
msgid "Vietnam"
|
6645 |
+
msgstr ""
|
6646 |
+
|
6647 |
+
#: includes/functions/wcj-functions-country.php:405
|
6648 |
+
msgid "Wallis and Futuna"
|
6649 |
+
msgstr ""
|
6650 |
+
|
6651 |
+
#: includes/functions/wcj-functions-country.php:406
|
6652 |
+
msgid "Western Sahara"
|
6653 |
+
msgstr ""
|
6654 |
+
|
6655 |
+
#: includes/functions/wcj-functions-country.php:407
|
6656 |
+
msgid "Western Samoa"
|
6657 |
+
msgstr ""
|
6658 |
+
|
6659 |
+
#: includes/functions/wcj-functions-country.php:408
|
6660 |
+
msgid "Yemen"
|
6661 |
+
msgstr ""
|
6662 |
+
|
6663 |
+
#: includes/functions/wcj-functions-country.php:409
|
6664 |
+
msgid "Zambia"
|
6665 |
+
msgstr ""
|
6666 |
+
|
6667 |
+
#: includes/functions/wcj-functions-country.php:410
|
6668 |
+
msgid "Zimbabwe"
|
6669 |
+
msgstr ""
|
6670 |
+
|
6671 |
+
#: includes/functions/wcj-functions-country.php:411
|
6672 |
+
msgid "European Union"
|
6673 |
+
msgstr ""
|
6674 |
+
|
6675 |
+
#: includes/functions/wcj-functions-crons.php:24
|
6676 |
+
msgid "Update"
|
6677 |
+
msgstr ""
|
6678 |
+
|
6679 |
+
#: includes/functions/wcj-functions-crons.php:27
|
6680 |
+
#, php-format
|
6681 |
+
msgid "%s every minute"
|
6682 |
+
msgstr ""
|
6683 |
+
|
6684 |
+
#: includes/functions/wcj-functions-crons.php:28
|
6685 |
+
#, php-format
|
6686 |
+
msgid "%s every 5 minutes"
|
6687 |
+
msgstr ""
|
6688 |
+
|
6689 |
+
#: includes/functions/wcj-functions-crons.php:29
|
6690 |
+
#, php-format
|
6691 |
+
msgid "%s every 15 minutes"
|
6692 |
+
msgstr ""
|
6693 |
+
|
6694 |
+
#: includes/functions/wcj-functions-crons.php:30
|
6695 |
+
#, php-format
|
6696 |
+
msgid "%s every 30 minutes"
|
6697 |
+
msgstr ""
|
6698 |
+
|
6699 |
+
#: includes/functions/wcj-functions-crons.php:31
|
6700 |
+
#, php-format
|
6701 |
+
msgid "%s hourly"
|
6702 |
+
msgstr ""
|
6703 |
+
|
6704 |
+
#: includes/functions/wcj-functions-crons.php:32
|
6705 |
+
#, php-format
|
6706 |
+
msgid "%s twice daily"
|
6707 |
+
msgstr ""
|
6708 |
+
|
6709 |
+
#: includes/functions/wcj-functions-crons.php:33
|
6710 |
+
#, php-format
|
6711 |
+
msgid "%s daily"
|
6712 |
+
msgstr ""
|
6713 |
+
|
6714 |
+
#: includes/functions/wcj-functions-crons.php:34
|
6715 |
+
#, php-format
|
6716 |
+
msgid "%s weekly"
|
6717 |
+
msgstr ""
|
6718 |
+
|
6719 |
+
#: includes/functions/wcj-functions-crons.php:80
|
6720 |
+
#, php-format
|
6721 |
+
msgid "%s till next run."
|
6722 |
+
msgstr ""
|
6723 |
+
|
6724 |
+
#: includes/functions/wcj-functions-crons.php:82
|
6725 |
+
#, php-format
|
6726 |
+
msgid "%s seconds till next run."
|
6727 |
+
msgstr ""
|
6728 |
+
|
6729 |
+
#: includes/functions/wcj-functions-crons.php:99
|
6730 |
+
msgid "Once weekly"
|
6731 |
+
msgstr ""
|
6732 |
+
|
6733 |
+
#: includes/functions/wcj-functions-crons.php:103
|
6734 |
+
msgid "Once every 30 minutes"
|
6735 |
+
msgstr ""
|
6736 |
+
|
6737 |
+
#: includes/functions/wcj-functions-crons.php:107
|
6738 |
+
msgid "Once every 15 minutes"
|
6739 |
+
msgstr ""
|
6740 |
+
|
6741 |
+
#: includes/functions/wcj-functions-crons.php:111
|
6742 |
+
msgid "Once every 5 minutes"
|
6743 |
+
msgstr ""
|
6744 |
+
|
6745 |
+
#: includes/functions/wcj-functions-crons.php:115
|
6746 |
+
msgid "Once a minute"
|
6747 |
+
msgstr ""
|
6748 |
+
|
6749 |
+
#: includes/functions/wcj-functions-exchange-rates.php:69
|
6750 |
+
msgid "European Central Bank (ECB)"
|
6751 |
+
msgstr ""
|
6752 |
+
|
6753 |
+
#: includes/functions/wcj-functions-exchange-rates.php:69
|
6754 |
+
msgid "recommended"
|
6755 |
+
msgstr ""
|
6756 |
+
|
6757 |
+
#: includes/functions/wcj-functions-exchange-rates.php:70
|
6758 |
+
msgid "The Free Currency Converter API"
|
6759 |
+
msgstr ""
|
6760 |
+
|
6761 |
+
#: includes/functions/wcj-functions-exchange-rates.php:71
|
6762 |
+
msgid "Bank of England (BOE)"
|
6763 |
+
msgstr ""
|
6764 |
+
|
6765 |
+
#: includes/functions/wcj-functions-exchange-rates.php:72
|
6766 |
+
msgid "TCMB"
|
6767 |
+
msgstr ""
|
6768 |
+
|
6769 |
+
#: includes/functions/wcj-functions-exchange-rates.php:73
|
6770 |
+
msgid "Coinbase"
|
6771 |
+
msgstr ""
|
6772 |
+
|
6773 |
+
#: includes/functions/wcj-functions-exchange-rates.php:74
|
6774 |
+
msgid "CoinMarketCap"
|
6775 |
+
msgstr ""
|
6776 |
+
|
6777 |
+
#: includes/functions/wcj-functions-general.php:652
|
6778 |
+
#: includes/settings/wcj-settings-cross-sells.php:73
|
6779 |
+
#: includes/settings/wcj-settings-empty-cart.php:47
|
6780 |
+
msgid "Before cart"
|
6781 |
+
msgstr ""
|
6782 |
+
|
6783 |
+
#: includes/functions/wcj-functions-general.php:653
|
6784 |
+
msgid "Before cart table"
|
6785 |
+
msgstr ""
|
6786 |
+
|
6787 |
+
#: includes/functions/wcj-functions-general.php:654
|
6788 |
+
msgid "Before cart contents"
|
6789 |
+
msgstr ""
|
6790 |
+
|
6791 |
+
#: includes/functions/wcj-functions-general.php:655
|
6792 |
+
msgid "Cart contents"
|
6793 |
+
msgstr ""
|
6794 |
+
|
6795 |
+
#: includes/functions/wcj-functions-general.php:656
|
6796 |
+
msgid "Cart coupon"
|
6797 |
+
msgstr ""
|
6798 |
+
|
6799 |
+
#: includes/functions/wcj-functions-general.php:657
|
6800 |
+
msgid "Cart actions"
|
6801 |
+
msgstr ""
|
6802 |
+
|
6803 |
+
#: includes/functions/wcj-functions-general.php:658
|
6804 |
+
msgid "After cart contents"
|
6805 |
+
msgstr ""
|
6806 |
+
|
6807 |
+
#: includes/functions/wcj-functions-general.php:659
|
6808 |
+
msgid "After cart table"
|
6809 |
+
msgstr ""
|
6810 |
+
|
6811 |
+
#: includes/functions/wcj-functions-general.php:660
|
6812 |
+
#: includes/settings/wcj-settings-cross-sells.php:74
|
6813 |
+
msgid "Cart collaterals"
|
6814 |
+
msgstr ""
|
6815 |
+
|
6816 |
+
#: includes/functions/wcj-functions-general.php:661
|
6817 |
+
#: includes/settings/wcj-settings-cross-sells.php:75
|
6818 |
+
#: includes/settings/wcj-settings-empty-cart.php:56
|
6819 |
+
msgid "After cart"
|
6820 |
+
msgstr ""
|
6821 |
+
|
6822 |
+
#: includes/functions/wcj-functions-general.php:663
|
6823 |
+
msgid "Before cart totals"
|
6824 |
+
msgstr ""
|
6825 |
+
|
6826 |
+
#: includes/functions/wcj-functions-general.php:664
|
6827 |
+
#: includes/settings/wcj-settings-empty-cart.php:49
|
6828 |
+
msgid "Cart totals: Before shipping"
|
6829 |
+
msgstr ""
|
6830 |
+
|
6831 |
+
#: includes/functions/wcj-functions-general.php:665
|
6832 |
+
#: includes/settings/wcj-settings-empty-cart.php:50
|
6833 |
+
msgid "Cart totals: After shipping"
|
6834 |
+
msgstr ""
|
6835 |
+
|
6836 |
+
#: includes/functions/wcj-functions-general.php:666
|
6837 |
+
#: includes/settings/wcj-settings-empty-cart.php:51
|
6838 |
+
msgid "Cart totals: Before order total"
|
6839 |
+
msgstr ""
|
6840 |
+
|
6841 |
+
#: includes/functions/wcj-functions-general.php:667
|
6842 |
+
#: includes/settings/wcj-settings-empty-cart.php:52
|
6843 |
+
msgid "Cart totals: After order total"
|
6844 |
+
msgstr ""
|
6845 |
+
|
6846 |
+
#: includes/functions/wcj-functions-general.php:668
|
6847 |
+
msgid "Proceed to checkout"
|
6848 |
+
msgstr ""
|
6849 |
+
|
6850 |
+
#: includes/functions/wcj-functions-general.php:669
|
6851 |
+
msgid "After cart totals"
|
6852 |
+
msgstr ""
|
6853 |
+
|
6854 |
+
#: includes/functions/wcj-functions-general.php:671
|
6855 |
+
msgid "Before shipping calculator"
|
6856 |
+
msgstr ""
|
6857 |
+
|
6858 |
+
#: includes/functions/wcj-functions-general.php:672
|
6859 |
+
msgid "After shipping calculator"
|
6860 |
+
msgstr ""
|
6861 |
+
|
6862 |
+
#: includes/functions/wcj-functions-general.php:674
|
6863 |
+
msgid "If cart is empty"
|
6864 |
+
msgstr ""
|
6865 |
+
|
6866 |
+
#: includes/functions/wcj-functions-invoicing.php:33
|
6867 |
+
#, php-format
|
6868 |
+
msgid "Current image path: %s."
|
6869 |
+
msgstr ""
|
6870 |
+
|
6871 |
+
#: includes/functions/wcj-functions-invoicing.php:266
|
6872 |
+
msgid "Invoice"
|
6873 |
+
msgstr ""
|
6874 |
+
|
6875 |
+
#: includes/functions/wcj-functions-invoicing.php:272
|
6876 |
+
msgid "Proforma Invoice"
|
6877 |
+
msgstr ""
|
6878 |
+
|
6879 |
+
#: includes/functions/wcj-functions-invoicing.php:278
|
6880 |
+
msgid "Packing Slip"
|
6881 |
+
msgstr ""
|
6882 |
+
|
6883 |
+
#: includes/functions/wcj-functions-invoicing.php:284
|
6884 |
+
msgid "Credit Note"
|
6885 |
+
msgstr ""
|
6886 |
+
|
6887 |
+
#: includes/functions/wcj-functions-invoicing.php:294
|
6888 |
+
msgid "Custom Document"
|
6889 |
+
msgstr ""
|
6890 |
+
|
6891 |
+
#: includes/functions/wcj-functions-reports.php:22
|
6892 |
+
msgid "Daily Total Sum"
|
6893 |
+
msgstr ""
|
6894 |
+
|
6895 |
+
#: includes/functions/wcj-functions-reports.php:23
|
6896 |
+
msgid "Daily Total Quantity"
|
6897 |
+
msgstr ""
|
6898 |
+
|
6899 |
+
#: includes/functions/wcj-functions-reports.php:25
|
6900 |
+
msgid "Item Title"
|
6901 |
+
msgstr ""
|
6902 |
+
|
6903 |
+
#: includes/functions/wcj-functions-reports.php:26
|
6904 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:159
|
6905 |
+
#: includes/settings/wcj-settings-product-addons.php:157
|
6906 |
+
msgid "Quantity"
|
6907 |
+
msgstr ""
|
6908 |
+
|
6909 |
+
#: includes/functions/wcj-functions-reports.php:27
|
6910 |
+
msgid "Sum"
|
6911 |
+
msgstr ""
|
6912 |
+
|
6913 |
+
#: includes/functions/wcj-functions-reports.php:29
|
6914 |
+
msgid "Last Sale Date"
|
6915 |
+
msgstr ""
|
6916 |
+
|
6917 |
+
#: includes/functions/wcj-functions-reports.php:30
|
6918 |
+
msgid "Last Sale Order ID"
|
6919 |
+
msgstr ""
|
6920 |
+
|
6921 |
+
#: includes/functions/wcj-functions-reports.php:31
|
6922 |
+
msgid "Last Sale Order Status"
|
6923 |
+
msgstr ""
|
6924 |
+
|
6925 |
+
#: includes/functions/wcj-functions-reports.php:82
|
6926 |
+
msgid "Last 14 days"
|
6927 |
+
msgstr ""
|
6928 |
+
|
6929 |
+
#: includes/functions/wcj-functions-reports.php:87
|
6930 |
+
msgid "Last 30 days"
|
6931 |
+
msgstr ""
|
6932 |
+
|
6933 |
+
#: includes/functions/wcj-functions-reports.php:92
|
6934 |
+
msgid "Last 3 months"
|
6935 |
+
msgstr ""
|
6936 |
+
|
6937 |
+
#: includes/functions/wcj-functions-reports.php:97
|
6938 |
+
msgid "Last 6 months"
|
6939 |
+
msgstr ""
|
6940 |
+
|
6941 |
+
#: includes/functions/wcj-functions-reports.php:102
|
6942 |
+
msgid "Last 12 months"
|
6943 |
+
msgstr ""
|
6944 |
+
|
6945 |
+
#: includes/functions/wcj-functions-reports.php:107
|
6946 |
+
msgid "Last 24 months"
|
6947 |
+
msgstr ""
|
6948 |
+
|
6949 |
+
#: includes/functions/wcj-functions-reports.php:112
|
6950 |
+
msgid "Last 36 months"
|
6951 |
+
msgstr ""
|
6952 |
+
|
6953 |
+
#: includes/functions/wcj-functions-reports.php:117
|
6954 |
+
msgid "Same days last month"
|
6955 |
+
msgstr ""
|
6956 |
+
|
6957 |
+
#: includes/functions/wcj-functions-reports.php:122
|
6958 |
+
msgid "Same days last year"
|
6959 |
+
msgstr ""
|
6960 |
+
|
6961 |
+
#: includes/functions/wcj-functions-reports.php:127
|
6962 |
+
msgid "Last year"
|
6963 |
+
msgstr ""
|
6964 |
+
|
6965 |
+
#: includes/functions/wcj-functions-reports.php:132
|
6966 |
+
msgid "Yesterday"
|
6967 |
+
msgstr ""
|
6968 |
+
|
6969 |
+
#: includes/functions/wcj-functions-reports.php:137
|
6970 |
+
msgid "Today"
|
6971 |
+
msgstr ""
|
6972 |
+
|
6973 |
+
#: includes/functions/wcj-functions-shipping.php:38
|
6974 |
+
#, php-format
|
6975 |
+
msgid "%s day(s)"
|
6976 |
+
msgstr ""
|
6977 |
+
|
6978 |
+
#: includes/functions/wcj-functions-shipping.php:222
|
6979 |
+
#: includes/functions/wcj-functions-shipping.php:279
|
6980 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:138
|
6981 |
+
msgid "You have Free delivery"
|
6982 |
+
msgstr ""
|
6983 |
+
|
6984 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
6985 |
+
msgid "Enable Custom Payment"
|
6986 |
+
msgstr ""
|
6987 |
+
|
6988 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:57
|
6989 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:193
|
6990 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:109
|
6991 |
+
msgid "This controls the title which the user sees during checkout."
|
6992 |
+
msgstr ""
|
6993 |
+
|
6994 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:58
|
6995 |
+
msgid "Custom Payment"
|
6996 |
+
msgstr ""
|
6997 |
+
|
6998 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:65
|
6999 |
+
msgid "Payment method description that the customer will see on your checkout."
|
7000 |
+
msgstr ""
|
7001 |
+
|
7002 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:66
|
7003 |
+
msgid "You can add input fields with [wcj_input_field] shortcode."
|
7004 |
+
msgstr ""
|
7005 |
+
|
7006 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:67
|
7007 |
+
msgid "Custom Payment Description."
|
7008 |
+
msgstr ""
|
7009 |
+
|
7010 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:72
|
7011 |
+
msgid "Instructions"
|
7012 |
+
msgstr ""
|
7013 |
+
|
7014 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:74
|
7015 |
+
msgid "Instructions that will be added to the thank you page."
|
7016 |
+
msgstr ""
|
7017 |
+
|
7018 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:80
|
7019 |
+
msgid "Email Instructions"
|
7020 |
+
msgstr ""
|
7021 |
+
|
7022 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:82
|
7023 |
+
msgid "Instructions that will be added to the emails."
|
7024 |
+
msgstr ""
|
7025 |
+
|
7026 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:88
|
7027 |
+
msgid "Icon"
|
7028 |
+
msgstr ""
|
7029 |
+
|
7030 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:90
|
7031 |
+
#: includes/settings/wcj-settings-payment-gateways-icons.php:16
|
7032 |
+
msgid ""
|
7033 |
+
"If you want to show an image next to the gateway's name on the frontend, "
|
7034 |
+
"enter a URL to an image."
|
7035 |
+
msgstr ""
|
7036 |
+
|
7037 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:97
|
7038 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:57
|
7039 |
+
msgid "Minimum order amount"
|
7040 |
+
msgstr ""
|
7041 |
+
|
7042 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:99
|
7043 |
+
msgid ""
|
7044 |
+
"If you want to set minimum order amount (excluding fees) to show this "
|
7045 |
+
"gateway on frontend, enter a number here. Set to 0 to disable."
|
7046 |
+
msgstr ""
|
7047 |
+
|
7048 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:106
|
7049 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:59
|
7050 |
+
msgid "Enable for shipping methods"
|
7051 |
+
msgstr ""
|
7052 |
+
|
7053 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:111
|
7054 |
+
msgid ""
|
7055 |
+
"If gateway is only available for certain shipping methods, set it up here. "
|
7056 |
+
"Leave blank to enable for all methods."
|
7057 |
+
msgstr ""
|
7058 |
+
|
7059 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:114
|
7060 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:66
|
7061 |
+
msgid "Select shipping methods"
|
7062 |
+
msgstr ""
|
7063 |
+
|
7064 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:118
|
7065 |
+
msgid "Enable for virtual orders"
|
7066 |
+
msgstr ""
|
7067 |
+
|
7068 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:119
|
7069 |
+
msgid "Enable gateway if the order is virtual"
|
7070 |
+
msgstr ""
|
7071 |
+
|
7072 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:125
|
7073 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:19
|
7074 |
+
msgid "Default Order Status"
|
7075 |
+
msgstr ""
|
7076 |
+
|
7077 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:126
|
7078 |
+
msgid "Enable Custom Statuses feature to add custom statuses to the list."
|
7079 |
+
msgstr ""
|
7080 |
+
|
7081 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:133
|
7082 |
+
msgid "Send Additional Emails"
|
7083 |
+
msgstr ""
|
7084 |
+
|
7085 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:134
|
7086 |
+
msgid "Send to Admin"
|
7087 |
+
msgstr ""
|
7088 |
+
|
7089 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:140
|
7090 |
+
msgid "Send to Customer"
|
7091 |
+
msgstr ""
|
7092 |
+
|
7093 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:141
|
7094 |
+
msgid ""
|
7095 |
+
"This may help if you are using pending or custom default status and not "
|
7096 |
+
"getting new order emails."
|
7097 |
+
msgstr ""
|
7098 |
+
|
7099 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:147
|
7100 |
+
msgid "Custom Return URL (Thank You Page)"
|
7101 |
+
msgstr ""
|
7102 |
+
|
7103 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:149
|
7104 |
+
msgid "Enter full URL with http(s)."
|
7105 |
+
msgstr ""
|
7106 |
+
|
7107 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:150
|
7108 |
+
msgid "Optional. Leave blank to use default URL."
|
7109 |
+
msgstr ""
|
7110 |
+
|
7111 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:346
|
7112 |
+
#: includes/settings/wcj-settings-payment-gateways.php:38
|
7113 |
+
msgid "Custom Gateway"
|
7114 |
+
msgstr ""
|
7115 |
+
|
7116 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:347
|
7117 |
+
msgid "Booster for WooCommerce: Custom Payment Gateway"
|
7118 |
+
msgstr ""
|
7119 |
+
|
7120 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:168
|
7121 |
+
msgid "Booster: Product Input Fields"
|
7122 |
+
msgstr ""
|
7123 |
+
|
7124 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:207
|
7125 |
+
msgid "Total number of "
|
7126 |
+
msgstr ""
|
7127 |
+
|
7128 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:223
|
7129 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:398
|
7130 |
+
#: includes/settings/wcj-settings-product-input-fields.php:84
|
7131 |
+
msgid "Product Input Field"
|
7132 |
+
msgstr ""
|
7133 |
+
|
7134 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:469
|
7135 |
+
msgid "Wrong file type!"
|
7136 |
+
msgstr ""
|
7137 |
+
|
7138 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:477
|
7139 |
+
msgid "File is too big!"
|
7140 |
+
msgstr ""
|
7141 |
+
|
7142 |
+
#: includes/input-fields/class-wcj-product-input-fields-core.php:703
|
7143 |
+
msgid "Select a country…"
|
7144 |
+
msgstr ""
|
7145 |
+
|
7146 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:15
|
7147 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:39
|
7148 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
|
7149 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:14
|
7150 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:23
|
7151 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:20
|
7152 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:14
|
7153 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:21
|
7154 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:57
|
7155 |
+
#: includes/settings/wcj-settings-admin-products-list.php:43
|
7156 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:70
|
7157 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:40
|
7158 |
+
#: includes/settings/wcj-settings-export.php:70
|
7159 |
+
#: includes/settings/wcj-settings-export.php:138
|
7160 |
+
#: includes/settings/wcj-settings-export.php:220
|
7161 |
+
#: includes/settings/wcj-settings-global-discount.php:50
|
7162 |
+
#: includes/settings/wcj-settings-product-by-user.php:149
|
7163 |
+
#: includes/settings/wcj-settings-products-xml.php:76
|
7164 |
+
msgid "Enabled"
|
7165 |
+
msgstr ""
|
7166 |
+
|
7167 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:22
|
7168 |
+
msgid "Set to zero for default order."
|
7169 |
+
msgstr ""
|
7170 |
+
|
7171 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:32
|
7172 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:91
|
7173 |
+
#: includes/settings/wcj-settings-cart-customization.php:50
|
7174 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:135
|
7175 |
+
#: includes/settings/wcj-settings-more-button-labels.php:19
|
7176 |
+
#: includes/settings/wcj-settings-product-addons.php:88
|
7177 |
+
msgid "Text"
|
7178 |
+
msgstr ""
|
7179 |
+
|
7180 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:33
|
7181 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:136
|
7182 |
+
msgid "Textarea"
|
7183 |
+
msgstr ""
|
7184 |
+
|
7185 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:34
|
7186 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-numbers.php:14
|
7187 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:137
|
7188 |
+
msgid "Number"
|
7189 |
+
msgstr ""
|
7190 |
+
|
7191 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:35
|
7192 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:88
|
7193 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:138
|
7194 |
+
#: includes/settings/wcj-settings-product-addons.php:85
|
7195 |
+
msgid "Checkbox"
|
7196 |
+
msgstr ""
|
7197 |
+
|
7198 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:36
|
7199 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:38
|
7200 |
+
msgid "File"
|
7201 |
+
msgstr ""
|
7202 |
+
|
7203 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:37
|
7204 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:139
|
7205 |
+
msgid "Datepicker"
|
7206 |
+
msgstr ""
|
7207 |
+
|
7208 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:38
|
7209 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:140
|
7210 |
+
msgid "Weekpicker"
|
7211 |
+
msgstr ""
|
7212 |
+
|
7213 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:39
|
7214 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:141
|
7215 |
+
msgid "Timepicker"
|
7216 |
+
msgstr ""
|
7217 |
+
|
7218 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:40
|
7219 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:142
|
7220 |
+
msgid "Select"
|
7221 |
+
msgstr ""
|
7222 |
+
|
7223 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:41
|
7224 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:143
|
7225 |
+
msgid "Radio"
|
7226 |
+
msgstr ""
|
7227 |
+
|
7228 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:42
|
7229 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:144
|
7230 |
+
msgid "Password"
|
7231 |
+
msgstr ""
|
7232 |
+
|
7233 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:46
|
7234 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:148
|
7235 |
+
msgid "Phone"
|
7236 |
+
msgstr ""
|
7237 |
+
|
7238 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:57
|
7239 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:134
|
7240 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:165
|
7241 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:27
|
7242 |
+
#: includes/settings/wcj-settings-product-addons.php:130
|
7243 |
+
msgid "Placeholder"
|
7244 |
+
msgstr ""
|
7245 |
+
|
7246 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:63
|
7247 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:82
|
7248 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:152
|
7249 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:46
|
7250 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:49
|
7251 |
+
#: includes/settings/wcj-settings-product-by-user.php:155
|
7252 |
+
msgid "Required"
|
7253 |
+
msgstr ""
|
7254 |
+
|
7255 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:69
|
7256 |
+
msgid "Message on required"
|
7257 |
+
msgstr ""
|
7258 |
+
|
7259 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:75
|
7260 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:142
|
7261 |
+
#: includes/settings/wcj-settings-product-addons.php:137
|
7262 |
+
msgid "HTML Class"
|
7263 |
+
msgstr ""
|
7264 |
+
|
7265 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:91
|
7266 |
+
msgid "If checkbox is selected, set value for ON here"
|
7267 |
+
msgstr ""
|
7268 |
+
|
7269 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:92
|
7270 |
+
msgid "Checkbox: ON"
|
7271 |
+
msgstr ""
|
7272 |
+
|
7273 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:98
|
7274 |
+
msgid "If checkbox is selected, set value for OFF here"
|
7275 |
+
msgstr ""
|
7276 |
+
|
7277 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:99
|
7278 |
+
msgid "Checkbox: OFF"
|
7279 |
+
msgstr ""
|
7280 |
+
|
7281 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:105
|
7282 |
+
msgid "If checkbox is selected, set default value here"
|
7283 |
+
msgstr ""
|
7284 |
+
|
7285 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:106
|
7286 |
+
msgid "Checkbox: Default"
|
7287 |
+
msgstr ""
|
7288 |
+
|
7289 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:110
|
7290 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:273
|
7291 |
+
msgid "Not Checked"
|
7292 |
+
msgstr ""
|
7293 |
+
|
7294 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:111
|
7295 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:274
|
7296 |
+
#: includes/settings/wcj-settings-checkout-customization.php:92
|
7297 |
+
msgid "Checked"
|
7298 |
+
msgstr ""
|
7299 |
+
|
7300 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:116
|
7301 |
+
msgid ""
|
7302 |
+
"If file is selected, set accepted file types here. E.g.: \".jpg,.jpeg,.png"
|
7303 |
+
"\". Leave blank to accept all files"
|
7304 |
+
msgstr ""
|
7305 |
+
|
7306 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:117
|
7307 |
+
msgid ""
|
7308 |
+
"Visit <a href=\"https://www.w3schools.com/tags/att_input_accept.asp\" target="
|
7309 |
+
"\"_blank\">documentation on input accept attribute</a> for valid option "
|
7310 |
+
"formats"
|
7311 |
+
msgstr ""
|
7312 |
+
|
7313 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:118
|
7314 |
+
msgid "File: Accepted types"
|
7315 |
+
msgstr ""
|
7316 |
+
|
7317 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:120
|
7318 |
+
msgid ".jpg,.jpeg,.png"
|
7319 |
+
msgstr ""
|
7320 |
+
|
7321 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:124
|
7322 |
+
msgid ""
|
7323 |
+
"If file is selected, set max file size here. Set to zero to accept all files"
|
7324 |
+
msgstr ""
|
7325 |
+
|
7326 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:125
|
7327 |
+
msgid "File: Max size"
|
7328 |
+
msgstr ""
|
7329 |
+
|
7330 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:131
|
7331 |
+
msgid ""
|
7332 |
+
"If datepicker/weekpicker is selected, set date format here. Visit <a href="
|
7333 |
+
"\"https://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank"
|
7334 |
+
"\">documentation on date and time formatting</a> for valid date formats"
|
7335 |
+
msgstr ""
|
7336 |
+
|
7337 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:132
|
7338 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:280
|
7339 |
+
msgid "Leave blank to use your current WordPress format"
|
7340 |
+
msgstr ""
|
7341 |
+
|
7342 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:133
|
7343 |
+
msgid "Datepicker/Weekpicker: Date format"
|
7344 |
+
msgstr ""
|
7345 |
+
|
7346 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:139
|
7347 |
+
msgid "If datepicker/weekpicker is selected, set min date (in days) here"
|
7348 |
+
msgstr ""
|
7349 |
+
|
7350 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:140
|
7351 |
+
msgid "Datepicker/Weekpicker: Min date"
|
7352 |
+
msgstr ""
|
7353 |
+
|
7354 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:146
|
7355 |
+
msgid "If datepicker/weekpicker is selected, set max date (in days) here"
|
7356 |
+
msgstr ""
|
7357 |
+
|
7358 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:147
|
7359 |
+
msgid "Datepicker/Weekpicker: Max date"
|
7360 |
+
msgstr ""
|
7361 |
+
|
7362 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:153
|
7363 |
+
msgid ""
|
7364 |
+
"If datepicker/weekpicker is selected, set if you want to add year selector"
|
7365 |
+
msgstr ""
|
7366 |
+
|
7367 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:154
|
7368 |
+
msgid "Datepicker/Weekpicker: Change year"
|
7369 |
+
msgstr ""
|
7370 |
+
|
7371 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:160
|
7372 |
+
msgid ""
|
7373 |
+
"If datepicker/weekpicker is selected, and year selector is enabled, set year "
|
7374 |
+
"range here"
|
7375 |
+
msgstr ""
|
7376 |
+
|
7377 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:161
|
7378 |
+
msgid "Datepicker/Weekpicker: Year range"
|
7379 |
+
msgstr ""
|
7380 |
+
|
7381 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:168
|
7382 |
+
msgid "If datepicker/weekpicker is selected, set first week day here"
|
7383 |
+
msgstr ""
|
7384 |
+
|
7385 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:169
|
7386 |
+
msgid "Datepicker/Weekpicker: First week day"
|
7387 |
+
msgstr ""
|
7388 |
+
|
7389 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:173
|
7390 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:318
|
7391 |
+
msgid "Sunday"
|
7392 |
+
msgstr ""
|
7393 |
+
|
7394 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:174
|
7395 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:319
|
7396 |
+
msgid "Monday"
|
7397 |
+
msgstr ""
|
7398 |
+
|
7399 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:175
|
7400 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:320
|
7401 |
+
msgid "Tuesday"
|
7402 |
+
msgstr ""
|
7403 |
+
|
7404 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:176
|
7405 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:321
|
7406 |
+
msgid "Wednesday"
|
7407 |
+
msgstr ""
|
7408 |
+
|
7409 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:177
|
7410 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:322
|
7411 |
+
msgid "Thursday"
|
7412 |
+
msgstr ""
|
7413 |
+
|
7414 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:178
|
7415 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:323
|
7416 |
+
msgid "Friday"
|
7417 |
+
msgstr ""
|
7418 |
+
|
7419 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:179
|
7420 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:324
|
7421 |
+
msgid "Saturday"
|
7422 |
+
msgstr ""
|
7423 |
+
|
7424 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:184
|
7425 |
+
msgid ""
|
7426 |
+
"If timepicker is selected, set time format here. Visit <a href=\"http://"
|
7427 |
+
"timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
|
7428 |
+
"valid time formats"
|
7429 |
+
msgstr ""
|
7430 |
+
|
7431 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:185
|
7432 |
+
msgid "Timepicker: Time format"
|
7433 |
+
msgstr ""
|
7434 |
+
|
7435 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:191
|
7436 |
+
msgid ""
|
7437 |
+
"If timepicker is selected, set min time here. Visit <a href=\"http://"
|
7438 |
+
"timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
|
7439 |
+
"valid option formats"
|
7440 |
+
msgstr ""
|
7441 |
+
|
7442 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:192
|
7443 |
+
msgid "Timepicker: Min Time"
|
7444 |
+
msgstr ""
|
7445 |
+
|
7446 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:198
|
7447 |
+
msgid ""
|
7448 |
+
"If timepicker is selected, set max time here. Visit <a href=\"http://"
|
7449 |
+
"timepicker.co/options/\" target=\"_blank\">timepicker options page</a> for "
|
7450 |
+
"valid option formats"
|
7451 |
+
msgstr ""
|
7452 |
+
|
7453 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:199
|
7454 |
+
msgid "Timepicker: Max Time"
|
7455 |
+
msgstr ""
|
7456 |
+
|
7457 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:205
|
7458 |
+
msgid "If timepicker is selected, set interval (in minutes) here"
|
7459 |
+
msgstr ""
|
7460 |
+
|
7461 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:206
|
7462 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:335
|
7463 |
+
msgid "Timepicker: Interval"
|
7464 |
+
msgstr ""
|
7465 |
+
|
7466 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:212
|
7467 |
+
msgid "If select/radio is selected, set options here. One option per line"
|
7468 |
+
msgstr ""
|
7469 |
+
|
7470 |
+
#: includes/input-fields/wcj-product-input-fields-options.php:213
|
7471 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:223
|
7472 |
+
msgid "Select/Radio: Options"
|
7473 |
+
msgstr ""
|
7474 |
+
|
7475 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:60
|
7476 |
+
msgid "Invoices successfully renumerated!"
|
7477 |
+
msgstr ""
|
7478 |
+
|
7479 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
|
7480 |
+
msgid "Please select at least one order status."
|
7481 |
+
msgstr ""
|
7482 |
+
|
7483 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:67
|
7484 |
+
msgid "Booster - Renumerate Invoices"
|
7485 |
+
msgstr ""
|
7486 |
+
|
7487 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:68
|
7488 |
+
msgid ""
|
7489 |
+
"The tool renumerates invoices from choosen date. Invoice number format is "
|
7490 |
+
"set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
|
7491 |
+
"Numbering."
|
7492 |
+
msgstr ""
|
7493 |
+
|
7494 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:75
|
7495 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
|
7496 |
+
msgid "Start Date"
|
7497 |
+
msgstr ""
|
7498 |
+
|
7499 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
|
7500 |
+
msgid "Date to start renumerating. Leave blank to renumerate all invoices."
|
7501 |
+
msgstr ""
|
7502 |
+
|
7503 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:82
|
7504 |
+
msgid "End Date"
|
7505 |
+
msgstr ""
|
7506 |
+
|
7507 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
|
7508 |
+
msgid "Date to end renumerating. Leave blank to renumerate all invoices."
|
7509 |
+
msgstr ""
|
7510 |
+
|
7511 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:89
|
7512 |
+
msgid "Start Number"
|
7513 |
+
msgstr ""
|
7514 |
+
|
7515 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:91
|
7516 |
+
msgid ""
|
7517 |
+
"Counter to start renumerating. Leave 0 to continue from current counter."
|
7518 |
+
msgstr ""
|
7519 |
+
|
7520 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:96
|
7521 |
+
msgid "Delete All"
|
7522 |
+
msgstr ""
|
7523 |
+
|
7524 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:98
|
7525 |
+
msgid "Clear all invoices before renumerating"
|
7526 |
+
msgstr ""
|
7527 |
+
|
7528 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:110
|
7529 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:135
|
7530 |
+
msgid "Document Type"
|
7531 |
+
msgstr ""
|
7532 |
+
|
7533 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
|
7534 |
+
msgid "Order Statuses"
|
7535 |
+
msgstr ""
|
7536 |
+
|
7537 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:123
|
7538 |
+
msgid "Renumerate invoices"
|
7539 |
+
msgstr ""
|
7540 |
+
|
7541 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:135
|
7542 |
+
msgid "Results"
|
7543 |
+
msgstr ""
|
7544 |
+
|
7545 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:216
|
7546 |
+
#, php-format
|
7547 |
+
msgid "Total documents created: %d"
|
7548 |
+
msgstr ""
|
7549 |
+
|
7550 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:217
|
7551 |
+
#, php-format
|
7552 |
+
msgid "Total documents deleted: %d"
|
7553 |
+
msgstr ""
|
7554 |
+
|
7555 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:69
|
7556 |
+
#, php-format
|
7557 |
+
msgid ""
|
7558 |
+
"This option is disabled with \"Disable Saving PDFs in PHP directory for "
|
7559 |
+
"temporary files\" checkbox in <a href=\"%s\" target=\"_blank\">WooCommerce > "
|
7560 |
+
"Settings > Booster > PDF Invoicing & Packing Slips > Advanced</a>."
|
7561 |
+
msgstr ""
|
7562 |
+
|
7563 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:80
|
7564 |
+
msgid "Sorry, but something went wrong..."
|
7565 |
+
msgstr ""
|
7566 |
+
|
7567 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:86
|
7568 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:107
|
7569 |
+
msgid "Please fill year and month values."
|
7570 |
+
msgstr ""
|
7571 |
+
|
7572 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:130
|
7573 |
+
msgid "Month"
|
7574 |
+
msgstr ""
|
7575 |
+
|
7576 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:142
|
7577 |
+
msgid "Display monthly documents table"
|
7578 |
+
msgstr ""
|
7579 |
+
|
7580 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:148
|
7581 |
+
msgid "Download all monthly documents PDFs in single ZIP file"
|
7582 |
+
msgstr ""
|
7583 |
+
|
7584 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:154
|
7585 |
+
msgid "Download monthly documents CSV"
|
7586 |
+
msgstr ""
|
7587 |
+
|
7588 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:257
|
7589 |
+
#, php-format
|
7590 |
+
msgid "No documents (%s) found for %d-%02d."
|
7591 |
+
msgstr ""
|
7592 |
+
|
7593 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:25
|
7594 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
|
7595 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
|
7596 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:63
|
7597 |
+
#: includes/settings/wcj-settings-multicurrency.php:162
|
7598 |
+
#: includes/settings/wcj-settings-order-min-amount.php:69
|
7599 |
+
#: includes/settings/wcj-settings-price-by-country.php:160
|
7600 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:98
|
7601 |
+
msgid "Advanced"
|
7602 |
+
msgstr ""
|
7603 |
+
|
7604 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:38
|
7605 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:62
|
7606 |
+
msgid "Document Number"
|
7607 |
+
msgstr ""
|
7608 |
+
|
7609 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:39
|
7610 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:63
|
7611 |
+
msgid "Document Date"
|
7612 |
+
msgstr ""
|
7613 |
+
|
7614 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:41
|
7615 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:65
|
7616 |
+
msgid "Customer Country"
|
7617 |
+
msgstr ""
|
7618 |
+
|
7619 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:42
|
7620 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:66
|
7621 |
+
msgid "Customer VAT ID"
|
7622 |
+
msgstr ""
|
7623 |
+
|
7624 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:43
|
7625 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:67
|
7626 |
+
msgid "Tax %"
|
7627 |
+
msgstr ""
|
7628 |
+
|
7629 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:44
|
7630 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:68
|
7631 |
+
msgid "Order Total Excl. Tax"
|
7632 |
+
msgstr ""
|
7633 |
+
|
7634 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:45
|
7635 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:69
|
7636 |
+
msgid "Order Taxes"
|
7637 |
+
msgstr ""
|
7638 |
+
|
7639 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:48
|
7640 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:78
|
7641 |
+
msgid "Payment Gateway"
|
7642 |
+
msgstr ""
|
7643 |
+
|
7644 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:49
|
7645 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:79
|
7646 |
+
msgid "Refunds"
|
7647 |
+
msgstr ""
|
7648 |
+
|
7649 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:70
|
7650 |
+
msgid "Cart Total Excl. Tax"
|
7651 |
+
msgstr ""
|
7652 |
+
|
7653 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:71
|
7654 |
+
msgid "Cart Tax"
|
7655 |
+
msgstr ""
|
7656 |
+
|
7657 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:72
|
7658 |
+
msgid "Cart Tax %"
|
7659 |
+
msgstr ""
|
7660 |
+
|
7661 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:73
|
7662 |
+
msgid "Shipping Total Excl. Tax"
|
7663 |
+
msgstr ""
|
7664 |
+
|
7665 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:74
|
7666 |
+
msgid "Shipping Tax"
|
7667 |
+
msgstr ""
|
7668 |
+
|
7669 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-advanced.php:75
|
7670 |
+
msgid "Shipping Tax %"
|
7671 |
+
msgstr ""
|
7672 |
+
|
7673 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:24
|
7674 |
+
msgid "Display & Misc."
|
7675 |
+
msgstr ""
|
7676 |
+
|
7677 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:131
|
7678 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:307
|
7679 |
+
msgid "View"
|
7680 |
+
msgstr ""
|
7681 |
+
|
7682 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:150
|
7683 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:335
|
7684 |
+
msgid "Create"
|
7685 |
+
msgstr ""
|
7686 |
+
|
7687 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:227
|
7688 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:98
|
7689 |
+
#, php-format
|
7690 |
+
msgid "Your %s:"
|
7691 |
+
msgstr ""
|
7692 |
+
|
7693 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:272
|
7694 |
+
msgid "Booster: PDF Invoices"
|
7695 |
+
msgstr ""
|
7696 |
+
|
7697 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:292
|
7698 |
+
msgid "You have no document types enabled."
|
7699 |
+
msgstr ""
|
7700 |
+
|
7701 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:341
|
7702 |
+
msgid ""
|
7703 |
+
"In case of partial refund, you need to reload the page to see created "
|
7704 |
+
"document in this meta box."
|
7705 |
+
msgstr ""
|
7706 |
+
|
7707 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-footer.php:21
|
7708 |
+
#: includes/settings/wcj-settings-custom-css.php:25
|
7709 |
+
#: includes/settings/wcj-settings-custom-js.php:25
|
7710 |
+
msgid "Footer"
|
7711 |
+
msgstr ""
|
7712 |
+
|
7713 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-header.php:23
|
7714 |
+
#: includes/settings/wcj-settings-custom-css.php:24
|
7715 |
+
#: includes/settings/wcj-settings-custom-js.php:24
|
7716 |
+
msgid "Header"
|
7717 |
+
msgstr ""
|
7718 |
+
|
7719 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php:23
|
7720 |
+
msgid "Numbering"
|
7721 |
+
msgstr ""
|
7722 |
+
|
7723 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-page.php:23
|
7724 |
+
msgid "Page Settings"
|
7725 |
+
msgstr ""
|
7726 |
+
|
7727 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-styling.php:23
|
7728 |
+
msgid "Styling"
|
7729 |
+
msgstr ""
|
7730 |
+
|
7731 |
+
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-templates.php:23
|
7732 |
+
#: includes/settings/wcj-settings-template-editor.php:20
|
7733 |
+
msgid "Templates"
|
7734 |
+
msgstr ""
|
7735 |
+
|
7736 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:79
|
7737 |
+
#, php-format
|
7738 |
+
msgid "Status last checked at %s."
|
7739 |
+
msgstr ""
|
7740 |
+
|
7741 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:80
|
7742 |
+
#, php-format
|
7743 |
+
msgid "Cron scheduled at %s."
|
7744 |
+
msgstr ""
|
7745 |
+
|
7746 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:81
|
7747 |
+
#, php-format
|
7748 |
+
msgid "Cron last run at %s."
|
7749 |
+
msgstr ""
|
7750 |
+
|
7751 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:122
|
7752 |
+
msgid "No key set."
|
7753 |
+
msgstr ""
|
7754 |
+
|
7755 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:123
|
7756 |
+
#, php-format
|
7757 |
+
msgid ""
|
7758 |
+
"To get the key, please visit <a target=\"_blank\" href=\"%s\">your account "
|
7759 |
+
"page at %s</a>."
|
7760 |
+
msgstr ""
|
7761 |
+
|
7762 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:126
|
7763 |
+
#, php-format
|
7764 |
+
msgid "No response from server. Please <a href=\"%s\">try again</a> later."
|
7765 |
+
msgstr ""
|
7766 |
+
|
7767 |
+
#: includes/plus/class-wcj-plus-site-key-manager.php:128
|
7768 |
+
#, php-format
|
7769 |
+
msgid "Server error. Please <a href=\"%s\">try again</a> later."
|
7770 |
+
msgstr ""
|
7771 |
+
|
7772 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:46
|
7773 |
+
msgid "Manage site key"
|
7774 |
+
msgstr ""
|
7775 |
+
|
7776 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:59
|
7777 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:73
|
7778 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:81
|
7779 |
+
msgid "Site Key"
|
7780 |
+
msgstr ""
|
7781 |
+
|
7782 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:74
|
7783 |
+
msgid ""
|
7784 |
+
"This section lets you manage site key for paid Booster Plus for WooCommerce "
|
7785 |
+
"plugin."
|
7786 |
+
msgstr ""
|
7787 |
+
|
7788 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:75
|
7789 |
+
#, php-format
|
7790 |
+
msgid ""
|
7791 |
+
"To get the key, please go to <a target=\"_blank\" href=\"%s\">your account "
|
7792 |
+
"page at %s</a>."
|
7793 |
+
msgstr ""
|
7794 |
+
|
7795 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:78
|
7796 |
+
msgid "Check site key now"
|
7797 |
+
msgstr ""
|
7798 |
+
|
7799 |
+
#: includes/plus/class-wcj-plus-site-key-section.php:82
|
7800 |
+
#, php-format
|
7801 |
+
msgid "Site URL: %s"
|
7802 |
+
msgstr ""
|
7803 |
+
|
7804 |
+
#: includes/plus/lib/plugin-update-checker/github-checker.php:119
|
7805 |
+
msgid "There is no changelog available."
|
7806 |
+
msgstr ""
|
7807 |
+
|
7808 |
+
#: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:763
|
7809 |
+
msgid "Check for updates"
|
7810 |
+
msgstr ""
|
7811 |
+
|
7812 |
+
#: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:807
|
7813 |
+
msgid "This plugin is up to date."
|
7814 |
+
msgstr ""
|
7815 |
+
|
7816 |
+
#: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:809
|
7817 |
+
msgid "A new version of this plugin is available."
|
7818 |
+
msgstr ""
|
7819 |
+
|
7820 |
+
#: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:811
|
7821 |
+
#, php-format
|
7822 |
+
msgid "Unknown update checker status \"%s\""
|
7823 |
+
msgstr ""
|
7824 |
+
|
7825 |
+
#: includes/price-by-country/class-wcj-price-by-country-group-generator.php:34
|
7826 |
+
msgid "Country groups successfully generated."
|
7827 |
+
msgstr ""
|
7828 |
+
|
7829 |
+
#: includes/price-by-country/class-wcj-price-by-country-group-generator.php:37
|
7830 |
+
msgid "Country groups generation failed."
|
7831 |
+
msgstr ""
|
7832 |
+
|
7833 |
+
#: includes/price-by-country/class-wcj-price-by-country-local.php:111
|
7834 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:67
|
7835 |
+
#: includes/settings/wcj-settings-price-by-country.php:338
|
7836 |
+
msgid "Make empty price"
|
7837 |
+
msgstr ""
|
7838 |
+
|
7839 |
+
#: includes/price-by-country/class-wcj-price-by-country-local.php:215
|
7840 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:17
|
7841 |
+
#: includes/settings/wcj-settings-add-to-cart.php:50
|
7842 |
+
#: includes/settings/wcj-settings-price-by-country.php:232
|
7843 |
+
#: includes/settings/wcj-settings-price-by-country.php:233
|
7844 |
+
#: includes/settings/wcj-settings-price-by-country.php:238
|
7845 |
+
#: includes/settings/wcj-settings-price-by-country.php:286
|
7846 |
+
#: includes/settings/wcj-settings-price-by-country.php:329
|
7847 |
+
msgid "Group"
|
7848 |
+
msgstr ""
|
7849 |
+
|
7850 |
+
#: includes/reports/class-wcj-currency-reports.php:38
|
7851 |
+
msgid "Reports currency:"
|
7852 |
+
msgstr ""
|
7853 |
+
|
7854 |
+
#: includes/reports/class-wcj-currency-reports.php:40
|
7855 |
+
#: includes/reports/class-wcj-currency-reports.php:78
|
7856 |
+
msgid "Show reports only in"
|
7857 |
+
msgstr ""
|
7858 |
+
|
7859 |
+
#: includes/reports/wcj-class-reports-customers.php:38
|
7860 |
+
msgid "No customers found."
|
7861 |
+
msgstr ""
|
7862 |
+
|
7863 |
+
#: includes/reports/wcj-class-reports-customers.php:79
|
7864 |
+
msgid "Non Available"
|
7865 |
+
msgstr ""
|
7866 |
+
|
7867 |
+
#: includes/reports/wcj-class-reports-customers.php:92
|
7868 |
+
#: includes/settings/wcj-settings-offer-price.php:206
|
7869 |
+
msgid "Customer Name"
|
7870 |
+
msgstr ""
|
7871 |
+
|
7872 |
+
#: includes/reports/wcj-class-reports-customers.php:94
|
7873 |
+
msgid "Total Spent"
|
7874 |
+
msgstr ""
|
7875 |
+
|
7876 |
+
#: includes/reports/wcj-class-reports-customers.php:134
|
7877 |
+
msgid "Total customers"
|
7878 |
+
msgstr ""
|
7879 |
+
|
7880 |
+
#: includes/reports/wcj-class-reports-customers.php:138
|
7881 |
+
msgid "Country Code"
|
7882 |
+
msgstr ""
|
7883 |
+
|
7884 |
+
#: includes/reports/wcj-class-reports-customers.php:139
|
7885 |
+
msgid "Customers Count"
|
7886 |
+
msgstr ""
|
7887 |
+
|
7888 |
+
#: includes/reports/wcj-class-reports-customers.php:140
|
7889 |
+
msgid "Percent of total"
|
7890 |
+
msgstr ""
|
7891 |
+
|
7892 |
+
#: includes/reports/wcj-class-reports-customers.php:162
|
7893 |
+
msgid "Report for:"
|
7894 |
+
msgstr ""
|
7895 |
+
|
7896 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:37
|
7897 |
+
msgid "Currency rates saved."
|
7898 |
+
msgstr ""
|
7899 |
+
|
7900 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:41
|
7901 |
+
msgid "Currency rates deleted."
|
7902 |
+
msgstr ""
|
7903 |
+
|
7904 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:84
|
7905 |
+
msgid "Days"
|
7906 |
+
msgstr ""
|
7907 |
+
|
7908 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:85
|
7909 |
+
msgid "Total Orders"
|
7910 |
+
msgstr ""
|
7911 |
+
|
7912 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:86
|
7913 |
+
msgid "Orders Average / Day"
|
7914 |
+
msgstr ""
|
7915 |
+
|
7916 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:87
|
7917 |
+
#: includes/reports/wcj-class-reports-sales.php:315
|
7918 |
+
msgid "Total Sum"
|
7919 |
+
msgstr ""
|
7920 |
+
|
7921 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:88
|
7922 |
+
msgid "Total Sum (excl. TAX)"
|
7923 |
+
msgstr ""
|
7924 |
+
|
7925 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:89
|
7926 |
+
msgid "Average / Order (excl. TAX)"
|
7927 |
+
msgstr ""
|
7928 |
+
|
7929 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:90
|
7930 |
+
msgid "Average / Day (excl. TAX)"
|
7931 |
+
msgstr ""
|
7932 |
+
|
7933 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:91
|
7934 |
+
msgid "Currency Rates"
|
7935 |
+
msgstr ""
|
7936 |
+
|
7937 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:92
|
7938 |
+
msgid "Orders by Currency"
|
7939 |
+
msgstr ""
|
7940 |
+
|
7941 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:200
|
7942 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:213
|
7943 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:280
|
7944 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:282
|
7945 |
+
#, php-format
|
7946 |
+
msgid "Forecast: %s"
|
7947 |
+
msgstr ""
|
7948 |
+
|
7949 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:233
|
7950 |
+
msgid "Grab average rate"
|
7951 |
+
msgstr ""
|
7952 |
+
|
7953 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:285
|
7954 |
+
msgid "Totals"
|
7955 |
+
msgstr ""
|
7956 |
+
|
7957 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:329
|
7958 |
+
msgid "Report currency"
|
7959 |
+
msgstr ""
|
7960 |
+
|
7961 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:344
|
7962 |
+
#, php-format
|
7963 |
+
msgid "Report generated in: %s s"
|
7964 |
+
msgstr ""
|
7965 |
+
|
7966 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:347
|
7967 |
+
msgid "Save Currency Rates"
|
7968 |
+
msgstr ""
|
7969 |
+
|
7970 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:351
|
7971 |
+
msgid "Reset Currency Rates"
|
7972 |
+
msgstr ""
|
7973 |
+
|
7974 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:164
|
7975 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:114
|
7976 |
+
#: includes/reports/wcj-class-reports-sales.php:324
|
7977 |
+
msgid "Reports Settings"
|
7978 |
+
msgstr ""
|
7979 |
+
|
7980 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:181
|
7981 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:131
|
7982 |
+
msgid "From:"
|
7983 |
+
msgstr ""
|
7984 |
+
|
7985 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:184
|
7986 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:134
|
7987 |
+
msgid "To:"
|
7988 |
+
msgstr ""
|
7989 |
+
|
7990 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:187
|
7991 |
+
msgid "Product:"
|
7992 |
+
msgstr ""
|
7993 |
+
|
7994 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:276
|
7995 |
+
#, php-format
|
7996 |
+
msgid "Total: %d"
|
7997 |
+
msgstr ""
|
7998 |
+
|
7999 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:280
|
8000 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:284
|
8001 |
+
#, php-format
|
8002 |
+
msgid "Total: %s"
|
8003 |
+
msgstr ""
|
8004 |
+
|
8005 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:296
|
8006 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:158
|
8007 |
+
#, php-format
|
8008 |
+
msgid "Total orders: %d"
|
8009 |
+
msgstr ""
|
8010 |
+
|
8011 |
+
#: includes/reports/wcj-class-reports-sales-daily.php:297
|
8012 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:160
|
8013 |
+
#: includes/reports/wcj-class-reports-sales.php:349
|
8014 |
+
msgid "No sales data for current period."
|
8015 |
+
msgstr ""
|
8016 |
+
|
8017 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:84
|
8018 |
+
#: includes/reports/wcj-class-reports-stock.php:108
|
8019 |
+
#: includes/reports/wcj-class-reports-stock.php:183
|
8020 |
+
msgid "N/A"
|
8021 |
+
msgstr ""
|
8022 |
+
|
8023 |
+
#: includes/reports/wcj-class-reports-sales-gateways.php:153
|
8024 |
+
msgid "Gateway"
|
8025 |
+
msgstr ""
|
8026 |
+
|
8027 |
+
#: includes/reports/wcj-class-reports-sales.php:128
|
8028 |
+
msgid "Variation"
|
8029 |
+
msgstr ""
|
8030 |
+
|
8031 |
+
#: includes/reports/wcj-class-reports-sales.php:198
|
8032 |
+
msgid "Last Sale"
|
8033 |
+
msgstr ""
|
8034 |
+
|
8035 |
+
#: includes/reports/wcj-class-reports-sales.php:199
|
8036 |
+
msgid "Total"
|
8037 |
+
msgstr ""
|
8038 |
+
|
8039 |
+
#: includes/reports/wcj-class-reports-sales.php:311
|
8040 |
+
msgid "Total Items"
|
8041 |
+
msgstr ""
|
8042 |
+
|
8043 |
+
#: includes/reports/wcj-class-reports-sales.php:319
|
8044 |
+
msgid "Total Profit"
|
8045 |
+
msgstr ""
|
8046 |
+
|
8047 |
+
#: includes/reports/wcj-class-reports-sales.php:344
|
8048 |
+
msgid "Filter products"
|
8049 |
+
msgstr ""
|
8050 |
+
|
8051 |
+
#: includes/reports/wcj-class-reports-stock.php:33
|
8052 |
+
msgid "All Products on Stock"
|
8053 |
+
msgstr ""
|
8054 |
+
|
8055 |
+
#: includes/reports/wcj-class-reports-stock.php:34
|
8056 |
+
msgid "Report shows all products that are on stock and some sales info."
|
8057 |
+
msgstr ""
|
8058 |
+
|
8059 |
+
#: includes/reports/wcj-class-reports-stock.php:38
|
8060 |
+
msgid "Understocked"
|
8061 |
+
msgstr ""
|
8062 |
+
|
8063 |
+
#: includes/reports/wcj-class-reports-stock.php:39
|
8064 |
+
msgid ""
|
8065 |
+
"Report shows all products that are low in stock calculated on product's "
|
8066 |
+
"sales data."
|
8067 |
+
msgstr ""
|
8068 |
+
|
8069 |
+
#: includes/reports/wcj-class-reports-stock.php:40
|
8070 |
+
msgid ""
|
8071 |
+
"Threshold for minimum stock is equal to half of the sales in selected days "
|
8072 |
+
"range."
|
8073 |
+
msgstr ""
|
8074 |
+
|
8075 |
+
#: includes/reports/wcj-class-reports-stock.php:44
|
8076 |
+
msgid "Overstocked"
|
8077 |
+
msgstr ""
|
8078 |
+
|
8079 |
+
#: includes/reports/wcj-class-reports-stock.php:45
|
8080 |
+
msgid ""
|
8081 |
+
"Report shows all products that are on stock, but have no sales in selected "
|
8082 |
+
"period. Only products added before the start date of selected period are "
|
8083 |
+
"accounted."
|
8084 |
+
msgstr ""
|
8085 |
+
|
8086 |
+
#: includes/reports/wcj-class-reports-stock.php:273
|
8087 |
+
msgid "Stock price"
|
8088 |
+
msgstr ""
|
8089 |
+
|
8090 |
+
#: includes/reports/wcj-class-reports-stock.php:274
|
8091 |
+
msgid "Total stock price"
|
8092 |
+
msgstr ""
|
8093 |
+
|
8094 |
+
#: includes/reports/wcj-class-reports-stock.php:275
|
8095 |
+
msgid "Last sale"
|
8096 |
+
msgstr ""
|
8097 |
+
|
8098 |
+
#: includes/reports/wcj-class-reports-stock.php:276
|
8099 |
+
#, php-format
|
8100 |
+
msgid "Sales in last %s days"
|
8101 |
+
msgstr ""
|
8102 |
+
|
8103 |
+
#: includes/reports/wcj-class-reports-stock.php:277
|
8104 |
+
msgid "Total sales"
|
8105 |
+
msgstr ""
|
8106 |
+
|
8107 |
+
#: includes/reports/wcj-class-reports-stock.php:279
|
8108 |
+
msgid "Stock to minimum"
|
8109 |
+
msgstr ""
|
8110 |
+
|
8111 |
+
#: includes/reports/wcj-class-reports-stock.php:308
|
8112 |
+
msgid "purchase price:"
|
8113 |
+
msgstr ""
|
8114 |
+
|
8115 |
+
#: includes/reports/wcj-class-reports-stock.php:312
|
8116 |
+
msgid "stock purchase price:"
|
8117 |
+
msgstr ""
|
8118 |
+
|
8119 |
+
#: includes/reports/wcj-class-reports-stock.php:317
|
8120 |
+
msgid "No sales yet"
|
8121 |
+
msgstr ""
|
8122 |
+
|
8123 |
+
#: includes/reports/wcj-class-reports-stock.php:320
|
8124 |
+
msgid "profit:"
|
8125 |
+
msgstr ""
|
8126 |
+
|
8127 |
+
#: includes/reports/wcj-class-reports-stock.php:340
|
8128 |
+
msgid "Total current stock value"
|
8129 |
+
msgstr ""
|
8130 |
+
|
8131 |
+
#: includes/reports/wcj-class-reports-stock.php:341
|
8132 |
+
msgid "Total stock value"
|
8133 |
+
msgstr ""
|
8134 |
+
|
8135 |
+
#: includes/reports/wcj-class-reports-stock.php:342
|
8136 |
+
msgid "Product stock value average"
|
8137 |
+
msgstr ""
|
8138 |
+
|
8139 |
+
#: includes/reports/wcj-class-reports-stock.php:343
|
8140 |
+
msgid "Product stock average"
|
8141 |
+
msgstr ""
|
8142 |
+
|
8143 |
+
#: includes/reports/wcj-class-reports-stock.php:345
|
8144 |
+
msgid "Total current stock purchase price"
|
8145 |
+
msgstr ""
|
8146 |
+
|
8147 |
+
#: includes/reports/wcj-class-reports-stock.php:349
|
8148 |
+
msgid "Report was generated in: "
|
8149 |
+
msgstr ""
|
8150 |
+
|
8151 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:18
|
8152 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:37
|
8153 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:127
|
8154 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:34
|
8155 |
+
#: includes/settings/wcj-settings-cart-customization.php:20
|
8156 |
+
#: includes/settings/wcj-settings-cart-customization.php:27
|
8157 |
+
#: includes/settings/wcj-settings-checkout-customization.php:107
|
8158 |
+
#: includes/settings/wcj-settings-cross-sells.php:87
|
8159 |
+
#: includes/settings/wcj-settings-currency.php:22
|
8160 |
+
#: includes/settings/wcj-settings-my-account.php:202
|
8161 |
+
#: includes/settings/wcj-settings-my-account.php:209
|
8162 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:63
|
8163 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:48
|
8164 |
+
#: includes/settings/wcj-settings-product-addons.php:274
|
8165 |
+
#: includes/settings/wcj-settings-product-bookings.php:100
|
8166 |
+
#: includes/settings/wcj-settings-product-images.php:20
|
8167 |
+
#: includes/settings/wcj-settings-product-images.php:27
|
8168 |
+
#: includes/settings/wcj-settings-product-images.php:34
|
8169 |
+
#: includes/settings/wcj-settings-product-images.php:41
|
8170 |
+
#: includes/settings/wcj-settings-related-products.php:184
|
8171 |
+
#: includes/settings/wcj-settings-related-products.php:190
|
8172 |
+
#: includes/settings/wcj-settings-sale-flash.php:35
|
8173 |
+
#: includes/settings/wcj-settings-sale-flash.php:42
|
8174 |
+
#: includes/settings/wcj-settings-sale-flash.php:49
|
8175 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:54
|
8176 |
+
#: includes/settings/wcj-settings-upsells.php:74
|
8177 |
+
msgid "Hide"
|
8178 |
+
msgstr ""
|
8179 |
+
|
8180 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:21
|
8181 |
+
#: includes/settings/wcj-settings-free-price.php:19
|
8182 |
+
#: includes/settings/wcj-settings-product-msrp.php:13
|
8183 |
+
msgid "Single Product Page"
|
8184 |
+
msgstr ""
|
8185 |
+
|
8186 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:29
|
8187 |
+
msgid "Content to replace add to cart button on single product page."
|
8188 |
+
msgstr ""
|
8189 |
+
|
8190 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:30
|
8191 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:49
|
8192 |
+
#: includes/settings/wcj-settings-checkout-customization.php:196
|
8193 |
+
#: includes/settings/wcj-settings-my-account.php:167
|
8194 |
+
#: includes/settings/wcj-settings-my-account.php:194
|
8195 |
+
#: includes/settings/wcj-settings-my-account.php:254
|
8196 |
+
#: includes/settings/wcj-settings-sale-flash.php:27
|
8197 |
+
#: includes/settings/wcj-settings-sale-flash.php:111
|
8198 |
+
msgid "You can use HTML and/or shortcodes here."
|
8199 |
+
msgstr ""
|
8200 |
+
|
8201 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:40
|
8202 |
+
msgid "Category/Archives"
|
8203 |
+
msgstr ""
|
8204 |
+
|
8205 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-add-to-cart-button-visibility.php:48
|
8206 |
+
msgid "Content to replace add to cart button on category/archives."
|
8207 |
+
msgstr ""
|
8208 |
+
|
8209 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:19
|
8210 |
+
#, php-format
|
8211 |
+
msgid "Product ID: %s"
|
8212 |
+
msgstr ""
|
8213 |
+
|
8214 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:26
|
8215 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:45
|
8216 |
+
msgid "Regular price"
|
8217 |
+
msgstr ""
|
8218 |
+
|
8219 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-admin-tools.php:34
|
8220 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:54
|
8221 |
+
msgid "Sale price"
|
8222 |
+
msgstr ""
|
8223 |
+
|
8224 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:14
|
8225 |
+
msgid "Invalidate for roles"
|
8226 |
+
msgstr ""
|
8227 |
+
|
8228 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-coupon-by-user-role.php:15
|
8229 |
+
msgid "Invalidate coupon for selected user roles."
|
8230 |
+
msgstr ""
|
8231 |
+
|
8232 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:17
|
8233 |
+
msgid "Goal"
|
8234 |
+
msgstr ""
|
8235 |
+
|
8236 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:29
|
8237 |
+
msgid "Deadline"
|
8238 |
+
msgstr ""
|
8239 |
+
|
8240 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:13
|
8241 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:69
|
8242 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:81
|
8243 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:118
|
8244 |
+
#: includes/settings/wcj-settings-products-per-page.php:29
|
8245 |
+
msgid "Default"
|
8246 |
+
msgstr ""
|
8247 |
+
|
8248 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:25
|
8249 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency-base-price.php:57
|
8250 |
+
msgid "Product Currency"
|
8251 |
+
msgstr ""
|
8252 |
+
|
8253 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-currency-per-product.php:27
|
8254 |
+
msgid "Update product after you change this field's value."
|
8255 |
+
msgstr ""
|
8256 |
+
|
8257 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:14
|
8258 |
+
msgid "Add CSS"
|
8259 |
+
msgstr ""
|
8260 |
+
|
8261 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:24
|
8262 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:56
|
8263 |
+
msgid "CSS"
|
8264 |
+
msgstr ""
|
8265 |
+
|
8266 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-general.php:14
|
8267 |
+
msgid "PayPal Email"
|
8268 |
+
msgstr ""
|
8269 |
+
|
8270 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:14
|
8271 |
+
msgid "Max Qty"
|
8272 |
+
msgstr ""
|
8273 |
+
|
8274 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-max-products-per-user.php:18
|
8275 |
+
msgid ""
|
8276 |
+
"If set to zero, and \"All Products\" section is enabled - global maximum "
|
8277 |
+
"quantity will be used; in case if \"All Products\" section is disabled - no "
|
8278 |
+
"maximum quantity will be used."
|
8279 |
+
msgstr ""
|
8280 |
+
|
8281 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:63
|
8282 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:136
|
8283 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:156
|
8284 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:225
|
8285 |
+
msgid "Make Empty Price"
|
8286 |
+
msgstr ""
|
8287 |
+
|
8288 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:14
|
8289 |
+
msgid "Enable Offer Price"
|
8290 |
+
msgstr ""
|
8291 |
+
|
8292 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:24
|
8293 |
+
#: includes/settings/wcj-settings-offer-price.php:167
|
8294 |
+
#: includes/settings/wcj-settings-product-by-user.php:69
|
8295 |
+
msgid "Price Step"
|
8296 |
+
msgstr ""
|
8297 |
+
|
8298 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
|
8299 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:60
|
8300 |
+
#: includes/settings/wcj-settings-offer-price.php:168
|
8301 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:74
|
8302 |
+
#: includes/settings/wcj-settings-product-by-user.php:70
|
8303 |
+
msgid "Number of decimals"
|
8304 |
+
msgstr ""
|
8305 |
+
|
8306 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:25
|
8307 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:34
|
8308 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
|
8309 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
|
8310 |
+
msgid "Leave blank to use global value."
|
8311 |
+
msgstr ""
|
8312 |
+
|
8313 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:33
|
8314 |
+
#: includes/settings/wcj-settings-offer-price.php:175
|
8315 |
+
msgid "Minimal Price"
|
8316 |
+
msgstr ""
|
8317 |
+
|
8318 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:42
|
8319 |
+
#: includes/settings/wcj-settings-offer-price.php:182
|
8320 |
+
msgid "Maximal Price"
|
8321 |
+
msgstr ""
|
8322 |
+
|
8323 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:43
|
8324 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:52
|
8325 |
+
#: includes/settings/wcj-settings-general.php:224
|
8326 |
+
#: includes/settings/wcj-settings-general.php:233
|
8327 |
+
#: includes/settings/wcj-settings-offer-price.php:183
|
8328 |
+
#: includes/settings/wcj-settings-offer-price.php:191
|
8329 |
+
msgid "Set zero to disable."
|
8330 |
+
msgstr ""
|
8331 |
+
|
8332 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:51
|
8333 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:24
|
8334 |
+
#: includes/settings/wcj-settings-offer-price.php:190
|
8335 |
+
msgid "Default Price"
|
8336 |
+
msgstr ""
|
8337 |
+
|
8338 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:37
|
8339 |
+
#: includes/settings/wcj-settings-order-quantities.php:84
|
8340 |
+
msgid "Minimum Quantity"
|
8341 |
+
msgstr ""
|
8342 |
+
|
8343 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:42
|
8344 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:57
|
8345 |
+
msgid "Set 0 to use global settings. Set -1 to disable."
|
8346 |
+
msgstr ""
|
8347 |
+
|
8348 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:52
|
8349 |
+
#: includes/settings/wcj-settings-order-quantities.php:142
|
8350 |
+
msgid "Maximum Quantity"
|
8351 |
+
msgstr ""
|
8352 |
+
|
8353 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:68
|
8354 |
+
#: includes/settings/wcj-settings-order-quantities.php:200
|
8355 |
+
msgid "Quantity Step"
|
8356 |
+
msgstr ""
|
8357 |
+
|
8358 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:69
|
8359 |
+
msgid "All variations"
|
8360 |
+
msgstr ""
|
8361 |
+
|
8362 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:73
|
8363 |
+
msgid "Set 0 to use global settings."
|
8364 |
+
msgstr ""
|
8365 |
+
|
8366 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
|
8367 |
+
msgid "Save order after you change this field."
|
8368 |
+
msgstr ""
|
8369 |
+
|
8370 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:24
|
8371 |
+
#, php-format
|
8372 |
+
msgid "%s number"
|
8373 |
+
msgstr ""
|
8374 |
+
|
8375 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-pdf-invoicing.php:30
|
8376 |
+
#, php-format
|
8377 |
+
msgid "%s date"
|
8378 |
+
msgstr ""
|
8379 |
+
|
8380 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:29
|
8381 |
+
msgid "Per Product Settings (press Update after changing)"
|
8382 |
+
msgstr ""
|
8383 |
+
|
8384 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:113
|
8385 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:33
|
8386 |
+
msgid "Multiplier"
|
8387 |
+
msgstr ""
|
8388 |
+
|
8389 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:23
|
8390 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:14
|
8391 |
+
msgid "Add to Cart Local Redirect"
|
8392 |
+
msgstr ""
|
8393 |
+
|
8394 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:27
|
8395 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:32
|
8396 |
+
msgid ""
|
8397 |
+
"Redirect URL. Leave empty to redirect to checkout page (skipping the cart "
|
8398 |
+
"page)."
|
8399 |
+
msgstr ""
|
8400 |
+
|
8401 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:30
|
8402 |
+
msgid "Add to Cart Local Redirect URL"
|
8403 |
+
msgstr ""
|
8404 |
+
|
8405 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:45
|
8406 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:52
|
8407 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:58
|
8408 |
+
msgid "Add to Cart on Visit"
|
8409 |
+
msgstr ""
|
8410 |
+
|
8411 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:55
|
8412 |
+
msgid "Custom Add to Cart Button URL (Category/Archives)"
|
8413 |
+
msgstr ""
|
8414 |
+
|
8415 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
|
8416 |
+
msgid "As shop default (no changes)"
|
8417 |
+
msgstr ""
|
8418 |
+
|
8419 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
|
8420 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:30
|
8421 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:56
|
8422 |
+
#: includes/settings/wcj-settings-general.php:30
|
8423 |
+
#: includes/settings/wcj-settings-general.php:99
|
8424 |
+
#: includes/settings/wcj-settings-general.php:114
|
8425 |
+
#: includes/settings/wcj-settings-general.php:122
|
8426 |
+
#: includes/settings/wcj-settings-general.php:130
|
8427 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:84
|
8428 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:116
|
8429 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:56
|
8430 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:140
|
8431 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:131
|
8432 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:95
|
8433 |
+
#: includes/settings/wcj-settings-sku.php:283
|
8434 |
+
msgid "Disable"
|
8435 |
+
msgstr ""
|
8436 |
+
|
8437 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:70
|
8438 |
+
msgid "Disable Add to Cart Button AJAX"
|
8439 |
+
msgstr ""
|
8440 |
+
|
8441 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:25
|
8442 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
|
8443 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
|
8444 |
+
msgid "Save product after you change this number."
|
8445 |
+
msgstr ""
|
8446 |
+
|
8447 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:28
|
8448 |
+
#: includes/settings/wcj-settings-product-addons.php:57
|
8449 |
+
msgid "Product Addons Total Number"
|
8450 |
+
msgstr ""
|
8451 |
+
|
8452 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:64
|
8453 |
+
msgid "Enable by Variation"
|
8454 |
+
msgstr ""
|
8455 |
+
|
8456 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:73
|
8457 |
+
#: includes/settings/wcj-settings-product-addons.php:73
|
8458 |
+
msgid "Product Addon"
|
8459 |
+
msgstr ""
|
8460 |
+
|
8461 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:89
|
8462 |
+
#: includes/settings/wcj-settings-product-addons.php:86
|
8463 |
+
msgid "Radio Buttons"
|
8464 |
+
msgstr ""
|
8465 |
+
|
8466 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:90
|
8467 |
+
#: includes/settings/wcj-settings-product-addons.php:87
|
8468 |
+
msgid "Select Box"
|
8469 |
+
msgstr ""
|
8470 |
+
|
8471 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:102
|
8472 |
+
#: includes/settings/wcj-settings-product-addons.php:98
|
8473 |
+
msgid "Label(s)"
|
8474 |
+
msgstr ""
|
8475 |
+
|
8476 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:103
|
8477 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
|
8478 |
+
#: includes/settings/wcj-settings-product-addons.php:99
|
8479 |
+
#: includes/settings/wcj-settings-product-addons.php:107
|
8480 |
+
msgid "For radio and select enter one value per line."
|
8481 |
+
msgstr ""
|
8482 |
+
|
8483 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:110
|
8484 |
+
#: includes/settings/wcj-settings-product-addons.php:106
|
8485 |
+
msgid "Price(s)"
|
8486 |
+
msgstr ""
|
8487 |
+
|
8488 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:111
|
8489 |
+
#: includes/settings/wcj-settings-product-addons.php:107
|
8490 |
+
msgid ""
|
8491 |
+
"You can use the % symbol to set a percentage of product's price, like 10%"
|
8492 |
+
msgstr ""
|
8493 |
+
|
8494 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:118
|
8495 |
+
#: includes/settings/wcj-settings-product-addons.php:115
|
8496 |
+
msgid "Tooltip(s)"
|
8497 |
+
msgstr ""
|
8498 |
+
|
8499 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:119
|
8500 |
+
#: includes/settings/wcj-settings-product-addons.php:116
|
8501 |
+
msgid "For radio enter one value per line."
|
8502 |
+
msgstr ""
|
8503 |
+
|
8504 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:126
|
8505 |
+
#: includes/settings/wcj-settings-product-addons.php:123
|
8506 |
+
#: includes/settings/wcj-settings-purchase-data.php:94
|
8507 |
+
msgid "Default Value"
|
8508 |
+
msgstr ""
|
8509 |
+
|
8510 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:127
|
8511 |
+
#: includes/settings/wcj-settings-product-addons.php:124
|
8512 |
+
msgid ""
|
8513 |
+
"For checkbox use 'checked'; for radio and select enter default label. Leave "
|
8514 |
+
"blank for no default value."
|
8515 |
+
msgstr ""
|
8516 |
+
|
8517 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:135
|
8518 |
+
#: includes/settings/wcj-settings-product-addons.php:131
|
8519 |
+
msgid "For \"Select Box\" type only."
|
8520 |
+
msgstr ""
|
8521 |
+
|
8522 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:149
|
8523 |
+
msgid "Is required"
|
8524 |
+
msgstr ""
|
8525 |
+
|
8526 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:160
|
8527 |
+
#: includes/settings/wcj-settings-product-addons.php:158
|
8528 |
+
msgid ""
|
8529 |
+
"Leave empty to disable quantity calculation for the addon. When set to zero "
|
8530 |
+
"- addon will be disabled."
|
8531 |
+
msgstr ""
|
8532 |
+
|
8533 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-condition.php:14
|
8534 |
+
msgid ""
|
8535 |
+
"Use \"Control\" key to select/deselect multiple options. Hold \"Control\" "
|
8536 |
+
"and \"A\" to select all options. Leave empty to disable."
|
8537 |
+
msgstr ""
|
8538 |
+
|
8539 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:17
|
8540 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:14
|
8541 |
+
msgid "Enable/Disable per Product Settings"
|
8542 |
+
msgstr ""
|
8543 |
+
|
8544 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:28
|
8545 |
+
msgid "Direct Date"
|
8546 |
+
msgstr ""
|
8547 |
+
|
8548 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:32
|
8549 |
+
msgid ""
|
8550 |
+
"Fill this if you want to set one date from which the product will be "
|
8551 |
+
"available."
|
8552 |
+
msgstr ""
|
8553 |
+
|
8554 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:33
|
8555 |
+
msgid "If this field is filled in, monthly settings fields are ignored."
|
8556 |
+
msgstr ""
|
8557 |
+
|
8558 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:17
|
8559 |
+
msgid "Replace image with custom HTML on single product page"
|
8560 |
+
msgstr ""
|
8561 |
+
|
8562 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:18
|
8563 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:26
|
8564 |
+
#: includes/settings/wcj-settings-product-custom-info.php:92
|
8565 |
+
#: includes/settings/wcj-settings-product-images.php:49
|
8566 |
+
#: includes/settings/wcj-settings-product-images.php:58
|
8567 |
+
#: includes/settings/wcj-settings-product-images.php:67
|
8568 |
+
#: includes/settings/wcj-settings-products-xml.php:111
|
8569 |
+
msgid "You can use shortcodes here."
|
8570 |
+
msgstr ""
|
8571 |
+
|
8572 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:25
|
8573 |
+
msgid "Replace image with custom HTML on archives"
|
8574 |
+
msgstr ""
|
8575 |
+
|
8576 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:37
|
8577 |
+
msgid "Hide Image on Single"
|
8578 |
+
msgstr ""
|
8579 |
+
|
8580 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:47
|
8581 |
+
msgid "Hide Thumbnails on Single"
|
8582 |
+
msgstr ""
|
8583 |
+
|
8584 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:57
|
8585 |
+
msgid "Hide Image on Archives"
|
8586 |
+
msgstr ""
|
8587 |
+
|
8588 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
|
8589 |
+
#: includes/settings/wcj-settings-product-listings.php:144
|
8590 |
+
msgid "Min Price"
|
8591 |
+
msgstr ""
|
8592 |
+
|
8593 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
|
8594 |
+
#: includes/settings/wcj-settings-product-listings.php:152
|
8595 |
+
msgid "Max Price"
|
8596 |
+
msgstr ""
|
8597 |
+
|
8598 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
|
8599 |
+
msgid ""
|
8600 |
+
"'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
|
8601 |
+
"Products' option is checked in module's settings."
|
8602 |
+
msgstr ""
|
8603 |
+
|
8604 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:29
|
8605 |
+
msgid "Use values below"
|
8606 |
+
msgstr ""
|
8607 |
+
|
8608 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:30
|
8609 |
+
msgid "Use default values"
|
8610 |
+
msgstr ""
|
8611 |
+
|
8612 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:32
|
8613 |
+
msgid "Calculation"
|
8614 |
+
msgstr ""
|
8615 |
+
|
8616 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:38
|
8617 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:20
|
8618 |
+
msgid "Formula"
|
8619 |
+
msgstr ""
|
8620 |
+
|
8621 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:44
|
8622 |
+
msgid "Number of Parameters"
|
8623 |
+
msgstr ""
|
8624 |
+
|
8625 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:35
|
8626 |
+
#: includes/settings/wcj-settings-purchase-data.php:21
|
8627 |
+
msgid "Product cost (purchase) price"
|
8628 |
+
msgstr ""
|
8629 |
+
|
8630 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:45
|
8631 |
+
#: includes/settings/wcj-settings-purchase-data.php:28
|
8632 |
+
msgid "Extra expenses (shipping etc.)"
|
8633 |
+
msgstr ""
|
8634 |
+
|
8635 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:55
|
8636 |
+
#: includes/settings/wcj-settings-purchase-data.php:35
|
8637 |
+
msgid "Affiliate commission"
|
8638 |
+
msgstr ""
|
8639 |
+
|
8640 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:87
|
8641 |
+
#: includes/settings/wcj-settings-purchase-data.php:113
|
8642 |
+
msgid "(Last) Purchase date"
|
8643 |
+
msgstr ""
|
8644 |
+
|
8645 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:97
|
8646 |
+
#: includes/settings/wcj-settings-purchase-data.php:120
|
8647 |
+
msgid "Seller"
|
8648 |
+
msgstr ""
|
8649 |
+
|
8650 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-purchase-data.php:107
|
8651 |
+
#: includes/settings/wcj-settings-purchase-data.php:127
|
8652 |
+
msgid "Purchase info"
|
8653 |
+
msgstr ""
|
8654 |
+
|
8655 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:20
|
8656 |
+
msgid ""
|
8657 |
+
"If enabled and no products selected - will hide related products section on "
|
8658 |
+
"frontend for current product."
|
8659 |
+
msgstr ""
|
8660 |
+
|
8661 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:31
|
8662 |
+
msgid ""
|
8663 |
+
"Hold Control (Ctrl) key to select multiple products. Ctrl and \"A\" to "
|
8664 |
+
"select all products."
|
8665 |
+
msgstr ""
|
8666 |
+
|
8667 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-sale-flash.php:24
|
8668 |
+
#: includes/settings/wcj-settings-stock.php:185
|
8669 |
+
msgid "HTML"
|
8670 |
+
msgstr ""
|
8671 |
+
|
8672 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:18
|
8673 |
+
#: includes/settings/wcj-settings-checkout-fees.php:72
|
8674 |
+
#: includes/settings/wcj-settings-global-discount.php:64
|
8675 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:38
|
8676 |
+
#: includes/settings/wcj-settings-purchase-data.php:89
|
8677 |
+
#: includes/settings/wcj-settings-wholesale-price.php:77
|
8678 |
+
msgid "Percent"
|
8679 |
+
msgstr ""
|
8680 |
+
|
8681 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:19
|
8682 |
+
#: includes/settings/wcj-settings-checkout-fees.php:71
|
8683 |
+
#: includes/settings/wcj-settings-global-discount.php:65
|
8684 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:37
|
8685 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:32
|
8686 |
+
#: includes/settings/wcj-settings-purchase-data.php:88
|
8687 |
+
#: includes/settings/wcj-settings-wholesale-price.php:78
|
8688 |
+
msgid "Fixed"
|
8689 |
+
msgstr ""
|
8690 |
+
|
8691 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:20
|
8692 |
+
msgid "Price directly"
|
8693 |
+
msgstr ""
|
8694 |
+
|
8695 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:34
|
8696 |
+
msgid "Enable per Product Levels"
|
8697 |
+
msgstr ""
|
8698 |
+
|
8699 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
|
8700 |
+
#: includes/settings/wcj-settings-wholesale-price.php:72
|
8701 |
+
msgid "Discount Type"
|
8702 |
+
msgstr ""
|
8703 |
+
|
8704 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:48
|
8705 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:84
|
8706 |
+
msgid "Number of levels"
|
8707 |
+
msgstr ""
|
8708 |
+
|
8709 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:49
|
8710 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:85
|
8711 |
+
msgid ""
|
8712 |
+
"Free Booster's version is limited to one level maximum. Please visit https://"
|
8713 |
+
"booster.io to get full version."
|
8714 |
+
msgstr ""
|
8715 |
+
|
8716 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
|
8717 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
|
8718 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
|
8719 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
|
8720 |
+
msgid "Level"
|
8721 |
+
msgstr ""
|
8722 |
+
|
8723 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:65
|
8724 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:101
|
8725 |
+
msgid "Min quantity"
|
8726 |
+
msgstr ""
|
8727 |
+
|
8728 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:72
|
8729 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:108
|
8730 |
+
#: includes/settings/wcj-settings-wholesale-price.php:158
|
8731 |
+
#: includes/settings/wcj-settings-wholesale-price.php:159
|
8732 |
+
#: includes/settings/wcj-settings-wholesale-price.php:215
|
8733 |
+
#: includes/settings/wcj-settings-wholesale-price.php:216
|
8734 |
+
msgid "Discount"
|
8735 |
+
msgstr ""
|
8736 |
+
|
8737 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:17
|
8738 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:22
|
8739 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:14
|
8740 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:19
|
8741 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:24
|
8742 |
+
#: includes/settings/wcj-settings-product-by-date.php:20
|
8743 |
+
msgid "All Products"
|
8744 |
+
msgstr ""
|
8745 |
+
|
8746 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:23
|
8747 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:91
|
8748 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:108
|
8749 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:21
|
8750 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:109
|
8751 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:201
|
8752 |
+
#: includes/settings/wcj-settings-admin-products-list.php:20
|
8753 |
+
#: includes/settings/wcj-settings-admin-products-list.php:76
|
8754 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:20
|
8755 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:43
|
8756 |
+
#: includes/settings/wcj-settings-my-account.php:67
|
8757 |
+
#: includes/settings/wcj-settings-my-account.php:135
|
8758 |
+
#: includes/settings/wcj-settings-my-account.php:186
|
8759 |
+
#: includes/settings/wcj-settings-my-account.php:227
|
8760 |
+
#: includes/settings/wcj-settings-order-quantities.php:85
|
8761 |
+
#: includes/settings/wcj-settings-order-quantities.php:143
|
8762 |
+
#: includes/settings/wcj-settings-order-quantities.php:201
|
8763 |
+
#: includes/settings/wcj-settings-order-quantities.php:249
|
8764 |
+
#: includes/settings/wcj-settings-orders.php:150
|
8765 |
+
#: includes/settings/wcj-settings-price-formats.php:37
|
8766 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:273
|
8767 |
+
#: includes/settings/wcj-settings-product-listings.php:138
|
8768 |
+
#: includes/settings/wcj-settings-sale-flash.php:20
|
8769 |
+
#: includes/settings/wcj-settings-sale-flash.php:65
|
8770 |
+
#: includes/settings/wcj-settings-sale-flash.php:90
|
8771 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:48
|
8772 |
+
#: includes/settings/wcj-settings-shipping-options.php:21
|
8773 |
+
#: includes/settings/wcj-settings-stock.php:20
|
8774 |
+
#: includes/settings/wcj-settings-stock.php:87
|
8775 |
+
#: includes/settings/wcj-settings-stock.php:132
|
8776 |
+
#: includes/settings/wcj-settings-stock.php:177
|
8777 |
+
#: includes/settings/wcj-settings-tax-display.php:27
|
8778 |
+
#: includes/settings/wcj-settings-tax-display.php:44
|
8779 |
+
#: includes/settings/wcj-settings-tax-display.php:101
|
8780 |
+
msgid "Enable section"
|
8781 |
+
msgstr ""
|
8782 |
+
|
8783 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:29
|
8784 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:114
|
8785 |
+
msgid "Disable Buttons on Category/Archives Pages"
|
8786 |
+
msgstr ""
|
8787 |
+
|
8788 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:36
|
8789 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:62
|
8790 |
+
#: includes/settings/wcj-settings-cart-customization.php:40
|
8791 |
+
msgid "Method"
|
8792 |
+
msgstr ""
|
8793 |
+
|
8794 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:37
|
8795 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:63
|
8796 |
+
msgid ""
|
8797 |
+
"Method for disabling the buttons. Try changing if buttons are not being "
|
8798 |
+
"disabled (may happen with some themes)."
|
8799 |
+
msgstr ""
|
8800 |
+
|
8801 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:42
|
8802 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:68
|
8803 |
+
msgid "Remove action"
|
8804 |
+
msgstr ""
|
8805 |
+
|
8806 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:43
|
8807 |
+
msgid "Add filter"
|
8808 |
+
msgstr ""
|
8809 |
+
|
8810 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:48
|
8811 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:123
|
8812 |
+
msgid ""
|
8813 |
+
"Content to replace with on archives (can be empty). You can use HTML and/or "
|
8814 |
+
"shortcodes here."
|
8815 |
+
msgstr ""
|
8816 |
+
|
8817 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:55
|
8818 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:130
|
8819 |
+
msgid "Disable Buttons on Single Product Pages"
|
8820 |
+
msgstr ""
|
8821 |
+
|
8822 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:69
|
8823 |
+
msgid "Add action"
|
8824 |
+
msgstr ""
|
8825 |
+
|
8826 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:74
|
8827 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:139
|
8828 |
+
msgid ""
|
8829 |
+
"Content to replace with on single product pages (can be empty). You can use "
|
8830 |
+
"HTML and/or shortcodes here."
|
8831 |
+
msgstr ""
|
8832 |
+
|
8833 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:85
|
8834 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:90
|
8835 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:37
|
8836 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:42
|
8837 |
+
#: includes/settings/wcj-settings-order-quantities.php:215
|
8838 |
+
#: includes/settings/wcj-settings-price-labels.php:22
|
8839 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:39
|
8840 |
+
#: includes/settings/wcj-settings-product-by-date.php:52
|
8841 |
+
#: includes/settings/wcj-settings-product-by-time.php:52
|
8842 |
+
#: includes/settings/wcj-settings-sale-flash.php:59
|
8843 |
+
#: includes/settings/wcj-settings-sale-flash.php:64
|
8844 |
+
msgid "Per Product"
|
8845 |
+
msgstr ""
|
8846 |
+
|
8847 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:92
|
8848 |
+
#: includes/settings/wcj-settings-currency-per-product.php:65
|
8849 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:179
|
8850 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:196
|
8851 |
+
msgid "This will add meta box to each product's edit page"
|
8852 |
+
msgstr ""
|
8853 |
+
|
8854 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:102
|
8855 |
+
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:107
|
8856 |
+
#: includes/settings/wcj-settings-sale-flash.php:81
|
8857 |
+
msgid "Per Category"
|
8858 |
+
msgstr ""
|
8859 |
+
|
8860 |
+
#: includes/settings/wcj-settings-add-to-cart.php:14
|
8861 |
+
msgid "Per Category Options"
|
8862 |
+
msgstr ""
|
8863 |
+
|
8864 |
+
#: includes/settings/wcj-settings-add-to-cart.php:16
|
8865 |
+
msgid ""
|
8866 |
+
"This sections lets you set Add to Cart button text on per category basis."
|
8867 |
+
msgstr ""
|
8868 |
+
|
8869 |
+
#: includes/settings/wcj-settings-add-to-cart.php:20
|
8870 |
+
msgid "Per Category Labels"
|
8871 |
+
msgstr ""
|
8872 |
+
|
8873 |
+
#: includes/settings/wcj-settings-add-to-cart.php:21
|
8874 |
+
#: includes/settings/wcj-settings-add-to-cart.php:92
|
8875 |
+
#: includes/settings/wcj-settings-add-to-cart.php:110
|
8876 |
+
#: includes/settings/wcj-settings-general.php:163
|
8877 |
+
#: includes/settings/wcj-settings-shipping-calculator.php:69
|
8878 |
+
#: includes/settings/wcj-settings-sorting.php:20
|
8879 |
+
#: includes/settings/wcj-settings-sorting.php:99
|
8880 |
+
#: includes/settings/wcj-settings-sorting.php:123
|
8881 |
+
msgid "Enable Section"
|
8882 |
+
msgstr ""
|
8883 |
+
|
8884 |
+
#: includes/settings/wcj-settings-add-to-cart.php:28
|
8885 |
+
msgid "Category Groups Number"
|
8886 |
+
msgstr ""
|
8887 |
+
|
8888 |
+
#: includes/settings/wcj-settings-add-to-cart.php:29
|
8889 |
+
#: includes/settings/wcj-settings-product-tabs.php:50
|
8890 |
+
msgid "Click \"Save changes\" after you change this number."
|
8891 |
+
msgstr ""
|
8892 |
+
|
8893 |
+
#: includes/settings/wcj-settings-add-to-cart.php:57
|
8894 |
+
msgid "categories"
|
8895 |
+
msgstr ""
|
8896 |
+
|
8897 |
+
#: includes/settings/wcj-settings-add-to-cart.php:66
|
8898 |
+
msgid "Button text - single product view"
|
8899 |
+
msgstr ""
|
8900 |
+
|
8901 |
+
#: includes/settings/wcj-settings-add-to-cart.php:72
|
8902 |
+
msgid "Button text - product archive (category) view"
|
8903 |
+
msgstr ""
|
8904 |
+
|
8905 |
+
#: includes/settings/wcj-settings-add-to-cart.php:85
|
8906 |
+
#: includes/settings/wcj-settings-currency-per-product.php:59
|
8907 |
+
#: includes/settings/wcj-settings-product-addons.php:25
|
8908 |
+
#: includes/settings/wcj-settings-product-by-date.php:47
|
8909 |
+
#: includes/settings/wcj-settings-product-by-time.php:47
|
8910 |
+
msgid "Per Product Options"
|
8911 |
+
msgstr ""
|
8912 |
+
|
8913 |
+
#: includes/settings/wcj-settings-add-to-cart.php:87
|
8914 |
+
msgid ""
|
8915 |
+
"This section lets you set Add to Cart button text on per product basis. When "
|
8916 |
+
"enabled, label for each product can be changed in \"Edit Product\"."
|
8917 |
+
msgstr ""
|
8918 |
+
|
8919 |
+
#: includes/settings/wcj-settings-add-to-cart.php:91
|
8920 |
+
msgid "Per Product Labels"
|
8921 |
+
msgstr ""
|
8922 |
+
|
8923 |
+
#: includes/settings/wcj-settings-add-to-cart.php:103
|
8924 |
+
msgid "Per Product Type Options"
|
8925 |
+
msgstr ""
|
8926 |
+
|
8927 |
+
#: includes/settings/wcj-settings-add-to-cart.php:109
|
8928 |
+
msgid "Per Product Type Labels"
|
8929 |
+
msgstr ""
|
8930 |
+
|
8931 |
+
#: includes/settings/wcj-settings-add-to-cart.php:119
|
8932 |
+
#: includes/settings/wcj-settings-product-by-user.php:93
|
8933 |
+
msgid "Simple product"
|
8934 |
+
msgstr ""
|
8935 |
+
|
8936 |
+
#: includes/settings/wcj-settings-add-to-cart.php:120
|
8937 |
+
#: includes/settings/wcj-settings-add-to-cart.php:174
|
8938 |
+
#: includes/settings/wcj-settings-add-to-cart.php:181
|
8939 |
+
#: includes/settings/wcj-settings-add-to-cart.php:188
|
8940 |
+
#: includes/settings/wcj-settings-add-to-cart.php:195
|
8941 |
+
#: includes/settings/wcj-settings-add-to-cart.php:215
|
8942 |
+
#: includes/settings/wcj-settings-add-to-cart.php:216
|
8943 |
+
#: includes/settings/wcj-settings-add-to-cart.php:224
|
8944 |
+
#: includes/settings/wcj-settings-add-to-cart.php:225
|
8945 |
+
msgid "Add to cart"
|
8946 |
+
msgstr ""
|
8947 |
+
|
8948 |
+
#: includes/settings/wcj-settings-add-to-cart.php:124
|
8949 |
+
msgid "Variable product"
|
8950 |
+
msgstr ""
|
8951 |
+
|
8952 |
+
#: includes/settings/wcj-settings-add-to-cart.php:125
|
8953 |
+
msgid "Select options"
|
8954 |
+
msgstr ""
|
8955 |
+
|
8956 |
+
#: includes/settings/wcj-settings-add-to-cart.php:129
|
8957 |
+
msgid "External product"
|
8958 |
+
msgstr ""
|
8959 |
+
|
8960 |
+
#: includes/settings/wcj-settings-add-to-cart.php:130
|
8961 |
+
msgid "Buy product"
|
8962 |
+
msgstr ""
|
8963 |
+
|
8964 |
+
#: includes/settings/wcj-settings-add-to-cart.php:134
|
8965 |
+
msgid "Grouped product"
|
8966 |
+
msgstr ""
|
8967 |
+
|
8968 |
+
#: includes/settings/wcj-settings-add-to-cart.php:135
|
8969 |
+
msgid "View products"
|
8970 |
+
msgstr ""
|
8971 |
+
|
8972 |
+
#: includes/settings/wcj-settings-add-to-cart.php:139
|
8973 |
+
msgid "Other product"
|
8974 |
+
msgstr ""
|
8975 |
+
|
8976 |
+
#: includes/settings/wcj-settings-add-to-cart.php:148
|
8977 |
+
msgid "Single product view."
|
8978 |
+
msgstr ""
|
8979 |
+
|
8980 |
+
#: includes/settings/wcj-settings-add-to-cart.php:149
|
8981 |
+
#: includes/settings/wcj-settings-add-to-cart.php:156
|
8982 |
+
#: includes/settings/wcj-settings-add-to-cart.php:213
|
8983 |
+
#: includes/settings/wcj-settings-add-to-cart.php:222
|
8984 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:24
|
8985 |
+
#: includes/settings/wcj-settings-product-custom-info.php:191
|
8986 |
+
msgid "Leave blank to disable."
|
8987 |
+
msgstr ""
|
8988 |
+
|
8989 |
+
#: includes/settings/wcj-settings-add-to-cart.php:149
|
8990 |
+
#: includes/settings/wcj-settings-add-to-cart.php:156
|
8991 |
+
#: includes/settings/wcj-settings-add-to-cart.php:215
|
8992 |
+
#: includes/settings/wcj-settings-add-to-cart.php:224
|
8993 |
+
#: includes/settings/wcj-settings-sorting.php:27
|
8994 |
+
#: includes/settings/wcj-settings-sorting.php:36
|
8995 |
+
#: includes/settings/wcj-settings-sorting.php:45
|
8996 |
+
#: includes/settings/wcj-settings-sorting.php:54
|
8997 |
+
#: includes/settings/wcj-settings-sorting.php:72
|
8998 |
+
#: includes/settings/wcj-settings-sorting.php:81
|
8999 |
+
msgid "Default: "
|
9000 |
+
msgstr ""
|
9001 |
+
|
9002 |
+
#: includes/settings/wcj-settings-add-to-cart.php:155
|
9003 |
+
msgid "Product category (archive) view."
|
9004 |
+
msgstr ""
|
9005 |
+
|
9006 |
+
#: includes/settings/wcj-settings-add-to-cart.php:164
|
9007 |
+
msgid "Products not in stock. Product category (archive) view."
|
9008 |
+
msgstr ""
|
9009 |
+
|
9010 |
+
#: includes/settings/wcj-settings-add-to-cart.php:165
|
9011 |
+
#: includes/settings/wcj-settings-add-to-cart.php:172
|
9012 |
+
#: includes/settings/wcj-settings-add-to-cart.php:179
|
9013 |
+
#: includes/settings/wcj-settings-add-to-cart.php:186
|
9014 |
+
#: includes/settings/wcj-settings-add-to-cart.php:193
|
9015 |
+
msgid "Leave blank to disable. Default: Add to cart"
|
9016 |
+
msgstr ""
|
9017 |
+
|
9018 |
+
#: includes/settings/wcj-settings-add-to-cart.php:171
|
9019 |
+
msgid "Products on sale. Single product view."
|
9020 |
+
msgstr ""
|
9021 |
+
|
9022 |
+
#: includes/settings/wcj-settings-add-to-cart.php:178
|
9023 |
+
msgid "Products on sale. Product category (archive) view."
|
9024 |
+
msgstr ""
|
9025 |
+
|
9026 |
+
#: includes/settings/wcj-settings-add-to-cart.php:185
|
9027 |
+
msgid "Products with price set to 0 (i.e. free). Single product view."
|
9028 |
+
msgstr ""
|
9029 |
+
|
9030 |
+
#: includes/settings/wcj-settings-add-to-cart.php:192
|
9031 |
+
msgid ""
|
9032 |
+
"Products with price set to 0 (i.e. free). Product category (archive) view."
|
9033 |
+
msgstr ""
|
9034 |
+
|
9035 |
+
#: includes/settings/wcj-settings-add-to-cart.php:199
|
9036 |
+
msgid "Products with empty price. Product category (archive) view."
|
9037 |
+
msgstr ""
|
9038 |
+
|
9039 |
+
#: includes/settings/wcj-settings-add-to-cart.php:200
|
9040 |
+
msgid "Leave blank to disable. Default: Read More"
|
9041 |
+
msgstr ""
|
9042 |
+
|
9043 |
+
#: includes/settings/wcj-settings-add-to-cart.php:212
|
9044 |
+
msgid "Already in cart. Single product view."
|
9045 |
+
msgstr ""
|
9046 |
+
|
9047 |
+
#: includes/settings/wcj-settings-add-to-cart.php:214
|
9048 |
+
#: includes/settings/wcj-settings-add-to-cart.php:223
|
9049 |
+
msgid "Try: "
|
9050 |
+
msgstr ""
|
9051 |
+
|
9052 |
+
#: includes/settings/wcj-settings-add-to-cart.php:214
|
9053 |
+
#: includes/settings/wcj-settings-add-to-cart.php:223
|
9054 |
+
msgid "Already in cart - Add Again?"
|
9055 |
+
msgstr ""
|
9056 |
+
|
9057 |
+
#: includes/settings/wcj-settings-add-to-cart.php:221
|
9058 |
+
msgid "Already in cart. Product category (archive) view."
|
9059 |
+
msgstr ""
|
9060 |
+
|
9061 |
+
#: includes/settings/wcj-settings-address-formats.php:14
|
9062 |
+
#: includes/settings/wcj-settings-address-formats.php:19
|
9063 |
+
msgid "Force Base Country Display"
|
9064 |
+
msgstr ""
|
9065 |
+
|
9066 |
+
#: includes/settings/wcj-settings-address-formats.php:30
|
9067 |
+
msgid "Address Formats by Country"
|
9068 |
+
msgstr ""
|
9069 |
+
|
9070 |
+
#: includes/settings/wcj-settings-admin-bar.php:19
|
9071 |
+
msgid "\"WooCommerce\" Admin Bar"
|
9072 |
+
msgstr ""
|
9073 |
+
|
9074 |
+
#: includes/settings/wcj-settings-admin-bar.php:27
|
9075 |
+
msgid "List product categories in \"WooCommerce > Products > Categories\""
|
9076 |
+
msgstr ""
|
9077 |
+
|
9078 |
+
#: includes/settings/wcj-settings-admin-bar.php:34
|
9079 |
+
msgid "List product tags in \"WooCommerce > Products > Tags\""
|
9080 |
+
msgstr ""
|
9081 |
+
|
9082 |
+
#: includes/settings/wcj-settings-admin-bar.php:41
|
9083 |
+
msgid "\"Booster\" Admin Bar"
|
9084 |
+
msgstr ""
|
9085 |
+
|
9086 |
+
#: includes/settings/wcj-settings-admin-bar.php:48
|
9087 |
+
msgid "\"Booster: Active\" Admin Bar"
|
9088 |
+
msgstr ""
|
9089 |
+
|
9090 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:14
|
9091 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:20
|
9092 |
+
#: includes/settings/wcj-settings-admin-products-list.php:14
|
9093 |
+
msgid "Custom Columns"
|
9094 |
+
msgstr ""
|
9095 |
+
|
9096 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:16
|
9097 |
+
msgid "This section lets you add custom columns to WooCommerce orders list."
|
9098 |
+
msgstr ""
|
9099 |
+
|
9100 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:28
|
9101 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:35
|
9102 |
+
msgid "Add column and filtering"
|
9103 |
+
msgstr ""
|
9104 |
+
|
9105 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:41
|
9106 |
+
#: includes/settings/wcj-settings-admin-products-list.php:26
|
9107 |
+
msgid "Custom Columns Total Number"
|
9108 |
+
msgstr ""
|
9109 |
+
|
9110 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:56
|
9111 |
+
#: includes/settings/wcj-settings-admin-products-list.php:42
|
9112 |
+
msgid "Custom Column"
|
9113 |
+
msgstr ""
|
9114 |
+
|
9115 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:58
|
9116 |
+
#: includes/settings/wcj-settings-admin-products-list.php:44
|
9117 |
+
msgid "Key:"
|
9118 |
+
msgstr ""
|
9119 |
+
|
9120 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:64
|
9121 |
+
#: includes/settings/wcj-settings-admin-products-list.php:50
|
9122 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:158
|
9123 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:81
|
9124 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:305
|
9125 |
+
#: includes/settings/wcj-settings-offer-price.php:65
|
9126 |
+
#: includes/settings/wcj-settings-offer-price.php:159
|
9127 |
+
#: includes/settings/wcj-settings-offer-price.php:199
|
9128 |
+
#: includes/settings/wcj-settings-offer-price.php:207
|
9129 |
+
#: includes/settings/wcj-settings-offer-price.php:215
|
9130 |
+
#: includes/settings/wcj-settings-offer-price.php:223
|
9131 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:141
|
9132 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:217
|
9133 |
+
msgid "Label"
|
9134 |
+
msgstr ""
|
9135 |
+
|
9136 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:72
|
9137 |
+
#: includes/settings/wcj-settings-admin-products-list.php:57
|
9138 |
+
msgid "You can use shortcodes and/or HTML here."
|
9139 |
+
msgstr ""
|
9140 |
+
|
9141 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:79
|
9142 |
+
msgid "Sortable"
|
9143 |
+
msgstr ""
|
9144 |
+
|
9145 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:85
|
9146 |
+
msgid "By meta (as text)"
|
9147 |
+
msgstr ""
|
9148 |
+
|
9149 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:86
|
9150 |
+
msgid "By meta (as numbers)"
|
9151 |
+
msgstr ""
|
9152 |
+
|
9153 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:90
|
9154 |
+
msgid "Key (if sortable)"
|
9155 |
+
msgstr ""
|
9156 |
+
|
9157 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:103
|
9158 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:108
|
9159 |
+
msgid "Multiple Status"
|
9160 |
+
msgstr ""
|
9161 |
+
|
9162 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:115
|
9163 |
+
msgid "Multiple Status Filtering"
|
9164 |
+
msgstr ""
|
9165 |
+
|
9166 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:120
|
9167 |
+
#: includes/settings/wcj-settings-empty-cart.php:46
|
9168 |
+
#: includes/settings/wcj-settings-empty-cart.php:67
|
9169 |
+
#: includes/settings/wcj-settings-offer-price.php:92
|
9170 |
+
#: includes/settings/wcj-settings-offer-price.php:115
|
9171 |
+
msgid "Do not add"
|
9172 |
+
msgstr ""
|
9173 |
+
|
9174 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:121
|
9175 |
+
msgid "Add as multiple select"
|
9176 |
+
msgstr ""
|
9177 |
+
|
9178 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:122
|
9179 |
+
msgid "Add as checkboxes"
|
9180 |
+
msgstr ""
|
9181 |
+
|
9182 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:126
|
9183 |
+
msgid "Hide Default Statuses Menu"
|
9184 |
+
msgstr ""
|
9185 |
+
|
9186 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:133
|
9187 |
+
msgid "Add \"Not Completed\" Status Link to Default Statuses Menu"
|
9188 |
+
msgstr ""
|
9189 |
+
|
9190 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:140
|
9191 |
+
msgid "Add Presets to Admin Menu"
|
9192 |
+
msgstr ""
|
9193 |
+
|
9194 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:141
|
9195 |
+
msgid "Add presets"
|
9196 |
+
msgstr ""
|
9197 |
+
|
9198 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:142
|
9199 |
+
msgid ""
|
9200 |
+
"To add presets, \"Multiple Status Filtering\" option must be enabled (as "
|
9201 |
+
"multiple select or as checkboxes)."
|
9202 |
+
msgstr ""
|
9203 |
+
|
9204 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:148
|
9205 |
+
msgid "Add order counter"
|
9206 |
+
msgstr ""
|
9207 |
+
|
9208 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:154
|
9209 |
+
msgid "Remove original \"Orders\" menu"
|
9210 |
+
msgstr ""
|
9211 |
+
|
9212 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:160
|
9213 |
+
msgid "Total Presets"
|
9214 |
+
msgstr ""
|
9215 |
+
|
9216 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:173
|
9217 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:180
|
9218 |
+
msgid "Must be not empty."
|
9219 |
+
msgstr ""
|
9220 |
+
|
9221 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:175
|
9222 |
+
msgid "Preset"
|
9223 |
+
msgstr ""
|
9224 |
+
|
9225 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:179
|
9226 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:179
|
9227 |
+
msgid "Statuses"
|
9228 |
+
msgstr ""
|
9229 |
+
|
9230 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:195
|
9231 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:200
|
9232 |
+
#: includes/settings/wcj-settings-admin-products-list.php:70
|
9233 |
+
msgid "Columns Order"
|
9234 |
+
msgstr ""
|
9235 |
+
|
9236 |
+
#: includes/settings/wcj-settings-admin-orders-list.php:208
|
9237 |
+
#: includes/settings/wcj-settings-admin-products-list.php:83
|
9238 |
+
msgid "Default columns order"
|
9239 |
+
msgstr ""
|
9240 |
+
|
9241 |
+
#: includes/settings/wcj-settings-admin-products-list.php:27
|
9242 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:201
|
9243 |
+
#: includes/settings/wcj-settings-shipping.php:51
|
9244 |
+
msgid ""
|
9245 |
+
"Save module's settings after changing this option to see new settings fields."
|
9246 |
+
msgstr ""
|
9247 |
+
|
9248 |
+
#: includes/settings/wcj-settings-admin-tools.php:14
|
9249 |
+
msgid "Admin Tools Options"
|
9250 |
+
msgstr ""
|
9251 |
+
|
9252 |
+
#: includes/settings/wcj-settings-admin-tools.php:19
|
9253 |
+
msgid "Show Booster Menus Only to Admin"
|
9254 |
+
msgstr ""
|
9255 |
+
|
9256 |
+
#: includes/settings/wcj-settings-admin-tools.php:20
|
9257 |
+
#, php-format
|
9258 |
+
msgid ""
|
9259 |
+
"Will require %s capability to see Booster menus (instead of %s capability)."
|
9260 |
+
msgstr ""
|
9261 |
+
|
9262 |
+
#: includes/settings/wcj-settings-admin-tools.php:28
|
9263 |
+
msgid "Suppress Admin Connect Notice"
|
9264 |
+
msgstr ""
|
9265 |
+
|
9266 |
+
#: includes/settings/wcj-settings-admin-tools.php:30
|
9267 |
+
#, php-format
|
9268 |
+
msgid "Will remove \"%s\" admin notice."
|
9269 |
+
msgstr ""
|
9270 |
+
|
9271 |
+
#: includes/settings/wcj-settings-admin-tools.php:31
|
9272 |
+
msgid ""
|
9273 |
+
"Connect your store to WooCommerce.com to receive extensions updates and "
|
9274 |
+
"support."
|
9275 |
+
msgstr ""
|
9276 |
+
|
9277 |
+
#: includes/settings/wcj-settings-admin-tools.php:37
|
9278 |
+
msgid "Suppress Admin Notices"
|
9279 |
+
msgstr ""
|
9280 |
+
|
9281 |
+
#: includes/settings/wcj-settings-admin-tools.php:39
|
9282 |
+
msgid "Will remove admin notices (including the Connect notice)."
|
9283 |
+
msgstr ""
|
9284 |
+
|
9285 |
+
#: includes/settings/wcj-settings-admin-tools.php:49
|
9286 |
+
msgid "Orders Options"
|
9287 |
+
msgstr ""
|
9288 |
+
|
9289 |
+
#: includes/settings/wcj-settings-admin-tools.php:54
|
9290 |
+
msgid "Show Order Meta"
|
9291 |
+
msgstr ""
|
9292 |
+
|
9293 |
+
#: includes/settings/wcj-settings-admin-tools.php:55
|
9294 |
+
msgid "Will show order meta table in meta box."
|
9295 |
+
msgstr ""
|
9296 |
+
|
9297 |
+
#: includes/settings/wcj-settings-admin-tools.php:66
|
9298 |
+
msgid "Products Options"
|
9299 |
+
msgstr ""
|
9300 |
+
|
9301 |
+
#: includes/settings/wcj-settings-admin-tools.php:71
|
9302 |
+
msgid "Show Product Meta"
|
9303 |
+
msgstr ""
|
9304 |
+
|
9305 |
+
#: includes/settings/wcj-settings-admin-tools.php:72
|
9306 |
+
msgid "Will show product meta table in meta box."
|
9307 |
+
msgstr ""
|
9308 |
+
|
9309 |
+
#: includes/settings/wcj-settings-admin-tools.php:79
|
9310 |
+
msgid "Show Variable Product Pricing Table"
|
9311 |
+
msgstr ""
|
9312 |
+
|
9313 |
+
#: includes/settings/wcj-settings-admin-tools.php:80
|
9314 |
+
msgid "Will allow to set all variations prices in single meta box."
|
9315 |
+
msgstr ""
|
9316 |
+
|
9317 |
+
#: includes/settings/wcj-settings-admin-tools.php:87
|
9318 |
+
msgid "Product Revisions"
|
9319 |
+
msgstr ""
|
9320 |
+
|
9321 |
+
#: includes/settings/wcj-settings-admin-tools.php:88
|
9322 |
+
msgid "Will enable product revisions."
|
9323 |
+
msgstr ""
|
9324 |
+
|
9325 |
+
#: includes/settings/wcj-settings-admin-tools.php:95
|
9326 |
+
msgid "JSON Product Search Limit"
|
9327 |
+
msgstr ""
|
9328 |
+
|
9329 |
+
#: includes/settings/wcj-settings-admin-tools.php:96
|
9330 |
+
msgid ""
|
9331 |
+
"This will set the maximum number of products to return on JSON search (e.g. "
|
9332 |
+
"when setting Upsells and Cross-sells on product edit page)."
|
9333 |
+
msgstr ""
|
9334 |
+
|
9335 |
+
#: includes/settings/wcj-settings-admin-tools.php:97
|
9336 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:240
|
9337 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:249
|
9338 |
+
#: includes/settings/wcj-settings-order-quantities.php:208
|
9339 |
+
msgid "Ignored if set to zero."
|
9340 |
+
msgstr ""
|
9341 |
+
|
9342 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:19
|
9343 |
+
msgid "Change Breadcrumbs Home URL"
|
9344 |
+
msgstr ""
|
9345 |
+
|
9346 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:26
|
9347 |
+
msgid "Home URL"
|
9348 |
+
msgstr ""
|
9349 |
+
|
9350 |
+
#: includes/settings/wcj-settings-breadcrumbs.php:33
|
9351 |
+
msgid "Hide Breadcrumbs"
|
9352 |
+
msgstr ""
|
9353 |
+
|
9354 |
+
#: includes/settings/wcj-settings-call-for-price.php:14
|
9355 |
+
msgid "Call for Price Options"
|
9356 |
+
msgstr ""
|
9357 |
+
|
9358 |
+
#: includes/settings/wcj-settings-call-for-price.php:16
|
9359 |
+
msgid ""
|
9360 |
+
"Leave price empty when adding or editing products. Then set the options here."
|
9361 |
+
msgstr ""
|
9362 |
+
|
9363 |
+
#: includes/settings/wcj-settings-call-for-price.php:17
|
9364 |
+
msgid "You can use shortcodes in options."
|
9365 |
+
msgstr ""
|
9366 |
+
|
9367 |
+
#: includes/settings/wcj-settings-call-for-price.php:21
|
9368 |
+
msgid "Label to Show on Single"
|
9369 |
+
msgstr ""
|
9370 |
+
|
9371 |
+
#: includes/settings/wcj-settings-call-for-price.php:22
|
9372 |
+
#: includes/settings/wcj-settings-call-for-price.php:32
|
9373 |
+
#: includes/settings/wcj-settings-call-for-price.php:42
|
9374 |
+
#: includes/settings/wcj-settings-call-for-price.php:52
|
9375 |
+
#: includes/settings/wcj-settings-call-for-price.php:62
|
9376 |
+
msgid "This sets the html to output on empty price. Leave blank to disable."
|
9377 |
+
msgstr ""
|
9378 |
+
|
9379 |
+
#: includes/settings/wcj-settings-call-for-price.php:31
|
9380 |
+
msgid "Label to Show on Archives"
|
9381 |
+
msgstr ""
|
9382 |
+
|
9383 |
+
#: includes/settings/wcj-settings-call-for-price.php:41
|
9384 |
+
msgid "Label to Show on Homepage"
|
9385 |
+
msgstr ""
|
9386 |
+
|
9387 |
+
#: includes/settings/wcj-settings-call-for-price.php:51
|
9388 |
+
msgid "Label to Show on Related"
|
9389 |
+
msgstr ""
|
9390 |
+
|
9391 |
+
#: includes/settings/wcj-settings-call-for-price.php:61
|
9392 |
+
msgid "Label to Show for Variations"
|
9393 |
+
msgstr ""
|
9394 |
+
|
9395 |
+
#: includes/settings/wcj-settings-call-for-price.php:71
|
9396 |
+
msgid "Hide Sale! Tag"
|
9397 |
+
msgstr ""
|
9398 |
+
|
9399 |
+
#: includes/settings/wcj-settings-call-for-price.php:72
|
9400 |
+
msgid "Hide the tag"
|
9401 |
+
msgstr ""
|
9402 |
+
|
9403 |
+
#: includes/settings/wcj-settings-call-for-price.php:78
|
9404 |
+
msgid "Make All Products Call for Price"
|
9405 |
+
msgstr ""
|
9406 |
+
|
9407 |
+
#: includes/settings/wcj-settings-call-for-price.php:80
|
9408 |
+
msgid ""
|
9409 |
+
"Enable this to make all products prices empty. When checkbox disabled, all "
|
9410 |
+
"prices go back to normal."
|
9411 |
+
msgstr ""
|
9412 |
+
|
9413 |
+
#: includes/settings/wcj-settings-cart-customization.php:19
|
9414 |
+
msgid "Hide Coupon on Cart Page"
|
9415 |
+
msgstr ""
|
9416 |
+
|
9417 |
+
#: includes/settings/wcj-settings-cart-customization.php:26
|
9418 |
+
msgid "Hide Item Remove Link"
|
9419 |
+
msgstr ""
|
9420 |
+
|
9421 |
+
#: includes/settings/wcj-settings-cart-customization.php:33
|
9422 |
+
msgid "Change Empty Cart \"Return to shop\" Button Text"
|
9423 |
+
msgstr ""
|
9424 |
+
|
9425 |
+
#: includes/settings/wcj-settings-cart-customization.php:45
|
9426 |
+
msgid "Use JavaScript"
|
9427 |
+
msgstr ""
|
9428 |
+
|
9429 |
+
#: includes/settings/wcj-settings-cart-customization.php:46
|
9430 |
+
msgid "Replace empty cart template"
|
9431 |
+
msgstr ""
|
9432 |
+
|
9433 |
+
#: includes/settings/wcj-settings-cart-customization.php:56
|
9434 |
+
msgid "Change Empty Cart \"Return to shop\" Button Link"
|
9435 |
+
msgstr ""
|
9436 |
+
|
9437 |
+
#: includes/settings/wcj-settings-cart.php:16
|
9438 |
+
msgid "Cart Custom Info Blocks"
|
9439 |
+
msgstr ""
|
9440 |
+
|
9441 |
+
#: includes/settings/wcj-settings-cart.php:19
|
9442 |
+
msgid ""
|
9443 |
+
"This feature allows you to add a final checkpoint for your customers before "
|
9444 |
+
"they proceed to payment."
|
9445 |
+
msgstr ""
|
9446 |
+
|
9447 |
+
#: includes/settings/wcj-settings-cart.php:20
|
9448 |
+
msgid ""
|
9449 |
+
"Show custom information at on the cart page using Booster's various "
|
9450 |
+
"shortcodes and give your customers a seamless cart experience."
|
9451 |
+
msgstr ""
|
9452 |
+
|
9453 |
+
#: includes/settings/wcj-settings-cart.php:21
|
9454 |
+
msgid ""
|
9455 |
+
"For example, show them the total weight of their items, any additional fees "
|
9456 |
+
"or taxes, or a confirmation of the address their products are being sent to."
|
9457 |
+
msgstr ""
|
9458 |
+
|
9459 |
+
#: includes/settings/wcj-settings-cart.php:24
|
9460 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:20
|
9461 |
+
#: includes/settings/wcj-settings-mini-cart.php:19
|
9462 |
+
#: includes/settings/wcj-settings-my-account.php:233
|
9463 |
+
#: includes/settings/wcj-settings-product-custom-info.php:52
|
9464 |
+
msgid "Total Blocks"
|
9465 |
+
msgstr ""
|
9466 |
+
|
9467 |
+
#: includes/settings/wcj-settings-cart.php:39
|
9468 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:36
|
9469 |
+
#: includes/settings/wcj-settings-mini-cart.php:34
|
9470 |
+
#: includes/settings/wcj-settings-my-account.php:248
|
9471 |
+
msgid "Info Block"
|
9472 |
+
msgstr ""
|
9473 |
+
|
9474 |
+
#: includes/settings/wcj-settings-cart.php:58
|
9475 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:85
|
9476 |
+
#: includes/settings/wcj-settings-mini-cart.php:57
|
9477 |
+
#: includes/settings/wcj-settings-my-account.php:306
|
9478 |
+
#: includes/settings/wcj-settings-product-custom-info.php:124
|
9479 |
+
msgid "Position Order (i.e. Priority)"
|
9480 |
+
msgstr ""
|
9481 |
+
|
9482 |
+
#: includes/settings/wcj-settings-cart.php:72
|
9483 |
+
msgid "Cart Items Table Custom Info"
|
9484 |
+
msgstr ""
|
9485 |
+
|
9486 |
+
#: includes/settings/wcj-settings-cart.php:78
|
9487 |
+
msgid "Add to Each Item Name"
|
9488 |
+
msgstr ""
|
9489 |
+
|
9490 |
+
#: includes/settings/wcj-settings-cart.php:79
|
9491 |
+
msgid ""
|
9492 |
+
"You can use shortcodes here. E.g.: [wcj_product_sku]. Leave blank to disable."
|
9493 |
+
msgstr ""
|
9494 |
+
|
9495 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:16
|
9496 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:221
|
9497 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:26
|
9498 |
+
#: includes/settings/wcj-settings-emails-verification.php:14
|
9499 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:55
|
9500 |
+
#: includes/settings/wcj-settings-multicurrency.php:17
|
9501 |
+
#: includes/settings/wcj-settings-my-account.php:14
|
9502 |
+
#: includes/settings/wcj-settings-offer-price.php:22
|
9503 |
+
#: includes/settings/wcj-settings-order-quantities.php:17
|
9504 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:15
|
9505 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:17
|
9506 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:15
|
9507 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:19
|
9508 |
+
#: includes/settings/wcj-settings-price-formats.php:15
|
9509 |
+
#: includes/settings/wcj-settings-product-tabs.php:15
|
9510 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:20
|
9511 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:15
|
9512 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:15
|
9513 |
+
#: includes/settings/wcj-settings-shipping-time.php:25
|
9514 |
+
#: includes/settings/wcj-settings-wpml.php:22
|
9515 |
+
msgid "General Options"
|
9516 |
+
msgstr ""
|
9517 |
+
|
9518 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:21
|
9519 |
+
msgid "Override Default Address Fields"
|
9520 |
+
msgstr ""
|
9521 |
+
|
9522 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:26
|
9523 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:37
|
9524 |
+
msgid "Override with billing fields"
|
9525 |
+
msgstr ""
|
9526 |
+
|
9527 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:27
|
9528 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:38
|
9529 |
+
msgid "Override with shipping fields"
|
9530 |
+
msgstr ""
|
9531 |
+
|
9532 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:28
|
9533 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:39
|
9534 |
+
msgid "Do not override"
|
9535 |
+
msgstr ""
|
9536 |
+
|
9537 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:32
|
9538 |
+
msgid "Override Country Locale Fields"
|
9539 |
+
msgstr ""
|
9540 |
+
|
9541 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:43
|
9542 |
+
msgid "Force Fields Sort by Priority"
|
9543 |
+
msgstr ""
|
9544 |
+
|
9545 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:45
|
9546 |
+
msgid ""
|
9547 |
+
"Enable this if you are having theme related issues with \"priority (i.e. "
|
9548 |
+
"order)\" options."
|
9549 |
+
msgstr ""
|
9550 |
+
|
9551 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:55
|
9552 |
+
msgid "Fields Options"
|
9553 |
+
msgstr ""
|
9554 |
+
|
9555 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:76
|
9556 |
+
#: includes/shortcodes/class-wcj-shortcodes-products-add-form.php:327
|
9557 |
+
msgid "required"
|
9558 |
+
msgstr ""
|
9559 |
+
|
9560 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:83
|
9561 |
+
msgid "Not Required"
|
9562 |
+
msgstr ""
|
9563 |
+
|
9564 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:89
|
9565 |
+
msgid "label"
|
9566 |
+
msgstr ""
|
9567 |
+
|
9568 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:90
|
9569 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:98
|
9570 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:106
|
9571 |
+
msgid "Leave blank for WooCommerce defaults."
|
9572 |
+
msgstr ""
|
9573 |
+
|
9574 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:97
|
9575 |
+
msgid "placeholder"
|
9576 |
+
msgstr ""
|
9577 |
+
|
9578 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:105
|
9579 |
+
msgid "description"
|
9580 |
+
msgstr ""
|
9581 |
+
|
9582 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:113
|
9583 |
+
msgid "class"
|
9584 |
+
msgstr ""
|
9585 |
+
|
9586 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:119
|
9587 |
+
msgid "Align Left"
|
9588 |
+
msgstr ""
|
9589 |
+
|
9590 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:120
|
9591 |
+
msgid "Align Right"
|
9592 |
+
msgstr ""
|
9593 |
+
|
9594 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:121
|
9595 |
+
msgid "Full Row"
|
9596 |
+
msgstr ""
|
9597 |
+
|
9598 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:126
|
9599 |
+
msgid "priority (i.e. order)"
|
9600 |
+
msgstr ""
|
9601 |
+
|
9602 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:127
|
9603 |
+
msgid "Leave zero for WooCommerce defaults."
|
9604 |
+
msgstr ""
|
9605 |
+
|
9606 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:135
|
9607 |
+
msgid "include product categories"
|
9608 |
+
msgstr ""
|
9609 |
+
|
9610 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:136
|
9611 |
+
msgid ""
|
9612 |
+
"If not empty - selected categories products must be in cart for current "
|
9613 |
+
"field to appear."
|
9614 |
+
msgstr ""
|
9615 |
+
|
9616 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:147
|
9617 |
+
msgid "exclude product categories"
|
9618 |
+
msgstr ""
|
9619 |
+
|
9620 |
+
#: includes/settings/wcj-settings-checkout-core-fields.php:148
|
9621 |
+
msgid ""
|
9622 |
+
"If not empty - current field is hidden, if selected categories products are "
|
9623 |
+
"in cart."
|
9624 |
+
msgstr ""
|
9625 |
+
|
9626 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:21
|
9627 |
+
msgid "Add All Fields to Admin Emails"
|
9628 |
+
msgstr ""
|
9629 |
+
|
9630 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:28
|
9631 |
+
msgid "Add All Fields to Customers Emails"
|
9632 |
+
msgstr ""
|
9633 |
+
|
9634 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:35
|
9635 |
+
msgid "Emails Fields Template"
|
9636 |
+
msgstr ""
|
9637 |
+
|
9638 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:36
|
9639 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:62
|
9640 |
+
msgid "Before the fields"
|
9641 |
+
msgstr ""
|
9642 |
+
|
9643 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:42
|
9644 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:68
|
9645 |
+
msgid "Each field"
|
9646 |
+
msgstr ""
|
9647 |
+
|
9648 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:48
|
9649 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:74
|
9650 |
+
msgid "After the fields"
|
9651 |
+
msgstr ""
|
9652 |
+
|
9653 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:54
|
9654 |
+
msgid ""
|
9655 |
+
"Add All Fields to \"Order Received\" (i.e. \"Thank You\") and \"View Order\" "
|
9656 |
+
"Pages"
|
9657 |
+
msgstr ""
|
9658 |
+
|
9659 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:61
|
9660 |
+
msgid "\"Order Received\" Fields Template"
|
9661 |
+
msgstr ""
|
9662 |
+
|
9663 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:80
|
9664 |
+
msgid "Textarea Field Values"
|
9665 |
+
msgstr ""
|
9666 |
+
|
9667 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:81
|
9668 |
+
msgid "When saving, \"clean\" textarea field values"
|
9669 |
+
msgstr ""
|
9670 |
+
|
9671 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:87
|
9672 |
+
msgid "Textarea Line Breaks"
|
9673 |
+
msgstr ""
|
9674 |
+
|
9675 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:88
|
9676 |
+
#, php-format
|
9677 |
+
msgid "When displaying, replace line breaks with %s in textarea field values"
|
9678 |
+
msgstr ""
|
9679 |
+
|
9680 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:89
|
9681 |
+
msgid "Does <strong>not</strong> affect admin order edit page."
|
9682 |
+
msgstr ""
|
9683 |
+
|
9684 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:95
|
9685 |
+
msgid "Custom Fields Number"
|
9686 |
+
msgstr ""
|
9687 |
+
|
9688 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:96
|
9689 |
+
#: includes/settings/wcj-settings-product-input-fields.php:62
|
9690 |
+
msgid "Click Save changes after you change this number."
|
9691 |
+
msgstr ""
|
9692 |
+
|
9693 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:116
|
9694 |
+
msgid "Custom Field"
|
9695 |
+
msgstr ""
|
9696 |
+
|
9697 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:146
|
9698 |
+
msgid "State"
|
9699 |
+
msgstr ""
|
9700 |
+
|
9701 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:173
|
9702 |
+
#: includes/settings/wcj-settings-checkout-customization.php:153
|
9703 |
+
msgid "You can use HTML here."
|
9704 |
+
msgstr ""
|
9705 |
+
|
9706 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:187
|
9707 |
+
msgid "Section"
|
9708 |
+
msgstr ""
|
9709 |
+
|
9710 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:192
|
9711 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:56
|
9712 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:114
|
9713 |
+
msgid "Billing"
|
9714 |
+
msgstr ""
|
9715 |
+
|
9716 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:199
|
9717 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:63
|
9718 |
+
#: includes/widgets/class-wcj-widget-multicurrency.php:100
|
9719 |
+
msgid "Class"
|
9720 |
+
msgstr ""
|
9721 |
+
|
9722 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:204
|
9723 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:68
|
9724 |
+
msgid "Wide"
|
9725 |
+
msgstr ""
|
9726 |
+
|
9727 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:205
|
9728 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:69
|
9729 |
+
msgid "First"
|
9730 |
+
msgstr ""
|
9731 |
+
|
9732 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:206
|
9733 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:70
|
9734 |
+
msgid "Last"
|
9735 |
+
msgstr ""
|
9736 |
+
|
9737 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:210
|
9738 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:56
|
9739 |
+
#: includes/templates/wcj-radio-for-variations.php:24
|
9740 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:213
|
9741 |
+
msgid "Clear"
|
9742 |
+
msgstr ""
|
9743 |
+
|
9744 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:216
|
9745 |
+
msgid "Customer Meta Fields"
|
9746 |
+
msgstr ""
|
9747 |
+
|
9748 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:224
|
9749 |
+
msgid "One option per line"
|
9750 |
+
msgstr ""
|
9751 |
+
|
9752 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:231
|
9753 |
+
msgid "Select: Use select2 Library"
|
9754 |
+
msgstr ""
|
9755 |
+
|
9756 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:238
|
9757 |
+
msgid "select2: min input length"
|
9758 |
+
msgstr ""
|
9759 |
+
|
9760 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:239
|
9761 |
+
msgid "select2: Number of characters necessary to start a search."
|
9762 |
+
msgstr ""
|
9763 |
+
|
9764 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:247
|
9765 |
+
msgid "select2: max input length"
|
9766 |
+
msgstr ""
|
9767 |
+
|
9768 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:248
|
9769 |
+
msgid "select2: Maximum number of characters that can be entered for an input."
|
9770 |
+
msgstr ""
|
9771 |
+
|
9772 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:257
|
9773 |
+
msgid "Checkbox: Value for ON"
|
9774 |
+
msgstr ""
|
9775 |
+
|
9776 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:263
|
9777 |
+
msgid "Checkbox: Value for OFF"
|
9778 |
+
msgstr ""
|
9779 |
+
|
9780 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:269
|
9781 |
+
msgid "Checkbox: Default Value"
|
9782 |
+
msgstr ""
|
9783 |
+
|
9784 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:278
|
9785 |
+
msgid "Datepicker/Weekpicker: Date Format"
|
9786 |
+
msgstr ""
|
9787 |
+
|
9788 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:279
|
9789 |
+
msgid ""
|
9790 |
+
"Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
|
9791 |
+
"target=\"_blank\">documentation on date and time formatting</a> for valid "
|
9792 |
+
"date formats"
|
9793 |
+
msgstr ""
|
9794 |
+
|
9795 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:286
|
9796 |
+
msgid "Datepicker/Weekpicker: Min Date"
|
9797 |
+
msgstr ""
|
9798 |
+
|
9799 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:287
|
9800 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:294
|
9801 |
+
msgid "days"
|
9802 |
+
msgstr ""
|
9803 |
+
|
9804 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:293
|
9805 |
+
msgid "Datepicker/Weekpicker: Max Date"
|
9806 |
+
msgstr ""
|
9807 |
+
|
9808 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:300
|
9809 |
+
msgid "Datepicker/Weekpicker: Add Year Selector"
|
9810 |
+
msgstr ""
|
9811 |
+
|
9812 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:306
|
9813 |
+
msgid "Datepicker/Weekpicker: Year Selector: Year Range"
|
9814 |
+
msgstr ""
|
9815 |
+
|
9816 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:307
|
9817 |
+
msgid ""
|
9818 |
+
"The range of years displayed in the year drop-down: either relative to "
|
9819 |
+
"today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
|
9820 |
+
"+nn\"), absolute (\"nnnn:nnnn\"), or combinations of these formats (\"nnnn:-"
|
9821 |
+
"nn\"). Note that this option only affects what appears in the drop-down, to "
|
9822 |
+
"restrict which dates may be selected use the minDate and/or maxDate options."
|
9823 |
+
msgstr ""
|
9824 |
+
|
9825 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:313
|
9826 |
+
msgid "Datepicker/Weekpicker: First Week Day"
|
9827 |
+
msgstr ""
|
9828 |
+
|
9829 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:328
|
9830 |
+
msgid "Timepicker: Time Format"
|
9831 |
+
msgstr ""
|
9832 |
+
|
9833 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:329
|
9834 |
+
msgid ""
|
9835 |
+
"Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
|
9836 |
+
"options page</a> for valid time formats"
|
9837 |
+
msgstr ""
|
9838 |
+
|
9839 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:336
|
9840 |
+
msgid "minutes"
|
9841 |
+
msgstr ""
|
9842 |
+
|
9843 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:342
|
9844 |
+
#: includes/settings/wcj-settings-product-listings.php:47
|
9845 |
+
msgid "Exclude Categories"
|
9846 |
+
msgstr ""
|
9847 |
+
|
9848 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:343
|
9849 |
+
msgid "Hide this field if there is a product of selected category in cart."
|
9850 |
+
msgstr ""
|
9851 |
+
|
9852 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:351
|
9853 |
+
msgid "Include Categories"
|
9854 |
+
msgstr ""
|
9855 |
+
|
9856 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:352
|
9857 |
+
msgid ""
|
9858 |
+
"Show this field only if there is a product of selected category in cart."
|
9859 |
+
msgstr ""
|
9860 |
+
|
9861 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:360
|
9862 |
+
#: includes/settings/wcj-settings-global-discount.php:158
|
9863 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:125
|
9864 |
+
#: includes/settings/wcj-settings-product-addons.php:149
|
9865 |
+
#: includes/settings/wcj-settings-related-products.php:244
|
9866 |
+
msgid "Exclude Products"
|
9867 |
+
msgstr ""
|
9868 |
+
|
9869 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:361
|
9870 |
+
msgid "Hide this field if there is a selected product in cart."
|
9871 |
+
msgstr ""
|
9872 |
+
|
9873 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:369
|
9874 |
+
#: includes/settings/wcj-settings-global-discount.php:147
|
9875 |
+
#: includes/settings/wcj-settings-related-products.php:233
|
9876 |
+
msgid "Include Products"
|
9877 |
+
msgstr ""
|
9878 |
+
|
9879 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:370
|
9880 |
+
msgid "Show this field only if there is a selected product in cart."
|
9881 |
+
msgstr ""
|
9882 |
+
|
9883 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:378
|
9884 |
+
msgid "Min Cart Amount"
|
9885 |
+
msgstr ""
|
9886 |
+
|
9887 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:379
|
9888 |
+
msgid ""
|
9889 |
+
"Show this field only if cart total is at least this amount. Set zero to "
|
9890 |
+
"disable."
|
9891 |
+
msgstr ""
|
9892 |
+
|
9893 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:386
|
9894 |
+
msgid "Max Cart Amount"
|
9895 |
+
msgstr ""
|
9896 |
+
|
9897 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:387
|
9898 |
+
msgid ""
|
9899 |
+
"Show this field only if cart total is not more than this amount. Set zero to "
|
9900 |
+
"disable."
|
9901 |
+
msgstr ""
|
9902 |
+
|
9903 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:15
|
9904 |
+
msgid "Checkout Custom Info Blocks"
|
9905 |
+
msgstr ""
|
9906 |
+
|
9907 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:54
|
9908 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:56
|
9909 |
+
#: includes/settings/wcj-settings-empty-cart.php:68
|
9910 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:112
|
9911 |
+
msgid "Before checkout form"
|
9912 |
+
msgstr ""
|
9913 |
+
|
9914 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:55
|
9915 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:113
|
9916 |
+
msgid "Before customer details"
|
9917 |
+
msgstr ""
|
9918 |
+
|
9919 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:58
|
9920 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:116
|
9921 |
+
msgid "After customer details"
|
9922 |
+
msgstr ""
|
9923 |
+
|
9924 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:59
|
9925 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:117
|
9926 |
+
msgid "Before order review"
|
9927 |
+
msgstr ""
|
9928 |
+
|
9929 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:60
|
9930 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:118
|
9931 |
+
msgid "Order review"
|
9932 |
+
msgstr ""
|
9933 |
+
|
9934 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:61
|
9935 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:123
|
9936 |
+
msgid "After order review"
|
9937 |
+
msgstr ""
|
9938 |
+
|
9939 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:62
|
9940 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:57
|
9941 |
+
#: includes/settings/wcj-settings-empty-cart.php:69
|
9942 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:124
|
9943 |
+
msgid "After checkout form"
|
9944 |
+
msgstr ""
|
9945 |
+
|
9946 |
+
#: includes/settings/wcj-settings-checkout-custom-info.php:81
|
9947 |
+
msgid "Order Received (Thank You) page"
|
9948 |
+
msgstr ""
|
9949 |
+
|
9950 |
+
#: includes/settings/wcj-settings-checkout-customization.php:14
|
9951 |
+
msgid "Restrict Countries by Customer's IP"
|
9952 |
+
msgstr ""
|
9953 |
+
|
9954 |
+
#: includes/settings/wcj-settings-checkout-customization.php:19
|
9955 |
+
msgid "Restrict Billing Countries by Customer's IP"
|
9956 |
+
msgstr ""
|
9957 |
+
|
9958 |
+
#: includes/settings/wcj-settings-checkout-customization.php:26
|
9959 |
+
msgid "Restrict Shipping Countries by Customer's IP"
|
9960 |
+
msgstr ""
|
9961 |
+
|
9962 |
+
#: includes/settings/wcj-settings-checkout-customization.php:28
|
9963 |
+
#, php-format
|
9964 |
+
msgid ""
|
9965 |
+
"To restrict shipping countries, \"Shipping location(s)\" option in %s must "
|
9966 |
+
"be set to \"Ship to specific countries only\" (and you can leave \"Ship to "
|
9967 |
+
"specific countries\" option empty there)."
|
9968 |
+
msgstr ""
|
9969 |
+
|
9970 |
+
#: includes/settings/wcj-settings-checkout-customization.php:30
|
9971 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:133
|
9972 |
+
msgid "WooCommerce > Settings > General"
|
9973 |
+
msgstr ""
|
9974 |
+
|
9975 |
+
#: includes/settings/wcj-settings-checkout-customization.php:37
|
9976 |
+
msgid "Ignore on Admin"
|
9977 |
+
msgstr ""
|
9978 |
+
|
9979 |
+
#: includes/settings/wcj-settings-checkout-customization.php:39
|
9980 |
+
msgid "Ignores restriction on admin"
|
9981 |
+
msgstr ""
|
9982 |
+
|
9983 |
+
#: includes/settings/wcj-settings-checkout-customization.php:46
|
9984 |
+
msgid "Restrict By Customer's Billing Country"
|
9985 |
+
msgstr ""
|
9986 |
+
|
9987 |
+
#: includes/settings/wcj-settings-checkout-customization.php:48
|
9988 |
+
msgid ""
|
9989 |
+
"Restricts based on Customer's Billing Country, ignoring other restrictions"
|
9990 |
+
msgstr ""
|
9991 |
+
|
9992 |
+
#: includes/settings/wcj-settings-checkout-customization.php:55
|
9993 |
+
msgid "Restrict based on a YITH manual order"
|
9994 |
+
msgstr ""
|
9995 |
+
|
9996 |
+
#: includes/settings/wcj-settings-checkout-customization.php:57
|
9997 |
+
msgid ""
|
9998 |
+
"Enable if you are creating a manual order using \"YITH WooCommerce Request a "
|
9999 |
+
"Quote\" plugin and selecting the billing country manually"
|
10000 |
+
msgstr ""
|
10001 |
+
|
10002 |
+
#: includes/settings/wcj-settings-checkout-customization.php:64
|
10003 |
+
msgid "Conditions"
|
10004 |
+
msgstr ""
|
10005 |
+
|
10006 |
+
#: includes/settings/wcj-settings-checkout-customization.php:65
|
10007 |
+
msgid "The restriction will work only if some condition is true."
|
10008 |
+
msgstr ""
|
10009 |
+
|
10010 |
+
#: includes/settings/wcj-settings-checkout-customization.php:65
|
10011 |
+
msgid "Leave it empty if you want to restrict countries everywhere."
|
10012 |
+
msgstr ""
|
10013 |
+
|
10014 |
+
#: includes/settings/wcj-settings-checkout-customization.php:71
|
10015 |
+
msgid "Is Cart"
|
10016 |
+
msgstr ""
|
10017 |
+
|
10018 |
+
#: includes/settings/wcj-settings-checkout-customization.php:72
|
10019 |
+
msgid "Is Checkout"
|
10020 |
+
msgstr ""
|
10021 |
+
|
10022 |
+
#: includes/settings/wcj-settings-checkout-customization.php:80
|
10023 |
+
msgid "\"Create an account?\" Checkbox Options"
|
10024 |
+
msgstr ""
|
10025 |
+
|
10026 |
+
#: includes/settings/wcj-settings-checkout-customization.php:85
|
10027 |
+
msgid "\"Create an account?\" Checkbox"
|
10028 |
+
msgstr ""
|
10029 |
+
|
10030 |
+
#: includes/settings/wcj-settings-checkout-customization.php:86
|
10031 |
+
msgid "\"Create an account?\" checkbox default value"
|
10032 |
+
msgstr ""
|
10033 |
+
|
10034 |
+
#: includes/settings/wcj-settings-checkout-customization.php:91
|
10035 |
+
msgid "WooCommerce default"
|
10036 |
+
msgstr ""
|
10037 |
+
|
10038 |
+
#: includes/settings/wcj-settings-checkout-customization.php:93
|
10039 |
+
msgid "Not checked"
|
10040 |
+
msgstr ""
|
10041 |
+
|
10042 |
+
#: includes/settings/wcj-settings-checkout-customization.php:101
|
10043 |
+
msgid "\"Order Again\" Button Options"
|
10044 |
+
msgstr ""
|
10045 |
+
|
10046 |
+
#: includes/settings/wcj-settings-checkout-customization.php:106
|
10047 |
+
msgid "Hide \"Order Again\" Button on \"View Order\" Page"
|
10048 |
+
msgstr ""
|
10049 |
+
|
10050 |
+
#: includes/settings/wcj-settings-checkout-customization.php:117
|
10051 |
+
msgid "Disable Fields on Checkout for Logged Users"
|
10052 |
+
msgstr ""
|
10053 |
+
|
10054 |
+
#: includes/settings/wcj-settings-checkout-customization.php:122
|
10055 |
+
msgid "Fields to Disable"
|
10056 |
+
msgstr ""
|
10057 |
+
|
10058 |
+
#: includes/settings/wcj-settings-checkout-customization.php:128
|
10059 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:25
|
10060 |
+
msgid "Billing country"
|
10061 |
+
msgstr ""
|
10062 |
+
|
10063 |
+
#: includes/settings/wcj-settings-checkout-customization.php:129
|
10064 |
+
msgid "Billing first name"
|
10065 |
+
msgstr ""
|
10066 |
+
|
10067 |
+
#: includes/settings/wcj-settings-checkout-customization.php:130
|
10068 |
+
msgid "Billing last name"
|
10069 |
+
msgstr ""
|
10070 |
+
|
10071 |
+
#: includes/settings/wcj-settings-checkout-customization.php:131
|
10072 |
+
msgid "Billing company"
|
10073 |
+
msgstr ""
|
10074 |
+
|
10075 |
+
#: includes/settings/wcj-settings-checkout-customization.php:132
|
10076 |
+
msgid "Billing address 1"
|
10077 |
+
msgstr ""
|
10078 |
+
|
10079 |
+
#: includes/settings/wcj-settings-checkout-customization.php:133
|
10080 |
+
msgid "Billing address 2"
|
10081 |
+
msgstr ""
|
10082 |
+
|
10083 |
+
#: includes/settings/wcj-settings-checkout-customization.php:134
|
10084 |
+
msgid "Billing city"
|
10085 |
+
msgstr ""
|
10086 |
+
|
10087 |
+
#: includes/settings/wcj-settings-checkout-customization.php:135
|
10088 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:36
|
10089 |
+
msgid "Billing state"
|
10090 |
+
msgstr ""
|
10091 |
+
|
10092 |
+
#: includes/settings/wcj-settings-checkout-customization.php:136
|
10093 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:46
|
10094 |
+
msgid "Billing postcode"
|
10095 |
+
msgstr ""
|
10096 |
+
|
10097 |
+
#: includes/settings/wcj-settings-checkout-customization.php:137
|
10098 |
+
msgid "Billing email"
|
10099 |
+
msgstr ""
|
10100 |
+
|
10101 |
+
#: includes/settings/wcj-settings-checkout-customization.php:138
|
10102 |
+
msgid "Billing phone"
|
10103 |
+
msgstr ""
|
10104 |
+
|
10105 |
+
#: includes/settings/wcj-settings-checkout-customization.php:139
|
10106 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:26
|
10107 |
+
msgid "Shipping country"
|
10108 |
+
msgstr ""
|
10109 |
+
|
10110 |
+
#: includes/settings/wcj-settings-checkout-customization.php:140
|
10111 |
+
msgid "Shipping first name"
|
10112 |
+
msgstr ""
|
10113 |
+
|
10114 |
+
#: includes/settings/wcj-settings-checkout-customization.php:141
|
10115 |
+
msgid "Shipping last name"
|
10116 |
+
msgstr ""
|
10117 |
+
|
10118 |
+
#: includes/settings/wcj-settings-checkout-customization.php:142
|
10119 |
+
msgid "Shipping company"
|
10120 |
+
msgstr ""
|
10121 |
+
|
10122 |
+
#: includes/settings/wcj-settings-checkout-customization.php:143
|
10123 |
+
msgid "Shipping address 1"
|
10124 |
+
msgstr ""
|
10125 |
+
|
10126 |
+
#: includes/settings/wcj-settings-checkout-customization.php:144
|
10127 |
+
msgid "Shipping address 2"
|
10128 |
+
msgstr ""
|
10129 |
+
|
10130 |
+
#: includes/settings/wcj-settings-checkout-customization.php:145
|
10131 |
+
msgid "Shipping city"
|
10132 |
+
msgstr ""
|
10133 |
+
|
10134 |
+
#: includes/settings/wcj-settings-checkout-customization.php:146
|
10135 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:37
|
10136 |
+
msgid "Shipping state"
|
10137 |
+
msgstr ""
|
10138 |
+
|
10139 |
+
#: includes/settings/wcj-settings-checkout-customization.php:147
|
10140 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:47
|
10141 |
+
msgid "Shipping postcode"
|
10142 |
+
msgstr ""
|
10143 |
+
|
10144 |
+
#: includes/settings/wcj-settings-checkout-customization.php:148
|
10145 |
+
msgid "Order comments"
|
10146 |
+
msgstr ""
|
10147 |
+
|
10148 |
+
#: includes/settings/wcj-settings-checkout-customization.php:152
|
10149 |
+
msgid "Message for Logged Users"
|
10150 |
+
msgstr ""
|
10151 |
+
|
10152 |
+
#: includes/settings/wcj-settings-checkout-customization.php:160
|
10153 |
+
msgid "Advanced: Custom Fields (Readonly)"
|
10154 |
+
msgstr ""
|
10155 |
+
|
10156 |
+
#: includes/settings/wcj-settings-checkout-customization.php:162
|
10157 |
+
#: includes/settings/wcj-settings-checkout-customization.php:172
|
10158 |
+
#, php-format
|
10159 |
+
msgid "Comma separated list of fields ids, e.g.: %s."
|
10160 |
+
msgstr ""
|
10161 |
+
|
10162 |
+
#: includes/settings/wcj-settings-checkout-customization.php:170
|
10163 |
+
msgid "Advanced: Custom Fields (Disabled)"
|
10164 |
+
msgstr ""
|
10165 |
+
|
10166 |
+
#: includes/settings/wcj-settings-checkout-customization.php:184
|
10167 |
+
msgid "\"Order received\" Message Options"
|
10168 |
+
msgstr ""
|
10169 |
+
|
10170 |
+
#: includes/settings/wcj-settings-checkout-customization.php:189
|
10171 |
+
#: includes/settings/wcj-settings-checkout-customization.php:212
|
10172 |
+
msgid "Customize Message"
|
10173 |
+
msgstr ""
|
10174 |
+
|
10175 |
+
#: includes/settings/wcj-settings-checkout-customization.php:207
|
10176 |
+
msgid "\"Returning customer?\" Message Options"
|
10177 |
+
msgstr ""
|
10178 |
+
|
10179 |
+
#: includes/settings/wcj-settings-checkout-customization.php:229
|
10180 |
+
#: includes/settings/wcj-settings-checkout-customization.php:235
|
10181 |
+
msgid "Recalculate Checkout"
|
10182 |
+
msgstr ""
|
10183 |
+
|
10184 |
+
#: includes/settings/wcj-settings-checkout-customization.php:230
|
10185 |
+
msgid ""
|
10186 |
+
"Recalculate checkout right after the default calculation has been requested."
|
10187 |
+
msgstr ""
|
10188 |
+
|
10189 |
+
#: includes/settings/wcj-settings-checkout-customization.php:242
|
10190 |
+
#: includes/settings/wcj-settings-checkout-customization.php:267
|
10191 |
+
msgid "Fields"
|
10192 |
+
msgstr ""
|
10193 |
+
|
10194 |
+
#: includes/settings/wcj-settings-checkout-customization.php:243
|
10195 |
+
msgid ""
|
10196 |
+
"Required fields that need to be changed in order to recalculate checkout."
|
10197 |
+
msgstr ""
|
10198 |
+
|
10199 |
+
#: includes/settings/wcj-settings-checkout-customization.php:244
|
10200 |
+
#: includes/settings/wcj-settings-checkout-customization.php:269
|
10201 |
+
msgid "Use CSS selector syntax."
|
10202 |
+
msgstr ""
|
10203 |
+
|
10204 |
+
#: includes/settings/wcj-settings-checkout-customization.php:254
|
10205 |
+
#: includes/settings/wcj-settings-checkout-customization.php:260
|
10206 |
+
msgid "Force Checkout Update"
|
10207 |
+
msgstr ""
|
10208 |
+
|
10209 |
+
#: includes/settings/wcj-settings-checkout-customization.php:255
|
10210 |
+
msgid "Update checkout when some field have its value changed."
|
10211 |
+
msgstr ""
|
10212 |
+
|
10213 |
+
#: includes/settings/wcj-settings-checkout-customization.php:268
|
10214 |
+
msgid "Fields that need to be changed in order to update checkout."
|
10215 |
+
msgstr ""
|
10216 |
+
|
10217 |
+
#: includes/settings/wcj-settings-checkout-fees.php:14
|
10218 |
+
msgid "Fees"
|
10219 |
+
msgstr ""
|
10220 |
+
|
10221 |
+
#: includes/settings/wcj-settings-checkout-fees.php:19
|
10222 |
+
msgid "Total Fees"
|
10223 |
+
msgstr ""
|
10224 |
+
|
10225 |
+
#: includes/settings/wcj-settings-checkout-fees.php:53
|
10226 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:82
|
10227 |
+
msgid "Taxable"
|
10228 |
+
msgstr ""
|
10229 |
+
|
10230 |
+
#: includes/settings/wcj-settings-checkout-fees.php:83
|
10231 |
+
msgid "Cart Minimum Quantity"
|
10232 |
+
msgstr ""
|
10233 |
+
|
10234 |
+
#: includes/settings/wcj-settings-checkout-fees.php:84
|
10235 |
+
msgid "Minimum amount of items in cart."
|
10236 |
+
msgstr ""
|
10237 |
+
|
10238 |
+
#: includes/settings/wcj-settings-checkout-fees.php:91
|
10239 |
+
msgid "Cart Maximum Quantity"
|
10240 |
+
msgstr ""
|
10241 |
+
|
10242 |
+
#: includes/settings/wcj-settings-checkout-fees.php:92
|
10243 |
+
msgid "Maximum amount of items in cart."
|
10244 |
+
msgstr ""
|
10245 |
+
|
10246 |
+
#: includes/settings/wcj-settings-checkout-fees.php:92
|
10247 |
+
msgid "Zero or empty values will not be considered"
|
10248 |
+
msgstr ""
|
10249 |
+
|
10250 |
+
#: includes/settings/wcj-settings-checkout-fees.php:98
|
10251 |
+
msgid "Cart Minimum Total"
|
10252 |
+
msgstr ""
|
10253 |
+
|
10254 |
+
#: includes/settings/wcj-settings-checkout-fees.php:99
|
10255 |
+
msgid "Minimum total amount in cart."
|
10256 |
+
msgstr ""
|
10257 |
+
|
10258 |
+
#: includes/settings/wcj-settings-checkout-fees.php:107
|
10259 |
+
msgid "Cart Maximum Total"
|
10260 |
+
msgstr ""
|
10261 |
+
|
10262 |
+
#: includes/settings/wcj-settings-checkout-fees.php:108
|
10263 |
+
msgid "Maximum total amount in cart."
|
10264 |
+
msgstr ""
|
10265 |
+
|
10266 |
+
#: includes/settings/wcj-settings-checkout-fees.php:115
|
10267 |
+
msgid "Checkout Field"
|
10268 |
+
msgstr ""
|
10269 |
+
|
10270 |
+
#: includes/settings/wcj-settings-checkout-fees.php:116
|
10271 |
+
#, php-format
|
10272 |
+
msgid ""
|
10273 |
+
"If you want fee to be added only if some checkout field is enabled, enter "
|
10274 |
+
"field's key here. For example, if you have added one custom billing checkout "
|
10275 |
+
"field with Booster's \"Checkout Custom Fields\" module, enter %s here."
|
10276 |
+
msgstr ""
|
10277 |
+
|
10278 |
+
#: includes/settings/wcj-settings-checkout-fees.php:117
|
10279 |
+
msgid "Ignored if empty (i.e. fee will be always added)."
|
10280 |
+
msgstr ""
|
10281 |
+
|
10282 |
+
#: includes/settings/wcj-settings-checkout-fees.php:123
|
10283 |
+
msgid "Overlap"
|
10284 |
+
msgstr ""
|
10285 |
+
|
10286 |
+
#: includes/settings/wcj-settings-checkout-fees.php:124
|
10287 |
+
msgid "If valid, will overlap other fee"
|
10288 |
+
msgstr ""
|
10289 |
+
|
10290 |
+
#: includes/settings/wcj-settings-checkout-fees.php:134
|
10291 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:297
|
10292 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:333
|
10293 |
+
msgid "Priority"
|
10294 |
+
msgstr ""
|
10295 |
+
|
10296 |
+
#: includes/settings/wcj-settings-checkout-fees.php:135
|
10297 |
+
msgid "The higher the number the higher the priority."
|
10298 |
+
msgstr ""
|
10299 |
+
|
10300 |
+
#: includes/settings/wcj-settings-checkout-fees.php:135
|
10301 |
+
msgid "Will mostly make sense for overlapping."
|
10302 |
+
msgstr ""
|
10303 |
+
|
10304 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:23
|
10305 |
+
#: includes/settings/wcj-settings-products-xml.php:25
|
10306 |
+
msgid "Total Files"
|
10307 |
+
msgstr ""
|
10308 |
+
|
10309 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:58
|
10310 |
+
msgid "Do not add on checkout"
|
10311 |
+
msgstr ""
|
10312 |
+
|
10313 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:62
|
10314 |
+
msgid "Position order"
|
10315 |
+
msgstr ""
|
10316 |
+
|
10317 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:70
|
10318 |
+
msgid "Add to Thank You page"
|
10319 |
+
msgstr ""
|
10320 |
+
|
10321 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:76
|
10322 |
+
msgid "Add to My Account page"
|
10323 |
+
msgstr ""
|
10324 |
+
|
10325 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:82
|
10326 |
+
msgid "Leave blank to disable label"
|
10327 |
+
msgstr ""
|
10328 |
+
|
10329 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:84
|
10330 |
+
msgid "Please select file to upload"
|
10331 |
+
msgstr ""
|
10332 |
+
|
10333 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:88
|
10334 |
+
msgid "Accepted file types"
|
10335 |
+
msgstr ""
|
10336 |
+
|
10337 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:89
|
10338 |
+
msgid ""
|
10339 |
+
"Accepted file types. E.g.: \".jpg,.jpeg,.png\". Leave blank to accept all "
|
10340 |
+
"files"
|
10341 |
+
msgstr ""
|
10342 |
+
|
10343 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:95
|
10344 |
+
msgid "Label: Upload button"
|
10345 |
+
msgstr ""
|
10346 |
+
|
10347 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:101
|
10348 |
+
msgid "Label: Remove button"
|
10349 |
+
msgstr ""
|
10350 |
+
|
10351 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:107
|
10352 |
+
msgid "Notice: Wrong file type"
|
10353 |
+
msgstr ""
|
10354 |
+
|
10355 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:108
|
10356 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:121
|
10357 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:134
|
10358 |
+
#, php-format
|
10359 |
+
msgid "%s will be replaced with file name"
|
10360 |
+
msgstr ""
|
10361 |
+
|
10362 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:114
|
10363 |
+
msgid "Notice: File is required"
|
10364 |
+
msgstr ""
|
10365 |
+
|
10366 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:120
|
10367 |
+
msgid "Notice: File was successfully uploaded"
|
10368 |
+
msgstr ""
|
10369 |
+
|
10370 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:127
|
10371 |
+
msgid "Notice: No file selected"
|
10372 |
+
msgstr ""
|
10373 |
+
|
10374 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:133
|
10375 |
+
msgid "Notice: File was successfully removed"
|
10376 |
+
msgstr ""
|
10377 |
+
|
10378 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:140
|
10379 |
+
msgid "PRODUCTS to show this field"
|
10380 |
+
msgstr ""
|
10381 |
+
|
10382 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:141
|
10383 |
+
msgid ""
|
10384 |
+
"To show this field only if at least one selected product is in cart, enter "
|
10385 |
+
"products here. Leave blank to show for all products."
|
10386 |
+
msgstr ""
|
10387 |
+
|
10388 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:149
|
10389 |
+
msgid "CATEGORIES to show this field"
|
10390 |
+
msgstr ""
|
10391 |
+
|
10392 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:150
|
10393 |
+
msgid ""
|
10394 |
+
"To show this field only if at least one product of selected category is in "
|
10395 |
+
"cart, enter categories here. Leave blank to show for all products."
|
10396 |
+
msgstr ""
|
10397 |
+
|
10398 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:158
|
10399 |
+
msgid "TAGS to show this field"
|
10400 |
+
msgstr ""
|
10401 |
+
|
10402 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:159
|
10403 |
+
msgid ""
|
10404 |
+
"To show this field only if at least one product of selected tag is in cart, "
|
10405 |
+
"enter tags here. Leave blank to show for all products."
|
10406 |
+
msgstr ""
|
10407 |
+
|
10408 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:167
|
10409 |
+
msgid "USER ROLES to show this field"
|
10410 |
+
msgstr ""
|
10411 |
+
|
10412 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:168
|
10413 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:204
|
10414 |
+
msgid "Leave blank to show for all user roles."
|
10415 |
+
msgstr ""
|
10416 |
+
|
10417 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:176
|
10418 |
+
msgid "PRODUCTS to hide this field"
|
10419 |
+
msgstr ""
|
10420 |
+
|
10421 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:177
|
10422 |
+
msgid ""
|
10423 |
+
"To hide this field if at least one selected product is in cart, enter "
|
10424 |
+
"products here. Leave blank to show for all products."
|
10425 |
+
msgstr ""
|
10426 |
+
|
10427 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:185
|
10428 |
+
msgid "CATEGORIES to hide this field"
|
10429 |
+
msgstr ""
|
10430 |
+
|
10431 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:186
|
10432 |
+
msgid ""
|
10433 |
+
"To hide this field if at least one product of selected category is in cart, "
|
10434 |
+
"enter categories here. Leave blank to show for all products."
|
10435 |
+
msgstr ""
|
10436 |
+
|
10437 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:194
|
10438 |
+
msgid "TAGS to hide this field"
|
10439 |
+
msgstr ""
|
10440 |
+
|
10441 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:195
|
10442 |
+
msgid ""
|
10443 |
+
"To hide this field if at least one product of selected tag is in cart, enter "
|
10444 |
+
"tags here. Leave blank to show for all products."
|
10445 |
+
msgstr ""
|
10446 |
+
|
10447 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:203
|
10448 |
+
msgid "USER ROLES to hide this field"
|
10449 |
+
msgstr ""
|
10450 |
+
|
10451 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:226
|
10452 |
+
msgid "Remove All Uploaded Files on Empty Cart"
|
10453 |
+
msgstr ""
|
10454 |
+
|
10455 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:233
|
10456 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:431
|
10457 |
+
#: includes/settings/wcj-settings-order-min-amount.php:76
|
10458 |
+
msgid "Add notice"
|
10459 |
+
msgstr ""
|
10460 |
+
|
10461 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:250
|
10462 |
+
#: includes/settings/wcj-settings-product-input-fields.php:295
|
10463 |
+
msgid "Emails Options"
|
10464 |
+
msgstr ""
|
10465 |
+
|
10466 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:255
|
10467 |
+
#: includes/settings/wcj-settings-product-input-fields.php:300
|
10468 |
+
msgid "Attach Files to Admin's New Order Emails"
|
10469 |
+
msgstr ""
|
10470 |
+
|
10471 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:256
|
10472 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:263
|
10473 |
+
#: includes/settings/wcj-settings-product-input-fields.php:301
|
10474 |
+
#: includes/settings/wcj-settings-product-input-fields.php:308
|
10475 |
+
msgid "Attach"
|
10476 |
+
msgstr ""
|
10477 |
+
|
10478 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:262
|
10479 |
+
#: includes/settings/wcj-settings-product-input-fields.php:307
|
10480 |
+
msgid "Attach Files to Customer's Processing Order Emails"
|
10481 |
+
msgstr ""
|
10482 |
+
|
10483 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:269
|
10484 |
+
msgid "Send Additional Email to Admin on User Actions"
|
10485 |
+
msgstr ""
|
10486 |
+
|
10487 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:270
|
10488 |
+
#, php-format
|
10489 |
+
msgid "Admin email: <em>%s</em>."
|
10490 |
+
msgstr ""
|
10491 |
+
|
10492 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:276
|
10493 |
+
msgid "File removed on \"Thank You\" or \"My Account\" page"
|
10494 |
+
msgstr ""
|
10495 |
+
|
10496 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:277
|
10497 |
+
msgid "File uploaded on \"Thank You\" or \"My Account\" page"
|
10498 |
+
msgstr ""
|
10499 |
+
|
10500 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:281
|
10501 |
+
msgid "Attach file on upload action"
|
10502 |
+
msgstr ""
|
10503 |
+
|
10504 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:293
|
10505 |
+
msgid "Form Template Options"
|
10506 |
+
msgstr ""
|
10507 |
+
|
10508 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:298
|
10509 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:352
|
10510 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:393
|
10511 |
+
#: includes/settings/wcj-settings-product-addons.php:346
|
10512 |
+
#: includes/settings/wcj-settings-product-addons.php:377
|
10513 |
+
msgid "Before"
|
10514 |
+
msgstr ""
|
10515 |
+
|
10516 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:306
|
10517 |
+
msgid "Replaced values: %field_id%, %field_label%, %required_html%."
|
10518 |
+
msgstr ""
|
10519 |
+
|
10520 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:313
|
10521 |
+
#: includes/settings/wcj-settings-export.php:68
|
10522 |
+
#: includes/settings/wcj-settings-export.php:136
|
10523 |
+
#: includes/settings/wcj-settings-export.php:218
|
10524 |
+
msgid "Field"
|
10525 |
+
msgstr ""
|
10526 |
+
|
10527 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:314
|
10528 |
+
msgid "Replaced values: %field_html%, %button_html%."
|
10529 |
+
msgstr ""
|
10530 |
+
|
10531 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:321
|
10532 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:367
|
10533 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:408
|
10534 |
+
#: includes/settings/wcj-settings-product-addons.php:361
|
10535 |
+
#: includes/settings/wcj-settings-product-addons.php:392
|
10536 |
+
msgid "After"
|
10537 |
+
msgstr ""
|
10538 |
+
|
10539 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:328
|
10540 |
+
msgid "Show images in field"
|
10541 |
+
msgstr ""
|
10542 |
+
|
10543 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:335
|
10544 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:374
|
10545 |
+
msgid "Image style"
|
10546 |
+
msgstr ""
|
10547 |
+
|
10548 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:347
|
10549 |
+
msgid "Order Template Options"
|
10550 |
+
msgstr ""
|
10551 |
+
|
10552 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:359
|
10553 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:376
|
10554 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:400
|
10555 |
+
msgid "Item"
|
10556 |
+
msgstr ""
|
10557 |
+
|
10558 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:375
|
10559 |
+
#, php-format
|
10560 |
+
msgid "Ignored, if %s is not included in %s option above."
|
10561 |
+
msgstr ""
|
10562 |
+
|
10563 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:388
|
10564 |
+
msgid "Email Template Options"
|
10565 |
+
msgstr ""
|
10566 |
+
|
10567 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:421
|
10568 |
+
#: includes/settings/wcj-settings-currency-per-product.php:251
|
10569 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:227
|
10570 |
+
#: includes/settings/wcj-settings-general.php:65
|
10571 |
+
#: includes/settings/wcj-settings-payment-gateways.php:49
|
10572 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:43
|
10573 |
+
#: includes/settings/wcj-settings-product-by-date.php:117
|
10574 |
+
#: includes/settings/wcj-settings-product-custom-info.php:185
|
10575 |
+
#: includes/settings/wcj-settings-product-input-fields.php:348
|
10576 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:108
|
10577 |
+
msgid "Advanced Options"
|
10578 |
+
msgstr ""
|
10579 |
+
|
10580 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:426
|
10581 |
+
msgid "Notice Type"
|
10582 |
+
msgstr ""
|
10583 |
+
|
10584 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:432
|
10585 |
+
#: includes/settings/wcj-settings-order-min-amount.php:75
|
10586 |
+
msgid "Print notice"
|
10587 |
+
msgstr ""
|
10588 |
+
|
10589 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:433
|
10590 |
+
msgid "Disable notice"
|
10591 |
+
msgstr ""
|
10592 |
+
|
10593 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:437
|
10594 |
+
msgid "Block Potentially Harmful Files"
|
10595 |
+
msgstr ""
|
10596 |
+
|
10597 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:444
|
10598 |
+
msgid "Potentially Harmful File Extensions"
|
10599 |
+
msgstr ""
|
10600 |
+
|
10601 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:445
|
10602 |
+
#, php-format
|
10603 |
+
msgid "List of file extensions separated by vertical bar %s."
|
10604 |
+
msgstr ""
|
10605 |
+
|
10606 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:14
|
10607 |
+
msgid "All Coupons"
|
10608 |
+
msgstr ""
|
10609 |
+
|
10610 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:19
|
10611 |
+
msgid "Disable All Coupons for Selected User Roles"
|
10612 |
+
msgstr ""
|
10613 |
+
|
10614 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:20
|
10615 |
+
msgid ""
|
10616 |
+
"This will disable all coupons for selected user roles. Coupons will be "
|
10617 |
+
"disabled completely, including coupon code input on the cart page."
|
10618 |
+
msgstr ""
|
10619 |
+
|
10620 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:28
|
10621 |
+
msgid "Invalidate All Coupons for Selected User Roles"
|
10622 |
+
msgstr ""
|
10623 |
+
|
10624 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:29
|
10625 |
+
msgid ""
|
10626 |
+
"This will invalidate all coupons for selected user roles. Coupon code input "
|
10627 |
+
"will still be available on the cart page."
|
10628 |
+
msgstr ""
|
10629 |
+
|
10630 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:41
|
10631 |
+
msgid "Per Coupon"
|
10632 |
+
msgstr ""
|
10633 |
+
|
10634 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:46
|
10635 |
+
msgid "Invalidate per Coupon"
|
10636 |
+
msgstr ""
|
10637 |
+
|
10638 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:48
|
10639 |
+
msgid ""
|
10640 |
+
"This will add \"Booster: Coupon by User Role\" meta box to each coupon's "
|
10641 |
+
"admin edit page."
|
10642 |
+
msgstr ""
|
10643 |
+
|
10644 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:65
|
10645 |
+
msgid "\"Coupon is not valid\" Message"
|
10646 |
+
msgstr ""
|
10647 |
+
|
10648 |
+
#: includes/settings/wcj-settings-coupon-by-user-role.php:66
|
10649 |
+
msgid "Message that will be displayed for invalid coupons by user role."
|
10650 |
+
msgstr ""
|
10651 |
+
|
10652 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:15
|
10653 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:16
|
10654 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:17
|
10655 |
+
msgid "Hash"
|
10656 |
+
msgstr ""
|
10657 |
+
|
10658 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:15
|
10659 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:16
|
10660 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:17
|
10661 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:18
|
10662 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:19
|
10663 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:20
|
10664 |
+
#, php-format
|
10665 |
+
msgid "length %d"
|
10666 |
+
msgstr ""
|
10667 |
+
|
10668 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:18
|
10669 |
+
msgid "Random letters and numbers"
|
10670 |
+
msgstr ""
|
10671 |
+
|
10672 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:19
|
10673 |
+
msgid "Random letters"
|
10674 |
+
msgstr ""
|
10675 |
+
|
10676 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:20
|
10677 |
+
msgid "Random numbers"
|
10678 |
+
msgstr ""
|
10679 |
+
|
10680 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:30
|
10681 |
+
msgid "Generate Coupon Code Automatically"
|
10682 |
+
msgstr ""
|
10683 |
+
|
10684 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:31
|
10685 |
+
msgid ""
|
10686 |
+
"When enabled, this will generate coupon code automatically when adding new "
|
10687 |
+
"coupon."
|
10688 |
+
msgstr ""
|
10689 |
+
|
10690 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:38
|
10691 |
+
msgid "Algorithm"
|
10692 |
+
msgstr ""
|
10693 |
+
|
10694 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:43
|
10695 |
+
#, php-format
|
10696 |
+
msgid "Algorithms: %s."
|
10697 |
+
msgstr ""
|
10698 |
+
|
10699 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:49
|
10700 |
+
msgid ""
|
10701 |
+
"Length value will be ignored if set above the maximum length for selected "
|
10702 |
+
"algorithm. Set to zero to use full length for selected algorithm."
|
10703 |
+
msgstr ""
|
10704 |
+
|
10705 |
+
#: includes/settings/wcj-settings-cross-sells.php:19
|
10706 |
+
msgid "Cross-sells Total"
|
10707 |
+
msgstr ""
|
10708 |
+
|
10709 |
+
#: includes/settings/wcj-settings-cross-sells.php:20
|
10710 |
+
#: includes/settings/wcj-settings-cross-sells.php:28
|
10711 |
+
#: includes/settings/wcj-settings-upsells.php:20
|
10712 |
+
#: includes/settings/wcj-settings-upsells.php:28
|
10713 |
+
msgid "Set to zero for WooCommerce default."
|
10714 |
+
msgstr ""
|
10715 |
+
|
10716 |
+
#: includes/settings/wcj-settings-cross-sells.php:20
|
10717 |
+
#: includes/settings/wcj-settings-upsells.php:20
|
10718 |
+
msgid "Set to -1 for unlimited."
|
10719 |
+
msgstr ""
|
10720 |
+
|
10721 |
+
#: includes/settings/wcj-settings-cross-sells.php:27
|
10722 |
+
msgid "Cross-sells Columns"
|
10723 |
+
msgstr ""
|
10724 |
+
|
10725 |
+
#: includes/settings/wcj-settings-cross-sells.php:35
|
10726 |
+
msgid "Cross-sells Order By"
|
10727 |
+
msgstr ""
|
10728 |
+
|
10729 |
+
#: includes/settings/wcj-settings-cross-sells.php:40
|
10730 |
+
#: includes/settings/wcj-settings-cross-sells.php:58
|
10731 |
+
#: includes/settings/wcj-settings-upsells.php:40
|
10732 |
+
msgid "No changes (default behaviour)"
|
10733 |
+
msgstr ""
|
10734 |
+
|
10735 |
+
#: includes/settings/wcj-settings-cross-sells.php:41
|
10736 |
+
#: includes/settings/wcj-settings-order-numbers.php:153
|
10737 |
+
#: includes/settings/wcj-settings-related-products.php:22
|
10738 |
+
#: includes/settings/wcj-settings-upsells.php:41
|
10739 |
+
msgid "Random"
|
10740 |
+
msgstr ""
|
10741 |
+
|
10742 |
+
#: includes/settings/wcj-settings-cross-sells.php:45
|
10743 |
+
#: includes/settings/wcj-settings-products-xml.php:225
|
10744 |
+
#: includes/settings/wcj-settings-related-products.php:31
|
10745 |
+
#: includes/settings/wcj-settings-upsells.php:45
|
10746 |
+
msgid "Modified"
|
10747 |
+
msgstr ""
|
10748 |
+
|
10749 |
+
#: includes/settings/wcj-settings-cross-sells.php:46
|
10750 |
+
#: includes/settings/wcj-settings-my-account.php:95
|
10751 |
+
#: includes/settings/wcj-settings-related-products.php:32
|
10752 |
+
#: includes/settings/wcj-settings-upsells.php:46
|
10753 |
+
msgid "Menu order"
|
10754 |
+
msgstr ""
|
10755 |
+
|
10756 |
+
#: includes/settings/wcj-settings-cross-sells.php:53
|
10757 |
+
msgid "Cross-sells Order"
|
10758 |
+
msgstr ""
|
10759 |
+
|
10760 |
+
#: includes/settings/wcj-settings-cross-sells.php:59
|
10761 |
+
#: includes/settings/wcj-settings-order-numbers.php:163
|
10762 |
+
#: includes/settings/wcj-settings-products-xml.php:235
|
10763 |
+
#: includes/settings/wcj-settings-related-products.php:91
|
10764 |
+
msgid "Descending"
|
10765 |
+
msgstr ""
|
10766 |
+
|
10767 |
+
#: includes/settings/wcj-settings-cross-sells.php:60
|
10768 |
+
#: includes/settings/wcj-settings-order-numbers.php:162
|
10769 |
+
#: includes/settings/wcj-settings-products-xml.php:236
|
10770 |
+
#: includes/settings/wcj-settings-related-products.php:90
|
10771 |
+
msgid "Ascending"
|
10772 |
+
msgstr ""
|
10773 |
+
|
10774 |
+
#: includes/settings/wcj-settings-cross-sells.php:66
|
10775 |
+
msgid "Cross-sells Position"
|
10776 |
+
msgstr ""
|
10777 |
+
|
10778 |
+
#: includes/settings/wcj-settings-cross-sells.php:67
|
10779 |
+
msgid "Cross-sells position in cart."
|
10780 |
+
msgstr ""
|
10781 |
+
|
10782 |
+
#: includes/settings/wcj-settings-cross-sells.php:72
|
10783 |
+
#: includes/settings/wcj-settings-upsells.php:57
|
10784 |
+
msgid "No changes (default)"
|
10785 |
+
msgstr ""
|
10786 |
+
|
10787 |
+
#: includes/settings/wcj-settings-cross-sells.php:79
|
10788 |
+
#: includes/settings/wcj-settings-product-input-fields.php:200
|
10789 |
+
#: includes/settings/wcj-settings-upsells.php:66
|
10790 |
+
msgid "Position priority"
|
10791 |
+
msgstr ""
|
10792 |
+
|
10793 |
+
#: includes/settings/wcj-settings-cross-sells.php:80
|
10794 |
+
msgid ""
|
10795 |
+
"Ignored if \"Cross-sells Position\" option above is set to \"No changes "
|
10796 |
+
"(default)\"."
|
10797 |
+
msgstr ""
|
10798 |
+
|
10799 |
+
#: includes/settings/wcj-settings-cross-sells.php:86
|
10800 |
+
msgid "Hide Cross-sells"
|
10801 |
+
msgstr ""
|
10802 |
+
|
10803 |
+
#: includes/settings/wcj-settings-cross-sells.php:96
|
10804 |
+
msgid "Global Cross-sells"
|
10805 |
+
msgstr ""
|
10806 |
+
|
10807 |
+
#: includes/settings/wcj-settings-cross-sells.php:98
|
10808 |
+
msgid ""
|
10809 |
+
"Enable this section, if you want to add same cross-sells to all products."
|
10810 |
+
msgstr ""
|
10811 |
+
|
10812 |
+
#: includes/settings/wcj-settings-cross-sells.php:106
|
10813 |
+
msgid "Global cross-sells"
|
10814 |
+
msgstr ""
|
10815 |
+
|
10816 |
+
#: includes/settings/wcj-settings-cross-sells.php:114
|
10817 |
+
msgid "Exclude \"Not in Stock\" Products"
|
10818 |
+
msgstr ""
|
10819 |
+
|
10820 |
+
#: includes/settings/wcj-settings-cross-sells.php:116
|
10821 |
+
msgid ""
|
10822 |
+
"Enable this, if you want to exclude \"not in stock\" products from cross-"
|
10823 |
+
"sells."
|
10824 |
+
msgstr ""
|
10825 |
+
|
10826 |
+
#: includes/settings/wcj-settings-cross-sells.php:124
|
10827 |
+
msgid "Replace Cart Products with Cross-sells"
|
10828 |
+
msgstr ""
|
10829 |
+
|
10830 |
+
#: includes/settings/wcj-settings-cross-sells.php:126
|
10831 |
+
msgid ""
|
10832 |
+
"Enable this, if you want original products to be removed from cart and "
|
10833 |
+
"replaced with cross-sells, if customer adds cross-sells on cart page."
|
10834 |
+
msgstr ""
|
10835 |
+
|
10836 |
+
#: includes/settings/wcj-settings-cross-sells.php:127
|
10837 |
+
#, php-format
|
10838 |
+
msgid ""
|
10839 |
+
"Please note that this option will work only if \"%s\" option is disabled in "
|
10840 |
+
"%s."
|
10841 |
+
msgstr ""
|
10842 |
+
|
10843 |
+
#: includes/settings/wcj-settings-cross-sells.php:128
|
10844 |
+
msgid "Enable AJAX add to cart buttons on archives"
|
10845 |
+
msgstr ""
|
10846 |
+
|
10847 |
+
#: includes/settings/wcj-settings-cross-sells.php:129
|
10848 |
+
msgid ""
|
10849 |
+
"WooCommerce > Settings > Products > General > Shop pages > Add to cart "
|
10850 |
+
"behaviour"
|
10851 |
+
msgstr ""
|
10852 |
+
|
10853 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:18
|
10854 |
+
#, php-format
|
10855 |
+
msgid "%s till next update."
|
10856 |
+
msgstr ""
|
10857 |
+
|
10858 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:20
|
10859 |
+
#, php-format
|
10860 |
+
msgid "%s seconds till next update."
|
10861 |
+
msgstr ""
|
10862 |
+
|
10863 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:31
|
10864 |
+
#: includes/settings/wcj-settings-currency-per-product.php:119
|
10865 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:22
|
10866 |
+
#: includes/settings/wcj-settings-multicurrency.php:22
|
10867 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:68
|
10868 |
+
#: includes/settings/wcj-settings-price-by-country.php:302
|
10869 |
+
msgid "Exchange Rates Updates"
|
10870 |
+
msgstr ""
|
10871 |
+
|
10872 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:43
|
10873 |
+
msgid "Update all rates now"
|
10874 |
+
msgstr ""
|
10875 |
+
|
10876 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:53
|
10877 |
+
msgid "Exchange Rates Rounding"
|
10878 |
+
msgstr ""
|
10879 |
+
|
10880 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:60
|
10881 |
+
msgid "i.e. rounding precision"
|
10882 |
+
msgstr ""
|
10883 |
+
|
10884 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:61
|
10885 |
+
msgid "Rounding precision sets number of decimal digits to round to."
|
10886 |
+
msgstr ""
|
10887 |
+
|
10888 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:68
|
10889 |
+
msgid "Exchange Rates Offset - Percent"
|
10890 |
+
msgstr ""
|
10891 |
+
|
10892 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:69
|
10893 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:77
|
10894 |
+
msgid ""
|
10895 |
+
"If both percent and fixed offsets are set - percent offset is applied first "
|
10896 |
+
"and fixed offset after that."
|
10897 |
+
msgstr ""
|
10898 |
+
|
10899 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:76
|
10900 |
+
msgid "Exchange Rates Offset - Fixed"
|
10901 |
+
msgstr ""
|
10902 |
+
|
10903 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:84
|
10904 |
+
msgid "Calculate with Inversion"
|
10905 |
+
msgstr ""
|
10906 |
+
|
10907 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:86
|
10908 |
+
msgid ""
|
10909 |
+
"If your currency pair have very small exchange rate, you may want to invert "
|
10910 |
+
"currencies before calculating the rate."
|
10911 |
+
msgstr ""
|
10912 |
+
|
10913 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:92
|
10914 |
+
msgid "Always Use cURL"
|
10915 |
+
msgstr ""
|
10916 |
+
|
10917 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:94
|
10918 |
+
msgid ""
|
10919 |
+
"If for some reason currency exchange rates are not updating, try enabling "
|
10920 |
+
"this option."
|
10921 |
+
msgstr ""
|
10922 |
+
|
10923 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:113
|
10924 |
+
msgid "API Keys"
|
10925 |
+
msgstr ""
|
10926 |
+
|
10927 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:114
|
10928 |
+
msgid "API keys provided by the Exchange Rates Servers"
|
10929 |
+
msgstr ""
|
10930 |
+
|
10931 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:119
|
10932 |
+
msgid "Free Currency Converter API"
|
10933 |
+
msgstr ""
|
10934 |
+
|
10935 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:120
|
10936 |
+
#, php-format
|
10937 |
+
msgid "More information at %s"
|
10938 |
+
msgstr ""
|
10939 |
+
|
10940 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:129
|
10941 |
+
msgid "Custom Currencies Options"
|
10942 |
+
msgstr ""
|
10943 |
+
|
10944 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:131
|
10945 |
+
#, php-format
|
10946 |
+
msgid ""
|
10947 |
+
"You can add more currencies in this section. E.g. this can be used to "
|
10948 |
+
"display exchange rates with %s shortcodes."
|
10949 |
+
msgstr ""
|
10950 |
+
|
10951 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:142
|
10952 |
+
#: includes/settings/wcj-settings-currency.php:61
|
10953 |
+
msgid "Total Custom Currencies"
|
10954 |
+
msgstr ""
|
10955 |
+
|
10956 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:154
|
10957 |
+
#: includes/settings/wcj-settings-currency.php:73
|
10958 |
+
msgid "Custom Currency"
|
10959 |
+
msgstr ""
|
10960 |
+
|
10961 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:173
|
10962 |
+
#: includes/settings/wcj-settings-price-by-country.php:297
|
10963 |
+
msgid "Exchange Rates"
|
10964 |
+
msgstr ""
|
10965 |
+
|
10966 |
+
#: includes/settings/wcj-settings-currency-exchange-rates.php:175
|
10967 |
+
msgid ""
|
10968 |
+
"All currencies from all <strong>enabled</strong> modules (with \"Exchange "
|
10969 |
+
"Rates Updates\" set to \"Automatically via Currency Exchange Rates module\") "
|
10970 |
+
"will be automatically added to the list."
|
10971 |
+
msgstr ""
|
10972 |
+
|
10973 |
+
#: includes/settings/wcj-settings-currency-external-products.php:14
|
10974 |
+
msgid "Currency for External Products Options"
|
10975 |
+
msgstr ""
|
10976 |
+
|
10977 |
+
#: includes/settings/wcj-settings-currency-external-products.php:20
|
10978 |
+
#: includes/settings/wcj-settings-currency-per-product.php:180
|
10979 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:131
|
10980 |
+
#: includes/settings/wcj-settings-multicurrency.php:234
|
10981 |
+
#: includes/settings/wcj-settings-price-by-country.php:277
|
10982 |
+
#: includes/settings/wcj-settings-price-formats.php:59
|
10983 |
+
msgid "Currency"
|
10984 |
+
msgstr ""
|
10985 |
+
|
10986 |
+
#: includes/settings/wcj-settings-currency-external-products.php:21
|
10987 |
+
msgid "Set currency for all external products."
|
10988 |
+
msgstr ""
|
10989 |
+
|
10990 |
+
#: includes/settings/wcj-settings-currency-per-product.php:23
|
10991 |
+
msgid "Cart and Checkout Behaviour Options"
|
10992 |
+
msgstr ""
|
10993 |
+
|
10994 |
+
#: includes/settings/wcj-settings-currency-per-product.php:28
|
10995 |
+
msgid "Cart and Checkout Behaviour"
|
10996 |
+
msgstr ""
|
10997 |
+
|
10998 |
+
#: includes/settings/wcj-settings-currency-per-product.php:33
|
10999 |
+
msgid "Convert to shop default currency"
|
11000 |
+
msgstr ""
|
11001 |
+
|
11002 |
+
#: includes/settings/wcj-settings-currency-per-product.php:34
|
11003 |
+
#: includes/settings/wcj-settings-currency-per-product.php:41
|
11004 |
+
msgid "Leave product currency (allow only one product to be added to cart)"
|
11005 |
+
msgstr ""
|
11006 |
+
|
11007 |
+
#: includes/settings/wcj-settings-currency-per-product.php:35
|
11008 |
+
#: includes/settings/wcj-settings-currency-per-product.php:48
|
11009 |
+
msgid ""
|
11010 |
+
"Leave product currency (allow only same currency products to be added to "
|
11011 |
+
"cart)"
|
11012 |
+
msgstr ""
|
11013 |
+
|
11014 |
+
#: includes/settings/wcj-settings-currency-per-product.php:36
|
11015 |
+
msgid "Convert to currency of last product in cart"
|
11016 |
+
msgstr ""
|
11017 |
+
|
11018 |
+
#: includes/settings/wcj-settings-currency-per-product.php:37
|
11019 |
+
msgid "Convert to currency of first product in cart"
|
11020 |
+
msgstr ""
|
11021 |
+
|
11022 |
+
#: includes/settings/wcj-settings-currency-per-product.php:76
|
11023 |
+
msgid "Additional Options"
|
11024 |
+
msgstr ""
|
11025 |
+
|
11026 |
+
#: includes/settings/wcj-settings-currency-per-product.php:77
|
11027 |
+
msgid ""
|
11028 |
+
"Save module's settings after changing this options to see new settings "
|
11029 |
+
"fields."
|
11030 |
+
msgstr ""
|
11031 |
+
|
11032 |
+
#: includes/settings/wcj-settings-currency-per-product.php:82
|
11033 |
+
msgid "Currency per Product Authors"
|
11034 |
+
msgstr ""
|
11035 |
+
|
11036 |
+
#: includes/settings/wcj-settings-currency-per-product.php:89
|
11037 |
+
msgid "Currency per Product Authors User Roles"
|
11038 |
+
msgstr ""
|
11039 |
+
|
11040 |
+
#: includes/settings/wcj-settings-currency-per-product.php:96
|
11041 |
+
msgid "Currency per Product Categories"
|
11042 |
+
msgstr ""
|
11043 |
+
|
11044 |
+
#: includes/settings/wcj-settings-currency-per-product.php:103
|
11045 |
+
msgid "Currency per Product Tags"
|
11046 |
+
msgstr ""
|
11047 |
+
|
11048 |
+
#: includes/settings/wcj-settings-currency-per-product.php:114
|
11049 |
+
msgid "Exchange Rates Updates Options"
|
11050 |
+
msgstr ""
|
11051 |
+
|
11052 |
+
#: includes/settings/wcj-settings-currency-per-product.php:124
|
11053 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:27
|
11054 |
+
#: includes/settings/wcj-settings-multicurrency.php:28
|
11055 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:73
|
11056 |
+
#: includes/settings/wcj-settings-price-by-country.php:307
|
11057 |
+
msgid "Enter Rates Manually"
|
11058 |
+
msgstr ""
|
11059 |
+
|
11060 |
+
#: includes/settings/wcj-settings-currency-per-product.php:125
|
11061 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:28
|
11062 |
+
#: includes/settings/wcj-settings-multicurrency.php:29
|
11063 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:74
|
11064 |
+
#: includes/settings/wcj-settings-price-by-country.php:308
|
11065 |
+
msgid "Automatically via Currency Exchange Rates module"
|
11066 |
+
msgstr ""
|
11067 |
+
|
11068 |
+
#: includes/settings/wcj-settings-currency-per-product.php:128
|
11069 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
11070 |
+
#: includes/settings/wcj-settings-multicurrency.php:32
|
11071 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:77
|
11072 |
+
#: includes/settings/wcj-settings-price-by-country.php:311
|
11073 |
+
msgid "Visit"
|
11074 |
+
msgstr ""
|
11075 |
+
|
11076 |
+
#: includes/settings/wcj-settings-currency-per-product.php:128
|
11077 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
11078 |
+
#: includes/settings/wcj-settings-multicurrency.php:32
|
11079 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:79
|
11080 |
+
#: includes/settings/wcj-settings-price-by-country.php:311
|
11081 |
+
msgid "Currency Exchange Rates module"
|
11082 |
+
msgstr ""
|
11083 |
+
|
11084 |
+
#: includes/settings/wcj-settings-currency-per-product.php:138
|
11085 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:102
|
11086 |
+
#: includes/settings/wcj-settings-multicurrency.php:203
|
11087 |
+
msgid "Currencies Options"
|
11088 |
+
msgstr ""
|
11089 |
+
|
11090 |
+
#: includes/settings/wcj-settings-currency-per-product.php:139
|
11091 |
+
msgid ""
|
11092 |
+
"Exchange rates for currencies won't be used for products if \"Cart and "
|
11093 |
+
"Checkout Behaviour\" is set to one of \"Leave product currency ...\" "
|
11094 |
+
"options. However it may be used for shipping price conversion."
|
11095 |
+
msgstr ""
|
11096 |
+
|
11097 |
+
#: includes/settings/wcj-settings-currency-per-product.php:144
|
11098 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:107
|
11099 |
+
#: includes/settings/wcj-settings-multicurrency.php:209
|
11100 |
+
msgid "Total Currencies"
|
11101 |
+
msgstr ""
|
11102 |
+
|
11103 |
+
#: includes/settings/wcj-settings-currency-per-product.php:199
|
11104 |
+
msgid "Product Authors"
|
11105 |
+
msgstr ""
|
11106 |
+
|
11107 |
+
#: includes/settings/wcj-settings-currency-per-product.php:211
|
11108 |
+
msgid "Product Authors User Roles"
|
11109 |
+
msgstr ""
|
11110 |
+
|
11111 |
+
#: includes/settings/wcj-settings-currency-per-product.php:256
|
11112 |
+
msgid "Advanced: Save Calculated Products Prices"
|
11113 |
+
msgstr ""
|
11114 |
+
|
11115 |
+
#: includes/settings/wcj-settings-currency-per-product.php:257
|
11116 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:69
|
11117 |
+
#: includes/settings/wcj-settings-multicurrency.php:192
|
11118 |
+
msgid ""
|
11119 |
+
"This may help if you are experiencing compatibility issues with other "
|
11120 |
+
"plugins."
|
11121 |
+
msgstr ""
|
11122 |
+
|
11123 |
+
#: includes/settings/wcj-settings-currency.php:14
|
11124 |
+
msgid "Currency Symbol Options"
|
11125 |
+
msgstr ""
|
11126 |
+
|
11127 |
+
#: includes/settings/wcj-settings-currency.php:16
|
11128 |
+
#, php-format
|
11129 |
+
msgid "You can use shortcodes in currency symbols, e.g.: %s."
|
11130 |
+
msgstr ""
|
11131 |
+
|
11132 |
+
#: includes/settings/wcj-settings-currency.php:21
|
11133 |
+
msgid "Hide Currency Symbol"
|
11134 |
+
msgstr ""
|
11135 |
+
|
11136 |
+
#: includes/settings/wcj-settings-currency.php:23
|
11137 |
+
msgid "Hides currency symbol completely."
|
11138 |
+
msgstr ""
|
11139 |
+
|
11140 |
+
#: includes/settings/wcj-settings-currency.php:56
|
11141 |
+
msgid "Custom Currencies"
|
11142 |
+
msgstr ""
|
11143 |
+
|
11144 |
+
#: includes/settings/wcj-settings-currency.php:74
|
11145 |
+
msgid "Currency Name (required)"
|
11146 |
+
msgstr ""
|
11147 |
+
|
11148 |
+
#: includes/settings/wcj-settings-currency.php:80
|
11149 |
+
msgid "Currency Code (required)"
|
11150 |
+
msgstr ""
|
11151 |
+
|
11152 |
+
#: includes/settings/wcj-settings-currency.php:86
|
11153 |
+
msgid "Currency Symbol"
|
11154 |
+
msgstr ""
|
11155 |
+
|
11156 |
+
#: includes/settings/wcj-settings-custom-css.php:19
|
11157 |
+
#: includes/settings/wcj-settings-custom-js.php:19
|
11158 |
+
msgid "Code Position"
|
11159 |
+
msgstr ""
|
11160 |
+
|
11161 |
+
#: includes/settings/wcj-settings-custom-css.php:29
|
11162 |
+
msgid "Custom CSS - Front end (Customers)"
|
11163 |
+
msgstr ""
|
11164 |
+
|
11165 |
+
#: includes/settings/wcj-settings-custom-css.php:36
|
11166 |
+
msgid "Custom CSS - Back end (Admin)"
|
11167 |
+
msgstr ""
|
11168 |
+
|
11169 |
+
#: includes/settings/wcj-settings-custom-css.php:43
|
11170 |
+
msgid "Custom CSS on per Product Basis"
|
11171 |
+
msgstr ""
|
11172 |
+
|
11173 |
+
#: includes/settings/wcj-settings-custom-css.php:45
|
11174 |
+
msgid ""
|
11175 |
+
"Set product specific CSS to be loaded only on specific product's single page."
|
11176 |
+
msgstr ""
|
11177 |
+
|
11178 |
+
#: includes/settings/wcj-settings-custom-css.php:46
|
11179 |
+
#: includes/settings/wcj-settings-order-quantities.php:118
|
11180 |
+
#: includes/settings/wcj-settings-order-quantities.php:176
|
11181 |
+
#: includes/settings/wcj-settings-order-quantities.php:217
|
11182 |
+
#: includes/settings/wcj-settings-sale-flash.php:66
|
11183 |
+
msgid "This will add meta box to each product's edit page."
|
11184 |
+
msgstr ""
|
11185 |
+
|
11186 |
+
#: includes/settings/wcj-settings-custom-css.php:52
|
11187 |
+
msgid "Custom CSS on per Product Basis - Default Field Value"
|
11188 |
+
msgstr ""
|
11189 |
+
|
11190 |
+
#: includes/settings/wcj-settings-custom-js.php:29
|
11191 |
+
msgid "Custom JS - Front end (Customers)"
|
11192 |
+
msgstr ""
|
11193 |
+
|
11194 |
+
#: includes/settings/wcj-settings-custom-js.php:36
|
11195 |
+
msgid "Custom JS - Back end (Admin)"
|
11196 |
+
msgstr ""
|
11197 |
+
|
11198 |
+
#: includes/settings/wcj-settings-custom-php.php:27
|
11199 |
+
#, php-format
|
11200 |
+
msgid "Without the %s tag."
|
11201 |
+
msgstr ""
|
11202 |
+
|
11203 |
+
#: includes/settings/wcj-settings-custom-php.php:29
|
11204 |
+
#, php-format
|
11205 |
+
msgid "Automatically created file: %s."
|
11206 |
+
msgstr ""
|
11207 |
+
|
11208 |
+
#: includes/settings/wcj-settings-debug-tools.php:14
|
11209 |
+
msgid "Debug Tools Options"
|
11210 |
+
msgstr ""
|
11211 |
+
|
11212 |
+
#: includes/settings/wcj-settings-debug-tools.php:20
|
11213 |
+
msgid "Enables logging to Booster log."
|
11214 |
+
msgstr ""
|
11215 |
+
|
11216 |
+
#: includes/settings/wcj-settings-debug-tools.php:27
|
11217 |
+
msgid "WooCommerce Log"
|
11218 |
+
msgstr ""
|
11219 |
+
|
11220 |
+
#: includes/settings/wcj-settings-debug-tools.php:28
|
11221 |
+
msgid "Enables logging to WooCommerce log."
|
11222 |
+
msgstr ""
|
11223 |
+
|
11224 |
+
#: includes/settings/wcj-settings-debug-tools.php:35
|
11225 |
+
msgid "Debug"
|
11226 |
+
msgstr ""
|
11227 |
+
|
11228 |
+
#: includes/settings/wcj-settings-debug-tools.php:36
|
11229 |
+
msgid "Enables debug mode."
|
11230 |
+
msgstr ""
|
11231 |
+
|
11232 |
+
#: includes/settings/wcj-settings-debug-tools.php:43
|
11233 |
+
msgid "System Info"
|
11234 |
+
msgstr ""
|
11235 |
+
|
11236 |
+
#: includes/settings/wcj-settings-debug-tools.php:47
|
11237 |
+
msgid "Show extended info"
|
11238 |
+
msgstr ""
|
11239 |
+
|
11240 |
+
#: includes/settings/wcj-settings-email-options.php:14
|
11241 |
+
msgid "Product Info in Item Name"
|
11242 |
+
msgstr ""
|
11243 |
+
|
11244 |
+
#: includes/settings/wcj-settings-email-options.php:19
|
11245 |
+
msgid "Add Product Info to Item Name"
|
11246 |
+
msgstr ""
|
11247 |
+
|
11248 |
+
#: includes/settings/wcj-settings-email-options.php:26
|
11249 |
+
#: includes/settings/wcj-settings-template-editor.php:43
|
11250 |
+
#: includes/settings/wcj-settings-track-users.php:26
|
11251 |
+
msgid "Info"
|
11252 |
+
msgstr ""
|
11253 |
+
|
11254 |
+
#: includes/settings/wcj-settings-email-options.php:27
|
11255 |
+
#, php-format
|
11256 |
+
msgid ""
|
11257 |
+
"You can use <a target=\"_blank\" href=\"%s\">Booster's products shortcodes</"
|
11258 |
+
"a> here."
|
11259 |
+
msgstr ""
|
11260 |
+
|
11261 |
+
#: includes/settings/wcj-settings-emails-verification.php:19
|
11262 |
+
msgid "Skip Email Verification for User Roles"
|
11263 |
+
msgstr ""
|
11264 |
+
|
11265 |
+
#: includes/settings/wcj-settings-emails-verification.php:27
|
11266 |
+
msgid "Enable Email Verification for Already Registered Users"
|
11267 |
+
msgstr ""
|
11268 |
+
|
11269 |
+
#: includes/settings/wcj-settings-emails-verification.php:29
|
11270 |
+
msgid ""
|
11271 |
+
"If enabled, all your current users will have to verify their emails when "
|
11272 |
+
"logging to your site."
|
11273 |
+
msgstr ""
|
11274 |
+
|
11275 |
+
#: includes/settings/wcj-settings-emails-verification.php:35
|
11276 |
+
msgid "Login User After Successful Verification"
|
11277 |
+
msgstr ""
|
11278 |
+
|
11279 |
+
#: includes/settings/wcj-settings-emails-verification.php:42
|
11280 |
+
msgid "Prevent User Login Globally"
|
11281 |
+
msgstr ""
|
11282 |
+
|
11283 |
+
#: includes/settings/wcj-settings-emails-verification.php:44
|
11284 |
+
msgid ""
|
11285 |
+
"Enable if users are logged in automattically when they should not, like "
|
11286 |
+
"after registration on checkout"
|
11287 |
+
msgstr ""
|
11288 |
+
|
11289 |
+
#: includes/settings/wcj-settings-emails-verification.php:50
|
11290 |
+
msgid "Redirect User After Successful Verification to Custom URL"
|
11291 |
+
msgstr ""
|
11292 |
+
|
11293 |
+
#: includes/settings/wcj-settings-emails-verification.php:51
|
11294 |
+
msgid "Redirect URL. Ignored if empty."
|
11295 |
+
msgstr ""
|
11296 |
+
|
11297 |
+
#: includes/settings/wcj-settings-emails-verification.php:62
|
11298 |
+
msgid "Messages"
|
11299 |
+
msgstr ""
|
11300 |
+
|
11301 |
+
#: includes/settings/wcj-settings-emails-verification.php:67
|
11302 |
+
msgid "Message - Success"
|
11303 |
+
msgstr ""
|
11304 |
+
|
11305 |
+
#: includes/settings/wcj-settings-emails-verification.php:74
|
11306 |
+
msgid "Message - Error"
|
11307 |
+
msgstr ""
|
11308 |
+
|
11309 |
+
#: includes/settings/wcj-settings-emails-verification.php:82
|
11310 |
+
msgid "Message - Failed"
|
11311 |
+
msgstr ""
|
11312 |
+
|
11313 |
+
#: includes/settings/wcj-settings-emails-verification.php:90
|
11314 |
+
msgid "Message - Failed (no user ID)"
|
11315 |
+
msgstr ""
|
11316 |
+
|
11317 |
+
#: includes/settings/wcj-settings-emails-verification.php:97
|
11318 |
+
msgid "Message - Activate"
|
11319 |
+
msgstr ""
|
11320 |
+
|
11321 |
+
#: includes/settings/wcj-settings-emails-verification.php:104
|
11322 |
+
msgid "Message - Resend"
|
11323 |
+
msgstr ""
|
11324 |
+
|
11325 |
+
#: includes/settings/wcj-settings-emails-verification.php:120
|
11326 |
+
#: includes/settings/wcj-settings-offer-price.php:328
|
11327 |
+
msgid "Email Subject"
|
11328 |
+
msgstr ""
|
11329 |
+
|
11330 |
+
#: includes/settings/wcj-settings-emails-verification.php:129
|
11331 |
+
msgid "Email Content"
|
11332 |
+
msgstr ""
|
11333 |
+
|
11334 |
+
#: includes/settings/wcj-settings-emails-verification.php:139
|
11335 |
+
#: includes/settings/wcj-settings-offer-price.php:335
|
11336 |
+
msgid "Email Template"
|
11337 |
+
msgstr ""
|
11338 |
+
|
11339 |
+
#: includes/settings/wcj-settings-emails-verification.php:140
|
11340 |
+
msgid "Possible values: Plain, WooCommerce."
|
11341 |
+
msgstr ""
|
11342 |
+
|
11343 |
+
#: includes/settings/wcj-settings-emails-verification.php:145
|
11344 |
+
msgid "Plain"
|
11345 |
+
msgstr ""
|
11346 |
+
|
11347 |
+
#: includes/settings/wcj-settings-emails-verification.php:152
|
11348 |
+
msgid "If WooCommerce template is selected, set email heading here."
|
11349 |
+
msgstr ""
|
11350 |
+
|
11351 |
+
#: includes/settings/wcj-settings-emails.php:18
|
11352 |
+
#, php-format
|
11353 |
+
msgid ""
|
11354 |
+
"This section lets you set number of custom emails to add. After setting the "
|
11355 |
+
"number, visit <a href=\"%s\">WooCommerce > Settings > Emails</a> to set each "
|
11356 |
+
"email options."
|
11357 |
+
msgstr ""
|
11358 |
+
|
11359 |
+
#: includes/settings/wcj-settings-emails.php:23
|
11360 |
+
msgid "Custom Emails Number"
|
11361 |
+
msgstr ""
|
11362 |
+
|
11363 |
+
#: includes/settings/wcj-settings-emails.php:35
|
11364 |
+
msgid "Admin Title Custom Email"
|
11365 |
+
msgstr ""
|
11366 |
+
|
11367 |
+
#: includes/settings/wcj-settings-empty-cart.php:15
|
11368 |
+
msgid ""
|
11369 |
+
"You can also use <strong>[wcj_empty_cart_button]</strong> shortcode to place "
|
11370 |
+
"the button anywhere on your site."
|
11371 |
+
msgstr ""
|
11372 |
+
|
11373 |
+
#: includes/settings/wcj-settings-empty-cart.php:20
|
11374 |
+
msgid "Empty Cart Button Text"
|
11375 |
+
msgstr ""
|
11376 |
+
|
11377 |
+
#: includes/settings/wcj-settings-empty-cart.php:28
|
11378 |
+
msgid "Wrapping DIV style"
|
11379 |
+
msgstr ""
|
11380 |
+
|
11381 |
+
#: includes/settings/wcj-settings-empty-cart.php:29
|
11382 |
+
msgid "Style for the button's div. Default is \"float: right;\""
|
11383 |
+
msgstr ""
|
11384 |
+
|
11385 |
+
#: includes/settings/wcj-settings-empty-cart.php:35
|
11386 |
+
msgid "Button HTML Class"
|
11387 |
+
msgstr ""
|
11388 |
+
|
11389 |
+
#: includes/settings/wcj-settings-empty-cart.php:41
|
11390 |
+
msgid "Button position on the Cart page"
|
11391 |
+
msgstr ""
|
11392 |
+
|
11393 |
+
#: includes/settings/wcj-settings-empty-cart.php:48
|
11394 |
+
msgid "Cart totals: Before cart totals"
|
11395 |
+
msgstr ""
|
11396 |
+
|
11397 |
+
#: includes/settings/wcj-settings-empty-cart.php:53
|
11398 |
+
msgid "Cart totals: After proceed to checkout button"
|
11399 |
+
msgstr ""
|
11400 |
+
|
11401 |
+
#: includes/settings/wcj-settings-empty-cart.php:54
|
11402 |
+
msgid "Cart totals: After cart totals"
|
11403 |
+
msgstr ""
|
11404 |
+
|
11405 |
+
#: includes/settings/wcj-settings-empty-cart.php:55
|
11406 |
+
msgid "After cart collaterals"
|
11407 |
+
msgstr ""
|
11408 |
+
|
11409 |
+
#: includes/settings/wcj-settings-empty-cart.php:62
|
11410 |
+
msgid "Button position on the Checkout page"
|
11411 |
+
msgstr ""
|
11412 |
+
|
11413 |
+
#: includes/settings/wcj-settings-empty-cart.php:73
|
11414 |
+
msgid "Confirmation"
|
11415 |
+
msgstr ""
|
11416 |
+
|
11417 |
+
#: includes/settings/wcj-settings-empty-cart.php:78
|
11418 |
+
msgid "No confirmation"
|
11419 |
+
msgstr ""
|
11420 |
+
|
11421 |
+
#: includes/settings/wcj-settings-empty-cart.php:79
|
11422 |
+
msgid "Confirm by pop up box"
|
11423 |
+
msgstr ""
|
11424 |
+
|
11425 |
+
#: includes/settings/wcj-settings-empty-cart.php:83
|
11426 |
+
msgid "Confirmation Text (if enabled)"
|
11427 |
+
msgstr ""
|
11428 |
+
|
11429 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:20
|
11430 |
+
msgid "Field Label"
|
11431 |
+
msgstr ""
|
11432 |
+
|
11433 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:74
|
11434 |
+
msgid "Validate"
|
11435 |
+
msgstr ""
|
11436 |
+
|
11437 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:81
|
11438 |
+
msgid "Message on not valid"
|
11439 |
+
msgstr ""
|
11440 |
+
|
11441 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:88
|
11442 |
+
msgid "First Validation Method"
|
11443 |
+
msgstr ""
|
11444 |
+
|
11445 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:89
|
11446 |
+
msgid ""
|
11447 |
+
"Change this if you are having issues when validating VAT. This only selects "
|
11448 |
+
"first method to try - if not succeeded, remaining methods will be used for "
|
11449 |
+
"validation."
|
11450 |
+
msgstr ""
|
11451 |
+
|
11452 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:94
|
11453 |
+
msgid "SOAP"
|
11454 |
+
msgstr ""
|
11455 |
+
|
11456 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:95
|
11457 |
+
msgid "cURL"
|
11458 |
+
msgstr ""
|
11459 |
+
|
11460 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:96
|
11461 |
+
msgid "Simple"
|
11462 |
+
msgstr ""
|
11463 |
+
|
11464 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:100
|
11465 |
+
msgid "Exempt VAT for Valid Numbers"
|
11466 |
+
msgstr ""
|
11467 |
+
|
11468 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:107
|
11469 |
+
msgid "Exempt VAT on Cart"
|
11470 |
+
msgstr ""
|
11471 |
+
|
11472 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:109
|
11473 |
+
msgid "Exempts VAT even on Cart page."
|
11474 |
+
msgstr ""
|
11475 |
+
|
11476 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:115
|
11477 |
+
msgid "Show VAT field for EU countries only"
|
11478 |
+
msgstr ""
|
11479 |
+
|
11480 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:123
|
11481 |
+
msgid "Exempt VAT by Customer's EU VAT"
|
11482 |
+
msgstr ""
|
11483 |
+
|
11484 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:125
|
11485 |
+
msgid ""
|
11486 |
+
"Exempts VAT by checking previously registered EU VAT numbers from customers."
|
11487 |
+
msgstr ""
|
11488 |
+
|
11489 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:131
|
11490 |
+
msgid "Preserve VAT in Base Country"
|
11491 |
+
msgstr ""
|
11492 |
+
|
11493 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:132
|
11494 |
+
#, php-format
|
11495 |
+
msgid ""
|
11496 |
+
"This will validate the VAT, but won't exempt VAT for base country VAT "
|
11497 |
+
"numbers. Base (i.e. store) country is set in %s."
|
11498 |
+
msgstr ""
|
11499 |
+
|
11500 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:151
|
11501 |
+
msgid "Check for IP Location Country"
|
11502 |
+
msgstr ""
|
11503 |
+
|
11504 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:152
|
11505 |
+
msgid ""
|
11506 |
+
"This will check if customer's country (located by customer's IP) matches the "
|
11507 |
+
"country in entered VAT number."
|
11508 |
+
msgstr ""
|
11509 |
+
|
11510 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:175
|
11511 |
+
msgid "After order table"
|
11512 |
+
msgstr ""
|
11513 |
+
|
11514 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:176
|
11515 |
+
msgid "In billing address"
|
11516 |
+
msgstr ""
|
11517 |
+
|
11518 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:180
|
11519 |
+
msgid "Add Progress Messages"
|
11520 |
+
msgstr ""
|
11521 |
+
|
11522 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:187
|
11523 |
+
msgid "Progress Message: Validating"
|
11524 |
+
msgstr ""
|
11525 |
+
|
11526 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:194
|
11527 |
+
msgid "Progress Message: Valid"
|
11528 |
+
msgstr ""
|
11529 |
+
|
11530 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:201
|
11531 |
+
msgid "Progress Message: Not Valid"
|
11532 |
+
msgstr ""
|
11533 |
+
|
11534 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:208
|
11535 |
+
msgid "Progress Message: Validation Failed"
|
11536 |
+
msgstr ""
|
11537 |
+
|
11538 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:209
|
11539 |
+
msgid "Message on VAT validation server timeout etc."
|
11540 |
+
msgstr ""
|
11541 |
+
|
11542 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:216
|
11543 |
+
msgid "Add EU VAT Number Summary Meta Box to Admin Order Edit Page"
|
11544 |
+
msgstr ""
|
11545 |
+
|
11546 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:232
|
11547 |
+
msgid "Skip VAT Validation for Selected Countries"
|
11548 |
+
msgstr ""
|
11549 |
+
|
11550 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:233
|
11551 |
+
msgid ""
|
11552 |
+
"List all countries you want VAT validation to be skipped for (i.e. VAT "
|
11553 |
+
"always valid). Ignored if empty."
|
11554 |
+
msgstr ""
|
11555 |
+
|
11556 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:234
|
11557 |
+
#, php-format
|
11558 |
+
msgid "Enter country codes as comma separated list, e.g. %s."
|
11559 |
+
msgstr ""
|
11560 |
+
|
11561 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:240
|
11562 |
+
msgid "Read '_vat_number' meta"
|
11563 |
+
msgstr ""
|
11564 |
+
|
11565 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:241
|
11566 |
+
#, php-format
|
11567 |
+
msgid ""
|
11568 |
+
"Try to add compatibility with <a href='%s' target='_blank'>EU VAT Number</a> "
|
11569 |
+
"plugin, reading meta from '_vat_number'."
|
11570 |
+
msgstr ""
|
11571 |
+
|
11572 |
+
#: includes/settings/wcj-settings-export.php:15
|
11573 |
+
msgid "Export Options"
|
11574 |
+
msgstr ""
|
11575 |
+
|
11576 |
+
#: includes/settings/wcj-settings-export.php:20
|
11577 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:183
|
11578 |
+
msgid "CSV Separator"
|
11579 |
+
msgstr ""
|
11580 |
+
|
11581 |
+
#: includes/settings/wcj-settings-export.php:26
|
11582 |
+
msgid "UTF-8 BOM"
|
11583 |
+
msgstr ""
|
11584 |
+
|
11585 |
+
#: includes/settings/wcj-settings-export.php:28
|
11586 |
+
msgid "Add UTF-8 BOM sequence"
|
11587 |
+
msgstr ""
|
11588 |
+
|
11589 |
+
#: includes/settings/wcj-settings-export.php:38
|
11590 |
+
msgid "Export Orders Options"
|
11591 |
+
msgstr ""
|
11592 |
+
|
11593 |
+
#: includes/settings/wcj-settings-export.php:43
|
11594 |
+
msgid "Export Orders Fields"
|
11595 |
+
msgstr ""
|
11596 |
+
|
11597 |
+
#: includes/settings/wcj-settings-export.php:44
|
11598 |
+
#: includes/settings/wcj-settings-export.php:112
|
11599 |
+
#: includes/settings/wcj-settings-export.php:183
|
11600 |
+
#: includes/settings/wcj-settings-export.php:262
|
11601 |
+
#: includes/settings/wcj-settings-export.php:280
|
11602 |
+
msgid "Hold \"Control\" key to select multiple fields."
|
11603 |
+
msgstr ""
|
11604 |
+
|
11605 |
+
#: includes/settings/wcj-settings-export.php:52
|
11606 |
+
msgid "Additional Export Orders Fields"
|
11607 |
+
msgstr ""
|
11608 |
+
|
11609 |
+
#: includes/settings/wcj-settings-export.php:87
|
11610 |
+
#: includes/settings/wcj-settings-export.php:156
|
11611 |
+
msgid "Order Shortcode"
|
11612 |
+
msgstr ""
|
11613 |
+
|
11614 |
+
#: includes/settings/wcj-settings-export.php:92
|
11615 |
+
msgid ""
|
11616 |
+
"If field's \"Type\" is set to \"Meta\", enter order meta key to retrieve "
|
11617 |
+
"(can be custom field name)."
|
11618 |
+
msgstr ""
|
11619 |
+
|
11620 |
+
#: includes/settings/wcj-settings-export.php:93
|
11621 |
+
msgid "If it's set to \"Shortcode\", use Booster's Orders shortcodes here."
|
11622 |
+
msgstr ""
|
11623 |
+
|
11624 |
+
#: includes/settings/wcj-settings-export.php:106
|
11625 |
+
msgid "Export Orders Items Options"
|
11626 |
+
msgstr ""
|
11627 |
+
|
11628 |
+
#: includes/settings/wcj-settings-export.php:111
|
11629 |
+
msgid "Export Orders Items Fields"
|
11630 |
+
msgstr ""
|
11631 |
+
|
11632 |
+
#: includes/settings/wcj-settings-export.php:120
|
11633 |
+
msgid "Additional Export Orders Items Fields"
|
11634 |
+
msgstr ""
|
11635 |
+
|
11636 |
+
#: includes/settings/wcj-settings-export.php:155
|
11637 |
+
msgid "Order Item Meta"
|
11638 |
+
msgstr ""
|
11639 |
+
|
11640 |
+
#: includes/settings/wcj-settings-export.php:158
|
11641 |
+
#: includes/settings/wcj-settings-export.php:237
|
11642 |
+
msgid "Product Shortcode"
|
11643 |
+
msgstr ""
|
11644 |
+
|
11645 |
+
#: includes/settings/wcj-settings-export.php:163
|
11646 |
+
msgid ""
|
11647 |
+
"If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
|
11648 |
+
"retrieve (can be custom field name)."
|
11649 |
+
msgstr ""
|
11650 |
+
|
11651 |
+
#: includes/settings/wcj-settings-export.php:164
|
11652 |
+
msgid ""
|
11653 |
+
"If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
|
11654 |
+
msgstr ""
|
11655 |
+
|
11656 |
+
#: includes/settings/wcj-settings-export.php:177
|
11657 |
+
msgid "Export Products Options"
|
11658 |
+
msgstr ""
|
11659 |
+
|
11660 |
+
#: includes/settings/wcj-settings-export.php:182
|
11661 |
+
msgid "Export Products Fields"
|
11662 |
+
msgstr ""
|
11663 |
+
|
11664 |
+
#: includes/settings/wcj-settings-export.php:191
|
11665 |
+
#: includes/settings/wcj-settings-free-price.php:14
|
11666 |
+
#: includes/settings/wcj-settings-order-quantities.php:56
|
11667 |
+
msgid "Variable Products"
|
11668 |
+
msgstr ""
|
11669 |
+
|
11670 |
+
#: includes/settings/wcj-settings-export.php:196
|
11671 |
+
msgid "Export variable (main) product only"
|
11672 |
+
msgstr ""
|
11673 |
+
|
11674 |
+
#: includes/settings/wcj-settings-export.php:197
|
11675 |
+
msgid "Export variation products only"
|
11676 |
+
msgstr ""
|
11677 |
+
|
11678 |
+
#: includes/settings/wcj-settings-export.php:198
|
11679 |
+
msgid "Export variable (main) and variation products"
|
11680 |
+
msgstr ""
|
11681 |
+
|
11682 |
+
#: includes/settings/wcj-settings-export.php:202
|
11683 |
+
msgid "Additional Export Products Fields"
|
11684 |
+
msgstr ""
|
11685 |
+
|
11686 |
+
#: includes/settings/wcj-settings-export.php:242
|
11687 |
+
msgid ""
|
11688 |
+
"If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
|
11689 |
+
"(can be custom field name)."
|
11690 |
+
msgstr ""
|
11691 |
+
|
11692 |
+
#: includes/settings/wcj-settings-export.php:243
|
11693 |
+
msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
|
11694 |
+
msgstr ""
|
11695 |
+
|
11696 |
+
#: includes/settings/wcj-settings-export.php:256
|
11697 |
+
msgid "Export Customers Options"
|
11698 |
+
msgstr ""
|
11699 |
+
|
11700 |
+
#: includes/settings/wcj-settings-export.php:261
|
11701 |
+
msgid "Export Customers Fields"
|
11702 |
+
msgstr ""
|
11703 |
+
|
11704 |
+
#: includes/settings/wcj-settings-export.php:274
|
11705 |
+
msgid "Export Customers from Orders Options"
|
11706 |
+
msgstr ""
|
11707 |
+
|
11708 |
+
#: includes/settings/wcj-settings-export.php:279
|
11709 |
+
msgid "Export Customers from Orders Fields"
|
11710 |
+
msgstr ""
|
11711 |
+
|
11712 |
+
#: includes/settings/wcj-settings-free-price.php:13
|
11713 |
+
msgid "Simple and Custom Products"
|
11714 |
+
msgstr ""
|
11715 |
+
|
11716 |
+
#: includes/settings/wcj-settings-free-price.php:15
|
11717 |
+
msgid "Grouped Products"
|
11718 |
+
msgstr ""
|
11719 |
+
|
11720 |
+
#: includes/settings/wcj-settings-free-price.php:16
|
11721 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:206
|
11722 |
+
msgid "External Products"
|
11723 |
+
msgstr ""
|
11724 |
+
|
11725 |
+
#: includes/settings/wcj-settings-free-price.php:21
|
11726 |
+
msgid "Homepage"
|
11727 |
+
msgstr ""
|
11728 |
+
|
11729 |
+
#: includes/settings/wcj-settings-free-price.php:22
|
11730 |
+
msgid "Pages (e.g. Shortcodes)"
|
11731 |
+
msgstr ""
|
11732 |
+
|
11733 |
+
#: includes/settings/wcj-settings-free-price.php:23
|
11734 |
+
msgid "Archives (Product Categories)"
|
11735 |
+
msgstr ""
|
11736 |
+
|
11737 |
+
#: includes/settings/wcj-settings-free-price.php:31
|
11738 |
+
msgid "Labels can contain shortcodes."
|
11739 |
+
msgstr ""
|
11740 |
+
|
11741 |
+
#: includes/settings/wcj-settings-free-price.php:38
|
11742 |
+
#: includes/settings/wcj-settings-reports.php:179
|
11743 |
+
msgid "Variations"
|
11744 |
+
msgstr ""
|
11745 |
+
|
11746 |
+
#: includes/settings/wcj-settings-general.php:14
|
11747 |
+
msgid "Shortcodes Options"
|
11748 |
+
msgstr ""
|
11749 |
+
|
11750 |
+
#: includes/settings/wcj-settings-general.php:19
|
11751 |
+
msgid "Shortcodes in WordPress Text Widgets"
|
11752 |
+
msgstr ""
|
11753 |
+
|
11754 |
+
#: includes/settings/wcj-settings-general.php:20
|
11755 |
+
msgid ""
|
11756 |
+
"This will enable all (including non Booster's) shortcodes in WordPress text "
|
11757 |
+
"widgets."
|
11758 |
+
msgstr ""
|
11759 |
+
|
11760 |
+
#: includes/settings/wcj-settings-general.php:27
|
11761 |
+
msgid "Booster's Shortcodes"
|
11762 |
+
msgstr ""
|
11763 |
+
|
11764 |
+
#: includes/settings/wcj-settings-general.php:28
|
11765 |
+
#, php-format
|
11766 |
+
msgid ""
|
11767 |
+
"Disable all <a href=\"%s\" target=\"_blank\">Booster's shortcodes</a> (for "
|
11768 |
+
"memory saving)."
|
11769 |
+
msgstr ""
|
11770 |
+
|
11771 |
+
#: includes/settings/wcj-settings-general.php:40
|
11772 |
+
msgid "Ip Detection"
|
11773 |
+
msgstr ""
|
11774 |
+
|
11775 |
+
#: includes/settings/wcj-settings-general.php:45
|
11776 |
+
msgid "Overwrite WooCommerce IP Detection"
|
11777 |
+
msgstr ""
|
11778 |
+
|
11779 |
+
#: includes/settings/wcj-settings-general.php:46
|
11780 |
+
msgid "Try to overwrite WooCommerce IP detection"
|
11781 |
+
msgstr ""
|
11782 |
+
|
11783 |
+
#: includes/settings/wcj-settings-general.php:47
|
11784 |
+
msgid ""
|
11785 |
+
"The \"HTTP_X_REAL_IP\" param on $_SERVER variable will be replaced by IP "
|
11786 |
+
"detected from Booster"
|
11787 |
+
msgstr ""
|
11788 |
+
|
11789 |
+
#: includes/settings/wcj-settings-general.php:53
|
11790 |
+
msgid "Detection Methods"
|
11791 |
+
msgstr ""
|
11792 |
+
|
11793 |
+
#: includes/settings/wcj-settings-general.php:54
|
11794 |
+
msgid ""
|
11795 |
+
"IP Detection Methods used by some Booster modules when not using IP "
|
11796 |
+
"detection from WooCommerce. Change order for different results."
|
11797 |
+
msgstr ""
|
11798 |
+
|
11799 |
+
#: includes/settings/wcj-settings-general.php:55
|
11800 |
+
msgid "Default values are:"
|
11801 |
+
msgstr ""
|
11802 |
+
|
11803 |
+
#: includes/settings/wcj-settings-general.php:70
|
11804 |
+
msgid "Recalculate Cart Totals"
|
11805 |
+
msgstr ""
|
11806 |
+
|
11807 |
+
#: includes/settings/wcj-settings-general.php:71
|
11808 |
+
msgid "Will recalculate cart totals on every page load."
|
11809 |
+
msgstr ""
|
11810 |
+
|
11811 |
+
#: includes/settings/wcj-settings-general.php:72
|
11812 |
+
msgid ""
|
11813 |
+
"This may solve multicurrency issues with wrong currency symbol in mini-cart."
|
11814 |
+
msgstr ""
|
11815 |
+
|
11816 |
+
#: includes/settings/wcj-settings-general.php:79
|
11817 |
+
msgid "Session Type in Booster"
|
11818 |
+
msgstr ""
|
11819 |
+
|
11820 |
+
#: includes/settings/wcj-settings-general.php:84
|
11821 |
+
msgid "Standard PHP sessions"
|
11822 |
+
msgstr ""
|
11823 |
+
|
11824 |
+
#: includes/settings/wcj-settings-general.php:85
|
11825 |
+
msgid "WC sessions"
|
11826 |
+
msgstr ""
|
11827 |
+
|
11828 |
+
#: includes/settings/wcj-settings-general.php:89
|
11829 |
+
msgid "Read and Close"
|
11830 |
+
msgstr ""
|
11831 |
+
|
11832 |
+
#: includes/settings/wcj-settings-general.php:90
|
11833 |
+
msgid ""
|
11834 |
+
"Enable <strong>Read and Close</strong> parameter on <strong>session_start()</"
|
11835 |
+
"strong>."
|
11836 |
+
msgstr ""
|
11837 |
+
|
11838 |
+
#: includes/settings/wcj-settings-general.php:91
|
11839 |
+
msgid ""
|
11840 |
+
"Requires Session Type option set as Standard PHP Sessions and PHP version >= "
|
11841 |
+
"7.0"
|
11842 |
+
msgstr ""
|
11843 |
+
|
11844 |
+
#: includes/settings/wcj-settings-general.php:97
|
11845 |
+
msgid "Datepicker/Weekpicker CSS Loading"
|
11846 |
+
msgstr ""
|
11847 |
+
|
11848 |
+
#: includes/settings/wcj-settings-general.php:98
|
11849 |
+
msgid "Disables datepicker/weekpicker CSS loading."
|
11850 |
+
msgstr ""
|
11851 |
+
|
11852 |
+
#: includes/settings/wcj-settings-general.php:105
|
11853 |
+
msgid "Datepicker/Weekpicker CSS Source"
|
11854 |
+
msgstr ""
|
11855 |
+
|
11856 |
+
#: includes/settings/wcj-settings-general.php:112
|
11857 |
+
msgid "Datepicker/Weekpicker JavaScript Loading"
|
11858 |
+
msgstr ""
|
11859 |
+
|
11860 |
+
#: includes/settings/wcj-settings-general.php:113
|
11861 |
+
msgid "Disables datepicker/weekpicker JavaScript loading."
|
11862 |
+
msgstr ""
|
11863 |
+
|
11864 |
+
#: includes/settings/wcj-settings-general.php:120
|
11865 |
+
msgid "Timepicker CSS Loading"
|
11866 |
+
msgstr ""
|
11867 |
+
|
11868 |
+
#: includes/settings/wcj-settings-general.php:121
|
11869 |
+
msgid "Disables timepicker CSS loading."
|
11870 |
+
msgstr ""
|
11871 |
+
|
11872 |
+
#: includes/settings/wcj-settings-general.php:128
|
11873 |
+
msgid "Timepicker JavaScript Loading"
|
11874 |
+
msgstr ""
|
11875 |
+
|
11876 |
+
#: includes/settings/wcj-settings-general.php:129
|
11877 |
+
msgid "Disables timepicker JavaScript loading."
|
11878 |
+
msgstr ""
|
11879 |
+
|
11880 |
+
#: includes/settings/wcj-settings-general.php:140
|
11881 |
+
msgid "PayPal Email per Product Options"
|
11882 |
+
msgstr ""
|
11883 |
+
|
11884 |
+
#: includes/settings/wcj-settings-general.php:145
|
11885 |
+
msgid "PayPal Email per Product"
|
11886 |
+
msgstr ""
|
11887 |
+
|
11888 |
+
#: includes/settings/wcj-settings-general.php:147
|
11889 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:44
|
11890 |
+
#: includes/settings/wcj-settings-product-by-date.php:54
|
11891 |
+
#: includes/settings/wcj-settings-product-by-time.php:54
|
11892 |
+
#: includes/settings/wcj-settings-wholesale-price.php:23
|
11893 |
+
msgid "This will add new meta box to each product's edit page."
|
11894 |
+
msgstr ""
|
11895 |
+
|
11896 |
+
#: includes/settings/wcj-settings-general.php:157
|
11897 |
+
msgid "Session Expiration Options"
|
11898 |
+
msgstr ""
|
11899 |
+
|
11900 |
+
#: includes/settings/wcj-settings-general.php:162
|
11901 |
+
#: includes/settings/wcj-settings-general.php:177
|
11902 |
+
msgid "Session Expiration"
|
11903 |
+
msgstr ""
|
11904 |
+
|
11905 |
+
#: includes/settings/wcj-settings-general.php:169
|
11906 |
+
msgid "Session Expiring"
|
11907 |
+
msgstr ""
|
11908 |
+
|
11909 |
+
#: includes/settings/wcj-settings-general.php:170
|
11910 |
+
msgid "In seconds. Default: 47 hours (60 * 60 * 47)"
|
11911 |
+
msgstr ""
|
11912 |
+
|
11913 |
+
#: includes/settings/wcj-settings-general.php:178
|
11914 |
+
msgid "In seconds. Default: 48 hours (60 * 60 * 48)"
|
11915 |
+
msgstr ""
|
11916 |
+
|
11917 |
+
#: includes/settings/wcj-settings-general.php:189
|
11918 |
+
msgid "Booster User Roles Changer Options"
|
11919 |
+
msgstr ""
|
11920 |
+
|
11921 |
+
#: includes/settings/wcj-settings-general.php:190
|
11922 |
+
msgid "This will add user roles changer tool to admin bar."
|
11923 |
+
msgstr ""
|
11924 |
+
|
11925 |
+
#: includes/settings/wcj-settings-general.php:196
|
11926 |
+
msgid "Booster User Roles Changer"
|
11927 |
+
msgstr ""
|
11928 |
+
|
11929 |
+
#: includes/settings/wcj-settings-general.php:205
|
11930 |
+
msgid "Enabled for"
|
11931 |
+
msgstr ""
|
11932 |
+
|
11933 |
+
#: includes/settings/wcj-settings-general.php:217
|
11934 |
+
msgid "PHP Options"
|
11935 |
+
msgstr ""
|
11936 |
+
|
11937 |
+
#: includes/settings/wcj-settings-general.php:222
|
11938 |
+
msgid "PHP Memory Limit"
|
11939 |
+
msgstr ""
|
11940 |
+
|
11941 |
+
#: includes/settings/wcj-settings-general.php:223
|
11942 |
+
msgid "megabytes."
|
11943 |
+
msgstr ""
|
11944 |
+
|
11945 |
+
#: includes/settings/wcj-settings-general.php:231
|
11946 |
+
msgid "PHP Time Limit"
|
11947 |
+
msgstr ""
|
11948 |
+
|
11949 |
+
#: includes/settings/wcj-settings-general.php:232
|
11950 |
+
msgid "seconds."
|
11951 |
+
msgstr ""
|
11952 |
+
|
11953 |
+
#: includes/settings/wcj-settings-global-discount.php:24
|
11954 |
+
msgid "Total Groups"
|
11955 |
+
msgstr ""
|
11956 |
+
|
11957 |
+
#: includes/settings/wcj-settings-global-discount.php:28
|
11958 |
+
#: includes/settings/wcj-settings-product-by-user.php:138
|
11959 |
+
#: includes/settings/wcj-settings-products-xml.php:29
|
11960 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:148
|
11961 |
+
msgid "Press Save changes after you change this number."
|
11962 |
+
msgstr ""
|
11963 |
+
|
11964 |
+
#: includes/settings/wcj-settings-global-discount.php:45
|
11965 |
+
msgid "Discount Group"
|
11966 |
+
msgstr ""
|
11967 |
+
|
11968 |
+
#: includes/settings/wcj-settings-global-discount.php:51
|
11969 |
+
msgid "Enabled/disables the discount group."
|
11970 |
+
msgstr ""
|
11971 |
+
|
11972 |
+
#: includes/settings/wcj-settings-global-discount.php:59
|
11973 |
+
msgid "Can be fixed or percent."
|
11974 |
+
msgstr ""
|
11975 |
+
|
11976 |
+
#: includes/settings/wcj-settings-global-discount.php:70
|
11977 |
+
msgid "Must be negative number."
|
11978 |
+
msgstr ""
|
11979 |
+
|
11980 |
+
#: includes/settings/wcj-settings-global-discount.php:77
|
11981 |
+
msgid "Final Correction"
|
11982 |
+
msgstr ""
|
11983 |
+
|
11984 |
+
#: includes/settings/wcj-settings-global-discount.php:78
|
11985 |
+
#, php-format
|
11986 |
+
msgid ""
|
11987 |
+
"Will apply selected function and coefficient to the final price, e.g.: %s."
|
11988 |
+
msgstr ""
|
11989 |
+
|
11990 |
+
#: includes/settings/wcj-settings-global-discount.php:85
|
11991 |
+
#: includes/settings/wcj-settings-multicurrency.php:79
|
11992 |
+
#: includes/settings/wcj-settings-price-by-country.php:83
|
11993 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:70
|
11994 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:224
|
11995 |
+
msgid "Round"
|
11996 |
+
msgstr ""
|
11997 |
+
|
11998 |
+
#: includes/settings/wcj-settings-global-discount.php:86
|
11999 |
+
msgid "Ceil"
|
12000 |
+
msgstr ""
|
12001 |
+
|
12002 |
+
#: includes/settings/wcj-settings-global-discount.php:87
|
12003 |
+
msgid "Floor"
|
12004 |
+
msgstr ""
|
12005 |
+
|
12006 |
+
#: includes/settings/wcj-settings-global-discount.php:91
|
12007 |
+
msgid "Final correction coefficient"
|
12008 |
+
msgstr ""
|
12009 |
+
|
12010 |
+
#: includes/settings/wcj-settings-global-discount.php:98
|
12011 |
+
msgid "Product Scope"
|
12012 |
+
msgstr ""
|
12013 |
+
|
12014 |
+
#: includes/settings/wcj-settings-global-discount.php:99
|
12015 |
+
msgid ""
|
12016 |
+
"Possible values: all products, only products that are already on sale, only "
|
12017 |
+
"products that are not on sale."
|
12018 |
+
msgstr ""
|
12019 |
+
|
12020 |
+
#: includes/settings/wcj-settings-global-discount.php:104
|
12021 |
+
#: includes/settings/wcj-settings-product-add-to-cart.php:65
|
12022 |
+
#: includes/settings/wcj-settings-products-xml.php:207
|
12023 |
+
msgid "All products"
|
12024 |
+
msgstr ""
|
12025 |
+
|
12026 |
+
#: includes/settings/wcj-settings-global-discount.php:105
|
12027 |
+
msgid "Only products that are already on sale"
|
12028 |
+
msgstr ""
|
12029 |
+
|
12030 |
+
#: includes/settings/wcj-settings-global-discount.php:106
|
12031 |
+
#: includes/settings/wcj-settings-products-xml.php:209
|
12032 |
+
msgid "Only products that are not on sale"
|
12033 |
+
msgstr ""
|
12034 |
+
|
12035 |
+
#: includes/settings/wcj-settings-global-discount.php:110
|
12036 |
+
#: includes/settings/wcj-settings-related-products.php:196
|
12037 |
+
msgid "Include Product Categories"
|
12038 |
+
msgstr ""
|
12039 |
+
|
12040 |
+
#: includes/settings/wcj-settings-global-discount.php:111
|
12041 |
+
msgid ""
|
12042 |
+
"Set this field to apply discount to selected product categories only. Leave "
|
12043 |
+
"blank to apply to all products."
|
12044 |
+
msgstr ""
|
12045 |
+
|
12046 |
+
#: includes/settings/wcj-settings-global-discount.php:119
|
12047 |
+
#: includes/settings/wcj-settings-related-products.php:205
|
12048 |
+
msgid "Exclude Product Categories"
|
12049 |
+
msgstr ""
|
12050 |
+
|
12051 |
+
#: includes/settings/wcj-settings-global-discount.php:120
|
12052 |
+
msgid ""
|
12053 |
+
"Set this field to NOT apply discount to selected product categories. Leave "
|
12054 |
+
"blank to apply to all products."
|
12055 |
+
msgstr ""
|
12056 |
+
|
12057 |
+
#: includes/settings/wcj-settings-global-discount.php:128
|
12058 |
+
#: includes/settings/wcj-settings-related-products.php:214
|
12059 |
+
msgid "Include Product Tags"
|
12060 |
+
msgstr ""
|
12061 |
+
|
12062 |
+
#: includes/settings/wcj-settings-global-discount.php:129
|
12063 |
+
msgid ""
|
12064 |
+
"Set this field to apply discount to selected product tags only. Leave blank "
|
12065 |
+
"to apply to all products."
|
12066 |
+
msgstr ""
|
12067 |
+
|
12068 |
+
#: includes/settings/wcj-settings-global-discount.php:137
|
12069 |
+
#: includes/settings/wcj-settings-related-products.php:223
|
12070 |
+
msgid "Exclude Product Tags"
|
12071 |
+
msgstr ""
|
12072 |
+
|
12073 |
+
#: includes/settings/wcj-settings-global-discount.php:138
|
12074 |
+
msgid ""
|
12075 |
+
"Set this field to NOT apply discount to selected product tags. Leave blank "
|
12076 |
+
"to apply to all products."
|
12077 |
+
msgstr ""
|
12078 |
+
|
12079 |
+
#: includes/settings/wcj-settings-global-discount.php:148
|
12080 |
+
msgid ""
|
12081 |
+
"Set this field to apply discount to selected products only. Leave blank to "
|
12082 |
+
"apply to all products."
|
12083 |
+
msgstr ""
|
12084 |
+
|
12085 |
+
#: includes/settings/wcj-settings-global-discount.php:159
|
12086 |
+
msgid ""
|
12087 |
+
"Set this field to NOT apply discount to selected products. Leave blank to "
|
12088 |
+
"apply to all products."
|
12089 |
+
msgstr ""
|
12090 |
+
|
12091 |
+
#: includes/settings/wcj-settings-global-discount.php:175
|
12092 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:95
|
12093 |
+
msgid "Advanced Settings"
|
12094 |
+
msgstr ""
|
12095 |
+
|
12096 |
+
#: includes/settings/wcj-settings-global-discount.php:180
|
12097 |
+
msgid "Global Discount in Admin"
|
12098 |
+
msgstr ""
|
12099 |
+
|
12100 |
+
#: includes/settings/wcj-settings-global-discount.php:182
|
12101 |
+
msgid ""
|
12102 |
+
"This will enable \"global discount\" product pricing in backend. It will "
|
12103 |
+
"also affect some modules, e.g.: \"Products XML Feeds\" module."
|
12104 |
+
msgstr ""
|
12105 |
+
|
12106 |
+
#: includes/settings/wcj-settings-global-discount.php:188
|
12107 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:76
|
12108 |
+
#: includes/settings/wcj-settings-multicurrency.php:176
|
12109 |
+
#: includes/settings/wcj-settings-price-by-country.php:165
|
12110 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:103
|
12111 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:100
|
12112 |
+
msgid "Price Filters Priority"
|
12113 |
+
msgstr ""
|
12114 |
+
|
12115 |
+
#: includes/settings/wcj-settings-global-discount.php:189
|
12116 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:77
|
12117 |
+
#: includes/settings/wcj-settings-multicurrency.php:177
|
12118 |
+
#: includes/settings/wcj-settings-price-by-country.php:166
|
12119 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:104
|
12120 |
+
#: includes/settings/wcj-settings-product-addons.php:250
|
12121 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:101
|
12122 |
+
#: includes/settings/wcj-settings-wholesale-price.php:121
|
12123 |
+
msgid ""
|
12124 |
+
"Priority for all module's price filters. Set to zero to use default priority."
|
12125 |
+
msgstr ""
|
12126 |
+
|
12127 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:14
|
12128 |
+
msgid "Left to Free Shipping Info Options"
|
12129 |
+
msgstr ""
|
12130 |
+
|
12131 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:16
|
12132 |
+
msgid ""
|
12133 |
+
"This section lets you enable info on cart, mini cart and checkout pages."
|
12134 |
+
msgstr ""
|
12135 |
+
|
12136 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:17
|
12137 |
+
#, php-format
|
12138 |
+
msgid ""
|
12139 |
+
"You can also use <em>Booster - Left to Free Shipping</em> widget, %s "
|
12140 |
+
"shortcode or %s function."
|
12141 |
+
msgstr ""
|
12142 |
+
|
12143 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:20
|
12144 |
+
#, php-format
|
12145 |
+
msgid "In content replaced values are: %s, %s and %s."
|
12146 |
+
msgstr ""
|
12147 |
+
|
12148 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:27
|
12149 |
+
msgid "Info on Cart"
|
12150 |
+
msgstr ""
|
12151 |
+
|
12152 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:35
|
12153 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:66
|
12154 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:100
|
12155 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:135
|
12156 |
+
msgid "You can use HTML and/or shortcodes (e.g. [wcj_wpml]) here."
|
12157 |
+
msgstr ""
|
12158 |
+
|
12159 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:43
|
12160 |
+
msgid ""
|
12161 |
+
"Please note, that depending on the \"Position\" you select, your customer "
|
12162 |
+
"may have to reload the cart page to see the updated left to free shipping "
|
12163 |
+
"value. For example, if you select \"After cart totals\" position, then left "
|
12164 |
+
"to free shipping value will be updated as soon as customer updates the cart. "
|
12165 |
+
"However if you select \"After cart\" position instead – message will not be "
|
12166 |
+
"updated, and customer will have to reload the page. In other words, message "
|
12167 |
+
"position should be inside that page part that is automatically updated on "
|
12168 |
+
"cart update."
|
12169 |
+
msgstr ""
|
12170 |
+
|
12171 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:50
|
12172 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:84
|
12173 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:128
|
12174 |
+
msgid "Position Order (Priority)"
|
12175 |
+
msgstr ""
|
12176 |
+
|
12177 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:56
|
12178 |
+
msgid "Info on Mini Cart"
|
12179 |
+
msgstr ""
|
12180 |
+
|
12181 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:78
|
12182 |
+
#: includes/settings/wcj-settings-mini-cart.php:51
|
12183 |
+
msgid "Before mini cart"
|
12184 |
+
msgstr ""
|
12185 |
+
|
12186 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:79
|
12187 |
+
#: includes/settings/wcj-settings-mini-cart.php:52
|
12188 |
+
msgid "Before buttons"
|
12189 |
+
msgstr ""
|
12190 |
+
|
12191 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:80
|
12192 |
+
#: includes/settings/wcj-settings-mini-cart.php:53
|
12193 |
+
msgid "After mini cart"
|
12194 |
+
msgstr ""
|
12195 |
+
|
12196 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:90
|
12197 |
+
msgid "Info on Checkout"
|
12198 |
+
msgstr ""
|
12199 |
+
|
12200 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:119
|
12201 |
+
msgid "Order review: Before shipping"
|
12202 |
+
msgstr ""
|
12203 |
+
|
12204 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:120
|
12205 |
+
msgid "Order review: After shipping"
|
12206 |
+
msgstr ""
|
12207 |
+
|
12208 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:121
|
12209 |
+
msgid "Order review: Payment: Before submit button"
|
12210 |
+
msgstr ""
|
12211 |
+
|
12212 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:122
|
12213 |
+
msgid "Order review: Payment: After submit button"
|
12214 |
+
msgstr ""
|
12215 |
+
|
12216 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:134
|
12217 |
+
msgid "Message on Free Shipping Reached"
|
12218 |
+
msgstr ""
|
12219 |
+
|
12220 |
+
#: includes/settings/wcj-settings-left-to-free-shipping.php:136
|
12221 |
+
msgid "Set empty to disable."
|
12222 |
+
msgstr ""
|
12223 |
+
|
12224 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:26
|
12225 |
+
msgid "Maximum Allowed Each Product's Quantity per User"
|
12226 |
+
msgstr ""
|
12227 |
+
|
12228 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:61
|
12229 |
+
msgid ""
|
12230 |
+
"This sets when (i.e. on which order status) users' quantities should be "
|
12231 |
+
"updated."
|
12232 |
+
msgstr ""
|
12233 |
+
|
12234 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:62
|
12235 |
+
msgid ""
|
12236 |
+
"You can select multiple order status here - quantities will be updated only "
|
12237 |
+
"once, on whichever status is triggered first."
|
12238 |
+
msgstr ""
|
12239 |
+
|
12240 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:63
|
12241 |
+
msgid "If no status are selected - \"Completed\" order status is used."
|
12242 |
+
msgstr ""
|
12243 |
+
|
12244 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:71
|
12245 |
+
#: includes/settings/wcj-settings-offer-price.php:214
|
12246 |
+
msgid "Customer Message"
|
12247 |
+
msgstr ""
|
12248 |
+
|
12249 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:79
|
12250 |
+
msgid "Block Add to Cart"
|
12251 |
+
msgstr ""
|
12252 |
+
|
12253 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:81
|
12254 |
+
msgid ""
|
12255 |
+
"This will stop customer from adding product to cart on exceeded quantities."
|
12256 |
+
msgstr ""
|
12257 |
+
|
12258 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:87
|
12259 |
+
msgid "Block Checkout Page"
|
12260 |
+
msgstr ""
|
12261 |
+
|
12262 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:89
|
12263 |
+
msgid ""
|
12264 |
+
"This will stop customer from accessing the checkout page on exceeded "
|
12265 |
+
"quantities. Customer will be redirected to the cart page."
|
12266 |
+
msgstr ""
|
12267 |
+
|
12268 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:95
|
12269 |
+
#: includes/settings/wcj-settings-max-products-per-user.php:101
|
12270 |
+
msgid "Calculate Data"
|
12271 |
+
msgstr ""
|
12272 |
+
|
12273 |
+
#: includes/settings/wcj-settings-mini-cart.php:14
|
12274 |
+
msgid "Mini Cart Custom Info Blocks"
|
12275 |
+
msgstr ""
|
12276 |
+
|
12277 |
+
#: includes/settings/wcj-settings-modules-by-user-roles.php:28
|
12278 |
+
msgid "Enable Modules"
|
12279 |
+
msgstr ""
|
12280 |
+
|
12281 |
+
#: includes/settings/wcj-settings-modules-by-user-roles.php:29
|
12282 |
+
msgid ""
|
12283 |
+
"Select modules which should be enabled for current user role. All other "
|
12284 |
+
"modules will be disabled. Ignored if left empty."
|
12285 |
+
msgstr ""
|
12286 |
+
|
12287 |
+
#: includes/settings/wcj-settings-modules-by-user-roles.php:37
|
12288 |
+
msgid "Disable Modules"
|
12289 |
+
msgstr ""
|
12290 |
+
|
12291 |
+
#: includes/settings/wcj-settings-modules-by-user-roles.php:38
|
12292 |
+
msgid ""
|
12293 |
+
"Select modules which should be disabled for current user role. All other "
|
12294 |
+
"modules will be enabled. Ignored if left empty."
|
12295 |
+
msgstr ""
|
12296 |
+
|
12297 |
+
#: includes/settings/wcj-settings-more-button-labels.php:14
|
12298 |
+
msgid "Place order (Order now) Button"
|
12299 |
+
msgstr ""
|
12300 |
+
|
12301 |
+
#: includes/settings/wcj-settings-more-button-labels.php:20
|
12302 |
+
msgid "Leave blank for WooCommerce default."
|
12303 |
+
msgstr ""
|
12304 |
+
|
12305 |
+
#: includes/settings/wcj-settings-more-button-labels.php:21
|
12306 |
+
msgid "Button on the checkout page."
|
12307 |
+
msgstr ""
|
12308 |
+
|
12309 |
+
#: includes/settings/wcj-settings-more-button-labels.php:27
|
12310 |
+
msgid "Override Default Text"
|
12311 |
+
msgstr ""
|
12312 |
+
|
12313 |
+
#: includes/settings/wcj-settings-more-button-labels.php:29
|
12314 |
+
msgid ""
|
12315 |
+
"Enable this if button text is not changing for some payment gateway (e.g. "
|
12316 |
+
"PayPal)."
|
12317 |
+
msgstr ""
|
12318 |
+
|
12319 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:37
|
12320 |
+
msgid "Round Prices"
|
12321 |
+
msgstr ""
|
12322 |
+
|
12323 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:44
|
12324 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:76
|
12325 |
+
msgid "rounding precision"
|
12326 |
+
msgstr ""
|
12327 |
+
|
12328 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:45
|
12329 |
+
msgid "Number of decimals."
|
12330 |
+
msgstr ""
|
12331 |
+
|
12332 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:52
|
12333 |
+
msgid "Convert Product Prices in Admin Products List"
|
12334 |
+
msgstr ""
|
12335 |
+
|
12336 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:68
|
12337 |
+
#: includes/settings/wcj-settings-multicurrency.php:191
|
12338 |
+
msgid "Save Calculated Products Prices"
|
12339 |
+
msgstr ""
|
12340 |
+
|
12341 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:83
|
12342 |
+
msgid "WooCommerce Price Filter Compatibility"
|
12343 |
+
msgstr ""
|
12344 |
+
|
12345 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:84
|
12346 |
+
msgid "Add compatibility with WooCommerce Price Filter Widget"
|
12347 |
+
msgstr ""
|
12348 |
+
|
12349 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:90
|
12350 |
+
msgid "Third Party Price Filter Compatibility"
|
12351 |
+
msgstr ""
|
12352 |
+
|
12353 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:91
|
12354 |
+
msgid "Add compatibility with Third Party Price Filter Widgets"
|
12355 |
+
msgstr ""
|
12356 |
+
|
12357 |
+
#: includes/settings/wcj-settings-multicurrency-base-price.php:92
|
12358 |
+
msgid "Requires WooCommerce Price Filter Compatibility option enabled"
|
12359 |
+
msgstr ""
|
12360 |
+
|
12361 |
+
#: includes/settings/wcj-settings-multicurrency.php:23
|
12362 |
+
msgid ""
|
12363 |
+
"Select how you want currency exchange rates to be updated. Possible options "
|
12364 |
+
"are: manually or automatically via Currency Exchange Rates module."
|
12365 |
+
msgstr ""
|
12366 |
+
|
12367 |
+
#: includes/settings/wcj-settings-multicurrency.php:38
|
12368 |
+
msgid "Multicurrency on per Product Basis"
|
12369 |
+
msgstr ""
|
12370 |
+
|
12371 |
+
#: includes/settings/wcj-settings-multicurrency.php:40
|
12372 |
+
msgid ""
|
12373 |
+
"If you enable this option, you will be able to enter prices for products in "
|
12374 |
+
"different currencies directly (i.e. without exchange rates). This will add "
|
12375 |
+
"meta boxes in product edit."
|
12376 |
+
msgstr ""
|
12377 |
+
|
12378 |
+
#: includes/settings/wcj-settings-multicurrency.php:46
|
12379 |
+
msgid "Variable products: list available/active variations only"
|
12380 |
+
msgstr ""
|
12381 |
+
|
12382 |
+
#: includes/settings/wcj-settings-multicurrency.php:47
|
12383 |
+
msgid ""
|
12384 |
+
"Defines which variations are listed on admin product edit page in "
|
12385 |
+
"Multicurrency meta box. Ignored if \"Multicurrency on per Product Basis\" "
|
12386 |
+
"option is disabled."
|
12387 |
+
msgstr ""
|
12388 |
+
|
12389 |
+
#: includes/settings/wcj-settings-multicurrency.php:53
|
12390 |
+
msgid "Add option to make empty price"
|
12391 |
+
msgstr ""
|
12392 |
+
|
12393 |
+
#: includes/settings/wcj-settings-multicurrency.php:59
|
12394 |
+
msgid "Revert Currency to Shop's Default"
|
12395 |
+
msgstr ""
|
12396 |
+
|
12397 |
+
#: includes/settings/wcj-settings-multicurrency.php:60
|
12398 |
+
msgid ""
|
12399 |
+
"Enable this if you want prices to revert back to your shop's default "
|
12400 |
+
"currency, when customer reaches the cart and/or checkout page."
|
12401 |
+
msgstr ""
|
12402 |
+
|
12403 |
+
#: includes/settings/wcj-settings-multicurrency.php:65
|
12404 |
+
msgid "Do not revert"
|
12405 |
+
msgstr ""
|
12406 |
+
|
12407 |
+
#: includes/settings/wcj-settings-multicurrency.php:66
|
12408 |
+
msgid "Revert on cart page only"
|
12409 |
+
msgstr ""
|
12410 |
+
|
12411 |
+
#: includes/settings/wcj-settings-multicurrency.php:67
|
12412 |
+
msgid "Revert on checkout page only"
|
12413 |
+
msgstr ""
|
12414 |
+
|
12415 |
+
#: includes/settings/wcj-settings-multicurrency.php:68
|
12416 |
+
msgid "Revert on both cart & checkout pages"
|
12417 |
+
msgstr ""
|
12418 |
+
|
12419 |
+
#: includes/settings/wcj-settings-multicurrency.php:72
|
12420 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:66
|
12421 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:64
|
12422 |
+
msgid "Rounding"
|
12423 |
+
msgstr ""
|
12424 |
+
|
12425 |
+
#: includes/settings/wcj-settings-multicurrency.php:73
|
12426 |
+
msgid "If using exchange rates, choose rounding here."
|
12427 |
+
msgstr ""
|
12428 |
+
|
12429 |
+
#: includes/settings/wcj-settings-multicurrency.php:78
|
12430 |
+
#: includes/settings/wcj-settings-price-by-country.php:82
|
12431 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:223
|
12432 |
+
msgid "No rounding"
|
12433 |
+
msgstr ""
|
12434 |
+
|
12435 |
+
#: includes/settings/wcj-settings-multicurrency.php:80
|
12436 |
+
#: includes/settings/wcj-settings-price-by-country.php:85
|
12437 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:71
|
12438 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:225
|
12439 |
+
msgid "Round up"
|
12440 |
+
msgstr ""
|
12441 |
+
|
12442 |
+
#: includes/settings/wcj-settings-multicurrency.php:81
|
12443 |
+
#: includes/settings/wcj-settings-price-by-country.php:84
|
12444 |
+
#: includes/settings/wcj-settings-product-price-by-formula.php:72
|
12445 |
+
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:226
|
12446 |
+
msgid "Round down"
|
12447 |
+
msgstr ""
|
12448 |
+
|
12449 |
+
#: includes/settings/wcj-settings-multicurrency.php:85
|
12450 |
+
msgid "Rounding Precision"
|
12451 |
+
msgstr ""
|
12452 |
+
|
12453 |
+
#: includes/settings/wcj-settings-multicurrency.php:86
|
12454 |
+
msgid "If rounding is enabled, set rounding precision here."
|
12455 |
+
msgstr ""
|
12456 |
+
|
12457 |
+
#: includes/settings/wcj-settings-multicurrency.php:93
|
12458 |
+
msgid "Currency Switcher Template"
|
12459 |
+
msgstr ""
|
12460 |
+
|
12461 |
+
#: includes/settings/wcj-settings-multicurrency.php:94
|
12462 |
+
msgid "Set how you want currency switcher to be displayed on frontend."
|
12463 |
+
msgstr ""
|
12464 |
+
|
12465 |
+
#: includes/settings/wcj-settings-multicurrency.php:106
|
12466 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:65
|
12467 |
+
#: includes/settings/wcj-settings-product-msrp.php:105
|
12468 |
+
msgid "Compatibility"
|
12469 |
+
msgstr ""
|
12470 |
+
|
12471 |
+
#: includes/settings/wcj-settings-multicurrency.php:111
|
12472 |
+
msgid "WooCommerce Coupons"
|
12473 |
+
msgstr ""
|
12474 |
+
|
12475 |
+
#: includes/settings/wcj-settings-multicurrency.php:113
|
12476 |
+
msgid ""
|
12477 |
+
"When a fixed coupon is used its value changes according to the current "
|
12478 |
+
"currency"
|
12479 |
+
msgstr ""
|
12480 |
+
|
12481 |
+
#: includes/settings/wcj-settings-multicurrency.php:119
|
12482 |
+
msgid "WooCommerce Smart Coupons"
|
12483 |
+
msgstr ""
|
12484 |
+
|
12485 |
+
#: includes/settings/wcj-settings-multicurrency.php:126
|
12486 |
+
msgid "WooCommerce Price Filter"
|
12487 |
+
msgstr ""
|
12488 |
+
|
12489 |
+
#: includes/settings/wcj-settings-multicurrency.php:128
|
12490 |
+
msgid "Adds Compatibility with Price Filter widget"
|
12491 |
+
msgstr ""
|
12492 |
+
|
12493 |
+
#: includes/settings/wcj-settings-multicurrency.php:134
|
12494 |
+
msgid "Price Sorting with Per Product"
|
12495 |
+
msgstr ""
|
12496 |
+
|
12497 |
+
#: includes/settings/wcj-settings-multicurrency.php:136
|
12498 |
+
msgid "Fixes Price Sorting if Per Product option is enabled"
|
12499 |
+
msgstr ""
|
12500 |
+
|
12501 |
+
#: includes/settings/wcj-settings-multicurrency.php:142
|
12502 |
+
msgid "WooCommerce Import"
|
12503 |
+
msgstr ""
|
12504 |
+
|
12505 |
+
#: includes/settings/wcj-settings-multicurrency.php:144
|
12506 |
+
msgid ""
|
12507 |
+
"Fixes WooCommerce Import Tool preventing it from converting some uppercase "
|
12508 |
+
"meta to lowercase"
|
12509 |
+
msgstr ""
|
12510 |
+
|
12511 |
+
#: includes/settings/wcj-settings-multicurrency.php:150
|
12512 |
+
msgid "WPC Product Bundles"
|
12513 |
+
msgstr ""
|
12514 |
+
|
12515 |
+
#: includes/settings/wcj-settings-multicurrency.php:152
|
12516 |
+
#, php-format
|
12517 |
+
msgid ""
|
12518 |
+
"Adds compatibility with <a href=\"%s\" target=\"_blank\">WPC Product "
|
12519 |
+
"Bundles</a> plugin"
|
12520 |
+
msgstr ""
|
12521 |
+
|
12522 |
+
#: includes/settings/wcj-settings-multicurrency.php:167
|
12523 |
+
msgid "Additional Price Filters"
|
12524 |
+
msgstr ""
|
12525 |
+
|
12526 |
+
#: includes/settings/wcj-settings-multicurrency.php:168
|
12527 |
+
msgid ""
|
12528 |
+
"Add additional price filters here. One per line. Leave blank if not sure."
|
12529 |
+
msgstr ""
|
12530 |
+
|
12531 |
+
#: includes/settings/wcj-settings-multicurrency.php:183
|
12532 |
+
msgid "Save Prices on Exchange Update"
|
12533 |
+
msgstr ""
|
12534 |
+
|
12535 |
+
#: includes/settings/wcj-settings-multicurrency.php:185
|
12536 |
+
msgid ""
|
12537 |
+
"Save min and max prices on exchange rate update, via background processing."
|
12538 |
+
msgstr ""
|
12539 |
+
|
12540 |
+
#: includes/settings/wcj-settings-multicurrency.php:185
|
12541 |
+
msgid ""
|
12542 |
+
"All products with \"per product\" options registered related to the currency "
|
12543 |
+
"will be affected."
|
12544 |
+
msgstr ""
|
12545 |
+
|
12546 |
+
#: includes/settings/wcj-settings-multicurrency.php:205
|
12547 |
+
msgid ""
|
12548 |
+
"One currency probably should be set to current (original) shop currency with "
|
12549 |
+
"an exchange rate of 1."
|
12550 |
+
msgstr ""
|
12551 |
+
|
12552 |
+
#: includes/settings/wcj-settings-multicurrency.php:210
|
12553 |
+
msgid ""
|
12554 |
+
"Press Save changes after setting this option, so new settings fields will be "
|
12555 |
+
"added."
|
12556 |
+
msgstr ""
|
12557 |
+
|
12558 |
+
#: includes/settings/wcj-settings-multicurrency.php:259
|
12559 |
+
msgid "Role Defaults"
|
12560 |
+
msgstr ""
|
12561 |
+
|
12562 |
+
#: includes/settings/wcj-settings-multicurrency.php:266
|
12563 |
+
msgid "Roles"
|
12564 |
+
msgstr ""
|
12565 |
+
|
12566 |
+
#: includes/settings/wcj-settings-multicurrency.php:267
|
12567 |
+
#: includes/settings/wcj-settings-wholesale-price.php:180
|
12568 |
+
msgid "Save settings after you change this option. Leave blank to disable."
|
12569 |
+
msgstr ""
|
12570 |
+
|
12571 |
+
#: includes/settings/wcj-settings-multicurrency.php:290
|
12572 |
+
msgid "No default currency"
|
12573 |
+
msgstr ""
|
12574 |
+
|
12575 |
+
#: includes/settings/wcj-settings-my-account.php:19
|
12576 |
+
msgid "Add Order Status Actions"
|
12577 |
+
msgstr ""
|
12578 |
+
|
12579 |
+
#: includes/settings/wcj-settings-my-account.php:20
|
12580 |
+
msgid "Let your customers change order status manually."
|
12581 |
+
msgstr ""
|
12582 |
+
|
12583 |
+
#: includes/settings/wcj-settings-my-account.php:28
|
12584 |
+
msgid "Add User Role Selection to Registration Form"
|
12585 |
+
msgstr ""
|
12586 |
+
|
12587 |
+
#: includes/settings/wcj-settings-my-account.php:30
|
12588 |
+
msgid "Let your customers choose their user role manually."
|
12589 |
+
msgstr ""
|
12590 |
+
|
12591 |
+
#: includes/settings/wcj-settings-my-account.php:36
|
12592 |
+
msgid "Default user role"
|
12593 |
+
msgstr ""
|
12594 |
+
|
12595 |
+
#: includes/settings/wcj-settings-my-account.php:43
|
12596 |
+
msgid "User roles options"
|
12597 |
+
msgstr ""
|
12598 |
+
|
12599 |
+
#: includes/settings/wcj-settings-my-account.php:57
|
12600 |
+
msgid "Menu & Endpoints Options"
|
12601 |
+
msgstr ""
|
12602 |
+
|
12603 |
+
#: includes/settings/wcj-settings-my-account.php:58
|
12604 |
+
msgid "Tip"
|
12605 |
+
msgstr ""
|
12606 |
+
|
12607 |
+
#: includes/settings/wcj-settings-my-account.php:59
|
12608 |
+
#, php-format
|
12609 |
+
msgid "If you wish to disable some menu items, you can do it in %s."
|
12610 |
+
msgstr ""
|
12611 |
+
|
12612 |
+
#: includes/settings/wcj-settings-my-account.php:61
|
12613 |
+
msgid "WooCommerce > Settings > Advanced > Page setup > Account endpoints"
|
12614 |
+
msgstr ""
|
12615 |
+
|
12616 |
+
#: includes/settings/wcj-settings-my-account.php:66
|
12617 |
+
msgid "Customize Menu & Endpoints"
|
12618 |
+
msgstr ""
|
12619 |
+
|
12620 |
+
#: includes/settings/wcj-settings-my-account.php:77
|
12621 |
+
msgid "Sets title."
|
12622 |
+
msgstr ""
|
12623 |
+
|
12624 |
+
#: includes/settings/wcj-settings-my-account.php:77
|
12625 |
+
msgid "Set empty, to use the default title."
|
12626 |
+
msgstr ""
|
12627 |
+
|
12628 |
+
#: includes/settings/wcj-settings-my-account.php:86
|
12629 |
+
msgid "Customize Menu Order"
|
12630 |
+
msgstr ""
|
12631 |
+
|
12632 |
+
#: includes/settings/wcj-settings-my-account.php:96
|
12633 |
+
#, php-format
|
12634 |
+
msgid "Default: %s"
|
12635 |
+
msgstr ""
|
12636 |
+
|
12637 |
+
#: includes/settings/wcj-settings-my-account.php:103
|
12638 |
+
msgid "Add Custom Menu Items"
|
12639 |
+
msgstr ""
|
12640 |
+
|
12641 |
+
#: includes/settings/wcj-settings-my-account.php:112
|
12642 |
+
msgid "Custom menu items."
|
12643 |
+
msgstr ""
|
12644 |
+
|
12645 |
+
#: includes/settings/wcj-settings-my-account.php:113
|
12646 |
+
#, php-format
|
12647 |
+
msgid "Add in %s format. One per line. E.g.: %s."
|
12648 |
+
msgstr ""
|
12649 |
+
|
12650 |
+
#: includes/settings/wcj-settings-my-account.php:129
|
12651 |
+
#: includes/settings/wcj-settings-my-account.php:134
|
12652 |
+
msgid "Custom Pages"
|
12653 |
+
msgstr ""
|
12654 |
+
|
12655 |
+
#: includes/settings/wcj-settings-my-account.php:141
|
12656 |
+
msgid "Total Pages"
|
12657 |
+
msgstr ""
|
12658 |
+
|
12659 |
+
#: includes/settings/wcj-settings-my-account.php:156
|
12660 |
+
msgid "Custom Page"
|
12661 |
+
msgstr ""
|
12662 |
+
|
12663 |
+
#: includes/settings/wcj-settings-my-account.php:180
|
12664 |
+
#: includes/settings/wcj-settings-my-account.php:185
|
12665 |
+
msgid "Dashboard Customization"
|
12666 |
+
msgstr ""
|
12667 |
+
|
12668 |
+
#: includes/settings/wcj-settings-my-account.php:192
|
12669 |
+
msgid "Custom Dashboard Content"
|
12670 |
+
msgstr ""
|
12671 |
+
|
12672 |
+
#: includes/settings/wcj-settings-my-account.php:193
|
12673 |
+
msgid ""
|
12674 |
+
"This will add content at the beginning of dashboard. If you need to add "
|
12675 |
+
"custom content to the end of the dashboard, use <strong>Custom Info Blocks</"
|
12676 |
+
"strong> section and select <strong>Account dashboard</strong> position."
|
12677 |
+
msgstr ""
|
12678 |
+
|
12679 |
+
#: includes/settings/wcj-settings-my-account.php:194
|
12680 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:115
|
12681 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:127
|
12682 |
+
#: includes/settings/wcj-settings-stock.php:42
|
12683 |
+
#: includes/settings/wcj-settings-stock.php:55
|
12684 |
+
msgid "Ignored if empty."
|
12685 |
+
msgstr ""
|
12686 |
+
|
12687 |
+
#: includes/settings/wcj-settings-my-account.php:201
|
12688 |
+
msgid "Hide \"Hello ...\" Message"
|
12689 |
+
msgstr ""
|
12690 |
+
|
12691 |
+
#: includes/settings/wcj-settings-my-account.php:208
|
12692 |
+
msgid "Hide \"From your account dashboard ...\" Message"
|
12693 |
+
msgstr ""
|
12694 |
+
|
12695 |
+
#: includes/settings/wcj-settings-my-account.php:221
|
12696 |
+
#: includes/settings/wcj-settings-my-account.php:226
|
12697 |
+
msgid "Custom Info Blocks"
|
12698 |
+
msgstr ""
|
12699 |
+
|
12700 |
+
#: includes/settings/wcj-settings-my-account.php:266
|
12701 |
+
msgid "Account content"
|
12702 |
+
msgstr ""
|
12703 |
+
|
12704 |
+
#: includes/settings/wcj-settings-my-account.php:267
|
12705 |
+
msgid "Account dashboard"
|
12706 |
+
msgstr ""
|
12707 |
+
|
12708 |
+
#: includes/settings/wcj-settings-my-account.php:268
|
12709 |
+
msgid "Account navigation"
|
12710 |
+
msgstr ""
|
12711 |
+
|
12712 |
+
#: includes/settings/wcj-settings-my-account.php:269
|
12713 |
+
msgid "After account downloads"
|
12714 |
+
msgstr ""
|
12715 |
+
|
12716 |
+
#: includes/settings/wcj-settings-my-account.php:270
|
12717 |
+
msgid "After account navigation"
|
12718 |
+
msgstr ""
|
12719 |
+
|
12720 |
+
#: includes/settings/wcj-settings-my-account.php:271
|
12721 |
+
msgid "After account orders"
|
12722 |
+
msgstr ""
|
12723 |
+
|
12724 |
+
#: includes/settings/wcj-settings-my-account.php:272
|
12725 |
+
msgid "After account payment methods"
|
12726 |
+
msgstr ""
|
12727 |
+
|
12728 |
+
#: includes/settings/wcj-settings-my-account.php:273
|
12729 |
+
msgid "After available downloads"
|
12730 |
+
msgstr ""
|
12731 |
+
|
12732 |
+
#: includes/settings/wcj-settings-my-account.php:274
|
12733 |
+
msgid "After customer login form"
|
12734 |
+
msgstr ""
|
12735 |
+
|
12736 |
+
#: includes/settings/wcj-settings-my-account.php:275
|
12737 |
+
msgid "After edit account address form"
|
12738 |
+
msgstr ""
|
12739 |
+
|
12740 |
+
#: includes/settings/wcj-settings-my-account.php:276
|
12741 |
+
msgid "After edit account form"
|
12742 |
+
msgstr ""
|
12743 |
+
|
12744 |
+
#: includes/settings/wcj-settings-my-account.php:277
|
12745 |
+
msgid "After my account"
|
12746 |
+
msgstr ""
|
12747 |
+
|
12748 |
+
#: includes/settings/wcj-settings-my-account.php:278
|
12749 |
+
msgid "Available download end"
|
12750 |
+
msgstr ""
|
12751 |
+
|
12752 |
+
#: includes/settings/wcj-settings-my-account.php:279
|
12753 |
+
msgid "Available download start"
|
12754 |
+
msgstr ""
|
12755 |
+
|
12756 |
+
#: includes/settings/wcj-settings-my-account.php:280
|
12757 |
+
msgid "Available downloads"
|
12758 |
+
msgstr ""
|
12759 |
+
|
12760 |
+
#: includes/settings/wcj-settings-my-account.php:281
|
12761 |
+
msgid "Before account downloads"
|
12762 |
+
msgstr ""
|
12763 |
+
|
12764 |
+
#: includes/settings/wcj-settings-my-account.php:282
|
12765 |
+
msgid "Before account navigation"
|
12766 |
+
msgstr ""
|
12767 |
+
|
12768 |
+
#: includes/settings/wcj-settings-my-account.php:283
|
12769 |
+
msgid "Before account orders"
|
12770 |
+
msgstr ""
|
12771 |
+
|
12772 |
+
#: includes/settings/wcj-settings-my-account.php:284
|
12773 |
+
msgid "Before account orders pagination"
|
12774 |
+
msgstr ""
|
12775 |
+
|
12776 |
+
#: includes/settings/wcj-settings-my-account.php:285
|
12777 |
+
msgid "Before account payment methods"
|
12778 |
+
msgstr ""
|
12779 |
+
|
12780 |
+
#: includes/settings/wcj-settings-my-account.php:286
|
12781 |
+
msgid "Before Available downloads"
|
12782 |
+
msgstr ""
|
12783 |
+
|
12784 |
+
#: includes/settings/wcj-settings-my-account.php:287
|
12785 |
+
msgid "Before customer login form"
|
12786 |
+
msgstr ""
|
12787 |
+
|
12788 |
+
#: includes/settings/wcj-settings-my-account.php:288
|
12789 |
+
msgid "Before edit account address form"
|
12790 |
+
msgstr ""
|
12791 |
+
|
12792 |
+
#: includes/settings/wcj-settings-my-account.php:289
|
12793 |
+
msgid "Before edit account form"
|
12794 |
+
msgstr ""
|
12795 |
+
|
12796 |
+
#: includes/settings/wcj-settings-my-account.php:290
|
12797 |
+
msgid "Before my account"
|
12798 |
+
msgstr ""
|
12799 |
+
|
12800 |
+
#: includes/settings/wcj-settings-my-account.php:291
|
12801 |
+
msgid "Edit account form"
|
12802 |
+
msgstr ""
|
12803 |
+
|
12804 |
+
#: includes/settings/wcj-settings-my-account.php:292
|
12805 |
+
msgid "Edit account form end"
|
12806 |
+
msgstr ""
|
12807 |
+
|
12808 |
+
#: includes/settings/wcj-settings-my-account.php:293
|
12809 |
+
msgid "Edit account form start"
|
12810 |
+
msgstr ""
|
12811 |
+
|
12812 |
+
#: includes/settings/wcj-settings-my-account.php:294
|
12813 |
+
msgid "Login form"
|
12814 |
+
msgstr ""
|
12815 |
+
|
12816 |
+
#: includes/settings/wcj-settings-my-account.php:295
|
12817 |
+
msgid "Login form end"
|
12818 |
+
msgstr ""
|
12819 |
+
|
12820 |
+
#: includes/settings/wcj-settings-my-account.php:296
|
12821 |
+
msgid "Login form start"
|
12822 |
+
msgstr ""
|
12823 |
+
|
12824 |
+
#: includes/settings/wcj-settings-my-account.php:297
|
12825 |
+
msgid "Lost password form"
|
12826 |
+
msgstr ""
|
12827 |
+
|
12828 |
+
#: includes/settings/wcj-settings-my-account.php:298
|
12829 |
+
msgid "Register form"
|
12830 |
+
msgstr ""
|
12831 |
+
|
12832 |
+
#: includes/settings/wcj-settings-my-account.php:299
|
12833 |
+
msgid "Register form end"
|
12834 |
+
msgstr ""
|
12835 |
+
|
12836 |
+
#: includes/settings/wcj-settings-my-account.php:300
|
12837 |
+
msgid "Register form start"
|
12838 |
+
msgstr ""
|
12839 |
+
|
12840 |
+
#: includes/settings/wcj-settings-my-account.php:301
|
12841 |
+
msgid "Reset password form"
|
12842 |
+
msgstr ""
|
12843 |
+
|
12844 |
+
#: includes/settings/wcj-settings-offer-price.php:13
|
12845 |
+
msgid "Enable for all products"
|
12846 |
+
msgstr ""
|
12847 |
+
|
12848 |
+
#: includes/settings/wcj-settings-offer-price.php:14
|
12849 |
+
msgid "Enable for all products with empty price"
|
12850 |
+
msgstr ""
|
12851 |
+
|
12852 |
+
#: includes/settings/wcj-settings-offer-price.php:15
|
12853 |
+
msgid "Enable per product"
|
12854 |
+
msgstr ""
|
12855 |
+
|
12856 |
+
#: includes/settings/wcj-settings-offer-price.php:16
|
12857 |
+
msgid "Enable per product category"
|
12858 |
+
msgstr ""
|
12859 |
+
|
12860 |
+
#: includes/settings/wcj-settings-offer-price.php:17
|
12861 |
+
msgid "Enable per product and per product category"
|
12862 |
+
msgstr ""
|
12863 |
+
|
12864 |
+
#: includes/settings/wcj-settings-offer-price.php:28
|
12865 |
+
#, php-format
|
12866 |
+
msgid "Possible values: %s."
|
12867 |
+
msgstr ""
|
12868 |
+
|
12869 |
+
#: includes/settings/wcj-settings-offer-price.php:29
|
12870 |
+
msgid ""
|
12871 |
+
"If enable per product is selected, this will add new meta box to each "
|
12872 |
+
"product's edit page."
|
12873 |
+
msgstr ""
|
12874 |
+
|
12875 |
+
#: includes/settings/wcj-settings-offer-price.php:38
|
12876 |
+
msgid "Product categories"
|
12877 |
+
msgstr ""
|
12878 |
+
|
12879 |
+
#: includes/settings/wcj-settings-offer-price.php:39
|
12880 |
+
msgid "Ignored if enable per product category is not selected above."
|
12881 |
+
msgstr ""
|
12882 |
+
|
12883 |
+
#: includes/settings/wcj-settings-offer-price.php:48
|
12884 |
+
#: includes/settings/wcj-settings-order-min-amount.php:29
|
12885 |
+
#: includes/settings/wcj-settings-order-min-amount.php:36
|
12886 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:98
|
12887 |
+
msgid "Exclude"
|
12888 |
+
msgstr ""
|
12889 |
+
|
12890 |
+
#: includes/settings/wcj-settings-offer-price.php:50
|
12891 |
+
msgid "Excludes out of stock products."
|
12892 |
+
msgstr ""
|
12893 |
+
|
12894 |
+
#: includes/settings/wcj-settings-offer-price.php:60
|
12895 |
+
msgid "Button Options"
|
12896 |
+
msgstr ""
|
12897 |
+
|
12898 |
+
#: includes/settings/wcj-settings-offer-price.php:72
|
12899 |
+
msgid "CSS Class"
|
12900 |
+
msgstr ""
|
12901 |
+
|
12902 |
+
#: includes/settings/wcj-settings-offer-price.php:79
|
12903 |
+
msgid "CSS Style"
|
12904 |
+
msgstr ""
|
12905 |
+
|
12906 |
+
#: includes/settings/wcj-settings-offer-price.php:87
|
12907 |
+
msgid "Position On Single Product Page"
|
12908 |
+
msgstr ""
|
12909 |
+
|
12910 |
+
#: includes/settings/wcj-settings-offer-price.php:93
|
12911 |
+
#: includes/settings/wcj-settings-product-custom-info.php:102
|
12912 |
+
#: includes/settings/wcj-settings-upsells.php:58
|
12913 |
+
msgid "Before single product"
|
12914 |
+
msgstr ""
|
12915 |
+
|
12916 |
+
#: includes/settings/wcj-settings-offer-price.php:96
|
12917 |
+
#: includes/settings/wcj-settings-product-custom-info.php:107
|
12918 |
+
msgid "Before add to cart form"
|
12919 |
+
msgstr ""
|
12920 |
+
|
12921 |
+
#: includes/settings/wcj-settings-offer-price.php:97
|
12922 |
+
#: includes/settings/wcj-settings-product-custom-info.php:110
|
12923 |
+
msgid "After add to cart form"
|
12924 |
+
msgstr ""
|
12925 |
+
|
12926 |
+
#: includes/settings/wcj-settings-offer-price.php:99
|
12927 |
+
#: includes/settings/wcj-settings-product-custom-info.php:106
|
12928 |
+
#: includes/settings/wcj-settings-upsells.php:62
|
12929 |
+
msgid "After single product"
|
12930 |
+
msgstr ""
|
12931 |
+
|
12932 |
+
#: includes/settings/wcj-settings-offer-price.php:103
|
12933 |
+
#: includes/settings/wcj-settings-offer-price.php:123
|
12934 |
+
msgid "Position Priority (i.e. Order)"
|
12935 |
+
msgstr ""
|
12936 |
+
|
12937 |
+
#: includes/settings/wcj-settings-offer-price.php:109
|
12938 |
+
msgid "Position On Archive Pages"
|
12939 |
+
msgstr ""
|
12940 |
+
|
12941 |
+
#: includes/settings/wcj-settings-offer-price.php:110
|
12942 |
+
msgid "Possible values: Do not add; Before product; After product."
|
12943 |
+
msgstr ""
|
12944 |
+
|
12945 |
+
#: includes/settings/wcj-settings-offer-price.php:130
|
12946 |
+
msgid "Advanced: Custom Position(s)"
|
12947 |
+
msgstr ""
|
12948 |
+
|
12949 |
+
#: includes/settings/wcj-settings-offer-price.php:131
|
12950 |
+
msgid ""
|
12951 |
+
"Add custom hook. If adding more than one hook, separate with vertical bar "
|
12952 |
+
"( | ). Ignored if empty."
|
12953 |
+
msgstr ""
|
12954 |
+
|
12955 |
+
#: includes/settings/wcj-settings-offer-price.php:140
|
12956 |
+
msgid "Custom Position Priority (i.e. Order)"
|
12957 |
+
msgstr ""
|
12958 |
+
|
12959 |
+
#: includes/settings/wcj-settings-offer-price.php:141
|
12960 |
+
msgid ""
|
12961 |
+
"Add custom hook priority. If adding more than one hook, separate with "
|
12962 |
+
"vertical bar ( | )."
|
12963 |
+
msgstr ""
|
12964 |
+
|
12965 |
+
#: includes/settings/wcj-settings-offer-price.php:153
|
12966 |
+
msgid "Form and Notice Options"
|
12967 |
+
msgstr ""
|
12968 |
+
|
12969 |
+
#: includes/settings/wcj-settings-offer-price.php:158
|
12970 |
+
msgid "Price Input"
|
12971 |
+
msgstr ""
|
12972 |
+
|
12973 |
+
#: includes/settings/wcj-settings-offer-price.php:198
|
12974 |
+
msgid "Customer Email"
|
12975 |
+
msgstr ""
|
12976 |
+
|
12977 |
+
#: includes/settings/wcj-settings-offer-price.php:222
|
12978 |
+
msgid "Send a Copy to Customer Checkbox"
|
12979 |
+
msgstr ""
|
12980 |
+
|
12981 |
+
#: includes/settings/wcj-settings-offer-price.php:230
|
12982 |
+
msgid "Form Header"
|
12983 |
+
msgstr ""
|
12984 |
+
|
12985 |
+
#: includes/settings/wcj-settings-offer-price.php:238
|
12986 |
+
msgid "Form Button Label"
|
12987 |
+
msgstr ""
|
12988 |
+
|
12989 |
+
#: includes/settings/wcj-settings-offer-price.php:245
|
12990 |
+
msgid "Form Footer"
|
12991 |
+
msgstr ""
|
12992 |
+
|
12993 |
+
#: includes/settings/wcj-settings-offer-price.php:252
|
12994 |
+
msgid "Required HTML"
|
12995 |
+
msgstr ""
|
12996 |
+
|
12997 |
+
#: includes/settings/wcj-settings-offer-price.php:259
|
12998 |
+
msgid "Customer Notice"
|
12999 |
+
msgstr ""
|
13000 |
+
|
13001 |
+
#: includes/settings/wcj-settings-offer-price.php:270
|
13002 |
+
msgid "Styling Options"
|
13003 |
+
msgstr ""
|
13004 |
+
|
13005 |
+
#: includes/settings/wcj-settings-offer-price.php:275
|
13006 |
+
msgid "Form Width"
|
13007 |
+
msgstr ""
|
13008 |
+
|
13009 |
+
#: includes/settings/wcj-settings-offer-price.php:281
|
13010 |
+
msgid "Header Background Color"
|
13011 |
+
msgstr ""
|
13012 |
+
|
13013 |
+
#: includes/settings/wcj-settings-offer-price.php:287
|
13014 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:66
|
13015 |
+
msgid "Header Text Color"
|
13016 |
+
msgstr ""
|
13017 |
+
|
13018 |
+
#: includes/settings/wcj-settings-offer-price.php:293
|
13019 |
+
msgid "Footer Background Color"
|
13020 |
+
msgstr ""
|
13021 |
+
|
13022 |
+
#: includes/settings/wcj-settings-offer-price.php:299
|
13023 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:38
|
13024 |
+
msgid "Footer Text Color"
|
13025 |
+
msgstr ""
|
13026 |
+
|
13027 |
+
#: includes/settings/wcj-settings-offer-price.php:314
|
13028 |
+
msgid "Email Recipient"
|
13029 |
+
msgstr ""
|
13030 |
+
|
13031 |
+
#: includes/settings/wcj-settings-offer-price.php:315
|
13032 |
+
msgid "Can be comma separated list."
|
13033 |
+
msgstr ""
|
13034 |
+
|
13035 |
+
#: includes/settings/wcj-settings-offer-price.php:317
|
13036 |
+
#, php-format
|
13037 |
+
msgid "Use %s to send to administrator email: %s."
|
13038 |
+
msgstr ""
|
13039 |
+
|
13040 |
+
#: includes/settings/wcj-settings-offer-price.php:351
|
13041 |
+
#: includes/settings/wcj-settings-product-by-condition.php:57
|
13042 |
+
#: includes/settings/wcj-settings-product-msrp.php:86
|
13043 |
+
msgid "Admin Options"
|
13044 |
+
msgstr ""
|
13045 |
+
|
13046 |
+
#: includes/settings/wcj-settings-offer-price.php:356
|
13047 |
+
msgid "Offer Price History Meta Box Columns"
|
13048 |
+
msgstr ""
|
13049 |
+
|
13050 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:20
|
13051 |
+
msgid "Enable the module to add custom statuses to the list."
|
13052 |
+
msgstr ""
|
13053 |
+
|
13054 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:21
|
13055 |
+
msgid ""
|
13056 |
+
"You can change the default order status here. However payment gateways can "
|
13057 |
+
"change this status immediately on order creation. E.g. BACS gateway will "
|
13058 |
+
"change status to On-hold."
|
13059 |
+
msgstr ""
|
13060 |
+
|
13061 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:25
|
13062 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:43
|
13063 |
+
msgid "No changes"
|
13064 |
+
msgstr ""
|
13065 |
+
|
13066 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:28
|
13067 |
+
msgid "Add All Statuses to Admin Order Bulk Actions"
|
13068 |
+
msgstr ""
|
13069 |
+
|
13070 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:30
|
13071 |
+
msgid ""
|
13072 |
+
"If you wish to add custom statuses to admin Orders page bulk actions, enable "
|
13073 |
+
"the checkbox here."
|
13074 |
+
msgstr ""
|
13075 |
+
|
13076 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:36
|
13077 |
+
msgid "Add Custom Statuses to Admin Reports"
|
13078 |
+
msgstr ""
|
13079 |
+
|
13080 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:38
|
13081 |
+
msgid ""
|
13082 |
+
"If you wish to add custom statuses to admin reports, enable the checkbox "
|
13083 |
+
"here."
|
13084 |
+
msgstr ""
|
13085 |
+
|
13086 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:44
|
13087 |
+
msgid "Make Custom Status Orders Editable"
|
13088 |
+
msgstr ""
|
13089 |
+
|
13090 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:46
|
13091 |
+
msgid ""
|
13092 |
+
"By default orders with custom statuses are not editable (same like with "
|
13093 |
+
"standard WooCommerce Completed status). If you wish to make custom status "
|
13094 |
+
"orders editable, enable the checkbox here."
|
13095 |
+
msgstr ""
|
13096 |
+
|
13097 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:54
|
13098 |
+
msgid "\"Processing\" and \"Complete\" Action Buttons"
|
13099 |
+
msgstr ""
|
13100 |
+
|
13101 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:55
|
13102 |
+
msgid ""
|
13103 |
+
"By default, when order has custom status, \"Processing\" and \"Complete\" "
|
13104 |
+
"action buttons are hidden. You can enable it here. Possible values are: Show "
|
13105 |
+
"both; Show \"Processing\" only; Show \"Complete\" only; Hide (default)."
|
13106 |
+
msgstr ""
|
13107 |
+
|
13108 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:60
|
13109 |
+
msgid "Show both"
|
13110 |
+
msgstr ""
|
13111 |
+
|
13112 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:61
|
13113 |
+
msgid "Show \"Processing\" only"
|
13114 |
+
msgstr ""
|
13115 |
+
|
13116 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:62
|
13117 |
+
msgid "Show \"Complete\" only"
|
13118 |
+
msgstr ""
|
13119 |
+
|
13120 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:69
|
13121 |
+
msgid "Add Custom Statuses to Admin Order List Action Buttons"
|
13122 |
+
msgstr ""
|
13123 |
+
|
13124 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:71
|
13125 |
+
msgid ""
|
13126 |
+
"If you wish to add custom statuses buttons to the admin Orders page action "
|
13127 |
+
"buttons (Actions column), enable the checkbox here."
|
13128 |
+
msgstr ""
|
13129 |
+
|
13130 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:79
|
13131 |
+
msgid "Enable Colors"
|
13132 |
+
msgstr ""
|
13133 |
+
|
13134 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:80
|
13135 |
+
msgid "Choose if you want the buttons to have colors."
|
13136 |
+
msgstr ""
|
13137 |
+
|
13138 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:87
|
13139 |
+
msgid "Enable Colors in Status Column"
|
13140 |
+
msgstr ""
|
13141 |
+
|
13142 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:89
|
13143 |
+
msgid "Enable this if you want the statuses in Status column to have colors."
|
13144 |
+
msgstr ""
|
13145 |
+
|
13146 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:96
|
13147 |
+
msgid "Add Custom Statuses Buttons to Admin Order Preview Actions"
|
13148 |
+
msgstr ""
|
13149 |
+
|
13150 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:98
|
13151 |
+
msgid ""
|
13152 |
+
"If you wish to add custom statuses buttons to the admin orders preview page, "
|
13153 |
+
"enable the checkbox here."
|
13154 |
+
msgstr ""
|
13155 |
+
|
13156 |
+
#: includes/settings/wcj-settings-order-min-amount.php:16
|
13157 |
+
msgid "This section lets you set minimum order amount."
|
13158 |
+
msgstr ""
|
13159 |
+
|
13160 |
+
#: includes/settings/wcj-settings-order-min-amount.php:20
|
13161 |
+
msgid "Amount"
|
13162 |
+
msgstr ""
|
13163 |
+
|
13164 |
+
#: includes/settings/wcj-settings-order-min-amount.php:21
|
13165 |
+
msgid "Minimum order amount. Set to 0 to disable."
|
13166 |
+
msgstr ""
|
13167 |
+
|
13168 |
+
#: includes/settings/wcj-settings-order-min-amount.php:28
|
13169 |
+
msgid "Exclude Shipping from Cart Total"
|
13170 |
+
msgstr ""
|
13171 |
+
|
13172 |
+
#: includes/settings/wcj-settings-order-min-amount.php:35
|
13173 |
+
msgid "Exclude Discounts from Cart Total"
|
13174 |
+
msgstr ""
|
13175 |
+
|
13176 |
+
#: includes/settings/wcj-settings-order-min-amount.php:42
|
13177 |
+
msgid "Error message"
|
13178 |
+
msgstr ""
|
13179 |
+
|
13180 |
+
#: includes/settings/wcj-settings-order-min-amount.php:44
|
13181 |
+
#: includes/settings/wcj-settings-order-min-amount.php:61
|
13182 |
+
#, php-format
|
13183 |
+
msgid ""
|
13184 |
+
"Message to customer if order is below minimum amount. Default: You must have "
|
13185 |
+
"an order with a minimum of %s to place your order, your current order total "
|
13186 |
+
"is %s."
|
13187 |
+
msgstr ""
|
13188 |
+
|
13189 |
+
#: includes/settings/wcj-settings-order-min-amount.php:52
|
13190 |
+
msgid "Add notice to cart page also"
|
13191 |
+
msgstr ""
|
13192 |
+
|
13193 |
+
#: includes/settings/wcj-settings-order-min-amount.php:59
|
13194 |
+
msgid "Message on cart page"
|
13195 |
+
msgstr ""
|
13196 |
+
|
13197 |
+
#: includes/settings/wcj-settings-order-min-amount.php:70
|
13198 |
+
msgid "Cart notice method"
|
13199 |
+
msgstr ""
|
13200 |
+
|
13201 |
+
#: includes/settings/wcj-settings-order-min-amount.php:80
|
13202 |
+
msgid "Cart notice type"
|
13203 |
+
msgstr ""
|
13204 |
+
|
13205 |
+
#: includes/settings/wcj-settings-order-min-amount.php:85
|
13206 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:55
|
13207 |
+
msgid "Notice"
|
13208 |
+
msgstr ""
|
13209 |
+
|
13210 |
+
#: includes/settings/wcj-settings-order-min-amount.php:86
|
13211 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:56
|
13212 |
+
msgid "Error"
|
13213 |
+
msgstr ""
|
13214 |
+
|
13215 |
+
#: includes/settings/wcj-settings-order-min-amount.php:90
|
13216 |
+
msgid ""
|
13217 |
+
"Stop customer from seeing the Checkout page if minimum amount not reached"
|
13218 |
+
msgstr ""
|
13219 |
+
|
13220 |
+
#: includes/settings/wcj-settings-order-min-amount.php:91
|
13221 |
+
msgid "Redirect back to Cart page"
|
13222 |
+
msgstr ""
|
13223 |
+
|
13224 |
+
#: includes/settings/wcj-settings-order-min-amount.php:101
|
13225 |
+
msgid "Order Minimum Amount by User Role"
|
13226 |
+
msgstr ""
|
13227 |
+
|
13228 |
+
#: includes/settings/wcj-settings-order-numbers.php:17
|
13229 |
+
msgid ""
|
13230 |
+
"This section lets you enable sequential order numbering, set custom number "
|
13231 |
+
"prefix, suffix and width."
|
13232 |
+
msgstr ""
|
13233 |
+
|
13234 |
+
#: includes/settings/wcj-settings-order-numbers.php:21
|
13235 |
+
#: includes/settings/wcj-settings-sku.php:22
|
13236 |
+
msgid "Number Generation"
|
13237 |
+
msgstr ""
|
13238 |
+
|
13239 |
+
#: includes/settings/wcj-settings-order-numbers.php:26
|
13240 |
+
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:22
|
13241 |
+
#: includes/settings/wcj-settings-sku.php:28
|
13242 |
+
msgid "Sequential"
|
13243 |
+
msgstr ""
|
13244 |
+
|
13245 |
+
#: includes/settings/wcj-settings-order-numbers.php:28
|
13246 |
+
#: includes/settings/wcj-settings-sku.php:29
|
13247 |
+
msgid "Pseudorandom - Hash (max 10 digits)"
|
13248 |
+
msgstr ""
|
13249 |
+
|
13250 |
+
#: includes/settings/wcj-settings-order-numbers.php:32
|
13251 |
+
msgid "Sequential: Next Order Number"
|
13252 |
+
msgstr ""
|
13253 |
+
|
13254 |
+
#: includes/settings/wcj-settings-order-numbers.php:33
|
13255 |
+
msgid "Next new order will be given this number."
|
13256 |
+
msgstr ""
|
13257 |
+
|
13258 |
+
#: includes/settings/wcj-settings-order-numbers.php:33
|
13259 |
+
msgid "Use Renumerate Orders tool for existing orders."
|
13260 |
+
msgstr ""
|
13261 |
+
|
13262 |
+
#: includes/settings/wcj-settings-order-numbers.php:34
|
13263 |
+
#: includes/settings/wcj-settings-order-numbers.php:41
|
13264 |
+
msgid "This will be ignored if sequential order numbering is disabled."
|
13265 |
+
msgstr ""
|
13266 |
+
|
13267 |
+
#: includes/settings/wcj-settings-order-numbers.php:40
|
13268 |
+
msgid "Sequential: Reset Counter"
|
13269 |
+
msgstr ""
|
13270 |
+
|
13271 |
+
#: includes/settings/wcj-settings-order-numbers.php:47
|
13272 |
+
msgid "Daily"
|
13273 |
+
msgstr ""
|
13274 |
+
|
13275 |
+
#: includes/settings/wcj-settings-order-numbers.php:48
|
13276 |
+
msgid "Monthly"
|
13277 |
+
msgstr ""
|
13278 |
+
|
13279 |
+
#: includes/settings/wcj-settings-order-numbers.php:49
|
13280 |
+
msgid "Yearly"
|
13281 |
+
msgstr ""
|
13282 |
+
|
13283 |
+
#: includes/settings/wcj-settings-order-numbers.php:53
|
13284 |
+
msgid "Order Number Custom Prefix"
|
13285 |
+
msgstr ""
|
13286 |
+
|
13287 |
+
#: includes/settings/wcj-settings-order-numbers.php:54
|
13288 |
+
msgid ""
|
13289 |
+
"Prefix before order number (optional). This will change the prefixes for all "
|
13290 |
+
"existing orders."
|
13291 |
+
msgstr ""
|
13292 |
+
|
13293 |
+
#: includes/settings/wcj-settings-order-numbers.php:60
|
13294 |
+
msgid "Order Number Date Prefix"
|
13295 |
+
msgstr ""
|
13296 |
+
|
13297 |
+
#: includes/settings/wcj-settings-order-numbers.php:62
|
13298 |
+
msgid ""
|
13299 |
+
"Date prefix before order number (optional). This will change the prefixes "
|
13300 |
+
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
13301 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
13302 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
13303 |
+
"d- or mdy."
|
13304 |
+
msgstr ""
|
13305 |
+
|
13306 |
+
#: includes/settings/wcj-settings-order-numbers.php:69
|
13307 |
+
msgid "Order Number Width"
|
13308 |
+
msgstr ""
|
13309 |
+
|
13310 |
+
#: includes/settings/wcj-settings-order-numbers.php:71
|
13311 |
+
msgid ""
|
13312 |
+
"Minimum width of number without prefix (zeros will be added to the left "
|
13313 |
+
"side). This will change the minimum width of order number for all existing "
|
13314 |
+
"orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
|
13315 |
+
"Leave zero to disable."
|
13316 |
+
msgstr ""
|
13317 |
+
|
13318 |
+
#: includes/settings/wcj-settings-order-numbers.php:78
|
13319 |
+
msgid "Order Number Custom Suffix"
|
13320 |
+
msgstr ""
|
13321 |
+
|
13322 |
+
#: includes/settings/wcj-settings-order-numbers.php:80
|
13323 |
+
msgid ""
|
13324 |
+
"Suffix after order number (optional). This will change the suffixes for all "
|
13325 |
+
"existing orders."
|
13326 |
+
msgstr ""
|
13327 |
+
|
13328 |
+
#: includes/settings/wcj-settings-order-numbers.php:87
|
13329 |
+
msgid "Order Number Date Suffix"
|
13330 |
+
msgstr ""
|
13331 |
+
|
13332 |
+
#: includes/settings/wcj-settings-order-numbers.php:89
|
13333 |
+
msgid ""
|
13334 |
+
"Date suffix after order number (optional). This will change the suffixes for "
|
13335 |
+
"all existing orders. Value is passed directly to PHP `date` function, so "
|
13336 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
13337 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
13338 |
+
"d- or mdy."
|
13339 |
+
msgstr ""
|
13340 |
+
|
13341 |
+
#: includes/settings/wcj-settings-order-numbers.php:96
|
13342 |
+
msgid "Use MySQL Transaction"
|
13343 |
+
msgstr ""
|
13344 |
+
|
13345 |
+
#: includes/settings/wcj-settings-order-numbers.php:98
|
13346 |
+
msgid ""
|
13347 |
+
"This should be enabled if you have a lot of simultaneous orders in your shop "
|
13348 |
+
"- to prevent duplicate order numbers (sequential)."
|
13349 |
+
msgstr ""
|
13350 |
+
|
13351 |
+
#: includes/settings/wcj-settings-order-numbers.php:104
|
13352 |
+
msgid "Enable Order Tracking by Custom Number"
|
13353 |
+
msgstr ""
|
13354 |
+
|
13355 |
+
#: includes/settings/wcj-settings-order-numbers.php:111
|
13356 |
+
msgid "Enable Order Admin Search by Custom Number"
|
13357 |
+
msgstr ""
|
13358 |
+
|
13359 |
+
#: includes/settings/wcj-settings-order-numbers.php:118
|
13360 |
+
msgid "Enable Editable Order Number Meta Box"
|
13361 |
+
msgstr ""
|
13362 |
+
|
13363 |
+
#: includes/settings/wcj-settings-order-numbers.php:127
|
13364 |
+
msgid "Minimal Order ID"
|
13365 |
+
msgstr ""
|
13366 |
+
|
13367 |
+
#: includes/settings/wcj-settings-order-numbers.php:128
|
13368 |
+
msgid ""
|
13369 |
+
"If you wish to disable order numbering for some (older) orders, you can set "
|
13370 |
+
"order ID to start here."
|
13371 |
+
msgstr ""
|
13372 |
+
|
13373 |
+
#: includes/settings/wcj-settings-order-numbers.php:129
|
13374 |
+
msgid "Set to zero to enable numbering for all orders."
|
13375 |
+
msgstr ""
|
13376 |
+
|
13377 |
+
#: includes/settings/wcj-settings-order-numbers.php:140
|
13378 |
+
msgid "Orders Renumerate Tool Options"
|
13379 |
+
msgstr ""
|
13380 |
+
|
13381 |
+
#: includes/settings/wcj-settings-order-numbers.php:145
|
13382 |
+
msgid "Sort by"
|
13383 |
+
msgstr ""
|
13384 |
+
|
13385 |
+
#: includes/settings/wcj-settings-order-numbers.php:152
|
13386 |
+
msgid "Last modified date"
|
13387 |
+
msgstr ""
|
13388 |
+
|
13389 |
+
#: includes/settings/wcj-settings-order-numbers.php:157
|
13390 |
+
msgid "Sort Ascending or Descending"
|
13391 |
+
msgstr ""
|
13392 |
+
|
13393 |
+
#: includes/settings/wcj-settings-order-quantities.php:22
|
13394 |
+
msgid "Decimal Quantities"
|
13395 |
+
msgstr ""
|
13396 |
+
|
13397 |
+
#: includes/settings/wcj-settings-order-quantities.php:24
|
13398 |
+
msgid ""
|
13399 |
+
"Save module's settings after enabling this option, so you could enter "
|
13400 |
+
"decimal quantities in step, min and/or max quantity options."
|
13401 |
+
msgstr ""
|
13402 |
+
|
13403 |
+
#: includes/settings/wcj-settings-order-quantities.php:30
|
13404 |
+
msgid "Force Initial Quantity on Single Product Page"
|
13405 |
+
msgstr ""
|
13406 |
+
|
13407 |
+
#: includes/settings/wcj-settings-order-quantities.php:35
|
13408 |
+
msgid "Do not force"
|
13409 |
+
msgstr ""
|
13410 |
+
|
13411 |
+
#: includes/settings/wcj-settings-order-quantities.php:36
|
13412 |
+
msgid "Force to min quantity"
|
13413 |
+
msgstr ""
|
13414 |
+
|
13415 |
+
#: includes/settings/wcj-settings-order-quantities.php:37
|
13416 |
+
msgid "Force to max quantity"
|
13417 |
+
msgstr ""
|
13418 |
+
|
13419 |
+
#: includes/settings/wcj-settings-order-quantities.php:41
|
13420 |
+
msgid "Enable Cart Notices"
|
13421 |
+
msgstr ""
|
13422 |
+
|
13423 |
+
#: includes/settings/wcj-settings-order-quantities.php:48
|
13424 |
+
msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
|
13425 |
+
msgstr ""
|
13426 |
+
|
13427 |
+
#: includes/settings/wcj-settings-order-quantities.php:50
|
13428 |
+
msgid "Will be redirected to cart page."
|
13429 |
+
msgstr ""
|
13430 |
+
|
13431 |
+
#: includes/settings/wcj-settings-order-quantities.php:57
|
13432 |
+
msgid "Action on variation change"
|
13433 |
+
msgstr ""
|
13434 |
+
|
13435 |
+
#: includes/settings/wcj-settings-order-quantities.php:62
|
13436 |
+
#: includes/settings/wcj-settings-product-tabs.php:27
|
13437 |
+
msgid "Do nothing"
|
13438 |
+
msgstr ""
|
13439 |
+
|
13440 |
+
#: includes/settings/wcj-settings-order-quantities.php:63
|
13441 |
+
msgid "Reset to min quantity"
|
13442 |
+
msgstr ""
|
13443 |
+
|
13444 |
+
#: includes/settings/wcj-settings-order-quantities.php:64
|
13445 |
+
msgid "Reset to max quantity"
|
13446 |
+
msgstr ""
|
13447 |
+
|
13448 |
+
#: includes/settings/wcj-settings-order-quantities.php:68
|
13449 |
+
msgid "Force on add to cart"
|
13450 |
+
msgstr ""
|
13451 |
+
|
13452 |
+
#: includes/settings/wcj-settings-order-quantities.php:69
|
13453 |
+
msgid "Force quantity correction on add to cart button click"
|
13454 |
+
msgstr ""
|
13455 |
+
|
13456 |
+
#: includes/settings/wcj-settings-order-quantities.php:79
|
13457 |
+
msgid "Minimum Quantity Options"
|
13458 |
+
msgstr ""
|
13459 |
+
|
13460 |
+
#: includes/settings/wcj-settings-order-quantities.php:91
|
13461 |
+
#: includes/settings/wcj-settings-order-quantities.php:149
|
13462 |
+
msgid "Cart Total Quantity"
|
13463 |
+
msgstr ""
|
13464 |
+
|
13465 |
+
#: includes/settings/wcj-settings-order-quantities.php:92
|
13466 |
+
#: includes/settings/wcj-settings-order-quantities.php:108
|
13467 |
+
#: includes/settings/wcj-settings-order-quantities.php:150
|
13468 |
+
#: includes/settings/wcj-settings-order-quantities.php:166
|
13469 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:35
|
13470 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:35
|
13471 |
+
msgid "Set to zero to disable."
|
13472 |
+
msgstr ""
|
13473 |
+
|
13474 |
+
#: includes/settings/wcj-settings-order-quantities.php:99
|
13475 |
+
#: includes/settings/wcj-settings-order-quantities.php:157
|
13476 |
+
msgid "Message - Cart Total Quantity"
|
13477 |
+
msgstr ""
|
13478 |
+
|
13479 |
+
#: includes/settings/wcj-settings-order-quantities.php:107
|
13480 |
+
#: includes/settings/wcj-settings-order-quantities.php:165
|
13481 |
+
msgid "Per Item Quantity"
|
13482 |
+
msgstr ""
|
13483 |
+
|
13484 |
+
#: includes/settings/wcj-settings-order-quantities.php:116
|
13485 |
+
#: includes/settings/wcj-settings-order-quantities.php:174
|
13486 |
+
msgid "Per Item Quantity on Per Product Basis"
|
13487 |
+
msgstr ""
|
13488 |
+
|
13489 |
+
#: includes/settings/wcj-settings-order-quantities.php:125
|
13490 |
+
#: includes/settings/wcj-settings-order-quantities.php:183
|
13491 |
+
msgid "Message - Per Item Quantity"
|
13492 |
+
msgstr ""
|
13493 |
+
|
13494 |
+
#: includes/settings/wcj-settings-order-quantities.php:137
|
13495 |
+
msgid "Maximum Quantity Options"
|
13496 |
+
msgstr ""
|
13497 |
+
|
13498 |
+
#: includes/settings/wcj-settings-order-quantities.php:195
|
13499 |
+
msgid "Quantity Step Options"
|
13500 |
+
msgstr ""
|
13501 |
+
|
13502 |
+
#: includes/settings/wcj-settings-order-quantities.php:207
|
13503 |
+
msgid "Step"
|
13504 |
+
msgstr ""
|
13505 |
+
|
13506 |
+
#: includes/settings/wcj-settings-order-quantities.php:224
|
13507 |
+
msgid "Additional Validation"
|
13508 |
+
msgstr ""
|
13509 |
+
|
13510 |
+
#: includes/settings/wcj-settings-order-quantities.php:243
|
13511 |
+
msgid "\"Single Item Cart\" Options"
|
13512 |
+
msgstr ""
|
13513 |
+
|
13514 |
+
#: includes/settings/wcj-settings-order-quantities.php:248
|
13515 |
+
msgid "Enable \"Single Item Cart\" Mode"
|
13516 |
+
msgstr ""
|
13517 |
+
|
13518 |
+
#: includes/settings/wcj-settings-order-quantities.php:250
|
13519 |
+
msgid ""
|
13520 |
+
"When enabled, only one item will be allowed to be added to the cart "
|
13521 |
+
"(quantity is not checked)."
|
13522 |
+
msgstr ""
|
13523 |
+
|
13524 |
+
#: includes/settings/wcj-settings-orders.php:26
|
13525 |
+
#: includes/settings/wcj-settings-orders.php:31
|
13526 |
+
msgid "Admin Order Currency"
|
13527 |
+
msgstr ""
|
13528 |
+
|
13529 |
+
#: includes/settings/wcj-settings-orders.php:33
|
13530 |
+
msgid ""
|
13531 |
+
"When enabled this will add \"Booster: Orders\" metabox to each order's edit "
|
13532 |
+
"page."
|
13533 |
+
msgstr ""
|
13534 |
+
|
13535 |
+
#: includes/settings/wcj-settings-orders.php:39
|
13536 |
+
msgid "Admin Order Currency Method"
|
13537 |
+
msgstr ""
|
13538 |
+
|
13539 |
+
#: includes/settings/wcj-settings-orders.php:40
|
13540 |
+
msgid ""
|
13541 |
+
"Choose if you want changed order currency to be saved directly to DB, or if "
|
13542 |
+
"you want to use filter. When using <em>filter</em> method, changes will be "
|
13543 |
+
"active only when \"Admin Order Currency\" section is enabled. When using "
|
13544 |
+
"<em>directly to DB</em> method, changes will be permanent, that is even if "
|
13545 |
+
"Booster plugin is removed."
|
13546 |
+
msgstr ""
|
13547 |
+
|
13548 |
+
#: includes/settings/wcj-settings-orders.php:46
|
13549 |
+
msgid "Directly to DB"
|
13550 |
+
msgstr ""
|
13551 |
+
|
13552 |
+
#: includes/settings/wcj-settings-orders.php:54
|
13553 |
+
#: includes/settings/wcj-settings-orders.php:59
|
13554 |
+
msgid "Admin Order Navigation"
|
13555 |
+
msgstr ""
|
13556 |
+
|
13557 |
+
#: includes/settings/wcj-settings-orders.php:61
|
13558 |
+
msgid ""
|
13559 |
+
"When enabled, this will add \"Booster: Order Navigation\" metabox to each "
|
13560 |
+
"order's admin edit page."
|
13561 |
+
msgstr ""
|
13562 |
+
|
13563 |
+
#: includes/settings/wcj-settings-orders.php:62
|
13564 |
+
msgid "Metabox will contain \"Previous order\" and \"Next order\" links."
|
13565 |
+
msgstr ""
|
13566 |
+
|
13567 |
+
#: includes/settings/wcj-settings-orders.php:72
|
13568 |
+
msgid "Editable Orders"
|
13569 |
+
msgstr ""
|
13570 |
+
|
13571 |
+
#: includes/settings/wcj-settings-orders.php:73
|
13572 |
+
msgid "This section allows you to set which order statuses are editable."
|
13573 |
+
msgstr ""
|
13574 |
+
|
13575 |
+
#: includes/settings/wcj-settings-orders.php:78
|
13576 |
+
msgid "Editable Orders Statuses"
|
13577 |
+
msgstr ""
|
13578 |
+
|
13579 |
+
#: includes/settings/wcj-settings-orders.php:91
|
13580 |
+
msgid "Auto-draft"
|
13581 |
+
msgstr ""
|
13582 |
+
|
13583 |
+
#: includes/settings/wcj-settings-orders.php:98
|
13584 |
+
msgid "Orders Auto-Complete"
|
13585 |
+
msgstr ""
|
13586 |
+
|
13587 |
+
#: includes/settings/wcj-settings-orders.php:100
|
13588 |
+
msgid "This section lets you enable orders auto-complete function."
|
13589 |
+
msgstr ""
|
13590 |
+
|
13591 |
+
#: includes/settings/wcj-settings-orders.php:104
|
13592 |
+
msgid "Auto-complete all WooCommerce orders"
|
13593 |
+
msgstr ""
|
13594 |
+
|
13595 |
+
#: includes/settings/wcj-settings-orders.php:106
|
13596 |
+
msgid ""
|
13597 |
+
"E.g. if you sell digital products then you are not shipping anything and you "
|
13598 |
+
"may want auto-complete all your orders."
|
13599 |
+
msgstr ""
|
13600 |
+
|
13601 |
+
#: includes/settings/wcj-settings-orders.php:113
|
13602 |
+
msgid ""
|
13603 |
+
"Fill this, if you want orders to be auto-completed for selected payment "
|
13604 |
+
"methods only. Leave blank to auto-complete all orders."
|
13605 |
+
msgstr ""
|
13606 |
+
|
13607 |
+
#: includes/settings/wcj-settings-orders.php:131
|
13608 |
+
msgid "Add Country by IP Meta Box"
|
13609 |
+
msgstr ""
|
13610 |
+
|
13611 |
+
#: includes/settings/wcj-settings-orders.php:133
|
13612 |
+
msgid ""
|
13613 |
+
"When enabled this will add \"Booster: Country by IP\" metabox to each "
|
13614 |
+
"order's edit page."
|
13615 |
+
msgstr ""
|
13616 |
+
|
13617 |
+
#: includes/settings/wcj-settings-orders.php:143
|
13618 |
+
msgid "Bulk Regenerate Download Permissions for Orders"
|
13619 |
+
msgstr ""
|
13620 |
+
|
13621 |
+
#: includes/settings/wcj-settings-orders.php:148
|
13622 |
+
msgid "Bulk Regenerate Download Permissions"
|
13623 |
+
msgstr ""
|
13624 |
+
|
13625 |
+
#: includes/settings/wcj-settings-orders.php:157
|
13626 |
+
msgid "Bulk Actions"
|
13627 |
+
msgstr ""
|
13628 |
+
|
13629 |
+
#: includes/settings/wcj-settings-orders.php:158
|
13630 |
+
msgid ""
|
13631 |
+
"When enabled this will add \"Regenerate download permissions\" action to "
|
13632 |
+
"\"Bulk Actions\" select box on admin orders page."
|
13633 |
+
msgstr ""
|
13634 |
+
|
13635 |
+
#: includes/settings/wcj-settings-orders.php:166
|
13636 |
+
msgid "All Orders - Now"
|
13637 |
+
msgstr ""
|
13638 |
+
|
13639 |
+
#: includes/settings/wcj-settings-orders.php:167
|
13640 |
+
msgid ""
|
13641 |
+
"Check this box and press \"Save changes\" button to start regeneration. "
|
13642 |
+
"Please note that both module and current section must be enabled before that."
|
13643 |
+
msgstr ""
|
13644 |
+
|
13645 |
+
#: includes/settings/wcj-settings-orders.php:168
|
13646 |
+
msgid "Regenerate now"
|
13647 |
+
msgstr ""
|
13648 |
+
|
13649 |
+
#: includes/settings/wcj-settings-orders.php:175
|
13650 |
+
msgid "All Orders - Periodically"
|
13651 |
+
msgstr ""
|
13652 |
+
|
13653 |
+
#: includes/settings/wcj-settings-orders.php:181
|
13654 |
+
msgid "Regenerate"
|
13655 |
+
msgstr ""
|
13656 |
+
|
13657 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:20
|
13658 |
+
msgid "Detect Country by"
|
13659 |
+
msgstr ""
|
13660 |
+
|
13661 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:31
|
13662 |
+
msgid "Detect State by"
|
13663 |
+
msgstr ""
|
13664 |
+
|
13665 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:41
|
13666 |
+
msgid "Detect Postcode by"
|
13667 |
+
msgstr ""
|
13668 |
+
|
13669 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:57
|
13670 |
+
msgid "If any field is left empty - it's ignored."
|
13671 |
+
msgstr ""
|
13672 |
+
|
13673 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:80
|
13674 |
+
msgid "Include Countries"
|
13675 |
+
msgstr ""
|
13676 |
+
|
13677 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:90
|
13678 |
+
msgid "Exclude Countries"
|
13679 |
+
msgstr ""
|
13680 |
+
|
13681 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:100
|
13682 |
+
msgid "Include States (Base Country)"
|
13683 |
+
msgstr ""
|
13684 |
+
|
13685 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:110
|
13686 |
+
msgid "Exclude States (Base Country)"
|
13687 |
+
msgstr ""
|
13688 |
+
|
13689 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:120
|
13690 |
+
msgid "Include Postcodes (one per line)"
|
13691 |
+
msgstr ""
|
13692 |
+
|
13693 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:130
|
13694 |
+
msgid "Exclude Postcodes (one per line)"
|
13695 |
+
msgstr ""
|
13696 |
+
|
13697 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
|
13698 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
|
13699 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:43
|
13700 |
+
msgid "Leave empty to disable."
|
13701 |
+
msgstr ""
|
13702 |
+
|
13703 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:29
|
13704 |
+
#, php-format
|
13705 |
+
msgid "PayPal allows only these currencies: %s."
|
13706 |
+
msgstr ""
|
13707 |
+
|
13708 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:46
|
13709 |
+
msgid "Allowed Currencies"
|
13710 |
+
msgstr ""
|
13711 |
+
|
13712 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:57
|
13713 |
+
msgid "Denied Currencies"
|
13714 |
+
msgstr ""
|
13715 |
+
|
13716 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:22
|
13717 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:25
|
13718 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:20
|
13719 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:20
|
13720 |
+
#: includes/settings/wcj-settings-shipping-description.php:58
|
13721 |
+
#: includes/settings/wcj-settings-shipping-icons.php:60
|
13722 |
+
#: includes/settings/wcj-settings-shipping-time.php:30
|
13723 |
+
msgid "Use Shipping Instances"
|
13724 |
+
msgstr ""
|
13725 |
+
|
13726 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:24
|
13727 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:27
|
13728 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:22
|
13729 |
+
#: includes/settings/wcj-settings-shipping-by-order-qty.php:22
|
13730 |
+
#: includes/settings/wcj-settings-shipping-description.php:60
|
13731 |
+
#: includes/settings/wcj-settings-shipping-icons.php:62
|
13732 |
+
#: includes/settings/wcj-settings-shipping-time.php:32
|
13733 |
+
msgid ""
|
13734 |
+
"Enable this if you want to use shipping methods instances instead of "
|
13735 |
+
"shipping methods."
|
13736 |
+
msgstr ""
|
13737 |
+
|
13738 |
+
#: includes/settings/wcj-settings-payment-gateways-by-shipping.php:39
|
13739 |
+
msgid ""
|
13740 |
+
"If payment gateway is only available for certain methods, set it up here. "
|
13741 |
+
"Leave blank to enable for all methods."
|
13742 |
+
msgstr ""
|
13743 |
+
|
13744 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:17
|
13745 |
+
#: includes/settings/wcj-settings-product-by-user.php:79
|
13746 |
+
#, php-format
|
13747 |
+
msgid ""
|
13748 |
+
"Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
|
13749 |
+
"<a href=\"%s\">General</a> module"
|
13750 |
+
msgstr ""
|
13751 |
+
|
13752 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:40
|
13753 |
+
msgid "Include User Roles"
|
13754 |
+
msgstr ""
|
13755 |
+
|
13756 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:51
|
13757 |
+
msgid "Exclude User Roles"
|
13758 |
+
msgstr ""
|
13759 |
+
|
13760 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:17
|
13761 |
+
msgid "This section lets you set different currency for each payment gateway."
|
13762 |
+
msgstr ""
|
13763 |
+
|
13764 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:45
|
13765 |
+
msgid "Go to payment gateway's settings"
|
13766 |
+
msgstr ""
|
13767 |
+
|
13768 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:84
|
13769 |
+
msgid "Show Converted Prices"
|
13770 |
+
msgstr ""
|
13771 |
+
|
13772 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:89
|
13773 |
+
#: includes/settings/wcj-settings-shipping-description.php:26
|
13774 |
+
#: includes/settings/wcj-settings-shipping-icons.php:35
|
13775 |
+
msgid "On both cart and checkout pages"
|
13776 |
+
msgstr ""
|
13777 |
+
|
13778 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:90
|
13779 |
+
msgid "On checkout page only"
|
13780 |
+
msgstr ""
|
13781 |
+
|
13782 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:94
|
13783 |
+
msgid "Advanced: Fix \"Chosen Payment Method\""
|
13784 |
+
msgstr ""
|
13785 |
+
|
13786 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:96
|
13787 |
+
msgid ""
|
13788 |
+
"Enable this if you are having compatibility issues with some other plugins "
|
13789 |
+
"or modules."
|
13790 |
+
msgstr ""
|
13791 |
+
|
13792 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:23
|
13793 |
+
msgid "Fee (or Discount) Title"
|
13794 |
+
msgstr ""
|
13795 |
+
|
13796 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:24
|
13797 |
+
msgid "Fee (or discount) title to show to customer."
|
13798 |
+
msgstr ""
|
13799 |
+
|
13800 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:31
|
13801 |
+
msgid "Fee (or Discount) Type"
|
13802 |
+
msgstr ""
|
13803 |
+
|
13804 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:32
|
13805 |
+
msgid "Percent or fixed value."
|
13806 |
+
msgstr ""
|
13807 |
+
|
13808 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:42
|
13809 |
+
msgid "Fee (or Discount) Value"
|
13810 |
+
msgstr ""
|
13811 |
+
|
13812 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:43
|
13813 |
+
msgid "The value. For discount enter a negative number."
|
13814 |
+
msgstr ""
|
13815 |
+
|
13816 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:50
|
13817 |
+
msgid "Minimum Cart Amount"
|
13818 |
+
msgstr ""
|
13819 |
+
|
13820 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:51
|
13821 |
+
msgid "Minimum cart amount for adding the fee (or discount)."
|
13822 |
+
msgstr ""
|
13823 |
+
|
13824 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:51
|
13825 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:59
|
13826 |
+
msgid "Set 0 to disable."
|
13827 |
+
msgstr ""
|
13828 |
+
|
13829 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:58
|
13830 |
+
msgid "Maximum Cart Amount"
|
13831 |
+
msgstr ""
|
13832 |
+
|
13833 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:59
|
13834 |
+
msgid "Maximum cart amount for adding the fee (or discount)."
|
13835 |
+
msgstr ""
|
13836 |
+
|
13837 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:68
|
13838 |
+
msgid "Round the fee (or discount) value before adding to the cart."
|
13839 |
+
msgstr ""
|
13840 |
+
|
13841 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:75
|
13842 |
+
msgid "If rounding is enabled, set precision (i.e. number of decimals) here."
|
13843 |
+
msgstr ""
|
13844 |
+
|
13845 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:89
|
13846 |
+
msgid "Tax class"
|
13847 |
+
msgstr ""
|
13848 |
+
|
13849 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:90
|
13850 |
+
msgid "If taxing is enabled, set tax class here."
|
13851 |
+
msgstr ""
|
13852 |
+
|
13853 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:94
|
13854 |
+
msgid "Standard Rate"
|
13855 |
+
msgstr ""
|
13856 |
+
|
13857 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:97
|
13858 |
+
msgid "Exclude Shipping when Calculating Total Cart Amount"
|
13859 |
+
msgstr ""
|
13860 |
+
|
13861 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:99
|
13862 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:107
|
13863 |
+
msgid ""
|
13864 |
+
"This affects \"Percent\" type fees and \"Minimum/Maximum Cart Amount\" "
|
13865 |
+
"options."
|
13866 |
+
msgstr ""
|
13867 |
+
|
13868 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:105
|
13869 |
+
msgid "Include Taxes"
|
13870 |
+
msgstr ""
|
13871 |
+
|
13872 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:106
|
13873 |
+
msgid "Include taxes when calculating Total Cart Amount"
|
13874 |
+
msgstr ""
|
13875 |
+
|
13876 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:113
|
13877 |
+
msgid "Require Products"
|
13878 |
+
msgstr ""
|
13879 |
+
|
13880 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:114
|
13881 |
+
msgid ""
|
13882 |
+
"Require at least one of selected products to be in cart for fee to be "
|
13883 |
+
"applied."
|
13884 |
+
msgstr ""
|
13885 |
+
|
13886 |
+
#: includes/settings/wcj-settings-payment-gateways-fees.php:126
|
13887 |
+
msgid "Do not apply fee, if at least one of selected products is in cart."
|
13888 |
+
msgstr ""
|
13889 |
+
|
13890 |
+
#: includes/settings/wcj-settings-payment-gateways-icons.php:35
|
13891 |
+
msgid "Leave blank to set WooCommerce default value"
|
13892 |
+
msgstr ""
|
13893 |
+
|
13894 |
+
#: includes/settings/wcj-settings-payment-gateways-icons.php:46
|
13895 |
+
msgid "Remove Icon"
|
13896 |
+
msgstr ""
|
13897 |
+
|
13898 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:20
|
13899 |
+
msgid "Exclude Shipping"
|
13900 |
+
msgstr ""
|
13901 |
+
|
13902 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:21
|
13903 |
+
msgid ""
|
13904 |
+
"Exclude shipping from total cart sum, when comparing with min/max amounts."
|
13905 |
+
msgstr ""
|
13906 |
+
|
13907 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:27
|
13908 |
+
msgid "Notices on Checkout"
|
13909 |
+
msgstr ""
|
13910 |
+
|
13911 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:28
|
13912 |
+
msgid "Enable Notices"
|
13913 |
+
msgstr ""
|
13914 |
+
|
13915 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:34
|
13916 |
+
msgid "Notice Template (Minimum Amount)"
|
13917 |
+
msgstr ""
|
13918 |
+
|
13919 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:35
|
13920 |
+
msgid "Replaced values: %gateway_title%, %min_amount%."
|
13921 |
+
msgstr ""
|
13922 |
+
|
13923 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:42
|
13924 |
+
msgid "Notice Template (Maximum Amount)"
|
13925 |
+
msgstr ""
|
13926 |
+
|
13927 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:43
|
13928 |
+
msgid "Replaced values: %gateway_title%, %max_amount%."
|
13929 |
+
msgstr ""
|
13930 |
+
|
13931 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:50
|
13932 |
+
msgid "Notice Styling"
|
13933 |
+
msgstr ""
|
13934 |
+
|
13935 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:57
|
13936 |
+
msgid "Success"
|
13937 |
+
msgstr ""
|
13938 |
+
|
13939 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:70
|
13940 |
+
#: includes/settings/wcj-settings-product-msrp.php:110
|
13941 |
+
msgid "Multicurrency"
|
13942 |
+
msgstr ""
|
13943 |
+
|
13944 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:71
|
13945 |
+
#: includes/settings/wcj-settings-product-msrp.php:111
|
13946 |
+
msgid "Enable compatibility with Multicurrency module"
|
13947 |
+
msgstr ""
|
13948 |
+
|
13949 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:104
|
13950 |
+
msgid "Min"
|
13951 |
+
msgstr ""
|
13952 |
+
|
13953 |
+
#: includes/settings/wcj-settings-payment-gateways-min-max.php:113
|
13954 |
+
msgid "Max"
|
13955 |
+
msgstr ""
|
13956 |
+
|
13957 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:24
|
13958 |
+
msgid "Use Variations"
|
13959 |
+
msgstr ""
|
13960 |
+
|
13961 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:26
|
13962 |
+
msgid "Will use variations instead of main product for variable type products."
|
13963 |
+
msgstr ""
|
13964 |
+
|
13965 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:36
|
13966 |
+
msgid "Gateways"
|
13967 |
+
msgstr ""
|
13968 |
+
|
13969 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:49
|
13970 |
+
#: includes/settings/wcj-settings-price-labels.php:125
|
13971 |
+
#: includes/settings/wcj-settings-product-input-fields.php:110
|
13972 |
+
msgid "Product Categories - Include"
|
13973 |
+
msgstr ""
|
13974 |
+
|
13975 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:50
|
13976 |
+
msgid ""
|
13977 |
+
"Show gateway only if there is product of selected category in cart. Leave "
|
13978 |
+
"blank to disable the option."
|
13979 |
+
msgstr ""
|
13980 |
+
|
13981 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:60
|
13982 |
+
#: includes/settings/wcj-settings-price-labels.php:134
|
13983 |
+
#: includes/settings/wcj-settings-product-input-fields.php:121
|
13984 |
+
msgid "Product Categories - Exclude"
|
13985 |
+
msgstr ""
|
13986 |
+
|
13987 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:61
|
13988 |
+
msgid ""
|
13989 |
+
"Hide gateway if there is product of selected category in cart. Leave blank "
|
13990 |
+
"to disable the option."
|
13991 |
+
msgstr ""
|
13992 |
+
|
13993 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:72
|
13994 |
+
#: includes/settings/wcj-settings-price-labels.php:107
|
13995 |
+
#: includes/settings/wcj-settings-product-input-fields.php:155
|
13996 |
+
msgid "Products - Include"
|
13997 |
+
msgstr ""
|
13998 |
+
|
13999 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:73
|
14000 |
+
msgid ""
|
14001 |
+
"Show gateway only if there is selected products in cart. Leave blank to "
|
14002 |
+
"disable the option."
|
14003 |
+
msgstr ""
|
14004 |
+
|
14005 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:85
|
14006 |
+
#: includes/settings/wcj-settings-price-labels.php:116
|
14007 |
+
#: includes/settings/wcj-settings-product-input-fields.php:167
|
14008 |
+
msgid "Products - Exclude"
|
14009 |
+
msgstr ""
|
14010 |
+
|
14011 |
+
#: includes/settings/wcj-settings-payment-gateways-per-category.php:86
|
14012 |
+
msgid ""
|
14013 |
+
"Hide gateway if there is selected products in cart. Leave blank to disable "
|
14014 |
+
"the option."
|
14015 |
+
msgstr ""
|
14016 |
+
|
14017 |
+
#: includes/settings/wcj-settings-payment-gateways.php:13
|
14018 |
+
msgid "WooCommerce > Settings > Checkout"
|
14019 |
+
msgstr ""
|
14020 |
+
|
14021 |
+
#: includes/settings/wcj-settings-payment-gateways.php:16
|
14022 |
+
msgid "Custom Payment Gateways Options"
|
14023 |
+
msgstr ""
|
14024 |
+
|
14025 |
+
#: includes/settings/wcj-settings-payment-gateways.php:19
|
14026 |
+
msgid "This section lets you set number of custom payment gateways to add."
|
14027 |
+
msgstr ""
|
14028 |
+
|
14029 |
+
#: includes/settings/wcj-settings-payment-gateways.php:20
|
14030 |
+
#, php-format
|
14031 |
+
msgid "After setting the number, visit %s to set each gateway options."
|
14032 |
+
msgstr ""
|
14033 |
+
|
14034 |
+
#: includes/settings/wcj-settings-payment-gateways.php:23
|
14035 |
+
msgid "Number of Gateways"
|
14036 |
+
msgstr ""
|
14037 |
+
|
14038 |
+
#: includes/settings/wcj-settings-payment-gateways.php:25
|
14039 |
+
msgid ""
|
14040 |
+
"Number of custom payments gateways to be added. All settings for each new "
|
14041 |
+
"gateway are in WooCommerce > Settings > Checkout."
|
14042 |
+
msgstr ""
|
14043 |
+
|
14044 |
+
#: includes/settings/wcj-settings-payment-gateways.php:36
|
14045 |
+
msgid "Admin Title Custom Gateway"
|
14046 |
+
msgstr ""
|
14047 |
+
|
14048 |
+
#: includes/settings/wcj-settings-payment-gateways.php:54
|
14049 |
+
msgid "Gateways Input Fields"
|
14050 |
+
msgstr ""
|
14051 |
+
|
14052 |
+
#: includes/settings/wcj-settings-payment-gateways.php:55
|
14053 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:61
|
14054 |
+
msgid "Add \"Delete\" button"
|
14055 |
+
msgstr ""
|
14056 |
+
|
14057 |
+
#: includes/settings/wcj-settings-payment-gateways.php:56
|
14058 |
+
msgid ""
|
14059 |
+
"This will add \"Delete\" button to custom payment gateways input fields "
|
14060 |
+
"admin order meta box."
|
14061 |
+
msgstr ""
|
14062 |
+
|
14063 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:16
|
14064 |
+
msgid "Fonts download is disabled."
|
14065 |
+
msgstr ""
|
14066 |
+
|
14067 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:19
|
14068 |
+
msgid "Fonts are up to date."
|
14069 |
+
msgstr ""
|
14070 |
+
|
14071 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:20
|
14072 |
+
#, php-format
|
14073 |
+
msgid "Latest successful download or version check was on %s."
|
14074 |
+
msgstr ""
|
14075 |
+
|
14076 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:24
|
14077 |
+
msgid ""
|
14078 |
+
"Fonts are NOT up to date. Please try downloading by pressing the button "
|
14079 |
+
"below."
|
14080 |
+
msgstr ""
|
14081 |
+
|
14082 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:27
|
14083 |
+
#, php-format
|
14084 |
+
msgid "Latest successful downloaded version is %s."
|
14085 |
+
msgstr ""
|
14086 |
+
|
14087 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:33
|
14088 |
+
#, php-format
|
14089 |
+
msgid "Latest download executed on %s."
|
14090 |
+
msgstr ""
|
14091 |
+
|
14092 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:47
|
14093 |
+
msgid "Hide Disabled Docs Settings"
|
14094 |
+
msgstr ""
|
14095 |
+
|
14096 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:54
|
14097 |
+
msgid "Replace Admin Order Search with Invoice Search"
|
14098 |
+
msgstr ""
|
14099 |
+
|
14100 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:61
|
14101 |
+
msgid "Default Images Directory"
|
14102 |
+
msgstr ""
|
14103 |
+
|
14104 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:62
|
14105 |
+
msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
|
14106 |
+
msgstr ""
|
14107 |
+
|
14108 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:63
|
14109 |
+
msgid ""
|
14110 |
+
"Try changing this if you have issues displaying images in page background or "
|
14111 |
+
"header."
|
14112 |
+
msgstr ""
|
14113 |
+
|
14114 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:68
|
14115 |
+
msgid "Empty"
|
14116 |
+
msgstr ""
|
14117 |
+
|
14118 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:69
|
14119 |
+
msgid "TCPDF Default"
|
14120 |
+
msgstr ""
|
14121 |
+
|
14122 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:70
|
14123 |
+
msgid "ABSPATH"
|
14124 |
+
msgstr ""
|
14125 |
+
|
14126 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:71
|
14127 |
+
msgid "DOCUMENT_ROOT"
|
14128 |
+
msgstr ""
|
14129 |
+
|
14130 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:75
|
14131 |
+
msgid "Temp Directory"
|
14132 |
+
msgstr ""
|
14133 |
+
|
14134 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:76
|
14135 |
+
msgid "Leave blank to use the default temp directory."
|
14136 |
+
msgstr ""
|
14137 |
+
|
14138 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:82
|
14139 |
+
msgid "Disable Saving PDFs in Temp Directory"
|
14140 |
+
msgstr ""
|
14141 |
+
|
14142 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:83
|
14143 |
+
msgid ""
|
14144 |
+
"Please note that attaching invoices to emails and generating invoices report "
|
14145 |
+
"zip will stop working, if you enable this checkbox."
|
14146 |
+
msgstr ""
|
14147 |
+
|
14148 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:90
|
14149 |
+
msgid "Prevent Output Buffer"
|
14150 |
+
msgstr ""
|
14151 |
+
|
14152 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:91
|
14153 |
+
msgid "Returns the content of output buffering instead of displaying it"
|
14154 |
+
msgstr ""
|
14155 |
+
|
14156 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:101
|
14157 |
+
msgid "Fonts Manager"
|
14158 |
+
msgstr ""
|
14159 |
+
|
14160 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
|
14161 |
+
msgid "Re-download"
|
14162 |
+
msgstr ""
|
14163 |
+
|
14164 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:110
|
14165 |
+
msgid "Download"
|
14166 |
+
msgstr ""
|
14167 |
+
|
14168 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:115
|
14169 |
+
msgid "Disable Fonts Download"
|
14170 |
+
msgstr ""
|
14171 |
+
|
14172 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:126
|
14173 |
+
msgid "General Display Options"
|
14174 |
+
msgstr ""
|
14175 |
+
|
14176 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:131
|
14177 |
+
msgid "Add PDF Invoices Meta Box to Admin Edit Order Page"
|
14178 |
+
msgstr ""
|
14179 |
+
|
14180 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:138
|
14181 |
+
msgid "Open docs in new window"
|
14182 |
+
msgstr ""
|
14183 |
+
|
14184 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:144
|
14185 |
+
msgid "Add editable numbers and dates"
|
14186 |
+
msgstr ""
|
14187 |
+
|
14188 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:154
|
14189 |
+
msgid "Report Tool Options"
|
14190 |
+
msgstr ""
|
14191 |
+
|
14192 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:159
|
14193 |
+
msgid "Reports Filename"
|
14194 |
+
msgstr ""
|
14195 |
+
|
14196 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:167
|
14197 |
+
msgid "Report Columns"
|
14198 |
+
msgstr ""
|
14199 |
+
|
14200 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:168
|
14201 |
+
msgid "Leave blank to show all columns."
|
14202 |
+
msgstr ""
|
14203 |
+
|
14204 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:176
|
14205 |
+
msgid "Tax Percent Precision"
|
14206 |
+
msgstr ""
|
14207 |
+
|
14208 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:189
|
14209 |
+
msgid "CSV UTF-8 BOM"
|
14210 |
+
msgstr ""
|
14211 |
+
|
14212 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:196
|
14213 |
+
msgid "Replace Periods with Commas in CSV Data"
|
14214 |
+
msgstr ""
|
14215 |
+
|
14216 |
+
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:197
|
14217 |
+
#: includes/settings/wcj-settings-product-open-pricing.php:174
|
14218 |
+
msgid "Replace"
|
14219 |
+
msgstr ""
|
14220 |
+
|
14221 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:25
|
14222 |
+
#: includes/settings/wcj-settings-price-by-country.php:284
|
14223 |
+
#: includes/settings/wcj-settings-shipping.php:30
|
14224 |
+
msgid "Admin Title"
|
14225 |
+
msgstr ""
|
14226 |
+
|
14227 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:32
|
14228 |
+
msgid "Admin's \"Orders\" Page"
|
14229 |
+
msgstr ""
|
14230 |
+
|
14231 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:33
|
14232 |
+
msgid "Add Column"
|
14233 |
+
msgstr ""
|
14234 |
+
|
14235 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:40
|
14236 |
+
msgid "Column Title"
|
14237 |
+
msgstr ""
|
14238 |
+
|
14239 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:47
|
14240 |
+
msgid "Add \"View\" button"
|
14241 |
+
msgstr ""
|
14242 |
+
|
14243 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:54
|
14244 |
+
msgid "Add \"Create\" button"
|
14245 |
+
msgstr ""
|
14246 |
+
|
14247 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:68
|
14248 |
+
msgid "\"Create\" button requires confirmation"
|
14249 |
+
msgstr ""
|
14250 |
+
|
14251 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:75
|
14252 |
+
msgid "\"Delete\" button requires confirmation"
|
14253 |
+
msgstr ""
|
14254 |
+
|
14255 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:82
|
14256 |
+
msgid "Thank You Page"
|
14257 |
+
msgstr ""
|
14258 |
+
|
14259 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:83
|
14260 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:104
|
14261 |
+
msgid "Add link"
|
14262 |
+
msgstr ""
|
14263 |
+
|
14264 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:89
|
14265 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:110
|
14266 |
+
msgid "Link Text"
|
14267 |
+
msgstr ""
|
14268 |
+
|
14269 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:96
|
14270 |
+
#: includes/settings/wcj-settings-pdf-invoicing-templates.php:28
|
14271 |
+
msgid "HTML Template"
|
14272 |
+
msgstr ""
|
14273 |
+
|
14274 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:103
|
14275 |
+
msgid "Customer's \"My Account\" Page"
|
14276 |
+
msgstr ""
|
14277 |
+
|
14278 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:117
|
14279 |
+
msgid "Enable \"Save as\""
|
14280 |
+
msgstr ""
|
14281 |
+
|
14282 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:119
|
14283 |
+
msgid "Enable \"save as\" pdf instead of view pdf in browser"
|
14284 |
+
msgstr ""
|
14285 |
+
|
14286 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:125
|
14287 |
+
msgid "PDF File Name"
|
14288 |
+
msgstr ""
|
14289 |
+
|
14290 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:126
|
14291 |
+
#, php-format
|
14292 |
+
msgid ""
|
14293 |
+
"Enter file name for PDF documents. You can use shortcodes here, e.g. %s."
|
14294 |
+
msgstr ""
|
14295 |
+
|
14296 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:134
|
14297 |
+
msgid "Allowed User Roles"
|
14298 |
+
msgstr ""
|
14299 |
+
|
14300 |
+
#: includes/settings/wcj-settings-pdf-invoicing-display.php:135
|
14301 |
+
msgid "If set to empty - Administrator role will be used."
|
14302 |
+
msgstr ""
|
14303 |
+
|
14304 |
+
#: includes/settings/wcj-settings-pdf-invoicing-emails.php:53
|
14305 |
+
msgid "Attach PDF to emails"
|
14306 |
+
msgstr ""
|
14307 |
+
|
14308 |
+
#: includes/settings/wcj-settings-pdf-invoicing-emails.php:60
|
14309 |
+
msgid "Select some emails"
|
14310 |
+
msgstr ""
|
14311 |
+
|
14312 |
+
#: includes/settings/wcj-settings-pdf-invoicing-emails.php:63
|
14313 |
+
msgid "Payment gateways to include"
|
14314 |
+
msgstr ""
|
14315 |
+
|
14316 |
+
#: includes/settings/wcj-settings-pdf-invoicing-emails.php:70
|
14317 |
+
msgid "Select some gateways. Leave blank to include all."
|
14318 |
+
msgstr ""
|
14319 |
+
|
14320 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:22
|
14321 |
+
msgid "Enable Footer"
|
14322 |
+
msgstr ""
|
14323 |
+
|
14324 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:29
|
14325 |
+
msgid "Footer Text"
|
14326 |
+
msgstr ""
|
14327 |
+
|
14328 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:34
|
14329 |
+
msgid "You can use HTML here, as well as any WordPress shortcodes."
|
14330 |
+
msgstr ""
|
14331 |
+
|
14332 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:45
|
14333 |
+
msgid "Footer Line Color"
|
14334 |
+
msgstr ""
|
14335 |
+
|
14336 |
+
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:52
|
14337 |
+
msgid "Footer Margin"
|
14338 |
+
msgstr ""
|
14339 |
+
|
14340 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:23
|
14341 |
+
msgid "Enable Header"
|
14342 |
+
msgstr ""
|
14343 |
+
|
14344 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:30
|
14345 |
+
msgid "Header Image"
|
14346 |
+
msgstr ""
|
14347 |
+
|
14348 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:35
|
14349 |
+
#, php-format
|
14350 |
+
msgid ""
|
14351 |
+
"Enter a local URL to an image you want to show in the invoice's header. "
|
14352 |
+
"Upload your image using the <a href=\"%s\">media uploader</a>."
|
14353 |
+
msgstr ""
|
14354 |
+
|
14355 |
+
#: includes/settings/wcj-settings-pdf-invoicing-header.php:38
|
14356 |
+
#, php-format
|
14357 |
+
msgid ""
|
14358 |
+
"If you are experiencing issues with displaying header image, please try "
|
14359 |
+
"setting different val
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|