Version Description
- 03/12/2017 =
- Fix - PRICES & CURRENCIES - Currency Exchange Rates - cURL option fixed for "Yahoo" and "Fixer.io" servers.
- Dev - PRICES & CURRENCIES - Currency Exchange Rates - Server - Default value set to "European Central Bank (ECB)".
- Dev - BUTTON & PRICE LABELS - Custom Price Labels - "Entrada" theme filter added.
- Dev - PRODUCTS - Product Listings - "Product Shop Visibility by Price" section added.
- Fix - PRODUCTS - SKU - Search by SKU on frontend - Bug fixed.
- Dev - CART & CHECKOUT - Checkout Files Upload - "Advanced Options" section added.
- Dev - CART & CHECKOUT - Coupon Code Generator - Initial module release (moved from "General" module).
- Dev - CART & CHECKOUT - Coupon Code Generator - "Algorithm" and "Length" options added.
- Dev - CART & CHECKOUT - URL Coupons - Module moved from "EMAILS & MISC." section.
- Fix - PAYMENT GATEWAYS - Gateways Min/Max Amounts - Checking for
WC()
function to exist before accessing toWC()->cart
. Checking foris_checkout()
. Code refactoring. - Dev - SHIPPING & ORDERS - Order Min/Max Quantities - General Options - Variable Products - "Force on add to cart" option added.
- Dev - SHIPPING & ORDERS - Order Min/Max Quantities - General Options - Variable Products - "Action on variation change" option added.
- Fix - SHIPPING & ORDERS - Order Min/Max Quantities -
get_cart_url()
method replaced withwc_get_cart_url()
function. - Fix - SHIPPING & ORDERS - Order Minimum Amount -
get_cart_url()
method replaced withwc_get_cart_url()
function. - Dev - SHIPPING & ORDERS - Order Numbers - "WooCommerce Subscriptions" plugin compatibility added (sequential and random order numbers).
- Dev - PDF INVOICING & PACKING SLIPS - "Replace Admin Order Search with Invoice Search" option added.
- Dev - PDF INVOICING & PACKING SLIPS - "Default Images Directory" option moved from "Header" settings section to "General" section.
- Dev - PDF INVOICING & PACKING SLIPS - Page Settings - "Background Image" option added.
- Fix - Functions - General -
wcj_get_select_options()
- Prefix (wcj-
) is added to the keys (to prevent issues with numeric keys). - Fix - Settings Manager -
manage_options()
fixed.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 3.2.3 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.2.3
- includes/admin/class-wcj-settings-manager.php +6 -3
- includes/admin/wcj-modules-cats.php +4 -3
- includes/class-wcj-checkout-files-upload.php +46 -11
- includes/class-wcj-coupon-code-generator.php +142 -0
- includes/class-wcj-general.php +2 -63
- includes/class-wcj-order-min-amount.php +3 -3
- includes/class-wcj-order-numbers.php +22 -2
- includes/class-wcj-order-quantities.php +12 -5
- includes/class-wcj-payment-gateways-min-max.php +13 -7
- includes/class-wcj-price-labels.php +7 -3
- includes/class-wcj-product-listings.php +28 -2
- includes/class-wcj-sku.php +3 -3
- includes/classes/class-wcj-pdf-invoice.php +8 -2
- includes/constants/wcj-constants.php +0 -7
- includes/exchange-rates/class-wcj-exchange-rates.php +3 -3
- includes/functions/wcj-functions-exchange-rates.php +7 -5
- includes/functions/wcj-functions-general.php +3 -3
- includes/functions/wcj-functions-price-currency.php +14 -1
- includes/js/wcj-order-quantities.js +22 -5
- includes/js/wcj-product-addons.js +4 -3
- includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php +31 -2
- includes/settings/wcj-settings-checkout-files-upload.php +27 -1
- includes/settings/wcj-settings-coupon-code-generator.php +60 -0
- includes/settings/wcj-settings-currency-exchange-rates.php +2 -2
- includes/settings/wcj-settings-general.php +1 -18
- includes/settings/wcj-settings-order-quantities.php +20 -1
- includes/settings/wcj-settings-pdf-invoicing-header.php +1 -26
- includes/settings/wcj-settings-pdf-invoicing-page.php +11 -1
- includes/settings/wcj-settings-pdf-invoicing.php +22 -1
- includes/settings/wcj-settings-product-listings.php +35 -2
- langs/woocommerce-jetpack.pot +1450 -1213
- readme.txt +26 -3
- woocommerce-jetpack.php +5 -4
includes/admin/class-wcj-settings-manager.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings Manager
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
-
* @
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
9 |
|
@@ -27,11 +27,14 @@ class WCJ_Settings_Manager {
|
|
27 |
/**
|
28 |
* manage_options.
|
29 |
*
|
30 |
-
* @version 2.
|
31 |
* @since 2.5.2
|
32 |
*/
|
33 |
function manage_options() {
|
34 |
if ( is_admin() ) {
|
|
|
|
|
|
|
35 |
if ( isset( $_POST['booster_import_settings'] ) ) {
|
36 |
$this->manage_options_import();
|
37 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings Manager
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
+
* @since 2.9.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
9 |
|
27 |
/**
|
28 |
* manage_options.
|
29 |
*
|
30 |
+
* @version 3.2.3
|
31 |
* @since 2.5.2
|
32 |
*/
|
33 |
function manage_options() {
|
34 |
if ( is_admin() ) {
|
35 |
+
if ( ! function_exists( 'current_user_can' ) || ! current_user_can( 'manage_options' ) ) {
|
36 |
+
return;
|
37 |
+
}
|
38 |
if ( isset( $_POST['booster_import_settings'] ) ) {
|
39 |
$this->manage_options_import();
|
40 |
}
|
includes/admin/wcj-modules-cats.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Modules Array
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.2.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -85,12 +85,14 @@ return apply_filters( 'wcj_modules', array(
|
|
85 |
|
86 |
'cart_and_checkout' => array(
|
87 |
'label' => __( 'Cart & Checkout', 'woocommerce-jetpack' ),
|
88 |
-
'desc' => __( 'Cart and Checkout Customization, Empty Cart Button, Mini Cart and more.', 'woocommerce-jetpack' ),
|
89 |
'all_cat_ids' => array(
|
90 |
'cart',
|
91 |
'cart_customization',
|
92 |
'empty_cart',
|
93 |
'mini_cart',
|
|
|
|
|
94 |
'checkout_core_fields',
|
95 |
'checkout_custom_fields',
|
96 |
'checkout_files_upload',
|
@@ -159,7 +161,6 @@ return apply_filters( 'wcj_modules', array(
|
|
159 |
'all_cat_ids' => array(
|
160 |
'general',
|
161 |
'breadcrumbs',
|
162 |
-
'url_coupons',
|
163 |
'admin_bar',
|
164 |
'export',
|
165 |
'my_account',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Modules Array
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.2.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
85 |
|
86 |
'cart_and_checkout' => array(
|
87 |
'label' => __( 'Cart & Checkout', 'woocommerce-jetpack' ),
|
88 |
+
'desc' => __( 'Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and more.', 'woocommerce-jetpack' ),
|
89 |
'all_cat_ids' => array(
|
90 |
'cart',
|
91 |
'cart_customization',
|
92 |
'empty_cart',
|
93 |
'mini_cart',
|
94 |
+
'url_coupons',
|
95 |
+
'coupon_code_generator',
|
96 |
'checkout_core_fields',
|
97 |
'checkout_custom_fields',
|
98 |
'checkout_files_upload',
|
161 |
'all_cat_ids' => array(
|
162 |
'general',
|
163 |
'breadcrumbs',
|
|
|
164 |
'admin_bar',
|
165 |
'export',
|
166 |
'my_account',
|
includes/class-wcj-checkout-files-upload.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Files Upload
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @since 2.4.5
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo styling options;
|
@@ -92,7 +92,7 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
92 |
/**
|
93 |
* validate_on_checkout.
|
94 |
*
|
95 |
-
* @version 2.
|
96 |
* @since 2.4.5
|
97 |
*/
|
98 |
function validate_on_checkout( $posted ) {
|
@@ -107,18 +107,25 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
107 |
// Is required
|
108 |
wc_add_notice( get_option( 'wcj_checkout_files_upload_notice_required_' . $i, __( 'File is required!', 'woocommerce-jetpack' ) ), 'error' );
|
109 |
}
|
110 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
111 |
// Validate file type
|
112 |
$file_accept = explode( ',', $file_accept );
|
113 |
if ( is_array( $file_accept ) && ! empty( $file_accept ) ) {
|
114 |
-
$file_name = $_SESSION[ 'wcj_checkout_files_upload_' . $i ]['name'];
|
115 |
-
$file_type = '.' . pathinfo( $file_name, PATHINFO_EXTENSION );
|
116 |
if ( ! in_array( $file_type, $file_accept ) ) {
|
117 |
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
118 |
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $file_name ), 'error' );
|
119 |
}
|
120 |
}
|
121 |
}
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
}
|
124 |
}
|
@@ -172,10 +179,31 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
172 |
echo $html;
|
173 |
}
|
174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
/**
|
176 |
* add_files_to_order.
|
177 |
*
|
178 |
-
* @version 2.
|
179 |
* @since 2.4.5
|
180 |
*/
|
181 |
function add_files_to_order( $order_id, $posted ) {
|
@@ -192,7 +220,9 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
192 |
$file_path = $upload_dir . '/' . $download_file_name;
|
193 |
$tmp_file_name = $_SESSION[ 'wcj_checkout_files_upload_' . $i ]['tmp_name'];
|
194 |
$file_data = file_get_contents( $tmp_file_name );
|
195 |
-
|
|
|
|
|
196 |
unlink( $tmp_file_name );
|
197 |
unset( $_SESSION[ 'wcj_checkout_files_upload_' . $i ] );
|
198 |
update_post_meta( $order_id, '_' . 'wcj_checkout_files_upload_' . $i, $download_file_name );
|
@@ -205,7 +235,7 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
205 |
/**
|
206 |
* process_checkout_files_upload.
|
207 |
*
|
208 |
-
* @version 2.
|
209 |
* @since 2.4.5
|
210 |
*/
|
211 |
function process_checkout_files_upload() {
|
@@ -244,12 +274,12 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
244 |
if ( isset( $_FILES[ $file_name ] ) && '' != $_FILES[ $file_name ]['tmp_name'] ) {
|
245 |
// Validate
|
246 |
$is_valid = true;
|
247 |
-
|
|
|
|
|
248 |
// Validate file type
|
249 |
$file_accept = explode( ',', $file_accept );
|
250 |
if ( is_array( $file_accept ) && ! empty( $file_accept ) ) {
|
251 |
-
$real_file_name = $_FILES[ $file_name ]['name'];
|
252 |
-
$file_type = '.' . pathinfo( $real_file_name, PATHINFO_EXTENSION );
|
253 |
if ( ! in_array( $file_type, $file_accept ) ) {
|
254 |
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
255 |
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $real_file_name ), 'error' );
|
@@ -257,6 +287,11 @@ class WCJ_Checkout_Files_Upload extends WCJ_Module {
|
|
257 |
}
|
258 |
}
|
259 |
}
|
|
|
|
|
|
|
|
|
|
|
260 |
if ( $is_valid ) {
|
261 |
// To session
|
262 |
$_SESSION[ $file_name ] = $_FILES[ $file_name ];
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Checkout Files Upload
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.4.5
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo styling options;
|
92 |
/**
|
93 |
* validate_on_checkout.
|
94 |
*
|
95 |
+
* @version 3.2.3
|
96 |
* @since 2.4.5
|
97 |
*/
|
98 |
function validate_on_checkout( $posted ) {
|
107 |
// Is required
|
108 |
wc_add_notice( get_option( 'wcj_checkout_files_upload_notice_required_' . $i, __( 'File is required!', 'woocommerce-jetpack' ) ), 'error' );
|
109 |
}
|
110 |
+
if ( ! isset( $_SESSION[ 'wcj_checkout_files_upload_' . $i ] ) ) {
|
111 |
+
continue;
|
112 |
+
}
|
113 |
+
$file_name = $_SESSION[ 'wcj_checkout_files_upload_' . $i ]['name'];
|
114 |
+
$file_type = '.' . pathinfo( $file_name, PATHINFO_EXTENSION );
|
115 |
+
if ( '' != ( $file_accept = get_option( 'wcj_checkout_files_upload_file_accept_' . $i, '' ) ) ) {
|
116 |
// Validate file type
|
117 |
$file_accept = explode( ',', $file_accept );
|
118 |
if ( is_array( $file_accept ) && ! empty( $file_accept ) ) {
|
|
|
|
|
119 |
if ( ! in_array( $file_type, $file_accept ) ) {
|
120 |
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
121 |
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $file_name ), 'error' );
|
122 |
}
|
123 |
}
|
124 |
}
|
125 |
+
if ( $this->is_extension_blocked( $file_type ) ) {
|
126 |
+
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
127 |
+
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $file_name ), 'error' );
|
128 |
+
}
|
129 |
}
|
130 |
}
|
131 |
}
|
179 |
echo $html;
|
180 |
}
|
181 |
|
182 |
+
/**
|
183 |
+
* is_extension_blocked.
|
184 |
+
*
|
185 |
+
* @version 3.2.3
|
186 |
+
* @since 3.2.3
|
187 |
+
*/
|
188 |
+
function is_extension_blocked( $ext ) {
|
189 |
+
if ( 'no' === get_option( 'wcj_checkout_files_upload_block_files_enabled', 'yes' ) ) {
|
190 |
+
return false;
|
191 |
+
}
|
192 |
+
$ext = strtolower( $ext );
|
193 |
+
if ( strlen( $ext ) > 0 && '.' === $ext[0] ) {
|
194 |
+
$ext = substr( $ext, 1 );
|
195 |
+
}
|
196 |
+
$blocked_file_exts = get_option( 'wcj_checkout_files_upload_block_files_exts',
|
197 |
+
'bat|exe|cmd|sh|php|php0|php1|php2|php3|php4|php5|php6|php7|php8|php9|ph|ph0|ph1|ph2|ph3|ph4|ph5|ph6|ph7|ph8|ph9|pl|cgi|386|dll|com|torrent|js|app|jar|pif|vb|vbscript|wsf|asp|cer|csr|jsp|drv|sys|ade|adp|bas|chm|cpl|crt|csh|fxp|hlp|hta|inf|ins|isp|jse|htaccess|htpasswd|ksh|lnk|mdb|mde|mdt|mdw|msc|msi|msp|mst|ops|pcd|prg|reg|scr|sct|shb|shs|url|vbe|vbs|wsc|wsf|wsh|html|htm'
|
198 |
+
);
|
199 |
+
$blocked_file_exts = explode( '|', $blocked_file_exts );
|
200 |
+
return in_array( $ext, $blocked_file_exts );
|
201 |
+
}
|
202 |
+
|
203 |
/**
|
204 |
* add_files_to_order.
|
205 |
*
|
206 |
+
* @version 3.2.3
|
207 |
* @since 2.4.5
|
208 |
*/
|
209 |
function add_files_to_order( $order_id, $posted ) {
|
220 |
$file_path = $upload_dir . '/' . $download_file_name;
|
221 |
$tmp_file_name = $_SESSION[ 'wcj_checkout_files_upload_' . $i ]['tmp_name'];
|
222 |
$file_data = file_get_contents( $tmp_file_name );
|
223 |
+
if ( ! $this->is_extension_blocked( $ext ) ) { // should already be validated earlier, but just in case...
|
224 |
+
file_put_contents( $file_path, $file_data );
|
225 |
+
}
|
226 |
unlink( $tmp_file_name );
|
227 |
unset( $_SESSION[ 'wcj_checkout_files_upload_' . $i ] );
|
228 |
update_post_meta( $order_id, '_' . 'wcj_checkout_files_upload_' . $i, $download_file_name );
|
235 |
/**
|
236 |
* process_checkout_files_upload.
|
237 |
*
|
238 |
+
* @version 3.2.3
|
239 |
* @since 2.4.5
|
240 |
*/
|
241 |
function process_checkout_files_upload() {
|
274 |
if ( isset( $_FILES[ $file_name ] ) && '' != $_FILES[ $file_name ]['tmp_name'] ) {
|
275 |
// Validate
|
276 |
$is_valid = true;
|
277 |
+
$real_file_name = $_FILES[ $file_name ]['name'];
|
278 |
+
$file_type = '.' . pathinfo( $real_file_name, PATHINFO_EXTENSION );
|
279 |
+
if ( '' != ( $file_accept = get_option( 'wcj_checkout_files_upload_file_accept_' . $i, '' ) ) ) {
|
280 |
// Validate file type
|
281 |
$file_accept = explode( ',', $file_accept );
|
282 |
if ( is_array( $file_accept ) && ! empty( $file_accept ) ) {
|
|
|
|
|
283 |
if ( ! in_array( $file_type, $file_accept ) ) {
|
284 |
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
285 |
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $real_file_name ), 'error' );
|
287 |
}
|
288 |
}
|
289 |
}
|
290 |
+
if ( $this->is_extension_blocked( $file_type ) ) {
|
291 |
+
wc_add_notice( sprintf( get_option( 'wcj_checkout_files_upload_notice_wrong_file_type_' . $i,
|
292 |
+
__( 'Wrong file type: "%s"!', 'woocommerce-jetpack' ) ), $real_file_name ), 'error' );
|
293 |
+
$is_valid = false;
|
294 |
+
}
|
295 |
if ( $is_valid ) {
|
296 |
// To session
|
297 |
$_SESSION[ $file_name ] = $_FILES[ $file_name ];
|
includes/class-wcj-coupon-code-generator.php
ADDED
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Booster for WooCommerce - Module - Coupon Code Generator
|
4 |
+
*
|
5 |
+
* @version 3.2.3
|
6 |
+
* @since 3.2.3
|
7 |
+
* @author Algoritmika Ltd.
|
8 |
+
*/
|
9 |
+
|
10 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
11 |
+
|
12 |
+
if ( ! class_exists( 'WCJ_Coupon_Code_Generator' ) ) :
|
13 |
+
|
14 |
+
class WCJ_Coupon_Code_Generator extends WCJ_Module {
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Constructor.
|
18 |
+
*
|
19 |
+
* @version 3.2.3
|
20 |
+
* @since 3.2.3
|
21 |
+
* @todo user ID in coupon code
|
22 |
+
* @todo add option to generate code only on button (in meta box) pressed
|
23 |
+
* @todo `wp_ajax_nopriv_wcj_generate_coupon_code` ?
|
24 |
+
*/
|
25 |
+
function __construct() {
|
26 |
+
|
27 |
+
$this->id = 'coupon_code_generator';
|
28 |
+
$this->short_desc = __( 'Coupon Code Generator', 'woocommerce-jetpack' );
|
29 |
+
$this->desc = __( 'WooCommerce coupon code generator.', 'woocommerce-jetpack' );
|
30 |
+
$this->link_slug = 'woocommerce-coupon-code-generator';
|
31 |
+
parent::__construct();
|
32 |
+
|
33 |
+
if ( $this->is_enabled() ) {
|
34 |
+
if ( 'yes' === get_option( 'wcj_coupons_code_generator_enabled', 'no' ) ) {
|
35 |
+
add_action( 'wp_ajax_wcj_generate_coupon_code', array( $this, 'ajax_generate_coupon_code' ) );
|
36 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_generate_coupon_code_script' ) );
|
37 |
+
}
|
38 |
+
}
|
39 |
+
}
|
40 |
+
|
41 |
+
/**
|
42 |
+
* enqueue_generate_coupon_code_script.
|
43 |
+
*
|
44 |
+
* @version 3.1.3
|
45 |
+
* @since 3.1.3
|
46 |
+
*/
|
47 |
+
function enqueue_generate_coupon_code_script() {
|
48 |
+
global $pagenow;
|
49 |
+
if ( 'post-new.php' === $pagenow && isset( $_GET['post_type'] ) && 'shop_coupon' === $_GET['post_type'] ) {
|
50 |
+
wp_enqueue_script( 'wcj-coupons-code-generator', wcj_plugin_url() . '/includes/js/wcj-coupons-code-generator.js', array( 'jquery' ), WCJ()->version, true );
|
51 |
+
wp_localize_script( 'wcj-coupons-code-generator', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* random_string.
|
57 |
+
*
|
58 |
+
* @version 3.2.3
|
59 |
+
* @since 3.2.3
|
60 |
+
* @todo (maybe) $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
61 |
+
*/
|
62 |
+
function random_string( $length = 32, $characters = 'abcdefghijklmnopqrstuvwxyz' ) {
|
63 |
+
$characters_length = strlen( $characters );
|
64 |
+
$random_string = '';
|
65 |
+
for ( $i = 0; $i < $length; $i++ ) {
|
66 |
+
$random_string .= $characters[ rand( 0, $characters_length - 1 ) ];
|
67 |
+
}
|
68 |
+
return $random_string;
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* generate_coupon_code.
|
73 |
+
*
|
74 |
+
* @version 3.2.3
|
75 |
+
* @since 3.1.3
|
76 |
+
* @todo (maybe) more algorithms
|
77 |
+
*/
|
78 |
+
function generate_coupon_code( $str = '', $algorithm = '', $length = '' ) {
|
79 |
+
if ( '' === $str ) {
|
80 |
+
$str = time();
|
81 |
+
}
|
82 |
+
if ( '' === $algorithm ) {
|
83 |
+
$algorithm = apply_filters( 'booster_get_option', 'crc32', get_option( 'wcj_coupons_code_generator_algorithm', 'crc32' ) );
|
84 |
+
}
|
85 |
+
switch ( $algorithm ) {
|
86 |
+
case 'random_letters_and_numbers':
|
87 |
+
$code = $this->random_string( 32, '0123456789abcdefghijklmnopqrstuvwxyz' );
|
88 |
+
break;
|
89 |
+
case 'random_letters':
|
90 |
+
$code = $this->random_string( 32, 'abcdefghijklmnopqrstuvwxyz' );
|
91 |
+
break;
|
92 |
+
case 'random_numbers':
|
93 |
+
$code = $this->random_string( 32, '0123456789' );
|
94 |
+
break;
|
95 |
+
case 'md5':
|
96 |
+
$code = md5( $str );
|
97 |
+
break;
|
98 |
+
case 'sha1':
|
99 |
+
$code = sha1( $str );
|
100 |
+
break;
|
101 |
+
default: // 'crc32'
|
102 |
+
$code = sprintf( '%08x', crc32( $str ) );
|
103 |
+
break;
|
104 |
+
}
|
105 |
+
if ( '' === $length ) {
|
106 |
+
$length = apply_filters( 'booster_get_option', 0, get_option( 'wcj_coupons_code_generator_length', 0 ) );
|
107 |
+
}
|
108 |
+
if ( $length > 0 && strlen( $code ) > $length ) {
|
109 |
+
$code = substr( $code, 0, $length );
|
110 |
+
}
|
111 |
+
return $code;
|
112 |
+
}
|
113 |
+
|
114 |
+
/**
|
115 |
+
* ajax_generate_coupon_code.
|
116 |
+
*
|
117 |
+
* @version 3.1.3
|
118 |
+
* @since 3.1.3
|
119 |
+
* @todo (maybe) optionally generate some description for coupon (e.g. "Automatically generated coupon [YYYY-MM-DD]")
|
120 |
+
*/
|
121 |
+
function ajax_generate_coupon_code() {
|
122 |
+
$attempts = 0;
|
123 |
+
while ( true ) {
|
124 |
+
$coupon_code = $this->generate_coupon_code();
|
125 |
+
$coupon = new WC_Coupon( $coupon_code );
|
126 |
+
if ( ! $coupon->get_id() ) {
|
127 |
+
echo $coupon_code;
|
128 |
+
die();
|
129 |
+
}
|
130 |
+
$attempts++;
|
131 |
+
if ( $attempts > 100 ) { // shouldn't happen, but just in case...
|
132 |
+
echo '';
|
133 |
+
die();
|
134 |
+
}
|
135 |
+
}
|
136 |
+
}
|
137 |
+
|
138 |
+
}
|
139 |
+
|
140 |
+
endif;
|
141 |
+
|
142 |
+
return new WCJ_Coupon_Code_Generator();
|
includes/class-wcj-general.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - General
|
4 |
*
|
5 |
-
* @version 3.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -15,11 +15,8 @@ class WCJ_General extends WCJ_Module {
|
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
-
* @version 3.
|
19 |
* @todo expand `$this->desc`
|
20 |
-
* @todo Coupon code generator - move to new module
|
21 |
-
* @todo Coupon code generator - add option to generate code only on button (in meta box) pressed
|
22 |
-
* @todo Coupon code generator - `wp_ajax_nopriv_wcj_generate_coupon_code` ?
|
23 |
*/
|
24 |
function __construct() {
|
25 |
|
@@ -77,64 +74,6 @@ class WCJ_General extends WCJ_Module {
|
|
77 |
add_action( 'init', array( $this, 'change_user_role_meta' ) );
|
78 |
}
|
79 |
|
80 |
-
// Coupon code generator
|
81 |
-
if ( 'yes' === get_option( 'wcj_coupons_code_generator_enabled', 'no' ) ) {
|
82 |
-
add_action( 'wp_ajax_wcj_generate_coupon_code', array( $this, 'ajax_generate_coupon_code' ) );
|
83 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_generate_coupon_code_script' ) );
|
84 |
-
}
|
85 |
-
|
86 |
-
}
|
87 |
-
}
|
88 |
-
|
89 |
-
/**
|
90 |
-
* enqueue_generate_coupon_code_script.
|
91 |
-
*
|
92 |
-
* @version 3.1.3
|
93 |
-
* @since 3.1.3
|
94 |
-
*/
|
95 |
-
function enqueue_generate_coupon_code_script() {
|
96 |
-
global $pagenow;
|
97 |
-
if ( 'post-new.php' === $pagenow && isset( $_GET['post_type'] ) && 'shop_coupon' === $_GET['post_type'] ) {
|
98 |
-
wp_enqueue_script( 'wcj-coupons-code-generator', wcj_plugin_url() . '/includes/js/wcj-coupons-code-generator.js', array( 'jquery' ), WCJ()->version, true );
|
99 |
-
wp_localize_script( 'wcj-coupons-code-generator', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
|
100 |
-
}
|
101 |
-
}
|
102 |
-
|
103 |
-
/**
|
104 |
-
* generate_coupon_code.
|
105 |
-
*
|
106 |
-
* @version 3.1.3
|
107 |
-
* @since 3.1.3
|
108 |
-
* @todo more options: "algorithm", "fixed length", "uppercase/lowercase" etc.
|
109 |
-
*/
|
110 |
-
function generate_coupon_code( $str = '' ) {
|
111 |
-
if ( '' === $str ) {
|
112 |
-
$str = time();
|
113 |
-
}
|
114 |
-
return sprintf( '%08x', crc32( time() ) );
|
115 |
-
}
|
116 |
-
|
117 |
-
/**
|
118 |
-
* ajax_generate_coupon_code.
|
119 |
-
*
|
120 |
-
* @version 3.1.3
|
121 |
-
* @since 3.1.3
|
122 |
-
* @todo (maybe) optionally generate some description for coupon (e.g. "Automatically generated coupon [YYYY-MM-DD]")
|
123 |
-
*/
|
124 |
-
function ajax_generate_coupon_code() {
|
125 |
-
$attempts = 0;
|
126 |
-
while ( true ) {
|
127 |
-
$coupon_code = $this->generate_coupon_code();
|
128 |
-
$coupon = new WC_Coupon( $coupon_code );
|
129 |
-
if ( ! $coupon->get_id() ) {
|
130 |
-
echo $coupon_code;
|
131 |
-
die();
|
132 |
-
}
|
133 |
-
$attempts++;
|
134 |
-
if ( $attempts > 100 ) { // shouldn't happen, but just in case...
|
135 |
-
echo '';
|
136 |
-
die();
|
137 |
-
}
|
138 |
}
|
139 |
}
|
140 |
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - General
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
+
* @version 3.2.3
|
19 |
* @todo expand `$this->desc`
|
|
|
|
|
|
|
20 |
*/
|
21 |
function __construct() {
|
22 |
|
74 |
add_action( 'init', array( $this, 'change_user_role_meta' ) );
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
}
|
78 |
}
|
79 |
|
includes/class-wcj-order-min-amount.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Minimum Amount
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @since 2.5.7
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo order max amount
|
@@ -142,7 +142,7 @@ class WCJ_Order_Min_Amount extends WCJ_Module {
|
|
142 |
/**
|
143 |
* stop_from_seeing_checkout.
|
144 |
*
|
145 |
-
* @version 2.
|
146 |
* @todo (maybe) `if ( is_admin() ) return;`
|
147 |
*/
|
148 |
function stop_from_seeing_checkout( $wp ) {
|
@@ -165,7 +165,7 @@ class WCJ_Order_Min_Amount extends WCJ_Module {
|
|
165 |
return;
|
166 |
}
|
167 |
if ( $the_cart_total < $minimum ) {
|
168 |
-
wp_safe_redirect(
|
169 |
exit;
|
170 |
}
|
171 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Minimum Amount
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.5.7
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo order max amount
|
142 |
/**
|
143 |
* stop_from_seeing_checkout.
|
144 |
*
|
145 |
+
* @version 3.2.3
|
146 |
* @todo (maybe) `if ( is_admin() ) return;`
|
147 |
*/
|
148 |
function stop_from_seeing_checkout( $wp ) {
|
165 |
return;
|
166 |
}
|
167 |
if ( $the_cart_total < $minimum ) {
|
168 |
+
wp_safe_redirect( wc_get_cart_url() );
|
169 |
exit;
|
170 |
}
|
171 |
}
|
includes/class-wcj-order-numbers.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Numbers
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -15,7 +15,7 @@ class WCJ_Order_Numbers extends WCJ_Module {
|
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
-
* @version 3.
|
19 |
* @todo (maybe) rename "Orders Renumerate" to "Renumerate orders"
|
20 |
* @todo (maybe) use `woocommerce_new_order` hook instead of `wp_insert_post`
|
21 |
*/
|
@@ -44,7 +44,27 @@ class WCJ_Order_Numbers extends WCJ_Module {
|
|
44 |
if ( 'yes' === get_option( 'wcj_order_number_search_by_custom_number_enabled', 'yes' ) ) {
|
45 |
add_action( 'pre_get_posts', array( $this, 'search_by_custom_number' ) );
|
46 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
}
|
|
|
48 |
}
|
49 |
|
50 |
/**
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Numbers
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
+
* @version 3.2.3
|
19 |
* @todo (maybe) rename "Orders Renumerate" to "Renumerate orders"
|
20 |
* @todo (maybe) use `woocommerce_new_order` hook instead of `wp_insert_post`
|
21 |
*/
|
44 |
if ( 'yes' === get_option( 'wcj_order_number_search_by_custom_number_enabled', 'yes' ) ) {
|
45 |
add_action( 'pre_get_posts', array( $this, 'search_by_custom_number' ) );
|
46 |
}
|
47 |
+
// "WooCommerce Subscriptions" plugin
|
48 |
+
$woocommerce_subscriptions_types = array( 'subscription', 'renewal_order', 'resubscribe_order', 'copy_order' );
|
49 |
+
foreach ( $woocommerce_subscriptions_types as $woocommerce_subscriptions_type ) {
|
50 |
+
add_filter( 'wcs_' . $woocommerce_subscriptions_type . '_meta', array( $this, 'woocommerce_subscriptions_remove_meta_copy' ), PHP_INT_MAX, 3 );
|
51 |
+
}
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* woocommerce_subscriptions_remove_meta_copy.
|
57 |
+
*
|
58 |
+
* @version 3.2.3
|
59 |
+
* @since 3.2.3
|
60 |
+
*/
|
61 |
+
function woocommerce_subscriptions_remove_meta_copy( $meta, $to_order, $from_order ) {
|
62 |
+
foreach ( $meta as $meta_id => $meta_item ) {
|
63 |
+
if ( '_wcj_order_number' === $meta_item['meta_key'] ) {
|
64 |
+
unset( $meta[ $meta_id ] );
|
65 |
+
}
|
66 |
}
|
67 |
+
return $meta;
|
68 |
}
|
69 |
|
70 |
/**
|
includes/class-wcj-order-quantities.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Min/Max Quantities
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.9.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -60,13 +60,19 @@ class WCJ_Order_Quantities extends WCJ_Module {
|
|
60 |
/**
|
61 |
* enqueue_script.
|
62 |
*
|
63 |
-
* @version 3.2.
|
64 |
* @since 3.2.2
|
|
|
65 |
* @todo make this optional?
|
66 |
*/
|
67 |
function enqueue_script() {
|
68 |
$_product = wc_get_product();
|
69 |
if ( $_product && $_product->is_type( 'variable' ) ) {
|
|
|
|
|
|
|
|
|
|
|
70 |
$product_quantities = array();
|
71 |
foreach ( $_product->get_available_variations() as $variation ) {
|
72 |
$product_quantities[ $variation['variation_id'] ] = array(
|
@@ -76,6 +82,7 @@ class WCJ_Order_Quantities extends WCJ_Module {
|
|
76 |
}
|
77 |
wp_enqueue_script( 'wcj-order-quantities', trailingslashit( wcj_plugin_url() ) . 'includes/js/wcj-order-quantities.js', array( 'jquery' ), WCJ()->version, true );
|
78 |
wp_localize_script( 'wcj-order-quantities', 'product_quantities', $product_quantities );
|
|
|
79 |
}
|
80 |
}
|
81 |
|
@@ -158,7 +165,7 @@ class WCJ_Order_Quantities extends WCJ_Module {
|
|
158 |
/**
|
159 |
* stop_from_seeing_checkout.
|
160 |
*
|
161 |
-
* @version 2.
|
162 |
* @since 2.9.0
|
163 |
*/
|
164 |
function stop_from_seeing_checkout() {
|
@@ -175,13 +182,13 @@ class WCJ_Order_Quantities extends WCJ_Module {
|
|
175 |
$cart_total_quantity = array_sum( $cart_item_quantities );
|
176 |
if ( 'yes' === get_option( 'wcj_order_quantities_max_section_enabled', 'no' ) ) {
|
177 |
if ( ! $this->check_quantities( 'max', $cart_item_quantities, $cart_total_quantity, false, true ) ) {
|
178 |
-
wp_safe_redirect(
|
179 |
exit;
|
180 |
}
|
181 |
}
|
182 |
if ( 'yes' === get_option( 'wcj_order_quantities_min_section_enabled', 'no' ) ) {
|
183 |
if ( ! $this->check_quantities( 'min', $cart_item_quantities, $cart_total_quantity, false, true ) ) {
|
184 |
-
wp_safe_redirect(
|
185 |
exit;
|
186 |
}
|
187 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Order Min/Max Quantities
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.9.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
60 |
/**
|
61 |
* enqueue_script.
|
62 |
*
|
63 |
+
* @version 3.2.3
|
64 |
* @since 3.2.2
|
65 |
+
* @todo `force_on_add_to_cart` for simple products
|
66 |
* @todo make this optional?
|
67 |
*/
|
68 |
function enqueue_script() {
|
69 |
$_product = wc_get_product();
|
70 |
if ( $_product && $_product->is_type( 'variable' ) ) {
|
71 |
+
$quantities_options = array(
|
72 |
+
'reset_to_min' => ( 'reset_to_min' === get_option( 'wcj_order_quantities_variable_variation_change', 'do_nothing' ) ),
|
73 |
+
'reset_to_max' => ( 'reset_to_max' === get_option( 'wcj_order_quantities_variable_variation_change', 'do_nothing' ) ),
|
74 |
+
'force_on_add_to_cart' => ( 'yes' === get_option( 'wcj_order_quantities_variable_force_on_add_to_cart', 'no' ) ),
|
75 |
+
);
|
76 |
$product_quantities = array();
|
77 |
foreach ( $_product->get_available_variations() as $variation ) {
|
78 |
$product_quantities[ $variation['variation_id'] ] = array(
|
82 |
}
|
83 |
wp_enqueue_script( 'wcj-order-quantities', trailingslashit( wcj_plugin_url() ) . 'includes/js/wcj-order-quantities.js', array( 'jquery' ), WCJ()->version, true );
|
84 |
wp_localize_script( 'wcj-order-quantities', 'product_quantities', $product_quantities );
|
85 |
+
wp_localize_script( 'wcj-order-quantities', 'quantities_options', $quantities_options );
|
86 |
}
|
87 |
}
|
88 |
|
165 |
/**
|
166 |
* stop_from_seeing_checkout.
|
167 |
*
|
168 |
+
* @version 3.2.3
|
169 |
* @since 2.9.0
|
170 |
*/
|
171 |
function stop_from_seeing_checkout() {
|
182 |
$cart_total_quantity = array_sum( $cart_item_quantities );
|
183 |
if ( 'yes' === get_option( 'wcj_order_quantities_max_section_enabled', 'no' ) ) {
|
184 |
if ( ! $this->check_quantities( 'max', $cart_item_quantities, $cart_total_quantity, false, true ) ) {
|
185 |
+
wp_safe_redirect( wc_get_cart_url() );
|
186 |
exit;
|
187 |
}
|
188 |
}
|
189 |
if ( 'yes' === get_option( 'wcj_order_quantities_min_section_enabled', 'no' ) ) {
|
190 |
if ( ! $this->check_quantities( 'min', $cart_item_quantities, $cart_total_quantity, false, true ) ) {
|
191 |
+
wp_safe_redirect( wc_get_cart_url() );
|
192 |
exit;
|
193 |
}
|
194 |
}
|
includes/class-wcj-payment-gateways-min-max.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Gateways Min/Max Amounts
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @since 2.4.1
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -17,6 +17,7 @@ class WCJ_Payment_Gateways_Min_Max extends WCJ_Module {
|
|
17 |
* Constructor.
|
18 |
*
|
19 |
* @version 2.8.0
|
|
|
20 |
*/
|
21 |
function __construct() {
|
22 |
|
@@ -34,18 +35,24 @@ class WCJ_Payment_Gateways_Min_Max extends WCJ_Module {
|
|
34 |
/**
|
35 |
* available_payment_gateways.
|
36 |
*
|
37 |
-
* @version 2.
|
|
|
|
|
38 |
*/
|
39 |
function available_payment_gateways( $_available_gateways ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
$notices = array();
|
41 |
$notices_template_min = get_option( 'wcj_payment_gateways_min_max_notices_template_min', __( 'Minimum amount for %gateway_title% is %min_amount%', 'woocommerce-jetpack') );
|
42 |
$notices_template_max = get_option( 'wcj_payment_gateways_min_max_notices_template_max', __( 'Maximum amount for %gateway_title% is %max_amount%', 'woocommerce-jetpack') );
|
43 |
foreach ( $_available_gateways as $key => $gateway ) {
|
44 |
$min = get_option( 'wcj_payment_gateways_min_' . $key, 0 );
|
45 |
$max = get_option( 'wcj_payment_gateways_max_' . $key, 0 );
|
46 |
-
global $woocommerce;
|
47 |
-
$total_in_cart = ( 'no' === get_option( 'wcj_payment_gateways_min_max_exclude_shipping', 'no' ) ) ?
|
48 |
-
$woocommerce->cart->cart_contents_total + $woocommerce->cart->shipping_total : $woocommerce->cart->cart_contents_total;
|
49 |
if ( $min != 0 && $total_in_cart < $min ) {
|
50 |
$notices[] = str_replace( array( '%gateway_title%', '%min_amount%' ), array( $gateway->title, wc_price( $min ) ), $notices_template_min );
|
51 |
unset( $_available_gateways[ $key ] );
|
@@ -57,8 +64,7 @@ class WCJ_Payment_Gateways_Min_Max extends WCJ_Module {
|
|
57 |
continue;
|
58 |
}
|
59 |
}
|
60 |
-
if ( 'yes' === get_option( 'wcj_payment_gateways_min_max_notices_enable', 'yes' ) && ! empty( $notices ) ) {
|
61 |
-
// wc_clear_notices();
|
62 |
$notice_type = get_option( 'wcj_payment_gateways_min_max_notices_type', 'notice' );
|
63 |
foreach ( $notices as $notice ) {
|
64 |
if ( ! wc_has_notice( $notice, $notice_type ) ) {
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Gateways Min/Max Amounts
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.4.1
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
17 |
* Constructor.
|
18 |
*
|
19 |
* @version 2.8.0
|
20 |
+
* @since 2.4.1
|
21 |
*/
|
22 |
function __construct() {
|
23 |
|
35 |
/**
|
36 |
* available_payment_gateways.
|
37 |
*
|
38 |
+
* @version 3.2.3
|
39 |
+
* @since 2.4.1
|
40 |
+
* @todo (maybe) `wc_clear_notices()`
|
41 |
*/
|
42 |
function available_payment_gateways( $_available_gateways ) {
|
43 |
+
if ( ! function_exists( 'WC' ) || ! isset( WC()->cart ) ) {
|
44 |
+
return $_available_gateways;
|
45 |
+
}
|
46 |
+
$total_in_cart = WC()->cart->cart_contents_total;
|
47 |
+
if ( 'no' === get_option( 'wcj_payment_gateways_min_max_exclude_shipping', 'no' ) ) {
|
48 |
+
$total_in_cart += WC()->cart->shipping_total;
|
49 |
+
}
|
50 |
$notices = array();
|
51 |
$notices_template_min = get_option( 'wcj_payment_gateways_min_max_notices_template_min', __( 'Minimum amount for %gateway_title% is %min_amount%', 'woocommerce-jetpack') );
|
52 |
$notices_template_max = get_option( 'wcj_payment_gateways_min_max_notices_template_max', __( 'Maximum amount for %gateway_title% is %max_amount%', 'woocommerce-jetpack') );
|
53 |
foreach ( $_available_gateways as $key => $gateway ) {
|
54 |
$min = get_option( 'wcj_payment_gateways_min_' . $key, 0 );
|
55 |
$max = get_option( 'wcj_payment_gateways_max_' . $key, 0 );
|
|
|
|
|
|
|
56 |
if ( $min != 0 && $total_in_cart < $min ) {
|
57 |
$notices[] = str_replace( array( '%gateway_title%', '%min_amount%' ), array( $gateway->title, wc_price( $min ) ), $notices_template_min );
|
58 |
unset( $_available_gateways[ $key ] );
|
64 |
continue;
|
65 |
}
|
66 |
}
|
67 |
+
if ( function_exists( 'is_checkout' ) && is_checkout() && 'yes' === get_option( 'wcj_payment_gateways_min_max_notices_enable', 'yes' ) && ! empty( $notices ) ) {
|
|
|
68 |
$notice_type = get_option( 'wcj_payment_gateways_min_max_notices_type', 'notice' );
|
69 |
foreach ( $notices as $notice ) {
|
70 |
if ( ! wc_has_notice( $notice, $notice_type ) ) {
|
includes/class-wcj-price-labels.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Custom Price Labels
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -15,7 +15,7 @@ class WCJ_Price_Labels extends WCJ_Module {
|
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
-
* @version 2.
|
19 |
*/
|
20 |
function __construct() {
|
21 |
|
@@ -91,6 +91,8 @@ class WCJ_Price_Labels extends WCJ_Module {
|
|
91 |
// WooCommerce Subscription
|
92 |
'woocommerce_subscriptions_product_price_string',
|
93 |
'woocommerce_variable_subscription_price_html',
|
|
|
|
|
94 |
);
|
95 |
foreach ( $this->prices_filters as $the_filter ) {
|
96 |
add_filter( $the_filter, array( $this, 'custom_price' ), 100, 2 );
|
@@ -226,7 +228,7 @@ class WCJ_Price_Labels extends WCJ_Module {
|
|
226 |
/*
|
227 |
* custom_price - front end.
|
228 |
*
|
229 |
-
* @version 2.
|
230 |
* @todo rewrite this with less filters (e.g. `woocommerce_get_price_html` only) - at least for `! WCJ_IS_WC_VERSION_BELOW_3`
|
231 |
*/
|
232 |
function custom_price( $price, $product ) {
|
@@ -237,6 +239,8 @@ class WCJ_Price_Labels extends WCJ_Module {
|
|
237 |
$current_filter_name = current_filter();
|
238 |
if ( 'woocommerce_cart_item_price' === $current_filter_name ) {
|
239 |
$product = $product['data'];
|
|
|
|
|
240 |
}
|
241 |
$_product_id = wcj_get_product_id_or_variation_parent_id( $product );
|
242 |
$_product_type = ( WCJ_IS_WC_VERSION_BELOW_3 ? $product->product_type : $product->get_type() );
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Custom Price Labels
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
+
* @version 3.2.3
|
19 |
*/
|
20 |
function __construct() {
|
21 |
|
91 |
// WooCommerce Subscription
|
92 |
'woocommerce_subscriptions_product_price_string',
|
93 |
'woocommerce_variable_subscription_price_html',
|
94 |
+
// Entrada theme
|
95 |
+
'entrada_price',
|
96 |
);
|
97 |
foreach ( $this->prices_filters as $the_filter ) {
|
98 |
add_filter( $the_filter, array( $this, 'custom_price' ), 100, 2 );
|
228 |
/*
|
229 |
* custom_price - front end.
|
230 |
*
|
231 |
+
* @version 3.2.3
|
232 |
* @todo rewrite this with less filters (e.g. `woocommerce_get_price_html` only) - at least for `! WCJ_IS_WC_VERSION_BELOW_3`
|
233 |
*/
|
234 |
function custom_price( $price, $product ) {
|
239 |
$current_filter_name = current_filter();
|
240 |
if ( 'woocommerce_cart_item_price' === $current_filter_name ) {
|
241 |
$product = $product['data'];
|
242 |
+
} elseif ( 'entrada_price' === $current_filter_name ) {
|
243 |
+
$product = wc_get_product();
|
244 |
}
|
245 |
$_product_id = wcj_get_product_id_or_variation_parent_id( $product );
|
246 |
$_product_type = ( WCJ_IS_WC_VERSION_BELOW_3 ? $product->product_type : $product->get_type() );
|
includes/class-wcj-product-listings.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Listings
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -15,7 +15,7 @@ class WCJ_Product_Listings extends WCJ_Module {
|
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
-
* @version 3.2.
|
19 |
*/
|
20 |
function __construct() {
|
21 |
$this->id = 'product_listings';
|
@@ -53,7 +53,33 @@ class WCJ_Product_Listings extends WCJ_Module {
|
|
53 |
if ( 'yes' === get_option( 'wcj_products_admin_list_columns_order_enabled', 'no' ) ) {
|
54 |
add_filter( 'manage_edit-product_columns', array( $this, 'rearange_product_columns' ), PHP_INT_MAX );
|
55 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
|
|
|
|
|
|
57 |
}
|
58 |
|
59 |
/**
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Listings
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
+
* @version 3.2.3
|
19 |
*/
|
20 |
function __construct() {
|
21 |
$this->id = 'product_listings';
|
53 |
if ( 'yes' === get_option( 'wcj_products_admin_list_columns_order_enabled', 'no' ) ) {
|
54 |
add_filter( 'manage_edit-product_columns', array( $this, 'rearange_product_columns' ), PHP_INT_MAX );
|
55 |
}
|
56 |
+
|
57 |
+
// Product visibility by price
|
58 |
+
if ( 'yes' === get_option( 'wcj_product_listings_product_visibility_by_price_enabled', 'no' ) ) {
|
59 |
+
add_filter( 'woocommerce_product_is_visible', array( $this, 'product_visibility_by_price' ), PHP_INT_MAX, 2 );
|
60 |
+
}
|
61 |
+
|
62 |
+
}
|
63 |
+
}
|
64 |
+
|
65 |
+
/**
|
66 |
+
* product_visibility_by_price.
|
67 |
+
*
|
68 |
+
* @version 3.2.3
|
69 |
+
* @since 3.2.3
|
70 |
+
* @todo grouped products
|
71 |
+
*/
|
72 |
+
function product_visibility_by_price( $visible, $product_id ) {
|
73 |
+
$product = wc_get_product( $product_id );
|
74 |
+
if ( $product->is_type( 'variable' ) ) {
|
75 |
+
$min_price = $product->get_variation_price( 'min' );
|
76 |
+
$max_price = $product->get_variation_price( 'max' );
|
77 |
+
} else {
|
78 |
+
$min_price = $max_price = $product->get_price();
|
79 |
}
|
80 |
+
$min_price_limit = get_option( 'wcj_product_listings_product_visibility_by_price_min', 0 );
|
81 |
+
$max_price_limit = get_option( 'wcj_product_listings_product_visibility_by_price_max', 0 );
|
82 |
+
return ( ( 0 != $min_price_limit && $min_price < $min_price_limit ) || ( 0 != $max_price_limit && $max_price > $max_price_limit ) ? false : $visible );
|
83 |
}
|
84 |
|
85 |
/**
|
includes/class-wcj-sku.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - SKU
|
4 |
*
|
5 |
-
* @version 3.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -378,7 +378,7 @@ class WCJ_SKU extends WCJ_Module {
|
|
378 |
/**
|
379 |
* search_post_where.
|
380 |
*
|
381 |
-
* @version 2.
|
382 |
* @since 2.9.0
|
383 |
*/
|
384 |
function search_post_where( $where = '' ) {
|
@@ -386,7 +386,7 @@ class WCJ_SKU extends WCJ_Module {
|
|
386 |
if ( empty( $wp_the_query->query_vars['wc_query'] ) || empty( $wp_the_query->query_vars['s'] ) ) {
|
387 |
return $where;
|
388 |
}
|
389 |
-
$where = preg_replace( "
|
390 |
return $where;
|
391 |
}
|
392 |
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - SKU
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
378 |
/**
|
379 |
* search_post_where.
|
380 |
*
|
381 |
+
* @version 3.2.3
|
382 |
* @since 2.9.0
|
383 |
*/
|
384 |
function search_post_where( $where = '' ) {
|
386 |
if ( empty( $wp_the_query->query_vars['wc_query'] ) || empty( $wp_the_query->query_vars['s'] ) ) {
|
387 |
return $where;
|
388 |
}
|
389 |
+
$where = preg_replace( "/\(\s*wp_posts.post_title\s+LIKE\s*(\'[^\']+\')\s*\)/", "(wp_posts.post_title LIKE $1) OR (wcj_sku.meta_key = '_sku' AND CAST(wcj_sku.meta_value AS CHAR) LIKE $1)", $where );
|
390 |
return $where;
|
391 |
}
|
392 |
|
includes/classes/class-wcj-pdf-invoice.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce PDF Invoice
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -22,7 +22,7 @@ class WCJ_PDF_Invoice extends WCJ_Invoice {
|
|
22 |
/**
|
23 |
* prepare_pdf.
|
24 |
*
|
25 |
-
* @version 3.2.
|
26 |
*/
|
27 |
function prepare_pdf() {
|
28 |
|
@@ -135,6 +135,12 @@ class WCJ_PDF_Invoice extends WCJ_Invoice {
|
|
135 |
$pdf->setTextShadow( array( 'enabled' => true, 'depth_w' => 0.2, 'depth_h' => 0.2, 'color' => array( 196, 196, 196 ), 'opacity' => 1, 'blend_mode' => 'Normal' ) );
|
136 |
}
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
return $pdf;
|
139 |
}
|
140 |
|
2 |
/**
|
3 |
* Booster for WooCommerce PDF Invoice
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
22 |
/**
|
23 |
* prepare_pdf.
|
24 |
*
|
25 |
+
* @version 3.2.3
|
26 |
*/
|
27 |
function prepare_pdf() {
|
28 |
|
135 |
$pdf->setTextShadow( array( 'enabled' => true, 'depth_w' => 0.2, 'depth_h' => 0.2, 'color' => array( 196, 196, 196 ), 'opacity' => 1, 'blend_mode' => 'Normal' ) );
|
136 |
}
|
137 |
|
138 |
+
// Background image
|
139 |
+
if ( '' != ( $background_image = do_shortcode( get_option( 'wcj_invoicing_' . $invoice_type . '_background_image', '' ) ) ) ) {
|
140 |
+
$background_image = parse_url( $background_image, PHP_URL_PATH );
|
141 |
+
$pdf->Image( $background_image, 0, 0, $pdf->getPageWidth(), $pdf->getPageHeight() );
|
142 |
+
}
|
143 |
+
|
144 |
return $pdf;
|
145 |
}
|
146 |
|
includes/constants/wcj-constants.php
CHANGED
@@ -15,7 +15,6 @@ if ( ! defined( 'WCJ_WC_VERSION' ) ) {
|
|
15 |
*
|
16 |
* @version 2.7.0
|
17 |
* @since 2.7.0
|
18 |
-
* @author Algoritmika Ltd.
|
19 |
*/
|
20 |
define( 'WCJ_WC_VERSION', get_option( 'woocommerce_version', null ) );
|
21 |
}
|
@@ -26,7 +25,6 @@ if ( ! defined( 'WCJ_IS_WC_VERSION_BELOW_3' ) ) {
|
|
26 |
*
|
27 |
* @version 2.7.0
|
28 |
* @since 2.7.0
|
29 |
-
* @author Algoritmika Ltd.
|
30 |
*/
|
31 |
define( 'WCJ_IS_WC_VERSION_BELOW_3', version_compare( WCJ_WC_VERSION, '3.0.0', '<' ) );
|
32 |
}
|
@@ -37,7 +35,6 @@ if ( ! defined( 'WCJ_IS_WC_VERSION_BELOW_3_2_0' ) ) {
|
|
37 |
*
|
38 |
* @version 3.2.0
|
39 |
* @since 3.2.0
|
40 |
-
* @author Algoritmika Ltd.
|
41 |
*/
|
42 |
define( 'WCJ_IS_WC_VERSION_BELOW_3_2_0', version_compare( WCJ_WC_VERSION, '3.2.0', '<' ) );
|
43 |
}
|
@@ -48,7 +45,6 @@ if ( ! defined( 'WCJ_PRODUCT_GET_PRICE_FILTER' ) ) {
|
|
48 |
*
|
49 |
* @version 2.7.0
|
50 |
* @since 2.7.0
|
51 |
-
* @author Algoritmika Ltd.
|
52 |
*/
|
53 |
define( 'WCJ_PRODUCT_GET_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_price' : 'woocommerce_product_get_price' ) );
|
54 |
}
|
@@ -59,7 +55,6 @@ if ( ! defined( 'WCJ_PRODUCT_GET_SALE_PRICE_FILTER' ) ) {
|
|
59 |
*
|
60 |
* @version 2.7.0
|
61 |
* @since 2.7.0
|
62 |
-
* @author Algoritmika Ltd.
|
63 |
*/
|
64 |
define( 'WCJ_PRODUCT_GET_SALE_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_sale_price' : 'woocommerce_product_get_sale_price' ) );
|
65 |
}
|
@@ -70,7 +65,6 @@ if ( ! defined( 'WCJ_PRODUCT_GET_REGULAR_PRICE_FILTER' ) ) {
|
|
70 |
*
|
71 |
* @version 2.7.0
|
72 |
* @since 2.7.0
|
73 |
-
* @author Algoritmika Ltd.
|
74 |
*/
|
75 |
define( 'WCJ_PRODUCT_GET_REGULAR_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_regular_price' : 'woocommerce_product_get_regular_price' ) );
|
76 |
}
|
@@ -81,7 +75,6 @@ if ( ! defined( 'WCJ_SESSION_TYPE' ) ) {
|
|
81 |
*
|
82 |
* @version 3.1.0
|
83 |
* @since 3.1.0
|
84 |
-
* @author Algoritmika Ltd.
|
85 |
*/
|
86 |
define( 'WCJ_SESSION_TYPE', ( 'yes' === get_option( 'wcj_general_enabled', 'no' ) ? get_option( 'wcj_general_advanced_session_type', 'standard' ) : 'standard' ) );
|
87 |
}
|
15 |
*
|
16 |
* @version 2.7.0
|
17 |
* @since 2.7.0
|
|
|
18 |
*/
|
19 |
define( 'WCJ_WC_VERSION', get_option( 'woocommerce_version', null ) );
|
20 |
}
|
25 |
*
|
26 |
* @version 2.7.0
|
27 |
* @since 2.7.0
|
|
|
28 |
*/
|
29 |
define( 'WCJ_IS_WC_VERSION_BELOW_3', version_compare( WCJ_WC_VERSION, '3.0.0', '<' ) );
|
30 |
}
|
35 |
*
|
36 |
* @version 3.2.0
|
37 |
* @since 3.2.0
|
|
|
38 |
*/
|
39 |
define( 'WCJ_IS_WC_VERSION_BELOW_3_2_0', version_compare( WCJ_WC_VERSION, '3.2.0', '<' ) );
|
40 |
}
|
45 |
*
|
46 |
* @version 2.7.0
|
47 |
* @since 2.7.0
|
|
|
48 |
*/
|
49 |
define( 'WCJ_PRODUCT_GET_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_price' : 'woocommerce_product_get_price' ) );
|
50 |
}
|
55 |
*
|
56 |
* @version 2.7.0
|
57 |
* @since 2.7.0
|
|
|
58 |
*/
|
59 |
define( 'WCJ_PRODUCT_GET_SALE_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_sale_price' : 'woocommerce_product_get_sale_price' ) );
|
60 |
}
|
65 |
*
|
66 |
* @version 2.7.0
|
67 |
* @since 2.7.0
|
|
|
68 |
*/
|
69 |
define( 'WCJ_PRODUCT_GET_REGULAR_PRICE_FILTER', ( WCJ_IS_WC_VERSION_BELOW_3 ? 'woocommerce_get_regular_price' : 'woocommerce_product_get_regular_price' ) );
|
70 |
}
|
75 |
*
|
76 |
* @version 3.1.0
|
77 |
* @since 3.1.0
|
|
|
78 |
*/
|
79 |
define( 'WCJ_SESSION_TYPE', ( 'yes' === get_option( 'wcj_general_enabled', 'no' ) ? get_option( 'wcj_general_advanced_session_type', 'standard' ) : 'standard' ) );
|
80 |
}
|
includes/exchange-rates/class-wcj-exchange-rates.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce Exchange Rates
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -98,7 +98,7 @@ class WCJ_Exchange_Rates {
|
|
98 |
/**
|
99 |
* output_settings_button.
|
100 |
*
|
101 |
-
* @version 2.
|
102 |
* @todo (maybe) wcj_currency_exchange_rates_precision
|
103 |
*/
|
104 |
function output_settings_button( $value ) {
|
@@ -125,7 +125,7 @@ class WCJ_Exchange_Rates {
|
|
125 |
$tip = '';
|
126 |
$description = '';
|
127 |
$exchange_rate_servers = wcj_get_currency_exchange_rate_servers();
|
128 |
-
$exchange_rate_server = $exchange_rate_servers[ get_option( 'wcj_currency_exchange_rates_server', '
|
129 |
$value_title = sprintf( __( 'Grab %s rate from %s', 'woocommerce-jetpack' ), $value['value'], $exchange_rate_server );
|
130 |
?>
|
131 |
<tr valign="top">
|
2 |
/**
|
3 |
* Booster for WooCommerce Exchange Rates
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
98 |
/**
|
99 |
* output_settings_button.
|
100 |
*
|
101 |
+
* @version 3.2.3
|
102 |
* @todo (maybe) wcj_currency_exchange_rates_precision
|
103 |
*/
|
104 |
function output_settings_button( $value ) {
|
125 |
$tip = '';
|
126 |
$description = '';
|
127 |
$exchange_rate_servers = wcj_get_currency_exchange_rate_servers();
|
128 |
+
$exchange_rate_server = $exchange_rate_servers[ get_option( 'wcj_currency_exchange_rates_server', 'ecb' ) ];
|
129 |
$value_title = sprintf( __( 'Grab %s rate from %s', 'woocommerce-jetpack' ), $value['value'], $exchange_rate_server );
|
130 |
?>
|
131 |
<tr valign="top">
|
includes/functions/wcj-functions-exchange-rates.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions - Exchange Rates
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -30,7 +30,7 @@ if ( ! function_exists( 'alg_get_exchange_rate' ) ) {
|
|
30 |
/*
|
31 |
* alg_get_exchange_rate.
|
32 |
*
|
33 |
-
* @version 3.2.
|
34 |
* @since 2.6.0
|
35 |
*/
|
36 |
function alg_get_exchange_rate( $currency_from, $currency_to ) {
|
@@ -39,7 +39,7 @@ if ( ! function_exists( 'alg_get_exchange_rate' ) ) {
|
|
39 |
$currency_to = $currency_from;
|
40 |
$currency_from = $_currency_to;
|
41 |
}
|
42 |
-
$exchange_rates_server = get_option( 'wcj_currency_exchange_rates_server', '
|
43 |
switch ( $exchange_rates_server ) {
|
44 |
case 'tcmb':
|
45 |
$return = alg_tcmb_get_exchange_rate( $currency_from, $currency_to );
|
@@ -171,7 +171,7 @@ if ( ! function_exists( 'alg_yahoo_get_exchange_rate' ) ) {
|
|
171 |
/*
|
172 |
* alg_yahoo_get_exchange_rate.
|
173 |
*
|
174 |
-
* @version 3.2.
|
175 |
* @return float rate on success, else 0
|
176 |
* @todo `alg_` to `wcj_`
|
177 |
*/
|
@@ -183,6 +183,7 @@ if ( ! function_exists( 'alg_yahoo_get_exchange_rate' ) ) {
|
|
183 |
} elseif ( function_exists( 'curl_version' ) ) {
|
184 |
$curl = curl_init( $url );
|
185 |
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );
|
|
|
186 |
$response = curl_exec( $curl );
|
187 |
curl_close( $curl );
|
188 |
}
|
@@ -233,7 +234,7 @@ if ( ! function_exists( 'wcj_fixer_io_get_exchange_rate_by_date' ) ) {
|
|
233 |
/*
|
234 |
* wcj_fixer_io_get_exchange_rate_by_date.
|
235 |
*
|
236 |
-
* @version 3.2.
|
237 |
* @since 3.2.2
|
238 |
* @return false or rate
|
239 |
*/
|
@@ -245,6 +246,7 @@ if ( ! function_exists( 'wcj_fixer_io_get_exchange_rate_by_date' ) ) {
|
|
245 |
} elseif ( function_exists( 'curl_version' ) ) {
|
246 |
$curl = curl_init( $url );
|
247 |
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );
|
|
|
248 |
$response = curl_exec( $curl );
|
249 |
curl_close( $curl );
|
250 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions - Exchange Rates
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
30 |
/*
|
31 |
* alg_get_exchange_rate.
|
32 |
*
|
33 |
+
* @version 3.2.3
|
34 |
* @since 2.6.0
|
35 |
*/
|
36 |
function alg_get_exchange_rate( $currency_from, $currency_to ) {
|
39 |
$currency_to = $currency_from;
|
40 |
$currency_from = $_currency_to;
|
41 |
}
|
42 |
+
$exchange_rates_server = get_option( 'wcj_currency_exchange_rates_server', 'ecb' );
|
43 |
switch ( $exchange_rates_server ) {
|
44 |
case 'tcmb':
|
45 |
$return = alg_tcmb_get_exchange_rate( $currency_from, $currency_to );
|
171 |
/*
|
172 |
* alg_yahoo_get_exchange_rate.
|
173 |
*
|
174 |
+
* @version 3.2.3
|
175 |
* @return float rate on success, else 0
|
176 |
* @todo `alg_` to `wcj_`
|
177 |
*/
|
183 |
} elseif ( function_exists( 'curl_version' ) ) {
|
184 |
$curl = curl_init( $url );
|
185 |
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );
|
186 |
+
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
|
187 |
$response = curl_exec( $curl );
|
188 |
curl_close( $curl );
|
189 |
}
|
234 |
/*
|
235 |
* wcj_fixer_io_get_exchange_rate_by_date.
|
236 |
*
|
237 |
+
* @version 3.2.3
|
238 |
* @since 3.2.2
|
239 |
* @return false or rate
|
240 |
*/
|
246 |
} elseif ( function_exists( 'curl_version' ) ) {
|
247 |
$curl = curl_init( $url );
|
248 |
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );
|
249 |
+
curl_setopt( $curl, CURLOPT_SSL_VERIFYPEER, false );
|
250 |
$response = curl_exec( $curl );
|
251 |
curl_close( $curl );
|
252 |
}
|
includes/functions/wcj-functions-general.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -463,7 +463,7 @@ if ( ! function_exists( 'wcj_get_select_options' ) ) {
|
|
463 |
/*
|
464 |
* wcj_get_select_options()
|
465 |
*
|
466 |
-
* @version 2.
|
467 |
* @since 2.3.0
|
468 |
* @return array
|
469 |
*/
|
@@ -472,7 +472,7 @@ if ( ! function_exists( 'wcj_get_select_options' ) ) {
|
|
472 |
$select_options = array();
|
473 |
foreach ( $select_options_raw as $select_options_title ) {
|
474 |
$select_options_key = ( $do_sanitize ) ? sanitize_title( $select_options_title ) : $select_options_title;
|
475 |
-
$select_options[ $select_options_key ] = $select_options_title;
|
476 |
}
|
477 |
return $select_options;
|
478 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
463 |
/*
|
464 |
* wcj_get_select_options()
|
465 |
*
|
466 |
+
* @version 3.2.3
|
467 |
* @since 2.3.0
|
468 |
* @return array
|
469 |
*/
|
472 |
$select_options = array();
|
473 |
foreach ( $select_options_raw as $select_options_title ) {
|
474 |
$select_options_key = ( $do_sanitize ) ? sanitize_title( $select_options_title ) : $select_options_title;
|
475 |
+
$select_options[ 'wcj-' . $select_options_key ] = $select_options_title;
|
476 |
}
|
477 |
return $select_options;
|
478 |
}
|
includes/functions/wcj-functions-price-currency.php
CHANGED
@@ -2,13 +2,26 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions - Price and Currency
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
9 |
|
10 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
if ( ! function_exists( 'wcj_get_module_price_hooks_priority' ) ) {
|
13 |
/**
|
14 |
* wcj_get_module_price_hooks_priority.
|
2 |
/**
|
3 |
* Booster for WooCommerce - Functions - Price and Currency
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.7.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
9 |
|
10 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
11 |
|
12 |
+
if ( ! function_exists( 'wcj_get_wc_price_step' ) ) {
|
13 |
+
/**
|
14 |
+
* wcj_get_wc_price_step.
|
15 |
+
*
|
16 |
+
* @version 3.2.3
|
17 |
+
* @since 3.2.3
|
18 |
+
* @todo use this where needed
|
19 |
+
*/
|
20 |
+
function wcj_get_wc_price_step() {
|
21 |
+
return ( 1 / pow( 10, absint( get_option( 'woocommerce_price_num_decimals', 2 ) ) ) );
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
if ( ! function_exists( 'wcj_get_module_price_hooks_priority' ) ) {
|
26 |
/**
|
27 |
* wcj_get_module_price_hooks_priority.
|
includes/js/wcj-order-quantities.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
/**
|
2 |
* wcj-order-quantities.js
|
3 |
*
|
4 |
-
* @version 3.2.
|
5 |
-
* @
|
6 |
*/
|
7 |
|
8 |
function check_qty(){
|
@@ -11,16 +11,33 @@ function check_qty(){
|
|
11 |
return;
|
12 |
}
|
13 |
var current_qty = jQuery('[name=quantity]').val();
|
14 |
-
if (
|
|
|
|
|
|
|
|
|
15 |
jQuery('[name=quantity]').val(product_quantities[variation_id]['min_qty']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
return;
|
17 |
}
|
18 |
-
|
|
|
|
|
|
|
19 |
jQuery('[name=quantity]').val(product_quantities[variation_id]['max_qty']);
|
20 |
-
return;
|
21 |
}
|
22 |
}
|
23 |
|
24 |
jQuery(document).ready(function(){
|
25 |
jQuery('[name=variation_id]').on('change',check_qty);
|
|
|
|
|
|
|
26 |
});
|
1 |
/**
|
2 |
* wcj-order-quantities.js
|
3 |
*
|
4 |
+
* @version 3.2.3
|
5 |
+
* @since 3.2.2
|
6 |
*/
|
7 |
|
8 |
function check_qty(){
|
11 |
return;
|
12 |
}
|
13 |
var current_qty = jQuery('[name=quantity]').val();
|
14 |
+
if (quantities_options['reset_to_min']){
|
15 |
+
jQuery('[name=quantity]').val(product_quantities[variation_id]['min_qty']);
|
16 |
+
} else if (quantities_options['reset_to_max']){
|
17 |
+
jQuery('[name=quantity]').val(product_quantities[variation_id]['max_qty']);
|
18 |
+
} else if (current_qty < parseInt(product_quantities[variation_id]['min_qty'])){
|
19 |
jQuery('[name=quantity]').val(product_quantities[variation_id]['min_qty']);
|
20 |
+
} else if (current_qty > parseInt(product_quantities[variation_id]['max_qty'])){
|
21 |
+
jQuery('[name=quantity]').val(product_quantities[variation_id]['max_qty']);
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
function check_qty_no_reset(){
|
26 |
+
var variation_id = jQuery('[name=variation_id]').val();
|
27 |
+
if (0 == variation_id) {
|
28 |
return;
|
29 |
}
|
30 |
+
var current_qty = jQuery('[name=quantity]').val();
|
31 |
+
if (current_qty < parseInt(product_quantities[variation_id]['min_qty'])){
|
32 |
+
jQuery('[name=quantity]').val(product_quantities[variation_id]['min_qty']);
|
33 |
+
} else if (current_qty > parseInt(product_quantities[variation_id]['max_qty'])){
|
34 |
jQuery('[name=quantity]').val(product_quantities[variation_id]['max_qty']);
|
|
|
35 |
}
|
36 |
}
|
37 |
|
38 |
jQuery(document).ready(function(){
|
39 |
jQuery('[name=variation_id]').on('change',check_qty);
|
40 |
+
if (quantities_options['force_on_add_to_cart']){
|
41 |
+
jQuery('.single_add_to_cart_button').on('click',check_qty_no_reset);
|
42 |
+
}
|
43 |
});
|
includes/js/wcj-product-addons.js
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
/**
|
2 |
* wcj-product-addons.
|
3 |
*
|
4 |
-
* version 3.2.2
|
5 |
-
* since 2.5.3
|
6 |
-
* todo `text` type - update price not only on change, but on each pressed key
|
|
|
7 |
*/
|
8 |
|
9 |
var _ajax_object = ajax_object;
|
1 |
/**
|
2 |
* wcj-product-addons.
|
3 |
*
|
4 |
+
* @version 3.2.2
|
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
|
8 |
*/
|
9 |
|
10 |
var _ajax_object = ajax_object;
|
includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-numbering.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - PDF Invoicing - Numbering
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
@@ -15,13 +15,42 @@ class WCJ_PDF_Invoicing_Numbering extends WCJ_Module {
|
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
-
* @version 2.
|
19 |
*/
|
20 |
function __construct() {
|
21 |
$this->id = 'pdf_invoicing_numbering';
|
22 |
$this->parent_id = 'pdf_invoicing';
|
23 |
$this->short_desc = __( 'Numbering', 'woocommerce-jetpack' );
|
24 |
parent::__construct( 'submodule' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
}
|
2 |
/**
|
3 |
* Booster for WooCommerce - PDF Invoicing - Numbering
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @author Algoritmika Ltd.
|
7 |
*/
|
8 |
|
15 |
/**
|
16 |
* Constructor.
|
17 |
*
|
18 |
+
* @version 3.2.3
|
19 |
*/
|
20 |
function __construct() {
|
21 |
$this->id = 'pdf_invoicing_numbering';
|
22 |
$this->parent_id = 'pdf_invoicing';
|
23 |
$this->short_desc = __( 'Numbering', 'woocommerce-jetpack' );
|
24 |
parent::__construct( 'submodule' );
|
25 |
+
|
26 |
+
if ( 'yes' === get_option( 'wcj_invoicing_admin_search_by_invoice', 'no' ) ) {
|
27 |
+
add_action( 'pre_get_posts', array( $this, 'search_orders_by_invoice_number' ) );
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* search_orders_by_invoice_number.
|
33 |
+
*
|
34 |
+
* @version 3.2.3
|
35 |
+
* @since 3.2.3
|
36 |
+
*/
|
37 |
+
function search_orders_by_invoice_number( $query ) {
|
38 |
+
if (
|
39 |
+
! is_admin() ||
|
40 |
+
! isset( $query->query ) ||
|
41 |
+
! isset( $query->query['s'] ) ||
|
42 |
+
false === is_numeric( $query->query['s'] ) ||
|
43 |
+
0 == $query->query['s'] ||
|
44 |
+
'shop_order' !== $query->query['post_type'] ||
|
45 |
+
! $query->query_vars['shop_order_search']
|
46 |
+
) {
|
47 |
+
return;
|
48 |
+
}
|
49 |
+
$invoice_number = $query->query['s'];
|
50 |
+
$query->query_vars['post__in'] = array();
|
51 |
+
$query->query['s'] = '';
|
52 |
+
$query->set( 'meta_key', '_wcj_invoicing_invoice_number_id' );
|
53 |
+
$query->set( 'meta_value', $invoice_number );
|
54 |
}
|
55 |
|
56 |
}
|
includes/settings/wcj-settings-checkout-files-upload.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Checkout Files Upload
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -280,4 +280,30 @@ $settings = array_merge( $settings, array(
|
|
280 |
'id' => 'wcj_checkout_files_upload_form_template_options',
|
281 |
),
|
282 |
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
return $settings;
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Checkout Files Upload
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
280 |
'id' => 'wcj_checkout_files_upload_form_template_options',
|
281 |
),
|
282 |
) );
|
283 |
+
$settings = array_merge( $settings, array(
|
284 |
+
array(
|
285 |
+
'title' => __( 'Advanced Options', 'woocommerce-jetpack' ),
|
286 |
+
'type' => 'title',
|
287 |
+
'id' => 'wcj_checkout_files_upload_advanced_options',
|
288 |
+
),
|
289 |
+
array(
|
290 |
+
'title' => __( 'Block Potentially Harmful Files', 'woocommerce-jetpack' ),
|
291 |
+
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
292 |
+
'id' => 'wcj_checkout_files_upload_block_files_enabled',
|
293 |
+
'default' => 'yes',
|
294 |
+
'type' => 'checkbox',
|
295 |
+
),
|
296 |
+
array(
|
297 |
+
'title' => __( 'Potentially Harmful File Extensions', 'woocommerce-jetpack' ),
|
298 |
+
'desc' => sprintf( __( 'List of file extensions separated by vertical bar %s.', 'woocommerce-jetpack' ), '<code>|</code>' ),
|
299 |
+
'id' => 'wcj_checkout_files_upload_block_files_exts',
|
300 |
+
'default' => 'bat|exe|cmd|sh|php|php0|php1|php2|php3|php4|php5|php6|php7|php8|php9|ph|ph0|ph1|ph2|ph3|ph4|ph5|ph6|ph7|ph8|ph9|pl|cgi|386|dll|com|torrent|js|app|jar|pif|vb|vbscript|wsf|asp|cer|csr|jsp|drv|sys|ade|adp|bas|chm|cpl|crt|csh|fxp|hlp|hta|inf|ins|isp|jse|htaccess|htpasswd|ksh|lnk|mdb|mde|mdt|mdw|msc|msi|msp|mst|ops|pcd|prg|reg|scr|sct|shb|shs|url|vbe|vbs|wsc|wsf|wsh|html|htm',
|
301 |
+
'type' => 'text',
|
302 |
+
'css' => 'width:100%;',
|
303 |
+
),
|
304 |
+
array(
|
305 |
+
'type' => 'sectionend',
|
306 |
+
'id' => 'wcj_checkout_files_upload_advanced_options',
|
307 |
+
),
|
308 |
+
) );
|
309 |
return $settings;
|
includes/settings/wcj-settings-coupon-code-generator.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Booster for WooCommerce - Settings - Coupon Code Generator
|
4 |
+
*
|
5 |
+
* @version 3.2.3
|
6 |
+
* @since 3.2.3
|
7 |
+
* @author Algoritmika Ltd.
|
8 |
+
*/
|
9 |
+
|
10 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
11 |
+
exit; // Exit if accessed directly
|
12 |
+
}
|
13 |
+
|
14 |
+
$algorithms = array(
|
15 |
+
'crc32' => __( 'Hash', 'woocommerce-jetpack' ) . ': ' . 'crc32' . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 8 ) . ')',
|
16 |
+
'md5' => __( 'Hash', 'woocommerce-jetpack' ) . ': ' . 'md5' . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 32 ) . ')',
|
17 |
+
'sha1' => __( 'Hash', 'woocommerce-jetpack' ) . ': ' . 'sha1' . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 40 ) . ')',
|
18 |
+
'random_letters_and_numbers' => __( 'Random letters and numbers', 'woocommerce-jetpack' ) . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 32 ) . ')',
|
19 |
+
'random_letters' => __( 'Random letters', 'woocommerce-jetpack' ) . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 32 ) . ')',
|
20 |
+
'random_numbers' => __( 'Random numbers', 'woocommerce-jetpack' ) . ' (' . sprintf( __( 'length %d', 'woocommerce-jetpack' ), 32 ) . ')',
|
21 |
+
);
|
22 |
+
|
23 |
+
return array(
|
24 |
+
array(
|
25 |
+
'title' => __( 'Options', 'woocommerce-jetpack' ),
|
26 |
+
'type' => 'title',
|
27 |
+
'id' => 'wcj_coupon_code_generator_options',
|
28 |
+
),
|
29 |
+
array(
|
30 |
+
'title' => __( 'Generate Coupon Code Automatically', 'woocommerce-jetpack' ),
|
31 |
+
'desc_tip' => __( 'When enabled, this will generate coupon code automatically when adding new coupon.', 'woocommerce-jetpack' ),
|
32 |
+
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
33 |
+
'id' => 'wcj_coupons_code_generator_enabled',
|
34 |
+
'default' => 'no',
|
35 |
+
'type' => 'checkbox',
|
36 |
+
),
|
37 |
+
array(
|
38 |
+
'title' => __( 'Algorithm', 'woocommerce-jetpack' ),
|
39 |
+
'id' => 'wcj_coupons_code_generator_algorithm',
|
40 |
+
'default' => 'crc32',
|
41 |
+
'type' => 'select',
|
42 |
+
'options' => $algorithms,
|
43 |
+
'desc_tip' => sprintf( __( 'Algorithms: %s.', 'woocommerce-jetpack' ), implode( '; ', $algorithms ) ),
|
44 |
+
'desc' => apply_filters( 'booster_get_message', '', 'desc' ),
|
45 |
+
'custom_attributes' => apply_filters( 'booster_get_message', '', 'disabled' ),
|
46 |
+
),
|
47 |
+
array(
|
48 |
+
'title' => __( 'Length', 'woocommerce-jetpack' ),
|
49 |
+
'desc_tip' => __( 'Length value will be ignored if set above the maximum length for selected algorithm. Set to zero to use full length for selected algorithm.', 'woocommerce-jetpack' ),
|
50 |
+
'id' => 'wcj_coupons_code_generator_length',
|
51 |
+
'default' => 0,
|
52 |
+
'type' => 'number',
|
53 |
+
'desc' => apply_filters( 'booster_get_message', '', 'desc' ),
|
54 |
+
'custom_attributes' => apply_filters( 'booster_get_message', '', 'readonly' ),
|
55 |
+
),
|
56 |
+
array(
|
57 |
+
'type' => 'sectionend',
|
58 |
+
'id' => 'wcj_coupon_code_generator_options',
|
59 |
+
),
|
60 |
+
);
|
includes/settings/wcj-settings-currency-exchange-rates.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Currency Exchange Rates
|
4 |
*
|
5 |
-
* @version 2.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo add "rounding" and "offset" options for each pair separately
|
@@ -45,7 +45,7 @@ $settings = array(
|
|
45 |
array(
|
46 |
'title' => __( 'Exchange Rates Server', 'woocommerce-jetpack' ),
|
47 |
'id' => 'wcj_currency_exchange_rates_server',
|
48 |
-
'default' => '
|
49 |
'type' => 'select',
|
50 |
'options' => wcj_get_currency_exchange_rate_servers(),
|
51 |
),
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Currency Exchange Rates
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo add "rounding" and "offset" options for each pair separately
|
45 |
array(
|
46 |
'title' => __( 'Exchange Rates Server', 'woocommerce-jetpack' ),
|
47 |
'id' => 'wcj_currency_exchange_rates_server',
|
48 |
+
'default' => 'ecb',
|
49 |
'type' => 'select',
|
50 |
'options' => wcj_get_currency_exchange_rate_servers(),
|
51 |
),
|
includes/settings/wcj-settings-general.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - General
|
4 |
*
|
5 |
-
* @version 3.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo add link to Booster's shortcodes list
|
@@ -217,23 +217,6 @@ $settings = array(
|
|
217 |
'type' => 'sectionend',
|
218 |
'id' => 'wcj_general_user_role_changer_options',
|
219 |
),
|
220 |
-
array(
|
221 |
-
'title' => __( 'Coupons Options', 'woocommerce-jetpack' ),
|
222 |
-
'type' => 'title',
|
223 |
-
'id' => 'wcj_coupons_options',
|
224 |
-
),
|
225 |
-
array(
|
226 |
-
'title' => __( 'Generate Coupon Code Automatically', 'woocommerce-jetpack' ),
|
227 |
-
'desc_tip' => __( 'When enabled, this will generate coupon code automatically when adding new coupon.', 'woocommerce-jetpack' ),
|
228 |
-
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
229 |
-
'id' => 'wcj_coupons_code_generator_enabled',
|
230 |
-
'default' => 'no',
|
231 |
-
'type' => 'checkbox',
|
232 |
-
),
|
233 |
-
array(
|
234 |
-
'type' => 'sectionend',
|
235 |
-
'id' => 'wcj_coupons_options',
|
236 |
-
),
|
237 |
/*
|
238 |
array(
|
239 |
'title' => __( 'WooCommerce Templates Editor Links', 'woocommerce-jetpack' ),
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - General
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo add link to Booster's shortcodes list
|
217 |
'type' => 'sectionend',
|
218 |
'id' => 'wcj_general_user_role_changer_options',
|
219 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
/*
|
221 |
array(
|
222 |
'title' => __( 'WooCommerce Templates Editor Links', 'woocommerce-jetpack' ),
|
includes/settings/wcj-settings-order-quantities.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Order Min/Max Quantities
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.9.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo (maybe) generate settings in loop ( min / max )
|
@@ -147,6 +147,25 @@ return array(
|
|
147 |
'default' => 'no',
|
148 |
'type' => 'checkbox',
|
149 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
array(
|
151 |
'type' => 'sectionend',
|
152 |
'id' => 'wcj_order_quantities_general_options',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Order Min/Max Quantities
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.9.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
* @todo (maybe) generate settings in loop ( min / max )
|
147 |
'default' => 'no',
|
148 |
'type' => 'checkbox',
|
149 |
),
|
150 |
+
array(
|
151 |
+
'title' => __( 'Variable Products', 'woocommerce-jetpack' ),
|
152 |
+
'desc' => '<br>' . __( 'Action on variation change', 'woocommerce-jetpack' ),
|
153 |
+
'id' => 'wcj_order_quantities_variable_variation_change',
|
154 |
+
'default' => 'do_nothing',
|
155 |
+
'type' => 'select',
|
156 |
+
'options' => array(
|
157 |
+
'do_nothing' => __( 'Do nothing', 'woocommerce-jetpack' ),
|
158 |
+
'reset_to_min' => __( 'Reset to min quantity', 'woocommerce-jetpack' ),
|
159 |
+
'reset_to_max' => __( 'Reset to max quantity', 'woocommerce-jetpack' ),
|
160 |
+
),
|
161 |
+
),
|
162 |
+
array(
|
163 |
+
'desc' => __( 'Force on add to cart', 'woocommerce-jetpack' ),
|
164 |
+
'desc_tip' => __( 'Force quantity correction on add to cart button click', 'woocommerce-jetpack' ),
|
165 |
+
'id' => 'wcj_order_quantities_variable_force_on_add_to_cart',
|
166 |
+
'default' => 'no',
|
167 |
+
'type' => 'checkbox',
|
168 |
+
),
|
169 |
array(
|
170 |
'type' => 'sectionend',
|
171 |
'id' => 'wcj_order_quantities_general_options',
|
includes/settings/wcj-settings-pdf-invoicing-header.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Header
|
4 |
*
|
5 |
-
* @version 3.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -82,29 +82,4 @@ foreach ( $invoice_types as $invoice_type ) {
|
|
82 |
),
|
83 |
) );
|
84 |
}
|
85 |
-
$settings = array_merge( $settings, array(
|
86 |
-
array(
|
87 |
-
'title' => __( 'PDF Invoicing Header General Options', 'woocommerce-jetpack' ),
|
88 |
-
'type' => 'title',
|
89 |
-
'id' => 'wcj_invoicing_general_header_options',
|
90 |
-
),
|
91 |
-
array(
|
92 |
-
'title' => __( 'Default Images Directory', 'woocommerce-jetpack' ),
|
93 |
-
'desc' => __( 'Default images directory in TCPDF library (K_PATH_IMAGES).', 'woocommerce-jetpack' ),
|
94 |
-
'desc_tip' => __( 'Try changing this if you have issues displaying image in header.', 'woocommerce-jetpack' ),
|
95 |
-
'id' => 'wcj_invoicing_general_header_images_path',
|
96 |
-
'default' => 'empty',
|
97 |
-
'type' => 'select',
|
98 |
-
'options' => array(
|
99 |
-
'empty' => __( 'Empty', 'woocommerce-jetpack' ),
|
100 |
-
'tcpdf_default' => __( 'TCPDF Default', 'woocommerce-jetpack' ),
|
101 |
-
'abspath' => __( 'ABSPATH', 'woocommerce-jetpack' ), // . ': ' . ABSPATH,
|
102 |
-
'document_root' => __( 'DOCUMENT_ROOT', 'woocommerce-jetpack' ), // . ': ' . $_SERVER['DOCUMENT_ROOT'],
|
103 |
-
),
|
104 |
-
),
|
105 |
-
array(
|
106 |
-
'type' => 'sectionend',
|
107 |
-
'id' => 'wcj_invoicing_general_header_options',
|
108 |
-
),
|
109 |
-
) );
|
110 |
return $settings;
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Header
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
82 |
),
|
83 |
) );
|
84 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
return $settings;
|
includes/settings/wcj-settings-pdf-invoicing-page.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Page Settings
|
4 |
*
|
5 |
-
* @version 3.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -59,6 +59,16 @@ foreach ( $invoice_types as $invoice_type ) {
|
|
59 |
'default' => 0, // PDF_MARGIN_BOTTOM,
|
60 |
'type' => 'number',
|
61 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
array(
|
63 |
'type' => 'sectionend',
|
64 |
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_options',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Page Settings
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
59 |
'default' => 0, // PDF_MARGIN_BOTTOM,
|
60 |
'type' => 'number',
|
61 |
),
|
62 |
+
array(
|
63 |
+
'title' => __( 'Background Image', 'woocommerce-jetpack' ),
|
64 |
+
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_background_image',
|
65 |
+
'default' => '',
|
66 |
+
'type' => 'text',
|
67 |
+
'desc' => sprintf( __( 'Enter a local URL to an image. Upload your image using the <a href="%s">media uploader</a>.', 'woocommerce-jetpack' ),
|
68 |
+
admin_url( 'media-new.php' ) ),
|
69 |
+
'desc_tip' => __( 'Leave blank to disable', 'woocommerce-jetpack' ),
|
70 |
+
'class' => 'widefat',
|
71 |
+
),
|
72 |
array(
|
73 |
'type' => 'sectionend',
|
74 |
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_page_options',
|
includes/settings/wcj-settings-pdf-invoicing.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - General
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -76,6 +76,27 @@ $settings = array_merge( $settings, array(
|
|
76 |
'default' => 'no',
|
77 |
'type' => 'checkbox',
|
78 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
array(
|
80 |
'type' => 'sectionend',
|
81 |
'id' => 'wcj_pdf_invoicing_options',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - General
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
76 |
'default' => 'no',
|
77 |
'type' => 'checkbox',
|
78 |
),
|
79 |
+
array(
|
80 |
+
'title' => __( 'Replace Admin Order Search with Invoice Search', 'woocommerce-jetpack' ),
|
81 |
+
'desc' => __( 'Enable', 'woocommerce-jetpack' ),
|
82 |
+
'id' => 'wcj_invoicing_admin_search_by_invoice',
|
83 |
+
'default' => 'no',
|
84 |
+
'type' => 'checkbox',
|
85 |
+
),
|
86 |
+
array(
|
87 |
+
'title' => __( 'Advanced', 'woocommerce-jetpack' ) . ': ' . __( 'Default Images Directory', 'woocommerce-jetpack' ),
|
88 |
+
'desc' => __( 'Default images directory in TCPDF library (K_PATH_IMAGES).', 'woocommerce-jetpack' ),
|
89 |
+
'desc_tip' => __( 'Try changing this if you have issues displaying images in page background or header.', 'woocommerce-jetpack' ),
|
90 |
+
'id' => 'wcj_invoicing_general_header_images_path', // mislabelled, should be `wcj_invoicing_general_images_path`
|
91 |
+
'default' => 'empty',
|
92 |
+
'type' => 'select',
|
93 |
+
'options' => array(
|
94 |
+
'empty' => __( 'Empty', 'woocommerce-jetpack' ),
|
95 |
+
'tcpdf_default' => __( 'TCPDF Default', 'woocommerce-jetpack' ),
|
96 |
+
'abspath' => __( 'ABSPATH', 'woocommerce-jetpack' ), // . ': ' . ABSPATH,
|
97 |
+
'document_root' => __( 'DOCUMENT_ROOT', 'woocommerce-jetpack' ), // . ': ' . $_SERVER['DOCUMENT_ROOT'],
|
98 |
+
),
|
99 |
+
),
|
100 |
array(
|
101 |
'type' => 'sectionend',
|
102 |
'id' => 'wcj_pdf_invoicing_options',
|
includes/settings/wcj-settings-product-listings.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Admin Tools
|
4 |
*
|
5 |
-
* @version 3.2.
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
@@ -120,6 +120,39 @@ $settings = array(
|
|
120 |
'type' => 'sectionend',
|
121 |
'id' => 'wcj_product_listings_archive_pages_options',
|
122 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
array(
|
124 |
'title' => __( 'TAX Display in the Shop - by Product', 'woocommerce-jetpack' ),
|
125 |
'type' => 'title',
|
@@ -178,7 +211,7 @@ $settings = array(
|
|
178 |
),
|
179 |
array(
|
180 |
'title' => __( 'TAX Display by User Role', 'woocommerce-jetpack' ),
|
181 |
-
'desc' => __( 'Enable section', 'woocommerce-jetpack' ),
|
182 |
'id' => 'wcj_product_listings_display_taxes_by_user_role_enabled',
|
183 |
'type' => 'checkbox',
|
184 |
'default' => 'no',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Admin Tools
|
4 |
*
|
5 |
+
* @version 3.2.3
|
6 |
* @since 2.8.0
|
7 |
* @author Algoritmika Ltd.
|
8 |
*/
|
120 |
'type' => 'sectionend',
|
121 |
'id' => 'wcj_product_listings_archive_pages_options',
|
122 |
),
|
123 |
+
array(
|
124 |
+
'title' => __( 'Product Shop Visibility by Price', 'woocommerce-jetpack' ),
|
125 |
+
'type' => 'title',
|
126 |
+
'desc' => __( 'Here you can set to hide products from shop and search results depending on product\'s price. Products will still be accessible via direct link.', 'woocommerce-jetpack' ),
|
127 |
+
'id' => 'wcj_product_listings_product_visibility_by_price_options',
|
128 |
+
),
|
129 |
+
array(
|
130 |
+
'title' => __( 'Product Shop Visibility by Price', 'woocommerce-jetpack' ),
|
131 |
+
'desc' => '<strong>' . __( 'Enable section', 'woocommerce-jetpack' ) . '</strong>',
|
132 |
+
'id' => 'wcj_product_listings_product_visibility_by_price_enabled',
|
133 |
+
'default' => 'no',
|
134 |
+
'type' => 'checkbox',
|
135 |
+
),
|
136 |
+
array(
|
137 |
+
'title' => __( 'Min Price', 'woocommerce-jetpack' ),
|
138 |
+
'desc_tip' => __( 'Products with price below this value will be hidden. Ignored if set to zero.', 'woocommerce-jetpack' ),
|
139 |
+
'id' => 'wcj_product_listings_product_visibility_by_price_min',
|
140 |
+
'default' => 0,
|
141 |
+
'type' => 'number',
|
142 |
+
'custom_attributes' => array( 'min' => 0, 'step' => wcj_get_wc_price_step() ),
|
143 |
+
),
|
144 |
+
array(
|
145 |
+
'title' => __( 'Max Price', 'woocommerce-jetpack' ),
|
146 |
+
'desc_tip' => __( 'Products with price above this value will be hidden. Ignored if set to zero.', 'woocommerce-jetpack' ),
|
147 |
+
'id' => 'wcj_product_listings_product_visibility_by_price_max',
|
148 |
+
'default' => 0,
|
149 |
+
'type' => 'number',
|
150 |
+
'custom_attributes' => array( 'min' => 0, 'step' => wcj_get_wc_price_step() ),
|
151 |
+
),
|
152 |
+
array(
|
153 |
+
'type' => 'sectionend',
|
154 |
+
'id' => 'wcj_product_listings_product_visibility_by_price_options',
|
155 |
+
),
|
156 |
array(
|
157 |
'title' => __( 'TAX Display in the Shop - by Product', 'woocommerce-jetpack' ),
|
158 |
'type' => 'title',
|
211 |
),
|
212 |
array(
|
213 |
'title' => __( 'TAX Display by User Role', 'woocommerce-jetpack' ),
|
214 |
+
'desc' => '<strong>' . __( 'Enable section', 'woocommerce-jetpack' ) . '</strong>',
|
215 |
'id' => 'wcj_product_listings_display_taxes_by_user_role_enabled',
|
216 |
'type' => 'checkbox',
|
217 |
'default' => 'no',
|
langs/woocommerce-jetpack.pot
CHANGED
@@ -8,10 +8,10 @@
|
|
8 |
#, fuzzy
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
-
"Project-Id-Version: Booster for WooCommerce 3.2.
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
13 |
"jetpack\n"
|
14 |
-
"POT-Creation-Date: 2017-
|
15 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
16 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
17 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -69,7 +69,7 @@ msgstr ""
|
|
69 |
msgid "Unlock all"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: woocommerce-jetpack.php:
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
|
@@ -126,13 +126,13 @@ msgstr ""
|
|
126 |
|
127 |
#: includes/class-wcj-admin-bar.php:170
|
128 |
#: includes/admin/class-wc-settings-jetpack.php:406
|
129 |
-
#: includes/classes/class-wcj-module.php:
|
130 |
msgid "Documentation"
|
131 |
msgstr ""
|
132 |
|
133 |
#: includes/class-wcj-admin-bar.php:212
|
134 |
#: includes/admin/class-wc-settings-jetpack.php:138
|
135 |
-
#: includes/admin/wcj-modules-cats.php:
|
136 |
msgid "Dashboard"
|
137 |
msgstr ""
|
138 |
|
@@ -145,7 +145,7 @@ msgstr ""
|
|
145 |
|
146 |
#: includes/class-wcj-admin-bar.php:237 includes/class-wcj-admin-bar.php:274
|
147 |
#: includes/class-wcj-admin-bar.php:585
|
148 |
-
#: includes/classes/class-wcj-module.php:
|
149 |
#: includes/settings/wcj-settings-wpml.php:15
|
150 |
msgid "Tools"
|
151 |
msgstr ""
|
@@ -155,15 +155,15 @@ msgid "Booster: Active"
|
|
155 |
msgstr ""
|
156 |
|
157 |
#: includes/class-wcj-admin-bar.php:262
|
158 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
159 |
#: includes/class-wcj-eu-vat-number.php:86
|
160 |
#: includes/class-wcj-payment-gateways.php:75
|
161 |
#: includes/class-wcj-track-users.php:117
|
162 |
#: includes/class-wcj-track-users.php:213
|
163 |
#: includes/admin/class-wc-settings-jetpack.php:24
|
164 |
#: includes/admin/class-wc-settings-jetpack.php:213
|
165 |
-
#: includes/classes/class-wcj-module.php:
|
166 |
-
#: includes/classes/class-wcj-module.php:
|
167 |
msgid "Booster"
|
168 |
msgstr ""
|
169 |
|
@@ -192,22 +192,22 @@ msgid "Coupons by date"
|
|
192 |
msgstr ""
|
193 |
|
194 |
#: includes/class-wcj-admin-bar.php:304 includes/class-wcj-track-users.php:34
|
195 |
-
#: includes/functions/wcj-reports
|
196 |
msgid "Last 7 days"
|
197 |
msgstr ""
|
198 |
|
199 |
#: includes/class-wcj-admin-bar.php:308
|
200 |
-
#: includes/functions/wcj-reports
|
201 |
msgid "This month"
|
202 |
msgstr ""
|
203 |
|
204 |
#: includes/class-wcj-admin-bar.php:312
|
205 |
-
#: includes/functions/wcj-reports
|
206 |
msgid "Last month"
|
207 |
msgstr ""
|
208 |
|
209 |
#: includes/class-wcj-admin-bar.php:316
|
210 |
-
#: includes/functions/wcj-reports
|
211 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
|
212 |
msgid "Year"
|
213 |
msgstr ""
|
@@ -290,9 +290,9 @@ msgstr ""
|
|
290 |
#: includes/class-wcj-product-bulk-meta-editor.php:263
|
291 |
#: includes/class-wcj-product-by-user.php:96
|
292 |
#: includes/class-wcj-product-by-user.php:132
|
293 |
-
#: includes/class-wcj-shipping-by-products.php:
|
294 |
-
#: includes/admin/wcj-modules-cats.php:
|
295 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
296 |
msgid "Products"
|
297 |
msgstr ""
|
298 |
|
@@ -304,7 +304,7 @@ msgstr ""
|
|
304 |
#: includes/class-wcj-product-bulk-price-converter.php:149
|
305 |
#: includes/class-wcj-sku.php:335
|
306 |
#: includes/export/class-wcj-fields-helper.php:318
|
307 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
308 |
#: includes/settings/wcj-settings-product-by-user.php:19
|
309 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
|
310 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
|
@@ -332,7 +332,7 @@ msgid "Add coupon"
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: includes/class-wcj-admin-bar.php:465 includes/class-wcj-admin-bar.php:473
|
335 |
-
#: includes/class-wcj-general.php:
|
336 |
#: includes/settings/wcj-settings-related-products.php:38
|
337 |
msgid "General"
|
338 |
msgstr ""
|
@@ -363,7 +363,7 @@ msgid "Standard rates"
|
|
363 |
msgstr ""
|
364 |
|
365 |
#: includes/class-wcj-admin-bar.php:505
|
366 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
367 |
#: includes/settings/wcj-settings-checkout-custom-info.php:56
|
368 |
#: includes/settings/wcj-settings-empty-cart.php:59
|
369 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:125
|
@@ -408,7 +408,7 @@ msgid "PayPal"
|
|
408 |
msgstr ""
|
409 |
|
410 |
#: includes/class-wcj-admin-bar.php:549
|
411 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
412 |
msgid "Account"
|
413 |
msgstr ""
|
414 |
|
@@ -468,8 +468,8 @@ msgid "Current PHP time limit: %s seconds."
|
|
468 |
msgstr ""
|
469 |
|
470 |
#: includes/class-wcj-admin-tools.php:69
|
471 |
-
#: includes/settings/wcj-settings-export.php:
|
472 |
-
#: includes/settings/wcj-settings-export.php:
|
473 |
msgid "Product Meta"
|
474 |
msgstr ""
|
475 |
|
@@ -479,20 +479,32 @@ msgstr ""
|
|
479 |
msgid "Order Meta"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/class-wcj-admin-tools.php:
|
483 |
msgid "Order Items Meta"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/class-wcj-admin-tools.php:
|
487 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
msgstr ""
|
489 |
|
490 |
#: includes/class-wcj-admin-tools.php:148
|
|
|
|
|
|
|
|
|
491 |
#, php-format
|
492 |
msgid "Now: %s"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/class-wcj-admin-tools.php:
|
496 |
msgid "NOT DEFINED"
|
497 |
msgstr ""
|
498 |
|
@@ -603,52 +615,62 @@ msgstr ""
|
|
603 |
msgid "File is required!"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
607 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
|
|
|
|
608 |
#: includes/settings/wcj-settings-checkout-files-upload.php:115
|
609 |
#, php-format
|
610 |
msgid "Wrong file type: \"%s\"!"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
614 |
msgid "Uploaded Files"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
618 |
msgid "No files uploaded."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
622 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
623 |
#: includes/settings/wcj-settings-checkout-files-upload.php:145
|
624 |
#, php-format
|
625 |
msgid "File \"%s\" was successfully removed."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
629 |
#: includes/settings/wcj-settings-checkout-files-upload.php:130
|
630 |
#, php-format
|
631 |
msgid "File \"%s\" was successfully uploaded."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
635 |
#: includes/settings/wcj-settings-checkout-files-upload.php:137
|
636 |
msgid "Please select file to upload!"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
640 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
641 |
#: includes/settings/wcj-settings-checkout-files-upload.php:100
|
642 |
msgid "Upload"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
646 |
-
#: includes/class-wcj-checkout-files-upload.php:
|
647 |
#: includes/settings/wcj-settings-checkout-files-upload.php:107
|
648 |
#: includes/settings/wcj-settings-sorting.php:144
|
649 |
msgid "Remove"
|
650 |
msgstr ""
|
651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
#: includes/class-wcj-crowdfunding.php:24
|
653 |
msgid "Crowdfunding"
|
654 |
msgstr ""
|
@@ -723,21 +745,21 @@ msgstr ""
|
|
723 |
msgid "Display prices for WooCommerce products in different currencies."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: includes/class-wcj-currency-per-product.php:
|
727 |
#: includes/settings/wcj-settings-currency-per-product.php:43
|
728 |
msgid ""
|
729 |
"Only one product can be added to the cart. Clear the cart or finish the "
|
730 |
"order, before adding another product to the cart."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/class-wcj-currency-per-product.php:
|
734 |
#: includes/settings/wcj-settings-currency-per-product.php:50
|
735 |
msgid ""
|
736 |
"Only products with same currency can be added to the cart. Clear the cart or "
|
737 |
"finish the order, before adding products with another currency to the cart."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/class-wcj-currency-per-product.php:
|
741 |
#, php-format
|
742 |
msgctxt "Price range: from-to"
|
743 |
msgid "%1$s–%2$s"
|
@@ -904,7 +926,7 @@ msgid "Booster: Send Email: %s"
|
|
904 |
msgstr ""
|
905 |
|
906 |
#: includes/class-wcj-empty-cart-button.php:25
|
907 |
-
#: includes/shortcodes/class-wcj-general-shortcodes.php:
|
908 |
msgid "Empty Cart Button"
|
909 |
msgstr ""
|
910 |
|
@@ -969,7 +991,7 @@ msgid "Validation failed. Please try again."
|
|
969 |
msgstr ""
|
970 |
|
971 |
#: includes/class-wcj-eu-vat-number.php:404
|
972 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
973 |
msgid "<strong>EU VAT Number</strong> is not valid."
|
974 |
msgstr ""
|
975 |
|
@@ -1080,56 +1102,56 @@ msgstr ""
|
|
1080 |
msgid "Free!"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/class-wcj-general.php:
|
1084 |
msgid "Custom roles tool. Shortcodes in WordPress text widgets."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/class-wcj-general.php:
|
1088 |
msgid "Products Attributes"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/class-wcj-general.php:
|
1092 |
msgid "All Products and All Attributes."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/class-wcj-general.php:
|
1096 |
msgid "Add/Manage Custom Roles"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/class-wcj-general.php:
|
1100 |
msgid "Custom Roles"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/class-wcj-general.php:
|
1104 |
msgid "Manage Custom Roles."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/class-wcj-general.php:
|
1108 |
msgid "Booster User Role"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/class-wcj-general.php:
|
1112 |
msgid "Both fields are required!"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/class-wcj-general.php:
|
1116 |
msgid "Role ID must not be numbers only!"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/class-wcj-general.php:
|
1120 |
msgid "Role successfully added!"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/class-wcj-general.php:
|
1124 |
msgid "Role already exists!"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/class-wcj-general.php:
|
1128 |
#, php-format
|
1129 |
msgid "Role %s successfully deleted!"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: includes/class-wcj-general.php:
|
1133 |
#: includes/class-wcj-sku.php:333
|
1134 |
#: includes/reports/wcj-class-reports-sales.php:191
|
1135 |
#: includes/settings/wcj-settings-order-numbers.php:123
|
@@ -1138,7 +1160,7 @@ msgstr ""
|
|
1138 |
msgid "ID"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/class-wcj-general.php:
|
1142 |
#: includes/class-wcj-offer-price.php:116
|
1143 |
#: includes/export/class-wcj-fields-helper.php:282
|
1144 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
|
@@ -1146,36 +1168,36 @@ msgstr ""
|
|
1146 |
msgid "Name"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/class-wcj-general.php:
|
1150 |
-
#: includes/class-wcj-order-custom-statuses.php:375
|
1151 |
#: includes/class-wcj-product-by-user.php:197
|
1152 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
|
|
|
|
1153 |
msgid "Actions"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/class-wcj-general.php:
|
1157 |
-
#: includes/class-wcj-order-custom-statuses.php:397
|
1158 |
#: includes/class-wcj-product-bulk-meta-editor.php:367
|
1159 |
#: includes/class-wcj-product-by-user.php:206
|
1160 |
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:138
|
1161 |
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:303
|
1162 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
|
|
|
1163 |
msgid "Delete"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/class-wcj-general.php:
|
1167 |
msgid "Existing Roles"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/class-wcj-general.php:
|
1171 |
msgid "Add New Role"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/class-wcj-general.php:
|
1175 |
-
#: includes/class-wcj-order-custom-statuses.php:422
|
1176 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:22
|
1177 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:29
|
1178 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
1179 |
#: includes/settings/wcj-settings-email-options.php:20
|
1180 |
#: includes/settings/wcj-settings-eu-vat-number.php:157
|
1181 |
#: includes/settings/wcj-settings-eu-vat-number.php:193
|
@@ -1187,7 +1209,7 @@ msgstr ""
|
|
1187 |
#: includes/settings/wcj-settings-orders.php:168
|
1188 |
#: includes/settings/wcj-settings-orders.php:217
|
1189 |
#: includes/settings/wcj-settings-pdf-invoicing-display.php:151
|
1190 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
1191 |
#: includes/settings/wcj-settings-product-by-country.php:110
|
1192 |
#: includes/settings/wcj-settings-product-by-user.php:114
|
1193 |
#: includes/settings/wcj-settings-purchase-data.php:134
|
@@ -1197,10 +1219,11 @@ msgstr ""
|
|
1197 |
#: includes/settings/wcj-settings-sku.php:181
|
1198 |
#: includes/settings/wcj-settings-sku.php:197
|
1199 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
|
|
|
1200 |
msgid "Add"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/class-wcj-general.php:
|
1204 |
#: includes/class-wcj-product-bulk-meta-editor.php:339
|
1205 |
#: includes/class-wcj-product-bulk-price-converter.php:148
|
1206 |
#: includes/class-wcj-sku.php:334
|
@@ -1209,12 +1232,12 @@ msgstr ""
|
|
1209 |
msgid "Product"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/class-wcj-general.php:
|
1213 |
#: includes/reports/wcj-class-reports-stock.php:254
|
1214 |
msgid "Category"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/class-wcj-general.php:
|
1218 |
msgid "Total Products:"
|
1219 |
msgstr ""
|
1220 |
|
@@ -1238,7 +1261,7 @@ msgstr ""
|
|
1238 |
#: includes/class-wcj-left-to-free-shipping.php:62
|
1239 |
#: includes/class-wcj-left-to-free-shipping.php:72
|
1240 |
#: includes/class-wcj-left-to-free-shipping.php:82
|
1241 |
-
#: includes/functions/wcj-general
|
1242 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:37
|
1243 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:72
|
1244 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:111
|
@@ -1301,16 +1324,17 @@ msgid "WooCommerce \"My Account\" page customization."
|
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: includes/class-wcj-my-account.php:75
|
1304 |
-
#: includes/class-wcj-order-custom-statuses.php:397
|
1305 |
#: includes/class-wcj-product-bulk-meta-editor.php:279
|
1306 |
#: includes/class-wcj-product-by-user.php:206
|
1307 |
#: includes/class-wcj-purchase-data.php:93
|
1308 |
#: includes/class-wcj-track-users.php:296
|
1309 |
-
#: includes/classes/class-wcj-module.php:
|
1310 |
-
#: includes/functions/wcj-html
|
1311 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
1312 |
#: includes/settings/wcj-settings-empty-cart.php:80
|
1313 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
|
|
|
|
|
1314 |
msgid "Are you sure?"
|
1315 |
msgstr ""
|
1316 |
|
@@ -1331,8 +1355,8 @@ msgid "No price offers yet."
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: includes/class-wcj-offer-price.php:113
|
1334 |
-
#: includes/functions/wcj-reports
|
1335 |
-
#: includes/functions/wcj-reports
|
1336 |
#: includes/settings/wcj-settings-order-numbers.php:124
|
1337 |
#: includes/settings/wcj-settings-related-products.php:23
|
1338 |
msgid "Date"
|
@@ -1358,7 +1382,7 @@ msgstr ""
|
|
1358 |
#: includes/export/class-wcj-fields-helper.php:75
|
1359 |
#: includes/input-fields/wcj-product-input-fields-options.php:45
|
1360 |
#: includes/reports/wcj-class-reports-customers.php:90
|
1361 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
1362 |
msgid "Email"
|
1363 |
msgstr ""
|
1364 |
|
@@ -1527,207 +1551,41 @@ msgstr ""
|
|
1527 |
msgid "No old slugs found."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1531 |
msgid "Order Custom Statuses"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1535 |
msgid "Custom statuses for WooCommerce orders."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1539 |
#: includes/settings/wcj-settings-order-custom-statuses.php:14
|
1540 |
msgid "Custom Statuses"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1544 |
-
msgid "
|
|
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1548 |
msgid "Processing"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1552 |
msgid "Complete"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1556 |
-
msgctxt "Order status"
|
1557 |
-
msgid "Pending payment"
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
#: includes/class-wcj-order-custom-statuses.php:195
|
1561 |
-
#: includes/functions/wcj-order-functions.php:140
|
1562 |
-
msgctxt "Order status"
|
1563 |
-
msgid "Processing"
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: includes/class-wcj-order-custom-statuses.php:196
|
1567 |
-
msgctxt "Order status"
|
1568 |
-
msgid "On hold"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: includes/class-wcj-order-custom-statuses.php:197
|
1572 |
-
#: includes/functions/wcj-order-functions.php:142
|
1573 |
-
msgctxt "Order status"
|
1574 |
-
msgid "Completed"
|
1575 |
-
msgstr ""
|
1576 |
-
|
1577 |
-
#: includes/class-wcj-order-custom-statuses.php:198
|
1578 |
-
#: includes/functions/wcj-order-functions.php:143
|
1579 |
-
msgctxt "Order status"
|
1580 |
-
msgid "Cancelled"
|
1581 |
-
msgstr ""
|
1582 |
-
|
1583 |
-
#: includes/class-wcj-order-custom-statuses.php:199
|
1584 |
-
#: includes/functions/wcj-order-functions.php:144
|
1585 |
-
msgctxt "Order status"
|
1586 |
-
msgid "Refunded"
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
-
#: includes/class-wcj-order-custom-statuses.php:200
|
1590 |
-
#: includes/functions/wcj-order-functions.php:145
|
1591 |
-
msgctxt "Order status"
|
1592 |
-
msgid "Failed"
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: includes/class-wcj-order-custom-statuses.php:240
|
1596 |
#, php-format
|
1597 |
msgid " <span class=\"count\">(%s)</span>"
|
1598 |
msgid_plural " <span class=\"count\">(%s)</span>"
|
1599 |
msgstr[0] ""
|
1600 |
msgstr[1] ""
|
1601 |
|
1602 |
-
#: includes/class-wcj-order-custom-statuses.php:
|
1603 |
-
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: includes/class-wcj-order-custom-statuses.php:293
|
1607 |
-
msgid ""
|
1608 |
-
"The length of status slug must be 17 or less characters. Status was not "
|
1609 |
-
"added!"
|
1610 |
-
msgstr ""
|
1611 |
-
|
1612 |
-
#: includes/class-wcj-order-custom-statuses.php:296
|
1613 |
-
msgid "Status label is empty. Status was not added!"
|
1614 |
-
msgstr ""
|
1615 |
-
|
1616 |
-
#: includes/class-wcj-order-custom-statuses.php:303
|
1617 |
-
msgid "Duplicate slug. Status was not added!"
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
#: includes/class-wcj-order-custom-statuses.php:307
|
1621 |
-
msgid "Duplicate slug (default WooCommerce status). Status was not added!"
|
1622 |
-
msgstr ""
|
1623 |
-
|
1624 |
-
#: includes/class-wcj-order-custom-statuses.php:318
|
1625 |
-
msgid "New status has been successfully added!"
|
1626 |
-
msgstr ""
|
1627 |
-
|
1628 |
-
#: includes/class-wcj-order-custom-statuses.php:320
|
1629 |
-
msgid "Status was not added."
|
1630 |
-
msgstr ""
|
1631 |
-
|
1632 |
-
#: includes/class-wcj-order-custom-statuses.php:338
|
1633 |
-
msgid "Status label is empty. Status was not edited!"
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#: includes/class-wcj-order-custom-statuses.php:348
|
1637 |
-
msgid "Status has been successfully edited!"
|
1638 |
-
msgstr ""
|
1639 |
-
|
1640 |
-
#: includes/class-wcj-order-custom-statuses.php:350
|
1641 |
-
msgid "Status was not edited."
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
#: includes/class-wcj-order-custom-statuses.php:358
|
1645 |
-
msgid "Status has been successfully deleted."
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: includes/class-wcj-order-custom-statuses.php:360
|
1649 |
-
msgid "Delete failed."
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: includes/class-wcj-order-custom-statuses.php:365
|
1653 |
-
msgid "Booster - Custom Statuses"
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#: includes/class-wcj-order-custom-statuses.php:366
|
1657 |
-
msgid ""
|
1658 |
-
"The tool lets you add or delete any custom status for WooCommerce orders."
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: includes/class-wcj-order-custom-statuses.php:368
|
1662 |
-
msgid "Statuses"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: includes/class-wcj-order-custom-statuses.php:371
|
1666 |
-
msgid "Slug"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: includes/class-wcj-order-custom-statuses.php:372
|
1670 |
-
#: includes/class-wcj-order-custom-statuses.php:427
|
1671 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:105
|
1672 |
-
#: includes/settings/wcj-settings-checkout-files-upload.php:82
|
1673 |
-
#: includes/settings/wcj-settings-checkout-files-upload.php:256
|
1674 |
-
#: includes/settings/wcj-settings-offer-price.php:43
|
1675 |
-
#: includes/settings/wcj-settings-offer-price.php:115
|
1676 |
-
#: includes/settings/wcj-settings-offer-price.php:155
|
1677 |
-
#: includes/settings/wcj-settings-offer-price.php:163
|
1678 |
-
#: includes/settings/wcj-settings-offer-price.php:171
|
1679 |
-
#: includes/settings/wcj-settings-offer-price.php:179
|
1680 |
-
#: includes/settings/wcj-settings-orders.php:103
|
1681 |
-
#: includes/settings/wcj-settings-product-listings.php:257
|
1682 |
-
msgid "Label"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: includes/class-wcj-order-custom-statuses.php:373
|
1686 |
-
#: includes/class-wcj-order-custom-statuses.php:428
|
1687 |
-
msgid "Icon Code"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: includes/class-wcj-order-custom-statuses.php:374
|
1691 |
-
#: includes/class-wcj-order-custom-statuses.php:430
|
1692 |
-
msgid "Icon Color"
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: includes/class-wcj-order-custom-statuses.php:398
|
1696 |
-
msgid "Get Booster Plus to enable."
|
1697 |
-
msgstr ""
|
1698 |
-
|
1699 |
-
#: includes/class-wcj-order-custom-statuses.php:398
|
1700 |
-
#: includes/class-wcj-order-custom-statuses.php:422
|
1701 |
-
#: includes/class-wcj-product-by-user.php:205
|
1702 |
-
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
|
1703 |
-
msgid "Edit"
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: includes/class-wcj-order-custom-statuses.php:426
|
1707 |
-
msgid "Slug (without wc- prefix)"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: includes/class-wcj-order-custom-statuses.php:429
|
1711 |
-
#, php-format
|
1712 |
-
msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
|
1713 |
-
msgstr ""
|
1714 |
-
|
1715 |
-
#: includes/class-wcj-order-custom-statuses.php:432
|
1716 |
-
msgid "Edit custom status"
|
1717 |
-
msgstr ""
|
1718 |
-
|
1719 |
-
#: includes/class-wcj-order-custom-statuses.php:432
|
1720 |
-
msgid "Add new custom status"
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: includes/class-wcj-order-custom-statuses.php:433
|
1724 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:149
|
1725 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:56
|
1726 |
-
msgid "Clear"
|
1727 |
-
msgstr ""
|
1728 |
-
|
1729 |
-
#: includes/class-wcj-order-custom-statuses.php:455
|
1730 |
-
#: includes/class-wcj-order-custom-statuses.php:456
|
1731 |
msgid "Mark"
|
1732 |
msgstr ""
|
1733 |
|
@@ -1759,52 +1617,52 @@ msgstr ""
|
|
1759 |
msgid "Tool renumerates all orders."
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: includes/class-wcj-order-numbers.php:
|
1763 |
msgid "Orders successfully renumerated!"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: includes/class-wcj-order-numbers.php:
|
1767 |
#, php-format
|
1768 |
msgid ""
|
1769 |
"Press the button below to renumerate all existing orders starting from order "
|
1770 |
"counter settings in <a href=\"%s\">Order Numbers</a> module."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: includes/class-wcj-order-numbers.php:
|
1774 |
msgid "Renumerate orders"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: includes/class-wcj-order-quantities.php:
|
1778 |
msgid "Order Min/Max Quantities"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: includes/class-wcj-order-quantities.php:
|
1782 |
msgid "Set min/max product quantities in WooCommerce order."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: includes/class-wcj-order-quantities.php:
|
1786 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
1787 |
msgid ""
|
1788 |
"Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
|
1789 |
"order quantity is %cart_total_quantity%."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: includes/class-wcj-order-quantities.php:
|
1793 |
#: includes/settings/wcj-settings-order-quantities.php:38
|
1794 |
msgid ""
|
1795 |
"Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
|
1796 |
"order quantity is %cart_total_quantity%."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: includes/class-wcj-order-quantities.php:
|
1800 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
1801 |
msgid ""
|
1802 |
"Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
|
1803 |
"Your current item quantity is %item_quantity%."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/class-wcj-order-quantities.php:
|
1807 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
1808 |
msgid ""
|
1809 |
"Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
|
1810 |
"Your current item quantity is %item_quantity%."
|
@@ -1915,20 +1773,20 @@ msgid ""
|
|
1915 |
"WooCommerce payment gateway."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: includes/class-wcj-payment-gateways-min-max.php:
|
1919 |
msgid "Gateways Min/Max Amounts"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: includes/class-wcj-payment-gateways-min-max.php:
|
1923 |
msgid "Add min/max amounts for WooCommerce payment gateways to show up."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: includes/class-wcj-payment-gateways-min-max.php:
|
1927 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:37
|
1928 |
msgid "Minimum amount for %gateway_title% is %min_amount%"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: includes/class-wcj-payment-gateways-min-max.php:
|
1932 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:45
|
1933 |
msgid "Maximum amount for %gateway_title% is %max_amount%"
|
1934 |
msgstr ""
|
@@ -1999,7 +1857,7 @@ msgstr ""
|
|
1999 |
|
2000 |
#: includes/class-wcj-pdf-invoicing.php:97
|
2001 |
#: includes/class-wcj-pdf-invoicing.php:98
|
2002 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
2003 |
msgid "Download"
|
2004 |
msgstr ""
|
2005 |
|
@@ -2023,7 +1881,7 @@ msgid "Booster: ZipArchive error."
|
|
2023 |
msgstr ""
|
2024 |
|
2025 |
#: includes/class-wcj-pdf-invoicing.php:250
|
2026 |
-
#: includes/classes/class-wcj-pdf-invoice.php:
|
2027 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:230
|
2028 |
msgid "Unexpected error"
|
2029 |
msgstr ""
|
@@ -2054,7 +1912,7 @@ msgstr ""
|
|
2054 |
msgid "Display WooCommerce products prices by user roles."
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: includes/class-wcj-price-by-user-role.php:
|
2058 |
msgid ""
|
2059 |
"Booster: Free plugin's version is limited to only one price by user role per "
|
2060 |
"products settings product enabled at a time. You will need to get <a href="
|
@@ -2114,9 +1972,11 @@ msgstr ""
|
|
2114 |
#: includes/settings/wcj-settings-call-for-price.php:69
|
2115 |
#: includes/settings/wcj-settings-cart-customization.php:34
|
2116 |
#: includes/settings/wcj-settings-cart-customization.php:57
|
2117 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
2118 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
2119 |
#: includes/settings/wcj-settings-checkout-customization.php:78
|
|
|
|
|
2120 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:54
|
2121 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:84
|
2122 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:92
|
@@ -2132,7 +1992,6 @@ msgstr ""
|
|
2132 |
#: includes/settings/wcj-settings-general.php:82
|
2133 |
#: includes/settings/wcj-settings-general.php:150
|
2134 |
#: includes/settings/wcj-settings-general.php:201
|
2135 |
-
#: includes/settings/wcj-settings-general.php:228
|
2136 |
#: includes/settings/wcj-settings-global-discount.php:52
|
2137 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:27
|
2138 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:60
|
@@ -2146,8 +2005,10 @@ msgstr ""
|
|
2146 |
#: includes/settings/wcj-settings-order-numbers.php:88
|
2147 |
#: includes/settings/wcj-settings-order-numbers.php:96
|
2148 |
#: includes/settings/wcj-settings-order-numbers.php:103
|
2149 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
2150 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
|
|
|
|
2151 |
#: includes/settings/wcj-settings-orders.php:20
|
2152 |
#: includes/settings/wcj-settings-orders.php:49
|
2153 |
#: includes/settings/wcj-settings-orders.php:184
|
@@ -2155,6 +2016,8 @@ msgstr ""
|
|
2155 |
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
|
2156 |
#: includes/settings/wcj-settings-pdf-invoicing-header.php:23
|
2157 |
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
|
|
|
|
|
2158 |
#: includes/settings/wcj-settings-price-by-country.php:69
|
2159 |
#: includes/settings/wcj-settings-price-by-country.php:89
|
2160 |
#: includes/settings/wcj-settings-price-by-country.php:105
|
@@ -2176,7 +2039,7 @@ msgstr ""
|
|
2176 |
#: includes/settings/wcj-settings-product-addons.php:24
|
2177 |
#: includes/settings/wcj-settings-product-addons.php:43
|
2178 |
#: includes/settings/wcj-settings-product-addons.php:67
|
2179 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
2180 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
|
2181 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
|
2182 |
#: includes/settings/wcj-settings-product-by-country.php:21
|
@@ -2218,7 +2081,7 @@ msgstr ""
|
|
2218 |
#: includes/settings/wcj-settings-shipping-calculator.php:27
|
2219 |
#: includes/settings/wcj-settings-shipping-calculator.php:34
|
2220 |
#: includes/settings/wcj-settings-shipping-calculator.php:41
|
2221 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
2222 |
#: includes/settings/wcj-settings-shipping.php:24
|
2223 |
#: includes/settings/wcj-settings-sku.php:50
|
2224 |
#: includes/settings/wcj-settings-sku.php:157
|
@@ -2265,7 +2128,7 @@ msgstr ""
|
|
2265 |
msgid "Hide for all variations"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: includes/class-wcj-price-labels.php:
|
2269 |
msgid "Booster: Custom Price Labels"
|
2270 |
msgstr ""
|
2271 |
|
@@ -2466,11 +2329,11 @@ msgstr ""
|
|
2466 |
|
2467 |
#: includes/class-wcj-product-bulk-meta-editor.php:294
|
2468 |
#: includes/settings/wcj-settings-export.php:91
|
2469 |
-
#: includes/settings/wcj-settings-export.php:
|
2470 |
-
#: includes/settings/wcj-settings-export.php:
|
2471 |
#: includes/settings/wcj-settings-global-discount.php:69
|
2472 |
#: includes/settings/wcj-settings-orders.php:110
|
2473 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
2474 |
msgid "Value"
|
2475 |
msgstr ""
|
2476 |
|
@@ -2497,7 +2360,7 @@ msgstr ""
|
|
2497 |
#: includes/class-wcj-product-bulk-meta-editor.php:389
|
2498 |
#: includes/class-wcj-purchase-data.php:76
|
2499 |
#: includes/export/class-wcj-fields-helper.php:280
|
2500 |
-
#: includes/functions/wcj-reports
|
2501 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
|
2502 |
msgid "Product ID"
|
2503 |
msgstr ""
|
@@ -2709,8 +2572,8 @@ msgstr ""
|
|
2709 |
#: includes/input-fields/wcj-product-input-fields-options.php:51
|
2710 |
#: includes/settings/wcj-settings-export.php:75
|
2711 |
#: includes/settings/wcj-settings-export.php:143
|
2712 |
-
#: includes/settings/wcj-settings-export.php:
|
2713 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
2714 |
#: includes/settings/wcj-settings-product-by-user.php:167
|
2715 |
#: includes/settings/wcj-settings-product-tabs.php:52
|
2716 |
#: includes/settings/wcj-settings-product-tabs.php:361
|
@@ -2718,7 +2581,7 @@ msgstr ""
|
|
2718 |
#: includes/settings/wcj-settings-product-tabs.php:403
|
2719 |
#: includes/settings/wcj-settings-purchase-data.php:66
|
2720 |
#: includes/settings/wcj-settings-related-products.php:24
|
2721 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
2722 |
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
|
2723 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:116
|
2724 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
|
@@ -2729,9 +2592,16 @@ msgstr ""
|
|
2729 |
msgid "Title"
|
2730 |
msgstr ""
|
2731 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2732 |
#: includes/class-wcj-product-custom-info.php:24
|
2733 |
#: includes/admin/class-wc-settings-jetpack.php:458
|
2734 |
-
#: includes/functions/wcj-general
|
2735 |
msgid "Product Info"
|
2736 |
msgstr ""
|
2737 |
|
@@ -2813,7 +2683,7 @@ msgid "Position"
|
|
2813 |
msgstr ""
|
2814 |
|
2815 |
#: includes/class-wcj-product-info.php:272
|
2816 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
2817 |
#: includes/settings/wcj-settings-product-info.php:61
|
2818 |
#: includes/settings/wcj-settings-product-info.php:94
|
2819 |
#: includes/settings/wcj-settings-product-tabs.php:66
|
@@ -2949,7 +2819,7 @@ msgid "Click \"Update\" product after you change this number."
|
|
2949 |
msgstr ""
|
2950 |
|
2951 |
#: includes/class-wcj-product-tabs.php:560
|
2952 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
2953 |
#: includes/settings/wcj-settings-product-tabs.php:59
|
2954 |
msgid "Key"
|
2955 |
msgstr ""
|
@@ -2994,7 +2864,7 @@ msgstr ""
|
|
2994 |
|
2995 |
#: includes/class-wcj-product-tabs.php:584
|
2996 |
#: includes/input-fields/wcj-product-input-fields-options.php:95
|
2997 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
2998 |
#: includes/settings/wcj-settings-orders.php:123
|
2999 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
|
3000 |
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
|
@@ -3006,7 +2876,7 @@ msgstr ""
|
|
3006 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
|
3007 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
|
3008 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
|
3009 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
3010 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
|
3011 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:33
|
3012 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:43
|
@@ -3021,13 +2891,13 @@ msgstr ""
|
|
3021 |
|
3022 |
#: includes/class-wcj-product-tabs.php:585
|
3023 |
#: includes/input-fields/wcj-product-input-fields-options.php:88
|
3024 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
3025 |
#: includes/settings/wcj-settings-eu-vat-number.php:50
|
3026 |
#: includes/settings/wcj-settings-eu-vat-number.php:57
|
3027 |
#: includes/settings/wcj-settings-eu-vat-number.php:75
|
3028 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
3029 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
3030 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
3031 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
|
3032 |
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
|
3033 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:34
|
@@ -3038,7 +2908,7 @@ msgstr ""
|
|
3038 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
|
3039 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
|
3040 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
|
3041 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
3042 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
|
3043 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:32
|
3044 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:42
|
@@ -3151,7 +3021,7 @@ msgstr ""
|
|
3151 |
#: includes/class-wcj-purchase-data.php:117
|
3152 |
#: includes/class-wcj-purchase-data.php:150
|
3153 |
#: includes/class-wcj-purchase-data.php:235
|
3154 |
-
#: includes/functions/wcj-reports
|
3155 |
#: includes/settings/wcj-settings-purchase-data.php:133
|
3156 |
#: includes/settings/wcj-settings-purchase-data.php:161
|
3157 |
msgid "Profit"
|
@@ -3246,57 +3116,83 @@ msgstr ""
|
|
3246 |
msgid "Booster: Customers by Country Sets"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: includes/class-wcj-shipping-by-
|
3250 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3251 |
msgstr ""
|
3252 |
|
3253 |
#: includes/class-wcj-shipping-by-products.php:26
|
|
|
|
|
|
|
|
|
|
|
3254 |
msgid ""
|
3255 |
"Set products, product categories or tags to include/exclude for WooCommerce "
|
3256 |
"shipping methods to show up."
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: includes/class-wcj-shipping-by-products.php:
|
3260 |
msgid "Shipping methods by <strong>products</strong>."
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: includes/class-wcj-shipping-by-products.php:
|
3264 |
#: includes/settings/wcj-settings-currency-per-product.php:208
|
3265 |
msgid "Product Categories"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: includes/class-wcj-shipping-by-products.php:
|
3269 |
msgid "Shipping methods by <strong>products categories</strong>."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: includes/class-wcj-shipping-by-products.php:
|
3273 |
#: includes/settings/wcj-settings-currency-per-product.php:220
|
3274 |
msgid "Product Tags"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: includes/class-wcj-shipping-by-products.php:
|
3278 |
msgid "Shipping methods by <strong>products tags</strong>."
|
3279 |
msgstr ""
|
3280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3281 |
#: includes/class-wcj-shipping-by-user-role.php:25
|
3282 |
msgid "Shipping Methods by Users"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#: includes/class-wcj-shipping-by-user-role.php:26
|
3286 |
msgid ""
|
3287 |
-
"Set user roles or membership plans to include/exclude for WooCommerce "
|
3288 |
"shipping methods to show up."
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#: includes/class-wcj-shipping-by-user-role.php:31
|
3292 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
3293 |
msgid "User Roles"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#: includes/class-wcj-shipping-by-user-role.php:33
|
3297 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
3298 |
#: includes/settings/wcj-settings-order-min-amount.php:97
|
3299 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
3300 |
#, php-format
|
3301 |
msgid ""
|
3302 |
"Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
|
@@ -3304,10 +3200,14 @@ msgid ""
|
|
3304 |
msgstr ""
|
3305 |
|
3306 |
#: includes/class-wcj-shipping-by-user-role.php:38
|
|
|
|
|
|
|
|
|
3307 |
msgid "User Membership Plans"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: includes/class-wcj-shipping-by-user-role.php:
|
3311 |
#, php-format
|
3312 |
msgid ""
|
3313 |
"This section requires <a target=\"_blank\" href=\"%s\">WooCommerce "
|
@@ -3487,7 +3387,7 @@ msgstr ""
|
|
3487 |
|
3488 |
#: includes/class-wcj-track-users.php:281
|
3489 |
#: includes/input-fields/wcj-product-input-fields-options.php:43
|
3490 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
3491 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
|
3492 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
|
3493 |
msgid "Country"
|
@@ -3522,11 +3422,11 @@ msgstr ""
|
|
3522 |
msgid "WooCommerce URL coupons."
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: includes/class-wcj-wholesale-price.php:
|
3526 |
msgid "Wholesale Price"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: includes/class-wcj-wholesale-price.php:
|
3530 |
msgid ""
|
3531 |
"Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
|
3532 |
"more pay less)."
|
@@ -3666,21 +3566,21 @@ msgstr ""
|
|
3666 |
msgid "Save changes"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: includes/admin/class-wcj-settings-manager.php:
|
3670 |
msgid "Please upload a file to import!"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: includes/admin/class-wcj-settings-manager.php:
|
3674 |
-
#: includes/admin/class-wcj-settings-manager.php:
|
3675 |
msgid "Wrong file format!"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: includes/admin/class-wcj-settings-manager.php:
|
3679 |
#, php-format
|
3680 |
msgid "%d options successfully imported."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: includes/admin/class-wcj-settings-manager.php:
|
3684 |
#, php-format
|
3685 |
msgid "%d options successfully deleted."
|
3686 |
msgstr ""
|
@@ -3713,7 +3613,7 @@ msgstr ""
|
|
3713 |
msgid "Tool"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: includes/admin/wcj-modules-cats.php:
|
3717 |
msgid ""
|
3718 |
"This dashboard lets you enable/disable any Booster's module. Each checkbox "
|
3719 |
"comes with short module's description. Please visit <a href=\"http://booster."
|
@@ -3721,36 +3621,38 @@ msgid ""
|
|
3721 |
"feature."
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#: includes/admin/wcj-modules-cats.php:
|
3725 |
msgid "Prices & Currencies"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: includes/admin/wcj-modules-cats.php:
|
3729 |
msgid ""
|
3730 |
"Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price by "
|
3731 |
"User Role and more."
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: includes/admin/wcj-modules-cats.php:
|
3735 |
msgid "Button & Price Labels"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: includes/admin/wcj-modules-cats.php:
|
3739 |
msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: includes/admin/wcj-modules-cats.php:
|
3743 |
msgid ""
|
3744 |
"Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
|
3745 |
"Listings, Product Tabs and more."
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: includes/admin/wcj-modules-cats.php:
|
3749 |
msgid "Cart & Checkout"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: includes/admin/wcj-modules-cats.php:
|
3753 |
-
msgid "
|
|
|
|
|
3754 |
msgstr ""
|
3755 |
|
3756 |
#: includes/admin/wcj-modules-cats.php:106
|
@@ -3778,56 +3680,22 @@ msgid ""
|
|
3778 |
"Methods and more."
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: includes/admin/wcj-modules-cats.php:
|
3782 |
msgid "PDF Invoicing & Packing Slips"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: includes/admin/wcj-modules-cats.php:
|
3786 |
msgid "PDF Documents"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: includes/admin/wcj-modules-cats.php:
|
3790 |
msgid "Emails & Misc."
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: includes/admin/wcj-modules-cats.php:
|
3794 |
msgid "Emails, Reports, Export, Admin Tools, General Options and more."
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:74
|
3798 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:80
|
3799 |
-
#, php-format
|
3800 |
-
msgid "Shipping Methods by %s"
|
3801 |
-
msgstr ""
|
3802 |
-
|
3803 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:76
|
3804 |
-
#: includes/settings/wcj-settings-payment-gateways-by-country.php:16
|
3805 |
-
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
|
3806 |
-
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
|
3807 |
-
msgid "Leave empty to disable."
|
3808 |
-
msgstr ""
|
3809 |
-
|
3810 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:81
|
3811 |
-
#: includes/settings/wcj-settings-orders.php:208
|
3812 |
-
#: includes/settings/wcj-settings-price-formats.php:37
|
3813 |
-
#: includes/settings/wcj-settings-product-listings.php:181
|
3814 |
-
#: includes/settings/wcj-settings-product-listings.php:227
|
3815 |
-
#: includes/settings/wcj-settings-product-listings.php:285
|
3816 |
-
#: includes/settings/wcj-settings-shipping-options.php:21
|
3817 |
-
#: includes/settings/wcj-settings-stock.php:23
|
3818 |
-
msgid "Enable section"
|
3819 |
-
msgstr ""
|
3820 |
-
|
3821 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:102
|
3822 |
-
#, php-format
|
3823 |
-
msgid "Include %s"
|
3824 |
-
msgstr ""
|
3825 |
-
|
3826 |
-
#: includes/classes/class-wcj-module-shipping-by-condition.php:113
|
3827 |
-
#, php-format
|
3828 |
-
msgid "Exclude %s"
|
3829 |
-
msgstr ""
|
3830 |
-
|
3831 |
#: includes/classes/class-wcj-module.php:94
|
3832 |
#, php-format
|
3833 |
msgid ""
|
@@ -3837,30 +3705,30 @@ msgid ""
|
|
3837 |
"\"%1$s\" products."
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: includes/classes/class-wcj-module.php:
|
3841 |
#, php-format
|
3842 |
msgid "Selected: %s."
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: includes/classes/class-wcj-module.php:
|
3846 |
msgid "Back to Module Settings"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: includes/classes/class-wcj-module.php:
|
3850 |
#: includes/settings/wcj-settings-wpml.php:20
|
3851 |
msgid "Module Tools"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: includes/classes/class-wcj-module.php:
|
3855 |
#: includes/settings/wcj-settings-checkout-core-fields.php:54
|
3856 |
msgid "enabled"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: includes/classes/class-wcj-module.php:
|
3860 |
msgid "disabled"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: includes/classes/class-wcj-module.php:
|
3864 |
#: includes/settings/wcj-settings-product-tabs.php:152
|
3865 |
#: includes/settings/wcj-settings-product-tabs.php:164
|
3866 |
#: includes/settings/wcj-settings-product-tabs.php:176
|
@@ -3868,27 +3736,27 @@ msgstr ""
|
|
3868 |
msgid "Deprecated"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: includes/classes/class-wcj-module.php:
|
3872 |
msgid "Reset Settings"
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: includes/classes/class-wcj-module.php:
|
3876 |
msgid "Reset Module to Default Settings"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: includes/classes/class-wcj-module.php:
|
3880 |
msgid "Reset Submodule to Default Settings"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#: includes/classes/class-wcj-module.php:
|
3884 |
msgid "Reset settings"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: includes/classes/class-wcj-module.php:
|
3888 |
msgid "Module Options"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: includes/classes/class-wcj-module.php:
|
3892 |
msgid "Enable Module"
|
3893 |
msgstr ""
|
3894 |
|
@@ -3933,9 +3801,9 @@ msgstr ""
|
|
3933 |
|
3934 |
#: includes/emails/class-wc-email-wcj-custom.php:225
|
3935 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:59
|
3936 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
3937 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
3938 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
3939 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:110
|
3940 |
msgid "Enable/Disable"
|
3941 |
msgstr ""
|
@@ -4098,7 +3966,7 @@ msgstr ""
|
|
4098 |
msgid "Cron job: exchange rates update failed"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: includes/exchange-rates/class-wcj-exchange-rates.php:
|
4102 |
#, php-format
|
4103 |
msgid "Grab %s rate from %s"
|
4104 |
msgstr ""
|
@@ -4259,7 +4127,7 @@ msgstr ""
|
|
4259 |
|
4260 |
#: includes/export/class-wcj-fields-helper.php:120
|
4261 |
#: includes/export/class-wcj-fields-helper.php:205
|
4262 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
4263 |
msgid "Order Notes"
|
4264 |
msgstr ""
|
4265 |
|
@@ -4406,14 +4274,14 @@ msgstr ""
|
|
4406 |
|
4407 |
#: includes/export/class-wcj-fields-helper.php:289
|
4408 |
#: includes/input-fields/wcj-product-input-fields-options.php:28
|
4409 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
4410 |
#: includes/settings/wcj-settings-export.php:81
|
4411 |
#: includes/settings/wcj-settings-export.php:149
|
4412 |
-
#: includes/settings/wcj-settings-export.php:
|
4413 |
#: includes/settings/wcj-settings-global-discount.php:58
|
4414 |
#: includes/settings/wcj-settings-product-addons.php:73
|
4415 |
#: includes/settings/wcj-settings-purchase-data.php:73
|
4416 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
4417 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
|
4418 |
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:164
|
4419 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:123
|
@@ -4422,7 +4290,7 @@ msgid "Type"
|
|
4422 |
msgstr ""
|
4423 |
|
4424 |
#: includes/export/class-wcj-fields-helper.php:291
|
4425 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
4426 |
msgid "Image URL"
|
4427 |
msgstr ""
|
4428 |
|
@@ -4446,6 +4314,7 @@ msgid "Width"
|
|
4446 |
msgstr ""
|
4447 |
|
4448 |
#: includes/export/class-wcj-fields-helper.php:299
|
|
|
4449 |
msgid "Length"
|
4450 |
msgstr ""
|
4451 |
|
@@ -4538,11 +4407,11 @@ msgstr ""
|
|
4538 |
msgid "Availability Class"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: includes/functions/wcj-admin
|
4542 |
msgid "Enter comma separated list of IDs."
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: includes/functions/wcj-admin
|
4546 |
#: includes/settings/wcj-settings-emails-verification.php:59
|
4547 |
#: includes/settings/wcj-settings-emails-verification.php:67
|
4548 |
#: includes/settings/wcj-settings-emails-verification.php:107
|
@@ -4550,1913 +4419,1907 @@ msgstr ""
|
|
4550 |
msgid "Replaced value: %s"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: includes/functions/wcj-admin
|
4554 |
#, php-format
|
4555 |
msgid "Replaced values: %s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: includes/functions/wcj-admin
|
4559 |
msgid "Install Booster Plus to unlock all features"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: includes/functions/wcj-admin
|
4563 |
#, php-format
|
4564 |
msgid ""
|
4565 |
"Some settings fields are locked and you will need %s to modify all locked "
|
4566 |
"fields."
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: includes/functions/wcj-admin
|
4570 |
msgid "Buy now"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: includes/functions/wcj-admin
|
4574 |
msgid "Visit Booster Site"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: includes/functions/wcj-admin
|
4578 |
#, php-format
|
4579 |
msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: includes/functions/wcj-admin
|
4583 |
#, php-format
|
4584 |
msgid ""
|
4585 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
|
4586 |
"option."
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: includes/functions/wcj-admin
|
4590 |
#, php-format
|
4591 |
msgid "Get Booster Plus to enable \"%s\" option."
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: includes/functions/wcj-admin
|
4595 |
#, php-format
|
4596 |
msgid ""
|
4597 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: includes/functions/wcj-admin
|
4601 |
#, php-format
|
4602 |
msgid ""
|
4603 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: includes/functions/wcj-admin
|
4607 |
msgid "Get Booster Plus to change value."
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: includes/functions/wcj-country
|
4611 |
msgid "Afghanistan"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: includes/functions/wcj-country
|
4615 |
msgid "Åland Islands"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: includes/functions/wcj-country
|
4619 |
msgid "Albania"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: includes/functions/wcj-country
|
4623 |
msgid "Algeria"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: includes/functions/wcj-country
|
4627 |
msgid "Andorra"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: includes/functions/wcj-country
|
4631 |
msgid "Angola"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#: includes/functions/wcj-country
|
4635 |
msgid "Anguilla"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: includes/functions/wcj-country
|
4639 |
msgid "Antarctica"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: includes/functions/wcj-country
|
4643 |
msgid "Antigua and Barbuda"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: includes/functions/wcj-country
|
4647 |
msgid "Argentina"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: includes/functions/wcj-country
|
4651 |
msgid "Armenia"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: includes/functions/wcj-country
|
4655 |
msgid "Aruba"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: includes/functions/wcj-country
|
4659 |
msgid "Australia"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: includes/functions/wcj-country
|
4663 |
msgid "Austria"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: includes/functions/wcj-country
|
4667 |
msgid "Azerbaijan"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: includes/functions/wcj-country
|
4671 |
msgid "Bahamas"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: includes/functions/wcj-country
|
4675 |
msgid "Bahrain"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: includes/functions/wcj-country
|
4679 |
msgid "Bangladesh"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: includes/functions/wcj-country
|
4683 |
msgid "Barbados"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: includes/functions/wcj-country
|
4687 |
msgid "Belarus"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: includes/functions/wcj-country
|
4691 |
msgid "Belgium"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: includes/functions/wcj-country
|
4695 |
msgid "Belau"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: includes/functions/wcj-country
|
4699 |
msgid "Belize"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: includes/functions/wcj-country
|
4703 |
msgid "Benin"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: includes/functions/wcj-country
|
4707 |
msgid "Bermuda"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: includes/functions/wcj-country
|
4711 |
msgid "Bhutan"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: includes/functions/wcj-country
|
4715 |
msgid "Bolivia"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: includes/functions/wcj-country
|
4719 |
msgid "Bonaire, Saint Eustatius and Saba"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: includes/functions/wcj-country
|
4723 |
msgid "Bosnia and Herzegovina"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: includes/functions/wcj-country
|
4727 |
msgid "Botswana"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: includes/functions/wcj-country
|
4731 |
msgid "Bouvet Island"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: includes/functions/wcj-country
|
4735 |
msgid "Brazil"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: includes/functions/wcj-country
|
4739 |
msgid "British Indian Ocean Territory"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: includes/functions/wcj-country
|
4743 |
msgid "British Virgin Islands"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: includes/functions/wcj-country
|
4747 |
msgid "Brunei"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: includes/functions/wcj-country
|
4751 |
msgid "Bulgaria"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: includes/functions/wcj-country
|
4755 |
msgid "Burkina Faso"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: includes/functions/wcj-country
|
4759 |
msgid "Burundi"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: includes/functions/wcj-country
|
4763 |
msgid "Cambodia"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: includes/functions/wcj-country
|
4767 |
msgid "Cameroon"
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: includes/functions/wcj-country
|
4771 |
msgid "Canada"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: includes/functions/wcj-country
|
4775 |
msgid "Cape Verde"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: includes/functions/wcj-country
|
4779 |
msgid "Cayman Islands"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: includes/functions/wcj-country
|
4783 |
msgid "Central African Republic"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: includes/functions/wcj-country
|
4787 |
msgid "Chad"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: includes/functions/wcj-country
|
4791 |
msgid "Chile"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: includes/functions/wcj-country
|
4795 |
msgid "China"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: includes/functions/wcj-country
|
4799 |
msgid "Christmas Island"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
#: includes/functions/wcj-country
|
4803 |
msgid "Cocos (Keeling) Islands"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: includes/functions/wcj-country
|
4807 |
msgid "Colombia"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: includes/functions/wcj-country
|
4811 |
msgid "Comoros"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: includes/functions/wcj-country
|
4815 |
msgid "Congo (Brazzaville)"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: includes/functions/wcj-country
|
4819 |
msgid "Congo (Kinshasa)"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: includes/functions/wcj-country
|
4823 |
msgid "Cook Islands"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: includes/functions/wcj-country
|
4827 |
msgid "Costa Rica"
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: includes/functions/wcj-country
|
4831 |
msgid "Croatia"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: includes/functions/wcj-country
|
4835 |
msgid "Cuba"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: includes/functions/wcj-country
|
4839 |
msgid "CuraÇao"
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: includes/functions/wcj-country
|
4843 |
msgid "Cyprus"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: includes/functions/wcj-country
|
4847 |
msgid "Czech Republic"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: includes/functions/wcj-country
|
4851 |
msgid "Denmark"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: includes/functions/wcj-country
|
4855 |
msgid "Djibouti"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: includes/functions/wcj-country
|
4859 |
msgid "Dominica"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: includes/functions/wcj-country
|
4863 |
msgid "Dominican Republic"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: includes/functions/wcj-country
|
4867 |
msgid "Ecuador"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: includes/functions/wcj-country
|
4871 |
msgid "Egypt"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: includes/functions/wcj-country
|
4875 |
msgid "El Salvador"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: includes/functions/wcj-country
|
4879 |
msgid "Equatorial Guinea"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: includes/functions/wcj-country
|
4883 |
msgid "Eritrea"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: includes/functions/wcj-country
|
4887 |
msgid "Estonia"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
-
#: includes/functions/wcj-country
|
4891 |
msgid "Ethiopia"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
-
#: includes/functions/wcj-country
|
4895 |
msgid "Falkland Islands"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
-
#: includes/functions/wcj-country
|
4899 |
msgid "Faroe Islands"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: includes/functions/wcj-country
|
4903 |
msgid "Fiji"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
-
#: includes/functions/wcj-country
|
4907 |
msgid "Finland"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: includes/functions/wcj-country
|
4911 |
msgid "France"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
-
#: includes/functions/wcj-country
|
4915 |
msgid "French Guiana"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
-
#: includes/functions/wcj-country
|
4919 |
msgid "French Polynesia"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
-
#: includes/functions/wcj-country
|
4923 |
msgid "French Southern Territories"
|
4924 |
msgstr ""
|
4925 |
|
4926 |
-
#: includes/functions/wcj-country
|
4927 |
msgid "Gabon"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#: includes/functions/wcj-country
|
4931 |
msgid "Gambia"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
-
#: includes/functions/wcj-country
|
4935 |
msgid "Georgia"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#: includes/functions/wcj-country
|
4939 |
msgid "Germany"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#: includes/functions/wcj-country
|
4943 |
msgid "Ghana"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: includes/functions/wcj-country
|
4947 |
msgid "Gibraltar"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: includes/functions/wcj-country
|
4951 |
msgid "Greece"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: includes/functions/wcj-country
|
4955 |
msgid "Greenland"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: includes/functions/wcj-country
|
4959 |
msgid "Grenada"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: includes/functions/wcj-country
|
4963 |
msgid "Guadeloupe"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: includes/functions/wcj-country
|
4967 |
msgid "Guatemala"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: includes/functions/wcj-country
|
4971 |
msgid "Guernsey"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: includes/functions/wcj-country
|
4975 |
msgid "Guinea"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
-
#: includes/functions/wcj-country
|
4979 |
msgid "Guinea-Bissau"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
-
#: includes/functions/wcj-country
|
4983 |
msgid "Guyana"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: includes/functions/wcj-country
|
4987 |
msgid "Haiti"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: includes/functions/wcj-country
|
4991 |
msgid "Heard Island and McDonald Islands"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: includes/functions/wcj-country
|
4995 |
msgid "Honduras"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
-
#: includes/functions/wcj-country
|
4999 |
msgid "Hong Kong"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
-
#: includes/functions/wcj-country
|
5003 |
msgid "Hungary"
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: includes/functions/wcj-country
|
5007 |
msgid "Iceland"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
-
#: includes/functions/wcj-country
|
5011 |
msgid "India"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
-
#: includes/functions/wcj-country
|
5015 |
msgid "Indonesia"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
-
#: includes/functions/wcj-country
|
5019 |
msgid "Iran"
|
5020 |
msgstr ""
|
5021 |
|
5022 |
-
#: includes/functions/wcj-country
|
5023 |
msgid "Iraq"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: includes/functions/wcj-country
|
5027 |
msgid "Republic of Ireland"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
-
#: includes/functions/wcj-country
|
5031 |
msgid "Isle of Man"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: includes/functions/wcj-country
|
5035 |
msgid "Israel"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
-
#: includes/functions/wcj-country
|
5039 |
msgid "Italy"
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#: includes/functions/wcj-country
|
5043 |
msgid "Ivory Coast"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
-
#: includes/functions/wcj-country
|
5047 |
msgid "Jamaica"
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: includes/functions/wcj-country
|
5051 |
msgid "Japan"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
-
#: includes/functions/wcj-country
|
5055 |
msgid "Jersey"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: includes/functions/wcj-country
|
5059 |
msgid "Jordan"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: includes/functions/wcj-country
|
5063 |
msgid "Kazakhstan"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: includes/functions/wcj-country
|
5067 |
msgid "Kenya"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: includes/functions/wcj-country
|
5071 |
msgid "Kiribati"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: includes/functions/wcj-country
|
5075 |
msgid "Kuwait"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
-
#: includes/functions/wcj-country
|
5079 |
msgid "Kyrgyzstan"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
-
#: includes/functions/wcj-country
|
5083 |
msgid "Laos"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
-
#: includes/functions/wcj-country
|
5087 |
msgid "Latvia"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#: includes/functions/wcj-country
|
5091 |
msgid "Lebanon"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: includes/functions/wcj-country
|
5095 |
msgid "Lesotho"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: includes/functions/wcj-country
|
5099 |
msgid "Liberia"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: includes/functions/wcj-country
|
5103 |
msgid "Libya"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
-
#: includes/functions/wcj-country
|
5107 |
msgid "Liechtenstein"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
-
#: includes/functions/wcj-country
|
5111 |
msgid "Lithuania"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#: includes/functions/wcj-country
|
5115 |
msgid "Luxembourg"
|
5116 |
msgstr ""
|
5117 |
|
5118 |
-
#: includes/functions/wcj-country
|
5119 |
msgid "Macao S.A.R., China"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: includes/functions/wcj-country
|
5123 |
msgid "Macedonia"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: includes/functions/wcj-country
|
5127 |
msgid "Madagascar"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: includes/functions/wcj-country
|
5131 |
msgid "Malawi"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: includes/functions/wcj-country
|
5135 |
msgid "Malaysia"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
-
#: includes/functions/wcj-country
|
5139 |
msgid "Maldives"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: includes/functions/wcj-country
|
5143 |
msgid "Mali"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
-
#: includes/functions/wcj-country
|
5147 |
msgid "Malta"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: includes/functions/wcj-country
|
5151 |
msgid "Marshall Islands"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
-
#: includes/functions/wcj-country
|
5155 |
msgid "Martinique"
|
5156 |
msgstr ""
|
5157 |
|
5158 |
-
#: includes/functions/wcj-country
|
5159 |
msgid "Mauritania"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: includes/functions/wcj-country
|
5163 |
msgid "Mauritius"
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: includes/functions/wcj-country
|
5167 |
msgid "Mayotte"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: includes/functions/wcj-country
|
5171 |
msgid "Mexico"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: includes/functions/wcj-country
|
5175 |
msgid "Micronesia"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: includes/functions/wcj-country
|
5179 |
msgid "Moldova"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: includes/functions/wcj-country
|
5183 |
msgid "Monaco"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: includes/functions/wcj-country
|
5187 |
msgid "Mongolia"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: includes/functions/wcj-country
|
5191 |
msgid "Montenegro"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: includes/functions/wcj-country
|
5195 |
msgid "Montserrat"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: includes/functions/wcj-country
|
5199 |
msgid "Morocco"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: includes/functions/wcj-country
|
5203 |
msgid "Mozambique"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: includes/functions/wcj-country
|
5207 |
msgid "Myanmar"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: includes/functions/wcj-country
|
5211 |
msgid "Namibia"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: includes/functions/wcj-country
|
5215 |
msgid "Nauru"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: includes/functions/wcj-country
|
5219 |
msgid "Nepal"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: includes/functions/wcj-country
|
5223 |
msgid "Netherlands"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: includes/functions/wcj-country
|
5227 |
msgid "Netherlands Antilles"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: includes/functions/wcj-country
|
5231 |
msgid "New Caledonia"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: includes/functions/wcj-country
|
5235 |
msgid "New Zealand"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: includes/functions/wcj-country
|
5239 |
msgid "Nicaragua"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: includes/functions/wcj-country
|
5243 |
msgid "Niger"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: includes/functions/wcj-country
|
5247 |
msgid "Nigeria"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: includes/functions/wcj-country
|
5251 |
msgid "Niue"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: includes/functions/wcj-country
|
5255 |
msgid "Norfolk Island"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: includes/functions/wcj-country
|
5259 |
msgid "North Korea"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: includes/functions/wcj-country
|
5263 |
msgid "Norway"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: includes/functions/wcj-country
|
5267 |
msgid "Oman"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: includes/functions/wcj-country
|
5271 |
msgid "Pakistan"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: includes/functions/wcj-country
|
5275 |
msgid "Palestinian Territory"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: includes/functions/wcj-country
|
5279 |
msgid "Panama"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: includes/functions/wcj-country
|
5283 |
msgid "Papua New Guinea"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: includes/functions/wcj-country
|
5287 |
msgid "Paraguay"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: includes/functions/wcj-country
|
5291 |
msgid "Peru"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: includes/functions/wcj-country
|
5295 |
msgid "Philippines"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: includes/functions/wcj-country
|
5299 |
msgid "Pitcairn"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: includes/functions/wcj-country
|
5303 |
msgid "Poland"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: includes/functions/wcj-country
|
5307 |
msgid "Portugal"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: includes/functions/wcj-country
|
5311 |
msgid "Qatar"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: includes/functions/wcj-country
|
5315 |
msgid "Reunion"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: includes/functions/wcj-country
|
5319 |
msgid "Romania"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: includes/functions/wcj-country
|
5323 |
msgid "Russia"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: includes/functions/wcj-country
|
5327 |
msgid "Rwanda"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: includes/functions/wcj-country
|
5331 |
msgid "Saint Barthélemy"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#: includes/functions/wcj-country
|
5335 |
msgid "Saint Helena"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
#: includes/functions/wcj-country
|
5339 |
msgid "Saint Kitts and Nevis"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: includes/functions/wcj-country
|
5343 |
msgid "Saint Lucia"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: includes/functions/wcj-country
|
5347 |
msgid "Saint Martin (French part)"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: includes/functions/wcj-country
|
5351 |
msgid "Saint Martin (Dutch part)"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: includes/functions/wcj-country
|
5355 |
msgid "Saint Pierre and Miquelon"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: includes/functions/wcj-country
|
5359 |
msgid "Saint Vincent and the Grenadines"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: includes/functions/wcj-country
|
5363 |
msgid "San Marino"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#: includes/functions/wcj-country
|
5367 |
msgid "São Tomé and Príncipe"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: includes/functions/wcj-country
|
5371 |
msgid "Saudi Arabia"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: includes/functions/wcj-country
|
5375 |
msgid "Senegal"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: includes/functions/wcj-country
|
5379 |
msgid "Serbia"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: includes/functions/wcj-country
|
5383 |
msgid "Seychelles"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: includes/functions/wcj-country
|
5387 |
msgid "Sierra Leone"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: includes/functions/wcj-country
|
5391 |
msgid "Singapore"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: includes/functions/wcj-country
|
5395 |
msgid "Slovakia"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: includes/functions/wcj-country
|
5399 |
msgid "Slovenia"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: includes/functions/wcj-country
|
5403 |
msgid "Solomon Islands"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: includes/functions/wcj-country
|
5407 |
msgid "Somalia"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: includes/functions/wcj-country
|
5411 |
msgid "South Africa"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: includes/functions/wcj-country
|
5415 |
msgid "South Georgia/Sandwich Islands"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: includes/functions/wcj-country
|
5419 |
msgid "South Korea"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: includes/functions/wcj-country
|
5423 |
msgid "South Sudan"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: includes/functions/wcj-country
|
5427 |
msgid "Spain"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: includes/functions/wcj-country
|
5431 |
msgid "Sri Lanka"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: includes/functions/wcj-country
|
5435 |
msgid "Sudan"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: includes/functions/wcj-country
|
5439 |
msgid "Suriname"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: includes/functions/wcj-country
|
5443 |
msgid "Svalbard and Jan Mayen"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: includes/functions/wcj-country
|
5447 |
msgid "Swaziland"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#: includes/functions/wcj-country
|
5451 |
msgid "Sweden"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: includes/functions/wcj-country
|
5455 |
msgid "Switzerland"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: includes/functions/wcj-country
|
5459 |
msgid "Syria"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: includes/functions/wcj-country
|
5463 |
msgid "Taiwan"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: includes/functions/wcj-country
|
5467 |
msgid "Tajikistan"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: includes/functions/wcj-country
|
5471 |
msgid "Tanzania"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: includes/functions/wcj-country
|
5475 |
msgid "Thailand"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: includes/functions/wcj-country
|
5479 |
msgid "Timor-Leste"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: includes/functions/wcj-country
|
5483 |
msgid "Togo"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: includes/functions/wcj-country
|
5487 |
msgid "Tokelau"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: includes/functions/wcj-country
|
5491 |
msgid "Tonga"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: includes/functions/wcj-country
|
5495 |
msgid "Trinidad and Tobago"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: includes/functions/wcj-country
|
5499 |
msgid "Tunisia"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: includes/functions/wcj-country
|
5503 |
msgid "Turkey"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: includes/functions/wcj-country
|
5507 |
msgid "Turkmenistan"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: includes/functions/wcj-country
|
5511 |
msgid "Turks and Caicos Islands"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: includes/functions/wcj-country
|
5515 |
msgid "Tuvalu"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: includes/functions/wcj-country
|
5519 |
msgid "Uganda"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: includes/functions/wcj-country
|
5523 |
msgid "Ukraine"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: includes/functions/wcj-country
|
5527 |
msgid "United Arab Emirates"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: includes/functions/wcj-country
|
5531 |
msgid "United Kingdom (UK)"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: includes/functions/wcj-country
|
5535 |
msgid "United States (US)"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: includes/functions/wcj-country
|
5539 |
msgid "Uruguay"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
-
#: includes/functions/wcj-country
|
5543 |
msgid "Uzbekistan"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: includes/functions/wcj-country
|
5547 |
msgid "Vanuatu"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: includes/functions/wcj-country
|
5551 |
msgid "Vatican"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: includes/functions/wcj-country
|
5555 |
msgid "Venezuela"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: includes/functions/wcj-country
|
5559 |
msgid "Vietnam"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: includes/functions/wcj-country
|
5563 |
msgid "Wallis and Futuna"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: includes/functions/wcj-country
|
5567 |
msgid "Western Sahara"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: includes/functions/wcj-country
|
5571 |
msgid "Western Samoa"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: includes/functions/wcj-country
|
5575 |
msgid "Yemen"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: includes/functions/wcj-country
|
5579 |
msgid "Zambia"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: includes/functions/wcj-country
|
5583 |
msgid "Zimbabwe"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: includes/functions/wcj-country
|
5587 |
msgid "European Union"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: includes/functions/wcj-currencies.php:
|
5591 |
msgid "United Arab Emirates Dirham"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: includes/functions/wcj-currencies.php:
|
5595 |
msgid "Afghan afghani"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: includes/functions/wcj-currencies.php:
|
5599 |
msgid "Albanian lek"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: includes/functions/wcj-currencies.php:
|
5603 |
msgid "Armenian dram"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: includes/functions/wcj-currencies.php:
|
5607 |
msgid "Netherlands Antillean gulden"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: includes/functions/wcj-currencies.php:
|
5611 |
msgid "Angolan kwanza"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: includes/functions/wcj-currencies.php:
|
5615 |
msgid "Argentine Peso"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: includes/functions/wcj-currencies.php:
|
5619 |
msgid "Australian Dollars"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: includes/functions/wcj-currencies.php:
|
5623 |
msgid "Aruban florin"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: includes/functions/wcj-currencies.php:
|
5627 |
msgid "Azerbaijani manat"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: includes/functions/wcj-currencies.php:
|
5631 |
msgid "Bosnia and Herzegovina konvertibilna marka"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: includes/functions/wcj-currencies.php:
|
5635 |
msgid "Barbadian dollar"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: includes/functions/wcj-currencies.php:
|
5639 |
msgid "Bangladeshi Taka"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: includes/functions/wcj-currencies.php:
|
5643 |
msgid "Bulgarian Lev"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: includes/functions/wcj-currencies.php:
|
5647 |
msgid "Bahraini dinar"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: includes/functions/wcj-currencies.php:
|
5651 |
msgid "Burundi franc"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: includes/functions/wcj-currencies.php:
|
5655 |
msgid "Belarusian ruble"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: includes/functions/wcj-currencies.php:
|
5659 |
msgid "Brunei dollar"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: includes/functions/wcj-currencies.php:
|
5663 |
msgid "Bolivian boliviano"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: includes/functions/wcj-currencies.php:
|
5667 |
msgid "Brazilian Real"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: includes/functions/wcj-currencies.php:
|
5671 |
msgid "Bahamian dollar"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: includes/functions/wcj-currencies.php:
|
5675 |
msgid "Bhutanese ngultrum"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
-
#: includes/functions/wcj-currencies.php:
|
5679 |
msgid "Botswana pula"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
-
#: includes/functions/wcj-currencies.php:
|
5683 |
msgid "Belize dollar"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: includes/functions/wcj-currencies.php:
|
5687 |
msgid "Canadian Dollars"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: includes/functions/wcj-currencies.php:
|
5691 |
msgid "Congolese franc"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: includes/functions/wcj-currencies.php:
|
5695 |
msgid "Swiss Franc"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: includes/functions/wcj-currencies.php:
|
5699 |
msgid "Chilean Peso"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: includes/functions/wcj-currencies.php:
|
5703 |
msgid "Chinese Yuan"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: includes/functions/wcj-currencies.php:
|
5707 |
msgid "Colombian Peso"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#: includes/functions/wcj-currencies.php:
|
5711 |
msgid "Costa Rican colon"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#: includes/functions/wcj-currencies.php:
|
5715 |
msgid "Cuban peso"
|
5716 |
msgstr ""
|
5717 |
|
5718 |
-
#: includes/functions/wcj-currencies.php:
|
5719 |
msgid "Cape Verdean escudo"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: includes/functions/wcj-currencies.php:
|
5723 |
msgid "Czech Koruna"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: includes/functions/wcj-currencies.php:
|
5727 |
msgid "Djiboutian franc"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#: includes/functions/wcj-currencies.php:
|
5731 |
msgid "Danish Krone"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: includes/functions/wcj-currencies.php:
|
5735 |
msgid "Dominican Peso"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: includes/functions/wcj-currencies.php:
|
5739 |
msgid "Algerian dinar"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: includes/functions/wcj-currencies.php:
|
5743 |
msgid "Estonian kroon"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: includes/functions/wcj-currencies.php:
|
5747 |
msgid "Egyptian Pound"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: includes/functions/wcj-currencies.php:
|
5751 |
msgid "Eritrean nakfa"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: includes/functions/wcj-currencies.php:
|
5755 |
msgid "Ethiopian birr"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: includes/functions/wcj-currencies.php:
|
5759 |
msgid "Euros"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: includes/functions/wcj-currencies.php:
|
5763 |
msgid "Fijian dollar"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: includes/functions/wcj-currencies.php:
|
5767 |
msgid "Falkland Islands pound"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: includes/functions/wcj-currencies.php:
|
5771 |
msgid "Pounds Sterling"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: includes/functions/wcj-currencies.php:
|
5775 |
msgid "Georgian lari"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: includes/functions/wcj-currencies.php:
|
5779 |
msgid "Ghanaian cedi"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: includes/functions/wcj-currencies.php:
|
5783 |
msgid "Gibraltar pound"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: includes/functions/wcj-currencies.php:
|
5787 |
msgid "Guyanese dollar"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: includes/functions/wcj-currencies.php:
|
5791 |
msgid "Gambian dalasi"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: includes/functions/wcj-currencies.php:
|
5795 |
msgid "Guinean franc"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: includes/functions/wcj-currencies.php:
|
5799 |
-
#: includes/functions/wcj-currencies.php:
|
5800 |
msgid "Central African CFA franc"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: includes/functions/wcj-currencies.php:
|
5804 |
msgid "Guatemalan quetzal"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#: includes/functions/wcj-currencies.php:
|
5808 |
msgid "Hong Kong Dollar"
|
5809 |
msgstr ""
|
5810 |
|
5811 |
-
#: includes/functions/wcj-currencies.php:
|
5812 |
msgid "Honduran lempira"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: includes/functions/wcj-currencies.php:
|
5816 |
msgid "Croatia kuna"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#: includes/functions/wcj-currencies.php:
|
5820 |
msgid "Haitian gourde"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: includes/functions/wcj-currencies.php:
|
5824 |
msgid "Hungarian Forint"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: includes/functions/wcj-currencies.php:
|
5828 |
msgid "Indonesia Rupiah"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#: includes/functions/wcj-currencies.php:
|
5832 |
msgid "Israeli Shekel"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: includes/functions/wcj-currencies.php:
|
5836 |
msgid "Indian Rupee"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: includes/functions/wcj-currencies.php:
|
5840 |
msgid "Iraqi dinar"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: includes/functions/wcj-currencies.php:
|
5844 |
msgid "Iranian rial"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: includes/functions/wcj-currencies.php:
|
5848 |
msgid "Icelandic krona"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: includes/functions/wcj-currencies.php:
|
5852 |
msgid "Yemeni rial"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: includes/functions/wcj-currencies.php:
|
5856 |
msgid "Jamaican dollar"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: includes/functions/wcj-currencies.php:
|
5860 |
msgid "Jordanian dinar"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: includes/functions/wcj-currencies.php:
|
5864 |
msgid "Japanese Yen"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: includes/functions/wcj-currencies.php:
|
5868 |
msgid "Kenyan shilling"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: includes/functions/wcj-currencies.php:
|
5872 |
msgid "Kyrgyzstani som"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: includes/functions/wcj-currencies.php:
|
5876 |
msgid "Cambodian riel"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: includes/functions/wcj-currencies.php:
|
5880 |
msgid "Lao kip"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: includes/functions/wcj-currencies.php:
|
5884 |
msgid "Cayman Islands dollar"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: includes/functions/wcj-currencies.php:
|
5888 |
msgid "Comorian franc"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: includes/functions/wcj-currencies.php:
|
5892 |
msgid "North Korean won"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: includes/functions/wcj-currencies.php:
|
5896 |
msgid "South Korean Won"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: includes/functions/wcj-currencies.php:
|
5900 |
msgid "Kuwaiti dinar"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: includes/functions/wcj-currencies.php:
|
5904 |
msgid "Kazakhstani tenge"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: includes/functions/wcj-currencies.php:
|
5908 |
msgid "Lao Kip"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: includes/functions/wcj-currencies.php:
|
5912 |
msgid "Lebanese lira"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: includes/functions/wcj-currencies.php:
|
5916 |
msgid "Libyan dinar"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: includes/functions/wcj-currencies.php:
|
5920 |
msgid "Sri Lankan rupee"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: includes/functions/wcj-currencies.php:
|
5924 |
msgid "Liberian dollar"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: includes/functions/wcj-currencies.php:
|
5928 |
msgid "Lesotho loti"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: includes/functions/wcj-currencies.php:
|
5932 |
msgid "Lithuanian litas"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#: includes/functions/wcj-currencies.php:
|
5936 |
msgid "Latvian lats"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: includes/functions/wcj-currencies.php:
|
5940 |
msgid "Moroccan dirham"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: includes/functions/wcj-currencies.php:
|
5944 |
msgid "Moldovan leu"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: includes/functions/wcj-currencies.php:
|
5948 |
msgid "Malagasy ariary"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: includes/functions/wcj-currencies.php:
|
5952 |
msgid "Malaysian ringgit"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: includes/functions/wcj-currencies.php:
|
5956 |
msgid "Macedonian denar"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: includes/functions/wcj-currencies.php:
|
5960 |
msgid "Myanma kyat"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: includes/functions/wcj-currencies.php:
|
5964 |
msgid "Mongolian tugrik"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: includes/functions/wcj-currencies.php:
|
5968 |
msgid "Macanese pataca"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: includes/functions/wcj-currencies.php:
|
5972 |
msgid "Mauritanian ouguiya"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: includes/functions/wcj-currencies.php:
|
5976 |
msgid "Mauritian rupee"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: includes/functions/wcj-currencies.php:
|
5980 |
msgid "Maldivian rufiyaa"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: includes/functions/wcj-currencies.php:
|
5984 |
msgid "Malawian kwacha"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: includes/functions/wcj-currencies.php:
|
5988 |
msgid "Mexican Peso"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#: includes/functions/wcj-currencies.php:
|
5992 |
msgid "Malaysian Ringgits"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
-
#: includes/functions/wcj-currencies.php:
|
5996 |
msgid "Mozambican metical"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: includes/functions/wcj-currencies.php:
|
6000 |
msgid "Namibian dollar"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: includes/functions/wcj-currencies.php:
|
6004 |
msgid "Nigerian Naira"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: includes/functions/wcj-currencies.php:
|
6008 |
msgid "Nicaraguan cordoba"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: includes/functions/wcj-currencies.php:
|
6012 |
msgid "Norwegian Krone"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: includes/functions/wcj-currencies.php:
|
6016 |
msgid "Nepali Rupee"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: includes/functions/wcj-currencies.php:
|
6020 |
msgid "New Zealand Dollar"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: includes/functions/wcj-currencies.php:
|
6024 |
msgid "Omani rial"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: includes/functions/wcj-currencies.php:
|
6028 |
msgid "Panamanian balboa"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: includes/functions/wcj-currencies.php:
|
6032 |
msgid "Peruvian nuevo sol"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: includes/functions/wcj-currencies.php:
|
6036 |
msgid "Papua New Guinean kina"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: includes/functions/wcj-currencies.php:
|
6040 |
msgid "Philippine Pesos"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: includes/functions/wcj-currencies.php:
|
6044 |
msgid "Paraguayan guarani"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: includes/functions/wcj-currencies.php:
|
6048 |
msgid "Pakistani Rupee"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: includes/functions/wcj-currencies.php:
|
6052 |
msgid "Polish Zloty"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: includes/functions/wcj-currencies.php:
|
6056 |
msgid "Paraguayan Guaraní"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: includes/functions/wcj-currencies.php:
|
6060 |
msgid "Qatari riyal"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: includes/functions/wcj-currencies.php:
|
6064 |
msgid "Chinese renminbi"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: includes/functions/wcj-currencies.php:
|
6068 |
msgid "Romanian Leu"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: includes/functions/wcj-currencies.php:
|
6072 |
msgid "Serbian dinar"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: includes/functions/wcj-currencies.php:
|
6076 |
msgid "Russian Ruble"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: includes/functions/wcj-currencies.php:
|
6080 |
msgid "Rwandan franc"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
-
#: includes/functions/wcj-currencies.php:
|
6084 |
msgid "Saudi Riyal"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
-
#: includes/functions/wcj-currencies.php:
|
6088 |
msgid "Solomon Islands dollar"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
-
#: includes/functions/wcj-currencies.php:
|
6092 |
msgid "Seychellois rupee"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
-
#: includes/functions/wcj-currencies.php:
|
6096 |
msgid "Sudanese pound"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: includes/functions/wcj-currencies.php:
|
6100 |
msgid "Swedish Krona"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: includes/functions/wcj-currencies.php:
|
6104 |
msgid "Singapore Dollar"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#: includes/functions/wcj-currencies.php:
|
6108 |
msgid "Saint Helena pound"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#: includes/functions/wcj-currencies.php:
|
6112 |
msgid "Syrian pound"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
-
#: includes/functions/wcj-currencies.php:
|
6116 |
msgid "Slovak koruna"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
-
#: includes/functions/wcj-currencies.php:
|
6120 |
msgid "Sierra Leonean leone"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
-
#: includes/functions/wcj-currencies.php:
|
6124 |
msgid "Somali shilling"
|
6125 |
msgstr ""
|
6126 |
|
6127 |
-
#: includes/functions/wcj-currencies.php:
|
6128 |
msgid "Surinamese dollar"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: includes/functions/wcj-currencies.php:
|
6132 |
msgid "Sao Tome and Principe dobra"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
-
#: includes/functions/wcj-currencies.php:
|
6136 |
msgid "Swazi lilangeni"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: includes/functions/wcj-currencies.php:
|
6140 |
msgid "Thai Baht"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#: includes/functions/wcj-currencies.php:
|
6144 |
msgid "Tajikistani somoni"
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#: includes/functions/wcj-currencies.php:
|
6148 |
msgid "Turkmen manat"
|
6149 |
msgstr ""
|
6150 |
|
6151 |
-
#: includes/functions/wcj-currencies.php:
|
6152 |
msgid "Tunisian dinar"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#: includes/functions/wcj-currencies.php:
|
6156 |
msgid "Paanga"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#: includes/functions/wcj-currencies.php:
|
6160 |
msgid "Turkish Lira"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
-
#: includes/functions/wcj-currencies.php:
|
6164 |
msgid "Trinidad and Tobago dollar"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
-
#: includes/functions/wcj-currencies.php:
|
6168 |
msgid "Taiwan New Dollars"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: includes/functions/wcj-currencies.php:
|
6172 |
msgid "Tanzanian shilling"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: includes/functions/wcj-currencies.php:
|
6176 |
msgid "Ukrainian Hryvnia"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#: includes/functions/wcj-currencies.php:
|
6180 |
msgid "Ugandan shilling"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#: includes/functions/wcj-currencies.php:
|
6184 |
msgid "Uruguayan peso"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: includes/functions/wcj-currencies.php:
|
6188 |
msgid "US Dollars"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
-
#: includes/functions/wcj-currencies.php:
|
6192 |
msgid "Uzbekistani som"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
-
#: includes/functions/wcj-currencies.php:
|
6196 |
msgid "Venezuelan bolivar"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
-
#: includes/functions/wcj-currencies.php:
|
6200 |
msgid "Vietnamese Dong"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
-
#: includes/functions/wcj-currencies.php:
|
6204 |
msgid "Vanuatu vatu"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: includes/functions/wcj-currencies.php:
|
6208 |
msgid "Samoan tala"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
-
#: includes/functions/wcj-currencies.php:
|
6212 |
msgid "East Caribbean dollar"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: includes/functions/wcj-currencies.php:
|
6216 |
msgid "Special Drawing Rights"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
-
#: includes/functions/wcj-currencies.php:
|
6220 |
msgid "West African CFA franc"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: includes/functions/wcj-currencies.php:
|
6224 |
msgid "CFP franc"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: includes/functions/wcj-currencies.php:
|
6228 |
msgid "South African rand"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: includes/functions/wcj-currencies.php:
|
6232 |
msgid "Zambian kwacha"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: includes/functions/wcj-currencies.php:
|
6236 |
msgid "Zimbabwean dollar"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: includes/functions/wcj-currencies.php:
|
6240 |
msgid "Bitcoin"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
-
#: includes/functions/wcj-currencies.php:
|
6244 |
msgid "Ethereum"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
-
#: includes/functions/wcj-currencies.php:
|
6248 |
msgid "myCred"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
-
#: includes/functions/wcj-exchange-rates
|
6252 |
msgid "Yahoo"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: includes/functions/wcj-exchange-rates
|
6256 |
msgid "European Central Bank (ECB)"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
-
#: includes/functions/wcj-exchange-rates
|
6260 |
msgid "TCMB"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
-
#: includes/functions/wcj-
|
|
|
|
|
|
|
|
|
6264 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:147
|
6265 |
msgid "You have Free delivery"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: includes/functions/wcj-general
|
6269 |
msgid "Before cart"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#: includes/functions/wcj-general
|
6273 |
msgid "Before cart table"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
-
#: includes/functions/wcj-general
|
6277 |
msgid "Before cart contents"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
-
#: includes/functions/wcj-general
|
6281 |
msgid "Cart contents"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
-
#: includes/functions/wcj-general
|
6285 |
msgid "Cart coupon"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
-
#: includes/functions/wcj-general
|
6289 |
msgid "Cart actions"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
-
#: includes/functions/wcj-general
|
6293 |
msgid "After cart contents"
|
6294 |
msgstr ""
|
6295 |
|
6296 |
-
#: includes/functions/wcj-general
|
6297 |
msgid "After cart table"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: includes/functions/wcj-general
|
6301 |
msgid "Cart collaterals"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: includes/functions/wcj-general
|
6305 |
msgid "After cart"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: includes/functions/wcj-general
|
6309 |
msgid "Before cart totals"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: includes/functions/wcj-general
|
6313 |
msgid "Cart totals: Before shipping"
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: includes/functions/wcj-general
|
6317 |
msgid "Cart totals: After shipping"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: includes/functions/wcj-general
|
6321 |
msgid "Cart totals: Before order total"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: includes/functions/wcj-general
|
6325 |
msgid "Cart totals: After order total"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
-
#: includes/functions/wcj-general
|
6329 |
msgid "Proceed to checkout"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
-
#: includes/functions/wcj-general
|
6333 |
msgid "After cart totals"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
-
#: includes/functions/wcj-general
|
6337 |
msgid "Before shipping calculator"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: includes/functions/wcj-general
|
6341 |
msgid "After shipping calculator"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: includes/functions/wcj-general
|
6345 |
msgid "If cart is empty"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: includes/functions/wcj-invoicing
|
6349 |
msgid "Invoice"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: includes/functions/wcj-invoicing
|
6353 |
msgid "Proforma Invoice"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: includes/functions/wcj-invoicing
|
6357 |
msgid "Packing Slip"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: includes/functions/wcj-invoicing
|
6361 |
msgid "Credit Note"
|
6362 |
msgstr ""
|
6363 |
|
6364 |
-
#: includes/functions/wcj-invoicing
|
6365 |
msgid "Custom Document"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: includes/functions/wcj-
|
6369 |
-
msgctxt "Order status"
|
6370 |
-
msgid "Pending Payment"
|
6371 |
-
msgstr ""
|
6372 |
-
|
6373 |
-
#: includes/functions/wcj-order-functions.php:141
|
6374 |
-
msgctxt "Order status"
|
6375 |
-
msgid "On Hold"
|
6376 |
-
msgstr ""
|
6377 |
-
|
6378 |
-
#: includes/functions/wcj-reports-functions.php:22
|
6379 |
msgid "Daily Total Sum"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
-
#: includes/functions/wcj-reports
|
6383 |
msgid "Daily Total Quantity"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
-
#: includes/functions/wcj-reports
|
6387 |
msgid "Item Title"
|
6388 |
msgstr ""
|
6389 |
|
6390 |
-
#: includes/functions/wcj-reports
|
6391 |
msgid "Quantity"
|
6392 |
msgstr ""
|
6393 |
|
6394 |
-
#: includes/functions/wcj-reports
|
6395 |
msgid "Sum"
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#: includes/functions/wcj-reports
|
6399 |
msgid "Last Sale Date"
|
6400 |
msgstr ""
|
6401 |
|
6402 |
-
#: includes/functions/wcj-reports
|
6403 |
msgid "Last Sale Order ID"
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#: includes/functions/wcj-reports
|
6407 |
msgid "Last Sale Order Status"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
-
#: includes/functions/wcj-reports
|
6411 |
msgid "Last 14 days"
|
6412 |
msgstr ""
|
6413 |
|
6414 |
-
#: includes/functions/wcj-reports
|
6415 |
msgid "Last 30 days"
|
6416 |
msgstr ""
|
6417 |
|
6418 |
-
#: includes/functions/wcj-reports
|
6419 |
msgid "Last 3 months"
|
6420 |
msgstr ""
|
6421 |
|
6422 |
-
#: includes/functions/wcj-reports
|
6423 |
msgid "Last 6 months"
|
6424 |
msgstr ""
|
6425 |
|
6426 |
-
#: includes/functions/wcj-reports
|
6427 |
msgid "Last 12 months"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
-
#: includes/functions/wcj-reports
|
6431 |
msgid "Last 24 months"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
-
#: includes/functions/wcj-reports
|
6435 |
msgid "Last 36 months"
|
6436 |
msgstr ""
|
6437 |
|
6438 |
-
#: includes/functions/wcj-reports
|
6439 |
msgid "Same days last month"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
-
#: includes/functions/wcj-reports
|
6443 |
msgid "Same days last year"
|
6444 |
msgstr ""
|
6445 |
|
6446 |
-
#: includes/functions/wcj-reports
|
6447 |
msgid "Last year"
|
6448 |
msgstr ""
|
6449 |
|
6450 |
-
#: includes/functions/wcj-reports
|
6451 |
msgid "Yesterday"
|
6452 |
msgstr ""
|
6453 |
|
6454 |
-
#: includes/functions/wcj-reports
|
6455 |
msgid "Today"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
-
#: includes/functions/wcj-
|
6459 |
-
#: includes/functions/wcj-
|
6460 |
msgid "Guest"
|
6461 |
msgstr ""
|
6462 |
|
@@ -6514,6 +6377,7 @@ msgid ""
|
|
6514 |
msgstr ""
|
6515 |
|
6516 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:108
|
|
|
6517 |
msgid "Minimum order amount"
|
6518 |
msgstr ""
|
6519 |
|
@@ -6626,11 +6490,11 @@ msgstr ""
|
|
6626 |
#: includes/settings/wcj-settings-checkout-files-upload.php:39
|
6627 |
#: includes/settings/wcj-settings-export.php:70
|
6628 |
#: includes/settings/wcj-settings-export.php:138
|
6629 |
-
#: includes/settings/wcj-settings-export.php:
|
6630 |
#: includes/settings/wcj-settings-global-discount.php:50
|
6631 |
#: includes/settings/wcj-settings-orders.php:96
|
6632 |
#: includes/settings/wcj-settings-product-by-user.php:149
|
6633 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
6634 |
#: includes/settings/wcj-settings-products-xml.php:71
|
6635 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
|
6636 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
|
@@ -6648,74 +6512,76 @@ msgstr ""
|
|
6648 |
|
6649 |
#: includes/input-fields/wcj-product-input-fields-options.php:32
|
6650 |
#: includes/settings/wcj-settings-cart-customization.php:50
|
6651 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6652 |
#: includes/settings/wcj-settings-more-button-labels.php:19
|
|
|
|
|
6653 |
msgid "Text"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
#: includes/input-fields/wcj-product-input-fields-options.php:33
|
6657 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6658 |
msgid "Textarea"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
#: includes/input-fields/wcj-product-input-fields-options.php:34
|
6662 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6663 |
msgid "Number"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
#: includes/input-fields/wcj-product-input-fields-options.php:35
|
6667 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6668 |
#: includes/settings/wcj-settings-product-addons.php:79
|
6669 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
|
6670 |
msgid "Checkbox"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
#: includes/input-fields/wcj-product-input-fields-options.php:37
|
6674 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6675 |
msgid "Datepicker"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
#: includes/input-fields/wcj-product-input-fields-options.php:38
|
6679 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6680 |
msgid "Weekpicker"
|
6681 |
msgstr ""
|
6682 |
|
6683 |
#: includes/input-fields/wcj-product-input-fields-options.php:39
|
6684 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6685 |
msgid "Timepicker"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
#: includes/input-fields/wcj-product-input-fields-options.php:40
|
6689 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6690 |
msgid "Select"
|
6691 |
msgstr ""
|
6692 |
|
6693 |
#: includes/input-fields/wcj-product-input-fields-options.php:41
|
6694 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6695 |
msgid "Radio"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
#: includes/input-fields/wcj-product-input-fields-options.php:42
|
6699 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6700 |
msgid "Password"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
#: includes/input-fields/wcj-product-input-fields-options.php:46
|
6704 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6705 |
msgid "Phone"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
#: includes/input-fields/wcj-product-input-fields-options.php:57
|
6709 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6710 |
#: includes/settings/wcj-settings-eu-vat-number.php:27
|
6711 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
6712 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
6713 |
msgid "Placeholder"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
#: includes/input-fields/wcj-product-input-fields-options.php:63
|
6717 |
#: includes/settings/wcj-settings-checkout-core-fields.php:72
|
6718 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6719 |
#: includes/settings/wcj-settings-checkout-files-upload.php:45
|
6720 |
#: includes/settings/wcj-settings-eu-vat-number.php:49
|
6721 |
#: includes/settings/wcj-settings-product-by-user.php:155
|
@@ -6751,12 +6617,12 @@ msgid "Checkbox: Default"
|
|
6751 |
msgstr ""
|
6752 |
|
6753 |
#: includes/input-fields/wcj-product-input-fields-options.php:104
|
6754 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6755 |
msgid "Not Checked"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
#: includes/input-fields/wcj-product-input-fields-options.php:105
|
6759 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6760 |
#: includes/settings/wcj-settings-checkout-customization.php:26
|
6761 |
msgid "Checked"
|
6762 |
msgstr ""
|
@@ -6799,7 +6665,7 @@ msgid ""
|
|
6799 |
msgstr ""
|
6800 |
|
6801 |
#: includes/input-fields/wcj-product-input-fields-options.php:126
|
6802 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6803 |
msgid "Leave blank to use your current WordPress format"
|
6804 |
msgstr ""
|
6805 |
|
@@ -6851,37 +6717,37 @@ msgid "Datepicker/Weekpicker: First week day"
|
|
6851 |
msgstr ""
|
6852 |
|
6853 |
#: includes/input-fields/wcj-product-input-fields-options.php:167
|
6854 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6855 |
msgid "Sunday"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
#: includes/input-fields/wcj-product-input-fields-options.php:168
|
6859 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6860 |
msgid "Monday"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
#: includes/input-fields/wcj-product-input-fields-options.php:169
|
6864 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6865 |
msgid "Tuesday"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
#: includes/input-fields/wcj-product-input-fields-options.php:170
|
6869 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6870 |
msgid "Wednesday"
|
6871 |
msgstr ""
|
6872 |
|
6873 |
#: includes/input-fields/wcj-product-input-fields-options.php:171
|
6874 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6875 |
msgid "Thursday"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
#: includes/input-fields/wcj-product-input-fields-options.php:172
|
6879 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6880 |
msgid "Friday"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
#: includes/input-fields/wcj-product-input-fields-options.php:173
|
6884 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6885 |
msgid "Saturday"
|
6886 |
msgstr ""
|
6887 |
|
@@ -6923,7 +6789,7 @@ msgid "If timepicker is selected, set interval (in minutes) here"
|
|
6923 |
msgstr ""
|
6924 |
|
6925 |
#: includes/input-fields/wcj-product-input-fields-options.php:200
|
6926 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6927 |
msgid "Timepicker: Interval"
|
6928 |
msgstr ""
|
6929 |
|
@@ -6932,86 +6798,86 @@ msgid "If select/radio is selected, set options here. One option per line"
|
|
6932 |
msgstr ""
|
6933 |
|
6934 |
#: includes/input-fields/wcj-product-input-fields-options.php:207
|
6935 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
6936 |
msgid "Select/Radio: Options"
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6940 |
msgid "Invoices successfully renumerated!"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6944 |
msgid "Please select at least one order status."
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6948 |
msgid "Booster - Renumerate Invoices"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6952 |
msgid ""
|
6953 |
"The tool renumerates invoices from choosen date. Invoice number format is "
|
6954 |
"set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
|
6955 |
"Numbering."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6959 |
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
|
6960 |
msgid "Start Date"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6964 |
msgid "Date to start renumerating. Leave blank to renumerate all invoices."
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6968 |
msgid "End Date"
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6972 |
msgid "Date to end renumerating. Leave blank to renumerate all invoices."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6976 |
msgid "Start Number"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6980 |
msgid ""
|
6981 |
"Counter to start renumerating. Leave 0 to continue from current counter."
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6985 |
msgid "Delete All"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6989 |
-
msgid "Clear all invoices before renumerating
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6993 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:121
|
6994 |
msgid "Document Type"
|
6995 |
msgstr ""
|
6996 |
|
6997 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
6998 |
msgid "Order Statuses"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
7002 |
msgid "Renumerate invoices"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
7006 |
msgid "Results"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
7010 |
#, php-format
|
7011 |
msgid "Total documents created: %d"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:
|
7015 |
#, php-format
|
7016 |
msgid "Total documents deleted: %d"
|
7017 |
msgstr ""
|
@@ -7220,61 +7086,65 @@ msgstr ""
|
|
7220 |
msgid "Currency rates deleted."
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7224 |
msgid "Days"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7228 |
msgid "Total Orders"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7232 |
msgid "Orders Average / Day"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7236 |
#: includes/reports/wcj-class-reports-sales.php:325
|
7237 |
msgid "Total Sum"
|
7238 |
msgstr ""
|
7239 |
|
7240 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7241 |
msgid "Total Sum (excl. TAX)"
|
7242 |
msgstr ""
|
7243 |
|
7244 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7245 |
msgid "Average / Order (excl. TAX)"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7249 |
msgid "Average / Day (excl. TAX)"
|
7250 |
msgstr ""
|
7251 |
|
7252 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7253 |
msgid "Currency Rates"
|
7254 |
msgstr ""
|
7255 |
|
7256 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7257 |
msgid "Orders by Currency"
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
|
|
|
|
|
|
|
|
7261 |
msgid "Totals"
|
7262 |
msgstr ""
|
7263 |
|
7264 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7265 |
msgid "Report currency"
|
7266 |
msgstr ""
|
7267 |
|
7268 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7269 |
#, php-format
|
7270 |
msgid "Report generated in: %s s"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7274 |
msgid "Save Currency Rates"
|
7275 |
msgstr ""
|
7276 |
|
7277 |
-
#: includes/reports/wcj-class-reports-monthly-sales.php:
|
7278 |
msgid "Reset Currency Rates"
|
7279 |
msgstr ""
|
7280 |
|
@@ -7461,13 +7331,11 @@ msgstr ""
|
|
7461 |
#: includes/settings/wcj-settings-add-to-cart.php:99
|
7462 |
#: includes/settings/wcj-settings-add-to-cart.php:117
|
7463 |
#: includes/settings/wcj-settings-general.php:167
|
7464 |
-
#: includes/settings/wcj-settings-order-quantities.php:21
|
7465 |
-
#: includes/settings/wcj-settings-order-quantities.php:70
|
7466 |
#: includes/settings/wcj-settings-product-images.php:19
|
7467 |
#: includes/settings/wcj-settings-product-images.php:95
|
7468 |
#: includes/settings/wcj-settings-shipping-calculator.php:69
|
7469 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
7470 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
7471 |
#: includes/settings/wcj-settings-sorting.php:20
|
7472 |
#: includes/settings/wcj-settings-sorting.php:99
|
7473 |
#: includes/settings/wcj-settings-sorting.php:123
|
@@ -7643,6 +7511,7 @@ msgstr ""
|
|
7643 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:16
|
7644 |
#: includes/settings/wcj-settings-checkout-customization.php:14
|
7645 |
#: includes/settings/wcj-settings-checkout-files-upload.php:17
|
|
|
7646 |
#: includes/settings/wcj-settings-custom-css.php:14
|
7647 |
#: includes/settings/wcj-settings-custom-js.php:14
|
7648 |
#: includes/settings/wcj-settings-empty-cart.php:14
|
@@ -7653,7 +7522,7 @@ msgstr ""
|
|
7653 |
#: includes/settings/wcj-settings-payment-gateways-icons.php:14
|
7654 |
#: includes/settings/wcj-settings-payment-gateways-per-category.php:18
|
7655 |
#: includes/settings/wcj-settings-price-by-user-role.php:14
|
7656 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
7657 |
#: includes/settings/wcj-settings-product-bookings.php:86
|
7658 |
#: includes/settings/wcj-settings-product-by-user-role.php:14
|
7659 |
#: includes/settings/wcj-settings-product-by-user.php:59
|
@@ -7901,7 +7770,7 @@ msgstr ""
|
|
7901 |
#: includes/settings/wcj-settings-emails-verification.php:14
|
7902 |
#: includes/settings/wcj-settings-multicurrency.php:17
|
7903 |
#: includes/settings/wcj-settings-offer-price.php:14
|
7904 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
7905 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:15
|
7906 |
#: includes/settings/wcj-settings-price-formats.php:15
|
7907 |
msgid "General Options"
|
@@ -7996,110 +7865,157 @@ msgid "Add All Fields to Customers Emails"
|
|
7996 |
msgstr ""
|
7997 |
|
7998 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:35
|
7999 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
8000 |
msgstr ""
|
8001 |
|
8002 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:42
|
8003 |
-
|
|
|
8004 |
msgstr ""
|
8005 |
|
8006 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8007 |
#: includes/settings/wcj-settings-product-input-fields.php:60
|
8008 |
msgid "Click Save changes after you change this number."
|
8009 |
msgstr ""
|
8010 |
|
8011 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8012 |
msgid "Custom Field"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8016 |
msgid "State"
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8020 |
msgid "Section"
|
8021 |
msgstr ""
|
8022 |
|
8023 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8024 |
#: includes/settings/wcj-settings-checkout-custom-info.php:55
|
8025 |
#: includes/settings/wcj-settings-empty-cart.php:58
|
8026 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:124
|
8027 |
msgid "Billing"
|
8028 |
msgstr ""
|
8029 |
|
8030 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8031 |
#: includes/settings/wcj-settings-eu-vat-number.php:63
|
8032 |
msgid "Class"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8036 |
#: includes/settings/wcj-settings-eu-vat-number.php:68
|
8037 |
msgid "Wide"
|
8038 |
msgstr ""
|
8039 |
|
8040 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8041 |
#: includes/settings/wcj-settings-eu-vat-number.php:69
|
8042 |
msgid "First"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8046 |
#: includes/settings/wcj-settings-eu-vat-number.php:70
|
8047 |
msgid "Last"
|
8048 |
msgstr ""
|
8049 |
|
8050 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
8051 |
msgid "One option per line"
|
8052 |
msgstr ""
|
8053 |
|
8054 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8055 |
msgid "Select: Use select2 Library"
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8059 |
msgid "Checkbox: Value for ON"
|
8060 |
msgstr ""
|
8061 |
|
8062 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8063 |
msgid "Checkbox: Value for OFF"
|
8064 |
msgstr ""
|
8065 |
|
8066 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8067 |
msgid "Checkbox: Default Value"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8071 |
msgid "Datepicker/Weekpicker: Date Format"
|
8072 |
msgstr ""
|
8073 |
|
8074 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8075 |
msgid ""
|
8076 |
"Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
|
8077 |
"target=\"_blank\">documentation on date and time formatting</a> for valid "
|
8078 |
"date formats"
|
8079 |
msgstr ""
|
8080 |
|
8081 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8082 |
msgid "Datepicker/Weekpicker: Min Date"
|
8083 |
msgstr ""
|
8084 |
|
8085 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8086 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8087 |
msgid "days"
|
8088 |
msgstr ""
|
8089 |
|
8090 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8091 |
msgid "Datepicker/Weekpicker: Max Date"
|
8092 |
msgstr ""
|
8093 |
|
8094 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8095 |
msgid "Datepicker/Weekpicker: Add Year Selector"
|
8096 |
msgstr ""
|
8097 |
|
8098 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8099 |
msgid "Datepicker/Weekpicker: Year Selector: Year Range"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8103 |
msgid ""
|
8104 |
"The range of years displayed in the year drop-down: either relative to "
|
8105 |
"today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
|
@@ -8108,60 +8024,60 @@ msgid ""
|
|
8108 |
"restrict which dates may be selected use the minDate and/or maxDate options."
|
8109 |
msgstr ""
|
8110 |
|
8111 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8112 |
msgid "Datepicker/Weekpicker: First Week Day"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8116 |
msgid "Timepicker: Time Format"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8120 |
msgid ""
|
8121 |
"Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
|
8122 |
"options page</a> for valid time formats"
|
8123 |
msgstr ""
|
8124 |
|
8125 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8126 |
msgid "minutes"
|
8127 |
msgstr ""
|
8128 |
|
8129 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8130 |
#: includes/settings/wcj-settings-product-listings.php:50
|
8131 |
msgid "Exclude Categories"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8135 |
msgid "Hide this field if there is a product of selected category in cart."
|
8136 |
msgstr ""
|
8137 |
|
8138 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8139 |
msgid "Include Categories"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8143 |
msgid ""
|
8144 |
"Show this field only if there is a product of selected category in cart."
|
8145 |
msgstr ""
|
8146 |
|
8147 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8148 |
#: includes/settings/wcj-settings-global-discount.php:137
|
8149 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
8150 |
#: includes/settings/wcj-settings-related-products.php:223
|
8151 |
msgid "Exclude Products"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8155 |
msgid "Hide this field if there is a selected product in cart."
|
8156 |
msgstr ""
|
8157 |
|
8158 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8159 |
#: includes/settings/wcj-settings-global-discount.php:126
|
8160 |
#: includes/settings/wcj-settings-related-products.php:212
|
8161 |
msgid "Include Products"
|
8162 |
msgstr ""
|
8163 |
|
8164 |
-
#: includes/settings/wcj-settings-checkout-custom-fields.php:
|
8165 |
msgid "Show this field only if there is a selected product in cart."
|
8166 |
msgstr ""
|
8167 |
|
@@ -8494,8 +8410,8 @@ msgid "Form Template Options"
|
|
8494 |
msgstr ""
|
8495 |
|
8496 |
#: includes/settings/wcj-settings-checkout-files-upload.php:249
|
8497 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
8498 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
8499 |
msgid "Before"
|
8500 |
msgstr ""
|
8501 |
|
@@ -8506,7 +8422,7 @@ msgstr ""
|
|
8506 |
#: includes/settings/wcj-settings-checkout-files-upload.php:264
|
8507 |
#: includes/settings/wcj-settings-export.php:68
|
8508 |
#: includes/settings/wcj-settings-export.php:136
|
8509 |
-
#: includes/settings/wcj-settings-export.php:
|
8510 |
msgid "Field"
|
8511 |
msgstr ""
|
8512 |
|
@@ -8515,11 +8431,84 @@ msgid "Replaced values: %field_html%, %button_html%."
|
|
8515 |
msgstr ""
|
8516 |
|
8517 |
#: includes/settings/wcj-settings-checkout-files-upload.php:272
|
8518 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
8519 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
8520 |
msgid "After"
|
8521 |
msgstr ""
|
8522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8523 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:18
|
8524 |
#, php-format
|
8525 |
msgid "%s till next update."
|
@@ -8629,7 +8618,7 @@ msgstr ""
|
|
8629 |
#: includes/settings/wcj-settings-currency-external-products.php:20
|
8630 |
#: includes/settings/wcj-settings-currency-per-product.php:163
|
8631 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:94
|
8632 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
8633 |
#: includes/settings/wcj-settings-price-by-country.php:225
|
8634 |
#: includes/settings/wcj-settings-price-formats.php:59
|
8635 |
msgid "Currency"
|
@@ -8735,7 +8724,7 @@ msgstr ""
|
|
8735 |
|
8736 |
#: includes/settings/wcj-settings-currency-per-product.php:121
|
8737 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:65
|
8738 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
8739 |
msgid "Currencies Options"
|
8740 |
msgstr ""
|
8741 |
|
@@ -8748,7 +8737,7 @@ msgstr ""
|
|
8748 |
|
8749 |
#: includes/settings/wcj-settings-currency-per-product.php:127
|
8750 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:70
|
8751 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
8752 |
msgid "Total Currencies"
|
8753 |
msgstr ""
|
8754 |
|
@@ -9002,45 +8991,62 @@ msgstr ""
|
|
9002 |
msgid "Validate"
|
9003 |
msgstr ""
|
9004 |
|
9005 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9006 |
msgid "Message on not valid"
|
9007 |
msgstr ""
|
9008 |
|
9009 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9010 |
msgid "First Validation Method"
|
9011 |
msgstr ""
|
9012 |
|
9013 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9014 |
msgid ""
|
9015 |
"Change this if you are having issues when validating VAT. This only selects "
|
9016 |
"first method to try - if not succeeded, remaining methods will be used for "
|
9017 |
"validation."
|
9018 |
msgstr ""
|
9019 |
|
9020 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9021 |
msgid "SOAP"
|
9022 |
msgstr ""
|
9023 |
|
9024 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9025 |
msgid "cURL"
|
9026 |
msgstr ""
|
9027 |
|
9028 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9029 |
msgid "Simple"
|
9030 |
msgstr ""
|
9031 |
|
9032 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9033 |
msgid "Exempt VAT for Valid Numbers"
|
9034 |
msgstr ""
|
9035 |
|
9036 |
-
#: includes/settings/wcj-settings-eu-vat-number.php:
|
9037 |
msgid "Preserve VAT in Base Country"
|
9038 |
msgstr ""
|
9039 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9040 |
#: includes/settings/wcj-settings-eu-vat-number.php:127
|
9041 |
msgid "Check for IP Location Country"
|
9042 |
msgstr ""
|
9043 |
|
|
|
|
|
|
|
|
|
|
|
|
|
9044 |
#: includes/settings/wcj-settings-eu-vat-number.php:151
|
9045 |
msgid "After order table"
|
9046 |
msgstr ""
|
@@ -9074,7 +9080,22 @@ msgid "Message on VAT validation server timeout etc."
|
|
9074 |
msgstr ""
|
9075 |
|
9076 |
#: includes/settings/wcj-settings-eu-vat-number.php:192
|
9077 |
-
msgid "Add EU VAT Number Summary
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9078 |
msgstr ""
|
9079 |
|
9080 |
#: includes/settings/wcj-settings-export.php:15
|
@@ -9082,7 +9103,7 @@ msgid "Export Options"
|
|
9082 |
msgstr ""
|
9083 |
|
9084 |
#: includes/settings/wcj-settings-export.php:20
|
9085 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
9086 |
msgid "CSV Separator"
|
9087 |
msgstr ""
|
9088 |
|
@@ -9104,9 +9125,9 @@ msgstr ""
|
|
9104 |
|
9105 |
#: includes/settings/wcj-settings-export.php:44
|
9106 |
#: includes/settings/wcj-settings-export.php:112
|
9107 |
-
#: includes/settings/wcj-settings-export.php:
|
9108 |
-
#: includes/settings/wcj-settings-export.php:
|
9109 |
-
#: includes/settings/wcj-settings-export.php:
|
9110 |
msgid "Hold \"Control\" key to select multiple fields."
|
9111 |
msgstr ""
|
9112 |
|
@@ -9115,7 +9136,7 @@ msgid "Additional Export Orders Fields"
|
|
9115 |
msgstr ""
|
9116 |
|
9117 |
#: includes/settings/wcj-settings-export.php:87
|
9118 |
-
#: includes/settings/wcj-settings-export.php:
|
9119 |
msgid "Order Shortcode"
|
9120 |
msgstr ""
|
9121 |
|
@@ -9141,74 +9162,79 @@ msgstr ""
|
|
9141 |
msgid "Additional Export Orders Items Fields"
|
9142 |
msgstr ""
|
9143 |
|
9144 |
-
#: includes/settings/wcj-settings-export.php:
|
9145 |
-
|
|
|
|
|
|
|
|
|
9146 |
msgid "Product Shortcode"
|
9147 |
msgstr ""
|
9148 |
|
9149 |
-
#: includes/settings/wcj-settings-export.php:
|
9150 |
msgid ""
|
9151 |
"If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
|
9152 |
"retrieve (can be custom field name)."
|
9153 |
msgstr ""
|
9154 |
|
9155 |
-
#: includes/settings/wcj-settings-export.php:
|
9156 |
msgid ""
|
9157 |
"If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
|
9158 |
msgstr ""
|
9159 |
|
9160 |
-
#: includes/settings/wcj-settings-export.php:
|
9161 |
msgid "Export Products Options"
|
9162 |
msgstr ""
|
9163 |
|
9164 |
-
#: includes/settings/wcj-settings-export.php:
|
9165 |
msgid "Export Products Fields"
|
9166 |
msgstr ""
|
9167 |
|
9168 |
-
#: includes/settings/wcj-settings-export.php:
|
9169 |
#: includes/settings/wcj-settings-free-price.php:14
|
|
|
9170 |
msgid "Variable Products"
|
9171 |
msgstr ""
|
9172 |
|
9173 |
-
#: includes/settings/wcj-settings-export.php:
|
9174 |
msgid "Export variable (main) product only"
|
9175 |
msgstr ""
|
9176 |
|
9177 |
-
#: includes/settings/wcj-settings-export.php:
|
9178 |
msgid "Export variation products only"
|
9179 |
msgstr ""
|
9180 |
|
9181 |
-
#: includes/settings/wcj-settings-export.php:
|
9182 |
msgid "Export variable (main) and variation products"
|
9183 |
msgstr ""
|
9184 |
|
9185 |
-
#: includes/settings/wcj-settings-export.php:
|
9186 |
msgid "Additional Export Products Fields"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
-
#: includes/settings/wcj-settings-export.php:
|
9190 |
msgid ""
|
9191 |
"If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
|
9192 |
"(can be custom field name)."
|
9193 |
msgstr ""
|
9194 |
|
9195 |
-
#: includes/settings/wcj-settings-export.php:
|
9196 |
msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
|
9197 |
msgstr ""
|
9198 |
|
9199 |
-
#: includes/settings/wcj-settings-export.php:
|
9200 |
msgid "Export Customers Options"
|
9201 |
msgstr ""
|
9202 |
|
9203 |
-
#: includes/settings/wcj-settings-export.php:
|
9204 |
msgid "Export Customers Fields"
|
9205 |
msgstr ""
|
9206 |
|
9207 |
-
#: includes/settings/wcj-settings-export.php:
|
9208 |
msgid "Export Customers from Orders Options"
|
9209 |
msgstr ""
|
9210 |
|
9211 |
-
#: includes/settings/wcj-settings-export.php:
|
9212 |
msgid "Export Customers from Orders Fields"
|
9213 |
msgstr ""
|
9214 |
|
@@ -9277,9 +9303,9 @@ msgstr ""
|
|
9277 |
#: includes/settings/wcj-settings-general.php:120
|
9278 |
#: includes/settings/wcj-settings-general.php:127
|
9279 |
#: includes/settings/wcj-settings-general.php:134
|
9280 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
9281 |
#: includes/settings/wcj-settings-price-by-user-role.php:56
|
9282 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
9283 |
#: includes/settings/wcj-settings-product-add-to-cart.php:131
|
9284 |
#: includes/settings/wcj-settings-product-open-pricing.php:80
|
9285 |
#: includes/settings/wcj-settings-sku.php:205
|
@@ -9292,11 +9318,6 @@ msgstr ""
|
|
9292 |
msgid "Product Revisions"
|
9293 |
msgstr ""
|
9294 |
|
9295 |
-
#: includes/settings/wcj-settings-general.php:76
|
9296 |
-
#: includes/settings/wcj-settings-product-custom-info.php:188
|
9297 |
-
msgid "Advanced Options"
|
9298 |
-
msgstr ""
|
9299 |
-
|
9300 |
#: includes/settings/wcj-settings-general.php:81
|
9301 |
msgid "Recalculate Cart Totals on Every Page Load"
|
9302 |
msgstr ""
|
@@ -9388,20 +9409,6 @@ msgstr ""
|
|
9388 |
msgid "Enabled for"
|
9389 |
msgstr ""
|
9390 |
|
9391 |
-
#: includes/settings/wcj-settings-general.php:221
|
9392 |
-
msgid "Coupons Options"
|
9393 |
-
msgstr ""
|
9394 |
-
|
9395 |
-
#: includes/settings/wcj-settings-general.php:226
|
9396 |
-
msgid "Generate Coupon Code Automatically"
|
9397 |
-
msgstr ""
|
9398 |
-
|
9399 |
-
#: includes/settings/wcj-settings-general.php:227
|
9400 |
-
msgid ""
|
9401 |
-
"When enabled, this will generate coupon code automatically when adding new "
|
9402 |
-
"coupon."
|
9403 |
-
msgstr ""
|
9404 |
-
|
9405 |
#: includes/settings/wcj-settings-global-discount.php:24
|
9406 |
msgid "Total Groups"
|
9407 |
msgstr ""
|
@@ -9713,32 +9720,43 @@ msgstr ""
|
|
9713 |
msgid "E.g.: %s"
|
9714 |
msgstr ""
|
9715 |
|
9716 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9717 |
msgid ""
|
9718 |
"One currency probably should be set to current (original) shop currency with "
|
9719 |
"an exchange rate of 1."
|
9720 |
msgstr ""
|
9721 |
|
9722 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
9723 |
msgid ""
|
9724 |
"Press Save changes after setting this option, so new settings fields will be "
|
9725 |
"added."
|
9726 |
msgstr ""
|
9727 |
|
9728 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
9729 |
msgid "Role Defaults"
|
9730 |
msgstr ""
|
9731 |
|
9732 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
9733 |
msgid "Roles"
|
9734 |
msgstr ""
|
9735 |
|
9736 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
9737 |
#: includes/settings/wcj-settings-wholesale-price.php:137
|
9738 |
msgid "Save settings after you change this option. Leave blank to disable."
|
9739 |
msgstr ""
|
9740 |
|
9741 |
-
#: includes/settings/wcj-settings-multicurrency.php:
|
9742 |
msgid "No default currency"
|
9743 |
msgstr ""
|
9744 |
|
@@ -9905,6 +9923,11 @@ msgid ""
|
|
9905 |
"change status to On-hold."
|
9906 |
msgstr ""
|
9907 |
|
|
|
|
|
|
|
|
|
|
|
9908 |
#: includes/settings/wcj-settings-order-custom-statuses.php:28
|
9909 |
msgid "Add All Statuses to Admin Order Bulk Actions"
|
9910 |
msgstr ""
|
@@ -10020,6 +10043,7 @@ msgid "Message on cart page"
|
|
10020 |
msgstr ""
|
10021 |
|
10022 |
#: includes/settings/wcj-settings-order-min-amount.php:62
|
|
|
10023 |
msgid "Advanced"
|
10024 |
msgstr ""
|
10025 |
|
@@ -10212,56 +10236,107 @@ msgid "Minimum Quantity Options"
|
|
10212 |
msgstr ""
|
10213 |
|
10214 |
#: includes/settings/wcj-settings-order-quantities.php:20
|
|
|
10215 |
msgid "Minimum Quantity"
|
10216 |
msgstr ""
|
10217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10218 |
#: includes/settings/wcj-settings-order-quantities.php:27
|
10219 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10220 |
msgid "Cart Total Quantity"
|
10221 |
msgstr ""
|
10222 |
|
10223 |
#: includes/settings/wcj-settings-order-quantities.php:28
|
10224 |
#: includes/settings/wcj-settings-order-quantities.php:44
|
10225 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10226 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
|
|
10227 |
msgid "Set to zero to disable."
|
10228 |
msgstr ""
|
10229 |
|
10230 |
#: includes/settings/wcj-settings-order-quantities.php:35
|
10231 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10232 |
msgid "Message - Cart Total Quantity"
|
10233 |
msgstr ""
|
10234 |
|
10235 |
#: includes/settings/wcj-settings-order-quantities.php:43
|
10236 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10237 |
msgid "Per Item Quantity"
|
10238 |
msgstr ""
|
10239 |
|
10240 |
#: includes/settings/wcj-settings-order-quantities.php:52
|
10241 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10242 |
msgid "Message - Per Item Quantity"
|
10243 |
msgstr ""
|
10244 |
|
10245 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10246 |
msgid "Maximum Quantity Options"
|
10247 |
msgstr ""
|
10248 |
|
10249 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
|
|
10250 |
msgid "Maximum Quantity"
|
10251 |
msgstr ""
|
10252 |
|
10253 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10254 |
msgid "Enable Cart Notices"
|
10255 |
msgstr ""
|
10256 |
|
10257 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10258 |
msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
|
10259 |
msgstr ""
|
10260 |
|
10261 |
-
#: includes/settings/wcj-settings-order-quantities.php:
|
10262 |
msgid "Will be redirected to cart page"
|
10263 |
msgstr ""
|
10264 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10265 |
#: includes/settings/wcj-settings-orders.php:14
|
10266 |
#: includes/settings/wcj-settings-orders.php:19
|
10267 |
msgid "Admin Order Currency"
|
@@ -10323,22 +10398,22 @@ msgid "Add column and filtering"
|
|
10323 |
msgstr ""
|
10324 |
|
10325 |
#: includes/settings/wcj-settings-orders.php:80
|
10326 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
10327 |
msgid "Custom Columns Total Number"
|
10328 |
msgstr ""
|
10329 |
|
10330 |
#: includes/settings/wcj-settings-orders.php:95
|
10331 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
10332 |
msgid "Custom Column"
|
10333 |
msgstr ""
|
10334 |
|
10335 |
#: includes/settings/wcj-settings-orders.php:97
|
10336 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
10337 |
msgid "Key:"
|
10338 |
msgstr ""
|
10339 |
|
10340 |
#: includes/settings/wcj-settings-orders.php:111
|
10341 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
10342 |
msgid "You can use shortcodes and/or HTML here."
|
10343 |
msgstr ""
|
10344 |
|
@@ -10391,7 +10466,7 @@ msgid "Columns Order"
|
|
10391 |
msgstr ""
|
10392 |
|
10393 |
#: includes/settings/wcj-settings-orders.php:191
|
10394 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
10395 |
msgid "Default columns order"
|
10396 |
msgstr ""
|
10397 |
|
@@ -10427,6 +10502,13 @@ msgstr ""
|
|
10427 |
msgid "Regenerate"
|
10428 |
msgstr ""
|
10429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10430 |
#: includes/settings/wcj-settings-payment-gateways-by-country.php:39
|
10431 |
msgid "Include Countries"
|
10432 |
msgstr ""
|
@@ -10486,10 +10568,6 @@ msgstr ""
|
|
10486 |
msgid "This section lets you set different currency for each payment gateway."
|
10487 |
msgstr ""
|
10488 |
|
10489 |
-
#: includes/settings/wcj-settings-payment-gateways-currency.php:44
|
10490 |
-
msgid "No changes"
|
10491 |
-
msgstr ""
|
10492 |
-
|
10493 |
#: includes/settings/wcj-settings-payment-gateways-fees.php:23
|
10494 |
msgid "Fee (or Discount) Title"
|
10495 |
msgstr ""
|
@@ -10500,6 +10578,7 @@ msgstr ""
|
|
10500 |
|
10501 |
#: includes/settings/wcj-settings-payment-gateways-fees.php:25
|
10502 |
#: includes/settings/wcj-settings-pdf-invoicing-header.php:36
|
|
|
10503 |
#: includes/settings/wcj-settings-purchase-data.php:67
|
10504 |
msgid "Leave blank to disable"
|
10505 |
msgstr ""
|
@@ -10877,38 +10956,6 @@ msgstr ""
|
|
10877 |
msgid "Header Margin"
|
10878 |
msgstr ""
|
10879 |
|
10880 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:87
|
10881 |
-
msgid "PDF Invoicing Header General Options"
|
10882 |
-
msgstr ""
|
10883 |
-
|
10884 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:92
|
10885 |
-
msgid "Default Images Directory"
|
10886 |
-
msgstr ""
|
10887 |
-
|
10888 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:93
|
10889 |
-
msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
|
10890 |
-
msgstr ""
|
10891 |
-
|
10892 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:94
|
10893 |
-
msgid "Try changing this if you have issues displaying image in header."
|
10894 |
-
msgstr ""
|
10895 |
-
|
10896 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:99
|
10897 |
-
msgid "Empty"
|
10898 |
-
msgstr ""
|
10899 |
-
|
10900 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:100
|
10901 |
-
msgid "TCPDF Default"
|
10902 |
-
msgstr ""
|
10903 |
-
|
10904 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:101
|
10905 |
-
msgid "ABSPATH"
|
10906 |
-
msgstr ""
|
10907 |
-
|
10908 |
-
#: includes/settings/wcj-settings-pdf-invoicing-header.php:102
|
10909 |
-
msgid "DOCUMENT_ROOT"
|
10910 |
-
msgstr ""
|
10911 |
-
|
10912 |
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:29
|
10913 |
msgid "Counter"
|
10914 |
msgstr ""
|
@@ -10923,12 +10970,17 @@ msgstr ""
|
|
10923 |
msgid "Prefix"
|
10924 |
msgstr ""
|
10925 |
|
10926 |
-
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:
|
10927 |
#: includes/settings/wcj-settings-sku.php:71
|
10928 |
#: includes/settings/wcj-settings-sku.php:128
|
10929 |
msgid "Suffix"
|
10930 |
msgstr ""
|
10931 |
|
|
|
|
|
|
|
|
|
|
|
10932 |
#: includes/settings/wcj-settings-pdf-invoicing-page.php:22
|
10933 |
msgid "Page Orientation"
|
10934 |
msgstr ""
|
@@ -10961,6 +11013,17 @@ msgstr ""
|
|
10961 |
msgid "Margin Bottom"
|
10962 |
msgstr ""
|
10963 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10964 |
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:19
|
10965 |
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:37
|
10966 |
msgid "Font Family"
|
@@ -10979,44 +11042,44 @@ msgstr ""
|
|
10979 |
msgid "Make Font Shadowed"
|
10980 |
msgstr ""
|
10981 |
|
10982 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
10983 |
msgid "Fonts download is disabled."
|
10984 |
msgstr ""
|
10985 |
|
10986 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
10987 |
msgid "Fonts are up to date."
|
10988 |
msgstr ""
|
10989 |
|
10990 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
10991 |
#, php-format
|
10992 |
msgid "Latest successful download or version check was on %s."
|
10993 |
msgstr ""
|
10994 |
|
10995 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
10996 |
msgid ""
|
10997 |
"Fonts are NOT up to date. Please try downloading by pressing the button "
|
10998 |
"below."
|
10999 |
msgstr ""
|
11000 |
|
11001 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
11002 |
#, php-format
|
11003 |
msgid "Latest successful downloaded version is %s."
|
11004 |
msgstr ""
|
11005 |
|
11006 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
11007 |
#, php-format
|
11008 |
msgid "Latest download executed on %s."
|
11009 |
msgstr ""
|
11010 |
|
11011 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
11012 |
msgid "Fonts Manager"
|
11013 |
msgstr ""
|
11014 |
|
11015 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
11016 |
msgid "Re-download"
|
11017 |
msgstr ""
|
11018 |
|
11019 |
-
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:
|
11020 |
msgid "Disable Fonts Download"
|
11021 |
msgstr ""
|
11022 |
|
@@ -11075,23 +11138,57 @@ msgstr ""
|
|
11075 |
msgid "Hide Disabled Docs Settings"
|
11076 |
msgstr ""
|
11077 |
|
11078 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
11079 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11080 |
msgstr ""
|
11081 |
|
11082 |
#: includes/settings/wcj-settings-pdf-invoicing.php:89
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11083 |
msgid "Reports Filename"
|
11084 |
msgstr ""
|
11085 |
|
11086 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
11087 |
msgid "CSV UTF-8 BOM"
|
11088 |
msgstr ""
|
11089 |
|
11090 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
11091 |
msgid "Replace Periods with Commas in CSV Data"
|
11092 |
msgstr ""
|
11093 |
|
11094 |
-
#: includes/settings/wcj-settings-pdf-invoicing.php:
|
11095 |
msgid "Replace"
|
11096 |
msgstr ""
|
11097 |
|
@@ -11324,26 +11421,26 @@ msgstr ""
|
|
11324 |
msgid "Disable Price by User Role for Bots"
|
11325 |
msgstr ""
|
11326 |
|
11327 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11328 |
msgid "Roles & Multipliers"
|
11329 |
msgstr ""
|
11330 |
|
11331 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11332 |
msgid "Disable Price by User Role for Products on Sale"
|
11333 |
msgstr ""
|
11334 |
|
11335 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11336 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11337 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:99
|
11338 |
msgid "Make Empty Price"
|
11339 |
msgstr ""
|
11340 |
|
11341 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11342 |
msgid "Price by User Role by Products Categories"
|
11343 |
msgstr ""
|
11344 |
|
11345 |
-
#: includes/settings/wcj-settings-price-by-user-role.php:
|
11346 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
11347 |
#: includes/settings/wcj-settings-shipping.php:51
|
11348 |
msgid ""
|
11349 |
"Save module's settings after changing this option to see new settings fields."
|
@@ -11736,83 +11833,83 @@ msgstr ""
|
|
11736 |
msgid "Select Box"
|
11737 |
msgstr ""
|
11738 |
|
11739 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11740 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11741 |
msgid "Label(s)"
|
11742 |
msgstr ""
|
11743 |
|
11744 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11745 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11746 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11747 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11748 |
msgid "For radio and select enter one value per line."
|
11749 |
msgstr ""
|
11750 |
|
11751 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11752 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11753 |
msgid "Price(s)"
|
11754 |
msgstr ""
|
11755 |
|
11756 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11757 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11758 |
msgid "Tooltip(s)"
|
11759 |
msgstr ""
|
11760 |
|
11761 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11762 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11763 |
msgid "For radio enter one value per line."
|
11764 |
msgstr ""
|
11765 |
|
11766 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11767 |
#: includes/settings/wcj-settings-purchase-data.php:83
|
11768 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11769 |
msgid "Default Value"
|
11770 |
msgstr ""
|
11771 |
|
11772 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11773 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11774 |
msgid ""
|
11775 |
"For checkbox use 'checked'; for radio and select enter default label. Leave "
|
11776 |
"blank for no default value."
|
11777 |
msgstr ""
|
11778 |
|
11779 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11780 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
11781 |
msgid "For \"Select Box\" type only."
|
11782 |
msgstr ""
|
11783 |
|
11784 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11785 |
#: includes/settings/wcj-settings-product-by-user.php:45
|
11786 |
msgid "Is Required"
|
11787 |
msgstr ""
|
11788 |
|
11789 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11790 |
msgid "Enable AJAX on Single Product Page"
|
11791 |
msgstr ""
|
11792 |
|
11793 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11794 |
msgid "Addon in Cart Format"
|
11795 |
msgstr ""
|
11796 |
|
11797 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11798 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11799 |
msgid "Each Addon"
|
11800 |
msgstr ""
|
11801 |
|
11802 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11803 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11804 |
msgid "You can use %addon_label% and %addon_price%."
|
11805 |
msgstr ""
|
11806 |
|
11807 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11808 |
msgid "Addon in Order Details Table Format"
|
11809 |
msgstr ""
|
11810 |
|
11811 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11812 |
msgid "Admin Order Page"
|
11813 |
msgstr ""
|
11814 |
|
11815 |
-
#: includes/settings/wcj-settings-product-addons.php:
|
11816 |
msgid "Hide all addons"
|
11817 |
msgstr ""
|
11818 |
|
@@ -12636,68 +12733,99 @@ msgid "Show products if no categories are displayed on category page"
|
|
12636 |
msgstr ""
|
12637 |
|
12638 |
#: includes/settings/wcj-settings-product-listings.php:124
|
12639 |
-
|
|
|
12640 |
msgstr ""
|
12641 |
|
12642 |
#: includes/settings/wcj-settings-product-listings.php:126
|
12643 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12644 |
"If you want to display part of your products including TAX and another part "
|
12645 |
"excluding TAX, you can set it here."
|
12646 |
msgstr ""
|
12647 |
|
12648 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12649 |
msgid "Products - Including TAX"
|
12650 |
msgstr ""
|
12651 |
|
12652 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12653 |
msgid "Select products to display including TAX."
|
12654 |
msgstr ""
|
12655 |
|
12656 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12657 |
msgid "Products - Excluding TAX"
|
12658 |
msgstr ""
|
12659 |
|
12660 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12661 |
msgid "Select products to display excluding TAX."
|
12662 |
msgstr ""
|
12663 |
|
12664 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12665 |
msgid "Product Categories - Including TAX"
|
12666 |
msgstr ""
|
12667 |
|
12668 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12669 |
msgid "Select product categories to display including TAX."
|
12670 |
msgstr ""
|
12671 |
|
12672 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12673 |
msgid "Product Categories - Excluding TAX"
|
12674 |
msgstr ""
|
12675 |
|
12676 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12677 |
msgid "Select product categories to display excluding TAX."
|
12678 |
msgstr ""
|
12679 |
|
12680 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12681 |
msgid "TAX Display in the Shop - by User Role"
|
12682 |
msgstr ""
|
12683 |
|
12684 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12685 |
msgid ""
|
12686 |
"If you want to display prices including TAX or excluding TAX for different "
|
12687 |
"user roles, you can set it here."
|
12688 |
msgstr ""
|
12689 |
|
12690 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12691 |
msgid "TAX Display by User Role"
|
12692 |
msgstr ""
|
12693 |
|
12694 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12695 |
msgid ""
|
12696 |
"Save changes after you change this option and new settings fields will "
|
12697 |
"appear."
|
12698 |
msgstr ""
|
12699 |
|
12700 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12701 |
#, php-format
|
12702 |
msgid ""
|
12703 |
"Select user roles that you want to change tax display for. For all remaining "
|
@@ -12705,32 +12833,32 @@ msgid ""
|
|
12705 |
"applied."
|
12706 |
msgstr ""
|
12707 |
|
12708 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12709 |
msgid "WooCommerce > Settings > Tax"
|
12710 |
msgstr ""
|
12711 |
|
12712 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12713 |
#, php-format
|
12714 |
msgid "Role: %s"
|
12715 |
msgstr ""
|
12716 |
|
12717 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12718 |
msgid "Default TAX display (no changes)"
|
12719 |
msgstr ""
|
12720 |
|
12721 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12722 |
msgid "Including tax"
|
12723 |
msgstr ""
|
12724 |
|
12725 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12726 |
msgid "Excluding tax"
|
12727 |
msgstr ""
|
12728 |
|
12729 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12730 |
msgid "Admin Products List - Custom Columns"
|
12731 |
msgstr ""
|
12732 |
|
12733 |
-
#: includes/settings/wcj-settings-product-listings.php:
|
12734 |
msgid "Admin Products List - Columns Order"
|
12735 |
msgstr ""
|
12736 |
|
@@ -13488,6 +13616,26 @@ msgstr ""
|
|
13488 |
msgid "View report"
|
13489 |
msgstr ""
|
13490 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13491 |
#: includes/settings/wcj-settings-shipping-calculator.php:14
|
13492 |
msgid "Shipping Calculator Options"
|
13493 |
msgstr ""
|
@@ -13561,7 +13709,7 @@ msgid "Hide when free is available"
|
|
13561 |
msgstr ""
|
13562 |
|
13563 |
#: includes/settings/wcj-settings-shipping-options.php:46
|
13564 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13565 |
msgid "Free Shipping by Product"
|
13566 |
msgstr ""
|
13567 |
|
@@ -13571,26 +13719,31 @@ msgid ""
|
|
13571 |
"to cart."
|
13572 |
msgstr ""
|
13573 |
|
13574 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
|
|
|
|
|
|
|
|
|
|
13575 |
msgid ""
|
13576 |
"Select either <strong>all products</strong> or <strong>at least one product</"
|
13577 |
"strong> in cart must grant free shipping."
|
13578 |
msgstr ""
|
13579 |
|
13580 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13581 |
msgid "All products in cart must grant free shipping"
|
13582 |
msgstr ""
|
13583 |
|
13584 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13585 |
msgid "At least one product in cart must grant free shipping"
|
13586 |
msgstr ""
|
13587 |
|
13588 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13589 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13590 |
msgid "Shipping Descriptions"
|
13591 |
msgstr ""
|
13592 |
|
13593 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13594 |
#, php-format
|
13595 |
msgid ""
|
13596 |
"This section will allow you to add any text (e.g. description) for shipping "
|
@@ -13598,64 +13751,64 @@ msgid ""
|
|
13598 |
"tags here, e.g. try \"%s\""
|
13599 |
msgstr ""
|
13600 |
|
13601 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13602 |
msgid "Description Visibility"
|
13603 |
msgstr ""
|
13604 |
|
13605 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13606 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13607 |
msgid "On both cart and checkout pages"
|
13608 |
msgstr ""
|
13609 |
|
13610 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13611 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13612 |
msgid "Only on cart page"
|
13613 |
msgstr ""
|
13614 |
|
13615 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13616 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13617 |
msgid "Only on checkout page"
|
13618 |
msgstr ""
|
13619 |
|
13620 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13621 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13622 |
msgid ""
|
13623 |
"Possible values: on both cart and checkout pages; only on cart page; only on "
|
13624 |
"checkout page"
|
13625 |
msgstr ""
|
13626 |
|
13627 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13628 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13629 |
msgid "Shipping Icons"
|
13630 |
msgstr ""
|
13631 |
|
13632 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13633 |
msgid ""
|
13634 |
"This section will allow you to add icons for shipping method. Icons will be "
|
13635 |
"visible on cart and checkout pages."
|
13636 |
msgstr ""
|
13637 |
|
13638 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13639 |
msgid "Icon Position"
|
13640 |
msgstr ""
|
13641 |
|
13642 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13643 |
msgid "Before label"
|
13644 |
msgstr ""
|
13645 |
|
13646 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13647 |
msgid "After label"
|
13648 |
msgstr ""
|
13649 |
|
13650 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13651 |
msgid "Icon Visibility"
|
13652 |
msgstr ""
|
13653 |
|
13654 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13655 |
msgid "Icon Style"
|
13656 |
msgstr ""
|
13657 |
|
13658 |
-
#: includes/settings/wcj-settings-shipping-options.php:
|
13659 |
msgid ""
|
13660 |
"You can also style icons with CSS class \"wcj_shipping_icon\", or id "
|
13661 |
"\"wcj_shipping_icon_method_id\""
|
@@ -13750,10 +13903,6 @@ msgstr ""
|
|
13750 |
msgid "SKU suffix."
|
13751 |
msgstr ""
|
13752 |
|
13753 |
-
#: includes/settings/wcj-settings-sku.php:78
|
13754 |
-
msgid "Template"
|
13755 |
-
msgstr ""
|
13756 |
-
|
13757 |
#: includes/settings/wcj-settings-sku.php:79
|
13758 |
msgid "SKU template."
|
13759 |
msgstr ""
|
@@ -14092,10 +14241,6 @@ msgstr ""
|
|
14092 |
msgid "If show discount info on cart page is enabled, set format here"
|
14093 |
msgstr ""
|
14094 |
|
14095 |
-
#: includes/settings/wcj-settings-wholesale-price.php:50
|
14096 |
-
msgid "Replaced values: %old_price%, %price%, %discount_value%."
|
14097 |
-
msgstr ""
|
14098 |
-
|
14099 |
#: includes/settings/wcj-settings-wholesale-price.php:57
|
14100 |
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
|
14101 |
msgid "Discount Type"
|
@@ -14197,6 +14342,11 @@ msgstr ""
|
|
14197 |
msgid "Leave blank to use global value."
|
14198 |
msgstr ""
|
14199 |
|
|
|
|
|
|
|
|
|
|
|
14200 |
#: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
|
14201 |
msgid "Save order after you change this field."
|
14202 |
msgstr ""
|
@@ -14235,7 +14385,7 @@ msgstr ""
|
|
14235 |
msgid "Save product after you change this number."
|
14236 |
msgstr ""
|
14237 |
|
14238 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:
|
14239 |
msgid "Is required"
|
14240 |
msgstr ""
|
14241 |
|
@@ -14287,14 +14437,6 @@ msgstr ""
|
|
14287 |
msgid "Hide Image on Archives"
|
14288 |
msgstr ""
|
14289 |
|
14290 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
|
14291 |
-
msgid "Min Price"
|
14292 |
-
msgstr ""
|
14293 |
-
|
14294 |
-
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
|
14295 |
-
msgid "Max Price"
|
14296 |
-
msgstr ""
|
14297 |
-
|
14298 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
|
14299 |
msgid ""
|
14300 |
"'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
|
@@ -14432,7 +14574,7 @@ msgstr ""
|
|
14432 |
msgid "Enable Custom Shipping"
|
14433 |
msgstr ""
|
14434 |
|
14435 |
-
#: includes/shortcodes/class-wcj-general-shortcodes.php:
|
14436 |
#: includes/shortcodes/class-wcj-shortcodes.php:107
|
14437 |
#, php-format
|
14438 |
msgid "\"%s\" module is not enabled!"
|
@@ -14442,7 +14584,7 @@ msgstr ""
|
|
14442 |
msgid "Attribute \"name\" is required!"
|
14443 |
msgstr ""
|
14444 |
|
14445 |
-
#: includes/shortcodes/class-wcj-order-items-shortcodes.php:
|
14446 |
msgid "Standard"
|
14447 |
msgstr ""
|
14448 |
|
@@ -14531,6 +14673,101 @@ msgstr ""
|
|
14531 |
msgid "Current standard tax rates"
|
14532 |
msgstr ""
|
14533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14534 |
#: includes/widgets/class-wcj-widget-country-switcher.php:27
|
14535 |
msgid "Booster - Country Switcher"
|
14536 |
msgstr ""
|
8 |
#, fuzzy
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
+
"Project-Id-Version: Booster for WooCommerce 3.2.3\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
13 |
"jetpack\n"
|
14 |
+
"POT-Creation-Date: 2017-12-03 17:52+0200\n"
|
15 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
16 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
17 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
69 |
msgid "Unlock all"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: woocommerce-jetpack.php:510
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"<strong>Booster for WooCommerce</strong> plugin was successfully updated to "
|
126 |
|
127 |
#: includes/class-wcj-admin-bar.php:170
|
128 |
#: includes/admin/class-wc-settings-jetpack.php:406
|
129 |
+
#: includes/classes/class-wcj-module.php:645
|
130 |
msgid "Documentation"
|
131 |
msgstr ""
|
132 |
|
133 |
#: includes/class-wcj-admin-bar.php:212
|
134 |
#: includes/admin/class-wc-settings-jetpack.php:138
|
135 |
+
#: includes/admin/wcj-modules-cats.php:13
|
136 |
msgid "Dashboard"
|
137 |
msgstr ""
|
138 |
|
145 |
|
146 |
#: includes/class-wcj-admin-bar.php:237 includes/class-wcj-admin-bar.php:274
|
147 |
#: includes/class-wcj-admin-bar.php:585
|
148 |
+
#: includes/classes/class-wcj-module.php:478
|
149 |
#: includes/settings/wcj-settings-wpml.php:15
|
150 |
msgid "Tools"
|
151 |
msgstr ""
|
155 |
msgstr ""
|
156 |
|
157 |
#: includes/class-wcj-admin-bar.php:262
|
158 |
+
#: includes/class-wcj-checkout-files-upload.php:145
|
159 |
#: includes/class-wcj-eu-vat-number.php:86
|
160 |
#: includes/class-wcj-payment-gateways.php:75
|
161 |
#: includes/class-wcj-track-users.php:117
|
162 |
#: includes/class-wcj-track-users.php:213
|
163 |
#: includes/admin/class-wc-settings-jetpack.php:24
|
164 |
#: includes/admin/class-wc-settings-jetpack.php:213
|
165 |
+
#: includes/classes/class-wcj-module.php:295
|
166 |
+
#: includes/classes/class-wcj-module.php:505
|
167 |
msgid "Booster"
|
168 |
msgstr ""
|
169 |
|
192 |
msgstr ""
|
193 |
|
194 |
#: includes/class-wcj-admin-bar.php:304 includes/class-wcj-track-users.php:34
|
195 |
+
#: includes/functions/wcj-functions-reports.php:62
|
196 |
msgid "Last 7 days"
|
197 |
msgstr ""
|
198 |
|
199 |
#: includes/class-wcj-admin-bar.php:308
|
200 |
+
#: includes/functions/wcj-functions-reports.php:57
|
201 |
msgid "This month"
|
202 |
msgstr ""
|
203 |
|
204 |
#: includes/class-wcj-admin-bar.php:312
|
205 |
+
#: includes/functions/wcj-functions-reports.php:52
|
206 |
msgid "Last month"
|
207 |
msgstr ""
|
208 |
|
209 |
#: includes/class-wcj-admin-bar.php:316
|
210 |
+
#: includes/functions/wcj-functions-reports.php:47
|
211 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:111
|
212 |
msgid "Year"
|
213 |
msgstr ""
|
290 |
#: includes/class-wcj-product-bulk-meta-editor.php:263
|
291 |
#: includes/class-wcj-product-by-user.php:96
|
292 |
#: includes/class-wcj-product-by-user.php:132
|
293 |
+
#: includes/class-wcj-shipping-by-products.php:32
|
294 |
+
#: includes/admin/wcj-modules-cats.php:58
|
295 |
+
#: includes/settings/wcj-settings-shipping-options.php:62
|
296 |
msgid "Products"
|
297 |
msgstr ""
|
298 |
|
304 |
#: includes/class-wcj-product-bulk-price-converter.php:149
|
305 |
#: includes/class-wcj-sku.php:335
|
306 |
#: includes/export/class-wcj-fields-helper.php:318
|
307 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:129
|
308 |
#: includes/settings/wcj-settings-product-by-user.php:19
|
309 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:185
|
310 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:406
|
332 |
msgstr ""
|
333 |
|
334 |
#: includes/class-wcj-admin-bar.php:465 includes/class-wcj-admin-bar.php:473
|
335 |
+
#: includes/class-wcj-general.php:24 includes/class-wcj-pdf-invoicing.php:24
|
336 |
#: includes/settings/wcj-settings-related-products.php:38
|
337 |
msgid "General"
|
338 |
msgstr ""
|
363 |
msgstr ""
|
364 |
|
365 |
#: includes/class-wcj-admin-bar.php:505
|
366 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:170
|
367 |
#: includes/settings/wcj-settings-checkout-custom-info.php:56
|
368 |
#: includes/settings/wcj-settings-empty-cart.php:59
|
369 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:125
|
408 |
msgstr ""
|
409 |
|
410 |
#: includes/class-wcj-admin-bar.php:549
|
411 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:172
|
412 |
msgid "Account"
|
413 |
msgstr ""
|
414 |
|
468 |
msgstr ""
|
469 |
|
470 |
#: includes/class-wcj-admin-tools.php:69
|
471 |
+
#: includes/settings/wcj-settings-export.php:157
|
472 |
+
#: includes/settings/wcj-settings-export.php:236
|
473 |
msgid "Product Meta"
|
474 |
msgstr ""
|
475 |
|
479 |
msgid "Order Meta"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/class-wcj-admin-tools.php:120
|
483 |
msgid "Order Items Meta"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/class-wcj-admin-tools.php:122
|
487 |
+
msgid "Item Key"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/class-wcj-admin-tools.php:122
|
491 |
+
msgid "Item Meta Key"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/class-wcj-admin-tools.php:122
|
495 |
+
msgid "Item Meta Value"
|
496 |
msgstr ""
|
497 |
|
498 |
#: includes/class-wcj-admin-tools.php:148
|
499 |
+
msgid "Delete Log"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/class-wcj-admin-tools.php:151
|
503 |
#, php-format
|
504 |
msgid "Now: %s"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/class-wcj-admin-tools.php:181
|
508 |
msgid "NOT DEFINED"
|
509 |
msgstr ""
|
510 |
|
615 |
msgid "File is required!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/class-wcj-checkout-files-upload.php:121
|
619 |
+
#: includes/class-wcj-checkout-files-upload.php:127
|
620 |
+
#: includes/class-wcj-checkout-files-upload.php:285
|
621 |
+
#: includes/class-wcj-checkout-files-upload.php:292
|
622 |
#: includes/settings/wcj-settings-checkout-files-upload.php:115
|
623 |
#, php-format
|
624 |
msgid "Wrong file type: \"%s\"!"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/class-wcj-checkout-files-upload.php:145
|
628 |
msgid "Uploaded Files"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/class-wcj-checkout-files-upload.php:177
|
632 |
msgid "No files uploaded."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/class-wcj-checkout-files-upload.php:257
|
636 |
+
#: includes/class-wcj-checkout-files-upload.php:265
|
637 |
#: includes/settings/wcj-settings-checkout-files-upload.php:145
|
638 |
#, php-format
|
639 |
msgid "File \"%s\" was successfully removed."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: includes/class-wcj-checkout-files-upload.php:302
|
643 |
#: includes/settings/wcj-settings-checkout-files-upload.php:130
|
644 |
#, php-format
|
645 |
msgid "File \"%s\" was successfully uploaded."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/class-wcj-checkout-files-upload.php:310
|
649 |
#: includes/settings/wcj-settings-checkout-files-upload.php:137
|
650 |
msgid "Please select file to upload!"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/class-wcj-checkout-files-upload.php:524
|
654 |
+
#: includes/class-wcj-checkout-files-upload.php:525
|
655 |
#: includes/settings/wcj-settings-checkout-files-upload.php:100
|
656 |
msgid "Upload"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/class-wcj-checkout-files-upload.php:533
|
660 |
+
#: includes/class-wcj-checkout-files-upload.php:534
|
661 |
#: includes/settings/wcj-settings-checkout-files-upload.php:107
|
662 |
#: includes/settings/wcj-settings-sorting.php:144
|
663 |
msgid "Remove"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/class-wcj-coupon-code-generator.php:28
|
667 |
+
msgid "Coupon Code Generator"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: includes/class-wcj-coupon-code-generator.php:29
|
671 |
+
msgid "WooCommerce coupon code generator."
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
#: includes/class-wcj-crowdfunding.php:24
|
675 |
msgid "Crowdfunding"
|
676 |
msgstr ""
|
745 |
msgid "Display prices for WooCommerce products in different currencies."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/class-wcj-currency-per-product.php:169
|
749 |
#: includes/settings/wcj-settings-currency-per-product.php:43
|
750 |
msgid ""
|
751 |
"Only one product can be added to the cart. Clear the cart or finish the "
|
752 |
"order, before adding another product to the cart."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/class-wcj-currency-per-product.php:184
|
756 |
#: includes/settings/wcj-settings-currency-per-product.php:50
|
757 |
msgid ""
|
758 |
"Only products with same currency can be added to the cart. Clear the cart or "
|
759 |
"finish the order, before adding products with another currency to the cart."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/class-wcj-currency-per-product.php:230
|
763 |
#, php-format
|
764 |
msgctxt "Price range: from-to"
|
765 |
msgid "%1$s–%2$s"
|
926 |
msgstr ""
|
927 |
|
928 |
#: includes/class-wcj-empty-cart-button.php:25
|
929 |
+
#: includes/shortcodes/class-wcj-general-shortcodes.php:220
|
930 |
msgid "Empty Cart Button"
|
931 |
msgstr ""
|
932 |
|
991 |
msgstr ""
|
992 |
|
993 |
#: includes/class-wcj-eu-vat-number.php:404
|
994 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:83
|
995 |
msgid "<strong>EU VAT Number</strong> is not valid."
|
996 |
msgstr ""
|
997 |
|
1102 |
msgid "Free!"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/class-wcj-general.php:25
|
1106 |
msgid "Custom roles tool. Shortcodes in WordPress text widgets."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/class-wcj-general.php:31
|
1110 |
msgid "Products Attributes"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/class-wcj-general.php:32
|
1114 |
msgid "All Products and All Attributes."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/class-wcj-general.php:35
|
1118 |
msgid "Add/Manage Custom Roles"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/class-wcj-general.php:36
|
1122 |
msgid "Custom Roles"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/class-wcj-general.php:37
|
1126 |
msgid "Manage Custom Roles."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/class-wcj-general.php:110
|
1130 |
msgid "Booster User Role"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/class-wcj-general.php:174
|
1134 |
msgid "Both fields are required!"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/class-wcj-general.php:177
|
1138 |
msgid "Role ID must not be numbers only!"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/class-wcj-general.php:181
|
1142 |
msgid "Role successfully added!"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/class-wcj-general.php:183
|
1146 |
msgid "Role already exists!"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/class-wcj-general.php:191
|
1150 |
#, php-format
|
1151 |
msgid "Role %s successfully deleted!"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/class-wcj-general.php:197 includes/class-wcj-general.php:210
|
1155 |
#: includes/class-wcj-sku.php:333
|
1156 |
#: includes/reports/wcj-class-reports-sales.php:191
|
1157 |
#: includes/settings/wcj-settings-order-numbers.php:123
|
1160 |
msgid "ID"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/class-wcj-general.php:197 includes/class-wcj-general.php:211
|
1164 |
#: includes/class-wcj-offer-price.php:116
|
1165 |
#: includes/export/class-wcj-fields-helper.php:282
|
1166 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:70
|
1168 |
msgid "Name"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/class-wcj-general.php:197
|
|
|
1172 |
#: includes/class-wcj-product-by-user.php:197
|
1173 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:117
|
1174 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:142
|
1175 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:214
|
1176 |
msgid "Actions"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/class-wcj-general.php:203
|
|
|
1180 |
#: includes/class-wcj-product-bulk-meta-editor.php:367
|
1181 |
#: includes/class-wcj-product-by-user.php:206
|
1182 |
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:138
|
1183 |
#: includes/pdf-invoices/submodules/class-wcj-pdf-invoicing-display.php:303
|
1184 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
|
1185 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:157
|
1186 |
msgid "Delete"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/class-wcj-general.php:206
|
1190 |
msgid "Existing Roles"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/class-wcj-general.php:212
|
1194 |
msgid "Add New Role"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/class-wcj-general.php:215
|
|
|
1198 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:22
|
1199 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:29
|
1200 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:55
|
1201 |
#: includes/settings/wcj-settings-email-options.php:20
|
1202 |
#: includes/settings/wcj-settings-eu-vat-number.php:157
|
1203 |
#: includes/settings/wcj-settings-eu-vat-number.php:193
|
1209 |
#: includes/settings/wcj-settings-orders.php:168
|
1210 |
#: includes/settings/wcj-settings-orders.php:217
|
1211 |
#: includes/settings/wcj-settings-pdf-invoicing-display.php:151
|
1212 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:125
|
1213 |
#: includes/settings/wcj-settings-product-by-country.php:110
|
1214 |
#: includes/settings/wcj-settings-product-by-user.php:114
|
1215 |
#: includes/settings/wcj-settings-purchase-data.php:134
|
1219 |
#: includes/settings/wcj-settings-sku.php:181
|
1220 |
#: includes/settings/wcj-settings-sku.php:197
|
1221 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
|
1222 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:228
|
1223 |
msgid "Add"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/class-wcj-general.php:278 includes/class-wcj-general.php:320
|
1227 |
#: includes/class-wcj-product-bulk-meta-editor.php:339
|
1228 |
#: includes/class-wcj-product-bulk-price-converter.php:148
|
1229 |
#: includes/class-wcj-sku.php:334
|
1232 |
msgid "Product"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/class-wcj-general.php:279 includes/class-wcj-general.php:321
|
1236 |
#: includes/reports/wcj-class-reports-stock.php:254
|
1237 |
msgid "Category"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/class-wcj-general.php:341
|
1241 |
msgid "Total Products:"
|
1242 |
msgstr ""
|
1243 |
|
1261 |
#: includes/class-wcj-left-to-free-shipping.php:62
|
1262 |
#: includes/class-wcj-left-to-free-shipping.php:72
|
1263 |
#: includes/class-wcj-left-to-free-shipping.php:82
|
1264 |
+
#: includes/functions/wcj-functions-general.php:337
|
1265 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:37
|
1266 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:72
|
1267 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:111
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: includes/class-wcj-my-account.php:75
|
|
|
1327 |
#: includes/class-wcj-product-bulk-meta-editor.php:279
|
1328 |
#: includes/class-wcj-product-by-user.php:206
|
1329 |
#: includes/class-wcj-purchase-data.php:93
|
1330 |
#: includes/class-wcj-track-users.php:296
|
1331 |
+
#: includes/classes/class-wcj-module.php:614
|
1332 |
+
#: includes/functions/wcj-functions-html.php:95
|
1333 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:341
|
1334 |
#: includes/settings/wcj-settings-empty-cart.php:80
|
1335 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:367
|
1336 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:157
|
1337 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:261
|
1338 |
msgid "Are you sure?"
|
1339 |
msgstr ""
|
1340 |
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: includes/class-wcj-offer-price.php:113
|
1358 |
+
#: includes/functions/wcj-functions-reports.php:21
|
1359 |
+
#: includes/functions/wcj-functions-reports.php:24
|
1360 |
#: includes/settings/wcj-settings-order-numbers.php:124
|
1361 |
#: includes/settings/wcj-settings-related-products.php:23
|
1362 |
msgid "Date"
|
1382 |
#: includes/export/class-wcj-fields-helper.php:75
|
1383 |
#: includes/input-fields/wcj-product-input-fields-options.php:45
|
1384 |
#: includes/reports/wcj-class-reports-customers.php:90
|
1385 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:132
|
1386 |
msgid "Email"
|
1387 |
msgstr ""
|
1388 |
|
1551 |
msgid "No old slugs found."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/class-wcj-order-custom-statuses.php:27
|
1555 |
msgid "Order Custom Statuses"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: includes/class-wcj-order-custom-statuses.php:28
|
1559 |
msgid "Custom statuses for WooCommerce orders."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/class-wcj-order-custom-statuses.php:34
|
1563 |
#: includes/settings/wcj-settings-order-custom-statuses.php:14
|
1564 |
msgid "Custom Statuses"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/class-wcj-order-custom-statuses.php:35
|
1568 |
+
msgid ""
|
1569 |
+
"Tool lets you add, edit or delete any custom status for WooCommerce orders."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/class-wcj-order-custom-statuses.php:132
|
1573 |
msgid "Processing"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/class-wcj-order-custom-statuses.php:143
|
1577 |
msgid "Complete"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: includes/class-wcj-order-custom-statuses.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1581 |
#, php-format
|
1582 |
msgid " <span class=\"count\">(%s)</span>"
|
1583 |
msgid_plural " <span class=\"count\">(%s)</span>"
|
1584 |
msgstr[0] ""
|
1585 |
msgstr[1] ""
|
1586 |
|
1587 |
+
#: includes/class-wcj-order-custom-statuses.php:304
|
1588 |
+
#: includes/class-wcj-order-custom-statuses.php:306
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1589 |
msgid "Mark"
|
1590 |
msgstr ""
|
1591 |
|
1617 |
msgid "Tool renumerates all orders."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/class-wcj-order-numbers.php:176
|
1621 |
msgid "Orders successfully renumerated!"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: includes/class-wcj-order-numbers.php:183
|
1625 |
#, php-format
|
1626 |
msgid ""
|
1627 |
"Press the button below to renumerate all existing orders starting from order "
|
1628 |
"counter settings in <a href=\"%s\">Order Numbers</a> module."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: includes/class-wcj-order-numbers.php:190
|
1632 |
msgid "Renumerate orders"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: includes/class-wcj-order-quantities.php:29
|
1636 |
msgid "Order Min/Max Quantities"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: includes/class-wcj-order-quantities.php:30
|
1640 |
msgid "Set min/max product quantities in WooCommerce order."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: includes/class-wcj-order-quantities.php:216
|
1644 |
+
#: includes/settings/wcj-settings-order-quantities.php:96
|
1645 |
msgid ""
|
1646 |
"Maximum allowed order quantity is %max_cart_total_quantity%. Your current "
|
1647 |
"order quantity is %cart_total_quantity%."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/class-wcj-order-quantities.php:224
|
1651 |
#: includes/settings/wcj-settings-order-quantities.php:38
|
1652 |
msgid ""
|
1653 |
"Minimum allowed order quantity is %min_cart_total_quantity%. Your current "
|
1654 |
"order quantity is %cart_total_quantity%."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: includes/class-wcj-order-quantities.php:234
|
1658 |
+
#: includes/settings/wcj-settings-order-quantities.php:122
|
1659 |
msgid ""
|
1660 |
"Maximum allowed quantity for %product_title% is %max_per_item_quantity%. "
|
1661 |
"Your current item quantity is %item_quantity%."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: includes/class-wcj-order-quantities.php:244
|
1665 |
+
#: includes/settings/wcj-settings-order-quantities.php:64
|
1666 |
msgid ""
|
1667 |
"Minimum allowed quantity for %product_title% is %min_per_item_quantity%. "
|
1668 |
"Your current item quantity is %item_quantity%."
|
1773 |
"WooCommerce payment gateway."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/class-wcj-payment-gateways-min-max.php:25
|
1777 |
msgid "Gateways Min/Max Amounts"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/class-wcj-payment-gateways-min-max.php:26
|
1781 |
msgid "Add min/max amounts for WooCommerce payment gateways to show up."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/class-wcj-payment-gateways-min-max.php:51
|
1785 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:37
|
1786 |
msgid "Minimum amount for %gateway_title% is %min_amount%"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: includes/class-wcj-payment-gateways-min-max.php:52
|
1790 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:45
|
1791 |
msgid "Maximum amount for %gateway_title% is %max_amount%"
|
1792 |
msgstr ""
|
1857 |
|
1858 |
#: includes/class-wcj-pdf-invoicing.php:97
|
1859 |
#: includes/class-wcj-pdf-invoicing.php:98
|
1860 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:120
|
1861 |
msgid "Download"
|
1862 |
msgstr ""
|
1863 |
|
1881 |
msgstr ""
|
1882 |
|
1883 |
#: includes/class-wcj-pdf-invoicing.php:250
|
1884 |
+
#: includes/classes/class-wcj-pdf-invoice.php:279
|
1885 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:230
|
1886 |
msgid "Unexpected error"
|
1887 |
msgstr ""
|
1912 |
msgid "Display WooCommerce products prices by user roles."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: includes/class-wcj-price-by-user-role.php:115
|
1916 |
msgid ""
|
1917 |
"Booster: Free plugin's version is limited to only one price by user role per "
|
1918 |
"products settings product enabled at a time. You will need to get <a href="
|
1972 |
#: includes/settings/wcj-settings-call-for-price.php:69
|
1973 |
#: includes/settings/wcj-settings-cart-customization.php:34
|
1974 |
#: includes/settings/wcj-settings-cart-customization.php:57
|
1975 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:107
|
1976 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:202
|
1977 |
#: includes/settings/wcj-settings-checkout-customization.php:78
|
1978 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:291
|
1979 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:32
|
1980 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:54
|
1981 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:84
|
1982 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:92
|
1992 |
#: includes/settings/wcj-settings-general.php:82
|
1993 |
#: includes/settings/wcj-settings-general.php:150
|
1994 |
#: includes/settings/wcj-settings-general.php:201
|
|
|
1995 |
#: includes/settings/wcj-settings-global-discount.php:52
|
1996 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:27
|
1997 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:60
|
2005 |
#: includes/settings/wcj-settings-order-numbers.php:88
|
2006 |
#: includes/settings/wcj-settings-order-numbers.php:96
|
2007 |
#: includes/settings/wcj-settings-order-numbers.php:103
|
2008 |
+
#: includes/settings/wcj-settings-order-quantities.php:53
|
2009 |
+
#: includes/settings/wcj-settings-order-quantities.php:111
|
2010 |
+
#: includes/settings/wcj-settings-order-quantities.php:137
|
2011 |
+
#: includes/settings/wcj-settings-order-quantities.php:144
|
2012 |
#: includes/settings/wcj-settings-orders.php:20
|
2013 |
#: includes/settings/wcj-settings-orders.php:49
|
2014 |
#: includes/settings/wcj-settings-orders.php:184
|
2016 |
#: includes/settings/wcj-settings-pdf-invoicing-footer.php:23
|
2017 |
#: includes/settings/wcj-settings-pdf-invoicing-header.php:23
|
2018 |
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:23
|
2019 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:73
|
2020 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:81
|
2021 |
#: includes/settings/wcj-settings-price-by-country.php:69
|
2022 |
#: includes/settings/wcj-settings-price-by-country.php:89
|
2023 |
#: includes/settings/wcj-settings-price-by-country.php:105
|
2039 |
#: includes/settings/wcj-settings-product-addons.php:24
|
2040 |
#: includes/settings/wcj-settings-product-addons.php:43
|
2041 |
#: includes/settings/wcj-settings-product-addons.php:67
|
2042 |
+
#: includes/settings/wcj-settings-product-addons.php:163
|
2043 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:21
|
2044 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:29
|
2045 |
#: includes/settings/wcj-settings-product-by-country.php:21
|
2081 |
#: includes/settings/wcj-settings-shipping-calculator.php:27
|
2082 |
#: includes/settings/wcj-settings-shipping-calculator.php:34
|
2083 |
#: includes/settings/wcj-settings-shipping-calculator.php:41
|
2084 |
+
#: includes/settings/wcj-settings-shipping-options.php:56
|
2085 |
#: includes/settings/wcj-settings-shipping.php:24
|
2086 |
#: includes/settings/wcj-settings-sku.php:50
|
2087 |
#: includes/settings/wcj-settings-sku.php:157
|
2128 |
msgid "Hide for all variations"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: includes/class-wcj-price-labels.php:136
|
2132 |
msgid "Booster: Custom Price Labels"
|
2133 |
msgstr ""
|
2134 |
|
2329 |
|
2330 |
#: includes/class-wcj-product-bulk-meta-editor.php:294
|
2331 |
#: includes/settings/wcj-settings-export.php:91
|
2332 |
+
#: includes/settings/wcj-settings-export.php:162
|
2333 |
+
#: includes/settings/wcj-settings-export.php:241
|
2334 |
#: includes/settings/wcj-settings-global-discount.php:69
|
2335 |
#: includes/settings/wcj-settings-orders.php:110
|
2336 |
+
#: includes/settings/wcj-settings-product-listings.php:297
|
2337 |
msgid "Value"
|
2338 |
msgstr ""
|
2339 |
|
2360 |
#: includes/class-wcj-product-bulk-meta-editor.php:389
|
2361 |
#: includes/class-wcj-purchase-data.php:76
|
2362 |
#: includes/export/class-wcj-fields-helper.php:280
|
2363 |
+
#: includes/functions/wcj-functions-reports.php:25
|
2364 |
#: includes/settings/wcj-settings-product-bulk-meta-editor.php:42
|
2365 |
msgid "Product ID"
|
2366 |
msgstr ""
|
2572 |
#: includes/input-fields/wcj-product-input-fields-options.php:51
|
2573 |
#: includes/settings/wcj-settings-export.php:75
|
2574 |
#: includes/settings/wcj-settings-export.php:143
|
2575 |
+
#: includes/settings/wcj-settings-export.php:225
|
2576 |
+
#: includes/settings/wcj-settings-product-addons.php:86
|
2577 |
#: includes/settings/wcj-settings-product-by-user.php:167
|
2578 |
#: includes/settings/wcj-settings-product-tabs.php:52
|
2579 |
#: includes/settings/wcj-settings-product-tabs.php:361
|
2581 |
#: includes/settings/wcj-settings-product-tabs.php:403
|
2582 |
#: includes/settings/wcj-settings-purchase-data.php:66
|
2583 |
#: includes/settings/wcj-settings-related-products.php:24
|
2584 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:57
|
2585 |
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:157
|
2586 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:116
|
2587 |
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:337
|
2592 |
msgid "Title"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: includes/class-wcj-product-by-user.php:205
|
2596 |
+
#: includes/shortcodes/class-wcj-products-add-form-shortcodes.php:425
|
2597 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:160
|
2598 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:228
|
2599 |
+
msgid "Edit"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
#: includes/class-wcj-product-custom-info.php:24
|
2603 |
#: includes/admin/class-wc-settings-jetpack.php:458
|
2604 |
+
#: includes/functions/wcj-functions-general.php:148
|
2605 |
msgid "Product Info"
|
2606 |
msgstr ""
|
2607 |
|
2683 |
msgstr ""
|
2684 |
|
2685 |
#: includes/class-wcj-product-info.php:272
|
2686 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:157
|
2687 |
#: includes/settings/wcj-settings-product-info.php:61
|
2688 |
#: includes/settings/wcj-settings-product-info.php:94
|
2689 |
#: includes/settings/wcj-settings-product-tabs.php:66
|
2819 |
msgstr ""
|
2820 |
|
2821 |
#: includes/class-wcj-product-tabs.php:560
|
2822 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:108
|
2823 |
#: includes/settings/wcj-settings-product-tabs.php:59
|
2824 |
msgid "Key"
|
2825 |
msgstr ""
|
2864 |
|
2865 |
#: includes/class-wcj-product-tabs.php:584
|
2866 |
#: includes/input-fields/wcj-product-input-fields-options.php:95
|
2867 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:217
|
2868 |
#: includes/settings/wcj-settings-orders.php:123
|
2869 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
|
2870 |
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:20
|
2876 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:67
|
2877 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:19
|
2878 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:41
|
2879 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:104
|
2880 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:20
|
2881 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:33
|
2882 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:43
|
2891 |
|
2892 |
#: includes/class-wcj-product-tabs.php:585
|
2893 |
#: includes/input-fields/wcj-product-input-fields-options.php:88
|
2894 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:211
|
2895 |
#: includes/settings/wcj-settings-eu-vat-number.php:50
|
2896 |
#: includes/settings/wcj-settings-eu-vat-number.php:57
|
2897 |
#: includes/settings/wcj-settings-eu-vat-number.php:75
|
2898 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:101
|
2899 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:111
|
2900 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:130
|
2901 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
|
2902 |
#: includes/settings/meta-box/wcj-settings-meta-box-offer-price.php:19
|
2903 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:34
|
2908 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-add-to-cart.php:66
|
2909 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:18
|
2910 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:40
|
2911 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:103
|
2912 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-bookings.php:19
|
2913 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:32
|
2914 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-images.php:42
|
3021 |
#: includes/class-wcj-purchase-data.php:117
|
3022 |
#: includes/class-wcj-purchase-data.php:150
|
3023 |
#: includes/class-wcj-purchase-data.php:235
|
3024 |
+
#: includes/functions/wcj-functions-reports.php:29
|
3025 |
#: includes/settings/wcj-settings-purchase-data.php:133
|
3026 |
#: includes/settings/wcj-settings-purchase-data.php:161
|
3027 |
msgid "Profit"
|
3116 |
msgid "Booster: Customers by Country Sets"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: includes/class-wcj-shipping-by-order-amount.php:26
|
3120 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:14
|
3121 |
+
msgid "Shipping Methods by Min/Max Order Amount"
|
3122 |
+
msgstr ""
|
3123 |
+
|
3124 |
+
#: includes/class-wcj-shipping-by-order-amount.php:27
|
3125 |
+
msgid ""
|
3126 |
+
"Set minimum and/or maximum order amount for WooCommerce shipping methods to "
|
3127 |
+
"show up."
|
3128 |
msgstr ""
|
3129 |
|
3130 |
#: includes/class-wcj-shipping-by-products.php:26
|
3131 |
+
#: includes/settings/wcj-settings-shipping-options.php:50
|
3132 |
+
msgid "Shipping Methods by Products"
|
3133 |
+
msgstr ""
|
3134 |
+
|
3135 |
+
#: includes/class-wcj-shipping-by-products.php:27
|
3136 |
msgid ""
|
3137 |
"Set products, product categories or tags to include/exclude for WooCommerce "
|
3138 |
"shipping methods to show up."
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: includes/class-wcj-shipping-by-products.php:33
|
3142 |
msgid "Shipping methods by <strong>products</strong>."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: includes/class-wcj-shipping-by-products.php:36
|
3146 |
#: includes/settings/wcj-settings-currency-per-product.php:208
|
3147 |
msgid "Product Categories"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: includes/class-wcj-shipping-by-products.php:37
|
3151 |
msgid "Shipping methods by <strong>products categories</strong>."
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: includes/class-wcj-shipping-by-products.php:40
|
3155 |
#: includes/settings/wcj-settings-currency-per-product.php:220
|
3156 |
msgid "Product Tags"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: includes/class-wcj-shipping-by-products.php:41
|
3160 |
msgid "Shipping methods by <strong>products tags</strong>."
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: includes/class-wcj-shipping-by-products.php:117
|
3164 |
+
msgid "\"Include\" Options"
|
3165 |
+
msgstr ""
|
3166 |
+
|
3167 |
+
#: includes/class-wcj-shipping-by-products.php:118
|
3168 |
+
msgid ""
|
3169 |
+
"Enable this checkbox if you want all products in cart to be valid (instead "
|
3170 |
+
"of at least one)."
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: includes/class-wcj-shipping-by-products.php:119
|
3174 |
+
msgid "Validate all"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
#: includes/class-wcj-shipping-by-user-role.php:25
|
3178 |
msgid "Shipping Methods by Users"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
#: includes/class-wcj-shipping-by-user-role.php:26
|
3182 |
msgid ""
|
3183 |
+
"Set user roles, users or membership plans to include/exclude for WooCommerce "
|
3184 |
"shipping methods to show up."
|
3185 |
msgstr ""
|
3186 |
|
3187 |
#: includes/class-wcj-shipping-by-user-role.php:31
|
3188 |
+
#: includes/settings/wcj-settings-product-listings.php:220
|
3189 |
msgid "User Roles"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
#: includes/class-wcj-shipping-by-user-role.php:33
|
3193 |
+
#: includes/settings/wcj-settings-multicurrency.php:164
|
3194 |
#: includes/settings/wcj-settings-order-min-amount.php:97
|
3195 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:82
|
3196 |
#, php-format
|
3197 |
msgid ""
|
3198 |
"Custom roles can be added via \"Add/Manage Custom Roles\" tool in Booster's "
|
3200 |
msgstr ""
|
3201 |
|
3202 |
#: includes/class-wcj-shipping-by-user-role.php:38
|
3203 |
+
msgid "Users"
|
3204 |
+
msgstr ""
|
3205 |
+
|
3206 |
+
#: includes/class-wcj-shipping-by-user-role.php:42
|
3207 |
msgid "User Membership Plans"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: includes/class-wcj-shipping-by-user-role.php:44
|
3211 |
#, php-format
|
3212 |
msgid ""
|
3213 |
"This section requires <a target=\"_blank\" href=\"%s\">WooCommerce "
|
3387 |
|
3388 |
#: includes/class-wcj-track-users.php:281
|
3389 |
#: includes/input-fields/wcj-product-input-fields-options.php:43
|
3390 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:130
|
3391 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:88
|
3392 |
#: includes/tools/class-wcj-eu-countries-vat-rates-tool.php:102
|
3393 |
msgid "Country"
|
3422 |
msgid "WooCommerce URL coupons."
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: includes/class-wcj-wholesale-price.php:27
|
3426 |
msgid "Wholesale Price"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: includes/class-wcj-wholesale-price.php:28
|
3430 |
msgid ""
|
3431 |
"Set WooCommerce wholesale pricing depending on product quantity in cart (buy "
|
3432 |
"more pay less)."
|
3566 |
msgid "Save changes"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: includes/admin/class-wcj-settings-manager.php:59
|
3570 |
msgid "Please upload a file to import!"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: includes/admin/class-wcj-settings-manager.php:67
|
3574 |
+
#: includes/admin/class-wcj-settings-manager.php:72
|
3575 |
msgid "Wrong file format!"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: includes/admin/class-wcj-settings-manager.php:79
|
3579 |
#, php-format
|
3580 |
msgid "%d options successfully imported."
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: includes/admin/class-wcj-settings-manager.php:144
|
3584 |
#, php-format
|
3585 |
msgid "%d options successfully deleted."
|
3586 |
msgstr ""
|
3613 |
msgid "Tool"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: includes/admin/wcj-modules-cats.php:14
|
3617 |
msgid ""
|
3618 |
"This dashboard lets you enable/disable any Booster's module. Each checkbox "
|
3619 |
"comes with short module's description. Please visit <a href=\"http://booster."
|
3621 |
"feature."
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: includes/admin/wcj-modules-cats.php:24
|
3625 |
msgid "Prices & Currencies"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: includes/admin/wcj-modules-cats.php:25
|
3629 |
msgid ""
|
3630 |
"Multicurrency, Price Converter, Wholesale Pricing, Name You Price, Price by "
|
3631 |
"User Role and more."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: includes/admin/wcj-modules-cats.php:46
|
3635 |
msgid "Button & Price Labels"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: includes/admin/wcj-modules-cats.php:47
|
3639 |
msgid "Add to Cart Labels, Call for Price, Custom Price Labels and more."
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: includes/admin/wcj-modules-cats.php:59
|
3643 |
msgid ""
|
3644 |
"Bookings, Crowdfunding Products, Product Addons and Input Fields, Product "
|
3645 |
"Listings, Product Tabs and more."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: includes/admin/wcj-modules-cats.php:87
|
3649 |
msgid "Cart & Checkout"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: includes/admin/wcj-modules-cats.php:88
|
3653 |
+
msgid ""
|
3654 |
+
"Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
|
3655 |
+
"more."
|
3656 |
msgstr ""
|
3657 |
|
3658 |
#: includes/admin/wcj-modules-cats.php:106
|
3680 |
"Methods and more."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: includes/admin/wcj-modules-cats.php:143
|
3684 |
msgid "PDF Invoicing & Packing Slips"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: includes/admin/wcj-modules-cats.php:144
|
3688 |
msgid "PDF Documents"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: includes/admin/wcj-modules-cats.php:159
|
3692 |
msgid "Emails & Misc."
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: includes/admin/wcj-modules-cats.php:160
|
3696 |
msgid "Emails, Reports, Export, Admin Tools, General Options and more."
|
3697 |
msgstr ""
|
3698 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3699 |
#: includes/classes/class-wcj-module.php:94
|
3700 |
#, php-format
|
3701 |
msgid ""
|
3705 |
"\"%1$s\" products."
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: includes/classes/class-wcj-module.php:386
|
3709 |
#, php-format
|
3710 |
msgid "Selected: %s."
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: includes/classes/class-wcj-module.php:466
|
3714 |
msgid "Back to Module Settings"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
+
#: includes/classes/class-wcj-module.php:484
|
3718 |
#: includes/settings/wcj-settings-wpml.php:20
|
3719 |
msgid "Module Tools"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: includes/classes/class-wcj-module.php:557
|
3723 |
#: includes/settings/wcj-settings-checkout-core-fields.php:54
|
3724 |
msgid "enabled"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: includes/classes/class-wcj-module.php:558
|
3728 |
msgid "disabled"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: includes/classes/class-wcj-module.php:566
|
3732 |
#: includes/settings/wcj-settings-product-tabs.php:152
|
3733 |
#: includes/settings/wcj-settings-product-tabs.php:164
|
3734 |
#: includes/settings/wcj-settings-product-tabs.php:176
|
3736 |
msgid "Deprecated"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: includes/classes/class-wcj-module.php:604
|
3740 |
msgid "Reset Settings"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: includes/classes/class-wcj-module.php:610
|
3744 |
msgid "Reset Module to Default Settings"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: includes/classes/class-wcj-module.php:611
|
3748 |
msgid "Reset Submodule to Default Settings"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: includes/classes/class-wcj-module.php:615
|
3752 |
msgid "Reset settings"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: includes/classes/class-wcj-module.php:649
|
3756 |
msgid "Module Options"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: includes/classes/class-wcj-module.php:656
|
3760 |
msgid "Enable Module"
|
3761 |
msgstr ""
|
3762 |
|
3801 |
|
3802 |
#: includes/emails/class-wc-email-wcj-custom.php:225
|
3803 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:59
|
3804 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:106
|
3805 |
+
#: includes/settings/wcj-settings-product-listings.php:259
|
3806 |
+
#: includes/settings/wcj-settings-product-listings.php:317
|
3807 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:110
|
3808 |
msgid "Enable/Disable"
|
3809 |
msgstr ""
|
3966 |
msgid "Cron job: exchange rates update failed"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: includes/exchange-rates/class-wcj-exchange-rates.php:129
|
3970 |
#, php-format
|
3971 |
msgid "Grab %s rate from %s"
|
3972 |
msgstr ""
|
4127 |
|
4128 |
#: includes/export/class-wcj-fields-helper.php:120
|
4129 |
#: includes/export/class-wcj-fields-helper.php:205
|
4130 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:171
|
4131 |
msgid "Order Notes"
|
4132 |
msgstr ""
|
4133 |
|
4274 |
|
4275 |
#: includes/export/class-wcj-fields-helper.php:289
|
4276 |
#: includes/input-fields/wcj-product-input-fields-options.php:28
|
4277 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:115
|
4278 |
#: includes/settings/wcj-settings-export.php:81
|
4279 |
#: includes/settings/wcj-settings-export.php:149
|
4280 |
+
#: includes/settings/wcj-settings-export.php:231
|
4281 |
#: includes/settings/wcj-settings-global-discount.php:58
|
4282 |
#: includes/settings/wcj-settings-product-addons.php:73
|
4283 |
#: includes/settings/wcj-settings-purchase-data.php:73
|
4284 |
+
#: includes/settings/wcj-settings-shipping-options.php:70
|
4285 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:45
|
4286 |
#: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:164
|
4287 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:123
|
4290 |
msgstr ""
|
4291 |
|
4292 |
#: includes/export/class-wcj-fields-helper.php:291
|
4293 |
+
#: includes/settings/wcj-settings-shipping-options.php:184
|
4294 |
msgid "Image URL"
|
4295 |
msgstr ""
|
4296 |
|
4314 |
msgstr ""
|
4315 |
|
4316 |
#: includes/export/class-wcj-fields-helper.php:299
|
4317 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:48
|
4318 |
msgid "Length"
|
4319 |
msgstr ""
|
4320 |
|
4407 |
msgid "Availability Class"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: includes/functions/wcj-functions-admin.php:29
|
4411 |
msgid "Enter comma separated list of IDs."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/functions/wcj-functions-admin.php:103
|
4415 |
#: includes/settings/wcj-settings-emails-verification.php:59
|
4416 |
#: includes/settings/wcj-settings-emails-verification.php:67
|
4417 |
#: includes/settings/wcj-settings-emails-verification.php:107
|
4419 |
msgid "Replaced value: %s"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: includes/functions/wcj-functions-admin.php:103
|
4423 |
#, php-format
|
4424 |
msgid "Replaced values: %s"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: includes/functions/wcj-functions-admin.php:132
|
4428 |
msgid "Install Booster Plus to unlock all features"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: includes/functions/wcj-functions-admin.php:133
|
4432 |
#, php-format
|
4433 |
msgid ""
|
4434 |
"Some settings fields are locked and you will need %s to modify all locked "
|
4435 |
"fields."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: includes/functions/wcj-functions-admin.php:134
|
4439 |
msgid "Buy now"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: includes/functions/wcj-functions-admin.php:134
|
4443 |
msgid "Visit Booster Site"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: includes/functions/wcj-functions-admin.php:138
|
4447 |
#, php-format
|
4448 |
msgid "Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change value."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: includes/functions/wcj-functions-admin.php:141
|
4452 |
#, php-format
|
4453 |
msgid ""
|
4454 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to enable \"%s\" "
|
4455 |
"option."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: includes/functions/wcj-functions-admin.php:144
|
4459 |
#, php-format
|
4460 |
msgid "Get Booster Plus to enable \"%s\" option."
|
4461 |
msgstr ""
|
4462 |
|
4463 |
+
#: includes/functions/wcj-functions-admin.php:147
|
4464 |
#, php-format
|
4465 |
msgid ""
|
4466 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values below."
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: includes/functions/wcj-functions-admin.php:150
|
4470 |
#, php-format
|
4471 |
msgid ""
|
4472 |
"Get <a href=\"%s\" target=\"_blank\">Booster Plus</a> to change values above."
|
4473 |
msgstr ""
|
4474 |
|
4475 |
+
#: includes/functions/wcj-functions-admin.php:153
|
4476 |
msgid "Get Booster Plus to change value."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: includes/functions/wcj-functions-country.php:147
|
4480 |
msgid "Afghanistan"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: includes/functions/wcj-functions-country.php:148
|
4484 |
msgid "Åland Islands"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: includes/functions/wcj-functions-country.php:149
|
4488 |
msgid "Albania"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: includes/functions/wcj-functions-country.php:150
|
4492 |
msgid "Algeria"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: includes/functions/wcj-functions-country.php:151
|
4496 |
msgid "Andorra"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: includes/functions/wcj-functions-country.php:152
|
4500 |
msgid "Angola"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: includes/functions/wcj-functions-country.php:153
|
4504 |
msgid "Anguilla"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: includes/functions/wcj-functions-country.php:154
|
4508 |
msgid "Antarctica"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: includes/functions/wcj-functions-country.php:155
|
4512 |
msgid "Antigua and Barbuda"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: includes/functions/wcj-functions-country.php:156
|
4516 |
msgid "Argentina"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
+
#: includes/functions/wcj-functions-country.php:157
|
4520 |
msgid "Armenia"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
+
#: includes/functions/wcj-functions-country.php:158
|
4524 |
msgid "Aruba"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: includes/functions/wcj-functions-country.php:159
|
4528 |
msgid "Australia"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: includes/functions/wcj-functions-country.php:160
|
4532 |
msgid "Austria"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: includes/functions/wcj-functions-country.php:161
|
4536 |
msgid "Azerbaijan"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: includes/functions/wcj-functions-country.php:162
|
4540 |
msgid "Bahamas"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: includes/functions/wcj-functions-country.php:163
|
4544 |
msgid "Bahrain"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
+
#: includes/functions/wcj-functions-country.php:164
|
4548 |
msgid "Bangladesh"
|
4549 |
msgstr ""
|
4550 |
|
4551 |
+
#: includes/functions/wcj-functions-country.php:165
|
4552 |
msgid "Barbados"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: includes/functions/wcj-functions-country.php:166
|
4556 |
msgid "Belarus"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: includes/functions/wcj-functions-country.php:167
|
4560 |
msgid "Belgium"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: includes/functions/wcj-functions-country.php:168
|
4564 |
msgid "Belau"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: includes/functions/wcj-functions-country.php:169
|
4568 |
msgid "Belize"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: includes/functions/wcj-functions-country.php:170
|
4572 |
msgid "Benin"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: includes/functions/wcj-functions-country.php:171
|
4576 |
msgid "Bermuda"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
+
#: includes/functions/wcj-functions-country.php:172
|
4580 |
msgid "Bhutan"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: includes/functions/wcj-functions-country.php:173
|
4584 |
msgid "Bolivia"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: includes/functions/wcj-functions-country.php:174
|
4588 |
msgid "Bonaire, Saint Eustatius and Saba"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: includes/functions/wcj-functions-country.php:175
|
4592 |
msgid "Bosnia and Herzegovina"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
+
#: includes/functions/wcj-functions-country.php:176
|
4596 |
msgid "Botswana"
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: includes/functions/wcj-functions-country.php:177
|
4600 |
msgid "Bouvet Island"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: includes/functions/wcj-functions-country.php:178
|
4604 |
msgid "Brazil"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: includes/functions/wcj-functions-country.php:179
|
4608 |
msgid "British Indian Ocean Territory"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
+
#: includes/functions/wcj-functions-country.php:180
|
4612 |
msgid "British Virgin Islands"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
+
#: includes/functions/wcj-functions-country.php:181
|
4616 |
msgid "Brunei"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
+
#: includes/functions/wcj-functions-country.php:182
|
4620 |
msgid "Bulgaria"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
+
#: includes/functions/wcj-functions-country.php:183
|
4624 |
msgid "Burkina Faso"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: includes/functions/wcj-functions-country.php:184
|
4628 |
msgid "Burundi"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: includes/functions/wcj-functions-country.php:185
|
4632 |
msgid "Cambodia"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: includes/functions/wcj-functions-country.php:186
|
4636 |
msgid "Cameroon"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
+
#: includes/functions/wcj-functions-country.php:187
|
4640 |
msgid "Canada"
|
4641 |
msgstr ""
|
4642 |
|
4643 |
+
#: includes/functions/wcj-functions-country.php:188
|
4644 |
msgid "Cape Verde"
|
4645 |
msgstr ""
|
4646 |
|
4647 |
+
#: includes/functions/wcj-functions-country.php:189
|
4648 |
msgid "Cayman Islands"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
+
#: includes/functions/wcj-functions-country.php:190
|
4652 |
msgid "Central African Republic"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
+
#: includes/functions/wcj-functions-country.php:191
|
4656 |
msgid "Chad"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: includes/functions/wcj-functions-country.php:192
|
4660 |
msgid "Chile"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: includes/functions/wcj-functions-country.php:193
|
4664 |
msgid "China"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: includes/functions/wcj-functions-country.php:194
|
4668 |
msgid "Christmas Island"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: includes/functions/wcj-functions-country.php:195
|
4672 |
msgid "Cocos (Keeling) Islands"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: includes/functions/wcj-functions-country.php:196
|
4676 |
msgid "Colombia"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: includes/functions/wcj-functions-country.php:197
|
4680 |
msgid "Comoros"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: includes/functions/wcj-functions-country.php:198
|
4684 |
msgid "Congo (Brazzaville)"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: includes/functions/wcj-functions-country.php:199
|
4688 |
msgid "Congo (Kinshasa)"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: includes/functions/wcj-functions-country.php:200
|
4692 |
msgid "Cook Islands"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: includes/functions/wcj-functions-country.php:201
|
4696 |
msgid "Costa Rica"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: includes/functions/wcj-functions-country.php:202
|
4700 |
msgid "Croatia"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: includes/functions/wcj-functions-country.php:203
|
4704 |
msgid "Cuba"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: includes/functions/wcj-functions-country.php:204
|
4708 |
msgid "CuraÇao"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: includes/functions/wcj-functions-country.php:205
|
4712 |
msgid "Cyprus"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: includes/functions/wcj-functions-country.php:206
|
4716 |
msgid "Czech Republic"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: includes/functions/wcj-functions-country.php:207
|
4720 |
msgid "Denmark"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
+
#: includes/functions/wcj-functions-country.php:208
|
4724 |
msgid "Djibouti"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
+
#: includes/functions/wcj-functions-country.php:209
|
4728 |
msgid "Dominica"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: includes/functions/wcj-functions-country.php:210
|
4732 |
msgid "Dominican Republic"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
+
#: includes/functions/wcj-functions-country.php:211
|
4736 |
msgid "Ecuador"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: includes/functions/wcj-functions-country.php:212
|
4740 |
msgid "Egypt"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
+
#: includes/functions/wcj-functions-country.php:213
|
4744 |
msgid "El Salvador"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: includes/functions/wcj-functions-country.php:214
|
4748 |
msgid "Equatorial Guinea"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: includes/functions/wcj-functions-country.php:215
|
4752 |
msgid "Eritrea"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: includes/functions/wcj-functions-country.php:216
|
4756 |
msgid "Estonia"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
+
#: includes/functions/wcj-functions-country.php:217
|
4760 |
msgid "Ethiopia"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
+
#: includes/functions/wcj-functions-country.php:218
|
4764 |
msgid "Falkland Islands"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
+
#: includes/functions/wcj-functions-country.php:219
|
4768 |
msgid "Faroe Islands"
|
4769 |
msgstr ""
|
4770 |
|
4771 |
+
#: includes/functions/wcj-functions-country.php:220
|
4772 |
msgid "Fiji"
|
4773 |
msgstr ""
|
4774 |
|
4775 |
+
#: includes/functions/wcj-functions-country.php:221
|
4776 |
msgid "Finland"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
+
#: includes/functions/wcj-functions-country.php:222
|
4780 |
msgid "France"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: includes/functions/wcj-functions-country.php:223
|
4784 |
msgid "French Guiana"
|
4785 |
msgstr ""
|
4786 |
|
4787 |
+
#: includes/functions/wcj-functions-country.php:224
|
4788 |
msgid "French Polynesia"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
+
#: includes/functions/wcj-functions-country.php:225
|
4792 |
msgid "French Southern Territories"
|
4793 |
msgstr ""
|
4794 |
|
4795 |
+
#: includes/functions/wcj-functions-country.php:226
|
4796 |
msgid "Gabon"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: includes/functions/wcj-functions-country.php:227
|
4800 |
msgid "Gambia"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: includes/functions/wcj-functions-country.php:228
|
4804 |
msgid "Georgia"
|
4805 |
msgstr ""
|
4806 |
|
4807 |
+
#: includes/functions/wcj-functions-country.php:229
|
4808 |
msgid "Germany"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
+
#: includes/functions/wcj-functions-country.php:230
|
4812 |
msgid "Ghana"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: includes/functions/wcj-functions-country.php:231
|
4816 |
msgid "Gibraltar"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
+
#: includes/functions/wcj-functions-country.php:232
|
4820 |
msgid "Greece"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
+
#: includes/functions/wcj-functions-country.php:233
|
4824 |
msgid "Greenland"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
+
#: includes/functions/wcj-functions-country.php:234
|
4828 |
msgid "Grenada"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: includes/functions/wcj-functions-country.php:235
|
4832 |
msgid "Guadeloupe"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: includes/functions/wcj-functions-country.php:236
|
4836 |
msgid "Guatemala"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: includes/functions/wcj-functions-country.php:237
|
4840 |
msgid "Guernsey"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: includes/functions/wcj-functions-country.php:238
|
4844 |
msgid "Guinea"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: includes/functions/wcj-functions-country.php:239
|
4848 |
msgid "Guinea-Bissau"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
+
#: includes/functions/wcj-functions-country.php:240
|
4852 |
msgid "Guyana"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: includes/functions/wcj-functions-country.php:241
|
4856 |
msgid "Haiti"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: includes/functions/wcj-functions-country.php:242
|
4860 |
msgid "Heard Island and McDonald Islands"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: includes/functions/wcj-functions-country.php:243
|
4864 |
msgid "Honduras"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
+
#: includes/functions/wcj-functions-country.php:244
|
4868 |
msgid "Hong Kong"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: includes/functions/wcj-functions-country.php:245
|
4872 |
msgid "Hungary"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: includes/functions/wcj-functions-country.php:246
|
4876 |
msgid "Iceland"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: includes/functions/wcj-functions-country.php:247
|
4880 |
msgid "India"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: includes/functions/wcj-functions-country.php:248
|
4884 |
msgid "Indonesia"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: includes/functions/wcj-functions-country.php:249
|
4888 |
msgid "Iran"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: includes/functions/wcj-functions-country.php:250
|
4892 |
msgid "Iraq"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: includes/functions/wcj-functions-country.php:251
|
4896 |
msgid "Republic of Ireland"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: includes/functions/wcj-functions-country.php:252
|
4900 |
msgid "Isle of Man"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: includes/functions/wcj-functions-country.php:253
|
4904 |
msgid "Israel"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: includes/functions/wcj-functions-country.php:254
|
4908 |
msgid "Italy"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: includes/functions/wcj-functions-country.php:255
|
4912 |
msgid "Ivory Coast"
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: includes/functions/wcj-functions-country.php:256
|
4916 |
msgid "Jamaica"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: includes/functions/wcj-functions-country.php:257
|
4920 |
msgid "Japan"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: includes/functions/wcj-functions-country.php:258
|
4924 |
msgid "Jersey"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: includes/functions/wcj-functions-country.php:259
|
4928 |
msgid "Jordan"
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: includes/functions/wcj-functions-country.php:260
|
4932 |
msgid "Kazakhstan"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: includes/functions/wcj-functions-country.php:261
|
4936 |
msgid "Kenya"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: includes/functions/wcj-functions-country.php:262
|
4940 |
msgid "Kiribati"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: includes/functions/wcj-functions-country.php:263
|
4944 |
msgid "Kuwait"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: includes/functions/wcj-functions-country.php:264
|
4948 |
msgid "Kyrgyzstan"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: includes/functions/wcj-functions-country.php:265
|
4952 |
msgid "Laos"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: includes/functions/wcj-functions-country.php:266
|
4956 |
msgid "Latvia"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: includes/functions/wcj-functions-country.php:267
|
4960 |
msgid "Lebanon"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: includes/functions/wcj-functions-country.php:268
|
4964 |
msgid "Lesotho"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: includes/functions/wcj-functions-country.php:269
|
4968 |
msgid "Liberia"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: includes/functions/wcj-functions-country.php:270
|
4972 |
msgid "Libya"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: includes/functions/wcj-functions-country.php:271
|
4976 |
msgid "Liechtenstein"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: includes/functions/wcj-functions-country.php:272
|
4980 |
msgid "Lithuania"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: includes/functions/wcj-functions-country.php:273
|
4984 |
msgid "Luxembourg"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: includes/functions/wcj-functions-country.php:274
|
4988 |
msgid "Macao S.A.R., China"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: includes/functions/wcj-functions-country.php:275
|
4992 |
msgid "Macedonia"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: includes/functions/wcj-functions-country.php:276
|
4996 |
msgid "Madagascar"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: includes/functions/wcj-functions-country.php:277
|
5000 |
msgid "Malawi"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: includes/functions/wcj-functions-country.php:278
|
5004 |
msgid "Malaysia"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
+
#: includes/functions/wcj-functions-country.php:279
|
5008 |
msgid "Maldives"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: includes/functions/wcj-functions-country.php:280
|
5012 |
msgid "Mali"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: includes/functions/wcj-functions-country.php:281
|
5016 |
msgid "Malta"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: includes/functions/wcj-functions-country.php:282
|
5020 |
msgid "Marshall Islands"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: includes/functions/wcj-functions-country.php:283
|
5024 |
msgid "Martinique"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: includes/functions/wcj-functions-country.php:284
|
5028 |
msgid "Mauritania"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: includes/functions/wcj-functions-country.php:285
|
5032 |
msgid "Mauritius"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: includes/functions/wcj-functions-country.php:286
|
5036 |
msgid "Mayotte"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: includes/functions/wcj-functions-country.php:287
|
5040 |
msgid "Mexico"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: includes/functions/wcj-functions-country.php:288
|
5044 |
msgid "Micronesia"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: includes/functions/wcj-functions-country.php:289
|
5048 |
msgid "Moldova"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: includes/functions/wcj-functions-country.php:290
|
5052 |
msgid "Monaco"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: includes/functions/wcj-functions-country.php:291
|
5056 |
msgid "Mongolia"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: includes/functions/wcj-functions-country.php:292
|
5060 |
msgid "Montenegro"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
+
#: includes/functions/wcj-functions-country.php:293
|
5064 |
msgid "Montserrat"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#: includes/functions/wcj-functions-country.php:294
|
5068 |
msgid "Morocco"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
+
#: includes/functions/wcj-functions-country.php:295
|
5072 |
msgid "Mozambique"
|
5073 |
msgstr ""
|
5074 |
|
5075 |
+
#: includes/functions/wcj-functions-country.php:296
|
5076 |
msgid "Myanmar"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: includes/functions/wcj-functions-country.php:297
|
5080 |
msgid "Namibia"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
+
#: includes/functions/wcj-functions-country.php:298
|
5084 |
msgid "Nauru"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: includes/functions/wcj-functions-country.php:299
|
5088 |
msgid "Nepal"
|
5089 |
msgstr ""
|
5090 |
|
5091 |
+
#: includes/functions/wcj-functions-country.php:300
|
5092 |
msgid "Netherlands"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: includes/functions/wcj-functions-country.php:301
|
5096 |
msgid "Netherlands Antilles"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: includes/functions/wcj-functions-country.php:302
|
5100 |
msgid "New Caledonia"
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: includes/functions/wcj-functions-country.php:303
|
5104 |
msgid "New Zealand"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: includes/functions/wcj-functions-country.php:304
|
5108 |
msgid "Nicaragua"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: includes/functions/wcj-functions-country.php:305
|
5112 |
msgid "Niger"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: includes/functions/wcj-functions-country.php:306
|
5116 |
msgid "Nigeria"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: includes/functions/wcj-functions-country.php:307
|
5120 |
msgid "Niue"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: includes/functions/wcj-functions-country.php:308
|
5124 |
msgid "Norfolk Island"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: includes/functions/wcj-functions-country.php:309
|
5128 |
msgid "North Korea"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: includes/functions/wcj-functions-country.php:310
|
5132 |
msgid "Norway"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: includes/functions/wcj-functions-country.php:311
|
5136 |
msgid "Oman"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: includes/functions/wcj-functions-country.php:312
|
5140 |
msgid "Pakistan"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: includes/functions/wcj-functions-country.php:313
|
5144 |
msgid "Palestinian Territory"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: includes/functions/wcj-functions-country.php:314
|
5148 |
msgid "Panama"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: includes/functions/wcj-functions-country.php:315
|
5152 |
msgid "Papua New Guinea"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
+
#: includes/functions/wcj-functions-country.php:316
|
5156 |
msgid "Paraguay"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
+
#: includes/functions/wcj-functions-country.php:317
|
5160 |
msgid "Peru"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
+
#: includes/functions/wcj-functions-country.php:318
|
5164 |
msgid "Philippines"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
+
#: includes/functions/wcj-functions-country.php:319
|
5168 |
msgid "Pitcairn"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
+
#: includes/functions/wcj-functions-country.php:320
|
5172 |
msgid "Poland"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: includes/functions/wcj-functions-country.php:321
|
5176 |
msgid "Portugal"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: includes/functions/wcj-functions-country.php:322
|
5180 |
msgid "Qatar"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: includes/functions/wcj-functions-country.php:323
|
5184 |
msgid "Reunion"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: includes/functions/wcj-functions-country.php:324
|
5188 |
msgid "Romania"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
+
#: includes/functions/wcj-functions-country.php:325
|
5192 |
msgid "Russia"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
+
#: includes/functions/wcj-functions-country.php:326
|
5196 |
msgid "Rwanda"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
+
#: includes/functions/wcj-functions-country.php:327
|
5200 |
msgid "Saint Barthélemy"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: includes/functions/wcj-functions-country.php:328
|
5204 |
msgid "Saint Helena"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: includes/functions/wcj-functions-country.php:329
|
5208 |
msgid "Saint Kitts and Nevis"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
+
#: includes/functions/wcj-functions-country.php:330
|
5212 |
msgid "Saint Lucia"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
+
#: includes/functions/wcj-functions-country.php:331
|
5216 |
msgid "Saint Martin (French part)"
|
5217 |
msgstr ""
|
5218 |
|
5219 |
+
#: includes/functions/wcj-functions-country.php:332
|
5220 |
msgid "Saint Martin (Dutch part)"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: includes/functions/wcj-functions-country.php:333
|
5224 |
msgid "Saint Pierre and Miquelon"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: includes/functions/wcj-functions-country.php:334
|
5228 |
msgid "Saint Vincent and the Grenadines"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
+
#: includes/functions/wcj-functions-country.php:335
|
5232 |
msgid "San Marino"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
+
#: includes/functions/wcj-functions-country.php:336
|
5236 |
msgid "São Tomé and Príncipe"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: includes/functions/wcj-functions-country.php:337
|
5240 |
msgid "Saudi Arabia"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: includes/functions/wcj-functions-country.php:338
|
5244 |
msgid "Senegal"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: includes/functions/wcj-functions-country.php:339
|
5248 |
msgid "Serbia"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
#: includes/functions/wcj-functions-country.php:340
|
5252 |
msgid "Seychelles"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
+
#: includes/functions/wcj-functions-country.php:341
|
5256 |
msgid "Sierra Leone"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: includes/functions/wcj-functions-country.php:342
|
5260 |
msgid "Singapore"
|
5261 |
msgstr ""
|
5262 |
|
5263 |
+
#: includes/functions/wcj-functions-country.php:343
|
5264 |
msgid "Slovakia"
|
5265 |
msgstr ""
|
5266 |
|
5267 |
+
#: includes/functions/wcj-functions-country.php:344
|
5268 |
msgid "Slovenia"
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: includes/functions/wcj-functions-country.php:345
|
5272 |
msgid "Solomon Islands"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: includes/functions/wcj-functions-country.php:346
|
5276 |
msgid "Somalia"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: includes/functions/wcj-functions-country.php:347
|
5280 |
msgid "South Africa"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: includes/functions/wcj-functions-country.php:348
|
5284 |
msgid "South Georgia/Sandwich Islands"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: includes/functions/wcj-functions-country.php:349
|
5288 |
msgid "South Korea"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: includes/functions/wcj-functions-country.php:350
|
5292 |
msgid "South Sudan"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: includes/functions/wcj-functions-country.php:351
|
5296 |
msgid "Spain"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: includes/functions/wcj-functions-country.php:352
|
5300 |
msgid "Sri Lanka"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: includes/functions/wcj-functions-country.php:353
|
5304 |
msgid "Sudan"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: includes/functions/wcj-functions-country.php:354
|
5308 |
msgid "Suriname"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: includes/functions/wcj-functions-country.php:355
|
5312 |
msgid "Svalbard and Jan Mayen"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: includes/functions/wcj-functions-country.php:356
|
5316 |
msgid "Swaziland"
|
5317 |
msgstr ""
|
5318 |
|
5319 |
+
#: includes/functions/wcj-functions-country.php:357
|
5320 |
msgid "Sweden"
|
5321 |
msgstr ""
|
5322 |
|
5323 |
+
#: includes/functions/wcj-functions-country.php:358
|
5324 |
msgid "Switzerland"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
+
#: includes/functions/wcj-functions-country.php:359
|
5328 |
msgid "Syria"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
+
#: includes/functions/wcj-functions-country.php:360
|
5332 |
msgid "Taiwan"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: includes/functions/wcj-functions-country.php:361
|
5336 |
msgid "Tajikistan"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: includes/functions/wcj-functions-country.php:362
|
5340 |
msgid "Tanzania"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: includes/functions/wcj-functions-country.php:363
|
5344 |
msgid "Thailand"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
+
#: includes/functions/wcj-functions-country.php:364
|
5348 |
msgid "Timor-Leste"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: includes/functions/wcj-functions-country.php:365
|
5352 |
msgid "Togo"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
+
#: includes/functions/wcj-functions-country.php:366
|
5356 |
msgid "Tokelau"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
+
#: includes/functions/wcj-functions-country.php:367
|
5360 |
msgid "Tonga"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: includes/functions/wcj-functions-country.php:368
|
5364 |
msgid "Trinidad and Tobago"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
+
#: includes/functions/wcj-functions-country.php:369
|
5368 |
msgid "Tunisia"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
+
#: includes/functions/wcj-functions-country.php:370
|
5372 |
msgid "Turkey"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
+
#: includes/functions/wcj-functions-country.php:371
|
5376 |
msgid "Turkmenistan"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: includes/functions/wcj-functions-country.php:372
|
5380 |
msgid "Turks and Caicos Islands"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: includes/functions/wcj-functions-country.php:373
|
5384 |
msgid "Tuvalu"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: includes/functions/wcj-functions-country.php:374
|
5388 |
msgid "Uganda"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: includes/functions/wcj-functions-country.php:375
|
5392 |
msgid "Ukraine"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: includes/functions/wcj-functions-country.php:376
|
5396 |
msgid "United Arab Emirates"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: includes/functions/wcj-functions-country.php:377
|
5400 |
msgid "United Kingdom (UK)"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: includes/functions/wcj-functions-country.php:378
|
5404 |
msgid "United States (US)"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: includes/functions/wcj-functions-country.php:379
|
5408 |
msgid "Uruguay"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: includes/functions/wcj-functions-country.php:380
|
5412 |
msgid "Uzbekistan"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: includes/functions/wcj-functions-country.php:381
|
5416 |
msgid "Vanuatu"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: includes/functions/wcj-functions-country.php:382
|
5420 |
msgid "Vatican"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: includes/functions/wcj-functions-country.php:383
|
5424 |
msgid "Venezuela"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: includes/functions/wcj-functions-country.php:384
|
5428 |
msgid "Vietnam"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: includes/functions/wcj-functions-country.php:385
|
5432 |
msgid "Wallis and Futuna"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
+
#: includes/functions/wcj-functions-country.php:386
|
5436 |
msgid "Western Sahara"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: includes/functions/wcj-functions-country.php:387
|
5440 |
msgid "Western Samoa"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
+
#: includes/functions/wcj-functions-country.php:388
|
5444 |
msgid "Yemen"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: includes/functions/wcj-functions-country.php:389
|
5448 |
msgid "Zambia"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: includes/functions/wcj-functions-country.php:390
|
5452 |
msgid "Zimbabwe"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: includes/functions/wcj-functions-country.php:391
|
5456 |
msgid "European Union"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: includes/functions/wcj-functions-currencies.php:15
|
5460 |
msgid "United Arab Emirates Dirham"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: includes/functions/wcj-functions-currencies.php:16
|
5464 |
msgid "Afghan afghani"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: includes/functions/wcj-functions-currencies.php:17
|
5468 |
msgid "Albanian lek"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: includes/functions/wcj-functions-currencies.php:18
|
5472 |
msgid "Armenian dram"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: includes/functions/wcj-functions-currencies.php:19
|
5476 |
msgid "Netherlands Antillean gulden"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: includes/functions/wcj-functions-currencies.php:20
|
5480 |
msgid "Angolan kwanza"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: includes/functions/wcj-functions-currencies.php:21
|
5484 |
msgid "Argentine Peso"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: includes/functions/wcj-functions-currencies.php:22
|
5488 |
msgid "Australian Dollars"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: includes/functions/wcj-functions-currencies.php:23
|
5492 |
msgid "Aruban florin"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: includes/functions/wcj-functions-currencies.php:24
|
5496 |
msgid "Azerbaijani manat"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: includes/functions/wcj-functions-currencies.php:25
|
5500 |
msgid "Bosnia and Herzegovina konvertibilna marka"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: includes/functions/wcj-functions-currencies.php:26
|
5504 |
msgid "Barbadian dollar"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: includes/functions/wcj-functions-currencies.php:27
|
5508 |
msgid "Bangladeshi Taka"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: includes/functions/wcj-functions-currencies.php:28
|
5512 |
msgid "Bulgarian Lev"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: includes/functions/wcj-functions-currencies.php:29
|
5516 |
msgid "Bahraini dinar"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: includes/functions/wcj-functions-currencies.php:30
|
5520 |
msgid "Burundi franc"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: includes/functions/wcj-functions-currencies.php:31
|
5524 |
msgid "Belarusian ruble"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: includes/functions/wcj-functions-currencies.php:32
|
5528 |
msgid "Brunei dollar"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: includes/functions/wcj-functions-currencies.php:33
|
5532 |
msgid "Bolivian boliviano"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: includes/functions/wcj-functions-currencies.php:34
|
5536 |
msgid "Brazilian Real"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: includes/functions/wcj-functions-currencies.php:35
|
5540 |
msgid "Bahamian dollar"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: includes/functions/wcj-functions-currencies.php:36
|
5544 |
msgid "Bhutanese ngultrum"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: includes/functions/wcj-functions-currencies.php:37
|
5548 |
msgid "Botswana pula"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
+
#: includes/functions/wcj-functions-currencies.php:38
|
5552 |
msgid "Belize dollar"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: includes/functions/wcj-functions-currencies.php:39
|
5556 |
msgid "Canadian Dollars"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: includes/functions/wcj-functions-currencies.php:40
|
5560 |
msgid "Congolese franc"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: includes/functions/wcj-functions-currencies.php:41
|
5564 |
msgid "Swiss Franc"
|
5565 |
msgstr ""
|
5566 |
|
5567 |
+
#: includes/functions/wcj-functions-currencies.php:42
|
5568 |
msgid "Chilean Peso"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: includes/functions/wcj-functions-currencies.php:43
|
5572 |
msgid "Chinese Yuan"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: includes/functions/wcj-functions-currencies.php:44
|
5576 |
msgid "Colombian Peso"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: includes/functions/wcj-functions-currencies.php:45
|
5580 |
msgid "Costa Rican colon"
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: includes/functions/wcj-functions-currencies.php:46
|
5584 |
msgid "Cuban peso"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: includes/functions/wcj-functions-currencies.php:47
|
5588 |
msgid "Cape Verdean escudo"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: includes/functions/wcj-functions-currencies.php:48
|
5592 |
msgid "Czech Koruna"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: includes/functions/wcj-functions-currencies.php:49
|
5596 |
msgid "Djiboutian franc"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: includes/functions/wcj-functions-currencies.php:50
|
5600 |
msgid "Danish Krone"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: includes/functions/wcj-functions-currencies.php:51
|
5604 |
msgid "Dominican Peso"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: includes/functions/wcj-functions-currencies.php:52
|
5608 |
msgid "Algerian dinar"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: includes/functions/wcj-functions-currencies.php:53
|
5612 |
msgid "Estonian kroon"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: includes/functions/wcj-functions-currencies.php:54
|
5616 |
msgid "Egyptian Pound"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: includes/functions/wcj-functions-currencies.php:55
|
5620 |
msgid "Eritrean nakfa"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: includes/functions/wcj-functions-currencies.php:56
|
5624 |
msgid "Ethiopian birr"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: includes/functions/wcj-functions-currencies.php:57
|
5628 |
msgid "Euros"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: includes/functions/wcj-functions-currencies.php:58
|
5632 |
msgid "Fijian dollar"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: includes/functions/wcj-functions-currencies.php:59
|
5636 |
msgid "Falkland Islands pound"
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: includes/functions/wcj-functions-currencies.php:60
|
5640 |
msgid "Pounds Sterling"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: includes/functions/wcj-functions-currencies.php:61
|
5644 |
msgid "Georgian lari"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: includes/functions/wcj-functions-currencies.php:62
|
5648 |
msgid "Ghanaian cedi"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: includes/functions/wcj-functions-currencies.php:63
|
5652 |
msgid "Gibraltar pound"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: includes/functions/wcj-functions-currencies.php:64
|
5656 |
msgid "Guyanese dollar"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: includes/functions/wcj-functions-currencies.php:65
|
5660 |
msgid "Gambian dalasi"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: includes/functions/wcj-functions-currencies.php:66
|
5664 |
msgid "Guinean franc"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: includes/functions/wcj-functions-currencies.php:67
|
5668 |
+
#: includes/functions/wcj-functions-currencies.php:170
|
5669 |
msgid "Central African CFA franc"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: includes/functions/wcj-functions-currencies.php:68
|
5673 |
msgid "Guatemalan quetzal"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
+
#: includes/functions/wcj-functions-currencies.php:69
|
5677 |
msgid "Hong Kong Dollar"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
+
#: includes/functions/wcj-functions-currencies.php:70
|
5681 |
msgid "Honduran lempira"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#: includes/functions/wcj-functions-currencies.php:71
|
5685 |
msgid "Croatia kuna"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
+
#: includes/functions/wcj-functions-currencies.php:72
|
5689 |
msgid "Haitian gourde"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: includes/functions/wcj-functions-currencies.php:73
|
5693 |
msgid "Hungarian Forint"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: includes/functions/wcj-functions-currencies.php:74
|
5697 |
msgid "Indonesia Rupiah"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: includes/functions/wcj-functions-currencies.php:75
|
5701 |
msgid "Israeli Shekel"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: includes/functions/wcj-functions-currencies.php:76
|
5705 |
msgid "Indian Rupee"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: includes/functions/wcj-functions-currencies.php:77
|
5709 |
msgid "Iraqi dinar"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: includes/functions/wcj-functions-currencies.php:78
|
5713 |
msgid "Iranian rial"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: includes/functions/wcj-functions-currencies.php:79
|
5717 |
msgid "Icelandic krona"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
+
#: includes/functions/wcj-functions-currencies.php:80
|
5721 |
msgid "Yemeni rial"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
+
#: includes/functions/wcj-functions-currencies.php:81
|
5725 |
msgid "Jamaican dollar"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
+
#: includes/functions/wcj-functions-currencies.php:82
|
5729 |
msgid "Jordanian dinar"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: includes/functions/wcj-functions-currencies.php:83
|
5733 |
msgid "Japanese Yen"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: includes/functions/wcj-functions-currencies.php:84
|
5737 |
msgid "Kenyan shilling"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: includes/functions/wcj-functions-currencies.php:85
|
5741 |
msgid "Kyrgyzstani som"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: includes/functions/wcj-functions-currencies.php:86
|
5745 |
msgid "Cambodian riel"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: includes/functions/wcj-functions-currencies.php:87
|
5749 |
msgid "Lao kip"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: includes/functions/wcj-functions-currencies.php:88
|
5753 |
msgid "Cayman Islands dollar"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: includes/functions/wcj-functions-currencies.php:89
|
5757 |
msgid "Comorian franc"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: includes/functions/wcj-functions-currencies.php:90
|
5761 |
msgid "North Korean won"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: includes/functions/wcj-functions-currencies.php:91
|
5765 |
msgid "South Korean Won"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: includes/functions/wcj-functions-currencies.php:92
|
5769 |
msgid "Kuwaiti dinar"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: includes/functions/wcj-functions-currencies.php:93
|
5773 |
msgid "Kazakhstani tenge"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: includes/functions/wcj-functions-currencies.php:94
|
5777 |
msgid "Lao Kip"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: includes/functions/wcj-functions-currencies.php:95
|
5781 |
msgid "Lebanese lira"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: includes/functions/wcj-functions-currencies.php:96
|
5785 |
msgid "Libyan dinar"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: includes/functions/wcj-functions-currencies.php:97
|
5789 |
msgid "Sri Lankan rupee"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: includes/functions/wcj-functions-currencies.php:98
|
5793 |
msgid "Liberian dollar"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: includes/functions/wcj-functions-currencies.php:99
|
5797 |
msgid "Lesotho loti"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: includes/functions/wcj-functions-currencies.php:100
|
5801 |
msgid "Lithuanian litas"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
#: includes/functions/wcj-functions-currencies.php:101
|
5805 |
msgid "Latvian lats"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: includes/functions/wcj-functions-currencies.php:102
|
5809 |
msgid "Moroccan dirham"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: includes/functions/wcj-functions-currencies.php:103
|
5813 |
msgid "Moldovan leu"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: includes/functions/wcj-functions-currencies.php:104
|
5817 |
msgid "Malagasy ariary"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: includes/functions/wcj-functions-currencies.php:105
|
5821 |
msgid "Malaysian ringgit"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: includes/functions/wcj-functions-currencies.php:106
|
5825 |
msgid "Macedonian denar"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
+
#: includes/functions/wcj-functions-currencies.php:107
|
5829 |
msgid "Myanma kyat"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: includes/functions/wcj-functions-currencies.php:108
|
5833 |
msgid "Mongolian tugrik"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: includes/functions/wcj-functions-currencies.php:109
|
5837 |
msgid "Macanese pataca"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: includes/functions/wcj-functions-currencies.php:110
|
5841 |
msgid "Mauritanian ouguiya"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: includes/functions/wcj-functions-currencies.php:111
|
5845 |
msgid "Mauritian rupee"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
+
#: includes/functions/wcj-functions-currencies.php:112
|
5849 |
msgid "Maldivian rufiyaa"
|
5850 |
msgstr ""
|
5851 |
|
5852 |
+
#: includes/functions/wcj-functions-currencies.php:113
|
5853 |
msgid "Malawian kwacha"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
+
#: includes/functions/wcj-functions-currencies.php:114
|
5857 |
msgid "Mexican Peso"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
+
#: includes/functions/wcj-functions-currencies.php:115
|
5861 |
msgid "Malaysian Ringgits"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
+
#: includes/functions/wcj-functions-currencies.php:116
|
5865 |
msgid "Mozambican metical"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
+
#: includes/functions/wcj-functions-currencies.php:117
|
5869 |
msgid "Namibian dollar"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
+
#: includes/functions/wcj-functions-currencies.php:118
|
5873 |
msgid "Nigerian Naira"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: includes/functions/wcj-functions-currencies.php:119
|
5877 |
msgid "Nicaraguan cordoba"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: includes/functions/wcj-functions-currencies.php:120
|
5881 |
msgid "Norwegian Krone"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: includes/functions/wcj-functions-currencies.php:121
|
5885 |
msgid "Nepali Rupee"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
+
#: includes/functions/wcj-functions-currencies.php:122
|
5889 |
msgid "New Zealand Dollar"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: includes/functions/wcj-functions-currencies.php:123
|
5893 |
msgid "Omani rial"
|
5894 |
msgstr ""
|
5895 |
|
5896 |
+
#: includes/functions/wcj-functions-currencies.php:124
|
5897 |
msgid "Panamanian balboa"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
+
#: includes/functions/wcj-functions-currencies.php:125
|
5901 |
msgid "Peruvian nuevo sol"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: includes/functions/wcj-functions-currencies.php:126
|
5905 |
msgid "Papua New Guinean kina"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: includes/functions/wcj-functions-currencies.php:127
|
5909 |
msgid "Philippine Pesos"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: includes/functions/wcj-functions-currencies.php:128
|
5913 |
msgid "Paraguayan guarani"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: includes/functions/wcj-functions-currencies.php:129
|
5917 |
msgid "Pakistani Rupee"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: includes/functions/wcj-functions-currencies.php:130
|
5921 |
msgid "Polish Zloty"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: includes/functions/wcj-functions-currencies.php:131
|
5925 |
msgid "Paraguayan Guaraní"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: includes/functions/wcj-functions-currencies.php:132
|
5929 |
msgid "Qatari riyal"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: includes/functions/wcj-functions-currencies.php:133
|
5933 |
msgid "Chinese renminbi"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: includes/functions/wcj-functions-currencies.php:134
|
5937 |
msgid "Romanian Leu"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: includes/functions/wcj-functions-currencies.php:135
|
5941 |
msgid "Serbian dinar"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: includes/functions/wcj-functions-currencies.php:136
|
5945 |
msgid "Russian Ruble"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: includes/functions/wcj-functions-currencies.php:137
|
5949 |
msgid "Rwandan franc"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: includes/functions/wcj-functions-currencies.php:138
|
5953 |
msgid "Saudi Riyal"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: includes/functions/wcj-functions-currencies.php:139
|
5957 |
msgid "Solomon Islands dollar"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: includes/functions/wcj-functions-currencies.php:140
|
5961 |
msgid "Seychellois rupee"
|
5962 |
msgstr ""
|
5963 |
|
5964 |
+
#: includes/functions/wcj-functions-currencies.php:141
|
5965 |
msgid "Sudanese pound"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
+
#: includes/functions/wcj-functions-currencies.php:142
|
5969 |
msgid "Swedish Krona"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
+
#: includes/functions/wcj-functions-currencies.php:143
|
5973 |
msgid "Singapore Dollar"
|
5974 |
msgstr ""
|
5975 |
|
5976 |
+
#: includes/functions/wcj-functions-currencies.php:144
|
5977 |
msgid "Saint Helena pound"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
+
#: includes/functions/wcj-functions-currencies.php:145
|
5981 |
msgid "Syrian pound"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: includes/functions/wcj-functions-currencies.php:146
|
5985 |
msgid "Slovak koruna"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: includes/functions/wcj-functions-currencies.php:147
|
5989 |
msgid "Sierra Leonean leone"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: includes/functions/wcj-functions-currencies.php:148
|
5993 |
msgid "Somali shilling"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: includes/functions/wcj-functions-currencies.php:149
|
5997 |
msgid "Surinamese dollar"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
+
#: includes/functions/wcj-functions-currencies.php:150
|
6001 |
msgid "Sao Tome and Principe dobra"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: includes/functions/wcj-functions-currencies.php:151
|
6005 |
msgid "Swazi lilangeni"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: includes/functions/wcj-functions-currencies.php:152
|
6009 |
msgid "Thai Baht"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: includes/functions/wcj-functions-currencies.php:153
|
6013 |
msgid "Tajikistani somoni"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: includes/functions/wcj-functions-currencies.php:154
|
6017 |
msgid "Turkmen manat"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
+
#: includes/functions/wcj-functions-currencies.php:155
|
6021 |
msgid "Tunisian dinar"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
+
#: includes/functions/wcj-functions-currencies.php:156
|
6025 |
msgid "Paanga"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
+
#: includes/functions/wcj-functions-currencies.php:157
|
6029 |
msgid "Turkish Lira"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
+
#: includes/functions/wcj-functions-currencies.php:158
|
6033 |
msgid "Trinidad and Tobago dollar"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
+
#: includes/functions/wcj-functions-currencies.php:159
|
6037 |
msgid "Taiwan New Dollars"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
+
#: includes/functions/wcj-functions-currencies.php:160
|
6041 |
msgid "Tanzanian shilling"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
+
#: includes/functions/wcj-functions-currencies.php:161
|
6045 |
msgid "Ukrainian Hryvnia"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
+
#: includes/functions/wcj-functions-currencies.php:162
|
6049 |
msgid "Ugandan shilling"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: includes/functions/wcj-functions-currencies.php:163
|
6053 |
msgid "Uruguayan peso"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: includes/functions/wcj-functions-currencies.php:164
|
6057 |
msgid "US Dollars"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
+
#: includes/functions/wcj-functions-currencies.php:165
|
6061 |
msgid "Uzbekistani som"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: includes/functions/wcj-functions-currencies.php:166
|
6065 |
msgid "Venezuelan bolivar"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
+
#: includes/functions/wcj-functions-currencies.php:167
|
6069 |
msgid "Vietnamese Dong"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: includes/functions/wcj-functions-currencies.php:168
|
6073 |
msgid "Vanuatu vatu"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: includes/functions/wcj-functions-currencies.php:169
|
6077 |
msgid "Samoan tala"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: includes/functions/wcj-functions-currencies.php:171
|
6081 |
msgid "East Caribbean dollar"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: includes/functions/wcj-functions-currencies.php:172
|
6085 |
msgid "Special Drawing Rights"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
#: includes/functions/wcj-functions-currencies.php:173
|
6089 |
msgid "West African CFA franc"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: includes/functions/wcj-functions-currencies.php:174
|
6093 |
msgid "CFP franc"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
+
#: includes/functions/wcj-functions-currencies.php:175
|
6097 |
msgid "South African rand"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
+
#: includes/functions/wcj-functions-currencies.php:176
|
6101 |
msgid "Zambian kwacha"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
+
#: includes/functions/wcj-functions-currencies.php:177
|
6105 |
msgid "Zimbabwean dollar"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
+
#: includes/functions/wcj-functions-currencies.php:178
|
6109 |
msgid "Bitcoin"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: includes/functions/wcj-functions-currencies.php:179
|
6113 |
msgid "Ethereum"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: includes/functions/wcj-functions-currencies.php:180
|
6117 |
msgid "myCred"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: includes/functions/wcj-functions-exchange-rates.php:21
|
6121 |
msgid "Yahoo"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: includes/functions/wcj-functions-exchange-rates.php:22
|
6125 |
msgid "European Central Bank (ECB)"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: includes/functions/wcj-functions-exchange-rates.php:23
|
6129 |
msgid "TCMB"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: includes/functions/wcj-functions-exchange-rates.php:24
|
6133 |
+
msgid "Fixer.io"
|
6134 |
+
msgstr ""
|
6135 |
+
|
6136 |
+
#: includes/functions/wcj-functions-general.php:377
|
6137 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:147
|
6138 |
msgid "You have Free delivery"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: includes/functions/wcj-functions-general.php:398
|
6142 |
msgid "Before cart"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
+
#: includes/functions/wcj-functions-general.php:399
|
6146 |
msgid "Before cart table"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
+
#: includes/functions/wcj-functions-general.php:400
|
6150 |
msgid "Before cart contents"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
+
#: includes/functions/wcj-functions-general.php:401
|
6154 |
msgid "Cart contents"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: includes/functions/wcj-functions-general.php:402
|
6158 |
msgid "Cart coupon"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: includes/functions/wcj-functions-general.php:403
|
6162 |
msgid "Cart actions"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: includes/functions/wcj-functions-general.php:404
|
6166 |
msgid "After cart contents"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: includes/functions/wcj-functions-general.php:405
|
6170 |
msgid "After cart table"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: includes/functions/wcj-functions-general.php:406
|
6174 |
msgid "Cart collaterals"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: includes/functions/wcj-functions-general.php:407
|
6178 |
msgid "After cart"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: includes/functions/wcj-functions-general.php:409
|
6182 |
msgid "Before cart totals"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: includes/functions/wcj-functions-general.php:410
|
6186 |
msgid "Cart totals: Before shipping"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: includes/functions/wcj-functions-general.php:411
|
6190 |
msgid "Cart totals: After shipping"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: includes/functions/wcj-functions-general.php:412
|
6194 |
msgid "Cart totals: Before order total"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: includes/functions/wcj-functions-general.php:413
|
6198 |
msgid "Cart totals: After order total"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
+
#: includes/functions/wcj-functions-general.php:414
|
6202 |
msgid "Proceed to checkout"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: includes/functions/wcj-functions-general.php:415
|
6206 |
msgid "After cart totals"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: includes/functions/wcj-functions-general.php:417
|
6210 |
msgid "Before shipping calculator"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
+
#: includes/functions/wcj-functions-general.php:418
|
6214 |
msgid "After shipping calculator"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
+
#: includes/functions/wcj-functions-general.php:420
|
6218 |
msgid "If cart is empty"
|
6219 |
msgstr ""
|
6220 |
|
6221 |
+
#: includes/functions/wcj-functions-invoicing.php:209
|
6222 |
msgid "Invoice"
|
6223 |
msgstr ""
|
6224 |
|
6225 |
+
#: includes/functions/wcj-functions-invoicing.php:215
|
6226 |
msgid "Proforma Invoice"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
+
#: includes/functions/wcj-functions-invoicing.php:221
|
6230 |
msgid "Packing Slip"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
+
#: includes/functions/wcj-functions-invoicing.php:227
|
6234 |
msgid "Credit Note"
|
6235 |
msgstr ""
|
6236 |
|
6237 |
+
#: includes/functions/wcj-functions-invoicing.php:237
|
6238 |
msgid "Custom Document"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
+
#: includes/functions/wcj-functions-reports.php:22
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6242 |
msgid "Daily Total Sum"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
+
#: includes/functions/wcj-functions-reports.php:23
|
6246 |
msgid "Daily Total Quantity"
|
6247 |
msgstr ""
|
6248 |
|
6249 |
+
#: includes/functions/wcj-functions-reports.php:26
|
6250 |
msgid "Item Title"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: includes/functions/wcj-functions-reports.php:27
|
6254 |
msgid "Quantity"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: includes/functions/wcj-functions-reports.php:28
|
6258 |
msgid "Sum"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
+
#: includes/functions/wcj-functions-reports.php:30
|
6262 |
msgid "Last Sale Date"
|
6263 |
msgstr ""
|
6264 |
|
6265 |
+
#: includes/functions/wcj-functions-reports.php:31
|
6266 |
msgid "Last Sale Order ID"
|
6267 |
msgstr ""
|
6268 |
|
6269 |
+
#: includes/functions/wcj-functions-reports.php:32
|
6270 |
msgid "Last Sale Order Status"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
+
#: includes/functions/wcj-functions-reports.php:80
|
6274 |
msgid "Last 14 days"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: includes/functions/wcj-functions-reports.php:85
|
6278 |
msgid "Last 30 days"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
+
#: includes/functions/wcj-functions-reports.php:90
|
6282 |
msgid "Last 3 months"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
+
#: includes/functions/wcj-functions-reports.php:95
|
6286 |
msgid "Last 6 months"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: includes/functions/wcj-functions-reports.php:100
|
6290 |
msgid "Last 12 months"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
+
#: includes/functions/wcj-functions-reports.php:105
|
6294 |
msgid "Last 24 months"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
+
#: includes/functions/wcj-functions-reports.php:110
|
6298 |
msgid "Last 36 months"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: includes/functions/wcj-functions-reports.php:115
|
6302 |
msgid "Same days last month"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
+
#: includes/functions/wcj-functions-reports.php:120
|
6306 |
msgid "Same days last year"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
+
#: includes/functions/wcj-functions-reports.php:125
|
6310 |
msgid "Last year"
|
6311 |
msgstr ""
|
6312 |
|
6313 |
+
#: includes/functions/wcj-functions-reports.php:130
|
6314 |
msgid "Yesterday"
|
6315 |
msgstr ""
|
6316 |
|
6317 |
+
#: includes/functions/wcj-functions-reports.php:135
|
6318 |
msgid "Today"
|
6319 |
msgstr ""
|
6320 |
|
6321 |
+
#: includes/functions/wcj-functions-users.php:118
|
6322 |
+
#: includes/functions/wcj-functions-users.php:138
|
6323 |
msgid "Guest"
|
6324 |
msgstr ""
|
6325 |
|
6377 |
msgstr ""
|
6378 |
|
6379 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:108
|
6380 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:36
|
6381 |
msgid "Minimum order amount"
|
6382 |
msgstr ""
|
6383 |
|
6490 |
#: includes/settings/wcj-settings-checkout-files-upload.php:39
|
6491 |
#: includes/settings/wcj-settings-export.php:70
|
6492 |
#: includes/settings/wcj-settings-export.php:138
|
6493 |
+
#: includes/settings/wcj-settings-export.php:220
|
6494 |
#: includes/settings/wcj-settings-global-discount.php:50
|
6495 |
#: includes/settings/wcj-settings-orders.php:96
|
6496 |
#: includes/settings/wcj-settings-product-by-user.php:149
|
6497 |
+
#: includes/settings/wcj-settings-product-listings.php:283
|
6498 |
#: includes/settings/wcj-settings-products-xml.php:71
|
6499 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:37
|
6500 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:21
|
6512 |
|
6513 |
#: includes/input-fields/wcj-product-input-fields-options.php:32
|
6514 |
#: includes/settings/wcj-settings-cart-customization.php:50
|
6515 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:120
|
6516 |
#: includes/settings/wcj-settings-more-button-labels.php:19
|
6517 |
+
#: includes/settings/wcj-settings-product-addons.php:82
|
6518 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:53
|
6519 |
msgid "Text"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
#: includes/input-fields/wcj-product-input-fields-options.php:33
|
6523 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:121
|
6524 |
msgid "Textarea"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
#: includes/input-fields/wcj-product-input-fields-options.php:34
|
6528 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:122
|
6529 |
msgid "Number"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
#: includes/input-fields/wcj-product-input-fields-options.php:35
|
6533 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:123
|
6534 |
#: includes/settings/wcj-settings-product-addons.php:79
|
6535 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:50
|
6536 |
msgid "Checkbox"
|
6537 |
msgstr ""
|
6538 |
|
6539 |
#: includes/input-fields/wcj-product-input-fields-options.php:37
|
6540 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:124
|
6541 |
msgid "Datepicker"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
#: includes/input-fields/wcj-product-input-fields-options.php:38
|
6545 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:125
|
6546 |
msgid "Weekpicker"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
#: includes/input-fields/wcj-product-input-fields-options.php:39
|
6550 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:126
|
6551 |
msgid "Timepicker"
|
6552 |
msgstr ""
|
6553 |
|
6554 |
#: includes/input-fields/wcj-product-input-fields-options.php:40
|
6555 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:127
|
6556 |
msgid "Select"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
#: includes/input-fields/wcj-product-input-fields-options.php:41
|
6560 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:128
|
6561 |
msgid "Radio"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
#: includes/input-fields/wcj-product-input-fields-options.php:42
|
6565 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:129
|
6566 |
msgid "Password"
|
6567 |
msgstr ""
|
6568 |
|
6569 |
#: includes/input-fields/wcj-product-input-fields-options.php:46
|
6570 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:133
|
6571 |
msgid "Phone"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
#: includes/input-fields/wcj-product-input-fields-options.php:57
|
6575 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:150
|
6576 |
#: includes/settings/wcj-settings-eu-vat-number.php:27
|
6577 |
+
#: includes/settings/wcj-settings-product-addons.php:126
|
6578 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:91
|
6579 |
msgid "Placeholder"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
#: includes/input-fields/wcj-product-input-fields-options.php:63
|
6583 |
#: includes/settings/wcj-settings-checkout-core-fields.php:72
|
6584 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:137
|
6585 |
#: includes/settings/wcj-settings-checkout-files-upload.php:45
|
6586 |
#: includes/settings/wcj-settings-eu-vat-number.php:49
|
6587 |
#: includes/settings/wcj-settings-product-by-user.php:155
|
6617 |
msgstr ""
|
6618 |
|
6619 |
#: includes/input-fields/wcj-product-input-fields-options.php:104
|
6620 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:225
|
6621 |
msgid "Not Checked"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
#: includes/input-fields/wcj-product-input-fields-options.php:105
|
6625 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:226
|
6626 |
#: includes/settings/wcj-settings-checkout-customization.php:26
|
6627 |
msgid "Checked"
|
6628 |
msgstr ""
|
6665 |
msgstr ""
|
6666 |
|
6667 |
#: includes/input-fields/wcj-product-input-fields-options.php:126
|
6668 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:232
|
6669 |
msgid "Leave blank to use your current WordPress format"
|
6670 |
msgstr ""
|
6671 |
|
6717 |
msgstr ""
|
6718 |
|
6719 |
#: includes/input-fields/wcj-product-input-fields-options.php:167
|
6720 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:270
|
6721 |
msgid "Sunday"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
#: includes/input-fields/wcj-product-input-fields-options.php:168
|
6725 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:271
|
6726 |
msgid "Monday"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
#: includes/input-fields/wcj-product-input-fields-options.php:169
|
6730 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:272
|
6731 |
msgid "Tuesday"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
#: includes/input-fields/wcj-product-input-fields-options.php:170
|
6735 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:273
|
6736 |
msgid "Wednesday"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
#: includes/input-fields/wcj-product-input-fields-options.php:171
|
6740 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:274
|
6741 |
msgid "Thursday"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
#: includes/input-fields/wcj-product-input-fields-options.php:172
|
6745 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:275
|
6746 |
msgid "Friday"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
#: includes/input-fields/wcj-product-input-fields-options.php:173
|
6750 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:276
|
6751 |
msgid "Saturday"
|
6752 |
msgstr ""
|
6753 |
|
6789 |
msgstr ""
|
6790 |
|
6791 |
#: includes/input-fields/wcj-product-input-fields-options.php:200
|
6792 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:287
|
6793 |
msgid "Timepicker: Interval"
|
6794 |
msgstr ""
|
6795 |
|
6798 |
msgstr ""
|
6799 |
|
6800 |
#: includes/input-fields/wcj-product-input-fields-options.php:207
|
6801 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:193
|
6802 |
msgid "Select/Radio: Options"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:60
|
6806 |
msgid "Invoices successfully renumerated!"
|
6807 |
msgstr ""
|
6808 |
|
6809 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:62
|
6810 |
msgid "Please select at least one order status."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:67
|
6814 |
msgid "Booster - Renumerate Invoices"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:68
|
6818 |
msgid ""
|
6819 |
"The tool renumerates invoices from choosen date. Invoice number format is "
|
6820 |
"set in WooCommerce > Settings > Booster > PDF Invoicing & Packing Slips > "
|
6821 |
"Numbering."
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:75
|
6825 |
#: includes/settings/meta-box/wcj-settings-meta-box-crowdfunding.php:23
|
6826 |
msgid "Start Date"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:77
|
6830 |
msgid "Date to start renumerating. Leave blank to renumerate all invoices."
|
6831 |
msgstr ""
|
6832 |
|
6833 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:82
|
6834 |
msgid "End Date"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:84
|
6838 |
msgid "Date to end renumerating. Leave blank to renumerate all invoices."
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:89
|
6842 |
msgid "Start Number"
|
6843 |
msgstr ""
|
6844 |
|
6845 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:91
|
6846 |
msgid ""
|
6847 |
"Counter to start renumerating. Leave 0 to continue from current counter."
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:96
|
6851 |
msgid "Delete All"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:98
|
6855 |
+
msgid "Clear all invoices before renumerating"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:110
|
6859 |
#: includes/pdf-invoices/class-wcj-pdf-invoicing-report-tool.php:121
|
6860 |
msgid "Document Type"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:119
|
6864 |
msgid "Order Statuses"
|
6865 |
msgstr ""
|
6866 |
|
6867 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:123
|
6868 |
msgid "Renumerate invoices"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:135
|
6872 |
msgid "Results"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:216
|
6876 |
#, php-format
|
6877 |
msgid "Total documents created: %d"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: includes/pdf-invoices/class-wcj-pdf-invoicing-renumerate-tool.php:217
|
6881 |
#, php-format
|
6882 |
msgid "Total documents deleted: %d"
|
6883 |
msgstr ""
|
7086 |
msgid "Currency rates deleted."
|
7087 |
msgstr ""
|
7088 |
|
7089 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:84
|
7090 |
msgid "Days"
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:85
|
7094 |
msgid "Total Orders"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:86
|
7098 |
msgid "Orders Average / Day"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:87
|
7102 |
#: includes/reports/wcj-class-reports-sales.php:325
|
7103 |
msgid "Total Sum"
|
7104 |
msgstr ""
|
7105 |
|
7106 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:88
|
7107 |
msgid "Total Sum (excl. TAX)"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:89
|
7111 |
msgid "Average / Order (excl. TAX)"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:90
|
7115 |
msgid "Average / Day (excl. TAX)"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:91
|
7119 |
msgid "Currency Rates"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:92
|
7123 |
msgid "Orders by Currency"
|
7124 |
msgstr ""
|
7125 |
|
7126 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:233
|
7127 |
+
msgid "Grab average rate"
|
7128 |
+
msgstr ""
|
7129 |
+
|
7130 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:277
|
7131 |
msgid "Totals"
|
7132 |
msgstr ""
|
7133 |
|
7134 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:319
|
7135 |
msgid "Report currency"
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:334
|
7139 |
#, php-format
|
7140 |
msgid "Report generated in: %s s"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:337
|
7144 |
msgid "Save Currency Rates"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: includes/reports/wcj-class-reports-monthly-sales.php:341
|
7148 |
msgid "Reset Currency Rates"
|
7149 |
msgstr ""
|
7150 |
|
7331 |
#: includes/settings/wcj-settings-add-to-cart.php:99
|
7332 |
#: includes/settings/wcj-settings-add-to-cart.php:117
|
7333 |
#: includes/settings/wcj-settings-general.php:167
|
|
|
|
|
7334 |
#: includes/settings/wcj-settings-product-images.php:19
|
7335 |
#: includes/settings/wcj-settings-product-images.php:95
|
7336 |
#: includes/settings/wcj-settings-shipping-calculator.php:69
|
7337 |
+
#: includes/settings/wcj-settings-shipping-options.php:96
|
7338 |
+
#: includes/settings/wcj-settings-shipping-options.php:142
|
7339 |
#: includes/settings/wcj-settings-sorting.php:20
|
7340 |
#: includes/settings/wcj-settings-sorting.php:99
|
7341 |
#: includes/settings/wcj-settings-sorting.php:123
|
7511 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:16
|
7512 |
#: includes/settings/wcj-settings-checkout-customization.php:14
|
7513 |
#: includes/settings/wcj-settings-checkout-files-upload.php:17
|
7514 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:25
|
7515 |
#: includes/settings/wcj-settings-custom-css.php:14
|
7516 |
#: includes/settings/wcj-settings-custom-js.php:14
|
7517 |
#: includes/settings/wcj-settings-empty-cart.php:14
|
7522 |
#: includes/settings/wcj-settings-payment-gateways-icons.php:14
|
7523 |
#: includes/settings/wcj-settings-payment-gateways-per-category.php:18
|
7524 |
#: includes/settings/wcj-settings-price-by-user-role.php:14
|
7525 |
+
#: includes/settings/wcj-settings-product-addons.php:157
|
7526 |
#: includes/settings/wcj-settings-product-bookings.php:86
|
7527 |
#: includes/settings/wcj-settings-product-by-user-role.php:14
|
7528 |
#: includes/settings/wcj-settings-product-by-user.php:59
|
7770 |
#: includes/settings/wcj-settings-emails-verification.php:14
|
7771 |
#: includes/settings/wcj-settings-multicurrency.php:17
|
7772 |
#: includes/settings/wcj-settings-offer-price.php:14
|
7773 |
+
#: includes/settings/wcj-settings-order-quantities.php:131
|
7774 |
#: includes/settings/wcj-settings-payment-gateways-min-max.php:15
|
7775 |
#: includes/settings/wcj-settings-price-formats.php:15
|
7776 |
msgid "General Options"
|
7865 |
msgstr ""
|
7866 |
|
7867 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:35
|
7868 |
+
msgid "Emails Fields Template"
|
7869 |
+
msgstr ""
|
7870 |
+
|
7871 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:36
|
7872 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:62
|
7873 |
+
msgid "Before the fields"
|
7874 |
msgstr ""
|
7875 |
|
7876 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:42
|
7877 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:68
|
7878 |
+
msgid "Each field"
|
7879 |
msgstr ""
|
7880 |
|
7881 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:48
|
7882 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:74
|
7883 |
+
msgid "After the fields"
|
7884 |
+
msgstr ""
|
7885 |
+
|
7886 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:54
|
7887 |
+
msgid ""
|
7888 |
+
"Add All Fields to \"Order Received\" (i.e. \"Thank You\") and \"View Order\" "
|
7889 |
+
"Pages"
|
7890 |
+
msgstr ""
|
7891 |
+
|
7892 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:61
|
7893 |
+
msgid "\"Order Received\" Fields Template"
|
7894 |
+
msgstr ""
|
7895 |
+
|
7896 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:80
|
7897 |
+
msgid "Custom Fields Number"
|
7898 |
+
msgstr ""
|
7899 |
+
|
7900 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:81
|
7901 |
#: includes/settings/wcj-settings-product-input-fields.php:60
|
7902 |
msgid "Click Save changes after you change this number."
|
7903 |
msgstr ""
|
7904 |
|
7905 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:101
|
7906 |
msgid "Custom Field"
|
7907 |
msgstr ""
|
7908 |
|
7909 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:131
|
7910 |
msgid "State"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:143
|
7914 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:82
|
7915 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:256
|
7916 |
+
#: includes/settings/wcj-settings-offer-price.php:43
|
7917 |
+
#: includes/settings/wcj-settings-offer-price.php:115
|
7918 |
+
#: includes/settings/wcj-settings-offer-price.php:155
|
7919 |
+
#: includes/settings/wcj-settings-offer-price.php:163
|
7920 |
+
#: includes/settings/wcj-settings-offer-price.php:171
|
7921 |
+
#: includes/settings/wcj-settings-offer-price.php:179
|
7922 |
+
#: includes/settings/wcj-settings-orders.php:103
|
7923 |
+
#: includes/settings/wcj-settings-product-listings.php:290
|
7924 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:139
|
7925 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:211
|
7926 |
+
msgid "Label"
|
7927 |
+
msgstr ""
|
7928 |
+
|
7929 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:164
|
7930 |
msgid "Section"
|
7931 |
msgstr ""
|
7932 |
|
7933 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:169
|
7934 |
#: includes/settings/wcj-settings-checkout-custom-info.php:55
|
7935 |
#: includes/settings/wcj-settings-empty-cart.php:58
|
7936 |
#: includes/settings/wcj-settings-left-to-free-shipping.php:124
|
7937 |
msgid "Billing"
|
7938 |
msgstr ""
|
7939 |
|
7940 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:176
|
7941 |
#: includes/settings/wcj-settings-eu-vat-number.php:63
|
7942 |
msgid "Class"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:181
|
7946 |
#: includes/settings/wcj-settings-eu-vat-number.php:68
|
7947 |
msgid "Wide"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:182
|
7951 |
#: includes/settings/wcj-settings-eu-vat-number.php:69
|
7952 |
msgid "First"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:183
|
7956 |
#: includes/settings/wcj-settings-eu-vat-number.php:70
|
7957 |
msgid "Last"
|
7958 |
msgstr ""
|
7959 |
|
7960 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:187
|
7961 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:56
|
7962 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:207
|
7963 |
+
msgid "Clear"
|
7964 |
+
msgstr ""
|
7965 |
+
|
7966 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:194
|
7967 |
msgid "One option per line"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:201
|
7971 |
msgid "Select: Use select2 Library"
|
7972 |
msgstr ""
|
7973 |
|
7974 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:209
|
7975 |
msgid "Checkbox: Value for ON"
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:215
|
7979 |
msgid "Checkbox: Value for OFF"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:221
|
7983 |
msgid "Checkbox: Default Value"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:230
|
7987 |
msgid "Datepicker/Weekpicker: Date Format"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:231
|
7991 |
msgid ""
|
7992 |
"Visit <a href=\"https://codex.wordpress.org/Formatting_Date_and_Time\" "
|
7993 |
"target=\"_blank\">documentation on date and time formatting</a> for valid "
|
7994 |
"date formats"
|
7995 |
msgstr ""
|
7996 |
|
7997 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:238
|
7998 |
msgid "Datepicker/Weekpicker: Min Date"
|
7999 |
msgstr ""
|
8000 |
|
8001 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:239
|
8002 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:246
|
8003 |
msgid "days"
|
8004 |
msgstr ""
|
8005 |
|
8006 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:245
|
8007 |
msgid "Datepicker/Weekpicker: Max Date"
|
8008 |
msgstr ""
|
8009 |
|
8010 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:252
|
8011 |
msgid "Datepicker/Weekpicker: Add Year Selector"
|
8012 |
msgstr ""
|
8013 |
|
8014 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:258
|
8015 |
msgid "Datepicker/Weekpicker: Year Selector: Year Range"
|
8016 |
msgstr ""
|
8017 |
|
8018 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:259
|
8019 |
msgid ""
|
8020 |
"The range of years displayed in the year drop-down: either relative to "
|
8021 |
"today's year (\"-nn:+nn\"), relative to the currently selected year (\"c-nn:c"
|
8024 |
"restrict which dates may be selected use the minDate and/or maxDate options."
|
8025 |
msgstr ""
|
8026 |
|
8027 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:265
|
8028 |
msgid "Datepicker/Weekpicker: First Week Day"
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:280
|
8032 |
msgid "Timepicker: Time Format"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:281
|
8036 |
msgid ""
|
8037 |
"Visit <a href=\"http://timepicker.co/options/\" target=\"_blank\">timepicker "
|
8038 |
"options page</a> for valid time formats"
|
8039 |
msgstr ""
|
8040 |
|
8041 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:288
|
8042 |
msgid "minutes"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:294
|
8046 |
#: includes/settings/wcj-settings-product-listings.php:50
|
8047 |
msgid "Exclude Categories"
|
8048 |
msgstr ""
|
8049 |
|
8050 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:295
|
8051 |
msgid "Hide this field if there is a product of selected category in cart."
|
8052 |
msgstr ""
|
8053 |
|
8054 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:303
|
8055 |
msgid "Include Categories"
|
8056 |
msgstr ""
|
8057 |
|
8058 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:304
|
8059 |
msgid ""
|
8060 |
"Show this field only if there is a product of selected category in cart."
|
8061 |
msgstr ""
|
8062 |
|
8063 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:312
|
8064 |
#: includes/settings/wcj-settings-global-discount.php:137
|
8065 |
+
#: includes/settings/wcj-settings-product-addons.php:140
|
8066 |
#: includes/settings/wcj-settings-related-products.php:223
|
8067 |
msgid "Exclude Products"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:313
|
8071 |
msgid "Hide this field if there is a selected product in cart."
|
8072 |
msgstr ""
|
8073 |
|
8074 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:321
|
8075 |
#: includes/settings/wcj-settings-global-discount.php:126
|
8076 |
#: includes/settings/wcj-settings-related-products.php:212
|
8077 |
msgid "Include Products"
|
8078 |
msgstr ""
|
8079 |
|
8080 |
+
#: includes/settings/wcj-settings-checkout-custom-fields.php:322
|
8081 |
msgid "Show this field only if there is a selected product in cart."
|
8082 |
msgstr ""
|
8083 |
|
8410 |
msgstr ""
|
8411 |
|
8412 |
#: includes/settings/wcj-settings-checkout-files-upload.php:249
|
8413 |
+
#: includes/settings/wcj-settings-product-addons.php:170
|
8414 |
+
#: includes/settings/wcj-settings-product-addons.php:193
|
8415 |
msgid "Before"
|
8416 |
msgstr ""
|
8417 |
|
8422 |
#: includes/settings/wcj-settings-checkout-files-upload.php:264
|
8423 |
#: includes/settings/wcj-settings-export.php:68
|
8424 |
#: includes/settings/wcj-settings-export.php:136
|
8425 |
+
#: includes/settings/wcj-settings-export.php:218
|
8426 |
msgid "Field"
|
8427 |
msgstr ""
|
8428 |
|
8431 |
msgstr ""
|
8432 |
|
8433 |
#: includes/settings/wcj-settings-checkout-files-upload.php:272
|
8434 |
+
#: includes/settings/wcj-settings-product-addons.php:185
|
8435 |
+
#: includes/settings/wcj-settings-product-addons.php:208
|
8436 |
msgid "After"
|
8437 |
msgstr ""
|
8438 |
|
8439 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:285
|
8440 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:203
|
8441 |
+
#: includes/settings/wcj-settings-general.php:76
|
8442 |
+
#: includes/settings/wcj-settings-product-custom-info.php:188
|
8443 |
+
msgid "Advanced Options"
|
8444 |
+
msgstr ""
|
8445 |
+
|
8446 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:290
|
8447 |
+
msgid "Block Potentially Harmful Files"
|
8448 |
+
msgstr ""
|
8449 |
+
|
8450 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:297
|
8451 |
+
msgid "Potentially Harmful File Extensions"
|
8452 |
+
msgstr ""
|
8453 |
+
|
8454 |
+
#: includes/settings/wcj-settings-checkout-files-upload.php:298
|
8455 |
+
#, php-format
|
8456 |
+
msgid "List of file extensions separated by vertical bar %s."
|
8457 |
+
msgstr ""
|
8458 |
+
|
8459 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:15
|
8460 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:16
|
8461 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:17
|
8462 |
+
msgid "Hash"
|
8463 |
+
msgstr ""
|
8464 |
+
|
8465 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:15
|
8466 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:16
|
8467 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:17
|
8468 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:18
|
8469 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:19
|
8470 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:20
|
8471 |
+
#, php-format
|
8472 |
+
msgid "length %d"
|
8473 |
+
msgstr ""
|
8474 |
+
|
8475 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:18
|
8476 |
+
msgid "Random letters and numbers"
|
8477 |
+
msgstr ""
|
8478 |
+
|
8479 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:19
|
8480 |
+
msgid "Random letters"
|
8481 |
+
msgstr ""
|
8482 |
+
|
8483 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:20
|
8484 |
+
msgid "Random numbers"
|
8485 |
+
msgstr ""
|
8486 |
+
|
8487 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:30
|
8488 |
+
msgid "Generate Coupon Code Automatically"
|
8489 |
+
msgstr ""
|
8490 |
+
|
8491 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:31
|
8492 |
+
msgid ""
|
8493 |
+
"When enabled, this will generate coupon code automatically when adding new "
|
8494 |
+
"coupon."
|
8495 |
+
msgstr ""
|
8496 |
+
|
8497 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:38
|
8498 |
+
msgid "Algorithm"
|
8499 |
+
msgstr ""
|
8500 |
+
|
8501 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:43
|
8502 |
+
#, php-format
|
8503 |
+
msgid "Algorithms: %s."
|
8504 |
+
msgstr ""
|
8505 |
+
|
8506 |
+
#: includes/settings/wcj-settings-coupon-code-generator.php:49
|
8507 |
+
msgid ""
|
8508 |
+
"Length value will be ignored if set above the maximum length for selected "
|
8509 |
+
"algorithm. Set to zero to use full length for selected algorithm."
|
8510 |
+
msgstr ""
|
8511 |
+
|
8512 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:18
|
8513 |
#, php-format
|
8514 |
msgid "%s till next update."
|
8618 |
#: includes/settings/wcj-settings-currency-external-products.php:20
|
8619 |
#: includes/settings/wcj-settings-currency-per-product.php:163
|
8620 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:94
|
8621 |
+
#: includes/settings/wcj-settings-multicurrency.php:135
|
8622 |
#: includes/settings/wcj-settings-price-by-country.php:225
|
8623 |
#: includes/settings/wcj-settings-price-formats.php:59
|
8624 |
msgid "Currency"
|
8724 |
|
8725 |
#: includes/settings/wcj-settings-currency-per-product.php:121
|
8726 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:65
|
8727 |
+
#: includes/settings/wcj-settings-multicurrency.php:104
|
8728 |
msgid "Currencies Options"
|
8729 |
msgstr ""
|
8730 |
|
8737 |
|
8738 |
#: includes/settings/wcj-settings-currency-per-product.php:127
|
8739 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:70
|
8740 |
+
#: includes/settings/wcj-settings-multicurrency.php:110
|
8741 |
msgid "Total Currencies"
|
8742 |
msgstr ""
|
8743 |
|
8991 |
msgid "Validate"
|
8992 |
msgstr ""
|
8993 |
|
8994 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:81
|
8995 |
msgid "Message on not valid"
|
8996 |
msgstr ""
|
8997 |
|
8998 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:88
|
8999 |
msgid "First Validation Method"
|
9000 |
msgstr ""
|
9001 |
|
9002 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:89
|
9003 |
msgid ""
|
9004 |
"Change this if you are having issues when validating VAT. This only selects "
|
9005 |
"first method to try - if not succeeded, remaining methods will be used for "
|
9006 |
"validation."
|
9007 |
msgstr ""
|
9008 |
|
9009 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:94
|
9010 |
msgid "SOAP"
|
9011 |
msgstr ""
|
9012 |
|
9013 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:95
|
9014 |
msgid "cURL"
|
9015 |
msgstr ""
|
9016 |
|
9017 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:96
|
9018 |
msgid "Simple"
|
9019 |
msgstr ""
|
9020 |
|
9021 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:100
|
9022 |
msgid "Exempt VAT for Valid Numbers"
|
9023 |
msgstr ""
|
9024 |
|
9025 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:107
|
9026 |
msgid "Preserve VAT in Base Country"
|
9027 |
msgstr ""
|
9028 |
|
9029 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:108
|
9030 |
+
#, php-format
|
9031 |
+
msgid ""
|
9032 |
+
"This will validate the VAT, but won't exempt VAT for base country VAT "
|
9033 |
+
"numbers. Base (i.e. store) country is set in %s."
|
9034 |
+
msgstr ""
|
9035 |
+
|
9036 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:109
|
9037 |
+
msgid "WooCommerce > Settings > General"
|
9038 |
+
msgstr ""
|
9039 |
+
|
9040 |
#: includes/settings/wcj-settings-eu-vat-number.php:127
|
9041 |
msgid "Check for IP Location Country"
|
9042 |
msgstr ""
|
9043 |
|
9044 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:128
|
9045 |
+
msgid ""
|
9046 |
+
"This will check if customer's country (located by customer's IP) matches the "
|
9047 |
+
"country in entered VAT number."
|
9048 |
+
msgstr ""
|
9049 |
+
|
9050 |
#: includes/settings/wcj-settings-eu-vat-number.php:151
|
9051 |
msgid "After order table"
|
9052 |
msgstr ""
|
9080 |
msgstr ""
|
9081 |
|
9082 |
#: includes/settings/wcj-settings-eu-vat-number.php:192
|
9083 |
+
msgid "Add EU VAT Number Summary Meta Box to Admin Order Edit Page"
|
9084 |
+
msgstr ""
|
9085 |
+
|
9086 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:208
|
9087 |
+
msgid "Skip VAT Validation for Selected Countries"
|
9088 |
+
msgstr ""
|
9089 |
+
|
9090 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:209
|
9091 |
+
msgid ""
|
9092 |
+
"List all countries you want VAT validation to be skipped for (i.e. VAT "
|
9093 |
+
"always valid). Ignored if empty."
|
9094 |
+
msgstr ""
|
9095 |
+
|
9096 |
+
#: includes/settings/wcj-settings-eu-vat-number.php:210
|
9097 |
+
#, php-format
|
9098 |
+
msgid "Enter country codes as comma separated list, e.g. %s."
|
9099 |
msgstr ""
|
9100 |
|
9101 |
#: includes/settings/wcj-settings-export.php:15
|
9103 |
msgstr ""
|
9104 |
|
9105 |
#: includes/settings/wcj-settings-export.php:20
|
9106 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:118
|
9107 |
msgid "CSV Separator"
|
9108 |
msgstr ""
|
9109 |
|
9125 |
|
9126 |
#: includes/settings/wcj-settings-export.php:44
|
9127 |
#: includes/settings/wcj-settings-export.php:112
|
9128 |
+
#: includes/settings/wcj-settings-export.php:183
|
9129 |
+
#: includes/settings/wcj-settings-export.php:262
|
9130 |
+
#: includes/settings/wcj-settings-export.php:280
|
9131 |
msgid "Hold \"Control\" key to select multiple fields."
|
9132 |
msgstr ""
|
9133 |
|
9136 |
msgstr ""
|
9137 |
|
9138 |
#: includes/settings/wcj-settings-export.php:87
|
9139 |
+
#: includes/settings/wcj-settings-export.php:156
|
9140 |
msgid "Order Shortcode"
|
9141 |
msgstr ""
|
9142 |
|
9162 |
msgid "Additional Export Orders Items Fields"
|
9163 |
msgstr ""
|
9164 |
|
9165 |
+
#: includes/settings/wcj-settings-export.php:155
|
9166 |
+
msgid "Order Item Meta"
|
9167 |
+
msgstr ""
|
9168 |
+
|
9169 |
+
#: includes/settings/wcj-settings-export.php:158
|
9170 |
+
#: includes/settings/wcj-settings-export.php:237
|
9171 |
msgid "Product Shortcode"
|
9172 |
msgstr ""
|
9173 |
|
9174 |
+
#: includes/settings/wcj-settings-export.php:163
|
9175 |
msgid ""
|
9176 |
"If field's \"Type\" is set to \"Meta\", enter order/product meta key to "
|
9177 |
"retrieve (can be custom field name)."
|
9178 |
msgstr ""
|
9179 |
|
9180 |
+
#: includes/settings/wcj-settings-export.php:164
|
9181 |
msgid ""
|
9182 |
"If it's set to \"Shortcode\", use Booster's Orders/Products shortcodes here."
|
9183 |
msgstr ""
|
9184 |
|
9185 |
+
#: includes/settings/wcj-settings-export.php:177
|
9186 |
msgid "Export Products Options"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
+
#: includes/settings/wcj-settings-export.php:182
|
9190 |
msgid "Export Products Fields"
|
9191 |
msgstr ""
|
9192 |
|
9193 |
+
#: includes/settings/wcj-settings-export.php:191
|
9194 |
#: includes/settings/wcj-settings-free-price.php:14
|
9195 |
+
#: includes/settings/wcj-settings-order-quantities.php:151
|
9196 |
msgid "Variable Products"
|
9197 |
msgstr ""
|
9198 |
|
9199 |
+
#: includes/settings/wcj-settings-export.php:196
|
9200 |
msgid "Export variable (main) product only"
|
9201 |
msgstr ""
|
9202 |
|
9203 |
+
#: includes/settings/wcj-settings-export.php:197
|
9204 |
msgid "Export variation products only"
|
9205 |
msgstr ""
|
9206 |
|
9207 |
+
#: includes/settings/wcj-settings-export.php:198
|
9208 |
msgid "Export variable (main) and variation products"
|
9209 |
msgstr ""
|
9210 |
|
9211 |
+
#: includes/settings/wcj-settings-export.php:202
|
9212 |
msgid "Additional Export Products Fields"
|
9213 |
msgstr ""
|
9214 |
|
9215 |
+
#: includes/settings/wcj-settings-export.php:242
|
9216 |
msgid ""
|
9217 |
"If field's \"Type\" is set to \"Meta\", enter product meta key to retrieve "
|
9218 |
"(can be custom field name)."
|
9219 |
msgstr ""
|
9220 |
|
9221 |
+
#: includes/settings/wcj-settings-export.php:243
|
9222 |
msgid "If it's set to \"Shortcode\", use Booster's Products shortcodes here."
|
9223 |
msgstr ""
|
9224 |
|
9225 |
+
#: includes/settings/wcj-settings-export.php:256
|
9226 |
msgid "Export Customers Options"
|
9227 |
msgstr ""
|
9228 |
|
9229 |
+
#: includes/settings/wcj-settings-export.php:261
|
9230 |
msgid "Export Customers Fields"
|
9231 |
msgstr ""
|
9232 |
|
9233 |
+
#: includes/settings/wcj-settings-export.php:274
|
9234 |
msgid "Export Customers from Orders Options"
|
9235 |
msgstr ""
|
9236 |
|
9237 |
+
#: includes/settings/wcj-settings-export.php:279
|
9238 |
msgid "Export Customers from Orders Fields"
|
9239 |
msgstr ""
|
9240 |
|
9303 |
#: includes/settings/wcj-settings-general.php:120
|
9304 |
#: includes/settings/wcj-settings-general.php:127
|
9305 |
#: includes/settings/wcj-settings-general.php:134
|
9306 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:126
|
9307 |
#: includes/settings/wcj-settings-price-by-user-role.php:56
|
9308 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:88
|
9309 |
#: includes/settings/wcj-settings-product-add-to-cart.php:131
|
9310 |
#: includes/settings/wcj-settings-product-open-pricing.php:80
|
9311 |
#: includes/settings/wcj-settings-sku.php:205
|
9318 |
msgid "Product Revisions"
|
9319 |
msgstr ""
|
9320 |
|
|
|
|
|
|
|
|
|
|
|
9321 |
#: includes/settings/wcj-settings-general.php:81
|
9322 |
msgid "Recalculate Cart Totals on Every Page Load"
|
9323 |
msgstr ""
|
9409 |
msgid "Enabled for"
|
9410 |
msgstr ""
|
9411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9412 |
#: includes/settings/wcj-settings-global-discount.php:24
|
9413 |
msgid "Total Groups"
|
9414 |
msgstr ""
|
9720 |
msgid "E.g.: %s"
|
9721 |
msgstr ""
|
9722 |
|
9723 |
+
#: includes/settings/wcj-settings-multicurrency.php:93
|
9724 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:69
|
9725 |
+
msgid "Advanced: Price Filters Priority"
|
9726 |
+
msgstr ""
|
9727 |
+
|
9728 |
+
#: includes/settings/wcj-settings-multicurrency.php:94
|
9729 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:70
|
9730 |
+
msgid ""
|
9731 |
+
"Priority for all module's price filters. Set to zero to use default priority."
|
9732 |
+
msgstr ""
|
9733 |
+
|
9734 |
+
#: includes/settings/wcj-settings-multicurrency.php:106
|
9735 |
msgid ""
|
9736 |
"One currency probably should be set to current (original) shop currency with "
|
9737 |
"an exchange rate of 1."
|
9738 |
msgstr ""
|
9739 |
|
9740 |
+
#: includes/settings/wcj-settings-multicurrency.php:111
|
9741 |
msgid ""
|
9742 |
"Press Save changes after setting this option, so new settings fields will be "
|
9743 |
"added."
|
9744 |
msgstr ""
|
9745 |
|
9746 |
+
#: includes/settings/wcj-settings-multicurrency.php:162
|
9747 |
msgid "Role Defaults"
|
9748 |
msgstr ""
|
9749 |
|
9750 |
+
#: includes/settings/wcj-settings-multicurrency.php:169
|
9751 |
msgid "Roles"
|
9752 |
msgstr ""
|
9753 |
|
9754 |
+
#: includes/settings/wcj-settings-multicurrency.php:170
|
9755 |
#: includes/settings/wcj-settings-wholesale-price.php:137
|
9756 |
msgid "Save settings after you change this option. Leave blank to disable."
|
9757 |
msgstr ""
|
9758 |
|
9759 |
+
#: includes/settings/wcj-settings-multicurrency.php:193
|
9760 |
msgid "No default currency"
|
9761 |
msgstr ""
|
9762 |
|
9923 |
"change status to On-hold."
|
9924 |
msgstr ""
|
9925 |
|
9926 |
+
#: includes/settings/wcj-settings-order-custom-statuses.php:25
|
9927 |
+
#: includes/settings/wcj-settings-payment-gateways-currency.php:44
|
9928 |
+
msgid "No changes"
|
9929 |
+
msgstr ""
|
9930 |
+
|
9931 |
#: includes/settings/wcj-settings-order-custom-statuses.php:28
|
9932 |
msgid "Add All Statuses to Admin Order Bulk Actions"
|
9933 |
msgstr ""
|
10043 |
msgstr ""
|
10044 |
|
10045 |
#: includes/settings/wcj-settings-order-min-amount.php:62
|
10046 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:87
|
10047 |
msgid "Advanced"
|
10048 |
msgstr ""
|
10049 |
|
10236 |
msgstr ""
|
10237 |
|
10238 |
#: includes/settings/wcj-settings-order-quantities.php:20
|
10239 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:36
|
10240 |
msgid "Minimum Quantity"
|
10241 |
msgstr ""
|
10242 |
|
10243 |
+
#: includes/settings/wcj-settings-order-quantities.php:21
|
10244 |
+
#: includes/settings/wcj-settings-order-quantities.php:79
|
10245 |
+
#: includes/settings/wcj-settings-orders.php:208
|
10246 |
+
#: includes/settings/wcj-settings-price-formats.php:37
|
10247 |
+
#: includes/settings/wcj-settings-product-listings.php:131
|
10248 |
+
#: includes/settings/wcj-settings-product-listings.php:214
|
10249 |
+
#: includes/settings/wcj-settings-product-listings.php:260
|
10250 |
+
#: includes/settings/wcj-settings-product-listings.php:318
|
10251 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:25
|
10252 |
+
#: includes/settings/wcj-settings-shipping-options.php:21
|
10253 |
+
#: includes/settings/wcj-settings-stock.php:23
|
10254 |
+
msgid "Enable section"
|
10255 |
+
msgstr ""
|
10256 |
+
|
10257 |
#: includes/settings/wcj-settings-order-quantities.php:27
|
10258 |
+
#: includes/settings/wcj-settings-order-quantities.php:85
|
10259 |
msgid "Cart Total Quantity"
|
10260 |
msgstr ""
|
10261 |
|
10262 |
#: includes/settings/wcj-settings-order-quantities.php:28
|
10263 |
#: includes/settings/wcj-settings-order-quantities.php:44
|
10264 |
+
#: includes/settings/wcj-settings-order-quantities.php:86
|
10265 |
+
#: includes/settings/wcj-settings-order-quantities.php:102
|
10266 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:16
|
10267 |
msgid "Set to zero to disable."
|
10268 |
msgstr ""
|
10269 |
|
10270 |
#: includes/settings/wcj-settings-order-quantities.php:35
|
10271 |
+
#: includes/settings/wcj-settings-order-quantities.php:93
|
10272 |
msgid "Message - Cart Total Quantity"
|
10273 |
msgstr ""
|
10274 |
|
10275 |
#: includes/settings/wcj-settings-order-quantities.php:43
|
10276 |
+
#: includes/settings/wcj-settings-order-quantities.php:101
|
10277 |
msgid "Per Item Quantity"
|
10278 |
msgstr ""
|
10279 |
|
10280 |
#: includes/settings/wcj-settings-order-quantities.php:52
|
10281 |
+
#: includes/settings/wcj-settings-order-quantities.php:110
|
10282 |
+
msgid "Per Item Quantity on Per Product Basis"
|
10283 |
+
msgstr ""
|
10284 |
+
|
10285 |
+
#: includes/settings/wcj-settings-order-quantities.php:54
|
10286 |
+
#: includes/settings/wcj-settings-order-quantities.php:112
|
10287 |
+
msgid "This will add meta box to each product's edit page."
|
10288 |
+
msgstr ""
|
10289 |
+
|
10290 |
+
#: includes/settings/wcj-settings-order-quantities.php:61
|
10291 |
+
#: includes/settings/wcj-settings-order-quantities.php:119
|
10292 |
msgid "Message - Per Item Quantity"
|
10293 |
msgstr ""
|
10294 |
|
10295 |
+
#: includes/settings/wcj-settings-order-quantities.php:73
|
10296 |
msgid "Maximum Quantity Options"
|
10297 |
msgstr ""
|
10298 |
|
10299 |
+
#: includes/settings/wcj-settings-order-quantities.php:78
|
10300 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:51
|
10301 |
msgid "Maximum Quantity"
|
10302 |
msgstr ""
|
10303 |
|
10304 |
+
#: includes/settings/wcj-settings-order-quantities.php:136
|
10305 |
msgid "Enable Cart Notices"
|
10306 |
msgstr ""
|
10307 |
|
10308 |
+
#: includes/settings/wcj-settings-order-quantities.php:143
|
10309 |
msgid "Stop Customer from Seeing Checkout on Wrong Quantities"
|
10310 |
msgstr ""
|
10311 |
|
10312 |
+
#: includes/settings/wcj-settings-order-quantities.php:145
|
10313 |
msgid "Will be redirected to cart page"
|
10314 |
msgstr ""
|
10315 |
|
10316 |
+
#: includes/settings/wcj-settings-order-quantities.php:152
|
10317 |
+
msgid "Action on variation change"
|
10318 |
+
msgstr ""
|
10319 |
+
|
10320 |
+
#: includes/settings/wcj-settings-order-quantities.php:157
|
10321 |
+
msgid "Do nothing"
|
10322 |
+
msgstr ""
|
10323 |
+
|
10324 |
+
#: includes/settings/wcj-settings-order-quantities.php:158
|
10325 |
+
msgid "Reset to min quantity"
|
10326 |
+
msgstr ""
|
10327 |
+
|
10328 |
+
#: includes/settings/wcj-settings-order-quantities.php:159
|
10329 |
+
msgid "Reset to max quantity"
|
10330 |
+
msgstr ""
|
10331 |
+
|
10332 |
+
#: includes/settings/wcj-settings-order-quantities.php:163
|
10333 |
+
msgid "Force on add to cart"
|
10334 |
+
msgstr ""
|
10335 |
+
|
10336 |
+
#: includes/settings/wcj-settings-order-quantities.php:164
|
10337 |
+
msgid "Force quantity correction on add to cart button click"
|
10338 |
+
msgstr ""
|
10339 |
+
|
10340 |
#: includes/settings/wcj-settings-orders.php:14
|
10341 |
#: includes/settings/wcj-settings-orders.php:19
|
10342 |
msgid "Admin Order Currency"
|
10398 |
msgstr ""
|
10399 |
|
10400 |
#: includes/settings/wcj-settings-orders.php:80
|
10401 |
+
#: includes/settings/wcj-settings-product-listings.php:266
|
10402 |
msgid "Custom Columns Total Number"
|
10403 |
msgstr ""
|
10404 |
|
10405 |
#: includes/settings/wcj-settings-orders.php:95
|
10406 |
+
#: includes/settings/wcj-settings-product-listings.php:282
|
10407 |
msgid "Custom Column"
|
10408 |
msgstr ""
|
10409 |
|
10410 |
#: includes/settings/wcj-settings-orders.php:97
|
10411 |
+
#: includes/settings/wcj-settings-product-listings.php:284
|
10412 |
msgid "Key:"
|
10413 |
msgstr ""
|
10414 |
|
10415 |
#: includes/settings/wcj-settings-orders.php:111
|
10416 |
+
#: includes/settings/wcj-settings-product-listings.php:298
|
10417 |
msgid "You can use shortcodes and/or HTML here."
|
10418 |
msgstr ""
|
10419 |
|
10466 |
msgstr ""
|
10467 |
|
10468 |
#: includes/settings/wcj-settings-orders.php:191
|
10469 |
+
#: includes/settings/wcj-settings-product-listings.php:325
|
10470 |
msgid "Default columns order"
|
10471 |
msgstr ""
|
10472 |
|
10502 |
msgid "Regenerate"
|
10503 |
msgstr ""
|
10504 |
|
10505 |
+
#: includes/settings/wcj-settings-payment-gateways-by-country.php:16
|
10506 |
+
#: includes/settings/wcj-settings-payment-gateways-by-currency.php:16
|
10507 |
+
#: includes/settings/wcj-settings-payment-gateways-by-user-role.php:16
|
10508 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:20
|
10509 |
+
msgid "Leave empty to disable."
|
10510 |
+
msgstr ""
|
10511 |
+
|
10512 |
#: includes/settings/wcj-settings-payment-gateways-by-country.php:39
|
10513 |
msgid "Include Countries"
|
10514 |
msgstr ""
|
10568 |
msgid "This section lets you set different currency for each payment gateway."
|
10569 |
msgstr ""
|
10570 |
|
|
|
|
|
|
|
|
|
10571 |
#: includes/settings/wcj-settings-payment-gateways-fees.php:23
|
10572 |
msgid "Fee (or Discount) Title"
|
10573 |
msgstr ""
|
10578 |
|
10579 |
#: includes/settings/wcj-settings-payment-gateways-fees.php:25
|
10580 |
#: includes/settings/wcj-settings-pdf-invoicing-header.php:36
|
10581 |
+
#: includes/settings/wcj-settings-pdf-invoicing-page.php:69
|
10582 |
#: includes/settings/wcj-settings-purchase-data.php:67
|
10583 |
msgid "Leave blank to disable"
|
10584 |
msgstr ""
|
10956 |
msgid "Header Margin"
|
10957 |
msgstr ""
|
10958 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10959 |
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:29
|
10960 |
msgid "Counter"
|
10961 |
msgstr ""
|
10970 |
msgid "Prefix"
|
10971 |
msgstr ""
|
10972 |
|
10973 |
+
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:47
|
10974 |
#: includes/settings/wcj-settings-sku.php:71
|
10975 |
#: includes/settings/wcj-settings-sku.php:128
|
10976 |
msgid "Suffix"
|
10977 |
msgstr ""
|
10978 |
|
10979 |
+
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:53
|
10980 |
+
#: includes/settings/wcj-settings-sku.php:78
|
10981 |
+
msgid "Template"
|
10982 |
+
msgstr ""
|
10983 |
+
|
10984 |
#: includes/settings/wcj-settings-pdf-invoicing-page.php:22
|
10985 |
msgid "Page Orientation"
|
10986 |
msgstr ""
|
11013 |
msgid "Margin Bottom"
|
11014 |
msgstr ""
|
11015 |
|
11016 |
+
#: includes/settings/wcj-settings-pdf-invoicing-page.php:63
|
11017 |
+
msgid "Background Image"
|
11018 |
+
msgstr ""
|
11019 |
+
|
11020 |
+
#: includes/settings/wcj-settings-pdf-invoicing-page.php:67
|
11021 |
+
#, php-format
|
11022 |
+
msgid ""
|
11023 |
+
"Enter a local URL to an image. Upload your image using the <a href=\"%s"
|
11024 |
+
"\">media uploader</a>."
|
11025 |
+
msgstr ""
|
11026 |
+
|
11027 |
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:19
|
11028 |
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:37
|
11029 |
msgid "Font Family"
|
11042 |
msgid "Make Font Shadowed"
|
11043 |
msgstr ""
|
11044 |
|
11045 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:85
|
11046 |
msgid "Fonts download is disabled."
|
11047 |
msgstr ""
|
11048 |
|
11049 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:88
|
11050 |
msgid "Fonts are up to date."
|
11051 |
msgstr ""
|
11052 |
|
11053 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:89
|
11054 |
#, php-format
|
11055 |
msgid "Latest successful download or version check was on %s."
|
11056 |
msgstr ""
|
11057 |
|
11058 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:93
|
11059 |
msgid ""
|
11060 |
"Fonts are NOT up to date. Please try downloading by pressing the button "
|
11061 |
"below."
|
11062 |
msgstr ""
|
11063 |
|
11064 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:96
|
11065 |
#, php-format
|
11066 |
msgid "Latest successful downloaded version is %s."
|
11067 |
msgstr ""
|
11068 |
|
11069 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:102
|
11070 |
#, php-format
|
11071 |
msgid "Latest download executed on %s."
|
11072 |
msgstr ""
|
11073 |
|
11074 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:111
|
11075 |
msgid "Fonts Manager"
|
11076 |
msgstr ""
|
11077 |
|
11078 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:120
|
11079 |
msgid "Re-download"
|
11080 |
msgstr ""
|
11081 |
|
11082 |
+
#: includes/settings/wcj-settings-pdf-invoicing-styling.php:125
|
11083 |
msgid "Disable Fonts Download"
|
11084 |
msgstr ""
|
11085 |
|
11138 |
msgid "Hide Disabled Docs Settings"
|
11139 |
msgstr ""
|
11140 |
|
11141 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:80
|
11142 |
+
msgid "Replace Admin Order Search with Invoice Search"
|
11143 |
+
msgstr ""
|
11144 |
+
|
11145 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:87
|
11146 |
+
msgid "Default Images Directory"
|
11147 |
+
msgstr ""
|
11148 |
+
|
11149 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:88
|
11150 |
+
msgid "Default images directory in TCPDF library (K_PATH_IMAGES)."
|
11151 |
msgstr ""
|
11152 |
|
11153 |
#: includes/settings/wcj-settings-pdf-invoicing.php:89
|
11154 |
+
msgid ""
|
11155 |
+
"Try changing this if you have issues displaying images in page background or "
|
11156 |
+
"header."
|
11157 |
+
msgstr ""
|
11158 |
+
|
11159 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:94
|
11160 |
+
msgid "Empty"
|
11161 |
+
msgstr ""
|
11162 |
+
|
11163 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:95
|
11164 |
+
msgid "TCPDF Default"
|
11165 |
+
msgstr ""
|
11166 |
+
|
11167 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:96
|
11168 |
+
msgid "ABSPATH"
|
11169 |
+
msgstr ""
|
11170 |
+
|
11171 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:97
|
11172 |
+
msgid "DOCUMENT_ROOT"
|
11173 |
+
msgstr ""
|
11174 |
+
|
11175 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:105
|
11176 |
+
msgid "Report Tool Options"
|
11177 |
+
msgstr ""
|
11178 |
+
|
11179 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:110
|
11180 |
msgid "Reports Filename"
|
11181 |
msgstr ""
|
11182 |
|
11183 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:124
|
11184 |
msgid "CSV UTF-8 BOM"
|
11185 |
msgstr ""
|
11186 |
|
11187 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:131
|
11188 |
msgid "Replace Periods with Commas in CSV Data"
|
11189 |
msgstr ""
|
11190 |
|
11191 |
+
#: includes/settings/wcj-settings-pdf-invoicing.php:132
|
11192 |
msgid "Replace"
|
11193 |
msgstr ""
|
11194 |
|
11421 |
msgid "Disable Price by User Role for Bots"
|
11422 |
msgstr ""
|
11423 |
|
11424 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:80
|
11425 |
msgid "Roles & Multipliers"
|
11426 |
msgstr ""
|
11427 |
|
11428 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:87
|
11429 |
msgid "Disable Price by User Role for Products on Sale"
|
11430 |
msgstr ""
|
11431 |
|
11432 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:104
|
11433 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:153
|
11434 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-user-role.php:99
|
11435 |
msgid "Make Empty Price"
|
11436 |
msgstr ""
|
11437 |
|
11438 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:124
|
11439 |
msgid "Price by User Role by Products Categories"
|
11440 |
msgstr ""
|
11441 |
|
11442 |
+
#: includes/settings/wcj-settings-price-by-user-role.php:130
|
11443 |
+
#: includes/settings/wcj-settings-product-listings.php:267
|
11444 |
#: includes/settings/wcj-settings-shipping.php:51
|
11445 |
msgid ""
|
11446 |
"Save module's settings after changing this option to see new settings fields."
|
11833 |
msgid "Select Box"
|
11834 |
msgstr ""
|
11835 |
|
11836 |
+
#: includes/settings/wcj-settings-product-addons.php:93
|
11837 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:63
|
11838 |
msgid "Label(s)"
|
11839 |
msgstr ""
|
11840 |
|
11841 |
+
#: includes/settings/wcj-settings-product-addons.php:94
|
11842 |
+
#: includes/settings/wcj-settings-product-addons.php:102
|
11843 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:64
|
11844 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:71
|
11845 |
msgid "For radio and select enter one value per line."
|
11846 |
msgstr ""
|
11847 |
|
11848 |
+
#: includes/settings/wcj-settings-product-addons.php:101
|
11849 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:70
|
11850 |
msgid "Price(s)"
|
11851 |
msgstr ""
|
11852 |
|
11853 |
+
#: includes/settings/wcj-settings-product-addons.php:110
|
11854 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:77
|
11855 |
msgid "Tooltip(s)"
|
11856 |
msgstr ""
|
11857 |
|
11858 |
+
#: includes/settings/wcj-settings-product-addons.php:111
|
11859 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:78
|
11860 |
msgid "For radio enter one value per line."
|
11861 |
msgstr ""
|
11862 |
|
11863 |
+
#: includes/settings/wcj-settings-product-addons.php:118
|
11864 |
#: includes/settings/wcj-settings-purchase-data.php:83
|
11865 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:84
|
11866 |
msgid "Default Value"
|
11867 |
msgstr ""
|
11868 |
|
11869 |
+
#: includes/settings/wcj-settings-product-addons.php:119
|
11870 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:85
|
11871 |
msgid ""
|
11872 |
"For checkbox use 'checked'; for radio and select enter default label. Leave "
|
11873 |
"blank for no default value."
|
11874 |
msgstr ""
|
11875 |
|
11876 |
+
#: includes/settings/wcj-settings-product-addons.php:127
|
11877 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:92
|
11878 |
msgid "For \"Select Box\" type only."
|
11879 |
msgstr ""
|
11880 |
|
11881 |
+
#: includes/settings/wcj-settings-product-addons.php:134
|
11882 |
#: includes/settings/wcj-settings-product-by-user.php:45
|
11883 |
msgid "Is Required"
|
11884 |
msgstr ""
|
11885 |
|
11886 |
+
#: includes/settings/wcj-settings-product-addons.php:162
|
11887 |
msgid "Enable AJAX on Single Product Page"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
+
#: includes/settings/wcj-settings-product-addons.php:169
|
11891 |
msgid "Addon in Cart Format"
|
11892 |
msgstr ""
|
11893 |
|
11894 |
+
#: includes/settings/wcj-settings-product-addons.php:177
|
11895 |
+
#: includes/settings/wcj-settings-product-addons.php:200
|
11896 |
msgid "Each Addon"
|
11897 |
msgstr ""
|
11898 |
|
11899 |
+
#: includes/settings/wcj-settings-product-addons.php:178
|
11900 |
+
#: includes/settings/wcj-settings-product-addons.php:201
|
11901 |
msgid "You can use %addon_label% and %addon_price%."
|
11902 |
msgstr ""
|
11903 |
|
11904 |
+
#: includes/settings/wcj-settings-product-addons.php:192
|
11905 |
msgid "Addon in Order Details Table Format"
|
11906 |
msgstr ""
|
11907 |
|
11908 |
+
#: includes/settings/wcj-settings-product-addons.php:215
|
11909 |
msgid "Admin Order Page"
|
11910 |
msgstr ""
|
11911 |
|
11912 |
+
#: includes/settings/wcj-settings-product-addons.php:216
|
11913 |
msgid "Hide all addons"
|
11914 |
msgstr ""
|
11915 |
|
12733 |
msgstr ""
|
12734 |
|
12735 |
#: includes/settings/wcj-settings-product-listings.php:124
|
12736 |
+
#: includes/settings/wcj-settings-product-listings.php:130
|
12737 |
+
msgid "Product Shop Visibility by Price"
|
12738 |
msgstr ""
|
12739 |
|
12740 |
#: includes/settings/wcj-settings-product-listings.php:126
|
12741 |
msgid ""
|
12742 |
+
"Here you can set to hide products from shop and search results depending on "
|
12743 |
+
"product's price. Products will still be accessible via direct link."
|
12744 |
+
msgstr ""
|
12745 |
+
|
12746 |
+
#: includes/settings/wcj-settings-product-listings.php:137
|
12747 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:31
|
12748 |
+
msgid "Min Price"
|
12749 |
+
msgstr ""
|
12750 |
+
|
12751 |
+
#: includes/settings/wcj-settings-product-listings.php:138
|
12752 |
+
msgid ""
|
12753 |
+
"Products with price below this value will be hidden. Ignored if set to zero."
|
12754 |
+
msgstr ""
|
12755 |
+
|
12756 |
+
#: includes/settings/wcj-settings-product-listings.php:145
|
12757 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-open-pricing.php:38
|
12758 |
+
msgid "Max Price"
|
12759 |
+
msgstr ""
|
12760 |
+
|
12761 |
+
#: includes/settings/wcj-settings-product-listings.php:146
|
12762 |
+
msgid ""
|
12763 |
+
"Products with price above this value will be hidden. Ignored if set to zero."
|
12764 |
+
msgstr ""
|
12765 |
+
|
12766 |
+
#: includes/settings/wcj-settings-product-listings.php:157
|
12767 |
+
msgid "TAX Display in the Shop - by Product"
|
12768 |
+
msgstr ""
|
12769 |
+
|
12770 |
+
#: includes/settings/wcj-settings-product-listings.php:159
|
12771 |
+
msgid ""
|
12772 |
"If you want to display part of your products including TAX and another part "
|
12773 |
"excluding TAX, you can set it here."
|
12774 |
msgstr ""
|
12775 |
|
12776 |
+
#: includes/settings/wcj-settings-product-listings.php:163
|
12777 |
msgid "Products - Including TAX"
|
12778 |
msgstr ""
|
12779 |
|
12780 |
+
#: includes/settings/wcj-settings-product-listings.php:165
|
12781 |
msgid "Select products to display including TAX."
|
12782 |
msgstr ""
|
12783 |
|
12784 |
+
#: includes/settings/wcj-settings-product-listings.php:173
|
12785 |
msgid "Products - Excluding TAX"
|
12786 |
msgstr ""
|
12787 |
|
12788 |
+
#: includes/settings/wcj-settings-product-listings.php:175
|
12789 |
msgid "Select products to display excluding TAX."
|
12790 |
msgstr ""
|
12791 |
|
12792 |
+
#: includes/settings/wcj-settings-product-listings.php:183
|
12793 |
msgid "Product Categories - Including TAX"
|
12794 |
msgstr ""
|
12795 |
|
12796 |
+
#: includes/settings/wcj-settings-product-listings.php:185
|
12797 |
msgid "Select product categories to display including TAX."
|
12798 |
msgstr ""
|
12799 |
|
12800 |
+
#: includes/settings/wcj-settings-product-listings.php:193
|
12801 |
msgid "Product Categories - Excluding TAX"
|
12802 |
msgstr ""
|
12803 |
|
12804 |
+
#: includes/settings/wcj-settings-product-listings.php:195
|
12805 |
msgid "Select product categories to display excluding TAX."
|
12806 |
msgstr ""
|
12807 |
|
12808 |
+
#: includes/settings/wcj-settings-product-listings.php:207
|
12809 |
msgid "TAX Display in the Shop - by User Role"
|
12810 |
msgstr ""
|
12811 |
|
12812 |
+
#: includes/settings/wcj-settings-product-listings.php:209
|
12813 |
msgid ""
|
12814 |
"If you want to display prices including TAX or excluding TAX for different "
|
12815 |
"user roles, you can set it here."
|
12816 |
msgstr ""
|
12817 |
|
12818 |
+
#: includes/settings/wcj-settings-product-listings.php:213
|
12819 |
msgid "TAX Display by User Role"
|
12820 |
msgstr ""
|
12821 |
|
12822 |
+
#: includes/settings/wcj-settings-product-listings.php:221
|
12823 |
msgid ""
|
12824 |
"Save changes after you change this option and new settings fields will "
|
12825 |
"appear."
|
12826 |
msgstr ""
|
12827 |
|
12828 |
+
#: includes/settings/wcj-settings-product-listings.php:222
|
12829 |
#, php-format
|
12830 |
msgid ""
|
12831 |
"Select user roles that you want to change tax display for. For all remaining "
|
12833 |
"applied."
|
12834 |
msgstr ""
|
12835 |
|
12836 |
+
#: includes/settings/wcj-settings-product-listings.php:223
|
12837 |
msgid "WooCommerce > Settings > Tax"
|
12838 |
msgstr ""
|
12839 |
|
12840 |
+
#: includes/settings/wcj-settings-product-listings.php:235
|
12841 |
#, php-format
|
12842 |
msgid "Role: %s"
|
12843 |
msgstr ""
|
12844 |
|
12845 |
+
#: includes/settings/wcj-settings-product-listings.php:240
|
12846 |
msgid "Default TAX display (no changes)"
|
12847 |
msgstr ""
|
12848 |
|
12849 |
+
#: includes/settings/wcj-settings-product-listings.php:241
|
12850 |
msgid "Including tax"
|
12851 |
msgstr ""
|
12852 |
|
12853 |
+
#: includes/settings/wcj-settings-product-listings.php:242
|
12854 |
msgid "Excluding tax"
|
12855 |
msgstr ""
|
12856 |
|
12857 |
+
#: includes/settings/wcj-settings-product-listings.php:254
|
12858 |
msgid "Admin Products List - Custom Columns"
|
12859 |
msgstr ""
|
12860 |
|
12861 |
+
#: includes/settings/wcj-settings-product-listings.php:312
|
12862 |
msgid "Admin Products List - Columns Order"
|
12863 |
msgstr ""
|
12864 |
|
13616 |
msgid "View report"
|
13617 |
msgstr ""
|
13618 |
|
13619 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:18
|
13620 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:24
|
13621 |
+
#, php-format
|
13622 |
+
msgid "Shipping Methods by %s"
|
13623 |
+
msgstr ""
|
13624 |
+
|
13625 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:47
|
13626 |
+
#, php-format
|
13627 |
+
msgid "Include %s"
|
13628 |
+
msgstr ""
|
13629 |
+
|
13630 |
+
#: includes/settings/wcj-settings-shipping-by-condition.php:58
|
13631 |
+
#, php-format
|
13632 |
+
msgid "Exclude %s"
|
13633 |
+
msgstr ""
|
13634 |
+
|
13635 |
+
#: includes/settings/wcj-settings-shipping-by-order-amount.php:44
|
13636 |
+
msgid "Maximum order amount"
|
13637 |
+
msgstr ""
|
13638 |
+
|
13639 |
#: includes/settings/wcj-settings-shipping-calculator.php:14
|
13640 |
msgid "Shipping Calculator Options"
|
13641 |
msgstr ""
|
13709 |
msgstr ""
|
13710 |
|
13711 |
#: includes/settings/wcj-settings-shipping-options.php:46
|
13712 |
+
#: includes/settings/wcj-settings-shipping-options.php:55
|
13713 |
msgid "Free Shipping by Product"
|
13714 |
msgstr ""
|
13715 |
|
13719 |
"to cart."
|
13720 |
msgstr ""
|
13721 |
|
13722 |
+
#: includes/settings/wcj-settings-shipping-options.php:48
|
13723 |
+
#, php-format
|
13724 |
+
msgid "Similar results can be achieved with %s module."
|
13725 |
+
msgstr ""
|
13726 |
+
|
13727 |
+
#: includes/settings/wcj-settings-shipping-options.php:71
|
13728 |
msgid ""
|
13729 |
"Select either <strong>all products</strong> or <strong>at least one product</"
|
13730 |
"strong> in cart must grant free shipping."
|
13731 |
msgstr ""
|
13732 |
|
13733 |
+
#: includes/settings/wcj-settings-shipping-options.php:76
|
13734 |
msgid "All products in cart must grant free shipping"
|
13735 |
msgstr ""
|
13736 |
|
13737 |
+
#: includes/settings/wcj-settings-shipping-options.php:77
|
13738 |
msgid "At least one product in cart must grant free shipping"
|
13739 |
msgstr ""
|
13740 |
|
13741 |
+
#: includes/settings/wcj-settings-shipping-options.php:89
|
13742 |
+
#: includes/settings/wcj-settings-shipping-options.php:95
|
13743 |
msgid "Shipping Descriptions"
|
13744 |
msgstr ""
|
13745 |
|
13746 |
+
#: includes/settings/wcj-settings-shipping-options.php:91
|
13747 |
#, php-format
|
13748 |
msgid ""
|
13749 |
"This section will allow you to add any text (e.g. description) for shipping "
|
13751 |
"tags here, e.g. try \"%s\""
|
13752 |
msgstr ""
|
13753 |
|
13754 |
+
#: includes/settings/wcj-settings-shipping-options.php:102
|
13755 |
msgid "Description Visibility"
|
13756 |
msgstr ""
|
13757 |
|
13758 |
+
#: includes/settings/wcj-settings-shipping-options.php:107
|
13759 |
+
#: includes/settings/wcj-settings-shipping-options.php:163
|
13760 |
msgid "On both cart and checkout pages"
|
13761 |
msgstr ""
|
13762 |
|
13763 |
+
#: includes/settings/wcj-settings-shipping-options.php:108
|
13764 |
+
#: includes/settings/wcj-settings-shipping-options.php:164
|
13765 |
msgid "Only on cart page"
|
13766 |
msgstr ""
|
13767 |
|
13768 |
+
#: includes/settings/wcj-settings-shipping-options.php:109
|
13769 |
+
#: includes/settings/wcj-settings-shipping-options.php:165
|
13770 |
msgid "Only on checkout page"
|
13771 |
msgstr ""
|
13772 |
|
13773 |
+
#: includes/settings/wcj-settings-shipping-options.php:111
|
13774 |
+
#: includes/settings/wcj-settings-shipping-options.php:167
|
13775 |
msgid ""
|
13776 |
"Possible values: on both cart and checkout pages; only on cart page; only on "
|
13777 |
"checkout page"
|
13778 |
msgstr ""
|
13779 |
|
13780 |
+
#: includes/settings/wcj-settings-shipping-options.php:135
|
13781 |
+
#: includes/settings/wcj-settings-shipping-options.php:141
|
13782 |
msgid "Shipping Icons"
|
13783 |
msgstr ""
|
13784 |
|
13785 |
+
#: includes/settings/wcj-settings-shipping-options.php:137
|
13786 |
msgid ""
|
13787 |
"This section will allow you to add icons for shipping method. Icons will be "
|
13788 |
"visible on cart and checkout pages."
|
13789 |
msgstr ""
|
13790 |
|
13791 |
+
#: includes/settings/wcj-settings-shipping-options.php:148
|
13792 |
msgid "Icon Position"
|
13793 |
msgstr ""
|
13794 |
|
13795 |
+
#: includes/settings/wcj-settings-shipping-options.php:153
|
13796 |
msgid "Before label"
|
13797 |
msgstr ""
|
13798 |
|
13799 |
+
#: includes/settings/wcj-settings-shipping-options.php:154
|
13800 |
msgid "After label"
|
13801 |
msgstr ""
|
13802 |
|
13803 |
+
#: includes/settings/wcj-settings-shipping-options.php:158
|
13804 |
msgid "Icon Visibility"
|
13805 |
msgstr ""
|
13806 |
|
13807 |
+
#: includes/settings/wcj-settings-shipping-options.php:172
|
13808 |
msgid "Icon Style"
|
13809 |
msgstr ""
|
13810 |
|
13811 |
+
#: includes/settings/wcj-settings-shipping-options.php:173
|
13812 |
msgid ""
|
13813 |
"You can also style icons with CSS class \"wcj_shipping_icon\", or id "
|
13814 |
"\"wcj_shipping_icon_method_id\""
|
13903 |
msgid "SKU suffix."
|
13904 |
msgstr ""
|
13905 |
|
|
|
|
|
|
|
|
|
13906 |
#: includes/settings/wcj-settings-sku.php:79
|
13907 |
msgid "SKU template."
|
13908 |
msgstr ""
|
14241 |
msgid "If show discount info on cart page is enabled, set format here"
|
14242 |
msgstr ""
|
14243 |
|
|
|
|
|
|
|
|
|
14244 |
#: includes/settings/wcj-settings-wholesale-price.php:57
|
14245 |
#: includes/settings/meta-box/wcj-settings-meta-box-wholesale-price.php:41
|
14246 |
msgid "Discount Type"
|
14342 |
msgid "Leave blank to use global value."
|
14343 |
msgstr ""
|
14344 |
|
14345 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:41
|
14346 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-order-quantities.php:56
|
14347 |
+
msgid "Set 0 to use global settings. Set -1 to disable."
|
14348 |
+
msgstr ""
|
14349 |
+
|
14350 |
#: includes/settings/meta-box/wcj-settings-meta-box-orders.php:20
|
14351 |
msgid "Save order after you change this field."
|
14352 |
msgstr ""
|
14385 |
msgid "Save product after you change this number."
|
14386 |
msgstr ""
|
14387 |
|
14388 |
+
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:98
|
14389 |
msgid "Is required"
|
14390 |
msgstr ""
|
14391 |
|
14437 |
msgid "Hide Image on Archives"
|
14438 |
msgstr ""
|
14439 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14440 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-price-by-formula.php:22
|
14441 |
msgid ""
|
14442 |
"'Enabled' option is ignored if 'Enable Price Calculation By Formula For All "
|
14574 |
msgid "Enable Custom Shipping"
|
14575 |
msgstr ""
|
14576 |
|
14577 |
+
#: includes/shortcodes/class-wcj-general-shortcodes.php:220
|
14578 |
#: includes/shortcodes/class-wcj-shortcodes.php:107
|
14579 |
#, php-format
|
14580 |
msgid "\"%s\" module is not enabled!"
|
14584 |
msgid "Attribute \"name\" is required!"
|
14585 |
msgstr ""
|
14586 |
|
14587 |
+
#: includes/shortcodes/class-wcj-order-items-shortcodes.php:187
|
14588 |
msgid "Standard"
|
14589 |
msgstr ""
|
14590 |
|
14673 |
msgid "Current standard tax rates"
|
14674 |
msgstr ""
|
14675 |
|
14676 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:35
|
14677 |
+
msgid "Status slug is empty. Status was not added!"
|
14678 |
+
msgstr ""
|
14679 |
+
|
14680 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:38
|
14681 |
+
msgid ""
|
14682 |
+
"The length of status slug must be 17 or less characters (excluding prefix). "
|
14683 |
+
"Status was not added!"
|
14684 |
+
msgstr ""
|
14685 |
+
|
14686 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:42
|
14687 |
+
msgid "Status label is empty. Status was not added!"
|
14688 |
+
msgstr ""
|
14689 |
+
|
14690 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:48
|
14691 |
+
msgid "Duplicate slug. Status was not added!"
|
14692 |
+
msgstr ""
|
14693 |
+
|
14694 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:59
|
14695 |
+
#, php-format
|
14696 |
+
msgid "%s status has been successfully added."
|
14697 |
+
msgstr ""
|
14698 |
+
|
14699 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:61
|
14700 |
+
#, php-format
|
14701 |
+
msgid "%s status was not added!"
|
14702 |
+
msgstr ""
|
14703 |
+
|
14704 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:74
|
14705 |
+
msgid "Status label is empty. Status was not edited!"
|
14706 |
+
msgstr ""
|
14707 |
+
|
14708 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:84
|
14709 |
+
#, php-format
|
14710 |
+
msgid "%s status has been successfully edited!"
|
14711 |
+
msgstr ""
|
14712 |
+
|
14713 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:86
|
14714 |
+
#, php-format
|
14715 |
+
msgid "%s status was not edited!"
|
14716 |
+
msgstr ""
|
14717 |
+
|
14718 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:106
|
14719 |
+
#, php-format
|
14720 |
+
msgid "%s status has been successfully deleted."
|
14721 |
+
msgstr ""
|
14722 |
+
|
14723 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:108
|
14724 |
+
#, php-format
|
14725 |
+
msgid "%s status delete failed!"
|
14726 |
+
msgstr ""
|
14727 |
+
|
14728 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:138
|
14729 |
+
msgid "Slug"
|
14730 |
+
msgstr ""
|
14731 |
+
|
14732 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:140
|
14733 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:212
|
14734 |
+
msgid "Icon Code"
|
14735 |
+
msgstr ""
|
14736 |
+
|
14737 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:141
|
14738 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:213
|
14739 |
+
msgid "Icon Color"
|
14740 |
+
msgstr ""
|
14741 |
+
|
14742 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:159
|
14743 |
+
msgid "Get Booster Plus to enable."
|
14744 |
+
msgstr ""
|
14745 |
+
|
14746 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:174
|
14747 |
+
msgid "Statuses"
|
14748 |
+
msgstr ""
|
14749 |
+
|
14750 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:201
|
14751 |
+
#, php-format
|
14752 |
+
msgid "You can check icon codes <a target=\"_blank\" href=\"%s\">here</a>."
|
14753 |
+
msgstr ""
|
14754 |
+
|
14755 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:205
|
14756 |
+
msgid "Edit custom status"
|
14757 |
+
msgstr ""
|
14758 |
+
|
14759 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:205
|
14760 |
+
msgid "Add new custom status"
|
14761 |
+
msgstr ""
|
14762 |
+
|
14763 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:210
|
14764 |
+
msgid "Slug (without <code>wc-</code> prefix)"
|
14765 |
+
msgstr ""
|
14766 |
+
|
14767 |
+
#: includes/tools/class-wcj-order-statuses-tool.php:261
|
14768 |
+
msgid "Delete All Custom Statuses"
|
14769 |
+
msgstr ""
|
14770 |
+
|
14771 |
#: includes/widgets/class-wcj-widget-country-switcher.php:27
|
14772 |
msgid "Booster - Country Switcher"
|
14773 |
msgstr ""
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: algoritmika, anbinder
|
3 |
Tags: woocommerce, booster for woocommerce, woocommerce jetpack
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 3.2.
|
7 |
License: GNU General Public License v3.0
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -75,9 +75,11 @@ Booster for WooCommerce is a WordPress plugin that supercharges your site with a
|
|
75 |
* *Checkout Custom Info* - Add custom info to WooCommerce checkout page.
|
76 |
* *Checkout Customization* - Customize WooCommerce checkout - hide "Order Again" button; disable selected fields on checkout for logged users and more.
|
77 |
* *Checkout Files Upload* - Let customers upload files on (or after) WooCommerce checkout.
|
|
|
78 |
* *EU VAT Number* - Collect and validate EU VAT numbers on WooCommerce checkout. Automatically disable VAT for valid numbers. Add all EU countries VAT standard rates to WooCommerce.
|
79 |
* *Empty Cart Button* - Add (and customize) "Empty Cart" button to WooCommerce cart and checkout pages.
|
80 |
* *Mini Cart Custom Info* - Add custom info to WooCommerce mini cart widget.
|
|
|
81 |
|
82 |
**Payment Gateways**
|
83 |
|
@@ -128,7 +130,6 @@ Booster for WooCommerce is a WordPress plugin that supercharges your site with a
|
|
128 |
* *My Account* - WooCommerce "My Account" page customization.
|
129 |
* *Old Slugs* - Remove old WooCommerce products slugs.
|
130 |
* *Reports* - WooCommerce stock, sales, customers etc. reports.
|
131 |
-
* *URL Coupons* - WooCommerce URL coupons.
|
132 |
* *User Tracking* - Track your users in WooCommerce.
|
133 |
|
134 |
= Feedback =
|
@@ -170,6 +171,28 @@ You can see the differences between versions in this [table](https://booster.io/
|
|
170 |
|
171 |
== Changelog ==
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
= 3.2.2 - 12/11/2017 =
|
174 |
* Dev - PRICES & CURRENCIES - Multicurrency (Currency Switcher) - "Advanced: Price Filters Priority" option added.
|
175 |
* Dev - PRICES & CURRENCIES - Price by User Role - "Advanced: Price Filters Priority" option added.
|
2 |
Contributors: algoritmika, anbinder
|
3 |
Tags: woocommerce, booster for woocommerce, woocommerce jetpack
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 4.9
|
6 |
+
Stable tag: 3.2.3
|
7 |
License: GNU General Public License v3.0
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
75 |
* *Checkout Custom Info* - Add custom info to WooCommerce checkout page.
|
76 |
* *Checkout Customization* - Customize WooCommerce checkout - hide "Order Again" button; disable selected fields on checkout for logged users and more.
|
77 |
* *Checkout Files Upload* - Let customers upload files on (or after) WooCommerce checkout.
|
78 |
+
* *Coupon Code Generator* - WooCommerce coupon code generator.
|
79 |
* *EU VAT Number* - Collect and validate EU VAT numbers on WooCommerce checkout. Automatically disable VAT for valid numbers. Add all EU countries VAT standard rates to WooCommerce.
|
80 |
* *Empty Cart Button* - Add (and customize) "Empty Cart" button to WooCommerce cart and checkout pages.
|
81 |
* *Mini Cart Custom Info* - Add custom info to WooCommerce mini cart widget.
|
82 |
+
* *URL Coupons* - WooCommerce URL coupons.
|
83 |
|
84 |
**Payment Gateways**
|
85 |
|
130 |
* *My Account* - WooCommerce "My Account" page customization.
|
131 |
* *Old Slugs* - Remove old WooCommerce products slugs.
|
132 |
* *Reports* - WooCommerce stock, sales, customers etc. reports.
|
|
|
133 |
* *User Tracking* - Track your users in WooCommerce.
|
134 |
|
135 |
= Feedback =
|
171 |
|
172 |
== Changelog ==
|
173 |
|
174 |
+
= 3.2.3 - 03/12/2017 =
|
175 |
+
* Fix - PRICES & CURRENCIES - Currency Exchange Rates - cURL option fixed for "Yahoo" and "Fixer.io" servers.
|
176 |
+
* Dev - PRICES & CURRENCIES - Currency Exchange Rates - Server - Default value set to "European Central Bank (ECB)".
|
177 |
+
* Dev - BUTTON & PRICE LABELS - Custom Price Labels - "Entrada" theme filter added.
|
178 |
+
* Dev - PRODUCTS - Product Listings - "Product Shop Visibility by Price" section added.
|
179 |
+
* Fix - PRODUCTS - SKU - Search by SKU on frontend - Bug fixed.
|
180 |
+
* Dev - CART & CHECKOUT - Checkout Files Upload - "Advanced Options" section added.
|
181 |
+
* Dev - CART & CHECKOUT - Coupon Code Generator - Initial module release (moved from "General" module).
|
182 |
+
* Dev - CART & CHECKOUT - Coupon Code Generator - "Algorithm" and "Length" options added.
|
183 |
+
* Dev - CART & CHECKOUT - URL Coupons - Module moved from "EMAILS & MISC." section.
|
184 |
+
* Fix - PAYMENT GATEWAYS - Gateways Min/Max Amounts - Checking for `WC()` function to exist before accessing to `WC()->cart`. Checking for `is_checkout()`. Code refactoring.
|
185 |
+
* Dev - SHIPPING & ORDERS - Order Min/Max Quantities - General Options - Variable Products - "Force on add to cart" option added.
|
186 |
+
* Dev - SHIPPING & ORDERS - Order Min/Max Quantities - General Options - Variable Products - "Action on variation change" option added.
|
187 |
+
* Fix - SHIPPING & ORDERS - Order Min/Max Quantities - `get_cart_url()` method replaced with `wc_get_cart_url()` function.
|
188 |
+
* Fix - SHIPPING & ORDERS - Order Minimum Amount - `get_cart_url()` method replaced with `wc_get_cart_url()` function.
|
189 |
+
* Dev - SHIPPING & ORDERS - Order Numbers - "WooCommerce Subscriptions" plugin compatibility added (sequential and random order numbers).
|
190 |
+
* Dev - PDF INVOICING & PACKING SLIPS - "Replace Admin Order Search with Invoice Search" option added.
|
191 |
+
* Dev - PDF INVOICING & PACKING SLIPS - "Default Images Directory" option moved from "Header" settings section to "General" section.
|
192 |
+
* Dev - PDF INVOICING & PACKING SLIPS - Page Settings - "Background Image" option added.
|
193 |
+
* Fix - Functions - General - `wcj_get_select_options()` - Prefix (`wcj-`) is added to the keys (to prevent issues with numeric keys).
|
194 |
+
* Fix - Settings Manager - `manage_options()` fixed.
|
195 |
+
|
196 |
= 3.2.2 - 12/11/2017 =
|
197 |
* Dev - PRICES & CURRENCIES - Multicurrency (Currency Switcher) - "Advanced: Price Filters Priority" option added.
|
198 |
* Dev - PRICES & CURRENCIES - Price by User Role - "Advanced: Price Filters Priority" option added.
|
woocommerce-jetpack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Booster for WooCommerce
|
4 |
Plugin URI: https://booster.io
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
-
Version: 3.2.
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: https://booster.io
|
9 |
Text Domain: woocommerce-jetpack
|
@@ -64,7 +64,7 @@ require_once( 'includes/constants/wcj-constants.php' );
|
|
64 |
* Main WC_Jetpack Class
|
65 |
*
|
66 |
* @class WC_Jetpack
|
67 |
-
* @version 3.2.
|
68 |
*/
|
69 |
final class WC_Jetpack {
|
70 |
|
@@ -74,7 +74,7 @@ final class WC_Jetpack {
|
|
74 |
* @var string
|
75 |
* @since 2.4.7
|
76 |
*/
|
77 |
-
public $version = '3.2.
|
78 |
|
79 |
/**
|
80 |
* @var WC_Jetpack The single instance of the class
|
@@ -333,7 +333,7 @@ final class WC_Jetpack {
|
|
333 |
/**
|
334 |
* Include modules and submodules
|
335 |
*
|
336 |
-
* @version 3.2.
|
337 |
*/
|
338 |
function include_modules() {
|
339 |
$modules_files = array(
|
@@ -420,6 +420,7 @@ final class WC_Jetpack {
|
|
420 |
'includes/class-wcj-track-users.php',
|
421 |
'includes/class-wcj-breadcrumbs.php',
|
422 |
'includes/class-wcj-url-coupons.php',
|
|
|
423 |
'includes/class-wcj-admin-bar.php',
|
424 |
'includes/class-wcj-my-account.php',
|
425 |
'includes/class-wcj-custom-css.php',
|
3 |
Plugin Name: Booster for WooCommerce
|
4 |
Plugin URI: https://booster.io
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
+
Version: 3.2.3
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: https://booster.io
|
9 |
Text Domain: woocommerce-jetpack
|
64 |
* Main WC_Jetpack Class
|
65 |
*
|
66 |
* @class WC_Jetpack
|
67 |
+
* @version 3.2.3
|
68 |
*/
|
69 |
final class WC_Jetpack {
|
70 |
|
74 |
* @var string
|
75 |
* @since 2.4.7
|
76 |
*/
|
77 |
+
public $version = '3.2.3';
|
78 |
|
79 |
/**
|
80 |
* @var WC_Jetpack The single instance of the class
|
333 |
/**
|
334 |
* Include modules and submodules
|
335 |
*
|
336 |
+
* @version 3.2.3
|
337 |
*/
|
338 |
function include_modules() {
|
339 |
$modules_files = array(
|
420 |
'includes/class-wcj-track-users.php',
|
421 |
'includes/class-wcj-breadcrumbs.php',
|
422 |
'includes/class-wcj-url-coupons.php',
|
423 |
+
'includes/class-wcj-coupon-code-generator.php',
|
424 |
'includes/class-wcj-admin-bar.php',
|
425 |
'includes/class-wcj-my-account.php',
|
426 |
'includes/class-wcj-custom-css.php',
|