Booster for WooCommerce - Version 1.7.4

Version Description

  • 07/10/2014 =
  • Fix - Emails - Bcc and Cc options not working, fixed. Reported by Helpmiphone.
  • Fix - Orders - Minimum order amount - "Stop customer from seeing the Checkout page..." option was not working properly: was redirecting to Cart after successful checkout, fixed.
Download this release

Release Info

Developer algoritmika
Plugin Icon 128x128 Booster for WooCommerce
Version 1.7.4
Comparing to
See all releases

Code changes from version 1.7.3 to 1.7.4

includes/class-wcj-emails.php CHANGED
@@ -5,7 +5,7 @@
5
  * The WooCommerce Jetpack Emails class.
6
  *
7
  * @class WCJ_Emails
8
- * @version 1.0.1
9
  * @category Class
10
  * @author Algoritmika Ltd.
11
  */
@@ -19,21 +19,16 @@ class WCJ_Emails {
19
  /**
20
  * Constructor.
21
  */
22
- public function __construct() {
23
-
24
  // Main hooks
25
- if ( get_option( 'wcj_emails_enabled' ) == 'yes' ) {
26
-
27
- if ( get_option( 'wcj_emails_bcc_email' ) !== '' )
28
- add_filter( 'woocommerce_email_headers', array( $this, 'add_bcc_email' ) );
29
-
30
- if ( get_option( 'wcj_emails_cc_email' ) !== '' )
31
  add_filter( 'woocommerce_email_headers', array( $this, 'add_cc_email' ) );
32
-
33
  // Settings
34
- add_filter( 'woocommerce_email_settings', array( $this, 'add_email_forwarding_fields' ), 100 );
35
- }
36
-
37
  // Settings hooks
38
  add_filter( 'wcj_settings_sections', array( $this, 'settings_section' ) );
39
  add_filter( 'wcj_settings_emails', array( $this, 'get_settings' ), 100 );
@@ -43,11 +38,9 @@ class WCJ_Emails {
43
  /**
44
  * add_enabled_option.
45
  */
46
- public function add_enabled_option( $settings ) {
47
-
48
  $all_settings = $this->get_settings();
49
- $settings[] = $all_settings[1];
50
-
51
  return $settings;
52
  }
53
 
@@ -101,17 +94,15 @@ class WCJ_Emails {
101
  /**
102
  * Add another email recipient to all WooCommerce emails
103
  */
104
- function add_bcc_email() {
105
-
106
- return 'Bcc: ' . get_option( 'wcj_emails_bcc_email' ) . '\r\n';
107
  }
108
 
109
  /**
110
  * Add another email recipient to all WooCommerce emails
111
  */
112
- function add_cc_email() {
113
-
114
- return 'Cc: ' . get_option( 'wcj_emails_cc_email' ) . '\r\n';
115
  }
116
 
117
  /**
@@ -167,14 +158,12 @@ class WCJ_Emails {
167
  /**
168
  * settings_section.
169
  */
170
- function settings_section( $sections ) {
171
-
172
- $sections['emails'] = __( 'Emails', 'woocommerce-jetpack' );
173
-
174
  return $sections;
175
  }
176
  }
177
 
178
  endif;
179
 
180
- return new WCJ_Emails();
5
  * The WooCommerce Jetpack Emails class.
6
  *
7
  * @class WCJ_Emails
8
+ * @version 1.0.3
9
  * @category Class
10
  * @author Algoritmika Ltd.
11
  */
19
  /**
20
  * Constructor.
21
  */
22
+ public function __construct() {
 
23
  // Main hooks
24
+ if ( 'yes' === get_option( 'wcj_emails_enabled' ) ) {
25
+ if ( '' != get_option( 'wcj_emails_bcc_email' ) )
26
+ add_filter( 'woocommerce_email_headers', array( $this, 'add_bcc_email' ) );
27
+ if ( '' != get_option( 'wcj_emails_cc_email' ) )
 
 
28
  add_filter( 'woocommerce_email_headers', array( $this, 'add_cc_email' ) );
 
29
  // Settings
30
+ add_filter( 'woocommerce_email_settings', array( $this, 'add_email_forwarding_fields' ), 100 );
31
+ }
 
32
  // Settings hooks
33
  add_filter( 'wcj_settings_sections', array( $this, 'settings_section' ) );
34
  add_filter( 'wcj_settings_emails', array( $this, 'get_settings' ), 100 );
38
  /**
39
  * add_enabled_option.
40
  */
41
+ public function add_enabled_option( $settings ) {
 
42
  $all_settings = $this->get_settings();
43
+ $settings[] = $all_settings[1];
 
44
  return $settings;
45
  }
46
 
94
  /**
95
  * Add another email recipient to all WooCommerce emails
96
  */
97
+ function add_bcc_email( $email_headers ) {
98
+ return $email_headers . "Bcc: " . get_option( 'wcj_emails_bcc_email' ) . "\r\n";
 
99
  }
100
 
101
  /**
102
  * Add another email recipient to all WooCommerce emails
103
  */
104
+ function add_cc_email( $email_headers ) {
105
+ return $email_headers . "Cc: " . get_option( 'wcj_emails_cc_email' ) . "\r\n";
 
106
  }
107
 
108
  /**
158
  /**
159
  * settings_section.
160
  */
161
+ function settings_section( $sections ) {
162
+ $sections['emails'] = __( 'Emails', 'woocommerce-jetpack' );
 
 
163
  return $sections;
164
  }
165
  }
166
 
167
  endif;
168
 
169
+ return new WCJ_Emails();
includes/class-wcj-orders.php CHANGED
@@ -5,7 +5,7 @@
5
  * The WooCommerce Jetpack Orders class.
6
  *
7
  * @class WCJ_Orders
8
- * @version 1.4.0
9
  * @category Class
10
  * @author Algoritmika Ltd.
11
  */
@@ -47,7 +47,9 @@ class WCJ_Orders {
47
  add_action( 'woocommerce_checkout_process', array( $this, 'order_minimum_amount' ) );
48
  add_action( 'woocommerce_before_cart', array( $this, 'order_minimum_amount' ) );
49
  if ( 'yes' === get_option( 'wcj_order_minimum_amount_stop_from_seeing_checkout' ) )
50
- add_action( 'wp', array( $this, 'stop_from_seeing_checkout' ) );
 
 
51
 
52
  }
53
 
@@ -369,9 +371,10 @@ class WCJ_Orders {
369
  /**
370
  * stop_from_seeing_checkout.
371
  */
372
- public function stop_from_seeing_checkout() {
373
  global $woocommerce;
374
- if ( $woocommerce->cart->total < get_option( 'wcj_order_minimum_amount' ) && is_checkout() )
 
375
  wp_safe_redirect( $woocommerce->cart->get_cart_url() );
376
  }
377
 
5
  * The WooCommerce Jetpack Orders class.
6
  *
7
  * @class WCJ_Orders
8
+ * @version 1.4.2
9
  * @category Class
10
  * @author Algoritmika Ltd.
11
  */
47
  add_action( 'woocommerce_checkout_process', array( $this, 'order_minimum_amount' ) );
48
  add_action( 'woocommerce_before_cart', array( $this, 'order_minimum_amount' ) );
49
  if ( 'yes' === get_option( 'wcj_order_minimum_amount_stop_from_seeing_checkout' ) )
50
+ add_action( 'wp', array( $this, 'stop_from_seeing_checkout' ), 100 );
51
+ //add_action( 'template_redirect', array( $this, 'stop_from_seeing_checkout' ), 100 );
52
+
53
 
54
  }
55
 
371
  /**
372
  * stop_from_seeing_checkout.
373
  */
374
+ public function stop_from_seeing_checkout( $wp ) {
375
  global $woocommerce;
376
+ $the_cart_total = $woocommerce->cart->cart_contents_total;
377
+ if ( 0 != $the_cart_total && $the_cart_total < get_option( 'wcj_order_minimum_amount' ) && is_checkout() )
378
  wp_safe_redirect( $woocommerce->cart->get_cart_url() );
379
  }
380
 
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.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,1725 +12,279 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: includes/admin/settings/class-wc-settings-jetpack.php:24
16
  msgid "Jetpack"
17
  msgstr ""
18
 
19
- #: includes/admin/settings/class-wc-settings-jetpack.php: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,7 +294,7 @@ msgid "Supercharge your WooCommerce site with these awesome powerful features."
1740
  msgstr ""
1741
 
1742
  #. Author of the plugin/theme
1743
- msgid "Algoritmika Ltd"
1744
  msgstr ""
1745
 
1746
  #. 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.0.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
7
+ "POT-Creation-Date: 2014-06-13 22:27:34+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:20
16
  msgid "Jetpack"
17
  msgstr ""
18
 
19
+ #: includes/admin/settings/class-wc-settings-jetpack.php:36
20
  msgid "Dashboard"
21
  msgstr ""
22
 
23
+ #: includes/admin/settings/class-wc-settings-jetpack.php:78
24
+ msgid "Features"
25
  msgstr ""
26
 
27
+ #: includes/class-wcj-call-for-price.php:119
28
+ msgid "Sale!"
29
  msgstr ""
30
 
31
+ #: includes/class-wcj-call-for-price.php:165
32
+ msgid "Call for Price Options"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgstr ""
34
 
35
+ #: includes/class-wcj-call-for-price.php:171
36
+ msgid "Call for Price"
37
  msgstr ""
38
 
39
+ #: includes/class-wcj-call-for-price.php:173
40
+ msgid "Enable the Call for Price feature"
 
41
  msgstr ""
42
 
43
+ #: includes/class-wcj-call-for-price.php:175
44
+ msgid "Create any custom price label for all products with empty price."
 
45
  msgstr ""
46
 
47
+ #: includes/class-wcj-call-for-price.php:189
48
+ #: includes/class-wcj-product-info.php:163
49
+ msgid "Text to Show"
50
  msgstr ""
51
 
52
+ #: includes/class-wcj-call-for-price.php:191
53
+ msgid "This sets the html to output on empty price."
54
  msgstr ""
55
 
56
+ #: includes/class-wcj-call-for-price.php:213
57
+ msgid "Show on Single Product"
58
  msgstr ""
59
 
60
+ #: includes/class-wcj-call-for-price.php:215
61
+ msgid "Check to show on single products page"
62
  msgstr ""
63
 
64
+ #: includes/class-wcj-call-for-price.php:229
65
+ msgid "Show on Products Archive"
66
  msgstr ""
67
 
68
+ #: includes/class-wcj-call-for-price.php:231
69
+ msgid "Check to show on products archive page"
70
  msgstr ""
71
 
72
+ #: includes/class-wcj-call-for-price.php:245
73
+ msgid "Show on Home Page"
74
  msgstr ""
75
 
76
+ #: includes/class-wcj-call-for-price.php:247
77
+ msgid "Check to show on home page"
 
 
78
  msgstr ""
79
 
80
+ #: includes/class-wcj-call-for-price.php:261
81
+ msgid "Hide Sale! Tag"
82
  msgstr ""
83
 
84
+ #: includes/class-wcj-call-for-price.php:263
85
+ msgid "Hide the tag"
86
  msgstr ""
87
 
88
+ #: includes/class-wcj-currencies.php:777
89
+ msgid "Currency Symbol"
90
  msgstr ""
91
 
92
+ #: includes/class-wcj-currencies.php:779
93
+ msgid "This sets the currency symbol."
 
94
  msgstr ""
95
 
96
+ #: includes/class-wcj-currencies.php:819
97
+ msgid "Currencies Options"
98
  msgstr ""
99
 
100
+ #: includes/class-wcj-currencies.php:825
101
+ msgid "Currencies"
102
  msgstr ""
103
 
104
+ #: includes/class-wcj-currencies.php:827
105
+ msgid "Enable the Currencies feature"
106
  msgstr ""
107
 
108
+ #: includes/class-wcj-currencies.php:829
109
+ msgid "Add all world currencies, change currency symbol."
110
  msgstr ""
111
 
112
+ #: includes/class-wcj-currencies.php:845
113
+ msgid "Currency Symbol Options"
114
  msgstr ""
115
 
116
+ #: includes/class-wcj-old-slugs.php:105
117
+ msgid "Old Slugs Options"
118
  msgstr ""
119
 
120
+ #: includes/class-wcj-old-slugs.php:111
121
+ msgid "Old Slugs"
122
  msgstr ""
123
 
124
+ #: includes/class-wcj-old-slugs.php:113
125
+ msgid "Enable the Remove Old Product Slugs feature"
126
  msgstr ""
127
 
128
+ #: includes/class-wcj-old-slugs.php:115
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:479
136
+ msgid "Custom Price Labels Options"
137
  msgstr ""
138
 
139
+ #: includes/class-wcj-price-labels.php:485
140
+ msgid "Custom Price Labels"
141
  msgstr ""
142
 
143
+ #: includes/class-wcj-price-labels.php:487
144
+ msgid "Enable the Custom Price Labels feature"
145
  msgstr ""
146
 
147
+ #: includes/class-wcj-price-labels.php:489
148
+ msgid "Create any custom price label for any product."
149
  msgstr ""
150
 
151
+ #: includes/class-wcj-product-info.php:111
152
  msgid "Product Info Options"
153
  msgstr ""
154
 
155
+ #: includes/class-wcj-product-info.php:117
 
156
  msgid "Product Info"
157
  msgstr ""
158
 
159
+ #: includes/class-wcj-product-info.php:119
160
  msgid "Enable the Product Info feature"
161
  msgstr ""
162
 
163
+ #: includes/class-wcj-product-info.php:121
164
+ msgid "Display total product sales etc."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  msgstr ""
166
 
167
+ #: includes/class-wcj-product-info.php:139
168
+ msgid "Total Sales Options"
 
169
  msgstr ""
170
 
171
+ #: includes/class-wcj-product-info.php:145 includes/class-wcj-sorting.php:393
172
+ #: includes/class-wcj-sorting.php:429 includes/class-wcj-sorting.php:465
173
+ #: includes/class-wcj-sorting.php:501
174
+ msgid "Enable"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  msgstr ""
176
 
177
+ #: includes/class-wcj-product-info.php:147
178
+ msgid "Enable Total Sales"
179
  msgstr ""
180
 
181
+ #: includes/class-wcj-product-info.php:165
182
  msgid ""
183
+ "This sets the text to output for total sales. Default is \"Total Sales: "
184
+ "[TOTALSALES]\""
185
  msgstr ""
186
 
187
+ #: includes/class-wcj-product-info.php:171
188
+ msgid "Total Sales: [TOTALSALES]"
189
  msgstr ""
190
 
191
+ #: includes/class-wcj-sorting.php:131 includes/class-wcj-sorting.php:337
192
+ #: includes/class-wcj-sorting.php:343
193
+ msgid "Remove All Sorting"
194
  msgstr ""
195
 
196
+ #: includes/class-wcj-sorting.php:141
197
  msgid "Completely remove sorting from the shop front end"
198
  msgstr ""
199
 
200
+ #: includes/class-wcj-sorting.php:311
201
  msgid "Sorting Options"
202
  msgstr ""
203
 
204
+ #: includes/class-wcj-sorting.php:317
205
  msgid "Sorting"
206
  msgstr ""
207
 
208
+ #: includes/class-wcj-sorting.php:319
209
  msgid "Enable the Sorting feature"
210
  msgstr ""
211
 
212
+ #: includes/class-wcj-sorting.php:321
213
  msgid "Add more sorting options or remove all sorting including default."
214
  msgstr ""
215
 
216
+ #: includes/class-wcj-sorting.php:345
 
 
 
 
217
  msgid "Remove all sorting (including WooCommerce default)"
218
  msgstr ""
219
 
220
+ #: includes/class-wcj-sorting.php:367
221
  msgid "Add More Sorting"
222
  msgstr ""
223
 
224
+ #: includes/class-wcj-sorting.php:373 includes/class-wcj-sorting.php:391
225
  msgid "Sort by Name - Asc"
226
  msgstr ""
227
 
228
+ #: includes/class-wcj-sorting.php:375 includes/class-wcj-sorting.php:411
229
+ #: includes/class-wcj-sorting.php:447 includes/class-wcj-sorting.php:483
230
  msgid "Text visible at front end"
231
  msgstr ""
232
 
233
+ #: includes/class-wcj-sorting.php:395 includes/class-wcj-sorting.php:431
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:445 includes/class-wcj-sorting.php:463
243
  msgid "Sort by SKU - Asc"
244
  msgstr ""
245
 
246
+ #: includes/class-wcj-sorting.php:481 includes/class-wcj-sorting.php:499
247
  msgid "Sort by SKU - Desc"
248
  msgstr ""
249
 
250
+ #: woocommerce-jetpack.php:211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  msgid "Install WooCommerce Jetpack Plus to unlock all features"
252
  msgstr ""
253
 
254
+ #: woocommerce-jetpack.php:213
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:215
261
+ msgid "Buy now just for %s"
262
  msgstr ""
263
 
264
+ #: woocommerce-jetpack.php:215
265
  msgid "Visit %s"
266
  msgstr ""
267
 
268
+ #: woocommerce-jetpack.php:223
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:229
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:235
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
  msgstr ""
295
 
296
  #. Author of the plugin/theme
297
+ msgid "Algoritmika Ltd."
298
  msgstr ""
299
 
300
  #. Author URI of the plugin/theme
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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
 
@@ -68,15 +68,15 @@ Please let us know if you want anything added to list by <a href="http://woojetp
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".
@@ -86,12 +86,12 @@ If you wish that some task would go up the queue to make it faster, please conta
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".
@@ -118,6 +118,10 @@ If you wish that some task would go up the queue to make it faster, please conta
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.
@@ -128,7 +132,7 @@ If you wish that some task would go up the queue to make it faster, please conta
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.
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.4
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
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.5 - 08/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
 
78
  = 1.8.0 - 13/10/2014 =
79
+ * New Feature - Checkout to PDF (wish list). Idea by Mick 01/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".
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
+ * Upgrade Feature - Custom Statuses - Bulk change status.
94
  * Dev - Custom Price Labels - Rearrange settings in product edit (something like `postbox`es).
 
95
 
96
  = 1.9.0 - 20/10/2014 =
97
  * Upgrade Feature - Custom Price Labels - Add "local remove".
118
 
119
  == Changelog ==
120
 
121
+ = 1.7.4 - 07/10/2014 =
122
+ * Fix - Emails - Bcc and Cc options not working, fixed. Reported by Helpmiphone.
123
+ * Fix - Orders - Minimum order amount - "Stop customer from seeing the Checkout page..." option was not working properly: was redirecting to Cart after successful checkout, fixed.
124
+
125
  = 1.7.3 - 04/10/2014 =
126
  * Fix - Product Info - Product Info on Single Product Page - Missing Plus message added. Reported by Manfred.
127
  * Feature Upgraded - Payment Gateways - Option to add up to 10 additional custom payment gateways, added. Idea by Kristof.
132
 
133
  = 1.7.1 - 02/10/2014 =
134
  * Fix - Product Info - `%total_sales%` is temporary disabled.
135
+ This was causing "PHP Parse error" on some servers (PHP 5.3). Reported by Xavier.
136
 
137
  = 1.7.0 - 02/10/2014 =
138
  * Fix - Payment Gateways - Instructions were not showing (suggested by Jen), fixed.
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.3
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.4
7
  Author: Algoritmika Ltd
8
  Author URI: http://www.algoritmika.com
9
  Copyright: © 2014 Algoritmika Ltd.