Version Description
- 04/10/2014 =
- Fix - Product Info - Product Info on Single Product Page - Missing Plus message added. Reported by Manfred.
- Feature Upgraded - Payment Gateways - Option to add up to 10 additional custom payment gateways, added. Idea by Kristof.
- Dev - French
FR_fr
translation added. Translation by Jean-Marc Schreiber.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 1.7.3 |
Comparing to | |
See all releases |
Code changes from version 1.7.2 to 1.7.3
- includes/class-wcj-payment-gateways.php +19 -1
- includes/class-wcj-product-info.php +2 -1
- includes/gateways/class-wc-gateway-wcj-custom.php +60 -51
- langs/woocommerce-jetpack-fr_FR.mo +0 -0
- langs/woocommerce-jetpack.pot +1567 -121
- readme.txt +281 -273
- woocommerce-jetpack.php +1 -1
includes/class-wcj-payment-gateways.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Payment Gateways class.
|
6 |
*
|
7 |
* @class WCJ_Payment_Gateways
|
8 |
-
* @version 1.0.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -128,6 +128,24 @@ class WCJ_Payment_Gateways {
|
|
128 |
),
|
129 |
|
130 |
array( 'type' => 'sectionend', 'id' => 'wcj_payment_gateways_options' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
);
|
132 |
|
133 |
$settings[] = array( 'title' => __( 'Default WooCommerce Payment Gateways Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => __( 'If you want to show an image next to the gateway\'s name on the frontend, enter a URL to an image.', 'woocommerce-jetpack' ), 'id' => 'wcj_payment_gateways_icons_options' );
|
5 |
* The WooCommerce Jetpack Payment Gateways class.
|
6 |
*
|
7 |
* @class WCJ_Payment_Gateways
|
8 |
+
* @version 1.0.2
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
128 |
),
|
129 |
|
130 |
array( 'type' => 'sectionend', 'id' => 'wcj_payment_gateways_options' ),
|
131 |
+
|
132 |
+
array( 'title' => __( 'Custom Payment Gateways Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => __( '', 'woocommerce-jetpack' ), 'id' => 'wcj_custom_payment_gateways_options' ),
|
133 |
+
|
134 |
+
array(
|
135 |
+
'title' => __( 'Number of Gateways', 'woocommerce-jetpack' ),
|
136 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
137 |
+
'desc_tip' => __( 'Number of custom payments gateways to be added. All settings for each new gateway are in WooCommerce > Settings > Checkout.', 'woocommerce-jetpack' ),
|
138 |
+
'id' => 'wcj_custom_payment_gateways_number',
|
139 |
+
'default' => 1,
|
140 |
+
'type' => 'number',
|
141 |
+
'custom_attributes' => array(
|
142 |
+
'min' => 1,
|
143 |
+
'step' => 1,
|
144 |
+
'max' => apply_filters( 'wcj_get_option_filter', 1, 10 ),
|
145 |
+
)
|
146 |
+
),
|
147 |
+
|
148 |
+
array( 'type' => 'sectionend', 'id' => 'wcj_custom_payment_gateways_options' ),
|
149 |
);
|
150 |
|
151 |
$settings[] = array( 'title' => __( 'Default WooCommerce Payment Gateways Options', 'woocommerce-jetpack' ), 'type' => 'title', 'desc' => __( 'If you want to show an image next to the gateway\'s name on the frontend, enter a URL to an image.', 'woocommerce-jetpack' ), 'id' => 'wcj_payment_gateways_icons_options' );
|
includes/class-wcj-product-info.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Product Info class.
|
6 |
*
|
7 |
* @class WCJ_Product_Info
|
8 |
-
* @version 1.1.
|
9 |
* @package WC_Jetpack/Classes
|
10 |
* @category Class
|
11 |
* @author Algoritmika Ltd.
|
@@ -233,6 +233,7 @@ class WCJ_Product_Info {
|
|
233 |
'id' => 'wcj_product_info_on_single',
|
234 |
'default' => 'Total sales: %total_sales%',
|
235 |
'type' => 'textarea',
|
|
|
236 |
'custom_attributes'
|
237 |
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
238 |
'css' => 'width:50%;min-width:300px;height:100px;',
|
5 |
* The WooCommerce Jetpack Product Info class.
|
6 |
*
|
7 |
* @class WCJ_Product_Info
|
8 |
+
* @version 1.1.4
|
9 |
* @package WC_Jetpack/Classes
|
10 |
* @category Class
|
11 |
* @author Algoritmika Ltd.
|
233 |
'id' => 'wcj_product_info_on_single',
|
234 |
'default' => 'Total sales: %total_sales%',
|
235 |
'type' => 'textarea',
|
236 |
+
'desc' => apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' ),
|
237 |
'custom_attributes'
|
238 |
=> apply_filters( 'get_wc_jetpack_plus_message', '', 'readonly' ),
|
239 |
'css' => 'width:50%;min-width:300px;height:100px;',
|
includes/gateways/class-wc-gateway-wcj-custom.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Custom Payment Gateway class.
|
6 |
*
|
7 |
* @class WC_Gateway_WCJ_Custom
|
8 |
-
* @version 1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -14,46 +14,7 @@ add_action( 'plugins_loaded', 'init_wc_gateway_wcj_custom_class' );
|
|
14 |
|
15 |
function init_wc_gateway_wcj_custom_class() {
|
16 |
|
17 |
-
class
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Constructor.
|
21 |
-
*/
|
22 |
-
public function __construct() {
|
23 |
-
|
24 |
-
$this->id = 'jetpack_custom_gateway';
|
25 |
-
//$this->icon = ''; //If you want to show an image next to the gateway�s name on the frontend, enter a URL to an image.
|
26 |
-
$this->has_fields = false;
|
27 |
-
$this->method_title = __( 'Custom Gateway', 'woocommerce-jetpack' );
|
28 |
-
$this->method_description = __( 'WooCommerce Jetpack: Custom Payment Gateway', 'woocommerce-jetpack' );
|
29 |
-
|
30 |
-
// Load the settings.
|
31 |
-
$this->init_form_fields();
|
32 |
-
$this->init_settings();
|
33 |
-
|
34 |
-
// Define user set variables
|
35 |
-
$this->title = $this->get_option( 'title' );
|
36 |
-
$this->description = $this->get_option( 'description' );
|
37 |
-
$this->instructions = $this->get_option( 'instructions', '' );//$this->description );
|
38 |
-
$this->instructions_in_email = $this->get_option( 'instructions_in_email', '' );
|
39 |
-
$this->icon = $this->get_option( 'icon', '' );//apply_filters( 'woocommerce_wcj_custom_icon', $this->get_option( 'icon', '' ) );
|
40 |
-
$this->min_amount = $this->get_option( 'min_amount', 0 );
|
41 |
-
$this->enable_for_methods = $this->get_option( 'enable_for_methods', array() );
|
42 |
-
$this->enable_for_virtual = $this->get_option( 'enable_for_virtual', 'yes' ) === 'yes' ? true : false;
|
43 |
-
|
44 |
-
// Actions
|
45 |
-
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
|
46 |
-
|
47 |
-
// add_action( 'woocommerce_thankyou_jetpack_custom_gateway', array( $this, 'thankyou_page' ) );
|
48 |
-
add_action( 'woocommerce_thankyou_' . $this->id, array( $this, 'thankyou_page' ) );
|
49 |
-
|
50 |
-
|
51 |
-
// Customer Emails
|
52 |
-
add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
|
53 |
-
|
54 |
-
|
55 |
-
//add_filter( 'woocommerce_wcj_custom_icon', array( $this, 'set_icon' ) );
|
56 |
-
}
|
57 |
|
58 |
/**
|
59 |
* set_icon
|
@@ -81,15 +42,15 @@ function init_wc_gateway_wcj_custom_class() {
|
|
81 |
$desc = '';
|
82 |
$icon_url = $this->get_option( 'icon', '' );//apply_filters( 'woocommerce_wcj_custom_icon', $this->get_option( 'icon', '' ) );
|
83 |
if ( $icon_url !== '' )
|
84 |
-
|
85 |
-
|
86 |
|
87 |
$this->form_fields = array(
|
88 |
'enabled' => array(
|
89 |
'title' => __( 'Enable/Disable', 'woocommerce' ),
|
90 |
'type' => 'checkbox',
|
91 |
'label' => __( 'Enable Custom Payment', 'woocommerce' ),
|
92 |
-
'default' => 'no'
|
93 |
),
|
94 |
'title' => array(
|
95 |
'title' => __( 'Title', 'woocommerce' ),
|
@@ -156,6 +117,11 @@ function init_wc_gateway_wcj_custom_class() {
|
|
156 |
'default' => 'yes'
|
157 |
),
|
158 |
);
|
|
|
|
|
|
|
|
|
|
|
159 |
}
|
160 |
|
161 |
/**
|
@@ -298,15 +264,58 @@ function init_wc_gateway_wcj_custom_class() {
|
|
298 |
'result' => 'success',
|
299 |
'redirect' => $this->get_return_url( $order ),
|
300 |
);
|
301 |
-
}
|
302 |
-
}
|
303 |
-
|
304 |
-
|
305 |
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
|
308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
return $methods;
|
310 |
}
|
311 |
-
add_filter( 'woocommerce_payment_gateways', '
|
312 |
}
|
5 |
* The WooCommerce Jetpack Custom Payment Gateway class.
|
6 |
*
|
7 |
* @class WC_Gateway_WCJ_Custom
|
8 |
+
* @version 1.2.0
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
14 |
|
15 |
function init_wc_gateway_wcj_custom_class() {
|
16 |
|
17 |
+
class WC_Gateway_WCJ_Custom_Template extends WC_Payment_Gateway {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
/**
|
20 |
* set_icon
|
42 |
$desc = '';
|
43 |
$icon_url = $this->get_option( 'icon', '' );//apply_filters( 'woocommerce_wcj_custom_icon', $this->get_option( 'icon', '' ) );
|
44 |
if ( $icon_url !== '' )
|
45 |
+
//$desc = '<img src="' . $icon_url . '" alt="WooJetpack Custom" title="WooJetpack Custom" />';
|
46 |
+
$desc = '<img src="' . $icon_url . '" alt="' . $this->title . '" title="' . $this->title . '" />';
|
47 |
|
48 |
$this->form_fields = array(
|
49 |
'enabled' => array(
|
50 |
'title' => __( 'Enable/Disable', 'woocommerce' ),
|
51 |
'type' => 'checkbox',
|
52 |
'label' => __( 'Enable Custom Payment', 'woocommerce' ),
|
53 |
+
'default' => 'no',
|
54 |
),
|
55 |
'title' => array(
|
56 |
'title' => __( 'Title', 'woocommerce' ),
|
117 |
'default' => 'yes'
|
118 |
),
|
119 |
);
|
120 |
+
|
121 |
+
if ( 1 != $this->id_count ) {
|
122 |
+
$this->form_fields['enabled']['description'] = apply_filters( 'get_wc_jetpack_plus_message', '', 'desc' );
|
123 |
+
$this->form_fields['enabled']['custom_attributes'] = apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled' );
|
124 |
+
}
|
125 |
}
|
126 |
|
127 |
/**
|
264 |
'result' => 'success',
|
265 |
'redirect' => $this->get_return_url( $order ),
|
266 |
);
|
267 |
+
}
|
|
|
|
|
|
|
268 |
|
269 |
+
public function init( $id_count ) {
|
270 |
+
if ( 1 === $id_count )
|
271 |
+
$this->id = 'jetpack_custom_gateway';
|
272 |
+
else
|
273 |
+
$this->id = 'jetpack_custom_gateway_' . $id_count;
|
274 |
+
$this->has_fields = false;
|
275 |
+
$this->method_title = __( 'Custom Gateway', 'woocommerce-jetpack' ) . ' #' . $id_count;
|
276 |
+
$this->method_description = __( 'WooCommerce Jetpack: Custom Payment Gateway', 'woocommerce-jetpack' ) . ' #' . $id_count;
|
277 |
+
$this->id_count = $id_count;
|
278 |
+
// Load the settings.
|
279 |
+
$this->init_form_fields();
|
280 |
+
$this->init_settings();
|
281 |
+
// Define user set variables
|
282 |
+
$this->title = $this->get_option( 'title' );
|
283 |
+
$this->description = $this->get_option( 'description' );
|
284 |
+
$this->instructions = $this->get_option( 'instructions', '' );//$this->description );
|
285 |
+
$this->instructions_in_email = $this->get_option( 'instructions_in_email', '' );
|
286 |
+
$this->icon = $this->get_option( 'icon', '' );//apply_filters( 'woocommerce_wcj_custom_icon', $this->get_option( 'icon', '' ) );
|
287 |
+
$this->min_amount = $this->get_option( 'min_amount', 0 );
|
288 |
+
$this->enable_for_methods = $this->get_option( 'enable_for_methods', array() );
|
289 |
+
$this->enable_for_virtual = $this->get_option( 'enable_for_virtual', 'yes' ) === 'yes' ? true : false;
|
290 |
+
// Actions
|
291 |
+
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
|
292 |
+
add_action( 'woocommerce_thankyou_' . $this->id, array( $this, 'thankyou_page' ) );
|
293 |
+
// Customer Emails
|
294 |
+
add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
|
295 |
+
}
|
296 |
+
|
297 |
+
/**
|
298 |
+
* Constructor.
|
299 |
+
*/
|
300 |
+
public function __construct() {
|
301 |
+
}
|
302 |
+
}
|
303 |
|
304 |
+
class WC_Gateway_WCJ_Custom extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 1 ); } } // required
|
305 |
+
class WC_Gateway_WCJ_Custom_2 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 2 ); } }
|
306 |
+
class WC_Gateway_WCJ_Custom_3 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 3 ); } }
|
307 |
+
class WC_Gateway_WCJ_Custom_4 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 4 ); } }
|
308 |
+
class WC_Gateway_WCJ_Custom_5 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 5 ); } }
|
309 |
+
class WC_Gateway_WCJ_Custom_6 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 6 ); } }
|
310 |
+
class WC_Gateway_WCJ_Custom_7 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 7 ); } }
|
311 |
+
class WC_Gateway_WCJ_Custom_8 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 8 ); } }
|
312 |
+
class WC_Gateway_WCJ_Custom_9 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 9 ); } }
|
313 |
+
class WC_Gateway_WCJ_Custom_10 extends WC_Gateway_WCJ_Custom_Template { public function __construct() { $this->init( 10 ); } }
|
314 |
+
function add_wc_gateway_wcj_custom_classes( $methods ) {
|
315 |
+
$methods[] = 'WC_Gateway_WCJ_Custom'; // required
|
316 |
+
for ( $i = 2; $i <= apply_filters( 'wcj_get_option_filter', 0, get_option( 'wcj_custom_payment_gateways_number' ) ); $i++ )
|
317 |
+
$methods[] = 'WC_Gateway_WCJ_Custom_' . $i;
|
318 |
return $methods;
|
319 |
}
|
320 |
+
add_filter( 'woocommerce_payment_gateways', 'add_wc_gateway_wcj_custom_classes' );
|
321 |
}
|
langs/woocommerce-jetpack-fr_FR.mo
ADDED
Binary file
|
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 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,279 +12,1725 @@ 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:
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
20 |
msgid "Dashboard"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/class-wcj-
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
msgid "Call for Price Options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/class-wcj-call-for-price.php:
|
36 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/class-wcj-
|
40 |
-
msgid "
|
|
|
|
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/class-wcj-
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/class-wcj-
|
48 |
-
#: includes/class-wcj-
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/class-wcj-
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/class-wcj-
|
57 |
-
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/class-wcj-
|
61 |
-
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/class-wcj-
|
65 |
-
msgid "
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-wcj-
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/class-wcj-
|
73 |
-
msgid "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/class-wcj-
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/class-wcj-
|
81 |
-
msgid "
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/class-wcj-
|
85 |
-
msgid "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/class-wcj-
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/class-wcj-
|
93 |
-
msgid "
|
|
|
|
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/class-wcj-
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/class-wcj-
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-wcj-
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/class-wcj-
|
109 |
-
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-wcj-
|
113 |
-
msgid "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: includes/class-wcj-
|
117 |
-
msgid "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-wcj-
|
121 |
-
msgid "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/class-wcj-
|
125 |
-
msgid "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/class-wcj-
|
129 |
-
msgid ""
|
130 |
-
"Remove old product slugs. Tool is accessible through <a href=\"/wp-admin/"
|
131 |
-
"admin.php?page=woocommerce-jetpack-old-slugs\">WooCommerce > Remove Old "
|
132 |
-
"Slugs</a>."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-wcj-price-labels.php:
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-wcj-
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-wcj-
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-wcj-
|
148 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-wcj-product-info.php:
|
152 |
msgid "Product Info Options"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/class-wcj-product-info.php:
|
|
|
156 |
msgid "Product Info"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-wcj-product-info.php:
|
160 |
msgid "Enable the Product Info feature"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcj-product-info.php:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcj-product-info.php:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcj-product-info.php:
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-wcj-product-info.php:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/class-wcj-product-info.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid ""
|
183 |
-
"
|
184 |
-
"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/class-wcj-product-
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/class-wcj-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgid "Completely remove sorting from the shop front end"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/class-wcj-sorting.php:
|
201 |
msgid "Sorting Options"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/class-wcj-sorting.php:
|
205 |
msgid "Sorting"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-wcj-sorting.php:
|
209 |
msgid "Enable the Sorting feature"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-wcj-sorting.php:
|
213 |
msgid "Add more sorting options or remove all sorting including default."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-wcj-sorting.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "Remove all sorting (including WooCommerce default)"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-wcj-sorting.php:
|
221 |
msgid "Add More Sorting"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/class-wcj-sorting.php:
|
225 |
msgid "Sort by Name - Asc"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/class-wcj-sorting.php:
|
229 |
-
#: includes/class-wcj-sorting.php:
|
230 |
msgid "Text visible at front end"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-wcj-sorting.php:
|
234 |
-
#: includes/class-wcj-sorting.php:467 includes/class-wcj-sorting.php:503
|
235 |
-
msgid "Check to enable."
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: includes/class-wcj-sorting.php:409 includes/class-wcj-sorting.php:427
|
239 |
msgid "Sort by Name - Desc"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-wcj-sorting.php:
|
243 |
msgid "Sort by SKU - Asc"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/class-wcj-sorting.php:
|
247 |
msgid "Sort by SKU - Desc"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: woocommerce-jetpack.php:
|
255 |
msgid ""
|
256 |
"Some settings fields are locked and you will need %s to modify all locked "
|
257 |
"fields."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: woocommerce-jetpack.php:
|
261 |
-
msgid "Buy now
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: woocommerce-jetpack.php:
|
265 |
msgid "Visit %s"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: woocommerce-jetpack.php:
|
269 |
msgid ""
|
270 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
271 |
"Jetpack Plus</a> to change value."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: woocommerce-jetpack.php:
|
275 |
msgid ""
|
276 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
277 |
"Jetpack Plus</a> to change values below."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: woocommerce-jetpack.php:
|
281 |
msgid "Get WooCommerce Jetpack Plus to change value."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#. Plugin Name of the plugin/theme
|
285 |
-
msgid "WooCommerce Jetpack"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
#. Plugin URI of the plugin/theme
|
289 |
msgid "http://woojetpack.com"
|
290 |
msgstr ""
|
@@ -294,7 +1740,7 @@ msgid "Supercharge your WooCommerce site with these awesome powerful features."
|
|
294 |
msgstr ""
|
295 |
|
296 |
#. Author of the plugin/theme
|
297 |
-
msgid "Algoritmika Ltd
|
298 |
msgstr ""
|
299 |
|
300 |
#. Author URI of the plugin/theme
|
2 |
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Jetpack 1.7.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
+
"POT-Creation-Date: 2014-10-04 01:34:09+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/admin/settings/class-wc-settings-jetpack.php:24
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:40
|
20 |
msgid "Dashboard"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:152
|
24 |
+
msgid "WooCommerce Jetpack Dashboard"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/admin/tools/class-wcj-tools.php:34
|
28 |
+
msgid "Tools Dashboard"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/class-wcj-add-to-cart.php:141
|
32 |
+
msgid "Add to Cart Options"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/class-wcj-add-to-cart.php:144
|
36 |
+
#: includes/class-wcj-add-to-cart.php:315
|
37 |
+
msgid "Add to Cart"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: includes/class-wcj-add-to-cart.php:145
|
41 |
+
msgid "Enable the Add to Cart feature"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: includes/class-wcj-add-to-cart.php:146
|
45 |
+
msgid ""
|
46 |
+
"Set any url to redirect to on add to cart. Change text for Add to cart "
|
47 |
+
"button by product type. Display \"Already in cart\" instead of \"Add to cart"
|
48 |
+
"\" button if current product is already in cart."
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/class-wcj-add-to-cart.php:158
|
52 |
+
msgid "Add to Cart Redirect Options"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: includes/class-wcj-add-to-cart.php:158
|
56 |
+
msgid ""
|
57 |
+
"This section lets you set any url to redirect to after successfully adding "
|
58 |
+
"product to cart. Leave empty to redirect to checkout page (skipping the cart "
|
59 |
+
"page)."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/class-wcj-add-to-cart.php:161
|
63 |
+
msgid "Redirect"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/class-wcj-add-to-cart.php:162
|
67 |
+
#: includes/class-wcj-add-to-cart.php:184 includes/class-wcj-cart.php:135
|
68 |
+
#: includes/class-wcj-cart.php:168 includes/class-wcj-orders.php:415
|
69 |
+
#: includes/class-wcj-orders.php:521 includes/class-wcj-orders.php:534
|
70 |
+
#: includes/class-wcj-product-info.php:187
|
71 |
+
#: includes/class-wcj-product-info.php:224
|
72 |
+
#: includes/class-wcj-product-info.php:350 includes/class-wcj-sorting.php:206
|
73 |
+
#: includes/class-wcj-sorting.php:224 includes/class-wcj-sorting.php:242
|
74 |
+
#: includes/class-wcj-sorting.php:260
|
75 |
+
msgid "Enable"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/class-wcj-add-to-cart.php:169
|
79 |
+
msgid "Redirect URL"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/class-wcj-add-to-cart.php:170
|
83 |
+
msgid "Redirect URL. Leave empty to redirect to checkout."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/class-wcj-add-to-cart.php:180
|
87 |
+
msgid "Add to Cart Button Text Options"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/class-wcj-add-to-cart.php:183
|
91 |
+
msgid "Add to cart text"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/class-wcj-add-to-cart.php:194
|
95 |
+
msgid "Simple product"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/class-wcj-add-to-cart.php:199
|
99 |
+
msgid "Variable product"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/class-wcj-add-to-cart.php:204
|
103 |
+
msgid "External product"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/class-wcj-add-to-cart.php:209
|
107 |
+
msgid "Grouped product"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/class-wcj-add-to-cart.php:214
|
111 |
+
msgid "Other product"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/class-wcj-add-to-cart.php:235
|
115 |
+
msgid "Enable on single product pages"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/class-wcj-add-to-cart.php:254
|
119 |
+
msgid "Enable on product archives"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/class-wcj-add-to-cart.php:279
|
123 |
+
msgid "Enable \"Already in cart\" on single product pages"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/class-wcj-add-to-cart.php:298
|
127 |
+
msgid "Enable \"Already in cart\" on product archives"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/class-wcj-call-for-price.php:72
|
131 |
msgid "Call for Price Options"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: includes/class-wcj-call-for-price.php:72
|
135 |
+
msgid ""
|
136 |
+
"Leave price empty when adding or editing products. Then set the options here."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/class-wcj-call-for-price.php:75
|
140 |
+
#: includes/class-wcj-call-for-price.php:158
|
141 |
+
msgid "Call for Price"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: includes/class-wcj-call-for-price.php:76
|
145 |
+
msgid "Enable the Call for Price feature"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/class-wcj-call-for-price.php:77
|
149 |
+
msgid "Create any custom price label for all products with empty price."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/class-wcj-call-for-price.php:84
|
153 |
+
msgid "Label to Show on Single"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: includes/class-wcj-call-for-price.php:85
|
157 |
+
#: includes/class-wcj-call-for-price.php:97
|
158 |
+
#: includes/class-wcj-call-for-price.php:109
|
159 |
+
#: includes/class-wcj-call-for-price.php:121
|
160 |
+
msgid "This sets the html to output on empty price. Leave blank to disable."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/class-wcj-call-for-price.php:96
|
164 |
+
msgid "Label to Show on Archives"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/class-wcj-call-for-price.php:108
|
168 |
+
msgid "Label to Show on Homepage"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/class-wcj-call-for-price.php:120
|
172 |
+
msgid "Label to Show on Related"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/class-wcj-call-for-price.php:132
|
176 |
+
msgid "Hide Sale! Tag"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/class-wcj-call-for-price.php:133
|
180 |
+
msgid "Hide the tag"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/class-wcj-cart.php:118
|
184 |
+
msgid "Cart Options"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/class-wcj-cart.php:121 includes/class-wcj-cart.php:186
|
188 |
+
msgid "Cart"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/class-wcj-cart.php:122
|
192 |
+
msgid "Enable the Cart feature"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/class-wcj-cart.php:123
|
196 |
+
msgid "Add empty cart button, automatically add to cart on product visit."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/class-wcj-cart.php:131
|
200 |
+
msgid "Empty Cart Options"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/class-wcj-cart.php:131
|
204 |
+
msgid ""
|
205 |
+
"This section lets you add and customize \"Empty Cart\" button to cart page."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/class-wcj-cart.php:134
|
209 |
+
msgid "Empty Cart"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/class-wcj-cart.php:142
|
213 |
+
msgid "Empty Cart Button Text"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/class-wcj-cart.php:152
|
217 |
+
msgid "Wrapping DIV style"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/class-wcj-cart.php:153
|
221 |
+
msgid "Style for the button's div. Default is \"float: right;\""
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/class-wcj-cart.php:164 includes/class-wcj-cart.php:167
|
225 |
+
msgid "Add to Cart on Visit"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/class-wcj-cart.php:164
|
229 |
+
msgid ""
|
230 |
+
"This section lets you enable automatically adding product to cart on "
|
231 |
+
"visiting the product page. Product is only added once, so if it is already "
|
232 |
+
"in cart - duplicate product is not added. "
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/class-wcj-checkout.php:141
|
236 |
+
msgid "Checkout Options"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
|
240 |
+
msgid "Checkout"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/class-wcj-checkout.php:145
|
244 |
+
msgid "Enable the Checkout feature"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/class-wcj-checkout.php:146
|
248 |
+
msgid ""
|
249 |
+
"Customize checkout fields. Disable/enable fields, set required, change "
|
250 |
+
"labels and/or placeholders."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/class-wcj-checkout.php:156
|
254 |
+
msgid "Place order (Order now) Button"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/class-wcj-checkout.php:159
|
258 |
+
msgid "Text"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/class-wcj-checkout.php:160
|
262 |
+
msgid "leave blank for WooCommerce default"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/class-wcj-checkout.php:161
|
266 |
+
msgid "Button on the checkout page."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/class-wcj-checkout.php:170
|
270 |
+
msgid "Checkout Fields Options"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/class-wcj-checkout.php:170
|
274 |
+
msgid ""
|
275 |
+
"This section lets you customize the checkout fields: change label, "
|
276 |
+
"placeholder, set required, or remove any field."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/class-wcj-checkout.php:236
|
280 |
+
msgid "Leave blank for WooCommerce defaults."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/class-wcj-currencies.php:389
|
284 |
+
msgid "Currency Symbol"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/class-wcj-currencies.php:390
|
288 |
+
msgid "This sets the currency symbol."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: includes/class-wcj-currencies.php:411
|
292 |
+
msgid "Currencies Options"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/class-wcj-currencies.php:414 includes/class-wcj-currencies.php:445
|
296 |
+
msgid "Currencies"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/class-wcj-currencies.php:415
|
300 |
+
msgid "Enable the Currencies feature"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/class-wcj-currencies.php:416
|
304 |
+
msgid "Add all world currencies, change currency symbol."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: includes/class-wcj-currencies.php:424
|
308 |
+
msgid "Currency Symbol Options"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: includes/class-wcj-emails.php:64
|
312 |
+
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/class-wcj-emails.php:64 includes/class-wcj-emails.php:137
|
316 |
+
msgid ""
|
317 |
+
"This section lets you add another email recipient(s) to all WooCommerce "
|
318 |
+
"emails. Leave blank to disable."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/class-wcj-emails.php:68 includes/class-wcj-emails.php:140
|
322 |
+
msgid "Cc Email"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/class-wcj-emails.php:70 includes/class-wcj-emails.php:142
|
326 |
+
msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/class-wcj-emails.php:80 includes/class-wcj-emails.php:151
|
330 |
+
msgid "Bcc Email"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/class-wcj-emails.php:82 includes/class-wcj-emails.php:153
|
334 |
+
msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/class-wcj-emails.php:124
|
338 |
+
msgid "Emails Options"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/class-wcj-emails.php:127 includes/class-wcj-emails.php:172
|
342 |
+
msgid "Emails"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/class-wcj-emails.php:128
|
346 |
+
msgid "Enable the Emails feature"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: includes/class-wcj-emails.php:129
|
350 |
+
msgid "Add another email recipient(s) to all WooCommerce emails."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: includes/class-wcj-emails.php:137
|
354 |
+
msgid "Email Forwarding Options"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1018
|
358 |
+
msgid "General Options"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/class-wcj-general.php:73 includes/class-wcj-general.php:111
|
362 |
+
msgid "General"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/class-wcj-general.php:74
|
366 |
+
msgid "Enable the General feature"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/class-wcj-general.php:75
|
370 |
+
msgid "Separate custom CSS for front and back end."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-wcj-general.php:83
|
374 |
+
msgid "Custom CSS Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/class-wcj-general.php:83
|
378 |
+
msgid "Another custom CSS, if you need one."
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/class-wcj-general.php:86
|
382 |
+
msgid "Custom CSS - Front end (Customers)"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/class-wcj-general.php:94
|
386 |
+
msgid "Custom CSS - Back end (Admin)"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/class-wcj-old-slugs.php:60
|
390 |
+
msgid "Remove Old Slugs"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/class-wcj-old-slugs.php:82
|
394 |
+
msgid "Old Slugs Options"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/class-wcj-old-slugs.php:85 includes/class-wcj-old-slugs.php:105
|
398 |
+
msgid "Old Slugs"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/class-wcj-old-slugs.php:86
|
402 |
+
msgid "Enable the Remove Old Product Slugs feature"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/class-wcj-old-slugs.php:88
|
406 |
+
msgid "Remove old product slugs."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/class-wcj-old-slugs.php:160
|
410 |
+
msgid "WooCommerce Jetpack - Remove Old Product Slugs"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/class-wcj-old-slugs.php:161
|
414 |
+
msgid "Tool removes old slugs/permalinks from database."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/class-wcj-old-slugs.php:166
|
418 |
+
msgid "Old products slugs found:"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/class-wcj-old-slugs.php:174
|
422 |
+
msgid "None-products slugs found:"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/class-wcj-old-slugs.php:181
|
426 |
+
msgid "No old slugs found."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/class-wcj-orders.php:26
|
430 |
+
msgctxt "Order status"
|
431 |
+
msgid "Pending payment"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: includes/class-wcj-orders.php:27
|
435 |
+
msgctxt "Order status"
|
436 |
+
msgid "Processing"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/class-wcj-orders.php:28
|
440 |
+
msgctxt "Order status"
|
441 |
+
msgid "On hold"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: includes/class-wcj-orders.php:29
|
445 |
+
msgctxt "Order status"
|
446 |
+
msgid "Completed"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/class-wcj-orders.php:30
|
450 |
+
msgctxt "Order status"
|
451 |
+
msgid "Cancelled"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: includes/class-wcj-orders.php:31
|
455 |
+
msgctxt "Order status"
|
456 |
+
msgid "Refunded"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: includes/class-wcj-orders.php:32
|
460 |
+
msgctxt "Order status"
|
461 |
+
msgid "Failed"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/class-wcj-orders.php:119 includes/class-wcj-orders.php:530
|
465 |
+
#: includes/class-wcj-orders.php:533
|
466 |
+
msgid "Custom Statuses"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/class-wcj-orders.php:149
|
470 |
+
msgid "Status slug is empty. Status not added."
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/class-wcj-orders.php:151
|
474 |
+
msgid "Status label is empty. Status not added."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/class-wcj-orders.php:157
|
478 |
+
msgid "Duplicate slug. Status not added."
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/class-wcj-orders.php:163
|
482 |
+
msgid "New status have been successfully added!"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/class-wcj-orders.php:165
|
486 |
+
msgid "Status was not added."
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/class-wcj-orders.php:181
|
490 |
+
msgid "Status have been successfully deleted."
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/class-wcj-orders.php:183
|
494 |
+
msgid "Delete failed."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/class-wcj-orders.php:186
|
498 |
+
msgid "WooCommerce Jetpack - Custom Statuses"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/class-wcj-orders.php:187
|
502 |
+
msgid ""
|
503 |
+
"The tool lets you add or delete any custom status for WooCommerce orders."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/class-wcj-orders.php:189
|
507 |
+
msgid "Statuses"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/class-wcj-orders.php:192
|
511 |
+
msgid "Slug"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/class-wcj-orders.php:193 includes/class-wcj-orders.php:218
|
515 |
+
msgid "Label"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/class-wcj-orders.php:195 includes/class-wcj-orders.php:205
|
519 |
+
msgid "Delete"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/class-wcj-orders.php:217
|
523 |
+
msgid "Slug (without wc- prefix)"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/class-wcj-orders.php:255
|
527 |
+
msgid "The tool renumerates all orders."
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/class-wcj-orders.php:264
|
531 |
+
msgid "Renumerate orders"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/class-wcj-orders.php:279
|
535 |
+
msgid "WooCommerce Jetpack - Renumerate Orders"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/class-wcj-orders.php:280
|
539 |
+
msgid ""
|
540 |
+
"The tool renumerates all orders. Press the button below to renumerate all "
|
541 |
+
"existing orders starting from order counter settings in WooCommerce > "
|
542 |
+
"Settings > Jetpack > Order Numbers."
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: includes/class-wcj-orders.php:398
|
546 |
+
msgid "Orders Options"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: includes/class-wcj-orders.php:401 includes/class-wcj-orders.php:552
|
550 |
+
msgid "Orders"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: includes/class-wcj-orders.php:402
|
554 |
+
msgid "Enable the Orders feature"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: includes/class-wcj-orders.php:403
|
558 |
+
msgid ""
|
559 |
+
"Sequential order numbering, custom order number prefix and number width. "
|
560 |
+
"Minimum order amount."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/class-wcj-orders.php:411 includes/class-wcj-orders.php:414
|
564 |
+
msgid "Order Numbers"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: includes/class-wcj-orders.php:411
|
568 |
+
msgid ""
|
569 |
+
"This section lets you enable sequential order numbering, set custom number "
|
570 |
+
"prefix and width."
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: includes/class-wcj-orders.php:416
|
574 |
+
msgid "This will enable sequential order numbering and custom prefixes."
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: includes/class-wcj-orders.php:423
|
578 |
+
msgid "Next Order Number"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: includes/class-wcj-orders.php:424
|
582 |
+
msgid "Next new order will be given this number."
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: includes/class-wcj-orders.php:431
|
586 |
+
msgid "Order Number Custom Prefix"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: includes/class-wcj-orders.php:433
|
590 |
+
msgid ""
|
591 |
+
"Prefix before order number (optional). This will change the prefixes for all "
|
592 |
+
"existing orders."
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: includes/class-wcj-orders.php:442
|
596 |
+
msgid "Order Number Date Prefix"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: includes/class-wcj-orders.php:444
|
600 |
+
msgid ""
|
601 |
+
"Date prefix before order number (optional). This will change the prefixes "
|
602 |
+
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
603 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
604 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
605 |
+
"d- or mdy."
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/class-wcj-orders.php:453
|
609 |
+
msgid "Order Number Width"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: includes/class-wcj-orders.php:455
|
613 |
+
msgid ""
|
614 |
+
"Minimum width of number without prefix (zeros will be added to the left "
|
615 |
+
"side). This will change the minimum width of order number for all existing "
|
616 |
+
"orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
|
617 |
+
"Leave zero to disable."
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/class-wcj-orders.php:465
|
621 |
+
msgid "Order Minimum Amount"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/class-wcj-orders.php:465
|
625 |
+
msgid "This section lets you set minimum order amount."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/class-wcj-orders.php:468
|
629 |
+
msgid "Amount"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/class-wcj-orders.php:469
|
633 |
+
msgid "Minimum order amount. Set to 0 to disable."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/class-wcj-orders.php:476
|
637 |
+
msgid "Error message"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/class-wcj-orders.php:478 includes/class-wcj-orders.php:498
|
641 |
+
msgid ""
|
642 |
+
"Message to customer if order is below minimum amount. Default: You must have "
|
643 |
+
"an order with a minimum of %s to place your order, your current order total "
|
644 |
+
"is %s."
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: includes/class-wcj-orders.php:488
|
648 |
+
msgid "Add notice to cart page also"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/class-wcj-orders.php:489
|
652 |
+
msgid "Add"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: includes/class-wcj-orders.php:496
|
656 |
+
msgid "Message on cart page"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/class-wcj-orders.php:508
|
660 |
+
msgid ""
|
661 |
+
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: includes/class-wcj-orders.php:509
|
665 |
+
msgid "Redirect back to Cart page"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: includes/class-wcj-orders.php:517
|
669 |
+
msgid "Orders Auto-Complete"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: includes/class-wcj-orders.php:517
|
673 |
+
msgid "This section lets you enable orders auto-complete function."
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: includes/class-wcj-orders.php:520
|
677 |
+
msgid "Auto-complete all WooCommerce orders"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: includes/class-wcj-orders.php:522
|
681 |
+
msgid ""
|
682 |
+
"E.g. if you sell digital products then you are not shipping anything and you "
|
683 |
+
"may want auto-complete all your orders."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: includes/class-wcj-orders.php:530
|
687 |
+
msgid "This section lets you enable custom statuses tool."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: includes/class-wcj-payment-gateways.php:64
|
691 |
+
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: includes/class-wcj-payment-gateways.php:64
|
695 |
+
#: includes/class-wcj-payment-gateways.php:133
|
696 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:125
|
697 |
+
msgid ""
|
698 |
+
"If you want to show an image next to the gateway's name on the frontend, "
|
699 |
+
"enter a URL to an image."
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: includes/class-wcj-payment-gateways.php:119
|
703 |
+
msgid "Payment Gateways Options"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: includes/class-wcj-payment-gateways.php:122
|
707 |
+
#: includes/class-wcj-payment-gateways.php:165
|
708 |
+
msgid "Payment Gateways"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/class-wcj-payment-gateways.php:123
|
712 |
+
msgid "Enable the Payment Gateways feature"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: includes/class-wcj-payment-gateways.php:124
|
716 |
+
msgid ""
|
717 |
+
"Add custom payment gateway, change icons (images) for all default "
|
718 |
+
"WooCommerce payment gateways."
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/class-wcj-payment-gateways.php:133
|
722 |
+
msgid "Default WooCommerce Payment Gateways Options"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: includes/class-wcj-pdf-invoices.php:76
|
726 |
+
#: includes/class-wcj-pdf-invoices.php:81
|
727 |
+
msgid "Invoice"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: includes/class-wcj-pdf-invoices.php:600
|
731 |
+
#: includes/class-wcj-pdf-invoices.php:606
|
732 |
+
msgid "PDF Invoice"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/class-wcj-pdf-invoices.php:631
|
736 |
+
msgid "PDF Invoices Options"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: includes/class-wcj-pdf-invoices.php:634
|
740 |
+
#: includes/class-wcj-pdf-invoices.php:1086
|
741 |
+
msgid "PDF Invoices"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/class-wcj-pdf-invoices.php:635
|
745 |
+
msgid "Enable the PDF Invoices feature"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: includes/class-wcj-pdf-invoices.php:636
|
749 |
+
msgid "Add PDF invoices for the store owners and for the customers."
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
753 |
+
msgid "Invoice Header"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
757 |
+
msgid ""
|
758 |
+
"This section lets you set texts for required invoice number and date, and "
|
759 |
+
"optional logo, header text, invoice due and fulfillment dates."
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: includes/class-wcj-pdf-invoices.php:647
|
763 |
+
msgid "Your Logo URL"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: includes/class-wcj-pdf-invoices.php:648
|
767 |
+
msgid ""
|
768 |
+
"Enter a URL to an image you want to show in the invoice's header. Upload "
|
769 |
+
"your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: includes/class-wcj-pdf-invoices.php:649
|
773 |
+
#: includes/class-wcj-pdf-invoices.php:658
|
774 |
+
#: includes/class-wcj-pdf-invoices.php:696
|
775 |
+
#: includes/class-wcj-pdf-invoices.php:725
|
776 |
+
#: includes/class-wcj-pdf-invoices.php:789
|
777 |
+
#: includes/class-wcj-pdf-invoices.php:824
|
778 |
+
#: includes/class-wcj-pdf-invoices.php:866
|
779 |
+
#: includes/class-wcj-pdf-invoices.php:875
|
780 |
+
#: includes/class-wcj-pdf-invoices.php:884
|
781 |
+
#: includes/class-wcj-pdf-invoices.php:893
|
782 |
+
#: includes/class-wcj-pdf-invoices.php:902
|
783 |
+
#: includes/class-wcj-pdf-invoices.php:911
|
784 |
+
#: includes/class-wcj-pdf-invoices.php:991
|
785 |
+
#: includes/class-wcj-pdf-invoices.php:1000
|
786 |
+
msgid "Leave blank to disable"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: includes/class-wcj-pdf-invoices.php:657
|
790 |
+
msgid "Header Text"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/class-wcj-pdf-invoices.php:659
|
794 |
+
msgid "Default: INVOICE"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/class-wcj-pdf-invoices.php:661
|
798 |
+
msgid "INVOICE"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/class-wcj-pdf-invoices.php:667
|
802 |
+
msgid "Invoice Number"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: includes/class-wcj-pdf-invoices.php:668
|
806 |
+
msgid "Default: Invoice number"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/class-wcj-pdf-invoices.php:670
|
810 |
+
msgid "Invoice number"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/class-wcj-pdf-invoices.php:676
|
814 |
+
msgid "Invoice Date"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/class-wcj-pdf-invoices.php:677
|
818 |
+
msgid "Default: Invoice date"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/class-wcj-pdf-invoices.php:679
|
822 |
+
msgid "Invoice date"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/class-wcj-pdf-invoices.php:695
|
826 |
+
msgid "Default: Invoice due date"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/class-wcj-pdf-invoices.php:698
|
830 |
+
msgid "Invoice due date"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: includes/class-wcj-pdf-invoices.php:705
|
834 |
+
#: includes/class-wcj-pdf-invoices.php:734
|
835 |
+
msgid "days"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: includes/class-wcj-pdf-invoices.php:724
|
839 |
+
msgid "Default: Invoice fulfillment date"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: includes/class-wcj-pdf-invoices.php:727
|
843 |
+
msgid "Invoice fulfillment date"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: includes/class-wcj-pdf-invoices.php:744
|
847 |
+
msgid "Seller and Buyer Info"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/class-wcj-pdf-invoices.php:747
|
851 |
+
#: includes/class-wcj-pdf-invoices.php:750
|
852 |
+
msgid "Seller"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/class-wcj-pdf-invoices.php:756
|
856 |
+
msgid "Your business information"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/class-wcj-pdf-invoices.php:758
|
860 |
+
msgid "New lines are added automatically."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/class-wcj-pdf-invoices.php:760
|
864 |
+
msgid "<strong>Company Name</strong>"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/class-wcj-pdf-invoices.php:766
|
868 |
+
#: includes/class-wcj-pdf-invoices.php:769
|
869 |
+
msgid "Buyer"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: includes/class-wcj-pdf-invoices.php:776
|
873 |
+
#: includes/class-wcj-pdf-invoices.php:782
|
874 |
+
msgid "Items"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: includes/class-wcj-pdf-invoices.php:779
|
878 |
+
msgid "Items Table Heading Text"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: includes/class-wcj-pdf-invoices.php:788
|
882 |
+
msgid "Shipping as Item"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: includes/class-wcj-pdf-invoices.php:790
|
886 |
+
msgid "Display shipping as item"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: includes/class-wcj-pdf-invoices.php:808
|
890 |
+
#: includes/class-wcj-pdf-invoices.php:816
|
891 |
+
msgid "Add shipping method info"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: includes/class-wcj-pdf-invoices.php:815
|
895 |
+
msgid "Do not add shipping method info"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: includes/class-wcj-pdf-invoices.php:817
|
899 |
+
msgid "Replace with shipping method info"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: includes/class-wcj-pdf-invoices.php:823
|
903 |
+
msgid "Discount as Item"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: includes/class-wcj-pdf-invoices.php:825
|
907 |
+
msgid "Display discount as item"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
911 |
+
msgid "Items Columns"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
915 |
+
msgid ""
|
916 |
+
"This section lets you set column names in invoice items table. You can "
|
917 |
+
"disable some columns by leaving blank column name."
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/class-wcj-pdf-invoices.php:838
|
921 |
+
#: includes/class-wcj-pdf-invoices.php:841
|
922 |
+
msgid "Nr."
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: includes/class-wcj-pdf-invoices.php:847
|
926 |
+
#: includes/class-wcj-pdf-invoices.php:850
|
927 |
+
msgid "Item Name"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: includes/class-wcj-pdf-invoices.php:856
|
931 |
+
#: includes/class-wcj-pdf-invoices.php:859
|
932 |
+
msgid "Qty"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: includes/class-wcj-pdf-invoices.php:865
|
936 |
+
msgid "Single Item Price (TAX excl.)"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: includes/class-wcj-pdf-invoices.php:868
|
940 |
+
msgid "Price (TAX excl.)"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: includes/class-wcj-pdf-invoices.php:874
|
944 |
+
msgid "Single Item TAX"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: includes/class-wcj-pdf-invoices.php:877
|
948 |
+
msgid "TAX"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/class-wcj-pdf-invoices.php:883
|
952 |
+
msgid "Single Item Price (TAX incl.)"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: includes/class-wcj-pdf-invoices.php:886
|
956 |
+
msgid "Price (TAX incl.)"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: includes/class-wcj-pdf-invoices.php:892
|
960 |
+
#: includes/class-wcj-pdf-invoices.php:895
|
961 |
+
msgid "Sum (TAX excl.)"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: includes/class-wcj-pdf-invoices.php:901
|
965 |
+
msgid "Tax Percent"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: includes/class-wcj-pdf-invoices.php:904
|
969 |
+
msgid "Taxes %"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: includes/class-wcj-pdf-invoices.php:910
|
973 |
+
#: includes/class-wcj-pdf-invoices.php:913
|
974 |
+
#: includes/class-wcj-pdf-invoices.php:971
|
975 |
+
msgid "Taxes"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/class-wcj-pdf-invoices.php:919
|
979 |
+
#: includes/class-wcj-pdf-invoices.php:922
|
980 |
+
msgid "Sum (TAX incl.)"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
984 |
+
msgid "Totals"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
988 |
+
msgid "This section lets you set texts for totals table."
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: includes/class-wcj-pdf-invoices.php:932
|
992 |
+
#: includes/class-wcj-pdf-invoices.php:935
|
993 |
+
msgid "Order Subtotal"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/class-wcj-pdf-invoices.php:933
|
997 |
+
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/class-wcj-pdf-invoices.php:941
|
1001 |
+
msgid "Order Shipping Price"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/class-wcj-pdf-invoices.php:944 includes/class-wcj-shipping.php:155
|
1005 |
+
#: includes/class-wcj-shipping.php:200
|
1006 |
+
msgid "Shipping"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/class-wcj-pdf-invoices.php:950
|
1010 |
+
msgid "Total Discount"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: includes/class-wcj-pdf-invoices.php:953
|
1014 |
+
msgid "Discount"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: includes/class-wcj-pdf-invoices.php:959
|
1018 |
+
#: includes/class-wcj-pdf-invoices.php:962
|
1019 |
+
msgid "Order Total (TAX excl.)"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/class-wcj-pdf-invoices.php:960
|
1023 |
+
msgid ""
|
1024 |
+
"Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
|
1025 |
+
"is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
|
1026 |
+
"equal to \"Order Subtotal\""
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/class-wcj-pdf-invoices.php:968
|
1030 |
+
msgid "Order Total Taxes"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/class-wcj-pdf-invoices.php:977
|
1034 |
+
#: includes/class-wcj-pdf-invoices.php:980
|
1035 |
+
msgid "Order Total"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/class-wcj-pdf-invoices.php:987
|
1039 |
+
msgid "Footer"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/class-wcj-pdf-invoices.php:990
|
1043 |
+
#: includes/class-wcj-pdf-invoices.php:993
|
1044 |
+
msgid "Payment Method"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/class-wcj-pdf-invoices.php:999
|
1048 |
+
#: includes/class-wcj-pdf-invoices.php:1002
|
1049 |
+
msgid "Shipping Method"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: includes/class-wcj-pdf-invoices.php:1008
|
1053 |
+
msgid "Additional Footer"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/class-wcj-pdf-invoices.php:1021
|
1057 |
+
msgid "Font size"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/class-wcj-pdf-invoices.php:1022
|
1061 |
+
msgid "Default: 8"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/class-wcj-pdf-invoices.php:1030
|
1065 |
+
msgid "CSS"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/class-wcj-pdf-invoices.php:1045
|
1069 |
+
msgid "PDF Invoices for Customers (in My Account)"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/class-wcj-pdf-invoices.php:1046
|
1073 |
+
msgid "Enable the PDF Invoices in customers account"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/class-wcj-pdf-invoices.php:1055
|
1077 |
+
msgid "PDF Invoices for Customers (Email attachment)"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/class-wcj-pdf-invoices.php:1056
|
1081 |
+
msgid ""
|
1082 |
+
"Enable the PDF Invoices attachment files in customers email on order "
|
1083 |
+
"completed"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/class-wcj-pdf-invoices.php:1065
|
1087 |
+
msgid "Enable Save as"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/class-wcj-pdf-invoices.php:1066
|
1091 |
+
msgid "Enable save as pdf instead of view pdf"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/class-wcj-price-labels.php:309
|
1095 |
+
msgid "Custom Price Labels Options"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/class-wcj-price-labels.php:312
|
1099 |
+
#: includes/class-wcj-price-labels.php:346
|
1100 |
+
msgid "Custom Price Labels"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/class-wcj-price-labels.php:313
|
1104 |
+
msgid "Enable the Custom Price Labels feature"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/class-wcj-price-labels.php:314
|
1108 |
+
msgid "Create any custom price label for any product."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/class-wcj-price-labels.php:322
|
1112 |
+
msgid "Global Custom Price Labels"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-wcj-price-labels.php:322
|
1116 |
+
msgid "This section lets you set price labels for all products globally."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/class-wcj-price-labels.php:325
|
1120 |
+
msgid "Remove from price"
|
|
|
|
|
|
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: includes/class-wcj-price-labels.php:327
|
1124 |
+
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/class-wcj-product-info.php:27
|
1128 |
+
msgid "Before product"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/class-wcj-product-info.php:28
|
1132 |
+
msgid "Before product title"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/class-wcj-product-info.php:29
|
1136 |
+
msgid "After product"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: includes/class-wcj-product-info.php:30
|
1140 |
+
msgid "After product title"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: includes/class-wcj-product-info.php:35
|
1144 |
+
msgid "Inside single product summary"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: includes/class-wcj-product-info.php:36
|
1148 |
+
msgid "Before single product summary"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: includes/class-wcj-product-info.php:37
|
1152 |
+
msgid "After single product summary"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/class-wcj-product-info.php:169
|
1156 |
msgid "Product Info Options"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/class-wcj-product-info.php:172
|
1160 |
+
#: includes/class-wcj-product-info.php:405
|
1161 |
msgid "Product Info"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/class-wcj-product-info.php:173
|
1165 |
msgid "Enable the Product Info feature"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/class-wcj-product-info.php:174
|
1169 |
+
msgid "Customize single product tabs, change related products number."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/class-wcj-product-info.php:183
|
1173 |
+
msgid "More Products Info"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/class-wcj-product-info.php:186
|
1177 |
+
msgid "Product Info on Archive Pages"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: includes/class-wcj-product-info.php:195
|
1181 |
+
#: includes/class-wcj-product-info.php:232
|
1182 |
+
msgid "HTML info. Predefined: %total_sales%, %sku%"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: includes/class-wcj-product-info.php:204
|
1186 |
+
#: includes/class-wcj-product-info.php:243
|
1187 |
+
msgid "Position"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/class-wcj-product-info.php:216
|
1191 |
+
#: includes/class-wcj-product-info.php:255
|
1192 |
+
#: includes/class-wcj-product-info.php:275
|
1193 |
+
#: includes/class-wcj-product-info.php:301
|
1194 |
+
#: includes/class-wcj-product-info.php:327
|
1195 |
+
msgid "Priority (i.e. Order)"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/class-wcj-product-info.php:223
|
1199 |
+
msgid "Product Info on Single Product Pages"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/class-wcj-product-info.php:264
|
1203 |
+
msgid "Product Tabs Options"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/class-wcj-product-info.php:267
|
1207 |
+
msgid "Description Tab"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/class-wcj-product-info.php:268
|
1211 |
+
#: includes/class-wcj-product-info.php:294
|
1212 |
+
#: includes/class-wcj-product-info.php:320
|
1213 |
+
msgid "Remove tab from product page"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: includes/class-wcj-product-info.php:285
|
1217 |
+
#: includes/class-wcj-product-info.php:311
|
1218 |
+
#: includes/class-wcj-product-info.php:337
|
1219 |
+
#: includes/class-wcj-product-info.php:378
|
1220 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:95
|
1221 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
1222 |
+
msgid "Title"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: includes/class-wcj-product-info.php:286
|
1226 |
+
#: includes/class-wcj-product-info.php:312
|
1227 |
+
#: includes/class-wcj-product-info.php:338
|
1228 |
+
msgid "Leave blank for WooCommerce defaults"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: includes/class-wcj-product-info.php:293
|
1232 |
+
msgid "Reviews Tab"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: includes/class-wcj-product-info.php:319
|
1236 |
+
msgid "Additional Information Tab"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: includes/class-wcj-product-info.php:347
|
1240 |
+
msgid "Related Products Options"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: includes/class-wcj-product-info.php:357
|
1244 |
+
msgid "Related Products Number"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: includes/class-wcj-product-info.php:364
|
1248 |
+
msgid "Related Products Columns"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/class-wcj-product-info.php:371
|
1252 |
+
msgid "Order by"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/class-wcj-product-info.php:376
|
1256 |
+
msgid "Random"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: includes/class-wcj-product-info.php:377
|
1260 |
+
msgid "Date"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/class-wcj-product-info.php:383
|
1264 |
+
msgid "Order"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: includes/class-wcj-product-info.php:384
|
1268 |
+
msgid "Ignored if order by \"Random\" is selected above."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: includes/class-wcj-product-info.php:389
|
1272 |
+
msgid "Ascending"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/class-wcj-product-info.php:390
|
1276 |
+
msgid "Descending"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/class-wcj-product-listings.php:55
|
1280 |
+
msgid "Product Listings Options"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/class-wcj-product-listings.php:58
|
1284 |
+
#: includes/class-wcj-product-listings.php:136
|
1285 |
+
msgid "Product Listings"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/class-wcj-product-listings.php:59
|
1289 |
+
msgid "Enable the Product Listings feature"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: includes/class-wcj-product-listings.php:60
|
1293 |
msgid ""
|
1294 |
+
"Change display options for shop and category pages: show/hide categories "
|
1295 |
+
"count, exclude categories, show/hide empty categories."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/class-wcj-product-listings.php:68
|
1299 |
+
msgid "Shop Page Display Options"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/class-wcj-product-listings.php:68
|
1303 |
+
msgid ""
|
1304 |
+
"This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
|
1305 |
+
"Products > Product Listings\" is set to \"Show subcategories\" or \"Show both"
|
1306 |
+
"\"."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: includes/class-wcj-product-listings.php:71
|
1310 |
+
msgid "Categories Count"
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: includes/class-wcj-product-listings.php:72
|
1314 |
+
#: includes/class-wcj-product-listings.php:155
|
1315 |
+
msgid "Hide categories count on shop page"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/class-wcj-product-listings.php:79
|
1319 |
+
msgid "Exclude Categories"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: includes/class-wcj-product-listings.php:80
|
1323 |
+
#: includes/class-wcj-product-listings.php:163
|
1324 |
+
msgid ""
|
1325 |
+
" Excludes one or more categories from the shop page. This parameter takes a "
|
1326 |
+
"comma-separated list of categories by unique ID, in ascending order. Leave "
|
1327 |
+
"blank to disable."
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/class-wcj-product-listings.php:88
|
1331 |
+
#: includes/class-wcj-product-listings.php:119
|
1332 |
+
msgid "Hide Empty"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/class-wcj-product-listings.php:89
|
1336 |
+
#: includes/class-wcj-product-listings.php:172
|
1337 |
+
msgid "Hide empty categories on shop page"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: includes/class-wcj-product-listings.php:97
|
1341 |
+
msgid "Category Display Options"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/class-wcj-product-listings.php:97
|
1345 |
+
msgid ""
|
1346 |
+
"This will work only when \"Default Category Display\" in \"WooCommerce > "
|
1347 |
+
"Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
|
1348 |
+
"\"Show both\"."
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: includes/class-wcj-product-listings.php:100
|
1352 |
+
msgid "Subcategories Count"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: includes/class-wcj-product-listings.php:101
|
1356 |
+
#: includes/class-wcj-product-listings.php:184
|
1357 |
+
msgid "Hide subcategories count on category pages"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: includes/class-wcj-product-listings.php:110
|
1361 |
+
msgid "Exclude Subcategories"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/class-wcj-product-listings.php:111
|
1365 |
+
#: includes/class-wcj-product-listings.php:194
|
1366 |
+
msgid ""
|
1367 |
+
" Excludes one or more categories from the category (archive) pages. This "
|
1368 |
+
"parameter takes a comma-separated list of categories by unique ID, in "
|
1369 |
+
"ascending order. Leave blank to disable."
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/class-wcj-product-listings.php:120
|
1373 |
+
#: includes/class-wcj-product-listings.php:203
|
1374 |
+
msgid "Hide empty subcategories on category pages"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: includes/class-wcj-product-listings.php:154
|
1378 |
+
msgid "WooJetpack: Categories Count"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: includes/class-wcj-product-listings.php:162
|
1382 |
+
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: includes/class-wcj-product-listings.php:171
|
1386 |
+
#: includes/class-wcj-product-listings.php:202
|
1387 |
+
msgid "WooJetpack: Hide Empty"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/class-wcj-product-listings.php:183
|
1391 |
+
msgid "WooJetpack: Subcategories Count"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/class-wcj-product-listings.php:193
|
1395 |
+
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/class-wcj-reports.php:44 includes/class-wcj-reports.php:85
|
1399 |
+
msgid "Smart Reports"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/class-wcj-reports.php:65
|
1403 |
+
msgid "Reports Options"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/class-wcj-reports.php:68 includes/class-wcj-reports.php:256
|
1407 |
+
msgid "Reports"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/class-wcj-reports.php:69
|
1411 |
+
msgid "Enable the Reports feature"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/class-wcj-reports.php:277
|
1415 |
+
msgid "Product"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/class-wcj-reports.php:278
|
1419 |
+
msgid "Price"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/class-wcj-reports.php:279
|
1423 |
+
msgid "Stock"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/class-wcj-reports.php:280
|
1427 |
+
msgid "Stock price"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: includes/class-wcj-reports.php:282
|
1431 |
+
msgid "Last sale"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: includes/class-wcj-reports.php:283 includes/class-wcj-reports.php:284
|
1435 |
+
msgid "Sales in last %s days"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/class-wcj-reports.php:286
|
1439 |
+
msgid "Total sales"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: includes/class-wcj-reports.php:361
|
1443 |
+
msgid "No sales yet"
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: includes/class-wcj-reports.php:378
|
1447 |
+
msgid "Total current stock value"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/class-wcj-reports.php:379
|
1451 |
+
msgid "Total stock value"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: includes/class-wcj-reports.php:380
|
1455 |
+
msgid "Product stock value average"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: includes/class-wcj-reports.php:381
|
1459 |
+
msgid "Product stock average"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: includes/class-wcj-reports.php:439
|
1463 |
+
msgid "All Products on Stock"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: includes/class-wcj-reports.php:440
|
1467 |
+
msgid "Report shows all products that are on stock."
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: includes/class-wcj-reports.php:497
|
1471 |
+
msgid ""
|
1472 |
+
"Here you can generate reports. Some reports are generated using all your "
|
1473 |
+
"orders and products, so if you have a lot of them - it may take a while."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/class-wcj-shipping.php:63
|
1477 |
+
msgid "WooCommerce Jetpack: Hide shipping"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
|
1481 |
+
msgid "Hide local delivery when free is available"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/class-wcj-shipping.php:75 includes/class-wcj-shipping.php:180
|
1485 |
+
msgid "Hide all when free is available"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: includes/class-wcj-shipping.php:152
|
1489 |
+
msgid "Shipping Options"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/class-wcj-shipping.php:156
|
1493 |
+
msgid "Enable the Shipping feature"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/class-wcj-shipping.php:157
|
1497 |
+
msgid "Hide shipping when free is available."
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/class-wcj-shipping.php:165
|
1501 |
+
msgid "Hide if free is available"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: includes/class-wcj-shipping.php:165
|
1505 |
+
msgid ""
|
1506 |
+
"This section lets you hide other shipping options when free shipping is "
|
1507 |
+
"available on shop frontend."
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: includes/class-wcj-shipping.php:169
|
1511 |
+
msgid "Hide shipping"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: includes/class-wcj-sorting.php:75
|
1515 |
+
msgid "WooJetpack: Remove All Sorting"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/class-wcj-sorting.php:79
|
1519 |
msgid "Completely remove sorting from the shop front end"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: includes/class-wcj-sorting.php:165
|
1523 |
msgid "Sorting Options"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: includes/class-wcj-sorting.php:168 includes/class-wcj-sorting.php:277
|
1527 |
msgid "Sorting"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: includes/class-wcj-sorting.php:169
|
1531 |
msgid "Enable the Sorting feature"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: includes/class-wcj-sorting.php:170
|
1535 |
msgid "Add more sorting options or remove all sorting including default."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: includes/class-wcj-sorting.php:178 includes/class-wcj-sorting.php:181
|
1539 |
+
msgid "Remove All Sorting"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: includes/class-wcj-sorting.php:182
|
1543 |
msgid "Remove all sorting (including WooCommerce default)"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: includes/class-wcj-sorting.php:193
|
1547 |
msgid "Add More Sorting"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/class-wcj-sorting.php:196
|
1551 |
msgid "Sort by Name - Asc"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:215
|
1555 |
+
#: includes/class-wcj-sorting.php:233 includes/class-wcj-sorting.php:251
|
1556 |
msgid "Text visible at front end"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: includes/class-wcj-sorting.php:214
|
|
|
|
|
|
|
|
|
|
|
1560 |
msgid "Sort by Name - Desc"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/class-wcj-sorting.php:232
|
1564 |
msgid "Sort by SKU - Asc"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/class-wcj-sorting.php:250
|
1568 |
msgid "Sort by SKU - Desc"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:27
|
1572 |
+
msgid "Custom Gateway"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:28
|
1576 |
+
msgid "WooCommerce Jetpack: Custom Payment Gateway"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:89
|
1580 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
1581 |
+
msgid "Enable/Disable"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:91
|
1585 |
+
msgid "Enable Custom Payment"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:97
|
1589 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:64
|
1590 |
+
msgid "This controls the title which the user sees during checkout."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:98
|
1594 |
+
msgid "Custom Payment"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:102
|
1598 |
+
msgid "Description"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:104
|
1602 |
+
msgid "Payment method description that the customer will see on your checkout."
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:105
|
1606 |
+
msgid "Custom Payment Description."
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:109
|
1610 |
+
msgid "Instructions"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:111
|
1614 |
+
msgid "Instructions that will be added to the thank you page."
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:116
|
1618 |
+
msgid "Email Instructions"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:118
|
1622 |
+
msgid "Instructions that will be added to the emails."
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:123
|
1626 |
+
msgid "Icon"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:131
|
1630 |
+
msgid "Minimum order amount"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:133
|
1634 |
+
msgid ""
|
1635 |
+
"If you want to set minimum order amount to show this gateway on frontend, "
|
1636 |
+
"enter a number here. Set to 0 to disable."
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:140
|
1640 |
+
msgid "Enable for shipping methods"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:145
|
1644 |
+
msgid ""
|
1645 |
+
"If gateway is only available for certain shipping methods, set it up here. "
|
1646 |
+
"Leave blank to enable for all methods."
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:149
|
1650 |
+
msgid "Select shipping methods"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:153
|
1654 |
+
msgid "Enable for virtual orders"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:154
|
1658 |
+
msgid "Enable gateway if the order is virtual"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:288
|
1662 |
+
msgid "Awaiting payment"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:19
|
1666 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:65
|
1667 |
+
msgid "Custom Shipping"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:20
|
1671 |
+
msgid "WooCommerce Jetpack: Custom Shipping Method"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:58
|
1675 |
+
msgid "Enable Custom Shipping"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack 1.7.2) #-#-#-#-#
|
1679 |
+
#. Plugin Name of the plugin/theme
|
1680 |
+
#: woocommerce-jetpack.php:94
|
1681 |
+
msgid "WooCommerce Jetpack"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: woocommerce-jetpack.php:94
|
1685 |
+
msgid "Jetpack Settings"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: woocommerce-jetpack.php:105
|
1689 |
+
msgid "Settings"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: woocommerce-jetpack.php:106
|
1693 |
+
msgid "Docs"
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: woocommerce-jetpack.php:107
|
1697 |
+
msgid "Unlock all"
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
#: woocommerce-jetpack.php:120
|
1701 |
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: woocommerce-jetpack.php:121
|
1705 |
msgid ""
|
1706 |
"Some settings fields are locked and you will need %s to modify all locked "
|
1707 |
"fields."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: woocommerce-jetpack.php:122
|
1711 |
+
msgid "Buy now"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: woocommerce-jetpack.php:122
|
1715 |
msgid "Visit %s"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: woocommerce-jetpack.php:126
|
1719 |
msgid ""
|
1720 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
1721 |
"Jetpack Plus</a> to change value."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: woocommerce-jetpack.php:129
|
1725 |
msgid ""
|
1726 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
1727 |
"Jetpack Plus</a> to change values below."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: woocommerce-jetpack.php:132
|
1731 |
msgid "Get WooCommerce Jetpack Plus to change value."
|
1732 |
msgstr ""
|
1733 |
|
|
|
|
|
|
|
|
|
1734 |
#. Plugin URI of the plugin/theme
|
1735 |
msgid "http://woojetpack.com"
|
1736 |
msgstr ""
|
1740 |
msgstr ""
|
1741 |
|
1742 |
#. Author of the plugin/theme
|
1743 |
+
msgid "Algoritmika Ltd"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#. Author URI of the plugin/theme
|
readme.txt
CHANGED
@@ -1,273 +1,281 @@
|
|
1 |
-
=== WooCommerce Jetpack ===
|
2 |
-
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
|
5 |
-
Requires at least: 3.9.1
|
6 |
-
Tested up to: 4.0
|
7 |
-
Stable tag: 1.7.
|
8 |
-
License: GNU General Public License v3.0
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
-
|
11 |
-
Supercharge your WordPress WooCommerce site with these awesome powerful features.
|
12 |
-
|
13 |
-
== Description ==
|
14 |
-
|
15 |
-
WooCommerce Jetpack is a WordPress plugin that supercharges your site with awesome powerful features. Features are absolutely required for anyone using excellent WordPress WooCommerce platform.
|
16 |
-
|
17 |
-
= Features =
|
18 |
-
|
19 |
-
* Custom Price Labels - Create any custom price label for any product.
|
20 |
-
* Call for Price - Create any custom price label, like "Call for price", for all products with empty price.
|
21 |
-
* Currencies - Add all world currencies, change currency symbol.
|
22 |
-
* PDF Invoices - Add PDF invoices for store owners and for customers. Automatically email PDF invoices to customers.
|
23 |
-
* Orders - Sequential order numbering, custom order number prefix and number width. Set minimum order amount.
|
24 |
-
* More Sorting Options - Add more sorting options or remove sorting at all (including WooCommerce default).
|
25 |
-
* Payment Gateways - Add and customize
|
26 |
-
* Checkout - Customize checkout fields: disable/enable fields, set required, change labels and/or placeholders.
|
27 |
-
* Shipping - Hide shipping when free is available.
|
28 |
-
* Emails - Add another email recipient(s) to all WooCommerce emails.
|
29 |
-
* Product Listings - Change display options for shop and category pages: show/hide categories count, exclude categories, show/hide empty categories.
|
30 |
-
* Product Info - Customize single product tabs. Change related products number.
|
31 |
-
* Cart - Add "Empty Cart" button to cart page, automatically add product to cart on visit.
|
32 |
-
* Add to Cart - Change text for add to cart buttons for each product type. Display "Product already in cart" instead of "Add to cart" button. Redirect add to cart button to any url (e.g. checkout page).
|
33 |
-
* Old Slugs - Remove old product slugs.
|
34 |
-
* Another custom CSS tool, if you need one.
|
35 |
-
|
36 |
-
= Feedback =
|
37 |
-
* We are open to your suggestions and feedback - thank you for using or trying out one of our plugins!
|
38 |
-
* If you have any ideas how to upgrade the plugin to make it better, or if you have ideas about the features that are missing from our plugin, please [fill the form](http://woojetpack.com/submit-idea/).
|
39 |
-
* For support visit the [contact page](http://woojetpack.com/contact-us/).
|
40 |
-
|
41 |
-
= More =
|
42 |
-
* Visit the [WooCommerce Jetpack plugin page](http://woojetpack.com/)
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
*
|
73 |
-
* Upgrade Feature - PDF Invoices -
|
74 |
-
* Upgrade Feature -
|
75 |
-
* Upgrade Feature -
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
*
|
81 |
-
*
|
82 |
-
* Upgrade Feature -
|
83 |
-
* Upgrade Feature -
|
84 |
-
* Upgrade Feature -
|
85 |
-
* Upgrade Feature -
|
86 |
-
* Upgrade Feature - Product Info -
|
87 |
-
* Upgrade Feature - Product Info -
|
88 |
-
* Upgrade Feature -
|
89 |
-
* Upgrade Feature -
|
90 |
-
* Upgrade Feature -
|
91 |
-
*
|
92 |
-
|
93 |
-
|
94 |
-
*
|
95 |
-
|
96 |
-
|
97 |
-
* Upgrade Feature - Custom Price Labels -
|
98 |
-
* Upgrade Feature -
|
99 |
-
* Upgrade Feature -
|
100 |
-
* Upgrade Feature -
|
101 |
-
* Upgrade Feature - Checkout -
|
102 |
-
* Upgrade Feature -
|
103 |
-
* Upgrade Feature -
|
104 |
-
*
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
* Dev -
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
= 1.7.
|
122 |
-
* Fix - Product Info -
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
*
|
128 |
-
|
129 |
-
|
130 |
-
*
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
*
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
* Feature
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
*
|
158 |
-
*
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
*
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
* Dev -
|
170 |
-
*
|
171 |
-
*
|
172 |
-
*
|
173 |
-
|
174 |
-
= 1.
|
175 |
-
* Dev -
|
176 |
-
*
|
177 |
-
* Dev -
|
178 |
-
*
|
179 |
-
* Dev -
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
*
|
186 |
-
*
|
187 |
-
*
|
188 |
-
|
189 |
-
|
190 |
-
* Feature Upgraded -
|
191 |
-
|
192 |
-
= 1.
|
193 |
-
*
|
194 |
-
* Feature Upgraded -
|
195 |
-
*
|
196 |
-
*
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
*
|
203 |
-
*
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
*
|
208 |
-
|
209 |
-
= 1.1.
|
210 |
-
*
|
211 |
-
* Feature Upgraded -
|
212 |
-
|
213 |
-
= 1.1.
|
214 |
-
*
|
215 |
-
*
|
216 |
-
|
217 |
-
|
218 |
-
*
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
*
|
223 |
-
*
|
224 |
-
*
|
225 |
-
*
|
226 |
-
* Dev -
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
*
|
231 |
-
*
|
232 |
-
*
|
233 |
-
*
|
234 |
-
*
|
235 |
-
*
|
236 |
-
|
237 |
-
|
238 |
-
*
|
239 |
-
*
|
240 |
-
|
241 |
-
|
242 |
-
* Feature -
|
243 |
-
|
244 |
-
|
245 |
-
* Feature -
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
*
|
263 |
-
|
264 |
-
|
265 |
-
*
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== WooCommerce Jetpack ===
|
2 |
+
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
|
5 |
+
Requires at least: 3.9.1
|
6 |
+
Tested up to: 4.0
|
7 |
+
Stable tag: 1.7.3
|
8 |
+
License: GNU General Public License v3.0
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
+
|
11 |
+
Supercharge your WordPress WooCommerce site with these awesome powerful features.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
WooCommerce Jetpack is a WordPress plugin that supercharges your site with awesome powerful features. Features are absolutely required for anyone using excellent WordPress WooCommerce platform.
|
16 |
+
|
17 |
+
= Features =
|
18 |
+
|
19 |
+
* Custom Price Labels - Create any custom price label for any product.
|
20 |
+
* Call for Price - Create any custom price label, like "Call for price", for all products with empty price.
|
21 |
+
* Currencies - Add all world currencies, change currency symbol.
|
22 |
+
* PDF Invoices - Add PDF invoices for store owners and for customers. Automatically email PDF invoices to customers.
|
23 |
+
* Orders - Sequential order numbering, custom order number prefix and number width. Set minimum order amount.
|
24 |
+
* More Sorting Options - Add more sorting options or remove sorting at all (including WooCommerce default).
|
25 |
+
* Payment Gateways - Add and customize up to 10 additional custom off-line payment gateways. Change icons (images) for all default (COD - Cash on Delivery, Cheque, BACS, Mijireh Checkout, PayPal) WooCommerce payment gateways.
|
26 |
+
* Checkout - Customize checkout fields: disable/enable fields, set required, change labels and/or placeholders.
|
27 |
+
* Shipping - Hide shipping when free is available.
|
28 |
+
* Emails - Add another email recipient(s) to all WooCommerce emails.
|
29 |
+
* Product Listings - Change display options for shop and category pages: show/hide categories count, exclude categories, show/hide empty categories.
|
30 |
+
* Product Info - Customize single product tabs. Change related products number.
|
31 |
+
* Cart - Add "Empty Cart" button to cart page, automatically add product to cart on visit.
|
32 |
+
* Add to Cart - Change text for add to cart buttons for each product type. Display "Product already in cart" instead of "Add to cart" button. Redirect add to cart button to any url (e.g. checkout page).
|
33 |
+
* Old Slugs - Remove old product slugs.
|
34 |
+
* Another custom CSS tool, if you need one.
|
35 |
+
|
36 |
+
= Feedback =
|
37 |
+
* We are open to your suggestions and feedback - thank you for using or trying out one of our plugins!
|
38 |
+
* If you have any ideas how to upgrade the plugin to make it better, or if you have ideas about the features that are missing from our plugin, please [fill the form](http://woojetpack.com/submit-idea/).
|
39 |
+
* For support visit the [contact page](http://woojetpack.com/contact-us/).
|
40 |
+
|
41 |
+
= More =
|
42 |
+
* Visit the [WooCommerce Jetpack plugin page](http://woojetpack.com/)
|
43 |
+
|
44 |
+
= Available Translations =
|
45 |
+
* `FR_fr` by Jean-Marc Schreiber.
|
46 |
+
|
47 |
+
== Installation ==
|
48 |
+
|
49 |
+
1. Upload the entire `woocommerce-jetpack` folder to the `/wp-content/plugins/` directory
|
50 |
+
2. Activate the plugin through the 'Plugins' menu in WordPress
|
51 |
+
3. Go to WooCommerce > Settings > Jetpack
|
52 |
+
|
53 |
+
== Frequently Asked Questions ==
|
54 |
+
|
55 |
+
= How to unlock those some features settings that are locked? =
|
56 |
+
|
57 |
+
To unlock all WooCommerce Jetpack features, please install additional <a href="http://woojetpack.com/plus/">WooCommerce Jetpack Plus</a> plugin.
|
58 |
+
|
59 |
+
== Screenshots ==
|
60 |
+
|
61 |
+
1. Plugin admin area.
|
62 |
+
|
63 |
+
== TODO List ==
|
64 |
+
|
65 |
+
Please note that this list is only preliminary and may be corrected at any time.
|
66 |
+
|
67 |
+
Please let us know if you want anything added to list by <a href="http://woojetpack.com/submit-idea/">filling the form</a>.
|
68 |
+
|
69 |
+
If you wish that some task would go up the queue to make it faster, please contact us by <a href="http://woojetpack.com/contact-us/">filling this form</a>. We are listening carefully to our users!
|
70 |
+
|
71 |
+
= 1.7.4 - 06/10/2014 =
|
72 |
+
* New Feature - Smart Reports - Various reports based on products prices, sales, stock.
|
73 |
+
* Upgrade Feature - PDF Invoices - International date formats. Idea by Jean-Marc.
|
74 |
+
* Upgrade Feature - Shipping - Advance free shipping - Free shipping for multiple country/places. Each country/places different prices. Idea by LQTOYS.
|
75 |
+
* Upgrade Feature - PDF Invoices - Make emailing PDF as attachment option available for certain payment methods only (user selection). Idea by Jen.
|
76 |
+
* Upgrade Feature - PDF Invoices - Sending invoice on customer's request. Idea by Jen.
|
77 |
+
* Upgrade Feature - Custom Statuses - Bulk change status.
|
78 |
+
|
79 |
+
= 1.8.0 - 13/10/2014 =
|
80 |
+
* New Feature - Add second currency to the price.
|
81 |
+
* New Feature - Products per Page - Add "products per page" option for customers (i.e. front end).
|
82 |
+
* Upgrade Feature - Shipping - Add "Custom Shipping Method".
|
83 |
+
* Upgrade Feature - PDF Invoices - Separate numbering for invoices option, then can add `add_order_number_to_invoice` option.
|
84 |
+
* Upgrade Feature - Custom Price Labels - Add price countdown.
|
85 |
+
* Upgrade Feature - Custom Price Labels - Add "global labels".
|
86 |
+
* Upgrade Feature - Product Info - Add widget.
|
87 |
+
* Upgrade Feature - Product Info - Today's deal.
|
88 |
+
* Upgrade Feature - Product Info - Images for variations.
|
89 |
+
* Upgrade Feature - Product Info - Add "%time_since_last_sale%".
|
90 |
+
* Upgrade Feature - Orders - Custom Order Statuses - Add options for selecting icons and color.
|
91 |
+
* Upgrade Feature - Smart Reports - Export to CSV file.
|
92 |
+
* Upgrade Feature - Call for Price - Call for price for variable products (all variations or only some).
|
93 |
+
* Dev - Custom Price Labels - Rearrange settings in product edit (something like `postbox`es).
|
94 |
+
* New Feature - Checkout to PDF (wish list). Idea by Mick 01/10/2014.
|
95 |
+
|
96 |
+
= 1.9.0 - 20/10/2014 =
|
97 |
+
* Upgrade Feature - Custom Price Labels - Add "local remove".
|
98 |
+
* Upgrade Feature - Orders - Bulk orders i.e. "Buy More - Pay Less". Start from global discount for all products, i.e. cart discount; later - discounts for individual products.
|
99 |
+
* Upgrade Feature - Custom Price Labels - Add different labels for archives, single, homepage, related. Add option to select which price hooks to use. Different labels for variable and variation.
|
100 |
+
* Upgrade Feature - Custom Price Labels - Custom free price.
|
101 |
+
* Upgrade Feature - Checkout - Custom checkout fields.
|
102 |
+
* Upgrade Feature - Product Info - Custom product tabs.
|
103 |
+
* Upgrade Feature - Checkout - Skrill.
|
104 |
+
* Upgrade Feature - Checkout - Amazon Payments.
|
105 |
+
* Upgrade Feature - Orders - Maximum weight - "Contact us" to place order with products total weight over some amount.
|
106 |
+
* Upgrade Feature - Sorting - Add sorting by popularity in e.g. 90 days (not by `total_sales` as it is by default in WooCommerce).
|
107 |
+
* New Feature - Integrating Amazon FBA inventory into WooCommerce.
|
108 |
+
Program that feeds the product information and pictures from Amazon to WooCommerce.
|
109 |
+
Also something that updates inventory between the two.
|
110 |
+
Programs like SellerActive and BigCommerce come close, but don't do everything.
|
111 |
+
Idea by Dave.
|
112 |
+
|
113 |
+
= 2.0.0 - 27/10/2014 =
|
114 |
+
* Dev - Move all to `WooCommerce > Jetpack` menu.
|
115 |
+
* Dev - Major source code, documentation, locking mechanism etc. recheck.
|
116 |
+
Maybe rename "Features" to "Modules".
|
117 |
+
* Dev - Add "Restore Defaults" option (will need to delete/reset all posts' some meta (e.g. price labels) also).
|
118 |
+
|
119 |
+
== Changelog ==
|
120 |
+
|
121 |
+
= 1.7.3 - 04/10/2014 =
|
122 |
+
* Fix - Product Info - Product Info on Single Product Page - Missing Plus message added. Reported by Manfred.
|
123 |
+
* Feature Upgraded - Payment Gateways - Option to add up to 10 additional custom payment gateways, added. Idea by Kristof.
|
124 |
+
* Dev - French `FR_fr` translation added. Translation by Jean-Marc Schreiber.
|
125 |
+
|
126 |
+
= 1.7.2 - 03/10/2014 =
|
127 |
+
* Fix - Product Info - `%total_sales%` fixed and enabled.
|
128 |
+
|
129 |
+
= 1.7.1 - 02/10/2014 =
|
130 |
+
* Fix - Product Info - `%total_sales%` is temporary disabled.
|
131 |
+
This was causing "PHP Parse error" on some servers. Reported by Xavier.
|
132 |
+
|
133 |
+
= 1.7.0 - 02/10/2014 =
|
134 |
+
* Fix - Payment Gateways - Instructions were not showing (suggested by Jen), fixed.
|
135 |
+
* New Feature - Product Listings - Options added (separately for "Shop" and "Categories" pages): show/hide categories count, exclude categories (idea by Xavier), show/hide empty categories.
|
136 |
+
This will work only when "Shop Page Display" and/or "Default Category Display" in "WooCommerce > Settings > Products > Product Listings" is set to "Show subcategories" or "Show both".
|
137 |
+
All new options fields are also added (duplicated) to "WooCommerce > Settings > Products > Product Listings".
|
138 |
+
* Feature Upgraded - Payment Gateways - Instructions for emails option added (i.e. separated from instructions on thank you page).
|
139 |
+
* Feature Upgraded - Orders - Minimum order amount - Stop customer from seeing the checkout page if below minimum order amount (in this case the customer redirected to Cart page). Idea by Augen.
|
140 |
+
* Feature Upgraded - Product Info - Additional product info (separately for "Single" and "Archive" pages): text, position and priority options added.
|
141 |
+
First "Product Info Shortcodes" added: %sku% for SKU (idea by Xavier) and %total_sales% for Total Sales.
|
142 |
+
|
143 |
+
= 1.6.2 - 25/09/2014 =
|
144 |
+
* Feature Upgraded - Orders - Orders Numbers - Additional custom date prefix added. Suggested by Sergio.
|
145 |
+
Value is passed directly to PHP `date` function, so most of PHP date formats can be used.
|
146 |
+
Visit PHP `date` <a href="http://php.net/manual/en/function.date.php">function page</a> for more information on valid date formats.
|
147 |
+
The only exception is using `\` symbol in date format, as this symbol will be excluded from date (that is because of WooCommerce default option saving mechanism).
|
148 |
+
|
149 |
+
= 1.6.1 - 23/09/2014 =
|
150 |
+
* New Feature - General - Another custom CSS tool.
|
151 |
+
This was added because of the problem with color of price matching the background in minimum order amount message (suggested by Augen), which can be fixed with custom CSS.
|
152 |
+
* Dev - Orders - Minimum order amount - `textarea` instead of `text` option type. Now it is possible to add tags (e.g. `<span class="your_class"></span>`) to customers messages.
|
153 |
+
|
154 |
+
= 1.6.0 - 22/09/2014 =
|
155 |
+
* Fix - PDF Invoices - Wrong headers for PDF sent, fixed.
|
156 |
+
This was previously causing a bug when `.html` file extension was wrongly added to PDF. Suggested by Pete (reported from Safari, Mac).
|
157 |
+
* Feature Upgraded - Custom Price Labels - Labels for Item price on Cart page included. Idea by Stephanie.
|
158 |
+
* Feature Upgraded - Custom Price Labels - Labels for Composite products included. Idea by Pete.
|
159 |
+
* Dev - Custom Price Labels - All price filters added to `prices_filters` array.
|
160 |
+
|
161 |
+
= 1.5.3 - 20/09/2014 =
|
162 |
+
* Fix - Smart Reports beta version enabled too soon, fixed.
|
163 |
+
|
164 |
+
= 1.5.2 - 20/09/2014 =
|
165 |
+
* Fix - Emails - Bug causing `call_user_func_array()` warning, fixed. Suggested by Andrew.
|
166 |
+
* Dev - New WooCommerce Jetpack Dashboard in admin settings.
|
167 |
+
|
168 |
+
= 1.5.1 - 14/09/2014 =
|
169 |
+
* Dev - Custom Price Labels - `textarea` instead of `<input type="text">`.
|
170 |
+
* Dev - Orders - Custom Order Statuses - `postbox` added instead of simple form.
|
171 |
+
* Upgrade Feature - PDF Invoices - PDF invoice as attachment file in customer's email (order completed). Idea by Jen.
|
172 |
+
* Dev - PDF Invoices - If displaying shipping as item, option for adding shipping method text, added. Suggested by Tomas.
|
173 |
+
|
174 |
+
= 1.5.0 - 13/09/2014 =
|
175 |
+
* Dev - Orders - Renumerate orders tool compatibility with WooCommerce 2.2.x.
|
176 |
+
* Dev - Orders - Custom Order Statuses compatibility with WooCommerce 2.2.x.
|
177 |
+
* Dev - Orders - Renumerate orders tool moved to WooCommerce > Jetpack Tools.
|
178 |
+
* Fix - PDF Invoices - `Order Shipping Price` position in `Totals` on admin settings page, fixed.
|
179 |
+
* Dev - PDF Invoices - Save as pdf option added.
|
180 |
+
* Fix - PDF Invoices - Bug with invoice PDF file name, fixed.
|
181 |
+
|
182 |
+
= 1.4.0 - 07/09/2014 =
|
183 |
+
* Dev - Custom Price Labels - Support for price labels showing on Pages, added. Suggested by Axel.
|
184 |
+
* Fix - PDF Invoices - Bug with some item table columns not showing, fixed. Suggested by Tomas.
|
185 |
+
* Dev - PDF Invoices - Discount as separate item option added.
|
186 |
+
* Dev - PDF Invoices - Shipping as separate item option added. Suggested by Tomas.
|
187 |
+
* Dev - Old Slugs and Custom Order Statuses tools moved to WooCommerce > Jetpack Tools.
|
188 |
+
|
189 |
+
= 1.3.0 - 25/08/2014 =
|
190 |
+
* Feature Upgraded - PDF Invoices - Major upgrade: single item price, item and line taxes, payment and shipping methods, additional footer, font size, custom css added.
|
191 |
+
|
192 |
+
= 1.2.0 - 17/08/2014 =
|
193 |
+
* Feature Upgraded - Orders - Auto-complete all orders option added.
|
194 |
+
* Feature Upgraded - Orders - Custom Order Statuses added.
|
195 |
+
* Feature Upgraded - Custom Price Labels - Added global remove text from price option.
|
196 |
+
* Feature Upgraded - Custom Price Labels - Added compatibility with bookable products. Suggested by Axel.
|
197 |
+
* Dev - Links to Jetpack settings added to plugins page and to WooCommerce back end menu.
|
198 |
+
* Feature Upgraded - Checkout - Customizable "Place order" ("Order now") button text.
|
199 |
+
|
200 |
+
= 1.1.7 - 12/08/2014 =
|
201 |
+
* Dev - Call for Price - "Hide sale tag" code fixed.
|
202 |
+
* Feature Upgraded - Call for Price - Separate label to show for related products.
|
203 |
+
* Dev - PDF Invoices - Text align to right on cells with prices.
|
204 |
+
* Dev - PDF Invoices - "PDF" renamed to "PDF Invoice" (in orders list).
|
205 |
+
|
206 |
+
= 1.1.6 - 11/08/2014 =
|
207 |
+
* Fix - PDF Invoices - Bug with subtotal calculation (discounts were not included), fixed.
|
208 |
+
|
209 |
+
= 1.1.5 - 11/08/2014 =
|
210 |
+
* Dev - PDF Invoices - "Save as..." disabled (in orders list).
|
211 |
+
* Feature Upgraded - PDF Invoices - New fields added: line total excluding tax, subtotal, shipping, discount, taxes.
|
212 |
+
|
213 |
+
= 1.1.4 - 10/08/2014 =
|
214 |
+
* Fix - Sorting - "Remove all sorting" bug (always enabled), fixed (second time).
|
215 |
+
* Dev - Product Info - Related products: "columns" option added.
|
216 |
+
|
217 |
+
= 1.1.3 - 09/08/2014 =
|
218 |
+
* Fix - Payment Gateways - "Warning: Invalid argument supplied for foreach() in..." bug fixed.
|
219 |
+
* Feature Upgraded - Call for Price - Different labels for single/archive/home.
|
220 |
+
|
221 |
+
= 1.1.2 - 08/08/2014 =
|
222 |
+
* Dev - PDF Invoices - Icons at orders list changed.
|
223 |
+
* Feature Upgraded - Payment Gateways - Icons for default WooCommerce gateways (COD - Cash on Delivery, Cheque, BACS, Mijireh Checkout, PayPal). Accessible also via WooCommerce > Settings > Checkout Options.
|
224 |
+
* Feature Upgraded - Payment Gateways - Custom Payment Gateway upgraded: Shipping methods, Virtual product, Min cart total option, Icon option.
|
225 |
+
* Dev - Feature "Custom Payment Gateway" renamed to "Payment Gateways"
|
226 |
+
* Dev - Move needed functions from Plus to standard version.
|
227 |
+
|
228 |
+
= 1.1.1 - 06/08/2014 =
|
229 |
+
* Feature Upgraded - Custom Price Labels - More visibility options added: hide for main variable product price or for each variation.
|
230 |
+
* Feature - Custom Payment Gateway - Simple custom offline payment gateway.
|
231 |
+
* Dev - Move needed functions from Plus to standard version.
|
232 |
+
* Fix - Custom Price Labels - Bug with main enable/disable checkbox, fixed.
|
233 |
+
* Fix - Checkout - Bug with default values, fixed.
|
234 |
+
* Dev - Enable/disable checkbox added to Add to cart feature.
|
235 |
+
* Dev - Function wcj_get_option removed.
|
236 |
+
|
237 |
+
= 1.1.0 - 24/07/2014 =
|
238 |
+
* Dev - PDF Invoices - Icons instead of text at orders list.
|
239 |
+
* Fix - Currencies - Wrong readonly attribute for text field on WooCommerce > Settings > General, affecting Plus version, fixed.
|
240 |
+
* Feature Upgraded - Orders - Set minimum order amount.
|
241 |
+
* Feature - Checkout - Customize checkout fields: disable/enable fields, set required, change labels and/or placeholders.
|
242 |
+
* Feature - Shipping - Hide shipping when free is available.
|
243 |
+
* Feature - Emails - Add another email recipient(s) to all WooCommerce emails.
|
244 |
+
* Feature - Product Info - Customize single product tabs. Change related products number.
|
245 |
+
* Feature - Cart - Add "Empty Cart" button to cart page, automatically add product to cart on visit.
|
246 |
+
* Feature Upgraded - Add to Cart - Display "Product already in cart" instead of "Add to cart" button. Redirect add to cart button to any url (e.g. checkout page).
|
247 |
+
* Dev - Feature "Orders Numbers" renamed to "Orders".
|
248 |
+
|
249 |
+
= 1.0.6 - 15/07/2014 =
|
250 |
+
* Feature - PDF Invoices - PDF invoices for store owners and for customers.
|
251 |
+
|
252 |
+
= 1.0.5 - 18/06/2014 =
|
253 |
+
* Feature - Order Numbers - Sequential order numbering, custom order number prefix and number width.
|
254 |
+
|
255 |
+
= 1.0.4 - 15/06/2014 =
|
256 |
+
* Fix - Add to cart text - on archives now calling the right function.
|
257 |
+
|
258 |
+
= 1.0.3 - 15/06/2014 =
|
259 |
+
* Feature - Add to cart text by product type.
|
260 |
+
|
261 |
+
= 1.0.2 - 14/06/2014 =
|
262 |
+
* Dev - Added loading plugin textdomain.
|
263 |
+
|
264 |
+
= 1.0.1 - 13/06/2014 =
|
265 |
+
* Fix - Error with Custom Price Labels feature, affecting Plus version, fixed.
|
266 |
+
|
267 |
+
= 1.0.0 - 13/06/2014 =
|
268 |
+
* Feature - Custom Price Labels – Create any custom price label for any product.
|
269 |
+
* Feature - Call for Price – Create any custom price label, like "Call for price", for all products with empty price.
|
270 |
+
* Feature - Currencies – Add all world currencies, change currency symbol.
|
271 |
+
* Feature - More Sorting Options – Add more sorting options or remove sorting (including default) at all.
|
272 |
+
* Feature - Old Slugs – Remove old product slugs.
|
273 |
+
* Initial Release.
|
274 |
+
|
275 |
+
== Upgrade Notice ==
|
276 |
+
|
277 |
+
= 1.7.1 =
|
278 |
+
Bug causing "PHP Parse error" (reported on servers running PHP 5.3) fixed. Upgrade immediately.
|
279 |
+
|
280 |
+
= 1.0.0 =
|
281 |
+
This is the first release of the plugin.
|
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: 1.7.
|
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: 1.7.3
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|