Version Description
- 16/12/2014 =
- Dev - PDF Invoices - Family font option added.
- Fix - Reports - Country sets fixed.
- i18n - POT file updated.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
includes/class-wcj-pdf-invoices.php
CHANGED
@@ -268,7 +268,12 @@ class WCJ_PDF_Invoices {
|
|
268 |
// dejavusans is a UTF-8 Unicode font, if you only need to
|
269 |
// print standard ASCII chars, you can use core fonts like
|
270 |
// helvetica or times to reduce file size.
|
271 |
-
$pdf->SetFont(
|
|
|
|
|
|
|
|
|
|
|
272 |
|
273 |
// Add a page
|
274 |
// This method has several options, check the source code documentation for more information.
|
@@ -1200,11 +1205,26 @@ class WCJ_PDF_Invoices {
|
|
1200 |
array( 'type' => 'sectionend', 'id' => 'wcj_pdf_invoices_footer_options' ),
|
1201 |
|
1202 |
array( 'title' => __( 'General Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => __( '', 'woocommerce-jetpack' ), 'id' => 'wcj_pdf_invoices_general_options' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1203 |
|
1204 |
array(
|
1205 |
'title' => __( 'Font size', 'woocommerce-jetpack' ),
|
1206 |
'desc' => __( 'Default: 8', 'woocommerce-jetpack' ),
|
1207 |
-
//'desc_tip' => __( 'Add PDF invoices for the store owners and for the customers.', 'woocommerce-jetpack' ),
|
1208 |
'id' => 'wcj_pdf_invoices_general_font_size',
|
1209 |
'default' => 8,
|
1210 |
'type' => 'number',
|
@@ -1213,7 +1233,6 @@ class WCJ_PDF_Invoices {
|
|
1213 |
array(
|
1214 |
'title' => __( 'CSS', 'woocommerce-jetpack' ),
|
1215 |
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
1216 |
-
//'desc_tip' => __( 'Add PDF invoices for the store owners and for the customers.', 'woocommerce-jetpack' ),
|
1217 |
'id' => 'wcj_pdf_invoices_general_css',
|
1218 |
'default' => $this->default_css,
|
1219 |
'type' => 'textarea',
|
268 |
// dejavusans is a UTF-8 Unicode font, if you only need to
|
269 |
// print standard ASCII chars, you can use core fonts like
|
270 |
// helvetica or times to reduce file size.
|
271 |
+
$pdf->SetFont(
|
272 |
+
apply_filters( 'wcj_get_option_filter', 'dejavusans', get_option( 'wcj_pdf_invoices_general_font_family', 'dejavusans' ) ),
|
273 |
+
'',
|
274 |
+
apply_filters( 'wcj_get_option_filter', 8, get_option( 'wcj_pdf_invoices_general_font_size' ) ),
|
275 |
+
'',
|
276 |
+
true);
|
277 |
|
278 |
// Add a page
|
279 |
// This method has several options, check the source code documentation for more information.
|
1205 |
array( 'type' => 'sectionend', 'id' => 'wcj_pdf_invoices_footer_options' ),
|
1206 |
|
1207 |
array( 'title' => __( 'General Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => __( '', 'woocommerce-jetpack' ), 'id' => 'wcj_pdf_invoices_general_options' ),
|
1208 |
+
|
1209 |
+
array(
|
1210 |
+
'title' => __( 'Font family', 'woocommerce-jetpack' ),
|
1211 |
+
//'desc' => __( 'Default: dejavusans', 'woocommerce-jetpack' ),
|
1212 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
1213 |
+
'id' => 'wcj_pdf_invoices_general_font_family',
|
1214 |
+
'default' => 'dejavusans',
|
1215 |
+
'type' => 'select',
|
1216 |
+
'options' => array(
|
1217 |
+
'dejavusans' => 'DejaVu Sans',
|
1218 |
+
'courier' => 'Courier',
|
1219 |
+
'helvetica' => 'Helvetica',
|
1220 |
+
'times' => 'Times',
|
1221 |
+
),
|
1222 |
+
'custom_attributes' => apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' ),
|
1223 |
+
),
|
1224 |
|
1225 |
array(
|
1226 |
'title' => __( 'Font size', 'woocommerce-jetpack' ),
|
1227 |
'desc' => __( 'Default: 8', 'woocommerce-jetpack' ),
|
|
|
1228 |
'id' => 'wcj_pdf_invoices_general_font_size',
|
1229 |
'default' => 8,
|
1230 |
'type' => 'number',
|
1233 |
array(
|
1234 |
'title' => __( 'CSS', 'woocommerce-jetpack' ),
|
1235 |
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
|
|
1236 |
'id' => 'wcj_pdf_invoices_general_css',
|
1237 |
'default' => $this->default_css,
|
1238 |
'type' => 'textarea',
|
includes/class-wcj-product-input-fields-per-product.php
CHANGED
@@ -194,9 +194,9 @@ class WCJ_Product_Input_Fields_Per_Product extends WCJ_Product_Input_Fields {
|
|
194 |
array(
|
195 |
'title' => __( 'Product Input Fields per Product Options', 'woocommerce-jetpack' ),
|
196 |
'type' => 'title',
|
197 |
-
'desc' => __( 'Add custom input fields to product\'s single page for customer to fill before adding product to cart.', 'woocommerce-jetpack' )
|
198 |
-
' '
|
199 |
-
__( 'When enabled this module will add "Product Input Fields" tab to product\'s "Edit" page.', 'woocommerce-jetpack' ),
|
200 |
'id' => 'wcj_product_input_fields_local_options',
|
201 |
),
|
202 |
|
194 |
array(
|
195 |
'title' => __( 'Product Input Fields per Product Options', 'woocommerce-jetpack' ),
|
196 |
'type' => 'title',
|
197 |
+
'desc' => __( 'Add custom input fields to product\'s single page for customer to fill before adding product to cart.', 'woocommerce-jetpack' )
|
198 |
+
. ' '
|
199 |
+
. __( 'When enabled this module will add "Product Input Fields" tab to product\'s "Edit" page.', 'woocommerce-jetpack' ),
|
200 |
'id' => 'wcj_product_input_fields_local_options',
|
201 |
),
|
202 |
|
includes/countries/wcj-country-sets.php
DELETED
@@ -1,40 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
return array(
|
3 |
-
'EU' => array(
|
4 |
-
'AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'GB',
|
5 |
-
),
|
6 |
-
|
7 |
-
'Europe' => array(
|
8 |
-
'AL', 'AD', 'AT', 'BY', 'BE', 'BA', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FO', 'FI', 'FR', 'DE', 'GI', 'GR', 'HU', 'IS', 'IE', 'IT', 'LV', 'LI', 'LT', 'LU', 'MK', 'MT', 'MD', 'MC', 'NL', 'NO', 'PL', 'PT', 'RO', 'RU', 'SM', 'RS', 'SK', 'SI', 'ES', 'SE', 'CH', 'UA', 'GB', 'VA', 'RS', 'IM', 'RS', 'ME',
|
9 |
-
),
|
10 |
-
|
11 |
-
'Africa (excl. ZA)' => array(
|
12 |
-
'DZ', 'AO', 'SH', 'BJ', 'BW', 'BF', 'BI', 'CM', 'CV', 'CF', 'TD', 'KM', 'CG', 'DJ', 'EG', 'GQ', 'ER', 'ET', 'GA', 'GM', 'GH', 'GW', 'GN', 'CI', 'KE', 'LS', 'LR', 'LY', 'MG', 'MW', 'ML', 'MR', 'MU', 'YT', 'MA', 'MZ', 'NA', 'NE', 'NG', 'ST', 'RE', 'RW', 'ST', 'SN', 'SC', 'SL', 'SO', /*'ZA',*/ 'SH', 'SD', 'SZ', 'TZ', 'TG', 'TN', 'UG', 'CD', 'ZM', 'TZ', 'ZW', 'SS', 'CD',
|
13 |
-
),
|
14 |
-
|
15 |
-
'Big South America' => array(
|
16 |
-
'AR', 'BO', 'BR', 'CL', 'CO', 'EC', 'FK', 'GF', 'GY', 'GY', 'PY', 'PE', 'SR', 'UY', 'VE',
|
17 |
-
'AI', 'AG', 'AW', 'BS', 'BB', 'BZ', 'BM', 'VG', 'KY', 'CR', 'CU', 'CW', 'DM', 'DO', 'SV', 'GL', 'GD', 'GP', 'GT', 'HT', 'HN', 'JM', 'MQ', 'PM', 'MS', 'CW', 'KN', 'NI', 'PA', 'PR', 'KN', 'LC', 'PM', 'VC', 'TT', 'TC', 'VI', 'SX', 'BQ', 'SA', 'SE',
|
18 |
-
'MX',
|
19 |
-
),
|
20 |
-
|
21 |
-
'Central America' => array(
|
22 |
-
'AI', 'AG', 'AW', 'BS', 'BB', 'BZ', 'BM', 'VG', 'KY', 'CR', 'CU', 'CW', 'DM', 'DO', 'SV', 'GL', 'GD', 'GP', 'GT', 'HT', 'HN', 'JM', 'MQ', 'PM', 'MS', 'CW', 'KN', 'NI', 'PA', 'PR', 'KN', 'LC', 'PM', 'VC', 'TT', 'TC', 'VI', 'SX', 'BQ', 'SA', 'SE',
|
23 |
-
),
|
24 |
-
|
25 |
-
'Asia' => array(
|
26 |
-
'AF', 'AM', 'AZ', 'BH', 'BD', 'BT', 'BN', 'KH', 'CN', 'CX', 'CC', 'IO', 'GE', 'HK', 'IN', 'ID', 'IR', 'IQ', 'IL', 'JP', 'JO', 'KZ', 'KP', 'KR', 'KW', 'KG', 'LA', 'LB', 'MO', 'MY', 'MV', 'MN', 'MM', 'NP', 'OM', 'PK', 'PH', 'QA', 'SA', 'SG', 'LK', 'SY', 'TW', 'TJ', 'TH', 'TR', 'TM', 'AE', 'UZ', 'VN', 'YE', 'PS',
|
27 |
-
),
|
28 |
-
|
29 |
-
'Oceania' => array(
|
30 |
-
'AS', 'AU', 'NZ', 'CK', 'FJ', 'PF', 'GU', 'KI', 'MP', 'MH', 'FM', 'UM', 'NR', 'NC', 'NZ', 'NU', 'NF', 'PW', 'PG', 'MP', 'SB', 'TK', 'TO', 'TV', 'VU', 'UM', 'WF', 'WS', 'TL',
|
31 |
-
),
|
32 |
-
|
33 |
-
'South America' => array(
|
34 |
-
'AR', 'BO', 'BR', 'CL', 'CO', 'EC', 'FK', 'GF', 'GY', 'GY', 'PY', 'PE', 'SR', 'UY', 'VE',
|
35 |
-
),
|
36 |
-
|
37 |
-
'North America' => array(
|
38 |
-
'CA', 'MX', 'US',
|
39 |
-
),
|
40 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/reports/countries/wcj-country-sets.php
CHANGED
@@ -1,35 +1,45 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
'
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
'
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* WooCommerce Jetpack Country Sets
|
4 |
+
*
|
5 |
+
* @version 2.0.0
|
6 |
+
* @author Algoritmika Ltd.
|
7 |
+
*/
|
8 |
+
|
9 |
+
return array(
|
10 |
+
|
11 |
+
'Africa' => array(
|
12 |
+
'AO', 'BF', 'BI', 'BJ', 'BW', 'CD', 'CF', 'CG', 'CI', 'CM', 'CV', 'DJ', 'DZ', 'EG', 'EH', 'ER', 'ET', 'GA', 'GH', 'GM', 'GN', 'GQ', 'GW', 'YT', 'KE', 'KM', 'LY', 'LR', 'LS', 'MA', 'MG', 'ML', 'MR', 'MU', 'MW', 'MZ', 'NA', 'NE', 'NG', 'RE', 'RW', 'SC', 'SD', 'SH', 'SL', 'SN', 'SO', 'ST', 'SZ', 'TD', 'TG', 'TN', 'TZ', 'UG', 'ZA', 'ZM', 'ZW',
|
13 |
+
),
|
14 |
+
|
15 |
+
'Asia' => array(
|
16 |
+
'AE', 'AF', 'AM', 'AP', 'AZ', 'BD', 'BH', 'BN', 'BT', 'CC', 'CY', 'CN', 'CX', 'GE', 'HK', 'ID', 'IL', 'IN', 'IO', 'IQ', 'IR', 'YE', 'JO', 'JP', 'KG', 'KH', 'KP', 'KR', 'KW', 'KZ', 'LA', 'LB', 'LK', 'MY', 'MM', 'MN', 'MO', 'MV', 'NP', 'OM', 'PH', 'PK', 'PS', 'QA', 'SA', 'SG', 'SY', 'TH', 'TJ', 'TL', 'TM', 'TW', 'UZ', 'VN',
|
17 |
+
),
|
18 |
+
|
19 |
+
'European Union' => array(
|
20 |
+
'AT', 'BE', 'BG', 'CY', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HU', 'HR', 'IE', 'IT', 'LT', 'LU', 'LV', 'MT', 'NL', 'PL', 'PT', 'RO', 'SE', 'SI', 'SK',
|
21 |
+
),
|
22 |
+
'Europe' => array(
|
23 |
+
'AD', 'AL', 'AT', 'AX', 'BA', 'BE', 'BG', 'BY', 'CH', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FO', 'FR', 'FX', 'GB', 'GG', 'GI', 'GR', 'HR', 'HU', 'IE', 'IM', 'IS', 'IT', 'JE', 'LI', 'LT', 'LU', 'LV', 'MC', 'MD', 'ME', 'MK', 'MT', 'NL', 'NO', 'PL', 'PT', 'RO', 'RS', 'RU', 'SE', 'SI', 'SJ', 'SK', 'SM', 'TR', 'UA', 'VA',
|
24 |
+
),
|
25 |
+
/*'Europe excl EU' => array(
|
26 |
+
'AD', 'AL', 'AX', 'BA', 'BY', 'CH', 'FO', 'FX', 'GG', 'GI', 'IM', 'IS', 'JE', 'LI', 'MC', 'MD', 'ME', 'MK', 'NO', 'RS', 'RU', 'SJ', 'SM', 'TR', 'UA', 'VA',
|
27 |
+
),*/
|
28 |
+
|
29 |
+
'Central America' => array(
|
30 |
+
'AG', 'AI', 'AN', 'AW', 'BB', 'BL', 'BM', 'BS', 'BZ', 'CR', 'CU', 'DM', 'DO', 'GD', 'GL', 'GP', 'GT', 'HN', 'HT', 'JM', 'KY', 'KN', 'LC', 'MF', 'MQ', 'MS', 'NI', 'PA', 'PM', 'PR', 'SV', 'TC', 'TT', 'VC', 'VG', 'VI',
|
31 |
+
),
|
32 |
+
|
33 |
+
'North America' => array(
|
34 |
+
'CA', 'MX', 'US',
|
35 |
+
),
|
36 |
+
|
37 |
+
'Oceania' => array(
|
38 |
+
'AS', 'AU', 'CK', 'FJ', 'FM', 'GU', 'KI', 'MH', 'MP', 'NC', 'NF', 'NR', 'NU', 'NZ', 'PF', 'PG', 'PN', 'PW', 'SB', 'TK', 'TO', 'TV', 'UM', 'VU', 'WF', 'WS',
|
39 |
+
),
|
40 |
+
|
41 |
+
'South America' => array(
|
42 |
+
'AR', 'BO', 'BR', 'CL', 'CO', 'EC', 'FK', 'GF', 'GY', 'GY', 'PE', 'PY', 'SR', 'UY', 'VE',
|
43 |
+
),
|
44 |
+
|
45 |
+
);
|
langs/woocommerce-jetpack.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce Jetpack
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
-
"POT-Creation-Date: 2014-12-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,85 +12,127 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
#: includes/admin/settings/class-wc-settings-jetpack.php:24
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
20 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
21 |
msgid "Dashboard"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
25 |
msgid "Price Labels"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
29 |
msgid "Products"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
33 |
-
#: includes/class-wcj-cart.php:
|
34 |
msgid "Cart"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
38 |
#: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
|
39 |
msgid "Checkout"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
43 |
-
#: includes/class-wcj-
|
|
|
44 |
#: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
|
45 |
msgid "Shipping"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
49 |
-
#: includes/class-wcj-orders.php:
|
50 |
msgid "Orders"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
54 |
-
#: includes/class-wcj-pdf-invoices.php:
|
55 |
-
#: includes/class-wcj-pdf-invoices.php:
|
56 |
msgid "PDF Invoices"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
60 |
#: includes/class-wcj-emails.php:118 includes/class-wcj-emails.php:162
|
61 |
msgid "Emails"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
65 |
-
#: includes/class-wcj-currencies.php:
|
66 |
msgid "Currencies"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
70 |
msgid "Misc."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
74 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
75 |
msgid "Select All"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
79 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
80 |
msgid "Feature"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
84 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
85 |
#: includes/admin/tools/class-wcj-tools.php:69
|
86 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
87 |
msgid "Description"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
91 |
msgid "WooCommerce Jetpack Dashboard"
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
#: includes/admin/tools/class-wcj-tools.php:34
|
95 |
msgid "Tools Dashboard"
|
96 |
msgstr ""
|
@@ -115,271 +157,495 @@ msgstr ""
|
|
115 |
msgid "Status"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/class-wcj-add-to-cart.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "Add to Cart Options"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/class-wcj-add-to-cart.php:
|
123 |
-
#: includes/class-wcj-add-to-cart.php:
|
124 |
msgid "Add to Cart"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-wcj-add-to-cart.php:
|
128 |
msgid "Enable the Add to Cart feature"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-wcj-add-to-cart.php:
|
132 |
msgid ""
|
133 |
-
"Set any url to redirect to on
|
134 |
"button by product type. Display \"Already in cart\" instead of \"Add to cart"
|
135 |
"\" button if current product is already in cart."
|
136 |
msgstr ""
|
137 |
|
138 |
#: includes/class-wcj-add-to-cart.php:168
|
139 |
-
msgid "Add to Cart Redirect Options"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes/class-wcj-add-to-cart.php:
|
143 |
msgid ""
|
144 |
-
"This section lets you set any
|
145 |
-
"product to cart. Leave empty to redirect to checkout page (skipping
|
146 |
-
"page)."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/class-wcj-add-to-cart.php:
|
150 |
-
msgid "Redirect"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/class-wcj-add-to-cart.php:
|
154 |
-
|
155 |
-
#: includes/class-wcj-cart.php:168 includes/class-wcj-orders.php:429
|
156 |
-
#: includes/class-wcj-orders.php:546 includes/class-wcj-orders.php:559
|
157 |
-
#: includes/class-wcj-price-labels.php:602
|
158 |
-
#: includes/class-wcj-product-info.php:427
|
159 |
-
#: includes/class-wcj-product-info.php:546
|
160 |
-
#: includes/class-wcj-product-info.php:583
|
161 |
-
#: includes/class-wcj-product-info.php:627
|
162 |
-
#: includes/class-wcj-product-input-fields.php:99
|
163 |
-
#: includes/class-wcj-sorting.php:220
|
164 |
-
msgid "Enable"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcj-add-to-cart.php:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcj-add-to-cart.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-wcj-add-to-cart.php:
|
176 |
msgid "Add to Cart Button Text Options"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/class-wcj-add-to-cart.php:
|
180 |
msgid "Add to cart text"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/class-wcj-add-to-cart.php:
|
184 |
msgid "Simple product"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/class-wcj-add-to-cart.php:
|
188 |
msgid "Variable product"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/class-wcj-add-to-cart.php:
|
192 |
msgid "External product"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/class-wcj-add-to-cart.php:
|
196 |
msgid "Grouped product"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-wcj-add-to-cart.php:
|
200 |
msgid "Other product"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-wcj-add-to-cart.php:
|
204 |
msgid "Single product view."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/class-wcj-add-to-cart.php:
|
208 |
-
#: includes/class-wcj-add-to-cart.php:
|
209 |
-
#: includes/class-wcj-add-to-cart.php:
|
210 |
-
#: includes/class-wcj-add-to-cart.php:
|
211 |
-
#: includes/class-wcj-payment-gateways.php:
|
212 |
msgid "Leave blank to disable."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/class-wcj-add-to-cart.php:
|
216 |
-
#: includes/class-wcj-add-to-cart.php:
|
217 |
-
#: includes/class-wcj-add-to-cart.php:
|
218 |
-
#: includes/class-wcj-add-to-cart.php:
|
219 |
-
#: includes/class-wcj-sorting.php:
|
220 |
-
#: includes/class-wcj-sorting.php:
|
221 |
-
#: includes/class-wcj-sorting.php:
|
222 |
msgid "Default: "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/class-wcj-add-to-cart.php:
|
226 |
msgid "Product category (archive) view."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/class-wcj-add-to-cart.php:
|
230 |
msgid "Products with price set to 0 (i.e. free). Single product view."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-wcj-add-to-cart.php:
|
234 |
-
#: includes/class-wcj-add-to-cart.php:
|
235 |
msgid "Leave blank to disable. Default: Add to cart"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/class-wcj-add-to-cart.php:
|
239 |
-
#: includes/class-wcj-add-to-cart.php:
|
240 |
-
#: includes/class-wcj-add-to-cart.php:
|
241 |
-
#: includes/class-wcj-add-to-cart.php:
|
242 |
-
#: includes/class-wcj-add-to-cart.php:
|
243 |
-
#: includes/class-wcj-add-to-cart.php:
|
244 |
msgid "Add to cart"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/class-wcj-add-to-cart.php:
|
248 |
msgid ""
|
249 |
"Products with price set to 0 (i.e. free). Product category (archive) view."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/class-wcj-add-to-cart.php:
|
253 |
msgid "Products with empty price. Product category (archive) view."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-wcj-add-to-cart.php:
|
257 |
msgid "Leave blank to disable. Default: Read More"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/class-wcj-add-to-cart.php:
|
261 |
msgid "Read More"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/class-wcj-add-to-cart.php:
|
265 |
msgid "Already in cart. Single product view."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/class-wcj-add-to-cart.php:
|
269 |
-
#: includes/class-wcj-add-to-cart.php:
|
270 |
msgid "Try: "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-wcj-add-to-cart.php:
|
274 |
-
#: includes/class-wcj-add-to-cart.php:
|
275 |
msgid "Already in cart - Add Again?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-wcj-add-to-cart.php:
|
279 |
msgid "Already in cart. Product category (archive) view."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-wcj-call-for-price.php:
|
283 |
msgid "Call for Price Options"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-wcj-call-for-price.php:
|
287 |
msgid ""
|
288 |
"Leave price empty when adding or editing products. Then set the options here."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/class-wcj-call-for-price.php:
|
292 |
-
#: includes/class-wcj-call-for-price.php:
|
293 |
msgid "Call for Price"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/class-wcj-call-for-price.php:
|
297 |
msgid "Enable the Call for Price feature"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/class-wcj-call-for-price.php:
|
301 |
msgid "Create any custom price label for all products with empty price."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-wcj-call-for-price.php:
|
305 |
msgid "Label to Show on Single"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/class-wcj-call-for-price.php:
|
309 |
-
#: includes/class-wcj-call-for-price.php:
|
310 |
-
#: includes/class-wcj-call-for-price.php:
|
311 |
-
#: includes/class-wcj-call-for-price.php:
|
312 |
msgid "This sets the html to output on empty price. Leave blank to disable."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/class-wcj-call-for-price.php:
|
316 |
msgid "Label to Show on Archives"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/class-wcj-call-for-price.php:
|
320 |
msgid "Label to Show on Homepage"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/class-wcj-call-for-price.php:
|
324 |
msgid "Label to Show on Related"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: includes/class-wcj-call-for-price.php:
|
328 |
msgid "Hide Sale! Tag"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/class-wcj-call-for-price.php:
|
332 |
msgid "Hide the tag"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/class-wcj-cart.php:
|
336 |
msgid "Cart Options"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/class-wcj-cart.php:
|
340 |
msgid "Enable the Cart feature"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/class-wcj-cart.php:
|
344 |
msgid "Add empty cart button, automatically add to cart on product visit."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/class-wcj-cart.php:
|
348 |
msgid "Empty Cart Options"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/class-wcj-cart.php:
|
352 |
msgid ""
|
353 |
"This section lets you add and customize \"Empty Cart\" button to cart page."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: includes/class-wcj-cart.php:
|
357 |
msgid "Empty Cart"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-wcj-cart.php:
|
361 |
msgid "Empty Cart Button Text"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-wcj-cart.php:
|
365 |
msgid "Wrapping DIV style"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-wcj-cart.php:
|
369 |
msgid "Style for the button's div. Default is \"float: right;\""
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/class-wcj-cart.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
msgid "Add to Cart on Visit"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: includes/class-wcj-cart.php:
|
377 |
msgid ""
|
378 |
"This section lets you enable automatically adding product to cart on "
|
379 |
"visiting the product page. Product is only added once, so if it is already "
|
380 |
"in cart - duplicate product is not added. "
|
381 |
msgstr ""
|
382 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
#: includes/class-wcj-checkout.php:141
|
384 |
msgid "Checkout Options"
|
385 |
msgstr ""
|
@@ -398,10 +664,6 @@ msgstr ""
|
|
398 |
msgid "Place order (Order now) Button"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/class-wcj-checkout.php:159
|
402 |
-
msgid "Text"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
#: includes/class-wcj-checkout.php:160
|
406 |
msgid "leave blank for WooCommerce default"
|
407 |
msgstr ""
|
@@ -424,30 +686,66 @@ msgstr ""
|
|
424 |
msgid "Leave blank for WooCommerce defaults."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/class-wcj-currencies.php:
|
|
|
428 |
msgid "Currency Symbol"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/class-wcj-currencies.php:
|
432 |
msgid "This sets the currency symbol."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/class-wcj-currencies.php:
|
436 |
msgid "Currencies Options"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/class-wcj-currencies.php:
|
440 |
msgid "Enable the Currencies feature"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/class-wcj-currencies.php:
|
444 |
msgid "Add all world currencies, change currency symbol."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/class-wcj-currencies.php:
|
448 |
msgid "Currency Symbol Options"
|
449 |
msgstr ""
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
#: includes/class-wcj-emails.php:57
|
452 |
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
453 |
msgstr ""
|
@@ -490,7 +788,7 @@ msgstr ""
|
|
490 |
msgid "Email Forwarding Options"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:
|
494 |
msgid "General Options"
|
495 |
msgstr ""
|
496 |
|
@@ -522,13 +820,8 @@ msgstr ""
|
|
522 |
msgid "Custom CSS - Back end (Admin)"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/class-wcj-old-slugs.php:
|
526 |
-
#: includes/class-wcj-orders.php:
|
527 |
-
msgid "enabled"
|
528 |
-
msgstr ""
|
529 |
-
|
530 |
-
#: includes/class-wcj-old-slugs.php:51 includes/class-wcj-orders.php:112
|
531 |
-
#: includes/class-wcj-orders.php:264 includes/class-wcj-price-labels.php:118
|
532 |
msgid "disabled"
|
533 |
msgstr ""
|
534 |
|
@@ -575,835 +868,955 @@ msgstr ""
|
|
575 |
msgid "No old slugs found."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/class-wcj-
|
579 |
-
|
580 |
-
msgid "Pending payment"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/class-wcj-
|
584 |
-
|
585 |
-
msgid "Processing"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/class-wcj-
|
589 |
-
|
590 |
-
msgid "On hold"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/class-wcj-
|
594 |
-
|
595 |
-
msgid "Completed"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: includes/class-wcj-
|
599 |
-
|
600 |
-
msgid "Cancelled"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/class-wcj-
|
604 |
-
|
605 |
-
|
|
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/class-wcj-
|
609 |
-
|
610 |
-
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-wcj-
|
614 |
-
|
615 |
-
|
|
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: includes/class-wcj-
|
619 |
-
msgid "
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: includes/class-wcj-
|
623 |
-
msgid "
|
|
|
|
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: includes/class-wcj-
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: includes/class-wcj-
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: includes/class-wcj-
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/class-wcj-
|
639 |
-
msgid "
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: includes/class-wcj-
|
643 |
-
msgid "
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: includes/class-wcj-
|
647 |
-
msgid "
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: includes/class-wcj-
|
651 |
-
msgid "
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: includes/class-wcj-
|
655 |
-
msgid "
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: includes/class-wcj-
|
659 |
msgid ""
|
660 |
-
"
|
|
|
|
|
|
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/class-wcj-
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/class-wcj-
|
668 |
-
msgid "
|
|
|
|
|
|
|
|
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/class-wcj-
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/class-wcj-
|
676 |
-
msgid "
|
|
|
|
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/class-wcj-
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/class-wcj-
|
684 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: includes/class-wcj-orders.php:
|
688 |
-
|
|
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: includes/class-wcj-orders.php:
|
692 |
-
|
|
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/class-wcj-orders.php:
|
696 |
-
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/class-wcj-orders.php:
|
700 |
-
|
701 |
-
|
702 |
-
"existing orders starting from order counter settings in WooCommerce > "
|
703 |
-
"Settings > Jetpack > Order Numbers."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: includes/class-wcj-orders.php:
|
707 |
-
|
|
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: includes/class-wcj-orders.php:
|
711 |
-
|
|
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: includes/class-wcj-orders.php:
|
715 |
-
|
716 |
-
|
717 |
-
"Minimum order amount."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/class-wcj-orders.php:
|
721 |
-
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: includes/class-wcj-orders.php:
|
725 |
-
msgid ""
|
726 |
-
"This section lets you enable sequential order numbering, set custom number "
|
727 |
-
"prefix and width."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: includes/class-wcj-orders.php:
|
731 |
-
msgid "
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/class-wcj-orders.php:
|
735 |
-
msgid "
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/class-wcj-orders.php:
|
739 |
-
msgid "
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/class-wcj-orders.php:
|
743 |
-
msgid "
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/class-wcj-orders.php:
|
747 |
-
msgid ""
|
748 |
-
"Prefix before order number (optional). This will change the prefixes for all "
|
749 |
-
"existing orders."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: includes/class-wcj-orders.php:
|
753 |
-
msgid "
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: includes/class-wcj-orders.php:
|
757 |
-
msgid ""
|
758 |
-
"Date prefix before order number (optional). This will change the prefixes "
|
759 |
-
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
760 |
-
"most of PHP date formats can be used. The only exception is using `\\` "
|
761 |
-
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
762 |
-
"d- or mdy."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: includes/class-wcj-orders.php:
|
766 |
-
msgid "
|
|
|
|
|
|
|
|
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-wcj-orders.php:
|
770 |
msgid ""
|
771 |
-
"
|
772 |
-
"side). This will change the minimum width of order number for all existing "
|
773 |
-
"orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
|
774 |
-
"Leave zero to disable."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/class-wcj-orders.php:
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/class-wcj-orders.php:
|
782 |
-
msgid ""
|
783 |
-
|
784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/class-wcj-orders.php:
|
788 |
msgid "Order Minimum Amount"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: includes/class-wcj-orders.php:
|
792 |
msgid "This section lets you set minimum order amount."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/class-wcj-orders.php:
|
796 |
msgid "Amount"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/class-wcj-orders.php:
|
800 |
msgid "Minimum order amount. Set to 0 to disable."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/class-wcj-orders.php:
|
804 |
msgid "Error message"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: includes/class-wcj-orders.php:
|
808 |
msgid ""
|
809 |
"Message to customer if order is below minimum amount. Default: You must have "
|
810 |
"an order with a minimum of %s to place your order, your current order total "
|
811 |
"is %s."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/class-wcj-orders.php:
|
815 |
msgid "Add notice to cart page also"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/class-wcj-orders.php:
|
819 |
msgid "Add"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: includes/class-wcj-orders.php:
|
823 |
msgid "Message on cart page"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: includes/class-wcj-orders.php:
|
827 |
msgid ""
|
828 |
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/class-wcj-orders.php:
|
832 |
msgid "Redirect back to Cart page"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/class-wcj-orders.php:
|
836 |
msgid "Orders Auto-Complete"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/class-wcj-orders.php:
|
840 |
msgid "This section lets you enable orders auto-complete function."
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/class-wcj-orders.php:
|
844 |
msgid "Auto-complete all WooCommerce orders"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/class-wcj-orders.php:
|
848 |
msgid ""
|
849 |
"E.g. if you sell digital products then you are not shipping anything and you "
|
850 |
"may want auto-complete all your orders."
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/class-wcj-orders.php:
|
854 |
msgid "This section lets you enable custom statuses tool."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/class-wcj-orders.php:
|
858 |
msgid ""
|
859 |
"When enabled, the Custom Statuses tool is accessible through <a href="
|
860 |
"\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack "
|
861 |
"Tools > Custom Statuses</a>."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: includes/class-wcj-payment-gateways.php:
|
869 |
-
#: includes/class-wcj-payment-gateways.php:
|
870 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:86
|
871 |
msgid ""
|
872 |
"If you want to show an image next to the gateway's name on the frontend, "
|
873 |
"enter a URL to an image."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/class-wcj-payment-gateways.php:
|
877 |
-
#: includes/class-wcj-payment-gateways.php:
|
878 |
msgid "Payment Gateways Fees Options"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/class-wcj-payment-gateways.php:
|
882 |
msgid "This section lets you set extra fees for payment gateways."
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/class-wcj-payment-gateways.php:
|
886 |
msgid "Fees are applied BEFORE taxes."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/class-wcj-payment-gateways.php:
|
890 |
msgid "Fee title to show to customer."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/class-wcj-payment-gateways.php:
|
894 |
msgid "Fee type."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-wcj-payment-gateways.php:
|
898 |
msgid "Percent or fixed value."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-wcj-payment-gateways.php:
|
902 |
msgid "Fixed"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/class-wcj-payment-gateways.php:
|
906 |
msgid "Percent"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/class-wcj-payment-gateways.php:
|
910 |
msgid "Fee value."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/class-wcj-payment-gateways.php:
|
914 |
msgid "The value."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: includes/class-wcj-payment-gateways.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Payment Gateways Attach PDF Invoice Options"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: includes/class-wcj-payment-gateways.php:
|
922 |
msgid ""
|
923 |
"This section lets you choose when to attach PDF invoice to customers emails."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-wcj-payment-gateways.php:
|
927 |
msgid "Attach PDF invoice."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/class-wcj-payment-gateways.php:
|
931 |
msgid "Payment Gateways Options"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/class-wcj-payment-gateways.php:
|
935 |
-
#: includes/class-wcj-payment-gateways.php:
|
936 |
msgid "Payment Gateways"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/class-wcj-payment-gateways.php:
|
940 |
msgid "Enable the Payment Gateways feature"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/class-wcj-payment-gateways.php:
|
944 |
msgid ""
|
945 |
"Add custom payment gateway, change icons (images) for all default "
|
946 |
"WooCommerce payment gateways."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-wcj-payment-gateways.php:
|
950 |
msgid "Custom Payment Gateways Options"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-wcj-payment-gateways.php:
|
954 |
msgid "Number of Gateways"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/class-wcj-payment-gateways.php:
|
958 |
msgid ""
|
959 |
"Number of custom payments gateways to be added. All settings for each new "
|
960 |
"gateway are in WooCommerce > Settings > Checkout."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/class-wcj-payment-gateways.php:
|
964 |
msgid "Default WooCommerce Payment Gateways Options"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: includes/class-wcj-payment-gateways.php:
|
968 |
msgid ""
|
969 |
"This section lets you enable extra fees for payment gateways. When enabled "
|
970 |
"all options are added to WooCommerce > Settings > Checkout"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-wcj-payment-gateways.php:
|
974 |
msgid "Payment Gateways Fees"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/class-wcj-payment-gateways.php:
|
978 |
msgid "Enable the Payment Gateways Fees"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/class-wcj-pdf-invoices.php:
|
982 |
-
#: includes/class-wcj-pdf-invoices.php:
|
983 |
msgid "Invoice"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/class-wcj-pdf-invoices.php:
|
987 |
-
#: includes/class-wcj-pdf-invoices.php:
|
988 |
msgid "PDF Invoice"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: includes/class-wcj-pdf-invoices.php:
|
992 |
msgid "PDF Invoices Options"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/class-wcj-pdf-invoices.php:
|
996 |
msgid "Enable the PDF Invoices feature"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1000 |
msgid "Add PDF invoices for the store owners and for the customers."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1004 |
msgid "Invoice Header"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1008 |
msgid ""
|
1009 |
"This section lets you set texts for required invoice number and date, and "
|
1010 |
"optional logo, header text, invoice due and fulfillment dates."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1014 |
msgid "Your Logo URL"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1018 |
msgid ""
|
1019 |
"Enter a URL to an image you want to show in the invoice's header. Upload "
|
1020 |
"your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1024 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1025 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1026 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1027 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1028 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1029 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1030 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1031 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1032 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1033 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1034 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1035 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1036 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1037 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1038 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1039 |
msgid "Leave blank to disable"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1043 |
msgid "Header Text"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1047 |
msgid "Default: INVOICE"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1051 |
msgid "INVOICE"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1055 |
msgid "Invoice Number"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1059 |
msgid "Default: Invoice number"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1063 |
msgid "Invoice number"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1067 |
msgid "Order Date"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1071 |
msgid "Default: Order date"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1075 |
msgid "Order date"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1079 |
msgid "Order Time"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1083 |
msgid "Default: Order time"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1087 |
msgid "Order time"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1091 |
msgid "Invoice Date"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1095 |
msgid "Default: Invoice date"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1099 |
msgid "Invoice date"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1103 |
msgid "Default: Invoice due date"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1107 |
msgid "Invoice due date"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1111 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1112 |
msgid "days"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1116 |
msgid "Default: Invoice fulfillment date"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1120 |
msgid "Invoice fulfillment date"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1124 |
msgid "Additional Header"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1128 |
msgid ""
|
1129 |
"Additional header - will be displayed above all data on invoice. You can use "
|
1130 |
"html and/or shortcodes here."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1134 |
msgid "Seller and Buyer Info"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1138 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1139 |
msgid "Seller"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1143 |
msgid "Your business information"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1147 |
msgid "New lines are added automatically."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1151 |
msgid "<strong>Company Name</strong>"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1155 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1156 |
msgid "Buyer"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1160 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1161 |
msgid "Items"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1165 |
msgid "Items Table Heading Text"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1169 |
msgid "Shipping as Item"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1173 |
msgid "Display shipping as item"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1177 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1178 |
msgid "Add shipping method info"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1182 |
msgid "Do not add shipping method info"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1186 |
msgid "Replace with shipping method info"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1190 |
msgid "Discount as Item"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1194 |
msgid "Display discount as item"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1198 |
msgid "Items Columns"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1202 |
msgid ""
|
1203 |
"This section lets you set column names in invoice items table. You can "
|
1204 |
"disable some columns by leaving blank column name."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1208 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1209 |
msgid "Nr."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1213 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1214 |
msgid "Item Name"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1218 |
msgid "Item Name Additional Info"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1222 |
msgid ""
|
1223 |
"Here you can add more info to item's name column (e.g. sku). Default is "
|
1224 |
"(SKU: %sku%)"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1228 |
msgid "(SKU: %sku%)"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1232 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1233 |
msgid "Qty"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1237 |
msgid "Single Item Price (TAX excl.)"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1241 |
msgid "Price (TAX excl.)"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1245 |
msgid "Single Item TAX"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1249 |
msgid "TAX"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1253 |
msgid "Single Item Price (TAX incl.)"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1257 |
msgid "Price (TAX incl.)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1261 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1262 |
msgid "Sum (TAX excl.)"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1266 |
msgid "Tax Percent"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1270 |
msgid "Taxes %"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1274 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1275 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1276 |
msgid "Taxes"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1280 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1281 |
msgid "Sum (TAX incl.)"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1285 |
msgid "Totals"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1289 |
msgid "This section lets you set texts for totals table."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1293 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1294 |
msgid "Order Subtotal"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1298 |
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1302 |
msgid "Order Shipping Price"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1306 |
msgid "Total Discount"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1310 |
msgid "Discount"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1314 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1315 |
msgid "Order Total (TAX excl.)"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1319 |
msgid ""
|
1320 |
"Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
|
1321 |
"is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
|
1322 |
"equal to \"Order Subtotal\""
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1326 |
msgid "Order Total Taxes"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1330 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1331 |
msgid "Order Total"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1335 |
msgid "Footer"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1339 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1340 |
msgid "Payment Method"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1344 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1345 |
msgid "Shipping Method"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1349 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1350 |
msgid "Shipping Address"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1354 |
msgid ""
|
1355 |
"Will be displayed only if customer's shipping address differs from billing "
|
1356 |
"address. Leave blank to disable"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1360 |
msgid "Additional Footer"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1364 |
msgid ""
|
1365 |
"Additional footer - will be displayed below all other data on invoice. You "
|
1366 |
"can use html and/or shortcodes here."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1370 |
msgid "Font size"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1374 |
msgid "Default: 8"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1378 |
msgid "CSS"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1382 |
msgid "PDF Invoices for Customers (in My Account)"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1386 |
msgid "Enable the PDF Invoices in customers account"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1390 |
msgid "PDF Invoices for Customers (Email attachment)"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1394 |
msgid ""
|
1395 |
"Enable the PDF Invoices attachment files in customers email on order "
|
1396 |
"completed"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1400 |
msgid "Enable Save as"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1404 |
msgid "Enable save as pdf instead of view pdf"
|
1405 |
msgstr ""
|
1406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1407 |
#: includes/class-wcj-price-labels.php:119
|
1408 |
msgid "Migrate from Custom Price Labels (Pro)"
|
1409 |
msgstr ""
|
@@ -1452,72 +1865,81 @@ msgstr ""
|
|
1452 |
msgid "Migrate data"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: includes/class-wcj-price-labels.php:
|
1456 |
msgid "Custom Price Labels Options"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: includes/class-wcj-price-labels.php:
|
1460 |
-
#: includes/class-wcj-price-labels.php:
|
1461 |
msgid "Custom Price Labels"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: includes/class-wcj-price-labels.php:
|
1465 |
msgid "Enable the Custom Price Labels feature"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: includes/class-wcj-price-labels.php:
|
1469 |
msgid "Create any custom price label for any product."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: includes/class-wcj-price-labels.php:
|
1473 |
msgid "Global Custom Price Labels"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/class-wcj-price-labels.php:
|
1477 |
msgid "This section lets you set price labels for all products globally."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: includes/class-wcj-price-labels.php:
|
1481 |
msgid "Add before the price"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: includes/class-wcj-price-labels.php:
|
1485 |
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: includes/class-wcj-price-labels.php:
|
1489 |
msgid "Add after the price"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: includes/class-wcj-price-labels.php:
|
1493 |
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: includes/class-wcj-price-labels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1497 |
msgid "Remove from price"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: includes/class-wcj-price-labels.php:
|
1501 |
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: includes/class-wcj-price-labels.php:
|
1505 |
msgid "Replace in price"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: includes/class-wcj-price-labels.php:
|
1509 |
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: includes/class-wcj-price-labels.php:
|
1513 |
msgid "Enter text to replace with. Leave blank to disable."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: includes/class-wcj-price-labels.php:
|
1517 |
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: includes/class-wcj-price-labels.php:
|
1521 |
msgid ""
|
1522 |
"This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
|
1523 |
msgstr ""
|
@@ -1550,23 +1972,23 @@ msgstr ""
|
|
1550 |
msgid "After single product summary"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: includes/class-wcj-product-info.php:
|
1554 |
msgid "Available shortcodes are:"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: includes/class-wcj-product-info.php:
|
1558 |
msgid "%s ago"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/class-wcj-product-info.php:
|
1562 |
-
#: includes/class-wcj-product-info.php:
|
1563 |
-
#: includes/class-wcj-product-info.php:
|
1564 |
msgid "Position"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: includes/class-wcj-product-info.php:
|
1568 |
-
#: includes/class-wcj-product-info.php:
|
1569 |
-
#: includes/class-wcj-product-info.php:
|
1570 |
#: includes/class-wcj-product-tabs.php:350
|
1571 |
#: includes/class-wcj-product-tabs.php:442
|
1572 |
#: includes/class-wcj-product-tabs.php:468
|
@@ -1574,167 +1996,195 @@ msgstr ""
|
|
1574 |
msgid "Priority (i.e. Order)"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: includes/class-wcj-product-info.php:
|
1578 |
msgid ""
|
1579 |
"Number of product info fields. Click \"Save changes\" after you change this "
|
1580 |
"number."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: includes/class-wcj-product-info.php:
|
1584 |
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: includes/class-wcj-product-info.php:
|
1588 |
-
#: includes/class-wcj-product-info.php:
|
1589 |
msgid "Total sales: %total_sales%"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: includes/class-wcj-product-info.php:
|
1593 |
msgid "Default"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: includes/class-wcj-product-info.php:
|
1597 |
msgid "Field Nr. "
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: includes/class-wcj-product-info.php:
|
1601 |
msgid "Available short codes: "
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: includes/class-wcj-product-info.php:
|
1605 |
msgid "Product Info Options"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: includes/class-wcj-product-info.php:
|
1609 |
-
#: includes/class-wcj-product-info.php:
|
1610 |
msgid "Product Info"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: includes/class-wcj-product-info.php:
|
1614 |
msgid "Enable the Product Info feature"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: includes/class-wcj-product-info.php:
|
1618 |
msgid "Add additional info to product, change related products number."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: includes/class-wcj-product-info.php:
|
1622 |
msgid "More Products Info"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: includes/class-wcj-product-info.php:
|
1626 |
msgid ""
|
1627 |
"For full list of short codes, please visit <a target=\"_blank\" href="
|
1628 |
"\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
|
1629 |
"features/product-info/</a>"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: includes/class-wcj-product-info.php:
|
1633 |
-
#: includes/class-wcj-product-info.php:
|
1634 |
msgid "Product Info on Archive Pages"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/class-wcj-product-info.php:
|
1638 |
msgid "Product Info on Single Pages"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/class-wcj-product-info.php:
|
1642 |
msgid "Even More Products Info"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: includes/class-wcj-product-info.php:
|
1646 |
-
#: includes/class-wcj-product-info.php:
|
1647 |
msgid "HTML info."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: includes/class-wcj-product-info.php:
|
1651 |
msgid "SKU: %sku%"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: includes/class-wcj-product-info.php:
|
1655 |
msgid "Product Info on Single Product Pages"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: includes/class-wcj-product-info.php:
|
1659 |
msgid "Related Products Options"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/class-wcj-product-info.php:
|
1663 |
msgid "Related Products Number"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: includes/class-wcj-product-info.php:
|
1667 |
msgid "Related Products Columns"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: includes/class-wcj-product-info.php:
|
1671 |
msgid "Order by"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: includes/class-wcj-product-info.php:
|
1675 |
msgid "Random"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: includes/class-wcj-product-info.php:
|
1679 |
msgid "Date"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: includes/class-wcj-product-info.php:
|
1683 |
-
#: includes/class-wcj-product-input-fields.php:121
|
1684 |
-
#: includes/class-wcj-product-tabs.php:238
|
1685 |
-
#: includes/class-wcj-product-tabs.php:342
|
1686 |
-
#: includes/class-wcj-product-tabs.php:452
|
1687 |
-
#: includes/class-wcj-product-tabs.php:478
|
1688 |
-
#: includes/class-wcj-product-tabs.php:504
|
1689 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:56
|
1690 |
-
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
1691 |
-
msgid "Title"
|
1692 |
-
msgstr ""
|
1693 |
-
|
1694 |
-
#: includes/class-wcj-product-info.php:660
|
1695 |
msgid "Order"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/class-wcj-product-info.php:
|
1699 |
msgid "Ignored if order by \"Random\" is selected above."
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: includes/class-wcj-product-info.php:
|
1703 |
msgid "Ascending"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: includes/class-wcj-product-info.php:
|
1707 |
msgid "Descending"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: includes/class-wcj-product-input-fields.php:
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: includes/class-wcj-product-input-fields.php:
|
1715 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: includes/class-wcj-product-input-fields.php:
|
1719 |
-
msgid "
|
|
|
|
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/class-wcj-product-input-fields.php:
|
1723 |
-
|
|
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: includes/class-wcj-product-input-fields.php:
|
1727 |
-
|
1728 |
-
msgid "Product Custom Input."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: includes/class-wcj-product-input-fields.php:
|
1732 |
-
|
1733 |
-
msgid "Product Custom Input"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: includes/class-wcj-product-input-fields.php:
|
1737 |
-
msgid "
|
|
|
|
|
1738 |
msgstr ""
|
1739 |
|
1740 |
#: includes/class-wcj-product-listings.php:56
|
@@ -1880,10 +2330,6 @@ msgstr ""
|
|
1880 |
msgid "Total number of custom tabs"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/class-wcj-product-tabs.php:229
|
1884 |
-
msgid "Click \"Update\" product after you change this number."
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
#: includes/class-wcj-product-tabs.php:243
|
1888 |
msgid "Priority"
|
1889 |
msgstr ""
|
@@ -1929,10 +2375,6 @@ msgstr ""
|
|
1929 |
msgid "Custom Product Tabs Number"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: includes/class-wcj-product-tabs.php:327
|
1933 |
-
msgid "Click \"Save changes\" after you change this number."
|
1934 |
-
msgstr ""
|
1935 |
-
|
1936 |
#: includes/class-wcj-product-tabs.php:358
|
1937 |
msgid "You can use shortcodes here..."
|
1938 |
msgstr ""
|
@@ -2009,149 +2451,107 @@ msgstr ""
|
|
2009 |
msgid "Reviews Tab"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: includes/class-wcj-reports.php:
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: includes/class-wcj-reports.php:
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: includes/class-wcj-reports.php:
|
2021 |
-
msgid "Customers Count"
|
2022 |
-
msgstr ""
|
2023 |
-
|
2024 |
-
#: includes/class-wcj-reports.php:100
|
2025 |
-
msgid "Percent of total"
|
2026 |
-
msgstr ""
|
2027 |
-
|
2028 |
-
#: includes/class-wcj-reports.php:135
|
2029 |
-
msgid "WooJetpack: All in stock (with sales info)"
|
2030 |
-
msgstr ""
|
2031 |
-
|
2032 |
-
#: includes/class-wcj-reports.php:161
|
2033 |
msgid "WooJetpack: Customers by Country"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: includes/class-wcj-reports.php:
|
2037 |
-
msgid "
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: includes/class-wcj-reports.php:
|
2041 |
-
msgid "<i>BETA Version</i>"
|
2042 |
-
msgstr ""
|
2043 |
-
|
2044 |
-
#: includes/class-wcj-reports.php:201 includes/class-wcj-reports.php:215
|
2045 |
msgid "Reports Options"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: includes/class-wcj-reports.php:
|
2049 |
-
#: includes/class-wcj-reports.php:420
|
2050 |
msgid "Reports"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: includes/class-wcj-reports.php:
|
2054 |
msgid "Enable the Reports feature"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: includes/class-wcj-reports.php:
|
2058 |
msgid "Stock, sales, customers etc. reports."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: includes/class-wcj-reports.php:
|
|
|
|
|
|
|
|
|
2062 |
msgid ""
|
2063 |
"WooJetpack: Customers by Country. Available in WooCommerce > Reports > "
|
2064 |
"Customers."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: includes/class-wcj-reports.php:
|
2068 |
msgid ""
|
2069 |
-
"WooJetpack:
|
2070 |
-
"
|
2071 |
-
msgstr ""
|
2072 |
-
|
2073 |
-
#: includes/class-wcj-reports.php:223
|
2074 |
-
msgid "European Union as single country"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: includes/class-wcj-reports.php:224
|
2078 |
-
msgid "When checked all EU contries are counted as one country in all reports."
|
2079 |
-
msgstr ""
|
2080 |
-
|
2081 |
-
#: includes/class-wcj-reports.php:240
|
2082 |
-
msgid " - <em>BETA</em>"
|
2083 |
-
msgstr ""
|
2084 |
-
|
2085 |
-
#: includes/class-wcj-reports.php:441
|
2086 |
-
msgid "Product"
|
2087 |
-
msgstr ""
|
2088 |
-
|
2089 |
-
#: includes/class-wcj-reports.php:442
|
2090 |
-
msgid "Price"
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
-
#: includes/class-wcj-reports.php:443
|
2094 |
-
msgid "Stock"
|
2095 |
-
msgstr ""
|
2096 |
-
|
2097 |
-
#: includes/class-wcj-reports.php:444
|
2098 |
-
msgid "Stock price"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: includes/class-wcj-reports.php:
|
2102 |
-
msgid "
|
|
|
|
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: includes/class-wcj-reports.php:
|
2106 |
-
msgid "
|
|
|
|
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: includes/class-wcj-
|
2110 |
-
msgid "
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: includes/class-wcj-
|
2114 |
-
|
|
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: includes/class-wcj-
|
2118 |
-
msgid "
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: includes/class-wcj-
|
2122 |
-
msgid "
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: includes/class-wcj-
|
2126 |
-
msgid "
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: includes/class-wcj-
|
2130 |
-
msgid "
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: includes/class-wcj-
|
2134 |
-
msgid "
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: includes/class-wcj-
|
2138 |
-
msgid "
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: includes/class-wcj-
|
2142 |
msgid ""
|
2143 |
-
"
|
2144 |
-
"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: includes/class-wcj-
|
2148 |
-
msgid "
|
2149 |
-
msgstr ""
|
2150 |
-
|
2151 |
-
#: includes/class-wcj-reports.php:678
|
2152 |
-
msgid ""
|
2153 |
-
"Please enable stock management in <strong>WooCommerce > Settings > Products "
|
2154 |
-
"> Inventory</strong> to generate stock based reports."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
#: includes/class-wcj-shipping.php:63
|
@@ -2192,84 +2592,737 @@ msgstr ""
|
|
2192 |
msgid "Hide shipping"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2196 |
msgid "WooJetpack: Remove All Sorting"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: includes/class-wcj-sorting.php:
|
2200 |
msgid "Completely remove sorting from the shop front end"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: includes/class-wcj-sorting.php:
|
2204 |
msgid "Sorting Options"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: includes/class-wcj-sorting.php:
|
2208 |
msgid "Sorting"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: includes/class-wcj-sorting.php:
|
2212 |
msgid "Enable the Sorting feature"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: includes/class-wcj-sorting.php:
|
2216 |
msgid "Add more sorting options or remove all sorting including default."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: includes/class-wcj-sorting.php:
|
2220 |
msgid "Remove All Sorting"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/class-wcj-sorting.php:
|
2224 |
msgid "Remove all sorting (including WooCommerce default)"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: includes/class-wcj-sorting.php:
|
2228 |
msgid "Add More Sorting"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: includes/class-wcj-sorting.php:
|
2232 |
msgid "Sort by Name"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: includes/class-wcj-sorting.php:
|
2236 |
msgid "Sort by title: A to Z"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: includes/class-wcj-sorting.php:
|
2240 |
-
#: includes/class-wcj-sorting.php:
|
2241 |
-
#: includes/class-wcj-sorting.php:
|
2242 |
msgid "Text to show on frontend. Leave blank to disable."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: includes/class-wcj-sorting.php:
|
2246 |
msgid "Sort by title: Z to A"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: includes/class-wcj-sorting.php:
|
2250 |
msgid "Sort by SKU"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: includes/class-wcj-sorting.php:
|
2254 |
msgid "Sort by SKU: low to high"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: includes/class-wcj-sorting.php:
|
2258 |
msgid "Sort by SKU: high to low"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: includes/class-wcj-sorting.php:
|
2262 |
msgid "Sort by stock quantity"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: includes/class-wcj-sorting.php:
|
2266 |
msgid "Sort by stock quantity: low to high"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: includes/class-wcj-sorting.php:
|
2270 |
msgid "Sort by stock quantity: high to low"
|
2271 |
msgstr ""
|
2272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2273 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
2274 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
2275 |
msgid "Enable/Disable"
|
@@ -2348,18 +3401,114 @@ msgstr ""
|
|
2348 |
msgid "Enable gateway if the order is virtual"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
2352 |
-
msgid "Awaiting payment"
|
2353 |
-
msgstr ""
|
2354 |
-
|
2355 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:275
|
2356 |
msgid "Custom Gateway"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: includes/gateways/class-wc-gateway-wcj-custom.php:
|
2360 |
msgid "WooCommerce Jetpack: Custom Payment Gateway"
|
2361 |
msgstr ""
|
2362 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2363 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:19
|
2364 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:65
|
2365 |
msgid "Custom Shipping"
|
@@ -2373,7 +3522,7 @@ msgstr ""
|
|
2373 |
msgid "Enable Custom Shipping"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack
|
2377 |
#. Plugin Name of the plugin/theme
|
2378 |
#: woocommerce-jetpack.php:94
|
2379 |
msgid "WooCommerce Jetpack"
|
2 |
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Jetpack 2.0.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
+
"POT-Creation-Date: 2014-12-16 08:22:05+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:35
|
16 |
+
msgid "Enabled"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:41
|
20 |
+
msgid "Required"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:47
|
24 |
+
#: includes/class-wcj-product-info.php:841
|
25 |
+
#: includes/class-wcj-product-tabs.php:238
|
26 |
+
#: includes/class-wcj-product-tabs.php:342
|
27 |
+
#: includes/class-wcj-product-tabs.php:452
|
28 |
+
#: includes/class-wcj-product-tabs.php:478
|
29 |
+
#: includes/class-wcj-product-tabs.php:504
|
30 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:56
|
31 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
32 |
+
msgid "Title"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:53
|
36 |
+
msgid "Placeholder"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:59
|
40 |
+
msgid "Message on required"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: includes/abstracts/class-wcj-product-input-fields.php:73
|
44 |
+
#: includes/class-wcj-product-input-fields-global.php:112
|
45 |
+
msgid "Product Input Field"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
#: includes/admin/settings/class-wc-settings-jetpack.php:24
|
49 |
msgid "Jetpack"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:29
|
53 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:165
|
54 |
msgid "Dashboard"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:34
|
58 |
msgid "Price Labels"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:39
|
62 |
msgid "Products"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:44
|
66 |
+
#: includes/class-wcj-cart.php:142 includes/class-wcj-cart.php:230
|
67 |
msgid "Cart"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:49
|
71 |
#: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
|
72 |
msgid "Checkout"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:54
|
76 |
+
#: includes/class-wcj-checkout-custom-fields.php:310
|
77 |
+
#: includes/class-wcj-pdf-invoices.php:1119
|
78 |
#: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
|
79 |
msgid "Shipping"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:59
|
83 |
+
#: includes/class-wcj-orders.php:318 includes/class-wcj-orders.php:440
|
84 |
msgid "Orders"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:64
|
88 |
+
#: includes/class-wcj-pdf-invoices.php:789
|
89 |
+
#: includes/class-wcj-pdf-invoices.php:1279
|
90 |
msgid "PDF Invoices"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:69
|
94 |
#: includes/class-wcj-emails.php:118 includes/class-wcj-emails.php:162
|
95 |
msgid "Emails"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:74
|
99 |
+
#: includes/class-wcj-currencies.php:91 includes/class-wcj-currencies.php:131
|
100 |
msgid "Currencies"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:79
|
104 |
msgid "Misc."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:198
|
108 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:205
|
109 |
msgid "Select All"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:199
|
113 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:206
|
114 |
msgid "Feature"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:200
|
118 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:207
|
119 |
#: includes/admin/tools/class-wcj-tools.php:69
|
120 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
121 |
msgid "Description"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:267
|
125 |
msgid "WooCommerce Jetpack Dashboard"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:269
|
129 |
+
msgid ""
|
130 |
+
"This dashboard lets you enable/disable any Jetpack feature. Each checkbox "
|
131 |
+
"comes with short feature's description. Please visit <a href=\"http://"
|
132 |
+
"woojetpack.com\" target=\"_blank\">WooJetpack.com</a> for detailed info on "
|
133 |
+
"each feature."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
#: includes/admin/tools/class-wcj-tools.php:34
|
137 |
msgid "Tools Dashboard"
|
138 |
msgstr ""
|
157 |
msgid "Status"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/class-wcj-add-to-cart-per-category.php:90
|
161 |
+
msgid "Add to Cart per Category Options"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: includes/class-wcj-add-to-cart-per-category.php:93
|
165 |
+
#: includes/class-wcj-add-to-cart-per-category.php:208
|
166 |
+
msgid "Add to Cart - per Category"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/class-wcj-add-to-cart-per-category.php:94
|
170 |
+
#: includes/class-wcj-add-to-cart-per-product.php:176
|
171 |
+
#: includes/class-wcj-shipping-calculator.php:120
|
172 |
+
msgid "Enable Module"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/class-wcj-add-to-cart-per-category.php:95
|
176 |
+
msgid "Add to cart button text on per category basis."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/class-wcj-add-to-cart-per-category.php:102
|
180 |
+
msgid "Category Groups Number"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/class-wcj-add-to-cart-per-category.php:103
|
184 |
+
#: includes/class-wcj-checkout-custom-fields.php:230
|
185 |
+
#: includes/class-wcj-product-input-fields-global.php:97
|
186 |
+
#: includes/class-wcj-product-tabs.php:327
|
187 |
+
msgid "Click \"Save changes\" after you change this number."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/class-wcj-add-to-cart-per-category.php:123
|
191 |
+
#: includes/class-wcj-price-by-country.php:458
|
192 |
+
msgid "Group"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/class-wcj-add-to-cart-per-category.php:124
|
196 |
+
#: includes/class-wcj-add-to-cart.php:175
|
197 |
+
#: includes/class-wcj-add-to-cart.php:198 includes/class-wcj-cart.php:164
|
198 |
+
#: includes/class-wcj-cart.php:212 includes/class-wcj-order-numbers.php:166
|
199 |
+
#: includes/class-wcj-orders.php:384 includes/class-wcj-orders.php:397
|
200 |
+
#: includes/class-wcj-price-labels.php:629
|
201 |
+
#: includes/class-wcj-product-info.php:613
|
202 |
+
#: includes/class-wcj-product-info.php:732
|
203 |
+
#: includes/class-wcj-product-info.php:769
|
204 |
+
#: includes/class-wcj-product-info.php:813
|
205 |
+
#: includes/class-wcj-product-input-fields-global.php:88
|
206 |
+
#: includes/class-wcj-product-input-fields-per-product.php:205
|
207 |
+
#: includes/class-wcj-shipping-calculator.php:129
|
208 |
+
#: includes/class-wcj-shipping-calculator.php:137
|
209 |
+
#: includes/class-wcj-shipping-calculator.php:145
|
210 |
+
#: includes/class-wcj-shipping-calculator.php:153
|
211 |
+
#: includes/class-wcj-sorting.php:230
|
212 |
+
msgid "Enable"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/class-wcj-add-to-cart-per-category.php:131
|
216 |
+
msgid "Product Category IDs List"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/class-wcj-add-to-cart-per-category.php:132
|
220 |
+
msgid "Comma separated list of product category IDs."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/class-wcj-add-to-cart-per-category.php:140
|
224 |
+
msgid "Button text - single product view"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/class-wcj-add-to-cart-per-category.php:148
|
228 |
+
msgid "Button text - product archive (category) view"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/class-wcj-add-to-cart-per-category.php:172
|
232 |
+
msgid "Product Category Name"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/class-wcj-add-to-cart-per-category.php:175
|
236 |
+
msgid "Product Category ID"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: includes/class-wcj-add-to-cart-per-category.php:194
|
240 |
+
msgid "Product Category IDs"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/class-wcj-add-to-cart-per-product.php:104
|
244 |
+
msgid "WooCommerce Jetpack: Custom Add to Cart"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/class-wcj-add-to-cart-per-product.php:115
|
248 |
+
msgid "Single product view"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: includes/class-wcj-add-to-cart-per-product.php:116
|
252 |
+
msgid "Product category (archive) view"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: includes/class-wcj-add-to-cart-per-product.php:169
|
256 |
+
msgid "Add to Cart per Product Options"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/class-wcj-add-to-cart-per-product.php:171
|
260 |
+
msgid ""
|
261 |
+
"When module is enabled, add to cart button text for each product can be "
|
262 |
+
"changed in \"Edit Product\"."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/class-wcj-add-to-cart-per-product.php:175
|
266 |
+
#: includes/class-wcj-add-to-cart-per-product.php:193
|
267 |
+
msgid "Add to Cart - per Product"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/class-wcj-add-to-cart-per-product.php:177
|
271 |
+
msgid "Add to cart button text on per product basis."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/class-wcj-add-to-cart.php:150
|
275 |
msgid "Add to Cart Options"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-wcj-add-to-cart.php:153
|
279 |
+
#: includes/class-wcj-add-to-cart.php:375
|
280 |
msgid "Add to Cart"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/class-wcj-add-to-cart.php:154
|
284 |
msgid "Enable the Add to Cart feature"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/class-wcj-add-to-cart.php:155
|
288 |
msgid ""
|
289 |
+
"Set any local url to redirect to on Add to cart. Change text for Add to cart "
|
290 |
"button by product type. Display \"Already in cart\" instead of \"Add to cart"
|
291 |
"\" button if current product is already in cart."
|
292 |
msgstr ""
|
293 |
|
294 |
#: includes/class-wcj-add-to-cart.php:168
|
295 |
+
msgid "Add to Cart Local Redirect Options"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/class-wcj-add-to-cart.php:170
|
299 |
msgid ""
|
300 |
+
"This section lets you set any local URL to redirect to after successfully "
|
301 |
+
"adding product to cart. Leave empty to redirect to checkout page (skipping "
|
302 |
+
"the cart page)."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-wcj-add-to-cart.php:174
|
306 |
+
msgid "Local Redirect"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/class-wcj-add-to-cart.php:182
|
310 |
+
msgid "Local Redirect URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/class-wcj-add-to-cart.php:183
|
314 |
+
msgid "Performs a safe (local) redirect, using wp_redirect()."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/class-wcj-add-to-cart.php:184
|
318 |
+
msgid "Local redirect URL. Leave empty to redirect to checkout."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/class-wcj-add-to-cart.php:194
|
322 |
msgid "Add to Cart Button Text Options"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/class-wcj-add-to-cart.php:197
|
326 |
msgid "Add to cart text"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/class-wcj-add-to-cart.php:208
|
330 |
msgid "Simple product"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/class-wcj-add-to-cart.php:213
|
334 |
msgid "Variable product"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/class-wcj-add-to-cart.php:218
|
338 |
msgid "External product"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/class-wcj-add-to-cart.php:223
|
342 |
msgid "Grouped product"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/class-wcj-add-to-cart.php:228
|
346 |
msgid "Other product"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/class-wcj-add-to-cart.php:241
|
350 |
msgid "Single product view."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/class-wcj-add-to-cart.php:242
|
354 |
+
#: includes/class-wcj-add-to-cart.php:262
|
355 |
+
#: includes/class-wcj-add-to-cart.php:320
|
356 |
+
#: includes/class-wcj-add-to-cart.php:346
|
357 |
+
#: includes/class-wcj-payment-gateways.php:173
|
358 |
msgid "Leave blank to disable."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/class-wcj-add-to-cart.php:242
|
362 |
+
#: includes/class-wcj-add-to-cart.php:262
|
363 |
+
#: includes/class-wcj-add-to-cart.php:322
|
364 |
+
#: includes/class-wcj-add-to-cart.php:348 includes/class-wcj-sorting.php:238
|
365 |
+
#: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:258
|
366 |
+
#: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:278
|
367 |
+
#: includes/class-wcj-sorting.php:288
|
368 |
msgid "Default: "
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/class-wcj-add-to-cart.php:261
|
372 |
msgid "Product category (archive) view."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: includes/class-wcj-add-to-cart.php:285
|
376 |
msgid "Products with price set to 0 (i.e. free). Single product view."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/class-wcj-add-to-cart.php:286
|
380 |
+
#: includes/class-wcj-add-to-cart.php:295
|
381 |
msgid "Leave blank to disable. Default: Add to cart"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/class-wcj-add-to-cart.php:288
|
385 |
+
#: includes/class-wcj-add-to-cart.php:297
|
386 |
+
#: includes/class-wcj-add-to-cart.php:322
|
387 |
+
#: includes/class-wcj-add-to-cart.php:324
|
388 |
+
#: includes/class-wcj-add-to-cart.php:348
|
389 |
+
#: includes/class-wcj-add-to-cart.php:350
|
390 |
msgid "Add to cart"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/class-wcj-add-to-cart.php:294
|
394 |
msgid ""
|
395 |
"Products with price set to 0 (i.e. free). Product category (archive) view."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: includes/class-wcj-add-to-cart.php:304
|
399 |
msgid "Products with empty price. Product category (archive) view."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: includes/class-wcj-add-to-cart.php:305
|
403 |
msgid "Leave blank to disable. Default: Read More"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/class-wcj-add-to-cart.php:307
|
407 |
msgid "Read More"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/class-wcj-add-to-cart.php:319
|
411 |
msgid "Already in cart. Single product view."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/class-wcj-add-to-cart.php:321
|
415 |
+
#: includes/class-wcj-add-to-cart.php:347
|
416 |
msgid "Try: "
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/class-wcj-add-to-cart.php:321
|
420 |
+
#: includes/class-wcj-add-to-cart.php:347
|
421 |
msgid "Already in cart - Add Again?"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/class-wcj-add-to-cart.php:345
|
425 |
msgid "Already in cart. Product category (archive) view."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/class-wcj-call-for-price.php:80
|
429 |
msgid "Call for Price Options"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/class-wcj-call-for-price.php:80
|
433 |
msgid ""
|
434 |
"Leave price empty when adding or editing products. Then set the options here."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/class-wcj-call-for-price.php:83
|
438 |
+
#: includes/class-wcj-call-for-price.php:166
|
439 |
msgid "Call for Price"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/class-wcj-call-for-price.php:84
|
443 |
msgid "Enable the Call for Price feature"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/class-wcj-call-for-price.php:85
|
447 |
msgid "Create any custom price label for all products with empty price."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/class-wcj-call-for-price.php:92
|
451 |
msgid "Label to Show on Single"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/class-wcj-call-for-price.php:93
|
455 |
+
#: includes/class-wcj-call-for-price.php:105
|
456 |
+
#: includes/class-wcj-call-for-price.php:117
|
457 |
+
#: includes/class-wcj-call-for-price.php:129
|
458 |
msgid "This sets the html to output on empty price. Leave blank to disable."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/class-wcj-call-for-price.php:104
|
462 |
msgid "Label to Show on Archives"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/class-wcj-call-for-price.php:116
|
466 |
msgid "Label to Show on Homepage"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/class-wcj-call-for-price.php:128
|
470 |
msgid "Label to Show on Related"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/class-wcj-call-for-price.php:140
|
474 |
msgid "Hide Sale! Tag"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/class-wcj-call-for-price.php:141
|
478 |
msgid "Hide the tag"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/class-wcj-cart.php:139
|
482 |
msgid "Cart Options"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/class-wcj-cart.php:143
|
486 |
msgid "Enable the Cart feature"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/class-wcj-cart.php:144
|
490 |
msgid "Add empty cart button, automatically add to cart on product visit."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/class-wcj-cart.php:160
|
494 |
msgid "Empty Cart Options"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/class-wcj-cart.php:160
|
498 |
msgid ""
|
499 |
"This section lets you add and customize \"Empty Cart\" button to cart page."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: includes/class-wcj-cart.php:163
|
503 |
msgid "Empty Cart"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: includes/class-wcj-cart.php:171
|
507 |
msgid "Empty Cart Button Text"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/class-wcj-cart.php:181
|
511 |
msgid "Wrapping DIV style"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/class-wcj-cart.php:182
|
515 |
msgid "Style for the button's div. Default is \"float: right;\""
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/class-wcj-cart.php:192
|
519 |
+
msgid "Button position on the Cart page"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/class-wcj-cart.php:197
|
523 |
+
msgid "After Cart"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/class-wcj-cart.php:198
|
527 |
+
msgid "Before Cart"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/class-wcj-cart.php:199
|
531 |
+
msgid "After Proceed to Checkout button"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/class-wcj-cart.php:208 includes/class-wcj-cart.php:211
|
535 |
msgid "Add to Cart on Visit"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/class-wcj-cart.php:208
|
539 |
msgid ""
|
540 |
"This section lets you enable automatically adding product to cart on "
|
541 |
"visiting the product page. Product is only added once, so if it is already "
|
542 |
"in cart - duplicate product is not added. "
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/class-wcj-checkout-custom-fields.php:217
|
546 |
+
msgid "Checkout Custom Fields Options"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: includes/class-wcj-checkout-custom-fields.php:217
|
550 |
+
msgid "This section lets you add custom checkout fields."
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: includes/class-wcj-checkout-custom-fields.php:220
|
554 |
+
#: includes/class-wcj-checkout-custom-fields.php:351
|
555 |
+
msgid "Custom Checkout Fields"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: includes/class-wcj-checkout-custom-fields.php:221
|
559 |
+
msgid "Enable the Checkout Custom Fields feature"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/class-wcj-checkout-custom-fields.php:222
|
563 |
+
msgid "Add custom fields to the Checkout page."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/class-wcj-checkout-custom-fields.php:229
|
567 |
+
msgid "Custom Fields Number"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/class-wcj-checkout-custom-fields.php:244
|
571 |
+
msgid "Custom Field"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: includes/class-wcj-checkout-custom-fields.php:245
|
575 |
+
#: includes/class-wcj-old-slugs.php:49 includes/class-wcj-order-numbers.php:64
|
576 |
+
#: includes/class-wcj-orders.php:112 includes/class-wcj-price-labels.php:116
|
577 |
+
msgid "enabled"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/class-wcj-checkout-custom-fields.php:252
|
581 |
+
msgid "type"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/class-wcj-checkout-custom-fields.php:257
|
585 |
+
#: includes/class-wcj-checkout.php:159
|
586 |
+
msgid "Text"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: includes/class-wcj-checkout-custom-fields.php:258
|
590 |
+
msgid "Textarea"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/class-wcj-checkout-custom-fields.php:260
|
594 |
+
msgid "Datepicker"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: includes/class-wcj-checkout-custom-fields.php:261
|
598 |
+
msgid "Checkbox"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: includes/class-wcj-checkout-custom-fields.php:263
|
602 |
+
msgid "Password"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: includes/class-wcj-checkout-custom-fields.php:268
|
606 |
+
msgid "required"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: includes/class-wcj-checkout-custom-fields.php:275
|
610 |
+
msgid "label"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: includes/class-wcj-checkout-custom-fields.php:296
|
614 |
+
msgid "placeholder"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: includes/class-wcj-checkout-custom-fields.php:304
|
618 |
+
msgid "section"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: includes/class-wcj-checkout-custom-fields.php:309
|
622 |
+
msgid "Billing"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: includes/class-wcj-checkout-custom-fields.php:311
|
626 |
+
msgid "Order Notes"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: includes/class-wcj-checkout-custom-fields.php:312
|
630 |
+
msgid "Account"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: includes/class-wcj-checkout-custom-fields.php:318
|
634 |
+
msgid "class"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/class-wcj-checkout-custom-fields.php:323
|
638 |
+
msgid "Wide"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/class-wcj-checkout-custom-fields.php:324
|
642 |
+
msgid "First"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/class-wcj-checkout-custom-fields.php:325
|
646 |
+
msgid "Last"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
#: includes/class-wcj-checkout.php:141
|
650 |
msgid "Checkout Options"
|
651 |
msgstr ""
|
664 |
msgid "Place order (Order now) Button"
|
665 |
msgstr ""
|
666 |
|
|
|
|
|
|
|
|
|
667 |
#: includes/class-wcj-checkout.php:160
|
668 |
msgid "leave blank for WooCommerce default"
|
669 |
msgstr ""
|
686 |
msgid "Leave blank for WooCommerce defaults."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/class-wcj-currencies.php:66
|
690 |
+
#: includes/class-wcj-currency-external-products.php:80
|
691 |
msgid "Currency Symbol"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/class-wcj-currencies.php:67
|
695 |
msgid "This sets the currency symbol."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: includes/class-wcj-currencies.php:88
|
699 |
msgid "Currencies Options"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: includes/class-wcj-currencies.php:92
|
703 |
msgid "Enable the Currencies feature"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/class-wcj-currencies.php:93
|
707 |
msgid "Add all world currencies, change currency symbol."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: includes/class-wcj-currencies.php:101
|
711 |
msgid "Currency Symbol Options"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: includes/class-wcj-currencies.php:104
|
715 |
+
msgid "Hide Currency Symbol"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: includes/class-wcj-currencies.php:105
|
719 |
+
#: includes/class-wcj-shipping-calculator.php:167
|
720 |
+
msgid "Hide"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: includes/class-wcj-currencies.php:106
|
724 |
+
msgid "Default: no."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: includes/class-wcj-currency-external-products.php:68
|
728 |
+
msgid "Currency for External Products Options"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: includes/class-wcj-currency-external-products.php:71
|
732 |
+
#: includes/class-wcj-currency-external-products.php:99
|
733 |
+
msgid "Currency for External Products"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/class-wcj-currency-external-products.php:72
|
737 |
+
msgid "Enable Feature"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/class-wcj-currency-external-products.php:73
|
741 |
+
msgid "Set different currency for external products."
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/class-wcj-currency-external-products.php:81
|
745 |
+
#: includes/class-wcj-currency-external-products.php:82
|
746 |
+
msgid "Set currency symbol for all external products."
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
#: includes/class-wcj-emails.php:57
|
750 |
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
751 |
msgstr ""
|
788 |
msgid "Email Forwarding Options"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1202
|
792 |
msgid "General Options"
|
793 |
msgstr ""
|
794 |
|
820 |
msgid "Custom CSS - Back end (Admin)"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/class-wcj-old-slugs.php:51 includes/class-wcj-order-numbers.php:66
|
824 |
+
#: includes/class-wcj-orders.php:114 includes/class-wcj-price-labels.php:118
|
|
|
|
|
|
|
|
|
|
|
825 |
msgid "disabled"
|
826 |
msgstr ""
|
827 |
|
868 |
msgid "No old slugs found."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/class-wcj-order-numbers.php:67
|
872 |
+
msgid "Orders Renumerate"
|
|
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/class-wcj-order-numbers.php:69
|
876 |
+
msgid "Tool renumerates all orders."
|
|
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-wcj-order-numbers.php:79
|
880 |
+
msgid "Renumerate orders"
|
|
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-wcj-order-numbers.php:91
|
884 |
+
msgid "Orders successfully renumerated!"
|
|
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-wcj-order-numbers.php:94
|
888 |
+
msgid "WooCommerce Jetpack - Renumerate Orders"
|
|
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-wcj-order-numbers.php:95
|
892 |
+
msgid ""
|
893 |
+
"The tool renumerates all orders. Press the button below to renumerate all "
|
894 |
+
"existing orders starting from order counter settings in WooCommerce > "
|
895 |
+
"Settings > Jetpack > Order Numbers."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-wcj-order-numbers.php:153
|
899 |
+
#: includes/class-wcj-order-numbers.php:156
|
900 |
+
#: includes/class-wcj-order-numbers.php:247
|
901 |
+
msgid "Order Numbers"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/class-wcj-order-numbers.php:153
|
905 |
+
msgid ""
|
906 |
+
"This section lets you enable sequential order numbering, set custom number "
|
907 |
+
"prefix, suffix and width."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-wcj-order-numbers.php:157
|
911 |
+
msgid "Enable Order Numbers WooJetpack Module"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/class-wcj-order-numbers.php:158
|
915 |
+
msgid ""
|
916 |
+
"Sequential order numbering, custom order number prefix, suffix and number "
|
917 |
+
"width."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/class-wcj-order-numbers.php:165
|
921 |
+
msgid "Make Order Numbers Sequential"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/class-wcj-order-numbers.php:173
|
925 |
+
msgid "Next Order Number"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/class-wcj-order-numbers.php:174
|
929 |
+
msgid "Next new order will be given this number."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/class-wcj-order-numbers.php:174
|
933 |
+
msgid "Use Renumerate Orders tool for existing orders."
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-wcj-order-numbers.php:175
|
937 |
+
msgid "This will be ignored if sequential order numbering is disabled."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/class-wcj-order-numbers.php:182
|
941 |
+
msgid "Order Number Custom Prefix"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/class-wcj-order-numbers.php:184
|
945 |
+
msgid ""
|
946 |
+
"Prefix before order number (optional). This will change the prefixes for all "
|
947 |
+
"existing orders."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-wcj-order-numbers.php:193
|
951 |
+
msgid "Order Number Date Prefix"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: includes/class-wcj-order-numbers.php:195
|
955 |
msgid ""
|
956 |
+
"Date prefix before order number (optional). This will change the prefixes "
|
957 |
+
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
958 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
959 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
960 |
+
"d- or mdy."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/class-wcj-order-numbers.php:204
|
964 |
+
msgid "Order Number Width"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/class-wcj-order-numbers.php:206
|
968 |
+
msgid ""
|
969 |
+
"Minimum width of number without prefix (zeros will be added to the left "
|
970 |
+
"side). This will change the minimum width of order number for all existing "
|
971 |
+
"orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
|
972 |
+
"Leave zero to disable."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/class-wcj-order-numbers.php:215
|
976 |
+
msgid "Order Number Custom Suffix"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/class-wcj-order-numbers.php:217
|
980 |
+
msgid ""
|
981 |
+
"Suffix after order number (optional). This will change the suffixes for all "
|
982 |
+
"existing orders."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/class-wcj-order-numbers.php:226
|
986 |
+
msgid "Order Number Date Suffix"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/class-wcj-order-numbers.php:228
|
990 |
+
msgid ""
|
991 |
+
"Date suffix after order number (optional). This will change the suffixes for "
|
992 |
+
"all existing orders. Value is passed directly to PHP `date` function, so "
|
993 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
994 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
995 |
+
"d- or mdy."
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/class-wcj-orders.php:26
|
999 |
+
msgctxt "Order status"
|
1000 |
+
msgid "Pending payment"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/class-wcj-orders.php:27
|
1004 |
+
msgctxt "Order status"
|
1005 |
+
msgid "Processing"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/class-wcj-orders.php:28
|
1009 |
+
msgctxt "Order status"
|
1010 |
+
msgid "On hold"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/class-wcj-orders.php:29
|
1014 |
+
msgctxt "Order status"
|
1015 |
+
msgid "Completed"
|
|
|
|
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/class-wcj-orders.php:30
|
1019 |
+
msgctxt "Order status"
|
1020 |
+
msgid "Cancelled"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/class-wcj-orders.php:31
|
1024 |
+
msgctxt "Order status"
|
1025 |
+
msgid "Refunded"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-wcj-orders.php:32
|
1029 |
+
msgctxt "Order status"
|
1030 |
+
msgid "Failed"
|
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/class-wcj-orders.php:115 includes/class-wcj-orders.php:127
|
1034 |
+
#: includes/class-wcj-orders.php:393 includes/class-wcj-orders.php:396
|
1035 |
+
msgid "Custom Statuses"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/class-wcj-orders.php:117
|
1039 |
+
msgid "Tool lets you add or delete any custom status for WooCommerce orders."
|
|
|
|
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/class-wcj-orders.php:157
|
1043 |
+
msgid "Status slug is empty. Status not added."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/class-wcj-orders.php:159
|
1047 |
+
msgid "The length of status slug must be 17 or less characters."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/class-wcj-orders.php:161
|
1051 |
+
msgid "Status label is empty. Status not added."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/class-wcj-orders.php:167
|
1055 |
+
msgid "Duplicate slug. Status not added."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/class-wcj-orders.php:173
|
1059 |
+
msgid "New status have been successfully added!"
|
|
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/class-wcj-orders.php:175
|
1063 |
+
msgid "Status was not added."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/class-wcj-orders.php:191
|
1067 |
+
msgid "Status have been successfully deleted."
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/class-wcj-orders.php:193
|
1071 |
+
msgid "Delete failed."
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/class-wcj-orders.php:196
|
1075 |
+
msgid "WooCommerce Jetpack - Custom Statuses"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/class-wcj-orders.php:197
|
1079 |
msgid ""
|
1080 |
+
"The tool lets you add or delete any custom status for WooCommerce orders."
|
|
|
|
|
|
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/class-wcj-orders.php:199
|
1084 |
+
msgid "Statuses"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/class-wcj-orders.php:202
|
1088 |
+
msgid "Slug"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/class-wcj-orders.php:203 includes/class-wcj-orders.php:228
|
1092 |
+
msgid "Label"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/class-wcj-orders.php:205 includes/class-wcj-orders.php:215
|
1096 |
+
msgid "Delete"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: includes/class-wcj-orders.php:227
|
1100 |
+
msgid "Slug (without wc- prefix)"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: includes/class-wcj-orders.php:315
|
1104 |
+
msgid "Orders Options"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: includes/class-wcj-orders.php:319
|
1108 |
+
msgid "Enable the Orders feature"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: includes/class-wcj-orders.php:320
|
1112 |
+
msgid "Minimum order amount, orders auto-complete, orders custom statuses."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-wcj-orders.php:328
|
1116 |
msgid "Order Minimum Amount"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/class-wcj-orders.php:328
|
1120 |
msgid "This section lets you set minimum order amount."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: includes/class-wcj-orders.php:331
|
1124 |
msgid "Amount"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/class-wcj-orders.php:332
|
1128 |
msgid "Minimum order amount. Set to 0 to disable."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/class-wcj-orders.php:339
|
1132 |
msgid "Error message"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/class-wcj-orders.php:341 includes/class-wcj-orders.php:361
|
1136 |
msgid ""
|
1137 |
"Message to customer if order is below minimum amount. Default: You must have "
|
1138 |
"an order with a minimum of %s to place your order, your current order total "
|
1139 |
"is %s."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/class-wcj-orders.php:351
|
1143 |
msgid "Add notice to cart page also"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/class-wcj-orders.php:352
|
1147 |
msgid "Add"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/class-wcj-orders.php:359
|
1151 |
msgid "Message on cart page"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/class-wcj-orders.php:371
|
1155 |
msgid ""
|
1156 |
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/class-wcj-orders.php:372
|
1160 |
msgid "Redirect back to Cart page"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/class-wcj-orders.php:380
|
1164 |
msgid "Orders Auto-Complete"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/class-wcj-orders.php:380
|
1168 |
msgid "This section lets you enable orders auto-complete function."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/class-wcj-orders.php:383
|
1172 |
msgid "Auto-complete all WooCommerce orders"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/class-wcj-orders.php:385
|
1176 |
msgid ""
|
1177 |
"E.g. if you sell digital products then you are not shipping anything and you "
|
1178 |
"may want auto-complete all your orders."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/class-wcj-orders.php:393
|
1182 |
msgid "This section lets you enable custom statuses tool."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/class-wcj-orders.php:398
|
1186 |
msgid ""
|
1187 |
"When enabled, the Custom Statuses tool is accessible through <a href="
|
1188 |
"\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack "
|
1189 |
"Tools > Custom Statuses</a>."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/class-wcj-orders.php:405
|
1193 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:121
|
1194 |
+
msgid "Default Order Status"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: includes/class-wcj-orders.php:406
|
1198 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:122
|
1199 |
+
msgid "Enable Custom Statuses feature to add custom statuses to the list."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/class-wcj-orders.php:407
|
1203 |
+
msgid ""
|
1204 |
+
"You can change the default order status here. However payment gateways can "
|
1205 |
+
"change this status immediatelly on order creation. E.g. BACS gateway will "
|
1206 |
+
"change status to On-hold."
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: includes/class-wcj-payment-gateways.php:119
|
1210 |
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/class-wcj-payment-gateways.php:119
|
1214 |
+
#: includes/class-wcj-payment-gateways.php:342
|
1215 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:86
|
1216 |
msgid ""
|
1217 |
"If you want to show an image next to the gateway's name on the frontend, "
|
1218 |
"enter a URL to an image."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/class-wcj-payment-gateways.php:152
|
1222 |
+
#: includes/class-wcj-payment-gateways.php:369
|
1223 |
msgid "Payment Gateways Fees Options"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/class-wcj-payment-gateways.php:154
|
1227 |
msgid "This section lets you set extra fees for payment gateways."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: includes/class-wcj-payment-gateways.php:155
|
1231 |
msgid "Fees are applied BEFORE taxes."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: includes/class-wcj-payment-gateways.php:172
|
1235 |
msgid "Fee title to show to customer."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/class-wcj-payment-gateways.php:181
|
1239 |
msgid "Fee type."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/class-wcj-payment-gateways.php:182
|
1243 |
msgid "Percent or fixed value."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/class-wcj-payment-gateways.php:189
|
1247 |
msgid "Fixed"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/class-wcj-payment-gateways.php:190
|
1251 |
msgid "Percent"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/class-wcj-payment-gateways.php:196
|
1255 |
msgid "Fee value."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/class-wcj-payment-gateways.php:197
|
1259 |
msgid "The value."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/class-wcj-payment-gateways.php:209
|
1263 |
+
msgid "Minimum cart amount for adding the fee."
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/class-wcj-payment-gateways.php:210
|
1267 |
+
#: includes/class-wcj-payment-gateways.php:223
|
1268 |
+
msgid "Set 0 to disable."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: includes/class-wcj-payment-gateways.php:222
|
1272 |
+
msgid "Maximum cart amount for adding the fee."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/class-wcj-payment-gateways.php:257
|
1276 |
msgid "Payment Gateways Attach PDF Invoice Options"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/class-wcj-payment-gateways.php:257
|
1280 |
msgid ""
|
1281 |
"This section lets you choose when to attach PDF invoice to customers emails."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/class-wcj-payment-gateways.php:267
|
1285 |
msgid "Attach PDF invoice."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/class-wcj-payment-gateways.php:310
|
1289 |
msgid "Payment Gateways Options"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/class-wcj-payment-gateways.php:313
|
1293 |
+
#: includes/class-wcj-payment-gateways.php:389
|
1294 |
msgid "Payment Gateways"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/class-wcj-payment-gateways.php:314
|
1298 |
msgid "Enable the Payment Gateways feature"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/class-wcj-payment-gateways.php:315
|
1302 |
msgid ""
|
1303 |
"Add custom payment gateway, change icons (images) for all default "
|
1304 |
"WooCommerce payment gateways."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/class-wcj-payment-gateways.php:323
|
1308 |
msgid "Custom Payment Gateways Options"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/class-wcj-payment-gateways.php:326
|
1312 |
msgid "Number of Gateways"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/class-wcj-payment-gateways.php:328
|
1316 |
msgid ""
|
1317 |
"Number of custom payments gateways to be added. All settings for each new "
|
1318 |
"gateway are in WooCommerce > Settings > Checkout."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: includes/class-wcj-payment-gateways.php:342
|
1322 |
msgid "Default WooCommerce Payment Gateways Options"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/class-wcj-payment-gateways.php:369
|
1326 |
msgid ""
|
1327 |
"This section lets you enable extra fees for payment gateways. When enabled "
|
1328 |
"all options are added to WooCommerce > Settings > Checkout"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/class-wcj-payment-gateways.php:372
|
1332 |
msgid "Payment Gateways Fees"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/class-wcj-payment-gateways.php:373
|
1336 |
msgid "Enable the Payment Gateways Fees"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/class-wcj-pdf-invoices.php:178
|
1340 |
+
#: includes/class-wcj-pdf-invoices.php:183
|
1341 |
msgid "Invoice"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: includes/class-wcj-pdf-invoices.php:755
|
1345 |
+
#: includes/class-wcj-pdf-invoices.php:761
|
1346 |
msgid "PDF Invoice"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/class-wcj-pdf-invoices.php:786
|
1350 |
msgid "PDF Invoices Options"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/class-wcj-pdf-invoices.php:790
|
1354 |
msgid "Enable the PDF Invoices feature"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/class-wcj-pdf-invoices.php:791
|
1358 |
msgid "Add PDF invoices for the store owners and for the customers."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/class-wcj-pdf-invoices.php:799
|
1362 |
msgid "Invoice Header"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/class-wcj-pdf-invoices.php:799
|
1366 |
msgid ""
|
1367 |
"This section lets you set texts for required invoice number and date, and "
|
1368 |
"optional logo, header text, invoice due and fulfillment dates."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/class-wcj-pdf-invoices.php:802
|
1372 |
msgid "Your Logo URL"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: includes/class-wcj-pdf-invoices.php:803
|
1376 |
msgid ""
|
1377 |
"Enter a URL to an image you want to show in the invoice's header. Upload "
|
1378 |
"your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: includes/class-wcj-pdf-invoices.php:804
|
1382 |
+
#: includes/class-wcj-pdf-invoices.php:813
|
1383 |
+
#: includes/class-wcj-pdf-invoices.php:833
|
1384 |
+
#: includes/class-wcj-pdf-invoices.php:843
|
1385 |
+
#: includes/class-wcj-pdf-invoices.php:862
|
1386 |
+
#: includes/class-wcj-pdf-invoices.php:882
|
1387 |
+
#: includes/class-wcj-pdf-invoices.php:955
|
1388 |
+
#: includes/class-wcj-pdf-invoices.php:990
|
1389 |
+
#: includes/class-wcj-pdf-invoices.php:1041
|
1390 |
+
#: includes/class-wcj-pdf-invoices.php:1050
|
1391 |
+
#: includes/class-wcj-pdf-invoices.php:1059
|
1392 |
+
#: includes/class-wcj-pdf-invoices.php:1068
|
1393 |
+
#: includes/class-wcj-pdf-invoices.php:1077
|
1394 |
+
#: includes/class-wcj-pdf-invoices.php:1086
|
1395 |
+
#: includes/class-wcj-pdf-invoices.php:1166
|
1396 |
+
#: includes/class-wcj-pdf-invoices.php:1175
|
1397 |
msgid "Leave blank to disable"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/class-wcj-pdf-invoices.php:812
|
1401 |
msgid "Header Text"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/class-wcj-pdf-invoices.php:814
|
1405 |
msgid "Default: INVOICE"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/class-wcj-pdf-invoices.php:816
|
1409 |
msgid "INVOICE"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/class-wcj-pdf-invoices.php:822
|
1413 |
msgid "Invoice Number"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: includes/class-wcj-pdf-invoices.php:823
|
1417 |
msgid "Default: Invoice number"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: includes/class-wcj-pdf-invoices.php:825
|
1421 |
msgid "Invoice number"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: includes/class-wcj-pdf-invoices.php:831
|
1425 |
msgid "Order Date"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: includes/class-wcj-pdf-invoices.php:832
|
1429 |
msgid "Default: Order date"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
1433 |
msgid "Order date"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/class-wcj-pdf-invoices.php:841
|
1437 |
msgid "Order Time"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/class-wcj-pdf-invoices.php:842
|
1441 |
msgid "Default: Order time"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: includes/class-wcj-pdf-invoices.php:845
|
1445 |
msgid "Order time"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/class-wcj-pdf-invoices.php:851
|
1449 |
msgid "Invoice Date"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: includes/class-wcj-pdf-invoices.php:852
|
1453 |
msgid "Default: Invoice date"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/class-wcj-pdf-invoices.php:854
|
1457 |
msgid "Invoice date"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: includes/class-wcj-pdf-invoices.php:861
|
1461 |
msgid "Default: Invoice due date"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: includes/class-wcj-pdf-invoices.php:864
|
1465 |
msgid "Invoice due date"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/class-wcj-pdf-invoices.php:871
|
1469 |
+
#: includes/class-wcj-pdf-invoices.php:891
|
1470 |
msgid "days"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: includes/class-wcj-pdf-invoices.php:881
|
1474 |
msgid "Default: Invoice fulfillment date"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: includes/class-wcj-pdf-invoices.php:884
|
1478 |
msgid "Invoice fulfillment date"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: includes/class-wcj-pdf-invoices.php:900
|
1482 |
msgid "Additional Header"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: includes/class-wcj-pdf-invoices.php:901
|
1486 |
msgid ""
|
1487 |
"Additional header - will be displayed above all data on invoice. You can use "
|
1488 |
"html and/or shortcodes here."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: includes/class-wcj-pdf-invoices.php:910
|
1492 |
msgid "Seller and Buyer Info"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: includes/class-wcj-pdf-invoices.php:913
|
1496 |
+
#: includes/class-wcj-pdf-invoices.php:916
|
1497 |
msgid "Seller"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: includes/class-wcj-pdf-invoices.php:922
|
1501 |
msgid "Your business information"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: includes/class-wcj-pdf-invoices.php:924
|
1505 |
msgid "New lines are added automatically."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: includes/class-wcj-pdf-invoices.php:926
|
1509 |
msgid "<strong>Company Name</strong>"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: includes/class-wcj-pdf-invoices.php:932
|
1513 |
+
#: includes/class-wcj-pdf-invoices.php:935
|
1514 |
msgid "Buyer"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/class-wcj-pdf-invoices.php:942
|
1518 |
+
#: includes/class-wcj-pdf-invoices.php:948
|
1519 |
msgid "Items"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: includes/class-wcj-pdf-invoices.php:945
|
1523 |
msgid "Items Table Heading Text"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: includes/class-wcj-pdf-invoices.php:954
|
1527 |
msgid "Shipping as Item"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: includes/class-wcj-pdf-invoices.php:956
|
1531 |
msgid "Display shipping as item"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: includes/class-wcj-pdf-invoices.php:974
|
1535 |
+
#: includes/class-wcj-pdf-invoices.php:982
|
1536 |
msgid "Add shipping method info"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/class-wcj-pdf-invoices.php:981
|
1540 |
msgid "Do not add shipping method info"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/class-wcj-pdf-invoices.php:983
|
1544 |
msgid "Replace with shipping method info"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: includes/class-wcj-pdf-invoices.php:989
|
1548 |
msgid "Discount as Item"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/class-wcj-pdf-invoices.php:991
|
1552 |
msgid "Display discount as item"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: includes/class-wcj-pdf-invoices.php:1001
|
1556 |
msgid "Items Columns"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: includes/class-wcj-pdf-invoices.php:1001
|
1560 |
msgid ""
|
1561 |
"This section lets you set column names in invoice items table. You can "
|
1562 |
"disable some columns by leaving blank column name."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: includes/class-wcj-pdf-invoices.php:1004
|
1566 |
+
#: includes/class-wcj-pdf-invoices.php:1007
|
1567 |
msgid "Nr."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: includes/class-wcj-pdf-invoices.php:1013
|
1571 |
+
#: includes/class-wcj-pdf-invoices.php:1016
|
1572 |
msgid "Item Name"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/class-wcj-pdf-invoices.php:1022
|
1576 |
msgid "Item Name Additional Info"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: includes/class-wcj-pdf-invoices.php:1023
|
1580 |
msgid ""
|
1581 |
"Here you can add more info to item's name column (e.g. sku). Default is "
|
1582 |
"(SKU: %sku%)"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/class-wcj-pdf-invoices.php:1025
|
1586 |
msgid "(SKU: %sku%)"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/class-wcj-pdf-invoices.php:1031
|
1590 |
+
#: includes/class-wcj-pdf-invoices.php:1034
|
1591 |
msgid "Qty"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/class-wcj-pdf-invoices.php:1040
|
1595 |
msgid "Single Item Price (TAX excl.)"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/class-wcj-pdf-invoices.php:1043
|
1599 |
msgid "Price (TAX excl.)"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: includes/class-wcj-pdf-invoices.php:1049
|
1603 |
msgid "Single Item TAX"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: includes/class-wcj-pdf-invoices.php:1052
|
1607 |
msgid "TAX"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/class-wcj-pdf-invoices.php:1058
|
1611 |
msgid "Single Item Price (TAX incl.)"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: includes/class-wcj-pdf-invoices.php:1061
|
1615 |
msgid "Price (TAX incl.)"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: includes/class-wcj-pdf-invoices.php:1067
|
1619 |
+
#: includes/class-wcj-pdf-invoices.php:1070
|
1620 |
msgid "Sum (TAX excl.)"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/class-wcj-pdf-invoices.php:1076
|
1624 |
msgid "Tax Percent"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/class-wcj-pdf-invoices.php:1079
|
1628 |
msgid "Taxes %"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: includes/class-wcj-pdf-invoices.php:1085
|
1632 |
+
#: includes/class-wcj-pdf-invoices.php:1088
|
1633 |
+
#: includes/class-wcj-pdf-invoices.php:1146
|
1634 |
msgid "Taxes"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/class-wcj-pdf-invoices.php:1094
|
1638 |
+
#: includes/class-wcj-pdf-invoices.php:1097
|
1639 |
msgid "Sum (TAX incl.)"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: includes/class-wcj-pdf-invoices.php:1104
|
1643 |
msgid "Totals"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: includes/class-wcj-pdf-invoices.php:1104
|
1647 |
msgid "This section lets you set texts for totals table."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/class-wcj-pdf-invoices.php:1107
|
1651 |
+
#: includes/class-wcj-pdf-invoices.php:1110
|
1652 |
msgid "Order Subtotal"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: includes/class-wcj-pdf-invoices.php:1108
|
1656 |
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: includes/class-wcj-pdf-invoices.php:1116
|
1660 |
msgid "Order Shipping Price"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: includes/class-wcj-pdf-invoices.php:1125
|
1664 |
msgid "Total Discount"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: includes/class-wcj-pdf-invoices.php:1128
|
1668 |
msgid "Discount"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: includes/class-wcj-pdf-invoices.php:1134
|
1672 |
+
#: includes/class-wcj-pdf-invoices.php:1137
|
1673 |
msgid "Order Total (TAX excl.)"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: includes/class-wcj-pdf-invoices.php:1135
|
1677 |
msgid ""
|
1678 |
"Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
|
1679 |
"is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
|
1680 |
"equal to \"Order Subtotal\""
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/class-wcj-pdf-invoices.php:1143
|
1684 |
msgid "Order Total Taxes"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/class-wcj-pdf-invoices.php:1152
|
1688 |
+
#: includes/class-wcj-pdf-invoices.php:1155
|
1689 |
msgid "Order Total"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: includes/class-wcj-pdf-invoices.php:1162
|
1693 |
msgid "Footer"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: includes/class-wcj-pdf-invoices.php:1165
|
1697 |
+
#: includes/class-wcj-pdf-invoices.php:1168
|
1698 |
msgid "Payment Method"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: includes/class-wcj-pdf-invoices.php:1174
|
1702 |
+
#: includes/class-wcj-pdf-invoices.php:1177
|
1703 |
msgid "Shipping Method"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: includes/class-wcj-pdf-invoices.php:1183
|
1707 |
+
#: includes/class-wcj-pdf-invoices.php:1186
|
1708 |
msgid "Shipping Address"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: includes/class-wcj-pdf-invoices.php:1184
|
1712 |
msgid ""
|
1713 |
"Will be displayed only if customer's shipping address differs from billing "
|
1714 |
"address. Leave blank to disable"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/class-wcj-pdf-invoices.php:1192
|
1718 |
msgid "Additional Footer"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: includes/class-wcj-pdf-invoices.php:1193
|
1722 |
msgid ""
|
1723 |
"Additional footer - will be displayed below all other data on invoice. You "
|
1724 |
"can use html and/or shortcodes here."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: includes/class-wcj-pdf-invoices.php:1205
|
1728 |
msgid "Font size"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: includes/class-wcj-pdf-invoices.php:1206
|
1732 |
msgid "Default: 8"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: includes/class-wcj-pdf-invoices.php:1214
|
1736 |
msgid "CSS"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: includes/class-wcj-pdf-invoices.php:1229
|
1740 |
msgid "PDF Invoices for Customers (in My Account)"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: includes/class-wcj-pdf-invoices.php:1230
|
1744 |
msgid "Enable the PDF Invoices in customers account"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: includes/class-wcj-pdf-invoices.php:1239
|
1748 |
msgid "PDF Invoices for Customers (Email attachment)"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: includes/class-wcj-pdf-invoices.php:1240
|
1752 |
msgid ""
|
1753 |
"Enable the PDF Invoices attachment files in customers email on order "
|
1754 |
"completed"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: includes/class-wcj-pdf-invoices.php:1259
|
1758 |
msgid "Enable Save as"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: includes/class-wcj-pdf-invoices.php:1260
|
1762 |
msgid "Enable save as pdf instead of view pdf"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: includes/class-wcj-price-by-country.php:82
|
1766 |
+
#: includes/class-wcj-price-by-country.php:99
|
1767 |
+
msgid "Show reports only in"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: includes/class-wcj-price-by-country.php:417
|
1771 |
+
msgid "Price by Country Options"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: includes/class-wcj-price-by-country.php:419
|
1775 |
+
msgid ""
|
1776 |
+
"Change product's price and currency by customer's country. Customer's "
|
1777 |
+
"country is detected automatically by IP."
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: includes/class-wcj-price-by-country.php:422
|
1781 |
+
msgid "IP DB version: "
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: includes/class-wcj-price-by-country.php:427
|
1785 |
+
#: includes/class-wcj-price-by-country.php:497
|
1786 |
+
msgid "Prices and Currencies by Country"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: includes/class-wcj-price-by-country.php:428
|
1790 |
+
msgid "Enable the Price by Country feature"
|
1791 |
+
msgstr ""
|
1792 |
+
|
1793 |
+
#: includes/class-wcj-price-by-country.php:429
|
1794 |
+
msgid "Change product's price and currency by customer's country."
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: includes/class-wcj-price-by-country.php:437
|
1798 |
+
msgid "Exchange rates"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: includes/class-wcj-price-by-country.php:440
|
1802 |
+
msgid "Groups Number"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: includes/class-wcj-price-by-country.php:459
|
1806 |
+
msgid ""
|
1807 |
+
"Countries. List of comma separated country codes.<br>For country codes and "
|
1808 |
+
"predifined sets visit <a href=\"http://woojetpack.com/features/prices-and-"
|
1809 |
+
"currencies-by-customers-country\">WooJetpack.com</a>"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: includes/class-wcj-price-by-country.php:468
|
1813 |
+
msgid "Multiply Price by"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: includes/class-wcj-price-by-country.php:481
|
1817 |
+
msgid "Currency"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
#: includes/class-wcj-price-labels.php:119
|
1821 |
msgid "Migrate from Custom Price Labels (Pro)"
|
1822 |
msgstr ""
|
1865 |
msgid "Migrate data"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: includes/class-wcj-price-labels.php:533
|
1869 |
msgid "Custom Price Labels Options"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: includes/class-wcj-price-labels.php:536
|
1873 |
+
#: includes/class-wcj-price-labels.php:644
|
1874 |
msgid "Custom Price Labels"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: includes/class-wcj-price-labels.php:537
|
1878 |
msgid "Enable the Custom Price Labels feature"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: includes/class-wcj-price-labels.php:538
|
1882 |
msgid "Create any custom price label for any product."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: includes/class-wcj-price-labels.php:546
|
1886 |
msgid "Global Custom Price Labels"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: includes/class-wcj-price-labels.php:546
|
1890 |
msgid "This section lets you set price labels for all products globally."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/class-wcj-price-labels.php:549
|
1894 |
msgid "Add before the price"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: includes/class-wcj-price-labels.php:550
|
1898 |
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: includes/class-wcj-price-labels.php:561
|
1902 |
msgid "Add after the price"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/class-wcj-price-labels.php:562
|
1906 |
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: includes/class-wcj-price-labels.php:573
|
1910 |
+
msgid "Add between regular and sale prices"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: includes/class-wcj-price-labels.php:574
|
1914 |
+
msgid ""
|
1915 |
+
"Enter text to add between regular and sale prices. Leave blank to disable."
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: includes/class-wcj-price-labels.php:588
|
1919 |
msgid "Remove from price"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/class-wcj-price-labels.php:590
|
1923 |
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: includes/class-wcj-price-labels.php:601
|
1927 |
msgid "Replace in price"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: includes/class-wcj-price-labels.php:602
|
1931 |
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/class-wcj-price-labels.php:614
|
1935 |
msgid "Enter text to replace with. Leave blank to disable."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: includes/class-wcj-price-labels.php:626
|
1939 |
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: includes/class-wcj-price-labels.php:626
|
1943 |
msgid ""
|
1944 |
"This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
|
1945 |
msgstr ""
|
1972 |
msgid "After single product summary"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: includes/class-wcj-product-info.php:295
|
1976 |
msgid "Available shortcodes are:"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: includes/class-wcj-product-info.php:571
|
1980 |
msgid "%s ago"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/class-wcj-product-info.php:621
|
1984 |
+
#: includes/class-wcj-product-info.php:749
|
1985 |
+
#: includes/class-wcj-product-info.php:789
|
1986 |
msgid "Position"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: includes/class-wcj-product-info.php:633
|
1990 |
+
#: includes/class-wcj-product-info.php:761
|
1991 |
+
#: includes/class-wcj-product-info.php:801
|
1992 |
#: includes/class-wcj-product-tabs.php:350
|
1993 |
#: includes/class-wcj-product-tabs.php:442
|
1994 |
#: includes/class-wcj-product-tabs.php:468
|
1996 |
msgid "Priority (i.e. Order)"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: includes/class-wcj-product-info.php:641
|
2000 |
msgid ""
|
2001 |
"Number of product info fields. Click \"Save changes\" after you change this "
|
2002 |
"number."
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: includes/class-wcj-product-info.php:664
|
2006 |
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: includes/class-wcj-product-info.php:665
|
2010 |
+
#: includes/class-wcj-product-info.php:779
|
2011 |
msgid "Total sales: %total_sales%"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: includes/class-wcj-product-info.php:668
|
2015 |
msgid "Default"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: includes/class-wcj-product-info.php:670
|
2019 |
msgid "Field Nr. "
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: includes/class-wcj-product-info.php:670
|
2023 |
msgid "Available short codes: "
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: includes/class-wcj-product-info.php:700
|
2027 |
msgid "Product Info Options"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: includes/class-wcj-product-info.php:703
|
2031 |
+
#: includes/class-wcj-product-info.php:868
|
2032 |
msgid "Product Info"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: includes/class-wcj-product-info.php:704
|
2036 |
msgid "Enable the Product Info feature"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: includes/class-wcj-product-info.php:705
|
2040 |
msgid "Add additional info to product, change related products number."
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: includes/class-wcj-product-info.php:714
|
2044 |
msgid "More Products Info"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: includes/class-wcj-product-info.php:715
|
2048 |
msgid ""
|
2049 |
"For full list of short codes, please visit <a target=\"_blank\" href="
|
2050 |
"\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
|
2051 |
"features/product-info/</a>"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: includes/class-wcj-product-info.php:720
|
2055 |
+
#: includes/class-wcj-product-info.php:731
|
2056 |
msgid "Product Info on Archive Pages"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/class-wcj-product-info.php:721
|
2060 |
msgid "Product Info on Single Pages"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: includes/class-wcj-product-info.php:728
|
2064 |
msgid "Even More Products Info"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: includes/class-wcj-product-info.php:740
|
2068 |
+
#: includes/class-wcj-product-info.php:777
|
2069 |
msgid "HTML info."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: includes/class-wcj-product-info.php:742
|
2073 |
msgid "SKU: %sku%"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: includes/class-wcj-product-info.php:768
|
2077 |
msgid "Product Info on Single Product Pages"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: includes/class-wcj-product-info.php:810
|
2081 |
msgid "Related Products Options"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: includes/class-wcj-product-info.php:820
|
2085 |
msgid "Related Products Number"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: includes/class-wcj-product-info.php:827
|
2089 |
msgid "Related Products Columns"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: includes/class-wcj-product-info.php:834
|
2093 |
msgid "Order by"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: includes/class-wcj-product-info.php:839
|
2097 |
msgid "Random"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: includes/class-wcj-product-info.php:840
|
2101 |
msgid "Date"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: includes/class-wcj-product-info.php:846
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2105 |
msgid "Order"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: includes/class-wcj-product-info.php:847
|
2109 |
msgid "Ignored if order by \"Random\" is selected above."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: includes/class-wcj-product-info.php:852
|
2113 |
msgid "Ascending"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/class-wcj-product-info.php:853
|
2117 |
msgid "Descending"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: includes/class-wcj-product-input-fields-global.php:80
|
2121 |
+
msgid "Product Input Fields Global Options"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: includes/class-wcj-product-input-fields-global.php:82
|
2125 |
+
#: includes/class-wcj-product-input-fields-per-product.php:197
|
2126 |
+
msgid ""
|
2127 |
+
"Add custom input fields to product's single page for customer to fill before "
|
2128 |
+
"adding product to cart."
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: includes/class-wcj-product-input-fields-global.php:87
|
2132 |
+
#: includes/class-wcj-product-input-fields-global.php:135
|
2133 |
+
msgid "Product Input Fields - All Products"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: includes/class-wcj-product-input-fields-global.php:89
|
2137 |
+
msgid "Add custom input fields to all products."
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: includes/class-wcj-product-input-fields-global.php:96
|
2141 |
+
msgid "Product Input Fields Number"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: includes/class-wcj-product-input-fields-per-product.php:95
|
2145 |
+
msgid "WooCommerce Jetpack: Product Input Fields"
|
2146 |
+
msgstr ""
|
2147 |
+
|
2148 |
+
#: includes/class-wcj-product-input-fields-per-product.php:104
|
2149 |
+
msgid "Product Input Fields"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: includes/class-wcj-product-input-fields-per-product.php:124
|
2153 |
+
msgid "Total number of "
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: includes/class-wcj-product-input-fields-per-product.php:130
|
2157 |
+
#: includes/class-wcj-product-tabs.php:229
|
2158 |
+
msgid "Click \"Update\" product after you change this number."
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: includes/class-wcj-product-input-fields-per-product.php:195
|
2162 |
+
msgid "Product Input Fields per Product Options"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: includes/class-wcj-product-input-fields-per-product.php:199
|
2166 |
+
msgid ""
|
2167 |
+
"When enabled this module will add \"Product Input Fields\" tab to product's "
|
2168 |
+
"\"Edit\" page."
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: includes/class-wcj-product-input-fields-per-product.php:204
|
2172 |
+
#: includes/class-wcj-product-input-fields-per-product.php:236
|
2173 |
+
msgid "Product Input Fields - per Product"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: includes/class-wcj-product-input-fields-per-product.php:206
|
2177 |
+
msgid "Add custom input field on per product basis."
|
|
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: includes/class-wcj-product-input-fields-per-product.php:213
|
2181 |
+
msgid "Default Number of Product Input Fields per Product"
|
|
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: includes/class-wcj-product-input-fields-per-product.php:215
|
2185 |
+
msgid ""
|
2186 |
+
"You will be able to change this number later as well as define the fields, "
|
2187 |
+
"for each product individually, in product's \"Edit\"."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
#: includes/class-wcj-product-listings.php:56
|
2330 |
msgid "Total number of custom tabs"
|
2331 |
msgstr ""
|
2332 |
|
|
|
|
|
|
|
|
|
2333 |
#: includes/class-wcj-product-tabs.php:243
|
2334 |
msgid "Priority"
|
2335 |
msgstr ""
|
2375 |
msgid "Custom Product Tabs Number"
|
2376 |
msgstr ""
|
2377 |
|
|
|
|
|
|
|
|
|
2378 |
#: includes/class-wcj-product-tabs.php:358
|
2379 |
msgid "You can use shortcodes here..."
|
2380 |
msgstr ""
|
2451 |
msgid "Reviews Tab"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: includes/class-wcj-reports.php:85
|
2455 |
+
msgid "WooJetpack: All in stock"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: includes/class-wcj-reports.php:92
|
2459 |
+
msgid "WooJetpack: Understocked"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: includes/class-wcj-reports.php:107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2463 |
msgid "WooJetpack: Customers by Country"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: includes/class-wcj-reports.php:114
|
2467 |
+
msgid "WooJetpack: Customers by Country Sets"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: includes/class-wcj-reports.php:139
|
|
|
|
|
|
|
|
|
2471 |
msgid "Reports Options"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: includes/class-wcj-reports.php:142 includes/class-wcj-reports.php:177
|
|
|
2475 |
msgid "Reports"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: includes/class-wcj-reports.php:143
|
2479 |
msgid "Enable the Reports feature"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: includes/class-wcj-reports.php:144
|
2483 |
msgid "Stock, sales, customers etc. reports."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/class-wcj-reports.php:153
|
2487 |
+
msgid "Available Reports"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: includes/class-wcj-reports.php:156
|
2491 |
msgid ""
|
2492 |
"WooJetpack: Customers by Country. Available in WooCommerce > Reports > "
|
2493 |
"Customers."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: includes/class-wcj-reports.php:158
|
2497 |
msgid ""
|
2498 |
+
"WooJetpack: Customers by Country Sets. Available in WooCommerce > Reports > "
|
2499 |
+
"Customers."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: includes/class-wcj-reports.php:160
|
2503 |
+
msgid ""
|
2504 |
+
"WooJetpack: All in Stock with sales data. Available in WooCommerce > Reports "
|
2505 |
+
"> Stock."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: includes/class-wcj-reports.php:162
|
2509 |
+
msgid ""
|
2510 |
+
"WooJetpack: Understocked products (calculated by sales data). Available in "
|
2511 |
+
"WooCommerce > Reports > Stock."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/class-wcj-shipping-calculator.php:116
|
2515 |
+
msgid "Shipping Calculator Options"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: includes/class-wcj-shipping-calculator.php:119
|
2519 |
+
#: includes/class-wcj-shipping-calculator.php:196
|
2520 |
+
msgid "Shipping Calculator"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: includes/class-wcj-shipping-calculator.php:121
|
2524 |
+
msgid "Customize shipping calculator on cart page."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: includes/class-wcj-shipping-calculator.php:128
|
2528 |
+
msgid "Enable City"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: includes/class-wcj-shipping-calculator.php:136
|
2532 |
+
msgid "Enable Postcode"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: includes/class-wcj-shipping-calculator.php:144
|
2536 |
+
msgid "Enable State"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: includes/class-wcj-shipping-calculator.php:152
|
2540 |
+
msgid "Force Block Open"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: includes/class-wcj-shipping-calculator.php:161
|
2544 |
+
msgid "Calculate Shipping button"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: includes/class-wcj-shipping-calculator.php:162
|
2548 |
msgid ""
|
2549 |
+
"When \"Force Block Open\" options is enabled, set Calculate Shipping button "
|
2550 |
+
"options."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: includes/class-wcj-shipping-calculator.php:168
|
2554 |
+
msgid "Make non clickable"
|
|
|
|
|
|
|
|
|
|
|
|
|
2555 |
msgstr ""
|
2556 |
|
2557 |
#: includes/class-wcj-shipping.php:63
|
2592 |
msgid "Hide shipping"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: includes/class-wcj-shortcodes.php:61
|
2596 |
+
msgid "Shortcodes Options"
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: includes/class-wcj-shortcodes.php:61 includes/class-wcj-shortcodes.php:66
|
2600 |
+
msgid "Shortcodes."
|
2601 |
+
msgstr ""
|
2602 |
+
|
2603 |
+
#: includes/class-wcj-shortcodes.php:64 includes/class-wcj-shortcodes.php:82
|
2604 |
+
msgid "Shortcodes"
|
2605 |
+
msgstr ""
|
2606 |
+
|
2607 |
+
#: includes/class-wcj-shortcodes.php:65
|
2608 |
+
msgid "Enable the Shortcodes feature"
|
2609 |
+
msgstr ""
|
2610 |
+
|
2611 |
+
#: includes/class-wcj-sorting.php:88
|
2612 |
msgid "WooJetpack: Remove All Sorting"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: includes/class-wcj-sorting.php:92
|
2616 |
msgid "Completely remove sorting from the shop front end"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: includes/class-wcj-sorting.php:198
|
2620 |
msgid "Sorting Options"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: includes/class-wcj-sorting.php:201 includes/class-wcj-sorting.php:306
|
2624 |
msgid "Sorting"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: includes/class-wcj-sorting.php:202
|
2628 |
msgid "Enable the Sorting feature"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: includes/class-wcj-sorting.php:203
|
2632 |
msgid "Add more sorting options or remove all sorting including default."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: includes/class-wcj-sorting.php:211 includes/class-wcj-sorting.php:214
|
2636 |
msgid "Remove All Sorting"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: includes/class-wcj-sorting.php:215
|
2640 |
msgid "Remove all sorting (including WooCommerce default)"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: includes/class-wcj-sorting.php:226 includes/class-wcj-sorting.php:229
|
2644 |
msgid "Add More Sorting"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: includes/class-wcj-sorting.php:237
|
2648 |
msgid "Sort by Name"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:241
|
2652 |
msgid "Sort by title: A to Z"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: includes/class-wcj-sorting.php:239 includes/class-wcj-sorting.php:249
|
2656 |
+
#: includes/class-wcj-sorting.php:259 includes/class-wcj-sorting.php:269
|
2657 |
+
#: includes/class-wcj-sorting.php:279 includes/class-wcj-sorting.php:289
|
2658 |
msgid "Text to show on frontend. Leave blank to disable."
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:251
|
2662 |
msgid "Sort by title: Z to A"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: includes/class-wcj-sorting.php:257
|
2666 |
msgid "Sort by SKU"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:261
|
2670 |
msgid "Sort by SKU: low to high"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:271
|
2674 |
msgid "Sort by SKU: high to low"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: includes/class-wcj-sorting.php:277
|
2678 |
msgid "Sort by stock quantity"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: includes/class-wcj-sorting.php:278 includes/class-wcj-sorting.php:281
|
2682 |
msgid "Sort by stock quantity: low to high"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: includes/class-wcj-sorting.php:288 includes/class-wcj-sorting.php:291
|
2686 |
msgid "Sort by stock quantity: high to low"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: includes/currencies/wcj-currencies.php:4
|
2690 |
+
msgid "Afghan afghani"
|
2691 |
+
msgstr ""
|
2692 |
+
|
2693 |
+
#: includes/currencies/wcj-currencies.php:5
|
2694 |
+
msgid "Albanian lek"
|
2695 |
+
msgstr ""
|
2696 |
+
|
2697 |
+
#: includes/currencies/wcj-currencies.php:6
|
2698 |
+
msgid "Algerian dinar"
|
2699 |
+
msgstr ""
|
2700 |
+
|
2701 |
+
#: includes/currencies/wcj-currencies.php:7
|
2702 |
+
msgid "Angolan kwanza"
|
2703 |
+
msgstr ""
|
2704 |
+
|
2705 |
+
#: includes/currencies/wcj-currencies.php:8
|
2706 |
+
msgid "Argentine peso"
|
2707 |
+
msgstr ""
|
2708 |
+
|
2709 |
+
#: includes/currencies/wcj-currencies.php:9
|
2710 |
+
msgid "Armenian dram"
|
2711 |
+
msgstr ""
|
2712 |
+
|
2713 |
+
#: includes/currencies/wcj-currencies.php:10
|
2714 |
+
msgid "Aruban florin"
|
2715 |
+
msgstr ""
|
2716 |
+
|
2717 |
+
#: includes/currencies/wcj-currencies.php:11
|
2718 |
+
msgid "Australian dollar"
|
2719 |
+
msgstr ""
|
2720 |
+
|
2721 |
+
#: includes/currencies/wcj-currencies.php:12
|
2722 |
+
msgid "Azerbaijani manat"
|
2723 |
+
msgstr ""
|
2724 |
+
|
2725 |
+
#: includes/currencies/wcj-currencies.php:13
|
2726 |
+
msgid "Bahamian dollar"
|
2727 |
+
msgstr ""
|
2728 |
+
|
2729 |
+
#: includes/currencies/wcj-currencies.php:14
|
2730 |
+
msgid "Bahraini dinar"
|
2731 |
+
msgstr ""
|
2732 |
+
|
2733 |
+
#: includes/currencies/wcj-currencies.php:15
|
2734 |
+
msgid "Bangladeshi taka"
|
2735 |
+
msgstr ""
|
2736 |
+
|
2737 |
+
#: includes/currencies/wcj-currencies.php:16
|
2738 |
+
msgid "Barbadian dollar"
|
2739 |
+
msgstr ""
|
2740 |
+
|
2741 |
+
#: includes/currencies/wcj-currencies.php:17
|
2742 |
+
msgid "Belarusian ruble"
|
2743 |
+
msgstr ""
|
2744 |
+
|
2745 |
+
#: includes/currencies/wcj-currencies.php:18
|
2746 |
+
msgid "Belize dollar"
|
2747 |
+
msgstr ""
|
2748 |
+
|
2749 |
+
#: includes/currencies/wcj-currencies.php:19
|
2750 |
+
msgid "Bhutanese ngultrum"
|
2751 |
+
msgstr ""
|
2752 |
+
|
2753 |
+
#: includes/currencies/wcj-currencies.php:20
|
2754 |
+
msgid "Bolivian boliviano"
|
2755 |
+
msgstr ""
|
2756 |
+
|
2757 |
+
#: includes/currencies/wcj-currencies.php:21
|
2758 |
+
msgid "Bosnia and Herzegovina konvertibilna marka"
|
2759 |
+
msgstr ""
|
2760 |
+
|
2761 |
+
#: includes/currencies/wcj-currencies.php:22
|
2762 |
+
msgid "Botswana pula"
|
2763 |
+
msgstr ""
|
2764 |
+
|
2765 |
+
#: includes/currencies/wcj-currencies.php:23
|
2766 |
+
msgid "Brazilian real"
|
2767 |
+
msgstr ""
|
2768 |
+
|
2769 |
+
#: includes/currencies/wcj-currencies.php:24
|
2770 |
+
msgid "British pound"
|
2771 |
+
msgstr ""
|
2772 |
+
|
2773 |
+
#: includes/currencies/wcj-currencies.php:25
|
2774 |
+
msgid "Brunei dollar"
|
2775 |
+
msgstr ""
|
2776 |
+
|
2777 |
+
#: includes/currencies/wcj-currencies.php:26
|
2778 |
+
msgid "Bulgarian lev"
|
2779 |
+
msgstr ""
|
2780 |
+
|
2781 |
+
#: includes/currencies/wcj-currencies.php:27
|
2782 |
+
msgid "Burundi franc"
|
2783 |
+
msgstr ""
|
2784 |
+
|
2785 |
+
#: includes/currencies/wcj-currencies.php:28
|
2786 |
+
msgid "Cayman Islands dollar"
|
2787 |
+
msgstr ""
|
2788 |
+
|
2789 |
+
#: includes/currencies/wcj-currencies.php:29
|
2790 |
+
msgid "Cambodian riel"
|
2791 |
+
msgstr ""
|
2792 |
+
|
2793 |
+
#: includes/currencies/wcj-currencies.php:30
|
2794 |
+
msgid "Canadian dollar"
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: includes/currencies/wcj-currencies.php:31
|
2798 |
+
msgid "Cape Verdean escudo"
|
2799 |
+
msgstr ""
|
2800 |
+
|
2801 |
+
#: includes/currencies/wcj-currencies.php:32
|
2802 |
+
#: includes/currencies/wcj-currencies.php:33
|
2803 |
+
msgid "Central African CFA franc"
|
2804 |
+
msgstr ""
|
2805 |
+
|
2806 |
+
#: includes/currencies/wcj-currencies.php:34
|
2807 |
+
msgid "CFP franc"
|
2808 |
+
msgstr ""
|
2809 |
+
|
2810 |
+
#: includes/currencies/wcj-currencies.php:35
|
2811 |
+
msgid "Chilean peso"
|
2812 |
+
msgstr ""
|
2813 |
+
|
2814 |
+
#: includes/currencies/wcj-currencies.php:36
|
2815 |
+
msgid "Chinese renminbi"
|
2816 |
+
msgstr ""
|
2817 |
+
|
2818 |
+
#: includes/currencies/wcj-currencies.php:37
|
2819 |
+
msgid "Colombian peso"
|
2820 |
+
msgstr ""
|
2821 |
+
|
2822 |
+
#: includes/currencies/wcj-currencies.php:38
|
2823 |
+
msgid "Comorian franc"
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: includes/currencies/wcj-currencies.php:39
|
2827 |
+
msgid "Congolese franc"
|
2828 |
+
msgstr ""
|
2829 |
+
|
2830 |
+
#: includes/currencies/wcj-currencies.php:40
|
2831 |
+
msgid "Costa Rican colon"
|
2832 |
+
msgstr ""
|
2833 |
+
|
2834 |
+
#: includes/currencies/wcj-currencies.php:41
|
2835 |
+
msgid "Croatian kuna"
|
2836 |
+
msgstr ""
|
2837 |
+
|
2838 |
+
#: includes/currencies/wcj-currencies.php:42
|
2839 |
+
msgid "Cuban peso"
|
2840 |
+
msgstr ""
|
2841 |
+
|
2842 |
+
#: includes/currencies/wcj-currencies.php:43
|
2843 |
+
msgid "Czech koruna"
|
2844 |
+
msgstr ""
|
2845 |
+
|
2846 |
+
#: includes/currencies/wcj-currencies.php:44
|
2847 |
+
msgid "Danish krone"
|
2848 |
+
msgstr ""
|
2849 |
+
|
2850 |
+
#: includes/currencies/wcj-currencies.php:45
|
2851 |
+
msgid "Djiboutian franc"
|
2852 |
+
msgstr ""
|
2853 |
+
|
2854 |
+
#: includes/currencies/wcj-currencies.php:46
|
2855 |
+
msgid "Dominican peso"
|
2856 |
+
msgstr ""
|
2857 |
+
|
2858 |
+
#: includes/currencies/wcj-currencies.php:47
|
2859 |
+
msgid "East Caribbean dollar"
|
2860 |
+
msgstr ""
|
2861 |
+
|
2862 |
+
#: includes/currencies/wcj-currencies.php:48
|
2863 |
+
msgid "Egyptian pound"
|
2864 |
+
msgstr ""
|
2865 |
+
|
2866 |
+
#: includes/currencies/wcj-currencies.php:49
|
2867 |
+
msgid "Eritrean nakfa"
|
2868 |
+
msgstr ""
|
2869 |
+
|
2870 |
+
#: includes/currencies/wcj-currencies.php:50
|
2871 |
+
msgid "Estonian kroon"
|
2872 |
+
msgstr ""
|
2873 |
+
|
2874 |
+
#: includes/currencies/wcj-currencies.php:51
|
2875 |
+
msgid "Ethiopian birr"
|
2876 |
+
msgstr ""
|
2877 |
+
|
2878 |
+
#: includes/currencies/wcj-currencies.php:52
|
2879 |
+
msgid "European euro"
|
2880 |
+
msgstr ""
|
2881 |
+
|
2882 |
+
#: includes/currencies/wcj-currencies.php:53
|
2883 |
+
msgid "Falkland Islands pound"
|
2884 |
+
msgstr ""
|
2885 |
+
|
2886 |
+
#: includes/currencies/wcj-currencies.php:54
|
2887 |
+
msgid "Fijian dollar"
|
2888 |
+
msgstr ""
|
2889 |
+
|
2890 |
+
#: includes/currencies/wcj-currencies.php:55
|
2891 |
+
msgid "Gambian dalasi"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: includes/currencies/wcj-currencies.php:56
|
2895 |
+
msgid "Georgian lari"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: includes/currencies/wcj-currencies.php:57
|
2899 |
+
msgid "Ghanaian cedi"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: includes/currencies/wcj-currencies.php:58
|
2903 |
+
msgid "Gibraltar pound"
|
2904 |
+
msgstr ""
|
2905 |
+
|
2906 |
+
#: includes/currencies/wcj-currencies.php:59
|
2907 |
+
msgid "Guatemalan quetzal"
|
2908 |
+
msgstr ""
|
2909 |
+
|
2910 |
+
#: includes/currencies/wcj-currencies.php:60
|
2911 |
+
msgid "Guinean franc"
|
2912 |
+
msgstr ""
|
2913 |
+
|
2914 |
+
#: includes/currencies/wcj-currencies.php:61
|
2915 |
+
msgid "Guyanese dollar"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: includes/currencies/wcj-currencies.php:62
|
2919 |
+
msgid "Haitian gourde"
|
2920 |
+
msgstr ""
|
2921 |
+
|
2922 |
+
#: includes/currencies/wcj-currencies.php:63
|
2923 |
+
msgid "Honduran lempira"
|
2924 |
+
msgstr ""
|
2925 |
+
|
2926 |
+
#: includes/currencies/wcj-currencies.php:64
|
2927 |
+
msgid "Hong Kong dollar"
|
2928 |
+
msgstr ""
|
2929 |
+
|
2930 |
+
#: includes/currencies/wcj-currencies.php:65
|
2931 |
+
msgid "Hungarian forint"
|
2932 |
+
msgstr ""
|
2933 |
+
|
2934 |
+
#: includes/currencies/wcj-currencies.php:66
|
2935 |
+
msgid "Icelandic krona"
|
2936 |
+
msgstr ""
|
2937 |
+
|
2938 |
+
#: includes/currencies/wcj-currencies.php:67
|
2939 |
+
msgid "Indian rupee"
|
2940 |
+
msgstr ""
|
2941 |
+
|
2942 |
+
#: includes/currencies/wcj-currencies.php:68
|
2943 |
+
msgid "Indonesian rupiah"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: includes/currencies/wcj-currencies.php:69
|
2947 |
+
msgid "Iranian rial"
|
2948 |
+
msgstr ""
|
2949 |
+
|
2950 |
+
#: includes/currencies/wcj-currencies.php:70
|
2951 |
+
msgid "Iraqi dinar"
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: includes/currencies/wcj-currencies.php:71
|
2955 |
+
msgid "Israeli new sheqel"
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
#: includes/currencies/wcj-currencies.php:72
|
2959 |
+
msgid "Yemeni rial"
|
2960 |
+
msgstr ""
|
2961 |
+
|
2962 |
+
#: includes/currencies/wcj-currencies.php:73
|
2963 |
+
msgid "Jamaican dollar"
|
2964 |
+
msgstr ""
|
2965 |
+
|
2966 |
+
#: includes/currencies/wcj-currencies.php:74
|
2967 |
+
msgid "Japanese yen"
|
2968 |
+
msgstr ""
|
2969 |
+
|
2970 |
+
#: includes/currencies/wcj-currencies.php:75
|
2971 |
+
msgid "Jordanian dinar"
|
2972 |
+
msgstr ""
|
2973 |
+
|
2974 |
+
#: includes/currencies/wcj-currencies.php:76
|
2975 |
+
msgid "Kazakhstani tenge"
|
2976 |
+
msgstr ""
|
2977 |
+
|
2978 |
+
#: includes/currencies/wcj-currencies.php:77
|
2979 |
+
msgid "Kenyan shilling"
|
2980 |
+
msgstr ""
|
2981 |
+
|
2982 |
+
#: includes/currencies/wcj-currencies.php:78
|
2983 |
+
msgid "Kyrgyzstani som"
|
2984 |
+
msgstr ""
|
2985 |
+
|
2986 |
+
#: includes/currencies/wcj-currencies.php:79
|
2987 |
+
msgid "Kuwaiti dinar"
|
2988 |
+
msgstr ""
|
2989 |
+
|
2990 |
+
#: includes/currencies/wcj-currencies.php:80
|
2991 |
+
msgid "Lao kip"
|
2992 |
+
msgstr ""
|
2993 |
+
|
2994 |
+
#: includes/currencies/wcj-currencies.php:81
|
2995 |
+
msgid "Latvian lats"
|
2996 |
+
msgstr ""
|
2997 |
+
|
2998 |
+
#: includes/currencies/wcj-currencies.php:82
|
2999 |
+
msgid "Lebanese lira"
|
3000 |
+
msgstr ""
|
3001 |
+
|
3002 |
+
#: includes/currencies/wcj-currencies.php:83
|
3003 |
+
msgid "Lesotho loti"
|
3004 |
+
msgstr ""
|
3005 |
+
|
3006 |
+
#: includes/currencies/wcj-currencies.php:84
|
3007 |
+
msgid "Liberian dollar"
|
3008 |
+
msgstr ""
|
3009 |
+
|
3010 |
+
#: includes/currencies/wcj-currencies.php:85
|
3011 |
+
msgid "Libyan dinar"
|
3012 |
+
msgstr ""
|
3013 |
+
|
3014 |
+
#: includes/currencies/wcj-currencies.php:86
|
3015 |
+
msgid "Lithuanian litas"
|
3016 |
+
msgstr ""
|
3017 |
+
|
3018 |
+
#: includes/currencies/wcj-currencies.php:87
|
3019 |
+
msgid "Macanese pataca"
|
3020 |
+
msgstr ""
|
3021 |
+
|
3022 |
+
#: includes/currencies/wcj-currencies.php:88
|
3023 |
+
msgid "Macedonian denar"
|
3024 |
+
msgstr ""
|
3025 |
+
|
3026 |
+
#: includes/currencies/wcj-currencies.php:89
|
3027 |
+
msgid "Malagasy ariary"
|
3028 |
+
msgstr ""
|
3029 |
+
|
3030 |
+
#: includes/currencies/wcj-currencies.php:90
|
3031 |
+
msgid "Malaysian ringgit"
|
3032 |
+
msgstr ""
|
3033 |
+
|
3034 |
+
#: includes/currencies/wcj-currencies.php:91
|
3035 |
+
msgid "Malawian kwacha"
|
3036 |
+
msgstr ""
|
3037 |
+
|
3038 |
+
#: includes/currencies/wcj-currencies.php:92
|
3039 |
+
msgid "Maldivian rufiyaa"
|
3040 |
+
msgstr ""
|
3041 |
+
|
3042 |
+
#: includes/currencies/wcj-currencies.php:93
|
3043 |
+
msgid "Mauritanian ouguiya"
|
3044 |
+
msgstr ""
|
3045 |
+
|
3046 |
+
#: includes/currencies/wcj-currencies.php:94
|
3047 |
+
msgid "Mauritian rupee"
|
3048 |
+
msgstr ""
|
3049 |
+
|
3050 |
+
#: includes/currencies/wcj-currencies.php:95
|
3051 |
+
msgid "Mexican peso"
|
3052 |
+
msgstr ""
|
3053 |
+
|
3054 |
+
#: includes/currencies/wcj-currencies.php:96
|
3055 |
+
msgid "Myanma kyat"
|
3056 |
+
msgstr ""
|
3057 |
+
|
3058 |
+
#: includes/currencies/wcj-currencies.php:97
|
3059 |
+
msgid "Moldovan leu"
|
3060 |
+
msgstr ""
|
3061 |
+
|
3062 |
+
#: includes/currencies/wcj-currencies.php:98
|
3063 |
+
msgid "Mongolian tugrik"
|
3064 |
+
msgstr ""
|
3065 |
+
|
3066 |
+
#: includes/currencies/wcj-currencies.php:99
|
3067 |
+
msgid "Moroccan dirham"
|
3068 |
+
msgstr ""
|
3069 |
+
|
3070 |
+
#: includes/currencies/wcj-currencies.php:100
|
3071 |
+
msgid "Mozambican metical"
|
3072 |
+
msgstr ""
|
3073 |
+
|
3074 |
+
#: includes/currencies/wcj-currencies.php:101
|
3075 |
+
msgid "Namibian dollar"
|
3076 |
+
msgstr ""
|
3077 |
+
|
3078 |
+
#: includes/currencies/wcj-currencies.php:102
|
3079 |
+
msgid "Nepalese rupee"
|
3080 |
+
msgstr ""
|
3081 |
+
|
3082 |
+
#: includes/currencies/wcj-currencies.php:103
|
3083 |
+
msgid "Netherlands Antillean gulden"
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: includes/currencies/wcj-currencies.php:104
|
3087 |
+
msgid "New Taiwan dollar"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: includes/currencies/wcj-currencies.php:105
|
3091 |
+
msgid "New Zealand dollar"
|
3092 |
+
msgstr ""
|
3093 |
+
|
3094 |
+
#: includes/currencies/wcj-currencies.php:106
|
3095 |
+
msgid "Nicaraguan cordoba"
|
3096 |
+
msgstr ""
|
3097 |
+
|
3098 |
+
#: includes/currencies/wcj-currencies.php:107
|
3099 |
+
msgid "Nigerian naira"
|
3100 |
+
msgstr ""
|
3101 |
+
|
3102 |
+
#: includes/currencies/wcj-currencies.php:108
|
3103 |
+
msgid "North Korean won"
|
3104 |
+
msgstr ""
|
3105 |
+
|
3106 |
+
#: includes/currencies/wcj-currencies.php:109
|
3107 |
+
msgid "Norwegian krone"
|
3108 |
+
msgstr ""
|
3109 |
+
|
3110 |
+
#: includes/currencies/wcj-currencies.php:110
|
3111 |
+
msgid "Omani rial"
|
3112 |
+
msgstr ""
|
3113 |
+
|
3114 |
+
#: includes/currencies/wcj-currencies.php:111
|
3115 |
+
msgid "Paanga"
|
3116 |
+
msgstr ""
|
3117 |
+
|
3118 |
+
#: includes/currencies/wcj-currencies.php:112
|
3119 |
+
msgid "Pakistani rupee"
|
3120 |
+
msgstr ""
|
3121 |
+
|
3122 |
+
#: includes/currencies/wcj-currencies.php:113
|
3123 |
+
msgid "Panamanian balboa"
|
3124 |
+
msgstr ""
|
3125 |
+
|
3126 |
+
#: includes/currencies/wcj-currencies.php:114
|
3127 |
+
msgid "Papua New Guinean kina"
|
3128 |
+
msgstr ""
|
3129 |
+
|
3130 |
+
#: includes/currencies/wcj-currencies.php:115
|
3131 |
+
msgid "Paraguayan guarani"
|
3132 |
+
msgstr ""
|
3133 |
+
|
3134 |
+
#: includes/currencies/wcj-currencies.php:116
|
3135 |
+
msgid "Peruvian nuevo sol"
|
3136 |
+
msgstr ""
|
3137 |
+
|
3138 |
+
#: includes/currencies/wcj-currencies.php:117
|
3139 |
+
msgid "Philippine peso"
|
3140 |
+
msgstr ""
|
3141 |
+
|
3142 |
+
#: includes/currencies/wcj-currencies.php:118
|
3143 |
+
msgid "Polish zloty"
|
3144 |
+
msgstr ""
|
3145 |
+
|
3146 |
+
#: includes/currencies/wcj-currencies.php:119
|
3147 |
+
msgid "Qatari riyal"
|
3148 |
+
msgstr ""
|
3149 |
+
|
3150 |
+
#: includes/currencies/wcj-currencies.php:120
|
3151 |
+
msgid "Romanian leu"
|
3152 |
+
msgstr ""
|
3153 |
+
|
3154 |
+
#: includes/currencies/wcj-currencies.php:121
|
3155 |
+
msgid "Russian ruble"
|
3156 |
+
msgstr ""
|
3157 |
+
|
3158 |
+
#: includes/currencies/wcj-currencies.php:122
|
3159 |
+
msgid "Rwandan franc"
|
3160 |
+
msgstr ""
|
3161 |
+
|
3162 |
+
#: includes/currencies/wcj-currencies.php:123
|
3163 |
+
msgid "Saint Helena pound"
|
3164 |
+
msgstr ""
|
3165 |
+
|
3166 |
+
#: includes/currencies/wcj-currencies.php:124
|
3167 |
+
msgid "Samoan tala"
|
3168 |
+
msgstr ""
|
3169 |
+
|
3170 |
+
#: includes/currencies/wcj-currencies.php:125
|
3171 |
+
msgid "Sao Tome and Principe dobra"
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: includes/currencies/wcj-currencies.php:126
|
3175 |
+
msgid "Saudi riyal"
|
3176 |
+
msgstr ""
|
3177 |
+
|
3178 |
+
#: includes/currencies/wcj-currencies.php:127
|
3179 |
+
msgid "Seychellois rupee"
|
3180 |
+
msgstr ""
|
3181 |
+
|
3182 |
+
#: includes/currencies/wcj-currencies.php:128
|
3183 |
+
msgid "Serbian dinar"
|
3184 |
+
msgstr ""
|
3185 |
+
|
3186 |
+
#: includes/currencies/wcj-currencies.php:129
|
3187 |
+
msgid "Sierra Leonean leone"
|
3188 |
+
msgstr ""
|
3189 |
+
|
3190 |
+
#: includes/currencies/wcj-currencies.php:130
|
3191 |
+
msgid "Singapore dollar"
|
3192 |
+
msgstr ""
|
3193 |
+
|
3194 |
+
#: includes/currencies/wcj-currencies.php:131
|
3195 |
+
msgid "Syrian pound"
|
3196 |
+
msgstr ""
|
3197 |
+
|
3198 |
+
#: includes/currencies/wcj-currencies.php:132
|
3199 |
+
msgid "Slovak koruna"
|
3200 |
+
msgstr ""
|
3201 |
+
|
3202 |
+
#: includes/currencies/wcj-currencies.php:133
|
3203 |
+
msgid "Solomon Islands dollar"
|
3204 |
+
msgstr ""
|
3205 |
+
|
3206 |
+
#: includes/currencies/wcj-currencies.php:134
|
3207 |
+
msgid "Somali shilling"
|
3208 |
+
msgstr ""
|
3209 |
+
|
3210 |
+
#: includes/currencies/wcj-currencies.php:135
|
3211 |
+
msgid "South African rand"
|
3212 |
+
msgstr ""
|
3213 |
+
|
3214 |
+
#: includes/currencies/wcj-currencies.php:136
|
3215 |
+
msgid "South Korean won"
|
3216 |
+
msgstr ""
|
3217 |
+
|
3218 |
+
#: includes/currencies/wcj-currencies.php:137
|
3219 |
+
msgid "Special Drawing Rights"
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: includes/currencies/wcj-currencies.php:138
|
3223 |
+
msgid "Sri Lankan rupee"
|
3224 |
+
msgstr ""
|
3225 |
+
|
3226 |
+
#: includes/currencies/wcj-currencies.php:139
|
3227 |
+
msgid "Sudanese pound"
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: includes/currencies/wcj-currencies.php:140
|
3231 |
+
msgid "Surinamese dollar"
|
3232 |
+
msgstr ""
|
3233 |
+
|
3234 |
+
#: includes/currencies/wcj-currencies.php:141
|
3235 |
+
msgid "Swazi lilangeni"
|
3236 |
+
msgstr ""
|
3237 |
+
|
3238 |
+
#: includes/currencies/wcj-currencies.php:142
|
3239 |
+
msgid "Swedish krona"
|
3240 |
+
msgstr ""
|
3241 |
+
|
3242 |
+
#: includes/currencies/wcj-currencies.php:143
|
3243 |
+
msgid "Swiss franc"
|
3244 |
+
msgstr ""
|
3245 |
+
|
3246 |
+
#: includes/currencies/wcj-currencies.php:144
|
3247 |
+
msgid "Tajikistani somoni"
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: includes/currencies/wcj-currencies.php:145
|
3251 |
+
msgid "Tanzanian shilling"
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: includes/currencies/wcj-currencies.php:146
|
3255 |
+
msgid "Thai baht"
|
3256 |
+
msgstr ""
|
3257 |
+
|
3258 |
+
#: includes/currencies/wcj-currencies.php:147
|
3259 |
+
msgid "Trinidad and Tobago dollar"
|
3260 |
+
msgstr ""
|
3261 |
+
|
3262 |
+
#: includes/currencies/wcj-currencies.php:148
|
3263 |
+
msgid "Tunisian dinar"
|
3264 |
+
msgstr ""
|
3265 |
+
|
3266 |
+
#: includes/currencies/wcj-currencies.php:149
|
3267 |
+
msgid "Turkish new lira"
|
3268 |
+
msgstr ""
|
3269 |
+
|
3270 |
+
#: includes/currencies/wcj-currencies.php:150
|
3271 |
+
msgid "Turkmen manat"
|
3272 |
+
msgstr ""
|
3273 |
+
|
3274 |
+
#: includes/currencies/wcj-currencies.php:151
|
3275 |
+
msgid "UAE dirham"
|
3276 |
+
msgstr ""
|
3277 |
+
|
3278 |
+
#: includes/currencies/wcj-currencies.php:152
|
3279 |
+
msgid "Ugandan shilling"
|
3280 |
+
msgstr ""
|
3281 |
+
|
3282 |
+
#: includes/currencies/wcj-currencies.php:153
|
3283 |
+
msgid "Ukrainian hryvnia"
|
3284 |
+
msgstr ""
|
3285 |
+
|
3286 |
+
#: includes/currencies/wcj-currencies.php:154
|
3287 |
+
msgid "United States dollar"
|
3288 |
+
msgstr ""
|
3289 |
+
|
3290 |
+
#: includes/currencies/wcj-currencies.php:155
|
3291 |
+
msgid "Uruguayan peso"
|
3292 |
+
msgstr ""
|
3293 |
+
|
3294 |
+
#: includes/currencies/wcj-currencies.php:156
|
3295 |
+
msgid "Uzbekistani som"
|
3296 |
+
msgstr ""
|
3297 |
+
|
3298 |
+
#: includes/currencies/wcj-currencies.php:157
|
3299 |
+
msgid "Vanuatu vatu"
|
3300 |
+
msgstr ""
|
3301 |
+
|
3302 |
+
#: includes/currencies/wcj-currencies.php:158
|
3303 |
+
msgid "Venezuelan bolivar"
|
3304 |
+
msgstr ""
|
3305 |
+
|
3306 |
+
#: includes/currencies/wcj-currencies.php:159
|
3307 |
+
msgid "Vietnamese dong"
|
3308 |
+
msgstr ""
|
3309 |
+
|
3310 |
+
#: includes/currencies/wcj-currencies.php:160
|
3311 |
+
msgid "West African CFA franc"
|
3312 |
+
msgstr ""
|
3313 |
+
|
3314 |
+
#: includes/currencies/wcj-currencies.php:161
|
3315 |
+
msgid "Zambian kwacha"
|
3316 |
+
msgstr ""
|
3317 |
+
|
3318 |
+
#: includes/currencies/wcj-currencies.php:162
|
3319 |
+
msgid "Zimbabwean dollar"
|
3320 |
+
msgstr ""
|
3321 |
+
|
3322 |
+
#: includes/currencies/wcj-currencies.php:163
|
3323 |
+
msgid "Chinese Yuan"
|
3324 |
+
msgstr ""
|
3325 |
+
|
3326 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
3327 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
3328 |
msgid "Enable/Disable"
|
3401 |
msgid "Enable gateway if the order is virtual"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:298
|
|
|
|
|
|
|
|
|
3405 |
msgid "Custom Gateway"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:299
|
3409 |
msgid "WooCommerce Jetpack: Custom Payment Gateway"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: includes/reports/wcj-class-reports-customers.php:37
|
3413 |
+
msgid "No customers found."
|
3414 |
+
msgstr ""
|
3415 |
+
|
3416 |
+
#: includes/reports/wcj-class-reports-customers.php:75
|
3417 |
+
msgid "Total customers"
|
3418 |
+
msgstr ""
|
3419 |
+
|
3420 |
+
#: includes/reports/wcj-class-reports-customers.php:79
|
3421 |
+
msgid "Country Code"
|
3422 |
+
msgstr ""
|
3423 |
+
|
3424 |
+
#: includes/reports/wcj-class-reports-customers.php:80
|
3425 |
+
msgid "Customers Count"
|
3426 |
+
msgstr ""
|
3427 |
+
|
3428 |
+
#: includes/reports/wcj-class-reports-customers.php:81
|
3429 |
+
msgid "Percent of total"
|
3430 |
+
msgstr ""
|
3431 |
+
|
3432 |
+
#: includes/reports/wcj-class-reports-stock.php:32
|
3433 |
+
msgid "All Products on Stock"
|
3434 |
+
msgstr ""
|
3435 |
+
|
3436 |
+
#: includes/reports/wcj-class-reports-stock.php:33
|
3437 |
+
msgid "Report shows all products that are on stock and some sales info."
|
3438 |
+
msgstr ""
|
3439 |
+
|
3440 |
+
#: includes/reports/wcj-class-reports-stock.php:37
|
3441 |
+
msgid "Understocked"
|
3442 |
+
msgstr ""
|
3443 |
+
|
3444 |
+
#: includes/reports/wcj-class-reports-stock.php:38
|
3445 |
+
msgid ""
|
3446 |
+
"Report shows all products that are low in stock calculated on product's "
|
3447 |
+
"sales data."
|
3448 |
+
msgstr ""
|
3449 |
+
|
3450 |
+
#: includes/reports/wcj-class-reports-stock.php:40
|
3451 |
+
msgid ""
|
3452 |
+
"Threshold for minimum stock is equal to half of the sales in selected days "
|
3453 |
+
"range."
|
3454 |
+
msgstr ""
|
3455 |
+
|
3456 |
+
#: includes/reports/wcj-class-reports-stock.php:277
|
3457 |
+
msgid "Product"
|
3458 |
+
msgstr ""
|
3459 |
+
|
3460 |
+
#: includes/reports/wcj-class-reports-stock.php:278
|
3461 |
+
msgid "Price"
|
3462 |
+
msgstr ""
|
3463 |
+
|
3464 |
+
#: includes/reports/wcj-class-reports-stock.php:279
|
3465 |
+
msgid "Stock"
|
3466 |
+
msgstr ""
|
3467 |
+
|
3468 |
+
#: includes/reports/wcj-class-reports-stock.php:280
|
3469 |
+
msgid "Stock price"
|
3470 |
+
msgstr ""
|
3471 |
+
|
3472 |
+
#: includes/reports/wcj-class-reports-stock.php:282
|
3473 |
+
msgid "Last sale"
|
3474 |
+
msgstr ""
|
3475 |
+
|
3476 |
+
#: includes/reports/wcj-class-reports-stock.php:283
|
3477 |
+
msgid "Sales in last %s days"
|
3478 |
+
msgstr ""
|
3479 |
+
|
3480 |
+
#: includes/reports/wcj-class-reports-stock.php:284
|
3481 |
+
msgid "Total sales"
|
3482 |
+
msgstr ""
|
3483 |
+
|
3484 |
+
#: includes/reports/wcj-class-reports-stock.php:287
|
3485 |
+
msgid "Stock to minimum"
|
3486 |
+
msgstr ""
|
3487 |
+
|
3488 |
+
#: includes/reports/wcj-class-reports-stock.php:320
|
3489 |
+
msgid "No sales yet"
|
3490 |
+
msgstr ""
|
3491 |
+
|
3492 |
+
#: includes/reports/wcj-class-reports-stock.php:345
|
3493 |
+
msgid "Total current stock value"
|
3494 |
+
msgstr ""
|
3495 |
+
|
3496 |
+
#: includes/reports/wcj-class-reports-stock.php:346
|
3497 |
+
msgid "Total stock value"
|
3498 |
+
msgstr ""
|
3499 |
+
|
3500 |
+
#: includes/reports/wcj-class-reports-stock.php:347
|
3501 |
+
msgid "Product stock value average"
|
3502 |
+
msgstr ""
|
3503 |
+
|
3504 |
+
#: includes/reports/wcj-class-reports-stock.php:348
|
3505 |
+
msgid "Product stock average"
|
3506 |
+
msgstr ""
|
3507 |
+
|
3508 |
+
#: includes/reports/wcj-class-reports-stock.php:352
|
3509 |
+
msgid "Report was generated in: "
|
3510 |
+
msgstr ""
|
3511 |
+
|
3512 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:19
|
3513 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:65
|
3514 |
msgid "Custom Shipping"
|
3522 |
msgid "Enable Custom Shipping"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack 2.0.3) #-#-#-#-#
|
3526 |
#. Plugin Name of the plugin/theme
|
3527 |
#: woocommerce-jetpack.php:94
|
3528 |
msgid "WooCommerce Jetpack"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: algoritmika
|
|
3 |
Donate link: http://algoritmika.com/donate/
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.9.1
|
6 |
-
Tested up to: 4.0
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -64,6 +64,11 @@ To unlock all WooCommerce Jetpack features, please install additional <a href="h
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
|
|
|
|
67 |
= 2.0.3 - 13/12/2014 =
|
68 |
* Fix - CURRENCIES - **Prices and Currencies by Country** - Problems identifying country, when spaces are used in group lists.
|
69 |
|
3 |
Donate link: http://algoritmika.com/donate/
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.9.1
|
6 |
+
Tested up to: 4.0.1
|
7 |
+
Stable tag: 2.0.4
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 2.0.4 - 16/12/2014 =
|
68 |
+
* Dev - **PDF Invoices** - *Family font* option added.
|
69 |
+
* Fix - **Reports** - Country sets fixed.
|
70 |
+
* i18n - POT file updated.
|
71 |
+
|
72 |
= 2.0.3 - 13/12/2014 =
|
73 |
* Fix - CURRENCIES - **Prices and Currencies by Country** - Problems identifying country, when spaces are used in group lists.
|
74 |
|
woocommerce-jetpack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
-
Version: 2.0.
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
+
Version: 2.0.4
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|