Persian Woocommerce - Version 3.4.1

Version Description

  • 3.4.x
Download this release

Release Info

Developer hannanstd
Plugin Icon 128x128 Persian Woocommerce
Version 3.4.1
Comparing to
See all releases

Code changes from version 3.4.0 to 3.4.1

assets/css/admin.font.css CHANGED
File without changes
assets/css/datepicker.css CHANGED
File without changes
assets/fonts/BYekan.eot CHANGED
File without changes
assets/fonts/BYekan.ttf CHANGED
File without changes
assets/fonts/BYekan.woff CHANGED
File without changes
assets/images/about.png CHANGED
File without changes
assets/images/datepicker/active-bg.gif CHANGED
File without changes
assets/images/datepicker/dark-bg.gif CHANGED
File without changes
assets/images/datepicker/hover-bg.gif CHANGED
File without changes
assets/images/datepicker/menuarrow.gif CHANGED
File without changes
assets/images/datepicker/normal-bg.gif CHANGED
File without changes
assets/images/datepicker/rowhover-bg.gif CHANGED
File without changes
assets/images/datepicker/status-bg.gif CHANGED
File without changes
assets/images/datepicker/title-bg.gif CHANGED
File without changes
assets/images/datepicker/today-bg.gif CHANGED
File without changes
assets/images/feed.png CHANGED
File without changes
assets/images/logo.png CHANGED
File without changes
assets/images/payir.png CHANGED
File without changes
assets/js/datepicker.js CHANGED
File without changes
assets/js/iran_cities.js CHANGED
File without changes
assets/js/iran_cities.min.js CHANGED
File without changes
include/class-address.php CHANGED
@@ -122,8 +122,14 @@ if ( ! class_exists( 'Persian_Woocommerce_Address' ) ) :
122
  if ( is_checkout() ) {
123
  $types = array( 'billing', 'shipping' );
124
  foreach ( $types as $type ) {
125
- $fields[ $type ][ $type . '_city' ] = $this->modify_city_field( $fields[ $type ][ $type . '_city' ], $type );
126
- $fields[ $type ][ $type . '_state' ] = $this->modify_state_field( $fields[ $type ][ $type . '_state' ], $type );
 
 
 
 
 
 
127
  }
128
  }
129
 
@@ -133,9 +139,13 @@ if ( ! class_exists( 'Persian_Woocommerce_Address' ) ) :
133
  public function billing_fields( $fields ) {
134
 
135
  if ( is_wc_endpoint_url( 'edit-address' ) ) {
136
- $type = 'billing';
137
- $fields[ $type . '_city' ] = $this->modify_city_field( $fields[ $type . '_city' ], $type );
138
- $fields[ $type . '_state' ] = $this->modify_state_field( $fields[ $type . '_state' ], $type );
 
 
 
 
139
  }
140
 
141
  return $fields;
@@ -144,9 +154,13 @@ if ( ! class_exists( 'Persian_Woocommerce_Address' ) ) :
144
  public function shipping_fields( $fields ) {
145
 
146
  if ( is_wc_endpoint_url( 'edit-address' ) ) {
147
- $type = 'shipping';
148
- $fields[ $type . '_city' ] = $this->modify_city_field( $fields[ $type . '_city' ], $type );
149
- $fields[ $type . '_state' ] = $this->modify_state_field( $fields[ $type . '_state' ], $type );
 
 
 
 
150
  }
151
 
152
  return $fields;
122
  if ( is_checkout() ) {
123
  $types = array( 'billing', 'shipping' );
124
  foreach ( $types as $type ) {
125
+
126
+ if ( ! empty( $fields[ $type ][ $type . '_city' ] ) ) {
127
+ $fields[ $type ][ $type . '_city' ] = $this->modify_city_field( $fields[ $type ][ $type . '_city' ], $type );
128
+ }
129
+
130
+ if ( ! empty( $fields[ $type ][ $type . '_state' ] ) ) {
131
+ $fields[ $type ][ $type . '_state' ] = $this->modify_state_field( $fields[ $type ][ $type . '_state' ], $type );
132
+ }
133
  }
134
  }
135
 
139
  public function billing_fields( $fields ) {
140
 
141
  if ( is_wc_endpoint_url( 'edit-address' ) ) {
142
+ $type = 'billing';
143
+ if ( ! empty( $fields[ $type . '_city' ] ) ) {
144
+ $fields[ $type . '_city' ] = $this->modify_city_field( $fields[ $type . '_city' ], $type );
145
+ }
146
+ if ( ! empty( $fields[ $type . '_state' ] ) ) {
147
+ $fields[ $type . '_state' ] = $this->modify_state_field( $fields[ $type . '_state' ], $type );
148
+ }
149
  }
150
 
151
  return $fields;
154
  public function shipping_fields( $fields ) {
155
 
156
  if ( is_wc_endpoint_url( 'edit-address' ) ) {
157
+ $type = 'shipping';
158
+ if ( ! empty( $fields[ $type . '_city' ] ) ) {
159
+ $fields[ $type . '_city' ] = $this->modify_city_field( $fields[ $type . '_city' ], $type );
160
+ }
161
+ if ( ! empty( $fields[ $type . '_state' ] ) ) {
162
+ $fields[ $type . '_state' ] = $this->modify_state_field( $fields[ $type . '_state' ], $type );
163
+ }
164
  }
165
 
166
  return $fields;
include/class-core.php CHANGED
File without changes
include/class-currencies.php CHANGED
File without changes
include/class-gateways.php CHANGED
File without changes
include/class-tools.php CHANGED
File without changes
include/class-translate.php CHANGED
File without changes
include/class-widget.php CHANGED
File without changes
include/gateways/class-payir.php CHANGED
File without changes
include/lib/nusoap-php5.3.php CHANGED
File without changes
include/lib/nusoap-php7.php CHANGED
File without changes
include/lib/nusoap.php CHANGED
File without changes
include/tools/class-datepicker.php CHANGED
File without changes
include/tools/class-price.php CHANGED
File without changes
include/view/html-admin-page-about.php CHANGED
File without changes
include/view/html-admin-page-plugins.php CHANGED
File without changes
include/view/html-admin-page-themes.php CHANGED
File without changes
languages/woocommerce-fa_IR.mo CHANGED
File without changes
languages/woocommerce-fa_IR.po CHANGED
File without changes
languages/woocommerce.pot CHANGED
@@ -1,19270 +1,16797 @@
1
  # Copyright (C) 2018 Automattic
2
  # This file is distributed under the same license as the WooCommerce package.
 
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce 3.4.0\n"
6
  "Report-Msgid-Bugs-To: https://github.com/woocommerce/woocommerce/issues\n"
7
- "POT-Creation-Date: 2018-05-23 12:33:52+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
14
- "X-Generator: grunt-wp-i18n1.0.1\n"
 
 
15
 
16
- #: i18n/continents.php:15
17
- msgid "Africa"
18
  msgstr ""
19
 
20
- #: i18n/continents.php:78 i18n/countries.php:22
21
- msgid "Antarctica"
22
  msgstr ""
23
 
24
- #: i18n/continents.php:88
25
- msgid "Asia"
 
26
  msgstr ""
27
 
28
- #: i18n/continents.php:146
29
- msgid "Europe"
30
- msgstr ""
 
 
 
 
31
 
32
- #: i18n/continents.php:204
33
- msgid "North America"
34
  msgstr ""
35
 
36
- #: i18n/continents.php:251
37
- msgid "Oceania"
38
  msgstr ""
39
 
40
- #: i18n/continents.php:282
41
- msgid "South America"
42
  msgstr ""
43
 
44
- #: i18n/countries.php:14
45
- msgid "Afghanistan"
 
46
  msgstr ""
47
 
48
- #: i18n/countries.php:15
49
- msgid "&#197;land Islands"
 
50
  msgstr ""
51
 
52
- #: i18n/countries.php:16
53
- msgid "Albania"
 
54
  msgstr ""
55
 
56
- #: i18n/countries.php:17
57
- msgid "Algeria"
58
  msgstr ""
59
 
60
- #: i18n/countries.php:18
61
- msgid "American Samoa"
62
  msgstr ""
63
 
64
- #: i18n/countries.php:19
65
- msgid "Andorra"
 
66
  msgstr ""
67
 
68
- #: i18n/countries.php:20
69
- msgid "Angola"
70
  msgstr ""
71
 
72
- #: i18n/countries.php:21
73
- msgid "Anguilla"
74
  msgstr ""
75
 
76
- #: i18n/countries.php:23
77
- msgid "Antigua and Barbuda"
78
  msgstr ""
79
 
80
- #: i18n/countries.php:24
81
- msgid "Argentina"
82
  msgstr ""
83
 
84
- #: i18n/countries.php:25
85
- msgid "Armenia"
86
  msgstr ""
87
 
88
- #: i18n/countries.php:26
89
- msgid "Aruba"
90
  msgstr ""
91
 
92
- #: i18n/countries.php:27
93
- msgid "Australia"
94
  msgstr ""
95
 
96
- #: i18n/countries.php:28
97
- msgid "Austria"
98
  msgstr ""
99
 
100
- #: i18n/countries.php:29
101
- msgid "Azerbaijan"
102
  msgstr ""
103
 
104
- #: i18n/countries.php:30
105
- msgid "Bahamas"
 
 
 
 
106
  msgstr ""
107
 
108
- #: i18n/countries.php:31
109
- msgid "Bahrain"
 
 
110
  msgstr ""
111
 
112
- #: i18n/countries.php:32
113
- msgid "Bangladesh"
 
 
114
  msgstr ""
115
 
116
- #: i18n/countries.php:33
117
- msgid "Barbados"
118
  msgstr ""
119
 
120
- #: i18n/countries.php:34
121
- msgid "Belarus"
122
  msgstr ""
123
 
124
- #: i18n/countries.php:35
125
- msgid "Belgium"
 
 
126
  msgstr ""
127
 
128
- #: i18n/countries.php:36
129
- msgid "Belau"
 
130
  msgstr ""
131
 
132
- #: i18n/countries.php:37
133
- msgid "Belize"
 
 
134
  msgstr ""
135
 
136
- #: i18n/countries.php:38
137
- msgid "Benin"
 
138
  msgstr ""
139
 
140
- #: i18n/countries.php:39
141
- msgid "Bermuda"
142
  msgstr ""
143
 
144
- #: i18n/countries.php:40
145
- msgid "Bhutan"
146
  msgstr ""
147
 
148
- #: i18n/countries.php:41
149
- msgid "Bolivia"
150
  msgstr ""
151
 
152
- #: i18n/countries.php:42
153
- msgid "Bonaire, Saint Eustatius and Saba"
154
  msgstr ""
155
 
156
- #: i18n/countries.php:43
157
- msgid "Bosnia and Herzegovina"
158
  msgstr ""
159
 
160
- #: i18n/countries.php:44
161
- msgid "Botswana"
162
  msgstr ""
163
 
164
- #: i18n/countries.php:45
165
- msgid "Bouvet Island"
166
  msgstr ""
167
 
168
- #: i18n/countries.php:46
169
- msgid "Brazil"
170
  msgstr ""
171
 
172
- #: i18n/countries.php:47
173
- msgid "British Indian Ocean Territory"
174
  msgstr ""
175
 
176
- #: i18n/countries.php:48
177
- msgid "British Virgin Islands"
178
  msgstr ""
179
 
180
- #: i18n/countries.php:49
181
- msgid "Brunei"
182
  msgstr ""
183
 
184
- #: i18n/countries.php:50
185
- msgid "Bulgaria"
186
  msgstr ""
187
 
188
- #: i18n/countries.php:51
189
- msgid "Burkina Faso"
190
  msgstr ""
191
 
192
- #: i18n/countries.php:52
193
- msgid "Burundi"
194
  msgstr ""
195
 
196
- #: i18n/countries.php:53
197
- msgid "Cambodia"
198
  msgstr ""
199
 
200
- #: i18n/countries.php:54
201
- msgid "Cameroon"
202
  msgstr ""
203
 
204
- #: i18n/countries.php:55
205
- msgid "Canada"
206
  msgstr ""
207
 
208
- #: i18n/countries.php:56
209
- msgid "Cape Verde"
210
  msgstr ""
211
 
212
- #: i18n/countries.php:57
213
- msgid "Cayman Islands"
 
 
214
  msgstr ""
215
 
216
- #: i18n/countries.php:58
217
- msgid "Central African Republic"
 
 
218
  msgstr ""
219
 
220
- #: i18n/countries.php:59
221
- msgid "Chad"
222
  msgstr ""
223
 
224
- #: i18n/countries.php:60
225
- msgid "Chile"
 
 
226
  msgstr ""
227
 
228
- #: i18n/countries.php:61
229
- msgid "China"
 
 
230
  msgstr ""
231
 
232
- #: i18n/countries.php:62
233
- msgid "Christmas Island"
 
 
234
  msgstr ""
235
 
236
- #: i18n/countries.php:63
237
- msgid "Cocos (Keeling) Islands"
238
  msgstr ""
239
 
240
- #: i18n/countries.php:64
241
- msgid "Colombia"
242
  msgstr ""
243
 
244
- #: i18n/countries.php:65
245
- msgid "Comoros"
246
  msgstr ""
247
 
248
- #: i18n/countries.php:66
249
- msgid "Congo (Brazzaville)"
250
  msgstr ""
251
 
252
- #: i18n/countries.php:67
253
- msgid "Congo (Kinshasa)"
 
 
254
  msgstr ""
255
 
256
- #: i18n/countries.php:68
257
- msgid "Cook Islands"
 
 
258
  msgstr ""
259
 
260
- #: i18n/countries.php:69
261
- msgid "Costa Rica"
262
  msgstr ""
263
 
264
- #: i18n/countries.php:70
265
- msgid "Croatia"
266
  msgstr ""
267
 
268
- #: i18n/countries.php:71
269
- msgid "Cuba"
270
  msgstr ""
271
 
272
- #: i18n/countries.php:72
273
- msgid "Cura&ccedil;ao"
274
  msgstr ""
275
 
276
- #: i18n/countries.php:73
277
- msgid "Cyprus"
278
  msgstr ""
279
 
280
- #: i18n/countries.php:74
281
- msgid "Czech Republic"
282
  msgstr ""
283
 
284
- #: i18n/countries.php:75
285
- msgid "Denmark"
286
  msgstr ""
287
 
288
- #: i18n/countries.php:76
289
- msgid "Djibouti"
 
290
  msgstr ""
291
 
292
- #: i18n/countries.php:77
293
- msgid "Dominica"
294
  msgstr ""
295
 
296
- #: i18n/countries.php:78
297
- msgid "Dominican Republic"
 
 
298
  msgstr ""
299
 
300
- #: i18n/countries.php:79
301
- msgid "Ecuador"
 
302
  msgstr ""
303
 
304
- #: i18n/countries.php:80
305
- msgid "Egypt"
306
  msgstr ""
307
 
308
- #: i18n/countries.php:81
309
- msgid "El Salvador"
 
310
  msgstr ""
311
 
312
- #: i18n/countries.php:82
313
- msgid "Equatorial Guinea"
314
  msgstr ""
315
 
316
- #: i18n/countries.php:83
317
- msgid "Eritrea"
318
  msgstr ""
319
 
320
- #: i18n/countries.php:84
321
- msgid "Estonia"
322
  msgstr ""
323
 
324
- #: i18n/countries.php:85
325
- msgid "Ethiopia"
326
  msgstr ""
327
 
328
- #: i18n/countries.php:86
329
- msgid "Falkland Islands"
330
  msgstr ""
331
 
332
- #: i18n/countries.php:87
333
- msgid "Faroe Islands"
334
  msgstr ""
335
 
336
- #: i18n/countries.php:88
337
- msgid "Fiji"
338
  msgstr ""
339
 
340
- #: i18n/countries.php:89
341
- msgid "Finland"
 
 
 
342
  msgstr ""
343
 
344
- #: i18n/countries.php:90
345
- msgid "France"
346
  msgstr ""
347
 
348
- #: i18n/countries.php:91
349
- msgid "French Guiana"
350
- msgstr ""
 
 
 
 
351
 
352
- #: i18n/countries.php:92
353
- msgid "French Polynesia"
 
 
 
354
  msgstr ""
355
 
356
- #: i18n/countries.php:93
357
- msgid "French Southern Territories"
 
358
  msgstr ""
359
 
360
- #: i18n/countries.php:94
361
- msgid "Gabon"
362
  msgstr ""
363
 
364
- #: i18n/countries.php:95
365
- msgid "Gambia"
366
  msgstr ""
367
 
368
- #: i18n/countries.php:96
369
- msgid "Georgia"
 
 
370
  msgstr ""
371
 
372
- #: i18n/countries.php:97
373
- msgid "Germany"
374
  msgstr ""
375
 
376
- #: i18n/countries.php:98
377
- msgid "Ghana"
 
378
  msgstr ""
379
 
380
- #: i18n/countries.php:99
381
- msgid "Gibraltar"
 
382
  msgstr ""
383
 
384
- #: i18n/countries.php:100
385
- msgid "Greece"
 
386
  msgstr ""
387
 
388
- #: i18n/countries.php:101
389
- msgid "Greenland"
 
390
  msgstr ""
391
 
392
- #: i18n/countries.php:102
393
- msgid "Grenada"
 
394
  msgstr ""
395
 
396
- #: i18n/countries.php:103
397
- msgid "Guadeloupe"
 
398
  msgstr ""
399
 
400
- #: i18n/countries.php:104
401
- msgid "Guam"
 
402
  msgstr ""
403
 
404
- #: i18n/countries.php:105
405
- msgid "Guatemala"
 
406
  msgstr ""
407
 
408
- #: i18n/countries.php:106
409
- msgid "Guernsey"
 
410
  msgstr ""
411
 
412
- #: i18n/countries.php:107
413
- msgid "Guinea"
 
 
414
  msgstr ""
415
 
416
- #: i18n/countries.php:108
417
- msgid "Guinea-Bissau"
 
 
418
  msgstr ""
419
 
420
- #: i18n/countries.php:109
421
- msgid "Guyana"
422
  msgstr ""
423
 
424
- #: i18n/countries.php:110
425
- msgid "Haiti"
426
  msgstr ""
427
 
428
- #: i18n/countries.php:111
429
- msgid "Heard Island and McDonald Islands"
430
  msgstr ""
431
 
432
- #: i18n/countries.php:112
433
- msgid "Honduras"
434
  msgstr ""
435
 
436
- #: i18n/countries.php:113
437
- msgid "Hong Kong"
438
  msgstr ""
439
 
440
- #: i18n/countries.php:114
441
- msgid "Hungary"
442
  msgstr ""
443
 
444
- #: i18n/countries.php:115
445
- msgid "Iceland"
446
  msgstr ""
447
 
448
- #: i18n/countries.php:116
449
- msgid "India"
450
  msgstr ""
451
 
452
- #: i18n/countries.php:117
453
- msgid "Indonesia"
 
 
 
 
 
454
  msgstr ""
455
 
456
- #: i18n/countries.php:118
457
- msgid "Iran"
 
 
458
  msgstr ""
459
 
460
- #: i18n/countries.php:119
461
- msgid "Iraq"
462
  msgstr ""
463
 
464
- #: i18n/countries.php:120
465
- msgid "Ireland"
 
 
 
466
  msgstr ""
467
 
468
- #: i18n/countries.php:121
469
- msgid "Isle of Man"
470
  msgstr ""
471
 
472
- #: i18n/countries.php:122
473
- msgid "Israel"
474
  msgstr ""
475
 
476
- #: i18n/countries.php:123
477
- msgid "Italy"
 
 
478
  msgstr ""
479
 
480
- #: i18n/countries.php:124
481
- msgid "Ivory Coast"
482
  msgstr ""
483
 
484
- #: i18n/countries.php:125
485
- msgid "Jamaica"
486
  msgstr ""
487
 
488
- #: i18n/countries.php:126
489
- msgid "Japan"
490
  msgstr ""
491
 
492
- #: i18n/countries.php:127
493
- msgid "Jersey"
 
 
494
  msgstr ""
495
 
496
- #: i18n/countries.php:128
497
- msgid "Jordan"
 
 
498
  msgstr ""
499
 
500
- #: i18n/countries.php:129
501
- msgid "Kazakhstan"
502
  msgstr ""
503
 
504
- #: i18n/countries.php:130
505
- msgid "Kenya"
506
  msgstr ""
507
 
508
- #: i18n/countries.php:131
509
- msgid "Kiribati"
510
  msgstr ""
511
 
512
- #: i18n/countries.php:132
513
- msgid "Kuwait"
514
  msgstr ""
515
 
516
- #: i18n/countries.php:133
517
- msgid "Kyrgyzstan"
518
  msgstr ""
519
 
520
- #: i18n/countries.php:134
521
- msgid "Laos"
522
  msgstr ""
523
 
524
- #: i18n/countries.php:135
525
- msgid "Latvia"
526
  msgstr ""
527
 
528
- #: i18n/countries.php:136
529
- msgid "Lebanon"
530
  msgstr ""
531
 
532
- #: i18n/countries.php:137
533
- msgid "Lesotho"
534
  msgstr ""
535
 
536
- #: i18n/countries.php:138
537
- msgid "Liberia"
538
  msgstr ""
539
 
540
- #: i18n/countries.php:139
541
- msgid "Libya"
542
  msgstr ""
543
 
544
- #: i18n/countries.php:140
545
- msgid "Liechtenstein"
546
  msgstr ""
547
 
548
- #: i18n/countries.php:141
549
- msgid "Lithuania"
550
  msgstr ""
551
 
552
- #: i18n/countries.php:142
553
- msgid "Luxembourg"
554
  msgstr ""
555
 
556
- #: i18n/countries.php:143
557
- msgid "Macao S.A.R., China"
558
  msgstr ""
559
 
560
- #: i18n/countries.php:144
561
- msgid "Macedonia"
562
  msgstr ""
563
 
564
- #: i18n/countries.php:145
565
- msgid "Madagascar"
566
  msgstr ""
567
 
568
- #: i18n/countries.php:146
569
- msgid "Malawi"
570
  msgstr ""
571
 
572
- #: i18n/countries.php:147
573
- msgid "Malaysia"
574
  msgstr ""
575
 
576
- #: i18n/countries.php:148
577
- msgid "Maldives"
578
  msgstr ""
579
 
580
- #: i18n/countries.php:149
581
- msgid "Mali"
582
  msgstr ""
583
 
584
- #: i18n/countries.php:150
585
- msgid "Malta"
586
  msgstr ""
587
 
588
- #: i18n/countries.php:151
589
- msgid "Marshall Islands"
590
  msgstr ""
591
 
592
- #: i18n/countries.php:152
593
- msgid "Martinique"
594
  msgstr ""
595
 
596
- #: i18n/countries.php:153
597
- msgid "Mauritania"
598
  msgstr ""
599
 
600
- #: i18n/countries.php:154
601
- msgid "Mauritius"
602
  msgstr ""
603
 
604
- #: i18n/countries.php:155
605
- msgid "Mayotte"
606
  msgstr ""
607
 
608
- #: i18n/countries.php:156
609
- msgid "Mexico"
610
  msgstr ""
611
 
612
- #: i18n/countries.php:157
613
- msgid "Micronesia"
614
  msgstr ""
615
 
616
- #: i18n/countries.php:158
617
- msgid "Moldova"
618
  msgstr ""
619
 
620
- #: i18n/countries.php:159
621
- msgid "Monaco"
622
  msgstr ""
623
 
624
- #: i18n/countries.php:160
625
- msgid "Mongolia"
626
  msgstr ""
627
 
628
- #: i18n/countries.php:161
629
- msgid "Montenegro"
630
  msgstr ""
631
 
632
- #: i18n/countries.php:162
633
- msgid "Montserrat"
634
  msgstr ""
635
 
636
- #: i18n/countries.php:163
637
- msgid "Morocco"
638
  msgstr ""
639
 
640
- #: i18n/countries.php:164
641
- msgid "Mozambique"
642
  msgstr ""
643
 
644
- #: i18n/countries.php:165
645
- msgid "Myanmar"
646
  msgstr ""
647
 
648
- #: i18n/countries.php:166
649
- msgid "Namibia"
650
  msgstr ""
651
 
652
- #: i18n/countries.php:167
653
- msgid "Nauru"
654
  msgstr ""
655
 
656
- #: i18n/countries.php:168
657
- msgid "Nepal"
658
  msgstr ""
659
 
660
- #: i18n/countries.php:169
661
- msgid "Netherlands"
662
  msgstr ""
663
 
664
- #: i18n/countries.php:170
665
- msgid "New Caledonia"
666
  msgstr ""
667
 
668
- #: i18n/countries.php:171
669
- msgid "New Zealand"
670
  msgstr ""
671
 
672
- #: i18n/countries.php:172
673
- msgid "Nicaragua"
 
674
  msgstr ""
675
 
676
- #: i18n/countries.php:173 i18n/states/NG.php:40
677
- msgid "Niger"
 
678
  msgstr ""
679
 
680
- #: i18n/countries.php:174
681
- msgid "Nigeria"
 
682
  msgstr ""
683
 
684
- #: i18n/countries.php:175
685
- msgid "Niue"
 
686
  msgstr ""
687
 
688
- #: i18n/countries.php:176
689
- msgid "Norfolk Island"
 
690
  msgstr ""
691
 
692
- #: i18n/countries.php:177
693
- msgid "Northern Mariana Islands"
 
694
  msgstr ""
695
 
696
- #: i18n/countries.php:178
697
- msgid "North Korea"
 
698
  msgstr ""
699
 
700
- #: i18n/countries.php:179
701
- msgid "Norway"
702
  msgstr ""
703
 
704
- #: i18n/countries.php:180
705
- msgid "Oman"
706
  msgstr ""
707
 
708
- #: i18n/countries.php:181
709
- msgid "Pakistan"
710
  msgstr ""
711
 
712
- #: i18n/countries.php:182
713
- msgid "Palestinian Territory"
714
  msgstr ""
715
 
716
- #: i18n/countries.php:183
717
- msgid "Panama"
718
  msgstr ""
719
 
720
- #: i18n/countries.php:184
721
- msgid "Papua New Guinea"
722
  msgstr ""
723
 
724
- #: i18n/countries.php:185
725
- msgid "Paraguay"
 
 
726
  msgstr ""
727
 
728
- #: i18n/countries.php:186
729
- msgid "Peru"
730
  msgstr ""
731
 
732
- #: i18n/countries.php:187
733
- msgid "Philippines"
734
  msgstr ""
735
 
736
- #: i18n/countries.php:188
737
- msgid "Pitcairn"
 
738
  msgstr ""
739
 
740
- #: i18n/countries.php:189
741
- msgid "Poland"
742
  msgstr ""
743
 
744
- #: i18n/countries.php:190
745
- msgid "Portugal"
746
  msgstr ""
747
 
748
- #: i18n/countries.php:191
749
- msgid "Puerto Rico"
750
  msgstr ""
751
 
752
- #: i18n/countries.php:192
753
- msgid "Qatar"
754
  msgstr ""
755
 
756
- #: i18n/countries.php:193
757
- msgid "Reunion"
 
 
758
  msgstr ""
759
 
760
- #: i18n/countries.php:194
761
- msgid "Romania"
762
  msgstr ""
763
 
764
- #: i18n/countries.php:195
765
- msgid "Russia"
 
 
766
  msgstr ""
767
 
768
- #: i18n/countries.php:196
769
- msgid "Rwanda"
770
  msgstr ""
771
 
772
- #: i18n/countries.php:197
773
- msgid "Saint Barth&eacute;lemy"
 
 
774
  msgstr ""
775
 
776
- #: i18n/countries.php:198
777
- msgid "Saint Helena"
778
  msgstr ""
779
 
780
- #: i18n/countries.php:199
781
- msgid "Saint Kitts and Nevis"
782
  msgstr ""
783
 
784
- #: i18n/countries.php:200
785
- msgid "Saint Lucia"
786
  msgstr ""
787
 
788
- #: i18n/countries.php:201
789
- msgid "Saint Martin (French part)"
 
790
  msgstr ""
791
 
792
- #: i18n/countries.php:202
793
- msgid "Saint Martin (Dutch part)"
794
  msgstr ""
795
 
796
- #: i18n/countries.php:203
797
- msgid "Saint Pierre and Miquelon"
798
  msgstr ""
799
 
800
- #: i18n/countries.php:204
801
- msgid "Saint Vincent and the Grenadines"
802
  msgstr ""
803
 
804
- #: i18n/countries.php:205
805
- msgid "San Marino"
806
  msgstr ""
807
 
808
- #: i18n/countries.php:206
809
- msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
810
  msgstr ""
811
 
812
- #: i18n/countries.php:207
813
- msgid "Saudi Arabia"
814
  msgstr ""
815
 
816
- #: i18n/countries.php:208
817
- msgid "Senegal"
818
  msgstr ""
819
 
820
- #: i18n/countries.php:209
821
- msgid "Serbia"
822
  msgstr ""
823
 
824
- #: i18n/countries.php:210
825
- msgid "Seychelles"
826
  msgstr ""
827
 
828
- #: i18n/countries.php:211
829
- msgid "Sierra Leone"
830
  msgstr ""
831
 
832
- #: i18n/countries.php:212
833
- msgid "Singapore"
834
  msgstr ""
835
 
836
- #: i18n/countries.php:213
837
- msgid "Slovakia"
 
838
  msgstr ""
839
 
840
- #: i18n/countries.php:214
841
- msgid "Slovenia"
842
  msgstr ""
843
 
844
- #: i18n/countries.php:215
845
- msgid "Solomon Islands"
846
  msgstr ""
847
 
848
- #: i18n/countries.php:216
849
- msgid "Somalia"
850
  msgstr ""
851
 
852
- #: i18n/countries.php:217
853
- msgid "South Africa"
854
  msgstr ""
855
 
856
- #: i18n/countries.php:218
857
- msgid "South Georgia/Sandwich Islands"
858
  msgstr ""
859
 
860
- #: i18n/countries.php:219
861
- msgid "South Korea"
862
  msgstr ""
863
 
864
- #: i18n/countries.php:220
865
- msgid "South Sudan"
866
  msgstr ""
867
 
868
- #: i18n/countries.php:221
869
- msgid "Spain"
870
  msgstr ""
871
 
872
- #: i18n/countries.php:222
873
- msgid "Sri Lanka"
874
  msgstr ""
875
 
876
- #: i18n/countries.php:223
877
- msgid "Sudan"
878
  msgstr ""
879
 
880
- #: i18n/countries.php:224
881
- msgid "Suriname"
882
  msgstr ""
883
 
884
- #: i18n/countries.php:225
885
- msgid "Svalbard and Jan Mayen"
886
  msgstr ""
887
 
888
- #: i18n/countries.php:226
889
- msgid "Swaziland"
890
  msgstr ""
891
 
892
- #: i18n/countries.php:227
893
- msgid "Sweden"
894
  msgstr ""
895
 
896
- #: i18n/countries.php:228
897
- msgid "Switzerland"
 
898
  msgstr ""
899
 
900
- #: i18n/countries.php:229
901
- msgid "Syria"
902
  msgstr ""
903
 
904
- #: i18n/countries.php:230
905
- msgid "Taiwan"
906
  msgstr ""
907
 
908
- #: i18n/countries.php:231
909
- msgid "Tajikistan"
910
  msgstr ""
911
 
912
- #: i18n/countries.php:232
913
- msgid "Tanzania"
914
  msgstr ""
915
 
916
- #: i18n/countries.php:233
917
- msgid "Thailand"
918
  msgstr ""
919
 
920
- #: i18n/countries.php:234
921
- msgid "Timor-Leste"
922
  msgstr ""
923
 
924
- #: i18n/countries.php:235
925
- msgid "Togo"
926
  msgstr ""
927
 
928
- #: i18n/countries.php:236
929
- msgid "Tokelau"
930
  msgstr ""
931
 
932
- #: i18n/countries.php:237
933
- msgid "Tonga"
 
 
 
934
  msgstr ""
935
 
936
- #: i18n/countries.php:238
937
- msgid "Trinidad and Tobago"
 
 
938
  msgstr ""
939
 
940
- #: i18n/countries.php:239
941
- msgid "Tunisia"
 
 
942
  msgstr ""
943
 
944
- #: i18n/countries.php:240
945
- msgid "Turkey"
 
 
946
  msgstr ""
947
 
948
- #: i18n/countries.php:241
949
- msgid "Turkmenistan"
 
 
950
  msgstr ""
951
 
952
- #: i18n/countries.php:242
953
- msgid "Turks and Caicos Islands"
 
 
954
  msgstr ""
955
 
956
- #: i18n/countries.php:243
957
- msgid "Tuvalu"
 
 
958
  msgstr ""
959
 
960
- #: i18n/countries.php:244
961
- msgid "Uganda"
 
 
962
  msgstr ""
963
 
964
- #: i18n/countries.php:245
965
- msgid "Ukraine"
 
 
966
  msgstr ""
967
 
968
- #: i18n/countries.php:246
969
- msgid "United Arab Emirates"
 
 
970
  msgstr ""
971
 
972
- #: i18n/countries.php:247
973
- msgid "United Kingdom (UK)"
974
  msgstr ""
975
 
976
- #: i18n/countries.php:248
977
- msgid "United States (US)"
978
  msgstr ""
979
 
980
- #: i18n/countries.php:249
981
- msgid "United States (US) Minor Outlying Islands"
 
982
  msgstr ""
983
 
984
- #: i18n/countries.php:250
985
- msgid "United States (US) Virgin Islands"
986
  msgstr ""
987
 
988
- #: i18n/countries.php:251
989
- msgid "Uruguay"
990
  msgstr ""
991
 
992
- #: i18n/countries.php:252
993
- msgid "Uzbekistan"
994
  msgstr ""
995
 
996
- #: i18n/countries.php:253
997
- msgid "Vanuatu"
998
  msgstr ""
999
 
1000
- #: i18n/countries.php:254
1001
- msgid "Vatican"
1002
  msgstr ""
1003
 
1004
- #: i18n/countries.php:255
1005
- msgid "Venezuela"
1006
  msgstr ""
1007
 
1008
- #: i18n/countries.php:256
1009
- msgid "Vietnam"
1010
  msgstr ""
1011
 
1012
- #: i18n/countries.php:257
1013
- msgid "Wallis and Futuna"
1014
  msgstr ""
1015
 
1016
- #: i18n/countries.php:258
1017
- msgid "Western Sahara"
1018
  msgstr ""
1019
 
1020
- #: i18n/countries.php:259
1021
- msgid "Samoa"
1022
  msgstr ""
1023
 
1024
- #: i18n/countries.php:260
1025
- msgid "Yemen"
1026
  msgstr ""
1027
 
1028
- #: i18n/countries.php:261
1029
- msgid "Zambia"
1030
  msgstr ""
1031
 
1032
- #: i18n/countries.php:262
1033
- msgid "Zimbabwe"
1034
  msgstr ""
1035
 
1036
- #: i18n/locale-info.php:380
1037
- msgid "Consumption tax"
1038
  msgstr ""
1039
 
1040
- #: i18n/states/AO.php:14
1041
- msgid "Bengo"
1042
  msgstr ""
1043
 
1044
- #: i18n/states/AO.php:15
1045
- msgid "Benguela"
1046
  msgstr ""
1047
 
1048
- #: i18n/states/AO.php:16
1049
- msgid "Bié"
1050
  msgstr ""
1051
 
1052
- #: i18n/states/AO.php:17
1053
- msgid "Cabinda"
1054
  msgstr ""
1055
 
1056
- #: i18n/states/AO.php:18
1057
- msgid "Cunene"
1058
  msgstr ""
1059
 
1060
- #: i18n/states/AO.php:19
1061
- msgid "Huambo"
1062
  msgstr ""
1063
 
1064
- #: i18n/states/AO.php:20
1065
- msgid "Huíla"
1066
  msgstr ""
1067
 
1068
- #: i18n/states/AO.php:21
1069
- msgid "Kuando Kubango"
1070
  msgstr ""
1071
 
1072
- #: i18n/states/AO.php:22
1073
- msgid "Kwanza-Norte"
 
1074
  msgstr ""
1075
 
1076
- #: i18n/states/AO.php:23
1077
- msgid "Kwanza-Sul"
1078
  msgstr ""
1079
 
1080
- #: i18n/states/AO.php:24
1081
- msgid "Luanda"
1082
  msgstr ""
1083
 
1084
- #: i18n/states/AO.php:25
1085
- msgid "Lunda-Norte"
1086
  msgstr ""
1087
 
1088
- #: i18n/states/AO.php:26
1089
- msgid "Lunda-Sul"
1090
  msgstr ""
1091
 
1092
- #: i18n/states/AO.php:27
1093
- msgid "Malanje"
1094
  msgstr ""
1095
 
1096
- #: i18n/states/AO.php:28
1097
- msgid "Moxico"
1098
  msgstr ""
1099
 
1100
- #: i18n/states/AO.php:29
1101
- msgid "Namibe"
1102
  msgstr ""
1103
 
1104
- #: i18n/states/AO.php:30
1105
- msgid "Uíge"
1106
  msgstr ""
1107
 
1108
- #: i18n/states/AO.php:31
1109
- msgid "Zaire"
1110
  msgstr ""
1111
 
1112
- #: i18n/states/AR.php:14
1113
- msgid "Ciudad Aut&oacute;noma de Buenos Aires"
 
1114
  msgstr ""
1115
 
1116
- #: i18n/states/AR.php:15
1117
- msgid "Buenos Aires"
1118
  msgstr ""
1119
 
1120
- #: i18n/states/AR.php:16
1121
- msgid "Catamarca"
1122
  msgstr ""
1123
 
1124
- #: i18n/states/AR.php:17
1125
- msgid "Chaco"
1126
  msgstr ""
1127
 
1128
- #: i18n/states/AR.php:18
1129
- msgid "Chubut"
1130
  msgstr ""
1131
 
1132
- #: i18n/states/AR.php:19 i18n/states/ES.php:31
1133
- msgid "C&oacute;rdoba"
1134
  msgstr ""
1135
 
1136
- #: i18n/states/AR.php:20
1137
- msgid "Corrientes"
1138
  msgstr ""
1139
 
1140
- #: i18n/states/AR.php:21
1141
- msgid "Entre R&iacute;os"
1142
  msgstr ""
1143
 
1144
- #: i18n/states/AR.php:22
1145
- msgid "Formosa"
 
1146
  msgstr ""
1147
 
1148
- #: i18n/states/AR.php:23
1149
- msgid "Jujuy"
1150
  msgstr ""
1151
 
1152
- #: i18n/states/AR.php:24
1153
- msgid "La Pampa"
1154
  msgstr ""
1155
 
1156
- #: i18n/states/AR.php:25 i18n/states/ES.php:40
1157
- msgid "La Rioja"
1158
  msgstr ""
1159
 
1160
- #: i18n/states/AR.php:26
1161
- msgid "Mendoza"
1162
  msgstr ""
1163
 
1164
- #: i18n/states/AR.php:27
1165
- msgid "Misiones"
1166
  msgstr ""
1167
 
1168
- #: i18n/states/AR.php:28
1169
- msgid "Neuqu&eacute;n"
1170
  msgstr ""
1171
 
1172
- #: i18n/states/AR.php:29
1173
- msgid "R&iacute;o Negro"
1174
  msgstr ""
1175
 
1176
- #: i18n/states/AR.php:30
1177
- msgid "Salta"
1178
  msgstr ""
1179
 
1180
- #: i18n/states/AR.php:31
1181
- msgid "San Juan"
1182
  msgstr ""
1183
 
1184
- #: i18n/states/AR.php:32
1185
- msgid "San Luis"
1186
  msgstr ""
1187
 
1188
- #: i18n/states/AR.php:33 i18n/states/BO.php:21
1189
- msgid "Santa Cruz"
1190
  msgstr ""
1191
 
1192
- #: i18n/states/AR.php:34
1193
- msgid "Santa Fe"
1194
  msgstr ""
1195
 
1196
- #: i18n/states/AR.php:35
1197
- msgid "Santiago del Estero"
1198
  msgstr ""
1199
 
1200
- #: i18n/states/AR.php:36
1201
- msgid "Tierra del Fuego"
1202
- msgstr ""
 
 
 
 
1203
 
1204
- #: i18n/states/AR.php:37
1205
- msgid "Tucum&aacute;n"
1206
- msgstr ""
 
 
 
 
1207
 
1208
- #: i18n/states/AU.php:14
1209
- msgid "Australian Capital Territory"
1210
- msgstr ""
 
 
 
 
1211
 
1212
- #: i18n/states/AU.php:15
1213
- msgid "New South Wales"
1214
- msgstr ""
 
 
 
 
1215
 
1216
- #: i18n/states/AU.php:16
1217
- msgid "Northern Territory"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1218
  msgstr ""
1219
 
1220
- #: i18n/states/AU.php:17
1221
- msgid "Queensland"
1222
  msgstr ""
1223
 
1224
- #: i18n/states/AU.php:18
1225
- msgid "South Australia"
1226
  msgstr ""
1227
 
1228
- #: i18n/states/AU.php:19
1229
- msgid "Tasmania"
1230
  msgstr ""
1231
 
1232
- #: i18n/states/AU.php:20
1233
- msgid "Victoria"
1234
  msgstr ""
1235
 
1236
- #: i18n/states/AU.php:21
1237
- msgid "Western Australia"
1238
  msgstr ""
1239
 
1240
- #: i18n/states/BD.php:13
1241
- msgid "Bagerhat"
1242
  msgstr ""
1243
 
1244
- #: i18n/states/BD.php:14
1245
- msgid "Bandarban"
1246
  msgstr ""
1247
 
1248
- #: i18n/states/BD.php:15
1249
- msgid "Barguna"
1250
  msgstr ""
1251
 
1252
- #: i18n/states/BD.php:16
1253
- msgid "Barishal"
1254
  msgstr ""
1255
 
1256
- #: i18n/states/BD.php:17
1257
- msgid "Bhola"
1258
  msgstr ""
1259
 
1260
- #: i18n/states/BD.php:18
1261
- msgid "Bogura"
1262
  msgstr ""
1263
 
1264
- #: i18n/states/BD.php:19
1265
- msgid "Brahmanbaria"
1266
  msgstr ""
1267
 
1268
- #: i18n/states/BD.php:20
1269
- msgid "Chandpur"
1270
  msgstr ""
1271
 
1272
- #: i18n/states/BD.php:21
1273
- msgid "Chattogram"
1274
  msgstr ""
1275
 
1276
- #: i18n/states/BD.php:22
1277
- msgid "Chuadanga"
 
1278
  msgstr ""
1279
 
1280
- #: i18n/states/BD.php:23
1281
- msgid "Cox's Bazar"
1282
  msgstr ""
1283
 
1284
- #: i18n/states/BD.php:24
1285
- msgid "Cumilla"
1286
  msgstr ""
1287
 
1288
- #: i18n/states/BD.php:25
1289
- msgid "Dhaka"
1290
  msgstr ""
1291
 
1292
- #: i18n/states/BD.php:26
1293
- msgid "Dinajpur"
1294
  msgstr ""
1295
 
1296
- #: i18n/states/BD.php:27
1297
- msgid "Faridpur "
1298
  msgstr ""
1299
 
1300
- #: i18n/states/BD.php:28
1301
- msgid "Feni"
1302
  msgstr ""
1303
 
1304
- #: i18n/states/BD.php:29
1305
- msgid "Gaibandha"
1306
  msgstr ""
1307
 
1308
- #: i18n/states/BD.php:30
1309
- msgid "Gazipur"
1310
  msgstr ""
1311
 
1312
- #: i18n/states/BD.php:31
1313
- msgid "Gopalganj"
1314
  msgstr ""
1315
 
1316
- #: i18n/states/BD.php:32
1317
- msgid "Habiganj"
1318
  msgstr ""
1319
 
1320
- #: i18n/states/BD.php:33
1321
- msgid "Jamalpur"
1322
  msgstr ""
1323
 
1324
- #: i18n/states/BD.php:34
1325
- msgid "Jashore"
1326
  msgstr ""
1327
 
1328
- #: i18n/states/BD.php:35
1329
- msgid "Jhalokati"
1330
  msgstr ""
1331
 
1332
- #: i18n/states/BD.php:36
1333
- msgid "Jhenaidah"
1334
  msgstr ""
1335
 
1336
- #: i18n/states/BD.php:37
1337
- msgid "Joypurhat"
1338
  msgstr ""
1339
 
1340
- #: i18n/states/BD.php:38
1341
- msgid "Khagrachhari"
1342
  msgstr ""
1343
 
1344
- #: i18n/states/BD.php:39
1345
- msgid "Khulna"
1346
  msgstr ""
1347
 
1348
- #: i18n/states/BD.php:40
1349
- msgid "Kishoreganj"
1350
  msgstr ""
1351
 
1352
- #: i18n/states/BD.php:41
1353
- msgid "Kurigram"
1354
  msgstr ""
1355
 
1356
- #: i18n/states/BD.php:42
1357
- msgid "Kushtia"
1358
  msgstr ""
1359
 
1360
- #: i18n/states/BD.php:43
1361
- msgid "Lakshmipur"
1362
  msgstr ""
1363
 
1364
- #: i18n/states/BD.php:44
1365
- msgid "Lalmonirhat"
 
1366
  msgstr ""
1367
 
1368
- #: i18n/states/BD.php:45
1369
- msgid "Madaripur"
 
1370
  msgstr ""
1371
 
1372
- #: i18n/states/BD.php:46
1373
- msgid "Magura"
 
1374
  msgstr ""
1375
 
1376
- #: i18n/states/BD.php:47
1377
- msgid "Manikganj "
1378
  msgstr ""
1379
 
1380
- #: i18n/states/BD.php:48
1381
- msgid "Meherpur"
1382
  msgstr ""
1383
 
1384
- #: i18n/states/BD.php:49
1385
- msgid "Moulvibazar"
1386
  msgstr ""
1387
 
1388
- #: i18n/states/BD.php:50
1389
- msgid "Munshiganj"
 
 
1390
  msgstr ""
1391
 
1392
- #: i18n/states/BD.php:51
1393
- msgid "Mymensingh"
 
 
1394
  msgstr ""
1395
 
1396
- #: i18n/states/BD.php:52
1397
- msgid "Naogaon"
 
 
1398
  msgstr ""
1399
 
1400
- #: i18n/states/BD.php:53
1401
- msgid "Narail"
 
1402
  msgstr ""
1403
 
1404
- #: i18n/states/BD.php:54
1405
- msgid "Narayanganj"
1406
  msgstr ""
1407
 
1408
- #: i18n/states/BD.php:55
1409
- msgid "Narsingdi"
 
 
1410
  msgstr ""
1411
 
1412
- #: i18n/states/BD.php:56
1413
- msgid "Natore"
 
 
1414
  msgstr ""
1415
 
1416
- #: i18n/states/BD.php:57
1417
- msgid "Nawabganj"
1418
  msgstr ""
1419
 
1420
- #: i18n/states/BD.php:58
1421
- msgid "Netrakona"
 
 
1422
  msgstr ""
1423
 
1424
- #: i18n/states/BD.php:59
1425
- msgid "Nilphamari"
1426
  msgstr ""
1427
 
1428
- #: i18n/states/BD.php:60
1429
- msgid "Noakhali"
1430
- msgstr ""
 
 
 
1431
 
1432
- #: i18n/states/BD.php:61
1433
- msgid "Pabna"
1434
  msgstr ""
1435
 
1436
- #: i18n/states/BD.php:62
1437
- msgid "Panchagarh"
1438
  msgstr ""
1439
 
1440
- #: i18n/states/BD.php:63
1441
- msgid "Patuakhali"
1442
  msgstr ""
1443
 
1444
- #: i18n/states/BD.php:64
1445
- msgid "Pirojpur"
 
 
1446
  msgstr ""
1447
 
1448
- #: i18n/states/BD.php:65
1449
- msgid "Rajbari"
 
 
1450
  msgstr ""
1451
 
1452
- #: i18n/states/BD.php:66
1453
- msgid "Rajshahi"
 
 
1454
  msgstr ""
1455
 
1456
- #: i18n/states/BD.php:67
1457
- msgid "Rangamati"
 
 
1458
  msgstr ""
1459
 
1460
- #: i18n/states/BD.php:68
1461
- msgid "Rangpur"
 
 
 
1462
  msgstr ""
1463
 
1464
- #: i18n/states/BD.php:69
1465
- msgid "Satkhira"
1466
  msgstr ""
1467
 
1468
- #: i18n/states/BD.php:70
1469
- msgid "Shariatpur"
 
 
1470
  msgstr ""
1471
 
1472
- #: i18n/states/BD.php:71
1473
- msgid "Sherpur"
 
 
1474
  msgstr ""
1475
 
1476
- #: i18n/states/BD.php:72
1477
- msgid "Sirajganj"
1478
  msgstr ""
1479
 
1480
- #: i18n/states/BD.php:73
1481
- msgid "Sunamganj"
 
 
 
1482
  msgstr ""
1483
 
1484
- #: i18n/states/BD.php:74
1485
- msgid "Sylhet"
 
1486
  msgstr ""
1487
 
1488
- #: i18n/states/BD.php:75
1489
- msgid "Tangail"
1490
  msgstr ""
1491
 
1492
- #: i18n/states/BD.php:76
1493
- msgid "Thakurgaon"
1494
  msgstr ""
1495
 
1496
- #: i18n/states/BG.php:14
1497
- msgid "Blagoevgrad"
1498
  msgstr ""
1499
 
1500
- #: i18n/states/BG.php:15
1501
- msgid "Burgas"
1502
  msgstr ""
1503
 
1504
- #: i18n/states/BG.php:16
1505
- msgid "Dobrich"
 
 
1506
  msgstr ""
1507
 
1508
- #: i18n/states/BG.php:17
1509
- msgid "Gabrovo"
 
 
1510
  msgstr ""
1511
 
1512
- #: i18n/states/BG.php:18
1513
- msgid "Haskovo"
 
 
1514
  msgstr ""
1515
 
1516
- #: i18n/states/BG.php:19
1517
- msgid "Kardzhali"
1518
  msgstr ""
1519
 
1520
- #: i18n/states/BG.php:20
1521
- msgid "Kyustendil"
1522
  msgstr ""
1523
 
1524
- #: i18n/states/BG.php:21
1525
- msgid "Lovech"
1526
  msgstr ""
1527
 
1528
- #: i18n/states/BG.php:22 i18n/states/US.php:40
1529
- msgid "Montana"
 
 
1530
  msgstr ""
1531
 
1532
- #: i18n/states/BG.php:23
1533
- msgid "Pazardzhik"
1534
  msgstr ""
1535
 
1536
- #: i18n/states/BG.php:24
1537
- msgid "Pernik"
 
 
 
1538
  msgstr ""
1539
 
1540
- #: i18n/states/BG.php:25
1541
- msgid "Pleven"
 
 
 
 
 
 
 
 
1542
  msgstr ""
1543
 
1544
- #: i18n/states/BG.php:26
1545
- msgid "Plovdiv"
1546
  msgstr ""
1547
 
1548
- #: i18n/states/BG.php:27
1549
- msgid "Razgrad"
 
 
 
1550
  msgstr ""
1551
 
1552
- #: i18n/states/BG.php:28
1553
- msgid "Ruse"
 
1554
  msgstr ""
1555
 
1556
- #: i18n/states/BG.php:29
1557
- msgid "Shumen"
 
 
1558
  msgstr ""
1559
 
1560
- #: i18n/states/BG.php:30
1561
- msgid "Silistra"
1562
  msgstr ""
1563
 
1564
- #: i18n/states/BG.php:31
1565
- msgid "Sliven"
1566
  msgstr ""
1567
 
1568
- #: i18n/states/BG.php:32
1569
- msgid "Smolyan"
 
 
1570
  msgstr ""
1571
 
1572
- #: i18n/states/BG.php:33
1573
- msgid "Sofia"
 
 
 
1574
  msgstr ""
1575
 
1576
- #: i18n/states/BG.php:34
1577
- msgid "Sofia-Grad"
 
 
1578
  msgstr ""
1579
 
1580
- #: i18n/states/BG.php:35
1581
- msgid "Stara Zagora"
 
1582
  msgstr ""
1583
 
1584
- #: i18n/states/BG.php:36
1585
- msgid "Targovishte"
 
1586
  msgstr ""
1587
 
1588
- #: i18n/states/BG.php:37
1589
- msgid "Varna"
1590
  msgstr ""
1591
 
1592
- #: i18n/states/BG.php:38
1593
- msgid "Veliko Tarnovo"
1594
  msgstr ""
1595
 
1596
- #: i18n/states/BG.php:39
1597
- msgid "Vidin"
1598
  msgstr ""
1599
 
1600
- #: i18n/states/BG.php:40
1601
- msgid "Vratsa"
1602
  msgstr ""
1603
 
1604
- #: i18n/states/BG.php:41
1605
- msgid "Yambol"
1606
  msgstr ""
1607
 
1608
- #: i18n/states/BO.php:14
1609
- msgid "Chuquisaca"
1610
  msgstr ""
1611
 
1612
- #: i18n/states/BO.php:15
1613
- msgid "Beni"
1614
  msgstr ""
1615
 
1616
- #: i18n/states/BO.php:16
1617
- msgid "Cochabamba"
1618
  msgstr ""
1619
 
1620
- #: i18n/states/BO.php:17
1621
- msgid "La Paz"
1622
  msgstr ""
1623
 
1624
- #: i18n/states/BO.php:18
1625
- msgid "Oruro"
1626
  msgstr ""
1627
 
1628
- #: i18n/states/BO.php:19
1629
- msgid "Pando"
1630
  msgstr ""
1631
 
1632
- #: i18n/states/BO.php:20
1633
- msgid "Potosí"
1634
  msgstr ""
1635
 
1636
- #: i18n/states/BO.php:22
1637
- msgid "Tarija"
1638
  msgstr ""
1639
 
1640
- #: i18n/states/BR.php:14
1641
- msgid "Acre"
1642
  msgstr ""
1643
 
1644
- #: i18n/states/BR.php:15
1645
- msgid "Alagoas"
1646
  msgstr ""
1647
 
1648
- #: i18n/states/BR.php:16
1649
- msgid "Amap&aacute;"
1650
  msgstr ""
1651
 
1652
- #: i18n/states/BR.php:17 i18n/states/PE.php:16
1653
- msgid "Amazonas"
1654
  msgstr ""
1655
 
1656
- #: i18n/states/BR.php:18
1657
- msgid "Bahia"
1658
  msgstr ""
1659
 
1660
- #: i18n/states/BR.php:19
1661
- msgid "Cear&aacute;"
1662
  msgstr ""
1663
 
1664
- #: i18n/states/BR.php:20
1665
- msgid "Distrito Federal"
1666
  msgstr ""
1667
 
1668
- #: i18n/states/BR.php:21
1669
- msgid "Esp&iacute;rito Santo"
1670
  msgstr ""
1671
 
1672
- #: i18n/states/BR.php:22
1673
- msgid "Goi&aacute;s"
1674
  msgstr ""
1675
 
1676
- #: i18n/states/BR.php:23
1677
- msgid "Maranh&atilde;o"
1678
  msgstr ""
1679
 
1680
- #: i18n/states/BR.php:24
1681
- msgid "Mato Grosso"
1682
  msgstr ""
1683
 
1684
- #: i18n/states/BR.php:25
1685
- msgid "Mato Grosso do Sul"
1686
  msgstr ""
1687
 
1688
- #: i18n/states/BR.php:26
1689
- msgid "Minas Gerais"
1690
  msgstr ""
1691
 
1692
- #: i18n/states/BR.php:27
1693
- msgid "Par&aacute;"
1694
  msgstr ""
1695
 
1696
- #: i18n/states/BR.php:28
1697
- msgid "Para&iacute;ba"
1698
  msgstr ""
1699
 
1700
- #: i18n/states/BR.php:29
1701
- msgid "Paran&aacute;"
1702
  msgstr ""
1703
 
1704
- #: i18n/states/BR.php:30
1705
- msgid "Pernambuco"
1706
  msgstr ""
1707
 
1708
- #: i18n/states/BR.php:31
1709
- msgid "Piau&iacute;"
1710
  msgstr ""
1711
 
1712
- #: i18n/states/BR.php:32
1713
- msgid "Rio de Janeiro"
1714
  msgstr ""
1715
 
1716
- #: i18n/states/BR.php:33
1717
- msgid "Rio Grande do Norte"
1718
  msgstr ""
1719
 
1720
- #: i18n/states/BR.php:34
1721
- msgid "Rio Grande do Sul"
1722
  msgstr ""
1723
 
1724
- #: i18n/states/BR.php:35
1725
- msgid "Rond&ocirc;nia"
 
 
1726
  msgstr ""
1727
 
1728
- #: i18n/states/BR.php:36
1729
- msgid "Roraima"
 
 
1730
  msgstr ""
1731
 
1732
- #: i18n/states/BR.php:37
1733
- msgid "Santa Catarina"
 
 
1734
  msgstr ""
1735
 
1736
- #: i18n/states/BR.php:38
1737
- msgid "S&atilde;o Paulo"
1738
  msgstr ""
1739
 
1740
- #: i18n/states/BR.php:39
1741
- msgid "Sergipe"
 
 
1742
  msgstr ""
1743
 
1744
- #: i18n/states/BR.php:40
1745
- msgid "Tocantins"
1746
  msgstr ""
1747
 
1748
- #: i18n/states/CA.php:14
1749
- msgid "Alberta"
1750
  msgstr ""
1751
 
1752
- #: i18n/states/CA.php:15
1753
- msgid "British Columbia"
1754
  msgstr ""
1755
 
1756
- #: i18n/states/CA.php:16
1757
- msgid "Manitoba"
1758
  msgstr ""
1759
 
1760
- #: i18n/states/CA.php:17
1761
- msgid "New Brunswick"
 
 
1762
  msgstr ""
1763
 
1764
- #: i18n/states/CA.php:18
1765
- msgid "Newfoundland and Labrador"
1766
  msgstr ""
1767
 
1768
- #: i18n/states/CA.php:19
1769
- msgid "Northwest Territories"
1770
  msgstr ""
1771
 
1772
- #: i18n/states/CA.php:20
1773
- msgid "Nova Scotia"
1774
  msgstr ""
1775
 
1776
- #: i18n/states/CA.php:21
1777
- msgid "Nunavut"
1778
  msgstr ""
1779
 
1780
- #: i18n/states/CA.php:22
1781
- msgid "Ontario"
1782
  msgstr ""
1783
 
1784
- #: i18n/states/CA.php:23
1785
- msgid "Prince Edward Island"
1786
  msgstr ""
1787
 
1788
- #: i18n/states/CA.php:24
1789
- msgid "Quebec"
1790
  msgstr ""
1791
 
1792
- #: i18n/states/CA.php:25
1793
- msgid "Saskatchewan"
 
 
1794
  msgstr ""
1795
 
1796
- #: i18n/states/CA.php:26
1797
- msgid "Yukon Territory"
 
 
1798
  msgstr ""
1799
 
1800
- #: i18n/states/CH.php:14
1801
- msgid "Aargau"
 
 
1802
  msgstr ""
1803
 
1804
- #: i18n/states/CH.php:15
1805
- msgid "Appenzell Ausserrhoden"
1806
  msgstr ""
1807
 
1808
- #: i18n/states/CH.php:16
1809
- msgid "Appenzell Innerrhoden"
 
 
1810
  msgstr ""
1811
 
1812
- #: i18n/states/CH.php:17
1813
- msgid "Basel-Landschaft"
1814
  msgstr ""
1815
 
1816
- #: i18n/states/CH.php:18
1817
- msgid "Basel-Stadt"
1818
  msgstr ""
1819
 
1820
- #: i18n/states/CH.php:19
1821
- msgid "Bern"
 
 
1822
  msgstr ""
1823
 
1824
- #: i18n/states/CH.php:20
1825
- msgid "Fribourg"
 
 
1826
  msgstr ""
1827
 
1828
- #: i18n/states/CH.php:21
1829
- msgid "Geneva"
1830
  msgstr ""
1831
 
1832
- #: i18n/states/CH.php:22
1833
- msgid "Glarus"
 
 
1834
  msgstr ""
1835
 
1836
- #: i18n/states/CH.php:23
1837
- msgid "Graub&uuml;nden"
 
 
1838
  msgstr ""
1839
 
1840
- #: i18n/states/CH.php:24
1841
- msgid "Jura"
1842
  msgstr ""
1843
 
1844
- #: i18n/states/CH.php:25
1845
- msgid "Luzern"
1846
  msgstr ""
1847
 
1848
- #: i18n/states/CH.php:26
1849
- msgid "Neuch&acirc;tel"
1850
  msgstr ""
1851
 
1852
- #: i18n/states/CH.php:27
1853
- msgid "Nidwalden"
1854
  msgstr ""
1855
 
1856
- #: i18n/states/CH.php:28
1857
- msgid "Obwalden"
1858
  msgstr ""
1859
 
1860
- #: i18n/states/CH.php:29
1861
- msgid "Schaffhausen"
1862
  msgstr ""
1863
 
1864
- #: i18n/states/CH.php:30
1865
- msgid "Schwyz"
1866
  msgstr ""
1867
 
1868
- #: i18n/states/CH.php:31
1869
- msgid "Solothurn"
 
 
1870
  msgstr ""
1871
 
1872
- #: i18n/states/CH.php:32
1873
- msgid "St. Gallen"
 
 
1874
  msgstr ""
1875
 
1876
- #: i18n/states/CH.php:33
1877
- msgid "Thurgau"
1878
  msgstr ""
1879
 
1880
- #: i18n/states/CH.php:34
1881
- msgid "Ticino"
1882
  msgstr ""
1883
 
1884
- #: i18n/states/CH.php:35
1885
- msgid "Uri"
1886
  msgstr ""
1887
 
1888
- #: i18n/states/CH.php:36
1889
- msgid "Valais"
1890
  msgstr ""
1891
 
1892
- #: i18n/states/CH.php:37
1893
- msgid "Vaud"
1894
  msgstr ""
1895
 
1896
- #: i18n/states/CH.php:38
1897
- msgid "Zug"
1898
  msgstr ""
1899
 
1900
- #: i18n/states/CH.php:39
1901
- msgid "Z&uuml;rich"
1902
  msgstr ""
1903
 
1904
- #: i18n/states/CN.php:14
1905
- msgid "Yunnan / &#20113;&#21335;"
1906
  msgstr ""
1907
 
1908
- #: i18n/states/CN.php:15
1909
- msgid "Beijing / &#21271;&#20140;"
1910
  msgstr ""
1911
 
1912
- #: i18n/states/CN.php:16
1913
- msgid "Tianjin / &#22825;&#27941;"
1914
  msgstr ""
1915
 
1916
- #: i18n/states/CN.php:17
1917
- msgid "Hebei / &#27827;&#21271;"
1918
  msgstr ""
1919
 
1920
- #: i18n/states/CN.php:18
1921
- msgid "Shanxi / &#23665;&#35199;"
1922
  msgstr ""
1923
 
1924
- #: i18n/states/CN.php:19
1925
- msgid "Inner Mongolia / &#20839;&#33945;&#21476;"
1926
  msgstr ""
1927
 
1928
- #: i18n/states/CN.php:20
1929
- msgid "Liaoning / &#36797;&#23425;"
1930
  msgstr ""
1931
 
1932
- #: i18n/states/CN.php:21
1933
- msgid "Jilin / &#21513;&#26519;"
1934
  msgstr ""
1935
 
1936
- #: i18n/states/CN.php:22
1937
- msgid "Heilongjiang / &#40657;&#40857;&#27743;"
1938
  msgstr ""
1939
 
1940
- #: i18n/states/CN.php:23
1941
- msgid "Shanghai / &#19978;&#28023;"
1942
  msgstr ""
1943
 
1944
- #: i18n/states/CN.php:24
1945
- msgid "Jiangsu / &#27743;&#33487;"
1946
  msgstr ""
1947
 
1948
- #: i18n/states/CN.php:25
1949
- msgid "Zhejiang / &#27993;&#27743;"
1950
  msgstr ""
1951
 
1952
- #: i18n/states/CN.php:26
1953
- msgid "Anhui / &#23433;&#24509;"
1954
  msgstr ""
1955
 
1956
- #: i18n/states/CN.php:27
1957
- msgid "Fujian / &#31119;&#24314;"
1958
  msgstr ""
1959
 
1960
- #: i18n/states/CN.php:28
1961
- msgid "Jiangxi / &#27743;&#35199;"
1962
  msgstr ""
1963
 
1964
- #: i18n/states/CN.php:29
1965
- msgid "Shandong / &#23665;&#19996;"
1966
  msgstr ""
1967
 
1968
- #: i18n/states/CN.php:30
1969
- msgid "Henan / &#27827;&#21335;"
1970
  msgstr ""
1971
 
1972
- #: i18n/states/CN.php:31
1973
- msgid "Hubei / &#28246;&#21271;"
1974
  msgstr ""
1975
 
1976
- #: i18n/states/CN.php:32
1977
- msgid "Hunan / &#28246;&#21335;"
1978
  msgstr ""
1979
 
1980
- #: i18n/states/CN.php:33
1981
- msgid "Guangdong / &#24191;&#19996;"
1982
  msgstr ""
1983
 
1984
- #: i18n/states/CN.php:34
1985
- msgid "Guangxi Zhuang / &#24191;&#35199;&#22766;&#26063;"
1986
  msgstr ""
1987
 
1988
- #: i18n/states/CN.php:35
1989
- msgid "Hainan / &#28023;&#21335;"
1990
  msgstr ""
1991
 
1992
- #: i18n/states/CN.php:36
1993
- msgid "Chongqing / &#37325;&#24198;"
1994
  msgstr ""
1995
 
1996
- #: i18n/states/CN.php:37
1997
- msgid "Sichuan / &#22235;&#24029;"
1998
  msgstr ""
1999
 
2000
- #: i18n/states/CN.php:38
2001
- msgid "Guizhou / &#36149;&#24030;"
2002
  msgstr ""
2003
 
2004
- #: i18n/states/CN.php:39
2005
- msgid "Shaanxi / &#38485;&#35199;"
2006
  msgstr ""
2007
 
2008
- #: i18n/states/CN.php:40
2009
- msgid "Gansu / &#29976;&#32899;"
2010
  msgstr ""
2011
 
2012
- #: i18n/states/CN.php:41
2013
- msgid "Qinghai / &#38738;&#28023;"
2014
  msgstr ""
2015
 
2016
- #: i18n/states/CN.php:42
2017
- msgid "Ningxia Hui / &#23425;&#22799;"
2018
  msgstr ""
2019
 
2020
- #: i18n/states/CN.php:43
2021
- msgid "Macau / &#28595;&#38376;"
2022
  msgstr ""
2023
 
2024
- #: i18n/states/CN.php:44
2025
- msgid "Tibet / &#35199;&#34255;"
2026
  msgstr ""
2027
 
2028
- #: i18n/states/CN.php:45
2029
- msgid "Xinjiang / &#26032;&#30086;"
2030
  msgstr ""
2031
 
2032
- #: i18n/states/ES.php:14
2033
- msgid "A Coru&ntilde;a"
2034
  msgstr ""
2035
 
2036
- #: i18n/states/ES.php:15
2037
- msgid "Araba/&Aacute;lava"
2038
  msgstr ""
2039
 
2040
- #: i18n/states/ES.php:16
2041
- msgid "Albacete"
 
2042
  msgstr ""
2043
 
2044
- #: i18n/states/ES.php:17
2045
- msgid "Alicante"
 
2046
  msgstr ""
2047
 
2048
- #: i18n/states/ES.php:18
2049
- msgid "Almer&iacute;a"
 
2050
  msgstr ""
2051
 
2052
- #: i18n/states/ES.php:19
2053
- msgid "Asturias"
 
2054
  msgstr ""
2055
 
2056
- #: i18n/states/ES.php:20
2057
- msgid "&Aacute;vila"
 
2058
  msgstr ""
2059
 
2060
- #: i18n/states/ES.php:21
2061
- msgid "Badajoz"
 
2062
  msgstr ""
2063
 
2064
- #: i18n/states/ES.php:22
2065
- msgid "Baleares"
 
2066
  msgstr ""
2067
 
2068
- #: i18n/states/ES.php:23
2069
- msgid "Barcelona"
 
2070
  msgstr ""
2071
 
2072
- #: i18n/states/ES.php:24
2073
- msgid "Burgos"
 
2074
  msgstr ""
2075
 
2076
- #: i18n/states/ES.php:25
2077
- msgid "C&aacute;ceres"
 
2078
  msgstr ""
2079
 
2080
- #: i18n/states/ES.php:26
2081
- msgid "C&aacute;diz"
2082
  msgstr ""
2083
 
2084
- #: i18n/states/ES.php:27
2085
- msgid "Cantabria"
 
 
2086
  msgstr ""
2087
 
2088
- #: i18n/states/ES.php:28
2089
- msgid "Castell&oacute;n"
2090
  msgstr ""
2091
 
2092
- #: i18n/states/ES.php:29
2093
- msgid "Ceuta"
2094
  msgstr ""
2095
 
2096
- #: i18n/states/ES.php:30
2097
- msgid "Ciudad Real"
2098
  msgstr ""
2099
 
2100
- #: i18n/states/ES.php:32
2101
- msgid "Cuenca"
2102
  msgstr ""
2103
 
2104
- #: i18n/states/ES.php:33
2105
- msgid "Girona"
2106
- msgstr ""
2107
 
2108
- #: i18n/states/ES.php:34
2109
- msgid "Granada"
2110
  msgstr ""
2111
 
2112
- #: i18n/states/ES.php:35
2113
- msgid "Guadalajara"
2114
  msgstr ""
2115
 
2116
- #: i18n/states/ES.php:36
2117
- msgid "Gipuzkoa"
2118
  msgstr ""
2119
 
2120
- #: i18n/states/ES.php:37
2121
- msgid "Huelva"
2122
  msgstr ""
2123
 
2124
- #: i18n/states/ES.php:38
2125
- msgid "Huesca"
2126
  msgstr ""
2127
 
2128
- #: i18n/states/ES.php:39
2129
- msgid "Ja&eacute;n"
2130
  msgstr ""
2131
 
2132
- #: i18n/states/ES.php:41
2133
- msgid "Las Palmas"
2134
  msgstr ""
2135
 
2136
- #: i18n/states/ES.php:42
2137
- msgid "Le&oacute;n"
2138
  msgstr ""
2139
 
2140
- #: i18n/states/ES.php:43
2141
- msgid "Lleida"
2142
  msgstr ""
2143
 
2144
- #: i18n/states/ES.php:44
2145
- msgid "Lugo"
2146
  msgstr ""
2147
 
2148
- #: i18n/states/ES.php:45
2149
- msgid "Madrid"
2150
  msgstr ""
2151
 
2152
- #: i18n/states/ES.php:46
2153
- msgid "M&aacute;laga"
2154
  msgstr ""
2155
 
2156
- #: i18n/states/ES.php:47
2157
- msgid "Melilla"
2158
  msgstr ""
2159
 
2160
- #: i18n/states/ES.php:48
2161
- msgid "Murcia"
2162
  msgstr ""
2163
 
2164
- #: i18n/states/ES.php:49
2165
- msgid "Navarra"
2166
  msgstr ""
2167
 
2168
- #: i18n/states/ES.php:50
2169
- msgid "Ourense"
2170
  msgstr ""
2171
 
2172
- #: i18n/states/ES.php:51
2173
- msgid "Palencia"
2174
  msgstr ""
2175
 
2176
- #: i18n/states/ES.php:52
2177
- msgid "Pontevedra"
2178
  msgstr ""
2179
 
2180
- #: i18n/states/ES.php:53
2181
- msgid "Salamanca"
2182
  msgstr ""
2183
 
2184
- #: i18n/states/ES.php:54
2185
- msgid "Santa Cruz de Tenerife"
2186
  msgstr ""
2187
 
2188
- #: i18n/states/ES.php:55
2189
- msgid "Segovia"
2190
  msgstr ""
2191
 
2192
- #: i18n/states/ES.php:56
2193
- msgid "Sevilla"
2194
  msgstr ""
2195
 
2196
- #: i18n/states/ES.php:57
2197
- msgid "Soria"
2198
  msgstr ""
2199
 
2200
- #: i18n/states/ES.php:58
2201
- msgid "Tarragona"
2202
  msgstr ""
2203
 
2204
- #: i18n/states/ES.php:59
2205
- msgid "Teruel"
2206
  msgstr ""
2207
 
2208
- #: i18n/states/ES.php:60
2209
- msgid "Toledo"
2210
  msgstr ""
2211
 
2212
- #: i18n/states/ES.php:61
2213
- msgid "Valencia"
2214
  msgstr ""
2215
 
2216
- #: i18n/states/ES.php:62
2217
- msgid "Valladolid"
2218
  msgstr ""
2219
 
2220
- #: i18n/states/ES.php:63
2221
- msgid "Bizkaia"
2222
  msgstr ""
2223
 
2224
- #: i18n/states/ES.php:64
2225
- msgid "Zamora"
2226
  msgstr ""
2227
 
2228
- #: i18n/states/ES.php:65
2229
- msgid "Zaragoza"
2230
  msgstr ""
2231
 
2232
- #: i18n/states/GR.php:14
2233
- msgid "Αττική"
2234
  msgstr ""
2235
 
2236
- #: i18n/states/GR.php:15
2237
- msgid "Ανατολική Μακεδονία και Θράκη"
2238
  msgstr ""
2239
 
2240
- #: i18n/states/GR.php:16
2241
- msgid "Κεντρική Μακεδονία"
2242
  msgstr ""
2243
 
2244
- #: i18n/states/GR.php:17
2245
- msgid "Δυτική Μακεδονία"
2246
  msgstr ""
2247
 
2248
- #: i18n/states/GR.php:18
2249
- msgid "Ήπειρος"
2250
  msgstr ""
2251
 
2252
- #: i18n/states/GR.php:19
2253
- msgid "Θεσσαλία"
2254
  msgstr ""
2255
 
2256
- #: i18n/states/GR.php:20
2257
- msgid "Ιόνιοι Νήσοι"
2258
  msgstr ""
2259
 
2260
- #: i18n/states/GR.php:21
2261
- msgid "Δυτική Ελλάδα"
2262
  msgstr ""
2263
 
2264
- #: i18n/states/GR.php:22
2265
- msgid "Στερεά Ελλάδα"
2266
  msgstr ""
2267
 
2268
- #: i18n/states/GR.php:23
2269
- msgid "Πελοπόννησος"
2270
  msgstr ""
2271
 
2272
- #: i18n/states/GR.php:24
2273
- msgid "Βόρειο Αιγαίο"
2274
  msgstr ""
2275
 
2276
- #: i18n/states/GR.php:25
2277
- msgid "Νότιο Αιγαίο"
2278
  msgstr ""
2279
 
2280
- #: i18n/states/GR.php:26
2281
- msgid "Κρήτη"
2282
  msgstr ""
2283
 
2284
- #: i18n/states/HK.php:14
2285
- msgid "Hong Kong Island"
2286
  msgstr ""
2287
 
2288
- #: i18n/states/HK.php:15
2289
- msgid "Kowloon"
2290
  msgstr ""
2291
 
2292
- #: i18n/states/HK.php:16
2293
- msgid "New Territories"
2294
  msgstr ""
2295
 
2296
- #: i18n/states/HU.php:14
2297
- msgid "Bács-Kiskun"
2298
  msgstr ""
2299
 
2300
- #: i18n/states/HU.php:15
2301
- msgid "Békés"
2302
  msgstr ""
2303
 
2304
- #: i18n/states/HU.php:16
2305
- msgid "Baranya"
2306
  msgstr ""
2307
 
2308
- #: i18n/states/HU.php:17
2309
- msgid "Borsod-Abaúj-Zemplén"
2310
  msgstr ""
2311
 
2312
- #: i18n/states/HU.php:18
2313
- msgid "Budapest"
2314
  msgstr ""
2315
 
2316
- #: i18n/states/HU.php:19
2317
- msgid "Csongrád"
2318
  msgstr ""
2319
 
2320
- #: i18n/states/HU.php:20
2321
- msgid "Fejér"
2322
  msgstr ""
2323
 
2324
- #: i18n/states/HU.php:21
2325
- msgid "Győr-Moson-Sopron"
2326
  msgstr ""
2327
 
2328
- #: i18n/states/HU.php:22
2329
- msgid "Hajdú-Bihar"
2330
  msgstr ""
2331
 
2332
- #: i18n/states/HU.php:23
2333
- msgid "Heves"
2334
  msgstr ""
2335
 
2336
- #: i18n/states/HU.php:24
2337
- msgid "Jász-Nagykun-Szolnok"
2338
  msgstr ""
2339
 
2340
- #: i18n/states/HU.php:25
2341
- msgid "Komárom-Esztergom"
2342
  msgstr ""
2343
 
2344
- #: i18n/states/HU.php:26
2345
- msgid "Nógrád"
2346
  msgstr ""
2347
 
2348
- #: i18n/states/HU.php:27
2349
- msgid "Pest"
2350
  msgstr ""
2351
 
2352
- #: i18n/states/HU.php:28
2353
- msgid "Somogy"
2354
  msgstr ""
2355
 
2356
- #: i18n/states/HU.php:29
2357
- msgid "Szabolcs-Szatmár-Bereg"
2358
  msgstr ""
2359
 
2360
- #: i18n/states/HU.php:30
2361
- msgid "Tolna"
2362
  msgstr ""
2363
 
2364
- #: i18n/states/HU.php:31
2365
- msgid "Vas"
2366
  msgstr ""
2367
 
2368
- #: i18n/states/HU.php:32
2369
- msgid "Veszprém"
2370
  msgstr ""
2371
 
2372
- #: i18n/states/HU.php:33
2373
- msgid "Zala"
2374
  msgstr ""
2375
 
2376
- #: i18n/states/ID.php:14
2377
- msgid "Daerah Istimewa Aceh"
2378
  msgstr ""
2379
 
2380
- #: i18n/states/ID.php:15
2381
- msgid "Sumatera Utara"
2382
  msgstr ""
2383
 
2384
- #: i18n/states/ID.php:16
2385
- msgid "Sumatera Barat"
2386
  msgstr ""
2387
 
2388
- #: i18n/states/ID.php:17
2389
- msgid "Riau"
2390
  msgstr ""
2391
 
2392
- #: i18n/states/ID.php:18
2393
- msgid "Kepulauan Riau"
2394
  msgstr ""
2395
 
2396
- #: i18n/states/ID.php:19
2397
- msgid "Jambi"
2398
  msgstr ""
2399
 
2400
- #: i18n/states/ID.php:20
2401
- msgid "Sumatera Selatan"
2402
  msgstr ""
2403
 
2404
- #: i18n/states/ID.php:21
2405
- msgid "Bangka Belitung"
2406
  msgstr ""
2407
 
2408
- #: i18n/states/ID.php:22
2409
- msgid "Bengkulu"
2410
  msgstr ""
2411
 
2412
- #: i18n/states/ID.php:23
2413
- msgid "Lampung"
2414
  msgstr ""
2415
 
2416
- #: i18n/states/ID.php:24
2417
- msgid "DKI Jakarta"
2418
  msgstr ""
2419
 
2420
- #: i18n/states/ID.php:25
2421
- msgid "Jawa Barat"
2422
  msgstr ""
2423
 
2424
- #: i18n/states/ID.php:26
2425
- msgid "Banten"
2426
  msgstr ""
2427
 
2428
- #: i18n/states/ID.php:27
2429
- msgid "Jawa Tengah"
2430
  msgstr ""
2431
 
2432
- #: i18n/states/ID.php:28
2433
- msgid "Jawa Timur"
2434
  msgstr ""
2435
 
2436
- #: i18n/states/ID.php:29
2437
- msgid "Daerah Istimewa Yogyakarta"
2438
  msgstr ""
2439
 
2440
- #: i18n/states/ID.php:30
2441
- msgid "Bali"
2442
  msgstr ""
2443
 
2444
- #: i18n/states/ID.php:31
2445
- msgid "Nusa Tenggara Barat"
2446
  msgstr ""
2447
 
2448
- #: i18n/states/ID.php:32
2449
- msgid "Nusa Tenggara Timur"
2450
  msgstr ""
2451
 
2452
- #: i18n/states/ID.php:33
2453
- msgid "Kalimantan Barat"
2454
  msgstr ""
2455
 
2456
- #: i18n/states/ID.php:34
2457
- msgid "Kalimantan Tengah"
2458
  msgstr ""
2459
 
2460
- #: i18n/states/ID.php:35
2461
- msgid "Kalimantan Timur"
2462
  msgstr ""
2463
 
2464
- #: i18n/states/ID.php:36
2465
- msgid "Kalimantan Selatan"
2466
  msgstr ""
2467
 
2468
- #: i18n/states/ID.php:37
2469
- msgid "Kalimantan Utara"
2470
  msgstr ""
2471
 
2472
- #: i18n/states/ID.php:38
2473
- msgid "Sulawesi Utara"
2474
  msgstr ""
2475
 
2476
- #: i18n/states/ID.php:39
2477
- msgid "Sulawesi Tengah"
2478
  msgstr ""
2479
 
2480
- #: i18n/states/ID.php:40
2481
- msgid "Sulawesi Tenggara"
2482
  msgstr ""
2483
 
2484
- #: i18n/states/ID.php:41
2485
- msgid "Sulawesi Barat"
2486
  msgstr ""
2487
 
2488
- #: i18n/states/ID.php:42
2489
- msgid "Sulawesi Selatan"
2490
  msgstr ""
2491
 
2492
- #: i18n/states/ID.php:43
2493
- msgid "Gorontalo"
2494
  msgstr ""
2495
 
2496
- #: i18n/states/ID.php:44
2497
- msgid "Maluku"
2498
  msgstr ""
2499
 
2500
- #: i18n/states/ID.php:45
2501
- msgid "Maluku Utara"
2502
  msgstr ""
2503
 
2504
- #: i18n/states/ID.php:46
2505
- msgid "Papua"
2506
  msgstr ""
2507
 
2508
- #: i18n/states/ID.php:47
2509
- msgid "Papua Barat"
2510
  msgstr ""
2511
 
2512
- #: i18n/states/IE.php:14
2513
- msgid "Carlow"
2514
  msgstr ""
2515
 
2516
- #: i18n/states/IE.php:15
2517
- msgid "Cavan"
2518
  msgstr ""
2519
 
2520
- #: i18n/states/IE.php:16
2521
- msgid "Clare"
2522
  msgstr ""
2523
 
2524
- #: i18n/states/IE.php:17
2525
- msgid "Cork"
2526
  msgstr ""
2527
 
2528
- #: i18n/states/IE.php:18
2529
- msgid "Donegal"
2530
  msgstr ""
2531
 
2532
- #: i18n/states/IE.php:19
2533
- msgid "Dublin"
2534
  msgstr ""
2535
 
2536
- #: i18n/states/IE.php:20
2537
- msgid "Galway"
2538
  msgstr ""
2539
 
2540
- #: i18n/states/IE.php:21
2541
- msgid "Kerry"
2542
  msgstr ""
2543
 
2544
- #: i18n/states/IE.php:22
2545
- msgid "Kildare"
2546
  msgstr ""
2547
 
2548
- #: i18n/states/IE.php:23
2549
- msgid "Kilkenny"
2550
  msgstr ""
2551
 
2552
- #: i18n/states/IE.php:24
2553
- msgid "Laois"
2554
  msgstr ""
2555
 
2556
- #: i18n/states/IE.php:25
2557
- msgid "Leitrim"
2558
  msgstr ""
2559
 
2560
- #: i18n/states/IE.php:26
2561
- msgid "Limerick"
2562
  msgstr ""
2563
 
2564
- #: i18n/states/IE.php:27
2565
- msgid "Longford"
2566
  msgstr ""
2567
 
2568
- #: i18n/states/IE.php:28
2569
- msgid "Louth"
2570
  msgstr ""
2571
 
2572
- #: i18n/states/IE.php:29
2573
- msgid "Mayo"
2574
  msgstr ""
2575
 
2576
- #: i18n/states/IE.php:30
2577
- msgid "Meath"
2578
  msgstr ""
2579
 
2580
- #: i18n/states/IE.php:31
2581
- msgid "Monaghan"
2582
  msgstr ""
2583
 
2584
- #: i18n/states/IE.php:32
2585
- msgid "Offaly"
2586
  msgstr ""
2587
 
2588
- #: i18n/states/IE.php:33
2589
- msgid "Roscommon"
2590
  msgstr ""
2591
 
2592
- #: i18n/states/IE.php:34
2593
- msgid "Sligo"
2594
  msgstr ""
2595
 
2596
- #: i18n/states/IE.php:35
2597
- msgid "Tipperary"
2598
  msgstr ""
2599
 
2600
- #: i18n/states/IE.php:36
2601
- msgid "Waterford"
2602
  msgstr ""
2603
 
2604
- #: i18n/states/IE.php:37
2605
- msgid "Westmeath"
2606
  msgstr ""
2607
 
2608
- #: i18n/states/IE.php:38
2609
- msgid "Wexford"
2610
  msgstr ""
2611
 
2612
- #: i18n/states/IE.php:39
2613
- msgid "Wicklow"
2614
  msgstr ""
2615
 
2616
- #: i18n/states/IN.php:14
2617
- msgid "Andhra Pradesh"
2618
  msgstr ""
2619
 
2620
- #: i18n/states/IN.php:15
2621
- msgid "Arunachal Pradesh"
2622
  msgstr ""
2623
 
2624
- #: i18n/states/IN.php:16
2625
- msgid "Assam"
2626
  msgstr ""
2627
 
2628
- #: i18n/states/IN.php:17
2629
- msgid "Bihar"
2630
  msgstr ""
2631
 
2632
- #: i18n/states/IN.php:18
2633
- msgid "Chhattisgarh"
2634
  msgstr ""
2635
 
2636
- #: i18n/states/IN.php:19
2637
- msgid "Goa"
2638
  msgstr ""
2639
 
2640
- #: i18n/states/IN.php:20
2641
- msgid "Gujarat"
2642
  msgstr ""
2643
 
2644
- #: i18n/states/IN.php:21
2645
- msgid "Haryana"
2646
  msgstr ""
2647
 
2648
- #: i18n/states/IN.php:22
2649
- msgid "Himachal Pradesh"
2650
  msgstr ""
2651
 
2652
- #: i18n/states/IN.php:23
2653
- msgid "Jammu and Kashmir"
2654
  msgstr ""
2655
 
2656
- #: i18n/states/IN.php:24
2657
- msgid "Jharkhand"
2658
  msgstr ""
2659
 
2660
- #: i18n/states/IN.php:25
2661
- msgid "Karnataka"
2662
  msgstr ""
2663
 
2664
- #: i18n/states/IN.php:26
2665
- msgid "Kerala"
2666
  msgstr ""
2667
 
2668
- #: i18n/states/IN.php:27
2669
- msgid "Madhya Pradesh"
2670
  msgstr ""
2671
 
2672
- #: i18n/states/IN.php:28
2673
- msgid "Maharashtra"
2674
  msgstr ""
2675
 
2676
- #: i18n/states/IN.php:29
2677
- msgid "Manipur"
2678
  msgstr ""
2679
 
2680
- #: i18n/states/IN.php:30
2681
- msgid "Meghalaya"
2682
  msgstr ""
2683
 
2684
- #: i18n/states/IN.php:31
2685
- msgid "Mizoram"
2686
  msgstr ""
2687
 
2688
- #: i18n/states/IN.php:32
2689
- msgid "Nagaland"
2690
  msgstr ""
2691
 
2692
- #: i18n/states/IN.php:33
2693
- msgid "Orissa"
2694
  msgstr ""
2695
 
2696
- #: i18n/states/IN.php:34 i18n/states/PK.php:20
2697
- msgid "Punjab"
2698
  msgstr ""
2699
 
2700
- #: i18n/states/IN.php:35
2701
- msgid "Rajasthan"
2702
  msgstr ""
2703
 
2704
- #: i18n/states/IN.php:36
2705
- msgid "Sikkim"
2706
  msgstr ""
2707
 
2708
- #: i18n/states/IN.php:37
2709
- msgid "Tamil Nadu"
2710
  msgstr ""
2711
 
2712
- #: i18n/states/IN.php:38
2713
- msgid "Telangana"
2714
  msgstr ""
2715
 
2716
- #: i18n/states/IN.php:39
2717
- msgid "Tripura"
2718
  msgstr ""
2719
 
2720
- #: i18n/states/IN.php:40
2721
- msgid "Uttarakhand"
2722
  msgstr ""
2723
 
2724
- #: i18n/states/IN.php:41
2725
- msgid "Uttar Pradesh"
2726
  msgstr ""
2727
 
2728
- #: i18n/states/IN.php:42
2729
- msgid "West Bengal"
2730
  msgstr ""
2731
 
2732
- #: i18n/states/IN.php:43
2733
- msgid "Andaman and Nicobar Islands"
2734
  msgstr ""
2735
 
2736
- #: i18n/states/IN.php:44
2737
- msgid "Chandigarh"
2738
  msgstr ""
2739
 
2740
- #: i18n/states/IN.php:45
2741
- msgid "Dadra and Nagar Haveli"
2742
  msgstr ""
2743
 
2744
- #: i18n/states/IN.php:46
2745
- msgid "Daman and Diu"
2746
  msgstr ""
2747
 
2748
- #: i18n/states/IN.php:47
2749
- msgid "Delhi"
2750
  msgstr ""
2751
 
2752
- #: i18n/states/IN.php:48
2753
- msgid "Lakshadeep"
2754
  msgstr ""
2755
 
2756
- #: i18n/states/IN.php:49
2757
- msgid "Pondicherry (Puducherry)"
2758
  msgstr ""
2759
 
2760
- #: i18n/states/IR.php:14
2761
- msgid "Khuzestan (خوزستان)"
 
 
 
2762
  msgstr ""
2763
 
2764
- #: i18n/states/IR.php:15
2765
- msgid "Tehran (تهران)"
2766
  msgstr ""
2767
 
2768
- #: i18n/states/IR.php:16
2769
- msgid "Ilaam (ایلام)"
2770
  msgstr ""
2771
 
2772
- #: i18n/states/IR.php:17
2773
- msgid "Bushehr (بوشهر)"
 
 
2774
  msgstr ""
2775
 
2776
- #: i18n/states/IR.php:18
2777
- msgid "Ardabil (اردبیل)"
2778
  msgstr ""
2779
 
2780
- #: i18n/states/IR.php:19
2781
- msgid "Isfahan (اصفهان)"
 
 
2782
  msgstr ""
2783
 
2784
- #: i18n/states/IR.php:20
2785
- msgid "Yazd (یزد)"
 
 
2786
  msgstr ""
2787
 
2788
- #: i18n/states/IR.php:21
2789
- msgid "Kermanshah (کرمانشاه)"
2790
  msgstr ""
2791
 
2792
- #: i18n/states/IR.php:22
2793
- msgid "Kerman (کرمان)"
2794
  msgstr ""
2795
 
2796
- #: i18n/states/IR.php:23
2797
- msgid "Hamadan (همدان)"
2798
  msgstr ""
2799
 
2800
- #: i18n/states/IR.php:24
2801
- msgid "Ghazvin (قزوین)"
2802
  msgstr ""
2803
 
2804
- #: i18n/states/IR.php:25
2805
- msgid "Zanjan (زنجان)"
2806
  msgstr ""
2807
 
2808
- #: i18n/states/IR.php:26
2809
- msgid "Luristan (لرستان)"
2810
  msgstr ""
2811
 
2812
- #: i18n/states/IR.php:27
2813
- msgid "Alborz (البرز)"
2814
  msgstr ""
2815
 
2816
- #: i18n/states/IR.php:28
2817
- msgid "East Azarbaijan (آذربایجان شرقی)"
2818
  msgstr ""
2819
 
2820
- #: i18n/states/IR.php:29
2821
- msgid "West Azarbaijan (آذربایجان غربی)"
2822
  msgstr ""
2823
 
2824
- #: i18n/states/IR.php:30
2825
- msgid "Chaharmahal and Bakhtiari (چهارمحال و بختیاری)"
2826
  msgstr ""
2827
 
2828
- #: i18n/states/IR.php:31
2829
- msgid "South Khorasan (خراسان جنوبی)"
2830
  msgstr ""
2831
 
2832
- #: i18n/states/IR.php:32
2833
- msgid "Razavi Khorasan (خراسان رضوی)"
2834
  msgstr ""
2835
 
2836
- #: i18n/states/IR.php:33
2837
- msgid "North Khorasan (خراسان جنوبی)"
2838
  msgstr ""
2839
 
2840
- #: i18n/states/IR.php:34
2841
- msgid "Semnan (سمنان)"
2842
  msgstr ""
2843
 
2844
- #: i18n/states/IR.php:35
2845
- msgid "Fars (فارس)"
2846
  msgstr ""
2847
 
2848
- #: i18n/states/IR.php:36
2849
- msgid "Qom (قم)"
2850
  msgstr ""
2851
 
2852
- #: i18n/states/IR.php:37
2853
- msgid "Kurdistan / کردستان)"
2854
  msgstr ""
2855
 
2856
- #: i18n/states/IR.php:38
2857
- msgid "Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)"
2858
  msgstr ""
2859
 
2860
- #: i18n/states/IR.php:39
2861
- msgid "Golestan (گلستان)"
2862
  msgstr ""
2863
 
2864
- #: i18n/states/IR.php:40
2865
- msgid "Gilan (گیلان)"
 
 
2866
  msgstr ""
2867
 
2868
- #: i18n/states/IR.php:41
2869
- msgid "Mazandaran (مازندران)"
2870
  msgstr ""
2871
 
2872
- #: i18n/states/IR.php:42
2873
- msgid "Markazi (مرکزی)"
 
 
2874
  msgstr ""
2875
 
2876
- #: i18n/states/IR.php:43
2877
- msgid "Hormozgan (هرمزگان)"
2878
  msgstr ""
2879
 
2880
- #: i18n/states/IR.php:44
2881
- msgid "Sistan and Baluchestan (سیستان و بلوچستان)"
2882
- msgstr ""
 
 
 
2883
 
2884
- #: i18n/states/IT.php:14
2885
- msgid "Agrigento"
2886
  msgstr ""
2887
 
2888
- #: i18n/states/IT.php:15
2889
- msgid "Alessandria"
2890
  msgstr ""
2891
 
2892
- #: i18n/states/IT.php:16
2893
- msgid "Ancona"
2894
  msgstr ""
2895
 
2896
- #: i18n/states/IT.php:17
2897
- msgid "Aosta"
2898
  msgstr ""
2899
 
2900
- #: i18n/states/IT.php:18
2901
- msgid "Arezzo"
2902
  msgstr ""
2903
 
2904
- #: i18n/states/IT.php:19
2905
- msgid "Ascoli Piceno"
2906
  msgstr ""
2907
 
2908
- #: i18n/states/IT.php:20
2909
- msgid "Asti"
2910
  msgstr ""
2911
 
2912
- #: i18n/states/IT.php:21
2913
- msgid "Avellino"
 
2914
  msgstr ""
2915
 
2916
- #: i18n/states/IT.php:22
2917
- msgid "Bari"
 
 
 
 
 
 
 
2918
  msgstr ""
2919
 
2920
- #: i18n/states/IT.php:23
2921
- msgid "Barletta-Andria-Trani"
2922
  msgstr ""
2923
 
2924
- #: i18n/states/IT.php:24
2925
- msgid "Belluno"
2926
  msgstr ""
2927
 
2928
- #: i18n/states/IT.php:25
2929
- msgid "Benevento"
2930
  msgstr ""
2931
 
2932
- #: i18n/states/IT.php:26
2933
- msgid "Bergamo"
2934
  msgstr ""
2935
 
2936
- #: i18n/states/IT.php:27
2937
- msgid "Biella"
2938
  msgstr ""
2939
 
2940
- #: i18n/states/IT.php:28
2941
- msgid "Bologna"
2942
  msgstr ""
2943
 
2944
- #: i18n/states/IT.php:29
2945
- msgid "Bolzano"
2946
  msgstr ""
2947
 
2948
- #: i18n/states/IT.php:30
2949
- msgid "Brescia"
2950
  msgstr ""
2951
 
2952
- #: i18n/states/IT.php:31
2953
- msgid "Brindisi"
2954
  msgstr ""
2955
 
2956
- #: i18n/states/IT.php:32
2957
- msgid "Cagliari"
 
 
2958
  msgstr ""
2959
 
2960
- #: i18n/states/IT.php:33
2961
- msgid "Caltanissetta"
 
 
2962
  msgstr ""
2963
 
2964
- #: i18n/states/IT.php:34
2965
- msgid "Campobasso"
 
 
2966
  msgstr ""
2967
 
2968
- #: i18n/states/IT.php:35
2969
- msgid "Carbonia-Iglesias"
 
 
2970
  msgstr ""
2971
 
2972
- #: i18n/states/IT.php:36
2973
- msgid "Caserta"
2974
  msgstr ""
2975
 
2976
- #: i18n/states/IT.php:37
2977
- msgid "Catania"
 
 
2978
  msgstr ""
2979
 
2980
- #: i18n/states/IT.php:38
2981
- msgid "Catanzaro"
2982
  msgstr ""
2983
 
2984
- #: i18n/states/IT.php:39
2985
- msgid "Chieti"
2986
  msgstr ""
2987
 
2988
- #: i18n/states/IT.php:40
2989
- msgid "Como"
 
 
2990
  msgstr ""
2991
 
2992
- #: i18n/states/IT.php:41
2993
- msgid "Cosenza"
2994
  msgstr ""
2995
 
2996
- #: i18n/states/IT.php:42
2997
- msgid "Cremona"
2998
  msgstr ""
2999
 
3000
- #: i18n/states/IT.php:43
3001
- msgid "Crotone"
3002
  msgstr ""
3003
 
3004
- #: i18n/states/IT.php:44
3005
- msgid "Cuneo"
3006
  msgstr ""
3007
 
3008
- #: i18n/states/IT.php:45
3009
- msgid "Enna"
3010
  msgstr ""
3011
 
3012
- #: i18n/states/IT.php:46
3013
- msgid "Fermo"
3014
  msgstr ""
3015
 
3016
- #: i18n/states/IT.php:47
3017
- msgid "Ferrara"
 
 
3018
  msgstr ""
3019
 
3020
- #: i18n/states/IT.php:48
3021
- msgid "Firenze"
 
 
3022
  msgstr ""
3023
 
3024
- #: i18n/states/IT.php:49
3025
- msgid "Foggia"
3026
  msgstr ""
3027
 
3028
- #: i18n/states/IT.php:50
3029
- msgid "Forlì-Cesena"
 
 
 
3030
  msgstr ""
3031
 
3032
- #: i18n/states/IT.php:51
3033
- msgid "Frosinone"
3034
  msgstr ""
3035
 
3036
- #: i18n/states/IT.php:52
3037
- msgid "Genova"
3038
  msgstr ""
3039
 
3040
- #: i18n/states/IT.php:53
3041
- msgid "Gorizia"
 
 
3042
  msgstr ""
3043
 
3044
- #: i18n/states/IT.php:54
3045
- msgid "Grosseto"
 
 
3046
  msgstr ""
3047
 
3048
- #: i18n/states/IT.php:55
3049
- msgid "Imperia"
 
 
3050
  msgstr ""
3051
 
3052
- #: i18n/states/IT.php:56
3053
- msgid "Isernia"
3054
  msgstr ""
3055
 
3056
- #: i18n/states/IT.php:57
3057
- msgid "La Spezia"
3058
  msgstr ""
3059
 
3060
- #: i18n/states/IT.php:58
3061
- msgid "L'Aquila"
3062
  msgstr ""
3063
 
3064
- #: i18n/states/IT.php:59
3065
- msgid "Latina"
3066
  msgstr ""
3067
 
3068
- #: i18n/states/IT.php:60
3069
- msgid "Lecce"
3070
  msgstr ""
3071
 
3072
- #: i18n/states/IT.php:61
3073
- msgid "Lecco"
3074
  msgstr ""
3075
 
3076
- #: i18n/states/IT.php:62
3077
- msgid "Livorno"
3078
  msgstr ""
3079
 
3080
- #: i18n/states/IT.php:63
3081
- msgid "Lodi"
3082
  msgstr ""
3083
 
3084
- #: i18n/states/IT.php:64
3085
- msgid "Lucca"
3086
  msgstr ""
3087
 
3088
- #: i18n/states/IT.php:65
3089
- msgid "Macerata"
3090
  msgstr ""
3091
 
3092
- #: i18n/states/IT.php:66
3093
- msgid "Mantova"
3094
  msgstr ""
3095
 
3096
- #: i18n/states/IT.php:67
3097
- msgid "Massa-Carrara"
3098
  msgstr ""
3099
 
3100
- #: i18n/states/IT.php:68
3101
- msgid "Matera"
3102
  msgstr ""
3103
 
3104
- #: i18n/states/IT.php:69
3105
- msgid "Messina"
3106
  msgstr ""
3107
 
3108
- #: i18n/states/IT.php:70
3109
- msgid "Milano"
3110
  msgstr ""
3111
 
3112
- #: i18n/states/IT.php:71
3113
- msgid "Modena"
3114
  msgstr ""
3115
 
3116
- #: i18n/states/IT.php:72
3117
- msgid "Monza e della Brianza"
3118
  msgstr ""
3119
 
3120
- #: i18n/states/IT.php:73
3121
- msgid "Napoli"
3122
  msgstr ""
3123
 
3124
- #: i18n/states/IT.php:74
3125
- msgid "Novara"
3126
  msgstr ""
3127
 
3128
- #: i18n/states/IT.php:75
3129
- msgid "Nuoro"
 
 
3130
  msgstr ""
3131
 
3132
- #: i18n/states/IT.php:76
3133
- msgid "Olbia-Tempio"
 
 
3134
  msgstr ""
3135
 
3136
- #: i18n/states/IT.php:77
3137
- msgid "Oristano"
 
 
3138
  msgstr ""
3139
 
3140
- #: i18n/states/IT.php:78
3141
- msgid "Padova"
3142
  msgstr ""
3143
 
3144
- #: i18n/states/IT.php:79
3145
- msgid "Palermo"
3146
  msgstr ""
3147
 
3148
- #: i18n/states/IT.php:80
3149
- msgid "Parma"
3150
  msgstr ""
3151
 
3152
- #: i18n/states/IT.php:81
3153
- msgid "Pavia"
3154
  msgstr ""
3155
 
3156
- #: i18n/states/IT.php:82
3157
- msgid "Perugia"
3158
  msgstr ""
3159
 
3160
- #: i18n/states/IT.php:83
3161
- msgid "Pesaro e Urbino"
 
3162
  msgstr ""
3163
 
3164
- #: i18n/states/IT.php:84
3165
- msgid "Pescara"
3166
  msgstr ""
3167
 
3168
- #: i18n/states/IT.php:85
3169
- msgid "Piacenza"
 
3170
  msgstr ""
3171
 
3172
- #: i18n/states/IT.php:86
3173
- msgid "Pisa"
 
 
3174
  msgstr ""
3175
 
3176
- #: i18n/states/IT.php:87
3177
- msgid "Pistoia"
3178
  msgstr ""
3179
 
3180
- #: i18n/states/IT.php:88
3181
- msgid "Pordenone"
 
3182
  msgstr ""
3183
 
3184
- #: i18n/states/IT.php:89
3185
- msgid "Potenza"
3186
  msgstr ""
3187
 
3188
- #: i18n/states/IT.php:90
3189
- msgid "Prato"
 
3190
  msgstr ""
3191
 
3192
- #: i18n/states/IT.php:91
3193
- msgid "Ragusa"
3194
  msgstr ""
3195
 
3196
- #: i18n/states/IT.php:92
3197
- msgid "Ravenna"
 
 
3198
  msgstr ""
3199
 
3200
- #: i18n/states/IT.php:93
3201
- msgid "Reggio Calabria"
3202
  msgstr ""
3203
 
3204
- #: i18n/states/IT.php:94
3205
- msgid "Reggio Emilia"
3206
  msgstr ""
3207
 
3208
- #: i18n/states/IT.php:95
3209
- msgid "Rieti"
3210
  msgstr ""
3211
 
3212
- #: i18n/states/IT.php:96
3213
- msgid "Rimini"
3214
  msgstr ""
3215
 
3216
- #: i18n/states/IT.php:97
3217
- msgid "Roma"
3218
  msgstr ""
3219
 
3220
- #: i18n/states/IT.php:98
3221
- msgid "Rovigo"
3222
  msgstr ""
3223
 
3224
- #: i18n/states/IT.php:99
3225
- msgid "Salerno"
3226
  msgstr ""
3227
 
3228
- #: i18n/states/IT.php:100
3229
- msgid "Medio Campidano"
3230
  msgstr ""
3231
 
3232
- #: i18n/states/IT.php:101
3233
- msgid "Sassari"
3234
  msgstr ""
3235
 
3236
- #: i18n/states/IT.php:102
3237
- msgid "Savona"
3238
  msgstr ""
3239
 
3240
- #: i18n/states/IT.php:103
3241
- msgid "Siena"
3242
  msgstr ""
3243
 
3244
- #: i18n/states/IT.php:104
3245
- msgid "Siracusa"
3246
  msgstr ""
3247
 
3248
- #: i18n/states/IT.php:105
3249
- msgid "Sondrio"
3250
  msgstr ""
3251
 
3252
- #: i18n/states/IT.php:106
3253
- msgid "Taranto"
3254
  msgstr ""
3255
 
3256
- #: i18n/states/IT.php:107
3257
- msgid "Teramo"
3258
  msgstr ""
3259
 
3260
- #: i18n/states/IT.php:108
3261
- msgid "Terni"
 
 
3262
  msgstr ""
3263
 
3264
- #: i18n/states/IT.php:109
3265
- msgid "Torino"
 
 
 
 
3266
  msgstr ""
3267
 
3268
- #: i18n/states/IT.php:110
3269
- msgid "Ogliastra"
3270
  msgstr ""
3271
 
3272
- #: i18n/states/IT.php:111
3273
- msgid "Trapani"
3274
  msgstr ""
3275
 
3276
- #: i18n/states/IT.php:112
3277
- msgid "Trento"
3278
  msgstr ""
3279
 
3280
- #: i18n/states/IT.php:113
3281
- msgid "Treviso"
3282
  msgstr ""
3283
 
3284
- #: i18n/states/IT.php:114
3285
- msgid "Trieste"
3286
  msgstr ""
3287
 
3288
- #: i18n/states/IT.php:115
3289
- msgid "Udine"
3290
  msgstr ""
3291
 
3292
- #: i18n/states/IT.php:116
3293
- msgid "Varese"
3294
  msgstr ""
3295
 
3296
- #: i18n/states/IT.php:117
3297
- msgid "Venezia"
3298
  msgstr ""
3299
 
3300
- #: i18n/states/IT.php:118
3301
- msgid "Verbano-Cusio-Ossola"
3302
  msgstr ""
3303
 
3304
- #: i18n/states/IT.php:119
3305
- msgid "Vercelli"
 
3306
  msgstr ""
3307
 
3308
- #: i18n/states/IT.php:120
3309
- msgid "Verona"
 
 
3310
  msgstr ""
3311
 
3312
- #: i18n/states/IT.php:121
3313
- msgid "Vibo Valentia"
 
 
3314
  msgstr ""
3315
 
3316
- #: i18n/states/IT.php:122
3317
- msgid "Vicenza"
 
 
3318
  msgstr ""
3319
 
3320
- #: i18n/states/IT.php:123
3321
- msgid "Viterbo"
3322
  msgstr ""
3323
 
3324
- #: i18n/states/JP.php:17
3325
- msgid "Hokkaido"
3326
  msgstr ""
3327
 
3328
- #: i18n/states/JP.php:18
3329
- msgid "Aomori"
 
 
3330
  msgstr ""
3331
 
3332
- #: i18n/states/JP.php:19
3333
- msgid "Iwate"
3334
  msgstr ""
3335
 
3336
- #: i18n/states/JP.php:20
3337
- msgid "Miyagi"
3338
  msgstr ""
3339
 
3340
- #: i18n/states/JP.php:21
3341
- msgid "Akita"
3342
  msgstr ""
3343
 
3344
- #: i18n/states/JP.php:22
3345
- msgid "Yamagata"
3346
  msgstr ""
3347
 
3348
- #: i18n/states/JP.php:23
3349
- msgid "Fukushima"
3350
  msgstr ""
3351
 
3352
- #: i18n/states/JP.php:24
3353
- msgid "Ibaraki"
3354
  msgstr ""
3355
 
3356
- #: i18n/states/JP.php:25
3357
- msgid "Tochigi"
3358
  msgstr ""
3359
 
3360
- #: i18n/states/JP.php:26
3361
- msgid "Gunma"
3362
  msgstr ""
3363
 
3364
- #: i18n/states/JP.php:27
3365
- msgid "Saitama"
3366
  msgstr ""
3367
 
3368
- #: i18n/states/JP.php:28
3369
- msgid "Chiba"
3370
  msgstr ""
3371
 
3372
- #: i18n/states/JP.php:29
3373
- msgid "Tokyo"
3374
  msgstr ""
3375
 
3376
- #: i18n/states/JP.php:30
3377
- msgid "Kanagawa"
3378
  msgstr ""
3379
 
3380
- #: i18n/states/JP.php:31
3381
- msgid "Niigata"
3382
  msgstr ""
3383
 
3384
- #: i18n/states/JP.php:32
3385
- msgid "Toyama"
3386
  msgstr ""
3387
 
3388
- #: i18n/states/JP.php:33
3389
- msgid "Ishikawa"
3390
  msgstr ""
3391
 
3392
- #: i18n/states/JP.php:34
3393
- msgid "Fukui"
3394
  msgstr ""
3395
 
3396
- #: i18n/states/JP.php:35
3397
- msgid "Yamanashi"
3398
  msgstr ""
3399
 
3400
- #: i18n/states/JP.php:36
3401
- msgid "Nagano"
3402
  msgstr ""
3403
 
3404
- #: i18n/states/JP.php:37
3405
- msgid "Gifu"
3406
  msgstr ""
3407
 
3408
- #: i18n/states/JP.php:38
3409
- msgid "Shizuoka"
3410
  msgstr ""
3411
 
3412
- #: i18n/states/JP.php:39
3413
- msgid "Aichi"
3414
  msgstr ""
3415
 
3416
- #: i18n/states/JP.php:40
3417
- msgid "Mie"
3418
  msgstr ""
3419
 
3420
- #: i18n/states/JP.php:41
3421
- msgid "Shiga"
3422
  msgstr ""
3423
 
3424
- #: i18n/states/JP.php:42
3425
- msgid "Kyoto"
3426
  msgstr ""
3427
 
3428
- #: i18n/states/JP.php:43
3429
- msgid "Osaka"
3430
  msgstr ""
3431
 
3432
- #: i18n/states/JP.php:44
3433
- msgid "Hyogo"
3434
  msgstr ""
3435
 
3436
- #: i18n/states/JP.php:45
3437
- msgid "Nara"
3438
  msgstr ""
3439
 
3440
- #: i18n/states/JP.php:46
3441
- msgid "Wakayama"
3442
  msgstr ""
3443
 
3444
- #: i18n/states/JP.php:47
3445
- msgid "Tottori"
3446
  msgstr ""
3447
 
3448
- #: i18n/states/JP.php:48
3449
- msgid "Shimane"
3450
  msgstr ""
3451
 
3452
- #: i18n/states/JP.php:49
3453
- msgid "Okayama"
3454
  msgstr ""
3455
 
3456
- #: i18n/states/JP.php:50
3457
- msgid "Hiroshima"
3458
  msgstr ""
3459
 
3460
- #: i18n/states/JP.php:51
3461
- msgid "Yamaguchi"
3462
  msgstr ""
3463
 
3464
- #: i18n/states/JP.php:52
3465
- msgid "Tokushima"
3466
  msgstr ""
3467
 
3468
- #: i18n/states/JP.php:53
3469
- msgid "Kagawa"
3470
  msgstr ""
3471
 
3472
- #: i18n/states/JP.php:54
3473
- msgid "Ehime"
3474
  msgstr ""
3475
 
3476
- #: i18n/states/JP.php:55
3477
- msgid "Kochi"
3478
  msgstr ""
3479
 
3480
- #: i18n/states/JP.php:56
3481
- msgid "Fukuoka"
3482
  msgstr ""
3483
 
3484
- #: i18n/states/JP.php:57
3485
- msgid "Saga"
3486
  msgstr ""
3487
 
3488
- #: i18n/states/JP.php:58
3489
- msgid "Nagasaki"
3490
  msgstr ""
3491
 
3492
- #: i18n/states/JP.php:59
3493
- msgid "Kumamoto"
3494
  msgstr ""
3495
 
3496
- #: i18n/states/JP.php:60
3497
- msgid "Oita"
3498
  msgstr ""
3499
 
3500
- #: i18n/states/JP.php:61
3501
- msgid "Miyazaki"
3502
  msgstr ""
3503
 
3504
- #: i18n/states/JP.php:62
3505
- msgid "Kagoshima"
3506
  msgstr ""
3507
 
3508
- #: i18n/states/JP.php:63
3509
- msgid "Okinawa"
3510
  msgstr ""
3511
 
3512
- #: i18n/states/LR.php:14
3513
- msgid "Bomi"
3514
  msgstr ""
3515
 
3516
- #: i18n/states/LR.php:15
3517
- msgid "Bong"
3518
  msgstr ""
3519
 
3520
- #: i18n/states/LR.php:16
3521
- msgid "Gbarpolu"
3522
  msgstr ""
3523
 
3524
- #: i18n/states/LR.php:17
3525
- msgid "Grand Bassa"
3526
  msgstr ""
3527
 
3528
- #: i18n/states/LR.php:18
3529
- msgid "Grand Cape Mount"
3530
  msgstr ""
3531
 
3532
- #: i18n/states/LR.php:19
3533
- msgid "Grand Gedeh"
3534
  msgstr ""
3535
 
3536
- #: i18n/states/LR.php:20
3537
- msgid "Grand Kru"
3538
  msgstr ""
3539
 
3540
- #: i18n/states/LR.php:21
3541
- msgid "Lofa"
3542
  msgstr ""
3543
 
3544
- #: i18n/states/LR.php:22
3545
- msgid "Margibi"
3546
  msgstr ""
3547
 
3548
- #: i18n/states/LR.php:23 i18n/states/US.php:34
3549
- msgid "Maryland"
3550
  msgstr ""
3551
 
3552
- #: i18n/states/LR.php:24
3553
- msgid "Montserrado"
3554
  msgstr ""
3555
 
3556
- #: i18n/states/LR.php:25
3557
- msgid "Nimba"
3558
  msgstr ""
3559
 
3560
- #: i18n/states/LR.php:26
3561
- msgid "Rivercess"
3562
  msgstr ""
3563
 
3564
- #: i18n/states/LR.php:27
3565
- msgid "River Gee"
3566
  msgstr ""
3567
 
3568
- #: i18n/states/LR.php:28
3569
- msgid "Sinoe"
3570
  msgstr ""
3571
 
3572
- #: i18n/states/MD.php:20
3573
- msgid "Chi&#537;in&#259;u"
3574
  msgstr ""
3575
 
3576
- #: i18n/states/MD.php:21
3577
- msgid "B&#259;l&#539;i"
3578
  msgstr ""
3579
 
3580
- #: i18n/states/MD.php:22
3581
- msgid "Anenii Noi"
3582
  msgstr ""
3583
 
3584
- #: i18n/states/MD.php:23
3585
- msgid "Basarabeasca"
3586
  msgstr ""
3587
 
3588
- #: i18n/states/MD.php:24
3589
- msgid "Briceni"
3590
  msgstr ""
3591
 
3592
- #: i18n/states/MD.php:25
3593
- msgid "Cahul"
3594
  msgstr ""
3595
 
3596
- #: i18n/states/MD.php:26
3597
- msgid "Cantemir"
3598
  msgstr ""
3599
 
3600
- #: i18n/states/MD.php:27 i18n/states/RO.php:28
3601
- msgid "C&#259;l&#259;ra&#537;i"
3602
  msgstr ""
3603
 
3604
- #: i18n/states/MD.php:28
3605
- msgid "C&#259;u&#537;eni"
3606
  msgstr ""
3607
 
3608
- #: i18n/states/MD.php:29
3609
- msgid "Cimi&#537;lia"
3610
  msgstr ""
3611
 
3612
- #: i18n/states/MD.php:30
3613
- msgid "Criuleni"
3614
  msgstr ""
3615
 
3616
- #: i18n/states/MD.php:31
3617
- msgid "Dondu&#537;eni"
3618
  msgstr ""
3619
 
3620
- #: i18n/states/MD.php:32
3621
- msgid "Drochia"
3622
  msgstr ""
3623
 
3624
- #: i18n/states/MD.php:33
3625
- msgid "Dub&#259;sari"
3626
  msgstr ""
3627
 
3628
- #: i18n/states/MD.php:34
3629
- msgid "Edine&#539;"
3630
  msgstr ""
3631
 
3632
- #: i18n/states/MD.php:35
3633
- msgid "F&#259;le&#537;ti"
3634
  msgstr ""
3635
 
3636
- #: i18n/states/MD.php:36
3637
- msgid "Flore&#537;ti"
3638
  msgstr ""
3639
 
3640
- #: i18n/states/MD.php:37
3641
- msgid "UTA G&#259;g&#259;uzia"
3642
  msgstr ""
3643
 
3644
- #: i18n/states/MD.php:38
3645
- msgid "Glodeni"
3646
  msgstr ""
3647
 
3648
- #: i18n/states/MD.php:39
3649
- msgid "H&icirc;nce&#537;ti"
3650
  msgstr ""
3651
 
3652
- #: i18n/states/MD.php:40
3653
- msgid "Ialoveni"
3654
  msgstr ""
3655
 
3656
- #: i18n/states/MD.php:41
3657
- msgid "Leova"
3658
  msgstr ""
3659
 
3660
- #: i18n/states/MD.php:42
3661
- msgid "Nisporeni"
3662
  msgstr ""
3663
 
3664
- #: i18n/states/MD.php:43
3665
- msgid "Ocni&#539;a"
3666
  msgstr ""
3667
 
3668
- #: i18n/states/MD.php:44
3669
- msgid "Orhei"
3670
  msgstr ""
3671
 
3672
- #: i18n/states/MD.php:45
3673
- msgid "Rezina"
3674
  msgstr ""
3675
 
3676
- #: i18n/states/MD.php:46
3677
- msgid "R&icirc;&#537;cani"
3678
  msgstr ""
3679
 
3680
- #: i18n/states/MD.php:47
3681
- msgid "S&icirc;ngerei"
3682
  msgstr ""
3683
 
3684
- #: i18n/states/MD.php:48
3685
- msgid "Soroca"
3686
  msgstr ""
3687
 
3688
- #: i18n/states/MD.php:49
3689
- msgid "Str&#259;&#537;eni"
3690
  msgstr ""
3691
 
3692
- #: i18n/states/MD.php:50
3693
- msgid "&#536;old&#259;ne&#537;ti"
3694
  msgstr ""
3695
 
3696
- #: i18n/states/MD.php:51
3697
- msgid "&#536;tefan Vod&#259;"
3698
  msgstr ""
3699
 
3700
- #: i18n/states/MD.php:52
3701
- msgid "Taraclia"
3702
  msgstr ""
3703
 
3704
- #: i18n/states/MD.php:53
3705
- msgid "Telene&#537;ti"
3706
  msgstr ""
3707
 
3708
- #: i18n/states/MD.php:54
3709
- msgid "Ungheni"
3710
  msgstr ""
3711
 
3712
- #: i18n/states/MX.php:14
3713
- msgid "Ciudad de M&eacute;xico"
3714
  msgstr ""
3715
 
3716
- #: i18n/states/MX.php:15
3717
- msgid "Jalisco"
3718
  msgstr ""
3719
 
3720
- #: i18n/states/MX.php:16
3721
- msgid "Nuevo Le&oacute;n"
3722
  msgstr ""
3723
 
3724
- #: i18n/states/MX.php:17
3725
- msgid "Aguascalientes"
3726
  msgstr ""
3727
 
3728
- #: i18n/states/MX.php:18
3729
- msgid "Baja California"
3730
  msgstr ""
3731
 
3732
- #: i18n/states/MX.php:19
3733
- msgid "Baja California Sur"
3734
  msgstr ""
3735
 
3736
- #: i18n/states/MX.php:20
3737
- msgid "Campeche"
3738
  msgstr ""
3739
 
3740
- #: i18n/states/MX.php:21
3741
- msgid "Chiapas"
3742
  msgstr ""
3743
 
3744
- #: i18n/states/MX.php:22
3745
- msgid "Chihuahua"
3746
  msgstr ""
3747
 
3748
- #: i18n/states/MX.php:23
3749
- msgid "Coahuila"
3750
  msgstr ""
3751
 
3752
- #: i18n/states/MX.php:24
3753
- msgid "Colima"
3754
  msgstr ""
3755
 
3756
- #: i18n/states/MX.php:25
3757
- msgid "Durango"
3758
  msgstr ""
3759
 
3760
- #: i18n/states/MX.php:26
3761
- msgid "Guanajuato"
3762
  msgstr ""
3763
 
3764
- #: i18n/states/MX.php:27
3765
- msgid "Guerrero"
3766
  msgstr ""
3767
 
3768
- #: i18n/states/MX.php:28
3769
- msgid "Hidalgo"
3770
  msgstr ""
3771
 
3772
- #: i18n/states/MX.php:29
3773
- msgid "Estado de M&eacute;xico"
3774
  msgstr ""
3775
 
3776
- #: i18n/states/MX.php:30
3777
- msgid "Michoac&aacute;n"
3778
  msgstr ""
3779
 
3780
- #: i18n/states/MX.php:31
3781
- msgid "Morelos"
3782
  msgstr ""
3783
 
3784
- #: i18n/states/MX.php:32
3785
- msgid "Nayarit"
3786
  msgstr ""
3787
 
3788
- #: i18n/states/MX.php:33
3789
- msgid "Oaxaca"
3790
  msgstr ""
3791
 
3792
- #: i18n/states/MX.php:34
3793
- msgid "Puebla"
3794
  msgstr ""
3795
 
3796
- #: i18n/states/MX.php:35
3797
- msgid "Quer&eacute;taro"
3798
  msgstr ""
3799
 
3800
- #: i18n/states/MX.php:36
3801
- msgid "Quintana Roo"
3802
  msgstr ""
3803
 
3804
- #: i18n/states/MX.php:37
3805
- msgid "San Luis Potos&iacute;"
3806
  msgstr ""
3807
 
3808
- #: i18n/states/MX.php:38
3809
- msgid "Sinaloa"
3810
  msgstr ""
3811
 
3812
- #: i18n/states/MX.php:39
3813
- msgid "Sonora"
3814
  msgstr ""
3815
 
3816
- #: i18n/states/MX.php:40
3817
- msgid "Tabasco"
3818
  msgstr ""
3819
 
3820
- #: i18n/states/MX.php:41
3821
- msgid "Tamaulipas"
3822
  msgstr ""
3823
 
3824
- #: i18n/states/MX.php:42
3825
- msgid "Tlaxcala"
3826
  msgstr ""
3827
 
3828
- #: i18n/states/MX.php:43
3829
- msgid "Veracruz"
3830
  msgstr ""
3831
 
3832
- #: i18n/states/MX.php:44
3833
- msgid "Yucat&aacute;n"
3834
  msgstr ""
3835
 
3836
- #: i18n/states/MX.php:45
3837
- msgid "Zacatecas"
3838
  msgstr ""
3839
 
3840
- #: i18n/states/MY.php:14
3841
- msgid "Johor"
3842
  msgstr ""
3843
 
3844
- #: i18n/states/MY.php:15
3845
- msgid "Kedah"
3846
  msgstr ""
3847
 
3848
- #: i18n/states/MY.php:16
3849
- msgid "Kelantan"
3850
  msgstr ""
3851
 
3852
- #: i18n/states/MY.php:17
3853
- msgid "Labuan"
3854
  msgstr ""
3855
 
3856
- #: i18n/states/MY.php:18
3857
- msgid "Malacca (Melaka)"
3858
  msgstr ""
3859
 
3860
- #: i18n/states/MY.php:19
3861
- msgid "Negeri Sembilan"
3862
  msgstr ""
3863
 
3864
- #: i18n/states/MY.php:20
3865
- msgid "Pahang"
3866
  msgstr ""
3867
 
3868
- #: i18n/states/MY.php:21
3869
- msgid "Penang (Pulau Pinang)"
3870
  msgstr ""
3871
 
3872
- #: i18n/states/MY.php:22
3873
- msgid "Perak"
3874
  msgstr ""
3875
 
3876
- #: i18n/states/MY.php:23
3877
- msgid "Perlis"
3878
  msgstr ""
3879
 
3880
- #: i18n/states/MY.php:24
3881
- msgid "Sabah"
3882
  msgstr ""
3883
 
3884
- #: i18n/states/MY.php:25
3885
- msgid "Sarawak"
3886
  msgstr ""
3887
 
3888
- #: i18n/states/MY.php:26
3889
- msgid "Selangor"
3890
  msgstr ""
3891
 
3892
- #: i18n/states/MY.php:27
3893
- msgid "Terengganu"
3894
  msgstr ""
3895
 
3896
- #: i18n/states/MY.php:28
3897
- msgid "Putrajaya"
3898
  msgstr ""
3899
 
3900
- #: i18n/states/MY.php:29
3901
- msgid "Kuala Lumpur"
3902
  msgstr ""
3903
 
3904
- #: i18n/states/NG.php:14
3905
- msgid "Abia"
3906
  msgstr ""
3907
 
3908
- #: i18n/states/NG.php:15
3909
- msgid "Abuja"
3910
  msgstr ""
3911
 
3912
- #: i18n/states/NG.php:16
3913
- msgid "Adamawa"
3914
  msgstr ""
3915
 
3916
- #: i18n/states/NG.php:17
3917
- msgid "Akwa Ibom"
3918
  msgstr ""
3919
 
3920
- #: i18n/states/NG.php:18
3921
- msgid "Anambra"
3922
  msgstr ""
3923
 
3924
- #: i18n/states/NG.php:19
3925
- msgid "Bauchi"
3926
  msgstr ""
3927
 
3928
- #: i18n/states/NG.php:20
3929
- msgid "Bayelsa"
3930
  msgstr ""
3931
 
3932
- #: i18n/states/NG.php:21
3933
- msgid "Benue"
3934
  msgstr ""
3935
 
3936
- #: i18n/states/NG.php:22
3937
- msgid "Borno"
3938
  msgstr ""
3939
 
3940
- #: i18n/states/NG.php:23
3941
- msgid "Cross River"
3942
  msgstr ""
3943
 
3944
- #: i18n/states/NG.php:24
3945
- msgid "Delta"
3946
  msgstr ""
3947
 
3948
- #: i18n/states/NG.php:25
3949
- msgid "Ebonyi"
3950
  msgstr ""
3951
 
3952
- #: i18n/states/NG.php:26
3953
- msgid "Edo"
3954
  msgstr ""
3955
 
3956
- #: i18n/states/NG.php:27
3957
- msgid "Ekiti"
3958
  msgstr ""
3959
 
3960
- #: i18n/states/NG.php:28
3961
- msgid "Enugu"
3962
  msgstr ""
3963
 
3964
- #: i18n/states/NG.php:29
3965
- msgid "Gombe"
3966
  msgstr ""
3967
 
3968
- #: i18n/states/NG.php:30
3969
- msgid "Imo"
3970
  msgstr ""
3971
 
3972
- #: i18n/states/NG.php:31
3973
- msgid "Jigawa"
3974
  msgstr ""
3975
 
3976
- #: i18n/states/NG.php:32
3977
- msgid "Kaduna"
3978
  msgstr ""
3979
 
3980
- #: i18n/states/NG.php:33
3981
- msgid "Kano"
3982
  msgstr ""
3983
 
3984
- #: i18n/states/NG.php:34
3985
- msgid "Katsina"
3986
  msgstr ""
3987
 
3988
- #: i18n/states/NG.php:35
3989
- msgid "Kebbi"
3990
  msgstr ""
3991
 
3992
- #: i18n/states/NG.php:36
3993
- msgid "Kogi"
3994
  msgstr ""
3995
 
3996
- #: i18n/states/NG.php:37
3997
- msgid "Kwara"
3998
  msgstr ""
3999
 
4000
- #: i18n/states/NG.php:38
4001
- msgid "Lagos"
4002
  msgstr ""
4003
 
4004
- #: i18n/states/NG.php:39
4005
- msgid "Nasarawa"
4006
  msgstr ""
4007
 
4008
- #: i18n/states/NG.php:41
4009
- msgid "Ogun"
4010
  msgstr ""
4011
 
4012
- #: i18n/states/NG.php:42
4013
- msgid "Ondo"
4014
  msgstr ""
4015
 
4016
- #: i18n/states/NG.php:43
4017
- msgid "Osun"
4018
  msgstr ""
4019
 
4020
- #: i18n/states/NG.php:44
4021
- msgid "Oyo"
4022
  msgstr ""
4023
 
4024
- #: i18n/states/NG.php:45
4025
- msgid "Plateau"
4026
  msgstr ""
4027
 
4028
- #: i18n/states/NG.php:46
4029
- msgid "Rivers"
4030
  msgstr ""
4031
 
4032
- #: i18n/states/NG.php:47
4033
- msgid "Sokoto"
4034
  msgstr ""
4035
 
4036
- #: i18n/states/NG.php:48
4037
- msgid "Taraba"
4038
  msgstr ""
4039
 
4040
- #: i18n/states/NG.php:49
4041
- msgid "Yobe"
4042
  msgstr ""
4043
 
4044
- #: i18n/states/NG.php:50
4045
- msgid "Zamfara"
4046
  msgstr ""
4047
 
4048
- #: i18n/states/NP.php:14
4049
- msgid "Bagmati"
4050
  msgstr ""
4051
 
4052
- #: i18n/states/NP.php:15
4053
- msgid "Bheri"
4054
  msgstr ""
4055
 
4056
- #: i18n/states/NP.php:16
4057
- msgid "Dhaulagiri"
4058
  msgstr ""
4059
 
4060
- #: i18n/states/NP.php:17
4061
- msgid "Gandaki"
4062
  msgstr ""
4063
 
4064
- #: i18n/states/NP.php:18
4065
- msgid "Janakpur"
4066
  msgstr ""
4067
 
4068
- #: i18n/states/NP.php:19
4069
- msgid "Karnali"
4070
  msgstr ""
4071
 
4072
- #: i18n/states/NP.php:20
4073
- msgid "Koshi"
4074
  msgstr ""
4075
 
4076
- #: i18n/states/NP.php:21
4077
- msgid "Lumbini"
4078
  msgstr ""
4079
 
4080
- #: i18n/states/NP.php:22
4081
- msgid "Mahakali"
4082
  msgstr ""
4083
 
4084
- #: i18n/states/NP.php:23
4085
- msgid "Mechi"
4086
  msgstr ""
4087
 
4088
- #: i18n/states/NP.php:24
4089
- msgid "Narayani"
4090
  msgstr ""
4091
 
4092
- #: i18n/states/NP.php:25
4093
- msgid "Rapti"
4094
  msgstr ""
4095
 
4096
- #: i18n/states/NP.php:26
4097
- msgid "Sagarmatha"
4098
  msgstr ""
4099
 
4100
- #: i18n/states/NP.php:27
4101
- msgid "Seti"
4102
  msgstr ""
4103
 
4104
- #: i18n/states/NZ.php:14
4105
- msgid "Northland"
4106
  msgstr ""
4107
 
4108
- #: i18n/states/NZ.php:15
4109
- msgid "Auckland"
4110
  msgstr ""
4111
 
4112
- #: i18n/states/NZ.php:16
4113
- msgid "Waikato"
4114
  msgstr ""
4115
 
4116
- #: i18n/states/NZ.php:17
4117
- msgid "Bay of Plenty"
4118
  msgstr ""
4119
 
4120
- #: i18n/states/NZ.php:18
4121
- msgid "Taranaki"
4122
  msgstr ""
4123
 
4124
- #: i18n/states/NZ.php:19
4125
- msgid "Gisborne"
4126
  msgstr ""
4127
 
4128
- #: i18n/states/NZ.php:20
4129
- msgid "Hawke&rsquo;s Bay"
4130
  msgstr ""
4131
 
4132
- #: i18n/states/NZ.php:21
4133
- msgid "Manawatu-Wanganui"
4134
  msgstr ""
4135
 
4136
- #: i18n/states/NZ.php:22
4137
- msgid "Wellington"
4138
  msgstr ""
4139
 
4140
- #: i18n/states/NZ.php:23
4141
- msgid "Nelson"
4142
  msgstr ""
4143
 
4144
- #: i18n/states/NZ.php:24
4145
- msgid "Marlborough"
4146
  msgstr ""
4147
 
4148
- #: i18n/states/NZ.php:25
4149
- msgid "Tasman"
4150
  msgstr ""
4151
 
4152
- #: i18n/states/NZ.php:26
4153
- msgid "West Coast"
4154
  msgstr ""
4155
 
4156
- #: i18n/states/NZ.php:27
4157
- msgid "Canterbury"
4158
  msgstr ""
4159
 
4160
- #: i18n/states/NZ.php:28
4161
- msgid "Otago"
4162
  msgstr ""
4163
 
4164
- #: i18n/states/NZ.php:29
4165
- msgid "Southland"
4166
  msgstr ""
4167
 
4168
- #: i18n/states/PE.php:14
4169
- msgid "El Callao"
4170
  msgstr ""
4171
 
4172
- #: i18n/states/PE.php:15
4173
- msgid "Municipalidad Metropolitana de Lima"
4174
  msgstr ""
4175
 
4176
- #: i18n/states/PE.php:17
4177
- msgid "Ancash"
4178
  msgstr ""
4179
 
4180
- #: i18n/states/PE.php:18
4181
- msgid "Apur&iacute;mac"
4182
  msgstr ""
4183
 
4184
- #: i18n/states/PE.php:19
4185
- msgid "Arequipa"
4186
  msgstr ""
4187
 
4188
- #: i18n/states/PE.php:20
4189
- msgid "Ayacucho"
4190
  msgstr ""
4191
 
4192
- #: i18n/states/PE.php:21
4193
- msgid "Cajamarca"
4194
  msgstr ""
4195
 
4196
- #: i18n/states/PE.php:22
4197
- msgid "Cusco"
4198
  msgstr ""
4199
 
4200
- #: i18n/states/PE.php:23
4201
- msgid "Huancavelica"
4202
  msgstr ""
4203
 
4204
- #: i18n/states/PE.php:24
4205
- msgid "Hu&aacute;nuco"
4206
  msgstr ""
4207
 
4208
- #: i18n/states/PE.php:25
4209
- msgid "Ica"
4210
  msgstr ""
4211
 
4212
- #: i18n/states/PE.php:26
4213
- msgid "Jun&iacute;n"
4214
  msgstr ""
4215
 
4216
- #: i18n/states/PE.php:27
4217
- msgid "La Libertad"
4218
  msgstr ""
4219
 
4220
- #: i18n/states/PE.php:28
4221
- msgid "Lambayeque"
4222
  msgstr ""
4223
 
4224
- #: i18n/states/PE.php:29
4225
- msgid "Lima"
4226
  msgstr ""
4227
 
4228
- #: i18n/states/PE.php:30
4229
- msgid "Loreto"
4230
  msgstr ""
4231
 
4232
- #: i18n/states/PE.php:31
4233
- msgid "Madre de Dios"
4234
  msgstr ""
4235
 
4236
- #: i18n/states/PE.php:32
4237
- msgid "Moquegua"
4238
  msgstr ""
4239
 
4240
- #: i18n/states/PE.php:33
4241
- msgid "Pasco"
4242
  msgstr ""
4243
 
4244
- #: i18n/states/PE.php:34
4245
- msgid "Piura"
4246
  msgstr ""
4247
 
4248
- #: i18n/states/PE.php:35
4249
- msgid "Puno"
4250
  msgstr ""
4251
 
4252
- #: i18n/states/PE.php:36
4253
- msgid "San Mart&iacute;n"
4254
  msgstr ""
4255
 
4256
- #: i18n/states/PE.php:37
4257
- msgid "Tacna"
4258
  msgstr ""
4259
 
4260
- #: i18n/states/PE.php:38
4261
- msgid "Tumbes"
4262
  msgstr ""
4263
 
4264
- #: i18n/states/PE.php:39
4265
- msgid "Ucayali"
4266
  msgstr ""
4267
 
4268
- #: i18n/states/PH.php:14
4269
- msgid "Abra"
4270
  msgstr ""
4271
 
4272
- #: i18n/states/PH.php:15
4273
- msgid "Agusan del Norte"
4274
  msgstr ""
4275
 
4276
- #: i18n/states/PH.php:16
4277
- msgid "Agusan del Sur"
4278
  msgstr ""
4279
 
4280
- #: i18n/states/PH.php:17
4281
- msgid "Aklan"
4282
  msgstr ""
4283
 
4284
- #: i18n/states/PH.php:18
4285
- msgid "Albay"
4286
  msgstr ""
4287
 
4288
- #: i18n/states/PH.php:19
4289
- msgid "Antique"
4290
  msgstr ""
4291
 
4292
- #: i18n/states/PH.php:20
4293
- msgid "Apayao"
4294
  msgstr ""
4295
 
4296
- #: i18n/states/PH.php:21
4297
- msgid "Aurora"
4298
  msgstr ""
4299
 
4300
- #: i18n/states/PH.php:22
4301
- msgid "Basilan"
4302
  msgstr ""
4303
 
4304
- #: i18n/states/PH.php:23
4305
- msgid "Bataan"
4306
  msgstr ""
4307
 
4308
- #: i18n/states/PH.php:24
4309
- msgid "Batanes"
4310
  msgstr ""
4311
 
4312
- #: i18n/states/PH.php:25
4313
- msgid "Batangas"
4314
  msgstr ""
4315
 
4316
- #: i18n/states/PH.php:26
4317
- msgid "Benguet"
4318
  msgstr ""
4319
 
4320
- #: i18n/states/PH.php:27
4321
- msgid "Biliran"
4322
  msgstr ""
4323
 
4324
- #: i18n/states/PH.php:28
4325
- msgid "Bohol"
4326
  msgstr ""
4327
 
4328
- #: i18n/states/PH.php:29
4329
- msgid "Bukidnon"
4330
  msgstr ""
4331
 
4332
- #: i18n/states/PH.php:30
4333
- msgid "Bulacan"
4334
  msgstr ""
4335
 
4336
- #: i18n/states/PH.php:31
4337
- msgid "Cagayan"
4338
  msgstr ""
4339
 
4340
- #: i18n/states/PH.php:32
4341
- msgid "Camarines Norte"
4342
  msgstr ""
4343
 
4344
- #: i18n/states/PH.php:33
4345
- msgid "Camarines Sur"
4346
  msgstr ""
4347
 
4348
- #: i18n/states/PH.php:34
4349
- msgid "Camiguin"
4350
  msgstr ""
4351
 
4352
- #: i18n/states/PH.php:35
4353
- msgid "Capiz"
4354
  msgstr ""
4355
 
4356
- #: i18n/states/PH.php:36
4357
- msgid "Catanduanes"
 
4358
  msgstr ""
4359
 
4360
- #: i18n/states/PH.php:37
4361
- msgid "Cavite"
 
4362
  msgstr ""
4363
 
4364
- #: i18n/states/PH.php:38
4365
- msgid "Cebu"
 
4366
  msgstr ""
4367
 
4368
- #: i18n/states/PH.php:39
4369
- msgid "Compostela Valley"
 
4370
  msgstr ""
4371
 
4372
- #: i18n/states/PH.php:40
4373
- msgid "Cotabato"
4374
  msgstr ""
4375
 
4376
- #: i18n/states/PH.php:41
4377
- msgid "Davao del Norte"
4378
  msgstr ""
4379
 
4380
- #: i18n/states/PH.php:42
4381
- msgid "Davao del Sur"
4382
  msgstr ""
4383
 
4384
- #: i18n/states/PH.php:43
4385
- msgid "Davao Occidental"
4386
  msgstr ""
4387
 
4388
- #: i18n/states/PH.php:44
4389
- msgid "Davao Oriental"
4390
  msgstr ""
4391
 
4392
- #: i18n/states/PH.php:45
4393
- msgid "Dinagat Islands"
4394
  msgstr ""
4395
 
4396
- #: i18n/states/PH.php:46
4397
- msgid "Eastern Samar"
4398
  msgstr ""
4399
 
4400
- #: i18n/states/PH.php:47
4401
- msgid "Guimaras"
4402
  msgstr ""
4403
 
4404
- #: i18n/states/PH.php:48
4405
- msgid "Ifugao"
4406
  msgstr ""
4407
 
4408
- #: i18n/states/PH.php:49
4409
- msgid "Ilocos Norte"
4410
  msgstr ""
4411
 
4412
- #: i18n/states/PH.php:50
4413
- msgid "Ilocos Sur"
4414
  msgstr ""
4415
 
4416
- #: i18n/states/PH.php:51
4417
- msgid "Iloilo"
4418
  msgstr ""
4419
 
4420
- #: i18n/states/PH.php:52
4421
- msgid "Isabela"
4422
  msgstr ""
4423
 
4424
- #: i18n/states/PH.php:53
4425
- msgid "Kalinga"
 
 
4426
  msgstr ""
4427
 
4428
- #: i18n/states/PH.php:54
4429
- msgid "La Union"
4430
  msgstr ""
4431
 
4432
- #: i18n/states/PH.php:55
4433
- msgid "Laguna"
4434
  msgstr ""
4435
 
4436
- #: i18n/states/PH.php:56
4437
- msgid "Lanao del Norte"
4438
- msgstr ""
 
 
 
 
4439
 
4440
- #: i18n/states/PH.php:57
4441
- msgid "Lanao del Sur"
4442
- msgstr ""
 
 
 
 
 
4443
 
4444
- #: i18n/states/PH.php:58
4445
- msgid "Leyte"
4446
  msgstr ""
4447
 
4448
- #: i18n/states/PH.php:59
4449
- msgid "Maguindanao"
4450
  msgstr ""
4451
 
4452
- #: i18n/states/PH.php:60
4453
- msgid "Marinduque"
4454
  msgstr ""
4455
 
4456
- #: i18n/states/PH.php:61
4457
- msgid "Masbate"
4458
  msgstr ""
4459
 
4460
- #: i18n/states/PH.php:62
4461
- msgid "Misamis Occidental"
4462
  msgstr ""
4463
 
4464
- #: i18n/states/PH.php:63
4465
- msgid "Misamis Oriental"
4466
  msgstr ""
4467
 
4468
- #: i18n/states/PH.php:64
4469
- msgid "Mountain Province"
 
4470
  msgstr ""
4471
 
4472
- #: i18n/states/PH.php:65
4473
- msgid "Negros Occidental"
4474
  msgstr ""
4475
 
4476
- #: i18n/states/PH.php:66
4477
- msgid "Negros Oriental"
4478
  msgstr ""
4479
 
4480
- #: i18n/states/PH.php:67
4481
- msgid "Northern Samar"
4482
  msgstr ""
4483
 
4484
- #: i18n/states/PH.php:68
4485
- msgid "Nueva Ecija"
4486
  msgstr ""
4487
 
4488
- #: i18n/states/PH.php:69
4489
- msgid "Nueva Vizcaya"
4490
  msgstr ""
4491
 
4492
- #: i18n/states/PH.php:70
4493
- msgid "Occidental Mindoro"
4494
  msgstr ""
4495
 
4496
- #: i18n/states/PH.php:71
4497
- msgid "Oriental Mindoro"
4498
  msgstr ""
4499
 
4500
- #: i18n/states/PH.php:72
4501
- msgid "Palawan"
4502
  msgstr ""
4503
 
4504
- #: i18n/states/PH.php:73
4505
- msgid "Pampanga"
4506
  msgstr ""
4507
 
4508
- #: i18n/states/PH.php:74
4509
- msgid "Pangasinan"
4510
  msgstr ""
4511
 
4512
- #: i18n/states/PH.php:75
4513
- msgid "Quezon"
4514
  msgstr ""
4515
 
4516
- #: i18n/states/PH.php:76
4517
- msgid "Quirino"
4518
  msgstr ""
4519
 
4520
- #: i18n/states/PH.php:77
4521
- msgid "Rizal"
4522
  msgstr ""
4523
 
4524
- #: i18n/states/PH.php:78
4525
- msgid "Romblon"
4526
  msgstr ""
4527
 
4528
- #: i18n/states/PH.php:79
4529
- msgid "Samar"
4530
  msgstr ""
4531
 
4532
- #: i18n/states/PH.php:80
4533
- msgid "Sarangani"
4534
  msgstr ""
4535
 
4536
- #: i18n/states/PH.php:81
4537
- msgid "Siquijor"
 
 
 
 
 
 
 
 
 
 
 
 
4538
  msgstr ""
4539
 
4540
- #: i18n/states/PH.php:82
4541
- msgid "Sorsogon"
4542
  msgstr ""
4543
 
4544
- #: i18n/states/PH.php:83
4545
- msgid "South Cotabato"
4546
  msgstr ""
4547
 
4548
- #: i18n/states/PH.php:84
4549
- msgid "Southern Leyte"
4550
  msgstr ""
4551
 
4552
- #: i18n/states/PH.php:85
4553
- msgid "Sultan Kudarat"
4554
  msgstr ""
4555
 
4556
- #: i18n/states/PH.php:86
4557
- msgid "Sulu"
4558
  msgstr ""
4559
 
4560
- #: i18n/states/PH.php:87
4561
- msgid "Surigao del Norte"
 
 
 
 
 
 
 
4562
  msgstr ""
4563
 
4564
- #: i18n/states/PH.php:88
4565
- msgid "Surigao del Sur"
4566
  msgstr ""
4567
 
4568
- #: i18n/states/PH.php:89
4569
- msgid "Tarlac"
4570
  msgstr ""
4571
 
4572
- #: i18n/states/PH.php:90
4573
- msgid "Tawi-Tawi"
4574
  msgstr ""
4575
 
4576
- #: i18n/states/PH.php:91
4577
- msgid "Zambales"
4578
  msgstr ""
4579
 
4580
- #: i18n/states/PH.php:92
4581
- msgid "Zamboanga del Norte"
4582
  msgstr ""
4583
 
4584
- #: i18n/states/PH.php:93
4585
- msgid "Zamboanga del Sur"
4586
  msgstr ""
4587
 
4588
- #: i18n/states/PH.php:94
4589
- msgid "Zamboanga Sibugay"
4590
  msgstr ""
4591
 
4592
- #: i18n/states/PH.php:95
4593
- msgid "Metro Manila"
4594
  msgstr ""
4595
 
4596
- #: i18n/states/PK.php:14
4597
- msgid "Azad Kashmir"
 
 
4598
  msgstr ""
4599
 
4600
- #: i18n/states/PK.php:15
4601
- msgid "Balochistan"
 
4602
  msgstr ""
4603
 
4604
- #: i18n/states/PK.php:16
4605
- msgid "FATA"
4606
  msgstr ""
4607
 
4608
- #: i18n/states/PK.php:17
4609
- msgid "Gilgit Baltistan"
 
4610
  msgstr ""
4611
 
4612
- #: i18n/states/PK.php:18
4613
- msgid "Islamabad Capital Territory"
 
4614
  msgstr ""
4615
 
4616
- #: i18n/states/PK.php:19
4617
- msgid "Khyber Pakhtunkhwa"
 
4618
  msgstr ""
4619
 
4620
- #: i18n/states/PK.php:21
4621
- msgid "Sindh"
4622
  msgstr ""
4623
 
4624
- #: i18n/states/RO.php:17
4625
- msgid "Alba"
 
4626
  msgstr ""
4627
 
4628
- #: i18n/states/RO.php:18
4629
- msgid "Arad"
 
 
4630
  msgstr ""
4631
 
4632
- #: i18n/states/RO.php:19
4633
- msgid "Arge&#537;"
4634
  msgstr ""
4635
 
4636
- #: i18n/states/RO.php:20
4637
- msgid "Bac&#259;u"
4638
  msgstr ""
4639
 
4640
- #: i18n/states/RO.php:21
4641
- msgid "Bihor"
 
4642
  msgstr ""
4643
 
4644
- #: i18n/states/RO.php:22
4645
- msgid "Bistri&#539;a-N&#259;s&#259;ud"
4646
  msgstr ""
4647
 
4648
- #: i18n/states/RO.php:23
4649
- msgid "Boto&#537;ani"
4650
  msgstr ""
4651
 
4652
- #: i18n/states/RO.php:24
4653
- msgid "Br&#259;ila"
4654
  msgstr ""
4655
 
4656
- #: i18n/states/RO.php:25
4657
- msgid "Bra&#537;ov"
 
4658
  msgstr ""
4659
 
4660
- #: i18n/states/RO.php:26
4661
- msgid "Bucure&#537;ti"
4662
  msgstr ""
4663
 
4664
- #: i18n/states/RO.php:27
4665
- msgid "Buz&#259;u"
4666
  msgstr ""
4667
 
4668
- #: i18n/states/RO.php:29
4669
- msgid "Cara&#537;-Severin"
 
4670
  msgstr ""
4671
 
4672
- #: i18n/states/RO.php:30
4673
- msgid "Cluj"
 
4674
  msgstr ""
4675
 
4676
- #: i18n/states/RO.php:31
4677
- msgid "Constan&#539;a"
 
4678
  msgstr ""
4679
 
4680
- #: i18n/states/RO.php:32
4681
- msgid "Covasna"
 
4682
  msgstr ""
4683
 
4684
- #: i18n/states/RO.php:33
4685
- msgid "D&acirc;mbovi&#539;a"
4686
  msgstr ""
4687
 
4688
- #: i18n/states/RO.php:34
4689
- msgid "Dolj"
 
 
4690
  msgstr ""
4691
 
4692
- #: i18n/states/RO.php:35
4693
- msgid "Gala&#539;i"
 
4694
  msgstr ""
4695
 
4696
- #: i18n/states/RO.php:36
4697
- msgid "Giurgiu"
 
4698
  msgstr ""
4699
 
4700
- #: i18n/states/RO.php:37
4701
- msgid "Gorj"
4702
  msgstr ""
4703
 
4704
- #: i18n/states/RO.php:38
4705
- msgid "Harghita"
4706
  msgstr ""
4707
 
4708
- #: i18n/states/RO.php:39
4709
- msgid "Hunedoara"
 
 
4710
  msgstr ""
4711
 
4712
- #: i18n/states/RO.php:40
4713
- msgid "Ialomi&#539;a"
4714
  msgstr ""
4715
 
4716
- #: i18n/states/RO.php:41
4717
- msgid "Ia&#537;i"
4718
  msgstr ""
4719
 
4720
- #: i18n/states/RO.php:42
4721
- msgid "Ilfov"
4722
  msgstr ""
4723
 
4724
- #: i18n/states/RO.php:43
4725
- msgid "Maramure&#537;"
 
4726
  msgstr ""
4727
 
4728
- #: i18n/states/RO.php:44
4729
- msgid "Mehedin&#539;i"
4730
- msgstr ""
 
 
 
 
4731
 
4732
- #: i18n/states/RO.php:45
4733
- msgid "Mure&#537;"
4734
  msgstr ""
4735
 
4736
- #: i18n/states/RO.php:46
4737
- msgid "Neam&#539;"
 
 
 
 
 
 
 
4738
  msgstr ""
4739
 
4740
- #: i18n/states/RO.php:47
4741
- msgid "Olt"
4742
  msgstr ""
4743
 
4744
- #: i18n/states/RO.php:48
4745
- msgid "Prahova"
4746
  msgstr ""
4747
 
4748
- #: i18n/states/RO.php:49
4749
- msgid "S&#259;laj"
4750
  msgstr ""
4751
 
4752
- #: i18n/states/RO.php:50
4753
- msgid "Satu Mare"
 
 
4754
  msgstr ""
4755
 
4756
- #: i18n/states/RO.php:51
4757
- msgid "Sibiu"
 
4758
  msgstr ""
4759
 
4760
- #: i18n/states/RO.php:52
4761
- msgid "Suceava"
4762
  msgstr ""
4763
 
4764
- #: i18n/states/RO.php:53
4765
- msgid "Teleorman"
4766
  msgstr ""
4767
 
4768
- #: i18n/states/RO.php:54
4769
- msgid "Timi&#537;"
4770
  msgstr ""
4771
 
4772
- #: i18n/states/RO.php:55
4773
- msgid "Tulcea"
4774
  msgstr ""
4775
 
4776
- #: i18n/states/RO.php:56
4777
- msgid "V&acirc;lcea"
4778
  msgstr ""
4779
 
4780
- #: i18n/states/RO.php:57
4781
- msgid "Vaslui"
4782
  msgstr ""
4783
 
4784
- #: i18n/states/RO.php:58
4785
- msgid "Vrancea"
4786
  msgstr ""
4787
 
4788
- #: i18n/states/TH.php:14
4789
- msgid "Amnat Charoen"
4790
  msgstr ""
4791
 
4792
- #: i18n/states/TH.php:15
4793
- msgid "Ang Thong"
4794
  msgstr ""
4795
 
4796
- #: i18n/states/TH.php:16
4797
- msgid "Ayutthaya"
4798
  msgstr ""
4799
 
4800
- #: i18n/states/TH.php:17
4801
- msgid "Bangkok"
4802
  msgstr ""
4803
 
4804
- #: i18n/states/TH.php:18
4805
- msgid "Bueng Kan"
4806
  msgstr ""
4807
 
4808
- #: i18n/states/TH.php:19
4809
- msgid "Buri Ram"
4810
  msgstr ""
4811
 
4812
- #: i18n/states/TH.php:20
4813
- msgid "Chachoengsao"
 
 
4814
  msgstr ""
4815
 
4816
- #: i18n/states/TH.php:21
4817
- msgid "Chai Nat"
4818
  msgstr ""
4819
 
4820
- #: i18n/states/TH.php:22
4821
- msgid "Chaiyaphum"
4822
  msgstr ""
4823
 
4824
- #: i18n/states/TH.php:23
4825
- msgid "Chanthaburi"
4826
  msgstr ""
4827
 
4828
- #: i18n/states/TH.php:24
4829
- msgid "Chiang Mai"
4830
  msgstr ""
4831
 
4832
- #: i18n/states/TH.php:25
4833
- msgid "Chiang Rai"
4834
  msgstr ""
4835
 
4836
- #: i18n/states/TH.php:26
4837
- msgid "Chonburi"
4838
  msgstr ""
4839
 
4840
- #: i18n/states/TH.php:27
4841
- msgid "Chumphon"
4842
  msgstr ""
4843
 
4844
- #: i18n/states/TH.php:28
4845
- msgid "Kalasin"
4846
  msgstr ""
4847
 
4848
- #: i18n/states/TH.php:29
4849
- msgid "Kamphaeng Phet"
4850
  msgstr ""
4851
 
4852
- #: i18n/states/TH.php:30
4853
- msgid "Kanchanaburi"
4854
  msgstr ""
4855
 
4856
- #: i18n/states/TH.php:31
4857
- msgid "Khon Kaen"
4858
  msgstr ""
4859
 
4860
- #: i18n/states/TH.php:32
4861
- msgid "Krabi"
4862
  msgstr ""
4863
 
4864
- #: i18n/states/TH.php:33
4865
- msgid "Lampang"
4866
  msgstr ""
4867
 
4868
- #: i18n/states/TH.php:34
4869
- msgid "Lamphun"
4870
  msgstr ""
4871
 
4872
- #: i18n/states/TH.php:35
4873
- msgid "Loei"
4874
  msgstr ""
4875
 
4876
- #: i18n/states/TH.php:36
4877
- msgid "Lopburi"
4878
  msgstr ""
4879
 
4880
- #: i18n/states/TH.php:37
4881
- msgid "Mae Hong Son"
4882
  msgstr ""
4883
 
4884
- #: i18n/states/TH.php:38
4885
- msgid "Maha Sarakham"
4886
  msgstr ""
4887
 
4888
- #: i18n/states/TH.php:39
4889
- msgid "Mukdahan"
4890
  msgstr ""
4891
 
4892
- #: i18n/states/TH.php:40
4893
- msgid "Nakhon Nayok"
4894
  msgstr ""
4895
 
4896
- #: i18n/states/TH.php:41
4897
- msgid "Nakhon Pathom"
4898
  msgstr ""
4899
 
4900
- #: i18n/states/TH.php:42
4901
- msgid "Nakhon Phanom"
4902
  msgstr ""
4903
 
4904
- #: i18n/states/TH.php:43
4905
- msgid "Nakhon Ratchasima"
4906
  msgstr ""
4907
 
4908
- #: i18n/states/TH.php:44
4909
- msgid "Nakhon Sawan"
4910
  msgstr ""
4911
 
4912
- #: i18n/states/TH.php:45
4913
- msgid "Nakhon Si Thammarat"
4914
  msgstr ""
4915
 
4916
- #: i18n/states/TH.php:46
4917
- msgid "Nan"
4918
  msgstr ""
4919
 
4920
- #: i18n/states/TH.php:47
4921
- msgid "Narathiwat"
4922
  msgstr ""
4923
 
4924
- #: i18n/states/TH.php:48
4925
- msgid "Nong Bua Lam Phu"
4926
  msgstr ""
4927
 
4928
- #: i18n/states/TH.php:49
4929
- msgid "Nong Khai"
4930
  msgstr ""
4931
 
4932
- #: i18n/states/TH.php:50
4933
- msgid "Nonthaburi"
4934
  msgstr ""
4935
 
4936
- #: i18n/states/TH.php:51
4937
- msgid "Pathum Thani"
4938
  msgstr ""
4939
 
4940
- #: i18n/states/TH.php:52
4941
- msgid "Pattani"
4942
  msgstr ""
4943
 
4944
- #: i18n/states/TH.php:53
4945
- msgid "Phang Nga"
4946
  msgstr ""
4947
 
4948
- #: i18n/states/TH.php:54
4949
- msgid "Phatthalung"
4950
  msgstr ""
4951
 
4952
- #: i18n/states/TH.php:55
4953
- msgid "Phayao"
4954
  msgstr ""
4955
 
4956
- #: i18n/states/TH.php:56
4957
- msgid "Phetchabun"
4958
  msgstr ""
4959
 
4960
- #: i18n/states/TH.php:57
4961
- msgid "Phetchaburi"
4962
  msgstr ""
4963
 
4964
- #: i18n/states/TH.php:58
4965
- msgid "Phichit"
4966
  msgstr ""
4967
 
4968
- #: i18n/states/TH.php:59
4969
- msgid "Phitsanulok"
4970
  msgstr ""
4971
 
4972
- #: i18n/states/TH.php:60
4973
- msgid "Phrae"
4974
  msgstr ""
4975
 
4976
- #: i18n/states/TH.php:61
4977
- msgid "Phuket"
4978
  msgstr ""
4979
 
4980
- #: i18n/states/TH.php:62
4981
- msgid "Prachin Buri"
4982
  msgstr ""
4983
 
4984
- #: i18n/states/TH.php:63
4985
- msgid "Prachuap Khiri Khan"
4986
  msgstr ""
4987
 
4988
- #: i18n/states/TH.php:64
4989
- msgid "Ranong"
4990
  msgstr ""
4991
 
4992
- #: i18n/states/TH.php:65
4993
- msgid "Ratchaburi"
4994
  msgstr ""
4995
 
4996
- #: i18n/states/TH.php:66
4997
- msgid "Rayong"
4998
  msgstr ""
4999
 
5000
- #: i18n/states/TH.php:67
5001
- msgid "Roi Et"
5002
  msgstr ""
5003
 
5004
- #: i18n/states/TH.php:68
5005
- msgid "Sa Kaeo"
5006
  msgstr ""
5007
 
5008
- #: i18n/states/TH.php:69
5009
- msgid "Sakon Nakhon"
5010
  msgstr ""
5011
 
5012
- #: i18n/states/TH.php:70
5013
- msgid "Samut Prakan"
5014
  msgstr ""
5015
 
5016
- #: i18n/states/TH.php:71
5017
- msgid "Samut Sakhon"
5018
  msgstr ""
5019
 
5020
- #: i18n/states/TH.php:72
5021
- msgid "Samut Songkhram"
 
 
 
 
 
5022
  msgstr ""
5023
 
5024
- #: i18n/states/TH.php:73
5025
- msgid "Saraburi"
 
 
 
 
5026
  msgstr ""
5027
 
5028
- #: i18n/states/TH.php:74
5029
- msgid "Satun"
 
 
 
 
5030
  msgstr ""
5031
 
5032
- #: i18n/states/TH.php:75
5033
- msgid "Sing Buri"
 
 
 
 
5034
  msgstr ""
5035
 
5036
- #: i18n/states/TH.php:76
5037
- msgid "Sisaket"
5038
  msgstr ""
5039
 
5040
- #: i18n/states/TH.php:77
5041
- msgid "Songkhla"
5042
  msgstr ""
5043
 
5044
- #: i18n/states/TH.php:78
5045
- msgid "Sukhothai"
5046
  msgstr ""
5047
 
5048
- #: i18n/states/TH.php:79
5049
- msgid "Suphan Buri"
5050
  msgstr ""
5051
 
5052
- #: i18n/states/TH.php:80
5053
- msgid "Surat Thani"
5054
  msgstr ""
5055
 
5056
- #: i18n/states/TH.php:81
5057
- msgid "Surin"
5058
  msgstr ""
5059
 
5060
- #: i18n/states/TH.php:82
5061
- msgid "Tak"
5062
  msgstr ""
5063
 
5064
- #: i18n/states/TH.php:83
5065
- msgid "Trang"
5066
  msgstr ""
5067
 
5068
- #: i18n/states/TH.php:84
5069
- msgid "Trat"
5070
  msgstr ""
5071
 
5072
- #: i18n/states/TH.php:85
5073
- msgid "Ubon Ratchathani"
5074
  msgstr ""
5075
 
5076
- #: i18n/states/TH.php:86
5077
- msgid "Udon Thani"
5078
  msgstr ""
5079
 
5080
- #: i18n/states/TH.php:87
5081
- msgid "Uthai Thani"
5082
  msgstr ""
5083
 
5084
- #: i18n/states/TH.php:88
5085
- msgid "Uttaradit"
5086
  msgstr ""
5087
 
5088
- #: i18n/states/TH.php:89
5089
- msgid "Yala"
5090
  msgstr ""
5091
 
5092
- #: i18n/states/TH.php:90
5093
- msgid "Yasothon"
5094
  msgstr ""
5095
 
5096
- #: i18n/states/TR.php:14
5097
- msgid "Adana"
 
 
 
5098
  msgstr ""
5099
 
5100
- #: i18n/states/TR.php:15
5101
- msgid "Ad&#305;yaman"
 
 
 
5102
  msgstr ""
5103
 
5104
- #: i18n/states/TR.php:16
5105
- msgid "Afyon"
 
 
 
5106
  msgstr ""
5107
 
5108
- #: i18n/states/TR.php:17
5109
- msgid "A&#287;r&#305;"
 
 
 
5110
  msgstr ""
5111
 
5112
- #: i18n/states/TR.php:18
5113
- msgid "Amasya"
 
 
 
5114
  msgstr ""
5115
 
5116
- #: i18n/states/TR.php:19
5117
- msgid "Ankara"
 
 
 
5118
  msgstr ""
5119
 
5120
- #: i18n/states/TR.php:20
5121
- msgid "Antalya"
 
 
 
5122
  msgstr ""
5123
 
5124
- #: i18n/states/TR.php:21
5125
- msgid "Artvin"
 
 
 
5126
  msgstr ""
5127
 
5128
- #: i18n/states/TR.php:22
5129
- msgid "Ayd&#305;n"
5130
  msgstr ""
5131
 
5132
- #: i18n/states/TR.php:23
5133
- msgid "Bal&#305;kesir"
5134
  msgstr ""
5135
 
5136
- #: i18n/states/TR.php:24
5137
- msgid "Bilecik"
5138
  msgstr ""
5139
 
5140
- #: i18n/states/TR.php:25
5141
- msgid "Bing&#246;l"
 
5142
  msgstr ""
5143
 
5144
- #: i18n/states/TR.php:26
5145
- msgid "Bitlis"
 
 
 
5146
  msgstr ""
5147
 
5148
- #: i18n/states/TR.php:27
5149
- msgid "Bolu"
 
5150
  msgstr ""
5151
 
5152
- #: i18n/states/TR.php:28
5153
- msgid "Burdur"
 
5154
  msgstr ""
5155
 
5156
- #: i18n/states/TR.php:29
5157
- msgid "Bursa"
5158
  msgstr ""
5159
 
5160
- #: i18n/states/TR.php:30
5161
- msgid "&#199;anakkale"
5162
  msgstr ""
5163
 
5164
- #: i18n/states/TR.php:31
5165
- msgid "&#199;ank&#305;r&#305;"
5166
  msgstr ""
5167
 
5168
- #: i18n/states/TR.php:32
5169
- msgid "&#199;orum"
5170
  msgstr ""
5171
 
5172
- #: i18n/states/TR.php:33
5173
- msgid "Denizli"
5174
  msgstr ""
5175
 
5176
- #: i18n/states/TR.php:34
5177
- msgid "Diyarbak&#305;r"
5178
  msgstr ""
5179
 
5180
- #: i18n/states/TR.php:35
5181
- msgid "Edirne"
5182
  msgstr ""
5183
 
5184
- #: i18n/states/TR.php:36
5185
- msgid "Elaz&#305;&#287;"
5186
  msgstr ""
5187
 
5188
- #: i18n/states/TR.php:37
5189
- msgid "Erzincan"
5190
  msgstr ""
5191
 
5192
- #: i18n/states/TR.php:38
5193
- msgid "Erzurum"
5194
  msgstr ""
5195
 
5196
- #: i18n/states/TR.php:39
5197
- msgid "Eski&#351;ehir"
5198
  msgstr ""
5199
 
5200
- #: i18n/states/TR.php:40
5201
- msgid "Gaziantep"
5202
  msgstr ""
5203
 
5204
- #: i18n/states/TR.php:41
5205
- msgid "Giresun"
 
5206
  msgstr ""
5207
 
5208
- #: i18n/states/TR.php:42
5209
- msgid "G&#252;m&#252;&#351;hane"
5210
  msgstr ""
5211
 
5212
- #: i18n/states/TR.php:43
5213
- msgid "Hakkari"
5214
  msgstr ""
5215
 
5216
- #: i18n/states/TR.php:44
5217
- msgid "Hatay"
5218
  msgstr ""
5219
 
5220
- #: i18n/states/TR.php:45
5221
- msgid "Isparta"
5222
  msgstr ""
5223
 
5224
- #: i18n/states/TR.php:46
5225
- msgid "&#304;&#231;el"
5226
- msgstr ""
5227
-
5228
- #: i18n/states/TR.php:47
5229
- msgid "&#304;stanbul"
5230
  msgstr ""
5231
 
5232
- #: i18n/states/TR.php:48
5233
- msgid "&#304;zmir"
5234
  msgstr ""
5235
 
5236
- #: i18n/states/TR.php:49
5237
- msgid "Kars"
 
 
5238
  msgstr ""
5239
 
5240
- #: i18n/states/TR.php:50
5241
- msgid "Kastamonu"
5242
  msgstr ""
5243
 
5244
- #: i18n/states/TR.php:51
5245
- msgid "Kayseri"
5246
  msgstr ""
5247
 
5248
- #: i18n/states/TR.php:52
5249
- msgid "K&#305;rklareli"
5250
  msgstr ""
5251
 
5252
- #: i18n/states/TR.php:53
5253
- msgid "K&#305;r&#351;ehir"
5254
  msgstr ""
5255
 
5256
- #: i18n/states/TR.php:54
5257
- msgid "Kocaeli"
5258
  msgstr ""
5259
 
5260
- #: i18n/states/TR.php:55
5261
- msgid "Konya"
5262
  msgstr ""
5263
 
5264
- #: i18n/states/TR.php:56
5265
- msgid "K&#252;tahya"
5266
  msgstr ""
5267
 
5268
- #: i18n/states/TR.php:57
5269
- msgid "Malatya"
5270
  msgstr ""
5271
 
5272
- #: i18n/states/TR.php:58
5273
- msgid "Manisa"
5274
  msgstr ""
5275
 
5276
- #: i18n/states/TR.php:59
5277
- msgid "Kahramanmara&#351;"
5278
  msgstr ""
5279
 
5280
- #: i18n/states/TR.php:60
5281
- msgid "Mardin"
 
 
5282
  msgstr ""
5283
 
5284
- #: i18n/states/TR.php:61
5285
- msgid "Mu&#287;la"
5286
  msgstr ""
5287
 
5288
- #: i18n/states/TR.php:62
5289
- msgid "Mu&#351;"
5290
  msgstr ""
5291
 
5292
- #: i18n/states/TR.php:63
5293
- msgid "Nev&#351;ehir"
5294
  msgstr ""
5295
 
5296
- #: i18n/states/TR.php:64
5297
- msgid "Ni&#287;de"
5298
  msgstr ""
5299
 
5300
- #: i18n/states/TR.php:65
5301
- msgid "Ordu"
5302
  msgstr ""
5303
 
5304
- #: i18n/states/TR.php:66
5305
- msgid "Rize"
5306
  msgstr ""
5307
 
5308
- #: i18n/states/TR.php:67
5309
- msgid "Sakarya"
5310
  msgstr ""
5311
 
5312
- #: i18n/states/TR.php:68
5313
- msgid "Samsun"
5314
  msgstr ""
5315
 
5316
- #: i18n/states/TR.php:69
5317
- msgid "Siirt"
5318
  msgstr ""
5319
 
5320
- #: i18n/states/TR.php:70
5321
- msgid "Sinop"
5322
  msgstr ""
5323
 
5324
- #: i18n/states/TR.php:71
5325
- msgid "Sivas"
5326
  msgstr ""
5327
 
5328
- #: i18n/states/TR.php:72
5329
- msgid "Tekirda&#287;"
5330
  msgstr ""
5331
 
5332
- #: i18n/states/TR.php:73
5333
- msgid "Tokat"
5334
  msgstr ""
5335
 
5336
- #: i18n/states/TR.php:74
5337
- msgid "Trabzon"
5338
  msgstr ""
5339
 
5340
- #: i18n/states/TR.php:75
5341
- msgid "Tunceli"
5342
  msgstr ""
5343
 
5344
- #: i18n/states/TR.php:76
5345
- msgid "&#350;anl&#305;urfa"
5346
  msgstr ""
5347
 
5348
- #: i18n/states/TR.php:77
5349
- msgid "U&#351;ak"
5350
  msgstr ""
5351
 
5352
- #: i18n/states/TR.php:78
5353
- msgid "Van"
5354
  msgstr ""
5355
 
5356
- #: i18n/states/TR.php:79
5357
- msgid "Yozgat"
5358
  msgstr ""
5359
 
5360
- #: i18n/states/TR.php:80
5361
- msgid "Zonguldak"
5362
  msgstr ""
5363
 
5364
- #: i18n/states/TR.php:81
5365
- msgid "Aksaray"
5366
  msgstr ""
5367
 
5368
- #: i18n/states/TR.php:82
5369
- msgid "Bayburt"
5370
  msgstr ""
5371
 
5372
- #: i18n/states/TR.php:83
5373
- msgid "Karaman"
5374
  msgstr ""
5375
 
5376
- #: i18n/states/TR.php:84
5377
- msgid "K&#305;r&#305;kkale"
5378
  msgstr ""
5379
 
5380
- #: i18n/states/TR.php:85
5381
- msgid "Batman"
5382
  msgstr ""
5383
 
5384
- #: i18n/states/TR.php:86
5385
- msgid "&#350;&#305;rnak"
5386
  msgstr ""
5387
 
5388
- #: i18n/states/TR.php:87
5389
- msgid "Bart&#305;n"
5390
  msgstr ""
5391
 
5392
- #: i18n/states/TR.php:88
5393
- msgid "Ardahan"
5394
  msgstr ""
5395
 
5396
- #: i18n/states/TR.php:89
5397
- msgid "I&#287;d&#305;r"
5398
  msgstr ""
5399
 
5400
- #: i18n/states/TR.php:90
5401
- msgid "Yalova"
5402
  msgstr ""
5403
 
5404
- #: i18n/states/TR.php:91
5405
- msgid "Karab&#252;k"
5406
  msgstr ""
5407
 
5408
- #: i18n/states/TR.php:92
5409
- msgid "Kilis"
5410
  msgstr ""
5411
 
5412
- #: i18n/states/TR.php:93
5413
- msgid "Osmaniye"
5414
  msgstr ""
5415
 
5416
- #: i18n/states/TR.php:94
5417
- msgid "D&#252;zce"
5418
  msgstr ""
5419
 
5420
- #: i18n/states/TZ.php:14
5421
- msgid "Arusha"
5422
  msgstr ""
5423
 
5424
- #: i18n/states/TZ.php:15
5425
- msgid "Dar es Salaam"
5426
  msgstr ""
5427
 
5428
- #: i18n/states/TZ.php:16
5429
- msgid "Dodoma"
5430
  msgstr ""
5431
 
5432
- #: i18n/states/TZ.php:17
5433
- msgid "Iringa"
5434
  msgstr ""
5435
 
5436
- #: i18n/states/TZ.php:18
5437
- msgid "Kagera"
 
 
5438
  msgstr ""
5439
 
5440
- #: i18n/states/TZ.php:19
5441
- msgid "Pemba North"
5442
  msgstr ""
5443
 
5444
- #: i18n/states/TZ.php:20
5445
- msgid "Zanzibar North"
5446
  msgstr ""
5447
 
5448
- #: i18n/states/TZ.php:21
5449
- msgid "Kigoma"
5450
  msgstr ""
5451
 
5452
- #: i18n/states/TZ.php:22
5453
- msgid "Kilimanjaro"
5454
  msgstr ""
5455
 
5456
- #: i18n/states/TZ.php:23
5457
- msgid "Pemba South"
5458
  msgstr ""
5459
 
5460
- #: i18n/states/TZ.php:24
5461
- msgid "Zanzibar South"
5462
  msgstr ""
5463
 
5464
- #: i18n/states/TZ.php:25
5465
- msgid "Lindi"
5466
  msgstr ""
5467
 
5468
- #: i18n/states/TZ.php:26
5469
- msgid "Mara"
 
 
5470
  msgstr ""
5471
 
5472
- #: i18n/states/TZ.php:27
5473
- msgid "Mbeya"
 
 
5474
  msgstr ""
5475
 
5476
- #: i18n/states/TZ.php:28
5477
- msgid "Zanzibar West"
5478
  msgstr ""
5479
 
5480
- #: i18n/states/TZ.php:29
5481
- msgid "Morogoro"
5482
- msgstr ""
 
 
 
 
5483
 
5484
- #: i18n/states/TZ.php:30
5485
- msgid "Mtwara"
 
 
 
 
 
 
 
 
5486
  msgstr ""
5487
 
5488
- #: i18n/states/TZ.php:31
5489
- msgid "Mwanza"
5490
  msgstr ""
5491
 
5492
- #: i18n/states/TZ.php:32
5493
- msgid "Coast"
5494
  msgstr ""
5495
 
5496
- #: i18n/states/TZ.php:33
5497
- msgid "Rukwa"
5498
  msgstr ""
5499
 
5500
- #: i18n/states/TZ.php:34
5501
- msgid "Ruvuma"
5502
  msgstr ""
5503
 
5504
- #: i18n/states/TZ.php:35
5505
- msgid "Shinyanga"
5506
  msgstr ""
5507
 
5508
- #: i18n/states/TZ.php:36
5509
- msgid "Singida"
5510
  msgstr ""
5511
 
5512
- #: i18n/states/TZ.php:37
5513
- msgid "Tabora"
5514
  msgstr ""
5515
 
5516
- #: i18n/states/TZ.php:38
5517
- msgid "Tanga"
5518
  msgstr ""
5519
 
5520
- #: i18n/states/TZ.php:39
5521
- msgid "Manyara"
5522
  msgstr ""
5523
 
5524
- #: i18n/states/TZ.php:40
5525
- msgid "Geita"
5526
  msgstr ""
5527
 
5528
- #: i18n/states/TZ.php:41
5529
- msgid "Katavi"
5530
  msgstr ""
5531
 
5532
- #: i18n/states/TZ.php:42
5533
- msgid "Njombe"
 
 
5534
  msgstr ""
5535
 
5536
- #: i18n/states/TZ.php:43
5537
- msgid "Simiyu"
 
 
5538
  msgstr ""
5539
 
5540
- #: i18n/states/US.php:14
5541
- msgid "Alabama"
5542
  msgstr ""
5543
 
5544
- #: i18n/states/US.php:15
5545
- msgid "Alaska"
 
5546
  msgstr ""
5547
 
5548
- #: i18n/states/US.php:16
5549
- msgid "Arizona"
5550
  msgstr ""
5551
 
5552
- #: i18n/states/US.php:17
5553
- msgid "Arkansas"
5554
  msgstr ""
5555
 
5556
- #: i18n/states/US.php:18
5557
- msgid "California"
5558
  msgstr ""
5559
 
5560
- #: i18n/states/US.php:19
5561
- msgid "Colorado"
5562
  msgstr ""
5563
 
5564
- #: i18n/states/US.php:20
5565
- msgid "Connecticut"
5566
  msgstr ""
5567
 
5568
- #: i18n/states/US.php:21
5569
- msgid "Delaware"
5570
  msgstr ""
5571
 
5572
- #: i18n/states/US.php:22
5573
- msgid "District Of Columbia"
5574
  msgstr ""
5575
 
5576
- #: i18n/states/US.php:23
5577
- msgid "Florida"
 
 
5578
  msgstr ""
5579
 
5580
- #: i18n/states/US.php:25
5581
- msgid "Hawaii"
5582
  msgstr ""
5583
 
5584
- #: i18n/states/US.php:26
5585
- msgid "Idaho"
 
 
5586
  msgstr ""
5587
 
5588
- #: i18n/states/US.php:27
5589
- msgid "Illinois"
 
 
5590
  msgstr ""
5591
 
5592
- #: i18n/states/US.php:28
5593
- msgid "Indiana"
 
 
5594
  msgstr ""
5595
 
5596
- #: i18n/states/US.php:29
5597
- msgid "Iowa"
 
 
5598
  msgstr ""
5599
 
5600
- #: i18n/states/US.php:30
5601
- msgid "Kansas"
5602
  msgstr ""
5603
 
5604
- #: i18n/states/US.php:31
5605
- msgid "Kentucky"
5606
  msgstr ""
5607
 
5608
- #: i18n/states/US.php:32
5609
- msgid "Louisiana"
5610
  msgstr ""
5611
 
5612
- #: i18n/states/US.php:33
5613
- msgid "Maine"
5614
  msgstr ""
5615
 
5616
- #: i18n/states/US.php:35
5617
- msgid "Massachusetts"
5618
  msgstr ""
5619
 
5620
- #: i18n/states/US.php:36
5621
- msgid "Michigan"
5622
  msgstr ""
5623
 
5624
- #: i18n/states/US.php:37
5625
- msgid "Minnesota"
5626
  msgstr ""
5627
 
5628
- #: i18n/states/US.php:38
5629
- msgid "Mississippi"
5630
  msgstr ""
5631
 
5632
- #: i18n/states/US.php:39
5633
- msgid "Missouri"
5634
  msgstr ""
5635
 
5636
- #: i18n/states/US.php:41
5637
- msgid "Nebraska"
5638
  msgstr ""
5639
 
5640
- #: i18n/states/US.php:42
5641
- msgid "Nevada"
 
 
5642
  msgstr ""
5643
 
5644
- #: i18n/states/US.php:43
5645
- msgid "New Hampshire"
5646
  msgstr ""
5647
 
5648
- #: i18n/states/US.php:44
5649
- msgid "New Jersey"
5650
  msgstr ""
5651
 
5652
- #: i18n/states/US.php:45
5653
- msgid "New Mexico"
5654
  msgstr ""
5655
 
5656
- #: i18n/states/US.php:46
5657
- msgid "New York"
 
 
5658
  msgstr ""
5659
 
5660
- #: i18n/states/US.php:47
5661
- msgid "North Carolina"
5662
  msgstr ""
5663
 
5664
- #: i18n/states/US.php:48
5665
- msgid "North Dakota"
5666
  msgstr ""
5667
 
5668
- #: i18n/states/US.php:49
5669
- msgid "Ohio"
5670
  msgstr ""
5671
 
5672
- #: i18n/states/US.php:50
5673
- msgid "Oklahoma"
5674
  msgstr ""
5675
 
5676
- #: i18n/states/US.php:51
5677
- msgid "Oregon"
5678
  msgstr ""
5679
 
5680
- #: i18n/states/US.php:52
5681
- msgid "Pennsylvania"
5682
  msgstr ""
5683
 
5684
- #: i18n/states/US.php:53
5685
- msgid "Rhode Island"
 
 
 
 
 
5686
  msgstr ""
5687
 
5688
- #: i18n/states/US.php:54
5689
- msgid "South Carolina"
5690
  msgstr ""
5691
 
5692
- #: i18n/states/US.php:55
5693
- msgid "South Dakota"
5694
  msgstr ""
5695
 
5696
- #: i18n/states/US.php:56
5697
- msgid "Tennessee"
5698
  msgstr ""
5699
 
5700
- #: i18n/states/US.php:57
5701
- msgid "Texas"
 
 
5702
  msgstr ""
5703
 
5704
- #: i18n/states/US.php:58
5705
- msgid "Utah"
5706
  msgstr ""
5707
 
5708
- #: i18n/states/US.php:59
5709
- msgid "Vermont"
 
 
5710
  msgstr ""
5711
 
5712
- #: i18n/states/US.php:60
5713
- msgid "Virginia"
5714
  msgstr ""
5715
 
5716
- #: i18n/states/US.php:61
5717
- msgid "Washington"
5718
  msgstr ""
5719
 
5720
- #: i18n/states/US.php:62
5721
- msgid "West Virginia"
5722
  msgstr ""
5723
 
5724
- #: i18n/states/US.php:63
5725
- msgid "Wisconsin"
5726
  msgstr ""
5727
 
5728
- #: i18n/states/US.php:64
5729
- msgid "Wyoming"
5730
  msgstr ""
5731
 
5732
- #: i18n/states/US.php:65
5733
- msgid "Armed Forces (AA)"
5734
  msgstr ""
5735
 
5736
- #: i18n/states/US.php:66
5737
- msgid "Armed Forces (AE)"
5738
  msgstr ""
5739
 
5740
- #: i18n/states/US.php:67
5741
- msgid "Armed Forces (AP)"
5742
  msgstr ""
5743
 
5744
- #: i18n/states/ZA.php:14
5745
- msgid "Eastern Cape"
5746
  msgstr ""
5747
 
5748
- #: i18n/states/ZA.php:15
5749
- msgid "Free State"
5750
  msgstr ""
5751
 
5752
- #: i18n/states/ZA.php:16
5753
- msgid "Gauteng"
5754
  msgstr ""
5755
 
5756
- #: i18n/states/ZA.php:17
5757
- msgid "KwaZulu-Natal"
5758
  msgstr ""
5759
 
5760
- #: i18n/states/ZA.php:18
5761
- msgid "Limpopo"
 
 
5762
  msgstr ""
5763
 
5764
- #: i18n/states/ZA.php:19
5765
- msgid "Mpumalanga"
5766
  msgstr ""
5767
 
5768
- #: i18n/states/ZA.php:20
5769
- msgid "Northern Cape"
5770
  msgstr ""
5771
 
5772
- #: i18n/states/ZA.php:21
5773
- msgid "North West"
5774
  msgstr ""
5775
 
5776
- #: i18n/states/ZA.php:22
5777
- msgid "Western Cape"
5778
  msgstr ""
5779
 
5780
- #: includes/abstracts/abstract-wc-data.php:298
5781
- #. translators: %s: $key Key to check
5782
- msgid ""
5783
- "Generic add/update/get meta methods should not be used for internal meta "
5784
- "data, including \"%s\". Use getters and setters."
5785
  msgstr ""
5786
 
5787
- #: includes/abstracts/abstract-wc-order.php:490
5788
- msgid "Invalid parent ID"
5789
  msgstr ""
5790
 
5791
- #: includes/abstracts/abstract-wc-order.php:545
5792
- msgid "Invalid currency code"
5793
  msgstr ""
5794
 
5795
- #: includes/abstracts/abstract-wc-order.php:926
5796
- #: includes/api/legacy/v1/class-wc-api-coupons.php:174
5797
- #: includes/api/legacy/v2/class-wc-api-coupons.php:189
5798
- #: includes/api/legacy/v3/class-wc-api-coupons.php:187
5799
- msgid "Invalid coupon code"
5800
  msgstr ""
5801
 
5802
- #: includes/abstracts/abstract-wc-order.php:936
5803
- #: includes/class-wc-discounts.php:246
5804
- msgid "Invalid coupon"
5805
  msgstr ""
5806
 
5807
- #: includes/abstracts/abstract-wc-order.php:943
5808
- #: includes/class-wc-coupon.php:949
5809
- msgid "Coupon code already applied!"
5810
  msgstr ""
5811
 
5812
- #: includes/abstracts/abstract-wc-order.php:1719
5813
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:251
5814
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:303
5815
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:320
5816
- #. translators: %s: method
5817
- #. translators: %s: method
5818
- #. translators: %s: payment method
5819
- #. translators: %s: shipping method
5820
- msgid "via %s"
5821
  msgstr ""
5822
 
5823
- #: includes/abstracts/abstract-wc-order.php:1724
5824
- #: includes/class-wc-cart.php:1434 includes/class-wc-product-grouped.php:120
5825
- msgid "Free!"
5826
  msgstr ""
5827
 
5828
- #: includes/abstracts/abstract-wc-order.php:1753
5829
- msgid "Subtotal:"
5830
  msgstr ""
5831
 
5832
- #: includes/abstracts/abstract-wc-order.php:1768
5833
- #: includes/admin/meta-boxes/views/html-order-items.php:151
5834
- msgid "Discount:"
5835
  msgstr ""
5836
 
5837
- #: includes/abstracts/abstract-wc-order.php:1783
5838
- #: includes/admin/meta-boxes/views/html-order-items.php:163
5839
- msgid "Shipping:"
5840
  msgstr ""
5841
 
5842
- #: includes/abstracts/abstract-wc-order.php:1844
5843
- #: includes/admin/meta-boxes/views/html-order-item.php:98
5844
- #: includes/admin/meta-boxes/views/html-order-item.php:144
5845
- #: templates/checkout/order-receipt.php:34 templates/checkout/thankyou.php:63
5846
- msgid "Total:"
5847
  msgstr ""
5848
 
5849
- #: includes/abstracts/abstract-wc-payment-gateway.php:182
5850
- msgid "Return to payments"
5851
  msgstr ""
5852
 
5853
- #: includes/abstracts/abstract-wc-payment-gateway.php:493
5854
- msgid "Use a new payment method"
5855
  msgstr ""
5856
 
5857
- #: includes/abstracts/abstract-wc-payment-gateway.php:518
5858
- msgid "Save to account"
5859
  msgstr ""
5860
 
5861
- #: includes/abstracts/abstract-wc-product.php:767
5862
- msgid "Invalid catalog visibility option."
5863
  msgstr ""
5864
 
5865
- #: includes/abstracts/abstract-wc-product.php:804
5866
- msgid "Invalid or duplicated SKU."
5867
  msgstr ""
5868
 
5869
- #: includes/abstracts/abstract-wc-product.php:888
5870
- msgid "Invalid product tax status."
5871
  msgstr ""
5872
 
5873
- #: includes/abstracts/abstract-wc-product.php:1194
5874
- #. translators: %1$s: Downloadable file
5875
- msgid ""
5876
- "The downloadable file %1$s cannot be used as it does not have an allowed "
5877
- "file type. Allowed types include: %2$s"
5878
  msgstr ""
5879
 
5880
- #: includes/abstracts/abstract-wc-product.php:1203
5881
- #. translators: %s: Downloadable file
5882
- msgid "The downloadable file %s cannot be used as it does not exist on the server."
5883
  msgstr ""
5884
 
5885
- #: includes/abstracts/abstract-wc-product.php:1770
5886
- #: includes/class-wc-product-simple.php:53
5887
- msgid "Add to cart"
 
5888
  msgstr ""
5889
 
5890
- #: includes/abstracts/abstract-wc-product.php:1779
5891
- #: includes/class-wc-embed.php:106 includes/class-wc-product-simple.php:53
5892
- #: includes/class-wc-product-variable.php:60
5893
- msgid "Read more"
 
5894
  msgstr ""
5895
 
5896
- #: includes/abstracts/abstract-wc-product.php:1790
5897
- #: includes/class-wc-product-simple.php:66
5898
- #. translators: %s: Product title
5899
- msgid "Read more about &ldquo;%s&rdquo;"
5900
  msgstr ""
5901
 
5902
- #: includes/abstracts/abstract-wc-product.php:1945
5903
- #: includes/admin/class-wc-admin-reports.php:108
5904
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:265
5905
- #: includes/admin/reports/class-wc-report-stock.php:118
5906
- #: includes/wc-product-functions.php:826
5907
- msgid "Out of stock"
5908
  msgstr ""
5909
 
5910
- #: includes/abstracts/abstract-wc-product.php:1947 templates/cart/cart.php:89
5911
- msgid "Available on backorder"
5912
  msgstr ""
5913
 
5914
- #: includes/abstracts/abstract-wc-rest-controller.php:103
5915
- #: includes/api/legacy/v2/class-wc-api-coupons.php:529
5916
- #: includes/api/legacy/v2/class-wc-api-customers.php:792
5917
- #: includes/api/legacy/v2/class-wc-api-orders.php:1789
5918
- #: includes/api/legacy/v2/class-wc-api-products.php:2306
5919
- #: includes/api/legacy/v3/class-wc-api-coupons.php:529
5920
- #: includes/api/legacy/v3/class-wc-api-customers.php:782
5921
- #: includes/api/legacy/v3/class-wc-api-orders.php:1836
5922
- #: includes/api/legacy/v3/class-wc-api-products.php:3119
5923
- #: includes/api/legacy/v3/class-wc-api-taxes.php:465
5924
- #. translators: %s: items limit
5925
- msgid "Unable to accept more than %s items for this request."
5926
  msgstr ""
5927
 
5928
- #: includes/abstracts/abstract-wc-rest-controller.php:245
5929
- #: includes/abstracts/abstract-wc-rest-controller.php:263
5930
- #: includes/abstracts/abstract-wc-rest-controller.php:286
5931
- #: includes/abstracts/abstract-wc-rest-controller.php:329
5932
- #: includes/api/class-wc-rest-payment-gateways-controller.php:187
5933
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:314
5934
- msgid "An invalid setting value was passed."
5935
  msgstr ""
5936
 
5937
- #: includes/abstracts/abstract-wc-rest-controller.php:388
5938
- msgid "List of created resources."
5939
  msgstr ""
5940
 
5941
- #: includes/abstracts/abstract-wc-rest-controller.php:396
5942
- msgid "List of updated resources."
 
 
5943
  msgstr ""
5944
 
5945
- #: includes/abstracts/abstract-wc-rest-controller.php:404
5946
- msgid "List of delete resources."
5947
  msgstr ""
5948
 
5949
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:43
5950
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:114
5951
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:127
5952
- #. translators: %s: Class method name.
5953
- msgid "Method '%s' not implemented. Must be overridden in subclass."
5954
  msgstr ""
5955
 
5956
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:56
5957
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:87
5958
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:164
5959
- #: includes/api/class-wc-rest-payment-gateways-controller.php:98
5960
- #: includes/api/class-wc-rest-shipping-methods-controller.php:92
5961
- #: includes/api/class-wc-rest-system-status-tools-controller.php:96
5962
- #: includes/api/v1/class-wc-rest-customers-controller.php:166
5963
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:152
5964
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:159
5965
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:150
5966
- #: includes/api/v1/class-wc-rest-taxes-controller.php:143
5967
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:105
5968
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:159
5969
- msgid "Sorry, you cannot view this resource."
5970
  msgstr ""
5971
 
5972
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:72
5973
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:103
5974
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:101
5975
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:183
5976
- #: includes/api/class-wc-rest-payment-gateways-controller.php:111
5977
- #: includes/api/class-wc-rest-product-variations-controller.php:162
5978
- #: includes/api/v1/class-wc-rest-customers-controller.php:183
5979
- #: includes/api/v1/class-wc-rest-taxes-controller.php:158
5980
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:174
5981
- msgid "Sorry, you are not allowed to edit this resource."
5982
  msgstr ""
5983
 
5984
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:88
5985
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:119
5986
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:119
5987
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:202
5988
- #: includes/api/v1/class-wc-rest-customers-controller.php:200
5989
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:169
5990
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:195
5991
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:120
5992
- #: includes/api/v1/class-wc-rest-taxes-controller.php:173
5993
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:189
5994
- msgid "Sorry, you are not allowed to delete this resource."
5995
  msgstr ""
5996
 
5997
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:140
5998
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:235
5999
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:404
6000
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:153
6001
- #: includes/api/class-wc-rest-product-variations-controller.php:499
6002
- #: includes/api/class-wc-rest-products-controller.php:1307
6003
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:303
6004
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:460
6005
- msgid "Invalid ID."
6006
  msgstr ""
6007
 
6008
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:188
6009
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:175
6010
- #: includes/api/v1/class-wc-rest-coupons-controller.php:310
6011
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:220
6012
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:281
6013
- #: includes/api/v1/class-wc-rest-orders-controller.php:826
6014
- #: includes/api/v1/class-wc-rest-products-controller.php:739
6015
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:321
6016
- #. translators: %s: post type
6017
- msgid "Cannot create existing %s."
6018
  msgstr ""
6019
 
6020
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:421
6021
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:438
6022
- #: includes/api/class-wc-rest-product-variations-controller.php:520
6023
- #: includes/api/class-wc-rest-products-controller.php:1336
6024
- #: includes/api/v1/class-wc-rest-products-controller.php:1656
6025
- #. translators: %s: post type
6026
- msgid "Sorry, you are not allowed to delete %s."
6027
  msgstr ""
6028
 
6029
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:435
6030
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:451
6031
- #: includes/api/class-wc-rest-product-variations-controller.php:538
6032
- #: includes/api/class-wc-rest-products-controller.php:1367
6033
- #: includes/api/v1/class-wc-rest-products-controller.php:1683
6034
- #. translators: %s: post type
6035
- msgid "The %s does not support trashing."
6036
  msgstr ""
6037
 
6038
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:442
6039
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:457
6040
- #: includes/api/class-wc-rest-product-variations-controller.php:549
6041
- #: includes/api/class-wc-rest-products-controller.php:1378
6042
- #: includes/api/v1/class-wc-rest-products-controller.php:1689
6043
- #. translators: %s: post type
6044
- msgid "The %s has already been deleted."
6045
  msgstr ""
6046
 
6047
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:452
6048
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:467
6049
- #: includes/api/class-wc-rest-product-variations-controller.php:563
6050
- #: includes/api/class-wc-rest-products-controller.php:1392
6051
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:316
6052
- #: includes/api/v1/class-wc-rest-products-controller.php:1700
6053
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:469
6054
- #. translators: %s: post type
6055
- msgid "The %s cannot be deleted."
6056
  msgstr ""
6057
 
6058
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:498
6059
- #: includes/api/v1/class-wc-rest-taxes-controller.php:658
6060
- msgid "Current page of the collection."
6061
  msgstr ""
6062
 
6063
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:506
6064
- #: includes/api/v1/class-wc-rest-taxes-controller.php:666
6065
- msgid "Maximum number of items to be returned in result set."
6066
  msgstr ""
6067
 
6068
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:515
6069
- msgid "Limit results to those matching a string."
6070
  msgstr ""
6071
 
6072
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:521
6073
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:622
6074
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:702
6075
- msgid "Limit response to resources published after a given ISO8601 compliant date."
6076
  msgstr ""
6077
 
6078
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:527
6079
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:628
6080
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:708
6081
- msgid "Limit response to resources published before a given ISO8601 compliant date."
6082
  msgstr ""
6083
 
6084
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:533
6085
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:634
6086
- #: includes/api/v1/class-wc-rest-customers-controller.php:865
6087
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:714
6088
- msgid "Ensure result set excludes specific IDs."
6089
  msgstr ""
6090
 
6091
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:542
6092
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:643
6093
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:697
6094
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:723
6095
- msgid "Limit result set to specific ids."
6096
  msgstr ""
6097
 
6098
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:551
6099
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:652
6100
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:707
6101
- #: includes/api/v1/class-wc-rest-customers-controller.php:883
6102
- #: includes/api/v1/class-wc-rest-taxes-controller.php:675
6103
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:732
6104
- msgid "Offset the result set by a specific number of items."
6105
  msgstr ""
6106
 
6107
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:557
6108
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:658
6109
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:714
6110
- #: includes/api/v1/class-wc-rest-customers-controller.php:890
6111
- #: includes/api/v1/class-wc-rest-taxes-controller.php:682
6112
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:738
6113
- msgid "Order sort attribute ascending or descending."
6114
  msgstr ""
6115
 
6116
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:564
6117
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:665
6118
- #: includes/api/v1/class-wc-rest-customers-controller.php:898
6119
- #: includes/api/v1/class-wc-rest-taxes-controller.php:690
6120
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:745
6121
- msgid "Sort collection by object attribute."
6122
  msgstr ""
6123
 
6124
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:579
6125
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:682
6126
- msgid "Limit result set to those of particular parent IDs."
6127
  msgstr ""
6128
 
6129
- #: includes/abstracts/abstract-wc-rest-crud-controller.php:588
6130
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:691
6131
- msgid "Limit result set to all items except those of a particular parent ID."
6132
  msgstr ""
6133
 
6134
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:57
6135
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:65
6136
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:126
6137
- #: includes/api/class-wc-rest-payment-gateways-controller.php:85
6138
- #: includes/api/class-wc-rest-setting-options-controller.php:376
6139
- #: includes/api/class-wc-rest-settings-controller.php:179
6140
- #: includes/api/class-wc-rest-shipping-methods-controller.php:79
6141
- #: includes/api/class-wc-rest-system-status-controller.php:61
6142
- #: includes/api/class-wc-rest-system-status-tools-controller.php:83
6143
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:74
6144
- #: includes/api/v1/class-wc-rest-customers-controller.php:135
6145
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:121
6146
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:127
6147
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:134
6148
- #: includes/api/v1/class-wc-rest-report-sales-controller.php:69
6149
- #: includes/api/v1/class-wc-rest-reports-controller.php:62
6150
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:90
6151
- #: includes/api/v1/class-wc-rest-taxes-controller.php:114
6152
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:91
6153
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:130
6154
- msgid "Sorry, you cannot list resources."
6155
  msgstr ""
6156
 
6157
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:71
6158
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:83
6159
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:145
6160
- #: includes/api/v1/class-wc-rest-customers-controller.php:150
6161
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:136
6162
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:165
6163
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:105
6164
- #: includes/api/v1/class-wc-rest-taxes-controller.php:129
6165
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:145
6166
- msgid "Sorry, you are not allowed to create resources."
6167
  msgstr ""
6168
 
6169
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:134
6170
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:221
6171
- #: includes/api/class-wc-rest-product-reviews-controller.php:68
6172
- #: includes/api/v1/class-wc-rest-customers-controller.php:215
6173
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:210
6174
- #: includes/api/v1/class-wc-rest-taxes-controller.php:188
6175
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:204
6176
- msgid "Sorry, you are not allowed to batch manipulate this resource."
6177
  msgstr ""
6178
 
6179
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:151
6180
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:258
6181
- #: includes/api/class-wc-rest-products-controller.php:700
6182
- #: includes/api/class-wc-rest-products-controller.php:1315
6183
- #: includes/api/v1/class-wc-rest-products-controller.php:1637
6184
- msgid ""
6185
- "To manipulate product variations you should use the "
6186
- "/products/&lt;product_id&gt;/variations/&lt;id&gt; endpoint."
6187
- msgstr ""
6188
-
6189
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:260
6190
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:421
6191
- #: includes/api/class-wc-rest-webhooks-controller.php:39
6192
- #: includes/api/v1/class-wc-rest-coupons-controller.php:351
6193
- #: includes/api/v1/class-wc-rest-orders-controller.php:865
6194
- #: includes/api/v1/class-wc-rest-products-controller.php:784
6195
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:383
6196
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:549
6197
- msgid "ID is invalid."
6198
  msgstr ""
6199
 
6200
- #: includes/abstracts/abstract-wc-rest-posts-controller.php:704
6201
- msgid ""
6202
- "Use WP Query arguments to modify the response; private query vars require "
6203
- "appropriate authorization."
6204
- msgstr ""
6205
-
6206
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:47
6207
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:247
6208
- #: includes/api/class-wc-rest-payment-gateways-controller.php:144
6209
- #: includes/api/class-wc-rest-payment-gateways-controller.php:161
6210
- #: includes/api/class-wc-rest-shipping-methods-controller.php:124
6211
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:121
6212
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:215
6213
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:269
6214
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:70
6215
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:155
6216
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:173
6217
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:191
6218
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:551
6219
- msgid "Resource does not exist."
6220
  msgstr ""
6221
 
6222
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:61
6223
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:79
6224
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:97
6225
- #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:115
6226
- msgid "Shipping is disabled."
6227
  msgstr ""
6228
 
6229
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:52
6230
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:63
6231
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:63
6232
- msgid "Name for the resource."
6233
  msgstr ""
6234
 
6235
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:66
6236
- #: includes/api/class-wc-rest-coupons-controller.php:76
6237
- #: includes/api/class-wc-rest-customers-controller.php:124
6238
- #: includes/api/class-wc-rest-order-notes-controller.php:129
6239
- #: includes/api/class-wc-rest-order-refunds-controller.php:92
6240
- #: includes/api/class-wc-rest-order-refunds-controller.php:355
6241
- #: includes/api/class-wc-rest-orders-controller.php:82
6242
- #: includes/api/class-wc-rest-orders-controller.php:831
6243
- #: includes/api/class-wc-rest-payment-gateways-controller.php:54
6244
- #: includes/api/class-wc-rest-product-categories-controller.php:103
6245
- #: includes/api/class-wc-rest-product-reviews-controller.php:153
6246
- #: includes/api/class-wc-rest-product-variations-controller.php:657
6247
- #: includes/api/class-wc-rest-products-controller.php:82
6248
- #: includes/api/class-wc-rest-products-controller.php:1429
6249
- #: includes/api/class-wc-rest-setting-options-controller.php:84
6250
- #: includes/api/class-wc-rest-shipping-methods-controller.php:54
6251
- #: includes/api/class-wc-rest-shipping-zones-controller.php:281
6252
- #: includes/api/class-wc-rest-system-status-tools-controller.php:55
6253
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:70
6254
- #: includes/api/class-wc-rest-webhooks-controller.php:98
6255
- #: includes/api/v1/class-wc-rest-coupons-controller.php:82
6256
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:46
6257
- #: includes/api/v1/class-wc-rest-customers-controller.php:78
6258
- #: includes/api/v1/class-wc-rest-customers-controller.php:632
6259
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:81
6260
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:401
6261
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:87
6262
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:344
6263
- #: includes/api/v1/class-wc-rest-orders-controller.php:76
6264
- #: includes/api/v1/class-wc-rest-orders-controller.php:919
6265
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:74
6266
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:195
6267
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:75
6268
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:456
6269
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:174
6270
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:92
6271
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:526
6272
- #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:94
6273
- #: includes/api/v1/class-wc-rest-product-tags-controller.php:94
6274
- #: includes/api/v1/class-wc-rest-products-controller.php:77
6275
- #: includes/api/v1/class-wc-rest-products-controller.php:1734
6276
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:334
6277
- #: includes/api/v1/class-wc-rest-taxes-controller.php:62
6278
- #: includes/api/v1/class-wc-rest-taxes-controller.php:576
6279
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:67
6280
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:226
6281
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:78
6282
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:615
6283
- msgid "Unique identifier for the resource."
6284
  msgstr ""
6285
 
6286
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:92
6287
- #: includes/api/class-wc-rest-order-refunds-controller.php:112
6288
- #: includes/api/v1/class-wc-rest-customers-controller.php:104
6289
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:105
6290
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:107
6291
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:104
6292
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:101
6293
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:74
6294
- #: includes/api/v1/class-wc-rest-taxes-controller.php:88
6295
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:104
6296
- msgid "Required to be true, as resource does not support trashing."
6297
  msgstr ""
6298
 
6299
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:238
6300
- msgid "Taxonomy does not exist."
6301
  msgstr ""
6302
 
6303
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:385
6304
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:482
6305
- msgid "Can not set resource parent, taxonomy is not hierarchical."
6306
  msgstr ""
6307
 
6308
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:531
6309
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:357
6310
- msgid "Resource does not support trashing."
6311
  msgstr ""
6312
 
6313
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:540
6314
- #: includes/api/v1/class-wc-rest-customers-controller.php:495
6315
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:372
6316
- #: includes/api/v1/class-wc-rest-taxes-controller.php:472
6317
- msgid "The resource cannot be deleted."
6318
  msgstr ""
6319
 
6320
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:688
6321
- msgid "Ensure result set excludes specific ids."
6322
  msgstr ""
6323
 
6324
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:725
6325
- msgid "Sort collection by resource attribute."
6326
  msgstr ""
6327
 
6328
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:741
6329
- msgid "Whether to hide resources not assigned to any products."
6330
  msgstr ""
6331
 
6332
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:748
6333
- msgid "Limit result set to resources assigned to a specific parent."
 
 
 
 
 
 
 
 
6334
  msgstr ""
6335
 
6336
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:755
6337
- msgid "Limit result set to resources assigned to a specific product."
6338
  msgstr ""
6339
 
6340
- #: includes/abstracts/abstract-wc-rest-terms-controller.php:761
6341
- msgid "Limit result set to resources with a specific slug."
6342
  msgstr ""
6343
 
6344
- #: includes/abstracts/abstract-wc-settings-api.php:774
6345
- #: includes/admin/class-wc-admin-menus.php:325
6346
- #: includes/admin/class-wc-admin-settings.php:617
6347
- #: includes/admin/meta-boxes/views/html-product-attribute.php:56
6348
- msgid "Select all"
6349
  msgstr ""
6350
 
6351
- #: includes/abstracts/abstract-wc-settings-api.php:774
6352
- #: includes/admin/class-wc-admin-settings.php:617
6353
- #: includes/admin/meta-boxes/views/html-product-attribute.php:57
6354
- msgid "Select none"
6355
  msgstr ""
6356
 
6357
- #: includes/abstracts/abstract-wc-shipping-method.php:315
6358
- #: includes/admin/class-wc-admin-meta-boxes.php:128
6359
- msgid "Items"
6360
  msgstr ""
6361
 
6362
- #: includes/abstracts/class-wc-background-process.php:172
6363
- #. translators: %d: interval
6364
- msgid "Every %d minutes"
6365
  msgstr ""
6366
 
6367
- #: includes/admin/class-wc-admin-addons.php:156
6368
- msgid "Need a fresh look? Try Storefront child themes"
6369
  msgstr ""
6370
 
6371
- #: includes/admin/class-wc-admin-addons.php:160
6372
- msgid "View more Storefront child themes"
6373
  msgstr ""
6374
 
6375
- #: includes/admin/class-wc-admin-addons.php:165
6376
- msgid "Need a theme? Try Storefront"
6377
  msgstr ""
6378
 
6379
- #: includes/admin/class-wc-admin-addons.php:370
6380
- #: includes/admin/class-wc-admin-addons.php:545
6381
- #: includes/admin/class-wc-admin-setup-wizard.php:688
6382
- #: includes/admin/class-wc-admin-setup-wizard.php:703
6383
- msgid "WooCommerce Services"
6384
  msgstr ""
6385
 
6386
- #: includes/admin/class-wc-admin-addons.php:371
6387
- msgid "Buy discounted shipping labels then print them from your dashboard."
6388
  msgstr ""
6389
 
6390
- #: includes/admin/class-wc-admin-addons.php:372
6391
- msgid ""
6392
- "Integrate your store with USPS to buy discounted shipping labels, and print "
6393
- "them directly from your WooCommerce dashboard. Powered by WooCommerce "
6394
- "Services."
6395
  msgstr ""
6396
 
6397
- #: includes/admin/class-wc-admin-addons.php:373
6398
- msgid "Free - Install now"
6399
  msgstr ""
6400
 
6401
- #: includes/admin/class-wc-admin-addons.php:382
6402
- msgid "Show Canada Post shipping rates"
6403
  msgstr ""
6404
 
6405
- #: includes/admin/class-wc-admin-addons.php:383
6406
- msgid ""
6407
- "Display live rates from Canada Post at checkout to make shipping a breeze. "
6408
- "Powered by WooCommerce Services."
6409
  msgstr ""
6410
 
6411
- #: includes/admin/class-wc-admin-addons.php:488
6412
- msgid "Free"
6413
  msgstr ""
6414
 
6415
- #: includes/admin/class-wc-admin-addons.php:490
6416
- #: includes/admin/helper/class-wc-helper.php:342
6417
- msgid "Installed"
6418
  msgstr ""
6419
 
6420
- #: includes/admin/class-wc-admin-api-keys-table-list.php:37
6421
- msgid "No keys found."
6422
  msgstr ""
6423
 
6424
- #: includes/admin/class-wc-admin-api-keys-table-list.php:48
6425
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:470
6426
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:628
6427
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:85
6428
- #: includes/admin/meta-boxes/views/html-variation-admin.php:341
6429
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:118
6430
- #: includes/admin/settings/class-wc-settings-shipping.php:361
6431
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:86
6432
- #: includes/admin/settings/views/html-keys-edit.php:17
6433
- #: includes/export/class-wc-product-csv-exporter.php:90
6434
- #: includes/gateways/bacs/class-wc-gateway-bacs.php:95
6435
- #: includes/gateways/cheque/class-wc-gateway-cheque.php:71
6436
- #: includes/gateways/cod/class-wc-gateway-cod.php:117
6437
- #: includes/gateways/paypal/includes/settings-paypal.php:25
6438
- #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:204
6439
- #: includes/wc-template-functions.php:1651
6440
- #: templates/single-product/tabs/description.php:25
6441
- msgid "Description"
6442
  msgstr ""
6443
 
6444
- #: includes/admin/class-wc-admin-api-keys-table-list.php:49
6445
- #: includes/admin/settings/views/html-keys-edit.php:77
6446
- msgid "Consumer key ending in"
6447
  msgstr ""
6448
 
6449
- #: includes/admin/class-wc-admin-api-keys-table-list.php:50
6450
- #: includes/admin/reports/class-wc-report-downloads.php:88
6451
- #: includes/admin/reports/class-wc-report-downloads.php:218
6452
- #: includes/admin/settings/views/html-keys-edit.php:28
6453
- msgid "User"
6454
  msgstr ""
6455
 
6456
- #: includes/admin/class-wc-admin-api-keys-table-list.php:51
6457
- #: includes/admin/settings/views/html-keys-edit.php:53
6458
- msgid "Permissions"
6459
  msgstr ""
6460
 
6461
- #: includes/admin/class-wc-admin-api-keys-table-list.php:52
6462
- #: includes/admin/settings/views/html-keys-edit.php:85
6463
- msgid "Last access"
6464
  msgstr ""
6465
 
6466
- #: includes/admin/class-wc-admin-api-keys-table-list.php:78
6467
- msgid "API key"
6468
  msgstr ""
6469
 
6470
- #: includes/admin/class-wc-admin-api-keys-table-list.php:88
6471
- #: includes/admin/class-wc-admin-webhooks-table-list.php:81
6472
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:73
6473
- #: includes/admin/meta-boxes/views/html-order-refund.php:25
6474
- #. translators: %s: API key ID.
6475
- #. translators: %s: webhook ID.
6476
- #. translators: %d: product ID.
6477
- #. translators: 1: ID who refunded
6478
- msgid "ID: %d"
6479
  msgstr ""
6480
 
6481
- #: includes/admin/class-wc-admin-api-keys-table-list.php:89
6482
- msgid "View/Edit"
6483
  msgstr ""
6484
 
6485
- #: includes/admin/class-wc-admin-api-keys-table-list.php:90
6486
- msgid "Revoke API key"
6487
  msgstr ""
6488
 
6489
- #: includes/admin/class-wc-admin-api-keys-table-list.php:98
6490
- #: includes/admin/class-wc-admin-api-keys-table-list.php:187
6491
- msgid "Revoke"
6492
  msgstr ""
6493
 
6494
- #: includes/admin/class-wc-admin-api-keys-table-list.php:151
6495
- #: includes/admin/settings/views/html-keys-edit.php:61
6496
- #: includes/class-wc-auth.php:72
6497
- msgid "Read"
6498
  msgstr ""
6499
 
6500
- #: includes/admin/class-wc-admin-api-keys-table-list.php:152
6501
- #: includes/admin/settings/views/html-keys-edit.php:62
6502
- #: includes/class-wc-auth.php:73
6503
- msgid "Write"
6504
  msgstr ""
6505
 
6506
- #: includes/admin/class-wc-admin-api-keys-table-list.php:153
6507
- #: includes/admin/settings/views/html-keys-edit.php:63
6508
- #: includes/class-wc-auth.php:74
6509
- msgid "Read/Write"
6510
  msgstr ""
6511
 
6512
- #: includes/admin/class-wc-admin-api-keys-table-list.php:172
6513
- #: includes/admin/settings/views/html-keys-edit.php:92
6514
- #: includes/admin/views/html-admin-page-status-logs.php:30
6515
- #. translators: 1: last access date 2: last access time
6516
- msgid "%1$s at %2$s"
6517
  msgstr ""
6518
 
6519
- #: includes/admin/class-wc-admin-api-keys-table-list.php:177
6520
- #: includes/admin/settings/views/html-keys-edit.php:96
6521
- msgid "Unknown"
6522
  msgstr ""
6523
 
6524
- #: includes/admin/class-wc-admin-api-keys.php:75
6525
- #: includes/admin/settings/class-wc-settings-advanced.php:43
6526
- msgid "REST API"
6527
  msgstr ""
6528
 
6529
- #: includes/admin/class-wc-admin-api-keys.php:75
6530
- msgid "Add key"
6531
  msgstr ""
6532
 
6533
- #: includes/admin/class-wc-admin-api-keys.php:88
6534
- msgid "Search key"
6535
  msgstr ""
6536
 
6537
- #: includes/admin/class-wc-admin-api-keys.php:93
6538
- msgid ""
6539
- "The WooCommerce REST API allows external apps to view and manage store "
6540
- "data. Access is granted only to those with valid API keys."
6541
  msgstr ""
6542
 
6543
- #: includes/admin/class-wc-admin-api-keys.php:94
6544
- msgid "Create an API key"
6545
  msgstr ""
6546
 
6547
- #: includes/admin/class-wc-admin-api-keys.php:160
6548
- msgid "API key revoked successfully."
6549
  msgstr ""
6550
 
6551
- #: includes/admin/class-wc-admin-api-keys.php:189
6552
- msgid "You do not have permission to edit API Keys"
6553
  msgstr ""
6554
 
6555
- #. Plugin Name of the plugin/theme
6556
- msgid "WooCommerce"
6557
  msgstr ""
6558
 
6559
- #: includes/admin/class-wc-admin-assets.php:164
6560
- #. translators: %s: decimal
6561
- msgid "Please enter in decimal (%s) format without thousand separators."
6562
  msgstr ""
6563
 
6564
- #: includes/admin/class-wc-admin-assets.php:166
6565
- #. translators: %s: price decimal separator
6566
- msgid ""
6567
- "Please enter in monetary decimal (%s) format without thousand separators "
6568
- "and currency symbols."
6569
  msgstr ""
6570
 
6571
- #: includes/admin/class-wc-admin-assets.php:167
6572
- msgid "Please enter in country code with two capital letters."
6573
  msgstr ""
6574
 
6575
- #: includes/admin/class-wc-admin-assets.php:168
6576
- msgid "Please enter in a value less than the regular price."
6577
  msgstr ""
6578
 
6579
- #: includes/admin/class-wc-admin-assets.php:169
6580
- msgid ""
6581
- "This product has produced sales and may be linked to existing orders. Are "
6582
- "you sure you want to delete it?"
6583
  msgstr ""
6584
 
6585
- #: includes/admin/class-wc-admin-assets.php:174
6586
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:102
6587
- msgid "Import"
6588
  msgstr ""
6589
 
6590
- #: includes/admin/class-wc-admin-assets.php:175
6591
- msgid "Export"
6592
  msgstr ""
6593
 
6594
- #: includes/admin/class-wc-admin-assets.php:200
6595
- #: includes/admin/meta-boxes/views/html-product-data-advanced.php:47
6596
- #: includes/admin/settings/class-wc-settings-products.php:410
6597
- msgid "Enable reviews"
6598
  msgstr ""
6599
 
6600
- #: includes/admin/class-wc-admin-assets.php:228
6601
- #. translators: %d: Number of variations
6602
- msgid ""
6603
- "Are you sure you want to link all variations? This will create a new "
6604
- "variation for each and every possible combination of variation attributes "
6605
- "(max %d per run)."
6606
  msgstr ""
6607
 
6608
- #: includes/admin/class-wc-admin-assets.php:229
6609
- msgid "Enter a value"
6610
  msgstr ""
6611
 
6612
- #: includes/admin/class-wc-admin-assets.php:230
6613
- msgid "Variation menu order (determines position in the list of variations)"
6614
  msgstr ""
6615
 
6616
- #: includes/admin/class-wc-admin-assets.php:231
6617
- msgid "Enter a value (fixed or %)"
6618
  msgstr ""
6619
 
6620
- #: includes/admin/class-wc-admin-assets.php:232
6621
- msgid "Are you sure you want to delete all variations? This cannot be undone."
6622
  msgstr ""
6623
 
6624
- #: includes/admin/class-wc-admin-assets.php:233
6625
- msgid "Last warning, are you sure?"
6626
  msgstr ""
6627
 
6628
- #: includes/admin/class-wc-admin-assets.php:234
6629
- #: includes/admin/class-wc-admin-taxonomies.php:135
6630
- #: includes/admin/class-wc-admin-taxonomies.php:245
6631
- msgid "Choose an image"
6632
  msgstr ""
6633
 
6634
- #: includes/admin/class-wc-admin-assets.php:235
6635
- msgid "Set variation image"
6636
  msgstr ""
6637
 
6638
- #: includes/admin/class-wc-admin-assets.php:236
6639
- msgid "variation added"
6640
  msgstr ""
6641
 
6642
- #: includes/admin/class-wc-admin-assets.php:237
6643
- msgid "variations added"
6644
  msgstr ""
6645
 
6646
- #: includes/admin/class-wc-admin-assets.php:238
6647
- msgid "No variations added"
6648
  msgstr ""
6649
 
6650
- #: includes/admin/class-wc-admin-assets.php:239
6651
- msgid "Are you sure you want to remove this variation?"
6652
  msgstr ""
6653
 
6654
- #: includes/admin/class-wc-admin-assets.php:240
6655
- msgid "Sale start date (YYYY-MM-DD format or leave blank)"
6656
  msgstr ""
6657
 
6658
- #: includes/admin/class-wc-admin-assets.php:241
6659
- msgid "Sale end date (YYYY-MM-DD format or leave blank)"
6660
  msgstr ""
6661
 
6662
- #: includes/admin/class-wc-admin-assets.php:242
6663
- msgid "Save changes before changing page?"
6664
  msgstr ""
6665
 
6666
- #: includes/admin/class-wc-admin-assets.php:243
6667
- msgid "%qty% variation"
6668
  msgstr ""
6669
 
6670
- #: includes/admin/class-wc-admin-assets.php:244
6671
- msgid "%qty% variations"
6672
  msgstr ""
6673
 
6674
- #: includes/admin/class-wc-admin-assets.php:259
6675
- #: includes/admin/class-wc-admin-assets.php:409
6676
- #: includes/admin/settings/views/html-webhooks-edit.php:67
6677
- #: includes/class-wc-frontend-scripts.php:566
6678
- msgid "Select an option&hellip;"
6679
  msgstr ""
6680
 
6681
- #: includes/admin/class-wc-admin-assets.php:262
6682
- #: includes/admin/meta-boxes/views/html-order-item-meta.php:49
6683
- msgid "Name (required)"
6684
  msgstr ""
6685
 
6686
- #: includes/admin/class-wc-admin-assets.php:263
6687
- #: includes/admin/meta-boxes/views/html-order-item-meta.php:50
6688
- msgid "Value (required)"
6689
  msgstr ""
6690
 
6691
- #: includes/admin/class-wc-admin-assets.php:282
6692
- msgid ""
6693
- "Are you sure you want to remove the selected items? If you have previously "
6694
- "reduced this item's stock, or this order was submitted by a customer, you "
6695
- "will need to manually restore the item's stock."
6696
  msgstr ""
6697
 
6698
- #: includes/admin/class-wc-admin-assets.php:283
6699
- msgid "Please select some items."
6700
  msgstr ""
6701
 
6702
- #: includes/admin/class-wc-admin-assets.php:284
6703
- msgid "Are you sure you wish to process this refund? This action cannot be undone."
6704
  msgstr ""
6705
 
6706
- #: includes/admin/class-wc-admin-assets.php:285
6707
- msgid "Are you sure you wish to delete this refund? This action cannot be undone."
6708
  msgstr ""
6709
 
6710
- #: includes/admin/class-wc-admin-assets.php:286
6711
- msgid ""
6712
- "Are you sure you wish to delete this tax column? This action cannot be "
6713
- "undone."
6714
  msgstr ""
6715
 
6716
- #: includes/admin/class-wc-admin-assets.php:287
6717
- msgid "Remove this item meta?"
6718
  msgstr ""
6719
 
6720
- #: includes/admin/class-wc-admin-assets.php:288
6721
- msgid "Remove this attribute?"
6722
  msgstr ""
6723
 
6724
- #: includes/admin/class-wc-admin-assets.php:289
6725
- #: includes/admin/class-wc-admin-attributes.php:187
6726
- #: includes/admin/class-wc-admin-attributes.php:254
6727
- #: includes/admin/class-wc-admin-attributes.php:289
6728
- #: includes/admin/class-wc-admin-attributes.php:317
6729
- #: includes/admin/class-wc-admin-attributes.php:387
6730
- #: includes/admin/class-wc-admin-attributes.php:440
6731
- #: includes/admin/class-wc-admin-webhooks-table-list.php:48
6732
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:465
6733
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:623
6734
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:107
6735
- #: includes/admin/meta-boxes/views/html-product-attribute.php:17
6736
- #: includes/admin/meta-boxes/views/html-product-data-general.php:74
6737
- #: includes/admin/meta-boxes/views/html-variation-admin.php:355
6738
- #: includes/admin/settings/views/html-webhooks-edit.php:22
6739
- #: includes/admin/views/html-admin-page-status-report.php:730
6740
- #: includes/export/class-wc-product-csv-exporter.php:85
6741
- #: includes/widgets/class-wc-widget-product-categories.php:52
6742
- #: templates/single-product-reviews.php:77
6743
- msgid "Name"
6744
  msgstr ""
6745
 
6746
- #: includes/admin/class-wc-admin-assets.php:290
6747
- #: includes/admin/meta-boxes/views/html-product-attribute.php:8
6748
- #: includes/admin/meta-boxes/views/html-variation-admin.php:16
6749
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:54
6750
- msgid "Remove"
6751
  msgstr ""
6752
 
6753
- #: includes/admin/class-wc-admin-assets.php:291
6754
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:9
6755
- #: includes/admin/meta-boxes/views/html-product-attribute.php:9
6756
- #: includes/admin/meta-boxes/views/html-variation-admin.php:17
6757
- msgid "Click to toggle"
6758
  msgstr ""
6759
 
6760
- #: includes/admin/class-wc-admin-assets.php:292
6761
- #: includes/admin/meta-boxes/views/html-product-attribute.php:29
6762
- msgid "Value(s)"
6763
  msgstr ""
6764
 
6765
- #: includes/admin/class-wc-admin-assets.php:293
6766
- msgid "Enter some text, or some attributes by pipe (|) separating values."
6767
  msgstr ""
6768
 
6769
- #: includes/admin/class-wc-admin-assets.php:294
6770
- #: includes/admin/meta-boxes/views/html-product-attribute.php:74
6771
- msgid "Visible on the product page"
6772
  msgstr ""
6773
 
6774
- #: includes/admin/class-wc-admin-assets.php:295
6775
- #: includes/admin/meta-boxes/views/html-product-attribute.php:80
6776
- msgid "Used for variations"
6777
  msgstr ""
6778
 
6779
- #: includes/admin/class-wc-admin-assets.php:296
6780
- msgid "Enter a name for the new attribute term:"
6781
  msgstr ""
6782
 
6783
- #: includes/admin/class-wc-admin-assets.php:297
6784
- msgid ""
6785
- "Recalculate totals? This will calculate taxes based on the customers "
6786
- "country (or the store base country) and update totals."
6787
  msgstr ""
6788
 
6789
- #: includes/admin/class-wc-admin-assets.php:298
6790
- msgid ""
6791
- "Copy billing information to shipping information? This will remove any "
6792
- "currently entered shipping information."
6793
  msgstr ""
6794
 
6795
- #: includes/admin/class-wc-admin-assets.php:299
6796
- msgid ""
6797
- "Load the customer's billing information? This will remove any currently "
6798
- "entered billing information."
6799
  msgstr ""
6800
 
6801
- #: includes/admin/class-wc-admin-assets.php:300
6802
- msgid ""
6803
- "Load the customer's shipping information? This will remove any currently "
6804
- "entered shipping information."
6805
  msgstr ""
6806
 
6807
- #: includes/admin/class-wc-admin-assets.php:301
6808
- #: includes/admin/class-wc-admin-post-types.php:746
6809
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:120
6810
- #: includes/admin/views/html-bulk-edit-product.php:200
6811
- #: includes/admin/views/html-quick-edit-product.php:159
6812
- msgid "Featured"
6813
  msgstr ""
6814
 
6815
- #: includes/admin/class-wc-admin-assets.php:305
6816
- msgid "No customer selected"
6817
  msgstr ""
6818
 
6819
- #: includes/admin/class-wc-admin-assets.php:329
6820
- msgid ""
6821
- "Could not grant access - the user may already have permission for this file "
6822
- "or billing email is not set. Ensure the billing email is set, and the order "
6823
- "has been saved."
6824
  msgstr ""
6825
 
6826
- #: includes/admin/class-wc-admin-assets.php:330
6827
- msgid "Are you sure you want to revoke access to this download?"
6828
  msgstr ""
6829
 
6830
- #: includes/admin/class-wc-admin-assets.php:331
6831
- msgid "You cannot add the same tax rate twice!"
6832
  msgstr ""
6833
 
6834
- #: includes/admin/class-wc-admin-assets.php:332
6835
- msgid "Are you sure you wish to delete this note? This action cannot be undone."
6836
  msgstr ""
6837
 
6838
- #: includes/admin/class-wc-admin-assets.php:333
6839
- msgid "Enter a coupon code to apply to this order."
6840
  msgstr ""
6841
 
6842
- #: includes/admin/class-wc-admin-assets.php:334
6843
- msgid "Enter a fixed amount or percentage to apply as a fee."
6844
  msgstr ""
6845
 
6846
- #: includes/admin/class-wc-admin-assets.php:383
6847
- #: includes/admin/views/html-admin-page-status-report.php:46
6848
- msgid "Copying to clipboard failed. Please press Ctrl/Cmd+C to copy."
6849
  msgstr ""
6850
 
6851
- #: includes/admin/class-wc-admin-assets.php:396
6852
- msgid "Are you sure you want to delete this log?"
6853
  msgstr ""
6854
 
6855
- #: includes/admin/class-wc-admin-attributes.php:138
6856
- msgid "Attribute updated successfully"
6857
  msgstr ""
6858
 
6859
- #: includes/admin/class-wc-admin-attributes.php:138
6860
- msgid "Back to Attributes"
6861
  msgstr ""
6862
 
6863
- #: includes/admin/class-wc-admin-attributes.php:169
6864
- msgid "Edit attribute"
 
 
6865
  msgstr ""
6866
 
6867
- #: includes/admin/class-wc-admin-attributes.php:173
6868
- msgid "Error: non-existing attribute ID."
 
 
6869
  msgstr ""
6870
 
6871
- #: includes/admin/class-wc-admin-attributes.php:191
6872
- #: includes/admin/class-wc-admin-attributes.php:389
6873
- msgid "Name for the attribute (shown on the front-end)."
 
6874
  msgstr ""
6875
 
6876
- #: includes/admin/class-wc-admin-attributes.php:196
6877
- #: includes/admin/class-wc-admin-attributes.php:290
6878
- #: includes/admin/class-wc-admin-attributes.php:393
6879
- #: includes/admin/settings/class-wc-settings-shipping.php:360
6880
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:68
6881
- msgid "Slug"
6882
  msgstr ""
6883
 
6884
- #: includes/admin/class-wc-admin-attributes.php:200
6885
- #: includes/admin/class-wc-admin-attributes.php:395
6886
- msgid "Unique slug/reference for the attribute; must be no more than 28 characters."
6887
  msgstr ""
6888
 
6889
- #: includes/admin/class-wc-admin-attributes.php:205
6890
- msgid "Enable archives?"
6891
  msgstr ""
6892
 
6893
- #: includes/admin/class-wc-admin-attributes.php:209
6894
- #: includes/admin/class-wc-admin-attributes.php:401
6895
- msgid ""
6896
- "Enable this if you want this attribute to have product archives in your "
6897
- "store."
6898
  msgstr ""
6899
 
6900
- #: includes/admin/class-wc-admin-attributes.php:224
6901
- #: includes/admin/class-wc-admin-attributes.php:292
6902
- #: includes/admin/class-wc-admin-attributes.php:415
6903
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:463
6904
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:621
6905
- #: includes/export/class-wc-product-csv-exporter.php:83
6906
- msgid "Type"
6907
  msgstr ""
6908
 
6909
- #: includes/admin/class-wc-admin-attributes.php:241
6910
- #: includes/admin/class-wc-admin-attributes.php:430
6911
- msgid "Determines how this attribute's values are displayed."
6912
  msgstr ""
6913
 
6914
- #: includes/admin/class-wc-admin-attributes.php:249
6915
- #: includes/admin/class-wc-admin-attributes.php:437
6916
- msgid "Default sort order"
6917
  msgstr ""
6918
 
6919
- #: includes/admin/class-wc-admin-attributes.php:253
6920
- #: includes/admin/class-wc-admin-attributes.php:326
6921
- #: includes/admin/class-wc-admin-attributes.php:439
6922
- msgid "Custom ordering"
6923
  msgstr ""
6924
 
6925
- #: includes/admin/class-wc-admin-attributes.php:255
6926
- #: includes/admin/class-wc-admin-attributes.php:320
6927
- #: includes/admin/class-wc-admin-attributes.php:441
6928
- msgid "Name (numeric)"
6929
  msgstr ""
6930
 
6931
- #: includes/admin/class-wc-admin-attributes.php:256
6932
- #: includes/admin/class-wc-admin-attributes.php:323
6933
- #: includes/admin/class-wc-admin-attributes.php:442
6934
- msgid "Term ID"
6935
  msgstr ""
6936
 
6937
- #: includes/admin/class-wc-admin-attributes.php:258
6938
- #: includes/admin/class-wc-admin-attributes.php:444
6939
- msgid ""
6940
- "Determines the sort order of the terms on the frontend shop product pages. "
6941
- "If using custom ordering, you can drag and drop the terms in this attribute."
6942
  msgstr ""
6943
 
6944
- #: includes/admin/class-wc-admin-attributes.php:264
6945
- #: includes/admin/helper/class-wc-helper.php:180
6946
- #: includes/admin/helper/views/html-section-account.php:3
6947
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:74
6948
- msgid "Update"
6949
  msgstr ""
6950
 
6951
- #: includes/admin/class-wc-admin-attributes.php:294
6952
- #: includes/widgets/class-wc-widget-product-categories.php:49
6953
- #: includes/widgets/class-wc-widget-products.php:51
6954
- msgid "Order by"
6955
  msgstr ""
6956
 
6957
- #: includes/admin/class-wc-admin-attributes.php:295
6958
- msgid "Terms"
6959
  msgstr ""
6960
 
6961
- #: includes/admin/class-wc-admin-attributes.php:307
6962
- #: includes/admin/class-wc-admin-post-types.php:751
6963
- #: includes/admin/class-wc-admin-webhooks-table-list.php:82
6964
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:401
6965
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:313
6966
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:425
6967
- #: includes/admin/reports/class-wc-report-customer-list.php:159
6968
- #: includes/admin/reports/class-wc-report-stock.php:135
6969
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:54
6970
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:120
6971
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:78
6972
- #: includes/class-wc-post-types.php:308 includes/class-wc-post-types.php:374
6973
- #: includes/class-wc-post-types.php:439 templates/myaccount/my-address.php:53
6974
- msgid "Edit"
6975
  msgstr ""
6976
 
6977
- #: includes/admin/class-wc-admin-attributes.php:307
6978
- #: includes/admin/class-wc-admin-log-table-list.php:190
6979
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56
6980
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76
6981
- #: includes/admin/meta-boxes/views/html-product-download.php:14
6982
- #: includes/admin/meta-boxes/views/html-product-variation-download.php:13
6983
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:120
6984
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:78
6985
- #: includes/wc-account-functions.php:351
6986
- msgid "Delete"
6987
  msgstr ""
6988
 
6989
- #: includes/admin/class-wc-admin-attributes.php:311
6990
- msgid "(Public)"
6991
  msgstr ""
6992
 
6993
- #: includes/admin/class-wc-admin-attributes.php:361
6994
- msgid "Configure terms"
6995
  msgstr ""
6996
 
6997
- #: includes/admin/class-wc-admin-attributes.php:369
6998
- msgid "No attributes currently exist."
6999
  msgstr ""
7000
 
7001
- #: includes/admin/class-wc-admin-attributes.php:381
7002
- msgid "Add new attribute"
7003
  msgstr ""
7004
 
7005
- #: includes/admin/class-wc-admin-attributes.php:382
7006
- msgid ""
7007
- "Attributes let you define extra product data, such as size or color. You "
7008
- "can use these attributes in the shop sidebar using the \"layered nav\" "
7009
- "widgets."
7010
  msgstr ""
7011
 
7012
- #: includes/admin/class-wc-admin-attributes.php:399
7013
- msgid "Enable Archives?"
7014
  msgstr ""
7015
 
7016
- #: includes/admin/class-wc-admin-attributes.php:449
7017
- msgid "Add attribute"
7018
  msgstr ""
7019
 
7020
- #: includes/admin/class-wc-admin-attributes.php:460
7021
- msgid "Are you sure you want to delete this attribute?"
7022
  msgstr ""
7023
 
7024
- #: includes/admin/class-wc-admin-customize.php:41
7025
- #: includes/admin/class-wc-admin-menus.php:280
7026
- msgid "WooCommerce endpoints"
7027
  msgstr ""
7028
 
7029
- #: includes/admin/class-wc-admin-customize.php:42
7030
- msgid "WooCommerce endpoint"
7031
  msgstr ""
7032
 
7033
- #: includes/admin/class-wc-admin-customize.php:79
7034
- #: includes/admin/class-wc-admin-menus.php:296
7035
- #: includes/admin/settings/class-wc-settings-advanced.php:276
7036
- #: includes/class-wc-query.php:133
7037
- msgid "Lost password"
7038
  msgstr ""
7039
 
7040
- #: includes/admin/class-wc-admin-customize.php:87
7041
- msgid "Custom Link"
7042
  msgstr ""
7043
 
7044
- #: includes/admin/class-wc-admin-dashboard.php:42
7045
- msgid "WooCommerce recent reviews"
7046
  msgstr ""
7047
 
7048
- #: includes/admin/class-wc-admin-dashboard.php:44
7049
- #: includes/admin/class-wc-admin-menus.php:123
7050
- msgid "WooCommerce status"
7051
  msgstr ""
7052
 
7053
- #: includes/admin/class-wc-admin-dashboard.php:56
7054
- msgid "WooCommerce network orders"
7055
  msgstr ""
7056
 
7057
- #: includes/admin/class-wc-admin-dashboard.php:121
7058
- #. translators: %s: net sales
7059
- msgid "%s net sales this month"
7060
  msgstr ""
7061
 
7062
- #: includes/admin/class-wc-admin-dashboard.php:138
7063
- #. translators: 1: top seller product title 2: top seller quantity
7064
- msgid "%1$s top seller this month (sold %2$d)"
7065
  msgstr ""
7066
 
7067
- #: includes/admin/class-wc-admin-dashboard.php:176
7068
- #. translators: %s: order count
7069
- msgid "<strong>%s order</strong> awaiting processing"
7070
- msgid_plural "<strong>%s orders</strong> awaiting processing"
7071
- msgstr[0] ""
7072
- msgstr[1] ""
7073
-
7074
- #: includes/admin/class-wc-admin-dashboard.php:187
7075
- #. translators: %s: order count
7076
- msgid "<strong>%s order</strong> on-hold"
7077
- msgid_plural "<strong>%s orders</strong> on-hold"
7078
- msgstr[0] ""
7079
- msgstr[1] ""
7080
-
7081
- #: includes/admin/class-wc-admin-dashboard.php:247
7082
- #. translators: %s: order count
7083
- msgid "<strong>%s product</strong> low in stock"
7084
- msgid_plural "<strong>%s products</strong> low in stock"
7085
- msgstr[0] ""
7086
- msgstr[1] ""
7087
 
7088
- #: includes/admin/class-wc-admin-dashboard.php:258
7089
- #. translators: %s: order count
7090
- msgid "<strong>%s product</strong> out of stock"
7091
- msgid_plural "<strong>%s products</strong> out of stock"
7092
- msgstr[0] ""
7093
- msgstr[1] ""
7094
 
7095
- #: includes/admin/class-wc-admin-dashboard.php:301
7096
- #. translators: %s: rating
7097
- msgid "%s out of 5"
7098
  msgstr ""
7099
 
7100
- #: includes/admin/class-wc-admin-dashboard.php:304
7101
- #. translators: %s: review author
7102
- msgid "reviewed by %s"
7103
  msgstr ""
7104
 
7105
- #: includes/admin/class-wc-admin-dashboard.php:310
7106
- msgid "There are no product reviews yet."
7107
  msgstr ""
7108
 
7109
- #: includes/admin/class-wc-admin-dashboard.php:339
7110
- msgid "Loading network orders"
7111
  msgstr ""
7112
 
7113
- #: includes/admin/class-wc-admin-dashboard.php:346
7114
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:114
7115
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:169
7116
- #: includes/admin/reports/class-wc-report-downloads.php:87
7117
- #: includes/admin/reports/class-wc-report-downloads.php:217
7118
- #: includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php:286
7119
- #: includes/wc-account-functions.php:190 templates/myaccount/my-orders.php:13
7120
- msgid "Order"
7121
  msgstr ""
7122
 
7123
- #: includes/admin/class-wc-admin-dashboard.php:347
7124
- #: includes/admin/class-wc-admin-menus.php:123
7125
- #: includes/admin/class-wc-admin-webhooks-table-list.php:49
7126
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:116
7127
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:58
7128
- #: includes/admin/settings/views/html-webhooks-edit.php:36
7129
- #: includes/wc-account-functions.php:192 templates/myaccount/my-orders.php:15
7130
- msgid "Status"
7131
  msgstr ""
7132
 
7133
- #: includes/admin/class-wc-admin-dashboard.php:348
7134
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:119
7135
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:440
7136
- #: includes/admin/meta-boxes/views/html-order-items.php:33
7137
- #: includes/admin/meta-boxes/views/html-order-items.php:202
7138
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:183
7139
- #: includes/wc-account-functions.php:193 templates/cart/cart-totals.php:92
7140
- #: templates/cart/cart-totals.php:93 templates/cart/cart.php:35
7141
- #: templates/cart/cart.php:118 templates/checkout/review-order.php:27
7142
- #: templates/checkout/review-order.php:106 templates/myaccount/my-orders.php:16
7143
- #: templates/order/order-details.php:46
7144
- msgid "Total"
7145
  msgstr ""
7146
 
7147
- #: includes/admin/class-wc-admin-dashboard.php:357
7148
- #: includes/class-wc-post-types.php:379
7149
- msgid "No orders found"
7150
  msgstr ""
7151
 
7152
- #: includes/admin/class-wc-admin-duplicate-product.php:61
7153
- #. translators: %s: post title
7154
- msgid "Move &#8220;%s&#8221; to the Trash"
7155
  msgstr ""
7156
 
7157
- #: includes/admin/class-wc-admin-duplicate-product.php:62
7158
- msgid "Trash"
7159
  msgstr ""
7160
 
7161
- #: includes/admin/class-wc-admin-duplicate-product.php:66
7162
- msgid "Make a duplicate from this product"
7163
  msgstr ""
7164
 
7165
- #: includes/admin/class-wc-admin-duplicate-product.php:67
7166
- msgid "Duplicate"
7167
  msgstr ""
7168
 
7169
- #: includes/admin/class-wc-admin-duplicate-product.php:93
7170
- msgid "Copy to a new draft"
7171
  msgstr ""
7172
 
7173
- #: includes/admin/class-wc-admin-duplicate-product.php:103
7174
- msgid "No product to duplicate has been supplied!"
7175
  msgstr ""
7176
 
7177
- #: includes/admin/class-wc-admin-duplicate-product.php:114
7178
- #. translators: %s: product id
7179
- msgid "Product creation failed, could not find original product: %s"
7180
  msgstr ""
7181
 
7182
- #: includes/admin/class-wc-admin-duplicate-product.php:140
7183
- msgid "%s (Copy)"
7184
  msgstr ""
7185
 
7186
- #: includes/admin/class-wc-admin-exporters.php:42
7187
- msgid "Product Export"
7188
  msgstr ""
7189
 
7190
- #: includes/admin/class-wc-admin-exporters.php:129
7191
- msgid "Insufficient privileges to export products."
7192
  msgstr ""
7193
 
7194
- #: includes/admin/class-wc-admin-help.php:42
7195
- #: includes/admin/class-wc-admin-help.php:44
7196
- msgid "Help &amp; Support"
7197
  msgstr ""
7198
 
7199
- #: includes/admin/class-wc-admin-help.php:47
7200
- #. translators: %s: Documentation URL
7201
- msgid ""
7202
- "Should you need help understanding, using, or extending WooCommerce, <a "
7203
- "href=\"%s\">please read our documentation</a>. You will find all kinds of "
7204
- "resources including snippets, tutorials and much more."
7205
  msgstr ""
7206
 
7207
- #: includes/admin/class-wc-admin-help.php:52
7208
- #. translators: %s: Forum URL
7209
- msgid ""
7210
- "For further assistance with WooCommerce core you can use the <a "
7211
- "href=\"%1$s\">community forum</a>. If you need help with premium extensions "
7212
- "sold by WooCommerce, please <a href=\"%2$s\">use our helpdesk</a>."
7213
  msgstr ""
7214
 
7215
- #: includes/admin/class-wc-admin-help.php:56
7216
- msgid ""
7217
- "Before asking for help we recommend checking the system status page to "
7218
- "identify any problems with your configuration."
7219
  msgstr ""
7220
 
7221
- #: includes/admin/class-wc-admin-help.php:57
7222
- #: includes/admin/class-wc-admin-help.php:69
7223
- #: includes/admin/views/html-admin-page-status.php:12
7224
- msgid "System status"
7225
  msgstr ""
7226
 
7227
- #: includes/admin/class-wc-admin-help.php:57
7228
- msgid "Community forum"
7229
  msgstr ""
7230
 
7231
- #: includes/admin/class-wc-admin-help.php:57
7232
- msgid "WooCommerce helpdesk"
7233
  msgstr ""
7234
 
7235
- #: includes/admin/class-wc-admin-help.php:64
7236
- #: includes/admin/class-wc-admin-help.php:66
7237
- msgid "Found a bug?"
7238
  msgstr ""
7239
 
7240
- #: includes/admin/class-wc-admin-help.php:68
7241
- #. translators: 1: GitHub issues URL 2: GitHub contribution guide URL 3: System
7242
- #. status report URL
7243
- msgid ""
7244
- "If you find a bug within WooCommerce core you can create a ticket via <a "
7245
- "href=\"%1$s\">Github issues</a>. Ensure you read the <a "
7246
- "href=\"%2$s\">contribution guide</a> prior to submitting your report. To "
7247
- "help us solve your issue, please be as descriptive as possible and include "
7248
- "your <a href=\"%3$s\">system status report</a>."
7249
  msgstr ""
7250
 
7251
- #: includes/admin/class-wc-admin-help.php:69
7252
- msgid "Report a bug"
7253
  msgstr ""
7254
 
7255
- #: includes/admin/class-wc-admin-help.php:77
7256
- #: includes/admin/class-wc-admin-help.php:79
7257
- msgid "Education"
7258
  msgstr ""
7259
 
7260
- #: includes/admin/class-wc-admin-help.php:80
7261
- msgid ""
7262
- "If you would like to learn about using WooCommerce from an expert, consider "
7263
- "a WooCommerce course to further your education."
7264
  msgstr ""
7265
 
7266
- #: includes/admin/class-wc-admin-help.php:81
7267
- msgid "Further education"
7268
  msgstr ""
7269
 
7270
- #: includes/admin/class-wc-admin-help.php:88
7271
- #: includes/admin/class-wc-admin-help.php:90
7272
- #: includes/admin/class-wc-admin-help.php:92
7273
- msgid "Setup wizard"
7274
  msgstr ""
7275
 
7276
- #: includes/admin/class-wc-admin-help.php:91
7277
- msgid ""
7278
- "If you need to access the setup wizard again, please click on the button "
7279
- "below."
7280
  msgstr ""
7281
 
7282
- #: includes/admin/class-wc-admin-help.php:98
7283
- msgid "For more information:"
7284
  msgstr ""
7285
 
7286
- #: includes/admin/class-wc-admin-help.php:99
7287
- msgid "About WooCommerce"
7288
  msgstr ""
7289
 
7290
- #: includes/admin/class-wc-admin-help.php:100
7291
- msgid "WordPress.org project"
7292
  msgstr ""
7293
 
7294
- #: includes/admin/class-wc-admin-help.php:101
7295
- msgid "Github project"
7296
  msgstr ""
7297
 
7298
- #: includes/admin/class-wc-admin-help.php:102
7299
- msgid "Official theme"
7300
  msgstr ""
7301
 
7302
- #: includes/admin/class-wc-admin-help.php:103
7303
- msgid "Official extensions"
7304
  msgstr ""
7305
 
7306
- #: includes/admin/class-wc-admin-importers.php:39
7307
- msgid "Product Import"
7308
  msgstr ""
7309
 
7310
- #: includes/admin/class-wc-admin-importers.php:113
7311
- msgid "WooCommerce products (CSV)"
7312
  msgstr ""
7313
 
7314
- #: includes/admin/class-wc-admin-importers.php:113
7315
- msgid "Import <strong>products</strong> to your store via a csv file."
7316
  msgstr ""
7317
 
7318
- #: includes/admin/class-wc-admin-importers.php:114
7319
- msgid "WooCommerce tax rates (CSV)"
7320
  msgstr ""
7321
 
7322
- #: includes/admin/class-wc-admin-importers.php:114
7323
- msgid "Import <strong>tax rates</strong> to your store via a csv file."
7324
  msgstr ""
7325
 
7326
- #: includes/admin/class-wc-admin-importers.php:207
7327
- msgid "Insufficient privileges to import products."
7328
  msgstr ""
7329
 
7330
- #: includes/admin/class-wc-admin-log-table-list.php:44
7331
- #: includes/admin/class-wc-admin-log-table-list.php:144
7332
- msgid "Emergency"
7333
  msgstr ""
7334
 
7335
- #: includes/admin/class-wc-admin-log-table-list.php:48
7336
- #: includes/admin/class-wc-admin-log-table-list.php:145
7337
- msgid "Alert"
7338
  msgstr ""
7339
 
7340
- #: includes/admin/class-wc-admin-log-table-list.php:52
7341
- #: includes/admin/class-wc-admin-log-table-list.php:146
7342
- msgid "Critical"
7343
  msgstr ""
7344
 
7345
- #: includes/admin/class-wc-admin-log-table-list.php:56
7346
- #: includes/admin/class-wc-admin-log-table-list.php:147
7347
- msgid "Error"
7348
  msgstr ""
7349
 
7350
- #: includes/admin/class-wc-admin-log-table-list.php:60
7351
- #: includes/admin/class-wc-admin-log-table-list.php:148
7352
- msgid "Warning"
7353
  msgstr ""
7354
 
7355
- #: includes/admin/class-wc-admin-log-table-list.php:64
7356
- #: includes/admin/class-wc-admin-log-table-list.php:149
7357
- msgid "Notice"
7358
  msgstr ""
7359
 
7360
- #: includes/admin/class-wc-admin-log-table-list.php:68
7361
- #: includes/admin/class-wc-admin-log-table-list.php:150
7362
- msgid "Info"
7363
  msgstr ""
7364
 
7365
- #: includes/admin/class-wc-admin-log-table-list.php:72
7366
- #: includes/admin/class-wc-admin-log-table-list.php:151
7367
- msgid "Debug"
7368
  msgstr ""
7369
 
7370
- #: includes/admin/class-wc-admin-log-table-list.php:78
7371
- msgid "Filter by level"
7372
  msgstr ""
7373
 
7374
- #: includes/admin/class-wc-admin-log-table-list.php:80
7375
- msgid "All levels"
7376
  msgstr ""
7377
 
7378
- #: includes/admin/class-wc-admin-log-table-list.php:103
7379
- #: includes/admin/reports/class-wc-report-downloads.php:214
7380
- #: includes/class-wc-privacy-exporters.php:141
7381
- msgid "Timestamp"
7382
  msgstr ""
7383
 
7384
- #: includes/admin/class-wc-admin-log-table-list.php:104
7385
- msgid "Level"
7386
  msgstr ""
7387
 
7388
- #: includes/admin/class-wc-admin-log-table-list.php:105
7389
- msgid "Message"
7390
  msgstr ""
7391
 
7392
- #: includes/admin/class-wc-admin-log-table-list.php:106
7393
- msgid "Source"
7394
  msgstr ""
7395
 
7396
- #: includes/admin/class-wc-admin-log-table-list.php:204
7397
- #: includes/widgets/class-wc-widget-price-filter.php:101
7398
- msgid "Filter"
7399
  msgstr ""
7400
 
7401
- #: includes/admin/class-wc-admin-log-table-list.php:240
7402
- msgid "Filter by source"
7403
  msgstr ""
7404
 
7405
- #: includes/admin/class-wc-admin-log-table-list.php:242
7406
- msgid "All sources"
7407
  msgstr ""
7408
 
7409
- #: includes/admin/class-wc-admin-menus.php:61
7410
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:682
7411
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:111
7412
- #: includes/admin/views/html-admin-page-product-export.php:41
7413
- msgid "Attributes"
7414
  msgstr ""
7415
 
7416
- #: includes/admin/class-wc-admin-menus.php:69
7417
- msgid "Reports"
7418
  msgstr ""
7419
 
7420
- #: includes/admin/class-wc-admin-menus.php:71
7421
- msgid "Sales reports"
7422
  msgstr ""
7423
 
7424
- #: includes/admin/class-wc-admin-menus.php:79
7425
- msgid "WooCommerce settings"
7426
  msgstr ""
7427
 
7428
- #: includes/admin/class-wc-admin-menus.php:79
7429
- #: includes/admin/views/html-admin-page-status-report.php:602
7430
- #: includes/class-wc-install.php:1055
7431
- msgid "Settings"
7432
  msgstr ""
7433
 
7434
- #: includes/admin/class-wc-admin-menus.php:132
7435
- #. translators: %s: extensions count
7436
- msgid "Extensions %s"
7437
  msgstr ""
7438
 
7439
- #: includes/admin/class-wc-admin-menus.php:133
7440
- msgid "WooCommerce extensions"
7441
  msgstr ""
7442
 
7443
- #: includes/admin/class-wc-admin-menus.php:328
7444
- msgid "Add to menu"
7445
  msgstr ""
7446
 
7447
- #: includes/admin/class-wc-admin-menus.php:362
7448
- msgid "Visit Store"
7449
  msgstr ""
7450
 
7451
- #: includes/admin/class-wc-admin-meta-boxes.php:120
7452
- #: includes/admin/class-wc-admin-pointers.php:156
7453
- msgid "Product short description"
7454
  msgstr ""
7455
 
7456
- #: includes/admin/class-wc-admin-meta-boxes.php:121
7457
- #: includes/admin/views/html-bulk-edit-product.php:15
7458
- #: includes/admin/views/html-quick-edit-product.php:14
7459
- msgid "Product data"
7460
  msgstr ""
7461
 
7462
- #: includes/admin/class-wc-admin-meta-boxes.php:122
7463
- msgid "Product gallery"
7464
  msgstr ""
7465
 
7466
- #: includes/admin/class-wc-admin-meta-boxes.php:127
7467
- msgid "%s data"
 
 
7468
  msgstr ""
7469
 
7470
- #: includes/admin/class-wc-admin-meta-boxes.php:129
7471
- msgid "%s notes"
7472
  msgstr ""
7473
 
7474
- #: includes/admin/class-wc-admin-meta-boxes.php:130
7475
- msgid "Downloadable product permissions"
7476
  msgstr ""
7477
 
7478
- #: includes/admin/class-wc-admin-meta-boxes.php:130
7479
- msgid ""
7480
- "Note: Permissions for order items will automatically be granted when the "
7481
- "order status changes to processing/completed."
7482
  msgstr ""
7483
 
7484
- #: includes/admin/class-wc-admin-meta-boxes.php:131
7485
- msgid "%s actions"
7486
  msgstr ""
7487
 
7488
- #: includes/admin/class-wc-admin-meta-boxes.php:135
7489
- msgid "Coupon data"
7490
  msgstr ""
7491
 
7492
- #: includes/admin/class-wc-admin-meta-boxes.php:139
7493
- msgid "Rating"
7494
  msgstr ""
7495
 
7496
- #: includes/admin/class-wc-admin-meta-boxes.php:174
7497
- #: includes/admin/settings/class-wc-settings-products.php:403
7498
- #: templates/single-product-reviews.php:36
7499
- msgid "Reviews"
7500
  msgstr ""
7501
 
7502
- #: includes/admin/class-wc-admin-notices.php:132
7503
- #: includes/admin/class-wc-admin-status.php:271
7504
- #: includes/admin/class-wc-admin-status.php:290
7505
- #: includes/admin/class-wc-admin-status.php:306
7506
- #: includes/emails/class-wc-email.php:809
7507
- msgid "Action failed. Please refresh the page and retry."
7508
  msgstr ""
7509
 
7510
- #: includes/admin/class-wc-admin-notices.php:136
7511
- #: includes/emails/class-wc-email.php:813
7512
- msgid "You don&#8217;t have permission to do this."
7513
  msgstr ""
7514
 
7515
- #: includes/admin/class-wc-admin-permalink-settings.php:44
7516
- msgid "Product permalinks"
7517
  msgstr ""
7518
 
7519
- #: includes/admin/class-wc-admin-permalink-settings.php:48
7520
- msgid "Product category base"
7521
  msgstr ""
7522
 
7523
- #: includes/admin/class-wc-admin-permalink-settings.php:55
7524
- msgid "Product tag base"
7525
  msgstr ""
7526
 
7527
- #: includes/admin/class-wc-admin-permalink-settings.php:62
7528
- msgid "Product attribute base"
7529
  msgstr ""
7530
 
7531
- #: includes/admin/class-wc-admin-permalink-settings.php:103
7532
- #. translators: %s: Home URL
7533
- msgid ""
7534
- "If you like, you may enter custom structures for your product URLs here. "
7535
- "For example, using <code>shop</code> would make your product links like "
7536
- "<code>%sshop/sample-product/</code>. This setting affects product URLs "
7537
- "only, not things such as product categories."
7538
  msgstr ""
7539
 
7540
- #: includes/admin/class-wc-admin-permalink-settings.php:118
7541
- #: includes/admin/class-wc-admin-taxonomies.php:99
7542
- #: includes/admin/class-wc-admin-taxonomies.php:207
7543
- msgid "Default"
7544
  msgstr ""
7545
 
7546
- #: includes/admin/class-wc-admin-permalink-settings.php:123
7547
- msgid "Shop base"
7548
  msgstr ""
7549
 
7550
- #: includes/admin/class-wc-admin-permalink-settings.php:127
7551
- msgid "Shop base with category"
7552
  msgstr ""
7553
 
7554
- #: includes/admin/class-wc-admin-permalink-settings.php:133
7555
- msgid "Custom base"
7556
  msgstr ""
7557
 
7558
- #: includes/admin/class-wc-admin-permalink-settings.php:135
7559
- msgid ""
7560
- "Enter a custom base to use. A base must be set or WordPress will use "
7561
- "default instead."
7562
  msgstr ""
7563
 
7564
- #: includes/admin/class-wc-admin-pointers.php:60
7565
- #: includes/admin/class-wc-admin-post-types.php:685
7566
- msgid "Product name"
7567
  msgstr ""
7568
 
7569
- #: includes/admin/class-wc-admin-pointers.php:61
7570
- msgid ""
7571
- "Give your new product a name here. This is a required field and will be "
7572
- "what your customers will see in your store."
7573
  msgstr ""
7574
 
7575
- #: includes/admin/class-wc-admin-pointers.php:73
7576
- msgid "Product description"
7577
  msgstr ""
7578
 
7579
- #: includes/admin/class-wc-admin-pointers.php:74
7580
- msgid ""
7581
- "This is your products main body of content. Here you should describe your "
7582
- "product in detail."
7583
  msgstr ""
7584
 
7585
- #: includes/admin/class-wc-admin-pointers.php:89
7586
- msgid "Choose product type"
7587
  msgstr ""
7588
 
7589
- #: includes/admin/class-wc-admin-pointers.php:90
7590
- msgid ""
7591
- "Choose a type for this product. Simple is suitable for most physical goods "
7592
- "and services (we recommend setting up a simple product for now)."
7593
  msgstr ""
7594
 
7595
- #: includes/admin/class-wc-admin-pointers.php:91
7596
- msgid "Variable is for more complex products such as t-shirts with multiple sizes."
7597
  msgstr ""
7598
 
7599
- #: includes/admin/class-wc-admin-pointers.php:92
7600
- msgid "Grouped products are for grouping several simple products into one."
7601
  msgstr ""
7602
 
7603
- #: includes/admin/class-wc-admin-pointers.php:93
7604
- msgid "Finally, external products are for linking off-site."
7605
  msgstr ""
7606
 
7607
- #: includes/admin/class-wc-admin-pointers.php:108
7608
- msgid "Virtual products"
7609
  msgstr ""
7610
 
7611
- #: includes/admin/class-wc-admin-pointers.php:109
7612
- msgid ""
7613
- "Check the \"Virtual\" box if this is a non-physical item, for example a "
7614
- "service, which does not need shipping."
7615
  msgstr ""
7616
 
7617
- #: includes/admin/class-wc-admin-pointers.php:124
7618
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:85
7619
- #: includes/admin/settings/class-wc-settings-products.php:43
7620
- #: includes/admin/settings/class-wc-settings-products.php:259
7621
- msgid "Downloadable products"
7622
  msgstr ""
7623
 
7624
- #: includes/admin/class-wc-admin-pointers.php:125
7625
- msgid ""
7626
- "If purchasing this product gives a customer access to a downloadable file, "
7627
- "e.g. software, check this box."
7628
  msgstr ""
7629
 
7630
- #: includes/admin/class-wc-admin-pointers.php:140
7631
- msgid "Prices"
7632
  msgstr ""
7633
 
7634
- #: includes/admin/class-wc-admin-pointers.php:141
7635
- msgid "Next you need to give your product a price."
7636
  msgstr ""
7637
 
7638
- #: includes/admin/class-wc-admin-pointers.php:157
7639
- msgid ""
7640
- "Add a quick summary for your product here. This will appear on the product "
7641
- "page under the product name."
7642
  msgstr ""
7643
 
7644
- #: includes/admin/class-wc-admin-pointers.php:168
7645
- msgid "Product images"
7646
  msgstr ""
7647
 
7648
- #: includes/admin/class-wc-admin-pointers.php:169
7649
- msgid ""
7650
- "Upload or assign an image to your product here. This image will be shown in "
7651
- "your store's catalog."
7652
  msgstr ""
7653
 
7654
- #: includes/admin/class-wc-admin-pointers.php:180
7655
- #: includes/class-wc-post-types.php:125 includes/class-wc-post-types.php:127
7656
- #: includes/widgets/class-wc-widget-product-tag-cloud.php:29
7657
- msgid "Product tags"
7658
  msgstr ""
7659
 
7660
- #: includes/admin/class-wc-admin-pointers.php:181
7661
- msgid ""
7662
- "You can optionally \"tag\" your products here. Tags are a method of "
7663
- "labeling your products to make them easier for customers to find."
7664
  msgstr ""
7665
 
7666
- #: includes/admin/class-wc-admin-pointers.php:192
7667
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:227
7668
- #: includes/class-wc-post-types.php:88
7669
- #: includes/widgets/class-wc-widget-product-categories.php:43
7670
- msgid "Product categories"
7671
  msgstr ""
7672
 
7673
- #: includes/admin/class-wc-admin-pointers.php:193
7674
- msgid ""
7675
- "Optionally assign categories to your products to make them easier to browse "
7676
- "through and find in your store."
7677
  msgstr ""
7678
 
7679
- #: includes/admin/class-wc-admin-pointers.php:204
7680
- msgid "Publish your product!"
 
 
7681
  msgstr ""
7682
 
7683
- #: includes/admin/class-wc-admin-pointers.php:205
7684
- msgid ""
7685
- "When you are finished editing your product, hit the \"Publish\" button to "
7686
- "publish your product to your store."
7687
- msgstr ""
7688
-
7689
- #: includes/admin/class-wc-admin-pointers.php:250
7690
- #: includes/admin/settings/class-wc-settings-general.php:331
7691
- #: includes/admin/settings/class-wc-settings-products.php:74
7692
- #: includes/admin/views/html-notice-custom.php:12
7693
- #: includes/admin/views/html-notice-legacy-shipping.php:11
7694
- #: includes/admin/views/html-notice-no-shipping-methods.php:11
7695
- #: includes/admin/views/html-notice-secure-connection.php:12
7696
- #: includes/admin/views/html-notice-simplify-commerce.php:19
7697
- #: includes/admin/views/html-notice-template-check.php:13
7698
- #: includes/admin/views/html-notice-theme-support.php:12
7699
- #: includes/admin/views/html-notice-updated.php:12
7700
- #: includes/wc-template-functions.php:969
7701
- msgid "Dismiss"
7702
  msgstr ""
7703
 
7704
- #: includes/admin/class-wc-admin-pointers.php:251
7705
- #: templates/myaccount/orders.php:93
7706
- msgid "Next"
 
7707
  msgstr ""
7708
 
7709
- #: includes/admin/class-wc-admin-post-types.php:121
7710
- msgid "Product updated. <a href=\"%s\">View Product</a>"
 
 
7711
  msgstr ""
7712
 
7713
- #: includes/admin/class-wc-admin-post-types.php:122
7714
- #: includes/admin/class-wc-admin-post-types.php:143
7715
- #: includes/admin/class-wc-admin-post-types.php:162
7716
- msgid "Custom field updated."
7717
  msgstr ""
7718
 
7719
- #: includes/admin/class-wc-admin-post-types.php:123
7720
- #: includes/admin/class-wc-admin-post-types.php:144
7721
- #: includes/admin/class-wc-admin-post-types.php:163
7722
- msgid "Custom field deleted."
7723
  msgstr ""
7724
 
7725
- #: includes/admin/class-wc-admin-post-types.php:124
7726
- msgid "Product updated."
7727
  msgstr ""
7728
 
7729
- #: includes/admin/class-wc-admin-post-types.php:125
7730
- #: includes/admin/class-wc-admin-post-types.php:146
7731
- #: includes/admin/class-wc-admin-post-types.php:165
7732
- msgid "Revision restored."
7733
  msgstr ""
7734
 
7735
- #: includes/admin/class-wc-admin-post-types.php:127
7736
- #. translators: %s: product url
7737
- msgid "Product published. <a href=\"%s\">View Product</a>"
7738
  msgstr ""
7739
 
7740
- #: includes/admin/class-wc-admin-post-types.php:128
7741
- msgid "Product saved."
7742
  msgstr ""
7743
 
7744
- #: includes/admin/class-wc-admin-post-types.php:130
7745
- #. translators: %s: product url
7746
- msgid "Product submitted. <a target=\"_blank\" href=\"%s\">Preview product</a>"
7747
  msgstr ""
7748
 
7749
- #: includes/admin/class-wc-admin-post-types.php:133
7750
- #. translators: 1: date 2: product url
7751
- msgid ""
7752
- "Product scheduled for: %1$s. <a target=\"_blank\" href=\"%2$s\">Preview "
7753
- "product</a>"
7754
  msgstr ""
7755
 
7756
- #: includes/admin/class-wc-admin-post-types.php:134
7757
- #: includes/admin/class-wc-admin-post-types.php:153
7758
- #: includes/admin/class-wc-admin-post-types.php:172
7759
- #: includes/admin/settings/views/html-webhooks-edit.php:159
7760
- #: includes/admin/settings/views/html-webhooks-edit.php:168
7761
- #: includes/admin/settings/views/html-webhooks-edit.php:176
7762
- #: includes/class-wc-webhook.php:397
7763
- msgid "M j, Y @ G:i"
7764
  msgstr ""
7765
 
7766
- #: includes/admin/class-wc-admin-post-types.php:137
7767
- #. translators: %s: product url
7768
- msgid "Product draft updated. <a target=\"_blank\" href=\"%s\">Preview product</a>"
7769
  msgstr ""
7770
 
7771
- #: includes/admin/class-wc-admin-post-types.php:142
7772
- #: includes/admin/class-wc-admin-post-types.php:145
7773
- #: includes/admin/class-wc-admin-post-types.php:147
7774
- msgid "Order updated."
7775
  msgstr ""
7776
 
7777
- #: includes/admin/class-wc-admin-post-types.php:148
7778
- msgid "Order saved."
7779
  msgstr ""
7780
 
7781
- #: includes/admin/class-wc-admin-post-types.php:149
7782
- msgid "Order submitted."
7783
  msgstr ""
7784
 
7785
- #: includes/admin/class-wc-admin-post-types.php:152
7786
- #. translators: %s: date
7787
- msgid "Order scheduled for: %s."
7788
  msgstr ""
7789
 
7790
- #: includes/admin/class-wc-admin-post-types.php:155
7791
- msgid "Order draft updated."
7792
  msgstr ""
7793
 
7794
- #: includes/admin/class-wc-admin-post-types.php:156
7795
- msgid "Order updated and sent."
7796
  msgstr ""
7797
 
7798
- #: includes/admin/class-wc-admin-post-types.php:161
7799
- #: includes/admin/class-wc-admin-post-types.php:164
7800
- #: includes/admin/class-wc-admin-post-types.php:166
7801
- msgid "Coupon updated."
7802
  msgstr ""
7803
 
7804
- #: includes/admin/class-wc-admin-post-types.php:167
7805
- msgid "Coupon saved."
7806
  msgstr ""
7807
 
7808
- #: includes/admin/class-wc-admin-post-types.php:168
7809
- msgid "Coupon submitted."
7810
  msgstr ""
7811
 
7812
- #: includes/admin/class-wc-admin-post-types.php:171
7813
- #. translators: %s: date
7814
- msgid "Coupon scheduled for: %s."
7815
  msgstr ""
7816
 
7817
- #: includes/admin/class-wc-admin-post-types.php:174
7818
- msgid "Coupon draft updated."
7819
  msgstr ""
7820
 
7821
- #: includes/admin/class-wc-admin-post-types.php:190
7822
- #. translators: %s: product count
7823
- msgid "%s product updated."
7824
- msgid_plural "%s products updated."
7825
- msgstr[0] ""
7826
- msgstr[1] ""
7827
-
7828
- #: includes/admin/class-wc-admin-post-types.php:192
7829
- #. translators: %s: product count
7830
- msgid "%s product not updated, somebody is editing it."
7831
- msgid_plural "%s products not updated, somebody is editing them."
7832
- msgstr[0] ""
7833
- msgstr[1] ""
7834
-
7835
- #: includes/admin/class-wc-admin-post-types.php:194
7836
- #. translators: %s: product count
7837
- msgid "%s product permanently deleted."
7838
- msgid_plural "%s products permanently deleted."
7839
- msgstr[0] ""
7840
- msgstr[1] ""
7841
-
7842
- #: includes/admin/class-wc-admin-post-types.php:196
7843
- #. translators: %s: product count
7844
- msgid "%s product moved to the Trash."
7845
- msgid_plural "%s products moved to the Trash."
7846
- msgstr[0] ""
7847
- msgstr[1] ""
7848
-
7849
- #: includes/admin/class-wc-admin-post-types.php:198
7850
- #. translators: %s: product count
7851
- msgid "%s product restored from the Trash."
7852
- msgid_plural "%s products restored from the Trash."
7853
- msgstr[0] ""
7854
- msgstr[1] ""
7855
-
7856
- #: includes/admin/class-wc-admin-post-types.php:203
7857
- #. translators: %s: order count
7858
- msgid "%s order updated."
7859
- msgid_plural "%s orders updated."
7860
- msgstr[0] ""
7861
- msgstr[1] ""
7862
-
7863
- #: includes/admin/class-wc-admin-post-types.php:205
7864
- #. translators: %s: order count
7865
- msgid "%s order not updated, somebody is editing it."
7866
- msgid_plural "%s orders not updated, somebody is editing them."
7867
- msgstr[0] ""
7868
- msgstr[1] ""
7869
-
7870
- #: includes/admin/class-wc-admin-post-types.php:207
7871
- #. translators: %s: order count
7872
- msgid "%s order permanently deleted."
7873
- msgid_plural "%s orders permanently deleted."
7874
- msgstr[0] ""
7875
- msgstr[1] ""
7876
-
7877
- #: includes/admin/class-wc-admin-post-types.php:209
7878
- #. translators: %s: order count
7879
- msgid "%s order moved to the Trash."
7880
- msgid_plural "%s orders moved to the Trash."
7881
- msgstr[0] ""
7882
- msgstr[1] ""
7883
 
7884
- #: includes/admin/class-wc-admin-post-types.php:211
7885
- #. translators: %s: order count
7886
- msgid "%s order restored from the Trash."
7887
- msgid_plural "%s orders restored from the Trash."
7888
- msgstr[0] ""
7889
- msgstr[1] ""
7890
 
7891
- #: includes/admin/class-wc-admin-post-types.php:216
7892
- #. translators: %s: coupon count
7893
- msgid "%s coupon updated."
7894
- msgid_plural "%s coupons updated."
7895
- msgstr[0] ""
7896
- msgstr[1] ""
7897
 
7898
- #: includes/admin/class-wc-admin-post-types.php:218
7899
- #. translators: %s: coupon count
7900
- msgid "%s coupon not updated, somebody is editing it."
7901
- msgid_plural "%s coupons not updated, somebody is editing them."
7902
- msgstr[0] ""
7903
- msgstr[1] ""
7904
 
7905
- #: includes/admin/class-wc-admin-post-types.php:220
7906
- #. translators: %s: coupon count
7907
- msgid "%s coupon permanently deleted."
7908
- msgid_plural "%s coupons permanently deleted."
7909
- msgstr[0] ""
7910
- msgstr[1] ""
7911
 
7912
- #: includes/admin/class-wc-admin-post-types.php:222
7913
- #. translators: %s: coupon count
7914
- msgid "%s coupon moved to the Trash."
7915
- msgid_plural "%s coupons moved to the Trash."
7916
- msgstr[0] ""
7917
- msgstr[1] ""
7918
 
7919
- #: includes/admin/class-wc-admin-post-types.php:224
7920
- #. translators: %s: coupon count
7921
- msgid "%s coupon restored from the Trash."
7922
- msgid_plural "%s coupons restored from the Trash."
7923
- msgstr[0] ""
7924
- msgstr[1] ""
7925
 
7926
- #: includes/admin/class-wc-admin-post-types.php:688 templates/cart/cart.php:136
7927
- #: templates/checkout/form-coupon.php:34
7928
- msgid "Coupon code"
7929
  msgstr ""
7930
 
7931
- #: includes/admin/class-wc-admin-post-types.php:702
7932
- msgid "Description (optional)"
7933
  msgstr ""
7934
 
7935
- #: includes/admin/class-wc-admin-post-types.php:739
7936
- msgid "Catalog visibility:"
7937
  msgstr ""
7938
 
7939
- #: includes/admin/class-wc-admin-post-types.php:759
7940
- msgid "This setting determines which shop pages products will be listed on."
7941
  msgstr ""
7942
 
7943
- #: includes/admin/class-wc-admin-post-types.php:765
7944
- msgid "This is a featured product"
7945
  msgstr ""
7946
 
7947
- #: includes/admin/class-wc-admin-post-types.php:768
7948
- msgid "OK"
7949
  msgstr ""
7950
 
7951
- #: includes/admin/class-wc-admin-post-types.php:769
7952
- #: includes/admin/meta-boxes/views/html-order-items.php:257
7953
- #: includes/admin/meta-boxes/views/html-order-items.php:305
7954
- #: includes/admin/meta-boxes/views/html-product-data-general.php:60
7955
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:128
7956
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:48
7957
- #: includes/wc-account-functions.php:281
7958
- msgid "Cancel"
7959
  msgstr ""
7960
 
7961
- #: includes/admin/class-wc-admin-post-types.php:848
7962
- msgid ""
7963
- "This is the WooCommerce shop page. The shop page is a special archive that "
7964
- "lists your products. <a href=\"%s\">You can read more about this here</a>."
7965
  msgstr ""
7966
 
7967
- #: includes/admin/class-wc-admin-post-types.php:861
7968
- msgid "Shop Page"
7969
  msgstr ""
7970
 
7971
- #: includes/admin/class-wc-admin-post-types.php:865
7972
- msgid "Cart Page"
7973
  msgstr ""
7974
 
7975
- #: includes/admin/class-wc-admin-post-types.php:869
7976
- msgid "Checkout Page"
7977
  msgstr ""
7978
 
7979
- #: includes/admin/class-wc-admin-post-types.php:873
7980
- msgid "My Account Page"
7981
  msgstr ""
7982
 
7983
- #: includes/admin/class-wc-admin-post-types.php:877
7984
- msgid "Terms and Conditions Page"
7985
  msgstr ""
7986
 
7987
- #: includes/admin/class-wc-admin-profile.php:42
7988
- #: includes/admin/settings/views/settings-tax.php:40
7989
- msgid "Customer billing address"
7990
  msgstr ""
7991
 
7992
- #: includes/admin/class-wc-admin-profile.php:45
7993
- #: includes/admin/class-wc-admin-profile.php:105
7994
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:44
7995
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:95
7996
- #: includes/class-wc-countries.php:618 includes/class-wc-form-handler.php:240
7997
- #: templates/myaccount/form-edit-account.php:27
7998
- msgid "First name"
7999
  msgstr ""
8000
 
8001
- #: includes/admin/class-wc-admin-profile.php:49
8002
- #: includes/admin/class-wc-admin-profile.php:109
8003
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:48
8004
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:99
8005
- #: includes/class-wc-countries.php:625 includes/class-wc-form-handler.php:241
8006
- #: templates/myaccount/form-edit-account.php:31
8007
- msgid "Last name"
8008
  msgstr ""
8009
 
8010
- #: includes/admin/class-wc-admin-profile.php:53
8011
- #: includes/admin/class-wc-admin-profile.php:113
8012
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:52
8013
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:103
8014
- msgid "Company"
8015
  msgstr ""
8016
 
8017
- #: includes/admin/class-wc-admin-profile.php:57
8018
- #: includes/admin/class-wc-admin-profile.php:117
8019
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:56
8020
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:107
8021
- #: includes/admin/settings/class-wc-settings-general.php:64
8022
- #: includes/api/class-wc-rest-customers-controller.php:215
8023
- #: includes/api/class-wc-rest-customers-controller.php:278
8024
- #: includes/api/class-wc-rest-orders-controller.php:995
8025
- #: includes/api/class-wc-rest-orders-controller.php:1058
8026
- msgid "Address line 1"
8027
  msgstr ""
8028
 
8029
- #: includes/admin/class-wc-admin-profile.php:61
8030
- #: includes/admin/class-wc-admin-profile.php:121
8031
- #: includes/admin/class-wc-admin-setup-wizard.php:405
8032
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:60
8033
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:111
8034
- #: includes/admin/settings/class-wc-settings-general.php:73
8035
- #: includes/api/class-wc-rest-customers-controller.php:220
8036
- #: includes/api/class-wc-rest-customers-controller.php:283
8037
- #: includes/api/class-wc-rest-orders-controller.php:1000
8038
- #: includes/api/class-wc-rest-orders-controller.php:1063
8039
- #: includes/customizer/class-wc-shop-customizer.php:678
8040
- msgid "Address line 2"
8041
  msgstr ""
8042
 
8043
- #: includes/admin/class-wc-admin-profile.php:65
8044
- #: includes/admin/class-wc-admin-profile.php:125
8045
- #: includes/admin/class-wc-admin-setup-wizard.php:410
8046
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:64
8047
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:115
8048
- #: includes/admin/settings/class-wc-settings-general.php:82
8049
- #: includes/admin/settings/class-wc-settings-tax.php:196
8050
- #: includes/admin/settings/views/html-settings-tax.php:29
8051
- #: templates/cart/shipping-calculator.php:83
8052
- msgid "City"
8053
  msgstr ""
8054
 
8055
- #: includes/admin/class-wc-admin-profile.php:69
8056
- #: includes/admin/class-wc-admin-profile.php:129
8057
- #: includes/admin/class-wc-admin-setup-wizard.php:420
8058
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:68
8059
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:119
8060
- #: includes/admin/settings/class-wc-settings-general.php:100
8061
- #: includes/admin/settings/class-wc-settings-tax.php:195
8062
- #: includes/admin/settings/views/html-settings-tax.php:28
8063
- #: includes/class-wc-countries.php:680
8064
- #: templates/cart/shipping-calculator.php:91
8065
- msgid "Postcode / ZIP"
8066
  msgstr ""
8067
 
8068
- #: includes/admin/class-wc-admin-profile.php:73
8069
- #: includes/admin/class-wc-admin-profile.php:133
8070
- #: includes/admin/class-wc-admin-settings.php:584
8071
- #: includes/admin/class-wc-admin-settings.php:609
8072
- #: includes/admin/class-wc-admin-setup-wizard.php:396
8073
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:72
8074
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:123
8075
- #: includes/class-wc-countries.php:640
8076
- msgid "Country"
8077
  msgstr ""
8078
 
8079
- #: includes/admin/class-wc-admin-profile.php:77
8080
- #: includes/admin/class-wc-admin-profile.php:137
8081
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:76
8082
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:127
8083
- #: includes/wc-template-functions.php:2530
8084
- #: templates/cart/shipping-calculator.php:36
8085
- msgid "Select a country&hellip;"
8086
  msgstr ""
8087
 
8088
- #: includes/admin/class-wc-admin-profile.php:80
8089
- #: includes/admin/class-wc-admin-profile.php:140
8090
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:79
8091
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:130
8092
- #: includes/class-wc-countries.php:672
8093
- #: templates/cart/shipping-calculator.php:55
8094
- #: templates/cart/shipping-calculator.php:60
8095
- #: templates/cart/shipping-calculator.php:72
8096
- msgid "State / County"
8097
  msgstr ""
8098
 
8099
- #: includes/admin/class-wc-admin-profile.php:81
8100
- #: includes/admin/class-wc-admin-profile.php:141
8101
- msgid "State / County or state code"
8102
  msgstr ""
8103
 
8104
- #: includes/admin/class-wc-admin-profile.php:85
8105
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:360
8106
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:87
8107
- #: includes/class-wc-countries.php:1221
8108
- #: includes/customizer/class-wc-shop-customizer.php:679
8109
- msgid "Phone"
8110
  msgstr ""
8111
 
8112
- #: includes/admin/class-wc-admin-profile.php:89
8113
- #: includes/admin/class-wc-admin-setup-wizard.php:2116
8114
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:84
8115
- #: includes/class-wc-countries.php:1231 includes/class-wc-form-handler.php:243
8116
- #: templates/myaccount/form-edit-account.php:43
8117
- #: templates/myaccount/form-login.php:90
8118
- msgid "Email address"
8119
  msgstr ""
8120
 
8121
- #: includes/admin/class-wc-admin-profile.php:95
8122
- #: includes/admin/settings/views/settings-tax.php:39
8123
- msgid "Customer shipping address"
8124
  msgstr ""
8125
 
8126
- #: includes/admin/class-wc-admin-profile.php:98
8127
- msgid "Copy from billing address"
8128
  msgstr ""
8129
 
8130
- #: includes/admin/class-wc-admin-profile.php:102
8131
- #: includes/admin/settings/views/html-keys-edit.php:131
8132
- #: includes/admin/settings/views/html-keys-edit.php:139
8133
- msgid "Copy"
8134
  msgstr ""
8135
 
8136
- #: includes/admin/class-wc-admin-reports.php:47
8137
- #: includes/admin/reports/class-wc-report-customer-list.php:215
8138
- #: includes/admin/settings/class-wc-settings-advanced.php:222
8139
- #: includes/class-wc-post-types.php:370
8140
- #: includes/class-wc-privacy-exporters.php:73 includes/class-wc-query.php:109
8141
- #: includes/wc-account-functions.php:99
8142
- msgid "Orders"
8143
  msgstr ""
8144
 
8145
- #: includes/admin/class-wc-admin-reports.php:50
8146
- msgid "Sales by date"
8147
  msgstr ""
8148
 
8149
- #: includes/admin/class-wc-admin-reports.php:56
8150
- msgid "Sales by product"
8151
  msgstr ""
8152
 
8153
- #: includes/admin/class-wc-admin-reports.php:62
8154
- msgid "Sales by category"
8155
  msgstr ""
8156
 
8157
- #: includes/admin/class-wc-admin-reports.php:68
8158
- msgid "Coupons by date"
8159
  msgstr ""
8160
 
8161
- #: includes/admin/class-wc-admin-reports.php:74
8162
- #: includes/admin/reports/class-wc-report-downloads.php:79
8163
- msgid "Customer downloads"
8164
  msgstr ""
8165
 
8166
- #: includes/admin/class-wc-admin-reports.php:82
8167
- msgid "Customers"
8168
  msgstr ""
8169
 
8170
- #: includes/admin/class-wc-admin-reports.php:85
8171
- msgid "Customers vs. guests"
8172
  msgstr ""
8173
 
8174
- #: includes/admin/class-wc-admin-reports.php:91
8175
- msgid "Customer list"
8176
  msgstr ""
8177
 
8178
- #: includes/admin/class-wc-admin-reports.php:99
8179
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:476
8180
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:114
8181
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:74
8182
- #: includes/export/class-wc-product-csv-exporter.php:96
8183
- msgid "Stock"
8184
  msgstr ""
8185
 
8186
- #: includes/admin/class-wc-admin-reports.php:102
8187
- msgid "Low in stock"
8188
  msgstr ""
8189
 
8190
- #: includes/admin/class-wc-admin-reports.php:114
8191
- msgid "Most stocked"
8192
  msgstr ""
8193
 
8194
- #: includes/admin/class-wc-admin-reports.php:125
8195
- msgid "Taxes"
8196
  msgstr ""
8197
 
8198
- #: includes/admin/class-wc-admin-reports.php:128
8199
- msgid "Taxes by code"
8200
  msgstr ""
8201
 
8202
- #: includes/admin/class-wc-admin-reports.php:134
8203
- msgid "Taxes by date"
8204
  msgstr ""
8205
 
8206
- #: includes/admin/class-wc-admin-settings.php:79
8207
- msgid "Your settings have been saved."
8208
  msgstr ""
8209
 
8210
- #: includes/admin/class-wc-admin-settings.php:139
8211
- msgid "The changes you made will be lost if you navigate away from this page."
8212
  msgstr ""
8213
 
8214
- #: includes/admin/class-wc-admin-settings.php:518
8215
- msgid ""
8216
- "The settings of this image size have been disabled because its values are "
8217
- "being overwritten by a filter."
8218
  msgstr ""
8219
 
8220
- #: includes/admin/class-wc-admin-settings.php:530
8221
- msgid "Hard crop?"
8222
  msgstr ""
8223
 
8224
- #: includes/admin/class-wc-admin-settings.php:561
8225
- msgid "Select a page&hellip;"
8226
  msgstr ""
8227
 
8228
- #: includes/admin/class-wc-admin-settings.php:584
8229
- #: includes/admin/class-wc-admin-setup-wizard.php:396
8230
- msgid "Choose a country&hellip;"
8231
  msgstr ""
8232
 
8233
- #: includes/admin/class-wc-admin-settings.php:609
8234
- msgid "Choose countries&hellip;"
8235
  msgstr ""
8236
 
8237
- #: includes/admin/class-wc-admin-settings.php:626
8238
- #: includes/wc-formatting-functions.php:1357
8239
- msgid "Day(s)"
8240
  msgstr ""
8241
 
8242
- #: includes/admin/class-wc-admin-settings.php:627
8243
- #: includes/wc-formatting-functions.php:1358
8244
- msgid "Week(s)"
8245
  msgstr ""
8246
 
8247
- #: includes/admin/class-wc-admin-settings.php:628
8248
- #: includes/wc-formatting-functions.php:1359
8249
- msgid "Month(s)"
8250
  msgstr ""
8251
 
8252
- #: includes/admin/class-wc-admin-settings.php:629
8253
- #: includes/wc-formatting-functions.php:1360
8254
- msgid "Year(s)"
8255
  msgstr ""
8256
 
8257
- #: includes/admin/class-wc-admin-setup-wizard.php:155
8258
- msgid "Store setup"
8259
  msgstr ""
8260
 
8261
- #: includes/admin/class-wc-admin-setup-wizard.php:160
8262
- #: includes/admin/class-wc-admin-setup-wizard.php:1560
8263
- msgid "Payment"
8264
  msgstr ""
8265
 
8266
- #: includes/admin/class-wc-admin-setup-wizard.php:165
8267
- #: includes/admin/class-wc-admin-setup-wizard.php:881
8268
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:424
8269
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:99
8270
- #: includes/admin/meta-boxes/views/html-order-shipping.php:17
8271
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:79
8272
- #: includes/admin/settings/class-wc-settings-shipping.php:25
8273
- #: includes/admin/settings/class-wc-settings-tax.php:201
8274
- #: includes/admin/settings/views/html-settings-tax.php:34
8275
- #: includes/class-wc-order-item-shipping.php:196
8276
- #: templates/cart/cart-totals.php:55 templates/cart/cart-totals.php:56
8277
- msgid "Shipping"
8278
  msgstr ""
8279
 
8280
- #: includes/admin/class-wc-admin-setup-wizard.php:170
8281
- msgid "Recommended"
8282
  msgstr ""
8283
 
8284
- #: includes/admin/class-wc-admin-setup-wizard.php:175
8285
- msgid "Activate"
8286
  msgstr ""
8287
 
8288
- #: includes/admin/class-wc-admin-setup-wizard.php:180
8289
- msgid "Ready!"
8290
  msgstr ""
8291
 
8292
- #: includes/admin/class-wc-admin-setup-wizard.php:289
8293
- msgid "WooCommerce &rsaquo; Setup Wizard"
 
 
8294
  msgstr ""
8295
 
8296
- #: includes/admin/class-wc-admin-setup-wizard.php:305
8297
- msgid "Not right now"
8298
  msgstr ""
8299
 
8300
- #: includes/admin/class-wc-admin-setup-wizard.php:307
8301
- msgid "Skip this step"
 
 
8302
  msgstr ""
8303
 
8304
- #: includes/admin/class-wc-admin-setup-wizard.php:391
8305
- msgid ""
8306
- "The following wizard will help you configure your store and get you started "
8307
- "quickly."
8308
  msgstr ""
8309
 
8310
- #: includes/admin/class-wc-admin-setup-wizard.php:395
8311
- msgid "Where is your store based?"
 
 
8312
  msgstr ""
8313
 
8314
- #: includes/admin/class-wc-admin-setup-wizard.php:402
8315
- msgid "Address"
8316
  msgstr ""
8317
 
8318
- #: includes/admin/class-wc-admin-setup-wizard.php:415
8319
- #: includes/admin/class-wc-admin-setup-wizard.php:417
8320
- #: includes/class-wc-countries.php:763 includes/class-wc-countries.php:1120
8321
- msgid "State"
8322
  msgstr ""
8323
 
8324
- #: includes/admin/class-wc-admin-setup-wizard.php:417
8325
- msgid "Choose a state&hellip;"
8326
  msgstr ""
8327
 
8328
- #: includes/admin/class-wc-admin-setup-wizard.php:428
8329
- msgid "What currency do you accept payments in?"
8330
  msgstr ""
8331
 
8332
- #: includes/admin/class-wc-admin-setup-wizard.php:434
8333
- #: includes/admin/class-wc-admin-setup-wizard.php:437
8334
- msgid "Choose a currency&hellip;"
8335
  msgstr ""
8336
 
8337
- #: includes/admin/class-wc-admin-setup-wizard.php:445
8338
- #: includes/admin/meta-boxes/views/html-order-items.php:41
8339
- #: includes/admin/views/html-bulk-edit-product.php:134
8340
- #. translators: 1: currency name 2: currency code
8341
- #. translators: %1$s: tax item name %2$s: tax class name
8342
- msgid "%1$s (%2$s)"
8343
  msgstr ""
8344
 
8345
- #: includes/admin/class-wc-admin-setup-wizard.php:448
8346
- #. translators: 1: currency name 2: currency symbol, 3: currency code
8347
- msgid "%1$s (%2$s / %3$s)"
8348
  msgstr ""
8349
 
8350
- #: includes/admin/class-wc-admin-setup-wizard.php:462
8351
- msgid "What type of products do you plan to sell?"
8352
  msgstr ""
8353
 
8354
- #: includes/admin/class-wc-admin-setup-wizard.php:465
8355
- msgid "I plan to sell both physical and digital products"
8356
  msgstr ""
8357
 
8358
- #: includes/admin/class-wc-admin-setup-wizard.php:466
8359
- msgid "I plan to sell physical products"
8360
  msgstr ""
8361
 
8362
- #: includes/admin/class-wc-admin-setup-wizard.php:467
8363
- msgid "I plan to sell digital products"
8364
  msgstr ""
8365
 
8366
- #: includes/admin/class-wc-admin-setup-wizard.php:479
8367
- msgid "I will also be selling products or services in person."
8368
  msgstr ""
8369
 
8370
- #: includes/admin/class-wc-admin-setup-wizard.php:488
8371
- msgid "Help WooCommerce improve with usage tracking."
8372
  msgstr ""
8373
 
8374
- #: includes/admin/class-wc-admin-setup-wizard.php:492
8375
- msgid ""
8376
- "Gathering usage data allows us to make WooCommerce better &mdash; your "
8377
- "store will be considered as we evaluate new features, judge the quality of "
8378
- "an update, or determine if an improvement makes sense. If you would rather "
8379
- "opt-out, and do not check this box, we will not know this store exists and "
8380
- "we will not collect any usage data."
8381
  msgstr ""
8382
 
8383
- #: includes/admin/class-wc-admin-setup-wizard.php:493
8384
- msgid "Read more about what we collect."
8385
  msgstr ""
8386
 
8387
- #: includes/admin/class-wc-admin-setup-wizard.php:501
8388
- msgid "Let's go!"
8389
  msgstr ""
8390
 
8391
- #: includes/admin/class-wc-admin-setup-wizard.php:674
8392
- #: includes/admin/class-wc-admin-setup-wizard.php:709
8393
- #: includes/admin/class-wc-admin-setup-wizard.php:2056
8394
- msgid "Jetpack"
8395
  msgstr ""
8396
 
8397
- #: includes/admin/class-wc-admin-setup-wizard.php:722
8398
- msgid "The following plugins will be installed and activated for you:"
8399
  msgstr ""
8400
 
8401
- #: includes/admin/class-wc-admin-setup-wizard.php:758
8402
- msgid "Live Rates"
8403
  msgstr ""
8404
 
8405
- #: includes/admin/class-wc-admin-setup-wizard.php:759
8406
- msgid "Powered by WooCommerce Services and Jetpack."
8407
  msgstr ""
8408
 
8409
- #: includes/admin/class-wc-admin-setup-wizard.php:762
8410
- msgid "Flat Rate"
8411
  msgstr ""
8412
 
8413
- #: includes/admin/class-wc-admin-setup-wizard.php:763
8414
- msgid "Set a fixed price to cover shipping costs."
8415
  msgstr ""
8416
 
8417
- #: includes/admin/class-wc-admin-setup-wizard.php:767
8418
- #: includes/admin/meta-boxes/views/html-order-items.php:31
8419
- #: includes/shipping/flat-rate/includes/settings-flat-rate.php:31
8420
- #: includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:63
8421
- #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97
8422
- msgid "Cost"
8423
  msgstr ""
8424
 
8425
- #: includes/admin/class-wc-admin-setup-wizard.php:768
8426
- msgid "What would you like to charge for flat rate shipping?"
8427
  msgstr ""
8428
 
8429
- #: includes/admin/class-wc-admin-setup-wizard.php:774
8430
- #: includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:106
8431
- msgid "Free Shipping"
8432
  msgstr ""
8433
 
8434
- #: includes/admin/class-wc-admin-setup-wizard.php:775
8435
- msgid "Don't charge for shipping."
8436
  msgstr ""
8437
 
8438
- #: includes/admin/class-wc-admin-setup-wizard.php:864
8439
- msgid "How would you like units on your store displayed?"
8440
  msgstr ""
8441
 
8442
- #: includes/admin/class-wc-admin-setup-wizard.php:868
8443
- #. translators: %1$s: country name including the 'the' prefix, %2$s: shipping
8444
- #. carrier name
8445
- msgid ""
8446
- "You're all set up to ship anywhere in %1$s, and outside of it. We recommend "
8447
- "using <strong>live rates</strong> (which are powered by our WooCommerce "
8448
- "Services plugin and Jetpack) to get accurate %2$s shipping prices to cover "
8449
- "the cost of order fulfillment."
8450
  msgstr ""
8451
 
8452
- #: includes/admin/class-wc-admin-setup-wizard.php:875
8453
- #. translators: %s: country name including the 'the' prefix if needed
8454
- msgid ""
8455
- "You can choose which countries you'll be shipping to and with which "
8456
- "methods. To get started, we've set you up with shipping inside and outside "
8457
- "of %s."
8458
  msgstr ""
8459
 
8460
- #: includes/admin/class-wc-admin-setup-wizard.php:888
8461
- msgid "Shipping Zone"
8462
  msgstr ""
8463
 
8464
- #: includes/admin/class-wc-admin-setup-wizard.php:891
8465
- msgid "Shipping Method"
8466
  msgstr ""
8467
 
8468
- #: includes/admin/class-wc-admin-setup-wizard.php:910
8469
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:26
8470
- #: includes/data-stores/class-wc-shipping-zone-data-store.php:87
8471
- msgid "Locations not covered by your other zones"
8472
  msgstr ""
8473
 
8474
- #: includes/admin/class-wc-admin-setup-wizard.php:932
8475
- msgid "<strong>Weight unit</strong>—used to calculate shipping rates, and more."
8476
  msgstr ""
8477
 
8478
- #: includes/admin/class-wc-admin-setup-wizard.php:940
8479
- #: includes/admin/settings/class-wc-settings-products.php:371
8480
- msgid "kg"
8481
  msgstr ""
8482
 
8483
- #: includes/admin/class-wc-admin-setup-wizard.php:941
8484
- #: includes/admin/settings/class-wc-settings-products.php:372
8485
- msgid "g"
8486
  msgstr ""
8487
 
8488
- #: includes/admin/class-wc-admin-setup-wizard.php:942
8489
- #: includes/admin/settings/class-wc-settings-products.php:373
8490
- msgid "lbs"
8491
  msgstr ""
8492
 
8493
- #: includes/admin/class-wc-admin-setup-wizard.php:943
8494
- #: includes/admin/settings/class-wc-settings-products.php:374
8495
- msgid "oz"
8496
  msgstr ""
8497
 
8498
- #: includes/admin/class-wc-admin-setup-wizard.php:952
8499
- msgid "<strong>Dimension unit</strong>—helps for accurate package selection."
8500
  msgstr ""
8501
 
8502
- #: includes/admin/class-wc-admin-setup-wizard.php:960
8503
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:237
8504
- #: includes/admin/settings/class-wc-settings-products.php:388
8505
- msgid "m"
8506
  msgstr ""
8507
 
8508
- #: includes/admin/class-wc-admin-setup-wizard.php:961
8509
- #: includes/admin/settings/class-wc-settings-products.php:389
8510
- msgid "cm"
8511
  msgstr ""
8512
 
8513
- #: includes/admin/class-wc-admin-setup-wizard.php:962
8514
- #: includes/admin/settings/class-wc-settings-products.php:390
8515
- msgid "mm"
8516
  msgstr ""
8517
 
8518
- #: includes/admin/class-wc-admin-setup-wizard.php:963
8519
- #: includes/admin/settings/class-wc-settings-products.php:391
8520
- msgid "in"
8521
  msgstr ""
8522
 
8523
- #: includes/admin/class-wc-admin-setup-wizard.php:964
8524
- #: includes/admin/settings/class-wc-settings-products.php:392
8525
- msgid "yd"
8526
  msgstr ""
8527
 
8528
- #: includes/admin/class-wc-admin-setup-wizard.php:971
8529
- #: includes/admin/class-wc-admin-setup-wizard.php:1618
8530
- #: includes/admin/class-wc-admin-setup-wizard.php:1778
8531
- #: includes/admin/importers/views/html-product-csv-import-form.php:101
8532
- msgid "Continue"
8533
  msgstr ""
8534
 
8535
- #: includes/admin/class-wc-admin-setup-wizard.php:1198
8536
- #. translators: %s: URL
8537
- msgid ""
8538
- "Accept debit and credit cards in 135+ currencies, methods such as Alipay, "
8539
- "and one-touch checkout with Apple Pay. <a href=\"%s\" "
8540
- "target=\"_blank\">Learn more</a>."
8541
  msgstr ""
8542
 
8543
- #: includes/admin/class-wc-admin-setup-wizard.php:1203
8544
- #. translators: %s: URL
8545
- msgid ""
8546
- "Safe and secure payments using credit cards or your customer's PayPal "
8547
- "account. <a href=\"%s\" target=\"_blank\">Learn more</a>."
8548
  msgstr ""
8549
 
8550
- #: includes/admin/class-wc-admin-setup-wizard.php:1208
8551
- #. translators: %s: URL
8552
- msgid ""
8553
- "Full checkout experience with pay now, pay later and slice it. No credit "
8554
- "card numbers, no passwords, no worries. <a href=\"%s\" "
8555
- "target=\"_blank\">Learn more about Klarna</a>."
8556
  msgstr ""
8557
 
8558
- #: includes/admin/class-wc-admin-setup-wizard.php:1213
8559
- #. translators: %s: URL
8560
- msgid ""
8561
- "Choose the payment that you want, pay now, pay later or slice it. No credit "
8562
- "card numbers, no passwords, no worries. <a href=\"%s\" "
8563
- "target=\"_blank\">Learn more about Klarna</a>."
8564
  msgstr ""
8565
 
8566
- #: includes/admin/class-wc-admin-setup-wizard.php:1218
8567
- #. translators: %s: URL
8568
- msgid ""
8569
- "Securely accept credit and debit cards with one low rate, no surprise fees "
8570
- "(custom rates available). Sell online and in store and track sales and "
8571
- "inventory in one place. <a href=\"%s\" target=\"_blank\">Learn more about "
8572
- "Square</a>."
8573
  msgstr ""
8574
 
8575
- #: includes/admin/class-wc-admin-setup-wizard.php:1224
8576
- msgid "WooCommerce Stripe Gateway"
8577
  msgstr ""
8578
 
8579
- #: includes/admin/class-wc-admin-setup-wizard.php:1231
8580
- msgid "Create a new Stripe account for me"
8581
  msgstr ""
8582
 
8583
- #: includes/admin/class-wc-admin-setup-wizard.php:1239
8584
- msgid "Stripe email address:"
8585
  msgstr ""
8586
 
8587
- #: includes/admin/class-wc-admin-setup-wizard.php:1242
8588
- msgid "Stripe email address"
8589
  msgstr ""
8590
 
8591
- #: includes/admin/class-wc-admin-setup-wizard.php:1243
8592
- msgid ""
8593
- "Enter your email address and we'll handle account creation. Powered by "
8594
- "WooCommerce Services and Jetpack."
8595
  msgstr ""
8596
 
8597
- #: includes/admin/class-wc-admin-setup-wizard.php:1249
8598
- msgid "WooCommerce PayPal Express Checkout Gateway"
8599
  msgstr ""
8600
 
8601
- #: includes/admin/class-wc-admin-setup-wizard.php:1257
8602
- msgid "Accept payments without linking a PayPal account"
8603
  msgstr ""
8604
 
8605
- #: includes/admin/class-wc-admin-setup-wizard.php:1265
8606
- msgid "Direct payments to email address:"
8607
  msgstr ""
8608
 
8609
- #: includes/admin/class-wc-admin-setup-wizard.php:1268
8610
- msgid "Email address to receive payments"
8611
  msgstr ""
8612
 
8613
- #: includes/admin/class-wc-admin-setup-wizard.php:1269
8614
- msgid ""
8615
- "Enter your email address and we'll authenticate payments for you. Powered "
8616
- "by WooCommerce Services and Jetpack."
8617
  msgstr ""
8618
 
8619
- #: includes/admin/class-wc-admin-setup-wizard.php:1275
8620
- msgid "PayPal Standard"
8621
  msgstr ""
8622
 
8623
- #: includes/admin/class-wc-admin-setup-wizard.php:1276
8624
- msgid "Accept payments via PayPal using account balance or credit card."
8625
  msgstr ""
8626
 
8627
- #: includes/admin/class-wc-admin-setup-wizard.php:1280
8628
- msgid "PayPal email address:"
8629
  msgstr ""
8630
 
8631
- #: includes/admin/class-wc-admin-setup-wizard.php:1283
8632
- msgid "PayPal email address"
8633
  msgstr ""
8634
 
8635
- #: includes/admin/class-wc-admin-setup-wizard.php:1289
8636
- msgid "Klarna Checkout for WooCommerce"
8637
  msgstr ""
8638
 
8639
- #: includes/admin/class-wc-admin-setup-wizard.php:1297
8640
- msgid "Klarna Payments for WooCommerce"
8641
  msgstr ""
8642
 
8643
- #: includes/admin/class-wc-admin-setup-wizard.php:1305
8644
- msgid "WooCommerce Square"
8645
  msgstr ""
8646
 
8647
- #: includes/admin/class-wc-admin-setup-wizard.php:1313
8648
- msgid "WooCommerce eWAY Gateway"
8649
  msgstr ""
8650
 
8651
- #: includes/admin/class-wc-admin-setup-wizard.php:1314
8652
- msgid ""
8653
- "The eWAY extension for WooCommerce allows you to take credit card payments "
8654
- "directly on your store without redirecting your customers to a third party "
8655
- "site to make payment."
8656
  msgstr ""
8657
 
8658
- #: includes/admin/class-wc-admin-setup-wizard.php:1321
8659
- msgid "WooCommerce PayFast Gateway"
8660
  msgstr ""
8661
 
8662
- #: includes/admin/class-wc-admin-setup-wizard.php:1322
8663
- msgid ""
8664
- "The PayFast extension for WooCommerce enables you to accept payments by "
8665
- "Credit Card and EFT via one of South Africa’s most popular payment "
8666
- "gateways. No setup fees or monthly subscription costs."
8667
  msgstr ""
8668
 
8669
- #: includes/admin/class-wc-admin-setup-wizard.php:1408
8670
- msgid "A simple offline gateway that lets you accept a check as method of payment."
8671
  msgstr ""
8672
 
8673
- #: includes/admin/class-wc-admin-setup-wizard.php:1413
8674
- msgid "Bank transfer (BACS) payments"
8675
  msgstr ""
8676
 
8677
- #: includes/admin/class-wc-admin-setup-wizard.php:1414
8678
- msgid "A simple offline gateway that lets you accept BACS payment."
8679
  msgstr ""
8680
 
8681
- #: includes/admin/class-wc-admin-setup-wizard.php:1419
8682
- #: includes/gateways/cod/class-wc-gateway-cod.php:56
8683
- #: includes/gateways/cod/class-wc-gateway-cod.php:113
8684
- msgid "Cash on delivery"
8685
  msgstr ""
8686
 
8687
- #: includes/admin/class-wc-admin-setup-wizard.php:1420
8688
- msgid "A simple offline gateway that lets you accept cash on delivery."
8689
  msgstr ""
8690
 
8691
- #: includes/admin/class-wc-admin-setup-wizard.php:1567
8692
- #. translators: %s: Link
8693
- msgid ""
8694
- "WooCommerce can accept both online and offline payments. <a href=\"%s\" "
8695
- "target=\"_blank\">Additional payment methods</a> can be installed later."
8696
  msgstr ""
8697
 
8698
- #: includes/admin/class-wc-admin-setup-wizard.php:1600
8699
- msgid "Offline Payments"
8700
  msgstr ""
8701
 
8702
- #: includes/admin/class-wc-admin-setup-wizard.php:1603
8703
- msgid "Collect payments from customers offline."
8704
  msgstr ""
8705
 
8706
- #: includes/admin/class-wc-admin-setup-wizard.php:1720
8707
- msgid "Recommended for All WooCommerce Stores"
8708
  msgstr ""
8709
 
8710
- #: includes/admin/class-wc-admin-setup-wizard.php:1730
8711
- msgid ""
8712
- "Select from the list below to enable automated taxes and MailChimp’s "
8713
- "best-in-class email services — and design your store with our official, "
8714
- "free WooCommerce theme."
8715
  msgstr ""
8716
 
8717
- #: includes/admin/class-wc-admin-setup-wizard.php:1732
8718
- msgid "Enhance your store with these recommended features."
8719
  msgstr ""
8720
 
8721
- #: includes/admin/class-wc-admin-setup-wizard.php:1743
8722
- msgid "Storefront Theme"
8723
  msgstr ""
8724
 
8725
- #: includes/admin/class-wc-admin-setup-wizard.php:1744
8726
- msgid ""
8727
- "Design your store with deep WooCommerce integration. If toggled on, we’ll "
8728
- "install <a href=\"https://woocommerce.com/storefront/\" target=\"_blank\" "
8729
- "rel=\"noopener noreferrer\">Storefront</a>, and your current theme "
8730
- "<em>%s</em> will be deactivated."
8731
  msgstr ""
8732
 
8733
- #: includes/admin/class-wc-admin-setup-wizard.php:1749
8734
- msgid "Storefront icon"
8735
  msgstr ""
8736
 
8737
- #: includes/admin/class-wc-admin-setup-wizard.php:1756
8738
- msgid "Automated Taxes"
8739
  msgstr ""
8740
 
8741
- #: includes/admin/class-wc-admin-setup-wizard.php:1757
8742
- msgid ""
8743
- "Save time and errors with automated tax calculation and collection at "
8744
- "checkout. Powered by WooCommerce Services and Jetpack."
8745
  msgstr ""
8746
 
8747
- #: includes/admin/class-wc-admin-setup-wizard.php:1759
8748
- msgid "automated taxes icon"
8749
  msgstr ""
8750
 
8751
- #: includes/admin/class-wc-admin-setup-wizard.php:1767
8752
- msgid "MailChimp"
8753
  msgstr ""
8754
 
8755
- #: includes/admin/class-wc-admin-setup-wizard.php:1768
8756
- msgid ""
8757
- "Join the 16 million customers who use MailChimp. Sync list and store data "
8758
- "to send automated emails, and targeted campaigns."
8759
  msgstr ""
8760
 
8761
- #: includes/admin/class-wc-admin-setup-wizard.php:1770
8762
- msgid "MailChimp icon"
8763
  msgstr ""
8764
 
8765
- #: includes/admin/class-wc-admin-setup-wizard.php:1771
8766
- #: includes/admin/class-wc-admin-setup-wizard.php:1813
8767
- msgid "MailChimp for WooCommerce"
8768
  msgstr ""
8769
 
8770
- #: includes/admin/class-wc-admin-setup-wizard.php:1864
8771
- msgid "payment setup, automated taxes, live rates and discounted shipping labels"
8772
  msgstr ""
8773
 
8774
- #: includes/admin/class-wc-admin-setup-wizard.php:1866
8775
- msgid "payment setup and automated taxes"
8776
  msgstr ""
8777
 
8778
- #: includes/admin/class-wc-admin-setup-wizard.php:1868
8779
- msgid "payment setup, live rates and discounted shipping labels"
8780
  msgstr ""
8781
 
8782
- #: includes/admin/class-wc-admin-setup-wizard.php:1870
8783
- msgid "payment setup"
8784
  msgstr ""
8785
 
8786
- #: includes/admin/class-wc-admin-setup-wizard.php:1872
8787
- msgid "automated taxes, live rates and discounted shipping labels"
8788
  msgstr ""
8789
 
8790
- #: includes/admin/class-wc-admin-setup-wizard.php:1874
8791
- msgid "automated taxes"
8792
  msgstr ""
8793
 
8794
- #: includes/admin/class-wc-admin-setup-wizard.php:1876
8795
- msgid "live rates and discounted shipping labels"
8796
  msgstr ""
8797
 
8798
- #: includes/admin/class-wc-admin-setup-wizard.php:1893
8799
- msgid "Sorry, we couldn't connect your store to Jetpack"
8800
  msgstr ""
8801
 
8802
- #: includes/admin/class-wc-admin-setup-wizard.php:1905
8803
- #. translators: %s: list of features, potentially comma separated
8804
- msgid ""
8805
- "Your store is almost ready! To activate services like %s, just connect with "
8806
- "Jetpack."
8807
  msgstr ""
8808
 
8809
- #: includes/admin/class-wc-admin-setup-wizard.php:1907
8810
- msgid ""
8811
- "Thanks for using Jetpack! Your store is almost ready: to activate services "
8812
- "like %s, just connect your store."
8813
  msgstr ""
8814
 
8815
- #: includes/admin/class-wc-admin-setup-wizard.php:1914
8816
- msgid "Connect your store to Jetpack"
8817
  msgstr ""
8818
 
8819
- #: includes/admin/class-wc-admin-setup-wizard.php:1915
8820
- msgid "Connect your store to Jetpack to enable extra features"
8821
  msgstr ""
8822
 
8823
- #: includes/admin/class-wc-admin-setup-wizard.php:1916
8824
- msgid "Continue with Jetpack"
8825
  msgstr ""
8826
 
8827
- #: includes/admin/class-wc-admin-setup-wizard.php:1918
8828
- msgid "Connect your store to activate WooCommerce Services"
8829
- msgstr ""
8830
 
8831
- #: includes/admin/class-wc-admin-setup-wizard.php:1919
8832
- msgid "Continue with WooCommerce Services"
8833
  msgstr ""
8834
 
8835
- #: includes/admin/class-wc-admin-setup-wizard.php:1955
8836
- msgid "Finish setting up your store"
8837
  msgstr ""
8838
 
8839
- #: includes/admin/class-wc-admin-setup-wizard.php:1962
8840
- msgid ""
8841
- "By connecting your site you agree to our fascinating <a href=\"%1$s\" "
8842
- "target=\"_blank\">Terms of Service</a> and to <a href=\"%2$s\" "
8843
- "target=\"_blank\">share details</a> with WordPress.com"
8844
  msgstr ""
8845
 
8846
- #: includes/admin/class-wc-admin-setup-wizard.php:1979
8847
- msgid "Bonus reasons you'll love Jetpack"
8848
  msgstr ""
8849
 
8850
- #: includes/admin/class-wc-admin-setup-wizard.php:1980
8851
- msgid "Reasons you'll love Jetpack"
8852
  msgstr ""
8853
 
8854
- #: includes/admin/class-wc-admin-setup-wizard.php:1987
8855
- msgid "Better security"
8856
  msgstr ""
8857
 
8858
- #: includes/admin/class-wc-admin-setup-wizard.php:1990
8859
- msgid "Protect your store from unauthorized access."
8860
  msgstr ""
8861
 
8862
- #: includes/admin/class-wc-admin-setup-wizard.php:1995
8863
- msgid "Store stats"
8864
  msgstr ""
8865
 
8866
- #: includes/admin/class-wc-admin-setup-wizard.php:1998
8867
- msgid ""
8868
- "Get insights on how your store is doing, including total sales, top "
8869
- "products, and more."
8870
  msgstr ""
8871
 
8872
- #: includes/admin/class-wc-admin-setup-wizard.php:2003
8873
- msgid "Store monitoring"
8874
  msgstr ""
8875
 
8876
- #: includes/admin/class-wc-admin-setup-wizard.php:2006
8877
- msgid "Get an alert if your store is down for even a few minutes."
8878
  msgstr ""
8879
 
8880
- #: includes/admin/class-wc-admin-setup-wizard.php:2011
8881
- msgid "Product promotion"
8882
  msgstr ""
8883
 
8884
- #: includes/admin/class-wc-admin-setup-wizard.php:2014
8885
- msgid "Share new items on social media the moment they're live in your store."
8886
  msgstr ""
8887
 
8888
- #: includes/admin/class-wc-admin-setup-wizard.php:2025
8889
- msgid ""
8890
- "Sorry! We tried, but we couldn't connect Jetpack just now 😭. Please go to "
8891
- "the Plugins tab to connect Jetpack, so that you can finish setting up your "
8892
- "store."
8893
  msgstr ""
8894
 
8895
- #: includes/admin/class-wc-admin-setup-wizard.php:2026
8896
- msgid ""
8897
- "Sorry! We tried, but we couldn't install Jetpack for you 😭. Please go to "
8898
- "the Plugins tab to install it, and finish setting up your store."
8899
  msgstr ""
8900
 
8901
- #: includes/admin/class-wc-admin-setup-wizard.php:2027
8902
- msgid ""
8903
- "Sorry! We couldn't contact Jetpack just now 😭. Please make sure that your "
8904
- "site is visible over the internet, and that it accepts incoming and "
8905
- "outgoing requests via curl. You can also try to connect to Jetpack again, "
8906
- "and if you run into any more issues, please contact support."
8907
  msgstr ""
8908
 
8909
- #: includes/admin/class-wc-admin-setup-wizard.php:2028
8910
- msgid ""
8911
- "Your site might be on a private network. Jetpack can only connect to public "
8912
- "sites. Please make sure your site is visible over the internet, and then "
8913
- "try connecting again 🙏."
8914
  msgstr ""
8915
 
8916
- #: includes/admin/class-wc-admin-setup-wizard.php:2100
8917
- #. translators: %1$s: link to videos, %2$s: link to docs
8918
- msgid ""
8919
- "Watch our <a href=\"%1$s\" target=\"_blank\">guided tour videos</a> to "
8920
- "learn more about WooCommerce, and visit WooCommerce.com to learn more about "
8921
- "<a href=\"%2$s\" target=\"_blank\">getting started</a>."
8922
  msgstr ""
8923
 
8924
- #: includes/admin/class-wc-admin-setup-wizard.php:2105
8925
- msgid "You're ready to start selling!"
8926
  msgstr ""
8927
 
8928
- #: includes/admin/class-wc-admin-setup-wizard.php:2108
8929
- msgid ""
8930
- "We're here for you — get tips, product updates, and inspiration straight to "
8931
- "your mailbox."
8932
  msgstr ""
8933
 
8934
- #: includes/admin/class-wc-admin-setup-wizard.php:2122
8935
- #: includes/admin/class-wc-admin-setup-wizard.php:2126
8936
- msgid "Yes please!"
8937
  msgstr ""
8938
 
8939
- #: includes/admin/class-wc-admin-setup-wizard.php:2135
8940
- msgid "Next step"
8941
  msgstr ""
8942
 
8943
- #: includes/admin/class-wc-admin-setup-wizard.php:2136
8944
- msgid "Create some products"
 
8945
  msgstr ""
8946
 
8947
- #: includes/admin/class-wc-admin-setup-wizard.php:2137
8948
- msgid "You're ready to add products to your store."
 
8949
  msgstr ""
8950
 
8951
- #: includes/admin/class-wc-admin-setup-wizard.php:2142
8952
- msgid "Create a product"
 
8953
  msgstr ""
8954
 
8955
- #: includes/admin/class-wc-admin-setup-wizard.php:2149
8956
- msgid "Have an existing store?"
 
8957
  msgstr ""
8958
 
8959
- #: includes/admin/class-wc-admin-setup-wizard.php:2150
8960
- #: includes/admin/class-wc-admin-setup-wizard.php:2156
8961
- msgid "Import products"
8962
  msgstr ""
8963
 
8964
- #: includes/admin/class-wc-admin-setup-wizard.php:2151
8965
- msgid "Transfer existing products to your new store — just import a CSV file."
 
 
 
8966
  msgstr ""
8967
 
8968
- #: includes/admin/class-wc-admin-setup-wizard.php:2163
8969
- msgid "You can also:"
 
 
 
8970
  msgstr ""
8971
 
8972
- #: includes/admin/class-wc-admin-setup-wizard.php:2168
8973
- msgid "Visit Dashboard"
8974
  msgstr ""
8975
 
8976
- #: includes/admin/class-wc-admin-setup-wizard.php:2171
8977
- msgid "Review Settings"
 
 
8978
  msgstr ""
8979
 
8980
- #: includes/admin/class-wc-admin-setup-wizard.php:2174
8981
- msgid "View &amp; Customize"
 
 
8982
  msgstr ""
8983
 
8984
- #: includes/admin/class-wc-admin-status.php:45
8985
- msgid "Tool does not exist."
8986
  msgstr ""
8987
 
8988
- #: includes/admin/class-wc-admin-status.php:58
8989
- msgid "Your changes have been saved."
8990
  msgstr ""
8991
 
8992
- #: includes/admin/class-wc-admin-taxonomies.php:97
8993
- #: includes/admin/class-wc-admin-taxonomies.php:204
8994
- #: includes/widgets/class-wc-widget-layered-nav.php:84
8995
- msgid "Display type"
8996
  msgstr ""
8997
 
8998
- #: includes/admin/class-wc-admin-taxonomies.php:100
8999
- #: includes/admin/class-wc-admin-taxonomies.php:208
9000
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:187
9001
- #: includes/admin/settings/class-wc-settings-products.php:29
9002
- #: includes/class-wc-post-types.php:302
9003
- #: includes/widgets/class-wc-widget-products.php:23
9004
- #: includes/widgets/class-wc-widget-products.php:27
9005
- msgid "Products"
9006
  msgstr ""
9007
 
9008
- #: includes/admin/class-wc-admin-taxonomies.php:101
9009
- #: includes/admin/class-wc-admin-taxonomies.php:209
9010
- msgid "Subcategories"
9011
  msgstr ""
9012
 
9013
- #: includes/admin/class-wc-admin-taxonomies.php:102
9014
- #: includes/admin/class-wc-admin-taxonomies.php:210
9015
- msgid "Both"
9016
  msgstr ""
9017
 
9018
- #: includes/admin/class-wc-admin-taxonomies.php:106
9019
- #: includes/admin/class-wc-admin-taxonomies.php:215
9020
- #: includes/admin/class-wc-admin-taxonomies.php:419
9021
- msgid "Thumbnail"
9022
  msgstr ""
9023
 
9024
- #: includes/admin/class-wc-admin-taxonomies.php:110
9025
- #: includes/admin/class-wc-admin-taxonomies.php:220
9026
- msgid "Upload/Add image"
9027
  msgstr ""
9028
 
9029
- #: includes/admin/class-wc-admin-taxonomies.php:111
9030
- #: includes/admin/class-wc-admin-taxonomies.php:221
9031
- msgid "Remove image"
9032
  msgstr ""
9033
 
9034
- #: includes/admin/class-wc-admin-taxonomies.php:137
9035
- #: includes/admin/class-wc-admin-taxonomies.php:247
9036
- msgid "Use image"
9037
  msgstr ""
9038
 
9039
- #: includes/admin/class-wc-admin-taxonomies.php:300
9040
- msgid ""
9041
- "Product categories for your store can be managed here. To change the order "
9042
- "of categories on the front-end you can drag and drop to sort them. To see "
9043
- "more categories listed click the \"screen options\" link at the top-right "
9044
- "of this page."
9045
- msgstr ""
9046
-
9047
- #: includes/admin/class-wc-admin-taxonomies.php:313
9048
- #: includes/api/class-wc-rest-system-status-tools-controller.php:162
9049
- #: includes/api/class-wc-rest-system-status-tools-controller.php:171
9050
- #: includes/api/class-wc-rest-system-status-tools-controller.php:180
9051
- #: templates/emails/email-order-details.php:79
9052
- #: templates/emails/plain/email-order-details.php:46
9053
- #: templates/order/order-details.php:84
9054
- msgid "Note:"
9055
  msgstr ""
9056
 
9057
- #: includes/admin/class-wc-admin-taxonomies.php:317
9058
- #. translators: %s: default category
9059
- msgid ""
9060
- "Deleting a category does not delete the products in that category. Instead, "
9061
- "products that were only assigned to the deleted category are set to the "
9062
- "category %s."
9063
  msgstr ""
9064
 
9065
- #: includes/admin/class-wc-admin-taxonomies.php:330
9066
- msgid ""
9067
- "Attribute terms can be assigned to products and "
9068
- "variations.<br/><br/><b>Note</b>: Deleting a term will remove it from all "
9069
- "products and variations to which it has been assigned. Recreating a term "
9070
- "will not automatically assign it back to products."
9071
  msgstr ""
9072
 
9073
- #: includes/admin/class-wc-admin-taxonomies.php:347
9074
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:106
9075
- msgid "Image"
9076
  msgstr ""
9077
 
9078
- #: includes/admin/class-wc-admin-taxonomies.php:370
9079
- #. translators: %s: taxonomy term name
9080
- msgid "Make &#8220;%s&#8221; the default category"
9081
  msgstr ""
9082
 
9083
- #: includes/admin/class-wc-admin-taxonomies.php:371
9084
- #: includes/wc-account-functions.php:360
9085
- msgid "Make default"
9086
  msgstr ""
9087
 
9088
- #: includes/admin/class-wc-admin-taxonomies.php:406
9089
- msgid ""
9090
- "This is the default category and it cannot be deleted. It will be "
9091
- "automatically assigned to products with no category."
9092
  msgstr ""
9093
 
9094
- #: includes/admin/class-wc-admin-webhooks-table-list.php:37
9095
- msgid "No webhooks found."
9096
  msgstr ""
9097
 
9098
- #: includes/admin/class-wc-admin-webhooks-table-list.php:50
9099
- #: includes/admin/settings/views/html-webhooks-edit.php:56
9100
- msgid "Topic"
9101
  msgstr ""
9102
 
9103
- #: includes/admin/class-wc-admin-webhooks-table-list.php:51
9104
- #: includes/admin/settings/views/html-webhooks-edit.php:108
9105
- msgid "Delivery URL"
9106
  msgstr ""
9107
 
9108
- #: includes/admin/class-wc-admin-webhooks-table-list.php:84
9109
- #. translators: %s: webhook name
9110
- msgid "Delete \"%s\" permanently"
9111
  msgstr ""
9112
 
9113
- #: includes/admin/class-wc-admin-webhooks-table-list.php:92
9114
- #: includes/admin/class-wc-admin-webhooks-table-list.php:206
9115
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:63
9116
- #: includes/admin/settings/views/html-webhooks-edit.php:195
9117
- msgid "Delete permanently"
9118
  msgstr ""
9119
 
9120
- #: includes/admin/class-wc-admin-webhooks.php:56
9121
- msgid "You do not have permission to update Webhooks"
9122
  msgstr ""
9123
 
9124
- #: includes/admin/class-wc-admin-webhooks.php:69
9125
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:199
9126
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:199
9127
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:500
9128
- #. translators: %s: date
9129
- msgid "Webhook created on %s"
9130
  msgstr ""
9131
 
9132
- #: includes/admin/class-wc-admin-webhooks.php:117
9133
- msgid "Webhook topic unknown. Please select a valid topic."
9134
  msgstr ""
9135
 
9136
- #: includes/admin/class-wc-admin-webhooks.php:189
9137
- msgid "You do not have permission to edit Webhooks"
9138
  msgstr ""
9139
 
9140
- #: includes/admin/class-wc-admin-webhooks.php:251
9141
- #. translators: %d: count
9142
- msgid "%d webhook permanently deleted."
9143
- msgid_plural "%d webhooks permanently deleted."
9144
- msgstr[0] ""
9145
- msgstr[1] ""
9146
 
9147
- #: includes/admin/class-wc-admin-webhooks.php:255
9148
- msgid "Webhook updated successfully."
 
 
9149
  msgstr ""
9150
 
9151
- #: includes/admin/class-wc-admin-webhooks.php:259
9152
- msgid "Webhook created successfully."
9153
  msgstr ""
9154
 
9155
- #: includes/admin/class-wc-admin-webhooks.php:295
9156
- #: includes/admin/settings/class-wc-settings-advanced.php:44
9157
- msgid "Webhooks"
9158
  msgstr ""
9159
 
9160
- #: includes/admin/class-wc-admin-webhooks.php:295
9161
- msgid "Add webhook"
9162
  msgstr ""
9163
 
9164
- #: includes/admin/class-wc-admin-webhooks.php:309
9165
- msgid "Search webhooks"
9166
  msgstr ""
9167
 
9168
- #: includes/admin/class-wc-admin-webhooks.php:314
9169
- msgid ""
9170
- "Webhooks are event notifications sent to URLs of your choice. They can be "
9171
- "used to integrate with third-party services which support them."
9172
  msgstr ""
9173
 
9174
- #: includes/admin/class-wc-admin-webhooks.php:315
9175
- msgid "Create a new webhook"
9176
  msgstr ""
9177
 
9178
- #: includes/admin/class-wc-admin.php:199
9179
- msgid "HTML email template"
9180
  msgstr ""
9181
 
9182
- #: includes/admin/class-wc-admin.php:241
9183
- #. translators: 1: WooCommerce 2:: five stars
9184
- msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
9185
  msgstr ""
9186
 
9187
- #: includes/admin/class-wc-admin.php:243
9188
- msgid "Thanks :)"
9189
  msgstr ""
9190
 
9191
- #: includes/admin/class-wc-admin.php:252
9192
- msgid "Thank you for selling with WooCommerce."
9193
  msgstr ""
9194
 
9195
- #: includes/admin/helper/class-wc-helper-compat.php:159
9196
- msgid ""
9197
- "The WooCommerce Helper plugin is no longer needed. <a href=\"%s\">Manage "
9198
- "subscriptions</a> from the extensions tab instead."
9199
  msgstr ""
9200
 
9201
- #: includes/admin/helper/class-wc-helper-compat.php:180
9202
- msgid "WooCommerce Helper"
9203
  msgstr ""
9204
 
9205
- #: includes/admin/helper/class-wc-helper.php:179
9206
- #: includes/admin/helper/class-wc-helper.php:199
9207
- #. translators: %s: version number
9208
- msgid "Version %s is <strong>available</strong>."
9209
  msgstr ""
9210
 
9211
- #: includes/admin/helper/class-wc-helper.php:188
9212
- msgid ""
9213
- "To enable this update you need to <strong>activate</strong> this "
9214
- "subscription."
9215
  msgstr ""
9216
 
9217
- #: includes/admin/helper/class-wc-helper.php:204
9218
- msgid ""
9219
- "To enable this update you need to <strong>purchase</strong> a new "
9220
- "subscription."
9221
  msgstr ""
9222
 
9223
- #: includes/admin/helper/class-wc-helper.php:205
9224
- #: includes/admin/helper/class-wc-helper.php:290
9225
- #: includes/admin/helper/class-wc-helper.php:301
9226
- msgid "Purchase"
9227
  msgstr ""
9228
 
9229
- #: includes/admin/helper/class-wc-helper.php:211
9230
- msgid ""
9231
- "This subscription has expired. Contact the owner to <strong>renew</strong> "
9232
- "the subscription to receive updates and support."
9233
  msgstr ""
9234
 
9235
- #: includes/admin/helper/class-wc-helper.php:219
9236
- msgid ""
9237
- "This subscription has expired. Please <strong>renew</strong> to receive "
9238
- "updates and support."
9239
  msgstr ""
9240
 
9241
- #: includes/admin/helper/class-wc-helper.php:220
9242
- #: includes/admin/helper/class-wc-helper.php:243
9243
- msgid "Renew"
9244
  msgstr ""
9245
 
9246
- #: includes/admin/helper/class-wc-helper.php:231
9247
- msgid "Subscription is <strong>expiring</strong> soon."
9248
  msgstr ""
9249
 
9250
- #: includes/admin/helper/class-wc-helper.php:232
9251
- msgid "Enable auto-renew"
 
 
9252
  msgstr ""
9253
 
9254
- #: includes/admin/helper/class-wc-helper.php:242
9255
- msgid ""
9256
- "This subscription is expiring soon. Please <strong>renew</strong> to "
9257
- "continue receiving updates and support."
9258
  msgstr ""
9259
 
9260
- #: includes/admin/helper/class-wc-helper.php:289
9261
- msgid ""
9262
- "Version %s is <strong>available</strong>. To enable this update you need to "
9263
- "<strong>purchase</strong> a new subscription."
9264
  msgstr ""
9265
 
9266
- #: includes/admin/helper/class-wc-helper.php:300
9267
- #. translators: 1: subscriptions docs 2: subscriptions docs
9268
- msgid ""
9269
- "To receive updates and support for this extension, you need to "
9270
- "<strong>purchase</strong> a new subscription or consolidate your extensions "
9271
- "to one connected account by <strong><a href=\"%1$s\" title=\"Sharing "
9272
- "Docs\">sharing</a> or <a href=\"%2$s\" title=\"Transferring "
9273
- "Docs\">transferring</a></strong> this extension to this connected account."
9274
  msgstr ""
9275
 
9276
- #: includes/admin/helper/class-wc-helper.php:339
9277
- #: includes/admin/reports/class-wc-report-sales-by-category.php:232
9278
- msgid "All"
9279
  msgstr ""
9280
 
9281
- #: includes/admin/helper/class-wc-helper.php:340
9282
- #: includes/admin/helper/views/html-main.php:112
9283
- #: includes/admin/helper/views/html-main.php:115
9284
- #: includes/wc-webhook-functions.php:87
9285
- msgid "Active"
9286
  msgstr ""
9287
 
9288
- #: includes/admin/helper/class-wc-helper.php:341
9289
- #: includes/admin/helper/views/html-main.php:122
9290
- #: includes/admin/helper/views/html-main.php:125
9291
- #: includes/admin/helper/views/html-main.php:132
9292
- #: includes/admin/helper/views/html-main.php:135
9293
- #: includes/admin/helper/views/html-main.php:186
9294
- #: includes/admin/helper/views/html-main.php:189
9295
- msgid "Inactive"
9296
  msgstr ""
9297
 
9298
- #: includes/admin/helper/class-wc-helper.php:343
9299
- msgid "Update Available"
9300
  msgstr ""
9301
 
9302
- #: includes/admin/helper/class-wc-helper.php:344
9303
- msgid "Expiring Soon"
9304
  msgstr ""
9305
 
9306
- #: includes/admin/helper/class-wc-helper.php:345
9307
- msgid "Expired"
9308
  msgstr ""
9309
 
9310
- #: includes/admin/helper/class-wc-helper.php:346
9311
- #: includes/admin/helper/views/html-main.php:109
9312
- #: includes/class-wc-emails.php:404
9313
- #: includes/legacy/abstract-wc-legacy-order.php:507
9314
- #: includes/wc-account-functions.php:214
9315
- #: includes/wc-template-functions.php:3066
9316
- msgid "Download"
9317
  msgstr ""
9318
 
9319
- #: includes/admin/helper/class-wc-helper.php:473
9320
- #. translators: %s: product name
9321
- msgid "%s activated successfully. You will now receive updates for this product."
9322
  msgstr ""
9323
 
9324
- #: includes/admin/helper/class-wc-helper.php:485
9325
- #. translators: %s: product name
9326
- msgid "An error has occurred when activating %s. Please try again later."
9327
  msgstr ""
9328
 
9329
- #: includes/admin/helper/class-wc-helper.php:497
9330
- #. translators: %s: product name
9331
- msgid ""
9332
- "Subscription for %s deactivated successfully. You will no longer receive "
9333
- "updates for this product."
9334
  msgstr ""
9335
 
9336
- #: includes/admin/helper/class-wc-helper.php:515
9337
- #. translators: %1$s: product name, %2$s: deactivate url
9338
- msgid ""
9339
- "Subscription for %1$s deactivated successfully. You will no longer receive "
9340
- "updates for this product. <a href=\"%2$s\">Click here</a> if you wish to "
9341
- "deactivate the plugin as well."
9342
  msgstr ""
9343
 
9344
- #: includes/admin/helper/class-wc-helper.php:532
9345
- #. translators: %s: product name
9346
- msgid ""
9347
- "An error has occurred when deactivating the subscription for %s. Please try "
9348
- "again later."
9349
  msgstr ""
9350
 
9351
- #: includes/admin/helper/class-wc-helper.php:544
9352
- #. translators: %s: product name
9353
- msgid "The extension %s has been deactivated successfully."
 
 
9354
  msgstr ""
9355
 
9356
- #: includes/admin/helper/class-wc-helper.php:556
9357
- #. translators: %1$s: product name, %2$s: plugins screen url
9358
- msgid ""
9359
- "An error has occurred when deactivating the extension %1$s. Please proceed "
9360
- "to the <a href=\"%2$s\">Plugins screen</a> to deactivate it manually."
9361
  msgstr ""
9362
 
9363
- #: includes/admin/helper/class-wc-helper.php:564
9364
- msgid "You have successfully connected your store to WooCommerce.com"
9365
  msgstr ""
9366
 
9367
- #: includes/admin/helper/class-wc-helper.php:571
9368
- msgid "You have successfully disconnected your store from WooCommerce.com"
9369
  msgstr ""
9370
 
9371
- #: includes/admin/helper/class-wc-helper.php:578
9372
- msgid "Authentication and subscription caches refreshed successfully."
9373
  msgstr ""
9374
 
9375
- #: includes/admin/helper/class-wc-helper.php:1364
9376
- #. translators: %s: helper screen url
9377
- msgid ""
9378
- "<a href=\"%s\">Connect your store</a> to WooCommerce.com to receive "
9379
- "extensions updates and support."
9380
  msgstr ""
9381
 
9382
- #: includes/admin/helper/class-wc-helper.php:1397
9383
- #. translators: %1$s: helper url, %2$d: number of extensions
9384
- msgid ""
9385
- "Note: You currently have <a href=\"%1$s\">%2$d paid extension</a> which "
9386
- "should be updated first before updating WooCommerce."
9387
- msgid_plural ""
9388
- "Note: You currently have <a href=\"%1$s\">%2$d paid extensions</a> which "
9389
- "should be updated first before updating WooCommerce."
9390
- msgstr[0] ""
9391
- msgstr[1] ""
9392
 
9393
- #: includes/admin/helper/views/html-helper-compat.php:4
9394
- msgid "Looking for the WooCommerce Helper?"
9395
  msgstr ""
9396
 
9397
- #: includes/admin/helper/views/html-helper-compat.php:5
9398
- msgid ""
9399
- "We've made things simpler and easier to manage moving forward. From now on "
9400
- "you can manage all your WooCommerce purchases directly from the Extensions "
9401
- "menu within the WooCommerce plugin itself. <a href=\"%s\">View and "
9402
- "manage</a> your extensions now."
9403
  msgstr ""
9404
 
9405
- #: includes/admin/helper/views/html-main.php:5
9406
- #: includes/admin/helper/views/html-oauth-start.php:14
9407
- #: includes/admin/views/html-admin-page-addons.php:24
9408
- msgid "WooCommerce Extensions"
9409
  msgstr ""
9410
 
9411
- #: includes/admin/helper/views/html-main.php:10
9412
- msgid "Subscriptions"
9413
  msgstr ""
9414
 
9415
- #: includes/admin/helper/views/html-main.php:12
9416
- msgid ""
9417
- "Below is a list of extensions available on your WooCommerce.com account. To "
9418
- "receive extension updates please make sure the extension is installed, and "
9419
- "its subscription activated and connected to your WooCommerce.com account. "
9420
- "Extensions can be activated from the <a href=\"%s\">Plugins</a> screen."
9421
  msgstr ""
9422
 
9423
- #: includes/admin/helper/views/html-main.php:16
9424
- msgid "Sort by:"
9425
  msgstr ""
9426
 
9427
- #: includes/admin/helper/views/html-main.php:58
9428
- msgid "Lifetime Subscription"
9429
  msgstr ""
9430
 
9431
- #: includes/admin/helper/views/html-main.php:62
9432
- msgid "Expired :("
9433
  msgstr ""
9434
 
9435
- #: includes/admin/helper/views/html-main.php:67
9436
- msgid "Auto renews on:"
9437
  msgstr ""
9438
 
9439
- #: includes/admin/helper/views/html-main.php:72
9440
- msgid "Expiring soon!"
9441
  msgstr ""
9442
 
9443
- #: includes/admin/helper/views/html-main.php:77
9444
- msgid "Expires on:"
9445
  msgstr ""
9446
 
9447
- #: includes/admin/helper/views/html-main.php:87
9448
- #. translators: %1$d: sites active, %2$d max sites active
9449
- msgid "Subscription: Not available - %1$d of %2$d already in use"
9450
  msgstr ""
9451
 
9452
- #: includes/admin/helper/views/html-main.php:90
9453
- #. translators: %1$d: sites active, %2$d max sites active
9454
- msgid "Subscription: Using %1$d of %2$d sites available"
9455
  msgstr ""
9456
 
9457
- #: includes/admin/helper/views/html-main.php:92
9458
- msgid "Subscription: Unlimited"
9459
  msgstr ""
9460
 
9461
- #: includes/admin/helper/views/html-main.php:97
9462
- #: includes/admin/helper/views/html-main.php:99
9463
- msgid "Shared by %s"
9464
  msgstr ""
9465
 
9466
- #: includes/admin/helper/views/html-main.php:107
9467
- msgid "Upgrade"
9468
  msgstr ""
9469
 
9470
- #: includes/admin/helper/views/html-main.php:162
9471
- msgid "Could not find any subscriptions on your WooCommerce.com account"
9472
  msgstr ""
9473
 
9474
- #: includes/admin/helper/views/html-main.php:169
9475
- msgid "Installed Extensions without a Subscription"
9476
  msgstr ""
9477
 
9478
- #: includes/admin/helper/views/html-oauth-start.php:22
9479
- msgid ""
9480
- "<strong>Sorry to see you go</strong>. Feel free to reconnect again using "
9481
- "the button below."
9482
  msgstr ""
9483
 
9484
- #: includes/admin/helper/views/html-oauth-start.php:25
9485
- msgid ""
9486
- "Manage your subscriptions, get important product notifications, and "
9487
- "updates, all from the convenience of your WooCommerce dashboard"
 
 
9488
  msgstr ""
9489
 
9490
- #: includes/admin/helper/views/html-oauth-start.php:26
9491
- msgid "Once connected, your WooCommerce.com purchases will be listed here."
9492
  msgstr ""
9493
 
9494
- #: includes/admin/helper/views/html-oauth-start.php:27
9495
- msgid "Connect"
9496
  msgstr ""
9497
 
9498
- #: includes/admin/helper/views/html-section-account.php:6
9499
- msgid "Connected to WooCommerce.com"
9500
  msgstr ""
9501
 
9502
- #: includes/admin/helper/views/html-section-account.php:11
9503
- msgid "My Subscriptions"
9504
  msgstr ""
9505
 
9506
- #: includes/admin/helper/views/html-section-account.php:12
9507
- msgid "Disconnect"
9508
  msgstr ""
9509
 
9510
- #: includes/admin/helper/views/html-section-nav.php:4
9511
- #: includes/admin/views/html-admin-page-addons.php:15
9512
- msgid "Browse Extensions"
9513
  msgstr ""
9514
 
9515
- #: includes/admin/helper/views/html-section-nav.php:8
9516
- #: includes/admin/views/html-admin-page-addons.php:19
9517
- msgid "WooCommerce.com Subscriptions %s"
9518
  msgstr ""
9519
 
9520
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:92
9521
- msgid "Upload CSV file"
9522
  msgstr ""
9523
 
9524
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:97
9525
- msgid "Column mapping"
9526
  msgstr ""
9527
 
9528
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:107
9529
- msgid "Done!"
9530
  msgstr ""
9531
 
9532
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:286
9533
- msgid ""
9534
- "File is empty. Please upload something more substantial. This error could "
9535
- "also be caused by uploads being disabled in your php.ini or by "
9536
- "post_max_size being defined as smaller than upload_max_filesize in php.ini."
9537
  msgstr ""
9538
 
9539
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:291
9540
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:328
9541
- msgid "Invalid file type. The importer supports CSV and TXT file formats."
9542
- msgstr ""
9543
-
9544
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:335
9545
- msgid "Please upload or provide the link to a valid CSV file."
9546
- msgstr ""
9547
-
9548
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:354
9549
- msgid ""
9550
- "The file is empty or using a different encoding than UTF-8, please try "
9551
- "again with a new file."
9552
  msgstr ""
9553
 
9554
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:358
9555
- msgid "Upload a new file"
9556
  msgstr ""
9557
 
9558
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:376
9559
- #: includes/admin/importers/class-wc-tax-rate-importer.php:130
9560
- msgid "The file does not exist, please try again."
9561
  msgstr ""
9562
 
9563
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:462
9564
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:620
9565
- #: includes/export/class-wc-product-csv-exporter.php:82
9566
- msgid "ID"
9567
  msgstr ""
9568
 
9569
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:464
9570
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:622
9571
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:110
9572
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:15
9573
- #: includes/admin/meta-boxes/views/html-variation-admin.php:67
9574
- #: includes/admin/views/html-quick-edit-product.php:21
9575
- #: includes/export/class-wc-product-csv-exporter.php:84
9576
- msgid "SKU"
9577
  msgstr ""
9578
 
9579
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:466
9580
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:624
9581
- #: includes/export/class-wc-product-csv-exporter.php:86
9582
- msgid "Published"
9583
  msgstr ""
9584
 
9585
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:467
9586
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:625
9587
- #: includes/export/class-wc-product-csv-exporter.php:87
9588
- msgid "Is featured?"
9589
  msgstr ""
9590
 
9591
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:468
9592
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:626
9593
- #: includes/export/class-wc-product-csv-exporter.php:88
9594
- msgid "Visibility in catalog"
9595
  msgstr ""
9596
 
9597
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:469
9598
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:627
9599
- #: includes/export/class-wc-product-csv-exporter.php:89
9600
- msgid "Short description"
9601
  msgstr ""
9602
 
9603
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:471
9604
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:634
9605
- #: includes/export/class-wc-product-csv-exporter.php:91
9606
- msgid "Date sale price starts"
9607
  msgstr ""
9608
 
9609
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:472
9610
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:635
9611
- #: includes/export/class-wc-product-csv-exporter.php:92
9612
- msgid "Date sale price ends"
9613
  msgstr ""
9614
 
9615
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:473
9616
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:638
9617
- #: includes/admin/meta-boxes/views/html-product-data-general.php:151
9618
- #: includes/admin/views/html-bulk-edit-product.php:70
9619
- #: includes/admin/views/html-quick-edit-product.php:49
9620
- #: includes/export/class-wc-product-csv-exporter.php:93
9621
- #: includes/shipping/flat-rate/includes/settings-flat-rate.php:21
9622
- #: includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:53
9623
- #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87
9624
- msgid "Tax status"
9625
  msgstr ""
9626
 
9627
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:474
9628
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:639
9629
- #: includes/admin/meta-boxes/views/html-order-items.php:355
9630
- #: includes/admin/meta-boxes/views/html-product-data-general.php:166
9631
- #: includes/admin/meta-boxes/views/html-variation-admin.php:313
9632
- #: includes/admin/settings/class-wc-settings-tax.php:202
9633
- #: includes/admin/views/html-bulk-edit-product.php:89
9634
- #: includes/admin/views/html-quick-edit-product.php:67
9635
- #: includes/export/class-wc-product-csv-exporter.php:94
9636
- msgid "Tax class"
9637
  msgstr ""
9638
 
9639
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:475
9640
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:640
9641
- #: includes/admin/views/html-bulk-edit-product.php:218
9642
- #: includes/admin/views/html-quick-edit-product.php:173
9643
- #: includes/export/class-wc-product-csv-exporter.php:95
9644
- msgid "In stock?"
9645
  msgstr ""
9646
 
9647
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:477
9648
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:642
9649
- #: includes/export/class-wc-product-csv-exporter.php:97
9650
- msgid "Backorders allowed?"
9651
  msgstr ""
9652
 
9653
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:478
9654
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:643
9655
- #: includes/admin/views/html-bulk-edit-product.php:291
9656
- #: includes/export/class-wc-product-csv-exporter.php:98
9657
- msgid "Sold individually?"
9658
  msgstr ""
9659
 
9660
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:480
9661
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:645
9662
- #: includes/admin/meta-boxes/views/html-variation-admin.php:230
9663
- #: includes/export/class-wc-product-csv-exporter.php:100
9664
- #. translators: %s: Weight unit
9665
- #. translators: %s: weight unit
9666
- #. translators: %s: weight unit
9667
- #. translators: %s: weight
9668
- msgid "Weight (%s)"
9669
  msgstr ""
9670
 
9671
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:482
9672
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:650
9673
- #: includes/admin/views/html-bulk-edit-product.php:158
9674
- #: includes/export/class-wc-product-csv-exporter.php:102
9675
- #. translators: %s: Length unit
9676
- #. translators: %s: dimension unit
9677
- #. translators: %s: length
9678
- msgid "Length (%s)"
9679
  msgstr ""
9680
 
9681
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:484
9682
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:652
9683
- #: includes/admin/views/html-bulk-edit-product.php:159
9684
- #: includes/export/class-wc-product-csv-exporter.php:104
9685
- #. translators: %s: Width unit
9686
- #. translators: %s: dimension unit
9687
- #. translators: %s: width
9688
- msgid "Width (%s)"
9689
  msgstr ""
9690
 
9691
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:486
9692
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:654
9693
- #: includes/admin/views/html-bulk-edit-product.php:160
9694
- #: includes/export/class-wc-product-csv-exporter.php:106
9695
- #. translators: %s: Height unit
9696
- #. translators: %s: dimension unit
9697
- #. translators: %s: Height
9698
- msgid "Height (%s)"
9699
  msgstr ""
9700
 
9701
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:487
9702
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:691
9703
- #: includes/export/class-wc-product-csv-exporter.php:107
9704
- msgid "Allow customer reviews?"
9705
  msgstr ""
9706
 
9707
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:488
9708
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:692
9709
- #: includes/admin/meta-boxes/views/html-product-data-advanced.php:14
9710
- #: includes/export/class-wc-product-csv-exporter.php:108
9711
- msgid "Purchase note"
9712
  msgstr ""
9713
 
9714
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:489
9715
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:633
9716
- #: includes/admin/meta-boxes/views/html-product-data-general.php:48
9717
- #: includes/admin/views/html-quick-edit-product.php:41
9718
- #: includes/export/class-wc-product-csv-exporter.php:109
9719
- msgid "Sale price"
9720
  msgstr ""
9721
 
9722
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:490
9723
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:632
9724
- #: includes/admin/meta-boxes/views/html-product-data-general.php:38
9725
- #: includes/admin/views/html-quick-edit-product.php:34
9726
- #: includes/export/class-wc-product-csv-exporter.php:110
9727
- msgid "Regular price"
9728
  msgstr ""
9729
 
9730
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:491
9731
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:657
9732
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:118
9733
- #: includes/admin/reports/class-wc-report-sales-by-category.php:201
9734
- #: includes/class-wc-post-types.php:86
9735
- #: includes/export/class-wc-product-csv-exporter.php:111
9736
- msgid "Categories"
9737
  msgstr ""
9738
 
9739
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:492
9740
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:658
9741
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:119
9742
- #: includes/export/class-wc-product-csv-exporter.php:112
9743
- msgid "Tags"
9744
  msgstr ""
9745
 
9746
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:493
9747
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:659
9748
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:56
9749
- #: includes/admin/meta-boxes/views/html-variation-admin.php:291
9750
- #: includes/admin/settings/class-wc-settings-shipping.php:359
9751
- #: includes/admin/views/html-bulk-edit-product.php:166
9752
- #: includes/admin/views/html-quick-edit-product.php:123
9753
- #: includes/class-wc-post-types.php:168
9754
- #: includes/export/class-wc-product-csv-exporter.php:113
9755
- msgid "Shipping class"
9756
  msgstr ""
9757
 
9758
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:494
9759
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:660
9760
- #: includes/export/class-wc-product-csv-exporter.php:114
9761
- msgid "Images"
9762
  msgstr ""
9763
 
9764
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:495
9765
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:677
9766
- #: includes/admin/meta-boxes/views/html-product-data-general.php:114
9767
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:86
9768
- #: includes/admin/meta-boxes/views/html-variation-admin.php:397
9769
- #: includes/export/class-wc-product-csv-exporter.php:115
9770
- msgid "Download limit"
9771
  msgstr ""
9772
 
9773
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:496
9774
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:678
9775
- #: includes/export/class-wc-product-csv-exporter.php:116
9776
- msgid "Download expiry days"
9777
  msgstr ""
9778
 
9779
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:497
9780
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:661
9781
- #: includes/admin/reports/class-wc-report-stock.php:174
9782
- #: includes/export/class-wc-product-csv-exporter.php:117
9783
- msgid "Parent"
9784
  msgstr ""
9785
 
9786
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:498
9787
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:662
9788
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:32
9789
- #: includes/export/class-wc-product-csv-exporter.php:119
9790
- msgid "Upsells"
9791
  msgstr ""
9792
 
9793
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:499
9794
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:663
9795
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:48
9796
- #: includes/export/class-wc-product-csv-exporter.php:120
9797
- msgid "Cross-sells"
9798
  msgstr ""
9799
 
9800
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:500
9801
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:664
9802
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:14
9803
- #: includes/export/class-wc-product-csv-exporter.php:118
9804
- msgid "Grouped products"
9805
  msgstr ""
9806
 
9807
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:501
9808
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:668
9809
- #: includes/export/class-wc-product-csv-exporter.php:121
9810
- msgid "External URL"
9811
  msgstr ""
9812
 
9813
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:502
9814
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:669
9815
- #: includes/admin/meta-boxes/views/html-product-data-general.php:24
9816
- #: includes/export/class-wc-product-csv-exporter.php:122
9817
- msgid "Button text"
9818
  msgstr ""
9819
 
9820
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:503
9821
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:694
9822
- #: includes/export/class-wc-product-csv-exporter.php:123
9823
- msgid "Position"
9824
  msgstr ""
9825
 
9826
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:514
9827
- #: includes/export/class-wc-product-csv-exporter.php:510
9828
- #. translators: %d: Attribute number
9829
- #. translators: %s: attribute number
9830
- msgid "Attribute %d name"
9831
  msgstr ""
9832
 
9833
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:516
9834
- #: includes/export/class-wc-product-csv-exporter.php:512
9835
- #. translators: %d: Attribute number
9836
- #. translators: %s: attribute number
9837
- msgid "Attribute %d value(s)"
9838
- msgstr ""
 
9839
 
9840
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:518
9841
- #: includes/export/class-wc-product-csv-exporter.php:514
9842
- #. translators: %d: Attribute number
9843
- #. translators: %s: attribute number
9844
- msgid "Attribute %d visible"
9845
- msgstr ""
 
9846
 
9847
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:520
9848
- #: includes/export/class-wc-product-csv-exporter.php:516
9849
- #. translators: %d: Attribute number
9850
- #. translators: %s: attribute number
9851
- msgid "Attribute %d global"
9852
- msgstr ""
 
9853
 
9854
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:522
9855
- #: includes/export/class-wc-product-csv-exporter.php:554
9856
- #. translators: %d: Attribute number
9857
- #. translators: %s: attribute number
9858
- msgid "Attribute %d default"
9859
- msgstr ""
 
9860
 
9861
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:524
9862
- #: includes/export/class-wc-product-csv-exporter.php:483
9863
- #. translators: %d: Download number
9864
- #. translators: %s: download number
9865
- msgid "Download %d name"
9866
  msgstr ""
9867
 
9868
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:526
9869
- #: includes/export/class-wc-product-csv-exporter.php:485
9870
- #. translators: %d: Download number
9871
- #. translators: %s: download number
9872
- msgid "Download %d URL"
9873
  msgstr ""
9874
 
9875
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:528
9876
- #: includes/export/class-wc-product-csv-exporter.php:599
9877
- #. translators: %d: Meta number
9878
- #. translators: %s: meta data name
9879
- msgid "Meta: %s"
9880
  msgstr ""
9881
 
9882
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:630
9883
- #: includes/admin/importers/mappings/generic.php:23
9884
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:117
9885
- #: includes/admin/views/html-bulk-edit-product.php:21
9886
- #: includes/admin/views/html-quick-edit-product.php:32
9887
- #: includes/widgets/class-wc-widget-products.php:54 templates/cart/cart.php:33
9888
- #: templates/cart/cart.php:94 templates/emails/email-order-details.php:46
9889
- msgid "Price"
9890
  msgstr ""
9891
 
9892
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:647
9893
- #: templates/single-product/product-attributes.php:35
9894
- msgid "Dimensions"
9895
  msgstr ""
9896
 
9897
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:666
9898
- msgid "External product"
9899
  msgstr ""
9900
 
9901
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:673
9902
- #: includes/admin/settings/class-wc-settings-advanced.php:240
9903
- #: includes/admin/views/html-admin-page-product-export.php:40
9904
- #: includes/class-wc-query.php:118 includes/wc-account-functions.php:100
9905
- #: templates/emails/email-downloads.php:22
9906
- #: templates/emails/plain/email-downloads.php:20
9907
- #: templates/order/order-downloads.php:25
9908
- msgid "Downloads"
9909
  msgstr ""
9910
 
9911
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:675
9912
- msgid "Download name"
9913
  msgstr ""
9914
 
9915
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:676
9916
- msgid "Download URL"
9917
  msgstr ""
9918
 
9919
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:684
9920
- msgid "Attribute name"
9921
  msgstr ""
9922
 
9923
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:685
9924
- msgid "Attribute value(s)"
9925
  msgstr ""
9926
 
9927
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:686
9928
- msgid "Is a global attribute?"
9929
  msgstr ""
9930
 
9931
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:687
9932
- msgid "Attribute visibility"
 
 
 
 
 
9933
  msgstr ""
9934
 
9935
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:688
9936
- msgid "Default attribute"
9937
  msgstr ""
9938
 
9939
- #: includes/admin/importers/class-wc-product-csv-importer-controller.php:693
9940
- msgid "Import as meta"
9941
  msgstr ""
9942
 
9943
- #: includes/admin/importers/class-wc-tax-rate-importer.php:167
9944
- msgid "The CSV is invalid."
9945
  msgstr ""
9946
 
9947
- #: includes/admin/importers/class-wc-tax-rate-importer.php:177
9948
- #. translators: %s: tax rates count
9949
- msgid "Import complete - imported %s tax rates."
 
9950
  msgstr ""
9951
 
9952
- #: includes/admin/importers/class-wc-tax-rate-importer.php:189
9953
- msgid "All done!"
9954
  msgstr ""
9955
 
9956
- #: includes/admin/importers/class-wc-tax-rate-importer.php:189
9957
- msgid "View tax rates"
9958
  msgstr ""
9959
 
9960
- #: includes/admin/importers/class-wc-tax-rate-importer.php:227
9961
- msgid "Import tax rates"
9962
  msgstr ""
9963
 
9964
- #: includes/admin/importers/class-wc-tax-rate-importer.php:243
9965
- msgid ""
9966
- "Hi there! Upload a CSV file containing tax rates to import the contents "
9967
- "into your shop. Choose a .csv file to upload, then click \"Upload file and "
9968
- "import\"."
9969
  msgstr ""
9970
 
9971
- #: includes/admin/importers/class-wc-tax-rate-importer.php:246
9972
- #. translators: 1: Link to tax rates sample file
9973
- msgid ""
9974
- "Tax rates need to be defined with columns in a specific order (10 columns). "
9975
- "<a href=\"%s\">Click here to download a sample</a>."
9976
  msgstr ""
9977
 
9978
- #: includes/admin/importers/class-wc-tax-rate-importer.php:256
9979
- #: includes/admin/importers/views/html-product-csv-import-form.php:31
9980
- msgid ""
9981
- "Before you can upload your import file, you will need to fix the following "
9982
- "error:"
9983
  msgstr ""
9984
 
9985
- #: includes/admin/importers/class-wc-tax-rate-importer.php:265
9986
- msgid "Choose a file from your computer:"
 
 
 
 
 
 
 
 
 
9987
  msgstr ""
9988
 
9989
- #: includes/admin/importers/class-wc-tax-rate-importer.php:275
9990
- #: includes/admin/importers/views/html-product-csv-import-form.php:45
9991
- #. translators: %s: maximum upload size
9992
- msgid "Maximum size: %s"
9993
  msgstr ""
9994
 
9995
- #: includes/admin/importers/class-wc-tax-rate-importer.php:284
9996
- msgid "OR enter path to file:"
9997
  msgstr ""
9998
 
9999
- #: includes/admin/importers/class-wc-tax-rate-importer.php:291
10000
- msgid "Delimiter"
10001
  msgstr ""
10002
 
10003
- #: includes/admin/importers/class-wc-tax-rate-importer.php:297
10004
- msgid "Upload file and import"
10005
  msgstr ""
10006
 
10007
- #: includes/admin/importers/class-wc-tax-rate-importer.php:312
10008
- msgid "Sorry, there has been an error."
10009
  msgstr ""
10010
 
10011
- #: includes/admin/importers/mappings/generic.php:21
10012
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:84
10013
- #: includes/gateways/bacs/class-wc-gateway-bacs.php:88
10014
- #: includes/gateways/cheque/class-wc-gateway-cheque.php:64
10015
- #: includes/gateways/cod/class-wc-gateway-cod.php:110
10016
- #: includes/gateways/paypal/includes/settings-paypal.php:18
10017
- #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:197
10018
- #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:79
10019
- #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:123
10020
- #: includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:102
10021
- #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80
10022
- #: includes/widgets/class-wc-widget-cart.php:30
10023
- #: includes/widgets/class-wc-widget-layered-nav-filters.php:28
10024
- #: includes/widgets/class-wc-widget-layered-nav.php:73
10025
- #: includes/widgets/class-wc-widget-price-filter.php:30
10026
- #: includes/widgets/class-wc-widget-product-categories.php:44
10027
- #: includes/widgets/class-wc-widget-product-search.php:28
10028
- #: includes/widgets/class-wc-widget-product-tag-cloud.php:30
10029
- #: includes/widgets/class-wc-widget-products.php:28
10030
- #: includes/widgets/class-wc-widget-rating-filter.php:28
10031
- #: includes/widgets/class-wc-widget-recent-reviews.php:28
10032
- #: includes/widgets/class-wc-widget-recently-viewed.php:28
10033
- #: includes/widgets/class-wc-widget-top-rated-products.php:29
10034
- msgid "Title"
10035
  msgstr ""
10036
 
10037
- #: includes/admin/importers/mappings/generic.php:22
10038
- msgid "Product Title"
10039
  msgstr ""
10040
 
10041
- #: includes/admin/importers/mappings/generic.php:24
10042
- msgid "Parent SKU"
10043
  msgstr ""
10044
 
10045
- #: includes/admin/importers/mappings/generic.php:25
10046
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:438
10047
- #: templates/cart/cart.php:34 templates/cart/cart.php:100
10048
- #: templates/emails/email-order-details.php:45
10049
- #: templates/global/quantity-input.php:31
10050
- msgid "Quantity"
10051
  msgstr ""
10052
 
10053
- #: includes/admin/importers/mappings/generic.php:26
10054
- #: includes/admin/meta-boxes/views/html-product-data-advanced.php:28
10055
- msgid "Menu order"
10056
  msgstr ""
10057
 
10058
- #: includes/admin/importers/views/html-csv-import-done.php:20
10059
- #. translators: %d: products count
10060
- msgid "%s product imported"
10061
- msgid_plural "%s products imported"
10062
- msgstr[0] ""
10063
- msgstr[1] ""
10064
 
10065
- #: includes/admin/importers/views/html-csv-import-done.php:28
10066
- #. translators: %d: products count
10067
- msgid "%s product updated"
10068
- msgid_plural "%s products updated"
10069
- msgstr[0] ""
10070
- msgstr[1] ""
10071
 
10072
- #: includes/admin/importers/views/html-csv-import-done.php:36
10073
- #. translators: %d: products count
10074
- msgid "%s product was skipped"
10075
- msgid_plural "%s products were skipped"
10076
- msgstr[0] ""
10077
- msgstr[1] ""
10078
 
10079
- #: includes/admin/importers/views/html-csv-import-done.php:44
10080
- #. translators: %d: products count
10081
- msgid "Failed to import %s product"
10082
- msgid_plural "Failed to import %s products"
10083
- msgstr[0] ""
10084
- msgstr[1] ""
10085
 
10086
- #: includes/admin/importers/views/html-csv-import-done.php:50
10087
- msgid "View import log"
10088
  msgstr ""
10089
 
10090
- #: includes/admin/importers/views/html-csv-import-done.php:54
10091
- #. translators: %d: import results
10092
- msgid "Import complete!"
10093
  msgstr ""
10094
 
10095
- #: includes/admin/importers/views/html-csv-import-done.php:61
10096
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:437
10097
- #: includes/admin/reports/class-wc-report-downloads.php:84
10098
- #: includes/admin/reports/class-wc-report-downloads.php:215
10099
- #: includes/admin/reports/class-wc-report-stock.php:173
10100
- #: includes/class-wc-emails.php:402 includes/class-wc-post-types.php:303
10101
- #: includes/class-wc-privacy-exporters.php:317
10102
- #: includes/data-stores/class-wc-product-data-store-cpt.php:105
10103
- #: includes/wc-account-functions.php:211 templates/cart/cart.php:32
10104
- #: templates/cart/cart.php:76 templates/checkout/form-pay.php:27
10105
- #: templates/checkout/review-order.php:26
10106
- #: templates/emails/email-order-details.php:44
10107
- #: templates/order/order-details.php:45
10108
- msgid "Product"
10109
  msgstr ""
10110
 
10111
- #: includes/admin/importers/views/html-csv-import-done.php:62
10112
- msgid "Reason for failure"
10113
  msgstr ""
10114
 
10115
- #: includes/admin/importers/views/html-csv-import-done.php:94
10116
- #: includes/class-wc-auth.php:94 includes/class-wc-post-types.php:312
10117
- #: includes/class-wc-product-grouped.php:42
10118
- msgid "View products"
10119
  msgstr ""
10120
 
10121
- #: includes/admin/importers/views/html-csv-import-header.php:13
10122
- msgid "Import Products"
10123
  msgstr ""
10124
 
10125
- #: includes/admin/importers/views/html-csv-import-mapping.php:14
10126
- msgid "Map CSV fields to products"
10127
  msgstr ""
10128
 
10129
- #: includes/admin/importers/views/html-csv-import-mapping.php:15
10130
- msgid ""
10131
- "Select fields from your CSV file to map against products fields, or to "
10132
- "ignore during import."
10133
  msgstr ""
10134
 
10135
- #: includes/admin/importers/views/html-csv-import-mapping.php:21
10136
- msgid "Column name"
10137
  msgstr ""
10138
 
10139
- #: includes/admin/importers/views/html-csv-import-mapping.php:22
10140
- msgid "Map to field"
10141
  msgstr ""
10142
 
10143
- #: includes/admin/importers/views/html-csv-import-mapping.php:32
10144
- msgid "Sample:"
10145
  msgstr ""
10146
 
10147
- #: includes/admin/importers/views/html-csv-import-mapping.php:38
10148
- msgid "Do not import"
10149
  msgstr ""
10150
 
10151
- #: includes/admin/importers/views/html-csv-import-mapping.php:59
10152
- msgid "Run the importer"
10153
  msgstr ""
10154
 
10155
- #: includes/admin/importers/views/html-csv-import-progress.php:15
10156
- msgid "Importing"
10157
  msgstr ""
10158
 
10159
- #: includes/admin/importers/views/html-csv-import-progress.php:16
10160
- msgid "Your products are now being imported..."
10161
  msgstr ""
10162
 
10163
- #: includes/admin/importers/views/html-product-csv-import-form.php:14
10164
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:51
10165
- msgid "Import products from a CSV file"
10166
  msgstr ""
10167
 
10168
- #: includes/admin/importers/views/html-product-csv-import-form.php:15
10169
- msgid ""
10170
- "This tool allows you to import (or merge) product data to your store from a "
10171
- "CSV file."
10172
  msgstr ""
10173
 
10174
- #: includes/admin/importers/views/html-product-csv-import-form.php:23
10175
- msgid "Choose a CSV file from your computer:"
10176
  msgstr ""
10177
 
10178
- #: includes/admin/importers/views/html-product-csv-import-form.php:56
10179
- msgid "Update existing products"
10180
  msgstr ""
10181
 
10182
- #: includes/admin/importers/views/html-product-csv-import-form.php:60
10183
- msgid ""
10184
- "Existing products that match by ID or SKU will be updated. Products that do "
10185
- "not exist will be skipped."
10186
  msgstr ""
10187
 
10188
- #: includes/admin/importers/views/html-product-csv-import-form.php:65
10189
- msgid "Alternatively, enter the path to a CSV file on your server:"
 
10190
  msgstr ""
10191
 
10192
- #: includes/admin/importers/views/html-product-csv-import-form.php:74
10193
- msgid "CSV Delimiter"
 
10194
  msgstr ""
10195
 
10196
- #: includes/admin/importers/views/html-product-csv-import-form.php:78
10197
- msgid "Use previous column mapping preferences?"
10198
  msgstr ""
10199
 
10200
- #: includes/admin/importers/views/html-product-csv-import-form.php:100
10201
- msgid "Hide advanced options"
10202
  msgstr ""
10203
 
10204
- #: includes/admin/importers/views/html-product-csv-import-form.php:100
10205
- msgid "Show advanced options"
10206
  msgstr ""
10207
 
10208
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:46
10209
- msgid ""
10210
- "Coupons are a great way to offer discounts and rewards to your customers. "
10211
- "They will appear here once created."
10212
  msgstr ""
10213
 
10214
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:47
10215
- msgid "Create your first coupon"
10216
  msgstr ""
10217
 
10218
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:48
10219
- msgid "Learn more about coupons"
10220
  msgstr ""
10221
 
10222
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:82
10223
- msgid "Code"
10224
  msgstr ""
10225
 
10226
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:83
10227
- msgid "Coupon type"
10228
  msgstr ""
10229
 
10230
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:84
10231
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:90
10232
- #: includes/admin/reports/class-wc-report-sales-by-date.php:726
10233
- msgid "Coupon amount"
10234
  msgstr ""
10235
 
10236
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:86
10237
- msgid "Product IDs"
10238
  msgstr ""
10239
 
10240
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:87
10241
- msgid "Usage / Limit"
10242
  msgstr ""
10243
 
10244
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:88
10245
- msgid "Expiry date"
10246
  msgstr ""
10247
 
10248
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:169
10249
- #. translators: 1: count 2: limit
10250
- msgid "%1$s / %2$s"
10251
  msgstr ""
10252
 
10253
- #: includes/admin/list-tables/class-wc-admin-list-table-coupons.php:201
10254
- msgid "Show all types"
10255
  msgstr ""
10256
 
10257
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:50
10258
- msgid "When you receive a new order, it will appear here."
10259
  msgstr ""
10260
 
10261
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:51
10262
- msgid "Learn more about orders"
10263
  msgstr ""
10264
 
10265
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:115
10266
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:121
10267
- #: includes/admin/reports/class-wc-report-coupon-usage.php:367
10268
- #: includes/admin/reports/class-wc-report-customers.php:235
10269
- #: includes/admin/reports/class-wc-report-sales-by-category.php:274
10270
- #: includes/admin/reports/class-wc-report-sales-by-date.php:604
10271
- #: includes/admin/reports/class-wc-report-sales-by-product.php:406
10272
- #: includes/wc-account-functions.php:191
10273
- #: includes/widgets/class-wc-widget-products.php:53
10274
- #: templates/myaccount/my-orders.php:14
10275
- msgid "Date"
10276
  msgstr ""
10277
 
10278
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:117
10279
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:312
10280
- msgid "Billing"
10281
  msgstr ""
10282
 
10283
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:118
10284
- msgid "Ship to"
10285
  msgstr ""
10286
 
10287
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:120
10288
- #: includes/admin/reports/class-wc-report-customer-list.php:218
10289
- #: includes/admin/reports/class-wc-report-stock.php:177
10290
- #: includes/wc-account-functions.php:194
10291
- msgid "Actions"
10292
  msgstr ""
10293
 
10294
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:138
10295
- msgid "Change status to processing"
 
 
10296
  msgstr ""
10297
 
10298
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:139
10299
- msgid "Change status to on-hold"
10300
  msgstr ""
10301
 
10302
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:140
10303
- msgid "Change status to completed"
10304
  msgstr ""
10305
 
10306
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:141
10307
- msgid "Remove personal data"
10308
  msgstr ""
10309
 
10310
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:179
10311
- msgid "Preview"
10312
  msgstr ""
10313
 
10314
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:207
10315
- #. translators: %d: notes count
10316
- msgid "Plus %d other note"
10317
- msgid_plural "Plus %d other notes"
10318
- msgstr[0] ""
10319
- msgstr[1] ""
10320
 
10321
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:210
10322
- #. translators: %d: notes count
10323
- msgid "%d note"
10324
- msgid_plural "%d notes"
10325
- msgstr[0] ""
10326
- msgstr[1] ""
10327
 
10328
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:235
10329
- msgid "M j, Y"
10330
  msgstr ""
10331
 
10332
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:270
10333
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:543
10334
- msgid "Processing"
10335
  msgstr ""
10336
 
10337
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:278
10338
- msgid "Complete"
10339
  msgstr ""
10340
 
10341
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:341
10342
- #: includes/class-wc-query.php:115
10343
- #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:628
10344
- #: templates/emails/email-order-details.php:36
10345
- #. translators: %s: order ID
10346
- #. translators: %s: order number
10347
- #. translators: %s: Order ID.
10348
- msgid "Order #%s"
10349
  msgstr ""
10350
 
10351
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:343
10352
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:146
10353
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:173
10354
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:97
10355
- msgid "Close modal panel"
10356
  msgstr ""
10357
 
10358
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:351
10359
- #: templates/checkout/form-billing.php:33
10360
- msgid "Billing details"
10361
  msgstr ""
10362
 
10363
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:355
10364
- #: includes/admin/reports/class-wc-report-customer-list.php:213
10365
- #: includes/admin/settings/class-wc-settings-emails.php:263
10366
- #: templates/single-product-reviews.php:79
10367
- msgid "Email"
10368
  msgstr ""
10369
 
10370
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:365
10371
- msgid "Payment via"
10372
  msgstr ""
10373
 
10374
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:371
10375
- #: includes/gateways/paypal/includes/settings-paypal.php:91
10376
- msgid "Shipping details"
10377
  msgstr ""
10378
 
10379
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:379
10380
- #: includes/admin/meta-boxes/views/html-order-shipping.php:23
10381
- msgid "Shipping method"
10382
  msgstr ""
10383
 
10384
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:387
10385
- msgid "Note"
10386
  msgstr ""
10387
 
10388
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:401
10389
- msgid "Edit this order"
10390
  msgstr ""
10391
 
10392
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:439
10393
- #: includes/admin/meta-boxes/views/html-order-items.php:38
10394
- #: includes/admin/meta-boxes/views/html-order-items.php:39
10395
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:155
10396
- #: includes/admin/settings/class-wc-settings-tax.php:29
10397
- #: includes/class-wc-countries.php:403 includes/class-wc-order-item-tax.php:159
10398
- #: includes/class-wc-tax.php:762
10399
- msgid "Tax"
10400
  msgstr ""
10401
 
10402
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:534
10403
- msgid "On-hold"
10404
  msgstr ""
10405
 
10406
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:535
10407
- msgid "Change order status to on-hold"
10408
  msgstr ""
10409
 
10410
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:544
10411
- msgid "Change order status to processing"
 
 
 
10412
  msgstr ""
10413
 
10414
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:552
10415
- msgid "Completed"
 
 
10416
  msgstr ""
10417
 
10418
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:553
10419
- msgid "Change order status to completed"
10420
  msgstr ""
10421
 
10422
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:560
10423
- msgid "Change status: "
10424
  msgstr ""
10425
 
10426
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:606
10427
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:607
10428
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:387
10429
- #: includes/admin/meta-boxes/views/html-order-shipping.php:24
10430
- #: includes/admin/settings/class-wc-settings-accounts.php:169
10431
- #: includes/admin/settings/class-wc-settings-accounts.php:181
10432
- #: includes/admin/settings/class-wc-settings-accounts.php:190
10433
- #: includes/admin/settings/class-wc-settings-accounts.php:199
10434
- #: includes/admin/settings/class-wc-settings-accounts.php:208
10435
- #: includes/admin/settings/class-wc-settings-emails.php:121
10436
- #: includes/admin/settings/class-wc-settings-emails.php:132
10437
- #: includes/admin/settings/views/settings-tax.php:103
10438
- #: includes/shipping/flat-rate/includes/settings-flat-rate.php:59
10439
- #: includes/shipping/flat-rate/includes/settings-flat-rate.php:70
10440
- #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:91
10441
- #: includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:90
10442
- #: includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:99
10443
- #: includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:136
10444
- #: includes/wc-account-functions.php:346
10445
- #: includes/wc-formatting-functions.php:1201
10446
- #: includes/wc-formatting-functions.php:1220
10447
- #: templates/emails/email-addresses.php:31
10448
- #: templates/order/order-details-customer.php:36
10449
- #: templates/order/order-details-customer.php:54
10450
- #: templates/single-product/meta.php:31
10451
- msgid "N/A"
10452
  msgstr ""
10453
 
10454
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:649
10455
- msgid "Order status changed by bulk edit:"
10456
  msgstr ""
10457
 
10458
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:689
10459
- #. translators: %d: orders count
10460
- msgid "%d order status changed."
10461
- msgid_plural "%d order statuses changed."
10462
- msgstr[0] ""
10463
- msgstr[1] ""
10464
 
10465
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:697
10466
- #. translators: %d: orders count
10467
- msgid "Removed personal data from %d order."
10468
- msgid_plural "Removed personal data from %d orders."
10469
- msgstr[0] ""
10470
- msgstr[1] ""
10471
 
10472
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:726
10473
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:296
10474
- #: includes/admin/settings/views/html-keys-edit.php:39
10475
- #: includes/class-wc-ajax.php:1517
10476
- #. translators: 1: user display name 2: user ID 3: user email
10477
- msgid "%1$s (#%2$s &ndash; %3$s)"
10478
  msgstr ""
10479
 
10480
- #: includes/admin/list-tables/class-wc-admin-list-table-orders.php:733
10481
- msgid "Filter by registered customer"
10482
  msgstr ""
10483
 
10484
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:49
10485
- msgid "Ready to start selling something awesome?"
10486
  msgstr ""
10487
 
10488
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:50
10489
- msgid "Create your first product!"
10490
  msgstr ""
10491
 
10492
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:247
10493
- msgid "Toggle featured"
10494
  msgstr ""
10495
 
10496
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:249
10497
- #: includes/admin/settings/class-wc-settings-emails.php:300
10498
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:174
10499
- #: includes/admin/settings/class-wc-settings-shipping.php:261
10500
- #: includes/admin/views/html-bulk-edit-product.php:206
10501
- #: includes/admin/views/html-bulk-edit-product.php:240
10502
- #: includes/admin/views/html-bulk-edit-product.php:297
10503
- msgid "Yes"
10504
  msgstr ""
10505
 
10506
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:251
10507
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:176
10508
- #: includes/admin/settings/class-wc-settings-shipping.php:262
10509
- #: includes/admin/views/html-bulk-edit-product.php:207
10510
- #: includes/admin/views/html-bulk-edit-product.php:241
10511
- #: includes/admin/views/html-bulk-edit-product.php:298
10512
- msgid "No"
10513
  msgstr ""
10514
 
10515
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:261
10516
- #: includes/admin/reports/class-wc-report-stock.php:114
10517
- #: includes/wc-product-functions.php:827
10518
- msgid "On backorder"
10519
  msgstr ""
10520
 
10521
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:263
10522
- #: includes/admin/reports/class-wc-report-stock.php:116
10523
- #: includes/wc-formatting-functions.php:1127
10524
- #: includes/wc-product-functions.php:825
10525
- msgid "In stock"
10526
  msgstr ""
10527
 
10528
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:295
10529
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:302
10530
- msgid "Filter by category"
 
10531
  msgstr ""
10532
 
10533
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:312
10534
- msgid "Filter by product type"
 
 
10535
  msgstr ""
10536
 
10537
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:321
10538
- #: includes/wc-product-functions.php:520
10539
- msgid "Grouped product"
 
10540
  msgstr ""
10541
 
10542
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:324
10543
- #: includes/wc-product-functions.php:521
10544
- msgid "External/Affiliate product"
 
10545
  msgstr ""
10546
 
10547
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:327
10548
- #: includes/wc-product-functions.php:522
10549
- msgid "Variable product"
 
10550
  msgstr ""
10551
 
10552
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:330
10553
- #: includes/wc-product-functions.php:519
10554
- msgid "Simple product"
10555
  msgstr ""
10556
 
10557
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:344
10558
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:70
10559
- #: includes/admin/meta-boxes/views/html-variation-admin.php:81
10560
- msgid "Downloadable"
10561
  msgstr ""
10562
 
10563
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:348
10564
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:63
10565
- #: includes/admin/meta-boxes/views/html-variation-admin.php:85
10566
- msgid "Virtual"
10567
  msgstr ""
10568
 
10569
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:356
10570
- msgid "Filter by stock status"
10571
  msgstr ""
10572
 
10573
- #: includes/admin/list-tables/class-wc-admin-list-table-products.php:464
10574
- msgid "Sorting"
10575
  msgstr ""
10576
 
10577
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:47
10578
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:230
10579
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:87
10580
- #: includes/admin/settings/class-wc-settings-general.php:24
10581
- #: includes/admin/settings/class-wc-settings-products.php:41
10582
- msgid "General"
10583
  msgstr ""
10584
 
10585
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:52
10586
- msgid "Usage restriction"
10587
  msgstr ""
10588
 
10589
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:57
10590
- msgid "Usage limits"
10591
  msgstr ""
10592
 
10593
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:80
10594
- msgid "Discount type"
10595
  msgstr ""
10596
 
10597
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:92
10598
- msgid "Value of the coupon."
10599
  msgstr ""
10600
 
10601
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:104
10602
- msgid "Allow free shipping"
10603
  msgstr ""
10604
 
10605
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:105
10606
- msgid ""
10607
- "Check this box if the coupon grants free shipping. A <a href=\"%s\" "
10608
- "target=\"_blank\">free shipping method</a> must be enabled in your shipping "
10609
- "zone and be set to require \"a valid free shipping coupon\" (see the \"Free "
10610
- "Shipping Requires\" setting)."
10611
  msgstr ""
10612
 
10613
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:117
10614
- msgid "Coupon expiry date"
10615
  msgstr ""
10616
 
10617
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:140
10618
- msgid "Minimum spend"
10619
  msgstr ""
10620
 
10621
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:141
10622
- msgid "No minimum"
10623
  msgstr ""
10624
 
10625
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:142
10626
- msgid ""
10627
- "This field allows you to set the minimum spend (subtotal) allowed to use "
10628
- "the coupon."
10629
  msgstr ""
10630
 
10631
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:153
10632
- msgid "Maximum spend"
10633
  msgstr ""
10634
 
10635
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:154
10636
- msgid "No maximum"
10637
  msgstr ""
10638
 
10639
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:155
10640
- msgid ""
10641
- "This field allows you to set the maximum spend (subtotal) allowed when "
10642
- "using the coupon."
10643
  msgstr ""
10644
 
10645
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:166
10646
- msgid "Individual use only"
10647
  msgstr ""
10648
 
10649
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:167
10650
- msgid ""
10651
- "Check this box if the coupon cannot be used in conjunction with other "
10652
- "coupons."
10653
  msgstr ""
10654
 
10655
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:176
10656
- msgid "Exclude sale items"
 
10657
  msgstr ""
10658
 
10659
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:177
10660
- msgid ""
10661
- "Check this box if the coupon should not apply to items on sale. Per-item "
10662
- "coupons will only work if the item is not on sale. Per-cart coupons will "
10663
- "only work if there are items in the cart that are not on sale."
10664
- msgstr ""
10665
-
10666
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:188
10667
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:206
10668
- #: includes/admin/meta-boxes/views/html-order-items.php:324
10669
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:15
10670
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:33
10671
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:49
10672
- #: includes/admin/reports/class-wc-report-sales-by-product.php:219
10673
- msgid "Search for a product&hellip;"
10674
  msgstr ""
10675
 
10676
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:200
10677
- msgid ""
10678
- "Products that the coupon will be applied to, or that need to be in the cart "
10679
- "in order for the \"Fixed cart discount\" to be applied."
10680
  msgstr ""
10681
 
10682
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:205
10683
- msgid "Exclude products"
10684
  msgstr ""
10685
 
10686
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:218
10687
- msgid ""
10688
- "Products that the coupon will not be applied to, or that cannot be in the "
10689
- "cart in order for the \"Fixed cart discount\" to be applied."
10690
  msgstr ""
10691
 
10692
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:228
10693
- msgid "Any category"
10694
  msgstr ""
10695
 
10696
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:239
10697
- msgid ""
10698
- "Product categories that the coupon will be applied to, or that need to be "
10699
- "in the cart in order for the \"Fixed cart discount\" to be applied."
10700
  msgstr ""
10701
 
10702
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:244
10703
- msgid "Exclude categories"
10704
  msgstr ""
10705
 
10706
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:245
10707
- msgid "No categories"
10708
  msgstr ""
10709
 
10710
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:257
10711
- msgid ""
10712
- "Product categories that the coupon will not be applied to, or that cannot "
10713
- "be in the cart in order for the \"Fixed cart discount\" to be applied."
10714
  msgstr ""
10715
 
10716
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:266
10717
- msgid "Allowed emails"
10718
  msgstr ""
10719
 
10720
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:267
10721
- msgid "No restrictions"
10722
  msgstr ""
10723
 
10724
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:268
10725
- msgid ""
10726
- "Whitelist of billing emails to check against when an order is placed. "
10727
- "Separate email addresses with commas. You can also use an asterisk (*) to "
10728
- "match parts of an email. For example \"*@gmail.com\" would match all gmail "
10729
- "addresses."
10730
  msgstr ""
10731
 
10732
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:289
10733
- msgid "Usage limit per coupon"
 
10734
  msgstr ""
10735
 
10736
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:290
10737
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:326
10738
- msgid "Unlimited usage"
10739
  msgstr ""
10740
 
10741
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:291
10742
- msgid "How many times this coupon can be used before it is void."
10743
  msgstr ""
10744
 
10745
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:307
10746
- msgid "Limit usage to X items"
10747
  msgstr ""
10748
 
10749
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:308
10750
- msgid "Apply to all qualifying items in cart"
10751
  msgstr ""
10752
 
10753
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:309
10754
- msgid ""
10755
- "The maximum number of individual items this coupon can apply to when using "
10756
- "product discounts. Leave blank to apply to all qualifying items in cart."
10757
  msgstr ""
10758
 
10759
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:325
10760
- msgid "Usage limit per user"
10761
  msgstr ""
10762
 
10763
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:327
10764
- msgid ""
10765
- "How many times this coupon can be used by an individual user. Uses billing "
10766
- "email for guests, and user ID for logged in users."
10767
  msgstr ""
10768
 
10769
- #: includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:360
10770
- msgid ""
10771
- "Coupon code already exists - customers will use the latest coupon with this "
10772
- "code."
10773
  msgstr ""
10774
 
10775
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:37
10776
- msgid "Email invoice / order details to customer"
10777
  msgstr ""
10778
 
10779
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:38
10780
- msgid "Resend new order notification"
10781
  msgstr ""
10782
 
10783
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:39
10784
- msgid "Regenerate download permissions"
10785
  msgstr ""
10786
 
10787
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:49
10788
- msgid "Choose an action..."
10789
  msgstr ""
10790
 
10791
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:54
10792
- #: includes/widgets/class-wc-widget-layered-nav.php:268
10793
- msgid "Apply"
10794
  msgstr ""
10795
 
10796
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:65
10797
- msgid "Move to trash"
10798
  msgstr ""
10799
 
10800
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:74
10801
- msgid "Create"
10802
  msgstr ""
10803
 
10804
- #: includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:107
10805
- msgid "Order details manually sent to customer."
10806
  msgstr ""
10807
 
10808
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:177
10809
- #. translators: 1: order type 2: order number
10810
- msgid "%1$s #%2$s details"
 
10811
  msgstr ""
10812
 
10813
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:192
10814
- #. translators: %s: payment method
10815
- msgid "Payment via %s"
10816
  msgstr ""
10817
 
10818
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:210
10819
- #. translators: 1: date 2: time
10820
- msgid "Paid on %1$s @ %2$s"
10821
  msgstr ""
10822
 
10823
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:219
10824
- #. translators: %s: IP address
10825
- msgid "Customer IP: %s"
10826
  msgstr ""
10827
 
10828
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:233
10829
- msgid "Date created:"
10830
  msgstr ""
10831
 
10832
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:236
10833
- msgid "h"
10834
  msgstr ""
10835
 
10836
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:244
10837
- msgid "Status:"
10838
  msgstr ""
10839
 
10840
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:249
10841
- msgid "Customer payment page &rarr;"
10842
  msgstr ""
10843
 
10844
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:268
10845
- msgid "Customer:"
 
10846
  msgstr ""
10847
 
10848
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:278
10849
- msgid "View other orders &rarr;"
10850
  msgstr ""
10851
 
10852
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:283
10853
- msgid "Profile &rarr;"
10854
  msgstr ""
10855
 
10856
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:303
10857
- #: includes/admin/reports/class-wc-report-downloads.php:194
10858
- msgid "Guest"
10859
  msgstr ""
10860
 
10861
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:315
10862
- msgid "Load billing address"
10863
  msgstr ""
10864
 
10865
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:325
10866
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:438
10867
- msgid "Address:"
10868
  msgstr ""
10869
 
10870
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:325
10871
- msgid "No billing address set."
10872
  msgstr ""
10873
 
10874
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:385
10875
- #: includes/class-wc-order.php:1954 templates/checkout/order-receipt.php:39
10876
- #: templates/checkout/thankyou.php:69
10877
- msgid "Payment method:"
10878
  msgstr ""
10879
 
10880
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:401
10881
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:403
10882
- #: includes/admin/meta-boxes/views/html-order-shipping.php:39
10883
- #: includes/admin/meta-boxes/views/html-order-shipping.php:41
10884
- msgid "Other"
10885
  msgstr ""
10886
 
10887
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:413
10888
- msgid "Transaction ID"
10889
  msgstr ""
10890
 
10891
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:427
10892
- msgid "Load shipping address"
10893
  msgstr ""
10894
 
10895
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:428
10896
- msgid "Copy billing address"
10897
  msgstr ""
10898
 
10899
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:438
10900
- msgid "No shipping address set."
10901
  msgstr ""
10902
 
10903
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:462
10904
- msgid "Customer provided note:"
10905
  msgstr ""
10906
 
10907
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:501
10908
- msgid "Customer provided note"
10909
  msgstr ""
10910
 
10911
- #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:502
10912
- msgid "Customer notes about the order"
 
 
10913
  msgstr ""
10914
 
10915
- #: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:57
10916
- #: includes/class-wc-ajax.php:776
10917
- msgid "File %d"
10918
  msgstr ""
10919
 
10920
- #: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:70
10921
- msgid "Search for a downloadable product&hellip;"
10922
  msgstr ""
10923
 
10924
- #: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:72
10925
- msgid "Grant access"
10926
  msgstr ""
10927
 
10928
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:50
10929
- #: includes/class-wc-ajax.php:1347
10930
- msgid "added on %1$s at %2$s"
10931
  msgstr ""
10932
 
10933
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:54
10934
- #: includes/admin/views/html-admin-page-status-report.php:588
10935
- #: includes/class-wc-ajax.php:1352 templates/content-widget-reviews.php:31
10936
- #. translators: %s: note author
10937
- #. translators: %s: plugin author
10938
- #. translators: %s: note author
10939
- msgid "by %s"
10940
  msgstr ""
10941
 
10942
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:57
10943
- #: includes/class-wc-ajax.php:1355
10944
- msgid "Delete note"
10945
  msgstr ""
10946
 
10947
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:63
10948
- msgid "There are no notes yet."
10949
  msgstr ""
10950
 
10951
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:70
10952
- msgid "Add note"
10953
  msgstr ""
10954
 
10955
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:70
10956
- msgid ""
10957
- "Add a note for your reference, or add a customer note (the user will be "
10958
- "notified)."
10959
  msgstr ""
10960
 
10961
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:74
10962
- msgid "Note type"
10963
  msgstr ""
10964
 
10965
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:76
10966
- msgid "Private note"
10967
  msgstr ""
10968
 
10969
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:77
10970
- msgid "Note to customer"
10971
  msgstr ""
10972
 
10973
- #: includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:79
10974
- #: includes/admin/meta-boxes/views/html-order-items.php:329
10975
- #: includes/admin/meta-boxes/views/html-order-items.php:386
10976
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:28
10977
- msgid "Add"
10978
  msgstr ""
10979
 
10980
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:64
10981
- msgid "Virtual products are intangible and are not shipped."
10982
  msgstr ""
10983
 
10984
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:71
10985
- msgid "Downloadable products give access to a file upon purchase."
10986
  msgstr ""
10987
 
10988
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:93
10989
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:72
10990
- #: includes/admin/settings/class-wc-settings-products.php:42
10991
- #: includes/admin/settings/class-wc-settings-products.php:130
10992
- msgid "Inventory"
10993
  msgstr ""
10994
 
10995
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:105
10996
- msgid "Linked Products"
10997
  msgstr ""
10998
 
10999
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:117
11000
- #: includes/class-wc-post-types.php:354
11001
- msgid "Variations"
11002
  msgstr ""
11003
 
11004
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:123
11005
- #: includes/admin/settings/class-wc-settings-advanced.php:27
11006
- msgid "Advanced"
11007
  msgstr ""
11008
 
11009
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:336
11010
- #: includes/admin/meta-boxes/class-wc-meta-box-product-data.php:431
11011
- #. translators: 1: product ID 2: quantity in stock
11012
- msgid ""
11013
- "The stock has not been updated because the value has changed since editing. "
11014
- "Product %1$d has %2$d units in stock."
11015
  msgstr ""
11016
 
11017
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56
11018
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76
11019
- msgid "Delete image"
11020
  msgstr ""
11021
 
11022
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76
11023
- msgid "Add images to product gallery"
11024
  msgstr ""
11025
 
11026
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76
11027
- msgid "Add to gallery"
11028
  msgstr ""
11029
 
11030
- #: includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76
11031
- msgid "Add product gallery images"
11032
  msgstr ""
11033
 
11034
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:8
11035
- msgid "Revoke access"
11036
  msgstr ""
11037
 
11038
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:19
11039
- msgid "Downloaded %s time"
11040
- msgid_plural "Downloaded %s times"
11041
- msgstr[0] ""
11042
- msgstr[1] ""
11043
 
11044
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:27
11045
- #: includes/class-wc-privacy-exporters.php:325
11046
- #: includes/wc-account-functions.php:212
11047
- msgid "Downloads remaining"
11048
  msgstr ""
11049
 
11050
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:29
11051
- #: includes/admin/meta-boxes/views/html-product-data-general.php:115
11052
- #: includes/admin/meta-boxes/views/html-variation-admin.php:398
11053
- msgid "Unlimited"
11054
  msgstr ""
11055
 
11056
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:32
11057
- #: includes/class-wc-privacy-exporters.php:337
11058
- msgid "Access expires"
11059
  msgstr ""
11060
 
11061
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:33
11062
- #: includes/admin/meta-boxes/views/html-product-data-general.php:130
11063
- #: includes/admin/meta-boxes/views/html-variation-admin.php:416
11064
- #: templates/emails/email-downloads.php:58
11065
- #: templates/emails/plain/email-downloads.php:40
11066
- #: templates/order/order-downloads.php:63
11067
- msgid "Never"
11068
  msgstr ""
11069
 
11070
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:36
11071
- msgid "Customer download link"
11072
  msgstr ""
11073
 
11074
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:47
11075
- #: includes/admin/settings/views/html-keys-edit.php:131
11076
- #: includes/admin/settings/views/html-keys-edit.php:139
11077
- #: includes/admin/views/html-admin-page-status-report.php:41
11078
- msgid "Copied!"
11079
  msgstr ""
11080
 
11081
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:47
11082
- msgid ""
11083
- "Copying to clipboard failed. You should be able to right-click the button "
11084
- "and copy."
11085
  msgstr ""
11086
 
11087
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:47
11088
- msgid "Copy link"
11089
  msgstr ""
11090
 
11091
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:50
11092
- msgid "Customer download log"
11093
  msgstr ""
11094
 
11095
- #: includes/admin/meta-boxes/views/html-order-download-permission.php:58
11096
- msgid "View report"
11097
  msgstr ""
11098
 
11099
- #: includes/admin/meta-boxes/views/html-order-fee.php:18
11100
- #: includes/class-wc-cart-fees.php:80 includes/class-wc-order-item-fee.php:211
11101
- msgid "Fee"
11102
  msgstr ""
11103
 
11104
- #: includes/admin/meta-boxes/views/html-order-fee.php:21
11105
- msgid "Fee name"
11106
  msgstr ""
11107
 
11108
- #: includes/admin/meta-boxes/views/html-order-item-meta.php:59
11109
- msgid "Add&nbsp;meta"
11110
  msgstr ""
11111
 
11112
- #: includes/admin/meta-boxes/views/html-order-item.php:25
11113
- #: templates/single-product/meta.php:31
11114
- msgid "SKU:"
11115
  msgstr ""
11116
 
11117
- #: includes/admin/meta-boxes/views/html-order-item.php:29
11118
- msgid "Variation ID:"
 
 
11119
  msgstr ""
11120
 
11121
- #: includes/admin/meta-boxes/views/html-order-item.php:34
11122
- #. translators: %s: variation id
11123
- msgid "%s (No longer exists)"
 
11124
  msgstr ""
11125
 
11126
- #: includes/admin/meta-boxes/views/html-order-item.php:94
11127
- #: includes/admin/meta-boxes/views/html-order-item.php:140
11128
- msgid "Pre-discount:"
11129
  msgstr ""
11130
 
11131
- #: includes/admin/meta-boxes/views/html-order-item.php:99
11132
- msgid "After pre-tax discounts."
11133
  msgstr ""
11134
 
11135
- #: includes/admin/meta-boxes/views/html-order-item.php:160
11136
- msgid "Edit item"
11137
  msgstr ""
11138
 
11139
- #: includes/admin/meta-boxes/views/html-order-item.php:160
11140
- msgid "Delete item"
11141
  msgstr ""
11142
 
11143
- #: includes/admin/meta-boxes/views/html-order-items.php:29
11144
- #: includes/class-wc-form-handler.php:558
11145
- #: includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php:471
11146
- msgid "Item"
11147
  msgstr ""
11148
 
11149
- #: includes/admin/meta-boxes/views/html-order-items.php:32
11150
- #: templates/checkout/form-pay.php:28
11151
- msgid "Qty"
 
 
11152
  msgstr ""
11153
 
11154
- #: includes/admin/meta-boxes/views/html-order-items.php:98
11155
- msgid "Delete selected row(s)"
11156
  msgstr ""
11157
 
11158
- #: includes/admin/meta-boxes/views/html-order-items.php:102
11159
- msgid "Reduce stock"
11160
  msgstr ""
11161
 
11162
- #: includes/admin/meta-boxes/views/html-order-items.php:103
11163
- msgid "Increase stock"
11164
  msgstr ""
11165
 
11166
- #: includes/admin/meta-boxes/views/html-order-items.php:115
11167
- msgid "Coupon(s)"
11168
  msgstr ""
11169
 
11170
- #: includes/admin/meta-boxes/views/html-order-items.php:213
11171
- msgid "Refunded"
11172
  msgstr ""
11173
 
11174
- #: includes/admin/meta-boxes/views/html-order-items.php:227
11175
- msgid "Add item(s)"
11176
  msgstr ""
11177
 
11178
- #: includes/admin/meta-boxes/views/html-order-items.php:229
11179
- #: templates/cart/cart.php:136 templates/checkout/form-coupon.php:38
11180
- msgid "Apply coupon"
11181
  msgstr ""
11182
 
11183
- #: includes/admin/meta-boxes/views/html-order-items.php:232
11184
- msgid "To edit this order change the status back to \"Pending\""
11185
  msgstr ""
11186
 
11187
- #: includes/admin/meta-boxes/views/html-order-items.php:232
11188
- msgid "This order is no longer editable."
11189
  msgstr ""
11190
 
11191
- #: includes/admin/meta-boxes/views/html-order-items.php:235
11192
- #: includes/class-wc-order.php:1971
11193
- msgid "Refund"
11194
  msgstr ""
11195
 
11196
- #: includes/admin/meta-boxes/views/html-order-items.php:242
11197
- msgid "Recalculate"
11198
  msgstr ""
11199
 
11200
- #: includes/admin/meta-boxes/views/html-order-items.php:247
11201
- msgid "Add product(s)"
11202
  msgstr ""
11203
 
11204
- #: includes/admin/meta-boxes/views/html-order-items.php:248
11205
- msgid "Add fee"
11206
  msgstr ""
11207
 
11208
- #: includes/admin/meta-boxes/views/html-order-items.php:249
11209
- msgid "Add shipping"
11210
  msgstr ""
11211
 
11212
- #: includes/admin/meta-boxes/views/html-order-items.php:251
11213
- #: includes/admin/meta-boxes/views/html-order-items.php:343
11214
- msgid "Add tax"
11215
  msgstr ""
11216
 
11217
- #: includes/admin/meta-boxes/views/html-order-items.php:258
11218
- #: templates/myaccount/form-reset-password.php:44
11219
- msgid "Save"
 
11220
  msgstr ""
11221
 
11222
- #: includes/admin/meta-boxes/views/html-order-items.php:265
11223
- msgid "Restock refunded items"
11224
  msgstr ""
11225
 
11226
- #: includes/admin/meta-boxes/views/html-order-items.php:270
11227
- msgid "Amount already refunded"
11228
  msgstr ""
11229
 
11230
- #: includes/admin/meta-boxes/views/html-order-items.php:274
11231
- msgid "Total available to refund"
11232
  msgstr ""
11233
 
11234
- #: includes/admin/meta-boxes/views/html-order-items.php:278
11235
- #: includes/admin/reports/class-wc-report-sales-by-date.php:766
11236
- msgid "Refund amount"
11237
  msgstr ""
11238
 
11239
- #: includes/admin/meta-boxes/views/html-order-items.php:285
11240
- msgid "Note: the refund reason will be visible by the customer."
11241
  msgstr ""
11242
 
11243
- #: includes/admin/meta-boxes/views/html-order-items.php:285
11244
- msgid "Reason for refund (optional):"
11245
  msgstr ""
11246
 
11247
- #: includes/admin/meta-boxes/views/html-order-items.php:296
11248
- msgid "Payment gateway"
11249
  msgstr ""
11250
 
11251
- #: includes/admin/meta-boxes/views/html-order-items.php:300
11252
- #. translators: refund amount, gateway name
11253
- msgid "Refund %1$s via %2$s"
11254
  msgstr ""
11255
 
11256
- #: includes/admin/meta-boxes/views/html-order-items.php:304
11257
- #. translators: refund amount
11258
- msgid ""
11259
- "You will need to manually issue a refund through your payment gateway after "
11260
- "using this."
11261
  msgstr ""
11262
 
11263
- #: includes/admin/meta-boxes/views/html-order-items.php:304
11264
- msgid "Refund %s manually"
11265
  msgstr ""
11266
 
11267
- #: includes/admin/meta-boxes/views/html-order-items.php:317
11268
- msgid "Add products"
11269
  msgstr ""
11270
 
11271
- #: includes/admin/meta-boxes/views/html-order-items.php:354
11272
- msgid "Rate name"
11273
  msgstr ""
11274
 
11275
- #: includes/admin/meta-boxes/views/html-order-items.php:356
11276
- msgid "Rate code"
 
 
11277
  msgstr ""
11278
 
11279
- #: includes/admin/meta-boxes/views/html-order-items.php:357
11280
- #: includes/admin/settings/class-wc-settings-tax.php:197
11281
- msgid "Rate %"
11282
  msgstr ""
11283
 
11284
- #: includes/admin/meta-boxes/views/html-order-items.php:378
11285
- msgid "Or, enter tax rate ID:"
11286
  msgstr ""
11287
 
11288
- #: includes/admin/meta-boxes/views/html-order-items.php:379
11289
- #: includes/customizer/class-wc-shop-customizer.php:701
11290
- #: includes/gateways/paypal/includes/settings-paypal.php:122
11291
- #: includes/gateways/paypal/includes/settings-paypal.php:130
11292
- #: includes/gateways/paypal/includes/settings-paypal.php:144
11293
- #: includes/gateways/paypal/includes/settings-paypal.php:152
11294
- #: includes/gateways/paypal/includes/settings-paypal.php:160
11295
- #: includes/gateways/paypal/includes/settings-paypal.php:168
11296
- #: includes/gateways/paypal/includes/settings-paypal.php:176
11297
- #: includes/gateways/paypal/includes/settings-paypal.php:184
11298
- msgid "Optional"
11299
  msgstr ""
11300
 
11301
- #: includes/admin/meta-boxes/views/html-order-refund.php:19
11302
- #. translators: 1: refund id 2: refund date 3: username
11303
- msgid "Refund #%1$s - %2$s by %3$s"
11304
- msgstr ""
 
 
 
11305
 
11306
- #: includes/admin/meta-boxes/views/html-order-refund.php:32
11307
- #. translators: 1: refund id 2: refund date
11308
- msgid "Refund #%1$s - %2$s"
11309
  msgstr ""
11310
 
11311
- #: includes/admin/meta-boxes/views/html-order-shipping.php:21
11312
- msgid "Shipping name"
11313
  msgstr ""
11314
 
11315
- #: includes/admin/meta-boxes/views/html-product-attribute.php:40
11316
- msgid "Select terms"
11317
  msgstr ""
11318
 
11319
- #: includes/admin/meta-boxes/views/html-product-attribute.php:58
11320
- msgid "Add new"
11321
  msgstr ""
11322
 
11323
- #: includes/admin/meta-boxes/views/html-product-attribute.php:66
11324
- #. translators: %s: WC_DELIMITER
11325
- msgid "Enter some text, or some attributes by \"%s\" separating values."
11326
  msgstr ""
11327
 
11328
- #: includes/admin/meta-boxes/views/html-product-data-advanced.php:16
11329
- msgid "Enter an optional note to send the customer after purchase."
11330
  msgstr ""
11331
 
11332
- #: includes/admin/meta-boxes/views/html-product-data-advanced.php:30
11333
- msgid "Custom ordering position."
11334
  msgstr ""
11335
 
11336
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:9
11337
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:51
11338
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:97
11339
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:134
11340
- msgid "Expand"
11341
  msgstr ""
11342
 
11343
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:9
11344
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:51
11345
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:97
11346
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:134
11347
- msgid "Close"
11348
  msgstr ""
11349
 
11350
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:12
11351
- msgid "Custom product attribute"
11352
  msgstr ""
11353
 
11354
- #: includes/admin/meta-boxes/views/html-product-data-attributes.php:53
11355
- msgid "Save attributes"
11356
  msgstr ""
11357
 
11358
- #: includes/admin/meta-boxes/views/html-product-data-general.php:14
11359
- msgid "Product URL"
11360
  msgstr ""
11361
 
11362
- #: includes/admin/meta-boxes/views/html-product-data-general.php:16
11363
- msgid "Enter the external URL to the product."
11364
  msgstr ""
11365
 
11366
- #: includes/admin/meta-boxes/views/html-product-data-general.php:26
11367
- msgid "This text will be shown on the button linking to the external product."
 
 
11368
  msgstr ""
11369
 
11370
- #: includes/admin/meta-boxes/views/html-product-data-general.php:49
11371
- #: includes/admin/meta-boxes/views/html-variation-admin.php:131
11372
- msgid "Schedule"
11373
  msgstr ""
11374
 
11375
- #: includes/admin/meta-boxes/views/html-product-data-general.php:57
11376
- msgid "Sale price dates"
11377
  msgstr ""
11378
 
11379
- #: includes/admin/meta-boxes/views/html-product-data-general.php:60
11380
- msgid "The sale will end at the beginning of the set date."
11381
  msgstr ""
11382
 
11383
- #: includes/admin/meta-boxes/views/html-product-data-general.php:69
11384
- #: includes/admin/meta-boxes/views/html-variation-admin.php:351
11385
- msgid "Downloadable files"
11386
  msgstr ""
11387
 
11388
- #: includes/admin/meta-boxes/views/html-product-data-general.php:74
11389
- #: includes/admin/meta-boxes/views/html-variation-admin.php:355
11390
- msgid "This is the name of the download shown to the customer."
11391
  msgstr ""
11392
 
11393
- #: includes/admin/meta-boxes/views/html-product-data-general.php:75
11394
- #: includes/admin/meta-boxes/views/html-variation-admin.php:356
11395
- msgid "File URL"
11396
  msgstr ""
11397
 
11398
- #: includes/admin/meta-boxes/views/html-product-data-general.php:75
11399
- #: includes/admin/meta-boxes/views/html-variation-admin.php:356
11400
- msgid ""
11401
- "This is the URL or absolute path to the file which customers will get "
11402
- "access to. URLs entered here should already be encoded."
11403
  msgstr ""
11404
 
11405
- #: includes/admin/meta-boxes/views/html-product-data-general.php:103
11406
- msgid "Add File"
11407
  msgstr ""
11408
 
11409
- #: includes/admin/meta-boxes/views/html-product-data-general.php:116
11410
- #: includes/admin/meta-boxes/views/html-variation-admin.php:399
11411
- msgid "Leave blank for unlimited re-downloads."
11412
  msgstr ""
11413
 
11414
- #: includes/admin/meta-boxes/views/html-product-data-general.php:129
11415
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:87
11416
- #: includes/admin/meta-boxes/views/html-variation-admin.php:415
11417
- msgid "Download expiry"
11418
  msgstr ""
11419
 
11420
- #: includes/admin/meta-boxes/views/html-product-data-general.php:131
11421
- #: includes/admin/meta-boxes/views/html-variation-admin.php:417
11422
- msgid "Enter the number of days before a download link expires, or leave blank."
11423
  msgstr ""
11424
 
11425
- #: includes/admin/meta-boxes/views/html-product-data-general.php:153
11426
- #: includes/admin/views/html-bulk-edit-product.php:76
11427
- #: includes/admin/views/html-quick-edit-product.php:54
11428
- #: includes/shipping/flat-rate/includes/settings-flat-rate.php:26
11429
- #: includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:58
11430
- #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:92
11431
- msgid "Taxable"
11432
  msgstr ""
11433
 
11434
- #: includes/admin/meta-boxes/views/html-product-data-general.php:154
11435
- #: includes/admin/views/html-bulk-edit-product.php:77
11436
- #: includes/admin/views/html-quick-edit-product.php:55
11437
- msgid "Shipping only"
11438
  msgstr ""
11439
 
11440
- #: includes/admin/meta-boxes/views/html-product-data-general.php:158
11441
- msgid ""
11442
- "Define whether or not the entire product is taxable, or just the cost of "
11443
- "shipping it."
11444
  msgstr ""
11445
 
11446
- #: includes/admin/meta-boxes/views/html-product-data-general.php:169
11447
- #: includes/admin/meta-boxes/views/html-variation-admin.php:316
11448
- msgid ""
11449
- "Choose a tax class for this product. Tax classes are used to apply "
11450
- "different tax rates specific to certain types of product."
11451
  msgstr ""
11452
 
11453
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:15
11454
- #: includes/admin/meta-boxes/views/html-variation-admin.php:67
11455
- msgid "Stock Keeping Unit"
 
11456
  msgstr ""
11457
 
11458
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:17
11459
- #: includes/admin/meta-boxes/views/html-variation-admin.php:69
11460
- msgid ""
11461
- "SKU refers to a Stock-keeping unit, a unique identifier for each distinct "
11462
- "product and service that can be purchased."
11463
  msgstr ""
11464
 
11465
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:31
11466
- #: includes/admin/meta-boxes/views/html-variation-admin.php:91
11467
- #: includes/admin/views/html-bulk-edit-product.php:234
11468
- #: includes/admin/views/html-quick-edit-product.php:167
11469
- msgid "Manage stock?"
11470
  msgstr ""
11471
 
11472
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:32
11473
- msgid "Enable stock management at product level"
11474
  msgstr ""
11475
 
11476
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:44
11477
- #: includes/admin/meta-boxes/views/html-variation-admin.php:171
11478
- msgid "Stock quantity"
11479
  msgstr ""
11480
 
11481
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:46
11482
- msgid ""
11483
- "Stock quantity. If this is a variable product this value will be used to "
11484
- "control stock for all variations, unless you define stock at variation "
11485
- "level."
11486
  msgstr ""
11487
 
11488
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:61
11489
- #: includes/admin/meta-boxes/views/html-variation-admin.php:190
11490
- msgid "Allow backorders?"
11491
  msgstr ""
11492
 
11493
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:64
11494
- #: includes/admin/meta-boxes/views/html-variation-admin.php:193
11495
- msgid ""
11496
- "If managing stock, this controls whether or not backorders are allowed. If "
11497
- "enabled, stock quantity can go below 0."
11498
  msgstr ""
11499
 
11500
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:78
11501
- #: includes/admin/meta-boxes/views/html-variation-admin.php:219
11502
- #: includes/admin/reports/class-wc-report-stock.php:176
11503
- msgid "Stock status"
11504
  msgstr ""
11505
 
11506
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:81
11507
- #: includes/admin/meta-boxes/views/html-variation-admin.php:222
11508
- #: includes/api/class-wc-rest-products-controller.php:1662
11509
- #: includes/api/v1/class-wc-rest-products-controller.php:1952
11510
- msgid ""
11511
- "Controls whether or not the product is listed as \"in stock\" or \"out of "
11512
- "stock\" on the frontend."
11513
  msgstr ""
11514
 
11515
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:96
11516
- msgid "Sold individually"
11517
  msgstr ""
11518
 
11519
- #: includes/admin/meta-boxes/views/html-product-data-inventory.php:97
11520
- msgid "Enable this to only allow one of this item to be bought in a single order"
11521
  msgstr ""
11522
 
11523
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:26
11524
- msgid "This lets you choose which products are part of this group."
11525
  msgstr ""
11526
 
11527
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:44
11528
- msgid ""
11529
- "Upsells are products which you recommend instead of the currently viewed "
11530
- "product, for example, products that are more profitable or better quality "
11531
- "or more expensive."
11532
  msgstr ""
11533
 
11534
- #: includes/admin/meta-boxes/views/html-product-data-linked-products.php:60
11535
- msgid ""
11536
- "Cross-sells are products which you promote in the cart, based on the "
11537
- "current product."
11538
  msgstr ""
11539
 
11540
- #: includes/admin/meta-boxes/views/html-product-data-panel.php:11
11541
- msgid "Product Type"
11542
  msgstr ""
11543
 
11544
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:14
11545
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:83
11546
- #: includes/admin/views/html-bulk-edit-product.php:118
11547
- #: includes/admin/views/html-quick-edit-product.php:98
11548
- #: templates/single-product/product-attributes.php:28
11549
- msgid "Weight"
11550
  msgstr ""
11551
 
11552
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:17
11553
- #: includes/admin/meta-boxes/views/html-variation-admin.php:242
11554
- msgid "Weight in decimal form"
11555
  msgstr ""
11556
 
11557
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:28
11558
- #. translators: WooCommerce dimension unit
11559
- msgid "Dimensions (%s)"
11560
  msgstr ""
11561
 
11562
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:30
11563
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:80
11564
- #: includes/admin/meta-boxes/views/html-variation-admin.php:268
11565
- #: includes/admin/views/html-quick-edit-product.php:111
11566
- msgid "Length"
11567
  msgstr ""
11568
 
11569
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:31
11570
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:81
11571
- #: includes/admin/meta-boxes/views/html-variation-admin.php:269
11572
- #: includes/admin/views/html-quick-edit-product.php:112
11573
- msgid "Width"
11574
  msgstr ""
11575
 
11576
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:32
11577
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:82
11578
- #: includes/admin/meta-boxes/views/html-variation-admin.php:270
11579
- #: includes/admin/views/html-quick-edit-product.php:113
11580
- msgid "Height"
11581
  msgstr ""
11582
 
11583
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:34
11584
- msgid "LxWxH in decimal form"
11585
  msgstr ""
11586
 
11587
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:48
11588
- #: includes/admin/views/html-bulk-edit-product.php:170
11589
- #: includes/admin/views/html-quick-edit-product.php:126
11590
- msgid "No shipping class"
11591
  msgstr ""
11592
 
11593
- #: includes/admin/meta-boxes/views/html-product-data-shipping.php:58
11594
- msgid ""
11595
- "Shipping classes are used by certain shipping methods to group similar "
11596
- "products."
11597
  msgstr ""
11598
 
11599
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:18
11600
- msgid ""
11601
- "Before you can add a variation you need to add some variation attributes on "
11602
- "the <strong>Attributes</strong> tab."
11603
  msgstr ""
11604
 
11605
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:19
11606
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:44
11607
- #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:98
11608
- msgid "Learn more"
11609
  msgstr ""
11610
 
11611
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:26
11612
- msgid "Default Form Values"
11613
  msgstr ""
11614
 
11615
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:26
11616
- msgid "These are the attributes that will be pre-selected on the frontend."
11617
  msgstr ""
11618
 
11619
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:33
11620
- #. translators: WooCommerce attribute label
11621
- msgid "No default %s&hellip;"
11622
  msgstr ""
11623
 
11624
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:55
11625
- msgid "Add variation"
11626
  msgstr ""
11627
 
11628
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:56
11629
- msgid "Create variations from all attributes"
11630
  msgstr ""
11631
 
11632
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:57
11633
- msgid "Delete all variations"
11634
  msgstr ""
11635
 
11636
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:59
11637
- msgid "Toggle &quot;Enabled&quot;"
11638
  msgstr ""
11639
 
11640
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:60
11641
- msgid "Toggle &quot;Downloadable&quot;"
11642
  msgstr ""
11643
 
11644
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:61
11645
- msgid "Toggle &quot;Virtual&quot;"
11646
  msgstr ""
11647
 
11648
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:63
11649
- msgid "Pricing"
11650
  msgstr ""
11651
 
11652
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:64
11653
- msgid "Set regular prices"
11654
  msgstr ""
11655
 
11656
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:65
11657
- msgid "Increase regular prices (fixed amount or percentage)"
11658
  msgstr ""
11659
 
11660
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:66
11661
- msgid "Decrease regular prices (fixed amount or percentage)"
11662
  msgstr ""
11663
 
11664
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:67
11665
- msgid "Set sale prices"
11666
  msgstr ""
11667
 
11668
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:68
11669
- msgid "Increase sale prices (fixed amount or percentage)"
11670
  msgstr ""
11671
 
11672
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:69
11673
- msgid "Decrease sale prices (fixed amount or percentage)"
11674
  msgstr ""
11675
 
11676
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:70
11677
- msgid "Set scheduled sale dates"
11678
  msgstr ""
11679
 
11680
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:73
11681
- msgid "Toggle &quot;Manage stock&quot;"
11682
  msgstr ""
11683
 
11684
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:75
11685
- msgid "Set Status - In stock"
11686
  msgstr ""
11687
 
11688
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:76
11689
- msgid "Set Status - Out of stock"
11690
  msgstr ""
11691
 
11692
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:77
11693
- msgid "Set Status - On backorder"
11694
  msgstr ""
11695
 
11696
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:91
11697
- #: includes/admin/views/html-report-by-date.php:60
11698
- msgid "Go"
11699
  msgstr ""
11700
 
11701
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:95
11702
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:132
11703
- #. translators: variations count
11704
- msgid "%s item"
11705
- msgid_plural "%s items"
11706
- msgstr[0] ""
11707
- msgstr[1] ""
11708
-
11709
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:100
11710
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:137
11711
- msgid "Go to the first page"
11712
  msgstr ""
11713
 
11714
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:101
11715
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:138
11716
- msgid "Go to the previous page"
11717
  msgstr ""
11718
 
11719
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:103
11720
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:140
11721
- msgid "Select Page"
11722
  msgstr ""
11723
 
11724
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:104
11725
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:141
11726
- #: includes/admin/settings/views/html-settings-tax.php:124
11727
- msgid "Current page"
11728
  msgstr ""
11729
 
11730
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:111
11731
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:148
11732
- msgid "Go to the next page"
11733
  msgstr ""
11734
 
11735
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:112
11736
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:149
11737
- msgid "Go to the last page"
11738
  msgstr ""
11739
 
11740
- #: includes/admin/meta-boxes/views/html-product-data-variations.php:127
11741
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:103
11742
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:157
11743
- #: includes/admin/settings/views/html-keys-edit.php:114
11744
- #: includes/admin/views/html-admin-settings.php:44
11745
- #: templates/myaccount/form-edit-account.php:69
11746
- msgid "Save changes"
11747
  msgstr ""
11748
 
11749
- #: includes/admin/meta-boxes/views/html-product-download.php:9
11750
- #: includes/admin/meta-boxes/views/html-product-variation-download.php:8
11751
- msgid "File name"
11752
  msgstr ""
11753
 
11754
- #: includes/admin/meta-boxes/views/html-product-download.php:12
11755
- #: includes/admin/meta-boxes/views/html-product-variation-download.php:11
11756
- msgid "http://"
11757
  msgstr ""
11758
 
11759
- #: includes/admin/meta-boxes/views/html-product-download.php:13
11760
- #: includes/admin/meta-boxes/views/html-product-variation-download.php:12
11761
- msgid "Choose file"
11762
  msgstr ""
11763
 
11764
- #: includes/admin/meta-boxes/views/html-product-download.php:13
11765
- #: includes/admin/meta-boxes/views/html-product-variation-download.php:12
11766
- msgid "Insert file URL"
11767
  msgstr ""
11768
 
11769
- #: includes/admin/meta-boxes/views/html-variation-admin.php:18
11770
- msgid "Drag and drop, or click to set admin variation order"
11771
  msgstr ""
11772
 
11773
- #: includes/admin/meta-boxes/views/html-variation-admin.php:33
11774
- #. translators: %s: attribute label
11775
- msgid "Any %s&hellip;"
11776
  msgstr ""
11777
 
11778
- #: includes/admin/meta-boxes/views/html-variation-admin.php:55
11779
- msgid "Remove this image"
11780
- msgstr ""
11781
-
11782
- #: includes/admin/meta-boxes/views/html-variation-admin.php:55
11783
- msgid "Upload an image"
11784
  msgstr ""
11785
 
11786
- #: includes/admin/meta-boxes/views/html-variation-admin.php:77
11787
- #: includes/admin/settings/class-wc-settings-emails.php:300
11788
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:117
11789
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:85
11790
- msgid "Enabled"
11791
  msgstr ""
11792
 
11793
- #: includes/admin/meta-boxes/views/html-variation-admin.php:80
11794
- msgid ""
11795
- "Enable this option if access is given to a downloadable file upon purchase "
11796
- "of a product"
11797
  msgstr ""
11798
 
11799
- #: includes/admin/meta-boxes/views/html-variation-admin.php:84
11800
- msgid "Enable this option if a product is not shipped or there is no shipping cost"
11801
  msgstr ""
11802
 
11803
- #: includes/admin/meta-boxes/views/html-variation-admin.php:90
11804
- msgid "Enable this option to enable stock management at variation level"
11805
  msgstr ""
11806
 
11807
- #: includes/admin/meta-boxes/views/html-variation-admin.php:103
11808
- #. translators: %s: currency symbol
11809
- msgid "Regular price (%s)"
11810
  msgstr ""
11811
 
11812
- #: includes/admin/meta-boxes/views/html-variation-admin.php:115
11813
- msgid "Variation price (required)"
11814
  msgstr ""
11815
 
11816
- #: includes/admin/meta-boxes/views/html-variation-admin.php:121
11817
- #. translators: %s: currency symbol
11818
- msgid "Sale price (%s)"
11819
  msgstr ""
11820
 
11821
- #: includes/admin/meta-boxes/views/html-variation-admin.php:131
11822
- msgid "Cancel schedule"
11823
  msgstr ""
11824
 
11825
- #: includes/admin/meta-boxes/views/html-variation-admin.php:141
11826
- msgid "Sale start date"
11827
  msgstr ""
11828
 
11829
- #: includes/admin/meta-boxes/views/html-variation-admin.php:145
11830
- msgid "Sale end date"
11831
  msgstr ""
11832
 
11833
- #: includes/admin/meta-boxes/views/html-variation-admin.php:173
11834
- msgid ""
11835
- "Enter a quantity to enable stock management at variation level, or leave "
11836
- "blank to use the parent product's options."
11837
  msgstr ""
11838
 
11839
- #: includes/admin/meta-boxes/views/html-variation-admin.php:261
11840
- #. translators: %s: dimension unit
11841
- msgid "Dimensions (L&times;W&times;H) (%s)"
11842
  msgstr ""
11843
 
11844
- #: includes/admin/meta-boxes/views/html-variation-admin.php:266
11845
- msgid "Length x width x height in decimal form"
11846
  msgstr ""
11847
 
11848
- #: includes/admin/meta-boxes/views/html-variation-admin.php:297
11849
- #: includes/admin/meta-boxes/views/html-variation-admin.php:314
11850
- msgid "Same as parent"
11851
  msgstr ""
11852
 
11853
- #: includes/admin/meta-boxes/views/html-variation-admin.php:343
11854
- msgid "Enter an optional description for this variation."
11855
  msgstr ""
11856
 
11857
- #: includes/admin/meta-boxes/views/html-variation-admin.php:383
11858
- msgid "Add file"
11859
  msgstr ""
11860
 
11861
- #: includes/admin/plugin-updates/class-wc-plugin-updates.php:120
11862
- #. translators: %s: version number
11863
- msgid ""
11864
- "<strong>Heads up!</strong> The versions of the following plugins you're "
11865
- "running haven't been tested with the latest version of WooCommerce (%s)."
11866
  msgstr ""
11867
 
11868
- #: includes/admin/plugin-updates/class-wc-plugin-updates.php:143
11869
- #. translators: %s: version number
11870
- msgid ""
11871
- "<strong>Heads up!</strong> The versions of the following plugins you're "
11872
- "running haven't been tested with WooCommerce %s. Please update them or "
11873
- "confirm compatibility before updating WooCommerce, or you may experience "
11874
- "issues:"
11875
  msgstr ""
11876
 
11877
- #: includes/admin/plugin-updates/class-wc-plugin-updates.php:220
11878
- msgid "unknown"
11879
  msgstr ""
11880
 
11881
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php:18
11882
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:29
11883
- msgid "Plugin"
11884
  msgstr ""
11885
 
11886
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php:19
11887
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:30
11888
- msgid "Tested up to WooCommerce version"
 
11889
  msgstr ""
11890
 
11891
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:14
11892
- #. translators: %s: version number
11893
- msgid ""
11894
- "The following active plugin(s) have not declared compatibility with "
11895
- "WooCommerce %s yet and should be updated and examined further before you "
11896
- "proceed:"
11897
  msgstr ""
11898
 
11899
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:21
11900
- msgid "This is a major update, are you sure you're ready?"
11901
  msgstr ""
11902
 
11903
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:44
11904
- msgid ""
11905
- "As this is a major update, we strongly recommend creating a backup of your "
11906
- "site before updating."
11907
  msgstr ""
11908
 
11909
- #: includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:49
11910
- msgid "Update now"
11911
  msgstr ""
11912
 
11913
- #: includes/admin/reports/class-wc-admin-report.php:507
11914
- #. translators: 1: total income 2: days
11915
- msgid "Sold %1$s worth in the last %2$d days"
11916
  msgstr ""
11917
 
11918
- #: includes/admin/reports/class-wc-admin-report.php:510
11919
- #. translators: 1: total items sold 2: days
11920
- msgid "Sold 1 item in the last %2$d days"
11921
- msgid_plural "Sold %1$d items in the last %2$d days"
11922
- msgstr[0] ""
11923
- msgstr[1] ""
11924
-
11925
- #: includes/admin/reports/class-wc-admin-report.php:672
11926
- #. translators: %1$s: open link, %2$s: close link
11927
- msgid ""
11928
- "This report link has expired. %1$sClick here to view the filtered "
11929
- "report%2$s."
11930
  msgstr ""
11931
 
11932
- #: includes/admin/reports/class-wc-admin-report.php:673
11933
- msgid "Confirm navigation"
11934
  msgstr ""
11935
 
11936
- #: includes/admin/reports/class-wc-report-coupon-usage.php:114
11937
- #. translators: %s: discount amount
11938
- msgid "%s discounts in total"
11939
  msgstr ""
11940
 
11941
- #: includes/admin/reports/class-wc-report-coupon-usage.php:121
11942
- #. translators: %s: coupons amount
11943
- msgid "%s coupons used in total"
11944
  msgstr ""
11945
 
11946
- #: includes/admin/reports/class-wc-report-coupon-usage.php:135
11947
- #: includes/admin/reports/class-wc-report-customers.php:170
11948
- #: includes/admin/reports/class-wc-report-sales-by-category.php:119
11949
- #: includes/admin/reports/class-wc-report-sales-by-date.php:563
11950
- #: includes/admin/reports/class-wc-report-sales-by-product.php:140
11951
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:50
11952
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:50
11953
- msgid "Year"
11954
  msgstr ""
11955
 
11956
- #: includes/admin/reports/class-wc-report-coupon-usage.php:136
11957
- #: includes/admin/reports/class-wc-report-customers.php:171
11958
- #: includes/admin/reports/class-wc-report-sales-by-category.php:120
11959
- #: includes/admin/reports/class-wc-report-sales-by-date.php:564
11960
- #: includes/admin/reports/class-wc-report-sales-by-product.php:141
11961
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:51
11962
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:51
11963
- msgid "Last month"
11964
  msgstr ""
11965
 
11966
- #: includes/admin/reports/class-wc-report-coupon-usage.php:137
11967
- #: includes/admin/reports/class-wc-report-customers.php:172
11968
- #: includes/admin/reports/class-wc-report-sales-by-category.php:121
11969
- #: includes/admin/reports/class-wc-report-sales-by-date.php:565
11970
- #: includes/admin/reports/class-wc-report-sales-by-product.php:142
11971
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:52
11972
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:52
11973
- msgid "This month"
11974
  msgstr ""
11975
 
11976
- #: includes/admin/reports/class-wc-report-coupon-usage.php:138
11977
- #: includes/admin/reports/class-wc-report-customers.php:173
11978
- #: includes/admin/reports/class-wc-report-sales-by-category.php:122
11979
- #: includes/admin/reports/class-wc-report-sales-by-date.php:566
11980
- #: includes/admin/reports/class-wc-report-sales-by-product.php:143
11981
- msgid "Last 7 days"
11982
  msgstr ""
11983
 
11984
- #: includes/admin/reports/class-wc-report-coupon-usage.php:179
11985
- msgid "Filter by coupon"
 
 
11986
  msgstr ""
11987
 
11988
- #: includes/admin/reports/class-wc-report-coupon-usage.php:209
11989
- msgid "Choose coupons&hellip;"
11990
  msgstr ""
11991
 
11992
- #: includes/admin/reports/class-wc-report-coupon-usage.php:210
11993
- msgid "All coupons"
11994
  msgstr ""
11995
 
11996
- #: includes/admin/reports/class-wc-report-coupon-usage.php:218
11997
- #: includes/admin/reports/class-wc-report-sales-by-category.php:233
11998
- #: includes/admin/reports/class-wc-report-sales-by-product.php:220
11999
- #: includes/widgets/class-wc-widget-products.php:41
12000
- msgid "Show"
12001
  msgstr ""
12002
 
12003
- #: includes/admin/reports/class-wc-report-coupon-usage.php:227
12004
- msgid "No used coupons found"
 
 
12005
  msgstr ""
12006
 
12007
- #: includes/admin/reports/class-wc-report-coupon-usage.php:232
12008
- msgid "Most popular"
12009
  msgstr ""
12010
 
12011
- #: includes/admin/reports/class-wc-report-coupon-usage.php:276
12012
- #: includes/admin/reports/class-wc-report-coupon-usage.php:327
12013
- msgid "No coupons found in range"
12014
  msgstr ""
12015
 
12016
- #: includes/admin/reports/class-wc-report-coupon-usage.php:281
12017
- msgid "Most discount"
12018
  msgstr ""
12019
 
12020
- #: includes/admin/reports/class-wc-report-coupon-usage.php:370
12021
- #: includes/admin/reports/class-wc-report-customers.php:238
12022
- #: includes/admin/reports/class-wc-report-sales-by-category.php:277
12023
- #: includes/admin/reports/class-wc-report-sales-by-date.php:608
12024
- #: includes/admin/reports/class-wc-report-sales-by-product.php:409
12025
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:39
12026
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:39
12027
- #: includes/admin/settings/views/html-settings-tax.php:42
12028
- msgid "Export CSV"
12029
  msgstr ""
12030
 
12031
- #: includes/admin/reports/class-wc-report-coupon-usage.php:477
12032
- msgid "Number of coupons used"
12033
  msgstr ""
12034
 
12035
- #: includes/admin/reports/class-wc-report-coupon-usage.php:485
12036
- msgid "Discount amount"
 
 
12037
  msgstr ""
12038
 
12039
- #: includes/admin/reports/class-wc-report-customer-list.php:39
12040
- msgid "No customers found."
12041
  msgstr ""
12042
 
12043
- #: includes/admin/reports/class-wc-report-customer-list.php:53
12044
- msgid "%s previous order linked"
12045
- msgid_plural "%s previous orders linked"
 
 
12046
  msgstr[0] ""
12047
  msgstr[1] ""
12048
 
12049
- #: includes/admin/reports/class-wc-report-customer-list.php:63
12050
- msgid "Refreshed stats for %s"
12051
- msgstr ""
12052
-
12053
- #: includes/admin/reports/class-wc-report-customer-list.php:68
12054
- msgid "Search customers"
12055
- msgstr ""
12056
 
12057
- #: includes/admin/reports/class-wc-report-customer-list.php:153
12058
- msgid "Refresh stats"
12059
- msgstr ""
 
 
 
 
12060
 
12061
- #: includes/admin/reports/class-wc-report-customer-list.php:165
12062
- msgid "View orders"
12063
- msgstr ""
 
 
 
 
12064
 
12065
- #: includes/admin/reports/class-wc-report-customer-list.php:180
12066
- msgid "Link previous orders"
12067
- msgstr ""
 
 
 
 
12068
 
12069
- #: includes/admin/reports/class-wc-report-customer-list.php:211
12070
- msgid "Name (Last, First)"
12071
- msgstr ""
 
 
 
 
12072
 
12073
- #: includes/admin/reports/class-wc-report-customer-list.php:212
12074
- #: includes/class-wc-checkout.php:229 templates/myaccount/form-login.php:83
12075
- msgid "Username"
12076
- msgstr ""
 
 
 
12077
 
12078
- #: includes/admin/reports/class-wc-report-customer-list.php:214
12079
- msgid "Location"
12080
- msgstr ""
 
 
 
 
12081
 
12082
- #: includes/admin/reports/class-wc-report-customer-list.php:216
12083
- msgid "Money spent"
12084
- msgstr ""
 
 
 
 
12085
 
12086
- #: includes/admin/reports/class-wc-report-customer-list.php:217
12087
- msgid "Last order"
12088
- msgstr ""
 
 
 
 
12089
 
12090
- #: includes/admin/reports/class-wc-report-customers.php:44
12091
- #. translators: %s: signups amount
12092
- msgid "%s signups in this period"
12093
- msgstr ""
 
 
 
12094
 
12095
- #: includes/admin/reports/class-wc-report-customers.php:116
12096
- msgid "Customer sales"
12097
- msgstr ""
 
 
 
 
12098
 
12099
- #: includes/admin/reports/class-wc-report-customers.php:117
12100
- msgid "Guest sales"
12101
- msgstr ""
 
 
 
 
12102
 
12103
- #: includes/admin/reports/class-wc-report-customers.php:126
12104
- #: includes/admin/reports/class-wc-report-customers.php:327
12105
- msgid "Customer orders"
12106
- msgstr ""
 
 
 
12107
 
12108
- #: includes/admin/reports/class-wc-report-customers.php:131
12109
- #: includes/admin/reports/class-wc-report-customers.php:337
12110
- msgid "Guest orders"
12111
- msgstr ""
 
 
 
12112
 
12113
- #: includes/admin/reports/class-wc-report-customers.php:150
12114
- msgid "orders"
12115
  msgstr ""
12116
 
12117
- #: includes/admin/reports/class-wc-report-customers.php:333
12118
- msgid "customer orders"
12119
  msgstr ""
12120
 
12121
- #: includes/admin/reports/class-wc-report-customers.php:343
12122
- msgid "guest orders"
12123
  msgstr ""
12124
 
12125
- #: includes/admin/reports/class-wc-report-customers.php:347
12126
- msgid "Signups"
12127
  msgstr ""
12128
 
12129
- #: includes/admin/reports/class-wc-report-customers.php:354
12130
- msgid "new users"
12131
  msgstr ""
12132
 
12133
- #: includes/admin/reports/class-wc-report-downloads.php:75
12134
- msgid "Permission #%d not found."
 
12135
  msgstr ""
12136
 
12137
- #: includes/admin/reports/class-wc-report-downloads.php:85
12138
- msgid "File ID"
12139
  msgstr ""
12140
 
12141
- #: includes/admin/reports/class-wc-report-downloads.php:86
12142
- msgid "Permission ID"
12143
  msgstr ""
12144
 
12145
- #: includes/admin/reports/class-wc-report-downloads.php:89
12146
- #: includes/admin/reports/class-wc-report-downloads.php:219
12147
- msgid "IP address"
12148
  msgstr ""
12149
 
12150
- #: includes/admin/reports/class-wc-report-downloads.php:123
12151
- #: includes/widgets/class-wc-widget-layered-nav-filters.php:27
12152
- msgid "Active filters"
12153
  msgstr ""
12154
 
12155
- #: includes/admin/reports/class-wc-report-downloads.php:158
12156
- msgid "Filter by product"
12157
  msgstr ""
12158
 
12159
- #: includes/admin/reports/class-wc-report-downloads.php:170
12160
- msgid "Filter by file"
12161
  msgstr ""
12162
 
12163
- #: includes/admin/reports/class-wc-report-downloads.php:179
12164
- msgid "Filter by order"
12165
  msgstr ""
12166
 
12167
- #: includes/admin/reports/class-wc-report-downloads.php:190
12168
- msgid "Filter by user"
12169
  msgstr ""
12170
 
12171
- #: includes/admin/reports/class-wc-report-downloads.php:201
12172
- msgid "Filter by IP address"
12173
  msgstr ""
12174
 
12175
- #: includes/admin/reports/class-wc-report-downloads.php:216
12176
- msgid "File"
12177
  msgstr ""
12178
 
12179
- #: includes/admin/reports/class-wc-report-downloads.php:253
12180
- msgid "No customer downloads found."
12181
  msgstr ""
12182
 
12183
- #: includes/admin/reports/class-wc-report-low-in-stock.php:25
12184
- msgid "No low in stock products found."
12185
  msgstr ""
12186
 
12187
- #: includes/admin/reports/class-wc-report-out-of-stock.php:25
12188
- msgid "No out of stock products found."
12189
  msgstr ""
12190
 
12191
- #: includes/admin/reports/class-wc-report-sales-by-category.php:102
12192
- #. translators: 1: total items sold 2: category name
12193
- msgid "%1$s sales in %2$s"
12194
  msgstr ""
12195
 
12196
- #: includes/admin/reports/class-wc-report-sales-by-category.php:216
12197
- msgid "Select categories&hellip;"
12198
  msgstr ""
12199
 
12200
- #: includes/admin/reports/class-wc-report-sales-by-category.php:231
12201
- msgid "None"
12202
  msgstr ""
12203
 
12204
- #: includes/admin/reports/class-wc-report-sales-by-category.php:291
12205
- msgid "Choose a category to view stats"
12206
  msgstr ""
12207
 
12208
- #: includes/admin/reports/class-wc-report-sales-by-date.php:446
12209
- #. translators: %s: average total sales
12210
- msgid "%s average gross daily sales"
12211
  msgstr ""
12212
 
12213
- #: includes/admin/reports/class-wc-report-sales-by-date.php:451
12214
- #. translators: %s: average sales
12215
- msgid "%s average net daily sales"
12216
  msgstr ""
12217
 
12218
- #: includes/admin/reports/class-wc-report-sales-by-date.php:459
12219
- #. translators: %s: average total sales
12220
- msgid "%s average gross monthly sales"
12221
  msgstr ""
12222
 
12223
- #: includes/admin/reports/class-wc-report-sales-by-date.php:464
12224
- #. translators: %s: average sales
12225
- msgid "%s average net monthly sales"
12226
  msgstr ""
12227
 
12228
- #: includes/admin/reports/class-wc-report-sales-by-date.php:473
12229
- #. translators: %s: total sales
12230
- msgid "%s gross sales in this period"
12231
  msgstr ""
12232
 
12233
- #: includes/admin/reports/class-wc-report-sales-by-date.php:476
12234
- msgid ""
12235
- "This is the sum of the order totals after any refunds and including "
12236
- "shipping and taxes."
12237
  msgstr ""
12238
 
12239
- #: includes/admin/reports/class-wc-report-sales-by-date.php:491
12240
- #. translators: %s: net sales
12241
- msgid "%s net sales in this period"
12242
  msgstr ""
12243
 
12244
- #: includes/admin/reports/class-wc-report-sales-by-date.php:494
12245
- msgid ""
12246
- "This is the sum of the order totals after any refunds and excluding "
12247
- "shipping and taxes."
12248
  msgstr ""
12249
 
12250
- #: includes/admin/reports/class-wc-report-sales-by-date.php:509
12251
- #. translators: %s: total orders
12252
- msgid "%s orders placed"
12253
  msgstr ""
12254
 
12255
- #: includes/admin/reports/class-wc-report-sales-by-date.php:519
12256
- #. translators: %s: total items
12257
- msgid "%s items purchased"
12258
  msgstr ""
12259
 
12260
- #: includes/admin/reports/class-wc-report-sales-by-date.php:528
12261
- #. translators: 1: total refunds 2: total refunded orders 3: refunded items
12262
- msgid "%1$s refunded %2$d order (%3$d item)"
12263
- msgid_plural "%1$s refunded %2$d orders (%3$d items)"
12264
- msgstr[0] ""
12265
- msgstr[1] ""
12266
 
12267
- #: includes/admin/reports/class-wc-report-sales-by-date.php:539
12268
- #. translators: %s: total shipping
12269
- msgid "%s charged for shipping"
12270
  msgstr ""
12271
 
12272
- #: includes/admin/reports/class-wc-report-sales-by-date.php:548
12273
- #. translators: %s: total coupons
12274
- msgid "%s worth of coupons used"
12275
  msgstr ""
12276
 
12277
- #: includes/admin/reports/class-wc-report-sales-by-date.php:690
12278
- #: includes/admin/reports/class-wc-report-sales-by-product.php:528
12279
- msgid "Number of items sold"
12280
  msgstr ""
12281
 
12282
- #: includes/admin/reports/class-wc-report-sales-by-date.php:698
12283
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:157
12284
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:211
12285
- msgid "Number of orders"
12286
  msgstr ""
12287
 
12288
- #: includes/admin/reports/class-wc-report-sales-by-date.php:706
12289
- msgid "Average gross sales amount"
 
 
12290
  msgstr ""
12291
 
12292
- #: includes/admin/reports/class-wc-report-sales-by-date.php:716
12293
- msgid "Average net sales amount"
12294
  msgstr ""
12295
 
12296
- #: includes/admin/reports/class-wc-report-sales-by-date.php:736
12297
- msgid "Shipping amount"
12298
  msgstr ""
12299
 
12300
- #: includes/admin/reports/class-wc-report-sales-by-date.php:746
12301
- msgid "Gross sales amount"
12302
  msgstr ""
12303
 
12304
- #: includes/admin/reports/class-wc-report-sales-by-date.php:756
12305
- msgid "Net sales amount"
12306
  msgstr ""
12307
 
12308
- #: includes/admin/reports/class-wc-report-sales-by-product.php:119
12309
- #. translators: %s: total items sold
12310
- msgid "%s sales for the selected items"
12311
  msgstr ""
12312
 
12313
- #: includes/admin/reports/class-wc-report-sales-by-product.php:126
12314
- #. translators: %s: total items purchased
12315
- msgid "%s purchases for the selected items"
12316
  msgstr ""
12317
 
12318
- #: includes/admin/reports/class-wc-report-sales-by-product.php:174
12319
- msgid "Showing reports for:"
12320
  msgstr ""
12321
 
12322
- #: includes/admin/reports/class-wc-report-sales-by-product.php:206
12323
- #: includes/api/class-wc-rest-system-status-tools-controller.php:186
12324
- msgid "Reset"
12325
  msgstr ""
12326
 
12327
- #: includes/admin/reports/class-wc-report-sales-by-product.php:214
12328
- msgid "Product search"
12329
  msgstr ""
12330
 
12331
- #: includes/admin/reports/class-wc-report-sales-by-product.php:232
12332
- msgid "Top sellers"
 
 
 
 
 
 
12333
  msgstr ""
12334
 
12335
- #: includes/admin/reports/class-wc-report-sales-by-product.php:271
12336
- #: includes/admin/reports/class-wc-report-sales-by-product.php:323
12337
- #: includes/admin/reports/class-wc-report-sales-by-product.php:367
12338
- msgid "No products found in range"
12339
  msgstr ""
12340
 
12341
- #: includes/admin/reports/class-wc-report-sales-by-product.php:276
12342
- msgid "Top freebies"
12343
  msgstr ""
12344
 
12345
- #: includes/admin/reports/class-wc-report-sales-by-product.php:328
12346
- msgid "Top earners"
12347
  msgstr ""
12348
 
12349
- #: includes/admin/reports/class-wc-report-sales-by-product.php:423
12350
- msgid "Choose a product to view stats"
12351
  msgstr ""
12352
 
12353
- #: includes/admin/reports/class-wc-report-sales-by-product.php:536
12354
- msgid "Sales amount"
12355
  msgstr ""
12356
 
12357
- #: includes/admin/reports/class-wc-report-stock.php:46
12358
- msgid "No products found."
12359
  msgstr ""
12360
 
12361
- #: includes/admin/reports/class-wc-report-stock.php:142
12362
- #: includes/admin/views/html-admin-page-status-logs.php:35
12363
- #: includes/wc-account-functions.php:277
12364
- msgid "View"
12365
  msgstr ""
12366
 
12367
- #: includes/admin/reports/class-wc-report-stock.php:154
12368
- #: includes/widgets/class-wc-widget-product-tag-cloud.php:90
12369
- #. translators: %s: product count
12370
- msgid "%s product"
12371
  msgstr ""
12372
 
12373
- #: includes/admin/reports/class-wc-report-stock.php:175
12374
- msgid "Units in stock"
12375
  msgstr ""
12376
 
12377
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:156
12378
- msgid "Rate"
12379
  msgstr ""
12380
 
12381
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:158
12382
- msgid "Tax amount"
12383
  msgstr ""
12384
 
12385
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:158
12386
- msgid "This is the sum of the \"Tax rows\" tax amount within your orders."
12387
  msgstr ""
12388
 
12389
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:159
12390
- msgid "Shipping tax amount"
12391
  msgstr ""
12392
 
12393
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:159
12394
- msgid "This is the sum of the \"Tax rows\" shipping tax amount within your orders."
12395
  msgstr ""
12396
 
12397
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:160
12398
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:214
12399
- msgid "Total tax"
12400
  msgstr ""
12401
 
12402
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:160
12403
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:214
12404
- msgid "This is the total tax for the rate (shipping tax + product tax)."
12405
  msgstr ""
12406
 
12407
- #: includes/admin/reports/class-wc-report-taxes-by-code.php:192
12408
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:256
12409
- msgid "No taxes found in this period"
12410
  msgstr ""
12411
 
12412
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:210
12413
- msgid "Period"
12414
  msgstr ""
12415
 
12416
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:212
12417
- msgid "Total sales"
12418
  msgstr ""
12419
 
12420
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:212
12421
- msgid "This is the sum of the 'Order total' field within your orders."
12422
  msgstr ""
12423
 
12424
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:213
12425
- msgid "Total shipping"
12426
  msgstr ""
12427
 
12428
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:213
12429
- msgid "This is the sum of the 'Shipping total' field within your orders."
12430
  msgstr ""
12431
 
12432
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:215
12433
- msgid "Net profit"
12434
  msgstr ""
12435
 
12436
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:215
12437
- msgid "Total sales minus shipping and tax."
12438
  msgstr ""
12439
 
12440
- #: includes/admin/reports/class-wc-report-taxes-by-date.php:245
12441
- #: templates/checkout/form-pay.php:29
12442
- msgid "Totals"
12443
  msgstr ""
12444
 
12445
- #: includes/admin/settings/class-wc-settings-accounts.php:24
12446
- msgid "Accounts &amp; Privacy"
12447
  msgstr ""
12448
 
12449
- #: includes/admin/settings/class-wc-settings-accounts.php:42
12450
- msgid "Guest checkout"
12451
  msgstr ""
12452
 
12453
- #: includes/admin/settings/class-wc-settings-accounts.php:43
12454
- msgid "Allow customers to place orders without an account"
12455
  msgstr ""
12456
 
12457
- #: includes/admin/settings/class-wc-settings-accounts.php:51
12458
- #: includes/class-wc-download-handler.php:164 templates/auth/form-login.php:49
12459
- #: templates/global/form-login.php:48 templates/myaccount/form-login.php:36
12460
- msgid "Login"
12461
  msgstr ""
12462
 
12463
- #: includes/admin/settings/class-wc-settings-accounts.php:52
12464
- msgid "Allow customers to log into an existing account during checkout"
12465
  msgstr ""
12466
 
12467
- #: includes/admin/settings/class-wc-settings-accounts.php:60
12468
- msgid "Account creation"
12469
  msgstr ""
12470
 
12471
- #: includes/admin/settings/class-wc-settings-accounts.php:61
12472
- msgid "Allow customers to create an account during checkout"
12473
  msgstr ""
12474
 
12475
- #: includes/admin/settings/class-wc-settings-accounts.php:69
12476
- msgid "Allow customers to create an account on the \"My account\" page"
12477
  msgstr ""
12478
 
12479
- #: includes/admin/settings/class-wc-settings-accounts.php:77
12480
- msgid ""
12481
- "When creating an account, automatically generate a username from the "
12482
- "customer's email address"
12483
  msgstr ""
12484
 
12485
- #: includes/admin/settings/class-wc-settings-accounts.php:85
12486
- msgid "When creating an account, automatically generate an account password"
12487
  msgstr ""
12488
 
12489
- #: includes/admin/settings/class-wc-settings-accounts.php:93
12490
- msgid "Account erasure requests"
12491
  msgstr ""
12492
 
12493
- #: includes/admin/settings/class-wc-settings-accounts.php:94
12494
- msgid "Remove personal data from orders"
12495
  msgstr ""
12496
 
12497
- #: includes/admin/settings/class-wc-settings-accounts.php:96
12498
- #. Translators: %s URL to erasure request screen.
12499
- msgid ""
12500
- "When handling an <a href=\"%s\">account erasure request</a>, should "
12501
- "personal data within orders be retained or removed?"
12502
  msgstr ""
12503
 
12504
- #: includes/admin/settings/class-wc-settings-accounts.php:104
12505
- msgid "Remove access to downloads"
12506
  msgstr ""
12507
 
12508
- #: includes/admin/settings/class-wc-settings-accounts.php:106
12509
- #. Translators: %s URL to erasure request screen.
12510
- msgid ""
12511
- "When handling an <a href=\"%s\">account erasure request</a>, should access "
12512
- "to downloadable files be revoked and download logs cleared?"
12513
  msgstr ""
12514
 
12515
- #: includes/admin/settings/class-wc-settings-accounts.php:118
12516
- #: includes/customizer/class-wc-shop-customizer.php:756
12517
- #: includes/customizer/class-wc-shop-customizer.php:799
12518
- msgid "Privacy policy"
12519
  msgstr ""
12520
 
12521
- #: includes/admin/settings/class-wc-settings-accounts.php:121
12522
- msgid ""
12523
- "This section controls the display of your website privacy policy. The "
12524
- "privacy notices below will not show up unless a privacy page is first set."
12525
  msgstr ""
12526
 
12527
- #: includes/admin/settings/class-wc-settings-accounts.php:125
12528
- msgid "Privacy page"
12529
  msgstr ""
12530
 
12531
- #: includes/admin/settings/class-wc-settings-accounts.php:126
12532
- msgid "Choose a page to act as your privacy policy."
12533
  msgstr ""
12534
 
12535
- #: includes/admin/settings/class-wc-settings-accounts.php:136
12536
- msgid "Registration privacy policy"
12537
  msgstr ""
12538
 
12539
- #: includes/admin/settings/class-wc-settings-accounts.php:137
12540
- msgid ""
12541
- "Optionally add some text about your store privacy policy to show on account "
12542
- "registration forms."
12543
  msgstr ""
12544
 
12545
- #: includes/admin/settings/class-wc-settings-accounts.php:140
12546
- #: includes/wc-template-functions.php:760
12547
- #. translators: %s privacy policy page name and link
12548
- msgid ""
12549
- "Your personal data will be used to support your experience throughout this "
12550
- "website, to manage access to your account, and for other purposes described "
12551
- "in our %s."
12552
  msgstr ""
12553
 
12554
- #: includes/admin/settings/class-wc-settings-accounts.php:146
12555
- msgid "Checkout privacy policy"
12556
  msgstr ""
12557
 
12558
- #: includes/admin/settings/class-wc-settings-accounts.php:147
12559
- #: includes/customizer/class-wc-shop-customizer.php:800
12560
- msgid ""
12561
- "Optionally add some text about your store privacy policy to show during "
12562
- "checkout."
12563
  msgstr ""
12564
 
12565
- #: includes/admin/settings/class-wc-settings-accounts.php:150
12566
- #: includes/customizer/class-wc-shop-customizer.php:736
12567
- #: includes/wc-template-functions.php:756
12568
- #. translators: %s privacy policy page name and link
12569
- msgid ""
12570
- "Your personal data will be used to process your order, support your "
12571
- "experience throughout this website, and for other purposes described in our "
12572
- "%s."
12573
  msgstr ""
12574
 
12575
- #: includes/admin/settings/class-wc-settings-accounts.php:159
12576
- msgid "Personal data retention"
12577
  msgstr ""
12578
 
12579
- #: includes/admin/settings/class-wc-settings-accounts.php:160
12580
- msgid ""
12581
- "Choose how long to retain personal data when it's no longer needed for "
12582
- "processing. Leave the following options blank to retain this data "
12583
- "indefinitely."
12584
  msgstr ""
12585
 
12586
- #: includes/admin/settings/class-wc-settings-accounts.php:165
12587
- msgid "Retain inactive accounts "
12588
  msgstr ""
12589
 
12590
- #: includes/admin/settings/class-wc-settings-accounts.php:166
12591
- msgid ""
12592
- "Inactive accounts are those which have not logged in, or placed an order, "
12593
- "for the specified duration. They will be deleted. Any orders will be "
12594
- "converted into guest orders."
12595
  msgstr ""
12596
 
12597
- #: includes/admin/settings/class-wc-settings-accounts.php:177
12598
- msgid "Retain pending orders "
12599
  msgstr ""
12600
 
12601
- #: includes/admin/settings/class-wc-settings-accounts.php:178
12602
- msgid ""
12603
- "Pending orders are unpaid and may have been abandoned by the customer. They "
12604
- "will be trashed after the specified duration."
12605
  msgstr ""
12606
 
12607
- #: includes/admin/settings/class-wc-settings-accounts.php:186
12608
- msgid "Retain failed orders"
12609
  msgstr ""
12610
 
12611
- #: includes/admin/settings/class-wc-settings-accounts.php:187
12612
- msgid ""
12613
- "Failed orders are unpaid and may have been abandoned by the customer. They "
12614
- "will be trashed after the specified duration."
12615
  msgstr ""
12616
 
12617
- #: includes/admin/settings/class-wc-settings-accounts.php:195
12618
- msgid "Retain cancelled orders"
12619
  msgstr ""
12620
 
12621
- #: includes/admin/settings/class-wc-settings-accounts.php:196
12622
- msgid ""
12623
- "Cancelled orders are unpaid and may have been cancelled by the store owner "
12624
- "or customer. They will be trashed after the specified duration."
12625
  msgstr ""
12626
 
12627
- #: includes/admin/settings/class-wc-settings-accounts.php:204
12628
- msgid "Retain completed orders"
12629
  msgstr ""
12630
 
12631
- #: includes/admin/settings/class-wc-settings-accounts.php:205
12632
- msgid ""
12633
- "Retain completed orders for a specified duration before anonymizing the "
12634
- "personal data within them."
12635
  msgstr ""
12636
 
12637
- #: includes/admin/settings/class-wc-settings-advanced.php:42
12638
- #: includes/admin/settings/class-wc-settings-advanced.php:65
12639
- msgid "Page setup"
12640
  msgstr ""
12641
 
12642
- #: includes/admin/settings/class-wc-settings-advanced.php:45
12643
- #: includes/admin/settings/class-wc-settings-advanced.php:313
12644
- msgid "Legacy API"
12645
  msgstr ""
12646
 
12647
- #: includes/admin/settings/class-wc-settings-advanced.php:66
12648
- msgid ""
12649
- "These pages need to be set so that WooCommerce knows where to send users to "
12650
- "checkout."
12651
  msgstr ""
12652
 
12653
- #: includes/admin/settings/class-wc-settings-advanced.php:72
12654
- msgid "Cart page"
12655
  msgstr ""
12656
 
12657
- #: includes/admin/settings/class-wc-settings-advanced.php:74
12658
- #: includes/admin/settings/class-wc-settings-advanced.php:86
12659
- #: includes/admin/settings/class-wc-settings-advanced.php:98
12660
- #. Translators: %s Page contents.
12661
- msgid "Page contents: [%s]"
12662
  msgstr ""
12663
 
12664
- #: includes/admin/settings/class-wc-settings-advanced.php:84
12665
- msgid "Checkout page"
12666
  msgstr ""
12667
 
12668
- #: includes/admin/settings/class-wc-settings-advanced.php:96
12669
- msgid "My account page"
12670
  msgstr ""
12671
 
12672
- #: includes/admin/settings/class-wc-settings-advanced.php:108
12673
- #: includes/customizer/class-wc-shop-customizer.php:757
12674
- #: includes/customizer/class-wc-shop-customizer.php:811
12675
- msgid "Terms and conditions"
12676
  msgstr ""
12677
 
12678
- #: includes/admin/settings/class-wc-settings-advanced.php:109
12679
- msgid ""
12680
- "If you define a \"Terms\" page the customer will be asked if they accept "
12681
- "them when checking out."
12682
  msgstr ""
12683
 
12684
- #: includes/admin/settings/class-wc-settings-advanced.php:132
12685
- msgid "Secure checkout"
12686
  msgstr ""
12687
 
12688
- #: includes/admin/settings/class-wc-settings-advanced.php:133
12689
- msgid "Force secure checkout"
12690
  msgstr ""
12691
 
12692
- #: includes/admin/settings/class-wc-settings-advanced.php:140
12693
- #. Translators: %s Docs URL.
12694
- msgid ""
12695
- "Force SSL (HTTPS) on the checkout pages (<a href=\"%s\" "
12696
- "target=\"_blank\">an SSL Certificate is required</a>)."
12697
  msgstr ""
12698
 
12699
- #: includes/admin/settings/class-wc-settings-advanced.php:144
12700
- msgid "Force HTTP when leaving the checkout"
12701
  msgstr ""
12702
 
12703
- #: includes/admin/settings/class-wc-settings-advanced.php:158
12704
- msgid "Checkout endpoints"
12705
  msgstr ""
12706
 
12707
- #: includes/admin/settings/class-wc-settings-advanced.php:160
12708
- msgid ""
12709
- "Endpoints are appended to your page URLs to handle specific actions during "
12710
- "the checkout process. They should be unique."
12711
  msgstr ""
12712
 
12713
- #: includes/admin/settings/class-wc-settings-advanced.php:165
12714
- #: includes/wc-account-functions.php:273 templates/checkout/thankyou.php:33
12715
- msgid "Pay"
12716
  msgstr ""
12717
 
12718
- #: includes/admin/settings/class-wc-settings-advanced.php:166
12719
- msgid "Endpoint for the \"Checkout &rarr; Pay\" page."
12720
  msgstr ""
12721
 
12722
- #: includes/admin/settings/class-wc-settings-advanced.php:174
12723
- #: includes/class-wc-query.php:102
12724
- msgid "Order received"
12725
  msgstr ""
12726
 
12727
- #: includes/admin/settings/class-wc-settings-advanced.php:175
12728
- msgid "Endpoint for the \"Checkout &rarr; Order received\" page."
12729
  msgstr ""
12730
 
12731
- #: includes/admin/settings/class-wc-settings-advanced.php:183
12732
- #: includes/class-wc-query.php:130
12733
- #: templates/myaccount/form-add-payment-method.php:52
12734
- #: templates/myaccount/payment-methods.php:80
12735
- msgid "Add payment method"
12736
  msgstr ""
12737
 
12738
- #: includes/admin/settings/class-wc-settings-advanced.php:184
12739
- msgid "Endpoint for the \"Checkout &rarr; Add payment method\" page."
12740
  msgstr ""
12741
 
12742
- #: includes/admin/settings/class-wc-settings-advanced.php:192
12743
- msgid "Delete payment method"
12744
  msgstr ""
12745
 
12746
- #: includes/admin/settings/class-wc-settings-advanced.php:193
12747
- msgid "Endpoint for the delete payment method page."
12748
  msgstr ""
12749
 
12750
- #: includes/admin/settings/class-wc-settings-advanced.php:201
12751
- msgid "Set default payment method"
12752
  msgstr ""
12753
 
12754
- #: includes/admin/settings/class-wc-settings-advanced.php:202
12755
- msgid "Endpoint for the setting a default payment method page."
12756
  msgstr ""
12757
 
12758
- #: includes/admin/settings/class-wc-settings-advanced.php:215
12759
- msgid "Account endpoints"
12760
  msgstr ""
12761
 
12762
- #: includes/admin/settings/class-wc-settings-advanced.php:217
12763
- msgid ""
12764
- "Endpoints are appended to your page URLs to handle specific actions on the "
12765
- "accounts pages. They should be unique and can be left blank to disable the "
12766
- "endpoint."
12767
  msgstr ""
12768
 
12769
- #: includes/admin/settings/class-wc-settings-advanced.php:223
12770
- msgid "Endpoint for the \"My account &rarr; Orders\" page."
12771
  msgstr ""
12772
 
12773
- #: includes/admin/settings/class-wc-settings-advanced.php:231
12774
- #: includes/class-wc-post-types.php:377
12775
- msgid "View order"
12776
  msgstr ""
12777
 
12778
- #: includes/admin/settings/class-wc-settings-advanced.php:232
12779
- msgid "Endpoint for the \"My account &rarr; View order\" page."
12780
  msgstr ""
12781
 
12782
- #: includes/admin/settings/class-wc-settings-advanced.php:241
12783
- msgid "Endpoint for the \"My account &rarr; Downloads\" page."
12784
  msgstr ""
12785
 
12786
- #: includes/admin/settings/class-wc-settings-advanced.php:249
12787
- msgid "Edit account"
12788
  msgstr ""
12789
 
12790
- #: includes/admin/settings/class-wc-settings-advanced.php:250
12791
- msgid "Endpoint for the \"My account &rarr; Edit account\" page."
12792
  msgstr ""
12793
 
12794
- #: includes/admin/settings/class-wc-settings-advanced.php:258
12795
- #: includes/class-wc-query.php:124 includes/wc-account-functions.php:101
12796
- msgid "Addresses"
12797
  msgstr ""
12798
 
12799
- #: includes/admin/settings/class-wc-settings-advanced.php:259
12800
- msgid "Endpoint for the \"My account &rarr; Addresses\" page."
12801
  msgstr ""
12802
 
12803
- #: includes/admin/settings/class-wc-settings-advanced.php:267
12804
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:37
12805
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:55
12806
- #: includes/class-wc-query.php:127 includes/wc-account-functions.php:102
12807
- msgid "Payment methods"
12808
  msgstr ""
12809
 
12810
- #: includes/admin/settings/class-wc-settings-advanced.php:268
12811
- msgid "Endpoint for the \"My account &rarr; Payment methods\" page."
12812
  msgstr ""
12813
 
12814
- #: includes/admin/settings/class-wc-settings-advanced.php:277
12815
- msgid "Endpoint for the \"My account &rarr; Lost password\" page."
12816
  msgstr ""
12817
 
12818
- #: includes/admin/settings/class-wc-settings-advanced.php:285
12819
- #: includes/wc-account-functions.php:104
12820
- #: templates/auth/form-grant-access.php:39
12821
- msgid "Logout"
12822
  msgstr ""
12823
 
12824
- #: includes/admin/settings/class-wc-settings-advanced.php:286
12825
- msgid ""
12826
- "Endpoint for the triggering logout. You can add this to your menus via a "
12827
- "custom link: yoursite.com/?customer-logout=true"
12828
  msgstr ""
12829
 
12830
- #: includes/admin/settings/class-wc-settings-advanced.php:314
12831
- msgid "Enable the legacy REST API"
12832
  msgstr ""
12833
 
12834
- #: includes/admin/settings/class-wc-settings-emails.php:25
12835
- msgid "Emails"
12836
  msgstr ""
12837
 
12838
- #: includes/admin/settings/class-wc-settings-emails.php:38
12839
- msgid "Email options"
12840
  msgstr ""
12841
 
12842
- #: includes/admin/settings/class-wc-settings-emails.php:53
12843
- msgid "Email notifications"
12844
  msgstr ""
12845
 
12846
- #: includes/admin/settings/class-wc-settings-emails.php:54
12847
- msgid ""
12848
- "Email notifications sent from WooCommerce are listed below. Click on an "
12849
- "email to configure it."
12850
  msgstr ""
12851
 
12852
- #: includes/admin/settings/class-wc-settings-emails.php:72
12853
- msgid "Email sender options"
12854
  msgstr ""
12855
 
12856
- #: includes/admin/settings/class-wc-settings-emails.php:79
12857
- msgid "\"From\" name"
12858
  msgstr ""
12859
 
12860
- #: includes/admin/settings/class-wc-settings-emails.php:80
12861
- msgid "How the sender name appears in outgoing WooCommerce emails."
12862
  msgstr ""
12863
 
12864
- #: includes/admin/settings/class-wc-settings-emails.php:90
12865
- msgid "\"From\" address"
12866
  msgstr ""
12867
 
12868
- #: includes/admin/settings/class-wc-settings-emails.php:91
12869
- msgid "How the sender email appears in outgoing WooCommerce emails."
12870
  msgstr ""
12871
 
12872
- #: includes/admin/settings/class-wc-settings-emails.php:109
12873
- msgid "Email template"
12874
  msgstr ""
12875
 
12876
- #: includes/admin/settings/class-wc-settings-emails.php:111
12877
- msgid ""
12878
- "This section lets you customize the WooCommerce emails. <a href=\"%s\" "
12879
- "target=\"_blank\">Click here to preview your email template</a>."
12880
  msgstr ""
12881
 
12882
- #: includes/admin/settings/class-wc-settings-emails.php:116
12883
- msgid "Header image"
12884
  msgstr ""
12885
 
12886
- #: includes/admin/settings/class-wc-settings-emails.php:117
12887
- msgid ""
12888
- "URL to an image you want to show in the email header. Upload images using "
12889
- "the media uploader (Admin > Media)."
12890
  msgstr ""
12891
 
12892
- #: includes/admin/settings/class-wc-settings-emails.php:128
12893
- msgid "Footer text"
12894
  msgstr ""
12895
 
12896
- #: includes/admin/settings/class-wc-settings-emails.php:129
12897
- msgid "The text to appear in the footer of WooCommerce emails."
12898
  msgstr ""
12899
 
12900
- #: includes/admin/settings/class-wc-settings-emails.php:129
12901
- #: includes/emails/class-wc-email-cancelled-order.php:158
12902
- #: includes/emails/class-wc-email-cancelled-order.php:167
12903
- #: includes/emails/class-wc-email-customer-completed-order.php:147
12904
- #: includes/emails/class-wc-email-customer-completed-order.php:156
12905
- #: includes/emails/class-wc-email-customer-invoice.php:184
12906
- #: includes/emails/class-wc-email-customer-invoice.php:193
12907
- #: includes/emails/class-wc-email-customer-invoice.php:202
12908
- #: includes/emails/class-wc-email-customer-invoice.php:211
12909
- #: includes/emails/class-wc-email-customer-refunded-order.php:239
12910
- #: includes/emails/class-wc-email-customer-refunded-order.php:248
12911
- #: includes/emails/class-wc-email-customer-refunded-order.php:257
12912
- #: includes/emails/class-wc-email-customer-refunded-order.php:266
12913
- #: includes/emails/class-wc-email-failed-order.php:158
12914
- #: includes/emails/class-wc-email-failed-order.php:167
12915
- #: includes/emails/class-wc-email-new-order.php:163
12916
- #: includes/emails/class-wc-email-new-order.php:172
12917
- #: includes/emails/class-wc-email.php:612
12918
- #: includes/emails/class-wc-email.php:621
12919
- #. translators: %s: list of placeholders
12920
- msgid "Available placeholders: %s"
12921
  msgstr ""
12922
 
12923
- #: includes/admin/settings/class-wc-settings-emails.php:140
12924
- msgid "Base color"
12925
  msgstr ""
12926
 
12927
- #: includes/admin/settings/class-wc-settings-emails.php:142
12928
- #. translators: %s: default color
12929
- msgid "The base color for WooCommerce email templates. Default %s."
12930
  msgstr ""
12931
 
12932
- #: includes/admin/settings/class-wc-settings-emails.php:152
12933
- msgid "Background color"
12934
  msgstr ""
12935
 
12936
- #: includes/admin/settings/class-wc-settings-emails.php:154
12937
- #. translators: %s: default color
12938
- msgid "The background color for WooCommerce email templates. Default %s."
12939
  msgstr ""
12940
 
12941
- #: includes/admin/settings/class-wc-settings-emails.php:164
12942
- msgid "Body background color"
12943
  msgstr ""
12944
 
12945
- #: includes/admin/settings/class-wc-settings-emails.php:166
12946
- #. translators: %s: default color
12947
- msgid "The main body background color. Default %s."
12948
  msgstr ""
12949
 
12950
- #: includes/admin/settings/class-wc-settings-emails.php:176
12951
- msgid "Body text color"
12952
  msgstr ""
12953
 
12954
- #: includes/admin/settings/class-wc-settings-emails.php:178
12955
- #. translators: %s: default color
12956
- msgid "The main body text color. Default %s."
12957
  msgstr ""
12958
 
12959
- #: includes/admin/settings/class-wc-settings-emails.php:264
12960
- msgid "Content type"
12961
  msgstr ""
12962
 
12963
- #: includes/admin/settings/class-wc-settings-emails.php:265
12964
- #: includes/emails/class-wc-email-cancelled-order.php:145
12965
- #: includes/emails/class-wc-email-failed-order.php:145
12966
- #: includes/emails/class-wc-email-new-order.php:150
12967
- msgid "Recipient(s)"
12968
  msgstr ""
12969
 
12970
- #: includes/admin/settings/class-wc-settings-emails.php:291
12971
- msgid "Customer"
12972
  msgstr ""
12973
 
12974
- #: includes/admin/settings/class-wc-settings-emails.php:298
12975
- msgid "Manually sent"
12976
  msgstr ""
12977
 
12978
- #: includes/admin/settings/class-wc-settings-emails.php:298
12979
- msgid "Manual"
12980
  msgstr ""
12981
 
12982
- #: includes/admin/settings/class-wc-settings-emails.php:302
12983
- #: includes/wc-webhook-functions.php:89
12984
- msgid "Disabled"
12985
  msgstr ""
12986
 
12987
- #: includes/admin/settings/class-wc-settings-emails.php:314
12988
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:166
12989
- msgid "Manage"
12990
  msgstr ""
12991
 
12992
- #: includes/admin/settings/class-wc-settings-general.php:43
12993
- msgid "No location by default"
12994
  msgstr ""
12995
 
12996
- #: includes/admin/settings/class-wc-settings-general.php:44
12997
- #: includes/admin/settings/views/settings-tax.php:41
12998
- msgid "Shop base address"
12999
  msgstr ""
13000
 
13001
- #: includes/admin/settings/class-wc-settings-general.php:45
13002
- msgid "Geolocate"
13003
  msgstr ""
13004
 
13005
- #: includes/admin/settings/class-wc-settings-general.php:46
13006
- msgid "Geolocate (with page caching support)"
13007
  msgstr ""
13008
 
13009
- #: includes/admin/settings/class-wc-settings-general.php:57
13010
- msgid "Store Address"
13011
  msgstr ""
13012
 
13013
- #: includes/admin/settings/class-wc-settings-general.php:59
13014
- msgid ""
13015
- "This is where your business is located. Tax rates and shipping rates will "
13016
- "use this address."
13017
  msgstr ""
13018
 
13019
- #: includes/admin/settings/class-wc-settings-general.php:65
13020
- msgid "The street address for your business location."
13021
  msgstr ""
13022
 
13023
- #: includes/admin/settings/class-wc-settings-general.php:74
13024
- msgid "An additional, optional address line for your business location."
13025
  msgstr ""
13026
 
13027
- #: includes/admin/settings/class-wc-settings-general.php:83
13028
- msgid "The city in which your business is located."
13029
  msgstr ""
13030
 
13031
- #: includes/admin/settings/class-wc-settings-general.php:91
13032
- msgid "Country / State"
13033
  msgstr ""
13034
 
13035
- #: includes/admin/settings/class-wc-settings-general.php:92
13036
- msgid ""
13037
- "The country and state or province, if any, in which your business is "
13038
- "located."
13039
  msgstr ""
13040
 
13041
- #: includes/admin/settings/class-wc-settings-general.php:101
13042
- msgid "The postal code, if any, in which your business is located."
13043
  msgstr ""
13044
 
13045
- #: includes/admin/settings/class-wc-settings-general.php:115
13046
- msgid "General options"
13047
  msgstr ""
13048
 
13049
- #: includes/admin/settings/class-wc-settings-general.php:122
13050
- msgid "Selling location(s)"
 
 
 
 
13051
  msgstr ""
13052
 
13053
- #: includes/admin/settings/class-wc-settings-general.php:123
13054
- msgid "This option lets you limit which countries you are willing to sell to."
13055
  msgstr ""
13056
 
13057
- #: includes/admin/settings/class-wc-settings-general.php:131
13058
- msgid "Sell to all countries"
13059
  msgstr ""
13060
 
13061
- #: includes/admin/settings/class-wc-settings-general.php:132
13062
- #: includes/admin/settings/class-wc-settings-general.php:138
13063
- msgid "Sell to all countries, except for&hellip;"
13064
  msgstr ""
13065
 
13066
- #: includes/admin/settings/class-wc-settings-general.php:133
13067
- #: includes/admin/settings/class-wc-settings-general.php:147
13068
- msgid "Sell to specific countries"
13069
  msgstr ""
13070
 
13071
- #: includes/admin/settings/class-wc-settings-general.php:156
13072
- msgid "Shipping location(s)"
13073
  msgstr ""
13074
 
13075
- #: includes/admin/settings/class-wc-settings-general.php:157
13076
- msgid ""
13077
- "Choose which countries you want to ship to, or choose to ship to all "
13078
- "locations you sell to."
13079
  msgstr ""
13080
 
13081
- #: includes/admin/settings/class-wc-settings-general.php:164
13082
- msgid "Ship to all countries you sell to"
13083
  msgstr ""
13084
 
13085
- #: includes/admin/settings/class-wc-settings-general.php:165
13086
- msgid "Ship to all countries"
13087
  msgstr ""
13088
 
13089
- #: includes/admin/settings/class-wc-settings-general.php:166
13090
- msgid "Ship to specific countries only"
13091
  msgstr ""
13092
 
13093
- #: includes/admin/settings/class-wc-settings-general.php:167
13094
- msgid "Disable shipping &amp; shipping calculations"
13095
  msgstr ""
13096
 
13097
- #: includes/admin/settings/class-wc-settings-general.php:172
13098
- msgid "Ship to specific countries"
13099
  msgstr ""
13100
 
13101
- #: includes/admin/settings/class-wc-settings-general.php:181
13102
- msgid "Default customer location"
13103
  msgstr ""
13104
 
13105
- #: includes/admin/settings/class-wc-settings-general.php:183
13106
- msgid ""
13107
- "This option determines a customers default location. The MaxMind GeoLite "
13108
- "Database will be periodically downloaded to your wp-content directory if "
13109
- "using geolocation."
13110
  msgstr ""
13111
 
13112
- #: includes/admin/settings/class-wc-settings-general.php:191
13113
- msgid "Enable taxes"
13114
  msgstr ""
13115
 
13116
- #: includes/admin/settings/class-wc-settings-general.php:192
13117
- msgid "Enable tax rates and calculations"
13118
  msgstr ""
13119
 
13120
- #: includes/admin/settings/class-wc-settings-general.php:196
13121
- msgid "Rates will be configurable and taxes will be calculated during checkout."
13122
  msgstr ""
13123
 
13124
- #: includes/admin/settings/class-wc-settings-general.php:200
13125
- msgid "Enable coupons"
13126
  msgstr ""
13127
 
13128
- #: includes/admin/settings/class-wc-settings-general.php:201
13129
- msgid "Enable the use of coupon codes"
13130
  msgstr ""
13131
 
13132
- #: includes/admin/settings/class-wc-settings-general.php:207
13133
- msgid "Coupons can be applied from the cart and checkout pages."
13134
  msgstr ""
13135
 
13136
- #: includes/admin/settings/class-wc-settings-general.php:211
13137
- msgid "Calculate coupon discounts sequentially"
13138
  msgstr ""
13139
 
13140
- #: includes/admin/settings/class-wc-settings-general.php:215
13141
- msgid ""
13142
- "When applying multiple coupons, apply the first coupon to the full price "
13143
- "and the second coupon to the discounted price and so on."
13144
  msgstr ""
13145
 
13146
- #: includes/admin/settings/class-wc-settings-general.php:227
13147
- msgid "Currency options"
13148
  msgstr ""
13149
 
13150
- #: includes/admin/settings/class-wc-settings-general.php:229
13151
- msgid "The following options affect how prices are displayed on the frontend."
13152
  msgstr ""
13153
 
13154
- #: includes/admin/settings/class-wc-settings-general.php:234
13155
- #: includes/admin/views/html-admin-page-status-report.php:617
13156
- msgid "Currency"
13157
  msgstr ""
13158
 
13159
- #: includes/admin/settings/class-wc-settings-general.php:235
13160
- msgid ""
13161
- "This controls what currency prices are listed at in the catalog and which "
13162
- "currency gateways will take payments in."
13163
  msgstr ""
13164
 
13165
- #: includes/admin/settings/class-wc-settings-general.php:245
13166
- #: includes/admin/views/html-admin-page-status-report.php:622
13167
- msgid "Currency position"
13168
  msgstr ""
13169
 
13170
- #: includes/admin/settings/class-wc-settings-general.php:246
13171
- msgid "This controls the position of the currency symbol."
13172
  msgstr ""
13173
 
13174
- #: includes/admin/settings/class-wc-settings-general.php:252
13175
- msgid "Left"
13176
  msgstr ""
13177
 
13178
- #: includes/admin/settings/class-wc-settings-general.php:253
13179
- msgid "Right"
13180
  msgstr ""
13181
 
13182
- #: includes/admin/settings/class-wc-settings-general.php:254
13183
- msgid "Left with space"
13184
  msgstr ""
13185
 
13186
- #: includes/admin/settings/class-wc-settings-general.php:255
13187
- msgid "Right with space"
13188
  msgstr ""
13189
 
13190
- #: includes/admin/settings/class-wc-settings-general.php:261
13191
- #: includes/admin/views/html-admin-page-status-report.php:627
13192
- msgid "Thousand separator"
13193
  msgstr ""
13194
 
13195
- #: includes/admin/settings/class-wc-settings-general.php:262
13196
- msgid "This sets the thousand separator of displayed prices."
13197
  msgstr ""
13198
 
13199
- #: includes/admin/settings/class-wc-settings-general.php:271
13200
- #: includes/admin/views/html-admin-page-status-report.php:632
13201
- msgid "Decimal separator"
13202
  msgstr ""
13203
 
13204
- #: includes/admin/settings/class-wc-settings-general.php:272
13205
- msgid "This sets the decimal separator of displayed prices."
13206
  msgstr ""
13207
 
13208
- #: includes/admin/settings/class-wc-settings-general.php:281
13209
- #: includes/admin/views/html-admin-page-status-report.php:637
13210
- msgid "Number of decimals"
13211
  msgstr ""
13212
 
13213
- #: includes/admin/settings/class-wc-settings-general.php:282
13214
- msgid "This sets the number of decimal points shown in displayed prices."
13215
  msgstr ""
13216
 
13217
- #: includes/admin/settings/class-wc-settings-general.php:338
13218
- #. translators: %s: URL to customizer.
13219
- msgid ""
13220
- "Looking for the store notice setting? It can now be found <a href=\"%s\">in "
13221
- "the Customizer</a>."
13222
  msgstr ""
13223
 
13224
- #: includes/admin/settings/class-wc-settings-integrations.php:27
13225
- msgid "Integration"
13226
  msgstr ""
13227
 
13228
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:56
13229
- msgid ""
13230
- "Installed payment methods are listed below. Drag and drop gateways to "
13231
- "control their display order on the frontend."
13232
  msgstr ""
13233
 
13234
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:116
13235
- #: includes/wc-account-functions.php:235
13236
- msgid "Method"
13237
  msgstr ""
13238
 
13239
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:155
13240
- msgid "(no title)"
13241
  msgstr ""
13242
 
13243
- #: includes/admin/settings/class-wc-settings-payment-gateways.php:168
13244
- msgid "Set up"
13245
  msgstr ""
13246
 
13247
- #: includes/admin/settings/class-wc-settings-products.php:81
13248
- #. translators: %s: URL to customizer.
13249
- msgid ""
13250
- "Looking for the product display options? They can now be found in the "
13251
- "Customizer. <a href=\"%s\">Go see them in action here.</a>"
13252
  msgstr ""
13253
 
13254
- #: includes/admin/settings/class-wc-settings-products.php:137
13255
- msgid "Manage stock"
13256
  msgstr ""
13257
 
13258
- #: includes/admin/settings/class-wc-settings-products.php:138
13259
- msgid "Enable stock management"
13260
  msgstr ""
13261
 
13262
- #: includes/admin/settings/class-wc-settings-products.php:145
13263
- msgid "Hold stock (minutes)"
13264
  msgstr ""
13265
 
13266
- #: includes/admin/settings/class-wc-settings-products.php:146
13267
- msgid ""
13268
- "Hold stock (for unpaid orders) for x minutes. When this limit is reached, "
13269
- "the pending order will be cancelled. Leave blank to disable."
13270
  msgstr ""
13271
 
13272
- #: includes/admin/settings/class-wc-settings-products.php:160
13273
- msgid "Notifications"
13274
  msgstr ""
13275
 
13276
- #: includes/admin/settings/class-wc-settings-products.php:161
13277
- msgid "Enable low stock notifications"
13278
  msgstr ""
13279
 
13280
- #: includes/admin/settings/class-wc-settings-products.php:171
13281
- msgid "Enable out of stock notifications"
13282
  msgstr ""
13283
 
13284
- #: includes/admin/settings/class-wc-settings-products.php:181
13285
- msgid "Notification recipient(s)"
13286
  msgstr ""
13287
 
13288
- #: includes/admin/settings/class-wc-settings-products.php:182
13289
- msgid "Enter recipients (comma separated) that will receive this notification."
13290
  msgstr ""
13291
 
13292
- #: includes/admin/settings/class-wc-settings-products.php:193
13293
- msgid "Low stock threshold"
13294
  msgstr ""
13295
 
13296
- #: includes/admin/settings/class-wc-settings-products.php:194
13297
- msgid "When product stock reaches this amount you will be notified via email."
13298
  msgstr ""
13299
 
13300
- #: includes/admin/settings/class-wc-settings-products.php:209
13301
- msgid "Out of stock threshold"
13302
  msgstr ""
13303
 
13304
- #: includes/admin/settings/class-wc-settings-products.php:210
13305
- msgid ""
13306
- "When product stock reaches this amount the stock status will change to "
13307
- "\"out of stock\" and you will be notified via email. This setting does not "
13308
- "affect existing \"in stock\" products."
13309
  msgstr ""
13310
 
13311
- #: includes/admin/settings/class-wc-settings-products.php:224
13312
- msgid "Out of stock visibility"
13313
  msgstr ""
13314
 
13315
- #: includes/admin/settings/class-wc-settings-products.php:225
13316
- msgid "Hide out of stock items from the catalog"
13317
  msgstr ""
13318
 
13319
- #: includes/admin/settings/class-wc-settings-products.php:232
13320
- msgid "Stock display format"
13321
  msgstr ""
13322
 
13323
- #: includes/admin/settings/class-wc-settings-products.php:233
13324
- msgid "This controls how stock quantities are displayed on the frontend."
13325
  msgstr ""
13326
 
13327
- #: includes/admin/settings/class-wc-settings-products.php:240
13328
- msgid "Always show quantity remaining in stock e.g. \"12 in stock\""
13329
  msgstr ""
13330
 
13331
- #: includes/admin/settings/class-wc-settings-products.php:241
13332
- msgid "Only show quantity remaining in stock when low e.g. \"Only 2 left in stock\""
13333
  msgstr ""
13334
 
13335
- #: includes/admin/settings/class-wc-settings-products.php:242
13336
- msgid "Never show quantity remaining in stock"
13337
  msgstr ""
13338
 
13339
- #: includes/admin/settings/class-wc-settings-products.php:265
13340
- msgid "File download method"
13341
  msgstr ""
13342
 
13343
- #: includes/admin/settings/class-wc-settings-products.php:268
13344
- #. translators: 1: X-Accel-Redirect 2: X-Sendfile 3: mod_xsendfile
13345
- msgid ""
13346
- "Forcing downloads will keep URLs hidden, but some servers may serve large "
13347
- "files unreliably. If supported, %1$s / %2$s can be used to serve downloads "
13348
- "instead (server requires %3$s)."
13349
  msgstr ""
13350
 
13351
- #: includes/admin/settings/class-wc-settings-products.php:280
13352
- msgid "Force downloads"
13353
  msgstr ""
13354
 
13355
- #: includes/admin/settings/class-wc-settings-products.php:281
13356
- msgid "X-Accel-Redirect/X-Sendfile"
13357
  msgstr ""
13358
 
13359
- #: includes/admin/settings/class-wc-settings-products.php:282
13360
- msgid "Redirect only"
13361
  msgstr ""
13362
 
13363
- #: includes/admin/settings/class-wc-settings-products.php:288
13364
- msgid "Access restriction"
13365
  msgstr ""
13366
 
13367
- #: includes/admin/settings/class-wc-settings-products.php:289
13368
- msgid "Downloads require login"
13369
  msgstr ""
13370
 
13371
- #: includes/admin/settings/class-wc-settings-products.php:293
13372
- msgid "This setting does not apply to guest purchases."
13373
  msgstr ""
13374
 
13375
- #: includes/admin/settings/class-wc-settings-products.php:299
13376
- msgid "Grant access to downloadable products after payment"
13377
  msgstr ""
13378
 
13379
- #: includes/admin/settings/class-wc-settings-products.php:303
13380
- msgid ""
13381
- "Enable this option to grant access to downloads when orders are "
13382
- "\"processing\", rather than \"completed\"."
13383
  msgstr ""
13384
 
13385
- #: includes/admin/settings/class-wc-settings-products.php:321
13386
- msgid "Shop pages"
13387
  msgstr ""
13388
 
13389
- #: includes/admin/settings/class-wc-settings-products.php:327
13390
- msgid "Shop page"
13391
  msgstr ""
13392
 
13393
- #: includes/admin/settings/class-wc-settings-products.php:328
13394
- msgid ""
13395
- "The base page can also be used in your <a href=\"%s\">product "
13396
- "permalinks</a>."
13397
  msgstr ""
13398
 
13399
- #: includes/admin/settings/class-wc-settings-products.php:334
13400
- msgid ""
13401
- "This sets the base page of your shop - this is where your product archive "
13402
- "will be."
13403
  msgstr ""
13404
 
13405
- #: includes/admin/settings/class-wc-settings-products.php:337
13406
- msgid "Add to cart behaviour"
13407
  msgstr ""
13408
 
13409
- #: includes/admin/settings/class-wc-settings-products.php:338
13410
- msgid "Redirect to the cart page after successful addition"
13411
  msgstr ""
13412
 
13413
- #: includes/admin/settings/class-wc-settings-products.php:345
13414
- msgid "Enable AJAX add to cart buttons on archives"
13415
  msgstr ""
13416
 
13417
- #: includes/admin/settings/class-wc-settings-products.php:357
13418
- msgid "Measurements"
13419
  msgstr ""
13420
 
13421
- #: includes/admin/settings/class-wc-settings-products.php:363
13422
- msgid "Weight unit"
13423
  msgstr ""
13424
 
13425
- #: includes/admin/settings/class-wc-settings-products.php:364
13426
- msgid "This controls what unit you will define weights in."
13427
  msgstr ""
13428
 
13429
- #: includes/admin/settings/class-wc-settings-products.php:380
13430
- msgid "Dimensions unit"
13431
  msgstr ""
13432
 
13433
- #: includes/admin/settings/class-wc-settings-products.php:381
13434
- msgid "This controls what unit you will define lengths in."
13435
  msgstr ""
13436
 
13437
- #: includes/admin/settings/class-wc-settings-products.php:411
13438
- msgid "Enable product reviews"
13439
  msgstr ""
13440
 
13441
- #: includes/admin/settings/class-wc-settings-products.php:420
13442
- msgid "Show \"verified owner\" label on customer reviews"
13443
  msgstr ""
13444
 
13445
- #: includes/admin/settings/class-wc-settings-products.php:430
13446
- msgid "Reviews can only be left by \"verified owners\""
13447
  msgstr ""
13448
 
13449
- #: includes/admin/settings/class-wc-settings-products.php:440
13450
- msgid "Product ratings"
13451
  msgstr ""
13452
 
13453
- #: includes/admin/settings/class-wc-settings-products.php:441
13454
- msgid "Enable star rating on reviews"
13455
  msgstr ""
13456
 
13457
- #: includes/admin/settings/class-wc-settings-products.php:450
13458
- msgid "Star ratings should be required, not optional"
13459
  msgstr ""
13460
 
13461
- #: includes/admin/settings/class-wc-settings-shipping.php:47
13462
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:14
13463
- #: includes/admin/settings/views/html-admin-page-shipping-zones-instance.php:7
13464
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:8
13465
- #: includes/admin/views/html-notice-legacy-shipping.php:13
13466
- msgid "Shipping zones"
13467
  msgstr ""
13468
 
13469
- #: includes/admin/settings/class-wc-settings-shipping.php:48
13470
- #: includes/admin/settings/class-wc-settings-shipping.php:82
13471
- msgid "Shipping options"
13472
  msgstr ""
13473
 
13474
- #: includes/admin/settings/class-wc-settings-shipping.php:49
13475
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:14
13476
- #: includes/class-wc-post-types.php:165
13477
- msgid "Shipping classes"
13478
  msgstr ""
13479
 
13480
- #: includes/admin/settings/class-wc-settings-shipping.php:88
13481
- msgid "Calculations"
13482
  msgstr ""
13483
 
13484
- #: includes/admin/settings/class-wc-settings-shipping.php:89
13485
- msgid "Enable the shipping calculator on the cart page"
13486
  msgstr ""
13487
 
13488
- #: includes/admin/settings/class-wc-settings-shipping.php:98
13489
- msgid "Hide shipping costs until an address is entered"
13490
  msgstr ""
13491
 
13492
- #: includes/admin/settings/class-wc-settings-shipping.php:106
13493
- msgid "Shipping destination"
13494
  msgstr ""
13495
 
13496
- #: includes/admin/settings/class-wc-settings-shipping.php:107
13497
- msgid "This controls which shipping address is used by default."
13498
  msgstr ""
13499
 
13500
- #: includes/admin/settings/class-wc-settings-shipping.php:112
13501
- msgid "Default to customer shipping address"
13502
  msgstr ""
13503
 
13504
- #: includes/admin/settings/class-wc-settings-shipping.php:113
13505
- msgid "Default to customer billing address"
13506
  msgstr ""
13507
 
13508
- #: includes/admin/settings/class-wc-settings-shipping.php:114
13509
- msgid "Force shipping to the customer billing address"
13510
  msgstr ""
13511
 
13512
- #: includes/admin/settings/class-wc-settings-shipping.php:122
13513
- msgid "Debug mode"
13514
  msgstr ""
13515
 
13516
- #: includes/admin/settings/class-wc-settings-shipping.php:123
13517
- msgid "Enable debug mode"
13518
  msgstr ""
13519
 
13520
- #: includes/admin/settings/class-wc-settings-shipping.php:124
13521
- msgid ""
13522
- "Enable shipping debug mode to show matching shipping zones and to bypass "
13523
- "shipping rate cache."
13524
  msgstr ""
13525
 
13526
- #: includes/admin/settings/class-wc-settings-shipping.php:230
13527
- #: includes/admin/settings/class-wc-settings-shipping.php:315
13528
- msgid "Zone does not exist!"
13529
  msgstr ""
13530
 
13531
- #: includes/admin/settings/class-wc-settings-shipping.php:257
13532
- #: includes/admin/settings/class-wc-settings-shipping.php:290
13533
- #: includes/admin/settings/class-wc-settings-shipping.php:349
13534
- #: includes/admin/settings/class-wc-settings-tax.php:191
13535
- msgid "Your changed data will be lost if you leave this page without saving."
13536
  msgstr ""
13537
 
13538
- #: includes/admin/settings/class-wc-settings-shipping.php:258
13539
- msgid ""
13540
- "Do you wish to save your changes first? Your changed data will be discarded "
13541
- "if you choose to cancel."
13542
  msgstr ""
13543
 
13544
- #: includes/admin/settings/class-wc-settings-shipping.php:259
13545
- #: includes/admin/settings/class-wc-settings-shipping.php:292
13546
- #: includes/admin/settings/class-wc-settings-shipping.php:350
13547
- msgid "Your changes were not saved. Please retry."
13548
  msgstr ""
13549
 
13550
- #: includes/admin/settings/class-wc-settings-shipping.php:260
13551
- msgid "Shipping method could not be added. Please retry."
13552
  msgstr ""
13553
 
13554
- #: includes/admin/settings/class-wc-settings-shipping.php:263
13555
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:15
13556
- #: includes/class-wc-shipping-zone.php:284
13557
- msgid "Zone"
13558
  msgstr ""
13559
 
13560
- #: includes/admin/settings/class-wc-settings-shipping.php:291
13561
- msgid "Are you sure you want to delete this zone? This action cannot be undone."
13562
  msgstr ""
13563
 
13564
- #: includes/admin/settings/class-wc-settings-shipping.php:293
13565
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:45
13566
- msgid "No shipping methods offered to this zone."
13567
  msgstr ""
13568
 
13569
- #: includes/admin/settings/class-wc-settings-shipping.php:312
13570
- msgid "Invalid shipping method!"
13571
  msgstr ""
13572
 
13573
- #: includes/admin/settings/class-wc-settings-shipping.php:318
13574
- msgid "This shipping method does not have any settings to configure."
13575
  msgstr ""
13576
 
13577
- #: includes/admin/settings/class-wc-settings-shipping.php:324
13578
- msgid "Edit failed. Please try again."
13579
  msgstr ""
13580
 
13581
- #: includes/admin/settings/class-wc-settings-shipping.php:362
13582
- msgid "Product count"
13583
  msgstr ""
13584
 
13585
- #: includes/admin/settings/class-wc-settings-tax.php:61
13586
- #: includes/admin/settings/views/settings-tax.php:13
13587
- msgid "Tax options"
13588
  msgstr ""
13589
 
13590
- #: includes/admin/settings/class-wc-settings-tax.php:62
13591
- msgid "Standard rates"
13592
  msgstr ""
13593
 
13594
- #: includes/admin/settings/class-wc-settings-tax.php:69
13595
- msgid "%s rates"
13596
  msgstr ""
13597
 
13598
- #: includes/admin/settings/class-wc-settings-tax.php:190
13599
- msgid "No row(s) selected"
13600
  msgstr ""
13601
 
13602
- #: includes/admin/settings/class-wc-settings-tax.php:193
13603
- msgid "Country code"
13604
  msgstr ""
13605
 
13606
- #: includes/admin/settings/class-wc-settings-tax.php:194
13607
- #: includes/admin/settings/views/html-settings-tax.php:27
13608
- msgid "State code"
13609
  msgstr ""
13610
 
13611
- #: includes/admin/settings/class-wc-settings-tax.php:198
13612
- #: includes/admin/settings/views/html-settings-tax.php:31
13613
- msgid "Tax name"
13614
  msgstr ""
13615
 
13616
- #: includes/admin/settings/class-wc-settings-tax.php:199
13617
- #: includes/admin/settings/views/html-settings-tax.php:32
13618
- msgid "Priority"
13619
  msgstr ""
13620
 
13621
- #: includes/admin/settings/class-wc-settings-tax.php:200
13622
- #: includes/admin/settings/views/html-settings-tax.php:33
13623
- msgid "Compound"
13624
  msgstr ""
13625
 
13626
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:15
13627
- msgid ""
13628
- "Shipping classes can be used to group products of similar type and can be "
13629
- "used by some Shipping Methods (such as \"Flat rate shipping\") to provide "
13630
- "different rates to different classes of product."
13631
  msgstr ""
13632
 
13633
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:29
13634
- msgid "Save shipping classes"
13635
  msgstr ""
13636
 
13637
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:30
13638
- msgid "Add shipping class"
13639
  msgstr ""
13640
 
13641
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:39
13642
- msgid "No shipping classes have been created."
13643
  msgstr ""
13644
 
13645
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:58
13646
- msgid "Shipping class name"
13647
  msgstr ""
13648
 
13649
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:60
13650
- msgid "Cancel changes"
13651
  msgstr ""
13652
 
13653
- #: includes/admin/settings/views/html-admin-page-shipping-classes.php:74
13654
- msgid "Description for your reference"
13655
  msgstr ""
13656
 
13657
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:26
13658
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:31
13659
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:16
13660
- msgid "Zone name"
13661
  msgstr ""
13662
 
13663
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:27
13664
- msgid "This is the name of the zone for your reference."
13665
  msgstr ""
13666
 
13667
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:37
13668
- msgid "Zone regions"
13669
  msgstr ""
13670
 
13671
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:38
13672
- msgid ""
13673
- "These are regions inside this zone. Customers will be matched against these "
13674
- "regions."
13675
  msgstr ""
13676
 
13677
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:42
13678
- msgid "Select regions within this zone"
13679
  msgstr ""
13680
 
13681
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:62
13682
- msgid "Limit to specific ZIP/postcodes"
13683
  msgstr ""
13684
 
13685
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:65
13686
- msgid "List 1 postcode per line"
13687
  msgstr ""
13688
 
13689
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:67
13690
- #. translators: WooCommerce link to setting up shipping zones
13691
- msgid ""
13692
- "Postcodes containing wildcards (e.g. CB23*) or fully numeric ranges (e.g. "
13693
- "<code>90210...99000</code>) are also supported. Please see the shipping "
13694
- "zones <a href=\"%s\" target=\"_blank\">documentation</a>) for more "
13695
- "information."
13696
  msgstr ""
13697
 
13698
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:75
13699
- msgid "Shipping methods"
13700
  msgstr ""
13701
 
13702
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:76
13703
- msgid ""
13704
- "The following shipping methods apply to customers with shipping addresses "
13705
- "within this zone."
13706
  msgstr ""
13707
 
13708
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:92
13709
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:171
13710
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:196
13711
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:95
13712
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:121
13713
- msgid "Add shipping method"
13714
  msgstr ""
13715
 
13716
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:109
13717
- msgid ""
13718
- "You can add multiple shipping methods within this zone. Only customers "
13719
- "within the zone will see them."
13720
  msgstr ""
13721
 
13722
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:140
13723
- #. translators: %s: shipping method title
13724
- msgid "%s Settings"
13725
  msgstr ""
13726
 
13727
- #: includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:179
13728
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:103
13729
- msgid ""
13730
- "Choose the shipping method you wish to add. Only shipping methods which "
13731
- "support zones are listed."
13732
  msgstr ""
13733
 
13734
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:9
13735
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:66
13736
- msgid "Add shipping zone"
13737
  msgstr ""
13738
 
13739
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:11
13740
- msgid ""
13741
- "A shipping zone is a geographic region where a certain set of shipping "
13742
- "methods are offered."
13743
  msgstr ""
13744
 
13745
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:11
13746
- msgid ""
13747
- "WooCommerce will match a customer to a single zone using their shipping "
13748
- "address and present the shipping methods within that zone to them."
13749
  msgstr ""
13750
 
13751
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:15
13752
- msgid ""
13753
- "Drag and drop to re-order your custom zones. This is the order in which "
13754
- "they will be matched against the customer address."
13755
  msgstr ""
13756
 
13757
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:17
13758
- msgid "Region(s)"
13759
  msgstr ""
13760
 
13761
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:18
13762
- msgid "Shipping method(s)"
13763
  msgstr ""
13764
 
13765
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:28
13766
- msgid "Manage shipping methods"
13767
  msgstr ""
13768
 
13769
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:31
13770
- msgid ""
13771
- "This zone is <b>optionally</b> used for regions that are not included in "
13772
- "any other shipping zone."
13773
  msgstr ""
13774
 
13775
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:58
13776
- msgid ""
13777
- "A shipping zone is a geographic region where a certain set of shipping "
13778
- "methods and rates apply."
13779
  msgstr ""
13780
 
13781
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:59
13782
- msgid "For example:"
13783
  msgstr ""
13784
 
13785
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:61
13786
- msgid "Local zone = California ZIP 90210 = Local pickup"
13787
  msgstr ""
13788
 
13789
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:62
13790
- msgid "US domestic zone = All US states = Flat rate shipping"
13791
  msgstr ""
13792
 
13793
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:63
13794
- msgid "Europe zone = Any country in Europe = Flat rate shipping"
13795
  msgstr ""
13796
 
13797
- #: includes/admin/settings/views/html-admin-page-shipping-zones.php:65
13798
- msgid ""
13799
- "Add as many zones as you need &ndash; customers will only see the methods "
13800
- "available for their address."
13801
  msgstr ""
13802
 
13803
- #: includes/admin/settings/views/html-keys-edit.php:8
13804
- msgid "Key details"
13805
  msgstr ""
13806
 
13807
- #: includes/admin/settings/views/html-keys-edit.php:18
13808
- msgid "Friendly name for identifying this key."
13809
  msgstr ""
13810
 
13811
- #: includes/admin/settings/views/html-keys-edit.php:29
13812
- msgid "Owner of these keys."
13813
  msgstr ""
13814
 
13815
- #: includes/admin/settings/views/html-keys-edit.php:45
13816
- msgid "Search for a user&hellip;"
13817
  msgstr ""
13818
 
13819
- #: includes/admin/settings/views/html-keys-edit.php:54
13820
- msgid "Select the access type of these keys."
13821
  msgstr ""
13822
 
13823
- #: includes/admin/settings/views/html-keys-edit.php:110
13824
- msgid "Generate API key"
13825
  msgstr ""
13826
 
13827
- #: includes/admin/settings/views/html-keys-edit.php:115
13828
- #: includes/class-wc-ajax.php:1858
13829
- msgid "Revoke key"
13830
  msgstr ""
13831
 
13832
- #: includes/admin/settings/views/html-keys-edit.php:128
13833
- msgid "Consumer key"
13834
  msgstr ""
13835
 
13836
- #: includes/admin/settings/views/html-keys-edit.php:136
13837
- msgid "Consumer secret"
13838
  msgstr ""
13839
 
13840
- #: includes/admin/settings/views/html-keys-edit.php:144
13841
- msgid "QRCode"
13842
  msgstr ""
13843
 
13844
- #: includes/admin/settings/views/html-settings-tax.php:8
13845
- msgid "Search&hellip;"
13846
  msgstr ""
13847
 
13848
- #: includes/admin/settings/views/html-settings-tax.php:17
13849
- #. translators: %s: tax rate
13850
- msgid "\"%s\" tax rates"
13851
  msgstr ""
13852
 
13853
- #: includes/admin/settings/views/html-settings-tax.php:18
13854
- #: includes/admin/views/html-bulk-edit-product.php:95
13855
- #: includes/admin/views/html-quick-edit-product.php:72
13856
- #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:217
13857
- #: includes/wc-product-functions.php:807
13858
- msgid "Standard"
13859
  msgstr ""
13860
 
13861
- #: includes/admin/settings/views/html-settings-tax.php:26
13862
- msgid "Country&nbsp;code"
13863
  msgstr ""
13864
 
13865
- #: includes/admin/settings/views/html-settings-tax.php:26
13866
- msgid "A 2 digit country code, e.g. US. Leave blank to apply to all."
13867
  msgstr ""
13868
 
13869
- #: includes/admin/settings/views/html-settings-tax.php:27
13870
- msgid "A 2 digit state code, e.g. AL. Leave blank to apply to all."
13871
  msgstr ""
13872
 
13873
- #: includes/admin/settings/views/html-settings-tax.php:28
13874
- msgid ""
13875
- "Postcode for this rule. Semi-colon (;) separate multiple values. Leave "
13876
- "blank to apply to all areas. Wildcards (*) and ranges for numeric postcodes "
13877
- "(e.g. 12345...12350) can also be used."
13878
  msgstr ""
13879
 
13880
- #: includes/admin/settings/views/html-settings-tax.php:29
13881
- msgid ""
13882
- "Cities for this rule. Semi-colon (;) separate multiple values. Leave blank "
13883
- "to apply to all cities."
13884
  msgstr ""
13885
 
13886
- #: includes/admin/settings/views/html-settings-tax.php:30
13887
- msgid "Rate&nbsp;%"
13888
  msgstr ""
13889
 
13890
- #: includes/admin/settings/views/html-settings-tax.php:30
13891
- msgid "Enter a tax rate (percentage) to 4 decimal places."
13892
  msgstr ""
13893
 
13894
- #: includes/admin/settings/views/html-settings-tax.php:31
13895
- msgid "Enter a name for this tax rate."
13896
  msgstr ""
13897
 
13898
- #: includes/admin/settings/views/html-settings-tax.php:32
13899
- msgid ""
13900
- "Choose a priority for this tax rate. Only 1 matching rate per priority will "
13901
- "be used. To define multiple tax rates for a single area you need to specify "
13902
- "a different priority per rate."
13903
  msgstr ""
13904
 
13905
- #: includes/admin/settings/views/html-settings-tax.php:33
13906
- msgid ""
13907
- "Choose whether or not this is a compound rate. Compound tax rates are "
13908
- "applied on top of other tax rates."
13909
  msgstr ""
13910
 
13911
- #: includes/admin/settings/views/html-settings-tax.php:34
13912
- msgid "Choose whether or not this tax rate also gets applied to shipping."
13913
  msgstr ""
13914
 
13915
- #: includes/admin/settings/views/html-settings-tax.php:40
13916
- msgid "Insert row"
13917
  msgstr ""
13918
 
13919
- #: includes/admin/settings/views/html-settings-tax.php:41
13920
- msgid "Remove selected row(s)"
13921
  msgstr ""
13922
 
13923
- #: includes/admin/settings/views/html-settings-tax.php:43
13924
- msgid "Import CSV"
13925
  msgstr ""
13926
 
13927
- #: includes/admin/settings/views/html-settings-tax.php:49
13928
- msgid "Loading&hellip;"
13929
  msgstr ""
13930
 
13931
- #: includes/admin/settings/views/html-settings-tax.php:55
13932
- msgid "Tax rate ID: %s"
13933
  msgstr ""
13934
 
13935
- #: includes/admin/settings/views/html-settings-tax.php:96
13936
- msgid "No matching tax rates found."
13937
  msgstr ""
13938
 
13939
- #: includes/admin/settings/views/html-settings-tax.php:107
13940
- #. translators: %s: number
13941
- msgid "%s items"
13942
  msgstr ""
13943
 
13944
- #: includes/admin/settings/views/html-settings-tax.php:115
13945
- msgid "First page"
13946
  msgstr ""
13947
 
13948
- #: includes/admin/settings/views/html-settings-tax.php:119
13949
- msgid "Previous page"
13950
  msgstr ""
13951
 
13952
- #: includes/admin/settings/views/html-settings-tax.php:136
13953
- msgid "Next page"
13954
  msgstr ""
13955
 
13956
- #: includes/admin/settings/views/html-settings-tax.php:140
13957
- msgid "Last page"
13958
  msgstr ""
13959
 
13960
- #: includes/admin/settings/views/html-webhooks-edit.php:16
13961
- msgid "Webhook data"
13962
  msgstr ""
13963
 
13964
- #: includes/admin/settings/views/html-webhooks-edit.php:25
13965
- #. translators: %s: date
13966
- msgid ""
13967
- "Friendly name for identifying this webhook, defaults to Webhook created on "
13968
- "%s."
13969
  msgstr ""
13970
 
13971
- #: includes/admin/settings/views/html-webhooks-edit.php:37
13972
- msgid ""
13973
- "The options are &quot;Active&quot; (delivers payload), &quot;Paused&quot; "
13974
- "(does not deliver), or &quot;Disabled&quot; (does not deliver due delivery "
13975
- "failures)."
13976
  msgstr ""
13977
 
13978
- #: includes/admin/settings/views/html-webhooks-edit.php:57
13979
- msgid "Select when the webhook will fire."
13980
  msgstr ""
13981
 
13982
- #: includes/admin/settings/views/html-webhooks-edit.php:68
13983
- msgid "Coupon created"
13984
  msgstr ""
13985
 
13986
- #: includes/admin/settings/views/html-webhooks-edit.php:69
13987
- msgid "Coupon updated"
13988
  msgstr ""
13989
 
13990
- #: includes/admin/settings/views/html-webhooks-edit.php:70
13991
- msgid "Coupon deleted"
13992
  msgstr ""
13993
 
13994
- #: includes/admin/settings/views/html-webhooks-edit.php:71
13995
- msgid "Coupon restored"
13996
  msgstr ""
13997
 
13998
- #: includes/admin/settings/views/html-webhooks-edit.php:72
13999
- msgid "Customer created"
14000
  msgstr ""
14001
 
14002
- #: includes/admin/settings/views/html-webhooks-edit.php:73
14003
- msgid "Customer updated"
14004
  msgstr ""
14005
 
14006
- #: includes/admin/settings/views/html-webhooks-edit.php:74
14007
- msgid "Customer deleted"
14008
  msgstr ""
14009
 
14010
- #: includes/admin/settings/views/html-webhooks-edit.php:75
14011
- msgid "Order created"
14012
  msgstr ""
14013
 
14014
- #: includes/admin/settings/views/html-webhooks-edit.php:76
14015
- msgid "Order updated"
14016
  msgstr ""
14017
 
14018
- #: includes/admin/settings/views/html-webhooks-edit.php:77
14019
- msgid "Order deleted"
14020
  msgstr ""
14021
 
14022
- #: includes/admin/settings/views/html-webhooks-edit.php:78
14023
- msgid "Order restored"
14024
  msgstr ""
14025
 
14026
- #: includes/admin/settings/views/html-webhooks-edit.php:79
14027
- msgid "Product created"
14028
  msgstr ""
14029
 
14030
- #: includes/admin/settings/views/html-webhooks-edit.php:80
14031
- msgid "Product updated"
14032
  msgstr ""
14033
 
14034
- #: includes/admin/settings/views/html-webhooks-edit.php:81
14035
- msgid "Product deleted"
14036
  msgstr ""
14037
 
14038
- #: includes/admin/settings/views/html-webhooks-edit.php:82
14039
- msgid "Product restored"
14040
  msgstr ""
14041
 
14042
- #: includes/admin/settings/views/html-webhooks-edit.php:83
14043
- msgid "Action"
14044
  msgstr ""
14045
 
14046
- #: includes/admin/settings/views/html-webhooks-edit.php:97
14047
- msgid "Action event"
14048
  msgstr ""
14049
 
14050
- #: includes/admin/settings/views/html-webhooks-edit.php:98
14051
- msgid "Enter the action that will trigger this webhook."
14052
  msgstr ""
14053
 
14054
- #: includes/admin/settings/views/html-webhooks-edit.php:109
14055
- msgid "URL where the webhook payload is delivered."
14056
  msgstr ""
14057
 
14058
- #: includes/admin/settings/views/html-webhooks-edit.php:119
14059
- msgid "Secret"
14060
  msgstr ""
14061
 
14062
- #: includes/admin/settings/views/html-webhooks-edit.php:120
14063
- msgid ""
14064
- "The secret key is used to generate a hash of the delivered webhook and "
14065
- "provided in the request headers."
14066
  msgstr ""
14067
 
14068
- #: includes/admin/settings/views/html-webhooks-edit.php:130
14069
- msgid "API Version"
14070
  msgstr ""
14071
 
14072
- #: includes/admin/settings/views/html-webhooks-edit.php:131
14073
- msgid "REST API version used in the webhook deliveries."
14074
  msgstr ""
14075
 
14076
- #: includes/admin/settings/views/html-webhooks-edit.php:136
14077
- msgid "WP REST API Integration v2"
14078
  msgstr ""
14079
 
14080
- #: includes/admin/settings/views/html-webhooks-edit.php:137
14081
- msgid "WP REST API Integration v1"
14082
  msgstr ""
14083
 
14084
- #: includes/admin/settings/views/html-webhooks-edit.php:138
14085
- msgid "Legacy API v3 (deprecated)"
14086
  msgstr ""
14087
 
14088
- #: includes/admin/settings/views/html-webhooks-edit.php:149
14089
- msgid "Webhook actions"
14090
  msgstr ""
14091
 
14092
- #: includes/admin/settings/views/html-webhooks-edit.php:156
14093
- #: includes/admin/settings/views/html-webhooks-edit.php:165
14094
- msgid "Created at"
14095
  msgstr ""
14096
 
14097
- #: includes/admin/settings/views/html-webhooks-edit.php:173
14098
- msgid "Updated at"
14099
  msgstr ""
14100
 
14101
- #: includes/admin/settings/views/html-webhooks-edit.php:184
14102
- msgid "Save webhook"
14103
  msgstr ""
14104
 
14105
- #: includes/admin/settings/views/settings-tax.php:20
14106
- msgid "Prices entered with tax"
14107
  msgstr ""
14108
 
14109
- #: includes/admin/settings/views/settings-tax.php:24
14110
- msgid ""
14111
- "This option is important as it will affect how you input prices. Changing "
14112
- "it will not update existing products."
14113
  msgstr ""
14114
 
14115
- #: includes/admin/settings/views/settings-tax.php:26
14116
- msgid "Yes, I will enter prices inclusive of tax"
14117
  msgstr ""
14118
 
14119
- #: includes/admin/settings/views/settings-tax.php:27
14120
- msgid "No, I will enter prices exclusive of tax"
14121
  msgstr ""
14122
 
14123
- #: includes/admin/settings/views/settings-tax.php:32
14124
- msgid "Calculate tax based on"
14125
  msgstr ""
14126
 
14127
- #: includes/admin/settings/views/settings-tax.php:34
14128
- msgid "This option determines which address is used to calculate tax."
14129
  msgstr ""
14130
 
14131
- #: includes/admin/settings/views/settings-tax.php:46
14132
- msgid "Shipping tax class"
14133
  msgstr ""
14134
 
14135
- #: includes/admin/settings/views/settings-tax.php:47
14136
- msgid ""
14137
- "Optionally control which tax class shipping gets, or leave it so shipping "
14138
- "tax is based on the cart items themselves."
14139
  msgstr ""
14140
 
14141
- #: includes/admin/settings/views/settings-tax.php:53
14142
- msgid "Shipping tax class based on cart items"
14143
  msgstr ""
14144
 
14145
- #: includes/admin/settings/views/settings-tax.php:58
14146
- msgid "Rounding"
14147
  msgstr ""
14148
 
14149
- #: includes/admin/settings/views/settings-tax.php:59
14150
- msgid "Round tax at subtotal level, instead of rounding per line"
14151
  msgstr ""
14152
 
14153
- #: includes/admin/settings/views/settings-tax.php:66
14154
- msgid "Additional tax classes"
14155
  msgstr ""
14156
 
14157
- #: includes/admin/settings/views/settings-tax.php:67
14158
- msgid ""
14159
- "List additional tax classes below (1 per line). This is in addition to the "
14160
- "default \"Standard rate\"."
14161
  msgstr ""
14162
 
14163
- #: includes/admin/settings/views/settings-tax.php:72
14164
- #. Translators: %s New line char.
14165
- msgid "Reduced rate%sZero rate"
14166
  msgstr ""
14167
 
14168
- #: includes/admin/settings/views/settings-tax.php:76
14169
- msgid "Display prices in the shop"
14170
  msgstr ""
14171
 
14172
- #: includes/admin/settings/views/settings-tax.php:82
14173
- #: includes/admin/settings/views/settings-tax.php:94
14174
- msgid "Including tax"
14175
  msgstr ""
14176
 
14177
- #: includes/admin/settings/views/settings-tax.php:83
14178
- #: includes/admin/settings/views/settings-tax.php:95
14179
- msgid "Excluding tax"
14180
  msgstr ""
14181
 
14182
- #: includes/admin/settings/views/settings-tax.php:88
14183
- msgid "Display prices during cart and checkout"
14184
  msgstr ""
14185
 
14186
- #: includes/admin/settings/views/settings-tax.php:100
14187
- msgid "Price display suffix"
14188
  msgstr ""
14189
 
14190
- #: includes/admin/settings/views/settings-tax.php:105
14191
- msgid ""
14192
- "Define text to show after your product prices. This could be, for example, "
14193
- "\"inc. Vat\" to explain your pricing. You can also have prices substituted "
14194
- "here using one of the following: {price_including_tax}, "
14195
- "{price_excluding_tax}."
14196
  msgstr ""
14197
 
14198
- #: includes/admin/settings/views/settings-tax.php:109
14199
- msgid "Display tax totals"
14200
  msgstr ""
14201
 
14202
- #: includes/admin/settings/views/settings-tax.php:115
14203
- msgid "As a single total"
14204
  msgstr ""
14205
 
14206
- #: includes/admin/settings/views/settings-tax.php:116
14207
- msgid "Itemized"
14208
  msgstr ""
14209
 
14210
- #: includes/admin/views/html-admin-page-addons.php:41
14211
- msgid "Showing search results for: %s"
14212
  msgstr ""
14213
 
14214
- #: includes/admin/views/html-admin-page-addons.php:53
14215
- msgid "Enter a search term and press enter"
14216
  msgstr ""
14217
 
14218
- #: includes/admin/views/html-admin-page-addons.php:108
14219
- msgid ""
14220
- "Our catalog of WooCommerce Extensions can be found on WooCommerce.com here: "
14221
- "<a href=\"%s\">WooCommerce Extensions Catalog</a>"
14222
  msgstr ""
14223
 
14224
- #: includes/admin/views/html-admin-page-addons.php:114
14225
- msgid "Looking for a WooCommerce theme?"
14226
  msgstr ""
14227
 
14228
- #: includes/admin/views/html-admin-page-addons.php:115
14229
- msgid "We recommend Storefront, the <em>official</em> WooCommerce theme."
 
 
 
 
14230
  msgstr ""
14231
 
14232
- #: includes/admin/views/html-admin-page-addons.php:116
14233
- msgid ""
14234
- "Storefront is an intuitive, flexible and <strong>free</strong> WordPress "
14235
- "theme offering deep integration with WooCommerce and many of the most "
14236
- "popular customer-facing extensions."
14237
  msgstr ""
14238
 
14239
- #: includes/admin/views/html-admin-page-addons.php:118
14240
- msgid "Read all about it"
14241
  msgstr ""
14242
 
14243
- #: includes/admin/views/html-admin-page-addons.php:119
14244
- msgid "Download &amp; install"
14245
  msgstr ""
14246
 
14247
- #: includes/admin/views/html-admin-page-product-export.php:17
14248
- msgid "Export Products"
14249
  msgstr ""
14250
 
14251
- #: includes/admin/views/html-admin-page-product-export.php:23
14252
- msgid "Export products to a CSV file"
14253
  msgstr ""
14254
 
14255
- #: includes/admin/views/html-admin-page-product-export.php:24
14256
- msgid ""
14257
- "This tool allows you to generate and download a CSV file containing a list "
14258
- "of all products."
14259
  msgstr ""
14260
 
14261
- #: includes/admin/views/html-admin-page-product-export.php:31
14262
- msgid "Which columns should be exported?"
14263
  msgstr ""
14264
 
14265
- #: includes/admin/views/html-admin-page-product-export.php:34
14266
- msgid "Export all columns"
14267
  msgstr ""
14268
 
14269
- #: includes/admin/views/html-admin-page-product-export.php:47
14270
- msgid "Which product types should be exported?"
14271
  msgstr ""
14272
 
14273
- #: includes/admin/views/html-admin-page-product-export.php:50
14274
- msgid "Export all products"
14275
  msgstr ""
14276
 
14277
- #: includes/admin/views/html-admin-page-product-export.php:56
14278
- msgid "Product variations"
14279
  msgstr ""
14280
 
14281
- #: includes/admin/views/html-admin-page-product-export.php:62
14282
- msgid "Export custom meta?"
14283
  msgstr ""
14284
 
14285
- #: includes/admin/views/html-admin-page-product-export.php:66
14286
- msgid "Yes, export all custom meta"
14287
  msgstr ""
14288
 
14289
- #: includes/admin/views/html-admin-page-product-export.php:75
14290
- msgid "Generate CSV"
14291
  msgstr ""
14292
 
14293
- #: includes/admin/views/html-admin-page-status-logs-db.php:14
14294
- msgid "Search logs"
14295
  msgstr ""
14296
 
14297
- #: includes/admin/views/html-admin-page-status-logs-db.php:20
14298
- msgid "Flush all logs"
14299
  msgstr ""
14300
 
14301
- #: includes/admin/views/html-admin-page-status-logs-db.php:26
14302
- msgid "Are you sure you want to clear all logs from the database?"
14303
  msgstr ""
14304
 
14305
- #: includes/admin/views/html-admin-page-status-logs.php:19
14306
- msgid "Delete log"
14307
  msgstr ""
14308
 
14309
- #: includes/admin/views/html-admin-page-status-logs.php:44
14310
- msgid "There are currently no logs to view."
14311
  msgstr ""
14312
 
14313
- #: includes/admin/views/html-admin-page-status-report.php:30
14314
- msgid ""
14315
- "Please copy and paste this information in your ticket when contacting "
14316
- "support:"
14317
  msgstr ""
14318
 
14319
- #: includes/admin/views/html-admin-page-status-report.php:33
14320
- msgid "Get system report"
14321
  msgstr ""
14322
 
14323
- #: includes/admin/views/html-admin-page-status-report.php:35
14324
- msgid "Understanding the status report"
14325
  msgstr ""
14326
 
14327
- #: includes/admin/views/html-admin-page-status-report.php:42
14328
- msgid "Copy for support"
14329
  msgstr ""
14330
 
14331
- #: includes/admin/views/html-admin-page-status-report.php:53
14332
- msgid "WordPress environment"
14333
  msgstr ""
14334
 
14335
- #: includes/admin/views/html-admin-page-status-report.php:58
14336
- msgid "Home URL"
14337
  msgstr ""
14338
 
14339
- #: includes/admin/views/html-admin-page-status-report.php:59
14340
- msgid "The homepage URL of your site."
14341
  msgstr ""
14342
 
14343
- #: includes/admin/views/html-admin-page-status-report.php:63
14344
- msgid "Site URL"
14345
  msgstr ""
14346
 
14347
- #: includes/admin/views/html-admin-page-status-report.php:64
14348
- msgid "The root URL of your site."
14349
  msgstr ""
14350
 
14351
- #: includes/admin/views/html-admin-page-status-report.php:68
14352
- msgid "WooCommerce version"
14353
  msgstr ""
14354
 
14355
- #: includes/admin/views/html-admin-page-status-report.php:69
14356
- msgid "The version of WooCommerce installed on your site."
14357
  msgstr ""
14358
 
14359
- #: includes/admin/views/html-admin-page-status-report.php:73
14360
- msgid "Log directory writable"
14361
  msgstr ""
14362
 
14363
- #: includes/admin/views/html-admin-page-status-report.php:74
14364
- msgid ""
14365
- "Several WooCommerce extensions can write logs which makes debugging "
14366
- "problems easier. The directory must be writable for this to happen."
14367
  msgstr ""
14368
 
14369
- #: includes/admin/views/html-admin-page-status-report.php:81
14370
- #. Translators: %1$s: Log directory, %2$s: Log directory constant
14371
- msgid "To allow logging, make %1$s writable or define a custom %2$s."
14372
  msgstr ""
14373
 
14374
- #: includes/admin/views/html-admin-page-status-report.php:87
14375
- msgid "WordPress version"
14376
  msgstr ""
14377
 
14378
- #: includes/admin/views/html-admin-page-status-report.php:88
14379
- msgid "The version of WordPress installed on your site."
14380
  msgstr ""
14381
 
14382
- #: includes/admin/views/html-admin-page-status-report.php:107
14383
- #. Translators: %1$s: Current version, %2$s: New version
14384
- msgid "%1$s - There is a newer version of WordPress available (%2$s)"
14385
  msgstr ""
14386
 
14387
- #: includes/admin/views/html-admin-page-status-report.php:115
14388
- msgid "WordPress multisite"
14389
  msgstr ""
14390
 
14391
- #: includes/admin/views/html-admin-page-status-report.php:116
14392
- msgid "Whether or not you have WordPress Multisite enabled."
14393
  msgstr ""
14394
 
14395
- #: includes/admin/views/html-admin-page-status-report.php:120
14396
- msgid "WordPress memory limit"
14397
  msgstr ""
14398
 
14399
- #: includes/admin/views/html-admin-page-status-report.php:121
14400
- msgid "The maximum amount of memory (RAM) that your site can use at one time."
14401
  msgstr ""
14402
 
14403
- #: includes/admin/views/html-admin-page-status-report.php:126
14404
- #. Translators: %1$s: Memory limit, %2$s: Docs link.
14405
- msgid "%1$s - We recommend setting memory to at least 64MB. See: %2$s"
14406
  msgstr ""
14407
 
14408
- #: includes/admin/views/html-admin-page-status-report.php:126
14409
- msgid "Increasing memory allocated to PHP"
14410
  msgstr ""
14411
 
14412
- #: includes/admin/views/html-admin-page-status-report.php:134
14413
- msgid "WordPress debug mode"
14414
  msgstr ""
14415
 
14416
- #: includes/admin/views/html-admin-page-status-report.php:135
14417
- msgid "Displays whether or not WordPress is in Debug Mode."
14418
  msgstr ""
14419
 
14420
- #: includes/admin/views/html-admin-page-status-report.php:145
14421
- msgid "WordPress cron"
14422
  msgstr ""
14423
 
14424
- #: includes/admin/views/html-admin-page-status-report.php:146
14425
- msgid "Displays whether or not WP Cron Jobs are enabled."
14426
  msgstr ""
14427
 
14428
- #: includes/admin/views/html-admin-page-status-report.php:156
14429
- msgid "Language"
14430
  msgstr ""
14431
 
14432
- #: includes/admin/views/html-admin-page-status-report.php:157
14433
- msgid "The current language used by WordPress. Default = English"
14434
  msgstr ""
14435
 
14436
- #: includes/admin/views/html-admin-page-status-report.php:161
14437
- msgid "External object cache"
14438
  msgstr ""
14439
 
14440
- #: includes/admin/views/html-admin-page-status-report.php:162
14441
- msgid "Displays whether or not WordPress is using an external object cache."
14442
  msgstr ""
14443
 
14444
- #: includes/admin/views/html-admin-page-status-report.php:176
14445
- msgid "Server environment"
14446
  msgstr ""
14447
 
14448
- #: includes/admin/views/html-admin-page-status-report.php:181
14449
- msgid "Server info"
14450
  msgstr ""
14451
 
14452
- #: includes/admin/views/html-admin-page-status-report.php:182
14453
- msgid "Information about the web server that is currently hosting your site."
14454
  msgstr ""
14455
 
14456
- #: includes/admin/views/html-admin-page-status-report.php:186
14457
- msgid "PHP version"
14458
  msgstr ""
14459
 
14460
- #: includes/admin/views/html-admin-page-status-report.php:187
14461
- msgid "The version of PHP installed on your hosting server."
14462
  msgstr ""
14463
 
14464
- #: includes/admin/views/html-admin-page-status-report.php:193
14465
- msgid "How to update your PHP version"
14466
  msgstr ""
14467
 
14468
- #: includes/admin/views/html-admin-page-status-report.php:196
14469
- msgid ""
14470
- "WooCommerce will run under this version of PHP, however, some features such "
14471
- "as geolocation are not compatible. Support for this version will be dropped "
14472
- "in the next major release. We recommend using PHP version 7.2 or above for "
14473
- "greater performance and security."
14474
  msgstr ""
14475
 
14476
- #: includes/admin/views/html-admin-page-status-report.php:198
14477
- msgid ""
14478
- "WooCommerce will run under this version of PHP, however, it has reached end "
14479
- "of life. We recommend using PHP version 7.2 or above for greater "
14480
- "performance and security."
14481
  msgstr ""
14482
 
14483
- #: includes/admin/views/html-admin-page-status-report.php:200
14484
- msgid ""
14485
- "We recommend using PHP version 7.2 or above for greater performance and "
14486
- "security."
14487
  msgstr ""
14488
 
14489
- #: includes/admin/views/html-admin-page-status-report.php:210
14490
- msgid "PHP post max size"
14491
  msgstr ""
14492
 
14493
- #: includes/admin/views/html-admin-page-status-report.php:211
14494
- msgid "The largest filesize that can be contained in one post."
14495
  msgstr ""
14496
 
14497
- #: includes/admin/views/html-admin-page-status-report.php:215
14498
- msgid "PHP time limit"
14499
  msgstr ""
14500
 
14501
- #: includes/admin/views/html-admin-page-status-report.php:216
14502
- msgid ""
14503
- "The amount of time (in seconds) that your site will spend on a single "
14504
- "operation before timing out (to avoid server lockups)"
14505
  msgstr ""
14506
 
14507
- #: includes/admin/views/html-admin-page-status-report.php:220
14508
- msgid "PHP max input vars"
14509
  msgstr ""
14510
 
14511
- #: includes/admin/views/html-admin-page-status-report.php:221
14512
- msgid ""
14513
- "The maximum number of variables your server can use for a single function "
14514
- "to avoid overloads."
14515
  msgstr ""
14516
 
14517
- #: includes/admin/views/html-admin-page-status-report.php:225
14518
- msgid "cURL version"
14519
  msgstr ""
14520
 
14521
- #: includes/admin/views/html-admin-page-status-report.php:226
14522
- msgid "The version of cURL installed on your server."
14523
  msgstr ""
14524
 
14525
- #: includes/admin/views/html-admin-page-status-report.php:230
14526
- msgid "SUHOSIN installed"
14527
  msgstr ""
14528
 
14529
- #: includes/admin/views/html-admin-page-status-report.php:231
14530
- msgid ""
14531
- "Suhosin is an advanced protection system for PHP installations. It was "
14532
- "designed to protect your servers on the one hand against a number of well "
14533
- "known problems in PHP applications and on the other hand against potential "
14534
- "unknown vulnerabilities within these applications or the PHP core itself. "
14535
- "If enabled on your server, Suhosin may need to be configured to increase "
14536
- "its data submission limits."
14537
  msgstr ""
14538
 
14539
- #: includes/admin/views/html-admin-page-status-report.php:241
14540
- msgid "MySQL version"
14541
  msgstr ""
14542
 
14543
- #: includes/admin/views/html-admin-page-status-report.php:242
14544
- msgid "The version of MySQL installed on your hosting server."
14545
  msgstr ""
14546
 
14547
- #: includes/admin/views/html-admin-page-status-report.php:247
14548
- #. Translators: %1$s: MySQL version, %2$s: Recommended MySQL version.
14549
- msgid "%1$s - We recommend a minimum MySQL version of 5.6. See: %2$s"
14550
  msgstr ""
14551
 
14552
- #: includes/admin/views/html-admin-page-status-report.php:247
14553
- msgid "WordPress requirements"
14554
  msgstr ""
14555
 
14556
- #: includes/admin/views/html-admin-page-status-report.php:256
14557
- msgid "Max upload size"
14558
  msgstr ""
14559
 
14560
- #: includes/admin/views/html-admin-page-status-report.php:257
14561
- msgid "The largest filesize that can be uploaded to your WordPress installation."
14562
  msgstr ""
14563
 
14564
- #: includes/admin/views/html-admin-page-status-report.php:261
14565
- msgid "Default timezone is UTC"
14566
  msgstr ""
14567
 
14568
- #: includes/admin/views/html-admin-page-status-report.php:262
14569
- msgid "The default timezone for your server."
14570
  msgstr ""
14571
 
14572
- #: includes/admin/views/html-admin-page-status-report.php:267
14573
- #. Translators: %s: default timezone..
14574
- msgid "Default timezone is %s - it should be UTC"
14575
  msgstr ""
14576
 
14577
- #: includes/admin/views/html-admin-page-status-report.php:275
14578
- msgid "fsockopen/cURL"
14579
  msgstr ""
14580
 
14581
- #: includes/admin/views/html-admin-page-status-report.php:276
14582
- msgid ""
14583
- "Payment gateways can use cURL to communicate with remote servers to "
14584
- "authorize payments, other plugins may also use it when communicating with "
14585
- "remote services."
14586
  msgstr ""
14587
 
14588
- #: includes/admin/views/html-admin-page-status-report.php:282
14589
- msgid ""
14590
- "Your server does not have fsockopen or cURL enabled - PayPal IPN and other "
14591
- "scripts which communicate with other servers will not work. Contact your "
14592
- "hosting provider."
14593
  msgstr ""
14594
 
14595
- #: includes/admin/views/html-admin-page-status-report.php:288
14596
- msgid "SoapClient"
14597
  msgstr ""
14598
 
14599
- #: includes/admin/views/html-admin-page-status-report.php:289
14600
- msgid ""
14601
- "Some webservices like shipping use SOAP to get information from remote "
14602
- "servers, for example, live shipping quotes from FedEx require SOAP to be "
14603
- "installed."
14604
  msgstr ""
14605
 
14606
- #: includes/admin/views/html-admin-page-status-report.php:296
14607
- #. Translators: %s classname and link.
14608
- msgid ""
14609
- "Your server does not have the %s class enabled - some gateway plugins which "
14610
- "use SOAP may not work as expected."
14611
  msgstr ""
14612
 
14613
- #: includes/admin/views/html-admin-page-status-report.php:302
14614
- msgid "DOMDocument"
14615
  msgstr ""
14616
 
14617
- #: includes/admin/views/html-admin-page-status-report.php:303
14618
- msgid "HTML/Multipart emails use DOMDocument to generate inline CSS in templates."
14619
  msgstr ""
14620
 
14621
- #: includes/admin/views/html-admin-page-status-report.php:310
14622
- #. Translators: %s: classname and link.
14623
- msgid ""
14624
- "Your server does not have the %s class enabled - HTML/Multipart emails, and "
14625
- "also some extensions, will not work without DOMDocument."
14626
  msgstr ""
14627
 
14628
- #: includes/admin/views/html-admin-page-status-report.php:316
14629
- msgid "GZip"
14630
  msgstr ""
14631
 
14632
- #: includes/admin/views/html-admin-page-status-report.php:317
14633
- msgid "GZip (gzopen) is used to open the GEOIP database from MaxMind."
14634
  msgstr ""
14635
 
14636
- #: includes/admin/views/html-admin-page-status-report.php:324
14637
- #. Translators: %s: classname and link.
14638
- msgid ""
14639
- "Your server does not support the %s function - this is required to use the "
14640
- "GeoIP database from MaxMind."
14641
  msgstr ""
14642
 
14643
- #: includes/admin/views/html-admin-page-status-report.php:330
14644
- msgid "Multibyte string"
14645
  msgstr ""
14646
 
14647
- #: includes/admin/views/html-admin-page-status-report.php:331
14648
- msgid ""
14649
- "Multibyte String (mbstring) is used to convert character encoding, like for "
14650
- "emails or converting characters to lowercase."
14651
  msgstr ""
14652
 
14653
- #: includes/admin/views/html-admin-page-status-report.php:338
14654
- #. Translators: %s: classname and link.
14655
- msgid ""
14656
- "Your server does not support the %s functions - this is required for better "
14657
- "character encoding. Some fallbacks will be used instead for it."
14658
  msgstr ""
14659
 
14660
- #: includes/admin/views/html-admin-page-status-report.php:344
14661
- msgid "Remote post"
14662
  msgstr ""
14663
 
14664
- #: includes/admin/views/html-admin-page-status-report.php:345
14665
- msgid ""
14666
- "PayPal uses this method of communicating when sending back transaction "
14667
- "information."
14668
  msgstr ""
14669
 
14670
- #: includes/admin/views/html-admin-page-status-report.php:352
14671
- #: includes/admin/views/html-admin-page-status-report.php:366
14672
- #. Translators: %s: function name.
14673
- msgid "%s failed. Contact your hosting provider."
14674
  msgstr ""
14675
 
14676
- #: includes/admin/views/html-admin-page-status-report.php:358
14677
- msgid "Remote get"
14678
  msgstr ""
14679
 
14680
- #: includes/admin/views/html-admin-page-status-report.php:359
14681
- msgid ""
14682
- "WooCommerce plugins may use this method of communication when checking for "
14683
- "plugin updates."
14684
  msgstr ""
14685
 
14686
- #: includes/admin/views/html-admin-page-status-report.php:399
14687
- msgid "Database"
14688
  msgstr ""
14689
 
14690
- #: includes/admin/views/html-admin-page-status-report.php:404
14691
- msgid "WooCommerce database version"
14692
  msgstr ""
14693
 
14694
- #: includes/admin/views/html-admin-page-status-report.php:405
14695
- msgid ""
14696
- "The version of WooCommerce that the database is formatted for. This should "
14697
- "be the same as your WooCommerce version."
14698
  msgstr ""
14699
 
14700
- #: includes/admin/views/html-admin-page-status-report.php:409
14701
- msgid "Database prefix"
14702
  msgstr ""
14703
 
14704
- #: includes/admin/views/html-admin-page-status-report.php:415
14705
- #. Translators: %1$s: Database prefix, %2$s: Docs link.
14706
- msgid "%1$s - We recommend using a prefix with less than 20 characters. See: %2$s"
14707
  msgstr ""
14708
 
14709
- #: includes/admin/views/html-admin-page-status-report.php:415
14710
- msgid "How to update your database table prefix"
14711
  msgstr ""
14712
 
14713
- #: includes/admin/views/html-admin-page-status-report.php:425
14714
- msgid "MaxMind GeoIP database"
14715
  msgstr ""
14716
 
14717
- #: includes/admin/views/html-admin-page-status-report.php:426
14718
- msgid "The GeoIP database from MaxMind is used to geolocate customers."
14719
  msgstr ""
14720
 
14721
- #: includes/admin/views/html-admin-page-status-report.php:430
14722
- msgid "MaxMind GeoIP database requires at least PHP 5.4."
14723
  msgstr ""
14724
 
14725
- #: includes/admin/views/html-admin-page-status-report.php:435
14726
- #. Translators: %1$s: Library url, %2$s: install path.
14727
- msgid ""
14728
- "The MaxMind GeoIP Database does not exist - Geolocation will not function. "
14729
- "You can download and install it manually from %1$s to the path: %2$s. "
14730
- "Scroll down to \"Downloads\" and download the \"MaxMind DB binary, "
14731
- "gzipped\" file next to \"GeoLite2 Country\". Please remember to uncompress "
14732
- "GeoLite2-Country_xxxxxxxx.tar.gz and upload the GeoLite2-Country.mmdb file "
14733
- "only."
14734
  msgstr ""
14735
 
14736
- #: includes/admin/views/html-admin-page-status-report.php:443
14737
- msgid "Total Database Size"
14738
  msgstr ""
14739
 
14740
- #: includes/admin/views/html-admin-page-status-report.php:449
14741
- msgid "Database Data Size"
14742
  msgstr ""
14743
 
14744
- #: includes/admin/views/html-admin-page-status-report.php:455
14745
- msgid "Database Index Size"
14746
  msgstr ""
14747
 
14748
- #: includes/admin/views/html-admin-page-status-report.php:467
14749
- msgid "Table does not exist"
14750
  msgstr ""
14751
 
14752
- #: includes/admin/views/html-admin-page-status-report.php:470
14753
- #: includes/admin/views/html-admin-page-status-report.php:484
14754
- #. Translators: %1$f: Table size, %2$f: Index size.
14755
- msgid "Data: %1$.2fMB + Index: %2$.2fMB"
14756
  msgstr ""
14757
 
14758
- #: includes/admin/views/html-admin-page-status-report.php:494
14759
- msgid "Post Type Counts"
14760
  msgstr ""
14761
 
14762
- #: includes/admin/views/html-admin-page-status-report.php:514
14763
- msgid "Security"
14764
  msgstr ""
14765
 
14766
- #: includes/admin/views/html-admin-page-status-report.php:519
14767
- msgid "Secure connection (HTTPS)"
14768
  msgstr ""
14769
 
14770
- #: includes/admin/views/html-admin-page-status-report.php:520
14771
- #: includes/api/class-wc-rest-system-status-controller.php:509
14772
- msgid "Is the connection to your store secure?"
14773
  msgstr ""
14774
 
14775
- #: includes/admin/views/html-admin-page-status-report.php:528
14776
- #. Translators: %s: docs link.
14777
- msgid ""
14778
- "Your store is not using HTTPS. <a href=\"%s\" target=\"_blank\">Learn more "
14779
- "about HTTPS and SSL Certificates</a>."
14780
  msgstr ""
14781
 
14782
- #: includes/admin/views/html-admin-page-status-report.php:535
14783
- msgid "Hide errors from visitors"
14784
  msgstr ""
14785
 
14786
- #: includes/admin/views/html-admin-page-status-report.php:536
14787
- msgid ""
14788
- "Error messages can contain sensitive information about your store "
14789
- "environment. These should be hidden from untrusted visitors."
14790
  msgstr ""
14791
 
14792
- #: includes/admin/views/html-admin-page-status-report.php:541
14793
- msgid "Error messages should not be shown to visitors."
14794
  msgstr ""
14795
 
14796
- #: includes/admin/views/html-admin-page-status-report.php:550
14797
- msgid "Active plugins"
14798
  msgstr ""
14799
 
14800
- #: includes/admin/views/html-admin-page-status-report.php:562
14801
- msgid "Visit plugin homepage"
14802
  msgstr ""
14803
 
14804
- #: includes/admin/views/html-admin-page-status-report.php:570
14805
- #: includes/admin/views/html-admin-page-status-report.php:742
14806
- #: includes/admin/views/html-admin-page-status-report.php:780
14807
- #. translators: %s: plugin latest version
14808
- #. translators: %s: theme latest version
14809
- #. translators: %s: parent theme latest version
14810
- msgid "%s is available"
14811
  msgstr ""
14812
 
14813
- #: includes/admin/views/html-admin-page-status-report.php:574
14814
- msgid "Network enabled"
14815
  msgstr ""
14816
 
14817
- #: includes/admin/views/html-admin-page-status-report.php:579
14818
- msgid "Not tested with the active version of WooCommerce"
14819
  msgstr ""
14820
 
14821
- #: includes/admin/views/html-admin-page-status-report.php:607
14822
- msgid "API enabled"
14823
  msgstr ""
14824
 
14825
- #: includes/admin/views/html-admin-page-status-report.php:608
14826
- msgid "Does your site have REST API enabled?"
14827
  msgstr ""
14828
 
14829
- #: includes/admin/views/html-admin-page-status-report.php:612
14830
- msgid "Force SSL"
14831
  msgstr ""
14832
 
14833
- #: includes/admin/views/html-admin-page-status-report.php:613
14834
- msgid "Does your site force a SSL Certificate for transactions?"
14835
  msgstr ""
14836
 
14837
- #: includes/admin/views/html-admin-page-status-report.php:618
14838
- msgid ""
14839
- "What currency prices are listed at in the catalog and which currency "
14840
- "gateways will take payments in."
14841
  msgstr ""
14842
 
14843
- #: includes/admin/views/html-admin-page-status-report.php:623
14844
- msgid "The position of the currency symbol."
14845
  msgstr ""
14846
 
14847
- #: includes/admin/views/html-admin-page-status-report.php:628
14848
- msgid "The thousand separator of displayed prices."
14849
  msgstr ""
14850
 
14851
- #: includes/admin/views/html-admin-page-status-report.php:633
14852
- msgid "The decimal separator of displayed prices."
14853
  msgstr ""
14854
 
14855
- #: includes/admin/views/html-admin-page-status-report.php:638
14856
- msgid "The number of decimal points shown in displayed prices."
14857
  msgstr ""
14858
 
14859
- #: includes/admin/views/html-admin-page-status-report.php:642
14860
- msgid "Taxonomies: Product types"
14861
  msgstr ""
14862
 
14863
- #: includes/admin/views/html-admin-page-status-report.php:643
14864
- msgid ""
14865
- "A list of taxonomy terms that can be used in regard to order/product "
14866
- "statuses."
14867
  msgstr ""
14868
 
14869
- #: includes/admin/views/html-admin-page-status-report.php:655
14870
- msgid "Taxonomies: Product visibility"
14871
  msgstr ""
14872
 
14873
- #: includes/admin/views/html-admin-page-status-report.php:656
14874
- msgid "A list of taxonomy terms used for product visibility."
14875
  msgstr ""
14876
 
14877
- #: includes/admin/views/html-admin-page-status-report.php:672
14878
- msgid "WooCommerce pages"
14879
  msgstr ""
14880
 
14881
- #: includes/admin/views/html-admin-page-status-report.php:683
14882
- #. Translators: %s: page name.
14883
- msgid "Edit %s page"
14884
  msgstr ""
14885
 
14886
- #: includes/admin/views/html-admin-page-status-report.php:690
14887
- #. Translators: %s: page name.
14888
- msgid "The URL of your %s page (along with the Page ID)."
14889
  msgstr ""
14890
 
14891
- #: includes/admin/views/html-admin-page-status-report.php:694
14892
- msgid "Page not set"
14893
  msgstr ""
14894
 
14895
- #: includes/admin/views/html-admin-page-status-report.php:697
14896
- msgid "Page ID is set, but the page does not exist"
14897
  msgstr ""
14898
 
14899
- #: includes/admin/views/html-admin-page-status-report.php:701
14900
- #. Translators: %s: docs link.
14901
- msgid "Page visibility should be <a href=\"%s\" target=\"_blank\">public</a>"
14902
  msgstr ""
14903
 
14904
- #: includes/admin/views/html-admin-page-status-report.php:707
14905
- msgid "Page does not contain the shortcode."
14906
  msgstr ""
14907
 
14908
- #: includes/admin/views/html-admin-page-status-report.php:725
14909
- msgid "Theme"
14910
  msgstr ""
14911
 
14912
- #: includes/admin/views/html-admin-page-status-report.php:731
14913
- msgid "The name of the current active theme."
14914
  msgstr ""
14915
 
14916
- #: includes/admin/views/html-admin-page-status-report.php:735
14917
- msgid "Version"
14918
  msgstr ""
14919
 
14920
- #: includes/admin/views/html-admin-page-status-report.php:736
14921
- msgid "The installed version of the current active theme."
14922
  msgstr ""
14923
 
14924
- #: includes/admin/views/html-admin-page-status-report.php:748
14925
- msgid "Author URL"
14926
  msgstr ""
14927
 
14928
- #: includes/admin/views/html-admin-page-status-report.php:749
14929
- msgid "The theme developers URL."
14930
  msgstr ""
14931
 
14932
- #: includes/admin/views/html-admin-page-status-report.php:753
14933
- msgid "Child theme"
14934
  msgstr ""
14935
 
14936
- #: includes/admin/views/html-admin-page-status-report.php:754
14937
- msgid "Displays whether or not the current theme is a child theme."
14938
  msgstr ""
14939
 
14940
- #: includes/admin/views/html-admin-page-status-report.php:761
14941
- #. Translators: %s docs link.
14942
- msgid ""
14943
- "If you are modifying WooCommerce on a parent theme that you did not build "
14944
- "personally we recommend using a child theme. See: <a href=\"%s\" "
14945
- "target=\"_blank\">How to create a child theme</a>"
14946
  msgstr ""
14947
 
14948
- #: includes/admin/views/html-admin-page-status-report.php:768
14949
- msgid "Parent theme name"
14950
  msgstr ""
14951
 
14952
- #: includes/admin/views/html-admin-page-status-report.php:769
14953
- msgid "The name of the parent theme."
14954
  msgstr ""
14955
 
14956
- #: includes/admin/views/html-admin-page-status-report.php:773
14957
- msgid "Parent theme version"
14958
  msgstr ""
14959
 
14960
- #: includes/admin/views/html-admin-page-status-report.php:774
14961
- msgid "The installed version of the parent theme."
14962
  msgstr ""
14963
 
14964
- #: includes/admin/views/html-admin-page-status-report.php:786
14965
- msgid "Parent theme author URL"
14966
  msgstr ""
14967
 
14968
- #: includes/admin/views/html-admin-page-status-report.php:787
14969
- msgid "The parent theme developers URL."
14970
  msgstr ""
14971
 
14972
- #: includes/admin/views/html-admin-page-status-report.php:792
14973
- msgid "WooCommerce support"
14974
  msgstr ""
14975
 
14976
- #: includes/admin/views/html-admin-page-status-report.php:793
14977
- msgid ""
14978
- "Displays whether or not the current active theme declares WooCommerce "
14979
- "support."
14980
  msgstr ""
14981
 
14982
- #: includes/admin/views/html-admin-page-status-report.php:797
14983
- msgid "Not declared"
14984
  msgstr ""
14985
 
14986
- #: includes/admin/views/html-admin-page-status-report.php:809
14987
- msgid "Templates"
14988
  msgstr ""
14989
 
14990
- #: includes/admin/views/html-admin-page-status-report.php:809
14991
- msgid ""
14992
- "This section shows any files that are overriding the default WooCommerce "
14993
- "template pages."
14994
  msgstr ""
14995
 
14996
- #: includes/admin/views/html-admin-page-status-report.php:815
14997
- msgid "Archive template"
14998
  msgstr ""
14999
 
15000
- #: includes/admin/views/html-admin-page-status-report.php:817
15001
- msgid ""
15002
- "Your theme has a woocommerce.php file, you will not be able to override the "
15003
- "woocommerce/archive-product.php custom template since woocommerce.php has "
15004
- "priority over archive-product.php. This is intended to prevent display "
15005
- "issues."
15006
  msgstr ""
15007
 
15008
- #: includes/admin/views/html-admin-page-status-report.php:822
15009
- #: includes/admin/views/html-admin-page-status-report.php:851
15010
- msgid "Overrides"
15011
  msgstr ""
15012
 
15013
- #: includes/admin/views/html-admin-page-status-report.php:833
15014
- #. Translators: %1$s: Template name, %2$s: Template version, %3$s: Core
15015
- #. version.
15016
- msgid "%1$s version %2$s is out of date. The core version is %3$s"
15017
  msgstr ""
15018
 
15019
- #: includes/admin/views/html-admin-page-status-report.php:859
15020
- msgid "Outdated templates"
15021
  msgstr ""
15022
 
15023
- #: includes/admin/views/html-admin-page-status-report.php:866
15024
- msgid "Learn how to update"
15025
  msgstr ""
15026
 
15027
- #: includes/admin/views/html-admin-page-status.php:13
15028
- msgid "Tools"
15029
  msgstr ""
15030
 
15031
- #: includes/admin/views/html-admin-page-status.php:14
15032
- msgid "Logs"
15033
  msgstr ""
15034
 
15035
- #: includes/admin/views/html-bulk-edit-product.php:26
15036
- #: includes/admin/views/html-bulk-edit-product.php:50
15037
- #: includes/admin/views/html-bulk-edit-product.php:75
15038
- #: includes/admin/views/html-bulk-edit-product.php:94
15039
- #: includes/admin/views/html-bulk-edit-product.php:123
15040
- #: includes/admin/views/html-bulk-edit-product.php:147
15041
- #: includes/admin/views/html-bulk-edit-product.php:169
15042
- #: includes/admin/views/html-bulk-edit-product.php:186
15043
- #: includes/admin/views/html-bulk-edit-product.php:205
15044
- #: includes/admin/views/html-bulk-edit-product.php:239
15045
- #: includes/admin/views/html-bulk-edit-product.php:258
15046
- #: includes/admin/views/html-bulk-edit-product.php:296
15047
- msgid "— No change —"
15048
  msgstr ""
15049
 
15050
- #: includes/admin/views/html-bulk-edit-product.php:27
15051
- #: includes/admin/views/html-bulk-edit-product.php:51
15052
- #: includes/admin/views/html-bulk-edit-product.php:124
15053
- #: includes/admin/views/html-bulk-edit-product.php:148
15054
- #: includes/admin/views/html-bulk-edit-product.php:259
15055
- msgid "Change to:"
15056
  msgstr ""
15057
 
15058
- #: includes/admin/views/html-bulk-edit-product.php:28
15059
- msgid "Increase existing price by (fixed amount or %):"
15060
  msgstr ""
15061
 
15062
- #: includes/admin/views/html-bulk-edit-product.php:29
15063
- msgid "Decrease existing price by (fixed amount or %):"
15064
  msgstr ""
15065
 
15066
- #: includes/admin/views/html-bulk-edit-product.php:39
15067
- msgid "Enter price (%s)"
15068
  msgstr ""
15069
 
15070
- #: includes/admin/views/html-bulk-edit-product.php:45
15071
- #: includes/admin/views/html-quick-edit-product.php:39
15072
- msgid "Sale"
15073
  msgstr ""
15074
 
15075
- #: includes/admin/views/html-bulk-edit-product.php:52
15076
- msgid "Increase existing sale price by (fixed amount or %):"
15077
  msgstr ""
15078
 
15079
- #: includes/admin/views/html-bulk-edit-product.php:53
15080
- msgid "Decrease existing sale price by (fixed amount or %):"
15081
  msgstr ""
15082
 
15083
- #: includes/admin/views/html-bulk-edit-product.php:54
15084
- msgid "Set to regular price decreased by (fixed amount or %):"
15085
  msgstr ""
15086
 
15087
- #: includes/admin/views/html-bulk-edit-product.php:64
15088
- msgid "Enter sale price (%s)"
15089
  msgstr ""
15090
 
15091
- #: includes/admin/views/html-bulk-edit-product.php:142
15092
- #: includes/admin/views/html-quick-edit-product.php:109
15093
- msgid "L/W/H"
15094
  msgstr ""
15095
 
15096
- #: includes/admin/views/html-bulk-edit-product.php:181
15097
- #: includes/admin/views/html-quick-edit-product.php:138
15098
- msgid "Visibility"
15099
  msgstr ""
15100
 
15101
- #: includes/admin/views/html-bulk-edit-product.php:187
15102
- #: includes/admin/views/html-quick-edit-product.php:144
15103
- msgid "Catalog &amp; search"
15104
  msgstr ""
15105
 
15106
- #: includes/admin/views/html-bulk-edit-product.php:188
15107
- #: includes/admin/views/html-quick-edit-product.php:145
15108
- msgid "Catalog"
15109
  msgstr ""
15110
 
15111
- #: includes/admin/views/html-bulk-edit-product.php:189
15112
- #: includes/admin/views/html-quick-edit-product.php:146
15113
- msgid "Search"
15114
  msgstr ""
15115
 
15116
- #: includes/admin/views/html-bulk-edit-product.php:190
15117
- #: includes/admin/views/html-quick-edit-product.php:147
15118
- #: includes/customizer/class-wc-shop-customizer.php:700
15119
- #: includes/wc-product-functions.php:753
15120
- msgid "Hidden"
15121
  msgstr ""
15122
 
15123
- #: includes/admin/views/html-bulk-edit-product.php:222
15124
- #: includes/admin/views/html-bulk-edit-product.php:278
15125
- msgid "— No Change —"
15126
  msgstr ""
15127
 
15128
- #: includes/admin/views/html-bulk-edit-product.php:253
15129
- #: includes/admin/views/html-bulk-edit-product.php:269
15130
- #: includes/admin/views/html-quick-edit-product.php:188
15131
- msgid "Stock qty"
15132
  msgstr ""
15133
 
15134
- #: includes/admin/views/html-bulk-edit-product.php:274
15135
- #: includes/admin/views/html-quick-edit-product.php:197
15136
- msgid "Backorders?"
15137
  msgstr ""
15138
 
15139
- #: includes/admin/views/html-notice-install.php:12
15140
- msgid ""
15141
- "<strong>Welcome to WooCommerce</strong> &#8211; You&lsquo;re almost ready "
15142
- "to start selling :)"
15143
  msgstr ""
15144
 
15145
- #: includes/admin/views/html-notice-install.php:13
15146
- msgid "Run the Setup Wizard"
15147
  msgstr ""
15148
 
15149
- #: includes/admin/views/html-notice-install.php:13
15150
- msgid "Skip setup"
15151
  msgstr ""
15152
 
15153
- #: includes/admin/views/html-notice-legacy-shipping.php:13
15154
- msgid "New:"
15155
  msgstr ""
15156
 
15157
- #: includes/admin/views/html-notice-legacy-shipping.php:13
15158
- msgid ""
15159
- "a group of regions that can be assigned different shipping methods and "
15160
- "rates."
15161
  msgstr ""
15162
 
15163
- #: includes/admin/views/html-notice-legacy-shipping.php:14
15164
- msgid ""
15165
- "Legacy shipping methods (flat rate, international flat rate, local pickup "
15166
- "and delivery, and free shipping) are deprecated but will continue to work "
15167
- "as normal for now. <b><em>They will be removed in future versions of "
15168
- "WooCommerce</em></b>. We recommend disabling these and setting up new rates "
15169
- "within shipping zones as soon as possible."
15170
  msgstr ""
15171
 
15172
- #: includes/admin/views/html-notice-legacy-shipping.php:18
15173
- #: includes/admin/views/html-notice-no-shipping-methods.php:18
15174
- msgid "Setup shipping zones"
15175
  msgstr ""
15176
 
15177
- #: includes/admin/views/html-notice-legacy-shipping.php:20
15178
- #: includes/admin/views/html-notice-no-shipping-methods.php:19
15179
- msgid "Learn more about shipping zones"
15180
  msgstr ""
15181
 
15182
- #: includes/admin/views/html-notice-no-shipping-methods.php:13
15183
- msgid "Add shipping methods &amp; zones"
15184
  msgstr ""
15185
 
15186
- #: includes/admin/views/html-notice-no-shipping-methods.php:14
15187
- msgid ""
15188
- "Shipping is currently enabled, but you have not added any shipping methods "
15189
- "to your shipping zones."
15190
  msgstr ""
15191
 
15192
- #: includes/admin/views/html-notice-no-shipping-methods.php:15
15193
- msgid ""
15194
- "Customers will not be able to purchase physical goods from your store until "
15195
- "a shipping method is available."
15196
  msgstr ""
15197
 
15198
- #: includes/admin/views/html-notice-regenerating-thumbnails.php:10
15199
- msgid "Cancel thumbnail regeneration"
15200
  msgstr ""
15201
 
15202
- #: includes/admin/views/html-notice-regenerating-thumbnails.php:12
15203
- msgid ""
15204
- "Thumbnail regeneration is running in the background. Depending on the "
15205
- "amount of images in your store this may take a while."
15206
  msgstr ""
15207
 
15208
- #: includes/admin/views/html-notice-secure-connection.php:18
15209
- #. translators: %s: documentation URL
15210
- msgid ""
15211
- "Your store does not appear to be using a secure connection. We highly "
15212
- "recommend serving your entire website over an HTTPS connection to help keep "
15213
- "customer data secure. <a href=\"%s\">Learn more here.</a>"
15214
  msgstr ""
15215
 
15216
- #: includes/admin/views/html-notice-simplify-commerce.php:21
15217
- msgid ""
15218
- "<strong>The Simplify Commerce payment gateway is deprecated</strong> "
15219
- "&#8211; Please install our new free Simplify Commerce plugin from "
15220
- "WordPress.org. Simplify Commerce will be removed from WooCommerce core in a "
15221
- "future update."
15222
  msgstr ""
15223
 
15224
- #: includes/admin/views/html-notice-simplify-commerce.php:23
15225
- msgid "Install our new Simplify Commerce plugin"
15226
  msgstr ""
15227
 
15228
- #: includes/admin/views/html-notice-template-check.php:15
15229
- msgid ""
15230
- "<strong>Your theme (%1$s) contains outdated copies of some WooCommerce "
15231
- "template files.</strong> These files may need updating to ensure they are "
15232
- "compatible with the current version of WooCommerce. You can see which files "
15233
- "are affected from the <a href=\"%2$s\">system status page</a>. If in doubt, "
15234
- "check with the author of the theme."
15235
  msgstr ""
15236
 
15237
- #: includes/admin/views/html-notice-template-check.php:16
15238
- msgid "Learn more about templates"
15239
  msgstr ""
15240
 
15241
- #: includes/admin/views/html-notice-theme-support.php:14
15242
- msgid ""
15243
- "<strong>Your theme does not declare WooCommerce support</strong> &#8211; "
15244
- "Please read our <a href=\"%1$s\" target=\"_blank\">integration</a> guide or "
15245
- "check out our <a href=\"%2$s\" target=\"_blank\">Storefront</a> theme which "
15246
- "is totally free to download and designed specifically for use with "
15247
- "WooCommerce."
15248
  msgstr ""
15249
 
15250
- #: includes/admin/views/html-notice-theme-support.php:16
15251
- msgid "Read more about Storefront"
15252
  msgstr ""
15253
 
15254
- #: includes/admin/views/html-notice-theme-support.php:17
15255
- msgid "Theme integration guide"
15256
  msgstr ""
15257
 
15258
- #: includes/admin/views/html-notice-update.php:12
15259
- #: includes/admin/views/html-notice-updating.php:12
15260
- msgid "WooCommerce data update"
15261
  msgstr ""
15262
 
15263
- #: includes/admin/views/html-notice-update.php:12
15264
- msgid "We need to update your store database to the latest version."
15265
  msgstr ""
15266
 
15267
- #: includes/admin/views/html-notice-update.php:13
15268
- msgid "Run the updater"
15269
  msgstr ""
15270
 
15271
- #: includes/admin/views/html-notice-update.php:17
15272
- msgid ""
15273
- "It is strongly recommended that you backup your database before proceeding. "
15274
- "Are you sure you wish to run the updater now?"
15275
  msgstr ""
15276
 
15277
- #: includes/admin/views/html-notice-updated.php:14
15278
- msgid ""
15279
- "WooCommerce data update complete. Thank you for updating to the latest "
15280
- "version!"
15281
  msgstr ""
15282
 
15283
- #: includes/admin/views/html-notice-updating.php:12
15284
- msgid "Your database is being updated in the background."
15285
  msgstr ""
15286
 
15287
- #: includes/admin/views/html-notice-updating.php:12
15288
- msgid "Taking a while? Click here to run it now."
15289
  msgstr ""
15290
 
15291
- #: includes/admin/views/html-report-by-date.php:22
15292
- #. translators: 1: start date 2: end date
15293
- msgid "From %1$s to %2$s"
15294
  msgstr ""
15295
 
15296
- #: includes/admin/views/html-report-by-date.php:41
15297
- msgid "Custom:"
15298
  msgstr ""
15299
 
15300
- #: includes/api/class-wc-rest-authentication.php:163
15301
- #: includes/api/legacy/v1/class-wc-api-authentication.php:114
15302
- #: includes/api/legacy/v2/class-wc-api-authentication.php:114
15303
- #: includes/api/legacy/v3/class-wc-api-authentication.php:82
15304
- msgid "Consumer secret is invalid."
15305
  msgstr ""
15306
 
15307
- #: includes/api/class-wc-rest-authentication.php:281
15308
- #. translators: %s: amount of errors
15309
- msgid "Missing OAuth parameter %s"
15310
- msgid_plural "Missing OAuth parameters %s"
15311
- msgstr[0] ""
15312
- msgstr[1] ""
15313
 
15314
- #: includes/api/class-wc-rest-authentication.php:321
15315
- #: includes/api/legacy/v1/class-wc-api-authentication.php:183
15316
- #: includes/api/legacy/v2/class-wc-api-authentication.php:182
15317
- #: includes/api/legacy/v3/class-wc-api-authentication.php:178
15318
- msgid "Consumer key is invalid."
15319
  msgstr ""
15320
 
15321
- #: includes/api/class-wc-rest-authentication.php:365
15322
- #: includes/api/legacy/v1/class-wc-api-authentication.php:252
15323
- #: includes/api/legacy/v2/class-wc-api-authentication.php:250
15324
- #: includes/api/legacy/v3/class-wc-api-authentication.php:242
15325
- msgid "Invalid signature - failed to sort parameters."
15326
  msgstr ""
15327
 
15328
- #: includes/api/class-wc-rest-authentication.php:374
15329
- #: includes/api/legacy/v1/class-wc-api-authentication.php:266
15330
- #: includes/api/legacy/v2/class-wc-api-authentication.php:264
15331
- #: includes/api/legacy/v3/class-wc-api-authentication.php:262
15332
- msgid "Invalid signature - signature method is invalid."
15333
  msgstr ""
15334
 
15335
- #: includes/api/class-wc-rest-authentication.php:382
15336
- #: includes/api/legacy/v1/class-wc-api-authentication.php:274
15337
- #: includes/api/legacy/v2/class-wc-api-authentication.php:272
15338
- #: includes/api/legacy/v3/class-wc-api-authentication.php:271
15339
- msgid "Invalid signature - provided signature does not match."
15340
  msgstr ""
15341
 
15342
- #: includes/api/class-wc-rest-authentication.php:458
15343
- #: includes/api/legacy/v1/class-wc-api-authentication.php:332
15344
- #: includes/api/legacy/v2/class-wc-api-authentication.php:330
15345
- #: includes/api/legacy/v3/class-wc-api-authentication.php:336
15346
- msgid "Invalid timestamp."
15347
  msgstr ""
15348
 
15349
- #: includes/api/class-wc-rest-authentication.php:468
15350
- #: includes/api/legacy/v1/class-wc-api-authentication.php:342
15351
- #: includes/api/legacy/v2/class-wc-api-authentication.php:340
15352
- #: includes/api/legacy/v3/class-wc-api-authentication.php:346
15353
- msgid "Invalid nonce - nonce has already been used."
15354
  msgstr ""
15355
 
15356
- #: includes/api/class-wc-rest-authentication.php:529
15357
- #: includes/api/legacy/v1/class-wc-api-authentication.php:377
15358
- #: includes/api/legacy/v2/class-wc-api-authentication.php:375
15359
- #: includes/api/legacy/v3/class-wc-api-authentication.php:381
15360
- msgid "The API key provided does not have read permissions."
15361
  msgstr ""
15362
 
15363
- #: includes/api/class-wc-rest-authentication.php:537
15364
- #: includes/api/legacy/v1/class-wc-api-authentication.php:386
15365
- #: includes/api/legacy/v2/class-wc-api-authentication.php:384
15366
- #: includes/api/legacy/v3/class-wc-api-authentication.php:390
15367
- msgid "The API key provided does not have write permissions."
15368
  msgstr ""
15369
 
15370
- #: includes/api/class-wc-rest-authentication.php:544
15371
- msgid "Unknown request method."
15372
  msgstr ""
15373
 
15374
- #: includes/api/class-wc-rest-authentication.php:575
15375
- #: includes/api/legacy/v3/class-wc-api-authentication.php:110
15376
- msgid ""
15377
- "WooCommerce API. Use a consumer key in the username field and a consumer "
15378
- "secret in the password field."
15379
  msgstr ""
15380
 
15381
- #: includes/api/class-wc-rest-coupons-controller.php:61
15382
- #: includes/api/class-wc-rest-coupons-controller.php:341
15383
- #: includes/api/class-wc-rest-orders-controller.php:1564
15384
- #: includes/api/v1/class-wc-rest-coupons-controller.php:70
15385
- #: includes/api/v1/class-wc-rest-coupons-controller.php:421
15386
- #: includes/api/v1/class-wc-rest-orders-controller.php:1535
15387
- msgid "Coupon code."
15388
  msgstr ""
15389
 
15390
- #: includes/api/class-wc-rest-coupons-controller.php:102
15391
- #: includes/api/class-wc-rest-orders-controller.php:108
15392
- #: includes/api/class-wc-rest-product-variations-controller.php:115
15393
- #: includes/api/class-wc-rest-products-controller.php:111
15394
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:87
15395
- #: includes/api/class-wc-rest-shipping-zones-controller.php:77
15396
- #: includes/api/v1/class-wc-rest-coupons-controller.php:108
15397
- #: includes/api/v1/class-wc-rest-orders-controller.php:102
15398
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:118
15399
- #: includes/api/v1/class-wc-rest-products-controller.php:102
15400
- msgid "Whether to bypass trash and force deletion."
15401
  msgstr ""
15402
 
15403
- #: includes/api/class-wc-rest-coupons-controller.php:271
15404
- #: includes/api/legacy/class-wc-rest-legacy-coupons-controller.php:113
15405
- #: includes/api/v1/class-wc-rest-coupons-controller.php:253
15406
- msgid "The coupon code cannot be empty."
15407
  msgstr ""
15408
 
15409
- #: includes/api/class-wc-rest-coupons-controller.php:286
15410
- #: includes/api/legacy/class-wc-rest-legacy-coupons-controller.php:129
15411
- #: includes/api/legacy/v2/class-wc-api-coupons.php:233
15412
- #: includes/api/legacy/v2/class-wc-api-coupons.php:344
15413
- #: includes/api/legacy/v3/class-wc-api-coupons.php:231
15414
- #: includes/api/legacy/v3/class-wc-api-coupons.php:342
15415
- #: includes/api/v1/class-wc-rest-coupons-controller.php:269
15416
- msgid "The coupon code already exists"
15417
  msgstr ""
15418
 
15419
- #: includes/api/class-wc-rest-coupons-controller.php:335
15420
- #: includes/api/v1/class-wc-rest-coupons-controller.php:415
15421
- msgid "Unique identifier for the object."
15422
  msgstr ""
15423
 
15424
- #: includes/api/class-wc-rest-coupons-controller.php:346
15425
- #: includes/api/v1/class-wc-rest-coupons-controller.php:450
15426
- msgid ""
15427
- "The amount of discount. Should always be numeric, even if setting a "
15428
- "percentage."
15429
  msgstr ""
15430
 
15431
- #: includes/api/class-wc-rest-coupons-controller.php:351
15432
- #: includes/api/v1/class-wc-rest-coupons-controller.php:426
15433
- msgid "The date the coupon was created, in the site's timezone."
15434
  msgstr ""
15435
 
15436
- #: includes/api/class-wc-rest-coupons-controller.php:357
15437
- msgid "The date the coupon was created, as GMT."
15438
  msgstr ""
15439
 
15440
- #: includes/api/class-wc-rest-coupons-controller.php:363
15441
- #: includes/api/v1/class-wc-rest-coupons-controller.php:432
15442
- msgid "The date the coupon was last modified, in the site's timezone."
15443
  msgstr ""
15444
 
15445
- #: includes/api/class-wc-rest-coupons-controller.php:369
15446
- msgid "The date the coupon was last modified, as GMT."
15447
  msgstr ""
15448
 
15449
- #: includes/api/class-wc-rest-coupons-controller.php:375
15450
- #: includes/api/v1/class-wc-rest-coupons-controller.php:443
15451
- msgid "Determines the type of discount that will be applied."
15452
  msgstr ""
15453
 
15454
- #: includes/api/class-wc-rest-coupons-controller.php:382
15455
- #: includes/api/v1/class-wc-rest-coupons-controller.php:438
15456
- msgid "Coupon description."
15457
  msgstr ""
15458
 
15459
- #: includes/api/class-wc-rest-coupons-controller.php:387
15460
- msgid "The date the coupon expires, in the site's timezone."
15461
  msgstr ""
15462
 
15463
- #: includes/api/class-wc-rest-coupons-controller.php:392
15464
- msgid "The date the coupon expires, as GMT."
15465
  msgstr ""
15466
 
15467
- #: includes/api/class-wc-rest-coupons-controller.php:397
15468
- #: includes/api/v1/class-wc-rest-coupons-controller.php:460
15469
- msgid "Number of times the coupon has been used already."
15470
  msgstr ""
15471
 
15472
- #: includes/api/class-wc-rest-coupons-controller.php:403
15473
- #: includes/api/v1/class-wc-rest-coupons-controller.php:466
15474
- msgid ""
15475
- "If true, the coupon can only be used individually. Other applied coupons "
15476
- "will be removed from the cart."
15477
  msgstr ""
15478
 
15479
- #: includes/api/class-wc-rest-coupons-controller.php:409
15480
- #: includes/api/v1/class-wc-rest-coupons-controller.php:472
15481
- msgid "List of product IDs the coupon can be used on."
15482
  msgstr ""
15483
 
15484
- #: includes/api/class-wc-rest-coupons-controller.php:417
15485
- #: includes/api/v1/class-wc-rest-coupons-controller.php:480
15486
- msgid "List of product IDs the coupon cannot be used on."
15487
  msgstr ""
15488
 
15489
- #: includes/api/class-wc-rest-coupons-controller.php:425
15490
- #: includes/api/v1/class-wc-rest-coupons-controller.php:488
15491
- msgid "How many times the coupon can be used in total."
15492
  msgstr ""
15493
 
15494
- #: includes/api/class-wc-rest-coupons-controller.php:430
15495
- #: includes/api/v1/class-wc-rest-coupons-controller.php:493
15496
- msgid "How many times the coupon can be used per customer."
15497
  msgstr ""
15498
 
15499
- #: includes/api/class-wc-rest-coupons-controller.php:435
15500
- #: includes/api/v1/class-wc-rest-coupons-controller.php:498
15501
- msgid "Max number of items in the cart the coupon can be applied to."
15502
  msgstr ""
15503
 
15504
- #: includes/api/class-wc-rest-coupons-controller.php:440
15505
- #: includes/api/v1/class-wc-rest-coupons-controller.php:503
15506
- msgid ""
15507
- "If true and if the free shipping method requires a coupon, this coupon will "
15508
- "enable free shipping."
15509
  msgstr ""
15510
 
15511
- #: includes/api/class-wc-rest-coupons-controller.php:446
15512
- #: includes/api/v1/class-wc-rest-coupons-controller.php:509
15513
- msgid "List of category IDs the coupon applies to."
15514
  msgstr ""
15515
 
15516
- #: includes/api/class-wc-rest-coupons-controller.php:454
15517
- #: includes/api/v1/class-wc-rest-coupons-controller.php:517
15518
- msgid "List of category IDs the coupon does not apply to."
15519
  msgstr ""
15520
 
15521
- #: includes/api/class-wc-rest-coupons-controller.php:462
15522
- #: includes/api/v1/class-wc-rest-coupons-controller.php:525
15523
- msgid "If true, this coupon will not be applied to items that have sale prices."
15524
  msgstr ""
15525
 
15526
- #: includes/api/class-wc-rest-coupons-controller.php:468
15527
- #: includes/api/v1/class-wc-rest-coupons-controller.php:531
15528
- msgid "Minimum order amount that needs to be in the cart before coupon applies."
15529
  msgstr ""
15530
 
15531
- #: includes/api/class-wc-rest-coupons-controller.php:473
15532
- #: includes/api/v1/class-wc-rest-coupons-controller.php:536
15533
- msgid "Maximum order amount allowed when using the coupon."
15534
  msgstr ""
15535
 
15536
- #: includes/api/class-wc-rest-coupons-controller.php:478
15537
- #: includes/api/v1/class-wc-rest-coupons-controller.php:541
15538
- msgid "List of email addresses that can use this coupon."
15539
  msgstr ""
15540
 
15541
- #: includes/api/class-wc-rest-coupons-controller.php:486
15542
- #: includes/api/v1/class-wc-rest-coupons-controller.php:549
15543
- msgid "List of user IDs (or guest email addresses) that have used the coupon."
15544
  msgstr ""
15545
 
15546
- #: includes/api/class-wc-rest-coupons-controller.php:495
15547
- #: includes/api/class-wc-rest-customers-controller.php:334
15548
- #: includes/api/class-wc-rest-order-refunds-controller.php:393
15549
- #: includes/api/class-wc-rest-order-refunds-controller.php:516
15550
- #: includes/api/class-wc-rest-orders-controller.php:1135
15551
- #: includes/api/class-wc-rest-orders-controller.php:1247
15552
- #: includes/api/class-wc-rest-orders-controller.php:1338
15553
- #: includes/api/class-wc-rest-orders-controller.php:1424
15554
- #: includes/api/class-wc-rest-orders-controller.php:1522
15555
- #: includes/api/class-wc-rest-orders-controller.php:1580
15556
- #: includes/api/class-wc-rest-product-variations-controller.php:973
15557
- #: includes/api/class-wc-rest-products-controller.php:2006
15558
- msgid "Meta data."
15559
  msgstr ""
15560
 
15561
- #: includes/api/class-wc-rest-coupons-controller.php:502
15562
- #: includes/api/class-wc-rest-customers-controller.php:341
15563
- #: includes/api/class-wc-rest-order-refunds-controller.php:400
15564
- #: includes/api/class-wc-rest-order-refunds-controller.php:524
15565
- #: includes/api/class-wc-rest-orders-controller.php:1142
15566
- #: includes/api/class-wc-rest-orders-controller.php:1254
15567
- #: includes/api/class-wc-rest-orders-controller.php:1345
15568
- #: includes/api/class-wc-rest-orders-controller.php:1431
15569
- #: includes/api/class-wc-rest-orders-controller.php:1529
15570
- #: includes/api/class-wc-rest-orders-controller.php:1587
15571
- #: includes/api/class-wc-rest-product-variations-controller.php:980
15572
- #: includes/api/class-wc-rest-products-controller.php:2013
15573
- msgid "Meta ID."
15574
  msgstr ""
15575
 
15576
- #: includes/api/class-wc-rest-coupons-controller.php:508
15577
- #: includes/api/class-wc-rest-customers-controller.php:347
15578
- #: includes/api/class-wc-rest-order-refunds-controller.php:406
15579
- #: includes/api/class-wc-rest-order-refunds-controller.php:530
15580
- #: includes/api/class-wc-rest-orders-controller.php:1148
15581
- #: includes/api/class-wc-rest-orders-controller.php:1260
15582
- #: includes/api/class-wc-rest-orders-controller.php:1351
15583
- #: includes/api/class-wc-rest-orders-controller.php:1437
15584
- #: includes/api/class-wc-rest-orders-controller.php:1535
15585
- #: includes/api/class-wc-rest-orders-controller.php:1593
15586
- #: includes/api/class-wc-rest-product-variations-controller.php:986
15587
- #: includes/api/class-wc-rest-products-controller.php:2019
15588
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:483
15589
- #: includes/api/v1/class-wc-rest-orders-controller.php:1314
15590
- msgid "Meta key."
15591
  msgstr ""
15592
 
15593
- #: includes/api/class-wc-rest-coupons-controller.php:513
15594
- #: includes/api/class-wc-rest-customers-controller.php:352
15595
- #: includes/api/class-wc-rest-order-refunds-controller.php:411
15596
- #: includes/api/class-wc-rest-order-refunds-controller.php:536
15597
- #: includes/api/class-wc-rest-orders-controller.php:1153
15598
- #: includes/api/class-wc-rest-orders-controller.php:1265
15599
- #: includes/api/class-wc-rest-orders-controller.php:1356
15600
- #: includes/api/class-wc-rest-orders-controller.php:1442
15601
- #: includes/api/class-wc-rest-orders-controller.php:1540
15602
- #: includes/api/class-wc-rest-orders-controller.php:1598
15603
- #: includes/api/class-wc-rest-product-variations-controller.php:991
15604
- #: includes/api/class-wc-rest-products-controller.php:2024
15605
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:495
15606
- #: includes/api/v1/class-wc-rest-orders-controller.php:1326
15607
- msgid "Meta value."
15608
  msgstr ""
15609
 
15610
- #: includes/api/class-wc-rest-coupons-controller.php:534
15611
- #: includes/api/v1/class-wc-rest-coupons-controller.php:572
15612
- msgid "Limit result set to resources with a specific code."
15613
  msgstr ""
15614
 
15615
- #: includes/api/class-wc-rest-customer-downloads-controller.php:81
15616
- msgid "Download ID."
15617
  msgstr ""
15618
 
15619
- #: includes/api/class-wc-rest-customer-downloads-controller.php:87
15620
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:169
15621
- msgid "Download file URL."
15622
  msgstr ""
15623
 
15624
- #: includes/api/class-wc-rest-customer-downloads-controller.php:93
15625
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:181
15626
- msgid "Downloadable product ID."
15627
  msgstr ""
15628
 
15629
- #: includes/api/class-wc-rest-customer-downloads-controller.php:99
15630
- #: includes/api/class-wc-rest-order-refunds-controller.php:433
15631
- #: includes/api/class-wc-rest-orders-controller.php:1174
15632
- #: includes/api/class-wc-rest-products-controller.php:1435
15633
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:380
15634
- #: includes/api/v1/class-wc-rest-orders-controller.php:1218
15635
- #: includes/api/v1/class-wc-rest-products-controller.php:1740
15636
- #: includes/api/v1/class-wc-rest-report-top-sellers-controller.php:152
15637
- msgid "Product name."
15638
  msgstr ""
15639
 
15640
- #: includes/api/class-wc-rest-customer-downloads-controller.php:105
15641
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:187
15642
- msgid "Downloadable file name."
15643
  msgstr ""
15644
 
15645
- #: includes/api/class-wc-rest-customer-downloads-controller.php:111
15646
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:193
15647
- #: includes/cli/class-wc-cli-runner.php:112
15648
- msgid "Order ID."
15649
  msgstr ""
15650
 
15651
- #: includes/api/class-wc-rest-customer-downloads-controller.php:117
15652
- #: includes/api/class-wc-rest-orders-controller.php:848
15653
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:199
15654
- #: includes/api/v1/class-wc-rest-orders-controller.php:937
15655
- msgid "Order key."
15656
  msgstr ""
15657
 
15658
- #: includes/api/class-wc-rest-customer-downloads-controller.php:123
15659
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:205
15660
- msgid "Number of downloads remaining."
15661
  msgstr ""
15662
 
15663
- #: includes/api/class-wc-rest-customer-downloads-controller.php:129
15664
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:211
15665
- msgid "The date when download access expires, in the site's timezone."
15666
  msgstr ""
15667
 
15668
- #: includes/api/class-wc-rest-customer-downloads-controller.php:135
15669
- msgid "The date when download access expires, as GMT."
15670
  msgstr ""
15671
 
15672
- #: includes/api/class-wc-rest-customer-downloads-controller.php:141
15673
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:217
15674
- msgid "File details."
15675
  msgstr ""
15676
 
15677
- #: includes/api/class-wc-rest-customer-downloads-controller.php:147
15678
- #: includes/api/class-wc-rest-product-variations-controller.php:771
15679
- #: includes/api/class-wc-rest-products-controller.php:1603
15680
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:223
15681
- #: includes/api/v1/class-wc-rest-products-controller.php:1886
15682
- #: includes/api/v1/class-wc-rest-products-controller.php:2364
15683
- msgid "File name."
15684
  msgstr ""
15685
 
15686
- #: includes/api/class-wc-rest-customer-downloads-controller.php:153
15687
- #: includes/api/class-wc-rest-product-variations-controller.php:776
15688
- #: includes/api/class-wc-rest-products-controller.php:1608
15689
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:229
15690
- #: includes/api/v1/class-wc-rest-products-controller.php:1891
15691
- #: includes/api/v1/class-wc-rest-products-controller.php:2369
15692
- msgid "File URL."
15693
  msgstr ""
15694
 
15695
- #: includes/api/class-wc-rest-customers-controller.php:130
15696
- msgid "The date the customer was created, in the site's timezone."
15697
  msgstr ""
15698
 
15699
- #: includes/api/class-wc-rest-customers-controller.php:136
15700
- #: includes/api/class-wc-rest-orders-controller.php:886
15701
- #: includes/api/v1/class-wc-rest-orders-controller.php:968
15702
- msgid "The date the order was created, as GMT."
15703
  msgstr ""
15704
 
15705
- #: includes/api/class-wc-rest-customers-controller.php:142
15706
- msgid "The date the customer was last modified, in the site's timezone."
15707
  msgstr ""
15708
 
15709
- #: includes/api/class-wc-rest-customers-controller.php:148
15710
- #: includes/api/v1/class-wc-rest-customers-controller.php:644
15711
- msgid "The date the customer was last modified, as GMT."
15712
  msgstr ""
15713
 
15714
- #: includes/api/class-wc-rest-customers-controller.php:154
15715
- #: includes/api/v1/class-wc-rest-customers-controller.php:650
15716
- msgid "The email address for the customer."
15717
  msgstr ""
15718
 
15719
- #: includes/api/class-wc-rest-customers-controller.php:160
15720
- #: includes/api/v1/class-wc-rest-customers-controller.php:656
15721
- msgid "Customer first name."
15722
  msgstr ""
15723
 
15724
- #: includes/api/class-wc-rest-customers-controller.php:168
15725
- #: includes/api/v1/class-wc-rest-customers-controller.php:664
15726
- msgid "Customer last name."
15727
  msgstr ""
15728
 
15729
- #: includes/api/class-wc-rest-customers-controller.php:176
15730
- msgid "Customer role."
15731
  msgstr ""
15732
 
15733
- #: includes/api/class-wc-rest-customers-controller.php:182
15734
- #: includes/api/v1/class-wc-rest-customers-controller.php:672
15735
- msgid "Customer login name."
15736
  msgstr ""
15737
 
15738
- #: includes/api/class-wc-rest-customers-controller.php:190
15739
- #: includes/api/v1/class-wc-rest-customers-controller.php:680
15740
- msgid "Customer password."
15741
  msgstr ""
15742
 
15743
- #: includes/api/class-wc-rest-customers-controller.php:195
15744
- #: includes/api/v1/class-wc-rest-customers-controller.php:723
15745
- msgid "List of billing address data."
15746
  msgstr ""
15747
 
15748
- #: includes/api/class-wc-rest-customers-controller.php:200
15749
- #: includes/api/class-wc-rest-customers-controller.php:263
15750
- #: includes/api/class-wc-rest-orders-controller.php:980
15751
- #: includes/api/class-wc-rest-orders-controller.php:1043
15752
- #: includes/api/v1/class-wc-rest-customers-controller.php:728
15753
- #: includes/api/v1/class-wc-rest-customers-controller.php:791
15754
- #: includes/api/v1/class-wc-rest-orders-controller.php:1033
15755
- #: includes/api/v1/class-wc-rest-orders-controller.php:1096
15756
- msgid "First name."
15757
  msgstr ""
15758
 
15759
- #: includes/api/class-wc-rest-customers-controller.php:205
15760
- #: includes/api/class-wc-rest-customers-controller.php:268
15761
- #: includes/api/class-wc-rest-orders-controller.php:985
15762
- #: includes/api/class-wc-rest-orders-controller.php:1048
15763
- #: includes/api/v1/class-wc-rest-customers-controller.php:733
15764
- #: includes/api/v1/class-wc-rest-customers-controller.php:796
15765
- #: includes/api/v1/class-wc-rest-orders-controller.php:1038
15766
- #: includes/api/v1/class-wc-rest-orders-controller.php:1101
15767
- msgid "Last name."
15768
  msgstr ""
15769
 
15770
- #: includes/api/class-wc-rest-customers-controller.php:210
15771
- #: includes/api/class-wc-rest-customers-controller.php:273
15772
- #: includes/api/class-wc-rest-orders-controller.php:990
15773
- #: includes/api/class-wc-rest-orders-controller.php:1053
15774
- #: includes/api/v1/class-wc-rest-customers-controller.php:738
15775
- #: includes/api/v1/class-wc-rest-customers-controller.php:801
15776
- #: includes/api/v1/class-wc-rest-orders-controller.php:1043
15777
- #: includes/api/v1/class-wc-rest-orders-controller.php:1106
15778
- msgid "Company name."
15779
  msgstr ""
15780
 
15781
- #: includes/api/class-wc-rest-customers-controller.php:225
15782
- #: includes/api/class-wc-rest-customers-controller.php:288
15783
- #: includes/api/class-wc-rest-orders-controller.php:1005
15784
- #: includes/api/class-wc-rest-orders-controller.php:1068
15785
- #: includes/api/v1/class-wc-rest-customers-controller.php:753
15786
- #: includes/api/v1/class-wc-rest-customers-controller.php:816
15787
- #: includes/api/v1/class-wc-rest-orders-controller.php:1058
15788
- #: includes/api/v1/class-wc-rest-orders-controller.php:1121
15789
- #: includes/api/v1/class-wc-rest-taxes-controller.php:597
15790
- msgid "City name."
15791
  msgstr ""
15792
 
15793
- #: includes/api/class-wc-rest-customers-controller.php:230
15794
- #: includes/api/class-wc-rest-customers-controller.php:293
15795
- #: includes/api/class-wc-rest-orders-controller.php:1010
15796
- #: includes/api/class-wc-rest-orders-controller.php:1073
15797
- #: includes/api/v1/class-wc-rest-customers-controller.php:758
15798
- #: includes/api/v1/class-wc-rest-customers-controller.php:821
15799
- #: includes/api/v1/class-wc-rest-orders-controller.php:1063
15800
- #: includes/api/v1/class-wc-rest-orders-controller.php:1126
15801
- msgid "ISO code or name of the state, province or district."
15802
  msgstr ""
15803
 
15804
- #: includes/api/class-wc-rest-customers-controller.php:235
15805
- #: includes/api/class-wc-rest-customers-controller.php:298
15806
- #: includes/api/class-wc-rest-orders-controller.php:1015
15807
- #: includes/api/class-wc-rest-orders-controller.php:1078
15808
- #: includes/api/v1/class-wc-rest-customers-controller.php:763
15809
- #: includes/api/v1/class-wc-rest-customers-controller.php:826
15810
- #: includes/api/v1/class-wc-rest-orders-controller.php:1068
15811
- #: includes/api/v1/class-wc-rest-orders-controller.php:1131
15812
- msgid "Postal code."
15813
  msgstr ""
15814
 
15815
- #: includes/api/class-wc-rest-customers-controller.php:240
15816
- #: includes/api/class-wc-rest-customers-controller.php:303
15817
- #: includes/api/v1/class-wc-rest-customers-controller.php:768
15818
- #: includes/api/v1/class-wc-rest-customers-controller.php:831
15819
- msgid "ISO code of the country."
15820
  msgstr ""
15821
 
15822
- #: includes/api/class-wc-rest-customers-controller.php:245
15823
- #: includes/api/class-wc-rest-orders-controller.php:1025
15824
- #: includes/api/v1/class-wc-rest-customers-controller.php:773
15825
- #: includes/api/v1/class-wc-rest-orders-controller.php:1078
15826
- msgid "Email address."
15827
  msgstr ""
15828
 
15829
- #: includes/api/class-wc-rest-customers-controller.php:251
15830
- #: includes/api/class-wc-rest-orders-controller.php:1031
15831
- #: includes/api/v1/class-wc-rest-customers-controller.php:779
15832
- #: includes/api/v1/class-wc-rest-orders-controller.php:1084
15833
- msgid "Phone number."
15834
  msgstr ""
15835
 
15836
- #: includes/api/class-wc-rest-customers-controller.php:258
15837
- #: includes/api/v1/class-wc-rest-customers-controller.php:786
15838
- msgid "List of shipping address data."
15839
  msgstr ""
15840
 
15841
- #: includes/api/class-wc-rest-customers-controller.php:310
15842
- msgid "Is the customer a paying customer?"
15843
  msgstr ""
15844
 
15845
- #: includes/api/class-wc-rest-customers-controller.php:316
15846
- #: includes/api/v1/class-wc-rest-customers-controller.php:705
15847
- msgid "Quantity of orders made by the customer."
15848
  msgstr ""
15849
 
15850
- #: includes/api/class-wc-rest-customers-controller.php:322
15851
- #: includes/api/v1/class-wc-rest-customers-controller.php:711
15852
- msgid "Total amount spent."
15853
  msgstr ""
15854
 
15855
- #: includes/api/class-wc-rest-customers-controller.php:328
15856
- #: includes/api/v1/class-wc-rest-customers-controller.php:717
15857
- msgid "Avatar URL."
15858
  msgstr ""
15859
 
15860
- #: includes/api/class-wc-rest-network-orders-controller.php:51
15861
- msgid "Blog id of the record on the multisite."
15862
  msgstr ""
15863
 
15864
- #: includes/api/class-wc-rest-network-orders-controller.php:57
15865
- msgid "URL to edit the order"
15866
  msgstr ""
15867
 
15868
- #: includes/api/class-wc-rest-network-orders-controller.php:63
15869
- msgid "Name of the customer for the order"
15870
  msgstr ""
15871
 
15872
- #: includes/api/class-wc-rest-network-orders-controller.php:69
15873
- msgid "Order Status"
15874
  msgstr ""
15875
 
15876
- #: includes/api/class-wc-rest-network-orders-controller.php:75
15877
- msgid "Order total formatted for locale"
15878
  msgstr ""
15879
 
15880
- #: includes/api/class-wc-rest-order-notes-controller.php:39
15881
- #: includes/api/class-wc-rest-order-refunds-controller.php:191
15882
- #: includes/api/class-wc-rest-order-refunds-controller.php:273
15883
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:186
15884
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:226
15885
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:268
15886
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:301
15887
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:127
15888
- #: includes/wc-core-functions.php:142 includes/wc-order-functions.php:486
15889
- #: includes/wc-order-functions.php:1019
15890
- msgid "Invalid order ID."
15891
  msgstr ""
15892
 
15893
- #: includes/api/class-wc-rest-order-notes-controller.php:135
15894
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:407
15895
- msgid "The date the order note was created, in the site's timezone."
15896
  msgstr ""
15897
 
15898
- #: includes/api/class-wc-rest-order-notes-controller.php:141
15899
- msgid "The date the order note was created, as GMT."
15900
  msgstr ""
15901
 
15902
- #: includes/api/class-wc-rest-order-notes-controller.php:147
15903
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:70
15904
- msgid "Order note content."
15905
  msgstr ""
15906
 
15907
- #: includes/api/class-wc-rest-order-notes-controller.php:152
15908
- msgid ""
15909
- "If true, the note will be shown to customers and they will be notified. If "
15910
- "false, the note will be for admin reference only."
15911
  msgstr ""
15912
 
15913
- #: includes/api/class-wc-rest-order-notes-controller.php:173
15914
- msgid "Limit result to customers or internal notes."
15915
  msgstr ""
15916
 
15917
- #: includes/api/class-wc-rest-order-refunds-controller.php:64
15918
- #: includes/api/class-wc-rest-order-refunds-controller.php:88
15919
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:53
15920
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:85
15921
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:61
15922
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:83
15923
- msgid "The order ID."
15924
  msgstr ""
15925
 
15926
- #: includes/api/class-wc-rest-order-refunds-controller.php:195
15927
- #: includes/api/legacy/v2/class-wc-api-orders.php:1518
15928
- #: includes/api/legacy/v2/class-wc-api-orders.php:1680
15929
- #: includes/api/legacy/v2/class-wc-api-orders.php:1741
15930
- #: includes/api/legacy/v3/class-wc-api-orders.php:1565
15931
- #: includes/api/legacy/v3/class-wc-api-orders.php:1727
15932
- #: includes/api/legacy/v3/class-wc-api-orders.php:1788
15933
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:133
15934
- msgid "Invalid order refund ID."
15935
  msgstr ""
15936
 
15937
- #: includes/api/class-wc-rest-order-refunds-controller.php:277
15938
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:291
15939
- msgid "Refund amount must be greater than zero."
15940
  msgstr ""
15941
 
15942
- #: includes/api/class-wc-rest-order-refunds-controller.php:296
15943
- #: includes/api/legacy/v2/class-wc-api-orders.php:1617
15944
- #: includes/api/legacy/v3/class-wc-api-orders.php:1664
15945
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:308
15946
- msgid "Cannot create order refund, please try again."
15947
  msgstr ""
15948
 
15949
- #: includes/api/class-wc-rest-order-refunds-controller.php:361
15950
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:350
15951
- msgid "The date the order refund was created, in the site's timezone."
15952
  msgstr ""
15953
 
15954
- #: includes/api/class-wc-rest-order-refunds-controller.php:367
15955
- msgid "The date the order refund was created, as GMT."
15956
  msgstr ""
15957
 
15958
- #: includes/api/class-wc-rest-order-refunds-controller.php:373
15959
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:356
15960
- msgid "Refund amount."
15961
  msgstr ""
15962
 
15963
- #: includes/api/class-wc-rest-order-refunds-controller.php:378
15964
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:361
15965
- msgid "Reason for refund."
15966
  msgstr ""
15967
 
15968
- #: includes/api/class-wc-rest-order-refunds-controller.php:383
15969
- msgid "User ID of user who created the refund."
15970
  msgstr ""
15971
 
15972
- #: includes/api/class-wc-rest-order-refunds-controller.php:388
15973
- msgid "If the payment was refunded via the API."
15974
  msgstr ""
15975
 
15976
- #: includes/api/class-wc-rest-order-refunds-controller.php:419
15977
- #: includes/api/class-wc-rest-orders-controller.php:1161
15978
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:366
15979
- #: includes/api/v1/class-wc-rest-orders-controller.php:1205
15980
- msgid "Line items data."
15981
  msgstr ""
15982
 
15983
- #: includes/api/class-wc-rest-order-refunds-controller.php:427
15984
- #: includes/api/class-wc-rest-orders-controller.php:1168
15985
- #: includes/api/class-wc-rest-orders-controller.php:1296
15986
- #: includes/api/class-wc-rest-orders-controller.php:1374
15987
- #: includes/api/class-wc-rest-orders-controller.php:1460
15988
- #: includes/api/class-wc-rest-orders-controller.php:1558
15989
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:374
15990
- #: includes/api/v1/class-wc-rest-orders-controller.php:1212
15991
- #: includes/api/v1/class-wc-rest-orders-controller.php:1346
15992
- #: includes/api/v1/class-wc-rest-orders-controller.php:1398
15993
- #: includes/api/v1/class-wc-rest-orders-controller.php:1458
15994
- #: includes/api/v1/class-wc-rest-orders-controller.php:1529
15995
- msgid "Item ID."
15996
  msgstr ""
15997
 
15998
- #: includes/api/class-wc-rest-order-refunds-controller.php:439
15999
- #: includes/api/class-wc-rest-orders-controller.php:1179
16000
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:392
16001
- #: includes/api/v1/class-wc-rest-orders-controller.php:1230
16002
- #: includes/api/v1/class-wc-rest-report-top-sellers-controller.php:158
16003
- #: includes/cli/class-wc-cli-runner.php:110
16004
- msgid "Product ID."
16005
  msgstr ""
16006
 
16007
- #: includes/api/class-wc-rest-order-refunds-controller.php:445
16008
- #: includes/api/class-wc-rest-orders-controller.php:1184
16009
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:398
16010
- #: includes/api/v1/class-wc-rest-orders-controller.php:1235
16011
- msgid "Variation ID, if applicable."
16012
  msgstr ""
16013
 
16014
- #: includes/api/class-wc-rest-order-refunds-controller.php:451
16015
- #: includes/api/class-wc-rest-orders-controller.php:1189
16016
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:404
16017
- #: includes/api/v1/class-wc-rest-orders-controller.php:1240
16018
- msgid "Quantity ordered."
16019
  msgstr ""
16020
 
16021
- #: includes/api/class-wc-rest-order-refunds-controller.php:457
16022
- #: includes/api/class-wc-rest-orders-controller.php:1194
16023
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:410
16024
- #: includes/api/v1/class-wc-rest-orders-controller.php:1245
16025
- msgid "Tax class of product."
16026
  msgstr ""
16027
 
16028
- #: includes/api/class-wc-rest-order-refunds-controller.php:463
16029
- #: includes/api/class-wc-rest-orders-controller.php:1199
16030
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:422
16031
- #: includes/api/v1/class-wc-rest-orders-controller.php:1257
16032
- msgid "Line subtotal (before discounts)."
16033
  msgstr ""
16034
 
16035
- #: includes/api/class-wc-rest-order-refunds-controller.php:469
16036
- #: includes/api/class-wc-rest-orders-controller.php:1204
16037
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:428
16038
- #: includes/api/v1/class-wc-rest-orders-controller.php:1262
16039
- msgid "Line subtotal tax (before discounts)."
16040
  msgstr ""
16041
 
16042
- #: includes/api/class-wc-rest-order-refunds-controller.php:475
16043
- #: includes/api/class-wc-rest-orders-controller.php:1210
16044
- #: includes/api/class-wc-rest-orders-controller.php:1390
16045
- #: includes/api/class-wc-rest-orders-controller.php:1482
16046
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:434
16047
- #: includes/api/v1/class-wc-rest-orders-controller.php:1267
16048
- #: includes/api/v1/class-wc-rest-orders-controller.php:1414
16049
- #: includes/api/v1/class-wc-rest-orders-controller.php:1480
16050
- msgid "Line total (after discounts)."
16051
  msgstr ""
16052
 
16053
- #: includes/api/class-wc-rest-order-refunds-controller.php:481
16054
- #: includes/api/class-wc-rest-orders-controller.php:1215
16055
- #: includes/api/class-wc-rest-orders-controller.php:1395
16056
- #: includes/api/class-wc-rest-orders-controller.php:1487
16057
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:440
16058
- #: includes/api/v1/class-wc-rest-orders-controller.php:1272
16059
- #: includes/api/v1/class-wc-rest-orders-controller.php:1419
16060
- #: includes/api/v1/class-wc-rest-orders-controller.php:1485
16061
- msgid "Line total tax (after discounts)."
16062
  msgstr ""
16063
 
16064
- #: includes/api/class-wc-rest-order-refunds-controller.php:487
16065
- #: includes/api/class-wc-rest-orders-controller.php:1221
16066
- #: includes/api/class-wc-rest-orders-controller.php:1401
16067
- #: includes/api/class-wc-rest-orders-controller.php:1493
16068
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:446
16069
- #: includes/api/v1/class-wc-rest-orders-controller.php:1277
16070
- #: includes/api/v1/class-wc-rest-orders-controller.php:1425
16071
- #: includes/api/v1/class-wc-rest-orders-controller.php:1490
16072
- msgid "Line taxes."
16073
  msgstr ""
16074
 
16075
- #: includes/api/class-wc-rest-order-refunds-controller.php:495
16076
- #: includes/api/class-wc-rest-orders-controller.php:1229
16077
- #: includes/api/class-wc-rest-orders-controller.php:1308
16078
- #: includes/api/class-wc-rest-orders-controller.php:1409
16079
- #: includes/api/class-wc-rest-orders-controller.php:1501
16080
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:454
16081
- #: includes/api/v1/class-wc-rest-orders-controller.php:1285
16082
- #: includes/api/v1/class-wc-rest-orders-controller.php:1358
16083
- #: includes/api/v1/class-wc-rest-orders-controller.php:1433
16084
- #: includes/api/v1/class-wc-rest-orders-controller.php:1498
16085
- msgid "Tax rate ID."
16086
  msgstr ""
16087
 
16088
- #: includes/api/class-wc-rest-order-refunds-controller.php:501
16089
- #: includes/api/class-wc-rest-orders-controller.php:1234
16090
- #: includes/api/class-wc-rest-orders-controller.php:1415
16091
- #: includes/api/class-wc-rest-orders-controller.php:1507
16092
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:460
16093
- #: includes/api/v1/class-wc-rest-orders-controller.php:1291
16094
- #: includes/api/v1/class-wc-rest-orders-controller.php:1439
16095
- #: includes/api/v1/class-wc-rest-orders-controller.php:1504
16096
- msgid "Tax total."
16097
  msgstr ""
16098
 
16099
- #: includes/api/class-wc-rest-order-refunds-controller.php:507
16100
- #: includes/api/class-wc-rest-orders-controller.php:1239
16101
- #: includes/api/class-wc-rest-orders-controller.php:1513
16102
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:466
16103
- #: includes/api/v1/class-wc-rest-orders-controller.php:1297
16104
- #: includes/api/v1/class-wc-rest-orders-controller.php:1510
16105
- msgid "Tax subtotal."
16106
  msgstr ""
16107
 
16108
- #: includes/api/class-wc-rest-order-refunds-controller.php:545
16109
- #: includes/api/class-wc-rest-orders-controller.php:1273
16110
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:386
16111
- #: includes/api/v1/class-wc-rest-orders-controller.php:1224
16112
- msgid "Product SKU."
16113
  msgstr ""
16114
 
16115
- #: includes/api/class-wc-rest-order-refunds-controller.php:551
16116
- #: includes/api/class-wc-rest-orders-controller.php:1279
16117
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:416
16118
- #: includes/api/v1/class-wc-rest-orders-controller.php:1251
16119
- msgid "Product price."
16120
  msgstr ""
16121
 
16122
- #: includes/api/class-wc-rest-order-refunds-controller.php:560
16123
- msgid "When true, the payment gateway API is used to generate the refund."
16124
  msgstr ""
16125
 
16126
- #: includes/api/class-wc-rest-orders-controller.php:519
16127
- #: includes/api/legacy/class-wc-rest-legacy-orders-controller.php:249
16128
- #: includes/api/legacy/v2/class-wc-api-orders.php:390
16129
- #: includes/api/legacy/v2/class-wc-api-orders.php:542
16130
- #: includes/api/legacy/v3/class-wc-api-orders.php:427
16131
- #: includes/api/legacy/v3/class-wc-api-orders.php:582
16132
- #: includes/api/v1/class-wc-rest-orders-controller.php:534
16133
- msgid "Customer ID is invalid."
16134
  msgstr ""
16135
 
16136
- #: includes/api/class-wc-rest-orders-controller.php:524
16137
- #: includes/api/legacy/class-wc-rest-legacy-orders-controller.php:254
16138
- #: includes/api/v1/class-wc-rest-orders-controller.php:539
16139
- msgid "Customer ID does not belong to this site."
16140
  msgstr ""
16141
 
16142
- #: includes/api/class-wc-rest-orders-controller.php:591
16143
- #: includes/api/v1/class-wc-rest-orders-controller.php:621
16144
- msgid "Product ID or SKU is required."
16145
  msgstr ""
16146
 
16147
- #: includes/api/class-wc-rest-orders-controller.php:683
16148
- #: includes/api/legacy/v2/class-wc-api-orders.php:1043
16149
- #: includes/api/legacy/v3/class-wc-api-orders.php:1090
16150
- #: includes/api/v1/class-wc-rest-orders-controller.php:693
16151
- msgid "Shipping method ID is required."
16152
  msgstr ""
16153
 
16154
- #: includes/api/class-wc-rest-orders-controller.php:707
16155
- #: includes/api/v1/class-wc-rest-orders-controller.php:716
16156
- msgid "Fee name is required."
16157
  msgstr ""
16158
 
16159
- #: includes/api/class-wc-rest-orders-controller.php:731
16160
- #: includes/api/legacy/v2/class-wc-api-orders.php:1166
16161
- #: includes/api/legacy/v3/class-wc-api-orders.php:1213
16162
- #: includes/api/v1/class-wc-rest-orders-controller.php:739
16163
- msgid "Coupon code is required."
16164
  msgstr ""
16165
 
16166
- #: includes/api/class-wc-rest-orders-controller.php:768
16167
- #: includes/api/legacy/v2/class-wc-api-orders.php:851
16168
- #: includes/api/legacy/v3/class-wc-api-orders.php:897
16169
- #: includes/api/v1/class-wc-rest-orders-controller.php:777
16170
- msgid "Order item ID provided is not associated with order."
16171
  msgstr ""
16172
 
16173
- #: includes/api/class-wc-rest-orders-controller.php:837
16174
- #: includes/api/v1/class-wc-rest-orders-controller.php:925
16175
- msgid "Parent order ID."
16176
  msgstr ""
16177
 
16178
- #: includes/api/class-wc-rest-orders-controller.php:842
16179
- #: includes/api/v1/class-wc-rest-orders-controller.php:943
16180
- msgid "Order number."
16181
  msgstr ""
16182
 
16183
- #: includes/api/class-wc-rest-orders-controller.php:854
16184
- #: includes/api/v1/class-wc-rest-orders-controller.php:1176
16185
- msgid "Shows where the order was created."
16186
  msgstr ""
16187
 
16188
- #: includes/api/class-wc-rest-orders-controller.php:860
16189
- #: includes/api/v1/class-wc-rest-orders-controller.php:956
16190
- msgid "Version of WooCommerce which last updated the order."
16191
  msgstr ""
16192
 
16193
- #: includes/api/class-wc-rest-orders-controller.php:866
16194
- #: includes/api/v1/class-wc-rest-orders-controller.php:930
16195
- msgid "Order status."
16196
  msgstr ""
16197
 
16198
- #: includes/api/class-wc-rest-orders-controller.php:873
16199
- #: includes/api/v1/class-wc-rest-orders-controller.php:949
16200
- msgid "Currency the order was created with, in ISO format."
16201
  msgstr ""
16202
 
16203
- #: includes/api/class-wc-rest-orders-controller.php:880
16204
- msgid "The date the order was created, in the site's timezone."
16205
  msgstr ""
16206
 
16207
- #: includes/api/class-wc-rest-orders-controller.php:892
16208
- msgid "The date the order was last modified, in the site's timezone."
16209
  msgstr ""
16210
 
16211
- #: includes/api/class-wc-rest-orders-controller.php:898
16212
- #: includes/api/v1/class-wc-rest-orders-controller.php:974
16213
- msgid "The date the order was last modified, as GMT."
16214
  msgstr ""
16215
 
16216
- #: includes/api/class-wc-rest-orders-controller.php:904
16217
- #: includes/api/v1/class-wc-rest-orders-controller.php:986
16218
- msgid "Total discount amount for the order."
16219
  msgstr ""
16220
 
16221
- #: includes/api/class-wc-rest-orders-controller.php:910
16222
- #: includes/api/v1/class-wc-rest-orders-controller.php:992
16223
- msgid "Total discount tax amount for the order."
16224
  msgstr ""
16225
 
16226
- #: includes/api/class-wc-rest-orders-controller.php:916
16227
- #: includes/api/v1/class-wc-rest-orders-controller.php:998
16228
- msgid "Total shipping amount for the order."
16229
  msgstr ""
16230
 
16231
- #: includes/api/class-wc-rest-orders-controller.php:922
16232
- #: includes/api/v1/class-wc-rest-orders-controller.php:1004
16233
- msgid "Total shipping tax amount for the order."
16234
  msgstr ""
16235
 
16236
- #: includes/api/class-wc-rest-orders-controller.php:928
16237
- #: includes/api/v1/class-wc-rest-orders-controller.php:1010
16238
- msgid "Sum of line item taxes only."
16239
  msgstr ""
16240
 
16241
- #: includes/api/class-wc-rest-orders-controller.php:934
16242
- #: includes/api/v1/class-wc-rest-orders-controller.php:1016
16243
- msgid "Grand total."
16244
  msgstr ""
16245
 
16246
- #: includes/api/class-wc-rest-orders-controller.php:940
16247
- #: includes/api/v1/class-wc-rest-orders-controller.php:1022
16248
- msgid "Sum of all taxes."
16249
  msgstr ""
16250
 
16251
- #: includes/api/class-wc-rest-orders-controller.php:946
16252
- #: includes/api/v1/class-wc-rest-orders-controller.php:962
16253
- msgid "True the prices included tax during checkout."
16254
  msgstr ""
16255
 
16256
- #: includes/api/class-wc-rest-orders-controller.php:952
16257
- #: includes/api/v1/class-wc-rest-orders-controller.php:980
16258
- msgid "User ID who owns the order. 0 for guests."
16259
  msgstr ""
16260
 
16261
- #: includes/api/class-wc-rest-orders-controller.php:958
16262
- #: includes/api/v1/class-wc-rest-orders-controller.php:1164
16263
- msgid "Customer's IP address."
16264
  msgstr ""
16265
 
16266
- #: includes/api/class-wc-rest-orders-controller.php:964
16267
- #: includes/api/v1/class-wc-rest-orders-controller.php:1170
16268
- msgid "User agent of the customer."
16269
  msgstr ""
16270
 
16271
- #: includes/api/class-wc-rest-orders-controller.php:970
16272
- #: includes/api/v1/class-wc-rest-orders-controller.php:1182
16273
- msgid "Note left by customer during checkout."
16274
  msgstr ""
16275
 
16276
- #: includes/api/class-wc-rest-orders-controller.php:975
16277
- #: includes/api/v1/class-wc-rest-orders-controller.php:1028
16278
- msgid "Billing address."
16279
  msgstr ""
16280
 
16281
- #: includes/api/class-wc-rest-orders-controller.php:1020
16282
- #: includes/api/class-wc-rest-orders-controller.php:1083
16283
- #: includes/api/v1/class-wc-rest-orders-controller.php:1073
16284
- #: includes/api/v1/class-wc-rest-orders-controller.php:1136
16285
- msgid "Country code in ISO 3166-1 alpha-2 format."
16286
  msgstr ""
16287
 
16288
- #: includes/api/class-wc-rest-orders-controller.php:1038
16289
- #: includes/api/v1/class-wc-rest-orders-controller.php:1091
16290
- msgid "Shipping address."
16291
  msgstr ""
16292
 
16293
- #: includes/api/class-wc-rest-orders-controller.php:1090
16294
- #: includes/api/v1/class-wc-rest-orders-controller.php:1143
16295
- msgid "Payment method ID."
16296
  msgstr ""
16297
 
16298
- #: includes/api/class-wc-rest-orders-controller.php:1095
16299
- #: includes/api/v1/class-wc-rest-orders-controller.php:1148
16300
- msgid "Payment method title."
16301
  msgstr ""
16302
 
16303
- #: includes/api/class-wc-rest-orders-controller.php:1100
16304
- #: includes/api/v1/class-wc-rest-orders-controller.php:1159
16305
- msgid "Unique transaction ID."
16306
  msgstr ""
16307
 
16308
- #: includes/api/class-wc-rest-orders-controller.php:1105
16309
- #: includes/api/v1/class-wc-rest-orders-controller.php:1193
16310
- msgid "The date the order was paid, in the site's timezone."
16311
  msgstr ""
16312
 
16313
- #: includes/api/class-wc-rest-orders-controller.php:1111
16314
- msgid "The date the order was paid, as GMT."
16315
  msgstr ""
16316
 
16317
- #: includes/api/class-wc-rest-orders-controller.php:1117
16318
- #: includes/api/v1/class-wc-rest-orders-controller.php:1187
16319
- msgid "The date the order was completed, in the site's timezone."
16320
  msgstr ""
16321
 
16322
- #: includes/api/class-wc-rest-orders-controller.php:1123
16323
- msgid "The date the order was completed, as GMT."
16324
  msgstr ""
16325
 
16326
- #: includes/api/class-wc-rest-orders-controller.php:1129
16327
- #: includes/api/v1/class-wc-rest-orders-controller.php:1199
16328
- msgid "MD5 hash of cart items to ensure orders are not modified."
16329
  msgstr ""
16330
 
16331
- #: includes/api/class-wc-rest-orders-controller.php:1288
16332
- #: includes/api/v1/class-wc-rest-orders-controller.php:1338
16333
- msgid "Tax lines data."
16334
  msgstr ""
16335
 
16336
- #: includes/api/class-wc-rest-orders-controller.php:1302
16337
- #: includes/api/v1/class-wc-rest-orders-controller.php:1352
16338
- msgid "Tax rate code."
16339
  msgstr ""
16340
 
16341
- #: includes/api/class-wc-rest-orders-controller.php:1314
16342
- #: includes/api/v1/class-wc-rest-orders-controller.php:1364
16343
- msgid "Tax rate label."
16344
  msgstr ""
16345
 
16346
- #: includes/api/class-wc-rest-orders-controller.php:1320
16347
- #: includes/api/v1/class-wc-rest-orders-controller.php:1370
16348
- msgid "Show if is a compound tax rate."
16349
  msgstr ""
16350
 
16351
- #: includes/api/class-wc-rest-orders-controller.php:1326
16352
- #: includes/api/v1/class-wc-rest-orders-controller.php:1376
16353
- msgid "Tax total (not including shipping taxes)."
16354
  msgstr ""
16355
 
16356
- #: includes/api/class-wc-rest-orders-controller.php:1332
16357
- #: includes/api/v1/class-wc-rest-orders-controller.php:1382
16358
- msgid "Shipping tax total."
16359
  msgstr ""
16360
 
16361
- #: includes/api/class-wc-rest-orders-controller.php:1367
16362
- #: includes/api/v1/class-wc-rest-orders-controller.php:1391
16363
- msgid "Shipping lines data."
16364
  msgstr ""
16365
 
16366
- #: includes/api/class-wc-rest-orders-controller.php:1380
16367
- #: includes/api/v1/class-wc-rest-orders-controller.php:1404
16368
- msgid "Shipping method name."
16369
  msgstr ""
16370
 
16371
- #: includes/api/class-wc-rest-orders-controller.php:1385
16372
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:47
16373
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:464
16374
- #: includes/api/v1/class-wc-rest-orders-controller.php:1409
16375
- msgid "Shipping method ID."
16376
  msgstr ""
16377
 
16378
- #: includes/api/class-wc-rest-orders-controller.php:1453
16379
- #: includes/api/v1/class-wc-rest-orders-controller.php:1451
16380
- msgid "Fee lines data."
16381
  msgstr ""
16382
 
16383
- #: includes/api/class-wc-rest-orders-controller.php:1466
16384
- #: includes/api/v1/class-wc-rest-orders-controller.php:1464
16385
- msgid "Fee name."
16386
  msgstr ""
16387
 
16388
- #: includes/api/class-wc-rest-orders-controller.php:1471
16389
- #: includes/api/v1/class-wc-rest-orders-controller.php:1469
16390
- msgid "Tax class of fee."
16391
  msgstr ""
16392
 
16393
- #: includes/api/class-wc-rest-orders-controller.php:1476
16394
- #: includes/api/v1/class-wc-rest-orders-controller.php:1474
16395
- msgid "Tax status of fee."
16396
  msgstr ""
16397
 
16398
- #: includes/api/class-wc-rest-orders-controller.php:1551
16399
- #: includes/api/v1/class-wc-rest-orders-controller.php:1522
16400
- msgid "Coupons line data."
16401
  msgstr ""
16402
 
16403
- #: includes/api/class-wc-rest-orders-controller.php:1569
16404
- #: includes/api/v1/class-wc-rest-orders-controller.php:1540
16405
- msgid "Discount total."
16406
  msgstr ""
16407
 
16408
- #: includes/api/class-wc-rest-orders-controller.php:1574
16409
- #: includes/api/v1/class-wc-rest-orders-controller.php:1545
16410
- msgid "Discount total tax."
16411
  msgstr ""
16412
 
16413
- #: includes/api/class-wc-rest-orders-controller.php:1609
16414
- #: includes/api/v1/class-wc-rest-orders-controller.php:1554
16415
- msgid "List of refunds."
16416
  msgstr ""
16417
 
16418
- #: includes/api/class-wc-rest-orders-controller.php:1617
16419
- #: includes/api/v1/class-wc-rest-orders-controller.php:1562
16420
- #: includes/cli/class-wc-cli-runner.php:113
16421
- msgid "Refund ID."
16422
  msgstr ""
16423
 
16424
- #: includes/api/class-wc-rest-orders-controller.php:1623
16425
- #: includes/api/v1/class-wc-rest-orders-controller.php:1568
16426
- msgid "Refund reason."
16427
  msgstr ""
16428
 
16429
- #: includes/api/class-wc-rest-orders-controller.php:1629
16430
- #: includes/api/v1/class-wc-rest-orders-controller.php:1574
16431
- msgid "Refund total."
16432
  msgstr ""
16433
 
16434
- #: includes/api/class-wc-rest-orders-controller.php:1638
16435
- #: includes/api/v1/class-wc-rest-orders-controller.php:1153
16436
- msgid ""
16437
- "Define if the order is paid. It will set the status to processing and "
16438
- "reduce stock items."
16439
  msgstr ""
16440
 
16441
- #: includes/api/class-wc-rest-orders-controller.php:1659
16442
- #: includes/api/v1/class-wc-rest-orders-controller.php:1598
16443
- msgid "Limit result set to orders assigned a specific status."
16444
  msgstr ""
16445
 
16446
- #: includes/api/class-wc-rest-orders-controller.php:1666
16447
- #: includes/api/v1/class-wc-rest-orders-controller.php:1605
16448
- msgid "Limit result set to orders assigned a specific customer."
16449
  msgstr ""
16450
 
16451
- #: includes/api/class-wc-rest-orders-controller.php:1672
16452
- #: includes/api/v1/class-wc-rest-orders-controller.php:1611
16453
- msgid "Limit result set to orders assigned a specific product."
16454
  msgstr ""
16455
 
16456
- #: includes/api/class-wc-rest-orders-controller.php:1679
16457
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:522
16458
- #: includes/api/v1/class-wc-rest-orders-controller.php:1618
16459
- msgid "Number of decimal points to use in each resource."
16460
  msgstr ""
16461
 
16462
- #: includes/api/class-wc-rest-payment-gateways-controller.php:354
16463
- msgid "Payment gateway ID."
16464
  msgstr ""
16465
 
16466
- #: includes/api/class-wc-rest-payment-gateways-controller.php:360
16467
- msgid "Payment gateway title on checkout."
16468
  msgstr ""
16469
 
16470
- #: includes/api/class-wc-rest-payment-gateways-controller.php:365
16471
- msgid "Payment gateway description on checkout."
16472
  msgstr ""
16473
 
16474
- #: includes/api/class-wc-rest-payment-gateways-controller.php:370
16475
- msgid "Payment gateway sort order."
16476
  msgstr ""
16477
 
16478
- #: includes/api/class-wc-rest-payment-gateways-controller.php:378
16479
- msgid "Payment gateway enabled status."
16480
  msgstr ""
16481
 
16482
- #: includes/api/class-wc-rest-payment-gateways-controller.php:383
16483
- msgid "Payment gateway method title."
16484
  msgstr ""
16485
 
16486
- #: includes/api/class-wc-rest-payment-gateways-controller.php:389
16487
- msgid "Payment gateway method description."
16488
  msgstr ""
16489
 
16490
- #: includes/api/class-wc-rest-payment-gateways-controller.php:395
16491
- msgid "Payment gateway settings."
16492
  msgstr ""
16493
 
16494
- #: includes/api/class-wc-rest-payment-gateways-controller.php:400
16495
- #: includes/api/class-wc-rest-setting-options-controller.php:505
16496
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:487
16497
- msgid "A unique identifier for the setting."
16498
  msgstr ""
16499
 
16500
- #: includes/api/class-wc-rest-payment-gateways-controller.php:406
16501
- #: includes/api/class-wc-rest-setting-options-controller.php:514
16502
- #: includes/api/class-wc-rest-settings-controller.php:204
16503
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:493
16504
- msgid "A human readable label for the setting used in interfaces."
16505
  msgstr ""
16506
 
16507
- #: includes/api/class-wc-rest-payment-gateways-controller.php:412
16508
- #: includes/api/class-wc-rest-setting-options-controller.php:523
16509
- #: includes/api/class-wc-rest-settings-controller.php:210
16510
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:499
16511
- msgid "A human readable description for the setting used in interfaces."
16512
  msgstr ""
16513
 
16514
- #: includes/api/class-wc-rest-payment-gateways-controller.php:418
16515
- #: includes/api/class-wc-rest-setting-options-controller.php:561
16516
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:505
16517
- msgid "Type of setting."
16518
  msgstr ""
16519
 
16520
- #: includes/api/class-wc-rest-payment-gateways-controller.php:425
16521
- #: includes/api/class-wc-rest-setting-options-controller.php:532
16522
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:512
16523
- msgid "Setting value."
16524
  msgstr ""
16525
 
16526
- #: includes/api/class-wc-rest-payment-gateways-controller.php:430
16527
- #: includes/api/class-wc-rest-setting-options-controller.php:537
16528
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:517
16529
- msgid "Default value for the setting."
16530
  msgstr ""
16531
 
16532
- #: includes/api/class-wc-rest-payment-gateways-controller.php:436
16533
- #: includes/api/class-wc-rest-setting-options-controller.php:543
16534
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:523
16535
- msgid "Additional help text shown to the user about the setting."
16536
  msgstr ""
16537
 
16538
- #: includes/api/class-wc-rest-payment-gateways-controller.php:442
16539
- #: includes/api/class-wc-rest-setting-options-controller.php:552
16540
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:529
16541
- msgid "Placeholder text to be displayed in text inputs."
16542
  msgstr ""
16543
 
16544
- #: includes/api/class-wc-rest-product-categories-controller.php:109
16545
- #: includes/api/class-wc-rest-products-controller.php:1812
16546
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:180
16547
- #: includes/api/v1/class-wc-rest-products-controller.php:2102
16548
- msgid "Category name."
16549
  msgstr ""
16550
 
16551
- #: includes/api/class-wc-rest-product-categories-controller.php:117
16552
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:209
16553
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:470
16554
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:188
16555
- #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:108
16556
- #: includes/api/v1/class-wc-rest-product-tags-controller.php:108
16557
- msgid "An alphanumeric identifier for the resource unique to its type."
16558
  msgstr ""
16559
 
16560
- #: includes/api/class-wc-rest-product-categories-controller.php:125
16561
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:196
16562
- msgid "The ID for the parent of the resource."
16563
  msgstr ""
16564
 
16565
- #: includes/api/class-wc-rest-product-categories-controller.php:130
16566
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:217
16567
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:201
16568
- #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:116
16569
- #: includes/api/v1/class-wc-rest-product-tags-controller.php:116
16570
- msgid "HTML description of the resource."
16571
  msgstr ""
16572
 
16573
- #: includes/api/class-wc-rest-product-categories-controller.php:138
16574
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:209
16575
- msgid "Category archive display type."
16576
  msgstr ""
16577
 
16578
- #: includes/api/class-wc-rest-product-categories-controller.php:145
16579
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:216
16580
- msgid "Image data."
16581
  msgstr ""
16582
 
16583
- #: includes/api/class-wc-rest-product-categories-controller.php:150
16584
- #: includes/api/class-wc-rest-product-variations-controller.php:891
16585
- #: includes/api/class-wc-rest-products-controller.php:1861
16586
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:221
16587
- #: includes/api/v1/class-wc-rest-products-controller.php:2151
16588
- #: includes/api/v1/class-wc-rest-products-controller.php:2484
16589
- msgid "Image ID."
16590
  msgstr ""
16591
 
16592
- #: includes/api/class-wc-rest-product-categories-controller.php:155
16593
- #: includes/api/class-wc-rest-product-variations-controller.php:896
16594
- #: includes/api/class-wc-rest-products-controller.php:1866
16595
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:226
16596
- #: includes/api/v1/class-wc-rest-products-controller.php:2156
16597
- #: includes/api/v1/class-wc-rest-products-controller.php:2489
16598
- msgid "The date the image was created, in the site's timezone."
16599
  msgstr ""
16600
 
16601
- #: includes/api/class-wc-rest-product-categories-controller.php:161
16602
- #: includes/api/class-wc-rest-product-variations-controller.php:902
16603
- #: includes/api/class-wc-rest-products-controller.php:1872
16604
- msgid "The date the image was created, as GMT."
16605
  msgstr ""
16606
 
16607
- #: includes/api/class-wc-rest-product-categories-controller.php:167
16608
- #: includes/api/class-wc-rest-product-variations-controller.php:908
16609
- #: includes/api/class-wc-rest-products-controller.php:1878
16610
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:232
16611
- #: includes/api/v1/class-wc-rest-products-controller.php:2162
16612
- #: includes/api/v1/class-wc-rest-products-controller.php:2495
16613
- msgid "The date the image was last modified, in the site's timezone."
16614
  msgstr ""
16615
 
16616
- #: includes/api/class-wc-rest-product-categories-controller.php:173
16617
- #: includes/api/class-wc-rest-product-variations-controller.php:914
16618
- #: includes/api/class-wc-rest-products-controller.php:1884
16619
- msgid "The date the image was last modified, as GMT."
16620
  msgstr ""
16621
 
16622
- #: includes/api/class-wc-rest-product-categories-controller.php:179
16623
- #: includes/api/class-wc-rest-product-variations-controller.php:920
16624
- #: includes/api/class-wc-rest-products-controller.php:1890
16625
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:238
16626
- #: includes/api/v1/class-wc-rest-products-controller.php:2168
16627
- #: includes/api/v1/class-wc-rest-products-controller.php:2501
16628
- msgid "Image URL."
16629
  msgstr ""
16630
 
16631
- #: includes/api/class-wc-rest-product-categories-controller.php:185
16632
- #: includes/api/class-wc-rest-product-variations-controller.php:926
16633
- #: includes/api/class-wc-rest-products-controller.php:1896
16634
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:244
16635
- #: includes/api/v1/class-wc-rest-products-controller.php:2174
16636
- #: includes/api/v1/class-wc-rest-products-controller.php:2507
16637
- msgid "Image name."
16638
  msgstr ""
16639
 
16640
- #: includes/api/class-wc-rest-product-categories-controller.php:190
16641
- #: includes/api/class-wc-rest-product-variations-controller.php:931
16642
- #: includes/api/class-wc-rest-products-controller.php:1901
16643
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:249
16644
- #: includes/api/v1/class-wc-rest-products-controller.php:2179
16645
- #: includes/api/v1/class-wc-rest-products-controller.php:2512
16646
- msgid "Image alternative text."
16647
  msgstr ""
16648
 
16649
- #: includes/api/class-wc-rest-product-categories-controller.php:197
16650
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:225
16651
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:256
16652
- msgid "Menu order, used to custom sort the resource."
16653
  msgstr ""
16654
 
16655
- #: includes/api/class-wc-rest-product-categories-controller.php:202
16656
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:230
16657
- #: includes/api/v1/class-wc-rest-product-categories-controller.php:261
16658
- #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:124
16659
- #: includes/api/v1/class-wc-rest-product-tags-controller.php:124
16660
- msgid "Number of published products for the resource."
16661
  msgstr ""
16662
 
16663
- #: includes/api/class-wc-rest-product-reviews-controller.php:45
16664
- #: includes/api/class-wc-rest-product-variations-controller.php:58
16665
- #: includes/api/class-wc-rest-product-variations-controller.php:81
16666
- #: includes/api/class-wc-rest-product-variations-controller.php:126
16667
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:46
16668
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:88
16669
- msgid "Unique identifier for the variable product."
16670
  msgstr ""
16671
 
16672
- #: includes/api/class-wc-rest-product-reviews-controller.php:159
16673
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:532
16674
- msgid "The content of the review."
16675
  msgstr ""
16676
 
16677
- #: includes/api/class-wc-rest-product-reviews-controller.php:164
16678
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:537
16679
- msgid "The date the review was created, in the site's timezone."
16680
  msgstr ""
16681
 
16682
- #: includes/api/class-wc-rest-product-reviews-controller.php:169
16683
- msgid "The date the review was created, as GMT."
16684
  msgstr ""
16685
 
16686
- #: includes/api/class-wc-rest-product-reviews-controller.php:174
16687
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:542
16688
- msgid "Review rating (0 to 5)."
16689
  msgstr ""
16690
 
16691
- #: includes/api/class-wc-rest-product-reviews-controller.php:179
16692
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:547
16693
- msgid "Reviewer name."
16694
  msgstr ""
16695
 
16696
- #: includes/api/class-wc-rest-product-reviews-controller.php:184
16697
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:552
16698
- msgid "Reviewer email."
16699
  msgstr ""
16700
 
16701
- #: includes/api/class-wc-rest-product-reviews-controller.php:189
16702
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:557
16703
- msgid "Shows if the reviewer bought the product or not."
16704
  msgstr ""
16705
 
16706
- #: includes/api/class-wc-rest-product-variations-controller.php:85
16707
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:50
16708
- msgid "Unique identifier for the variation."
16709
  msgstr ""
16710
 
16711
- #: includes/api/class-wc-rest-product-variations-controller.php:167
16712
- msgid "Parent product does not match current variation."
16713
  msgstr ""
16714
 
16715
- #: includes/api/class-wc-rest-product-variations-controller.php:663
16716
- #: includes/api/v1/class-wc-rest-products-controller.php:2272
16717
- msgid "The date the variation was created, in the site's timezone."
16718
  msgstr ""
16719
 
16720
- #: includes/api/class-wc-rest-product-variations-controller.php:669
16721
- #: includes/api/v1/class-wc-rest-products-controller.php:2278
16722
- msgid "The date the variation was last modified, in the site's timezone."
16723
  msgstr ""
16724
 
16725
- #: includes/api/class-wc-rest-product-variations-controller.php:675
16726
- msgid "Variation description."
16727
  msgstr ""
16728
 
16729
- #: includes/api/class-wc-rest-product-variations-controller.php:680
16730
- #: includes/api/v1/class-wc-rest-products-controller.php:2284
16731
- msgid "Variation URL."
16732
  msgstr ""
16733
 
16734
- #: includes/api/class-wc-rest-product-variations-controller.php:687
16735
- #: includes/api/class-wc-rest-products-controller.php:1513
16736
- #: includes/api/v1/class-wc-rest-products-controller.php:1806
16737
- #: includes/api/v1/class-wc-rest-products-controller.php:2291
16738
- msgid "Unique identifier."
16739
  msgstr ""
16740
 
16741
- #: includes/api/class-wc-rest-product-variations-controller.php:692
16742
- #: includes/api/v1/class-wc-rest-products-controller.php:2296
16743
- msgid "Current variation price."
16744
  msgstr ""
16745
 
16746
- #: includes/api/class-wc-rest-product-variations-controller.php:698
16747
- #: includes/api/v1/class-wc-rest-products-controller.php:2302
16748
- msgid "Variation regular price."
16749
  msgstr ""
16750
 
16751
- #: includes/api/class-wc-rest-product-variations-controller.php:703
16752
- #: includes/api/v1/class-wc-rest-products-controller.php:2307
16753
- msgid "Variation sale price."
16754
  msgstr ""
16755
 
16756
- #: includes/api/class-wc-rest-product-variations-controller.php:708
16757
- #: includes/api/class-wc-rest-products-controller.php:1534
16758
- msgid "Start date of sale price, in the site's timezone."
16759
  msgstr ""
16760
 
16761
- #: includes/api/class-wc-rest-product-variations-controller.php:713
16762
- #: includes/api/class-wc-rest-products-controller.php:1539
16763
- msgid "Start date of sale price, as GMT."
16764
  msgstr ""
16765
 
16766
- #: includes/api/class-wc-rest-product-variations-controller.php:718
16767
- #: includes/api/class-wc-rest-products-controller.php:1544
16768
- msgid "End date of sale price, in the site's timezone."
16769
  msgstr ""
16770
 
16771
- #: includes/api/class-wc-rest-product-variations-controller.php:723
16772
- #: includes/api/class-wc-rest-products-controller.php:1549
16773
- msgid "End date of sale price, as GMT."
16774
  msgstr ""
16775
 
16776
- #: includes/api/class-wc-rest-product-variations-controller.php:728
16777
- #: includes/api/v1/class-wc-rest-products-controller.php:2322
16778
- msgid "Shows if the variation is on sale."
16779
  msgstr ""
16780
 
16781
- #: includes/api/class-wc-rest-product-variations-controller.php:734
16782
- msgid "Define if the variation is visible on the product's page."
16783
  msgstr ""
16784
 
16785
- #: includes/api/class-wc-rest-product-variations-controller.php:740
16786
- #: includes/api/v1/class-wc-rest-products-controller.php:2328
16787
- msgid "Shows if the variation can be bought."
16788
  msgstr ""
16789
 
16790
- #: includes/api/class-wc-rest-product-variations-controller.php:746
16791
- #: includes/api/v1/class-wc-rest-products-controller.php:2339
16792
- msgid "If the variation is virtual."
16793
  msgstr ""
16794
 
16795
- #: includes/api/class-wc-rest-product-variations-controller.php:752
16796
- #: includes/api/v1/class-wc-rest-products-controller.php:2345
16797
- msgid "If the variation is downloadable."
16798
  msgstr ""
16799
 
16800
- #: includes/api/class-wc-rest-product-variations-controller.php:758
16801
- #: includes/api/class-wc-rest-products-controller.php:1590
16802
- #: includes/api/v1/class-wc-rest-products-controller.php:1873
16803
- #: includes/api/v1/class-wc-rest-products-controller.php:2351
16804
- msgid "List of downloadable files."
16805
  msgstr ""
16806
 
16807
- #: includes/api/class-wc-rest-product-variations-controller.php:765
16808
- #: includes/api/class-wc-rest-products-controller.php:1597
16809
- #: includes/api/v1/class-wc-rest-products-controller.php:1880
16810
- #: includes/api/v1/class-wc-rest-products-controller.php:2358
16811
- msgid "File MD5 hash."
16812
  msgstr ""
16813
 
16814
- #: includes/api/class-wc-rest-product-variations-controller.php:784
16815
- #: includes/api/class-wc-rest-products-controller.php:1616
16816
- #: includes/api/v1/class-wc-rest-products-controller.php:1899
16817
- #: includes/api/v1/class-wc-rest-products-controller.php:2377
16818
- msgid "Number of times downloadable files can be downloaded after purchase."
16819
  msgstr ""
16820
 
16821
- #: includes/api/class-wc-rest-product-variations-controller.php:790
16822
- #: includes/api/class-wc-rest-products-controller.php:1622
16823
- #: includes/api/v1/class-wc-rest-products-controller.php:1905
16824
- #: includes/api/v1/class-wc-rest-products-controller.php:2383
16825
- msgid "Number of days until access to downloadable files expires."
16826
  msgstr ""
16827
 
16828
- #: includes/api/class-wc-rest-product-variations-controller.php:796
16829
- #: includes/api/class-wc-rest-products-controller.php:1639
16830
- #: includes/api/v1/class-wc-rest-products-controller.php:1929
16831
- #: includes/api/v1/class-wc-rest-products-controller.php:2389
16832
- msgid "Tax status."
16833
  msgstr ""
16834
 
16835
- #: includes/api/class-wc-rest-product-variations-controller.php:803
16836
- #: includes/api/class-wc-rest-products-controller.php:1646
16837
- #: includes/api/v1/class-wc-rest-products-controller.php:1936
16838
- #: includes/api/v1/class-wc-rest-products-controller.php:2396
16839
- #: includes/api/v1/class-wc-rest-taxes-controller.php:635
16840
- msgid "Tax class."
16841
  msgstr ""
16842
 
16843
- #: includes/api/class-wc-rest-product-variations-controller.php:808
16844
- #: includes/api/v1/class-wc-rest-products-controller.php:2401
16845
- msgid "Stock management at variation level."
16846
  msgstr ""
16847
 
16848
- #: includes/api/class-wc-rest-product-variations-controller.php:814
16849
- #: includes/api/class-wc-rest-products-controller.php:1657
16850
- #: includes/api/v1/class-wc-rest-products-controller.php:1947
16851
- #: includes/api/v1/class-wc-rest-products-controller.php:2407
16852
- msgid "Stock quantity."
16853
  msgstr ""
16854
 
16855
- #: includes/api/class-wc-rest-product-variations-controller.php:819
16856
- #: includes/api/v1/class-wc-rest-products-controller.php:2412
16857
- msgid ""
16858
- "Controls whether or not the variation is listed as \"in stock\" or \"out of "
16859
- "stock\" on the frontend."
16860
  msgstr ""
16861
 
16862
- #: includes/api/class-wc-rest-product-variations-controller.php:825
16863
- #: includes/api/class-wc-rest-products-controller.php:1668
16864
- #: includes/api/v1/class-wc-rest-products-controller.php:1958
16865
- #: includes/api/v1/class-wc-rest-products-controller.php:2418
16866
- msgid "If managing stock, this controls if backorders are allowed."
16867
  msgstr ""
16868
 
16869
- #: includes/api/class-wc-rest-product-variations-controller.php:832
16870
- #: includes/api/class-wc-rest-products-controller.php:1675
16871
- #: includes/api/v1/class-wc-rest-products-controller.php:1965
16872
- #: includes/api/v1/class-wc-rest-products-controller.php:2425
16873
- msgid "Shows if backorders are allowed."
16874
  msgstr ""
16875
 
16876
- #: includes/api/class-wc-rest-product-variations-controller.php:838
16877
- #: includes/api/v1/class-wc-rest-products-controller.php:2431
16878
- msgid "Shows if the variation is on backordered."
16879
  msgstr ""
16880
 
16881
- #: includes/api/class-wc-rest-product-variations-controller.php:845
16882
- #: includes/api/v1/class-wc-rest-products-controller.php:2438
16883
- #. translators: %s: weight unit
16884
- msgid "Variation weight (%s)."
16885
  msgstr ""
16886
 
16887
- #: includes/api/class-wc-rest-product-variations-controller.php:850
16888
- #: includes/api/v1/class-wc-rest-products-controller.php:2443
16889
- msgid "Variation dimensions."
16890
  msgstr ""
16891
 
16892
- #: includes/api/class-wc-rest-product-variations-controller.php:856
16893
- #: includes/api/v1/class-wc-rest-products-controller.php:2449
16894
- #. translators: %s: dimension unit
16895
- msgid "Variation length (%s)."
16896
  msgstr ""
16897
 
16898
- #: includes/api/class-wc-rest-product-variations-controller.php:862
16899
- #: includes/api/v1/class-wc-rest-products-controller.php:2455
16900
- #. translators: %s: dimension unit
16901
- msgid "Variation width (%s)."
16902
  msgstr ""
16903
 
16904
- #: includes/api/class-wc-rest-product-variations-controller.php:868
16905
- #: includes/api/v1/class-wc-rest-products-controller.php:2461
16906
- #. translators: %s: dimension unit
16907
- msgid "Variation height (%s)."
16908
  msgstr ""
16909
 
16910
- #: includes/api/class-wc-rest-product-variations-controller.php:875
16911
- #: includes/api/class-wc-rest-products-controller.php:1736
16912
- #: includes/api/v1/class-wc-rest-products-controller.php:2026
16913
- #: includes/api/v1/class-wc-rest-products-controller.php:2468
16914
- msgid "Shipping class slug."
16915
  msgstr ""
16916
 
16917
- #: includes/api/class-wc-rest-product-variations-controller.php:880
16918
- #: includes/api/class-wc-rest-products-controller.php:1741
16919
- #: includes/api/v1/class-wc-rest-products-controller.php:2031
16920
- #: includes/api/v1/class-wc-rest-products-controller.php:2473
16921
- msgid "Shipping class ID."
16922
  msgstr ""
16923
 
16924
- #: includes/api/class-wc-rest-product-variations-controller.php:886
16925
- #: includes/api/v1/class-wc-rest-products-controller.php:2479
16926
- msgid "Variation image data."
16927
  msgstr ""
16928
 
16929
- #: includes/api/class-wc-rest-product-variations-controller.php:936
16930
- #: includes/api/class-wc-rest-products-controller.php:1906
16931
- #: includes/api/v1/class-wc-rest-products-controller.php:2184
16932
- #: includes/api/v1/class-wc-rest-products-controller.php:2517
16933
- msgid "Image position. 0 means that the image is featured."
16934
  msgstr ""
16935
 
16936
- #: includes/api/class-wc-rest-product-variations-controller.php:943
16937
- #: includes/api/class-wc-rest-products-controller.php:1914
16938
- #: includes/api/v1/class-wc-rest-products-controller.php:2192
16939
- #: includes/api/v1/class-wc-rest-products-controller.php:2524
16940
- msgid "List of attributes."
16941
  msgstr ""
16942
 
16943
- #: includes/api/class-wc-rest-product-variations-controller.php:950
16944
- #: includes/api/class-wc-rest-products-controller.php:1921
16945
- #: includes/api/class-wc-rest-products-controller.php:1966
16946
- #: includes/api/v1/class-wc-rest-products-controller.php:2199
16947
- #: includes/api/v1/class-wc-rest-products-controller.php:2241
16948
- #: includes/api/v1/class-wc-rest-products-controller.php:2531
16949
- #: includes/cli/class-wc-cli-runner.php:114
16950
- msgid "Attribute ID."
16951
  msgstr ""
16952
 
16953
- #: includes/api/class-wc-rest-product-variations-controller.php:955
16954
- #: includes/api/class-wc-rest-products-controller.php:1926
16955
- #: includes/api/class-wc-rest-products-controller.php:1971
16956
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:462
16957
- #: includes/api/v1/class-wc-rest-products-controller.php:2204
16958
- #: includes/api/v1/class-wc-rest-products-controller.php:2246
16959
- #: includes/api/v1/class-wc-rest-products-controller.php:2536
16960
- msgid "Attribute name."
16961
  msgstr ""
16962
 
16963
- #: includes/api/class-wc-rest-product-variations-controller.php:960
16964
- #: includes/api/class-wc-rest-products-controller.php:1976
16965
- #: includes/api/v1/class-wc-rest-products-controller.php:2251
16966
- #: includes/api/v1/class-wc-rest-products-controller.php:2541
16967
- msgid "Selected attribute term name."
16968
  msgstr ""
16969
 
16970
- #: includes/api/class-wc-rest-product-variations-controller.php:968
16971
- #: includes/api/class-wc-rest-products-controller.php:2001
16972
- #: includes/api/v1/class-wc-rest-products-controller.php:2561
16973
- msgid "Menu order, used to custom sort products."
16974
  msgstr ""
16975
 
16976
- #: includes/api/class-wc-rest-products-controller.php:411
16977
- #: includes/api/class-wc-rest-products-controller.php:412
16978
- #: includes/api/legacy/v1/class-wc-api-products.php:459
16979
- #: includes/api/legacy/v1/class-wc-api-products.php:460
16980
- #: includes/api/legacy/v2/class-wc-api-products.php:1615
16981
- #: includes/api/legacy/v2/class-wc-api-products.php:1616
16982
- #: includes/api/legacy/v3/class-wc-api-products.php:2119
16983
- #: includes/api/legacy/v3/class-wc-api-products.php:2120
16984
- #: includes/api/v1/class-wc-rest-products-controller.php:313
16985
- #: includes/api/v1/class-wc-rest-products-controller.php:314
16986
- #: includes/wc-product-functions.php:297
16987
- msgid "Placeholder"
16988
  msgstr ""
16989
 
16990
- #: includes/api/class-wc-rest-products-controller.php:1088
16991
- #: includes/api/v1/class-wc-rest-products-controller.php:867
16992
- #. translators: %s: attachment id
16993
- msgid "#%s is an invalid image ID."
16994
  msgstr ""
16995
 
16996
- #: includes/api/class-wc-rest-products-controller.php:1440
16997
- #: includes/api/v1/class-wc-rest-products-controller.php:1745
16998
- msgid "Product slug."
16999
  msgstr ""
17000
 
17001
- #: includes/api/class-wc-rest-products-controller.php:1445
17002
- #: includes/api/v1/class-wc-rest-products-controller.php:1750
17003
- msgid "Product URL."
17004
  msgstr ""
17005
 
17006
- #: includes/api/class-wc-rest-products-controller.php:1452
17007
- #: includes/api/v1/class-wc-rest-products-controller.php:1757
17008
- msgid "The date the product was created, in the site's timezone."
17009
  msgstr ""
17010
 
17011
- #: includes/api/class-wc-rest-products-controller.php:1458
17012
- msgid "The date the product was created, as GMT."
17013
  msgstr ""
17014
 
17015
- #: includes/api/class-wc-rest-products-controller.php:1464
17016
- #: includes/api/v1/class-wc-rest-products-controller.php:1763
17017
- msgid "The date the product was last modified, in the site's timezone."
17018
  msgstr ""
17019
 
17020
- #: includes/api/class-wc-rest-products-controller.php:1470
17021
- msgid "The date the product was last modified, as GMT."
17022
  msgstr ""
17023
 
17024
- #: includes/api/class-wc-rest-products-controller.php:1476
17025
- #: includes/api/v1/class-wc-rest-products-controller.php:1769
17026
- msgid "Product type."
17027
  msgstr ""
17028
 
17029
- #: includes/api/class-wc-rest-products-controller.php:1483
17030
- #: includes/api/v1/class-wc-rest-products-controller.php:1776
17031
- msgid "Product status (post status)."
17032
  msgstr ""
17033
 
17034
- #: includes/api/class-wc-rest-products-controller.php:1490
17035
- #: includes/api/v1/class-wc-rest-products-controller.php:1783
17036
- msgid "Featured product."
17037
  msgstr ""
17038
 
17039
- #: includes/api/class-wc-rest-products-controller.php:1496
17040
- #: includes/api/v1/class-wc-rest-products-controller.php:1789
17041
- msgid "Catalog visibility."
17042
  msgstr ""
17043
 
17044
- #: includes/api/class-wc-rest-products-controller.php:1503
17045
- #: includes/api/v1/class-wc-rest-products-controller.php:1796
17046
- msgid "Product description."
17047
  msgstr ""
17048
 
17049
- #: includes/api/class-wc-rest-products-controller.php:1508
17050
- #: includes/api/v1/class-wc-rest-products-controller.php:1801
17051
- msgid "Product short description."
17052
  msgstr ""
17053
 
17054
- #: includes/api/class-wc-rest-products-controller.php:1518
17055
- #: includes/api/v1/class-wc-rest-products-controller.php:1811
17056
- msgid "Current product price."
17057
  msgstr ""
17058
 
17059
- #: includes/api/class-wc-rest-products-controller.php:1524
17060
- #: includes/api/v1/class-wc-rest-products-controller.php:1817
17061
- msgid "Product regular price."
17062
  msgstr ""
17063
 
17064
- #: includes/api/class-wc-rest-products-controller.php:1529
17065
- #: includes/api/v1/class-wc-rest-products-controller.php:1822
17066
- msgid "Product sale price."
17067
  msgstr ""
17068
 
17069
- #: includes/api/class-wc-rest-products-controller.php:1554
17070
- #: includes/api/v1/class-wc-rest-products-controller.php:1837
17071
- msgid "Price formatted in HTML."
17072
  msgstr ""
17073
 
17074
- #: includes/api/class-wc-rest-products-controller.php:1560
17075
- #: includes/api/v1/class-wc-rest-products-controller.php:1843
17076
- msgid "Shows if the product is on sale."
17077
  msgstr ""
17078
 
17079
- #: includes/api/class-wc-rest-products-controller.php:1566
17080
- #: includes/api/v1/class-wc-rest-products-controller.php:1849
17081
- msgid "Shows if the product can be bought."
17082
  msgstr ""
17083
 
17084
- #: includes/api/class-wc-rest-products-controller.php:1572
17085
- #: includes/api/v1/class-wc-rest-products-controller.php:1855
17086
- msgid "Amount of sales."
17087
  msgstr ""
17088
 
17089
- #: includes/api/class-wc-rest-products-controller.php:1578
17090
- #: includes/api/v1/class-wc-rest-products-controller.php:1861
17091
- msgid "If the product is virtual."
17092
  msgstr ""
17093
 
17094
- #: includes/api/class-wc-rest-products-controller.php:1584
17095
- #: includes/api/v1/class-wc-rest-products-controller.php:1867
17096
- msgid "If the product is downloadable."
17097
  msgstr ""
17098
 
17099
- #: includes/api/class-wc-rest-products-controller.php:1628
17100
- #: includes/api/v1/class-wc-rest-products-controller.php:1918
17101
- msgid "Product external URL. Only for external products."
17102
  msgstr ""
17103
 
17104
- #: includes/api/class-wc-rest-products-controller.php:1634
17105
- #: includes/api/v1/class-wc-rest-products-controller.php:1924
17106
- msgid "Product external button text. Only for external products."
17107
  msgstr ""
17108
 
17109
- #: includes/api/class-wc-rest-products-controller.php:1651
17110
- #: includes/api/v1/class-wc-rest-products-controller.php:1941
17111
- msgid "Stock management at product level."
17112
  msgstr ""
17113
 
17114
- #: includes/api/class-wc-rest-products-controller.php:1681
17115
- #: includes/api/v1/class-wc-rest-products-controller.php:1971
17116
- msgid "Shows if the product is on backordered."
17117
  msgstr ""
17118
 
17119
- #: includes/api/class-wc-rest-products-controller.php:1687
17120
- #: includes/api/v1/class-wc-rest-products-controller.php:1977
17121
- msgid "Allow one item to be bought in a single order."
17122
  msgstr ""
17123
 
17124
- #: includes/api/class-wc-rest-products-controller.php:1694
17125
- #: includes/api/v1/class-wc-rest-products-controller.php:1984
17126
- #. translators: %s: weight unit
17127
- msgid "Product weight (%s)."
17128
  msgstr ""
17129
 
17130
- #: includes/api/class-wc-rest-products-controller.php:1699
17131
- #: includes/api/v1/class-wc-rest-products-controller.php:1989
17132
- msgid "Product dimensions."
17133
  msgstr ""
17134
 
17135
- #: includes/api/class-wc-rest-products-controller.php:1705
17136
- #: includes/api/v1/class-wc-rest-products-controller.php:1995
17137
- #. translators: %s: dimension unit
17138
- msgid "Product length (%s)."
17139
  msgstr ""
17140
 
17141
- #: includes/api/class-wc-rest-products-controller.php:1711
17142
- #: includes/api/v1/class-wc-rest-products-controller.php:2001
17143
- #. translators: %s: dimension unit
17144
- msgid "Product width (%s)."
17145
  msgstr ""
17146
 
17147
- #: includes/api/class-wc-rest-products-controller.php:1717
17148
- #: includes/api/v1/class-wc-rest-products-controller.php:2007
17149
- #. translators: %s: dimension unit
17150
- msgid "Product height (%s)."
17151
  msgstr ""
17152
 
17153
- #: includes/api/class-wc-rest-products-controller.php:1724
17154
- #: includes/api/v1/class-wc-rest-products-controller.php:2014
17155
- msgid "Shows if the product need to be shipped."
17156
  msgstr ""
17157
 
17158
- #: includes/api/class-wc-rest-products-controller.php:1730
17159
- #: includes/api/v1/class-wc-rest-products-controller.php:2020
17160
- msgid "Shows whether or not the product shipping is taxable."
17161
  msgstr ""
17162
 
17163
- #: includes/api/class-wc-rest-products-controller.php:1747
17164
- #: includes/api/v1/class-wc-rest-products-controller.php:2037
17165
- msgid "Allow reviews."
17166
  msgstr ""
17167
 
17168
- #: includes/api/class-wc-rest-products-controller.php:1753
17169
- #: includes/api/v1/class-wc-rest-products-controller.php:2043
17170
- msgid "Reviews average rating."
17171
  msgstr ""
17172
 
17173
- #: includes/api/class-wc-rest-products-controller.php:1759
17174
- #: includes/api/v1/class-wc-rest-products-controller.php:2049
17175
- msgid "Amount of reviews that the product have."
17176
  msgstr ""
17177
 
17178
- #: includes/api/class-wc-rest-products-controller.php:1765
17179
- #: includes/api/v1/class-wc-rest-products-controller.php:2055
17180
- msgid "List of related products IDs."
17181
  msgstr ""
17182
 
17183
- #: includes/api/class-wc-rest-products-controller.php:1774
17184
- msgid "List of up-sell products IDs."
17185
  msgstr ""
17186
 
17187
- #: includes/api/class-wc-rest-products-controller.php:1782
17188
- #: includes/api/v1/class-wc-rest-products-controller.php:2072
17189
- msgid "List of cross-sell products IDs."
17190
  msgstr ""
17191
 
17192
- #: includes/api/class-wc-rest-products-controller.php:1790
17193
- #: includes/api/v1/class-wc-rest-products-controller.php:2080
17194
- msgid "Product parent ID."
17195
  msgstr ""
17196
 
17197
- #: includes/api/class-wc-rest-products-controller.php:1795
17198
- #: includes/api/v1/class-wc-rest-products-controller.php:2085
17199
- msgid "Optional note to send the customer after purchase."
17200
  msgstr ""
17201
 
17202
- #: includes/api/class-wc-rest-products-controller.php:1800
17203
- #: includes/api/v1/class-wc-rest-products-controller.php:2090
17204
- msgid "List of categories."
17205
  msgstr ""
17206
 
17207
- #: includes/api/class-wc-rest-products-controller.php:1807
17208
- #: includes/api/v1/class-wc-rest-products-controller.php:2097
17209
- msgid "Category ID."
17210
  msgstr ""
17211
 
17212
- #: includes/api/class-wc-rest-products-controller.php:1818
17213
- #: includes/api/v1/class-wc-rest-products-controller.php:2108
17214
- msgid "Category slug."
17215
  msgstr ""
17216
 
17217
- #: includes/api/class-wc-rest-products-controller.php:1827
17218
- #: includes/api/v1/class-wc-rest-products-controller.php:2117
17219
- msgid "List of tags."
17220
  msgstr ""
17221
 
17222
- #: includes/api/class-wc-rest-products-controller.php:1834
17223
- #: includes/api/v1/class-wc-rest-products-controller.php:2124
17224
- msgid "Tag ID."
17225
  msgstr ""
17226
 
17227
- #: includes/api/class-wc-rest-products-controller.php:1839
17228
- #: includes/api/v1/class-wc-rest-product-tags-controller.php:100
17229
- #: includes/api/v1/class-wc-rest-products-controller.php:2129
17230
- msgid "Tag name."
17231
  msgstr ""
17232
 
17233
- #: includes/api/class-wc-rest-products-controller.php:1845
17234
- #: includes/api/v1/class-wc-rest-products-controller.php:2135
17235
- msgid "Tag slug."
17236
  msgstr ""
17237
 
17238
- #: includes/api/class-wc-rest-products-controller.php:1854
17239
- #: includes/api/v1/class-wc-rest-products-controller.php:2144
17240
- msgid "List of images."
17241
  msgstr ""
17242
 
17243
- #: includes/api/class-wc-rest-products-controller.php:1931
17244
- #: includes/api/v1/class-wc-rest-products-controller.php:2209
17245
- msgid "Attribute position."
17246
  msgstr ""
17247
 
17248
- #: includes/api/class-wc-rest-products-controller.php:1936
17249
- #: includes/api/v1/class-wc-rest-products-controller.php:2214
17250
- msgid ""
17251
- "Define if the attribute is visible on the \"Additional information\" tab in "
17252
- "the product's page."
17253
  msgstr ""
17254
 
17255
- #: includes/api/class-wc-rest-products-controller.php:1942
17256
- #: includes/api/v1/class-wc-rest-products-controller.php:2220
17257
- msgid "Define if the attribute can be used as variation."
17258
  msgstr ""
17259
 
17260
- #: includes/api/class-wc-rest-products-controller.php:1948
17261
- #: includes/api/v1/class-wc-rest-products-controller.php:2226
17262
- msgid "List of available term names of the attribute."
17263
  msgstr ""
17264
 
17265
- #: includes/api/class-wc-rest-products-controller.php:1959
17266
- #: includes/api/v1/class-wc-rest-products-controller.php:2234
17267
- msgid "Defaults variation attributes."
17268
  msgstr ""
17269
 
17270
- #: includes/api/class-wc-rest-products-controller.php:1984
17271
- msgid "List of variations IDs."
17272
  msgstr ""
17273
 
17274
- #: includes/api/class-wc-rest-products-controller.php:1993
17275
- #: includes/api/v1/class-wc-rest-products-controller.php:2552
17276
- msgid "List of grouped products ID."
17277
  msgstr ""
17278
 
17279
- #: includes/api/class-wc-rest-products-controller.php:2046
17280
- #: includes/api/v1/class-wc-rest-products-controller.php:2580
17281
- msgid "Limit result set to products with a specific slug."
17282
  msgstr ""
17283
 
17284
- #: includes/api/class-wc-rest-products-controller.php:2052
17285
- #: includes/api/v1/class-wc-rest-products-controller.php:2586
17286
- msgid "Limit result set to products assigned a specific status."
17287
  msgstr ""
17288
 
17289
- #: includes/api/class-wc-rest-products-controller.php:2059
17290
- #: includes/api/v1/class-wc-rest-products-controller.php:2593
17291
- msgid "Limit result set to products assigned a specific type."
17292
  msgstr ""
17293
 
17294
- #: includes/api/class-wc-rest-products-controller.php:2066
17295
- msgid "Limit result set to products with specific SKU(s). Use commas to separate."
17296
  msgstr ""
17297
 
17298
- #: includes/api/class-wc-rest-products-controller.php:2072
17299
- msgid "Limit result set to featured products."
17300
  msgstr ""
17301
 
17302
- #: includes/api/class-wc-rest-products-controller.php:2078
17303
- #: includes/api/v1/class-wc-rest-products-controller.php:2600
17304
- msgid "Limit result set to products assigned a specific category ID."
17305
  msgstr ""
17306
 
17307
- #: includes/api/class-wc-rest-products-controller.php:2084
17308
- #: includes/api/v1/class-wc-rest-products-controller.php:2606
17309
- msgid "Limit result set to products assigned a specific tag ID."
17310
  msgstr ""
17311
 
17312
- #: includes/api/class-wc-rest-products-controller.php:2090
17313
- #: includes/api/v1/class-wc-rest-products-controller.php:2612
17314
- msgid "Limit result set to products assigned a specific shipping class ID."
17315
  msgstr ""
17316
 
17317
- #: includes/api/class-wc-rest-products-controller.php:2096
17318
- msgid ""
17319
- "Limit result set to products with a specific attribute. Use the taxonomy "
17320
- "name/attribute slug."
17321
  msgstr ""
17322
 
17323
- #: includes/api/class-wc-rest-products-controller.php:2102
17324
- #: includes/api/v1/class-wc-rest-products-controller.php:2624
17325
- msgid ""
17326
- "Limit result set to products with a specific attribute term ID (required an "
17327
- "assigned attribute)."
17328
  msgstr ""
17329
 
17330
- #: includes/api/class-wc-rest-products-controller.php:2110
17331
- msgid "Limit result set to products with a specific tax class."
17332
  msgstr ""
17333
 
17334
- #: includes/api/class-wc-rest-products-controller.php:2119
17335
- msgid "Limit result set to products in stock or out of stock."
17336
  msgstr ""
17337
 
17338
- #: includes/api/class-wc-rest-products-controller.php:2125
17339
- msgid "Limit result set to products on sale."
17340
  msgstr ""
17341
 
17342
- #: includes/api/class-wc-rest-products-controller.php:2131
17343
- msgid "Limit result set to products based on a minimum price."
17344
  msgstr ""
17345
 
17346
- #: includes/api/class-wc-rest-products-controller.php:2137
17347
- msgid "Limit result set to products based on a maximum price."
17348
  msgstr ""
17349
 
17350
- #: includes/api/class-wc-rest-setting-options-controller.php:45
17351
- #: includes/api/class-wc-rest-setting-options-controller.php:62
17352
- #: includes/api/class-wc-rest-setting-options-controller.php:80
17353
- msgid "Settings group ID."
17354
  msgstr ""
17355
 
17356
- #: includes/api/class-wc-rest-setting-options-controller.php:159
17357
- #: includes/api/class-wc-rest-setting-options-controller.php:165
17358
- msgid "Invalid setting group."
17359
  msgstr ""
17360
 
17361
- #: includes/api/class-wc-rest-setting-options-controller.php:234
17362
- #: includes/api/class-wc-rest-setting-options-controller.php:246
17363
- #: includes/api/class-wc-rest-setting-options-controller.php:252
17364
- msgid "Invalid setting."
17365
  msgstr ""
17366
 
17367
- #: includes/api/class-wc-rest-setting-options-controller.php:391
17368
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:179
17369
- msgid "Sorry, you cannot edit this resource."
17370
  msgstr ""
17371
 
17372
- #: includes/api/class-wc-rest-setting-options-controller.php:571
17373
- msgid ""
17374
- "Array of options (key value pairs) for inputs such as select, multiselect, "
17375
- "and radio buttons."
17376
  msgstr ""
17377
 
17378
- #: includes/api/class-wc-rest-settings-controller.php:63
17379
- msgid "No setting groups have been registered."
17380
  msgstr ""
17381
 
17382
- #: includes/api/class-wc-rest-settings-controller.php:198
17383
- msgid "A unique identifier that can be used to link settings together."
17384
  msgstr ""
17385
 
17386
- #: includes/api/class-wc-rest-settings-controller.php:216
17387
- msgid "ID of parent grouping."
17388
  msgstr ""
17389
 
17390
- #: includes/api/class-wc-rest-settings-controller.php:222
17391
- msgid "IDs for settings sub groups."
17392
  msgstr ""
17393
 
17394
- #: includes/api/class-wc-rest-shipping-methods-controller.php:198
17395
- msgid "Method ID."
17396
  msgstr ""
17397
 
17398
- #: includes/api/class-wc-rest-shipping-methods-controller.php:204
17399
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:470
17400
- msgid "Shipping method title."
17401
  msgstr ""
17402
 
17403
- #: includes/api/class-wc-rest-shipping-methods-controller.php:210
17404
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:476
17405
- msgid "Shipping method description."
17406
  msgstr ""
17407
 
17408
- #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:29
17409
- #: includes/api/class-wc-rest-shipping-zones-controller.php:54
17410
- msgid "Unique ID for the resource."
17411
  msgstr ""
17412
 
17413
- #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:88
17414
- #: includes/api/class-wc-rest-shipping-zones-controller.php:172
17415
- msgid "The \"locations not covered by your other zones\" zone cannot be updated."
17416
  msgstr ""
17417
 
17418
- #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:169
17419
- msgid "Shipping zone location code."
17420
  msgstr ""
17421
 
17422
- #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:174
17423
- msgid "Shipping zone location type."
17424
  msgstr ""
17425
 
17426
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:29
17427
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:60
17428
- msgid "Unique ID for the zone."
17429
  msgstr ""
17430
 
17431
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:64
17432
- msgid "Unique ID for the instance."
17433
  msgstr ""
17434
 
17435
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:177
17436
- msgid "Resource cannot be created."
17437
  msgstr ""
17438
 
17439
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:230
17440
- msgid "Shipping methods do not support trashing."
17441
  msgstr ""
17442
 
17443
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:436
17444
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:442
17445
- msgid "Shipping method instance ID."
17446
  msgstr ""
17447
 
17448
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:448
17449
- msgid "Shipping method customer facing title."
17450
  msgstr ""
17451
 
17452
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:454
17453
- msgid "Shipping method sort order."
17454
  msgstr ""
17455
 
17456
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:459
17457
- msgid "Shipping method enabled status."
17458
  msgstr ""
17459
 
17460
- #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:482
17461
- msgid "Shipping method settings."
17462
  msgstr ""
17463
 
17464
- #: includes/api/class-wc-rest-shipping-zones-controller.php:41
17465
- #: includes/api/class-wc-rest-shipping-zones-controller.php:287
17466
- msgid "Shipping zone name."
17467
  msgstr ""
17468
 
17469
- #: includes/api/class-wc-rest-shipping-zones-controller.php:154
17470
- msgid ""
17471
- "Resource cannot be created. Check to make sure 'order' and 'name' are "
17472
- "present."
17473
  msgstr ""
17474
 
17475
- #: includes/api/class-wc-rest-shipping-zones-controller.php:214
17476
- msgid "Shipping zones do not support trashing."
17477
  msgstr ""
17478
 
17479
- #: includes/api/class-wc-rest-shipping-zones-controller.php:295
17480
- msgid "Shipping zone order."
17481
  msgstr ""
17482
 
17483
- #: includes/api/class-wc-rest-system-status-controller.php:104
17484
- msgid "Environment."
17485
  msgstr ""
17486
 
17487
- #: includes/api/class-wc-rest-system-status-controller.php:110
17488
- msgid "Home URL."
17489
  msgstr ""
17490
 
17491
- #: includes/api/class-wc-rest-system-status-controller.php:117
17492
- msgid "Site URL."
17493
  msgstr ""
17494
 
17495
- #: includes/api/class-wc-rest-system-status-controller.php:124
17496
- msgid "WooCommerce version."
17497
  msgstr ""
17498
 
17499
- #: includes/api/class-wc-rest-system-status-controller.php:130
17500
- msgid "Log directory."
17501
  msgstr ""
17502
 
17503
- #: includes/api/class-wc-rest-system-status-controller.php:136
17504
- msgid "Is log directory writable?"
17505
  msgstr ""
17506
 
17507
- #: includes/api/class-wc-rest-system-status-controller.php:142
17508
- msgid "WordPress version."
17509
  msgstr ""
17510
 
17511
- #: includes/api/class-wc-rest-system-status-controller.php:148
17512
- msgid "Is WordPress multisite?"
17513
  msgstr ""
17514
 
17515
- #: includes/api/class-wc-rest-system-status-controller.php:154
17516
- msgid "WordPress memory limit."
17517
  msgstr ""
17518
 
17519
- #: includes/api/class-wc-rest-system-status-controller.php:160
17520
- msgid "Is WordPress debug mode active?"
17521
  msgstr ""
17522
 
17523
- #: includes/api/class-wc-rest-system-status-controller.php:166
17524
- msgid "Are WordPress cron jobs enabled?"
17525
  msgstr ""
17526
 
17527
- #: includes/api/class-wc-rest-system-status-controller.php:172
17528
- msgid "WordPress language."
17529
  msgstr ""
17530
 
17531
- #: includes/api/class-wc-rest-system-status-controller.php:178
17532
- msgid "Server info."
17533
  msgstr ""
17534
 
17535
- #: includes/api/class-wc-rest-system-status-controller.php:184
17536
- msgid "PHP version."
17537
  msgstr ""
17538
 
17539
- #: includes/api/class-wc-rest-system-status-controller.php:190
17540
- msgid "PHP post max size."
17541
  msgstr ""
17542
 
17543
- #: includes/api/class-wc-rest-system-status-controller.php:196
17544
- msgid "PHP max execution time."
17545
  msgstr ""
17546
 
17547
- #: includes/api/class-wc-rest-system-status-controller.php:202
17548
- msgid "PHP max input vars."
17549
  msgstr ""
17550
 
17551
- #: includes/api/class-wc-rest-system-status-controller.php:208
17552
- msgid "cURL version."
17553
  msgstr ""
17554
 
17555
- #: includes/api/class-wc-rest-system-status-controller.php:214
17556
- msgid "Is SUHOSIN installed?"
17557
  msgstr ""
17558
 
17559
- #: includes/api/class-wc-rest-system-status-controller.php:220
17560
- msgid "Max upload size."
17561
  msgstr ""
17562
 
17563
- #: includes/api/class-wc-rest-system-status-controller.php:226
17564
- msgid "MySQL version."
17565
  msgstr ""
17566
 
17567
- #: includes/api/class-wc-rest-system-status-controller.php:232
17568
- msgid "Default timezone."
17569
  msgstr ""
17570
 
17571
- #: includes/api/class-wc-rest-system-status-controller.php:238
17572
- msgid "Is fsockopen/cURL enabled?"
17573
  msgstr ""
17574
 
17575
- #: includes/api/class-wc-rest-system-status-controller.php:244
17576
- msgid "Is SoapClient class enabled?"
17577
  msgstr ""
17578
 
17579
- #: includes/api/class-wc-rest-system-status-controller.php:250
17580
- msgid "Is DomDocument class enabled?"
17581
  msgstr ""
17582
 
17583
- #: includes/api/class-wc-rest-system-status-controller.php:256
17584
- msgid "Is GZip enabled?"
17585
  msgstr ""
17586
 
17587
- #: includes/api/class-wc-rest-system-status-controller.php:262
17588
- msgid "Is mbstring enabled?"
17589
  msgstr ""
17590
 
17591
- #: includes/api/class-wc-rest-system-status-controller.php:268
17592
- msgid "Remote POST successful?"
17593
  msgstr ""
17594
 
17595
- #: includes/api/class-wc-rest-system-status-controller.php:274
17596
- msgid "Remote POST response."
17597
  msgstr ""
17598
 
17599
- #: includes/api/class-wc-rest-system-status-controller.php:280
17600
- msgid "Remote GET successful?"
17601
  msgstr ""
17602
 
17603
- #: includes/api/class-wc-rest-system-status-controller.php:286
17604
- msgid "Remote GET response."
17605
  msgstr ""
17606
 
17607
- #: includes/api/class-wc-rest-system-status-controller.php:294
17608
- msgid "Database."
17609
  msgstr ""
17610
 
17611
- #: includes/api/class-wc-rest-system-status-controller.php:300
17612
- msgid "WC database version."
17613
  msgstr ""
17614
 
17615
- #: includes/api/class-wc-rest-system-status-controller.php:306
17616
- msgid "Database prefix."
17617
  msgstr ""
17618
 
17619
- #: includes/api/class-wc-rest-system-status-controller.php:312
17620
- msgid "MaxMind GeoIP database."
17621
  msgstr ""
17622
 
17623
- #: includes/api/class-wc-rest-system-status-controller.php:318
17624
- msgid "Database tables."
17625
  msgstr ""
17626
 
17627
- #: includes/api/class-wc-rest-system-status-controller.php:329
17628
- msgid "Active plugins."
17629
  msgstr ""
17630
 
17631
- #: includes/api/class-wc-rest-system-status-controller.php:338
17632
- msgid "Theme."
17633
  msgstr ""
17634
 
17635
- #: includes/api/class-wc-rest-system-status-controller.php:344
17636
- msgid "Theme name."
17637
  msgstr ""
17638
 
17639
- #: includes/api/class-wc-rest-system-status-controller.php:350
17640
- msgid "Theme version."
17641
  msgstr ""
17642
 
17643
- #: includes/api/class-wc-rest-system-status-controller.php:356
17644
- msgid "Latest version of theme."
17645
  msgstr ""
17646
 
17647
- #: includes/api/class-wc-rest-system-status-controller.php:362
17648
- msgid "Theme author URL."
17649
  msgstr ""
17650
 
17651
- #: includes/api/class-wc-rest-system-status-controller.php:369
17652
- msgid "Is this theme a child theme?"
17653
  msgstr ""
17654
 
17655
- #: includes/api/class-wc-rest-system-status-controller.php:375
17656
- msgid "Does the theme declare WooCommerce support?"
17657
  msgstr ""
17658
 
17659
- #: includes/api/class-wc-rest-system-status-controller.php:381
17660
- msgid "Does the theme have a woocommerce.php file?"
17661
  msgstr ""
17662
 
17663
- #: includes/api/class-wc-rest-system-status-controller.php:387
17664
- msgid "Does this theme have outdated templates?"
17665
  msgstr ""
17666
 
17667
- #: includes/api/class-wc-rest-system-status-controller.php:393
17668
- msgid "Template overrides."
17669
  msgstr ""
17670
 
17671
- #: includes/api/class-wc-rest-system-status-controller.php:402
17672
- msgid "Parent theme name."
17673
  msgstr ""
17674
 
17675
- #: includes/api/class-wc-rest-system-status-controller.php:408
17676
- msgid "Parent theme version."
17677
  msgstr ""
17678
 
17679
- #: includes/api/class-wc-rest-system-status-controller.php:414
17680
- msgid "Parent theme author URL."
17681
  msgstr ""
17682
 
17683
- #: includes/api/class-wc-rest-system-status-controller.php:423
17684
- msgid "Settings."
17685
  msgstr ""
17686
 
17687
- #: includes/api/class-wc-rest-system-status-controller.php:429
17688
- msgid "REST API enabled?"
17689
  msgstr ""
17690
 
17691
- #: includes/api/class-wc-rest-system-status-controller.php:435
17692
- msgid "SSL forced?"
17693
  msgstr ""
17694
 
17695
- #: includes/api/class-wc-rest-system-status-controller.php:441
17696
- msgid "Currency."
17697
  msgstr ""
17698
 
17699
- #: includes/api/class-wc-rest-system-status-controller.php:447
17700
- msgid "Currency symbol."
17701
  msgstr ""
17702
 
17703
- #: includes/api/class-wc-rest-system-status-controller.php:453
17704
- msgid "Currency position."
17705
  msgstr ""
17706
 
17707
- #: includes/api/class-wc-rest-system-status-controller.php:459
17708
- msgid "Thousand separator."
17709
  msgstr ""
17710
 
17711
- #: includes/api/class-wc-rest-system-status-controller.php:465
17712
- msgid "Decimal separator."
17713
  msgstr ""
17714
 
17715
- #: includes/api/class-wc-rest-system-status-controller.php:471
17716
- msgid "Number of decimals."
17717
  msgstr ""
17718
 
17719
- #: includes/api/class-wc-rest-system-status-controller.php:477
17720
- msgid "Geolocation enabled?"
17721
  msgstr ""
17722
 
17723
- #: includes/api/class-wc-rest-system-status-controller.php:483
17724
- msgid "Taxonomy terms for product/order statuses."
17725
  msgstr ""
17726
 
17727
- #: includes/api/class-wc-rest-system-status-controller.php:492
17728
- msgid "Terms in the product visibility taxonomy."
17729
  msgstr ""
17730
 
17731
- #: includes/api/class-wc-rest-system-status-controller.php:503
17732
- msgid "Security."
17733
  msgstr ""
17734
 
17735
- #: includes/api/class-wc-rest-system-status-controller.php:515
17736
- msgid "Hide errors from visitors?"
17737
  msgstr ""
17738
 
17739
- #: includes/api/class-wc-rest-system-status-controller.php:523
17740
- msgid "WooCommerce pages."
17741
  msgstr ""
17742
 
17743
- #: includes/api/class-wc-rest-system-status-tools-controller.php:109
17744
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:177
17745
- msgid "Sorry, you cannot update resource."
17746
  msgstr ""
17747
 
17748
- #: includes/api/class-wc-rest-system-status-tools-controller.php:123
17749
- msgid "WooCommerce transients"
17750
  msgstr ""
17751
 
17752
- #: includes/api/class-wc-rest-system-status-tools-controller.php:124
17753
- #: includes/api/class-wc-rest-system-status-tools-controller.php:129
17754
- msgid "Clear transients"
17755
  msgstr ""
17756
 
17757
- #: includes/api/class-wc-rest-system-status-tools-controller.php:125
17758
- msgid "This tool will clear the product/shop transients cache."
17759
  msgstr ""
17760
 
17761
- #: includes/api/class-wc-rest-system-status-tools-controller.php:128
17762
- msgid "Expired transients"
17763
  msgstr ""
17764
 
17765
- #: includes/api/class-wc-rest-system-status-tools-controller.php:130
17766
- msgid "This tool will clear ALL expired transients from WordPress."
17767
  msgstr ""
17768
 
17769
- #: includes/api/class-wc-rest-system-status-tools-controller.php:133
17770
- msgid "Orphaned variations"
17771
  msgstr ""
17772
 
17773
- #: includes/api/class-wc-rest-system-status-tools-controller.php:134
17774
- msgid "Delete orphaned variations"
17775
  msgstr ""
17776
 
17777
- #: includes/api/class-wc-rest-system-status-tools-controller.php:135
17778
- msgid "This tool will delete all variations which have no parent."
17779
  msgstr ""
17780
 
17781
- #: includes/api/class-wc-rest-system-status-tools-controller.php:138
17782
- msgid "Used-up download permissions"
17783
  msgstr ""
17784
 
17785
- #: includes/api/class-wc-rest-system-status-tools-controller.php:139
17786
- msgid "Clean up download permissions"
17787
  msgstr ""
17788
 
17789
- #: includes/api/class-wc-rest-system-status-tools-controller.php:140
17790
- msgid ""
17791
- "This tool will delete expired download permissions and permissions with 0 "
17792
- "remaining downloads."
17793
  msgstr ""
17794
 
17795
- #: includes/api/class-wc-rest-system-status-tools-controller.php:143
17796
- msgid "Order address indexes"
17797
  msgstr ""
17798
 
17799
- #: includes/api/class-wc-rest-system-status-tools-controller.php:144
17800
- msgid "Index orders"
17801
  msgstr ""
17802
 
17803
- #: includes/api/class-wc-rest-system-status-tools-controller.php:145
17804
- msgid ""
17805
- "This tool will add address indexes to orders that do not have them yet. "
17806
- "This improves order search results."
17807
  msgstr ""
17808
 
17809
- #: includes/api/class-wc-rest-system-status-tools-controller.php:148
17810
- msgid "Term counts"
17811
  msgstr ""
17812
 
17813
- #: includes/api/class-wc-rest-system-status-tools-controller.php:149
17814
- msgid "Recount terms"
17815
  msgstr ""
17816
 
17817
- #: includes/api/class-wc-rest-system-status-tools-controller.php:150
17818
- msgid ""
17819
- "This tool will recount product terms - useful when changing your settings "
17820
- "in a way which hides products from the catalog."
17821
  msgstr ""
17822
 
17823
- #: includes/api/class-wc-rest-system-status-tools-controller.php:153
17824
- msgid "Capabilities"
17825
  msgstr ""
17826
 
17827
- #: includes/api/class-wc-rest-system-status-tools-controller.php:154
17828
- msgid "Reset capabilities"
17829
  msgstr ""
17830
 
17831
- #: includes/api/class-wc-rest-system-status-tools-controller.php:155
17832
- msgid ""
17833
- "This tool will reset the admin, customer and shop_manager roles to default. "
17834
- "Use this if your users cannot access all of the WooCommerce admin pages."
17835
  msgstr ""
17836
 
17837
- #: includes/api/class-wc-rest-system-status-tools-controller.php:158
17838
- msgid "Clear customer sessions"
17839
  msgstr ""
17840
 
17841
- #: includes/api/class-wc-rest-system-status-tools-controller.php:159
17842
- #: templates/single-product/add-to-cart/variable.php:48
17843
- msgid "Clear"
17844
  msgstr ""
17845
 
17846
- #: includes/api/class-wc-rest-system-status-tools-controller.php:163
17847
- msgid ""
17848
- "This tool will delete all customer session data from the database, "
17849
- "including current carts and saved carts in the database."
17850
  msgstr ""
17851
 
17852
- #: includes/api/class-wc-rest-system-status-tools-controller.php:167
17853
- msgid "Create default WooCommerce pages"
17854
  msgstr ""
17855
 
17856
- #: includes/api/class-wc-rest-system-status-tools-controller.php:168
17857
- msgid "Create pages"
17858
  msgstr ""
17859
 
17860
- #: includes/api/class-wc-rest-system-status-tools-controller.php:172
17861
- msgid ""
17862
- "This tool will install all the missing WooCommerce pages. Pages already "
17863
- "defined and set up will not be replaced."
17864
  msgstr ""
17865
 
17866
- #: includes/api/class-wc-rest-system-status-tools-controller.php:176
17867
- msgid "Delete WooCommerce tax rates"
17868
  msgstr ""
17869
 
17870
- #: includes/api/class-wc-rest-system-status-tools-controller.php:177
17871
- msgid "Delete tax rates"
17872
  msgstr ""
17873
 
17874
- #: includes/api/class-wc-rest-system-status-tools-controller.php:181
17875
- msgid ""
17876
- "This option will delete ALL of your tax rates, use with caution. This "
17877
- "action cannot be reversed."
17878
  msgstr ""
17879
 
17880
- #: includes/api/class-wc-rest-system-status-tools-controller.php:185
17881
- msgid "Reset usage tracking"
17882
  msgstr ""
17883
 
17884
- #: includes/api/class-wc-rest-system-status-tools-controller.php:187
17885
- msgid ""
17886
- "This will reset your usage tracking settings, causing it to show the opt-in "
17887
- "banner again and not sending any data."
17888
  msgstr ""
17889
 
17890
- #: includes/api/class-wc-rest-system-status-tools-controller.php:190
17891
- msgid "Regenerate shop thumbnails"
17892
  msgstr ""
17893
 
17894
- #: includes/api/class-wc-rest-system-status-tools-controller.php:191
17895
- msgid "Regenerate"
17896
  msgstr ""
17897
 
17898
- #: includes/api/class-wc-rest-system-status-tools-controller.php:192
17899
- msgid ""
17900
- "This will regenerate all shop thumbnails to match your theme and/or image "
17901
- "settings."
17902
  msgstr ""
17903
 
17904
- #: includes/api/class-wc-rest-system-status-tools-controller.php:238
17905
- #: includes/api/class-wc-rest-system-status-tools-controller.php:262
17906
- msgid "Invalid tool ID."
17907
  msgstr ""
17908
 
17909
- #: includes/api/class-wc-rest-system-status-tools-controller.php:320
17910
- msgid "A unique identifier for the tool."
17911
  msgstr ""
17912
 
17913
- #: includes/api/class-wc-rest-system-status-tools-controller.php:328
17914
- msgid "Tool name."
17915
  msgstr ""
17916
 
17917
- #: includes/api/class-wc-rest-system-status-tools-controller.php:336
17918
- msgid "What running the tool will do."
17919
  msgstr ""
17920
 
17921
- #: includes/api/class-wc-rest-system-status-tools-controller.php:344
17922
- msgid "Tool description."
17923
  msgstr ""
17924
 
17925
- #: includes/api/class-wc-rest-system-status-tools-controller.php:352
17926
- msgid "Did the tool run successfully?"
17927
  msgstr ""
17928
 
17929
- #: includes/api/class-wc-rest-system-status-tools-controller.php:357
17930
- msgid "Tool return message."
17931
  msgstr ""
17932
 
17933
- #: includes/api/class-wc-rest-system-status-tools-controller.php:413
17934
- msgid "Product transients cleared"
17935
  msgstr ""
17936
 
17937
- #: includes/api/class-wc-rest-system-status-tools-controller.php:418
17938
- #. translators: %d: amount of expired transients
17939
- msgid "%d transients rows cleared"
17940
  msgstr ""
17941
 
17942
- #: includes/api/class-wc-rest-system-status-tools-controller.php:432
17943
- #. translators: %d: amount of orphaned variations
17944
- msgid "%d orphaned variations deleted"
17945
  msgstr ""
17946
 
17947
- #: includes/api/class-wc-rest-system-status-tools-controller.php:447
17948
- #. translators: %d: amount of permissions
17949
- msgid "%d permissions deleted"
17950
  msgstr ""
17951
 
17952
- #: includes/api/class-wc-rest-system-status-tools-controller.php:467
17953
- #. translators: %d: amount of indexes
17954
- msgid "%d indexes added"
17955
  msgstr ""
17956
 
17957
- #: includes/api/class-wc-rest-system-status-tools-controller.php:474
17958
- msgid "Roles successfully reset"
17959
  msgstr ""
17960
 
17961
- #: includes/api/class-wc-rest-system-status-tools-controller.php:492
17962
- msgid "Terms successfully recounted"
17963
  msgstr ""
17964
 
17965
- #: includes/api/class-wc-rest-system-status-tools-controller.php:500
17966
- #. translators: %d: amount of sessions
17967
- msgid "Deleted all active sessions, and %d saved carts."
17968
  msgstr ""
17969
 
17970
- #: includes/api/class-wc-rest-system-status-tools-controller.php:505
17971
- msgid "All missing WooCommerce pages successfully installed"
17972
  msgstr ""
17973
 
17974
- #: includes/api/class-wc-rest-system-status-tools-controller.php:512
17975
- msgid "Tax rates successfully deleted"
17976
  msgstr ""
17977
 
17978
- #: includes/api/class-wc-rest-system-status-tools-controller.php:522
17979
- msgid "Usage tracking settings successfully reset."
17980
  msgstr ""
17981
 
17982
- #: includes/api/class-wc-rest-system-status-tools-controller.php:527
17983
- msgid "Thumbnail regeneration has been scheduled to run in the background."
17984
  msgstr ""
17985
 
17986
- #: includes/api/class-wc-rest-system-status-tools-controller.php:541
17987
- #. translators: %s: callback string
17988
- msgid "There was an error calling %s"
17989
  msgstr ""
17990
 
17991
- #: includes/api/class-wc-rest-system-status-tools-controller.php:543
17992
- msgid "Tool ran."
17993
  msgstr ""
17994
 
17995
- #: includes/api/class-wc-rest-system-status-tools-controller.php:547
17996
- msgid "There was an error calling this tool. There is no callback present."
17997
  msgstr ""
17998
 
17999
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:76
18000
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:232
18001
- msgid "The delivery duration, in seconds."
18002
  msgstr ""
18003
 
18004
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:82
18005
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:238
18006
- msgid ""
18007
- "A friendly summary of the response including the HTTP response code, "
18008
- "message, and body."
18009
  msgstr ""
18010
 
18011
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:88
18012
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:244
18013
- msgid "The URL where the webhook was delivered."
18014
  msgstr ""
18015
 
18016
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:95
18017
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:251
18018
- msgid "Request headers."
18019
  msgstr ""
18020
 
18021
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:104
18022
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:260
18023
- msgid "Request body."
18024
  msgstr ""
18025
 
18026
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:110
18027
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:266
18028
- msgid "The HTTP response code from the receiving server."
18029
  msgstr ""
18030
 
18031
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:116
18032
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:272
18033
- msgid "The HTTP response message from the receiving server."
18034
  msgstr ""
18035
 
18036
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:122
18037
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:278
18038
- msgid "Array of the response headers from the receiving server."
18039
  msgstr ""
18040
 
18041
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:131
18042
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:287
18043
- msgid "The response body from the receiving server."
18044
  msgstr ""
18045
 
18046
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:137
18047
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:293
18048
- msgid "The date the webhook delivery was logged, in the site's timezone."
18049
  msgstr ""
18050
 
18051
- #: includes/api/class-wc-rest-webhook-deliveries-controller.php:143
18052
- msgid "The date the webhook delivery was logged, as GMT."
18053
  msgstr ""
18054
 
18055
- #: includes/api/class-wc-rest-webhooks-controller.php:104
18056
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:621
18057
- msgid "A friendly name for the webhook."
18058
  msgstr ""
18059
 
18060
- #: includes/api/class-wc-rest-webhooks-controller.php:109
18061
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:626
18062
- msgid "Webhook status."
18063
  msgstr ""
18064
 
18065
- #: includes/api/class-wc-rest-webhooks-controller.php:119
18066
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:63
18067
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:636
18068
- msgid "Webhook topic."
18069
  msgstr ""
18070
 
18071
- #: includes/api/class-wc-rest-webhooks-controller.php:124
18072
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:641
18073
- msgid "Webhook resource."
18074
  msgstr ""
18075
 
18076
- #: includes/api/class-wc-rest-webhooks-controller.php:130
18077
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:647
18078
- msgid "Webhook event."
18079
  msgstr ""
18080
 
18081
- #: includes/api/class-wc-rest-webhooks-controller.php:136
18082
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:653
18083
- msgid "WooCommerce action names associated with the webhook."
18084
  msgstr ""
18085
 
18086
- #: includes/api/class-wc-rest-webhooks-controller.php:145
18087
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:662
18088
- msgid "The URL where the webhook payload is delivered."
18089
  msgstr ""
18090
 
18091
- #: includes/api/class-wc-rest-webhooks-controller.php:152
18092
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:669
18093
- msgid ""
18094
- "Secret key used to generate a hash of the delivered webhook and provided in "
18095
- "the request headers. This will default to a MD5 hash from the current "
18096
- "user's ID|username if not provided."
18097
  msgstr ""
18098
 
18099
- #: includes/api/class-wc-rest-webhooks-controller.php:157
18100
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:674
18101
- msgid "The date the webhook was created, in the site's timezone."
18102
  msgstr ""
18103
 
18104
- #: includes/api/class-wc-rest-webhooks-controller.php:163
18105
- msgid "The date the webhook was created, as GMT."
18106
  msgstr ""
18107
 
18108
- #: includes/api/class-wc-rest-webhooks-controller.php:169
18109
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:680
18110
- msgid "The date the webhook was last modified, in the site's timezone."
18111
  msgstr ""
18112
 
18113
- #: includes/api/class-wc-rest-webhooks-controller.php:175
18114
- msgid "The date the webhook was last modified, as GMT."
18115
  msgstr ""
18116
 
18117
- #: includes/api/legacy/class-wc-rest-legacy-products-controller.php:532
18118
- #: includes/api/legacy/v2/class-wc-api-products.php:1288
18119
- #: includes/api/legacy/v3/class-wc-api-products.php:1783
18120
- #: includes/api/v1/class-wc-rest-products-controller.php:1372
18121
- #. translators: 1: variation id 2: product name
18122
- msgid "Variation #%1$s of %2$s"
18123
  msgstr ""
18124
 
18125
- #: includes/api/legacy/v1/class-wc-api-authentication.php:92
18126
- #: includes/api/legacy/v2/class-wc-api-authentication.php:92
18127
- msgid "Consumer key is missing."
18128
  msgstr ""
18129
 
18130
- #: includes/api/legacy/v1/class-wc-api-authentication.php:108
18131
- #: includes/api/legacy/v2/class-wc-api-authentication.php:108
18132
- msgid "Consumer secret is missing."
18133
  msgstr ""
18134
 
18135
- #: includes/api/legacy/v1/class-wc-api-authentication.php:148
18136
- #: includes/api/legacy/v2/class-wc-api-authentication.php:147
18137
- #: includes/api/legacy/v3/class-wc-api-authentication.php:143
18138
- #. translators: %s: parameter name
18139
- msgid "%s parameter is missing"
18140
  msgstr ""
18141
 
18142
- #: includes/api/legacy/v1/class-wc-api-authentication.php:202
18143
- #: includes/api/legacy/v2/class-wc-api-authentication.php:200
18144
- #: includes/api/legacy/v3/class-wc-api-authentication.php:198
18145
- msgid "API user is invalid"
18146
  msgstr ""
18147
 
18148
- #: includes/api/legacy/v1/class-wc-api-coupons.php:111
18149
- #: includes/api/legacy/v2/class-wc-api-coupons.php:117
18150
- #: includes/api/legacy/v3/class-wc-api-coupons.php:117
18151
- msgid "Invalid coupon ID"
18152
  msgstr ""
18153
 
18154
- #: includes/api/legacy/v1/class-wc-api-coupons.php:154
18155
- #: includes/api/legacy/v2/class-wc-api-coupons.php:163
18156
- #: includes/api/legacy/v3/class-wc-api-coupons.php:161
18157
- msgid "You do not have permission to read the coupons count"
18158
  msgstr ""
18159
 
18160
- #: includes/api/legacy/v1/class-wc-api-customers.php:186
18161
- #: includes/api/legacy/v2/class-wc-api-customers.php:231
18162
- #: includes/api/legacy/v3/class-wc-api-customers.php:232
18163
- msgid "You do not have permission to read the customers count"
18164
  msgstr ""
18165
 
18166
- #: includes/api/legacy/v1/class-wc-api-customers.php:202
18167
- #: includes/api/legacy/v2/class-wc-api-customers.php:356
18168
- #: includes/api/legacy/v3/class-wc-api-customers.php:357
18169
- msgid "You do not have permission to create this customer"
18170
  msgstr ""
18171
 
18172
- #: includes/api/legacy/v1/class-wc-api-customers.php:434
18173
- #: includes/api/legacy/v2/class-wc-api-customers.php:719
18174
- #: includes/api/legacy/v3/class-wc-api-customers.php:709
18175
- msgid "Invalid customer ID"
18176
  msgstr ""
18177
 
18178
- #: includes/api/legacy/v1/class-wc-api-customers.php:441
18179
- #: includes/api/legacy/v2/class-wc-api-customers.php:726
18180
- #: includes/api/legacy/v3/class-wc-api-customers.php:716
18181
- msgid "Invalid customer"
18182
  msgstr ""
18183
 
18184
- #: includes/api/legacy/v1/class-wc-api-customers.php:449
18185
- #: includes/api/legacy/v2/class-wc-api-customers.php:734
18186
- #: includes/api/legacy/v3/class-wc-api-customers.php:724
18187
- msgid "You do not have permission to read this customer"
18188
  msgstr ""
18189
 
18190
- #: includes/api/legacy/v1/class-wc-api-customers.php:455
18191
- #: includes/api/legacy/v2/class-wc-api-customers.php:740
18192
- #: includes/api/legacy/v3/class-wc-api-customers.php:730
18193
- msgid "You do not have permission to edit this customer"
18194
  msgstr ""
18195
 
18196
- #: includes/api/legacy/v1/class-wc-api-customers.php:461
18197
- #: includes/api/legacy/v2/class-wc-api-customers.php:746
18198
- #: includes/api/legacy/v3/class-wc-api-customers.php:736
18199
- msgid "You do not have permission to delete this customer"
18200
  msgstr ""
18201
 
18202
- #: includes/api/legacy/v1/class-wc-api-json-handler.php:59
18203
- #: includes/api/legacy/v2/class-wc-api-json-handler.php:58
18204
- #: includes/api/legacy/v3/class-wc-api-json-handler.php:58
18205
- msgid "JSONP support is disabled on this site"
18206
  msgstr ""
18207
 
18208
- #: includes/api/legacy/v1/class-wc-api-json-handler.php:67
18209
- #: includes/api/legacy/v2/class-wc-api-json-handler.php:66
18210
- #: includes/api/legacy/v3/class-wc-api-json-handler.php:66
18211
- msgid "The JSONP callback function is invalid"
18212
  msgstr ""
18213
 
18214
- #: includes/api/legacy/v1/class-wc-api-orders.php:255
18215
- #: includes/api/legacy/v2/class-wc-api-orders.php:299
18216
- #: includes/api/legacy/v3/class-wc-api-orders.php:336
18217
- msgid "You do not have permission to read the orders count"
18218
  msgstr ""
18219
 
18220
- #: includes/api/legacy/v1/class-wc-api-products.php:147
18221
- #: includes/api/legacy/v2/class-wc-api-products.php:185
18222
- #: includes/api/legacy/v3/class-wc-api-products.php:234
18223
- msgid "You do not have permission to read the products count"
18224
  msgstr ""
18225
 
18226
- #: includes/api/legacy/v1/class-wc-api-reports.php:475
18227
- #: includes/api/legacy/v2/class-wc-api-reports.php:322
18228
- #: includes/api/legacy/v3/class-wc-api-reports.php:326
18229
- msgid "You do not have permission to read this report"
18230
  msgstr ""
18231
 
18232
- #: includes/api/legacy/v1/class-wc-api-resource.php:74
18233
- #: includes/api/legacy/v2/class-wc-api-resource.php:94
18234
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:489
18235
- #: includes/api/legacy/v3/class-wc-api-resource.php:96
18236
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:489
18237
- msgid "Invalid %s ID"
18238
  msgstr ""
18239
 
18240
- #: includes/api/legacy/v1/class-wc-api-resource.php:87
18241
- #: includes/api/legacy/v2/class-wc-api-resource.php:111
18242
- #: includes/api/legacy/v3/class-wc-api-resource.php:113
18243
- msgid "Invalid %s"
18244
  msgstr ""
18245
 
18246
- #: includes/api/legacy/v1/class-wc-api-resource.php:95
18247
- #: includes/api/legacy/v2/class-wc-api-resource.php:119
18248
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:503
18249
- #: includes/api/legacy/v3/class-wc-api-resource.php:121
18250
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:503
18251
- msgid "You do not have permission to read this %s"
18252
  msgstr ""
18253
 
18254
- #: includes/api/legacy/v1/class-wc-api-resource.php:101
18255
- #: includes/api/legacy/v2/class-wc-api-resource.php:125
18256
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:509
18257
- #: includes/api/legacy/v3/class-wc-api-resource.php:127
18258
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:509
18259
- msgid "You do not have permission to edit this %s"
18260
  msgstr ""
18261
 
18262
- #: includes/api/legacy/v1/class-wc-api-resource.php:107
18263
- #: includes/api/legacy/v2/class-wc-api-resource.php:131
18264
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:515
18265
- #: includes/api/legacy/v3/class-wc-api-resource.php:133
18266
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:515
18267
- msgid "You do not have permission to delete this %s"
18268
  msgstr ""
18269
 
18270
- #: includes/api/legacy/v1/class-wc-api-resource.php:313
18271
- #: includes/api/legacy/v2/class-wc-api-resource.php:372
18272
- #: includes/api/legacy/v3/class-wc-api-resource.php:374
18273
- msgid "Permanently deleted customer"
18274
  msgstr ""
18275
 
18276
- #: includes/api/legacy/v1/class-wc-api-resource.php:315
18277
- #: includes/api/legacy/v2/class-wc-api-resource.php:374
18278
- #: includes/api/legacy/v3/class-wc-api-resource.php:376
18279
- msgid "The customer cannot be deleted"
18280
  msgstr ""
18281
 
18282
- #: includes/api/legacy/v1/class-wc-api-resource.php:323
18283
- #: includes/api/legacy/v2/class-wc-api-products.php:450
18284
- #: includes/api/legacy/v2/class-wc-api-resource.php:382
18285
- #: includes/api/legacy/v3/class-wc-api-products.php:509
18286
- #: includes/api/legacy/v3/class-wc-api-products.php:3057
18287
- #: includes/api/legacy/v3/class-wc-api-resource.php:384
18288
- msgid "This %s cannot be deleted"
18289
  msgstr ""
18290
 
18291
- #: includes/api/legacy/v1/class-wc-api-resource.php:327
18292
- #: includes/api/legacy/v2/class-wc-api-products.php:459
18293
- #: includes/api/legacy/v2/class-wc-api-resource.php:386
18294
- #: includes/api/legacy/v3/class-wc-api-products.php:518
18295
- #: includes/api/legacy/v3/class-wc-api-resource.php:388
18296
- msgid "Permanently deleted %s"
18297
  msgstr ""
18298
 
18299
- #: includes/api/legacy/v1/class-wc-api-resource.php:333
18300
- #: includes/api/legacy/v2/class-wc-api-products.php:463
18301
- #: includes/api/legacy/v2/class-wc-api-products.php:2225
18302
- #: includes/api/legacy/v2/class-wc-api-resource.php:390
18303
- #: includes/api/legacy/v3/class-wc-api-products.php:522
18304
- #: includes/api/legacy/v3/class-wc-api-products.php:866
18305
- #: includes/api/legacy/v3/class-wc-api-products.php:1058
18306
- #: includes/api/legacy/v3/class-wc-api-products.php:2786
18307
- #: includes/api/legacy/v3/class-wc-api-products.php:3064
18308
- #: includes/api/legacy/v3/class-wc-api-products.php:3375
18309
- #: includes/api/legacy/v3/class-wc-api-resource.php:394
18310
- #: includes/api/legacy/v3/class-wc-api-taxes.php:354
18311
- #: includes/api/legacy/v3/class-wc-api-taxes.php:665
18312
- msgid "Deleted %s"
18313
  msgstr ""
18314
 
18315
- #: includes/api/legacy/v1/class-wc-api-server.php:168
18316
- #: includes/api/legacy/v2/class-wc-api-server.php:164
18317
- #: includes/api/legacy/v3/class-wc-api-server.php:164
18318
- msgid "Invalid authentication method"
18319
  msgstr ""
18320
 
18321
- #: includes/api/legacy/v1/class-wc-api-server.php:321
18322
- #: includes/api/legacy/v2/class-wc-api-server.php:319
18323
- #: includes/api/legacy/v3/class-wc-api-server.php:319
18324
- msgid "Unsupported request method"
18325
  msgstr ""
18326
 
18327
- #: includes/api/legacy/v1/class-wc-api-server.php:340
18328
- #: includes/api/legacy/v2/class-wc-api-server.php:338
18329
- #: includes/api/legacy/v3/class-wc-api-server.php:338
18330
- msgid "The handler for the route is invalid"
18331
  msgstr ""
18332
 
18333
- #: includes/api/legacy/v1/class-wc-api-server.php:377
18334
- #: includes/api/legacy/v2/class-wc-api-server.php:375
18335
- #: includes/api/legacy/v3/class-wc-api-server.php:375
18336
- msgid "No route was found matching the URL and request method"
18337
  msgstr ""
18338
 
18339
- #: includes/api/legacy/v1/class-wc-api-server.php:412
18340
- #: includes/api/legacy/v2/class-wc-api-coupons.php:226
18341
- #: includes/api/legacy/v2/class-wc-api-customers.php:363
18342
- #: includes/api/legacy/v2/class-wc-api-products.php:228
18343
- #: includes/api/legacy/v2/class-wc-api-products.php:1981
18344
- #: includes/api/legacy/v2/class-wc-api-server.php:430
18345
- #: includes/api/legacy/v3/class-wc-api-coupons.php:224
18346
- #: includes/api/legacy/v3/class-wc-api-customers.php:364
18347
- #: includes/api/legacy/v3/class-wc-api-products.php:277
18348
- #: includes/api/legacy/v3/class-wc-api-products.php:2539
18349
- #: includes/api/legacy/v3/class-wc-api-products.php:2938
18350
- #: includes/api/legacy/v3/class-wc-api-server.php:431
18351
- #: includes/api/legacy/v3/class-wc-api-taxes.php:575
18352
- #: includes/class-wc-auth.php:171
18353
- #. translators: %s: parameter
18354
- msgid "Missing parameter %s"
18355
  msgstr ""
18356
 
18357
- #: includes/api/legacy/v2/class-wc-api-coupons.php:212
18358
- #: includes/api/legacy/v2/class-wc-api-customers.php:349
18359
- #: includes/api/legacy/v2/class-wc-api-orders.php:367
18360
- #: includes/api/legacy/v2/class-wc-api-orders.php:1292
18361
- #: includes/api/legacy/v2/class-wc-api-orders.php:1585
18362
- #: includes/api/legacy/v2/class-wc-api-products.php:214
18363
- #: includes/api/legacy/v2/class-wc-api-products.php:2019
18364
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:171
18365
- #: includes/api/legacy/v3/class-wc-api-coupons.php:210
18366
- #: includes/api/legacy/v3/class-wc-api-customers.php:350
18367
- #: includes/api/legacy/v3/class-wc-api-orders.php:404
18368
- #: includes/api/legacy/v3/class-wc-api-orders.php:1339
18369
- #: includes/api/legacy/v3/class-wc-api-orders.php:1632
18370
- #: includes/api/legacy/v3/class-wc-api-products.php:263
18371
- #: includes/api/legacy/v3/class-wc-api-products.php:702
18372
- #: includes/api/legacy/v3/class-wc-api-products.php:959
18373
- #: includes/api/legacy/v3/class-wc-api-products.php:2577
18374
- #: includes/api/legacy/v3/class-wc-api-products.php:2918
18375
- #: includes/api/legacy/v3/class-wc-api-products.php:3261
18376
- #: includes/api/legacy/v3/class-wc-api-taxes.php:184
18377
- #: includes/api/legacy/v3/class-wc-api-taxes.php:564
18378
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:171
18379
- msgid "No %1$s data specified to create %1$s"
18380
  msgstr ""
18381
 
18382
- #: includes/api/legacy/v2/class-wc-api-coupons.php:219
18383
- #: includes/api/legacy/v3/class-wc-api-coupons.php:217
18384
- msgid "You do not have permission to create coupons"
18385
  msgstr ""
18386
 
18387
- #: includes/api/legacy/v2/class-wc-api-coupons.php:261
18388
- #: includes/api/legacy/v2/class-wc-api-coupons.php:365
18389
- #: includes/api/legacy/v3/class-wc-api-coupons.php:259
18390
- #: includes/api/legacy/v3/class-wc-api-coupons.php:363
18391
- msgid "Invalid coupon type - the coupon type must be any of these: %s"
18392
  msgstr ""
18393
 
18394
- #: includes/api/legacy/v2/class-wc-api-coupons.php:324
18395
- #: includes/api/legacy/v2/class-wc-api-customers.php:404
18396
- #: includes/api/legacy/v2/class-wc-api-orders.php:511
18397
- #: includes/api/legacy/v2/class-wc-api-orders.php:1351
18398
- #: includes/api/legacy/v2/class-wc-api-orders.php:1664
18399
- #: includes/api/legacy/v2/class-wc-api-products.php:323
18400
- #: includes/api/legacy/v2/class-wc-api-products.php:2102
18401
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:242
18402
- #: includes/api/legacy/v3/class-wc-api-coupons.php:322
18403
- #: includes/api/legacy/v3/class-wc-api-customers.php:405
18404
- #: includes/api/legacy/v3/class-wc-api-orders.php:551
18405
- #: includes/api/legacy/v3/class-wc-api-orders.php:1398
18406
- #: includes/api/legacy/v3/class-wc-api-orders.php:1711
18407
- #: includes/api/legacy/v3/class-wc-api-products.php:377
18408
- #: includes/api/legacy/v3/class-wc-api-products.php:779
18409
- #: includes/api/legacy/v3/class-wc-api-products.php:1004
18410
- #: includes/api/legacy/v3/class-wc-api-products.php:2661
18411
- #: includes/api/legacy/v3/class-wc-api-products.php:2983
18412
- #: includes/api/legacy/v3/class-wc-api-products.php:3319
18413
- #: includes/api/legacy/v3/class-wc-api-taxes.php:254
18414
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:242
18415
- msgid "No %1$s data specified to edit %1$s"
18416
  msgstr ""
18417
 
18418
- #: includes/api/legacy/v2/class-wc-api-coupons.php:350
18419
- #: includes/api/legacy/v2/class-wc-api-coupons.php:358
18420
- #: includes/api/legacy/v3/class-wc-api-coupons.php:348
18421
- #: includes/api/legacy/v3/class-wc-api-coupons.php:356
18422
- msgid "Failed to update coupon"
18423
  msgstr ""
18424
 
18425
- #: includes/api/legacy/v2/class-wc-api-coupons.php:521
18426
- #: includes/api/legacy/v2/class-wc-api-customers.php:784
18427
- #: includes/api/legacy/v2/class-wc-api-orders.php:1781
18428
- #: includes/api/legacy/v2/class-wc-api-products.php:2298
18429
- #: includes/api/legacy/v3/class-wc-api-coupons.php:521
18430
- #: includes/api/legacy/v3/class-wc-api-customers.php:774
18431
- #: includes/api/legacy/v3/class-wc-api-orders.php:1828
18432
- #: includes/api/legacy/v3/class-wc-api-products.php:3111
18433
- #: includes/api/legacy/v3/class-wc-api-taxes.php:457
18434
- msgid "No %1$s data specified to create/edit %1$s"
18435
  msgstr ""
18436
 
18437
- #: includes/api/legacy/v2/class-wc-api-customers.php:207
18438
- #: includes/api/legacy/v2/class-wc-api-customers.php:210
18439
- #: includes/api/legacy/v3/class-wc-api-customers.php:208
18440
- #: includes/api/legacy/v3/class-wc-api-customers.php:211
18441
- msgid "Invalid customer email"
18442
  msgstr ""
18443
 
18444
- #: includes/api/legacy/v2/class-wc-api-customers.php:374
18445
- #: includes/api/legacy/v3/class-wc-api-customers.php:375
18446
- #: includes/api/v1/class-wc-rest-customers-controller.php:345
18447
- msgid "This resource cannot be created."
18448
  msgstr ""
18449
 
18450
- #: includes/api/legacy/v2/class-wc-api-orders.php:374
18451
- #: includes/api/legacy/v3/class-wc-api-orders.php:411
18452
- msgid "You do not have permission to create orders"
18453
  msgstr ""
18454
 
18455
- #: includes/api/legacy/v2/class-wc-api-orders.php:400
18456
- #: includes/api/legacy/v3/class-wc-api-orders.php:437
18457
- msgid "Cannot create order: %s"
 
18458
  msgstr ""
18459
 
18460
- #: includes/api/legacy/v2/class-wc-api-orders.php:434
18461
- #: includes/api/legacy/v3/class-wc-api-orders.php:476
18462
- msgid "Payment method ID and title are required"
18463
  msgstr ""
18464
 
18465
- #: includes/api/legacy/v2/class-wc-api-orders.php:450
18466
- #: includes/api/legacy/v2/class-wc-api-orders.php:607
18467
- #: includes/api/legacy/v3/class-wc-api-orders.php:492
18468
- #: includes/api/legacy/v3/class-wc-api-orders.php:646
18469
- msgid "Provided order currency is invalid."
18470
  msgstr ""
18471
 
18472
- #: includes/api/legacy/v2/class-wc-api-orders.php:528
18473
- #: includes/api/legacy/v2/class-wc-api-orders.php:1598
18474
- #: includes/api/legacy/v3/class-wc-api-orders.php:568
18475
- #: includes/api/legacy/v3/class-wc-api-orders.php:1645
18476
- msgid "Order ID is invalid"
18477
  msgstr ""
18478
 
18479
- #: includes/api/legacy/v2/class-wc-api-orders.php:872
18480
- #: includes/api/legacy/v3/class-wc-api-orders.php:918
18481
- msgid "Product ID or SKU is required"
18482
  msgstr ""
18483
 
18484
- #: includes/api/legacy/v2/class-wc-api-orders.php:882
18485
- #: includes/api/legacy/v3/class-wc-api-orders.php:928
18486
- msgid "Product ID provided does not match this line item"
18487
  msgstr ""
18488
 
18489
- #: includes/api/legacy/v2/class-wc-api-orders.php:897
18490
- #: includes/api/legacy/v3/class-wc-api-orders.php:943
18491
- msgid "The product variation is invalid"
18492
  msgstr ""
18493
 
18494
- #: includes/api/legacy/v2/class-wc-api-orders.php:907
18495
- #: includes/api/legacy/v3/class-wc-api-orders.php:953
18496
- msgid "Product is invalid."
18497
  msgstr ""
18498
 
18499
- #: includes/api/legacy/v2/class-wc-api-orders.php:912
18500
- #: includes/api/legacy/v3/class-wc-api-orders.php:958
18501
- msgid "Product quantity must be a positive float."
18502
  msgstr ""
18503
 
18504
- #: includes/api/legacy/v2/class-wc-api-orders.php:917
18505
- #: includes/api/legacy/v3/class-wc-api-orders.php:963
18506
- msgid "Product quantity is required."
18507
  msgstr ""
18508
 
18509
- #: includes/api/legacy/v2/class-wc-api-orders.php:960
18510
- #: includes/api/legacy/v3/class-wc-api-orders.php:1007
18511
- msgid "Cannot create line item, try again."
18512
  msgstr ""
18513
 
18514
- #: includes/api/legacy/v2/class-wc-api-orders.php:1036
18515
- #: includes/api/legacy/v3/class-wc-api-orders.php:1083
18516
- msgid "Shipping total must be a positive amount."
18517
  msgstr ""
18518
 
18519
- #: includes/api/legacy/v2/class-wc-api-orders.php:1070
18520
- #: includes/api/legacy/v3/class-wc-api-orders.php:1117
18521
- msgid "Cannot update shipping method, try again."
18522
  msgstr ""
18523
 
18524
- #: includes/api/legacy/v2/class-wc-api-orders.php:1090
18525
- #: includes/api/legacy/v3/class-wc-api-orders.php:1137
18526
- msgid "Fee title is required"
18527
  msgstr ""
18528
 
18529
- #: includes/api/legacy/v2/class-wc-api-orders.php:1101
18530
- #: includes/api/legacy/v3/class-wc-api-orders.php:1148
18531
- msgid "Fee tax class is required when fee is taxable."
18532
  msgstr ""
18533
 
18534
- #: includes/api/legacy/v2/class-wc-api-orders.php:1141
18535
- #: includes/api/legacy/v3/class-wc-api-orders.php:1188
18536
- msgid "Cannot update fee, try again."
18537
  msgstr ""
18538
 
18539
- #: includes/api/legacy/v2/class-wc-api-orders.php:1159
18540
- #: includes/api/legacy/v3/class-wc-api-orders.php:1206
18541
- msgid "Coupon discount total must be a positive amount."
18542
  msgstr ""
18543
 
18544
- #: includes/api/legacy/v2/class-wc-api-orders.php:1192
18545
- #: includes/api/legacy/v3/class-wc-api-orders.php:1239
18546
- msgid "Cannot update coupon, try again."
18547
  msgstr ""
18548
 
18549
- #: includes/api/legacy/v2/class-wc-api-orders.php:1259
18550
- #: includes/api/legacy/v2/class-wc-api-orders.php:1369
18551
- #: includes/api/legacy/v2/class-wc-api-orders.php:1433
18552
- #: includes/api/legacy/v3/class-wc-api-orders.php:1306
18553
- #: includes/api/legacy/v3/class-wc-api-orders.php:1416
18554
- #: includes/api/legacy/v3/class-wc-api-orders.php:1480
18555
- msgid "Invalid order note ID"
18556
  msgstr ""
18557
 
18558
- #: includes/api/legacy/v2/class-wc-api-orders.php:1265
18559
- #: includes/api/legacy/v2/class-wc-api-orders.php:1376
18560
- #: includes/api/legacy/v2/class-wc-api-orders.php:1440
18561
- #: includes/api/legacy/v3/class-wc-api-orders.php:1312
18562
- #: includes/api/legacy/v3/class-wc-api-orders.php:1423
18563
- #: includes/api/legacy/v3/class-wc-api-orders.php:1487
18564
- msgid "An order note with the provided ID could not be found"
18565
  msgstr ""
18566
 
18567
- #: includes/api/legacy/v2/class-wc-api-orders.php:1299
18568
- #: includes/api/legacy/v3/class-wc-api-orders.php:1346
18569
- msgid "You do not have permission to create order notes"
18570
  msgstr ""
18571
 
18572
- #: includes/api/legacy/v2/class-wc-api-orders.php:1314
18573
- #: includes/api/legacy/v3/class-wc-api-orders.php:1361
18574
- msgid "Order note is required"
18575
  msgstr ""
18576
 
18577
- #: includes/api/legacy/v2/class-wc-api-orders.php:1323
18578
- #: includes/api/legacy/v3/class-wc-api-orders.php:1370
18579
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:233
18580
- msgid "Cannot create order note, please try again."
18581
  msgstr ""
18582
 
18583
- #: includes/api/legacy/v2/class-wc-api-orders.php:1381
18584
- #: includes/api/legacy/v2/class-wc-api-orders.php:1445
18585
- #: includes/api/legacy/v3/class-wc-api-orders.php:1428
18586
- #: includes/api/legacy/v3/class-wc-api-orders.php:1492
18587
- msgid "The order note ID provided is not associated with the order"
18588
  msgstr ""
18589
 
18590
- #: includes/api/legacy/v2/class-wc-api-orders.php:1452
18591
- #: includes/api/legacy/v3/class-wc-api-orders.php:1499
18592
- msgid "This order note cannot be deleted"
18593
  msgstr ""
18594
 
18595
- #: includes/api/legacy/v2/class-wc-api-orders.php:1457
18596
- #: includes/api/legacy/v3/class-wc-api-orders.php:1504
18597
- msgid "Permanently deleted order note"
18598
  msgstr ""
18599
 
18600
- #: includes/api/legacy/v2/class-wc-api-orders.php:1525
18601
- #: includes/api/legacy/v2/class-wc-api-orders.php:1687
18602
- #: includes/api/legacy/v2/class-wc-api-orders.php:1748
18603
- #: includes/api/legacy/v3/class-wc-api-orders.php:1572
18604
- #: includes/api/legacy/v3/class-wc-api-orders.php:1734
18605
- #: includes/api/legacy/v3/class-wc-api-orders.php:1795
18606
- msgid "An order refund with the provided ID could not be found."
18607
  msgstr ""
18608
 
18609
- #: includes/api/legacy/v2/class-wc-api-orders.php:1592
18610
- #: includes/api/legacy/v3/class-wc-api-orders.php:1639
18611
- msgid "You do not have permission to create order refunds"
18612
  msgstr ""
18613
 
18614
- #: includes/api/legacy/v2/class-wc-api-orders.php:1605
18615
- #: includes/api/legacy/v3/class-wc-api-orders.php:1652
18616
- msgid "Refund amount is required."
18617
  msgstr ""
18618
 
18619
- #: includes/api/legacy/v2/class-wc-api-orders.php:1607
18620
- #: includes/api/legacy/v3/class-wc-api-orders.php:1654
18621
- msgid "Refund amount must be positive."
18622
  msgstr ""
18623
 
18624
- #: includes/api/legacy/v2/class-wc-api-orders.php:1634
18625
- #: includes/api/legacy/v3/class-wc-api-orders.php:1681
18626
- #: includes/wc-order-functions.php:642
18627
- msgid ""
18628
- "An error occurred while attempting to create the refund using the payment "
18629
- "gateway API."
18630
  msgstr ""
18631
 
18632
- #: includes/api/legacy/v2/class-wc-api-orders.php:1692
18633
- #: includes/api/legacy/v2/class-wc-api-orders.php:1753
18634
- #: includes/api/legacy/v3/class-wc-api-orders.php:1739
18635
- #: includes/api/legacy/v3/class-wc-api-orders.php:1800
18636
- msgid "The order refund ID provided is not associated with the order."
18637
  msgstr ""
18638
 
18639
- #: includes/api/legacy/v2/class-wc-api-products.php:221
18640
- #: includes/api/legacy/v3/class-wc-api-products.php:270
18641
- msgid "You do not have permission to create products"
18642
  msgstr ""
18643
 
18644
- #: includes/api/legacy/v2/class-wc-api-products.php:243
18645
- #: includes/api/legacy/v2/class-wc-api-products.php:369
18646
- #: includes/api/legacy/v3/class-wc-api-products.php:292
18647
- #: includes/api/legacy/v3/class-wc-api-products.php:423
18648
- msgid "Invalid product type - the product type must be any of these: %s"
18649
  msgstr ""
18650
 
18651
- #: includes/api/legacy/v2/class-wc-api-products.php:555
18652
- #: includes/api/legacy/v2/class-wc-api-products.php:593
18653
- #: includes/api/legacy/v3/class-wc-api-products.php:614
18654
- #: includes/api/legacy/v3/class-wc-api-products.php:652
18655
- msgid "You do not have permission to read product categories"
18656
  msgstr ""
18657
 
18658
- #: includes/api/legacy/v2/class-wc-api-products.php:588
18659
- #: includes/api/legacy/v3/class-wc-api-products.php:647
18660
- msgid "Invalid product category ID"
18661
  msgstr ""
18662
 
18663
- #: includes/api/legacy/v2/class-wc-api-products.php:599
18664
- #: includes/api/legacy/v3/class-wc-api-products.php:658
18665
- msgid "A product category with the provided ID could not be found"
18666
  msgstr ""
18667
 
18668
- #: includes/api/legacy/v2/class-wc-api-products.php:944
18669
- #: includes/api/legacy/v3/class-wc-api-products.php:1434
18670
- msgid "The SKU already exists on another product."
18671
  msgstr ""
18672
 
18673
- #: includes/api/legacy/v2/class-wc-api-products.php:1699
18674
- #: includes/api/legacy/v3/class-wc-api-products.php:2232
18675
- #: includes/wc-rest-functions.php:74
18676
- #. translators: %s: image URL
18677
- msgid "Invalid URL %s."
18678
  msgstr ""
18679
 
18680
- #: includes/api/legacy/v2/class-wc-api-products.php:1711
18681
- #: includes/api/legacy/v2/class-wc-api-products.php:1713
18682
- #: includes/api/legacy/v3/class-wc-api-products.php:2244
18683
- #: includes/api/legacy/v3/class-wc-api-products.php:2246
18684
- #: includes/wc-rest-functions.php:90 includes/wc-rest-functions.php:96
18685
- #. translators: %s: image URL
18686
- msgid "Error getting remote image %s."
18687
  msgstr ""
18688
 
18689
- #: includes/api/legacy/v2/class-wc-api-products.php:1711
18690
- #: includes/api/legacy/v3/class-wc-api-products.php:2244
18691
- #: includes/class-wc-auth.php:405 includes/wc-rest-functions.php:92
18692
- #. translators: %s: error message
18693
- msgid "Error: %s."
18694
  msgstr ""
18695
 
18696
- #: includes/api/legacy/v2/class-wc-api-products.php:1734
18697
- #: includes/api/legacy/v3/class-wc-api-products.php:2267
18698
- #: includes/wc-rest-functions.php:117
18699
- msgid "Invalid image type."
18700
  msgstr ""
18701
 
18702
- #: includes/api/legacy/v2/class-wc-api-products.php:1751
18703
- #: includes/api/legacy/v3/class-wc-api-products.php:2284
18704
- #: includes/wc-rest-functions.php:135
18705
- msgid "Zero size file downloaded."
18706
  msgstr ""
18707
 
18708
- #: includes/api/legacy/v2/class-wc-api-products.php:1893
18709
- #: includes/api/legacy/v2/class-wc-api-products.php:1939
18710
- #: includes/api/legacy/v3/class-wc-api-products.php:2451
18711
- #: includes/api/legacy/v3/class-wc-api-products.php:2497
18712
- msgid "You do not have permission to read product attributes"
18713
  msgstr ""
18714
 
18715
- #: includes/api/legacy/v2/class-wc-api-products.php:1934
18716
- #: includes/api/legacy/v3/class-wc-api-products.php:2492
18717
- #: includes/api/legacy/v3/class-wc-api-products.php:2870
18718
- msgid "Invalid product attribute ID"
18719
  msgstr ""
18720
 
18721
- #: includes/api/legacy/v2/class-wc-api-products.php:1949
18722
- #: includes/api/legacy/v2/class-wc-api-products.php:2197
18723
- #: includes/api/legacy/v3/class-wc-api-products.php:2507
18724
- #: includes/api/legacy/v3/class-wc-api-products.php:2757
18725
- #: includes/api/legacy/v3/class-wc-api-products.php:2812
18726
- #: includes/api/legacy/v3/class-wc-api-products.php:2881
18727
- #: includes/api/legacy/v3/class-wc-api-products.php:2931
18728
- #: includes/api/legacy/v3/class-wc-api-products.php:2997
18729
- #: includes/api/legacy/v3/class-wc-api-products.php:3050
18730
- msgid "A product attribute with the provided ID could not be found"
18731
  msgstr ""
18732
 
18733
- #: includes/api/legacy/v2/class-wc-api-products.php:1985
18734
- #: includes/api/legacy/v3/class-wc-api-products.php:2543
18735
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:567
18736
- #: includes/wc-attribute-functions.php:449
18737
- #. translators: %s: attribute slug
18738
- msgid "Slug \"%s\" is too long (28 characters max). Shorten it, please."
18739
  msgstr ""
18740
 
18741
- #: includes/api/legacy/v2/class-wc-api-products.php:1987
18742
- #: includes/api/legacy/v3/class-wc-api-products.php:2545
18743
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:569
18744
- #: includes/wc-attribute-functions.php:452
18745
- #. translators: %s: attribute slug
18746
- msgid "Slug \"%s\" is not allowed because it is a reserved term. Change it, please."
18747
  msgstr ""
18748
 
18749
- #: includes/api/legacy/v2/class-wc-api-products.php:1989
18750
- #: includes/api/legacy/v3/class-wc-api-products.php:2547
18751
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:571
18752
- #: includes/wc-attribute-functions.php:455
18753
- #. translators: %s: attribute slug
18754
- msgid "Slug \"%s\" is already in use. Change it, please."
18755
  msgstr ""
18756
 
18757
- #: includes/api/legacy/v2/class-wc-api-products.php:1994
18758
- #: includes/api/legacy/v3/class-wc-api-products.php:2552
18759
- msgid ""
18760
- "Invalid product attribute type - the product attribute type must be any of "
18761
- "these: %s"
18762
  msgstr ""
18763
 
18764
- #: includes/api/legacy/v2/class-wc-api-products.php:1999
18765
- #: includes/api/legacy/v3/class-wc-api-products.php:2557
18766
- msgid ""
18767
- "Invalid product attribute order_by type - the product attribute order_by "
18768
- "type must be any of these: %s"
18769
  msgstr ""
18770
 
18771
- #: includes/api/legacy/v2/class-wc-api-products.php:2026
18772
- #: includes/api/legacy/v3/class-wc-api-products.php:2584
18773
- #: includes/api/legacy/v3/class-wc-api-products.php:2925
18774
- msgid "You do not have permission to create product attributes"
18775
  msgstr ""
18776
 
18777
- #: includes/api/legacy/v2/class-wc-api-products.php:2110
18778
- #: includes/api/legacy/v3/class-wc-api-products.php:2669
18779
- #: includes/api/legacy/v3/class-wc-api-products.php:2991
18780
- msgid "You do not have permission to edit product attributes"
18781
  msgstr ""
18782
 
18783
- #: includes/api/legacy/v2/class-wc-api-products.php:2156
18784
- #: includes/api/legacy/v3/class-wc-api-products.php:2715
18785
- msgid "Could not edit the attribute"
18786
  msgstr ""
18787
 
18788
- #: includes/api/legacy/v2/class-wc-api-products.php:2185
18789
- #: includes/api/legacy/v3/class-wc-api-products.php:2745
18790
- msgid "You do not have permission to delete product attributes"
18791
  msgstr ""
18792
 
18793
- #: includes/api/legacy/v2/class-wc-api-products.php:2207
18794
- #: includes/api/legacy/v3/class-wc-api-products.php:2767
18795
- msgid "Could not delete the attribute"
18796
  msgstr ""
18797
 
18798
- #: includes/api/legacy/v2/class-wc-api-products.php:2248
18799
- msgid "Invalid product SKU"
18800
  msgstr ""
18801
 
18802
- #: includes/api/legacy/v2/class-wc-api-resource.php:103
18803
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:495
18804
- #: includes/api/legacy/v3/class-wc-api-resource.php:105
18805
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:495
18806
- msgid "No %1$s found with the ID equal to %2$s"
18807
  msgstr ""
18808
 
18809
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:143
18810
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:143
18811
- msgid "You do not have permission to read the webhooks count"
18812
  msgstr ""
18813
 
18814
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:178
18815
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:178
18816
- msgid "You do not have permission to create webhooks."
18817
  msgstr ""
18818
 
18819
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:185
18820
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:185
18821
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:326
18822
- msgid "Webhook topic is required and must be valid."
18823
  msgstr ""
18824
 
18825
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:190
18826
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:276
18827
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:190
18828
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:276
18829
- msgid "Webhook delivery URL must be a valid URL starting with http:// or https://"
18830
  msgstr ""
18831
 
18832
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:265
18833
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:265
18834
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:391
18835
- msgid "Webhook topic must be valid."
18836
  msgstr ""
18837
 
18838
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:454
18839
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:454
18840
- msgid "Invalid webhook delivery ID."
18841
  msgstr ""
18842
 
18843
- #: includes/api/legacy/v2/class-wc-api-webhooks.php:462
18844
- #: includes/api/legacy/v3/class-wc-api-webhooks.php:462
18845
- msgid "Invalid webhook delivery."
18846
  msgstr ""
18847
 
18848
- #: includes/api/legacy/v3/class-wc-api-authentication.php:113
18849
- msgid "Consumer Secret is invalid."
18850
  msgstr ""
18851
 
18852
- #: includes/api/legacy/v3/class-wc-api-products.php:707
18853
- msgid "You do not have permission to create product categories"
18854
  msgstr ""
18855
 
18856
- #: includes/api/legacy/v3/class-wc-api-products.php:727
18857
- msgid "Product category parent is invalid"
18858
  msgstr ""
18859
 
18860
- #: includes/api/legacy/v3/class-wc-api-products.php:787
18861
- msgid "You do not have permission to edit product categories"
18862
  msgstr ""
18863
 
18864
- #: includes/api/legacy/v3/class-wc-api-products.php:817
18865
- msgid "Could not edit the category"
18866
  msgstr ""
18867
 
18868
- #: includes/api/legacy/v3/class-wc-api-products.php:850
18869
- msgid "You do not have permission to delete product category"
18870
  msgstr ""
18871
 
18872
- #: includes/api/legacy/v3/class-wc-api-products.php:856
18873
- msgid "Could not delete the category"
18874
  msgstr ""
18875
 
18876
- #: includes/api/legacy/v3/class-wc-api-products.php:885
18877
- #: includes/api/legacy/v3/class-wc-api-products.php:923
18878
- msgid "You do not have permission to read product tags"
18879
  msgstr ""
18880
 
18881
- #: includes/api/legacy/v3/class-wc-api-products.php:918
18882
- msgid "Invalid product tag ID"
18883
  msgstr ""
18884
 
18885
- #: includes/api/legacy/v3/class-wc-api-products.php:929
18886
- msgid "A product tag with the provided ID could not be found"
18887
  msgstr ""
18888
 
18889
- #: includes/api/legacy/v3/class-wc-api-products.php:964
18890
- msgid "You do not have permission to create product tags"
18891
  msgstr ""
18892
 
18893
- #: includes/api/legacy/v3/class-wc-api-products.php:1012
18894
- msgid "You do not have permission to edit product tags"
18895
  msgstr ""
18896
 
18897
- #: includes/api/legacy/v3/class-wc-api-products.php:1024
18898
- msgid "Could not edit the tag"
18899
  msgstr ""
18900
 
18901
- #: includes/api/legacy/v3/class-wc-api-products.php:1047
18902
- msgid "You do not have permission to delete product tag"
18903
  msgstr ""
18904
 
18905
- #: includes/api/legacy/v3/class-wc-api-products.php:1053
18906
- msgid "Could not delete the tag"
18907
  msgstr ""
18908
 
18909
- #: includes/api/legacy/v3/class-wc-api-products.php:2806
18910
- #: includes/api/legacy/v3/class-wc-api-products.php:2875
18911
- msgid "You do not have permission to read product attribute terms"
18912
  msgstr ""
18913
 
18914
- #: includes/api/legacy/v3/class-wc-api-products.php:2887
18915
- msgid "A product attribute term with the provided ID could not be found"
18916
  msgstr ""
18917
 
18918
- #: includes/api/legacy/v3/class-wc-api-products.php:3044
18919
- msgid "You do not have permission to delete product attribute terms"
 
18920
  msgstr ""
18921
 
18922
- #: includes/api/legacy/v3/class-wc-api-products.php:3187
18923
- #: includes/api/legacy/v3/class-wc-api-products.php:3222
18924
- msgid "You do not have permission to read product shipping classes"
18925
  msgstr ""
18926
 
18927
- #: includes/api/legacy/v3/class-wc-api-products.php:3217
18928
- msgid "Invalid product shipping class ID"
 
18929
  msgstr ""
18930
 
18931
- #: includes/api/legacy/v3/class-wc-api-products.php:3228
18932
- msgid "A product shipping class with the provided ID could not be found"
18933
  msgstr ""
18934
 
18935
- #: includes/api/legacy/v3/class-wc-api-products.php:3266
18936
- msgid "You do not have permission to create product shipping classes"
18937
  msgstr ""
18938
 
18939
- #: includes/api/legacy/v3/class-wc-api-products.php:3284
18940
- msgid "Product shipping class parent is invalid"
18941
  msgstr ""
18942
 
18943
- #: includes/api/legacy/v3/class-wc-api-products.php:3327
18944
- msgid "You do not have permission to edit product shipping classes"
18945
  msgstr ""
18946
 
18947
- #: includes/api/legacy/v3/class-wc-api-products.php:3339
18948
- msgid "Could not edit the shipping class"
 
18949
  msgstr ""
18950
 
18951
- #: includes/api/legacy/v3/class-wc-api-products.php:3364
18952
- msgid "You do not have permission to delete product shipping classes"
18953
  msgstr ""
18954
 
18955
- #: includes/api/legacy/v3/class-wc-api-products.php:3370
18956
- msgid "Could not delete the shipping class"
18957
  msgstr ""
18958
 
18959
- #: includes/api/legacy/v3/class-wc-api-taxes.php:128
18960
- msgid "You do not have permission to read tax rate"
18961
  msgstr ""
18962
 
18963
- #: includes/api/legacy/v3/class-wc-api-taxes.php:135
18964
- msgid "A tax rate with the provided ID could not be found"
18965
  msgstr ""
18966
 
18967
- #: includes/api/legacy/v3/class-wc-api-taxes.php:189
18968
- msgid "You do not have permission to create tax rates"
18969
  msgstr ""
18970
 
18971
- #: includes/api/legacy/v3/class-wc-api-taxes.php:259
18972
- msgid "You do not have permission to edit tax rates"
18973
  msgstr ""
18974
 
18975
- #: includes/api/legacy/v3/class-wc-api-taxes.php:343
18976
- msgid "You do not have permission to delete tax rates"
18977
  msgstr ""
18978
 
18979
- #: includes/api/legacy/v3/class-wc-api-taxes.php:351
18980
- msgid "Could not delete the tax rate"
18981
  msgstr ""
18982
 
18983
- #: includes/api/legacy/v3/class-wc-api-taxes.php:373
18984
- msgid "You do not have permission to read the taxes count"
18985
  msgstr ""
18986
 
18987
- #: includes/api/legacy/v3/class-wc-api-taxes.php:526
18988
- msgid "You do not have permission to read tax classes"
18989
  msgstr ""
18990
 
18991
- #: includes/api/legacy/v3/class-wc-api-taxes.php:534
18992
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:138
18993
- msgid "Standard rate"
18994
  msgstr ""
18995
 
18996
- #: includes/api/legacy/v3/class-wc-api-taxes.php:569
18997
- msgid "You do not have permission to create tax classes"
 
18998
  msgstr ""
18999
 
19000
- #: includes/api/legacy/v3/class-wc-api-taxes.php:593
19001
- msgid "Tax class already exists"
19002
  msgstr ""
19003
 
19004
- #: includes/api/legacy/v3/class-wc-api-taxes.php:631
19005
- msgid "You do not have permission to delete tax classes"
19006
  msgstr ""
19007
 
19008
- #: includes/api/legacy/v3/class-wc-api-taxes.php:647
19009
- msgid "Could not delete the tax class"
19010
  msgstr ""
19011
 
19012
- #: includes/api/legacy/v3/class-wc-api-taxes.php:681
19013
- msgid "You do not have permission to read the tax classes count"
19014
  msgstr ""
19015
 
19016
- #: includes/api/v1/class-wc-rest-coupons-controller.php:455
19017
- msgid "UTC DateTime when the coupon expires."
19018
  msgstr ""
19019
 
19020
- #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:175
19021
- msgid "Download ID (MD5)."
19022
  msgstr ""
19023
 
19024
- #: includes/api/v1/class-wc-rest-customers-controller.php:58
19025
- msgid "New user email address."
19026
  msgstr ""
19027
 
19028
- #: includes/api/v1/class-wc-rest-customers-controller.php:62
19029
- msgid "New user username."
 
19030
  msgstr ""
19031
 
19032
- #: includes/api/v1/class-wc-rest-customers-controller.php:67
19033
- msgid "New user password."
 
19034
  msgstr ""
19035
 
19036
- #: includes/api/v1/class-wc-rest-customers-controller.php:109
19037
- msgid "ID to reassign posts to."
 
19038
  msgstr ""
19039
 
19040
- #: includes/api/v1/class-wc-rest-customers-controller.php:327
19041
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:184
19042
- #: includes/api/v1/class-wc-rest-taxes-controller.php:364
19043
- msgid "Cannot create existing resource."
19044
  msgstr ""
19045
 
19046
- #: includes/api/v1/class-wc-rest-customers-controller.php:383
19047
- #: includes/api/v1/class-wc-rest-customers-controller.php:404
19048
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:274
19049
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:307
19050
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:240
19051
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:321
19052
- #: includes/api/v1/class-wc-rest-taxes-controller.php:400
19053
- #: includes/api/v1/class-wc-rest-taxes-controller.php:420
19054
- #: includes/api/v1/class-wc-rest-taxes-controller.php:463
19055
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:153
19056
- msgid "Invalid resource ID."
19057
  msgstr ""
19058
 
19059
- #: includes/api/v1/class-wc-rest-customers-controller.php:408
19060
- msgid "Email address is invalid."
19061
  msgstr ""
19062
 
19063
- #: includes/api/v1/class-wc-rest-customers-controller.php:412
19064
- msgid "Username isn't editable."
19065
  msgstr ""
19066
 
19067
- #: includes/api/v1/class-wc-rest-customers-controller.php:466
19068
- msgid "Customers do not support trashing."
19069
  msgstr ""
19070
 
19071
- #: includes/api/v1/class-wc-rest-customers-controller.php:471
19072
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:245
19073
- msgid "Invalid resource id."
19074
  msgstr ""
19075
 
19076
- #: includes/api/v1/class-wc-rest-customers-controller.php:476
19077
- msgid "Invalid resource id for reassignment."
19078
  msgstr ""
19079
 
19080
- #: includes/api/v1/class-wc-rest-customers-controller.php:638
19081
- msgid "The date the customer was created, as GMT."
19082
  msgstr ""
19083
 
19084
- #: includes/api/v1/class-wc-rest-customers-controller.php:685
19085
- msgid "Last order data."
19086
  msgstr ""
19087
 
19088
- #: includes/api/v1/class-wc-rest-customers-controller.php:691
19089
- msgid "Last order ID."
 
19090
  msgstr ""
19091
 
19092
- #: includes/api/v1/class-wc-rest-customers-controller.php:697
19093
- msgid "The date of the customer last order, as GMT."
 
 
19094
  msgstr ""
19095
 
19096
- #: includes/api/v1/class-wc-rest-customers-controller.php:743
19097
- #: includes/api/v1/class-wc-rest-customers-controller.php:806
19098
- #: includes/api/v1/class-wc-rest-orders-controller.php:1048
19099
- #: includes/api/v1/class-wc-rest-orders-controller.php:1111
19100
- msgid "Address line 1."
19101
  msgstr ""
19102
 
19103
- #: includes/api/v1/class-wc-rest-customers-controller.php:748
19104
- #: includes/api/v1/class-wc-rest-customers-controller.php:811
19105
- #: includes/api/v1/class-wc-rest-orders-controller.php:1053
19106
- #: includes/api/v1/class-wc-rest-orders-controller.php:1116
19107
- msgid "Address line 2."
19108
  msgstr ""
19109
 
19110
- #: includes/api/v1/class-wc-rest-customers-controller.php:874
19111
- msgid "Limit result set to specific IDs."
 
 
19112
  msgstr ""
19113
 
19114
- #: includes/api/v1/class-wc-rest-customers-controller.php:910
19115
- msgid "Limit result set to resources with a specific email."
 
 
19116
  msgstr ""
19117
 
19118
- #: includes/api/v1/class-wc-rest-customers-controller.php:916
19119
- msgid "Limit result set to resources with a specific role."
 
 
19120
  msgstr ""
19121
 
19122
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:295
19123
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:454
19124
- msgid "Webhooks do not support trashing."
19125
  msgstr ""
19126
 
19127
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:413
19128
- msgid "Order note."
19129
  msgstr ""
19130
 
19131
- #: includes/api/v1/class-wc-rest-order-notes-controller.php:418
19132
- msgid ""
19133
- "Shows/define if the note is only for reference or for the customer (the "
19134
- "user will be notified)."
19135
  msgstr ""
19136
 
19137
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:287
19138
- msgid "Order is invalid"
19139
  msgstr ""
19140
 
19141
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:475
19142
- #: includes/api/v1/class-wc-rest-orders-controller.php:1306
19143
- msgid "Line item meta data."
19144
  msgstr ""
19145
 
19146
- #: includes/api/v1/class-wc-rest-order-refunds-controller.php:489
19147
- #: includes/api/v1/class-wc-rest-orders-controller.php:1320
19148
- msgid "Meta label."
19149
  msgstr ""
19150
 
19151
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:46
19152
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:78
19153
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:114
19154
- msgid "Unique identifier for the attribute of the terms."
19155
  msgstr ""
19156
 
19157
- #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:201
19158
- msgid "Term name."
19159
  msgstr ""
19160
 
19161
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:141
19162
- msgid "Sorry, you cannot create new resource."
19163
  msgstr ""
19164
 
19165
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:478
19166
- msgid "Type of attribute."
19167
  msgstr ""
19168
 
19169
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:485
19170
- msgid "Default sort order."
19171
  msgstr ""
19172
 
19173
- #: includes/api/v1/class-wc-rest-product-attributes-controller.php:492
19174
- msgid "Enable/Disable attribute archives."
19175
  msgstr ""
19176
 
19177
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:68
19178
- msgid "Review content."
19179
  msgstr ""
19180
 
19181
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:73
19182
- msgid "Name of the reviewer."
 
19183
  msgstr ""
19184
 
19185
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:78
19186
- msgid "Email of the reviewer."
 
 
19187
  msgstr ""
19188
 
19189
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:193
19190
- msgid "Sorry, you cannot delete this resource."
19191
  msgstr ""
19192
 
19193
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:209
19194
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:234
19195
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:260
19196
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:315
19197
- msgid "Invalid product ID."
19198
  msgstr ""
19199
 
19200
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:277
19201
- msgid "Creating product review failed."
19202
  msgstr ""
19203
 
19204
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:328
19205
- msgid "Updating product review failed."
19206
  msgstr ""
19207
 
19208
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:366
19209
- msgid "Invalid product review ID."
19210
  msgstr ""
19211
 
19212
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:386
19213
- msgid "The product review does not support trashing."
 
 
19214
  msgstr ""
19215
 
19216
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:390
19217
- msgid "The comment has already been trashed."
 
 
19218
  msgstr ""
19219
 
19220
- #: includes/api/v1/class-wc-rest-product-reviews-controller.php:397
19221
- msgid "The product review cannot be deleted."
 
 
19222
  msgstr ""
19223
 
19224
- #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:100
19225
- msgid "Shipping class name."
 
 
19226
  msgstr ""
19227
 
19228
- #: includes/api/v1/class-wc-rest-products-controller.php:1639
19229
- msgid "Invalid post ID."
 
 
19230
  msgstr ""
19231
 
19232
- #: includes/api/v1/class-wc-rest-products-controller.php:1827
19233
- #: includes/api/v1/class-wc-rest-products-controller.php:2312
19234
- msgid "Start date of sale price."
19235
  msgstr ""
19236
 
19237
- #: includes/api/v1/class-wc-rest-products-controller.php:1832
19238
- #: includes/api/v1/class-wc-rest-products-controller.php:2317
19239
- msgid "End date of sale price."
19240
  msgstr ""
19241
 
19242
- #: includes/api/v1/class-wc-rest-products-controller.php:1911
19243
- msgid "Download type, this controls the schema on the front-end."
19244
  msgstr ""
19245
 
19246
- #: includes/api/v1/class-wc-rest-products-controller.php:2064
19247
- msgid "List of upsell products IDs."
19248
  msgstr ""
19249
 
19250
- #: includes/api/v1/class-wc-rest-products-controller.php:2259
19251
- msgid "List of variations."
19252
  msgstr ""
19253
 
19254
- #: includes/api/v1/class-wc-rest-products-controller.php:2266
19255
- msgid "Variation ID."
19256
  msgstr ""
19257
 
19258
- #: includes/api/v1/class-wc-rest-products-controller.php:2334
19259
- msgid "If the variation is visible."
19260
  msgstr ""
19261
 
19262
- #: includes/api/v1/class-wc-rest-products-controller.php:2618
19263
- msgid "Limit result set to products with a specific attribute."
19264
  msgstr ""
19265
 
19266
- #: includes/api/v1/class-wc-rest-products-controller.php:2630
19267
- msgid "Limit result set to products with a specific SKU."
19268
  msgstr ""
19269
 
19270
  #: includes/api/v1/class-wc-rest-report-sales-controller.php:290
@@ -19315,6560 +16842,5947 @@ msgstr ""
19315
  msgid "Report period."
19316
  msgstr ""
19317
 
19318
- #: includes/api/v1/class-wc-rest-report-sales-controller.php:381
19319
  #. translators: %s: date format
19320
- msgid ""
19321
- "Return sales for a specific start date, the date need to be in the %s "
19322
- "format."
19323
  msgstr ""
19324
 
19325
- #: includes/api/v1/class-wc-rest-report-sales-controller.php:389
19326
  #. translators: %s: date format
 
 
19327
  msgid "Return sales for a specific end date, the date need to be in the %s format."
19328
  msgstr ""
19329
 
19330
- #: includes/api/v1/class-wc-rest-report-top-sellers-controller.php:164
19331
- msgid "Total number of purchases."
19332
  msgstr ""
19333
 
19334
- #: includes/api/v1/class-wc-rest-reports-controller.php:79
19335
- msgid "List of sales reports."
19336
  msgstr ""
19337
 
19338
- #: includes/api/v1/class-wc-rest-reports-controller.php:83
19339
- msgid "List of top sellers products."
19340
  msgstr ""
19341
 
19342
- #: includes/api/v1/class-wc-rest-reports-controller.php:147
19343
- msgid "An alphanumeric identifier for the resource."
19344
  msgstr ""
19345
 
19346
- #: includes/api/v1/class-wc-rest-reports-controller.php:153
19347
- msgid "A human-readable description of the resource."
19348
  msgstr ""
19349
 
19350
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:62
19351
- msgid "Unique slug for the resource."
19352
  msgstr ""
19353
 
19354
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:225
19355
- #: includes/api/v1/class-wc-rest-taxes-controller.php:457
19356
- msgid "Taxes do not support trashing."
19357
  msgstr ""
19358
 
19359
- #: includes/api/v1/class-wc-rest-tax-classes-controller.php:340
19360
- msgid "Tax class name."
19361
  msgstr ""
19362
 
19363
- #: includes/api/v1/class-wc-rest-taxes-controller.php:582
19364
- msgid "Country ISO 3166 code."
19365
  msgstr ""
19366
 
19367
- #: includes/api/v1/class-wc-rest-taxes-controller.php:587
19368
- msgid "State code."
19369
  msgstr ""
19370
 
19371
- #: includes/api/v1/class-wc-rest-taxes-controller.php:592
19372
- msgid "Postcode / ZIP."
19373
  msgstr ""
19374
 
19375
- #: includes/api/v1/class-wc-rest-taxes-controller.php:602
19376
- msgid "Tax rate."
19377
  msgstr ""
19378
 
19379
- #: includes/api/v1/class-wc-rest-taxes-controller.php:607
19380
- msgid "Tax rate name."
19381
  msgstr ""
19382
 
19383
- #: includes/api/v1/class-wc-rest-taxes-controller.php:612
19384
- msgid "Tax priority."
19385
  msgstr ""
19386
 
19387
- #: includes/api/v1/class-wc-rest-taxes-controller.php:618
19388
- msgid "Whether or not this is a compound rate."
19389
  msgstr ""
19390
 
19391
- #: includes/api/v1/class-wc-rest-taxes-controller.php:624
19392
- msgid "Whether or not this tax rate also gets applied to shipping."
19393
  msgstr ""
19394
 
19395
- #: includes/api/v1/class-wc-rest-taxes-controller.php:630
19396
- msgid "Indicates the order that will appear in queries."
19397
  msgstr ""
19398
 
19399
- #: includes/api/v1/class-wc-rest-taxes-controller.php:700
19400
- msgid "Sort by tax class."
19401
  msgstr ""
19402
 
19403
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:47
19404
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:63
19405
- msgid "Unique identifier for the webhook."
19406
  msgstr ""
19407
 
19408
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:122
19409
- #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:147
19410
- msgid "Invalid webhook ID."
19411
  msgstr ""
19412
 
19413
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:68
19414
- msgid "Webhook delivery URL."
19415
  msgstr ""
19416
 
19417
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:331
19418
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:400
19419
- msgid "Webhook delivery URL must be a valid URL starting with http:// or https://."
19420
  msgstr ""
19421
 
19422
- #: includes/api/v1/class-wc-rest-webhooks-controller.php:757
19423
- msgid "Limit result set to webhooks assigned a specific status."
19424
  msgstr ""
19425
 
19426
- #: includes/class-wc-ajax.php:213
19427
- msgid "Sorry there was a problem removing this coupon."
19428
  msgstr ""
19429
 
19430
- #: includes/class-wc-ajax.php:216
19431
- msgid "Coupon has been removed."
19432
  msgstr ""
19433
 
19434
- #: includes/class-wc-ajax.php:262
19435
- msgid "Sorry, your session has expired."
19436
  msgstr ""
19437
 
19438
- #: includes/class-wc-ajax.php:262 templates/cart/cart-empty.php:33
19439
- msgid "Return to shop"
19440
  msgstr ""
19441
 
19442
- #: includes/class-wc-ajax.php:829 includes/class-wc-ajax.php:895
19443
- msgid "Invalid order"
19444
  msgstr ""
19445
 
19446
- #: includes/class-wc-ajax.php:910
19447
- msgid "%s fee"
19448
  msgstr ""
19449
 
19450
- #: includes/class-wc-ajax.php:1175 includes/wc-stock-functions.php:116
19451
- #. translators: 1: item name 2: old stock quantity 3: new stock quantity
19452
- msgid "%1$s stock reduced from %2$s to %3$s."
19453
  msgstr ""
19454
 
19455
- #: includes/class-wc-ajax.php:1184
19456
- msgid ""
19457
- "No products had their stock reduced - they may not have stock management "
19458
- "enabled."
19459
  msgstr ""
19460
 
19461
- #: includes/class-wc-ajax.php:1221
19462
- msgid "%1$s stock increased from %2$s to %3$s."
19463
  msgstr ""
19464
 
19465
- #: includes/class-wc-ajax.php:1229
19466
- msgid ""
19467
- "No products had their stock increased - they may not have stock management "
19468
- "enabled."
19469
  msgstr ""
19470
 
19471
- #: includes/class-wc-ajax.php:1688
19472
- msgid "Invalid refund amount"
19473
  msgstr ""
19474
 
19475
- #: includes/class-wc-ajax.php:1692
19476
- msgid "Error processing refund. Please try again."
19477
  msgstr ""
19478
 
19479
- #: includes/class-wc-ajax.php:1792
19480
- msgid "Description is missing."
19481
  msgstr ""
19482
 
19483
- #: includes/class-wc-ajax.php:1795
19484
- msgid "User is missing."
19485
  msgstr ""
19486
 
19487
- #: includes/class-wc-ajax.php:1798
19488
- msgid "Permissions is missing."
19489
  msgstr ""
19490
 
19491
- #: includes/class-wc-ajax.php:1827
19492
- msgid "API Key updated successfully."
 
 
 
 
19493
  msgstr ""
19494
 
19495
- #: includes/class-wc-ajax.php:1857
19496
- msgid ""
19497
- "API Key generated successfully. Make sure to copy your new keys now as the "
19498
- "secret key will be hidden once you leave this page."
19499
  msgstr ""
19500
 
19501
- #: includes/class-wc-ajax.php:1941
19502
- msgid "Dismiss this notice."
19503
  msgstr ""
19504
 
19505
- #: includes/class-wc-auth.php:91
19506
- msgid "View coupons"
19507
  msgstr ""
19508
 
19509
- #: includes/class-wc-auth.php:92
19510
- msgid "View customers"
19511
  msgstr ""
19512
 
19513
- #: includes/class-wc-auth.php:93
19514
- msgid "View orders and sales reports"
19515
  msgstr ""
19516
 
19517
- #: includes/class-wc-auth.php:97 includes/class-wc-auth.php:104
19518
- msgid "Create webhooks"
19519
  msgstr ""
19520
 
19521
- #: includes/class-wc-auth.php:98
19522
- msgid "Create coupons"
19523
  msgstr ""
19524
 
19525
- #: includes/class-wc-auth.php:99
19526
- msgid "Create customers"
19527
  msgstr ""
19528
 
19529
- #: includes/class-wc-auth.php:100
19530
- msgid "Create orders"
19531
  msgstr ""
19532
 
19533
- #: includes/class-wc-auth.php:101
19534
- msgid "Create products"
19535
  msgstr ""
19536
 
19537
- #: includes/class-wc-auth.php:105
19538
- msgid "View and manage coupons"
19539
  msgstr ""
19540
 
19541
- #: includes/class-wc-auth.php:106
19542
- msgid "View and manage customers"
19543
  msgstr ""
19544
 
19545
- #: includes/class-wc-auth.php:107
19546
- msgid "View and manage orders and sales reports"
19547
  msgstr ""
19548
 
19549
- #: includes/class-wc-auth.php:108
19550
- msgid "View and manage products"
19551
  msgstr ""
19552
 
19553
- #: includes/class-wc-auth.php:179
19554
- #. translators: %s: scope
19555
- msgid "Invalid scope %s"
19556
  msgstr ""
19557
 
19558
- #: includes/class-wc-auth.php:187
19559
- #. translators: %s: url
19560
- msgid "The %s is not a valid URL"
19561
  msgstr ""
19562
 
19563
- #: includes/class-wc-auth.php:194
19564
- msgid "The callback_url needs to be over SSL"
19565
  msgstr ""
19566
 
19567
- #: includes/class-wc-auth.php:214
19568
- #. translators: 1: app name 2: scope 3: date 4: time
19569
- msgid "%1$s - API %2$s (created on %3$s at %4$s)."
19570
  msgstr ""
19571
 
19572
- #: includes/class-wc-auth.php:280
19573
- msgid ""
19574
- "An error occurred in the request and at the time were unable to send the "
19575
- "consumer data"
19576
  msgstr ""
19577
 
19578
- #: includes/class-wc-auth.php:322
19579
- msgid "API disabled!"
19580
  msgstr ""
19581
 
19582
- #: includes/class-wc-auth.php:379
19583
- msgid "Invalid nonce verification"
19584
  msgstr ""
19585
 
19586
- #: includes/class-wc-auth.php:399
19587
- msgid "You do not have permission to access this page"
19588
  msgstr ""
19589
 
19590
- #: includes/class-wc-auth.php:405
19591
- msgid "Access denied"
19592
  msgstr ""
19593
 
19594
- #: includes/class-wc-breadcrumb.php:117
19595
- msgid "Error 404"
19596
  msgstr ""
19597
 
19598
- #: includes/class-wc-breadcrumb.php:224
19599
- #. translators: %s: product tag
19600
- msgid "Products tagged &ldquo;%s&rdquo;"
19601
  msgstr ""
19602
 
19603
- #: includes/class-wc-breadcrumb.php:276
19604
- #. translators: %s: tag name
19605
- msgid "Posts tagged &ldquo;%s&rdquo;"
19606
  msgstr ""
19607
 
19608
- #: includes/class-wc-breadcrumb.php:319
19609
- #. translators: %s: author name
19610
- msgid "Author: %s"
19611
  msgstr ""
19612
 
19613
- #: includes/class-wc-breadcrumb.php:359
19614
- #. translators: %s: search term
19615
- msgid "Search results for &ldquo;%s&rdquo;"
19616
  msgstr ""
19617
 
19618
- #: includes/class-wc-breadcrumb.php:369
19619
- #: includes/class-wc-template-loader.php:410
19620
- #. translators: %d: page number
19621
- #. translators: %d: Page number.
19622
- msgid "Page %d"
19623
  msgstr ""
19624
 
19625
- #: includes/class-wc-cache-helper.php:206
19626
- #. translators: 1: key 2: URL
19627
- msgid ""
19628
- "In order for <strong>database caching</strong> to work with WooCommerce you "
19629
- "must add %1$s to the \"Ignored Query Strings\" option in <a "
19630
- "href=\"%2$s\">W3 Total Cache settings</a>."
19631
  msgstr ""
19632
 
19633
- #: includes/class-wc-cart-fees.php:90
19634
- msgid "Fee has already been added."
19635
  msgstr ""
19636
 
19637
- #: includes/class-wc-cart-session.php:111
19638
- #. translators: %s: product name
19639
- msgid ""
19640
- "%s has been removed from your cart because it can no longer be purchased. "
19641
- "Please contact us if you need assistance."
19642
  msgstr ""
19643
 
19644
- #: includes/class-wc-cart-session.php:117
19645
- #. translators: %1$s: product name. %2$s product permalink
19646
- msgid ""
19647
- "%1$s has been removed from your cart because it has since been modified. "
19648
- "You can add it back to your cart <a href=\"%2$s\">here</a>."
19649
  msgstr ""
19650
 
19651
- #: includes/class-wc-cart.php:604
19652
- msgid "Get cart should not be called before the wp_loaded action."
19653
  msgstr ""
19654
 
19655
- #: includes/class-wc-cart.php:747
19656
- msgid "An item which is no longer available was removed from your cart."
19657
  msgstr ""
19658
 
19659
- #: includes/class-wc-cart.php:773
19660
- #. translators: %s: product name
19661
- msgid ""
19662
- "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We "
19663
- "apologize for any inconvenience caused."
19664
  msgstr ""
19665
 
19666
- #: includes/class-wc-cart.php:786
19667
- #. translators: 1: product name 2: quantity in stock
19668
- msgid ""
19669
- "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order (%2$s "
19670
- "in stock). Please edit your cart and try again. We apologize for any "
19671
- "inconvenience caused."
19672
  msgstr ""
19673
 
19674
- #: includes/class-wc-cart.php:816
19675
- #. translators: 1: product name 2: minutes
19676
- msgid ""
19677
- "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order right "
19678
- "now. Please try again in %2$d minutes or edit your cart and try again. We "
19679
- "apologize for any inconvenience caused."
19680
  msgstr ""
19681
 
19682
- #: includes/class-wc-cart.php:1068 includes/class-wc-frontend-scripts.php:546
19683
- #: includes/wc-cart-functions.php:123 includes/wc-template-functions.php:1963
19684
- #. translators: %s: product name
19685
- msgid "View cart"
19686
  msgstr ""
19687
 
19688
- #: includes/class-wc-cart.php:1068
19689
- msgid "You cannot add another \"%s\" to your cart."
19690
  msgstr ""
19691
 
19692
- #: includes/class-wc-cart.php:1073
19693
- msgid "Sorry, this product cannot be purchased."
19694
  msgstr ""
19695
 
19696
- #: includes/class-wc-cart.php:1079
19697
- #. translators: %s: product name
19698
- msgid ""
19699
- "You cannot add &quot;%s&quot; to the cart because the product is out of "
19700
- "stock."
19701
  msgstr ""
19702
 
19703
- #: includes/class-wc-cart.php:1084
19704
- #. translators: 1: product name 2: quantity in stock
19705
- msgid ""
19706
- "You cannot add that amount of &quot;%1$s&quot; to the cart because there is "
19707
- "not enough stock (%2$s remaining)."
19708
  msgstr ""
19709
 
19710
- #: includes/class-wc-cart.php:1096
19711
- msgid "View Cart"
19712
  msgstr ""
19713
 
19714
- #: includes/class-wc-cart.php:1098
19715
- #. translators: 1: quantity in stock 2: current quantity
19716
- msgid ""
19717
- "You cannot add that amount to the cart &mdash; we have %1$s in stock and "
19718
- "you already have %2$s in your cart."
19719
  msgstr ""
19720
 
19721
- #: includes/class-wc-checkout.php:160 includes/class-wc-emails.php:61
19722
- #: includes/class-wc-payment-gateways.php:54 includes/class-wc-shipping.php:77
19723
- #: includes/class-woocommerce.php:126
19724
- msgid "Cloning is forbidden."
19725
  msgstr ""
19726
 
19727
- #: includes/class-wc-checkout.php:167 includes/class-wc-emails.php:70
19728
- #: includes/class-wc-payment-gateways.php:63 includes/class-wc-shipping.php:86
19729
- #: includes/class-woocommerce.php:135
19730
- msgid "Unserializing instances of this class is forbidden."
19731
  msgstr ""
19732
 
19733
- #: includes/class-wc-checkout.php:215
19734
- msgid "Order notes"
19735
  msgstr ""
19736
 
19737
- #: includes/class-wc-checkout.php:216
19738
- msgid "Notes about your order, e.g. special notes for delivery."
19739
  msgstr ""
19740
 
19741
- #: includes/class-wc-checkout.php:227
19742
- msgid "Account username"
19743
  msgstr ""
19744
 
19745
- #: includes/class-wc-checkout.php:236
19746
- msgid "Create account password"
19747
  msgstr ""
19748
 
19749
- #: includes/class-wc-checkout.php:238 templates/auth/form-login.php:44
19750
- #: templates/global/form-login.php:39 templates/myaccount/form-login.php:47
19751
- #: templates/myaccount/form-login.php:97
19752
- msgid "Password"
19753
  msgstr ""
19754
 
19755
- #: includes/class-wc-checkout.php:663
19756
- #. translators: %s: field name
19757
- msgid "Shipping %s"
19758
  msgstr ""
19759
 
19760
- #: includes/class-wc-checkout.php:667
19761
- #. translators: %s: field name
19762
- msgid "Billing %s"
19763
  msgstr ""
19764
 
19765
- #: includes/class-wc-checkout.php:677
19766
- #. translators: %s: field name
19767
- msgid "%s is not a valid postcode / ZIP."
19768
  msgstr ""
19769
 
19770
- #: includes/class-wc-checkout.php:686 includes/class-wc-form-handler.php:139
19771
- #. translators: %s: phone number
19772
- msgid "%s is not a valid phone number."
19773
  msgstr ""
19774
 
19775
- #: includes/class-wc-checkout.php:695 includes/class-wc-form-handler.php:146
19776
- #. translators: %s: email address
19777
- msgid "%s is not a valid email address."
19778
  msgstr ""
19779
 
19780
- #: includes/class-wc-checkout.php:715
19781
- #. translators: 1: state field 2: valid states
19782
- msgid "%1$s is not valid. Please enter one of the following: %2$s"
19783
  msgstr ""
19784
 
19785
- #: includes/class-wc-checkout.php:722 includes/class-wc-form-handler.php:117
19786
- #: includes/class-wc-form-handler.php:248
19787
- #. translators: %s: field name
19788
- msgid "%s is a required field."
19789
  msgstr ""
19790
 
19791
- #: includes/class-wc-checkout.php:740 includes/class-wc-form-handler.php:379
19792
- msgid "Please read and accept the terms and conditions to proceed with your order."
 
19793
  msgstr ""
19794
 
19795
- #: includes/class-wc-checkout.php:747
19796
- msgid "Please enter an address to continue."
19797
  msgstr ""
19798
 
19799
- #: includes/class-wc-checkout.php:750
19800
- #. translators: %s: shipping location
19801
- msgid ""
19802
- "Unfortunately <strong>we do not ship %s</strong>. Please enter an "
19803
- "alternative shipping address."
19804
  msgstr ""
19805
 
19806
- #: includes/class-wc-checkout.php:756
19807
- msgid ""
19808
- "No shipping method has been selected. Please double check your address, or "
19809
- "contact us if you need any help."
19810
  msgstr ""
19811
 
19812
- #: includes/class-wc-checkout.php:766 includes/class-wc-form-handler.php:389
19813
- #: includes/class-wc-form-handler.php:494
19814
- #: includes/class-wc-form-handler.php:519
19815
- msgid "Invalid payment method."
19816
  msgstr ""
19817
 
19818
- #: includes/class-wc-checkout.php:1000
19819
- msgid "We were unable to process your order, please try again."
19820
  msgstr ""
19821
 
19822
- #: includes/class-wc-checkout.php:1010
19823
- #. translators: %s: shop cart url
19824
- msgid ""
19825
- "Sorry, your session has expired. <a href=\"%s\" "
19826
- "class=\"wc-backward\">Return to shop</a>"
19827
  msgstr ""
19828
 
19829
- #: includes/class-wc-checkout.php:1038
19830
- msgid "Unable to create order."
19831
  msgstr ""
19832
 
19833
- #: includes/class-wc-comments.php:147
19834
- msgid "Please rate the product."
19835
  msgstr ""
19836
 
19837
- #: includes/class-wc-countries.php:378
19838
- msgid "to the"
19839
  msgstr ""
19840
 
19841
- #: includes/class-wc-countries.php:378
19842
- msgid "to"
19843
  msgstr ""
19844
 
19845
- #: includes/class-wc-countries.php:392
19846
- msgid "the"
19847
  msgstr ""
19848
 
19849
- #: includes/class-wc-countries.php:403
19850
- msgid "VAT"
19851
  msgstr ""
19852
 
19853
- #: includes/class-wc-countries.php:414
19854
- msgid "(incl. VAT)"
19855
  msgstr ""
19856
 
19857
- #: includes/class-wc-countries.php:414
19858
- msgid "(incl. tax)"
19859
  msgstr ""
19860
 
19861
- #: includes/class-wc-countries.php:425
19862
- msgid "(ex. VAT)"
19863
  msgstr ""
19864
 
19865
- #: includes/class-wc-countries.php:425
19866
- msgid "(ex. tax)"
19867
  msgstr ""
19868
 
19869
- #: includes/class-wc-countries.php:632
19870
- #: includes/customizer/class-wc-shop-customizer.php:677
19871
- msgid "Company name"
19872
  msgstr ""
19873
 
19874
- #: includes/class-wc-countries.php:647
19875
- msgid "Street address"
 
19876
  msgstr ""
19877
 
19878
- #: includes/class-wc-countries.php:649
19879
- #. translators: use local order of street name and house number.
19880
- msgid "House number and street name"
19881
  msgstr ""
19882
 
19883
- #: includes/class-wc-countries.php:656
19884
- msgid "Apartment, suite, unit etc. (optional)"
 
19885
  msgstr ""
19886
 
19887
- #: includes/class-wc-countries.php:664
19888
- msgid "Town / City"
19889
  msgstr ""
19890
 
19891
- #: includes/class-wc-countries.php:757
19892
- msgid "Suburb"
 
19893
  msgstr ""
19894
 
19895
- #: includes/class-wc-countries.php:760 includes/class-wc-countries.php:998
19896
- #: includes/class-wc-countries.php:1125
19897
- msgid "Postcode"
19898
  msgstr ""
19899
 
19900
- #: includes/class-wc-countries.php:779
19901
- msgid "District"
19902
  msgstr ""
19903
 
19904
- #: includes/class-wc-countries.php:788 includes/class-wc-countries.php:810
19905
- #: includes/class-wc-countries.php:835 includes/class-wc-countries.php:916
19906
- #: includes/class-wc-countries.php:955 includes/class-wc-countries.php:993
19907
- #: includes/class-wc-countries.php:1077 includes/class-wc-countries.php:1112
19908
- #: includes/class-wc-countries.php:1159
19909
- msgid "Province"
19910
  msgstr ""
19911
 
19912
- #: includes/class-wc-countries.php:818
19913
- msgid "Canton"
19914
  msgstr ""
19915
 
19916
- #: includes/class-wc-countries.php:830 includes/class-wc-countries.php:906
19917
- #: includes/class-wc-countries.php:1002
19918
- msgid "Region"
19919
  msgstr ""
19920
 
19921
- #: includes/class-wc-countries.php:903
19922
- msgid "Town / District"
19923
  msgstr ""
19924
 
19925
- #: includes/class-wc-countries.php:911 includes/class-wc-countries.php:925
19926
- #: includes/class-wc-countries.php:1041 includes/class-wc-countries.php:1128
19927
- msgid "County"
19928
  msgstr ""
19929
 
19930
- #: includes/class-wc-countries.php:922
19931
- msgid "Eircode"
19932
  msgstr ""
19933
 
19934
- #: includes/class-wc-countries.php:960
19935
- msgid "Prefecture"
19936
  msgstr ""
19937
 
19938
- #: includes/class-wc-countries.php:1015
19939
- msgid "State / Zone"
19940
  msgstr ""
19941
 
19942
- #: includes/class-wc-countries.php:1085
19943
- msgid "Municipality"
19944
  msgstr ""
19945
 
19946
- #: includes/class-wc-countries.php:1096
19947
- msgid "Municipality / District"
19948
  msgstr ""
19949
 
19950
- #: includes/class-wc-countries.php:1117
19951
- msgid "ZIP"
19952
  msgstr ""
19953
 
19954
- #: includes/class-wc-coupon.php:478
19955
- msgid "Invalid discount type"
19956
  msgstr ""
19957
 
19958
- #: includes/class-wc-coupon.php:497 includes/class-wc-coupon.php:501
19959
- msgid "Invalid discount amount"
19960
  msgstr ""
19961
 
19962
- #: includes/class-wc-coupon.php:677
19963
- msgid "Invalid email address restriction"
19964
  msgstr ""
19965
 
19966
- #: includes/class-wc-coupon.php:913
19967
- msgid "Coupon code applied successfully."
19968
  msgstr ""
19969
 
19970
- #: includes/class-wc-coupon.php:916
19971
- msgid "Coupon code removed successfully."
19972
  msgstr ""
19973
 
19974
- #: includes/class-wc-coupon.php:934 includes/class-wc-discounts.php:937
19975
- msgid "Coupon is not valid."
19976
  msgstr ""
19977
 
19978
- #: includes/class-wc-coupon.php:938 includes/class-wc-discounts.php:570
19979
- #. translators: %s: coupon code
19980
- msgid "Coupon \"%s\" does not exist!"
19981
  msgstr ""
19982
 
19983
- #: includes/class-wc-coupon.php:942
19984
- #. translators: %s: coupon code
19985
- msgid ""
19986
- "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from
1
  # Copyright (C) 2018 Automattic
2
  # This file is distributed under the same license as the WooCommerce package.
3
+ #, fuzzy
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: WooCommerce 3.4.1\n"
7
  "Report-Msgid-Bugs-To: https://github.com/woocommerce/woocommerce/issues\n"
8
+ "POT-Creation-Date: 2018-06-05 13:30+0000\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
15
+ "X-Generator: Loco https://localise.biz/\n"
16
+ "Language: \n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;"
18
 
19
+ #: templates/product-searchform.php:25
20
+ msgid "Search for:"
21
  msgstr ""
22
 
23
+ #: templates/product-searchform.php:26
24
+ msgid "Search products&hellip;"
25
  msgstr ""
26
 
27
+ #: templates/product-searchform.php:27
28
+ msgctxt "submit button"
29
+ msgid "Search"
30
  msgstr ""
31
 
32
+ #. translators: 1: reviews count 2: product name
33
+ #: templates/single-product-reviews.php:34
34
+ #, php-format
35
+ msgid "%1$s review for %2$s"
36
+ msgid_plural "%1$s reviews for %2$s"
37
+ msgstr[0] ""
38
+ msgstr[1] ""
39
 
40
+ #: templates/single-product-reviews.php:36 includes/admin/class-wc-admin-meta-boxes.php:174 includes/admin/settings/class-wc-settings-products.php:403
41
+ msgid "Reviews"
42
  msgstr ""
43
 
44
+ #: templates/single-product-reviews.php:58
45
+ msgid "There are no reviews yet."
46
  msgstr ""
47
 
48
+ #: templates/single-product-reviews.php:71
49
+ msgid "Add a review"
50
  msgstr ""
51
 
52
+ #: templates/single-product-reviews.php:71
53
+ #, php-format
54
+ msgid "Be the first to review &ldquo;%s&rdquo;"
55
  msgstr ""
56
 
57
+ #: templates/single-product-reviews.php:72
58
+ #, php-format
59
+ msgid "Leave a Reply to %s"
60
  msgstr ""
61
 
62
+ #: templates/single-product-reviews.php:77 includes/export/class-wc-product-csv-exporter.php:85 includes/widgets/class-wc-widget-product-categories.php:52 includes/admin/class-wc-admin-webhooks-table-list.php:48 includes/admin/class-wc-admin-attributes.php:187 includes/admin/class-wc-admin-attributes.php:254 includes/admin/class-wc-admin-attributes.php:289 includes/admin/class-wc-admin-attributes.php:317 includes/admin/class-wc-admin-attributes.php:387 includes/admin/class-wc-admin-attributes.php:440 includes/admin/class-wc-admin-assets.php:289 includes/admin/views/html-admin-page-status-report.php:732 includes/admin/list-tables/class-wc-admin-list-table-products.php:107 includes/admin/importers/class-wc-product-csv-importer-controller.php:465 includes/admin/importers/class-wc-product-csv-importer-controller.php:623 includes/admin/settings/views/html-webhooks-edit.php:22 includes/admin/meta-boxes/views/html-product-attribute.php:17
63
+ #: includes/admin/meta-boxes/views/html-variation-admin.php:355 includes/admin/meta-boxes/views/html-product-data-general.php:74
64
+ msgid "Name"
65
  msgstr ""
66
 
67
+ #: templates/single-product-reviews.php:79 includes/admin/settings/class-wc-settings-emails.php:263 includes/admin/list-tables/class-wc-admin-list-table-orders.php:355 includes/admin/reports/class-wc-report-customer-list.php:213
68
+ msgid "Email"
69
  msgstr ""
70
 
71
+ #: templates/single-product-reviews.php:82
72
+ msgid "Submit"
73
  msgstr ""
74
 
75
+ #: templates/single-product-reviews.php:88
76
+ #, php-format
77
+ msgid "You must be <a href=\"%s\">logged in</a> to post a review."
78
  msgstr ""
79
 
80
+ #: templates/single-product-reviews.php:92
81
+ msgid "Your rating"
82
  msgstr ""
83
 
84
+ #: templates/single-product-reviews.php:93
85
+ msgid "Rate&hellip;"
86
  msgstr ""
87
 
88
+ #: templates/single-product-reviews.php:94
89
+ msgid "Perfect"
90
  msgstr ""
91
 
92
+ #: templates/single-product-reviews.php:95
93
+ msgid "Good"
94
  msgstr ""
95
 
96
+ #: templates/single-product-reviews.php:96
97
+ msgid "Average"
98
  msgstr ""
99
 
100
+ #: templates/single-product-reviews.php:97
101
+ msgid "Not that bad"
102
  msgstr ""
103
 
104
+ #: templates/single-product-reviews.php:98
105
+ msgid "Very poor"
106
  msgstr ""
107
 
108
+ #: templates/single-product-reviews.php:102
109
+ msgid "Your review"
110
  msgstr ""
111
 
112
+ #: templates/single-product-reviews.php:111
113
+ msgid "Only logged in customers who have purchased this product may leave a review."
114
  msgstr ""
115
 
116
+ #. translators: %s: note author
117
+ #. translators: %s: plugin author
118
+ #. translators: %s: note author
119
+ #: templates/content-widget-reviews.php:31 includes/class-wc-ajax.php:1352 includes/admin/views/html-admin-page-status-report.php:590 includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:54
120
+ #, php-format
121
+ msgid "by %s"
122
  msgstr ""
123
 
124
+ #. translators: %s: product name
125
+ #: includes/class-wc-cart-session.php:111
126
+ #, php-format
127
+ msgid "%s has been removed from your cart because it can no longer be purchased. Please contact us if you need assistance."
128
  msgstr ""
129
 
130
+ #. translators: %1$s: product name. %2$s product permalink
131
+ #: includes/class-wc-cart-session.php:117
132
+ #, php-format
133
+ msgid "%1$s has been removed from your cart because it has since been modified. You can add it back to your cart <a href=\"%2$s\">here</a>."
134
  msgstr ""
135
 
136
+ #: includes/class-wc-order-item-fee.php:131 includes/class-wc-order-item-product.php:60
137
+ msgid "Invalid tax class"
138
  msgstr ""
139
 
140
+ #: includes/class-wc-order-item-fee.php:211 includes/class-wc-cart-fees.php:80 includes/admin/meta-boxes/views/html-order-fee.php:18
141
+ msgid "Fee"
142
  msgstr ""
143
 
144
+ #. translators: %s: Order date
145
+ #: includes/class-wc-order-refund.php:67 includes/data-stores/class-wc-order-refund-data-store-cpt.php:115
146
+ #, php-format
147
+ msgid "Refund &ndash; %s"
148
  msgstr ""
149
 
150
+ #: includes/class-wc-order-refund.php:67 includes/data-stores/abstract-wc-order-data-store-cpt.php:230 includes/data-stores/class-wc-order-refund-data-store-cpt.php:116
151
+ msgctxt "Order date parsed by strftime"
152
+ msgid "%b %d, %Y @ %I:%M %p"
153
  msgstr ""
154
 
155
+ #. translators: 1: wc_get_product 2: woocommerce_init
156
+ #: includes/wc-product-functions.php:58
157
+ #, php-format
158
+ msgid "%1$s should not be called before the %2$s action."
159
  msgstr ""
160
 
161
+ #: includes/wc-product-functions.php:241
162
+ msgctxt "slug"
163
+ msgid "uncategorized"
164
  msgstr ""
165
 
166
+ #: includes/wc-product-functions.php:297 includes/api/class-wc-rest-products-controller.php:411 includes/api/class-wc-rest-products-controller.php:412 includes/api/v1/class-wc-rest-products-controller.php:313 includes/api/v1/class-wc-rest-products-controller.php:314 includes/api/legacy/v2/class-wc-api-products.php:1615 includes/api/legacy/v2/class-wc-api-products.php:1616 includes/api/legacy/v1/class-wc-api-products.php:459 includes/api/legacy/v1/class-wc-api-products.php:460 includes/api/legacy/v3/class-wc-api-products.php:2119 includes/api/legacy/v3/class-wc-api-products.php:2120
167
+ msgid "Placeholder"
168
  msgstr ""
169
 
170
+ #: includes/wc-product-functions.php:519 includes/admin/list-tables/class-wc-admin-list-table-products.php:330
171
+ msgid "Simple product"
172
  msgstr ""
173
 
174
+ #: includes/wc-product-functions.php:520 includes/admin/list-tables/class-wc-admin-list-table-products.php:321
175
+ msgid "Grouped product"
176
  msgstr ""
177
 
178
+ #: includes/wc-product-functions.php:521 includes/admin/list-tables/class-wc-admin-list-table-products.php:324
179
+ msgid "External/Affiliate product"
180
  msgstr ""
181
 
182
+ #: includes/wc-product-functions.php:522 includes/admin/list-tables/class-wc-admin-list-table-products.php:327
183
+ msgid "Variable product"
184
  msgstr ""
185
 
186
+ #: includes/wc-product-functions.php:750
187
+ msgid "Shop and search results"
188
  msgstr ""
189
 
190
+ #: includes/wc-product-functions.php:751
191
+ msgid "Shop only"
192
  msgstr ""
193
 
194
+ #: includes/wc-product-functions.php:752
195
+ msgid "Search results only"
196
  msgstr ""
197
 
198
+ #: includes/wc-product-functions.php:753 includes/customizer/class-wc-shop-customizer.php:700 includes/admin/views/html-bulk-edit-product.php:190 includes/admin/views/html-quick-edit-product.php:147
199
+ msgid "Hidden"
200
  msgstr ""
201
 
202
+ #: includes/wc-product-functions.php:807 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:217 includes/admin/views/html-bulk-edit-product.php:95 includes/admin/views/html-quick-edit-product.php:72 includes/admin/settings/views/html-settings-tax.php:18
203
+ msgid "Standard"
204
  msgstr ""
205
 
206
+ #: includes/wc-product-functions.php:825 includes/wc-formatting-functions.php:1127 includes/admin/list-tables/class-wc-admin-list-table-products.php:263 includes/admin/reports/class-wc-report-stock.php:116
207
+ msgid "In stock"
208
  msgstr ""
209
 
210
+ #: includes/wc-product-functions.php:826 includes/abstracts/abstract-wc-product.php:1945 includes/admin/class-wc-admin-reports.php:108 includes/admin/list-tables/class-wc-admin-list-table-products.php:265 includes/admin/reports/class-wc-report-stock.php:118
211
+ msgid "Out of stock"
212
  msgstr ""
213
 
214
+ #: includes/wc-product-functions.php:827 includes/admin/list-tables/class-wc-admin-list-table-products.php:261 includes/admin/reports/class-wc-report-stock.php:114
215
+ msgid "On backorder"
216
  msgstr ""
217
 
218
+ #: includes/wc-product-functions.php:839
219
+ msgid "Do not allow"
220
  msgstr ""
221
 
222
+ #: includes/wc-product-functions.php:840
223
+ msgid "Allow, but notify customer"
224
  msgstr ""
225
 
226
+ #: includes/wc-product-functions.php:841
227
+ msgid "Allow"
228
  msgstr ""
229
 
230
+ #: includes/class-wc-product-simple.php:53 includes/abstracts/abstract-wc-product.php:1770
231
+ msgid "Add to cart"
232
  msgstr ""
233
 
234
+ #: includes/class-wc-product-simple.php:53 includes/class-wc-product-variable.php:60 includes/class-wc-embed.php:106 includes/abstracts/abstract-wc-product.php:1779
235
+ msgid "Read more"
236
  msgstr ""
237
 
238
+ #. translators: %s: Product title
239
+ #: includes/class-wc-product-simple.php:66
240
+ #, php-format
241
+ msgid "Add &ldquo;%s&rdquo; to your cart"
242
  msgstr ""
243
 
244
+ #. translators: %s: Product title
245
+ #: includes/class-wc-product-simple.php:66 includes/abstracts/abstract-wc-product.php:1790
246
+ #, php-format
247
+ msgid "Read more about &ldquo;%s&rdquo;"
248
  msgstr ""
249
 
250
+ #: includes/wc-template-functions.php:28
251
+ msgid "Checkout is not available whilst your cart is empty."
252
  msgstr ""
253
 
254
+ #. translators: %s terms and conditions page name and link
255
+ #: includes/wc-template-functions.php:740 includes/customizer/class-wc-shop-customizer.php:724
256
+ #, php-format
257
+ msgid "I have read and agree to the website %s"
258
  msgstr ""
259
 
260
+ #. translators: %s privacy policy page name and link
261
+ #: includes/wc-template-functions.php:756 includes/customizer/class-wc-shop-customizer.php:736 includes/admin/settings/class-wc-settings-accounts.php:150
262
+ #, php-format
263
+ msgid "Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our %s."
264
  msgstr ""
265
 
266
+ #. translators: %s privacy policy page name and link
267
+ #: includes/wc-template-functions.php:760 includes/admin/settings/class-wc-settings-accounts.php:140
268
+ #, php-format
269
+ msgid "Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our %s."
270
  msgstr ""
271
 
272
+ #: includes/wc-template-functions.php:848
273
+ msgid "privacy policy"
274
  msgstr ""
275
 
276
+ #: includes/wc-template-functions.php:849
277
+ msgid "terms and conditions"
278
  msgstr ""
279
 
280
+ #: includes/wc-template-functions.php:966 includes/customizer/class-wc-shop-customizer.php:311
281
+ msgid "This is a demo store for testing purposes &mdash; no orders shall be fulfilled."
282
  msgstr ""
283
 
284
+ #: includes/wc-template-functions.php:969 includes/admin/class-wc-admin-pointers.php:250 includes/admin/views/html-notice-theme-support.php:12 includes/admin/views/html-notice-secure-connection.php:12 includes/admin/views/html-notice-no-shipping-methods.php:11 includes/admin/views/html-notice-custom.php:12 includes/admin/views/html-notice-simplify-commerce.php:19 includes/admin/views/html-notice-template-check.php:13 includes/admin/views/html-notice-updated.php:12 includes/admin/views/html-notice-legacy-shipping.php:11 includes/admin/settings/class-wc-settings-general.php:331 includes/admin/settings/class-wc-settings-products.php:74
285
+ msgid "Dismiss"
286
  msgstr ""
287
 
288
+ #. translators: %s: search query
289
+ #: includes/wc-template-functions.php:989
290
+ #, php-format
291
+ msgid "Search results: &ldquo;%s&rdquo;"
292
  msgstr ""
293
 
294
+ #. translators: %s: page number
295
+ #: includes/wc-template-functions.php:993
296
+ #, php-format
297
+ msgid "&nbsp;&ndash; Page %s"
298
  msgstr ""
299
 
300
+ #: includes/wc-template-functions.php:1298
301
+ msgid "Default sorting"
302
  msgstr ""
303
 
304
+ #: includes/wc-template-functions.php:1299
305
+ msgid "Sort by popularity"
306
  msgstr ""
307
 
308
+ #: includes/wc-template-functions.php:1300
309
+ msgid "Sort by average rating"
310
  msgstr ""
311
 
312
+ #: includes/wc-template-functions.php:1301
313
+ msgid "Sort by newness"
314
  msgstr ""
315
 
316
+ #: includes/wc-template-functions.php:1302
317
+ msgid "Sort by price: low to high"
318
  msgstr ""
319
 
320
+ #: includes/wc-template-functions.php:1303
321
+ msgid "Sort by price: high to low"
322
  msgstr ""
323
 
324
+ #: includes/wc-template-functions.php:1310
325
+ msgid "Relevance"
326
  msgstr ""
327
 
328
+ #: includes/wc-template-functions.php:1651 includes/export/class-wc-product-csv-exporter.php:90 includes/admin/class-wc-admin-api-keys-table-list.php:48 templates/single-product/tabs/description.php:25 includes/gateways/cheque/class-wc-gateway-cheque.php:71 includes/gateways/bacs/class-wc-gateway-bacs.php:95 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:204 includes/gateways/cod/class-wc-gateway-cod.php:122 includes/admin/settings/class-wc-settings-payment-gateways.php:118 includes/admin/settings/class-wc-settings-shipping.php:361 includes/admin/list-tables/class-wc-admin-list-table-coupons.php:85 includes/admin/importers/class-wc-product-csv-importer-controller.php:470 includes/admin/importers/class-wc-product-csv-importer-controller.php:628 includes/gateways/paypal/includes/settings-paypal.php:25 includes/admin/settings/views/html-keys-edit.php:17 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:86
329
+ #: includes/admin/meta-boxes/views/html-variation-admin.php:341
330
+ msgid "Description"
331
  msgstr ""
332
 
333
+ #: includes/wc-template-functions.php:1660 templates/checkout/form-shipping.php:63 templates/single-product/tabs/additional-information.php:25
334
+ msgid "Additional information"
335
  msgstr ""
336
 
337
+ #. translators: %s: reviews count
338
+ #: includes/wc-template-functions.php:1670
339
+ #, php-format
340
+ msgid "Reviews (%d)"
341
  msgstr ""
342
 
343
+ #. translators: %s: product name
344
+ #: includes/wc-template-functions.php:1963 includes/class-wc-cart.php:1068 includes/wc-cart-functions.php:123 includes/class-wc-frontend-scripts.php:546
345
+ msgid "View cart"
346
  msgstr ""
347
 
348
+ #: includes/wc-template-functions.php:1973 includes/customizer/class-wc-shop-customizer.php:668
349
+ msgid "Checkout"
350
  msgstr ""
351
 
352
+ #: includes/wc-template-functions.php:2047
353
+ msgctxt "breadcrumb"
354
+ msgid "Home"
355
  msgstr ""
356
 
357
+ #: includes/wc-template-functions.php:2099
358
+ msgid "Place order"
359
  msgstr ""
360
 
361
+ #: includes/wc-template-functions.php:2468 includes/class-wc-frontend-scripts.php:521
362
+ msgid "required"
363
  msgstr ""
364
 
365
+ #: includes/wc-template-functions.php:2470 includes/class-wc-frontend-scripts.php:522
366
+ msgid "optional"
367
  msgstr ""
368
 
369
+ #: includes/wc-template-functions.php:2530 templates/cart/shipping-calculator.php:36 includes/admin/class-wc-admin-profile.php:77 includes/admin/class-wc-admin-profile.php:137 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:76 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:127
370
+ msgid "Select a country&hellip;"
371
  msgstr ""
372
 
373
+ #: includes/wc-template-functions.php:2538
374
+ msgid "Update country"
375
  msgstr ""
376
 
377
+ #: includes/wc-template-functions.php:2557 templates/cart/shipping-calculator.php:61
378
+ msgid "Select a state&hellip;"
379
  msgstr ""
380
 
381
+ #: includes/wc-template-functions.php:2605 includes/wc-template-functions.php:2767 includes/wc-template-functions.php:2783
382
+ msgid "Choose an option"
383
  msgstr ""
384
 
385
+ #. translators: 1: current item count
386
+ #. translators: %d: downloads count
387
+ #: includes/wc-template-functions.php:3072 includes/legacy/abstract-wc-legacy-order.php:507
388
+ #, php-format
389
+ msgid "Download %d"
390
  msgstr ""
391
 
392
+ #: includes/wc-template-functions.php:3072 includes/class-wc-emails.php:404 includes/wc-account-functions.php:214 includes/legacy/abstract-wc-legacy-order.php:507 includes/admin/helper/class-wc-helper.php:346 includes/admin/helper/views/html-main.php:109
393
+ msgid "Download"
394
  msgstr ""
395
 
396
+ #. translators: 1: rating 2: rating count
397
+ #: includes/wc-template-functions.php:3182
398
+ #, php-format
399
+ msgid "Rated %1$s out of 5 based on %2$s customer rating"
400
+ msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings"
401
+ msgstr[0] ""
402
+ msgstr[1] ""
403
 
404
+ #. translators: %s: average rating
405
+ #. translators: %s: rating
406
+ #: includes/wc-template-functions.php:3185 includes/class-wc-embed.php:130 includes/widgets/class-wc-widget-layered-nav-filters.php:102
407
+ #, php-format
408
+ msgid "Rated %s out of 5"
409
  msgstr ""
410
 
411
+ #: includes/wc-template-functions.php:3200
412
+ msgctxt "min_price"
413
+ msgid "From:"
414
  msgstr ""
415
 
416
+ #: includes/wc-template-functions.php:3229
417
+ msgid "Your cart is currently empty."
418
  msgstr ""
419
 
420
+ #: includes/class-wc-product-variable.php:60
421
+ msgid "Select options"
422
  msgstr ""
423
 
424
+ #. translators: %s: Product title
425
+ #: includes/class-wc-product-variable.php:71
426
+ #, php-format
427
+ msgid "Select options for &ldquo;%s&rdquo;"
428
  msgstr ""
429
 
430
+ #: includes/class-wc-install.php:345
431
+ msgid "Monthly"
432
  msgstr ""
433
 
434
+ #: includes/class-wc-install.php:391
435
+ msgctxt "Page slug"
436
+ msgid "shop"
437
  msgstr ""
438
 
439
+ #: includes/class-wc-install.php:392
440
+ msgctxt "Page title"
441
+ msgid "Shop"
442
  msgstr ""
443
 
444
+ #: includes/class-wc-install.php:396
445
+ msgctxt "Page slug"
446
+ msgid "cart"
447
  msgstr ""
448
 
449
+ #: includes/class-wc-install.php:397
450
+ msgctxt "Page title"
451
+ msgid "Cart"
452
  msgstr ""
453
 
454
+ #: includes/class-wc-install.php:401
455
+ msgctxt "Page slug"
456
+ msgid "checkout"
457
  msgstr ""
458
 
459
+ #: includes/class-wc-install.php:402
460
+ msgctxt "Page title"
461
+ msgid "Checkout"
462
  msgstr ""
463
 
464
+ #: includes/class-wc-install.php:406
465
+ msgctxt "Page slug"
466
+ msgid "my-account"
467
  msgstr ""
468
 
469
+ #: includes/class-wc-install.php:407
470
+ msgctxt "Page title"
471
+ msgid "My account"
472
  msgstr ""
473
 
474
+ #: includes/class-wc-install.php:488 includes/class-wc-install.php:494 includes/admin/class-wc-admin-taxonomies.php:309
475
+ msgctxt "Default category slug"
476
+ msgid "Uncategorized"
477
  msgstr ""
478
 
479
+ #. translators: user role
480
+ #: includes/class-wc-install.php:857
481
+ msgctxt "User role"
482
+ msgid "Customer"
483
  msgstr ""
484
 
485
+ #. translators: user role
486
+ #: includes/class-wc-install.php:859
487
+ msgctxt "User role"
488
+ msgid "Shop manager"
489
  msgstr ""
490
 
491
+ #: includes/class-wc-install.php:1056
492
+ msgid "View WooCommerce settings"
493
  msgstr ""
494
 
495
+ #: includes/class-wc-install.php:1056 includes/admin/class-wc-admin-menus.php:79 includes/admin/views/html-admin-page-status-report.php:604
496
+ msgid "Settings"
497
  msgstr ""
498
 
499
+ #: includes/class-wc-install.php:1072
500
+ msgid "View WooCommerce documentation"
501
  msgstr ""
502
 
503
+ #: includes/class-wc-install.php:1072
504
+ msgid "Docs"
505
  msgstr ""
506
 
507
+ #: includes/class-wc-install.php:1073
508
+ msgid "View WooCommerce API docs"
509
  msgstr ""
510
 
511
+ #: includes/class-wc-install.php:1073
512
+ msgid "API docs"
513
  msgstr ""
514
 
515
+ #: includes/class-wc-install.php:1074
516
+ msgid "Visit premium customer support"
517
  msgstr ""
518
 
519
+ #: includes/class-wc-install.php:1074
520
+ msgid "Premium support"
521
  msgstr ""
522
 
523
+ #. translators: 1: plugin name, 2: error message, 3: URL to install plugin
524
+ #. manually.
525
+ #. translators: 1: theme slug, 2: error message, 3: URL to install theme
526
+ #. manually.
527
+ #: includes/class-wc-install.php:1201 includes/class-wc-install.php:1288
528
+ #, php-format
529
+ msgid "%1$s could not be installed (%2$s). <a href=\"%3$s\">Please install it manually by clicking here.</a>"
530
  msgstr ""
531
 
532
+ #. translators: 1: plugin name, 2: URL to WP plugin page.
533
+ #: includes/class-wc-install.php:1228
534
+ #, php-format
535
+ msgid "%1$s was installed but could not be activated. <a href=\"%2$s\">Please activate it manually by clicking here.</a>"
536
  msgstr ""
537
 
538
+ #: includes/class-wc-customer.php:720
539
+ msgid "Invalid email address"
540
  msgstr ""
541
 
542
+ #. translators: 1: first name 2: last name
543
+ #: includes/class-wc-customer.php:753
544
+ #, php-format
545
+ msgctxt "display name"
546
+ msgid "%1$s %2$s"
547
  msgstr ""
548
 
549
+ #: includes/class-wc-customer.php:766
550
+ msgid "Invalid role"
551
  msgstr ""
552
 
553
+ #: includes/class-wc-customer.php:962 includes/class-wc-order.php:1075
554
+ msgid "Invalid billing email address"
555
  msgstr ""
556
 
557
+ #. translators: %s: ID of the attachment.
558
+ #: includes/class-wc-regenerate-images-request.php:105
559
+ #, php-format
560
+ msgid "Regenerating images for attachment ID: %s"
561
  msgstr ""
562
 
563
+ #: includes/class-wc-regenerate-images-request.php:246
564
+ msgid "Completed product image regeneration job."
565
  msgstr ""
566
 
567
+ #: includes/class-wc-privacy-exporters.php:30 includes/class-wc-privacy.php:42 includes/class-wc-privacy.php:48
568
+ msgid "Customer Data"
569
  msgstr ""
570
 
571
+ #: includes/class-wc-privacy-exporters.php:73 includes/class-wc-post-types.php:370 includes/wc-account-functions.php:99 includes/class-wc-query.php:109 includes/admin/class-wc-admin-reports.php:47 includes/admin/settings/class-wc-settings-advanced.php:222 includes/admin/reports/class-wc-report-customer-list.php:215
572
+ msgid "Orders"
573
  msgstr ""
574
 
575
+ #. translators: This is the headline for a list of downloads purchased from the
576
+ #. store for a given user.
577
+ #: includes/class-wc-privacy-exporters.php:122
578
+ msgid "Purchased Downloads"
579
  msgstr ""
580
 
581
+ #. translators: This is the headline for a list of access logs for downloads
582
+ #. purchased from the store for a given user.
583
+ #: includes/class-wc-privacy-exporters.php:133
584
+ msgid "Access to Purchased Downloads"
585
  msgstr ""
586
 
587
+ #: includes/class-wc-privacy-exporters.php:137 includes/class-wc-privacy-exporters.php:330
588
+ msgid "Download ID"
589
  msgstr ""
590
 
591
+ #: includes/class-wc-privacy-exporters.php:141 includes/admin/class-wc-admin-log-table-list.php:103 includes/admin/reports/class-wc-report-downloads.php:214
592
+ msgid "Timestamp"
593
  msgstr ""
594
 
595
+ #: includes/class-wc-privacy-exporters.php:145 includes/class-wc-privacy-exporters.php:244
596
+ msgid "IP Address"
597
  msgstr ""
598
 
599
+ #: includes/class-wc-privacy-exporters.php:179 includes/class-wc-privacy-erasers.php:44
600
+ msgid "Billing First Name"
601
  msgstr ""
602
 
603
+ #: includes/class-wc-privacy-exporters.php:180 includes/class-wc-privacy-erasers.php:45
604
+ msgid "Billing Last Name"
605
  msgstr ""
606
 
607
+ #: includes/class-wc-privacy-exporters.php:181 includes/class-wc-privacy-erasers.php:46
608
+ msgid "Billing Company"
609
  msgstr ""
610
 
611
+ #: includes/class-wc-privacy-exporters.php:182 includes/class-wc-privacy-erasers.php:47
612
+ msgid "Billing Address 1"
613
  msgstr ""
614
 
615
+ #: includes/class-wc-privacy-exporters.php:183 includes/class-wc-privacy-erasers.php:48
616
+ msgid "Billing Address 2"
617
  msgstr ""
618
 
619
+ #: includes/class-wc-privacy-exporters.php:184 includes/class-wc-privacy-erasers.php:49
620
+ msgid "Billing City"
621
  msgstr ""
622
 
623
+ #: includes/class-wc-privacy-exporters.php:185 includes/class-wc-privacy-erasers.php:50
624
+ msgid "Billing Postal/Zip Code"
625
  msgstr ""
626
 
627
+ #: includes/class-wc-privacy-exporters.php:186 includes/class-wc-privacy-erasers.php:51
628
+ msgid "Billing State"
629
  msgstr ""
630
 
631
+ #: includes/class-wc-privacy-exporters.php:187 includes/class-wc-privacy-erasers.php:52
632
+ msgid "Billing Country"
633
  msgstr ""
634
 
635
+ #: includes/class-wc-privacy-exporters.php:188 includes/class-wc-privacy-exporters.php:248 includes/class-wc-privacy-erasers.php:53
636
+ msgid "Phone Number"
637
  msgstr ""
638
 
639
+ #: includes/class-wc-privacy-exporters.php:189 includes/class-wc-privacy-exporters.php:249 includes/class-wc-privacy-erasers.php:54
640
+ msgid "Email Address"
641
  msgstr ""
642
 
643
+ #: includes/class-wc-privacy-exporters.php:190 includes/class-wc-privacy-erasers.php:55
644
+ msgid "Shipping First Name"
645
  msgstr ""
646
 
647
+ #: includes/class-wc-privacy-exporters.php:191 includes/class-wc-privacy-erasers.php:56
648
+ msgid "Shipping Last Name"
649
  msgstr ""
650
 
651
+ #: includes/class-wc-privacy-exporters.php:192 includes/class-wc-privacy-erasers.php:57
652
+ msgid "Shipping Company"
653
  msgstr ""
654
 
655
+ #: includes/class-wc-privacy-exporters.php:193 includes/class-wc-privacy-erasers.php:58
656
+ msgid "Shipping Address 1"
657
  msgstr ""
658
 
659
+ #: includes/class-wc-privacy-exporters.php:194 includes/class-wc-privacy-erasers.php:59
660
+ msgid "Shipping Address 2"
661
  msgstr ""
662
 
663
+ #: includes/class-wc-privacy-exporters.php:195 includes/class-wc-privacy-erasers.php:60
664
+ msgid "Shipping City"
665
  msgstr ""
666
 
667
+ #: includes/class-wc-privacy-exporters.php:196 includes/class-wc-privacy-erasers.php:61
668
+ msgid "Shipping Postal/Zip Code"
669
  msgstr ""
670
 
671
+ #: includes/class-wc-privacy-exporters.php:197 includes/class-wc-privacy-erasers.php:62
672
+ msgid "Shipping State"
673
  msgstr ""
674
 
675
+ #: includes/class-wc-privacy-exporters.php:198 includes/class-wc-privacy-erasers.php:63
676
+ msgid "Shipping Country"
677
  msgstr ""
678
 
679
+ #: includes/class-wc-privacy-exporters.php:240
680
+ msgid "Order Number"
681
  msgstr ""
682
 
683
+ #: includes/class-wc-privacy-exporters.php:241
684
+ msgid "Order Date"
685
  msgstr ""
686
 
687
+ #: includes/class-wc-privacy-exporters.php:242
688
+ msgid "Order Total"
689
  msgstr ""
690
 
691
+ #: includes/class-wc-privacy-exporters.php:243
692
+ msgid "Items Purchased"
693
  msgstr ""
694
 
695
+ #: includes/class-wc-privacy-exporters.php:245
696
+ msgid "Browser User Agent"
697
  msgstr ""
698
 
699
+ #: includes/class-wc-privacy-exporters.php:246
700
+ msgid "Billing Address"
701
  msgstr ""
702
 
703
+ #: includes/class-wc-privacy-exporters.php:247
704
+ msgid "Shipping Address"
705
  msgstr ""
706
 
707
+ #: includes/class-wc-privacy-exporters.php:289
708
+ msgid "Payer first name"
709
  msgstr ""
710
 
711
+ #: includes/class-wc-privacy-exporters.php:290
712
+ msgid "Payer last name"
713
  msgstr ""
714
 
715
+ #: includes/class-wc-privacy-exporters.php:291
716
+ msgid "Payer PayPal address"
717
  msgstr ""
718
 
719
+ #: includes/class-wc-privacy-exporters.php:292 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:413
720
+ msgid "Transaction ID"
721
  msgstr ""
722
 
723
+ #: includes/class-wc-privacy-exporters.php:334 templates/order/form-tracking.php:27
724
+ msgid "Order ID"
725
  msgstr ""
726
 
727
+ #: includes/class-wc-privacy-exporters.php:338 includes/class-wc-emails.php:402 includes/class-wc-post-types.php:303 includes/wc-account-functions.php:211 templates/order/order-details.php:45 templates/cart/cart.php:32 templates/cart/cart.php:76 templates/emails/email-order-details.php:44 templates/checkout/review-order.php:26 templates/checkout/form-pay.php:27 includes/data-stores/class-wc-product-data-store-cpt.php:105 includes/admin/list-tables/class-wc-admin-list-table-orders.php:437 includes/admin/reports/class-wc-report-stock.php:173 includes/admin/reports/class-wc-report-downloads.php:84 includes/admin/reports/class-wc-report-downloads.php:215 includes/admin/importers/views/html-csv-import-done.php:61
728
+ msgid "Product"
729
  msgstr ""
730
 
731
+ #: includes/class-wc-privacy-exporters.php:342
732
+ msgid "User email"
733
  msgstr ""
734
 
735
+ #: includes/class-wc-privacy-exporters.php:346 includes/wc-account-functions.php:212 includes/admin/meta-boxes/views/html-order-download-permission.php:27
736
+ msgid "Downloads remaining"
737
  msgstr ""
738
 
739
+ #: includes/class-wc-privacy-exporters.php:350
740
+ msgid "Download count"
741
  msgstr ""
742
 
743
+ #: includes/class-wc-privacy-exporters.php:354
744
+ msgid "Access granted"
745
  msgstr ""
746
 
747
+ #: includes/class-wc-privacy-exporters.php:358 includes/admin/meta-boxes/views/html-order-download-permission.php:32
748
+ msgid "Access expires"
749
  msgstr ""
750
 
751
+ #: includes/class-wc-privacy-exporters.php:404
752
+ msgid "Payment Tokens"
753
  msgstr ""
754
 
755
+ #: includes/class-wc-privacy-exporters.php:408
756
+ msgid "Token"
757
  msgstr ""
758
 
759
+ #: includes/wc-order-functions.php:95 includes/class-wc-post-types.php:482
760
+ msgctxt "Order status"
761
+ msgid "Pending payment"
762
  msgstr ""
763
 
764
+ #: includes/wc-order-functions.php:96 includes/class-wc-post-types.php:491
765
+ msgctxt "Order status"
766
+ msgid "Processing"
767
  msgstr ""
768
 
769
+ #: includes/wc-order-functions.php:97 includes/class-wc-post-types.php:500
770
+ msgctxt "Order status"
771
+ msgid "On hold"
772
  msgstr ""
773
 
774
+ #: includes/wc-order-functions.php:98 includes/class-wc-post-types.php:509
775
+ msgctxt "Order status"
776
+ msgid "Completed"
777
  msgstr ""
778
 
779
+ #: includes/wc-order-functions.php:99 includes/class-wc-post-types.php:518
780
+ msgctxt "Order status"
781
+ msgid "Cancelled"
782
  msgstr ""
783
 
784
+ #: includes/wc-order-functions.php:100 includes/class-wc-post-types.php:527
785
+ msgctxt "Order status"
786
+ msgid "Refunded"
787
  msgstr ""
788
 
789
+ #: includes/wc-order-functions.php:101 includes/class-wc-post-types.php:536
790
+ msgctxt "Order status"
791
+ msgid "Failed"
792
  msgstr ""
793
 
794
+ #: includes/wc-order-functions.php:486 includes/wc-order-functions.php:1019 includes/wc-core-functions.php:143 includes/api/class-wc-rest-order-notes-controller.php:39 includes/api/class-wc-rest-order-refunds-controller.php:191 includes/api/class-wc-rest-order-refunds-controller.php:273 includes/api/v1/class-wc-rest-order-notes-controller.php:186 includes/api/v1/class-wc-rest-order-notes-controller.php:226 includes/api/v1/class-wc-rest-order-notes-controller.php:268 includes/api/v1/class-wc-rest-order-notes-controller.php:301 includes/api/v1/class-wc-rest-order-refunds-controller.php:127
795
+ msgid "Invalid order ID."
796
  msgstr ""
797
 
798
+ #: includes/wc-order-functions.php:495
799
+ msgid "Invalid refund amount."
800
  msgstr ""
801
 
802
+ #: includes/wc-order-functions.php:623 includes/class-wc-form-handler.php:774 includes/class-wc-download-handler.php:125 includes/shortcodes/class-wc-shortcode-my-account.php:134 includes/shortcodes/class-wc-shortcode-checkout.php:177 includes/data-stores/abstract-wc-order-data-store-cpt.php:100
803
+ msgid "Invalid order."
804
  msgstr ""
805
 
806
+ #: includes/wc-order-functions.php:632
807
+ msgid "The payment gateway for this order does not exist."
808
  msgstr ""
809
 
810
+ #: includes/wc-order-functions.php:636
811
+ msgid "The payment gateway for this order does not support automatic refunds."
812
  msgstr ""
813
 
814
+ #: includes/wc-order-functions.php:642 includes/api/legacy/v2/class-wc-api-orders.php:1634 includes/api/legacy/v3/class-wc-api-orders.php:1681
815
+ msgid "An error occurred while attempting to create the refund using the payment gateway API."
816
  msgstr ""
817
 
818
+ #. translators: 1: product ID 2: old stock level 3: new stock level
819
+ #: includes/wc-order-functions.php:677
820
+ #, php-format
821
+ msgid "Item #%1$s stock increased from %2$s to %3$s."
822
  msgstr ""
823
 
824
+ #: includes/wc-order-functions.php:738 includes/wc-update-functions.php:915
825
+ msgid "Order fully refunded"
826
  msgstr ""
827
 
828
+ #: includes/wc-order-functions.php:868
829
+ msgid "Unpaid order cancelled - time limit reached."
830
  msgstr ""
831
 
832
+ #. Plugin Name of the plugin/theme
833
+ #: includes/wc-order-functions.php:913 includes/class-wc-privacy.php:31 includes/class-wc-order.php:1638 includes/class-wc-order.php:1639 includes/customizer/class-wc-shop-customizer.php:36 includes/admin/class-wc-admin-menus.php:59 includes/admin/class-wc-admin-menus.php:59 includes/admin/class-wc-admin.php:242 includes/admin/class-wc-admin-assets.php:84 includes/admin/wc-admin-functions.php:22 includes/admin/helper/class-wc-helper.php:448 includes/admin/helper/class-wc-helper.php:591 includes/admin/helper/class-wc-helper.php:1338
834
+ msgid "WooCommerce"
835
  msgstr ""
836
 
837
+ #: includes/class-wc-emails.php:61 includes/class-wc-shipping.php:77 includes/class-wc-payment-gateways.php:54 includes/class-wc-checkout.php:160 includes/class-woocommerce.php:126
838
+ msgid "Cloning is forbidden."
839
  msgstr ""
840
 
841
+ #: includes/class-wc-emails.php:70 includes/class-wc-shipping.php:86 includes/class-wc-payment-gateways.php:63 includes/class-wc-checkout.php:167 includes/class-woocommerce.php:135
842
+ msgid "Unserializing instances of this class is forbidden."
843
  msgstr ""
844
 
845
+ #: includes/class-wc-emails.php:403 includes/wc-account-functions.php:213 includes/wc-account-functions.php:236
846
+ msgid "Expires"
847
  msgstr ""
848
 
849
+ #: includes/class-wc-emails.php:565
850
+ msgid "Product low in stock"
851
  msgstr ""
852
 
853
+ #. translators: 1: product name 2: items in stock
854
+ #: includes/class-wc-emails.php:568
855
+ #, php-format
856
+ msgid "%1$s is low in stock. There are %2$d left."
857
  msgstr ""
858
 
859
+ #: includes/class-wc-emails.php:592
860
+ msgid "Product out of stock"
861
  msgstr ""
862
 
863
+ #. translators: %s: product name
864
+ #: includes/class-wc-emails.php:594
865
+ #, php-format
866
+ msgid "%s is out of stock."
867
  msgstr ""
868
 
869
+ #: includes/class-wc-emails.php:629
870
+ msgid "Product backorder"
871
  msgstr ""
872
 
873
+ #. translators: 1: product quantity 2: product name 3: order number
874
+ #: includes/class-wc-emails.php:631
875
+ #, php-format
876
+ msgid "%1$s units of %2$s have been backordered in order #%3$s."
877
  msgstr ""
878
 
879
+ #: includes/class-wc-post-types.php:86 includes/export/class-wc-product-csv-exporter.php:111 includes/admin/list-tables/class-wc-admin-list-table-products.php:118 includes/admin/reports/class-wc-report-sales-by-category.php:201 includes/admin/importers/class-wc-product-csv-importer-controller.php:491 includes/admin/importers/class-wc-product-csv-importer-controller.php:657
880
+ msgid "Categories"
881
  msgstr ""
882
 
883
+ #: includes/class-wc-post-types.php:88 includes/widgets/class-wc-widget-product-categories.php:43 includes/admin/class-wc-admin-pointers.php:192 includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:227
884
+ msgid "Product categories"
885
  msgstr ""
886
 
887
+ #: includes/class-wc-post-types.php:89
888
+ msgid "Category"
889
  msgstr ""
890
 
891
+ #: includes/class-wc-post-types.php:90
892
+ msgctxt "Admin menu name"
893
+ msgid "Categories"
894
  msgstr ""
895
 
896
+ #: includes/class-wc-post-types.php:91
897
+ msgid "Search categories"
898
  msgstr ""
899
 
900
+ #: includes/class-wc-post-types.php:92
901
+ msgid "All categories"
902
  msgstr ""
903
 
904
+ #: includes/class-wc-post-types.php:93
905
+ msgid "Parent category"
906
  msgstr ""
907
 
908
+ #: includes/class-wc-post-types.php:94
909
+ msgid "Parent category:"
910
  msgstr ""
911
 
912
+ #: includes/class-wc-post-types.php:95
913
+ msgid "Edit category"
914
  msgstr ""
915
 
916
+ #: includes/class-wc-post-types.php:96
917
+ msgid "Update category"
918
  msgstr ""
919
 
920
+ #: includes/class-wc-post-types.php:97
921
+ msgid "Add new category"
922
  msgstr ""
923
 
924
+ #: includes/class-wc-post-types.php:98
925
+ msgid "New category name"
926
  msgstr ""
927
 
928
+ #: includes/class-wc-post-types.php:99
929
+ msgid "No categories found"
930
  msgstr ""
931
 
932
+ #: includes/class-wc-post-types.php:125 includes/class-wc-post-types.php:127 includes/widgets/class-wc-widget-product-tag-cloud.php:29 includes/admin/class-wc-admin-pointers.php:180
933
+ msgid "Product tags"
934
  msgstr ""
935
 
936
+ #: includes/class-wc-post-types.php:128
937
+ msgid "Tag"
938
  msgstr ""
939
 
940
+ #: includes/class-wc-post-types.php:129
941
+ msgctxt "Admin menu name"
942
+ msgid "Tags"
943
  msgstr ""
944
 
945
+ #: includes/class-wc-post-types.php:130
946
+ msgid "Search tags"
947
  msgstr ""
948
 
949
+ #: includes/class-wc-post-types.php:131
950
+ msgid "All tags"
951
  msgstr ""
952
 
953
+ #: includes/class-wc-post-types.php:132
954
+ msgid "Edit tag"
955
  msgstr ""
956
 
957
+ #: includes/class-wc-post-types.php:133
958
+ msgid "Update tag"
959
  msgstr ""
960
 
961
+ #: includes/class-wc-post-types.php:134
962
+ msgid "Add new tag"
963
  msgstr ""
964
 
965
+ #: includes/class-wc-post-types.php:135
966
+ msgid "New tag name"
967
  msgstr ""
968
 
969
+ #: includes/class-wc-post-types.php:136
970
+ msgid "Popular tags"
971
  msgstr ""
972
 
973
+ #: includes/class-wc-post-types.php:137
974
+ msgid "Separate tags with commas"
975
  msgstr ""
976
 
977
+ #: includes/class-wc-post-types.php:138
978
+ msgid "Add or remove tags"
979
  msgstr ""
980
 
981
+ #: includes/class-wc-post-types.php:139
982
+ msgid "Choose from the most used tags"
983
  msgstr ""
984
 
985
+ #: includes/class-wc-post-types.php:140
986
+ msgid "No tags found"
987
  msgstr ""
988
 
989
+ #: includes/class-wc-post-types.php:165 includes/admin/settings/class-wc-settings-shipping.php:49 includes/admin/settings/views/html-admin-page-shipping-classes.php:14
990
+ msgid "Shipping classes"
991
  msgstr ""
992
 
993
+ #: includes/class-wc-post-types.php:167
994
+ msgid "Product shipping classes"
995
  msgstr ""
996
 
997
+ #: includes/class-wc-post-types.php:168 includes/export/class-wc-product-csv-exporter.php:113 includes/admin/views/html-bulk-edit-product.php:166 includes/admin/views/html-quick-edit-product.php:123 includes/admin/settings/class-wc-settings-shipping.php:359 includes/admin/importers/class-wc-product-csv-importer-controller.php:493 includes/admin/importers/class-wc-product-csv-importer-controller.php:659 includes/admin/meta-boxes/views/html-product-data-shipping.php:56 includes/admin/meta-boxes/views/html-variation-admin.php:291
998
+ msgid "Shipping class"
999
  msgstr ""
1000
 
1001
+ #: includes/class-wc-post-types.php:169
1002
+ msgctxt "Admin menu name"
1003
+ msgid "Shipping classes"
1004
  msgstr ""
1005
 
1006
+ #: includes/class-wc-post-types.php:170
1007
+ msgid "Search shipping classes"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-wc-post-types.php:171
1011
+ msgid "All shipping classes"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-wc-post-types.php:172
1015
+ msgid "Parent shipping class"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-wc-post-types.php:173
1019
+ msgid "Parent shipping class:"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-wc-post-types.php:174
1023
+ msgid "Edit shipping class"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-wc-post-types.php:175
1027
+ msgid "Update shipping class"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-wc-post-types.php:176
1031
+ msgid "Add new shipping class"
1032
  msgstr ""
1033
 
1034
+ #: includes/class-wc-post-types.php:177
1035
+ msgid "New shipping class Name"
1036
  msgstr ""
1037
 
1038
+ #. translators: %s: attribute name
1039
+ #: includes/class-wc-post-types.php:212
1040
+ #, php-format
1041
+ msgctxt "Product Attribute"
1042
+ msgid "Product %s"
1043
  msgstr ""
1044
 
1045
+ #. translators: %s: attribute name
1046
+ #: includes/class-wc-post-types.php:215
1047
+ #, php-format
1048
+ msgid "Search %s"
1049
  msgstr ""
1050
 
1051
+ #. translators: %s: attribute name
1052
+ #: includes/class-wc-post-types.php:217
1053
+ #, php-format
1054
+ msgid "All %s"
1055
  msgstr ""
1056
 
1057
+ #. translators: %s: attribute name
1058
+ #: includes/class-wc-post-types.php:219
1059
+ #, php-format
1060
+ msgid "Parent %s"
1061
  msgstr ""
1062
 
1063
+ #. translators: %s: attribute name
1064
+ #: includes/class-wc-post-types.php:221
1065
+ #, php-format
1066
+ msgid "Parent %s:"
1067
  msgstr ""
1068
 
1069
+ #. translators: %s: attribute name
1070
+ #: includes/class-wc-post-types.php:223
1071
+ #, php-format
1072
+ msgid "Edit %s"
1073
  msgstr ""
1074
 
1075
+ #. translators: %s: attribute name
1076
+ #: includes/class-wc-post-types.php:225
1077
+ #, php-format
1078
+ msgid "Update %s"
1079
  msgstr ""
1080
 
1081
+ #. translators: %s: attribute name
1082
+ #: includes/class-wc-post-types.php:227
1083
+ #, php-format
1084
+ msgid "Add new %s"
1085
  msgstr ""
1086
 
1087
+ #. translators: %s: attribute name
1088
+ #: includes/class-wc-post-types.php:229
1089
+ #, php-format
1090
+ msgid "New %s"
1091
  msgstr ""
1092
 
1093
+ #. translators: %s: attribute name
1094
+ #: includes/class-wc-post-types.php:231
1095
+ #, php-format
1096
+ msgid "No &quot;%s&quot; found"
1097
  msgstr ""
1098
 
1099
+ #: includes/class-wc-post-types.php:302 includes/widgets/class-wc-widget-products.php:23 includes/widgets/class-wc-widget-products.php:27 includes/admin/class-wc-admin-taxonomies.php:100 includes/admin/class-wc-admin-taxonomies.php:208 includes/admin/settings/class-wc-settings-products.php:29 includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php:187
1100
+ msgid "Products"
1101
  msgstr ""
1102
 
1103
+ #: includes/class-wc-post-types.php:304
1104
+ msgid "All Products"
1105
  msgstr ""
1106
 
1107
+ #: includes/class-wc-post-types.php:305
1108
+ msgctxt "Admin menu name"
1109
+ msgid "Products"
1110
  msgstr ""
1111
 
1112
+ #: includes/class-wc-post-types.php:306
1113
+ msgid "Add New"
1114
  msgstr ""
1115
 
1116
+ #: includes/class-wc-post-types.php:307
1117
+ msgid "Add new product"
1118
  msgstr ""
1119
 
1120
+ #: includes/class-wc-post-types.php:308 includes/class-wc-post-types.php:374 includes/class-wc-post-types.php:439 templates/myaccount/my-address.php:53 includes/admin/class-wc-admin-webhooks-table-list.php:82 includes/admin/class-wc-admin-attributes.php:307 includes/admin/class-wc-admin-post-types.php:751 includes/admin/list-tables/class-wc-admin-list-table-orders.php:401 includes/admin/reports/class-wc-report-stock.php:135 includes/admin/reports/class-wc-report-customer-list.php:159 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:313 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:425 includes/admin/settings/views/html-admin-page-shipping-classes.php:54 includes/admin/settings/views/html-admin-page-shipping-zones.php:78 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:120
1121
+ msgid "Edit"
1122
  msgstr ""
1123
 
1124
+ #: includes/class-wc-post-types.php:309
1125
+ msgid "Edit product"
1126
  msgstr ""
1127
 
1128
+ #: includes/class-wc-post-types.php:310
1129
+ msgid "New product"
1130
  msgstr ""
1131
 
1132
+ #: includes/class-wc-post-types.php:311
1133
+ msgid "View product"
1134
  msgstr ""
1135
 
1136
+ #: includes/class-wc-post-types.php:312 includes/class-wc-product-grouped.php:42 includes/class-wc-auth.php:94 includes/admin/importers/views/html-csv-import-done.php:94
1137
+ msgid "View products"
1138
  msgstr ""
1139
 
1140
+ #: includes/class-wc-post-types.php:313
1141
+ msgid "Search products"
1142
  msgstr ""
1143
 
1144
+ #: includes/class-wc-post-types.php:314
1145
+ msgid "No products found"
1146
  msgstr ""
1147
 
1148
+ #: includes/class-wc-post-types.php:315
1149
+ msgid "No products found in trash"
1150
  msgstr ""
1151
 
1152
+ #: includes/class-wc-post-types.php:316
1153
+ msgid "Parent product"
1154
  msgstr ""
1155
 
1156
+ #: includes/class-wc-post-types.php:317
1157
+ msgid "Product image"
1158
  msgstr ""
1159
 
1160
+ #: includes/class-wc-post-types.php:318
1161
+ msgid "Set product image"
1162
  msgstr ""
1163
 
1164
+ #: includes/class-wc-post-types.php:319
1165
+ msgid "Remove product image"
1166
  msgstr ""
1167
 
1168
+ #: includes/class-wc-post-types.php:320
1169
+ msgid "Use as product image"
1170
  msgstr ""
1171
 
1172
+ #: includes/class-wc-post-types.php:321
1173
+ msgid "Insert into product"
1174
  msgstr ""
1175
 
1176
+ #: includes/class-wc-post-types.php:322
1177
+ msgid "Uploaded to this product"
1178
  msgstr ""
1179
 
1180
+ #: includes/class-wc-post-types.php:323
1181
+ msgid "Filter products"
1182
  msgstr ""
1183
 
1184
+ #: includes/class-wc-post-types.php:324
1185
+ msgid "Products navigation"
1186
  msgstr ""
1187
 
1188
+ #: includes/class-wc-post-types.php:325
1189
+ msgid "Products list"
1190
  msgstr ""
1191
 
1192
+ #: includes/class-wc-post-types.php:327
1193
+ msgid "This is where you can add new products to your store."
1194
  msgstr ""
1195
 
1196
+ #: includes/class-wc-post-types.php:354 includes/admin/meta-boxes/class-wc-meta-box-product-data.php:117
1197
+ msgid "Variations"
1198
  msgstr ""
1199
 
1200
+ #: includes/class-wc-post-types.php:371
1201
+ msgctxt "shop_order post type singular name"
1202
+ msgid "Order"
1203
  msgstr ""
1204
 
1205
+ #: includes/class-wc-post-types.php:372
1206
+ msgid "Add order"
1207
  msgstr ""
1208
 
1209
+ #: includes/class-wc-post-types.php:373
1210
+ msgid "Add new order"
1211
  msgstr ""
1212
 
1213
+ #: includes/class-wc-post-types.php:375
1214
+ msgid "Edit order"
1215
  msgstr ""
1216
 
1217
+ #: includes/class-wc-post-types.php:376 includes/emails/class-wc-email-new-order.php:31
1218
+ msgid "New order"
1219
  msgstr ""
1220
 
1221
+ #: includes/class-wc-post-types.php:377 includes/admin/settings/class-wc-settings-advanced.php:231
1222
+ msgid "View order"
1223
  msgstr ""
1224
 
1225
+ #: includes/class-wc-post-types.php:378
1226
+ msgid "Search orders"
1227
  msgstr ""
1228
 
1229
+ #: includes/class-wc-post-types.php:379 includes/admin/class-wc-admin-dashboard.php:357
1230
+ msgid "No orders found"
1231
  msgstr ""
1232
 
1233
+ #: includes/class-wc-post-types.php:380
1234
+ msgid "No orders found in trash"
1235
  msgstr ""
1236
 
1237
+ #: includes/class-wc-post-types.php:381
1238
+ msgid "Parent orders"
1239
  msgstr ""
1240
 
1241
+ #: includes/class-wc-post-types.php:382 includes/admin/class-wc-admin-menus.php:172
1242
+ msgctxt "Admin menu name"
1243
+ msgid "Orders"
1244
  msgstr ""
1245
 
1246
+ #: includes/class-wc-post-types.php:383
1247
+ msgid "Filter orders"
1248
  msgstr ""
1249
 
1250
+ #: includes/class-wc-post-types.php:384
1251
+ msgid "Orders navigation"
1252
  msgstr ""
1253
 
1254
+ #: includes/class-wc-post-types.php:385
1255
+ msgid "Orders list"
1256
  msgstr ""
1257
 
1258
+ #: includes/class-wc-post-types.php:387
1259
+ msgid "This is where store orders are stored."
1260
  msgstr ""
1261
 
1262
+ #: includes/class-wc-post-types.php:410
1263
+ msgid "Refunds"
1264
  msgstr ""
1265
 
1266
+ #: includes/class-wc-post-types.php:434
1267
+ msgid "Coupons"
1268
  msgstr ""
1269
 
1270
+ #: includes/class-wc-post-types.php:435
1271
+ msgid "Coupon"
1272
  msgstr ""
1273
 
1274
+ #: includes/class-wc-post-types.php:436
1275
+ msgctxt "Admin menu name"
1276
+ msgid "Coupons"
1277
  msgstr ""
1278
 
1279
+ #: includes/class-wc-post-types.php:437
1280
+ msgid "Add coupon"
1281
  msgstr ""
1282
 
1283
+ #: includes/class-wc-post-types.php:438
1284
+ msgid "Add new coupon"
1285
  msgstr ""
1286
 
1287
+ #: includes/class-wc-post-types.php:440
1288
+ msgid "Edit coupon"
1289
  msgstr ""
1290
 
1291
+ #: includes/class-wc-post-types.php:441
1292
+ msgid "New coupon"
1293
  msgstr ""
1294
 
1295
+ #: includes/class-wc-post-types.php:442
1296
+ msgid "View coupon"
1297
  msgstr ""
1298
 
1299
+ #: includes/class-wc-post-types.php:443
1300
+ msgid "Search coupons"
1301
  msgstr ""
1302
 
1303
+ #: includes/class-wc-post-types.php:444
1304
+ msgid "No coupons found"
1305
  msgstr ""
1306
 
1307
+ #: includes/class-wc-post-types.php:445
1308
+ msgid "No coupons found in trash"
1309
  msgstr ""
1310
 
1311
+ #: includes/class-wc-post-types.php:446
1312
+ msgid "Parent coupon"
1313
  msgstr ""
1314
 
1315
+ #: includes/class-wc-post-types.php:447
1316
+ msgid "Filter coupons"
1317
  msgstr ""
1318
 
1319
+ #: includes/class-wc-post-types.php:448
1320
+ msgid "Coupons navigation"
1321
  msgstr ""
1322
 
1323
+ #: includes/class-wc-post-types.php:449
1324
+ msgid "Coupons list"
1325
  msgstr ""
1326
 
1327
+ #: includes/class-wc-post-types.php:451
1328
+ msgid "This is where you can add new coupons that customers can use in your store."
1329
  msgstr ""
1330
 
1331
+ #. translators: %s: number of orders
1332
+ #: includes/class-wc-post-types.php:488
1333
+ #, php-format
1334
+ msgid "Pending payment <span class=\"count\">(%s)</span>"
1335
+ msgid_plural "Pending payment <span class=\"count\">(%s)</span>"
1336
+ msgstr[0] ""
1337
+ msgstr[1] ""
1338
 
1339
+ #. translators: %s: number of orders
1340
+ #: includes/class-wc-post-types.php:497
1341
+ #, php-format
1342
+ msgid "Processing <span class=\"count\">(%s)</span>"
1343
+ msgid_plural "Processing <span class=\"count\">(%s)</span>"
1344
+ msgstr[0] ""
1345
+ msgstr[1] ""
1346
 
1347
+ #. translators: %s: number of orders
1348
+ #: includes/class-wc-post-types.php:506
1349
+ #, php-format
1350
+ msgid "On hold <span class=\"count\">(%s)</span>"
1351
+ msgid_plural "On hold <span class=\"count\">(%s)</span>"
1352
+ msgstr[0] ""
1353
+ msgstr[1] ""
1354
 
1355
+ #. translators: %s: number of orders
1356
+ #: includes/class-wc-post-types.php:515
1357
+ #, php-format
1358
+ msgid "Completed <span class=\"count\">(%s)</span>"
1359
+ msgid_plural "Completed <span class=\"count\">(%s)</span>"
1360
+ msgstr[0] ""
1361
+ msgstr[1] ""
1362
 
1363
+ #. translators: %s: number of orders
1364
+ #: includes/class-wc-post-types.php:524
1365
+ #, php-format
1366
+ msgid "Cancelled <span class=\"count\">(%s)</span>"
1367
+ msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
1368
+ msgstr[0] ""
1369
+ msgstr[1] ""
1370
+
1371
+ #. translators: %s: number of orders
1372
+ #: includes/class-wc-post-types.php:533
1373
+ #, php-format
1374
+ msgid "Refunded <span class=\"count\">(%s)</span>"
1375
+ msgid_plural "Refunded <span class=\"count\">(%s)</span>"
1376
+ msgstr[0] ""
1377
+ msgstr[1] ""
1378
+
1379
+ #. translators: %s: number of orders
1380
+ #: includes/class-wc-post-types.php:542
1381
+ #, php-format
1382
+ msgid "Failed <span class=\"count\">(%s)</span>"
1383
+ msgid_plural "Failed <span class=\"count\">(%s)</span>"
1384
+ msgstr[0] ""
1385
+ msgstr[1] ""
1386
+
1387
+ #: includes/class-wc-data-store.php:95 includes/class-wc-data-store.php:101 includes/class-wc-data-store.php:107 includes/data-stores/class-wc-shipping-zone-data-store.php:99
1388
+ msgid "Invalid data store."
1389
  msgstr ""
1390
 
1391
+ #: includes/class-wc-countries.php:378
1392
+ msgid "to the"
1393
  msgstr ""
1394
 
1395
+ #: includes/class-wc-countries.php:378
1396
+ msgid "to"
1397
  msgstr ""
1398
 
1399
+ #: includes/class-wc-countries.php:392
1400
+ msgid "the"
1401
  msgstr ""
1402
 
1403
+ #: includes/class-wc-countries.php:403
1404
+ msgid "VAT"
1405
  msgstr ""
1406
 
1407
+ #: includes/class-wc-countries.php:403 includes/class-wc-order-item-tax.php:159 includes/class-wc-tax.php:762 includes/admin/settings/class-wc-settings-tax.php:29 includes/admin/list-tables/class-wc-admin-list-table-orders.php:439 includes/admin/reports/class-wc-report-taxes-by-code.php:155 includes/admin/meta-boxes/views/html-order-items.php:38 includes/admin/meta-boxes/views/html-order-items.php:39
1408
+ msgid "Tax"
1409
  msgstr ""
1410
 
1411
+ #: includes/class-wc-countries.php:414
1412
+ msgid "(incl. VAT)"
1413
  msgstr ""
1414
 
1415
+ #: includes/class-wc-countries.php:414
1416
+ msgid "(incl. tax)"
1417
  msgstr ""
1418
 
1419
+ #: includes/class-wc-countries.php:425
1420
+ msgid "(ex. VAT)"
1421
  msgstr ""
1422
 
1423
+ #: includes/class-wc-countries.php:425
1424
+ msgid "(ex. tax)"
1425
  msgstr ""
1426
 
1427
+ #: includes/class-wc-countries.php:618 includes/class-wc-form-handler.php:240 templates/myaccount/form-edit-account.php:27 includes/admin/class-wc-admin-profile.php:45 includes/admin/class-wc-admin-profile.php:105 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:44 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:95
1428
+ msgid "First name"
1429
  msgstr ""
1430
 
1431
+ #: includes/class-wc-countries.php:625 includes/class-wc-form-handler.php:241 templates/myaccount/form-edit-account.php:31 includes/admin/class-wc-admin-profile.php:49 includes/admin/class-wc-admin-profile.php:109 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:48 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:99
1432
+ msgid "Last name"
1433
  msgstr ""
1434
 
1435
+ #: includes/class-wc-countries.php:632 includes/customizer/class-wc-shop-customizer.php:677
1436
+ msgid "Company name"
1437
  msgstr ""
1438
 
1439
+ #: includes/class-wc-countries.php:640 includes/admin/class-wc-admin-settings.php:584 includes/admin/class-wc-admin-settings.php:609 includes/admin/class-wc-admin-setup-wizard.php:396 includes/admin/class-wc-admin-profile.php:73 includes/admin/class-wc-admin-profile.php:133 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:72 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:123
1440
+ msgid "Country"
1441
  msgstr ""
1442
 
1443
+ #: includes/class-wc-countries.php:647
1444
+ msgid "Street address"
1445
  msgstr ""
1446
 
1447
+ #. translators: use local order of street name and house number.
1448
+ #: includes/class-wc-countries.php:649
1449
+ msgid "House number and street name"
1450
  msgstr ""
1451
 
1452
+ #: includes/class-wc-countries.php:656
1453
+ msgid "Apartment, suite, unit etc. (optional)"
1454
  msgstr ""
1455
 
1456
+ #: includes/class-wc-countries.php:664
1457
+ msgid "Town / City"
1458
  msgstr ""
1459
 
1460
+ #: includes/class-wc-countries.php:672 templates/cart/shipping-calculator.php:55 templates/cart/shipping-calculator.php:60 templates/cart/shipping-calculator.php:72 includes/admin/class-wc-admin-profile.php:80 includes/admin/class-wc-admin-profile.php:140 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:79 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:130
1461
+ msgid "State / County"
1462
  msgstr ""
1463
 
1464
+ #: includes/class-wc-countries.php:680 templates/cart/shipping-calculator.php:91 includes/admin/class-wc-admin-setup-wizard.php:420 includes/admin/class-wc-admin-profile.php:69 includes/admin/class-wc-admin-profile.php:129 includes/admin/settings/class-wc-settings-tax.php:195 includes/admin/settings/class-wc-settings-general.php:100 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:68 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:119 includes/admin/settings/views/html-settings-tax.php:28
1465
+ msgid "Postcode / ZIP"
1466
  msgstr ""
1467
 
1468
+ #: includes/class-wc-countries.php:757
1469
+ msgid "Suburb"
1470
  msgstr ""
1471
 
1472
+ #: includes/class-wc-countries.php:760 includes/class-wc-countries.php:998 includes/class-wc-countries.php:1125
1473
+ msgid "Postcode"
1474
  msgstr ""
1475
 
1476
+ #: includes/class-wc-countries.php:763 includes/class-wc-countries.php:1120 includes/admin/class-wc-admin-setup-wizard.php:415 includes/admin/class-wc-admin-setup-wizard.php:417
1477
+ msgid "State"
1478
  msgstr ""
1479
 
1480
+ #: includes/class-wc-countries.php:779
1481
+ msgid "District"
1482
  msgstr ""
1483
 
1484
+ #: includes/class-wc-countries.php:788 includes/class-wc-countries.php:810 includes/class-wc-countries.php:835 includes/class-wc-countries.php:916 includes/class-wc-countries.php:955 includes/class-wc-countries.php:993 includes/class-wc-countries.php:1077 includes/class-wc-countries.php:1112 includes/class-wc-countries.php:1159
1485
+ msgid "Province"
1486
  msgstr ""
1487
 
1488
+ #: includes/class-wc-countries.php:818
1489
+ msgid "Canton"
1490
  msgstr ""
1491
 
1492
+ #: includes/class-wc-countries.php:830 includes/class-wc-countries.php:906 includes/class-wc-countries.php:1002
1493
+ msgid "Region"
1494
  msgstr ""
1495
 
1496
+ #: includes/class-wc-countries.php:903
1497
+ msgid "Town / District"
1498
  msgstr ""
1499
 
1500
+ #: includes/class-wc-countries.php:911 includes/class-wc-countries.php:925 includes/class-wc-countries.php:1041 includes/class-wc-countries.php:1128
1501
+ msgid "County"
1502
  msgstr ""
1503
 
1504
+ #: includes/class-wc-countries.php:922
1505
+ msgid "Eircode"
1506
  msgstr ""
1507
 
1508
+ #: includes/class-wc-countries.php:960
1509
+ msgid "Prefecture"
1510
  msgstr ""
1511
 
1512
+ #: includes/class-wc-countries.php:1015
1513
+ msgid "State / Zone"
1514
  msgstr ""
1515
 
1516
+ #: includes/class-wc-countries.php:1085
1517
+ msgid "Municipality"
1518
  msgstr ""
1519
 
1520
+ #: includes/class-wc-countries.php:1096
1521
+ msgid "Municipality / District"
1522
  msgstr ""
1523
 
1524
+ #: includes/class-wc-countries.php:1117
1525
+ msgid "ZIP"
1526
  msgstr ""
1527
 
1528
+ #: includes/class-wc-countries.php:1221 includes/customizer/class-wc-shop-customizer.php:679 includes/admin/class-wc-admin-profile.php:85 includes/admin/list-tables/class-wc-admin-list-table-orders.php:360 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:87
1529
+ msgid "Phone"
1530
  msgstr ""
1531
 
1532
+ #: includes/class-wc-countries.php:1231 includes/class-wc-form-handler.php:243 templates/myaccount/form-login.php:90 templates/myaccount/form-edit-account.php:43 includes/admin/class-wc-admin-setup-wizard.php:2116 includes/admin/class-wc-admin-profile.php:89 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:84
1533
+ msgid "Email address"
1534
  msgstr ""
1535
 
1536
+ #: includes/wc-update-functions.php:57 includes/wc-core-functions.php:1811 includes/admin/class-wc-admin-permalink-settings.php:76
1537
+ msgctxt "slug"
1538
+ msgid "product-category"
1539
  msgstr ""
1540
 
1541
+ #: includes/wc-update-functions.php:58 includes/wc-core-functions.php:1812 includes/admin/class-wc-admin-permalink-settings.php:85
1542
+ msgctxt "slug"
1543
+ msgid "product-tag"
1544
  msgstr ""
1545
 
1546
+ #: includes/wc-update-functions.php:67 includes/wc-core-functions.php:1810 includes/admin/class-wc-admin-permalink-settings.php:195 includes/admin/class-wc-admin-permalink-settings.php:198
1547
+ msgctxt "slug"
1548
+ msgid "product"
1549
  msgstr ""
1550
 
1551
+ #: includes/class-wc-regenerate-images.php:163
1552
+ msgid "Cancelled product image regeneration job."
1553
  msgstr ""
1554
 
1555
+ #: includes/class-wc-cart.php:604
1556
+ msgid "Get cart should not be called before the wp_loaded action."
1557
  msgstr ""
1558
 
1559
+ #: includes/class-wc-cart.php:747
1560
+ msgid "An item which is no longer available was removed from your cart."
1561
  msgstr ""
1562
 
1563
+ #. translators: %s: product name
1564
+ #: includes/class-wc-cart.php:773
1565
+ #, php-format
1566
+ msgid "Sorry, \"%s\" is not in stock. Please edit your cart and try again. We apologize for any inconvenience caused."
1567
  msgstr ""
1568
 
1569
+ #. translators: 1: product name 2: quantity in stock
1570
+ #: includes/class-wc-cart.php:786
1571
+ #, php-format
1572
+ msgid "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order (%2$s in stock). Please edit your cart and try again. We apologize for any inconvenience caused."
1573
  msgstr ""
1574
 
1575
+ #. translators: 1: product name 2: minutes
1576
+ #: includes/class-wc-cart.php:816
1577
+ #, php-format
1578
+ msgid "Sorry, we do not have enough \"%1$s\" in stock to fulfill your order right now. Please try again in %2$d minutes or edit your cart and try again. We apologize for any inconvenience caused."
1579
  msgstr ""
1580
 
1581
+ #: includes/class-wc-cart.php:1068
1582
+ #, php-format
1583
+ msgid "You cannot add another \"%s\" to your cart."
1584
  msgstr ""
1585
 
1586
+ #: includes/class-wc-cart.php:1073
1587
+ msgid "Sorry, this product cannot be purchased."
1588
  msgstr ""
1589
 
1590
+ #. translators: %s: product name
1591
+ #: includes/class-wc-cart.php:1079
1592
+ #, php-format
1593
+ msgid "You cannot add &quot;%s&quot; to the cart because the product is out of stock."
1594
  msgstr ""
1595
 
1596
+ #. translators: 1: product name 2: quantity in stock
1597
+ #: includes/class-wc-cart.php:1084
1598
+ #, php-format
1599
+ msgid "You cannot add that amount of &quot;%1$s&quot; to the cart because there is not enough stock (%2$s remaining)."
1600
  msgstr ""
1601
 
1602
+ #: includes/class-wc-cart.php:1096
1603
+ msgid "View Cart"
1604
  msgstr ""
1605
 
1606
+ #. translators: 1: quantity in stock 2: current quantity
1607
+ #: includes/class-wc-cart.php:1098
1608
+ #, php-format
1609
+ msgid "You cannot add that amount to the cart &mdash; we have %1$s in stock and you already have %2$s in your cart."
1610
  msgstr ""
1611
 
1612
+ #: includes/class-wc-cart.php:1434 includes/class-wc-product-grouped.php:120 includes/abstracts/abstract-wc-order.php:1724
1613
+ msgid "Free!"
1614
  msgstr ""
1615
 
1616
+ #: includes/class-wc-shipping-zone.php:143
1617
+ #, php-format
1618
+ msgid "%s and %d other region"
1619
+ msgid_plural "%s and %d other regions"
1620
+ msgstr[0] ""
1621
+ msgstr[1] ""
1622
 
1623
+ #: includes/class-wc-shipping-zone.php:148
1624
+ msgid "Everywhere"
1625
  msgstr ""
1626
 
1627
+ #: includes/class-wc-shipping-zone.php:284 includes/admin/settings/class-wc-settings-shipping.php:263 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:15
1628
+ msgid "Zone"
1629
  msgstr ""
1630
 
1631
+ #: includes/class-wc-breadcrumb.php:117
1632
+ msgid "Error 404"
1633
  msgstr ""
1634
 
1635
+ #. translators: %s: product tag
1636
+ #: includes/class-wc-breadcrumb.php:224
1637
+ #, php-format
1638
+ msgid "Products tagged &ldquo;%s&rdquo;"
1639
  msgstr ""
1640
 
1641
+ #. translators: %s: tag name
1642
+ #: includes/class-wc-breadcrumb.php:276
1643
+ #, php-format
1644
+ msgid "Posts tagged &ldquo;%s&rdquo;"
1645
  msgstr ""
1646
 
1647
+ #. translators: %s: author name
1648
+ #: includes/class-wc-breadcrumb.php:319
1649
+ #, php-format
1650
+ msgid "Author: %s"
1651
  msgstr ""
1652
 
1653
+ #. translators: %s: search term
1654
+ #: includes/class-wc-breadcrumb.php:359
1655
+ #, php-format
1656
+ msgid "Search results for &ldquo;%s&rdquo;"
1657
  msgstr ""
1658
 
1659
+ #. translators: %d: page number
1660
+ #. translators: %d: Page number.
1661
+ #: includes/class-wc-breadcrumb.php:369 includes/class-wc-template-loader.php:410
1662
+ #, php-format
1663
+ msgid "Page %d"
1664
  msgstr ""
1665
 
1666
+ #: includes/class-wc-comments.php:147
1667
+ msgid "Please rate the product."
1668
  msgstr ""
1669
 
1670
+ #. translators: %s: stock amount
1671
+ #: includes/wc-formatting-functions.php:1134
1672
+ #, php-format
1673
+ msgid "Only %s left in stock"
1674
  msgstr ""
1675
 
1676
+ #. translators: %s: stock amount
1677
+ #: includes/wc-formatting-functions.php:1139
1678
+ #, php-format
1679
+ msgid "%s in stock"
1680
  msgstr ""
1681
 
1682
+ #: includes/wc-formatting-functions.php:1144
1683
+ msgid "(can be backordered)"
1684
  msgstr ""
1685
 
1686
+ #. translators: 1: price from 2: price to
1687
+ #: includes/wc-formatting-functions.php:1184
1688
+ #, php-format
1689
+ msgctxt "Price range: from-to"
1690
+ msgid "%1$s &ndash; %2$s"
1691
  msgstr ""
1692
 
1693
+ #: includes/wc-formatting-functions.php:1201 includes/wc-formatting-functions.php:1220 includes/wc-account-functions.php:346 templates/order/order-details-customer.php:36 templates/order/order-details-customer.php:54 templates/single-product/meta.php:31 templates/emails/email-addresses.php:31 includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:91 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:136 includes/admin/settings/class-wc-settings-emails.php:121 includes/admin/settings/class-wc-settings-emails.php:132 includes/admin/settings/class-wc-settings-accounts.php:169 includes/admin/settings/class-wc-settings-accounts.php:181 includes/admin/settings/class-wc-settings-accounts.php:190 includes/admin/settings/class-wc-settings-accounts.php:199 includes/admin/settings/class-wc-settings-accounts.php:208 includes/admin/list-tables/class-wc-admin-list-table-orders.php:606 includes/admin/list-tables/class-wc-admin-list-table-orders.php:607
1694
+ #: includes/admin/meta-boxes/class-wc-meta-box-order-data.php:387 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:90 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:99 includes/shipping/flat-rate/includes/settings-flat-rate.php:59 includes/shipping/flat-rate/includes/settings-flat-rate.php:70 includes/admin/settings/views/settings-tax.php:103 includes/admin/meta-boxes/views/html-order-shipping.php:24
1695
+ msgid "N/A"
1696
  msgstr ""
1697
 
1698
+ #: includes/wc-formatting-functions.php:1357 includes/admin/class-wc-admin-settings.php:626
1699
+ msgid "Day(s)"
1700
  msgstr ""
1701
 
1702
+ #: includes/wc-formatting-functions.php:1358 includes/admin/class-wc-admin-settings.php:627
1703
+ msgid "Week(s)"
1704
  msgstr ""
1705
 
1706
+ #: includes/wc-formatting-functions.php:1359 includes/admin/class-wc-admin-settings.php:628
1707
+ msgid "Month(s)"
1708
  msgstr ""
1709
 
1710
+ #: includes/wc-formatting-functions.php:1360 includes/admin/class-wc-admin-settings.php:629
1711
+ msgid "Year(s)"
1712
  msgstr ""
1713
 
1714
+ #. Translators: %s Prop name.
1715
+ #: includes/class-wc-privacy-erasers.php:82
1716
+ #, php-format
1717
+ msgid "Removed customer \"%s\""
1718
  msgstr ""
1719
 
1720
+ #. Translators: %s Order number.
1721
+ #: includes/class-wc-privacy-erasers.php:138
1722
+ #, php-format
1723
+ msgid "Removed personal data from order %s."
1724
  msgstr ""
1725
 
1726
+ #. Translators: %s Order number.
1727
+ #: includes/class-wc-privacy-erasers.php:142
1728
+ #, php-format
1729
+ msgid "Personal data within order %s has been retained."
1730
  msgstr ""
1731
 
1732
+ #: includes/class-wc-privacy-erasers.php:195
1733
+ msgid "Removed access to downloadable files."
1734
  msgstr ""
1735
 
1736
+ #: includes/class-wc-privacy-erasers.php:199
1737
+ msgid "Customer download permissions have been retained."
1738
  msgstr ""
1739
 
1740
+ #: includes/class-wc-privacy-erasers.php:339
1741
+ msgid "Personal data removed."
1742
  msgstr ""
1743
 
1744
+ #. Translators: %s Prop name.
1745
+ #: includes/class-wc-privacy-erasers.php:384
1746
+ #, php-format
1747
+ msgid "Removed payment token \"%d\""
1748
  msgstr ""
1749
 
1750
+ #: includes/wc-cart-functions.php:23
1751
+ msgid "This product is protected and cannot be purchased."
1752
  msgstr ""
1753
 
1754
+ #. translators: %s: product name
1755
+ #: includes/wc-cart-functions.php:110 includes/class-wc-form-handler.php:558
1756
+ #, php-format
1757
+ msgctxt "Item name in quotes"
1758
+ msgid "&ldquo;%s&rdquo;"
1759
  msgstr ""
1760
 
1761
+ #. translators: %s: product name
1762
+ #: includes/wc-cart-functions.php:116
1763
+ #, php-format
1764
+ msgid "%s has been added to your cart."
1765
+ msgid_plural "%s have been added to your cart."
1766
+ msgstr[0] ""
1767
+ msgstr[1] ""
1768
+
1769
+ #: includes/wc-cart-functions.php:121
1770
+ msgid "Continue shopping"
1771
  msgstr ""
1772
 
1773
+ #: includes/wc-cart-functions.php:153
1774
+ msgid "and"
1775
  msgstr ""
1776
 
1777
+ #. translators: %d: shipping package number
1778
+ #: includes/wc-cart-functions.php:228
1779
+ #, php-format
1780
+ msgctxt "shipping packages"
1781
+ msgid "Shipping %d"
1782
  msgstr ""
1783
 
1784
+ #: includes/wc-cart-functions.php:228
1785
+ msgctxt "shipping package"
1786
+ msgid "Shipping"
1787
  msgstr ""
1788
 
1789
+ #. translators: %s: coupon code
1790
+ #: includes/wc-cart-functions.php:259
1791
+ #, php-format
1792
+ msgid "Coupon: %s"
1793
  msgstr ""
1794
 
1795
+ #: includes/wc-cart-functions.php:284
1796
+ msgid "Free shipping coupon"
1797
  msgstr ""
1798
 
1799
+ #: includes/wc-cart-functions.php:288
1800
+ msgid "[Remove]"
1801
  msgstr ""
1802
 
1803
+ #. translators: %s: country name
1804
+ #: includes/wc-cart-functions.php:315
1805
+ #, php-format
1806
+ msgid "estimated for %s"
1807
  msgstr ""
1808
 
1809
+ #. translators: %s: taxes
1810
+ #. translators: %s: tax information
1811
+ #: includes/wc-cart-functions.php:317 includes/class-wc-order.php:177
1812
+ #, php-format
1813
+ msgid "(includes %s)"
1814
  msgstr ""
1815
 
1816
+ #. translators: %s: Product title
1817
+ #: includes/class-wc-product-grouped.php:53
1818
+ #, php-format
1819
+ msgid "View products in the &ldquo;%s&rdquo; group"
1820
  msgstr ""
1821
 
1822
+ #: includes/wc-account-functions.php:65
1823
+ msgctxt "edit-address-slug"
1824
+ msgid "billing"
1825
  msgstr ""
1826
 
1827
+ #: includes/wc-account-functions.php:66
1828
+ msgctxt "edit-address-slug"
1829
+ msgid "shipping"
1830
  msgstr ""
1831
 
1832
+ #: includes/wc-account-functions.php:98
1833
+ msgid "Dashboard"
1834
  msgstr ""
1835
 
1836
+ #: includes/wc-account-functions.php:100 includes/class-wc-query.php:118 templates/order/order-downloads.php:25 templates/emails/email-downloads.php:22 templates/emails/plain/email-downloads.php:20 includes/admin/views/html-admin-page-product-export.php:40 includes/admin/settings/class-wc-settings-advanced.php:240 includes/admin/importers/class-wc-product-csv-importer-controller.php:673
1837
+ msgid "Downloads"
1838
  msgstr ""
1839
 
1840
+ #: includes/wc-account-functions.php:101 includes/class-wc-query.php:124 includes/admin/settings/class-wc-settings-advanced.php:258
1841
+ msgid "Addresses"
1842
  msgstr ""
1843
 
1844
+ #: includes/wc-account-functions.php:102 includes/class-wc-query.php:127 includes/admin/settings/class-wc-settings-advanced.php:267 includes/admin/settings/class-wc-settings-payment-gateways.php:37 includes/admin/settings/class-wc-settings-payment-gateways.php:55
1845
+ msgid "Payment methods"
1846
  msgstr ""
1847
 
1848
+ #: includes/wc-account-functions.php:103 includes/class-wc-query.php:121
1849
+ msgid "Account details"
1850
  msgstr ""
1851
 
1852
+ #: includes/wc-account-functions.php:104 templates/auth/form-grant-access.php:39 includes/admin/settings/class-wc-settings-advanced.php:285
1853
+ msgid "Logout"
1854
  msgstr ""
1855
 
1856
+ #: includes/wc-account-functions.php:190 templates/myaccount/my-orders.php:13 includes/admin/class-wc-admin-dashboard.php:346 includes/admin/list-tables/class-wc-admin-list-table-orders.php:114 includes/admin/reports/class-wc-report-downloads.php:87 includes/admin/reports/class-wc-report-downloads.php:217 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:169 includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php:286
1857
+ msgid "Order"
1858
  msgstr ""
1859
 
1860
+ #: includes/wc-account-functions.php:191 templates/myaccount/my-orders.php:14 includes/widgets/class-wc-widget-products.php:53 includes/admin/list-tables/class-wc-admin-list-table-products.php:121 includes/admin/list-tables/class-wc-admin-list-table-orders.php:115 includes/admin/reports/class-wc-report-customers.php:235 includes/admin/reports/class-wc-report-sales-by-product.php:406 includes/admin/reports/class-wc-report-sales-by-date.php:604 includes/admin/reports/class-wc-report-sales-by-category.php:274 includes/admin/reports/class-wc-report-coupon-usage.php:367
1861
+ msgid "Date"
1862
  msgstr ""
1863
 
1864
+ #: includes/wc-account-functions.php:192 templates/myaccount/my-orders.php:15 includes/admin/class-wc-admin-menus.php:123 includes/admin/class-wc-admin-dashboard.php:347 includes/admin/class-wc-admin-webhooks-table-list.php:49 includes/admin/list-tables/class-wc-admin-list-table-orders.php:116 includes/admin/settings/views/html-webhooks-edit.php:36 includes/admin/meta-boxes/views/html-product-data-variations.php:58
1865
+ msgid "Status"
1866
  msgstr ""
1867
 
1868
+ #: includes/wc-account-functions.php:193 templates/order/order-details.php:46 templates/cart/cart-totals.php:92 templates/cart/cart-totals.php:93 templates/cart/cart.php:35 templates/cart/cart.php:120 templates/myaccount/my-orders.php:16 templates/checkout/review-order.php:27 templates/checkout/review-order.php:106 includes/admin/class-wc-admin-dashboard.php:348 includes/admin/list-tables/class-wc-admin-list-table-orders.php:119 includes/admin/list-tables/class-wc-admin-list-table-orders.php:440 includes/admin/reports/class-wc-report-taxes-by-code.php:183 includes/admin/meta-boxes/views/html-order-items.php:33 includes/admin/meta-boxes/views/html-order-items.php:202
1869
+ msgid "Total"
1870
  msgstr ""
1871
 
1872
+ #: includes/wc-account-functions.php:194 includes/admin/list-tables/class-wc-admin-list-table-orders.php:120 includes/admin/reports/class-wc-report-stock.php:177 includes/admin/reports/class-wc-report-customer-list.php:218
1873
+ msgid "Actions"
1874
  msgstr ""
1875
 
1876
+ #: includes/wc-account-functions.php:235 includes/admin/settings/class-wc-settings-payment-gateways.php:116
1877
+ msgid "Method"
1878
  msgstr ""
1879
 
1880
+ #: includes/wc-account-functions.php:251 includes/wc-account-functions.php:386 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:200
1881
+ msgid "Credit card"
1882
  msgstr ""
1883
 
1884
+ #: includes/wc-account-functions.php:252 includes/wc-account-functions.php:408
1885
+ msgid "eCheck"
1886
  msgstr ""
1887
 
1888
+ #: includes/wc-account-functions.php:273 templates/checkout/thankyou.php:33 includes/admin/settings/class-wc-settings-advanced.php:165
1889
+ msgid "Pay"
1890
  msgstr ""
1891
 
1892
+ #: includes/wc-account-functions.php:277 includes/admin/views/html-admin-page-status-logs.php:35 includes/admin/views/html-admin-page-status-logs.php:35 includes/admin/reports/class-wc-report-stock.php:142
1893
+ msgid "View"
1894
  msgstr ""
1895
 
1896
+ #: includes/wc-account-functions.php:281 includes/admin/class-wc-admin-post-types.php:769 includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:48 includes/admin/meta-boxes/views/html-order-items.php:257 includes/admin/meta-boxes/views/html-order-items.php:305 includes/admin/meta-boxes/views/html-product-data-variations.php:128 includes/admin/meta-boxes/views/html-product-data-general.php:60
1897
+ msgid "Cancel"
1898
  msgstr ""
1899
 
1900
+ #: includes/wc-account-functions.php:351 includes/admin/class-wc-admin-attributes.php:307 includes/admin/class-wc-admin-log-table-list.php:190 includes/admin/meta-boxes/class-wc-meta-box-product-images.php:56 includes/admin/meta-boxes/class-wc-meta-box-product-images.php:76 includes/admin/settings/views/html-admin-page-shipping-zones.php:78 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:120 includes/admin/meta-boxes/views/html-product-download.php:14 includes/admin/meta-boxes/views/html-product-variation-download.php:13
1901
+ msgid "Delete"
1902
  msgstr ""
1903
 
1904
+ #: includes/wc-account-functions.php:360 includes/admin/class-wc-admin-taxonomies.php:371
1905
+ msgid "Make default"
1906
  msgstr ""
1907
 
1908
+ #: includes/class-wc-auth.php:72 includes/admin/class-wc-admin-api-keys-table-list.php:151 includes/admin/settings/views/html-keys-edit.php:61
1909
+ msgid "Read"
1910
  msgstr ""
1911
 
1912
+ #: includes/class-wc-auth.php:73 includes/admin/class-wc-admin-api-keys-table-list.php:152 includes/admin/settings/views/html-keys-edit.php:62
1913
+ msgid "Write"
1914
  msgstr ""
1915
 
1916
+ #: includes/class-wc-auth.php:74 includes/admin/class-wc-admin-api-keys-table-list.php:153 includes/admin/settings/views/html-keys-edit.php:63
1917
+ msgid "Read/Write"
1918
  msgstr ""
1919
 
1920
+ #: includes/class-wc-auth.php:91
1921
+ msgid "View coupons"
1922
  msgstr ""
1923
 
1924
+ #: includes/class-wc-auth.php:92
1925
+ msgid "View customers"
1926
  msgstr ""
1927
 
1928
+ #: includes/class-wc-auth.php:93
1929
+ msgid "View orders and sales reports"
1930
  msgstr ""
1931
 
1932
+ #: includes/class-wc-auth.php:97 includes/class-wc-auth.php:104
1933
+ msgid "Create webhooks"
1934
  msgstr ""
1935
 
1936
+ #: includes/class-wc-auth.php:98
1937
+ msgid "Create coupons"
1938
  msgstr ""
1939
 
1940
+ #: includes/class-wc-auth.php:99
1941
+ msgid "Create customers"
1942
  msgstr ""
1943
 
1944
+ #: includes/class-wc-auth.php:100
1945
+ msgid "Create orders"
1946
  msgstr ""
1947
 
1948
+ #: includes/class-wc-auth.php:101
1949
+ msgid "Create products"
1950
  msgstr ""
1951
 
1952
+ #: includes/class-wc-auth.php:105
1953
+ msgid "View and manage coupons"
1954
  msgstr ""
1955
 
1956
+ #: includes/class-wc-auth.php:106
1957
+ msgid "View and manage customers"
1958
  msgstr ""
1959
 
1960
+ #: includes/class-wc-auth.php:107
1961
+ msgid "View and manage orders and sales reports"
1962
  msgstr ""
1963
 
1964
+ #: includes/class-wc-auth.php:108
1965
+ msgid "View and manage products"
1966
  msgstr ""
1967
 
1968
+ #. translators: %s: parameter
1969
+ #: includes/class-wc-auth.php:171 includes/api/legacy/v2/class-wc-api-products.php:228 includes/api/legacy/v2/class-wc-api-products.php:1981 includes/api/legacy/v2/class-wc-api-customers.php:363 includes/api/legacy/v2/class-wc-api-coupons.php:226 includes/api/legacy/v2/class-wc-api-server.php:430 includes/api/legacy/v1/class-wc-api-server.php:412 includes/api/legacy/v3/class-wc-api-products.php:277 includes/api/legacy/v3/class-wc-api-products.php:2539 includes/api/legacy/v3/class-wc-api-products.php:2938 includes/api/legacy/v3/class-wc-api-customers.php:364 includes/api/legacy/v3/class-wc-api-coupons.php:224 includes/api/legacy/v3/class-wc-api-server.php:431 includes/api/legacy/v3/class-wc-api-taxes.php:575
1970
+ #, php-format
1971
+ msgid "Missing parameter %s"
1972
  msgstr ""
1973
 
1974
+ #. translators: %s: scope
1975
+ #: includes/class-wc-auth.php:179
1976
+ #, php-format
1977
+ msgid "Invalid scope %s"
1978
  msgstr ""
1979
 
1980
+ #. translators: %s: url
1981
+ #: includes/class-wc-auth.php:187
1982
+ #, php-format
1983
+ msgid "The %s is not a valid URL"
1984
  msgstr ""
1985
 
1986
+ #: includes/class-wc-auth.php:194
1987
+ msgid "The callback_url needs to be over SSL"
1988
  msgstr ""
1989
 
1990
+ #. translators: 1: app name 2: scope 3: date 4: time
1991
+ #: includes/class-wc-auth.php:214
1992
+ #, php-format
1993
+ msgid "%1$s - API %2$s (created on %3$s at %4$s)."
1994
  msgstr ""
1995
 
1996
+ #: includes/class-wc-auth.php:280
1997
+ msgid "An error occurred in the request and at the time were unable to send the consumer data"
1998
  msgstr ""
1999
 
2000
+ #: includes/class-wc-auth.php:322
2001
+ msgid "API disabled!"
2002
  msgstr ""
2003
 
2004
+ #: includes/class-wc-auth.php:379
2005
+ msgid "Invalid nonce verification"
2006
  msgstr ""
2007
 
2008
+ #: includes/class-wc-auth.php:399
2009
+ msgid "You do not have permission to access this page"
2010
  msgstr ""
2011
 
2012
+ #. translators: %s: error message
2013
+ #: includes/class-wc-auth.php:405 includes/wc-rest-functions.php:92 includes/api/legacy/v2/class-wc-api-products.php:1711 includes/api/legacy/v3/class-wc-api-products.php:2244
2014
+ #, php-format
2015
+ msgid "Error: %s."
2016
  msgstr ""
2017
 
2018
+ #: includes/class-wc-auth.php:405
2019
+ msgid "Access denied"
2020
  msgstr ""
2021
 
2022
+ #: includes/class-wc-coupon.php:494
2023
+ msgid "Invalid discount type"
2024
  msgstr ""
2025
 
2026
+ #: includes/class-wc-coupon.php:513 includes/class-wc-coupon.php:517
2027
+ msgid "Invalid discount amount"
2028
  msgstr ""
2029
 
2030
+ #: includes/class-wc-coupon.php:693
2031
+ msgid "Invalid email address restriction"
2032
  msgstr ""
2033
 
2034
+ #: includes/class-wc-coupon.php:929
2035
+ msgid "Coupon code applied successfully."
2036
  msgstr ""
2037
 
2038
+ #: includes/class-wc-coupon.php:932
2039
+ msgid "Coupon code removed successfully."
2040
  msgstr ""
2041
 
2042
+ #: includes/class-wc-coupon.php:950 includes/class-wc-discounts.php:937
2043
+ msgid "Coupon is not valid."
2044
  msgstr ""
2045
 
2046
+ #. translators: %s: coupon code
2047
+ #: includes/class-wc-coupon.php:954 includes/class-wc-discounts.php:570
2048
+ #, php-format
2049
+ msgid "Coupon \"%s\" does not exist!"
2050
  msgstr ""
2051
 
2052
+ #. translators: %s: coupon code
2053
+ #: includes/class-wc-coupon.php:958
2054
+ #, php-format
2055
+ msgid "Sorry, it seems the coupon \"%s\" is invalid - it has now been removed from your order."
2056
  msgstr ""
2057
 
2058
+ #. translators: %s: coupon code
2059
+ #: includes/class-wc-coupon.php:962
2060
+ #, php-format
2061
+ msgid "Sorry, it seems the coupon \"%s\" is not yours - it has now been removed from your order."
2062
  msgstr ""
2063
 
2064
+ #: includes/class-wc-coupon.php:965 includes/abstracts/abstract-wc-order.php:943
2065
+ msgid "Coupon code already applied!"
2066
  msgstr ""
2067
 
2068
+ #. translators: %s: coupon code
2069
+ #: includes/class-wc-coupon.php:969
2070
+ #, php-format
2071
+ msgid "Sorry, coupon \"%s\" has already been applied and cannot be used in conjunction with other coupons."
2072
  msgstr ""
2073
 
2074
+ #: includes/class-wc-coupon.php:972 includes/class-wc-discounts.php:586 includes/class-wc-discounts.php:617
2075
+ msgid "Coupon usage limit has been reached."
2076
  msgstr ""
2077
 
2078
+ #: includes/class-wc-coupon.php:975 includes/class-wc-discounts.php:634
2079
+ msgid "This coupon has expired."
2080
  msgstr ""
2081
 
2082
+ #. translators: %s: coupon minimum amount
2083
+ #: includes/class-wc-coupon.php:979 includes/class-wc-discounts.php:652
2084
+ #, php-format
2085
+ msgid "The minimum spend for this coupon is %s."
2086
  msgstr ""
2087
 
2088
+ #. translators: %s: coupon maximum amount
2089
+ #: includes/class-wc-coupon.php:983 includes/class-wc-discounts.php:670
2090
+ #, php-format
2091
+ msgid "The maximum spend for this coupon is %s."
2092
  msgstr ""
2093
 
2094
+ #: includes/class-wc-coupon.php:986
2095
+ msgid "Sorry, this coupon is not applicable to your cart contents."
2096
  msgstr ""
2097
 
2098
+ #. translators: %s: products list
2099
+ #: includes/class-wc-coupon.php:1000 includes/class-wc-discounts.php:834
2100
+ #, php-format
2101
+ msgid "Sorry, this coupon is not applicable to the products: %s."
2102
  msgstr ""
2103
 
2104
+ #. translators: %s: categories list
2105
+ #: includes/class-wc-coupon.php:1020 includes/class-wc-discounts.php:875
2106
+ #, php-format
2107
+ msgid "Sorry, this coupon is not applicable to the categories: %s."
2108
  msgstr ""
2109
 
2110
+ #: includes/class-wc-coupon.php:1023 includes/class-wc-discounts.php:761
2111
+ msgid "Sorry, this coupon is not valid for sale items."
2112
  msgstr ""
2113
 
2114
+ #: includes/class-wc-coupon.php:1043
2115
+ msgid "Coupon does not exist!"
2116
  msgstr ""
2117
 
2118
+ #: includes/class-wc-coupon.php:1046
2119
+ msgid "Please enter a coupon code."
2120
  msgstr ""
2121
 
2122
+ #: includes/wc-coupon-functions.php:21
2123
+ msgid "Percentage discount"
2124
  msgstr ""
2125
 
2126
+ #: includes/wc-coupon-functions.php:22
2127
+ msgid "Fixed cart discount"
2128
  msgstr ""
2129
 
2130
+ #: includes/wc-coupon-functions.php:23
2131
+ msgid "Fixed product discount"
2132
  msgstr ""
2133
 
2134
+ #: includes/class-wc-webhook.php:397 includes/admin/class-wc-admin-post-types.php:134 includes/admin/class-wc-admin-post-types.php:153 includes/admin/class-wc-admin-post-types.php:172 includes/admin/settings/views/html-webhooks-edit.php:159 includes/admin/settings/views/html-webhooks-edit.php:168 includes/admin/settings/views/html-webhooks-edit.php:176
2135
+ msgid "M j, Y @ G:i"
2136
  msgstr ""
2137
 
2138
+ #. translators: error message
2139
+ #: includes/class-wc-webhook.php:519
2140
+ #, php-format
2141
+ msgid "Error: Delivery URL cannot be reached: %s"
2142
  msgstr ""
2143
 
2144
+ #. translators: error message
2145
+ #: includes/class-wc-webhook.php:524
2146
+ #, php-format
2147
+ msgid "Error: Delivery URL returned response code: %s"
2148
  msgstr ""
2149
 
2150
+ #: includes/class-wc-privacy.php:43 includes/class-wc-privacy.php:49
2151
+ msgid "Customer Orders"
2152
  msgstr ""
2153
 
2154
+ #: includes/class-wc-privacy.php:44 includes/class-wc-privacy.php:50
2155
+ msgid "Customer Downloads"
2156
  msgstr ""
2157
 
2158
+ #: includes/class-wc-privacy.php:45 includes/class-wc-privacy.php:51
2159
+ msgid "Customer Payment Tokens"
2160
  msgstr ""
2161
 
2162
+ #: includes/class-wc-privacy.php:72
2163
+ msgid "This sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy."
2164
  msgstr ""
2165
 
2166
+ #: includes/class-wc-privacy.php:75
2167
+ msgid "We collect information about you during the checkout process on our store."
2168
  msgstr ""
2169
 
2170
+ #: includes/class-wc-privacy.php:76
2171
+ msgid "What we collect and store"
2172
  msgstr ""
2173
 
2174
+ #: includes/class-wc-privacy.php:77
2175
+ msgid "While you visit our site, we’ll track:"
2176
  msgstr ""
2177
 
2178
+ #: includes/class-wc-privacy.php:79
2179
+ msgid "Products you’ve viewed: we’ll use this to, for example, show you products you’ve recently viewed"
2180
  msgstr ""
2181
 
2182
+ #: includes/class-wc-privacy.php:80
2183
+ msgid "Location, IP address and browser type: we’ll use this for purposes like estimating taxes and shipping"
2184
  msgstr ""
2185
 
2186
+ #: includes/class-wc-privacy.php:81
2187
+ msgid "Shipping address: we’ll ask you to enter this so we can, for instance, estimate shipping before you place an order, and send you the order!"
2188
  msgstr ""
2189
 
2190
+ #: includes/class-wc-privacy.php:83
2191
+ msgid "We’ll also use cookies to keep track of cart contents while you’re browsing our site."
2192
  msgstr ""
2193
 
2194
+ #: includes/class-wc-privacy.php:85
2195
+ msgid "Note: you may want to further detail your cookie policy, and link to that section from here."
2196
  msgstr ""
2197
 
2198
+ #: includes/class-wc-privacy.php:87
2199
+ msgid "When you purchase from us, we’ll ask you to provide information including your name, billing address, shipping address, email address, phone number, credit card/payment details and optional account information like username and password. We’ll use this information for purposes, such as, to:"
2200
  msgstr ""
2201
 
2202
+ #: includes/class-wc-privacy.php:89
2203
+ msgid "Send you information about your account and order"
2204
  msgstr ""
2205
 
2206
+ #: includes/class-wc-privacy.php:90
2207
+ msgid "Respond to your requests, including refunds and complaints"
2208
  msgstr ""
2209
 
2210
+ #: includes/class-wc-privacy.php:91
2211
+ msgid "Process payments and prevent fraud"
2212
  msgstr ""
2213
 
2214
+ #: includes/class-wc-privacy.php:92
2215
+ msgid "Set up your account for our store"
2216
  msgstr ""
2217
 
2218
+ #: includes/class-wc-privacy.php:93
2219
+ msgid "Comply with any legal obligations we have, such as calculating taxes"
2220
  msgstr ""
2221
 
2222
+ #: includes/class-wc-privacy.php:94
2223
+ msgid "Improve our store offerings"
2224
  msgstr ""
2225
 
2226
+ #: includes/class-wc-privacy.php:95
2227
+ msgid "Send you marketing messages, if you choose to receive them"
2228
  msgstr ""
2229
 
2230
+ #: includes/class-wc-privacy.php:97
2231
+ msgid "If you create an account, we will store your name, address, email and phone number, which will be used to populate the checkout for future orders."
2232
  msgstr ""
2233
 
2234
+ #: includes/class-wc-privacy.php:98
2235
+ msgid "We generally store information about you for as long as we need the information for the purposes for which we collect and use it, and we are not legally required to continue to keep it. For example, we will store order information for XXX years for tax and accounting purposes. This includes your name, email address and billing and shipping addresses."
2236
  msgstr ""
2237
 
2238
+ #: includes/class-wc-privacy.php:99
2239
+ msgid "We will also store comments or reviews, if you choose to leave them."
2240
  msgstr ""
2241
 
2242
+ #: includes/class-wc-privacy.php:100
2243
+ msgid "Who on our team has access"
2244
  msgstr ""
2245
 
2246
+ #: includes/class-wc-privacy.php:101
2247
+ msgid "Members of our team have access to the information you provide us. For example, both Administrators and Shop Managers can access:"
2248
  msgstr ""
2249
 
2250
+ #: includes/class-wc-privacy.php:103
2251
+ msgid "Order information like what was purchased, when it was purchased and where it should be sent, and"
2252
  msgstr ""
2253
 
2254
+ #: includes/class-wc-privacy.php:104
2255
+ msgid "Customer information like your name, email address, and billing and shipping information."
2256
  msgstr ""
2257
 
2258
+ #: includes/class-wc-privacy.php:106
2259
+ msgid "Our team members have access to this information to help fulfill orders, process refunds and support you."
2260
  msgstr ""
2261
 
2262
+ #: includes/class-wc-privacy.php:107
2263
+ msgid "What we share with others"
2264
  msgstr ""
2265
 
2266
+ #: includes/class-wc-privacy.php:109
2267
+ msgid "In this section you should list who you’re sharing data with, and for what purpose. This could include, but may not be limited to, analytics, marketing, payment gateways, shipping providers, and third party embeds."
2268
  msgstr ""
2269
 
2270
+ #: includes/class-wc-privacy.php:111
2271
+ msgid "We share information with third parties who help us provide our orders and store services to you; for example --"
2272
  msgstr ""
2273
 
2274
+ #: includes/class-wc-privacy.php:112
2275
+ msgid "Payments"
2276
  msgstr ""
2277
 
2278
+ #: includes/class-wc-privacy.php:114
2279
+ msgid "In this subsection you should list which third party payment processors you’re using to take payments on your store since these may handle customer data. We’ve included PayPal as an example, but you should remove this if you’re not using PayPal."
2280
  msgstr ""
2281
 
2282
+ #: includes/class-wc-privacy.php:116
2283
+ msgid "We accept payments through PayPal. When processing payments, some of your data will be passed to PayPal, including information required to process or support the payment, such as the purchase total and billing information."
2284
  msgstr ""
2285
 
2286
+ #: includes/class-wc-privacy.php:117
2287
+ msgid "Please see the <a href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">PayPal Privacy Policy</a> for more details."
2288
  msgstr ""
2289
 
2290
+ #: includes/class-wc-frontend-scripts.php:473
2291
+ msgid "Please select a rating"
2292
  msgstr ""
2293
 
2294
+ #: includes/class-wc-frontend-scripts.php:514
2295
+ msgid "Error processing checkout. Please try again."
2296
  msgstr ""
2297
 
2298
+ #: includes/class-wc-frontend-scripts.php:558
2299
+ msgid "Sorry, no products matched your selection. Please choose a different combination."
2300
  msgstr ""
2301
 
2302
+ #: includes/class-wc-frontend-scripts.php:559
2303
+ msgid "Please select some product options before adding this product to your cart."
2304
  msgstr ""
2305
 
2306
+ #: includes/class-wc-frontend-scripts.php:560 templates/single-product/add-to-cart/variation.php:23
2307
+ msgid "Sorry, this product is unavailable. Please choose a different combination."
2308
  msgstr ""
2309
 
2310
+ #: includes/class-wc-frontend-scripts.php:566 includes/admin/class-wc-admin-assets.php:259 includes/admin/class-wc-admin-assets.php:409 includes/admin/settings/views/html-webhooks-edit.php:67
2311
+ msgid "Select an option&hellip;"
2312
  msgstr ""
2313
 
2314
+ #: includes/class-wc-frontend-scripts.php:567 includes/widgets/class-wc-widget-layered-nav.php:302 includes/admin/class-wc-admin-setup-wizard.php:210 includes/admin/class-wc-admin-assets.php:115
2315
+ msgctxt "enhanced select"
2316
+ msgid "No matches found"
2317
  msgstr ""
2318
 
2319
+ #: includes/class-wc-frontend-scripts.php:568 includes/admin/class-wc-admin-setup-wizard.php:211 includes/admin/class-wc-admin-assets.php:116
2320
+ msgctxt "enhanced select"
2321
+ msgid "Loading failed"
2322
  msgstr ""
2323
 
2324
+ #: includes/class-wc-frontend-scripts.php:569 includes/admin/class-wc-admin-setup-wizard.php:212 includes/admin/class-wc-admin-assets.php:117
2325
+ msgctxt "enhanced select"
2326
+ msgid "Please enter 1 or more characters"
2327
  msgstr ""
2328
 
2329
+ #: includes/class-wc-frontend-scripts.php:570 includes/admin/class-wc-admin-setup-wizard.php:213 includes/admin/class-wc-admin-assets.php:118
2330
+ msgctxt "enhanced select"
2331
+ msgid "Please enter %qty% or more characters"
2332
  msgstr ""
2333
 
2334
+ #: includes/class-wc-frontend-scripts.php:571 includes/admin/class-wc-admin-setup-wizard.php:214 includes/admin/class-wc-admin-assets.php:119
2335
+ msgctxt "enhanced select"
2336
+ msgid "Please delete 1 character"
2337
  msgstr ""
2338
 
2339
+ #: includes/class-wc-frontend-scripts.php:572 includes/admin/class-wc-admin-setup-wizard.php:215 includes/admin/class-wc-admin-assets.php:120
2340
+ msgctxt "enhanced select"
2341
+ msgid "Please delete %qty% characters"
2342
  msgstr ""
2343
 
2344
+ #: includes/class-wc-frontend-scripts.php:573 includes/admin/class-wc-admin-setup-wizard.php:216 includes/admin/class-wc-admin-assets.php:121
2345
+ msgctxt "enhanced select"
2346
+ msgid "You can only select 1 item"
2347
  msgstr ""
2348
 
2349
+ #: includes/class-wc-frontend-scripts.php:574 includes/admin/class-wc-admin-setup-wizard.php:217 includes/admin/class-wc-admin-assets.php:122
2350
+ msgctxt "enhanced select"
2351
+ msgid "You can only select %qty% items"
2352
  msgstr ""
2353
 
2354
+ #: includes/class-wc-frontend-scripts.php:575 includes/admin/class-wc-admin-setup-wizard.php:218 includes/admin/class-wc-admin-assets.php:123
2355
+ msgctxt "enhanced select"
2356
+ msgid "Loading more results&hellip;"
2357
  msgstr ""
2358
 
2359
+ #: includes/class-wc-frontend-scripts.php:576 includes/admin/class-wc-admin-setup-wizard.php:219 includes/admin/class-wc-admin-assets.php:124
2360
+ msgctxt "enhanced select"
2361
+ msgid "Searching&hellip;"
2362
  msgstr ""
2363
 
2364
+ #: includes/class-wc-frontend-scripts.php:582
2365
+ msgid "Please enter a stronger password."
2366
  msgstr ""
2367
 
2368
+ #. translators: %s template
2369
+ #: includes/wc-core-functions.php:201
2370
+ #, php-format
2371
+ msgid "%s does not exist."
2372
  msgstr ""
2373
 
2374
+ #: includes/wc-core-functions.php:296
2375
+ msgid "United Arab Emirates dirham"
2376
  msgstr ""
2377
 
2378
+ #: includes/wc-core-functions.php:297
2379
+ msgid "Afghan afghani"
2380
  msgstr ""
2381
 
2382
+ #: includes/wc-core-functions.php:298
2383
+ msgid "Albanian lek"
2384
  msgstr ""
2385
 
2386
+ #: includes/wc-core-functions.php:299
2387
+ msgid "Armenian dram"
2388
  msgstr ""
2389
 
2390
+ #: includes/wc-core-functions.php:300
2391
+ msgid "Netherlands Antillean guilder"
2392
+ msgstr ""
2393
 
2394
+ #: includes/wc-core-functions.php:301
2395
+ msgid "Angolan kwanza"
2396
  msgstr ""
2397
 
2398
+ #: includes/wc-core-functions.php:302
2399
+ msgid "Argentine peso"
2400
  msgstr ""
2401
 
2402
+ #: includes/wc-core-functions.php:303
2403
+ msgid "Australian dollar"
2404
  msgstr ""
2405
 
2406
+ #: includes/wc-core-functions.php:304
2407
+ msgid "Aruban florin"
2408
  msgstr ""
2409
 
2410
+ #: includes/wc-core-functions.php:305
2411
+ msgid "Azerbaijani manat"
2412
  msgstr ""
2413
 
2414
+ #: includes/wc-core-functions.php:306
2415
+ msgid "Bosnia and Herzegovina convertible mark"
2416
  msgstr ""
2417
 
2418
+ #: includes/wc-core-functions.php:307
2419
+ msgid "Barbadian dollar"
2420
  msgstr ""
2421
 
2422
+ #: includes/wc-core-functions.php:308
2423
+ msgid "Bangladeshi taka"
2424
  msgstr ""
2425
 
2426
+ #: includes/wc-core-functions.php:309
2427
+ msgid "Bulgarian lev"
2428
  msgstr ""
2429
 
2430
+ #: includes/wc-core-functions.php:310
2431
+ msgid "Bahraini dinar"
2432
  msgstr ""
2433
 
2434
+ #: includes/wc-core-functions.php:311
2435
+ msgid "Burundian franc"
2436
  msgstr ""
2437
 
2438
+ #: includes/wc-core-functions.php:312
2439
+ msgid "Bermudian dollar"
2440
  msgstr ""
2441
 
2442
+ #: includes/wc-core-functions.php:313
2443
+ msgid "Brunei dollar"
2444
  msgstr ""
2445
 
2446
+ #: includes/wc-core-functions.php:314
2447
+ msgid "Bolivian boliviano"
2448
  msgstr ""
2449
 
2450
+ #: includes/wc-core-functions.php:315
2451
+ msgid "Brazilian real"
2452
  msgstr ""
2453
 
2454
+ #: includes/wc-core-functions.php:316
2455
+ msgid "Bahamian dollar"
2456
  msgstr ""
2457
 
2458
+ #: includes/wc-core-functions.php:317
2459
+ msgid "Bitcoin"
2460
  msgstr ""
2461
 
2462
+ #: includes/wc-core-functions.php:318
2463
+ msgid "Bhutanese ngultrum"
2464
  msgstr ""
2465
 
2466
+ #: includes/wc-core-functions.php:319
2467
+ msgid "Botswana pula"
2468
  msgstr ""
2469
 
2470
+ #: includes/wc-core-functions.php:320
2471
+ msgid "Belarusian ruble (old)"
2472
  msgstr ""
2473
 
2474
+ #: includes/wc-core-functions.php:321
2475
+ msgid "Belarusian ruble"
2476
  msgstr ""
2477
 
2478
+ #: includes/wc-core-functions.php:322
2479
+ msgid "Belize dollar"
2480
  msgstr ""
2481
 
2482
+ #: includes/wc-core-functions.php:323
2483
+ msgid "Canadian dollar"
2484
  msgstr ""
2485
 
2486
+ #: includes/wc-core-functions.php:324
2487
+ msgid "Congolese franc"
2488
  msgstr ""
2489
 
2490
+ #: includes/wc-core-functions.php:325
2491
+ msgid "Swiss franc"
2492
  msgstr ""
2493
 
2494
+ #: includes/wc-core-functions.php:326
2495
+ msgid "Chilean peso"
2496
  msgstr ""
2497
 
2498
+ #: includes/wc-core-functions.php:327
2499
+ msgid "Chinese yuan"
2500
  msgstr ""
2501
 
2502
+ #: includes/wc-core-functions.php:328
2503
+ msgid "Colombian peso"
2504
  msgstr ""
2505
 
2506
+ #: includes/wc-core-functions.php:329
2507
+ msgid "Costa Rican col&oacute;n"
2508
  msgstr ""
2509
 
2510
+ #: includes/wc-core-functions.php:330
2511
+ msgid "Cuban convertible peso"
2512
  msgstr ""
2513
 
2514
+ #: includes/wc-core-functions.php:331
2515
+ msgid "Cuban peso"
2516
  msgstr ""
2517
 
2518
+ #: includes/wc-core-functions.php:332
2519
+ msgid "Cape Verdean escudo"
2520
  msgstr ""
2521
 
2522
+ #: includes/wc-core-functions.php:333
2523
+ msgid "Czech koruna"
2524
  msgstr ""
2525
 
2526
+ #: includes/wc-core-functions.php:334
2527
+ msgid "Djiboutian franc"
2528
  msgstr ""
2529
 
2530
+ #: includes/wc-core-functions.php:335
2531
+ msgid "Danish krone"
2532
  msgstr ""
2533
 
2534
+ #: includes/wc-core-functions.php:336
2535
+ msgid "Dominican peso"
2536
  msgstr ""
2537
 
2538
+ #: includes/wc-core-functions.php:337
2539
+ msgid "Algerian dinar"
2540
  msgstr ""
2541
 
2542
+ #: includes/wc-core-functions.php:338
2543
+ msgid "Egyptian pound"
2544
  msgstr ""
2545
 
2546
+ #: includes/wc-core-functions.php:339
2547
+ msgid "Eritrean nakfa"
2548
  msgstr ""
2549
 
2550
+ #: includes/wc-core-functions.php:340
2551
+ msgid "Ethiopian birr"
2552
  msgstr ""
2553
 
2554
+ #: includes/wc-core-functions.php:341
2555
+ msgid "Euro"
2556
  msgstr ""
2557
 
2558
+ #: includes/wc-core-functions.php:342
2559
+ msgid "Fijian dollar"
2560
  msgstr ""
2561
 
2562
+ #: includes/wc-core-functions.php:343
2563
+ msgid "Falkland Islands pound"
2564
  msgstr ""
2565
 
2566
+ #: includes/wc-core-functions.php:344
2567
+ msgid "Pound sterling"
2568
  msgstr ""
2569
 
2570
+ #: includes/wc-core-functions.php:345
2571
+ msgid "Georgian lari"
2572
  msgstr ""
2573
 
2574
+ #: includes/wc-core-functions.php:346
2575
+ msgid "Guernsey pound"
2576
  msgstr ""
2577
 
2578
+ #: includes/wc-core-functions.php:347
2579
+ msgid "Ghana cedi"
2580
  msgstr ""
2581
 
2582
+ #: includes/wc-core-functions.php:348
2583
+ msgid "Gibraltar pound"
2584
  msgstr ""
2585
 
2586
+ #: includes/wc-core-functions.php:349
2587
+ msgid "Gambian dalasi"
2588
  msgstr ""
2589
 
2590
+ #: includes/wc-core-functions.php:350
2591
+ msgid "Guinean franc"
2592
  msgstr ""
2593
 
2594
+ #: includes/wc-core-functions.php:351
2595
+ msgid "Guatemalan quetzal"
2596
  msgstr ""
2597
 
2598
+ #: includes/wc-core-functions.php:352
2599
+ msgid "Guyanese dollar"
2600
  msgstr ""
2601
 
2602
+ #: includes/wc-core-functions.php:353
2603
+ msgid "Hong Kong dollar"
2604
  msgstr ""
2605
 
2606
+ #: includes/wc-core-functions.php:354
2607
+ msgid "Honduran lempira"
2608
  msgstr ""
2609
 
2610
+ #: includes/wc-core-functions.php:355
2611
+ msgid "Croatian kuna"
2612
  msgstr ""
2613
 
2614
+ #: includes/wc-core-functions.php:356
2615
+ msgid "Haitian gourde"
2616
  msgstr ""
2617
 
2618
+ #: includes/wc-core-functions.php:357
2619
+ msgid "Hungarian forint"
2620
  msgstr ""
2621
 
2622
+ #: includes/wc-core-functions.php:358
2623
+ msgid "Indonesian rupiah"
2624
  msgstr ""
2625
 
2626
+ #: includes/wc-core-functions.php:359
2627
+ msgid "Israeli new shekel"
2628
  msgstr ""
2629
 
2630
+ #: includes/wc-core-functions.php:360
2631
+ msgid "Manx pound"
2632
  msgstr ""
2633
 
2634
+ #: includes/wc-core-functions.php:361
2635
+ msgid "Indian rupee"
2636
  msgstr ""
2637
 
2638
+ #: includes/wc-core-functions.php:362
2639
+ msgid "Iraqi dinar"
2640
  msgstr ""
2641
 
2642
+ #: includes/wc-core-functions.php:363
2643
+ msgid "Iranian rial"
2644
  msgstr ""
2645
 
2646
+ #: includes/wc-core-functions.php:364
2647
+ msgid "Iranian toman"
2648
  msgstr ""
2649
 
2650
+ #: includes/wc-core-functions.php:365
2651
+ msgid "Icelandic kr&oacute;na"
2652
  msgstr ""
2653
 
2654
+ #: includes/wc-core-functions.php:366
2655
+ msgid "Jersey pound"
2656
  msgstr ""
2657
 
2658
+ #: includes/wc-core-functions.php:367
2659
+ msgid "Jamaican dollar"
2660
  msgstr ""
2661
 
2662
+ #: includes/wc-core-functions.php:368
2663
+ msgid "Jordanian dinar"
2664
  msgstr ""
2665
 
2666
+ #: includes/wc-core-functions.php:369
2667
+ msgid "Japanese yen"
2668
  msgstr ""
2669
 
2670
+ #: includes/wc-core-functions.php:370
2671
+ msgid "Kenyan shilling"
2672
  msgstr ""
2673
 
2674
+ #: includes/wc-core-functions.php:371
2675
+ msgid "Kyrgyzstani som"
2676
  msgstr ""
2677
 
2678
+ #: includes/wc-core-functions.php:372
2679
+ msgid "Cambodian riel"
2680
  msgstr ""
2681
 
2682
+ #: includes/wc-core-functions.php:373
2683
+ msgid "Comorian franc"
2684
  msgstr ""
2685
 
2686
+ #: includes/wc-core-functions.php:374
2687
+ msgid "North Korean won"
2688
  msgstr ""
2689
 
2690
+ #: includes/wc-core-functions.php:375
2691
+ msgid "South Korean won"
2692
  msgstr ""
2693
 
2694
+ #: includes/wc-core-functions.php:376
2695
+ msgid "Kuwaiti dinar"
2696
  msgstr ""
2697
 
2698
+ #: includes/wc-core-functions.php:377
2699
+ msgid "Cayman Islands dollar"
2700
  msgstr ""
2701
 
2702
+ #: includes/wc-core-functions.php:378
2703
+ msgid "Kazakhstani tenge"
2704
  msgstr ""
2705
 
2706
+ #: includes/wc-core-functions.php:379
2707
+ msgid "Lao kip"
2708
  msgstr ""
2709
 
2710
+ #: includes/wc-core-functions.php:380
2711
+ msgid "Lebanese pound"
2712
  msgstr ""
2713
 
2714
+ #: includes/wc-core-functions.php:381
2715
+ msgid "Sri Lankan rupee"
2716
  msgstr ""
2717
 
2718
+ #: includes/wc-core-functions.php:382
2719
+ msgid "Liberian dollar"
2720
  msgstr ""
2721
 
2722
+ #: includes/wc-core-functions.php:383
2723
+ msgid "Lesotho loti"
2724
  msgstr ""
2725
 
2726
+ #: includes/wc-core-functions.php:384
2727
+ msgid "Libyan dinar"
2728
  msgstr ""
2729
 
2730
+ #: includes/wc-core-functions.php:385
2731
+ msgid "Moroccan dirham"
2732
  msgstr ""
2733
 
2734
+ #: includes/wc-core-functions.php:386
2735
+ msgid "Moldovan leu"
2736
  msgstr ""
2737
 
2738
+ #: includes/wc-core-functions.php:387
2739
+ msgid "Malagasy ariary"
2740
  msgstr ""
2741
 
2742
+ #: includes/wc-core-functions.php:388
2743
+ msgid "Macedonian denar"
2744
  msgstr ""
2745
 
2746
+ #: includes/wc-core-functions.php:389
2747
+ msgid "Burmese kyat"
2748
  msgstr ""
2749
 
2750
+ #: includes/wc-core-functions.php:390
2751
+ msgid "Mongolian t&ouml;gr&ouml;g"
2752
  msgstr ""
2753
 
2754
+ #: includes/wc-core-functions.php:391
2755
+ msgid "Macanese pataca"
2756
  msgstr ""
2757
 
2758
+ #: includes/wc-core-functions.php:392
2759
+ msgid "Mauritanian ouguiya"
2760
  msgstr ""
2761
 
2762
+ #: includes/wc-core-functions.php:393
2763
+ msgid "Mauritian rupee"
2764
  msgstr ""
2765
 
2766
+ #: includes/wc-core-functions.php:394
2767
+ msgid "Maldivian rufiyaa"
2768
  msgstr ""
2769
 
2770
+ #: includes/wc-core-functions.php:395
2771
+ msgid "Malawian kwacha"
2772
  msgstr ""
2773
 
2774
+ #: includes/wc-core-functions.php:396
2775
+ msgid "Mexican peso"
2776
  msgstr ""
2777
 
2778
+ #: includes/wc-core-functions.php:397
2779
+ msgid "Malaysian ringgit"
2780
  msgstr ""
2781
 
2782
+ #: includes/wc-core-functions.php:398
2783
+ msgid "Mozambican metical"
2784
  msgstr ""
2785
 
2786
+ #: includes/wc-core-functions.php:399
2787
+ msgid "Namibian dollar"
2788
  msgstr ""
2789
 
2790
+ #: includes/wc-core-functions.php:400
2791
+ msgid "Nigerian naira"
2792
  msgstr ""
2793
 
2794
+ #: includes/wc-core-functions.php:401
2795
+ msgid "Nicaraguan c&oacute;rdoba"
2796
  msgstr ""
2797
 
2798
+ #: includes/wc-core-functions.php:402
2799
+ msgid "Norwegian krone"
2800
  msgstr ""
2801
 
2802
+ #: includes/wc-core-functions.php:403
2803
+ msgid "Nepalese rupee"
2804
  msgstr ""
2805
 
2806
+ #: includes/wc-core-functions.php:404
2807
+ msgid "New Zealand dollar"
2808
  msgstr ""
2809
 
2810
+ #: includes/wc-core-functions.php:405
2811
+ msgid "Omani rial"
2812
  msgstr ""
2813
 
2814
+ #: includes/wc-core-functions.php:406
2815
+ msgid "Panamanian balboa"
2816
  msgstr ""
2817
 
2818
+ #: includes/wc-core-functions.php:407
2819
+ msgid "Peruvian nuevo sol"
2820
  msgstr ""
2821
 
2822
+ #: includes/wc-core-functions.php:408
2823
+ msgid "Papua New Guinean kina"
2824
  msgstr ""
2825
 
2826
+ #: includes/wc-core-functions.php:409
2827
+ msgid "Philippine peso"
2828
  msgstr ""
2829
 
2830
+ #: includes/wc-core-functions.php:410
2831
+ msgid "Pakistani rupee"
2832
  msgstr ""
2833
 
2834
+ #: includes/wc-core-functions.php:411
2835
+ msgid "Polish z&#x142;oty"
2836
  msgstr ""
2837
 
2838
+ #: includes/wc-core-functions.php:412
2839
+ msgid "Transnistrian ruble"
2840
  msgstr ""
2841
 
2842
+ #: includes/wc-core-functions.php:413
2843
+ msgid "Paraguayan guaran&iacute;"
2844
  msgstr ""
2845
 
2846
+ #: includes/wc-core-functions.php:414
2847
+ msgid "Qatari riyal"
2848
  msgstr ""
2849
 
2850
+ #: includes/wc-core-functions.php:415
2851
+ msgid "Romanian leu"
2852
  msgstr ""
2853
 
2854
+ #: includes/wc-core-functions.php:416
2855
+ msgid "Serbian dinar"
2856
  msgstr ""
2857
 
2858
+ #: includes/wc-core-functions.php:417
2859
+ msgid "Russian ruble"
2860
  msgstr ""
2861
 
2862
+ #: includes/wc-core-functions.php:418
2863
+ msgid "Rwandan franc"
2864
  msgstr ""
2865
 
2866
+ #: includes/wc-core-functions.php:419
2867
+ msgid "Saudi riyal"
2868
  msgstr ""
2869
 
2870
+ #: includes/wc-core-functions.php:420
2871
+ msgid "Solomon Islands dollar"
2872
  msgstr ""
2873
 
2874
+ #: includes/wc-core-functions.php:421
2875
+ msgid "Seychellois rupee"
2876
  msgstr ""
2877
 
2878
+ #: includes/wc-core-functions.php:422
2879
+ msgid "Sudanese pound"
2880
  msgstr ""
2881
 
2882
+ #: includes/wc-core-functions.php:423
2883
+ msgid "Swedish krona"
2884
  msgstr ""
2885
 
2886
+ #: includes/wc-core-functions.php:424
2887
+ msgid "Singapore dollar"
2888
  msgstr ""
2889
 
2890
+ #: includes/wc-core-functions.php:425
2891
+ msgid "Saint Helena pound"
2892
  msgstr ""
2893
 
2894
+ #: includes/wc-core-functions.php:426
2895
+ msgid "Sierra Leonean leone"
2896
  msgstr ""
2897
 
2898
+ #: includes/wc-core-functions.php:427
2899
+ msgid "Somali shilling"
2900
  msgstr ""
2901
 
2902
+ #: includes/wc-core-functions.php:428
2903
+ msgid "Surinamese dollar"
2904
  msgstr ""
2905
 
2906
+ #: includes/wc-core-functions.php:429
2907
+ msgid "South Sudanese pound"
2908
  msgstr ""
2909
 
2910
+ #: includes/wc-core-functions.php:430
2911
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe dobra"
2912
  msgstr ""
2913
 
2914
+ #: includes/wc-core-functions.php:431
2915
+ msgid "Syrian pound"
2916
  msgstr ""
2917
 
2918
+ #: includes/wc-core-functions.php:432
2919
+ msgid "Swazi lilangeni"
2920
  msgstr ""
2921
 
2922
+ #: includes/wc-core-functions.php:433
2923
+ msgid "Thai baht"
2924
  msgstr ""
2925
 
2926
+ #: includes/wc-core-functions.php:434
2927
+ msgid "Tajikistani somoni"
2928
  msgstr ""
2929
 
2930
+ #: includes/wc-core-functions.php:435
2931
+ msgid "Turkmenistan manat"
2932
  msgstr ""
2933
 
2934
+ #: includes/wc-core-functions.php:436
2935
+ msgid "Tunisian dinar"
2936
  msgstr ""
2937
 
2938
+ #: includes/wc-core-functions.php:437
2939
+ msgid "Tongan pa&#x2bb;anga"
2940
  msgstr ""
2941
 
2942
+ #: includes/wc-core-functions.php:438
2943
+ msgid "Turkish lira"
2944
  msgstr ""
2945
 
2946
+ #: includes/wc-core-functions.php:439
2947
+ msgid "Trinidad and Tobago dollar"
2948
  msgstr ""
2949
 
2950
+ #: includes/wc-core-functions.php:440
2951
+ msgid "New Taiwan dollar"
2952
  msgstr ""
2953
 
2954
+ #: includes/wc-core-functions.php:441
2955
+ msgid "Tanzanian shilling"
2956
  msgstr ""
2957
 
2958
+ #: includes/wc-core-functions.php:442
2959
+ msgid "Ukrainian hryvnia"
2960
  msgstr ""
2961
 
2962
+ #: includes/wc-core-functions.php:443
2963
+ msgid "Ugandan shilling"
2964
  msgstr ""
2965
 
2966
+ #: includes/wc-core-functions.php:444
2967
+ msgid "United States (US) dollar"
2968
  msgstr ""
2969
 
2970
+ #: includes/wc-core-functions.php:445
2971
+ msgid "Uruguayan peso"
2972
  msgstr ""
2973
 
2974
+ #: includes/wc-core-functions.php:446
2975
+ msgid "Uzbekistani som"
2976
  msgstr ""
2977
 
2978
+ #: includes/wc-core-functions.php:447
2979
+ msgid "Venezuelan bol&iacute;var"
2980
  msgstr ""
2981
 
2982
+ #: includes/wc-core-functions.php:448
2983
+ msgid "Vietnamese &#x111;&#x1ed3;ng"
2984
  msgstr ""
2985
 
2986
+ #: includes/wc-core-functions.php:449
2987
+ msgid "Vanuatu vatu"
2988
  msgstr ""
2989
 
2990
+ #: includes/wc-core-functions.php:450
2991
+ msgid "Samoan t&#x101;l&#x101;"
2992
  msgstr ""
2993
 
2994
+ #: includes/wc-core-functions.php:451
2995
+ msgid "Central African CFA franc"
2996
  msgstr ""
2997
 
2998
+ #: includes/wc-core-functions.php:452
2999
+ msgid "East Caribbean dollar"
3000
  msgstr ""
3001
 
3002
+ #: includes/wc-core-functions.php:453
3003
+ msgid "West African CFA franc"
3004
  msgstr ""
3005
 
3006
+ #: includes/wc-core-functions.php:454
3007
+ msgid "CFP franc"
3008
  msgstr ""
3009
 
3010
+ #: includes/wc-core-functions.php:455
3011
+ msgid "Yemeni rial"
3012
  msgstr ""
3013
 
3014
+ #: includes/wc-core-functions.php:456
3015
+ msgid "South African rand"
3016
  msgstr ""
3017
 
3018
+ #: includes/wc-core-functions.php:457
3019
+ msgid "Zambian kwacha"
3020
  msgstr ""
3021
 
3022
+ #: includes/wc-core-functions.php:1321
3023
+ msgid "MasterCard"
3024
  msgstr ""
3025
 
3026
+ #: includes/wc-core-functions.php:1322
3027
+ msgid "Visa"
3028
  msgstr ""
3029
 
3030
+ #: includes/wc-core-functions.php:1323
3031
+ msgid "Discover"
3032
  msgstr ""
3033
 
3034
+ #: includes/wc-core-functions.php:1324
3035
+ msgid "American Express"
3036
  msgstr ""
3037
 
3038
+ #: includes/wc-core-functions.php:1325
3039
+ msgid "Diners"
3040
  msgstr ""
3041
 
3042
+ #: includes/wc-core-functions.php:1326
3043
+ msgid "JCB"
3044
  msgstr ""
3045
 
3046
+ #. translators: 1: class name 2: woocommerce_logging_class 3:
3047
+ #. WC_Logger_Interface
3048
+ #: includes/wc-core-functions.php:1651
3049
+ #, php-format
3050
+ msgid "The class %1$s provided by %2$s filter must implement %3$s."
3051
  msgstr ""
3052
 
3053
+ #: includes/class-wc-customer-download.php:299
3054
+ msgid "Invalid permission ID."
3055
  msgstr ""
3056
 
3057
+ #: includes/wc-term-functions.php:194
3058
+ msgid "Select a category"
3059
  msgstr ""
3060
 
3061
+ #. translators: %s: field name
3062
+ #: includes/class-wc-form-handler.php:117 includes/class-wc-form-handler.php:248 includes/class-wc-checkout.php:722
3063
+ #, php-format
3064
+ msgid "%s is a required field."
3065
  msgstr ""
3066
 
3067
+ #: includes/class-wc-form-handler.php:130 includes/shortcodes/class-wc-shortcode-cart.php:33
3068
+ msgid "Please enter a valid postcode / ZIP."
3069
  msgstr ""
3070
 
3071
+ #. translators: %s: phone number
3072
+ #: includes/class-wc-form-handler.php:139 includes/class-wc-checkout.php:686
3073
+ #, php-format
3074
+ msgid "%s is not a valid phone number."
3075
  msgstr ""
3076
 
3077
+ #. translators: %s: email address
3078
+ #: includes/class-wc-form-handler.php:146 includes/class-wc-checkout.php:695
3079
+ #, php-format
3080
+ msgid "%s is not a valid email address."
3081
  msgstr ""
3082
 
3083
+ #: includes/class-wc-form-handler.php:176
3084
+ msgid "Address changed successfully."
3085
  msgstr ""
3086
 
3087
+ #: includes/class-wc-form-handler.php:235
3088
+ msgid "Display name cannot be changed to email address due to privacy concern."
3089
  msgstr ""
3090
 
3091
+ #: includes/class-wc-form-handler.php:242 templates/myaccount/form-edit-account.php:37
3092
+ msgid "Display name"
3093
  msgstr ""
3094
 
3095
+ #: includes/class-wc-form-handler.php:255 includes/wc-user-functions.php:44
3096
+ msgid "Please provide a valid email address."
3097
  msgstr ""
3098
 
3099
+ #: includes/class-wc-form-handler.php:257
3100
+ msgid "This email address is already registered."
3101
  msgstr ""
3102
 
3103
+ #: includes/class-wc-form-handler.php:263
3104
+ msgid "Please fill out all password fields."
3105
  msgstr ""
3106
 
3107
+ #: includes/class-wc-form-handler.php:266
3108
+ msgid "Please enter your current password."
3109
  msgstr ""
3110
 
3111
+ #: includes/class-wc-form-handler.php:269
3112
+ msgid "Please re-enter your password."
3113
  msgstr ""
3114
 
3115
+ #: includes/class-wc-form-handler.php:272
3116
+ msgid "New passwords do not match."
3117
  msgstr ""
3118
 
3119
+ #: includes/class-wc-form-handler.php:275
3120
+ msgid "Your current password is incorrect."
3121
  msgstr ""
3122
 
3123
+ #: includes/class-wc-form-handler.php:316
3124
+ msgid "Account details changed successfully."
3125
  msgstr ""
3126
 
3127
+ #: includes/class-wc-form-handler.php:379 includes/class-wc-checkout.php:740
3128
+ msgid "Please read and accept the terms and conditions to proceed with your order."
3129
  msgstr ""
3130
 
3131
+ #: includes/class-wc-form-handler.php:389 includes/class-wc-form-handler.php:494 includes/class-wc-form-handler.php:519 includes/class-wc-checkout.php:766
3132
+ msgid "Invalid payment method."
3133
  msgstr ""
3134
 
3135
+ #: includes/class-wc-form-handler.php:453
3136
+ msgid "Invalid payment gateway."
3137
  msgstr ""
3138
 
3139
+ #: includes/class-wc-form-handler.php:466
3140
+ msgid "Payment method successfully added."
3141
  msgstr ""
3142
 
3143
+ #: includes/class-wc-form-handler.php:470
3144
+ msgid "Unable to add payment method to your account."
3145
  msgstr ""
3146
 
3147
+ #: includes/class-wc-form-handler.php:497
3148
+ msgid "Payment method deleted."
3149
  msgstr ""
3150
 
3151
+ #: includes/class-wc-form-handler.php:522
3152
+ msgid "This payment method was successfully set as your default."
3153
  msgstr ""
3154
 
3155
+ #: includes/class-wc-form-handler.php:558 includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php:471 includes/admin/meta-boxes/views/html-order-items.php:29
3156
+ msgid "Item"
3157
  msgstr ""
3158
 
3159
+ #. Translators: %s Product title.
3160
+ #: includes/class-wc-form-handler.php:563 includes/class-wc-form-handler.php:567
3161
+ #, php-format
3162
+ msgid "%s removed."
3163
  msgstr ""
3164
 
3165
+ #: includes/class-wc-form-handler.php:564
3166
+ msgid "Undo?"
3167
  msgstr ""
3168
 
3169
+ #. Translators: %s Product title.
3170
+ #: includes/class-wc-form-handler.php:619
3171
+ #, php-format
3172
+ msgid "You can only have 1 %s in your cart."
3173
  msgstr ""
3174
 
3175
+ #: includes/class-wc-form-handler.php:641
3176
+ msgid "Cart updated."
3177
  msgstr ""
3178
 
3179
+ #: includes/class-wc-form-handler.php:720
3180
+ #, php-format
3181
+ msgid "%d item from your previous order is currently unavailable and could not be added to your cart."
3182
+ msgid_plural "%d items from your previous order are currently unavailable and could not be added to your cart."
3183
+ msgstr[0] ""
3184
+ msgstr[1] ""
3185
 
3186
+ #: includes/class-wc-form-handler.php:731
3187
+ msgid "The cart has been filled with the items from your previous order."
3188
  msgstr ""
3189
 
3190
+ #: includes/class-wc-form-handler.php:764
3191
+ msgid "Order cancelled by customer."
3192
  msgstr ""
3193
 
3194
+ #: includes/class-wc-form-handler.php:767
3195
+ msgid "Your order was cancelled."
3196
  msgstr ""
3197
 
3198
+ #: includes/class-wc-form-handler.php:772
3199
+ msgid "Your order can no longer be cancelled. Please contact us if you need assistance."
3200
  msgstr ""
3201
 
3202
+ #: includes/class-wc-form-handler.php:883
3203
+ msgid "Please choose the quantity of items you wish to add to your cart&hellip;"
3204
  msgstr ""
3205
 
3206
+ #: includes/class-wc-form-handler.php:891
3207
+ msgid "Please choose a product to add to your cart&hellip;"
3208
  msgstr ""
3209
 
3210
+ #: includes/class-wc-form-handler.php:955
3211
+ msgid "Please choose product options&hellip;"
3212
  msgstr ""
3213
 
3214
+ #: includes/class-wc-form-handler.php:985
3215
+ #, php-format
3216
+ msgid "Invalid value posted for %s"
3217
  msgstr ""
3218
 
3219
+ #: includes/class-wc-form-handler.php:992
3220
+ #, php-format
3221
+ msgid "%s is a required field"
3222
+ msgid_plural "%s are required fields"
3223
+ msgstr[0] ""
3224
+ msgstr[1] ""
3225
+
3226
+ #: includes/class-wc-form-handler.php:1029 includes/class-wc-form-handler.php:1033 includes/class-wc-form-handler.php:1182 includes/wc-user-functions.php:108
3227
+ msgid "Error:"
3228
  msgstr ""
3229
 
3230
+ #: includes/class-wc-form-handler.php:1033
3231
+ msgid "Username is required."
3232
  msgstr ""
3233
 
3234
+ #: includes/class-wc-form-handler.php:1116
3235
+ msgid "Please enter your password."
3236
  msgstr ""
3237
 
3238
+ #: includes/class-wc-form-handler.php:1120
3239
+ msgid "Passwords do not match."
3240
  msgstr ""
3241
 
3242
+ #: includes/class-wc-checkout.php:215
3243
+ msgid "Order notes"
3244
  msgstr ""
3245
 
3246
+ #: includes/class-wc-checkout.php:216
3247
+ msgid "Notes about your order, e.g. special notes for delivery."
3248
  msgstr ""
3249
 
3250
+ #: includes/class-wc-checkout.php:227
3251
+ msgid "Account username"
3252
  msgstr ""
3253
 
3254
+ #: includes/class-wc-checkout.php:229 templates/myaccount/form-login.php:83 includes/admin/reports/class-wc-report-customer-list.php:212
3255
+ msgid "Username"
3256
  msgstr ""
3257
 
3258
+ #: includes/class-wc-checkout.php:236
3259
+ msgid "Create account password"
3260
  msgstr ""
3261
 
3262
+ #: includes/class-wc-checkout.php:238 templates/global/form-login.php:39 templates/auth/form-login.php:44 templates/myaccount/form-login.php:47 templates/myaccount/form-login.php:97
3263
+ msgid "Password"
3264
  msgstr ""
3265
 
3266
+ #. translators: %s: field name
3267
+ #: includes/class-wc-checkout.php:663
3268
+ #, php-format
3269
+ msgid "Shipping %s"
3270
  msgstr ""
3271
 
3272
+ #. translators: %s: field name
3273
+ #: includes/class-wc-checkout.php:667
3274
+ #, php-format
3275
+ msgid "Billing %s"
3276
  msgstr ""
3277
 
3278
+ #. translators: %s: field name
3279
+ #: includes/class-wc-checkout.php:677
3280
+ #, php-format
3281
+ msgid "%s is not a valid postcode / ZIP."
3282
  msgstr ""
3283
 
3284
+ #. translators: 1: state field 2: valid states
3285
+ #: includes/class-wc-checkout.php:715
3286
+ #, php-format
3287
+ msgid "%1$s is not valid. Please enter one of the following: %2$s"
3288
  msgstr ""
3289
 
3290
+ #: includes/class-wc-checkout.php:747
3291
+ msgid "Please enter an address to continue."
3292
  msgstr ""
3293
 
3294
+ #. translators: %s: shipping location
3295
+ #: includes/class-wc-checkout.php:750
3296
+ #, php-format
3297
+ msgid "Unfortunately <strong>we do not ship %s</strong>. Please enter an alternative shipping address."
3298
  msgstr ""
3299
 
3300
+ #: includes/class-wc-checkout.php:756
3301
+ msgid "No shipping method has been selected. Please double check your address, or contact us if you need any help."
3302
  msgstr ""
3303
 
3304
+ #: includes/class-wc-checkout.php:1000
3305
+ msgid "We were unable to process your order, please try again."
3306
  msgstr ""
3307
 
3308
+ #. translators: %s: shop cart url
3309
+ #: includes/class-wc-checkout.php:1010
3310
+ #, php-format
3311
+ msgid "Sorry, your session has expired. <a href=\"%s\" class=\"wc-backward\">Return to shop</a>"
3312
  msgstr ""
3313
 
3314
+ #: includes/class-wc-checkout.php:1038
3315
+ msgid "Unable to create order."
3316
  msgstr ""
3317
 
3318
+ #: includes/class-wc-discounts.php:246 includes/abstracts/abstract-wc-order.php:936
3319
+ msgid "Invalid coupon"
3320
  msgstr ""
3321
 
3322
+ #: includes/class-wc-discounts.php:696 includes/class-wc-discounts.php:734 includes/class-wc-discounts.php:789
3323
+ msgid "Sorry, this coupon is not applicable to selected products."
3324
  msgstr ""
3325
 
3326
+ #: includes/class-wc-order.php:139
3327
+ msgid "Payment complete event failed."
3328
  msgstr ""
3329
 
3330
+ #: includes/class-wc-order.php:243
3331
+ msgid "Error saving order."
3332
  msgstr ""
3333
 
3334
+ #: includes/class-wc-order.php:339
3335
+ msgid "Update status event failed."
3336
  msgstr ""
3337
 
3338
+ #. translators: 1: old order status 2: new order status
3339
+ #: includes/class-wc-order.php:360
3340
+ #, php-format
3341
+ msgid "Order status changed from %1$s to %2$s."
3342
  msgstr ""
3343
 
3344
+ #. translators: %s: new order status
3345
+ #: includes/class-wc-order.php:366
3346
+ #, php-format
3347
+ msgid "Order status set to %s."
3348
  msgstr ""
3349
 
3350
+ #: includes/class-wc-order.php:379
3351
+ msgid "Error during status transition."
3352
  msgstr ""
3353
 
3354
+ #. translators: 1: first name 2: last name
3355
+ #: includes/class-wc-order.php:848 includes/class-wc-order.php:858 includes/api/class-wc-rest-network-orders-controller.php:127 includes/admin/list-tables/class-wc-admin-list-table-orders.php:168
3356
+ #, php-format
3357
+ msgctxt "full name"
3358
+ msgid "%1$s %2$s"
3359
  msgstr ""
3360
 
3361
+ #: includes/class-wc-order.php:1954 templates/checkout/order-receipt.php:39 templates/checkout/thankyou.php:69 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:385
3362
+ msgid "Payment method:"
3363
  msgstr ""
3364
 
3365
+ #: includes/class-wc-order.php:1971 includes/admin/meta-boxes/views/html-order-items.php:235
3366
+ msgid "Refund"
3367
  msgstr ""
3368
 
3369
+ #. translators: 1: class name 2: WC_Log_Handler_Interface
3370
+ #: includes/class-wc-logger.php:54
3371
+ #, php-format
3372
+ msgid "The provided handler %1$s does not implement %2$s."
3373
  msgstr ""
3374
 
3375
+ #. translators: 1: WC_Logger::log 2: level
3376
+ #: includes/class-wc-logger.php:128
3377
+ #, php-format
3378
+ msgid "%1$s was called with an invalid level \"%2$s\"."
3379
  msgstr ""
3380
 
3381
+ #. translators: 1: key 2: URL
3382
+ #: includes/class-wc-cache-helper.php:206
3383
+ #, php-format
3384
+ msgid "In order for <strong>database caching</strong> to work with WooCommerce you must add %1$s to the \"Ignored Query Strings\" option in <a href=\"%2$s\">W3 Total Cache settings</a>."
3385
  msgstr ""
3386
 
3387
+ #: includes/class-wc-embed.php:103
3388
+ msgid "Buy now"
3389
  msgstr ""
3390
 
3391
+ #: includes/class-wc-download-handler.php:39 includes/class-wc-download-handler.php:44 includes/class-wc-download-handler.php:59 includes/class-wc-download-handler.php:77
3392
+ msgid "Invalid download link."
3393
  msgstr ""
3394
 
3395
+ #: includes/class-wc-download-handler.php:137
3396
+ msgid "Sorry, you have reached your download limit for this file"
3397
  msgstr ""
3398
 
3399
+ #: includes/class-wc-download-handler.php:148
3400
+ msgid "Sorry, this download has expired"
3401
  msgstr ""
3402
 
3403
+ #: includes/class-wc-download-handler.php:161 includes/class-wc-download-handler.php:164
3404
+ msgid "You must be logged in to download files."
3405
  msgstr ""
3406
 
3407
+ #: includes/class-wc-download-handler.php:164 templates/global/form-login.php:48 templates/global/form-login.php:48 templates/auth/form-login.php:49 templates/auth/form-login.php:49 templates/myaccount/form-login.php:36 includes/admin/settings/class-wc-settings-accounts.php:51
3408
+ msgid "Login"
3409
  msgstr ""
3410
 
3411
+ #: includes/class-wc-download-handler.php:164
3412
+ msgid "Log in to Download Files"
3413
  msgstr ""
3414
 
3415
+ #: includes/class-wc-download-handler.php:167
3416
+ msgid "This is not your download link."
3417
  msgstr ""
3418
 
3419
+ #: includes/class-wc-download-handler.php:188
3420
+ msgid "No file defined"
3421
  msgstr ""
3422
 
3423
+ #: includes/class-wc-download-handler.php:390
3424
+ msgid "File not found"
3425
  msgstr ""
3426
 
3427
+ #: includes/class-wc-download-handler.php:576
3428
+ msgid "Go to shop"
3429
  msgstr ""
3430
 
3431
+ #: includes/wc-user-functions.php:48
3432
+ msgid "An account is already registered with your email address. Please log in."
3433
  msgstr ""
3434
 
3435
+ #: includes/wc-user-functions.php:56
3436
+ msgid "Please enter a valid account username."
3437
  msgstr ""
3438
 
3439
+ #: includes/wc-user-functions.php:60
3440
+ msgid "An account is already registered with that username. Please choose another."
3441
  msgstr ""
3442
 
3443
+ #: includes/wc-user-functions.php:80
3444
+ msgid "Please enter an account password."
3445
  msgstr ""
3446
 
3447
+ #: includes/wc-user-functions.php:108
3448
+ msgid "Couldn&#8217;t register you&hellip; please contact us if you continue to have problems."
3449
  msgstr ""
3450
 
3451
+ #: includes/wc-notice-functions.php:25 includes/wc-notice-functions.php:56 includes/wc-notice-functions.php:74 includes/wc-notice-functions.php:98 includes/wc-notice-functions.php:112 includes/wc-notice-functions.php:125 includes/wc-notice-functions.php:172
3452
+ msgid "This function should not be called before woocommerce_init."
3453
  msgstr ""
3454
 
3455
+ #: includes/wc-attribute-functions.php:205 includes/wc-attribute-functions.php:232
3456
+ msgid "Select"
3457
  msgstr ""
3458
 
3459
+ #: includes/wc-attribute-functions.php:436
3460
+ msgid "Please, provide an attribute name."
3461
  msgstr ""
3462
 
3463
+ #. translators: %s: attribute slug
3464
+ #: includes/wc-attribute-functions.php:449 includes/api/v1/class-wc-rest-product-attributes-controller.php:567 includes/api/legacy/v2/class-wc-api-products.php:1985 includes/api/legacy/v3/class-wc-api-products.php:2543
3465
+ #, php-format
3466
+ msgid "Slug \"%s\" is too long (28 characters max). Shorten it, please."
3467
  msgstr ""
3468
 
3469
+ #. translators: %s: attribute slug
3470
+ #: includes/wc-attribute-functions.php:452 includes/api/v1/class-wc-rest-product-attributes-controller.php:569 includes/api/legacy/v2/class-wc-api-products.php:1987 includes/api/legacy/v3/class-wc-api-products.php:2545
3471
+ #, php-format
3472
+ msgid "Slug \"%s\" is not allowed because it is a reserved term. Change it, please."
3473
  msgstr ""
3474
 
3475
+ #. translators: %s: attribute slug
3476
+ #: includes/wc-attribute-functions.php:455 includes/api/v1/class-wc-rest-product-attributes-controller.php:571 includes/api/legacy/v2/class-wc-api-products.php:1989 includes/api/legacy/v3/class-wc-api-products.php:2547
3477
+ #, php-format
3478
+ msgid "Slug \"%s\" is already in use. Change it, please."
3479
  msgstr ""
3480
 
3481
+ #: includes/wc-attribute-functions.php:507
3482
+ msgid "Could not update the attribute."
3483
  msgstr ""
3484
 
3485
+ #: includes/class-wc-ajax.php:213
3486
+ msgid "Sorry there was a problem removing this coupon."
3487
  msgstr ""
3488
 
3489
+ #: includes/class-wc-ajax.php:216
3490
+ msgid "Coupon has been removed."
3491
  msgstr ""
3492
 
3493
+ #: includes/class-wc-ajax.php:262
3494
+ msgid "Sorry, your session has expired."
3495
  msgstr ""
3496
 
3497
+ #: includes/class-wc-ajax.php:262 templates/cart/cart-empty.php:33
3498
+ msgid "Return to shop"
3499
  msgstr ""
3500
 
3501
+ #: includes/class-wc-ajax.php:776 includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php:57
3502
+ #, php-format
3503
+ msgid "File %d"
3504
  msgstr ""
3505
 
3506
+ #: includes/class-wc-ajax.php:829 includes/class-wc-ajax.php:895
3507
+ msgid "Invalid order"
3508
  msgstr ""
3509
 
3510
+ #: includes/class-wc-ajax.php:910
3511
+ #, php-format
3512
+ msgid "%s fee"
3513
  msgstr ""
3514
 
3515
+ #. translators: 1: item name 2: old stock quantity 3: new stock quantity
3516
+ #: includes/class-wc-ajax.php:1175 includes/wc-stock-functions.php:116
3517
+ #, php-format
3518
+ msgid "%1$s stock reduced from %2$s to %3$s."
3519
  msgstr ""
3520
 
3521
+ #: includes/class-wc-ajax.php:1184
3522
+ msgid "No products had their stock reduced - they may not have stock management enabled."
3523
  msgstr ""
3524
 
3525
+ #: includes/class-wc-ajax.php:1221
3526
+ #, php-format
3527
+ msgid "%1$s stock increased from %2$s to %3$s."
3528
  msgstr ""
3529
 
3530
+ #: includes/class-wc-ajax.php:1229
3531
+ msgid "No products had their stock increased - they may not have stock management enabled."
3532
  msgstr ""
3533
 
3534
+ #: includes/class-wc-ajax.php:1347 includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:50
3535
+ #, php-format
3536
+ msgid "added on %1$s at %2$s"
3537
  msgstr ""
3538
 
3539
+ #: includes/class-wc-ajax.php:1355 includes/admin/meta-boxes/class-wc-meta-box-order-notes.php:57
3540
+ msgid "Delete note"
3541
  msgstr ""
3542
 
3543
+ #. translators: 1: user display name 2: user ID 3: user email
3544
+ #: includes/class-wc-ajax.php:1517 includes/admin/list-tables/class-wc-admin-list-table-orders.php:726 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:296 includes/admin/settings/views/html-keys-edit.php:39
3545
+ #, php-format
3546
+ msgid "%1$s (#%2$s &ndash; %3$s)"
3547
  msgstr ""
3548
 
3549
+ #: includes/class-wc-ajax.php:1688
3550
+ msgid "Invalid refund amount"
3551
  msgstr ""
3552
 
3553
+ #: includes/class-wc-ajax.php:1692
3554
+ msgid "Error processing refund. Please try again."
3555
  msgstr ""
3556
 
3557
+ #: includes/class-wc-ajax.php:1792
3558
+ msgid "Description is missing."
3559
  msgstr ""
3560
 
3561
+ #: includes/class-wc-ajax.php:1795
3562
+ msgid "User is missing."
3563
  msgstr ""
3564
 
3565
+ #: includes/class-wc-ajax.php:1798
3566
+ msgid "Permissions is missing."
3567
  msgstr ""
3568
 
3569
+ #: includes/class-wc-ajax.php:1827
3570
+ msgid "API Key updated successfully."
3571
  msgstr ""
3572
 
3573
+ #: includes/class-wc-ajax.php:1857
3574
+ msgid "API Key generated successfully. Make sure to copy your new keys now as the secret key will be hidden once you leave this page."
3575
  msgstr ""
3576
 
3577
+ #: includes/class-wc-ajax.php:1858 includes/admin/settings/views/html-keys-edit.php:115
3578
+ msgid "Revoke key"
3579
  msgstr ""
3580
 
3581
+ #: includes/class-wc-ajax.php:1941
3582
+ msgid "Dismiss this notice."
3583
  msgstr ""
3584
 
3585
+ #: includes/wc-webhook-functions.php:87 includes/admin/helper/class-wc-helper.php:340 includes/admin/helper/views/html-main.php:112 includes/admin/helper/views/html-main.php:115
3586
+ msgid "Active"
3587
  msgstr ""
3588
 
3589
+ #: includes/wc-webhook-functions.php:88
3590
+ msgid "Paused"
3591
  msgstr ""
3592
 
3593
+ #: includes/wc-webhook-functions.php:89 includes/admin/settings/class-wc-settings-emails.php:302
3594
+ msgid "Disabled"
3595
  msgstr ""
3596
 
3597
+ #: includes/class-wc-cart-fees.php:90
3598
+ msgid "Fee has already been added."
3599
  msgstr ""
3600
 
3601
+ #: includes/class-wc-query.php:99 includes/shortcodes/class-wc-shortcode-checkout.php:150
3602
+ msgid "Pay for order"
3603
  msgstr ""
3604
 
3605
+ #: includes/class-wc-query.php:102 includes/admin/settings/class-wc-settings-advanced.php:174
3606
+ msgid "Order received"
3607
  msgstr ""
3608
 
3609
+ #. translators: %s: page
3610
+ #: includes/class-wc-query.php:107
3611
+ #, php-format
3612
+ msgid "Orders (page %d)"
3613
  msgstr ""
3614
 
3615
+ #. translators: %s: order ID
3616
+ #. translators: %s: order number
3617
+ #. translators: %s: Order ID.
3618
+ #: includes/class-wc-query.php:115 templates/emails/email-order-details.php:36 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:628 includes/admin/list-tables/class-wc-admin-list-table-orders.php:341
3619
+ #, php-format
3620
+ msgid "Order #%s"
3621
  msgstr ""
3622
 
3623
+ #: includes/class-wc-query.php:130 templates/myaccount/form-add-payment-method.php:52 templates/myaccount/form-add-payment-method.php:52 templates/myaccount/payment-methods.php:80 includes/admin/settings/class-wc-settings-advanced.php:183
3624
+ msgid "Add payment method"
3625
  msgstr ""
3626
 
3627
+ #: includes/class-wc-query.php:133 includes/admin/class-wc-admin-menus.php:296 includes/admin/class-wc-admin-customize.php:79 includes/admin/settings/class-wc-settings-advanced.php:276
3628
+ msgid "Lost password"
3629
  msgstr ""
3630
 
3631
+ #: includes/class-wc-order-item-product.php:72
3632
+ msgid "Invalid product ID"
3633
  msgstr ""
3634
 
3635
+ #: includes/class-wc-order-item-product.php:84
3636
+ msgid "Invalid variation ID"
3637
  msgstr ""
3638
 
3639
+ #: includes/class-wc-order-item-product.php:187
3640
+ msgid "Invalid product"
3641
  msgstr ""
3642
 
3643
+ #: includes/class-wc-order-item-product.php:206 includes/legacy/abstract-wc-legacy-order.php:164
3644
+ msgid "Backordered"
3645
  msgstr ""
3646
 
3647
+ #: includes/class-wc-order-item-shipping.php:196 templates/cart/cart-totals.php:55 templates/cart/cart-totals.php:56 includes/admin/class-wc-admin-setup-wizard.php:165 includes/admin/class-wc-admin-setup-wizard.php:881 includes/admin/settings/class-wc-settings-tax.php:201 includes/admin/settings/class-wc-settings-shipping.php:25 includes/admin/meta-boxes/class-wc-meta-box-product-data.php:99 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:424 includes/admin/settings/views/html-settings-tax.php:34 includes/admin/meta-boxes/views/html-product-data-variations.php:79 includes/admin/meta-boxes/views/html-order-shipping.php:17
3648
+ msgid "Shipping"
3649
  msgstr ""
3650
 
3651
+ #: includes/class-wc-product-external.php:105 includes/class-wc-product-external.php:120
3652
+ msgid "External products cannot be stock managed."
3653
  msgstr ""
3654
 
3655
+ #: includes/class-wc-product-external.php:134
3656
+ msgid "External products cannot be backordered."
3657
  msgstr ""
3658
 
3659
+ #: includes/class-wc-product-external.php:171 includes/class-wc-product-external.php:181 includes/admin/meta-boxes/views/html-product-data-general.php:25
3660
+ msgctxt "placeholder"
3661
+ msgid "Buy product"
3662
  msgstr ""
3663
 
3664
+ #. translators: %s: Product title
3665
+ #: includes/class-wc-product-external.php:192
3666
+ #, php-format
3667
+ msgid "Buy &ldquo;%s&rdquo;"
3668
  msgstr ""
3669
 
3670
+ #. translators: %s: image URL
3671
+ #: includes/wc-rest-functions.php:74 includes/api/legacy/v2/class-wc-api-products.php:1699 includes/api/legacy/v3/class-wc-api-products.php:2232
3672
+ #, php-format
3673
+ msgid "Invalid URL %s."
3674
  msgstr ""
3675
 
3676
+ #. translators: %s: image URL
3677
+ #: includes/wc-rest-functions.php:90 includes/wc-rest-functions.php:96 includes/api/legacy/v2/class-wc-api-products.php:1711 includes/api/legacy/v2/class-wc-api-products.php:1713 includes/api/legacy/v3/class-wc-api-products.php:2244 includes/api/legacy/v3/class-wc-api-products.php:2246
3678
+ #, php-format
3679
+ msgid "Error getting remote image %s."
3680
  msgstr ""
3681
 
3682
+ #: includes/wc-rest-functions.php:117 includes/api/legacy/v2/class-wc-api-products.php:1734 includes/api/legacy/v3/class-wc-api-products.php:2267
3683
+ msgid "Invalid image type."
3684
  msgstr ""
3685
 
3686
+ #: includes/wc-rest-functions.php:135 includes/api/legacy/v2/class-wc-api-products.php:1751 includes/api/legacy/v3/class-wc-api-products.php:2284
3687
+ msgid "Zero size file downloaded."
3688
  msgstr ""
3689
 
3690
+ #. translators: 1: param 2: type
3691
+ #: includes/wc-rest-functions.php:205
3692
+ #, php-format
3693
+ msgid "%1$s is not of type %2$s"
3694
  msgstr ""
3695
 
3696
+ #: includes/wc-rest-functions.php:212
3697
+ msgid "The date you provided is invalid."
3698
  msgstr ""
3699
 
3700
+ #: i18n/continents.php:15
3701
+ msgid "Africa"
3702
  msgstr ""
3703
 
3704
+ #: i18n/continents.php:78 i18n/countries.php:22
3705
+ msgid "Antarctica"
3706
  msgstr ""
3707
 
3708
+ #: i18n/continents.php:88
3709
+ msgid "Asia"
3710
  msgstr ""
3711
 
3712
+ #: i18n/continents.php:146
3713
+ msgid "Europe"
3714
  msgstr ""
3715
 
3716
+ #: i18n/continents.php:204
3717
+ msgid "North America"
3718
  msgstr ""
3719
 
3720
+ #: i18n/continents.php:251
3721
+ msgid "Oceania"
3722
  msgstr ""
3723
 
3724
+ #: i18n/continents.php:282
3725
+ msgid "South America"
3726
  msgstr ""
3727
 
3728
+ #: i18n/countries.php:14
3729
+ msgid "Afghanistan"
3730
  msgstr ""
3731
 
3732
+ #: i18n/countries.php:15
3733
+ msgid "&#197;land Islands"
3734
  msgstr ""
3735
 
3736
+ #: i18n/countries.php:16
3737
+ msgid "Albania"
3738
  msgstr ""
3739
 
3740
+ #: i18n/countries.php:17
3741
+ msgid "Algeria"
3742
  msgstr ""
3743
 
3744
+ #: i18n/countries.php:18
3745
+ msgid "American Samoa"
3746
  msgstr ""
3747
 
3748
+ #: i18n/countries.php:19
3749
+ msgid "Andorra"
3750
  msgstr ""
3751
 
3752
+ #: i18n/countries.php:20
3753
+ msgid "Angola"
3754
  msgstr ""
3755
 
3756
+ #: i18n/countries.php:21
3757
+ msgid "Anguilla"
3758
  msgstr ""
3759
 
3760
+ #: i18n/countries.php:23
3761
+ msgid "Antigua and Barbuda"
3762
  msgstr ""
3763
 
3764
+ #: i18n/countries.php:24
3765
+ msgid "Argentina"
3766
  msgstr ""
3767
 
3768
+ #: i18n/countries.php:25
3769
+ msgid "Armenia"
3770
  msgstr ""
3771
 
3772
+ #: i18n/countries.php:26
3773
+ msgid "Aruba"
3774
  msgstr ""
3775
 
3776
+ #: i18n/countries.php:27
3777
+ msgid "Australia"
3778
  msgstr ""
3779
 
3780
+ #: i18n/countries.php:28
3781
+ msgid "Austria"
3782
  msgstr ""
3783
 
3784
+ #: i18n/countries.php:29
3785
+ msgid "Azerbaijan"
3786
  msgstr ""
3787
 
3788
+ #: i18n/countries.php:30
3789
+ msgid "Bahamas"
3790
  msgstr ""
3791
 
3792
+ #: i18n/countries.php:31
3793
+ msgid "Bahrain"
3794
  msgstr ""
3795
 
3796
+ #: i18n/countries.php:32
3797
+ msgid "Bangladesh"
3798
  msgstr ""
3799
 
3800
+ #: i18n/countries.php:33
3801
+ msgid "Barbados"
3802
  msgstr ""
3803
 
3804
+ #: i18n/countries.php:34
3805
+ msgid "Belarus"
3806
  msgstr ""
3807
 
3808
+ #: i18n/countries.php:35
3809
+ msgid "Belgium"
3810
  msgstr ""
3811
 
3812
+ #: i18n/countries.php:36
3813
+ msgid "Belau"
3814
  msgstr ""
3815
 
3816
+ #: i18n/countries.php:37
3817
+ msgid "Belize"
3818
  msgstr ""
3819
 
3820
+ #: i18n/countries.php:38
3821
+ msgid "Benin"
3822
  msgstr ""
3823
 
3824
+ #: i18n/countries.php:39
3825
+ msgid "Bermuda"
3826
  msgstr ""
3827
 
3828
+ #: i18n/countries.php:40
3829
+ msgid "Bhutan"
3830
  msgstr ""
3831
 
3832
+ #: i18n/countries.php:41
3833
+ msgid "Bolivia"
3834
  msgstr ""
3835
 
3836
+ #: i18n/countries.php:42
3837
+ msgid "Bonaire, Saint Eustatius and Saba"
3838
  msgstr ""
3839
 
3840
+ #: i18n/countries.php:43
3841
+ msgid "Bosnia and Herzegovina"
3842
  msgstr ""
3843
 
3844
+ #: i18n/countries.php:44
3845
+ msgid "Botswana"
3846
  msgstr ""
3847
 
3848
+ #: i18n/countries.php:45
3849
+ msgid "Bouvet Island"
3850
  msgstr ""
3851
 
3852
+ #: i18n/countries.php:46
3853
+ msgid "Brazil"
3854
  msgstr ""
3855
 
3856
+ #: i18n/countries.php:47
3857
+ msgid "British Indian Ocean Territory"
3858
  msgstr ""
3859
 
3860
+ #: i18n/countries.php:48
3861
+ msgid "British Virgin Islands"
3862
  msgstr ""
3863
 
3864
+ #: i18n/countries.php:49
3865
+ msgid "Brunei"
3866
  msgstr ""
3867
 
3868
+ #: i18n/countries.php:50
3869
+ msgid "Bulgaria"
3870
  msgstr ""
3871
 
3872
+ #: i18n/countries.php:51
3873
+ msgid "Burkina Faso"
3874
  msgstr ""
3875
 
3876
+ #: i18n/countries.php:52
3877
+ msgid "Burundi"
3878
  msgstr ""
3879
 
3880
+ #: i18n/countries.php:53
3881
+ msgid "Cambodia"
3882
  msgstr ""
3883
 
3884
+ #: i18n/countries.php:54
3885
+ msgid "Cameroon"
3886
  msgstr ""
3887
 
3888
+ #: i18n/countries.php:55
3889
+ msgid "Canada"
3890
  msgstr ""
3891
 
3892
+ #: i18n/countries.php:56
3893
+ msgid "Cape Verde"
3894
  msgstr ""
3895
 
3896
+ #: i18n/countries.php:57
3897
+ msgid "Cayman Islands"
3898
  msgstr ""
3899
 
3900
+ #: i18n/countries.php:58
3901
+ msgid "Central African Republic"
3902
  msgstr ""
3903
 
3904
+ #: i18n/countries.php:59
3905
+ msgid "Chad"
3906
  msgstr ""
3907
 
3908
+ #: i18n/countries.php:60
3909
+ msgid "Chile"
3910
  msgstr ""
3911
 
3912
+ #: i18n/countries.php:61
3913
+ msgid "China"
3914
  msgstr ""
3915
 
3916
+ #: i18n/countries.php:62
3917
+ msgid "Christmas Island"
3918
  msgstr ""
3919
 
3920
+ #: i18n/countries.php:63
3921
+ msgid "Cocos (Keeling) Islands"
3922
  msgstr ""
3923
 
3924
+ #: i18n/countries.php:64
3925
+ msgid "Colombia"
3926
  msgstr ""
3927
 
3928
+ #: i18n/countries.php:65
3929
+ msgid "Comoros"
3930
  msgstr ""
3931
 
3932
+ #: i18n/countries.php:66
3933
+ msgid "Congo (Brazzaville)"
3934
  msgstr ""
3935
 
3936
+ #: i18n/countries.php:67
3937
+ msgid "Congo (Kinshasa)"
3938
  msgstr ""
3939
 
3940
+ #: i18n/countries.php:68
3941
+ msgid "Cook Islands"
3942
  msgstr ""
3943
 
3944
+ #: i18n/countries.php:69
3945
+ msgid "Costa Rica"
3946
  msgstr ""
3947
 
3948
+ #: i18n/countries.php:70
3949
+ msgid "Croatia"
3950
  msgstr ""
3951
 
3952
+ #: i18n/countries.php:71
3953
+ msgid "Cuba"
3954
  msgstr ""
3955
 
3956
+ #: i18n/countries.php:72
3957
+ msgid "Cura&ccedil;ao"
3958
  msgstr ""
3959
 
3960
+ #: i18n/countries.php:73
3961
+ msgid "Cyprus"
3962
  msgstr ""
3963
 
3964
+ #: i18n/countries.php:74
3965
+ msgid "Czech Republic"
3966
  msgstr ""
3967
 
3968
+ #: i18n/countries.php:75
3969
+ msgid "Denmark"
3970
  msgstr ""
3971
 
3972
+ #: i18n/countries.php:76
3973
+ msgid "Djibouti"
3974
  msgstr ""
3975
 
3976
+ #: i18n/countries.php:77
3977
+ msgid "Dominica"
3978
  msgstr ""
3979
 
3980
+ #: i18n/countries.php:78
3981
+ msgid "Dominican Republic"
3982
  msgstr ""
3983
 
3984
+ #: i18n/countries.php:79
3985
+ msgid "Ecuador"
3986
  msgstr ""
3987
 
3988
+ #: i18n/countries.php:80
3989
+ msgid "Egypt"
3990
  msgstr ""
3991
 
3992
+ #: i18n/countries.php:81
3993
+ msgid "El Salvador"
3994
  msgstr ""
3995
 
3996
+ #: i18n/countries.php:82
3997
+ msgid "Equatorial Guinea"
3998
  msgstr ""
3999
 
4000
+ #: i18n/countries.php:83
4001
+ msgid "Eritrea"
4002
  msgstr ""
4003
 
4004
+ #: i18n/countries.php:84
4005
+ msgid "Estonia"
4006
  msgstr ""
4007
 
4008
+ #: i18n/countries.php:85
4009
+ msgid "Ethiopia"
4010
  msgstr ""
4011
 
4012
+ #: i18n/countries.php:86
4013
+ msgid "Falkland Islands"
4014
  msgstr ""
4015
 
4016
+ #: i18n/countries.php:87
4017
+ msgid "Faroe Islands"
4018
  msgstr ""
4019
 
4020
+ #: i18n/countries.php:88
4021
+ msgid "Fiji"
4022
  msgstr ""
4023
 
4024
+ #: i18n/countries.php:89
4025
+ msgid "Finland"
4026
  msgstr ""
4027
 
4028
+ #: i18n/countries.php:90
4029
+ msgid "France"
4030
  msgstr ""
4031
 
4032
+ #: i18n/countries.php:91
4033
+ msgid "French Guiana"
4034
  msgstr ""
4035
 
4036
+ #: i18n/countries.php:92
4037
+ msgid "French Polynesia"
4038
  msgstr ""
4039
 
4040
+ #: i18n/countries.php:93
4041
+ msgid "French Southern Territories"
4042
  msgstr ""
4043
 
4044
+ #: i18n/countries.php:94
4045
+ msgid "Gabon"
4046
  msgstr ""
4047
 
4048
+ #: i18n/countries.php:95
4049
+ msgid "Gambia"
4050
  msgstr ""
4051
 
4052
+ #: i18n/countries.php:96
4053
+ msgid "Georgia"
4054
  msgstr ""
4055
 
4056
+ #: i18n/countries.php:97
4057
+ msgid "Germany"
4058
  msgstr ""
4059
 
4060
+ #: i18n/countries.php:98
4061
+ msgid "Ghana"
4062
  msgstr ""
4063
 
4064
+ #: i18n/countries.php:99
4065
+ msgid "Gibraltar"
4066
  msgstr ""
4067
 
4068
+ #: i18n/countries.php:100
4069
+ msgid "Greece"
4070
  msgstr ""
4071
 
4072
+ #: i18n/countries.php:101
4073
+ msgid "Greenland"
4074
  msgstr ""
4075
 
4076
+ #: i18n/countries.php:102
4077
+ msgid "Grenada"
4078
  msgstr ""
4079
 
4080
+ #: i18n/countries.php:103
4081
+ msgid "Guadeloupe"
4082
  msgstr ""
4083
 
4084
+ #: i18n/countries.php:104
4085
+ msgid "Guam"
4086
  msgstr ""
4087
 
4088
+ #: i18n/countries.php:105
4089
+ msgid "Guatemala"
4090
  msgstr ""
4091
 
4092
+ #: i18n/countries.php:106
4093
+ msgid "Guernsey"
4094
  msgstr ""
4095
 
4096
+ #: i18n/countries.php:107
4097
+ msgid "Guinea"
4098
  msgstr ""
4099
 
4100
+ #: i18n/countries.php:108
4101
+ msgid "Guinea-Bissau"
4102
  msgstr ""
4103
 
4104
+ #: i18n/countries.php:109
4105
+ msgid "Guyana"
4106
  msgstr ""
4107
 
4108
+ #: i18n/countries.php:110
4109
+ msgid "Haiti"
4110
  msgstr ""
4111
 
4112
+ #: i18n/countries.php:111
4113
+ msgid "Heard Island and McDonald Islands"
4114
  msgstr ""
4115
 
4116
+ #: i18n/countries.php:112
4117
+ msgid "Honduras"
4118
  msgstr ""
4119
 
4120
+ #: i18n/countries.php:113
4121
+ msgid "Hong Kong"
4122
  msgstr ""
4123
 
4124
+ #: i18n/countries.php:114
4125
+ msgid "Hungary"
4126
  msgstr ""
4127
 
4128
+ #: i18n/countries.php:115
4129
+ msgid "Iceland"
4130
  msgstr ""
4131
 
4132
+ #: i18n/countries.php:116
4133
+ msgid "India"
4134
  msgstr ""
4135
 
4136
+ #: i18n/countries.php:117
4137
+ msgid "Indonesia"
4138
  msgstr ""
4139
 
4140
+ #: i18n/countries.php:118
4141
+ msgid "Iran"
4142
  msgstr ""
4143
 
4144
+ #: i18n/countries.php:119
4145
+ msgid "Iraq"
4146
  msgstr ""
4147
 
4148
+ #: i18n/countries.php:120
4149
+ msgid "Ireland"
4150
  msgstr ""
4151
 
4152
+ #: i18n/countries.php:121
4153
+ msgid "Isle of Man"
4154
  msgstr ""
4155
 
4156
+ #: i18n/countries.php:122
4157
+ msgid "Israel"
4158
  msgstr ""
4159
 
4160
+ #: i18n/countries.php:123
4161
+ msgid "Italy"
4162
  msgstr ""
4163
 
4164
+ #: i18n/countries.php:124
4165
+ msgid "Ivory Coast"
4166
  msgstr ""
4167
 
4168
+ #: i18n/countries.php:125
4169
+ msgid "Jamaica"
4170
  msgstr ""
4171
 
4172
+ #: i18n/countries.php:126
4173
+ msgid "Japan"
4174
  msgstr ""
4175
 
4176
+ #: i18n/countries.php:127
4177
+ msgid "Jersey"
4178
  msgstr ""
4179
 
4180
+ #: i18n/countries.php:128
4181
+ msgid "Jordan"
4182
  msgstr ""
4183
 
4184
+ #: i18n/countries.php:129
4185
+ msgid "Kazakhstan"
4186
  msgstr ""
4187
 
4188
+ #: i18n/countries.php:130
4189
+ msgid "Kenya"
4190
  msgstr ""
4191
 
4192
+ #: i18n/countries.php:131
4193
+ msgid "Kiribati"
4194
  msgstr ""
4195
 
4196
+ #: i18n/countries.php:132
4197
+ msgid "Kuwait"
4198
  msgstr ""
4199
 
4200
+ #: i18n/countries.php:133
4201
+ msgid "Kyrgyzstan"
4202
  msgstr ""
4203
 
4204
+ #: i18n/countries.php:134
4205
+ msgid "Laos"
4206
  msgstr ""
4207
 
4208
+ #: i18n/countries.php:135
4209
+ msgid "Latvia"
4210
  msgstr ""
4211
 
4212
+ #: i18n/countries.php:136
4213
+ msgid "Lebanon"
4214
  msgstr ""
4215
 
4216
+ #: i18n/countries.php:137
4217
+ msgid "Lesotho"
4218
  msgstr ""
4219
 
4220
+ #: i18n/countries.php:138
4221
+ msgid "Liberia"
4222
  msgstr ""
4223
 
4224
+ #: i18n/countries.php:139
4225
+ msgid "Libya"
4226
  msgstr ""
4227
 
4228
+ #: i18n/countries.php:140
4229
+ msgid "Liechtenstein"
4230
  msgstr ""
4231
 
4232
+ #: i18n/countries.php:141
4233
+ msgid "Lithuania"
4234
  msgstr ""
4235
 
4236
+ #: i18n/countries.php:142
4237
+ msgid "Luxembourg"
4238
  msgstr ""
4239
 
4240
+ #: i18n/countries.php:143
4241
+ msgid "Macao S.A.R., China"
4242
  msgstr ""
4243
 
4244
+ #: i18n/countries.php:144
4245
+ msgid "Macedonia"
4246
  msgstr ""
4247
 
4248
+ #: i18n/countries.php:145
4249
+ msgid "Madagascar"
4250
  msgstr ""
4251
 
4252
+ #: i18n/countries.php:146
4253
+ msgid "Malawi"
4254
  msgstr ""
4255
 
4256
+ #: i18n/countries.php:147
4257
+ msgid "Malaysia"
4258
  msgstr ""
4259
 
4260
+ #: i18n/countries.php:148
4261
+ msgid "Maldives"
4262
  msgstr ""
4263
 
4264
+ #: i18n/countries.php:149
4265
+ msgid "Mali"
4266
  msgstr ""
4267
 
4268
+ #: i18n/countries.php:150
4269
+ msgid "Malta"
4270
  msgstr ""
4271
 
4272
+ #: i18n/countries.php:151
4273
+ msgid "Marshall Islands"
4274
  msgstr ""
4275
 
4276
+ #: i18n/countries.php:152
4277
+ msgid "Martinique"
4278
  msgstr ""
4279
 
4280
+ #: i18n/countries.php:153
4281
+ msgid "Mauritania"
4282
  msgstr ""
4283
 
4284
+ #: i18n/countries.php:154
4285
+ msgid "Mauritius"
4286
  msgstr ""
4287
 
4288
+ #: i18n/countries.php:155
4289
+ msgid "Mayotte"
4290
  msgstr ""
4291
 
4292
+ #: i18n/countries.php:156
4293
+ msgid "Mexico"
4294
  msgstr ""
4295
 
4296
+ #: i18n/countries.php:157
4297
+ msgid "Micronesia"
4298
  msgstr ""
4299
 
4300
+ #: i18n/countries.php:158
4301
+ msgid "Moldova"
4302
  msgstr ""
4303
 
4304
+ #: i18n/countries.php:159
4305
+ msgid "Monaco"
4306
  msgstr ""
4307
 
4308
+ #: i18n/countries.php:160
4309
+ msgid "Mongolia"
4310
  msgstr ""
4311
 
4312
+ #: i18n/countries.php:161
4313
+ msgid "Montenegro"
4314
  msgstr ""
4315
 
4316
+ #: i18n/countries.php:162
4317
+ msgid "Montserrat"
4318
  msgstr ""
4319
 
4320
+ #: i18n/countries.php:163
4321
+ msgid "Morocco"
4322
  msgstr ""
4323
 
4324
+ #: i18n/countries.php:164
4325
+ msgid "Mozambique"
4326
  msgstr ""
4327
 
4328
+ #: i18n/countries.php:165
4329
+ msgid "Myanmar"
4330
  msgstr ""
4331
 
4332
+ #: i18n/countries.php:166
4333
+ msgid "Namibia"
4334
  msgstr ""
4335
 
4336
+ #: i18n/countries.php:167
4337
+ msgid "Nauru"
4338
  msgstr ""
4339
 
4340
+ #: i18n/countries.php:168
4341
+ msgid "Nepal"
4342
  msgstr ""
4343
 
4344
+ #: i18n/countries.php:169
4345
+ msgid "Netherlands"
4346
  msgstr ""
4347
 
4348
+ #: i18n/countries.php:170
4349
+ msgid "New Caledonia"
4350
  msgstr ""
4351
 
4352
+ #: i18n/countries.php:171
4353
+ msgid "New Zealand"
4354
  msgstr ""
4355
 
4356
+ #: i18n/countries.php:172
4357
+ msgid "Nicaragua"
4358
  msgstr ""
4359
 
4360
+ #: i18n/countries.php:173 i18n/states/NG.php:40
4361
+ msgid "Niger"
4362
  msgstr ""
4363
 
4364
+ #: i18n/countries.php:174
4365
+ msgid "Nigeria"
4366
  msgstr ""
4367
 
4368
+ #: i18n/countries.php:175
4369
+ msgid "Niue"
4370
  msgstr ""
4371
 
4372
+ #: i18n/countries.php:176
4373
+ msgid "Norfolk Island"
4374
  msgstr ""
4375
 
4376
+ #: i18n/countries.php:177
4377
+ msgid "Northern Mariana Islands"
4378
  msgstr ""
4379
 
4380
+ #: i18n/countries.php:178
4381
+ msgid "North Korea"
4382
  msgstr ""
4383
 
4384
+ #: i18n/countries.php:179
4385
+ msgid "Norway"
4386
  msgstr ""
4387
 
4388
+ #: i18n/countries.php:180
4389
+ msgid "Oman"
4390
  msgstr ""
4391
 
4392
+ #: i18n/countries.php:181
4393
+ msgid "Pakistan"
4394
  msgstr ""
4395
 
4396
+ #: i18n/countries.php:182
4397
+ msgid "Palestinian Territory"
4398
  msgstr ""
4399
 
4400
+ #: i18n/countries.php:183
4401
+ msgid "Panama"
4402
  msgstr ""
4403
 
4404
+ #: i18n/countries.php:184
4405
+ msgid "Papua New Guinea"
4406
  msgstr ""
4407
 
4408
+ #: i18n/countries.php:185
4409
+ msgid "Paraguay"
4410
  msgstr ""
4411
 
4412
+ #: i18n/countries.php:186
4413
+ msgid "Peru"
4414
  msgstr ""
4415
 
4416
+ #: i18n/countries.php:187
4417
+ msgid "Philippines"
4418
  msgstr ""
4419
 
4420
+ #: i18n/countries.php:188
4421
+ msgid "Pitcairn"
4422
  msgstr ""
4423
 
4424
+ #: i18n/countries.php:189
4425
+ msgid "Poland"
4426
  msgstr ""
4427
 
4428
+ #: i18n/countries.php:190
4429
+ msgid "Portugal"
4430
  msgstr ""
4431
 
4432
+ #: i18n/countries.php:191
4433
+ msgid "Puerto Rico"
4434
  msgstr ""
4435
 
4436
+ #: i18n/countries.php:192
4437
+ msgid "Qatar"
4438
  msgstr ""
4439
 
4440
+ #: i18n/countries.php:193
4441
+ msgid "Reunion"
4442
  msgstr ""
4443
 
4444
+ #: i18n/countries.php:194
4445
+ msgid "Romania"
4446
  msgstr ""
4447
 
4448
+ #: i18n/countries.php:195
4449
+ msgid "Russia"
4450
  msgstr ""
4451
 
4452
+ #: i18n/countries.php:196
4453
+ msgid "Rwanda"
4454
  msgstr ""
4455
 
4456
+ #: i18n/countries.php:197
4457
+ msgid "Saint Barth&eacute;lemy"
4458
  msgstr ""
4459
 
4460
+ #: i18n/countries.php:198
4461
+ msgid "Saint Helena"
4462
  msgstr ""
4463
 
4464
+ #: i18n/countries.php:199
4465
+ msgid "Saint Kitts and Nevis"
4466
  msgstr ""
4467
 
4468
+ #: i18n/countries.php:200
4469
+ msgid "Saint Lucia"
4470
  msgstr ""
4471
 
4472
+ #: i18n/countries.php:201
4473
+ msgid "Saint Martin (French part)"
4474
  msgstr ""
4475
 
4476
+ #: i18n/countries.php:202
4477
+ msgid "Saint Martin (Dutch part)"
4478
  msgstr ""
4479
 
4480
+ #: i18n/countries.php:203
4481
+ msgid "Saint Pierre and Miquelon"
4482
  msgstr ""
4483
 
4484
+ #: i18n/countries.php:204
4485
+ msgid "Saint Vincent and the Grenadines"
4486
  msgstr ""
4487
 
4488
+ #: i18n/countries.php:205
4489
+ msgid "San Marino"
4490
  msgstr ""
4491
 
4492
+ #: i18n/countries.php:206
4493
+ msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
4494
  msgstr ""
4495
 
4496
+ #: i18n/countries.php:207
4497
+ msgid "Saudi Arabia"
4498
  msgstr ""
4499
 
4500
+ #: i18n/countries.php:208
4501
+ msgid "Senegal"
4502
  msgstr ""
4503
 
4504
+ #: i18n/countries.php:209
4505
+ msgid "Serbia"
4506
  msgstr ""
4507
 
4508
+ #: i18n/countries.php:210
4509
+ msgid "Seychelles"
4510
  msgstr ""
4511
 
4512
+ #: i18n/countries.php:211
4513
+ msgid "Sierra Leone"
4514
  msgstr ""
4515
 
4516
+ #: i18n/countries.php:212
4517
+ msgid "Singapore"
4518
  msgstr ""
4519
 
4520
+ #: i18n/countries.php:213
4521
+ msgid "Slovakia"
4522
  msgstr ""
4523
 
4524
+ #: i18n/countries.php:214
4525
+ msgid "Slovenia"
4526
  msgstr ""
4527
 
4528
+ #: i18n/countries.php:215
4529
+ msgid "Solomon Islands"
4530
  msgstr ""
4531
 
4532
+ #: i18n/countries.php:216
4533
+ msgid "Somalia"
4534
  msgstr ""
4535
 
4536
+ #: i18n/countries.php:217
4537
+ msgid "South Africa"
4538
  msgstr ""
4539
 
4540
+ #: i18n/countries.php:218
4541
+ msgid "South Georgia/Sandwich Islands"
4542
  msgstr ""
4543
 
4544
+ #: i18n/countries.php:219
4545
+ msgid "South Korea"
4546
  msgstr ""
4547
 
4548
+ #: i18n/countries.php:220
4549
+ msgid "South Sudan"
4550
  msgstr ""
4551
 
4552
+ #: i18n/countries.php:221
4553
+ msgid "Spain"
4554
  msgstr ""
4555
 
4556
+ #: i18n/countries.php:222
4557
+ msgid "Sri Lanka"
4558
  msgstr ""
4559
 
4560
+ #: i18n/countries.php:223
4561
+ msgid "Sudan"
4562
  msgstr ""
4563
 
4564
+ #: i18n/countries.php:224
4565
+ msgid "Suriname"
4566
  msgstr ""
4567
 
4568
+ #: i18n/countries.php:225
4569
+ msgid "Svalbard and Jan Mayen"
4570
  msgstr ""
4571
 
4572
+ #: i18n/countries.php:226
4573
+ msgid "Swaziland"
4574
  msgstr ""
4575
 
4576
+ #: i18n/countries.php:227
4577
+ msgid "Sweden"
4578
  msgstr ""
4579
 
4580
+ #: i18n/countries.php:228
4581
+ msgid "Switzerland"
4582
  msgstr ""
4583
 
4584
+ #: i18n/countries.php:229
4585
+ msgid "Syria"
4586
  msgstr ""
4587
 
4588
+ #: i18n/countries.php:230
4589
+ msgid "Taiwan"
4590
  msgstr ""
4591
 
4592
+ #: i18n/countries.php:231
4593
+ msgid "Tajikistan"
4594
  msgstr ""
4595
 
4596
+ #: i18n/countries.php:232
4597
+ msgid "Tanzania"
4598
  msgstr ""
4599
 
4600
+ #: i18n/countries.php:233
4601
+ msgid "Thailand"
4602
  msgstr ""
4603
 
4604
+ #: i18n/countries.php:234
4605
+ msgid "Timor-Leste"
4606
  msgstr ""
4607
 
4608
+ #: i18n/countries.php:235
4609
+ msgid "Togo"
4610
  msgstr ""
4611
 
4612
+ #: i18n/countries.php:236
4613
+ msgid "Tokelau"
4614
  msgstr ""
4615
 
4616
+ #: i18n/countries.php:237
4617
+ msgid "Tonga"
4618
  msgstr ""
4619
 
4620
+ #: i18n/countries.php:238
4621
+ msgid "Trinidad and Tobago"
4622
  msgstr ""
4623
 
4624
+ #: i18n/countries.php:239
4625
+ msgid "Tunisia"
4626
  msgstr ""
4627
 
4628
+ #: i18n/countries.php:240
4629
+ msgid "Turkey"
4630
  msgstr ""
4631
 
4632
+ #: i18n/countries.php:241
4633
+ msgid "Turkmenistan"
4634
  msgstr ""
4635
 
4636
+ #: i18n/countries.php:242
4637
+ msgid "Turks and Caicos Islands"
4638
  msgstr ""
4639
 
4640
+ #: i18n/countries.php:243
4641
+ msgid "Tuvalu"
4642
  msgstr ""
4643
 
4644
+ #: i18n/countries.php:244
4645
+ msgid "Uganda"
4646
  msgstr ""
4647
 
4648
+ #: i18n/countries.php:245
4649
+ msgid "Ukraine"
4650
  msgstr ""
4651
 
4652
+ #: i18n/countries.php:246
4653
+ msgid "United Arab Emirates"
4654
  msgstr ""
4655
 
4656
+ #: i18n/countries.php:247
4657
+ msgid "United Kingdom (UK)"
4658
  msgstr ""
4659
 
4660
+ #: i18n/countries.php:248
4661
+ msgid "United States (US)"
4662
  msgstr ""
4663
 
4664
+ #: i18n/countries.php:249
4665
+ msgid "United States (US) Minor Outlying Islands"
4666
  msgstr ""
4667
 
4668
+ #: i18n/countries.php:250
4669
+ msgid "United States (US) Virgin Islands"
4670
  msgstr ""
4671
 
4672
+ #: i18n/countries.php:251
4673
+ msgid "Uruguay"
4674
  msgstr ""
4675
 
4676
+ #: i18n/countries.php:252
4677
+ msgid "Uzbekistan"
4678
  msgstr ""
4679
 
4680
+ #: i18n/countries.php:253
4681
+ msgid "Vanuatu"
4682
  msgstr ""
4683
 
4684
+ #: i18n/countries.php:254
4685
+ msgid "Vatican"
4686
  msgstr ""
4687
 
4688
+ #: i18n/countries.php:255
4689
+ msgid "Venezuela"
4690
  msgstr ""
4691
 
4692
+ #: i18n/countries.php:256
4693
+ msgid "Vietnam"
4694
  msgstr ""
4695
 
4696
+ #: i18n/countries.php:257
4697
+ msgid "Wallis and Futuna"
4698
  msgstr ""
4699
 
4700
+ #: i18n/countries.php:258
4701
+ msgid "Western Sahara"
4702
  msgstr ""
4703
 
4704
+ #: i18n/countries.php:259
4705
+ msgid "Samoa"
4706
  msgstr ""
4707
 
4708
+ #: i18n/countries.php:260
4709
+ msgid "Yemen"
4710
  msgstr ""
4711
 
4712
+ #: i18n/countries.php:261
4713
+ msgid "Zambia"
4714
  msgstr ""
4715
 
4716
+ #: i18n/countries.php:262
4717
+ msgid "Zimbabwe"
4718
  msgstr ""
4719
 
4720
+ #: i18n/locale-info.php:96 i18n/locale-info.php:106 i18n/locale-info.php:116
4721
+ msgctxt "Canadian Tax Rates"
4722
+ msgid "PST"
4723
  msgstr ""
4724
 
4725
+ #: i18n/locale-info.php:126
4726
+ msgctxt "Canadian Tax Rates"
4727
+ msgid "QST"
4728
  msgstr ""
4729
 
4730
+ #: i18n/locale-info.php:136 i18n/locale-info.php:143 i18n/locale-info.php:150 i18n/locale-info.php:157 i18n/locale-info.php:164
4731
+ msgctxt "Canadian Tax Rates"
4732
+ msgid "HST"
4733
  msgstr ""
4734
 
4735
+ #: i18n/locale-info.php:171 i18n/locale-info.php:178 i18n/locale-info.php:185 i18n/locale-info.php:192 i18n/locale-info.php:199 i18n/locale-info.php:206 i18n/locale-info.php:213 i18n/locale-info.php:220
4736
+ msgctxt "Canadian Tax Rates"
4737
+ msgid "GST"
4738
  msgstr ""
4739
 
4740
+ #: i18n/locale-info.php:380
4741
+ msgid "Consumption tax"
4742
  msgstr ""
4743
 
4744
+ #: templates/order/form-tracking.php:25
4745
+ msgid "To track your order please enter your Order ID in the box below and press the \"Track\" button. This was given to you on your receipt and in the confirmation email you should have received."
4746
  msgstr ""
4747
 
4748
+ #: templates/order/form-tracking.php:27
4749
+ msgid "Found in your order confirmation email."
4750
  msgstr ""
4751
 
4752
+ #: templates/order/form-tracking.php:28
4753
+ msgid "Billing email"
4754
  msgstr ""
4755
 
4756
+ #: templates/order/form-tracking.php:28
4757
+ msgid "Email you used during checkout."
4758
  msgstr ""
4759
 
4760
+ #: templates/order/form-tracking.php:31
4761
+ msgid "Track"
4762
  msgstr ""
4763
 
4764
+ #: templates/order/order-again.php:25
4765
+ msgid "Order again"
4766
  msgstr ""
4767
 
4768
+ #: templates/order/order-downloads.php:57
4769
+ msgid "&infin;"
4770
  msgstr ""
4771
 
4772
+ #: templates/order/order-downloads.php:63 templates/emails/email-downloads.php:58 templates/emails/plain/email-downloads.php:40 includes/admin/meta-boxes/views/html-order-download-permission.php:33 includes/admin/meta-boxes/views/html-variation-admin.php:416 includes/admin/meta-boxes/views/html-product-data-general.php:130
4773
+ msgid "Never"
4774
  msgstr ""
4775
 
4776
+ #: templates/order/order-details.php:39
4777
+ msgid "Order details"
4778
  msgstr ""
4779
 
4780
+ #: templates/order/order-details.php:84 templates/emails/email-order-details.php:79 includes/api/class-wc-rest-system-status-tools-controller.php:162 includes/api/class-wc-rest-system-status-tools-controller.php:171 includes/api/class-wc-rest-system-status-tools-controller.php:180 includes/admin/class-wc-admin-taxonomies.php:313 templates/emails/plain/email-order-details.php:46
4781
+ msgid "Note:"
4782
  msgstr ""
4783
 
4784
+ #: templates/order/order-details-customer.php:33 templates/emails/email-addresses.php:28 templates/myaccount/form-edit-address.php:20 templates/myaccount/my-address.php:27 templates/myaccount/my-address.php:32 templates/emails/plain/email-addresses.php:22
4785
+ msgid "Billing address"
4786
  msgstr ""
4787
 
4788
+ #: templates/order/order-details-customer.php:52 templates/emails/email-addresses.php:42 templates/myaccount/form-edit-address.php:20 templates/myaccount/my-address.php:28 templates/emails/plain/email-addresses.php:37
4789
+ msgid "Shipping address"
4790
  msgstr ""
4791
 
4792
+ #. translators: 1: order number 2: order date 3: order status
4793
+ #: templates/order/tracking.php:27 templates/myaccount/view-order.php:29
4794
+ #, php-format
4795
+ msgid "Order #%1$s was placed on %2$s and is currently %3$s."
4796
  msgstr ""
4797
 
4798
+ #: templates/order/tracking.php:35 templates/myaccount/view-order.php:37
4799
+ msgid "Order updates"
4800
  msgstr ""
4801
 
4802
+ #: templates/order/tracking.php:41 templates/myaccount/view-order.php:43
4803
+ msgid "l jS \\o\\f F Y, h:ia"
4804
  msgstr ""
4805
 
4806
+ #. translators: %d: total results
4807
+ #: templates/loop/result-count.php:29
4808
+ #, php-format
4809
+ msgid "Showing the single result"
4810
+ msgid_plural "Showing all %d results"
4811
+ msgstr[0] ""
4812
+ msgstr[1] ""
4813
 
4814
+ #. translators: 1: first result 2: last result 3: total results
4815
+ #: templates/loop/result-count.php:34
4816
+ #, php-format
4817
+ msgctxt "with first and last result"
4818
+ msgid "Showing the single result"
4819
+ msgid_plural "Showing %1$d&ndash;%2$d of %3$d results"
4820
+ msgstr[0] ""
4821
+ msgstr[1] ""
4822
 
4823
+ #: templates/loop/no-products-found.php:24
4824
+ msgid "No products were found matching your selection."
4825
  msgstr ""
4826
 
4827
+ #: templates/loop/sale-flash.php:28 templates/single-product/sale-flash.php:28
4828
+ msgid "Sale!"
4829
  msgstr ""
4830
 
4831
+ #: templates/cart/cart-shipping.php:50 templates/cart/cart-shipping.php:52
4832
+ msgid "There are no shipping methods available. Please ensure that your address has been entered correctly, or contact us if you need any help."
4833
  msgstr ""
4834
 
4835
+ #: templates/cart/cart-shipping.php:56
4836
+ msgid "Enter your full address to see shipping costs."
4837
  msgstr ""
4838
 
4839
+ #: templates/cart/cart-totals.php:28
4840
+ msgid "Cart totals"
4841
  msgstr ""
4842
 
4843
+ #: templates/cart/cart-totals.php:33 templates/cart/cart-totals.php:34 templates/cart/mini-cart.php:72 templates/checkout/review-order.php:59
4844
+ msgid "Subtotal"
4845
  msgstr ""
4846
 
4847
+ #: templates/cart/cart-totals.php:71
4848
+ #, php-format
4849
+ msgid "(estimated for %s)"
4850
  msgstr ""
4851
 
4852
+ #: templates/cart/cart.php:33 templates/cart/cart.php:96 templates/emails/email-order-details.php:46 includes/widgets/class-wc-widget-products.php:54 includes/admin/views/html-bulk-edit-product.php:21 includes/admin/views/html-quick-edit-product.php:32 includes/admin/list-tables/class-wc-admin-list-table-products.php:117 includes/admin/importers/class-wc-product-csv-importer-controller.php:630 includes/admin/importers/mappings/generic.php:23
4853
+ msgid "Price"
4854
  msgstr ""
4855
 
4856
+ #: templates/cart/cart.php:34 templates/cart/cart.php:102 templates/global/quantity-input.php:31 templates/emails/email-order-details.php:45 includes/admin/list-tables/class-wc-admin-list-table-orders.php:438 includes/admin/importers/mappings/generic.php:25
4857
+ msgid "Quantity"
4858
  msgstr ""
4859
 
4860
+ #: templates/cart/cart.php:57 templates/cart/mini-cart.php:47
4861
+ msgid "Remove this item"
4862
  msgstr ""
4863
 
4864
+ #: templates/cart/cart.php:91 includes/abstracts/abstract-wc-product.php:1947
4865
+ msgid "Available on backorder"
4866
  msgstr ""
4867
 
4868
+ #: templates/cart/cart.php:138
4869
+ msgid "Coupon:"
4870
  msgstr ""
4871
 
4872
+ #: templates/cart/cart.php:138 templates/checkout/form-coupon.php:34 includes/admin/class-wc-admin-post-types.php:688
4873
+ msgid "Coupon code"
4874
  msgstr ""
4875
 
4876
+ #: templates/cart/cart.php:138 templates/checkout/form-coupon.php:38 templates/checkout/form-coupon.php:38 includes/admin/meta-boxes/views/html-order-items.php:229
4877
+ msgid "Apply coupon"
4878
  msgstr ""
4879
 
4880
+ #: templates/cart/cart.php:143
4881
+ msgid "Update cart"
4882
  msgstr ""
4883
 
4884
+ #: templates/cart/cross-sells.php:27
4885
+ msgid "You may be interested in&hellip;"
4886
  msgstr ""
4887
 
4888
+ #: templates/cart/mini-cart.php:80
4889
+ msgid "No products in the cart."
4890
  msgstr ""
4891
 
4892
+ #: templates/cart/shipping-calculator.php:30
4893
+ msgid "Calculate shipping"
4894
  msgstr ""
4895
 
4896
+ #: templates/cart/shipping-calculator.php:83 includes/admin/class-wc-admin-setup-wizard.php:410 includes/admin/class-wc-admin-profile.php:65 includes/admin/class-wc-admin-profile.php:125 includes/admin/settings/class-wc-settings-tax.php:196 includes/admin/settings/class-wc-settings-general.php:82 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:64 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:115 includes/admin/settings/views/html-settings-tax.php:29
4897
+ msgid "City"
4898
  msgstr ""
4899
 
4900
+ #: templates/cart/shipping-calculator.php:96 templates/checkout/payment.php:41 templates/checkout/payment.php:41
4901
+ msgid "Update totals"
4902
  msgstr ""
4903
 
4904
+ #: templates/cart/proceed-to-checkout-button.php:27
4905
+ msgid "Proceed to checkout"
4906
  msgstr ""
4907
 
4908
+ #: templates/single-product/up-sells.php:27
4909
+ msgid "You may also like&hellip;"
4910
  msgstr ""
4911
 
4912
+ #: templates/single-product/meta.php:31 includes/admin/meta-boxes/views/html-order-item.php:25
4913
+ msgid "SKU:"
4914
  msgstr ""
4915
 
4916
+ #: templates/single-product/meta.php:35
4917
+ msgid "Category:"
4918
+ msgid_plural "Categories:"
4919
+ msgstr[0] ""
4920
+ msgstr[1] ""
4921
+
4922
+ #: templates/single-product/meta.php:37
4923
+ msgid "Tag:"
4924
+ msgid_plural "Tags:"
4925
+ msgstr[0] ""
4926
+ msgstr[1] ""
4927
+
4928
+ #: templates/single-product/product-image.php:44
4929
+ msgid "Awaiting product image"
4930
  msgstr ""
4931
 
4932
+ #: templates/single-product/related.php:27
4933
+ msgid "Related products"
4934
  msgstr ""
4935
 
4936
+ #: templates/single-product/product-attributes.php:28 includes/admin/views/html-bulk-edit-product.php:118 includes/admin/views/html-quick-edit-product.php:98 includes/admin/meta-boxes/views/html-product-data-shipping.php:14 includes/admin/meta-boxes/views/html-product-data-variations.php:83
4937
+ msgid "Weight"
4938
  msgstr ""
4939
 
4940
+ #: templates/single-product/product-attributes.php:35 includes/admin/importers/class-wc-product-csv-importer-controller.php:647
4941
+ msgid "Dimensions"
4942
  msgstr ""
4943
 
4944
+ #: templates/single-product/review-meta.php:27
4945
+ msgid "Your review is awaiting approval"
4946
  msgstr ""
4947
 
4948
+ #: templates/single-product/review-meta.php:37
4949
+ msgid "verified owner"
4950
  msgstr ""
4951
 
4952
+ #: templates/single-product/rating.php:37
4953
+ #, php-format
4954
+ msgid "%s customer review"
4955
+ msgid_plural "%s customer reviews"
4956
+ msgstr[0] ""
4957
+ msgstr[1] ""
4958
+
4959
+ #: templates/single-product/photoswipe.php:35
4960
+ msgid "Close (Esc)"
4961
  msgstr ""
4962
 
4963
+ #: templates/single-product/photoswipe.php:36
4964
+ msgid "Share"
4965
  msgstr ""
4966
 
4967
+ #: templates/single-product/photoswipe.php:37
4968
+ msgid "Toggle fullscreen"
4969
  msgstr ""
4970
 
4971
+ #: templates/single-product/photoswipe.php:38
4972
+ msgid "Zoom in/out"
4973
  msgstr ""
4974
 
4975
+ #: templates/single-product/photoswipe.php:50
4976
+ msgid "Previous (arrow left)"
4977
  msgstr ""
4978
 
4979
+ #: templates/single-product/photoswipe.php:51
4980
+ msgid "Next (arrow right)"
4981
  msgstr ""
4982
 
4983
+ #: templates/global/form-login.php:35 templates/myaccount/form-lost-password.php:27
4984
+ msgid "Username or email"
4985
  msgstr ""
4986
 
4987
+ #: templates/global/form-login.php:51 templates/myaccount/form-login.php:57
4988
+ msgid "Remember me"
4989
  msgstr ""
4990
 
4991
+ #: templates/global/form-login.php:55 templates/myaccount/form-login.php:61
4992
+ msgid "Lost your password?"
4993
  msgstr ""
4994
 
4995
+ #. translators: %s: Quantity.
4996
+ #: templates/global/quantity-input.php:28
4997
+ #, php-format
4998
+ msgid "%s quantity"
4999
  msgstr ""
5000
 
5001
+ #: templates/global/quantity-input.php:41
5002
+ msgctxt "Product quantity input tooltip"
5003
+ msgid "Qty"
5004
  msgstr ""
5005
 
5006
+ #: templates/emails/customer-on-hold-order.php:28 templates/emails/plain/customer-on-hold-order.php:25
5007
+ msgid "Your order is on-hold until we confirm payment has been received. Your order details are shown below for your reference:"
5008
  msgstr ""
5009
 
5010
+ #: templates/emails/admin-new-order.php:28
5011
+ #, php-format
5012
+ msgid "You have received an order from %s. The order is as follows:"
5013
  msgstr ""
5014
 
5015
+ #: templates/emails/customer-refunded-order.php:30
5016
+ #, php-format
5017
+ msgid "Hi there. Your order on %s has been partially refunded."
5018
  msgstr ""
5019
 
5020
+ #: templates/emails/customer-refunded-order.php:32
5021
+ #, php-format
5022
+ msgid "Hi there. Your order on %s has been refunded."
5023
  msgstr ""
5024
 
5025
+ #: templates/emails/email-customer-details.php:28 templates/emails/plain/email-customer-details.php:24
5026
+ msgid "Customer details"
5027
  msgstr ""
5028
 
5029
+ #: templates/emails/customer-completed-order.php:28 templates/emails/plain/customer-completed-order.php:25
5030
+ #, php-format
5031
+ msgid "Hi there. Your recent order on %s has been completed. Your order details are shown below for your reference:"
5032
  msgstr ""
5033
 
5034
+ #. translators: %1s item is the name of the site, %2s is a html link
5035
+ #: templates/emails/customer-invoice.php:36 templates/emails/plain/customer-invoice.php:29
5036
+ #, php-format
5037
+ msgid "An order has been created for you on %1$s. %2$s"
5038
  msgstr ""
5039
 
5040
+ #: templates/emails/customer-invoice.php:44
5041
+ msgid "Pay for this order"
5042
  msgstr ""
5043
 
5044
+ #: templates/emails/customer-reset-password.php:27 templates/emails/plain/customer-reset-password.php:25
5045
+ msgid "Someone requested that the password be reset for the following account:"
5046
  msgstr ""
5047
 
5048
+ #: templates/emails/customer-reset-password.php:28 templates/emails/plain/customer-reset-password.php:27
5049
+ #, php-format
5050
+ msgid "Username: %s"
5051
  msgstr ""
5052
 
5053
+ #: templates/emails/customer-reset-password.php:29 templates/emails/plain/customer-reset-password.php:28
5054
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
5055
  msgstr ""
5056
 
5057
+ #: templates/emails/customer-reset-password.php:30 templates/emails/plain/customer-reset-password.php:29
5058
+ msgid "To reset your password, visit the following address:"
5059
  msgstr ""
5060
 
5061
+ #: templates/emails/customer-reset-password.php:33
5062
+ msgid "Click here to reset your password"
5063
  msgstr ""
5064
 
5065
+ #: templates/emails/admin-cancelled-order.php:28 templates/emails/plain/admin-cancelled-order.php:25
5066
+ #, php-format
5067
+ msgid "The order #%1$s from %2$s has been cancelled. The order was as follows:"
5068
  msgstr ""
5069
 
5070
+ #: templates/emails/customer-note.php:28 templates/emails/plain/customer-note.php:25
5071
+ msgid "Hello, a note has just been added to your order:"
5072
  msgstr ""
5073
 
5074
+ #: templates/emails/customer-note.php:32 templates/emails/plain/customer-note.php:33
5075
+ msgid "For your reference, your order details are shown below."
5076
  msgstr ""
5077
 
5078
+ #: templates/emails/admin-failed-order.php:28 templates/emails/plain/admin-failed-order.php:25
5079
+ #, php-format
5080
+ msgid "Payment for order #%1$s from %2$s has failed. The order was as follows:"
5081
  msgstr ""
5082
 
5083
+ #: templates/emails/customer-new-account.php:27 templates/emails/plain/customer-new-account.php:25
5084
+ #, php-format
5085
+ msgid "Thanks for creating an account on %1$s. Your username is %2$s"
5086
  msgstr ""
5087
 
5088
+ #: templates/emails/customer-new-account.php:31
5089
+ #, php-format
5090
+ msgid "Your password has been automatically generated: %s"
5091
  msgstr ""
5092
 
5093
+ #: templates/emails/customer-new-account.php:35 templates/emails/plain/customer-new-account.php:31
5094
+ #, php-format
5095
+ msgid "You can access your account area to view your orders and change your password here: %s."
5096
  msgstr ""
5097
 
5098
+ #: templates/emails/customer-processing-order.php:28 templates/emails/plain/customer-processing-order.php:25
5099
+ msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:"
5100
  msgstr ""
5101
 
5102
+ #. translators: %s: app name
5103
+ #: templates/auth/form-grant-access.php:25 templates/auth/form-login.php:25
5104
+ #, php-format
5105
+ msgid "%s would like to connect to your store"
5106
  msgstr ""
5107
 
5108
+ #: templates/auth/form-grant-access.php:29
5109
+ #, php-format
5110
+ msgid "This will give \"%1$s\" %2$s access which will allow it to:"
5111
  msgstr ""
5112
 
5113
+ #: templates/auth/form-grant-access.php:39
5114
+ #, php-format
5115
+ msgid "Logged in as %s"
5116
  msgstr ""
5117
 
5118
+ #: templates/auth/form-grant-access.php:43
5119
+ msgid "Approve"
5120
  msgstr ""
5121
 
5122
+ #: templates/auth/form-grant-access.php:44
5123
+ msgid "Deny"
5124
  msgstr ""
5125
 
5126
+ #. translators: %1$s: app name, %2$s: URL
5127
+ #: templates/auth/form-login.php:34
5128
+ #, php-format
5129
+ msgid "To connect to %1$s you need to be logged in. Log in to your store below, or <a href=\"%2$s\">cancel and return to %1$s</a>"
5130
  msgstr ""
5131
 
5132
+ #: templates/auth/form-login.php:40 templates/myaccount/form-login.php:43
5133
+ msgid "Username or email address"
5134
  msgstr ""
5135
 
5136
+ #: templates/auth/header.php:29
5137
+ msgid "Application authentication request"
5138
  msgstr ""
5139
 
5140
+ #: templates/myaccount/my-orders.php:30
5141
+ msgid "Recent orders"
5142
  msgstr ""
5143
 
5144
+ #: templates/myaccount/my-orders.php:55 templates/myaccount/orders.php:51 includes/admin/reports/class-wc-report-customer-list.php:136 includes/admin/reports/class-wc-report-downloads.php:100 includes/admin/reports/class-wc-report-downloads.php:176
5145
+ msgctxt "hash before order number"
5146
+ msgid "#"
5147
  msgstr ""
5148
 
5149
+ #. translators: 1: formatted order total 2: total order items
5150
+ #: templates/myaccount/my-orders.php:67 templates/myaccount/orders.php:63
5151
+ #, php-format
5152
+ msgid "%1$s for %2$s item"
5153
+ msgid_plural "%1$s for %2$s items"
5154
+ msgstr[0] ""
5155
+ msgstr[1] ""
5156
 
5157
+ #: templates/myaccount/my-downloads.php:30
5158
+ msgid "Available downloads"
5159
  msgstr ""
5160
 
5161
+ #: templates/myaccount/my-downloads.php:39
5162
+ #, php-format
5163
+ msgid "%s download remaining"
5164
+ msgid_plural "%s downloads remaining"
5165
+ msgstr[0] ""
5166
+ msgstr[1] ""
5167
+
5168
+ #: templates/myaccount/orders.php:89
5169
+ msgid "Previous"
5170
  msgstr ""
5171
 
5172
+ #: templates/myaccount/orders.php:93 includes/admin/class-wc-admin-pointers.php:251
5173
+ msgid "Next"
5174
  msgstr ""
5175
 
5176
+ #: templates/myaccount/orders.php:101 templates/myaccount/downloads.php:41
5177
+ msgid "Go shop"
5178
  msgstr ""
5179
 
5180
+ #: templates/myaccount/orders.php:103
5181
+ msgid "No order has been made yet."
5182
  msgstr ""
5183
 
5184
+ #. translators: 1: user display name 2: logout url
5185
+ #: templates/myaccount/dashboard.php:29
5186
+ #, php-format
5187
+ msgid "Hello %1$s (not %1$s? <a href=\"%2$s\">Log out</a>)"
5188
  msgstr ""
5189
 
5190
+ #: templates/myaccount/dashboard.php:37
5191
+ #, php-format
5192
+ msgid "From your account dashboard you can view your <a href=\"%1$s\">recent orders</a>, manage your <a href=\"%2$s\">shipping and billing addresses</a>, and <a href=\"%3$s\">edit your password and account details</a>."
5193
  msgstr ""
5194
 
5195
+ #: templates/myaccount/form-login.php:55
5196
+ msgid "Log in"
5197
  msgstr ""
5198
 
5199
+ #: templates/myaccount/form-login.php:74 templates/myaccount/form-login.php:107 templates/myaccount/form-login.php:107
5200
+ msgid "Register"
5201
  msgstr ""
5202
 
5203
+ #: templates/myaccount/lost-password-confirmation.php:24
5204
+ msgid "Password reset email has been sent."
5205
  msgstr ""
5206
 
5207
+ #: templates/myaccount/lost-password-confirmation.php:27
5208
+ msgid "A password reset email has been sent to the email address on file for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset."
5209
  msgstr ""
5210
 
5211
+ #: templates/myaccount/form-edit-address.php:49
5212
+ msgid "Save address"
5213
  msgstr ""
5214
 
5215
+ #: templates/myaccount/form-edit-account.php:38
5216
+ msgid "This will be how your name will be displayed in the account section and in reviews"
5217
  msgstr ""
5218
 
5219
+ #: templates/myaccount/form-edit-account.php:48
5220
+ msgid "Password change"
5221
  msgstr ""
5222
 
5223
+ #: templates/myaccount/form-edit-account.php:51
5224
+ msgid "Current password (leave blank to leave unchanged)"
5225
  msgstr ""
5226
 
5227
+ #: templates/myaccount/form-edit-account.php:55
5228
+ msgid "New password (leave blank to leave unchanged)"
5229
  msgstr ""
5230
 
5231
+ #: templates/myaccount/form-edit-account.php:59
5232
+ msgid "Confirm new password"
5233
  msgstr ""
5234
 
5235
+ #: templates/myaccount/form-edit-account.php:69 includes/admin/views/html-admin-settings.php:44 includes/admin/views/html-admin-settings.php:44 includes/admin/settings/views/html-keys-edit.php:114 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:103 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:103 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:157 includes/admin/meta-boxes/views/html-product-data-variations.php:127
5236
+ msgid "Save changes"
5237
  msgstr ""
5238
 
5239
+ #: templates/myaccount/downloads.php:43
5240
+ msgid "No downloads available yet."
5241
  msgstr ""
5242
 
5243
+ #: templates/myaccount/form-add-payment-method.php:58
5244
+ msgid "New payment methods can only be added during checkout. Please contact us if you require assistance."
5245
  msgstr ""
5246
 
5247
+ #. translators: 1: credit card type 2: last 4 digits
5248
+ #: templates/myaccount/payment-methods.php:52
5249
+ #, php-format
5250
+ msgid "%1$s ending in %2$s"
5251
  msgstr ""
5252
 
5253
+ #: templates/myaccount/payment-methods.php:73
5254
+ msgid "No saved methods found."
5255
  msgstr ""
5256
 
5257
+ #: templates/myaccount/my-address.php:41
5258
+ msgid "The following addresses will be used on the checkout page by default."
5259
  msgstr ""
5260
 
5261
+ #: templates/myaccount/my-address.php:57
5262
+ msgid "You have not set up this type of address yet."
5263
  msgstr ""
5264
 
5265
+ #: templates/myaccount/form-reset-password.php:24
5266
+ msgid "Enter a new password below."
5267
  msgstr ""
5268
 
5269
+ #: templates/myaccount/form-reset-password.php:27
5270
+ msgid "New password"
5271
  msgstr ""
5272
 
5273
+ #: templates/myaccount/form-reset-password.php:31
5274
+ msgid "Re-enter new password"
5275
  msgstr ""
5276
 
5277
+ #: templates/myaccount/form-reset-password.php:44 includes/admin/meta-boxes/views/html-order-items.php:258
5278
+ msgid "Save"
5279
  msgstr ""
5280
 
5281
+ #: templates/myaccount/form-lost-password.php:24
5282
+ msgid "Lost your password? Please enter your username or email address. You will receive a link to create a new password via email."
5283
  msgstr ""
5284
 
5285
+ #: templates/myaccount/form-lost-password.php:37 includes/emails/class-wc-email-customer-reset-password.php:62
5286
+ msgid "Reset password"
5287
  msgstr ""
5288
 
5289
+ #: templates/checkout/form-shipping.php:29
5290
+ msgid "Ship to a different address?"
5291
  msgstr ""
5292
 
5293
+ #: templates/checkout/form-login.php:26
5294
+ msgid "Returning customer?"
5295
  msgstr ""
5296
 
5297
+ #: templates/checkout/form-login.php:26
5298
+ msgid "Click here to login"
5299
  msgstr ""
5300
 
5301
+ #: templates/checkout/form-login.php:32
5302
+ msgid "If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing &amp; Shipping section."
5303
  msgstr ""
5304
 
5305
+ #: templates/checkout/payment.php:33
5306
+ msgid "Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements."
5307
  msgstr ""
5308
 
5309
+ #: templates/checkout/payment.php:33
5310
+ msgid "Please fill in your details above to see available payment methods."
5311
  msgstr ""
5312
 
5313
+ #: templates/checkout/payment.php:40
5314
+ msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so."
5315
  msgstr ""
5316
 
5317
+ #: templates/checkout/form-checkout.php:29
5318
+ msgid "You must be logged in to checkout."
5319
  msgstr ""
5320
 
5321
+ #: templates/checkout/form-checkout.php:55
5322
+ msgid "Your order"
5323
  msgstr ""
5324
 
5325
+ #: templates/checkout/form-pay.php:28 includes/admin/meta-boxes/views/html-order-items.php:32
5326
+ msgid "Qty"
5327
  msgstr ""
5328
 
5329
+ #: templates/checkout/form-pay.php:29 includes/admin/reports/class-wc-report-taxes-by-date.php:245
5330
+ msgid "Totals"
5331
  msgstr ""
5332
 
5333
+ #: templates/checkout/form-pay.php:79
5334
+ msgid "Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements."
5335
  msgstr ""
5336
 
5337
+ #: templates/checkout/form-billing.php:29
5338
+ msgid "Billing &amp; Shipping"
5339
  msgstr ""
5340
 
5341
+ #: templates/checkout/form-billing.php:33 includes/admin/list-tables/class-wc-admin-list-table-orders.php:351
5342
+ msgid "Billing details"
5343
  msgstr ""
5344
 
5345
+ #: templates/checkout/form-billing.php:61
5346
+ msgid "Create an account?"
5347
  msgstr ""
5348
 
5349
+ #: templates/checkout/cart-errors.php:27
5350
+ msgid "There are some issues with the items in your cart (shown above). Please go back to the cart page and resolve these issues before checking out."
5351
  msgstr ""
5352
 
5353
+ #: templates/checkout/cart-errors.php:31
5354
+ msgid "Return to cart"
5355
  msgstr ""
5356
 
5357
+ #: templates/checkout/order-receipt.php:26 templates/checkout/thankyou.php:46
5358
+ msgid "Order number:"
5359
  msgstr ""
5360
 
5361
+ #: templates/checkout/order-receipt.php:30 templates/checkout/thankyou.php:51
5362
+ msgid "Date:"
5363
  msgstr ""
5364
 
5365
+ #: templates/checkout/order-receipt.php:34 templates/checkout/thankyou.php:63 includes/abstracts/abstract-wc-order.php:1844 includes/admin/meta-boxes/views/html-order-item.php:98 includes/admin/meta-boxes/views/html-order-item.php:144
5366
+ msgid "Total:"
5367
  msgstr ""
5368
 
5369
+ #: templates/checkout/form-coupon.php:26
5370
+ msgid "Have a coupon?"
5371
  msgstr ""
5372
 
5373
+ #: templates/checkout/form-coupon.php:26
5374
+ msgid "Click here to enter your code"
5375
  msgstr ""
5376
 
5377
+ #: templates/checkout/form-coupon.php:31
5378
+ msgid "If you have a coupon code, please apply it below."
5379
  msgstr ""
5380
 
5381
+ #: templates/checkout/thankyou.php:30
5382
+ msgid "Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction. Please attempt your purchase again."
5383
  msgstr ""
5384
 
5385
+ #: templates/checkout/thankyou.php:35 includes/shortcodes/class-wc-shortcode-my-account.php:134
5386
+ msgid "My account"
5387
  msgstr ""
5388
 
5389
+ #: templates/checkout/thankyou.php:41 templates/checkout/thankyou.php:83
5390
+ msgid "Thank you. Your order has been received."
5391
  msgstr ""
5392
 
5393
+ #: templates/checkout/thankyou.php:57
5394
+ msgid "Email:"
5395
  msgstr ""
5396
 
5397
+ #: includes/export/class-wc-product-csv-exporter.php:82 includes/admin/importers/class-wc-product-csv-importer-controller.php:462 includes/admin/importers/class-wc-product-csv-importer-controller.php:620
5398
+ msgid "ID"
5399
  msgstr ""
5400
 
5401
+ #: includes/export/class-wc-product-csv-exporter.php:83 includes/admin/class-wc-admin-attributes.php:224 includes/admin/class-wc-admin-attributes.php:292 includes/admin/class-wc-admin-attributes.php:415 includes/admin/importers/class-wc-product-csv-importer-controller.php:463 includes/admin/importers/class-wc-product-csv-importer-controller.php:621
5402
+ msgid "Type"
5403
  msgstr ""
5404
 
5405
+ #: includes/export/class-wc-product-csv-exporter.php:84 includes/admin/views/html-quick-edit-product.php:21 includes/admin/list-tables/class-wc-admin-list-table-products.php:110 includes/admin/importers/class-wc-product-csv-importer-controller.php:464 includes/admin/importers/class-wc-product-csv-importer-controller.php:622 includes/admin/meta-boxes/views/html-product-data-inventory.php:15 includes/admin/meta-boxes/views/html-variation-admin.php:67
5406
+ msgid "SKU"
5407
  msgstr ""
5408
 
5409
+ #: includes/export/class-wc-product-csv-exporter.php:86 includes/admin/importers/class-wc-product-csv-importer-controller.php:466 includes/admin/importers/class-wc-product-csv-importer-controller.php:624
5410
+ msgid "Published"
5411
  msgstr ""
5412
 
5413
+ #: includes/export/class-wc-product-csv-exporter.php:87 includes/admin/importers/class-wc-product-csv-importer-controller.php:467 includes/admin/importers/class-wc-product-csv-importer-controller.php:625
5414
+ msgid "Is featured?"
5415
  msgstr ""
5416
 
5417
+ #: includes/export/class-wc-product-csv-exporter.php:88 includes/admin/importers/class-wc-product-csv-importer-controller.php:468 includes/admin/importers/class-wc-product-csv-importer-controller.php:626
5418
+ msgid "Visibility in catalog"
5419
  msgstr ""
5420
 
5421
+ #: includes/export/class-wc-product-csv-exporter.php:89 includes/admin/importers/class-wc-product-csv-importer-controller.php:469 includes/admin/importers/class-wc-product-csv-importer-controller.php:627
5422
+ msgid "Short description"
5423
  msgstr ""
5424
 
5425
+ #: includes/export/class-wc-product-csv-exporter.php:91 includes/admin/importers/class-wc-product-csv-importer-controller.php:471 includes/admin/importers/class-wc-product-csv-importer-controller.php:634
5426
+ msgid "Date sale price starts"
5427
  msgstr ""
5428
 
5429
+ #: includes/export/class-wc-product-csv-exporter.php:92 includes/admin/importers/class-wc-product-csv-importer-controller.php:472 includes/admin/importers/class-wc-product-csv-importer-controller.php:635
5430
+ msgid "Date sale price ends"
5431
  msgstr ""
5432
 
5433
+ #: includes/export/class-wc-product-csv-exporter.php:93 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:87 includes/admin/views/html-bulk-edit-product.php:70 includes/admin/views/html-quick-edit-product.php:49 includes/admin/importers/class-wc-product-csv-importer-controller.php:473 includes/admin/importers/class-wc-product-csv-importer-controller.php:638 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:53 includes/shipping/flat-rate/includes/settings-flat-rate.php:21 includes/admin/meta-boxes/views/html-product-data-general.php:151
5434
+ msgid "Tax status"
5435
  msgstr ""
5436
 
5437
+ #: includes/export/class-wc-product-csv-exporter.php:94 includes/admin/views/html-bulk-edit-product.php:89 includes/admin/views/html-quick-edit-product.php:67 includes/admin/settings/class-wc-settings-tax.php:202 includes/admin/importers/class-wc-product-csv-importer-controller.php:474 includes/admin/importers/class-wc-product-csv-importer-controller.php:639 includes/admin/meta-boxes/views/html-order-items.php:355 includes/admin/meta-boxes/views/html-variation-admin.php:313 includes/admin/meta-boxes/views/html-product-data-general.php:166
5438
+ msgid "Tax class"
5439
  msgstr ""
5440
 
5441
+ #: includes/export/class-wc-product-csv-exporter.php:95 includes/admin/views/html-bulk-edit-product.php:218 includes/admin/views/html-quick-edit-product.php:173 includes/admin/importers/class-wc-product-csv-importer-controller.php:475 includes/admin/importers/class-wc-product-csv-importer-controller.php:640
5442
+ msgid "In stock?"
5443
  msgstr ""
5444
 
5445
+ #: includes/export/class-wc-product-csv-exporter.php:96 includes/admin/class-wc-admin-reports.php:99 includes/admin/list-tables/class-wc-admin-list-table-products.php:114 includes/admin/importers/class-wc-product-csv-importer-controller.php:476 includes/admin/meta-boxes/views/html-product-data-variations.php:74
5446
+ msgid "Stock"
5447
  msgstr ""
5448
 
5449
+ #: includes/export/class-wc-product-csv-exporter.php:97 includes/admin/importers/class-wc-product-csv-importer-controller.php:477 includes/admin/importers/class-wc-product-csv-importer-controller.php:642
5450
+ msgid "Backorders allowed?"
5451
  msgstr ""
5452
 
5453
+ #: includes/export/class-wc-product-csv-exporter.php:98 includes/admin/views/html-bulk-edit-product.php:291 includes/admin/importers/class-wc-product-csv-importer-controller.php:478 includes/admin/importers/class-wc-product-csv-importer-controller.php:643
5454
+ msgid "Sold individually?"
5455
  msgstr ""
5456
 
5457
+ #. translators: %s: Weight unit
5458
+ #. translators: %s: weight unit
5459
+ #. translators: %s: weight unit
5460
+ #. translators: %s: weight
5461
+ #: includes/export/class-wc-product-csv-exporter.php:100 includes/admin/importers/class-wc-product-csv-importer-controller.php:480 includes/admin/importers/class-wc-product-csv-importer-controller.php:645 includes/admin/meta-boxes/views/html-variation-admin.php:230
5462
+ #, php-format
5463
+ msgid "Weight (%s)"
5464
  msgstr ""
5465
 
5466
+ #. translators: %s: Length unit
5467
+ #. translators: %s: dimension unit
5468
+ #. translators: %s: length
5469
+ #: includes/export/class-wc-product-csv-exporter.php:102 includes/admin/views/html-bulk-edit-product.php:158 includes/admin/importers/class-wc-product-csv-importer-controller.php:482 includes/admin/importers/class-wc-product-csv-importer-controller.php:650
5470
+ #, php-format
5471
+ msgid "Length (%s)"
5472
  msgstr ""
5473
 
5474
+ #. translators: %s: Width unit
5475
+ #. translators: %s: dimension unit
5476
+ #. translators: %s: width
5477
+ #: includes/export/class-wc-product-csv-exporter.php:104 includes/admin/views/html-bulk-edit-product.php:159 includes/admin/importers/class-wc-product-csv-importer-controller.php:484 includes/admin/importers/class-wc-product-csv-importer-controller.php:652
5478
+ #, php-format
5479
+ msgid "Width (%s)"
5480
  msgstr ""
5481
 
5482
+ #. translators: %s: Height unit
5483
+ #. translators: %s: dimension unit
5484
+ #. translators: %s: Height
5485
+ #: includes/export/class-wc-product-csv-exporter.php:106 includes/admin/views/html-bulk-edit-product.php:160 includes/admin/importers/class-wc-product-csv-importer-controller.php:486 includes/admin/importers/class-wc-product-csv-importer-controller.php:654
5486
+ #, php-format
5487
+ msgid "Height (%s)"
5488
  msgstr ""
5489
 
5490
+ #: includes/export/class-wc-product-csv-exporter.php:107 includes/admin/importers/class-wc-product-csv-importer-controller.php:487 includes/admin/importers/class-wc-product-csv-importer-controller.php:691
5491
+ msgid "Allow customer reviews?"
5492
  msgstr ""
5493
 
5494
+ #: includes/export/class-wc-product-csv-exporter.php:108 includes/admin/importers/class-wc-product-csv-importer-controller.php:488 includes/admin/importers/class-wc-product-csv-importer-controller.php:692 includes/admin/meta-boxes/views/html-product-data-advanced.php:14
5495
+ msgid "Purchase note"
5496
  msgstr ""
5497
 
5498
+ #: includes/export/class-wc-product-csv-exporter.php:109 includes/admin/views/html-quick-edit-product.php:41 includes/admin/importers/class-wc-product-csv-importer-controller.php:489 includes/admin/importers/class-wc-product-csv-importer-controller.php:633 includes/admin/meta-boxes/views/html-product-data-general.php:48
5499
+ msgid "Sale price"
5500
  msgstr ""
5501
 
5502
+ #: includes/export/class-wc-product-csv-exporter.php:110 includes/admin/views/html-quick-edit-product.php:34 includes/admin/importers/class-wc-product-csv-importer-controller.php:490 includes/admin/importers/class-wc-product-csv-importer-controller.php:632 includes/admin/meta-boxes/views/html-product-data-general.php:38
5503
+ msgid "Regular price"
5504
  msgstr ""
5505
 
5506
+ #: includes/export/class-wc-product-csv-exporter.php:112 includes/admin/list-tables/class-wc-admin-list-table-products.php:119 includes/admin/importers/class-wc-product-csv-importer-controller.php:492 includes/admin/importers/class-wc-product-csv-importer-controller.php:658
5507
+ msgid "Tags"
5508
  msgstr ""
5509
 
5510
+ #: includes/export/class-wc-product-csv-exporter.php:114 includes/admin/importers/class-wc-product-csv-importer-controller.php:494 includes/admin/importers/class-wc-product-csv-importer-controller.php:660
5511
+ msgid "Images"
5512
  msgstr ""
5513
 
5514
+ #: includes/export/class-wc-product-csv-exporter.php:115 includes/admin/importers/class-wc-product-csv-importer-controller.php:495 includes/admin/importers/class-wc-product-csv-importer-controller.php:677 includes/admin/meta-boxes/views/html-product-data-variations.php:86 includes/admin/meta-boxes/views/html-variation-admin.php:397 includes/admin/meta-boxes/views/html-product-data-general.php:114
5515
+ msgid "Download limit"
5516
  msgstr ""
5517
 
5518
+ #: includes/export/class-wc-product-csv-exporter.php:116 includes/admin/importers/class-wc-product-csv-importer-controller.php:496 includes/admin/importers/class-wc-product-csv-importer-controller.php:678
5519
+ msgid "Download expiry days"
5520
  msgstr ""
5521
 
5522
+ #: includes/export/class-wc-product-csv-exporter.php:117 includes/admin/reports/class-wc-report-stock.php:174 includes/admin/importers/class-wc-product-csv-importer-controller.php:497 includes/admin/importers/class-wc-product-csv-importer-controller.php:661
5523
+ msgid "Parent"
5524
  msgstr ""
5525
 
5526
+ #: includes/export/class-wc-product-csv-exporter.php:118 includes/admin/importers/class-wc-product-csv-importer-controller.php:500 includes/admin/importers/class-wc-product-csv-importer-controller.php:664 includes/admin/meta-boxes/views/html-product-data-linked-products.php:14
5527
+ msgid "Grouped products"
5528
  msgstr ""
5529
 
5530
+ #: includes/export/class-wc-product-csv-exporter.php:119 includes/admin/importers/class-wc-product-csv-importer-controller.php:498 includes/admin/importers/class-wc-product-csv-importer-controller.php:662 includes/admin/meta-boxes/views/html-product-data-linked-products.php:32
5531
+ msgid "Upsells"
5532
  msgstr ""
5533
 
5534
+ #: includes/export/class-wc-product-csv-exporter.php:120 includes/admin/importers/class-wc-product-csv-importer-controller.php:499 includes/admin/importers/class-wc-product-csv-importer-controller.php:663 includes/admin/meta-boxes/views/html-product-data-linked-products.php:48
5535
+ msgid "Cross-sells"
5536
  msgstr ""
5537
 
5538
+ #: includes/export/class-wc-product-csv-exporter.php:121 includes/admin/importers/class-wc-product-csv-importer-controller.php:501 includes/admin/importers/class-wc-product-csv-importer-controller.php:668
5539
+ msgid "External URL"
5540
  msgstr ""
5541
 
5542
+ #: includes/export/class-wc-product-csv-exporter.php:122 includes/admin/importers/class-wc-product-csv-importer-controller.php:502 includes/admin/importers/class-wc-product-csv-importer-controller.php:669 includes/admin/meta-boxes/views/html-product-data-general.php:24
5543
+ msgid "Button text"
5544
  msgstr ""
5545
 
5546
+ #: includes/export/class-wc-product-csv-exporter.php:123 includes/admin/importers/class-wc-product-csv-importer-controller.php:503 includes/admin/importers/class-wc-product-csv-importer-controller.php:694
5547
+ msgid "Position"
5548
  msgstr ""
5549
 
5550
+ #. translators: %d: Download number
5551
+ #. translators: %s: download number
5552
+ #: includes/export/class-wc-product-csv-exporter.php:483 includes/admin/importers/class-wc-product-csv-importer-controller.php:524
5553
+ #, php-format
5554
+ msgid "Download %d name"
5555
  msgstr ""
5556
 
5557
+ #. translators: %d: Download number
5558
+ #. translators: %s: download number
5559
+ #: includes/export/class-wc-product-csv-exporter.php:485 includes/admin/importers/class-wc-product-csv-importer-controller.php:526
5560
+ #, php-format
5561
+ msgid "Download %d URL"
5562
  msgstr ""
5563
 
5564
+ #. translators: %d: Attribute number
5565
+ #. translators: %s: attribute number
5566
+ #: includes/export/class-wc-product-csv-exporter.php:510 includes/admin/importers/class-wc-product-csv-importer-controller.php:514
5567
+ #, php-format
5568
+ msgid "Attribute %d name"
5569
  msgstr ""
5570
 
5571
+ #. translators: %d: Attribute number
5572
+ #. translators: %s: attribute number
5573
+ #: includes/export/class-wc-product-csv-exporter.php:512 includes/admin/importers/class-wc-product-csv-importer-controller.php:516
5574
+ #, php-format
5575
+ msgid "Attribute %d value(s)"
5576
  msgstr ""
5577
 
5578
+ #. translators: %d: Attribute number
5579
+ #. translators: %s: attribute number
5580
+ #: includes/export/class-wc-product-csv-exporter.php:514 includes/admin/importers/class-wc-product-csv-importer-controller.php:518
5581
+ #, php-format
5582
+ msgid "Attribute %d visible"
5583
  msgstr ""
5584
 
5585
+ #. translators: %d: Attribute number
5586
+ #. translators: %s: attribute number
5587
+ #: includes/export/class-wc-product-csv-exporter.php:516 includes/admin/importers/class-wc-product-csv-importer-controller.php:520
5588
+ #, php-format
5589
+ msgid "Attribute %d global"
5590
  msgstr ""
5591
 
5592
+ #. translators: %d: Attribute number
5593
+ #. translators: %s: attribute number
5594
+ #: includes/export/class-wc-product-csv-exporter.php:554 includes/admin/importers/class-wc-product-csv-importer-controller.php:522
5595
+ #, php-format
5596
+ msgid "Attribute %d default"
5597
  msgstr ""
5598
 
5599
+ #. translators: %d: Meta number
5600
+ #. translators: %s: meta data name
5601
+ #: includes/export/class-wc-product-csv-exporter.php:599 includes/admin/importers/class-wc-product-csv-importer-controller.php:528
5602
+ #, php-format
5603
+ msgid "Meta: %s"
5604
  msgstr ""
5605
 
5606
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:21
5607
+ msgid "Display a list of active product filters."
5608
  msgstr ""
5609
 
5610
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:23
5611
+ msgid "Active Product Filters"
5612
  msgstr ""
5613
 
5614
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:27 includes/admin/reports/class-wc-report-downloads.php:123
5615
+ msgid "Active filters"
5616
  msgstr ""
5617
 
5618
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:28 includes/widgets/class-wc-widget-recently-viewed.php:28 includes/widgets/class-wc-widget-products.php:28 includes/widgets/class-wc-widget-product-tag-cloud.php:30 includes/widgets/class-wc-widget-layered-nav.php:73 includes/widgets/class-wc-widget-cart.php:30 includes/widgets/class-wc-widget-top-rated-products.php:29 includes/widgets/class-wc-widget-product-search.php:28 includes/widgets/class-wc-widget-product-categories.php:44 includes/widgets/class-wc-widget-price-filter.php:30 includes/widgets/class-wc-widget-recent-reviews.php:28 includes/widgets/class-wc-widget-rating-filter.php:28 includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:123 includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:79 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:102 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:80
5619
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:64 includes/gateways/bacs/class-wc-gateway-bacs.php:88 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:197 includes/gateways/cod/class-wc-gateway-cod.php:115 includes/gateways/paypal/includes/settings-paypal.php:18 includes/admin/settings/views/html-admin-page-shipping-zone-methods.php:84 includes/admin/importers/mappings/generic.php:21
5620
+ msgid "Title"
5621
  msgstr ""
5622
 
5623
+ #. translators: %s: minimum price
5624
+ #. translators: %s: maximum price
5625
+ #. translators: %s: rating
5626
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:79 includes/widgets/class-wc-widget-layered-nav-filters.php:87 includes/widgets/class-wc-widget-layered-nav-filters.php:93 includes/widgets/class-wc-widget-layered-nav-filters.php:102
5627
+ msgid "Remove filter"
5628
  msgstr ""
5629
 
5630
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:87
5631
+ #, php-format
5632
+ msgid "Min %s"
5633
  msgstr ""
5634
 
5635
+ #: includes/widgets/class-wc-widget-layered-nav-filters.php:93
5636
+ #, php-format
5637
+ msgid "Max %s"
5638
  msgstr ""
5639
 
5640
+ #: includes/widgets/class-wc-widget-recently-viewed.php:21
5641
+ msgid "Display a list of a customer's recently viewed products."
5642
  msgstr ""
5643
 
5644
+ #: includes/widgets/class-wc-widget-recently-viewed.php:23
5645
+ msgid "Recent Viewed Products"
5646
  msgstr ""
5647
 
5648
+ #: includes/widgets/class-wc-widget-recently-viewed.php:27
5649
+ msgid "Recently Viewed Products"
5650
  msgstr ""
5651
 
5652
+ #: includes/widgets/class-wc-widget-recently-viewed.php:36 includes/widgets/class-wc-widget-products.php:36 includes/widgets/class-wc-widget-top-rated-products.php:37
5653
+ msgid "Number of products to show"
5654
  msgstr ""
5655
 
5656
+ #: includes/widgets/class-wc-widget-products.php:21
5657
+ msgid "A list of your store's products."
5658
  msgstr ""
5659
 
5660
+ #: includes/widgets/class-wc-widget-products.php:41 includes/admin/reports/class-wc-report-sales-by-product.php:220 includes/admin/reports/class-wc-report-sales-by-product.php:220 includes/admin/reports/class-wc-report-sales-by-category.php:233 includes/admin/reports/class-wc-report-sales-by-category.php:233 includes/admin/reports/class-wc-report-coupon-usage.php:218 includes/admin/reports/class-wc-report-coupon-usage.php:218
5661
+ msgid "Show"
5662
  msgstr ""
5663
 
5664
+ #: includes/widgets/class-wc-widget-products.php:43
5665
+ msgid "All products"
5666
  msgstr ""
5667
 
5668
+ #: includes/widgets/class-wc-widget-products.php:44
5669
+ msgid "Featured products"
5670
  msgstr ""
5671
 
5672
+ #: includes/widgets/class-wc-widget-products.php:45
5673
+ msgid "On-sale products"
5674
  msgstr ""
5675
 
5676
+ #: includes/widgets/class-wc-widget-products.php:51 includes/widgets/class-wc-widget-product-categories.php:49 includes/admin/class-wc-admin-attributes.php:294
5677
+ msgid "Order by"
5678
  msgstr ""
5679
 
5680
+ #: includes/widgets/class-wc-widget-products.php:55
5681
+ msgid "Random"
5682
  msgstr ""
5683
 
5684
+ #: includes/widgets/class-wc-widget-products.php:56
5685
+ msgid "Sales"
5686
  msgstr ""
5687
 
5688
+ #: includes/widgets/class-wc-widget-products.php:62
5689
+ msgctxt "Sorting order"
5690
+ msgid "Order"
5691
  msgstr ""
5692
 
5693
+ #: includes/widgets/class-wc-widget-products.php:64
5694
+ msgid "ASC"
5695
  msgstr ""
5696
 
5697
+ #: includes/widgets/class-wc-widget-products.php:65
5698
+ msgid "DESC"
5699
  msgstr ""
5700
 
5701
+ #: includes/widgets/class-wc-widget-products.php:71
5702
+ msgid "Hide free products"
5703
  msgstr ""
5704
 
5705
+ #: includes/widgets/class-wc-widget-products.php:76
5706
+ msgid "Show hidden products"
5707
  msgstr ""
5708
 
5709
+ #: includes/widgets/class-wc-widget-product-tag-cloud.php:23
5710
+ msgid "A cloud of your most used product tags."
 
 
 
 
5711
  msgstr ""
5712
 
5713
+ #: includes/widgets/class-wc-widget-product-tag-cloud.php:25
5714
+ msgid "Product Tag Cloud"
5715
  msgstr ""
5716
 
5717
+ #. translators: %s: product count
5718
+ #: includes/widgets/class-wc-widget-product-tag-cloud.php:90 includes/admin/reports/class-wc-report-stock.php:154
5719
+ #, php-format
5720
+ msgid "%s product"
5721
  msgstr ""
5722
 
5723
+ #: includes/widgets/class-wc-widget-layered-nav.php:21
5724
+ msgid "Display a list of attributes to filter products in your store."
5725
  msgstr ""
5726
 
5727
+ #: includes/widgets/class-wc-widget-layered-nav.php:23
5728
+ msgid "Filter Products by Attribute"
5729
  msgstr ""
5730
 
5731
+ #: includes/widgets/class-wc-widget-layered-nav.php:72
5732
+ msgid "Filter by"
5733
  msgstr ""
5734
 
5735
+ #: includes/widgets/class-wc-widget-layered-nav.php:78
5736
+ msgid "Attribute"
5737
  msgstr ""
5738
 
5739
+ #: includes/widgets/class-wc-widget-layered-nav.php:84 includes/admin/class-wc-admin-taxonomies.php:97 includes/admin/class-wc-admin-taxonomies.php:204
5740
+ msgid "Display type"
5741
  msgstr ""
5742
 
5743
+ #: includes/widgets/class-wc-widget-layered-nav.php:86
5744
+ msgid "List"
5745
  msgstr ""
5746
 
5747
+ #: includes/widgets/class-wc-widget-layered-nav.php:87
5748
+ msgid "Dropdown"
5749
  msgstr ""
5750
 
5751
+ #: includes/widgets/class-wc-widget-layered-nav.php:93
5752
+ msgid "Query type"
5753
  msgstr ""
5754
 
5755
+ #: includes/widgets/class-wc-widget-layered-nav.php:95
5756
+ msgid "AND"
5757
  msgstr ""
5758
 
5759
+ #: includes/widgets/class-wc-widget-layered-nav.php:96
5760
+ msgid "OR"
5761
  msgstr ""
5762
 
5763
+ #. translators: %s: taxonomy name
5764
+ #: includes/widgets/class-wc-widget-layered-nav.php:230
5765
+ #, php-format
5766
+ msgid "Any %s"
5767
  msgstr ""
5768
 
5769
+ #: includes/widgets/class-wc-widget-layered-nav.php:268 includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:54
5770
+ msgid "Apply"
5771
  msgstr ""
5772
 
5773
+ #: includes/widgets/class-wc-widget-cart.php:23
5774
+ msgid "Display the customer shopping cart."
5775
  msgstr ""
5776
 
5777
+ #: includes/widgets/class-wc-widget-cart.php:25 includes/widgets/class-wc-widget-cart.php:29
5778
+ msgid "Cart"
5779
  msgstr ""
5780
 
5781
+ #: includes/widgets/class-wc-widget-cart.php:35
5782
+ msgid "Hide if cart is empty"
5783
  msgstr ""
5784
 
5785
+ #: includes/widgets/class-wc-widget-top-rated-products.php:22
5786
+ msgid "A list of your store's top-rated products."
5787
  msgstr ""
5788
 
5789
+ #: includes/widgets/class-wc-widget-top-rated-products.php:24
5790
+ msgid "Products by Rating"
5791
  msgstr ""
5792
 
5793
+ #: includes/widgets/class-wc-widget-top-rated-products.php:28
5794
+ msgid "Top rated products"
5795
  msgstr ""
5796
 
5797
+ #: includes/widgets/class-wc-widget-product-search.php:21
5798
+ msgid "A search form for your store."
5799
  msgstr ""
5800
 
5801
+ #: includes/widgets/class-wc-widget-product-search.php:23
5802
+ msgid "Product Search"
5803
  msgstr ""
5804
 
5805
+ #: includes/widgets/class-wc-widget-product-categories.php:37
5806
+ msgid "A list or dropdown of product categories."
5807
  msgstr ""
5808
 
5809
+ #: includes/widgets/class-wc-widget-product-categories.php:39
5810
+ msgid "Product Categories"
5811
  msgstr ""
5812
 
5813
+ #: includes/widgets/class-wc-widget-product-categories.php:51
5814
+ msgid "Category order"
5815
  msgstr ""
5816
 
5817
+ #: includes/widgets/class-wc-widget-product-categories.php:58
5818
+ msgid "Show as dropdown"
5819
  msgstr ""
5820
 
5821
+ #: includes/widgets/class-wc-widget-product-categories.php:63
5822
+ msgid "Show product counts"
5823
  msgstr ""
5824
 
5825
+ #: includes/widgets/class-wc-widget-product-categories.php:68
5826
+ msgid "Show hierarchy"
5827
  msgstr ""
5828
 
5829
+ #: includes/widgets/class-wc-widget-product-categories.php:73
5830
+ msgid "Only show children of the current category"
5831
  msgstr ""
5832
 
5833
+ #: includes/widgets/class-wc-widget-product-categories.php:78
5834
+ msgid "Hide empty categories"
5835
  msgstr ""
5836
 
5837
+ #: includes/widgets/class-wc-widget-product-categories.php:83
5838
+ msgid "Maximum depth"
5839
  msgstr ""
5840
 
5841
+ #: includes/widgets/class-wc-widget-product-categories.php:258
5842
+ msgid "No product categories exist."
5843
  msgstr ""
5844
 
5845
+ #: includes/widgets/class-wc-widget-price-filter.php:23
5846
+ msgid "Display a slider to filter products in your store by price."
5847
  msgstr ""
5848
 
5849
+ #: includes/widgets/class-wc-widget-price-filter.php:25
5850
+ msgid "Filter Products by Price"
5851
  msgstr ""
5852
 
5853
+ #: includes/widgets/class-wc-widget-price-filter.php:29
5854
+ msgid "Filter by price"
5855
  msgstr ""
5856
 
5857
+ #: includes/widgets/class-wc-widget-price-filter.php:99
5858
+ msgid "Min price"
5859
  msgstr ""
5860
 
5861
+ #: includes/widgets/class-wc-widget-price-filter.php:100
5862
+ msgid "Max price"
5863
  msgstr ""
5864
 
5865
+ #: includes/widgets/class-wc-widget-price-filter.php:101 includes/admin/class-wc-admin-log-table-list.php:204
5866
+ msgid "Filter"
5867
  msgstr ""
5868
 
5869
+ #: includes/widgets/class-wc-widget-price-filter.php:103
5870
+ msgid "Price:"
5871
  msgstr ""
5872
 
5873
+ #: includes/widgets/class-wc-widget-recent-reviews.php:21
5874
+ msgid "Display a list of recent reviews from your store."
5875
  msgstr ""
5876
 
5877
+ #: includes/widgets/class-wc-widget-recent-reviews.php:23
5878
+ msgid "Recent Product Reviews"
5879
  msgstr ""
5880
 
5881
+ #: includes/widgets/class-wc-widget-recent-reviews.php:27
5882
+ msgid "Recent reviews"
5883
  msgstr ""
5884
 
5885
+ #: includes/widgets/class-wc-widget-recent-reviews.php:36
5886
+ msgid "Number of reviews to show"
5887
  msgstr ""
5888
 
5889
+ #: includes/widgets/class-wc-widget-rating-filter.php:21
5890
+ msgid "Display a list of star ratings to filter products in your store."
5891
  msgstr ""
5892
 
5893
+ #: includes/widgets/class-wc-widget-rating-filter.php:23
5894
+ msgid "Filter Products by Rating"
5895
  msgstr ""
5896
 
5897
+ #: includes/widgets/class-wc-widget-rating-filter.php:27 includes/customizer/class-wc-shop-customizer.php:273 includes/customizer/class-wc-shop-customizer.php:439
5898
+ msgid "Average rating"
5899
  msgstr ""
5900
 
5901
+ #: includes/shortcodes/class-wc-shortcode-cart.php:49
5902
+ msgid "Shipping costs updated."
5903
  msgstr ""
5904
 
5905
+ #: includes/shortcodes/class-wc-shortcode-order-tracking.php:48
5906
+ msgid "Please enter a valid order ID"
5907
  msgstr ""
5908
 
5909
+ #: includes/shortcodes/class-wc-shortcode-order-tracking.php:50
5910
+ msgid "Please enter a valid email address"
5911
  msgstr ""
5912
 
5913
+ #: includes/shortcodes/class-wc-shortcode-order-tracking.php:63
5914
+ msgid "Sorry, the order could not be found. Please contact us if you are having difficulty finding your order details."
5915
  msgstr ""
5916
 
5917
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:51
5918
+ msgid "Your password has been reset successfully."
5919
  msgstr ""
5920
 
5921
+ #. translators: %s: logout url
5922
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:65
5923
+ #, php-format
5924
+ msgid "Are you sure you want to log out? <a href=\"%s\">Confirm and log out</a>"
5925
  msgstr ""
5926
 
5927
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:258
5928
+ msgid "Enter a username or email address."
5929
  msgstr ""
5930
 
5931
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:283 includes/shortcodes/class-wc-shortcode-my-account.php:289
5932
+ msgid "Invalid username or email."
5933
  msgstr ""
5934
 
5935
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:303
5936
+ msgid "Password reset is not allowed for this user"
5937
  msgstr ""
5938
 
5939
+ #: includes/shortcodes/class-wc-shortcode-my-account.php:338
5940
+ msgid "This key is invalid or has already been used. Please reset your password again if needed."
5941
  msgstr ""
5942
 
5943
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:94 includes/shortcodes/class-wc-shortcode-checkout.php:174
5944
+ msgid "Sorry, this order is invalid and cannot be paid for."
5945
  msgstr ""
5946
 
5947
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:99
5948
+ msgid "Please log in to your account below to continue to the payment form."
5949
  msgstr ""
5950
 
5951
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:110
5952
+ msgid "This order cannot be paid for. Please contact us if you need assistance."
5953
  msgstr ""
5954
 
5955
+ #. translators: %s: order status
5956
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:116 includes/shortcodes/class-wc-shortcode-checkout.php:171
5957
+ #, php-format
5958
+ msgid "This order&rsquo;s status is &ldquo;%s&rdquo;&mdash;it cannot be paid for. Please contact us if you need assistance."
5959
  msgstr ""
5960
 
5961
+ #. translators: %s: product name
5962
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:126
5963
+ #, php-format
5964
+ msgid "Sorry, \"%s\" is no longer in stock so this order cannot be paid for. We apologize for any inconvenience caused."
5965
  msgstr ""
5966
 
5967
+ #: includes/shortcodes/class-wc-shortcode-checkout.php:247
5968
+ msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
5969
  msgstr ""
5970
 
5971
+ #. translators: 1: Site name 2: Maximum level 3: Log count
5972
+ #: includes/log-handlers/class-wc-log-handler-email.php:156
5973
+ #, php-format
5974
+ msgid "[%1$s] %2$s: %3$s WooCommerce log message"
5975
+ msgid_plural "[%1$s] %2$s: %3$s WooCommerce log messages"
5976
+ msgstr[0] ""
5977
+ msgstr[1] ""
5978
 
5979
+ #: includes/log-handlers/class-wc-log-handler-email.php:177
5980
+ msgid "You have received the following WooCommerce log message:"
5981
+ msgid_plural "You have received the following WooCommerce log messages:"
5982
+ msgstr[0] ""
5983
+ msgstr[1] ""
5984
+
5985
+ #. translators: %s: Site name
5986
+ #: includes/log-handlers/class-wc-log-handler-email.php:188
5987
+ #, php-format
5988
+ msgid "Visit %s admin area:"
5989
  msgstr ""
5990
 
5991
+ #: includes/log-handlers/class-wc-log-handler-file.php:350 includes/log-handlers/class-wc-log-handler-file.php:370
5992
+ msgid "This method should not be called before plugins_loaded."
5993
  msgstr ""
5994
 
5995
+ #: includes/gateways/class-wc-payment-gateway-cc.php:61
5996
+ msgid "Card code"
5997
  msgstr ""
5998
 
5999
+ #: includes/gateways/class-wc-payment-gateway-cc.php:62
6000
+ msgid "CVC"
6001
  msgstr ""
6002
 
6003
+ #: includes/gateways/class-wc-payment-gateway-cc.php:67 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:307
6004
+ msgid "Card number"
6005
  msgstr ""
6006
 
6007
+ #: includes/gateways/class-wc-payment-gateway-cc.php:71
6008
+ msgid "Expiry (MM/YY)"
6009
  msgstr ""
6010
 
6011
+ #: includes/gateways/class-wc-payment-gateway-cc.php:72
6012
+ msgid "MM / YY"
6013
  msgstr ""
6014
 
6015
+ #: includes/gateways/class-wc-payment-gateway-echeck.php:47 includes/gateways/bacs/class-wc-gateway-bacs.php:425
6016
+ msgid "Routing number"
6017
  msgstr ""
6018
 
6019
+ #: includes/gateways/class-wc-payment-gateway-echeck.php:51 includes/gateways/bacs/class-wc-gateway-bacs.php:140 includes/gateways/bacs/class-wc-gateway-bacs.php:315
6020
+ msgid "Account number"
6021
  msgstr ""
6022
 
6023
+ #: includes/abstracts/abstract-wc-product.php:767
6024
+ msgid "Invalid catalog visibility option."
6025
  msgstr ""
6026
 
6027
+ #: includes/abstracts/abstract-wc-product.php:804
6028
+ msgid "Invalid or duplicated SKU."
6029
  msgstr ""
6030
 
6031
+ #: includes/abstracts/abstract-wc-product.php:888
6032
+ msgid "Invalid product tax status."
6033
  msgstr ""
6034
 
6035
+ #. translators: %1$s: Downloadable file
6036
+ #: includes/abstracts/abstract-wc-product.php:1194
6037
+ #, php-format
6038
+ msgid "The downloadable file %1$s cannot be used as it does not have an allowed file type. Allowed types include: %2$s"
6039
  msgstr ""
6040
 
6041
+ #. translators: %s: Downloadable file
6042
+ #: includes/abstracts/abstract-wc-product.php:1203
6043
+ #, php-format
6044
+ msgid "The downloadable file %s cannot be used as it does not exist on the server."
6045
  msgstr ""
6046
 
6047
+ #: includes/abstracts/abstract-wc-shipping-method.php:315 includes/admin/class-wc-admin-meta-boxes.php:128
6048
+ msgid "Items"
6049
  msgstr ""
6050
 
6051
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:57 includes/abstracts/abstract-wc-rest-terms-controller.php:126 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:65 includes/api/class-wc-rest-system-status-tools-controller.php:83 includes/api/class-wc-rest-settings-controller.php:179 includes/api/class-wc-rest-shipping-methods-controller.php:79 includes/api/class-wc-rest-payment-gateways-controller.php:85 includes/api/class-wc-rest-setting-options-controller.php:376 includes/api/class-wc-rest-system-status-controller.php:61 includes/api/v1/class-wc-rest-reports-controller.php:62 includes/api/v1/class-wc-rest-order-notes-controller.php:121 includes/api/v1/class-wc-rest-report-sales-controller.php:69 includes/api/v1/class-wc-rest-customers-controller.php:135 includes/api/v1/class-wc-rest-tax-classes-controller.php:90 includes/api/v1/class-wc-rest-customer-downloads-controller.php:74 includes/api/v1/class-wc-rest-taxes-controller.php:114
6052
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:130 includes/api/v1/class-wc-rest-product-attributes-controller.php:127 includes/api/v1/class-wc-rest-product-reviews-controller.php:134 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:91
6053
+ msgid "Sorry, you cannot list resources."
6054
  msgstr ""
6055
 
6056
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:71 includes/abstracts/abstract-wc-rest-terms-controller.php:145 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:83 includes/api/v1/class-wc-rest-order-notes-controller.php:136 includes/api/v1/class-wc-rest-customers-controller.php:150 includes/api/v1/class-wc-rest-tax-classes-controller.php:105 includes/api/v1/class-wc-rest-taxes-controller.php:129 includes/api/v1/class-wc-rest-webhooks-controller.php:145 includes/api/v1/class-wc-rest-product-reviews-controller.php:165
6057
+ msgid "Sorry, you are not allowed to create resources."
6058
  msgstr ""
6059
 
6060
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:87 includes/abstracts/abstract-wc-rest-crud-controller.php:56 includes/abstracts/abstract-wc-rest-terms-controller.php:164 includes/api/class-wc-rest-system-status-tools-controller.php:96 includes/api/class-wc-rest-shipping-methods-controller.php:92 includes/api/class-wc-rest-payment-gateways-controller.php:98 includes/api/v1/class-wc-rest-order-notes-controller.php:152 includes/api/v1/class-wc-rest-customers-controller.php:166 includes/api/v1/class-wc-rest-taxes-controller.php:143 includes/api/v1/class-wc-rest-webhooks-controller.php:159 includes/api/v1/class-wc-rest-product-attributes-controller.php:159 includes/api/v1/class-wc-rest-product-reviews-controller.php:150 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:105
6061
+ msgid "Sorry, you cannot view this resource."
6062
  msgstr ""
6063
 
6064
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:103 includes/abstracts/abstract-wc-rest-crud-controller.php:72 includes/abstracts/abstract-wc-rest-terms-controller.php:183 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:101 includes/api/class-wc-rest-product-variations-controller.php:162 includes/api/class-wc-rest-payment-gateways-controller.php:111 includes/api/v1/class-wc-rest-customers-controller.php:183 includes/api/v1/class-wc-rest-taxes-controller.php:158 includes/api/v1/class-wc-rest-webhooks-controller.php:174
6065
+ msgid "Sorry, you are not allowed to edit this resource."
6066
  msgstr ""
6067
 
6068
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:119 includes/abstracts/abstract-wc-rest-crud-controller.php:88 includes/abstracts/abstract-wc-rest-terms-controller.php:202 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:119 includes/api/v1/class-wc-rest-order-notes-controller.php:169 includes/api/v1/class-wc-rest-customers-controller.php:200 includes/api/v1/class-wc-rest-tax-classes-controller.php:120 includes/api/v1/class-wc-rest-taxes-controller.php:173 includes/api/v1/class-wc-rest-webhooks-controller.php:189 includes/api/v1/class-wc-rest-product-attributes-controller.php:195
6069
+ msgid "Sorry, you are not allowed to delete this resource."
6070
  msgstr ""
6071
 
6072
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:134 includes/abstracts/abstract-wc-rest-terms-controller.php:221 includes/api/class-wc-rest-product-reviews-controller.php:68 includes/api/v1/class-wc-rest-customers-controller.php:215 includes/api/v1/class-wc-rest-taxes-controller.php:188 includes/api/v1/class-wc-rest-webhooks-controller.php:204 includes/api/v1/class-wc-rest-product-attributes-controller.php:210
6073
+ msgid "Sorry, you are not allowed to batch manipulate this resource."
6074
  msgstr ""
6075
 
6076
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:151 includes/abstracts/abstract-wc-rest-posts-controller.php:258 includes/api/class-wc-rest-products-controller.php:700 includes/api/class-wc-rest-products-controller.php:1315 includes/api/v1/class-wc-rest-products-controller.php:1637
6077
+ msgid "To manipulate product variations you should use the /products/&lt;product_id&gt;/variations/&lt;id&gt; endpoint."
6078
  msgstr ""
6079
 
6080
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:153 includes/abstracts/abstract-wc-rest-crud-controller.php:140 includes/abstracts/abstract-wc-rest-crud-controller.php:235 includes/abstracts/abstract-wc-rest-crud-controller.php:404 includes/api/class-wc-rest-products-controller.php:1307 includes/api/class-wc-rest-product-variations-controller.php:499 includes/api/v1/class-wc-rest-webhooks-controller.php:303 includes/api/v1/class-wc-rest-webhooks-controller.php:460
6081
+ msgid "Invalid ID."
6082
  msgstr ""
6083
 
6084
+ #. translators: %s: post type
6085
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:175 includes/abstracts/abstract-wc-rest-crud-controller.php:188 includes/api/v1/class-wc-rest-order-notes-controller.php:220 includes/api/v1/class-wc-rest-orders-controller.php:826 includes/api/v1/class-wc-rest-products-controller.php:739 includes/api/v1/class-wc-rest-webhooks-controller.php:321 includes/api/v1/class-wc-rest-order-refunds-controller.php:281 includes/api/v1/class-wc-rest-coupons-controller.php:310
6086
+ #, php-format
6087
+ msgid "Cannot create existing %s."
6088
  msgstr ""
6089
 
6090
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:260 includes/abstracts/abstract-wc-rest-posts-controller.php:421 includes/api/class-wc-rest-webhooks-controller.php:39 includes/api/v1/class-wc-rest-orders-controller.php:865 includes/api/v1/class-wc-rest-products-controller.php:784 includes/api/v1/class-wc-rest-webhooks-controller.php:383 includes/api/v1/class-wc-rest-webhooks-controller.php:549 includes/api/v1/class-wc-rest-coupons-controller.php:351
6091
+ msgid "ID is invalid."
6092
  msgstr ""
6093
 
6094
+ #. translators: %s: post type
6095
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:438 includes/abstracts/abstract-wc-rest-crud-controller.php:421 includes/api/class-wc-rest-products-controller.php:1336 includes/api/class-wc-rest-product-variations-controller.php:520 includes/api/v1/class-wc-rest-products-controller.php:1656
6096
+ #, php-format
6097
+ msgid "Sorry, you are not allowed to delete %s."
6098
  msgstr ""
6099
 
6100
+ #. translators: %s: post type
6101
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:451 includes/abstracts/abstract-wc-rest-crud-controller.php:435 includes/api/class-wc-rest-products-controller.php:1367 includes/api/class-wc-rest-product-variations-controller.php:538 includes/api/v1/class-wc-rest-products-controller.php:1683
6102
+ #, php-format
6103
+ msgid "The %s does not support trashing."
6104
  msgstr ""
6105
 
6106
+ #. translators: %s: post type
6107
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:457 includes/abstracts/abstract-wc-rest-crud-controller.php:442 includes/api/class-wc-rest-products-controller.php:1378 includes/api/class-wc-rest-product-variations-controller.php:549 includes/api/v1/class-wc-rest-products-controller.php:1689
6108
+ #, php-format
6109
+ msgid "The %s has already been deleted."
6110
  msgstr ""
6111
 
6112
+ #. translators: %s: post type
6113
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:467 includes/abstracts/abstract-wc-rest-crud-controller.php:452 includes/api/class-wc-rest-products-controller.php:1392 includes/api/class-wc-rest-product-variations-controller.php:563 includes/api/v1/class-wc-rest-order-notes-controller.php:316 includes/api/v1/class-wc-rest-products-controller.php:1700 includes/api/v1/class-wc-rest-webhooks-controller.php:469
6114
+ #, php-format
6115
+ msgid "The %s cannot be deleted."
6116
  msgstr ""
6117
 
6118
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:622 includes/abstracts/abstract-wc-rest-crud-controller.php:521 includes/api/v1/class-wc-rest-webhooks-controller.php:702
6119
+ msgid "Limit response to resources published after a given ISO8601 compliant date."
6120
  msgstr ""
6121
 
6122
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:628 includes/abstracts/abstract-wc-rest-crud-controller.php:527 includes/api/v1/class-wc-rest-webhooks-controller.php:708
6123
+ msgid "Limit response to resources published before a given ISO8601 compliant date."
6124
  msgstr ""
6125
 
6126
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:634 includes/abstracts/abstract-wc-rest-crud-controller.php:533 includes/api/v1/class-wc-rest-customers-controller.php:865 includes/api/v1/class-wc-rest-webhooks-controller.php:714
6127
+ msgid "Ensure result set excludes specific IDs."
6128
  msgstr ""
6129
 
6130
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:643 includes/abstracts/abstract-wc-rest-crud-controller.php:542 includes/abstracts/abstract-wc-rest-terms-controller.php:697 includes/api/v1/class-wc-rest-webhooks-controller.php:723
6131
+ msgid "Limit result set to specific ids."
6132
  msgstr ""
6133
 
6134
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:652 includes/abstracts/abstract-wc-rest-crud-controller.php:551 includes/abstracts/abstract-wc-rest-terms-controller.php:707 includes/api/v1/class-wc-rest-customers-controller.php:883 includes/api/v1/class-wc-rest-taxes-controller.php:675 includes/api/v1/class-wc-rest-webhooks-controller.php:732
6135
+ msgid "Offset the result set by a specific number of items."
6136
  msgstr ""
6137
 
6138
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:658 includes/abstracts/abstract-wc-rest-crud-controller.php:557 includes/abstracts/abstract-wc-rest-terms-controller.php:714 includes/api/v1/class-wc-rest-customers-controller.php:890 includes/api/v1/class-wc-rest-taxes-controller.php:682 includes/api/v1/class-wc-rest-webhooks-controller.php:738
6139
+ msgid "Order sort attribute ascending or descending."
6140
  msgstr ""
6141
 
6142
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:665 includes/abstracts/abstract-wc-rest-crud-controller.php:564 includes/api/v1/class-wc-rest-customers-controller.php:898 includes/api/v1/class-wc-rest-taxes-controller.php:690 includes/api/v1/class-wc-rest-webhooks-controller.php:745
6143
+ msgid "Sort collection by object attribute."
6144
  msgstr ""
6145
 
6146
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:682 includes/abstracts/abstract-wc-rest-crud-controller.php:579
6147
+ msgid "Limit result set to those of particular parent IDs."
6148
  msgstr ""
6149
 
6150
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:691 includes/abstracts/abstract-wc-rest-crud-controller.php:588
6151
+ msgid "Limit result set to all items except those of a particular parent ID."
6152
  msgstr ""
6153
 
6154
+ #: includes/abstracts/abstract-wc-rest-posts-controller.php:704
6155
+ msgid "Use WP Query arguments to modify the response; private query vars require appropriate authorization."
6156
  msgstr ""
6157
 
6158
+ #. translators: %s: Class method name.
6159
+ #: includes/abstracts/abstract-wc-rest-crud-controller.php:43 includes/abstracts/abstract-wc-rest-crud-controller.php:114 includes/abstracts/abstract-wc-rest-crud-controller.php:127
6160
+ #, php-format
6161
+ msgid "Method '%s' not implemented. Must be overridden in subclass."
6162
  msgstr ""
6163
 
6164
+ #: includes/abstracts/abstract-wc-rest-crud-controller.php:498 includes/api/v1/class-wc-rest-taxes-controller.php:658
6165
+ msgid "Current page of the collection."
6166
  msgstr ""
6167
 
6168
+ #: includes/abstracts/abstract-wc-rest-crud-controller.php:506 includes/api/v1/class-wc-rest-taxes-controller.php:666
6169
+ msgid "Maximum number of items to be returned in result set."
6170
  msgstr ""
6171
 
6172
+ #: includes/abstracts/abstract-wc-rest-crud-controller.php:515
6173
+ msgid "Limit results to those matching a string."
6174
  msgstr ""
6175
 
6176
+ #. translators: %s: $key Key to check
6177
+ #: includes/abstracts/abstract-wc-data.php:298
6178
+ #, php-format
6179
+ msgid "Generic add/update/get meta methods should not be used for internal meta data, including \"%s\". Use getters and setters."
6180
  msgstr ""
6181
 
6182
+ #: includes/abstracts/abstract-wc-payment-gateway.php:182
6183
+ msgid "Return to payments"
6184
  msgstr ""
6185
 
6186
+ #: includes/abstracts/abstract-wc-payment-gateway.php:493
6187
+ msgid "Use a new payment method"
6188
  msgstr ""
6189
 
6190
+ #: includes/abstracts/abstract-wc-payment-gateway.php:518
6191
+ msgid "Save to account"
6192
  msgstr ""
6193
 
6194
+ #: includes/abstracts/abstract-wc-order.php:490
6195
+ msgid "Invalid parent ID"
6196
  msgstr ""
6197
 
6198
+ #: includes/abstracts/abstract-wc-order.php:545
6199
+ msgid "Invalid currency code"
6200
  msgstr ""
6201
 
6202
+ #: includes/abstracts/abstract-wc-order.php:926 includes/api/legacy/v2/class-wc-api-coupons.php:189 includes/api/legacy/v1/class-wc-api-coupons.php:174 includes/api/legacy/v3/class-wc-api-coupons.php:187
6203
+ msgid "Invalid coupon code"
6204
  msgstr ""
6205
 
6206
+ #. translators: %s: method
6207
+ #. translators: %s: method
6208
+ #. translators: %s: payment method
6209
+ #. translators: %s: shipping method
6210
+ #: includes/abstracts/abstract-wc-order.php:1719 includes/admin/list-tables/class-wc-admin-list-table-orders.php:251 includes/admin/list-tables/class-wc-admin-list-table-orders.php:303 includes/admin/list-tables/class-wc-admin-list-table-orders.php:320
6211
+ #, php-format
6212
+ msgid "via %s"
6213
  msgstr ""
6214
 
6215
+ #: includes/abstracts/abstract-wc-order.php:1753
6216
+ msgid "Subtotal:"
6217
  msgstr ""
6218
 
6219
+ #: includes/abstracts/abstract-wc-order.php:1768 includes/admin/meta-boxes/views/html-order-items.php:151
6220
+ msgid "Discount:"
6221
  msgstr ""
6222
 
6223
+ #: includes/abstracts/abstract-wc-order.php:1783 includes/admin/meta-boxes/views/html-order-items.php:163
6224
+ msgid "Shipping:"
6225
  msgstr ""
6226
 
6227
+ #. translators: %d: interval
6228
+ #: includes/abstracts/class-wc-background-process.php:172
6229
+ #, php-format
6230
+ msgid "Every %d minutes"
6231
  msgstr ""
6232
 
6233
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:52 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:63 includes/api/v1/class-wc-rest-product-attributes-controller.php:63
6234
+ msgid "Name for the resource."
6235
  msgstr ""
6236
 
6237
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:66 includes/api/class-wc-rest-order-notes-controller.php:129 includes/api/class-wc-rest-customers-controller.php:124 includes/api/class-wc-rest-shipping-zones-controller.php:281 includes/api/class-wc-rest-system-status-tools-controller.php:55 includes/api/class-wc-rest-product-categories-controller.php:103 includes/api/class-wc-rest-orders-controller.php:82 includes/api/class-wc-rest-orders-controller.php:831 includes/api/class-wc-rest-products-controller.php:82 includes/api/class-wc-rest-products-controller.php:1429 includes/api/class-wc-rest-webhooks-controller.php:98 includes/api/class-wc-rest-shipping-methods-controller.php:54 includes/api/class-wc-rest-order-refunds-controller.php:92 includes/api/class-wc-rest-order-refunds-controller.php:355 includes/api/class-wc-rest-product-variations-controller.php:657 includes/api/class-wc-rest-product-reviews-controller.php:153
6238
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:70 includes/api/class-wc-rest-payment-gateways-controller.php:54 includes/api/class-wc-rest-setting-options-controller.php:84 includes/api/class-wc-rest-coupons-controller.php:76 includes/api/v1/class-wc-rest-order-notes-controller.php:81 includes/api/v1/class-wc-rest-order-notes-controller.php:401 includes/api/v1/class-wc-rest-customers-controller.php:78 includes/api/v1/class-wc-rest-customers-controller.php:632 includes/api/v1/class-wc-rest-tax-classes-controller.php:334 includes/api/v1/class-wc-rest-customer-downloads-controller.php:46 includes/api/v1/class-wc-rest-product-tags-controller.php:94 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:74 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:195 includes/api/v1/class-wc-rest-taxes-controller.php:62 includes/api/v1/class-wc-rest-taxes-controller.php:576 includes/api/v1/class-wc-rest-product-categories-controller.php:174
6239
+ #: includes/api/v1/class-wc-rest-orders-controller.php:76 includes/api/v1/class-wc-rest-orders-controller.php:919 includes/api/v1/class-wc-rest-products-controller.php:77 includes/api/v1/class-wc-rest-products-controller.php:1734 includes/api/v1/class-wc-rest-webhooks-controller.php:78 includes/api/v1/class-wc-rest-webhooks-controller.php:615 includes/api/v1/class-wc-rest-product-attributes-controller.php:75 includes/api/v1/class-wc-rest-product-attributes-controller.php:456 includes/api/v1/class-wc-rest-order-refunds-controller.php:87 includes/api/v1/class-wc-rest-order-refunds-controller.php:344 includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:94 includes/api/v1/class-wc-rest-product-reviews-controller.php:92 includes/api/v1/class-wc-rest-product-reviews-controller.php:526 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:67 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:226 includes/api/v1/class-wc-rest-coupons-controller.php:82
6240
+ msgid "Unique identifier for the resource."
6241
  msgstr ""
6242
 
6243
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:92 includes/api/class-wc-rest-order-refunds-controller.php:112 includes/api/v1/class-wc-rest-order-notes-controller.php:105 includes/api/v1/class-wc-rest-customers-controller.php:104 includes/api/v1/class-wc-rest-tax-classes-controller.php:74 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:104 includes/api/v1/class-wc-rest-taxes-controller.php:88 includes/api/v1/class-wc-rest-webhooks-controller.php:104 includes/api/v1/class-wc-rest-product-attributes-controller.php:101 includes/api/v1/class-wc-rest-order-refunds-controller.php:107
6244
+ msgid "Required to be true, as resource does not support trashing."
6245
  msgstr ""
6246
 
6247
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:238
6248
+ msgid "Taxonomy does not exist."
6249
  msgstr ""
6250
 
6251
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:247 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:47 includes/api/class-wc-rest-shipping-zone-methods-controller.php:121 includes/api/class-wc-rest-shipping-zone-methods-controller.php:215 includes/api/class-wc-rest-shipping-zone-methods-controller.php:269 includes/api/class-wc-rest-shipping-methods-controller.php:124 includes/api/class-wc-rest-payment-gateways-controller.php:144 includes/api/class-wc-rest-payment-gateways-controller.php:161 includes/api/v1/class-wc-rest-customer-downloads-controller.php:70 includes/api/v1/class-wc-rest-product-attributes-controller.php:155 includes/api/v1/class-wc-rest-product-attributes-controller.php:173 includes/api/v1/class-wc-rest-product-attributes-controller.php:191 includes/api/v1/class-wc-rest-product-attributes-controller.php:551
6252
+ msgid "Resource does not exist."
6253
  msgstr ""
6254
 
6255
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:385 includes/abstracts/abstract-wc-rest-terms-controller.php:482
6256
+ msgid "Can not set resource parent, taxonomy is not hierarchical."
6257
  msgstr ""
6258
 
6259
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:531 includes/api/v1/class-wc-rest-product-attributes-controller.php:357
6260
+ msgid "Resource does not support trashing."
6261
  msgstr ""
6262
 
6263
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:540 includes/api/v1/class-wc-rest-customers-controller.php:495 includes/api/v1/class-wc-rest-taxes-controller.php:472 includes/api/v1/class-wc-rest-product-attributes-controller.php:372
6264
+ msgid "The resource cannot be deleted."
6265
  msgstr ""
6266
 
6267
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:688
6268
+ msgid "Ensure result set excludes specific ids."
6269
  msgstr ""
6270
 
6271
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:725
6272
+ msgid "Sort collection by resource attribute."
6273
  msgstr ""
6274
 
6275
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:741
6276
+ msgid "Whether to hide resources not assigned to any products."
6277
  msgstr ""
6278
 
6279
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:748
6280
+ msgid "Limit result set to resources assigned to a specific parent."
6281
  msgstr ""
6282
 
6283
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:755
6284
+ msgid "Limit result set to resources assigned to a specific product."
6285
  msgstr ""
6286
 
6287
+ #: includes/abstracts/abstract-wc-rest-terms-controller.php:761
6288
+ msgid "Limit result set to resources with a specific slug."
6289
  msgstr ""
6290
 
6291
+ #. translators: %s: items limit
6292
+ #: includes/abstracts/abstract-wc-rest-controller.php:103 includes/api/legacy/v2/class-wc-api-products.php:2306 includes/api/legacy/v2/class-wc-api-customers.php:792 includes/api/legacy/v2/class-wc-api-coupons.php:529 includes/api/legacy/v2/class-wc-api-orders.php:1789 includes/api/legacy/v3/class-wc-api-products.php:3119 includes/api/legacy/v3/class-wc-api-customers.php:782 includes/api/legacy/v3/class-wc-api-coupons.php:529 includes/api/legacy/v3/class-wc-api-orders.php:1836 includes/api/legacy/v3/class-wc-api-taxes.php:465
6293
+ #, php-format
6294
+ msgid "Unable to accept more than %s items for this request."
6295
  msgstr ""
6296
 
6297
+ #: includes/abstracts/abstract-wc-rest-controller.php:245 includes/abstracts/abstract-wc-rest-controller.php:263 includes/abstracts/abstract-wc-rest-controller.php:286 includes/abstracts/abstract-wc-rest-controller.php:329 includes/api/class-wc-rest-shipping-zone-methods-controller.php:314 includes/api/class-wc-rest-payment-gateways-controller.php:187
6298
+ msgid "An invalid setting value was passed."
6299
  msgstr ""
6300
 
6301
+ #: includes/abstracts/abstract-wc-rest-controller.php:388
6302
+ msgid "List of created resources."
6303
  msgstr ""
6304
 
6305
+ #: includes/abstracts/abstract-wc-rest-controller.php:396
6306
+ msgid "List of updated resources."
6307
  msgstr ""
6308
 
6309
+ #: includes/abstracts/abstract-wc-rest-controller.php:404
6310
+ msgid "List of delete resources."
6311
  msgstr ""
6312
 
6313
+ #: includes/abstracts/abstract-wc-settings-api.php:774 includes/admin/class-wc-admin-menus.php:325 includes/admin/class-wc-admin-settings.php:617 includes/admin/meta-boxes/views/html-product-attribute.php:56
6314
+ msgid "Select all"
 
 
 
6315
  msgstr ""
6316
 
6317
+ #: includes/abstracts/abstract-wc-settings-api.php:774 includes/admin/class-wc-admin-settings.php:617 includes/admin/meta-boxes/views/html-product-attribute.php:57
6318
+ msgid "Select none"
6319
  msgstr ""
6320
 
6321
+ #: includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:61 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:79 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:97 includes/abstracts/abstract-wc-rest-shipping-zones-controller.php:115
6322
+ msgid "Shipping is disabled."
6323
  msgstr ""
6324
 
6325
+ #: includes/cli/class-wc-cli-tool-command.php:46 includes/cli/class-wc-cli-runner.php:173
6326
+ msgid "The id for the resource."
 
 
 
6327
  msgstr ""
6328
 
6329
+ #: includes/cli/class-wc-cli-tool-command.php:55 includes/cli/class-wc-cli-runner.php:197
6330
+ msgid "Limit response to specific fields. Defaults to all fields."
 
6331
  msgstr ""
6332
 
6333
+ #: includes/cli/class-wc-cli-tool-command.php:61 includes/cli/class-wc-cli-runner.php:203
6334
+ msgid "Get the value of an individual field."
 
6335
  msgstr ""
6336
 
6337
+ #: includes/cli/class-wc-cli-tool-command.php:67 includes/cli/class-wc-cli-runner.php:209
6338
+ msgid "Render response in a particular format."
 
 
 
 
 
 
 
6339
  msgstr ""
6340
 
6341
+ #: includes/cli/class-wc-cli-rest-command.php:149
6342
+ msgid "Trashed"
 
6343
  msgstr ""
6344
 
6345
+ #: includes/cli/class-wc-cli-rest-command.php:151
6346
+ msgid "Deleted"
6347
  msgstr ""
6348
 
6349
+ #: includes/cli/class-wc-cli-rest-command.php:265
6350
+ msgid "Updated"
 
6351
  msgstr ""
6352
 
6353
+ #: includes/cli/class-wc-cli-rest-command.php:345
6354
+ msgid "Make sure to include the --user flag with an account that has permissions for this action."
 
6355
  msgstr ""
6356
 
6357
+ #. translators: %s: Route to a given WC-API endpoint
6358
+ #: includes/cli/class-wc-cli-runner.php:79
6359
+ #, php-format
6360
+ msgid "No schema title found for %s, skipping REST command registration."
 
6361
  msgstr ""
6362
 
6363
+ #: includes/cli/class-wc-cli-runner.php:110 includes/api/class-wc-rest-orders-controller.php:1179 includes/api/class-wc-rest-order-refunds-controller.php:439 includes/api/v1/class-wc-rest-report-top-sellers-controller.php:158 includes/api/v1/class-wc-rest-orders-controller.php:1230 includes/api/v1/class-wc-rest-order-refunds-controller.php:392
6364
+ msgid "Product ID."
6365
  msgstr ""
6366
 
6367
+ #: includes/cli/class-wc-cli-runner.php:111
6368
+ msgid "Customer ID."
6369
  msgstr ""
6370
 
6371
+ #: includes/cli/class-wc-cli-runner.php:112 includes/api/class-wc-rest-customer-downloads-controller.php:111 includes/api/v1/class-wc-rest-customer-downloads-controller.php:193
6372
+ msgid "Order ID."
6373
  msgstr ""
6374
 
6375
+ #: includes/cli/class-wc-cli-runner.php:113 includes/api/class-wc-rest-orders-controller.php:1617 includes/api/v1/class-wc-rest-orders-controller.php:1562
6376
+ msgid "Refund ID."
6377
  msgstr ""
6378
 
6379
+ #: includes/cli/class-wc-cli-runner.php:114 includes/api/class-wc-rest-products-controller.php:1921 includes/api/class-wc-rest-products-controller.php:1966 includes/api/class-wc-rest-product-variations-controller.php:950 includes/api/v1/class-wc-rest-products-controller.php:2199 includes/api/v1/class-wc-rest-products-controller.php:2241 includes/api/v1/class-wc-rest-products-controller.php:2531
6380
+ msgid "Attribute ID."
6381
  msgstr ""
6382
 
6383
+ #: includes/cli/class-wc-cli-runner.php:115
6384
+ msgid "Zone ID."
6385
  msgstr ""
6386
 
6387
+ #: includes/cli/class-wc-cli-runner.php:116
6388
+ msgid "ID."
 
 
 
6389
  msgstr ""
6390
 
6391
+ #: includes/cli/class-wc-cli-runner.php:230
6392
+ msgid "Output just the id when the operation is successful."
 
6393
  msgstr ""
6394
 
6395
+ #. translators: %s: DB update callback key
6396
+ #: includes/cli/class-wc-cli-update-command.php:45
6397
+ #, php-format
6398
+ msgid "Calling update function: %s"
6399
  msgstr ""
6400
 
6401
+ #. translators: 1: Number of database updates performed 2: Database version
6402
+ #. number
6403
+ #: includes/cli/class-wc-cli-update-command.php:54
6404
+ #, php-format
6405
+ msgid "%1$d updates complete. Database version is %2$s"
6406
  msgstr ""
6407
 
6408
+ #. translators: %d: product ID
6409
+ #: includes/import/class-wc-product-csv-importer.php:858
6410
+ #, php-format
6411
+ msgid "ID %d"
6412
  msgstr ""
6413
 
6414
+ #. translators: %s: product SKU
6415
+ #: includes/import/class-wc-product-csv-importer.php:862
6416
+ #, php-format
6417
+ msgid "SKU %s"
 
 
6418
  msgstr ""
6419
 
6420
+ #: includes/import/class-wc-product-csv-importer.php:908
6421
+ msgid "A product with this ID already exists."
6422
  msgstr ""
6423
 
6424
+ #: includes/import/class-wc-product-csv-importer.php:916
6425
+ msgid "A product with this SKU already exists."
 
 
 
 
 
 
 
 
 
 
6426
  msgstr ""
6427
 
6428
+ #: includes/import/class-wc-product-csv-importer.php:924
6429
+ msgid "No matching product exists to update."
 
 
 
 
 
6430
  msgstr ""
6431
 
6432
+ #: includes/import/abstract-wc-product-importer.php:174
6433
+ msgid "Invalid product type."
6434
  msgstr ""
6435
 
6436
+ #. translators: %d: product ID
6437
+ #: includes/import/abstract-wc-product-importer.php:191
6438
+ #, php-format
6439
+ msgid "Invalid product ID %d."
6440
  msgstr ""
6441
 
6442
+ #: includes/import/abstract-wc-product-importer.php:434
6443
+ msgid "Variation cannot be imported: Missing parent ID or parent does not exist yet."
6444
  msgstr ""
6445
 
6446
+ #. translators: %s: image URL
6447
+ #: includes/import/abstract-wc-product-importer.php:601
6448
+ #, php-format
6449
+ msgid "Not able to attach \"%s\"."
 
6450
  msgstr ""
6451
 
6452
+ #. translators: %s: image URL
6453
+ #: includes/import/abstract-wc-product-importer.php:610
6454
+ #, php-format
6455
+ msgid "Unable to use image \"%s\"."
 
 
 
 
 
 
 
 
 
 
6456
  msgstr ""
6457
 
6458
+ #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:29 includes/api/class-wc-rest-shipping-zones-controller.php:54
6459
+ msgid "Unique ID for the resource."
 
 
 
 
 
 
 
 
6460
  msgstr ""
6461
 
6462
+ #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:88 includes/api/class-wc-rest-shipping-zones-controller.php:172
6463
+ msgid "The \"locations not covered by your other zones\" zone cannot be updated."
 
 
 
 
 
 
 
 
 
6464
  msgstr ""
6465
 
6466
+ #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:169
6467
+ msgid "Shipping zone location code."
 
 
 
 
 
 
 
6468
  msgstr ""
6469
 
6470
+ #: includes/api/class-wc-rest-shipping-zone-locations-controller.php:174
6471
+ msgid "Shipping zone location type."
 
 
 
 
 
 
 
 
6472
  msgstr ""
6473
 
6474
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:29 includes/api/class-wc-rest-shipping-zone-methods-controller.php:60
6475
+ msgid "Unique ID for the zone."
 
 
 
 
 
6476
  msgstr ""
6477
 
6478
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:47 includes/api/class-wc-rest-shipping-zone-methods-controller.php:464 includes/api/class-wc-rest-orders-controller.php:1385 includes/api/v1/class-wc-rest-orders-controller.php:1409
6479
+ msgid "Shipping method ID."
 
 
 
 
 
6480
  msgstr ""
6481
 
6482
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:64
6483
+ msgid "Unique ID for the instance."
 
 
 
 
 
6484
  msgstr ""
6485
 
6486
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:87 includes/api/class-wc-rest-shipping-zones-controller.php:77 includes/api/class-wc-rest-orders-controller.php:108 includes/api/class-wc-rest-products-controller.php:111 includes/api/class-wc-rest-product-variations-controller.php:115 includes/api/class-wc-rest-coupons-controller.php:102 includes/api/v1/class-wc-rest-orders-controller.php:102 includes/api/v1/class-wc-rest-products-controller.php:102 includes/api/v1/class-wc-rest-product-reviews-controller.php:118 includes/api/v1/class-wc-rest-coupons-controller.php:108
6487
+ msgid "Whether to bypass trash and force deletion."
 
 
 
 
 
 
 
6488
  msgstr ""
6489
 
6490
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:177
6491
+ msgid "Resource cannot be created."
 
6492
  msgstr ""
6493
 
6494
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:230
6495
+ msgid "Shipping methods do not support trashing."
 
6496
  msgstr ""
6497
 
6498
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:436 includes/api/class-wc-rest-shipping-zone-methods-controller.php:442
6499
+ msgid "Shipping method instance ID."
6500
  msgstr ""
6501
 
6502
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:448
6503
+ msgid "Shipping method customer facing title."
 
 
6504
  msgstr ""
6505
 
6506
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:454
6507
+ msgid "Shipping method sort order."
 
 
6508
  msgstr ""
6509
 
6510
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:459
6511
+ msgid "Shipping method enabled status."
 
 
 
6512
  msgstr ""
6513
 
6514
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:470 includes/api/class-wc-rest-shipping-methods-controller.php:204
6515
+ msgid "Shipping method title."
 
 
 
6516
  msgstr ""
6517
 
6518
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:476 includes/api/class-wc-rest-shipping-methods-controller.php:210
6519
+ msgid "Shipping method description."
 
 
 
 
 
6520
  msgstr ""
6521
 
6522
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:482
6523
+ msgid "Shipping method settings."
 
 
 
 
 
6524
  msgstr ""
6525
 
6526
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:487 includes/api/class-wc-rest-payment-gateways-controller.php:400 includes/api/class-wc-rest-setting-options-controller.php:505
6527
+ msgid "A unique identifier for the setting."
 
 
 
 
6528
  msgstr ""
6529
 
6530
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:493 includes/api/class-wc-rest-settings-controller.php:204 includes/api/class-wc-rest-payment-gateways-controller.php:406 includes/api/class-wc-rest-setting-options-controller.php:514
6531
+ msgid "A human readable label for the setting used in interfaces."
 
6532
  msgstr ""
6533
 
6534
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:499 includes/api/class-wc-rest-settings-controller.php:210 includes/api/class-wc-rest-payment-gateways-controller.php:412 includes/api/class-wc-rest-setting-options-controller.php:523
6535
+ msgid "A human readable description for the setting used in interfaces."
 
6536
  msgstr ""
6537
 
6538
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:505 includes/api/class-wc-rest-payment-gateways-controller.php:418 includes/api/class-wc-rest-setting-options-controller.php:561
6539
+ msgid "Type of setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6540
  msgstr ""
6541
 
6542
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:512 includes/api/class-wc-rest-payment-gateways-controller.php:425 includes/api/class-wc-rest-setting-options-controller.php:532
6543
+ msgid "Setting value."
 
 
 
 
 
 
 
 
6544
  msgstr ""
6545
 
6546
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:517 includes/api/class-wc-rest-payment-gateways-controller.php:430 includes/api/class-wc-rest-setting-options-controller.php:537
6547
+ msgid "Default value for the setting."
 
 
 
 
 
 
6548
  msgstr ""
6549
 
6550
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:523 includes/api/class-wc-rest-payment-gateways-controller.php:436 includes/api/class-wc-rest-setting-options-controller.php:543
6551
+ msgid "Additional help text shown to the user about the setting."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6552
  msgstr ""
6553
 
6554
+ #: includes/api/class-wc-rest-shipping-zone-methods-controller.php:529 includes/api/class-wc-rest-payment-gateways-controller.php:442 includes/api/class-wc-rest-setting-options-controller.php:552
6555
+ msgid "Placeholder text to be displayed in text inputs."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6556
  msgstr ""
6557
 
6558
+ #: includes/api/class-wc-rest-order-notes-controller.php:135 includes/api/v1/class-wc-rest-order-notes-controller.php:407
6559
+ msgid "The date the order note was created, in the site's timezone."
 
 
 
6560
  msgstr ""
6561
 
6562
+ #: includes/api/class-wc-rest-order-notes-controller.php:141
6563
+ msgid "The date the order note was created, as GMT."
 
 
6564
  msgstr ""
6565
 
6566
+ #: includes/api/class-wc-rest-order-notes-controller.php:147 includes/api/v1/class-wc-rest-order-notes-controller.php:70
6567
+ msgid "Order note content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6568
  msgstr ""
6569
 
6570
+ #: includes/api/class-wc-rest-order-notes-controller.php:152
6571
+ msgid "If true, the note will be shown to customers and they will be notified. If false, the note will be for admin reference only."
 
 
 
 
 
 
 
 
 
6572
  msgstr ""
6573
 
6574
+ #: includes/api/class-wc-rest-order-notes-controller.php:173
6575
+ msgid "Limit result to customers or internal notes."
6576
  msgstr ""
6577
 
6578
+ #: includes/api/class-wc-rest-network-orders-controller.php:51
6579
+ msgid "Blog id of the record on the multisite."
 
6580
  msgstr ""
6581
 
6582
+ #: includes/api/class-wc-rest-network-orders-controller.php:57
6583
+ msgid "URL to edit the order"
 
6584
  msgstr ""
6585
 
6586
+ #: includes/api/class-wc-rest-network-orders-controller.php:63
6587
+ msgid "Name of the customer for the order"
 
 
 
6588
  msgstr ""
6589
 
6590
+ #: includes/api/class-wc-rest-network-orders-controller.php:69
6591
+ msgid "Order Status"
6592
  msgstr ""
6593
 
6594
+ #: includes/api/class-wc-rest-network-orders-controller.php:75
6595
+ msgid "Order total formatted for locale"
6596
  msgstr ""
6597
 
6598
+ #: includes/api/class-wc-rest-authentication.php:163 includes/api/legacy/v2/class-wc-api-authentication.php:114 includes/api/legacy/v1/class-wc-api-authentication.php:114 includes/api/legacy/v3/class-wc-api-authentication.php:82
6599
+ msgid "Consumer secret is invalid."
6600
  msgstr ""
6601
 
6602
+ #. translators: %s: amount of errors
6603
+ #: includes/api/class-wc-rest-authentication.php:281
6604
+ #, php-format
6605
+ msgid "Missing OAuth parameter %s"
6606
+ msgid_plural "Missing OAuth parameters %s"
6607
+ msgstr[0] ""
6608
+ msgstr[1] ""
6609
+
6610
+ #: includes/api/class-wc-rest-authentication.php:321 includes/api/legacy/v2/class-wc-api-authentication.php:182 includes/api/legacy/v1/class-wc-api-authentication.php:183 includes/api/legacy/v3/class-wc-api-authentication.php:178
6611
+ msgid "Consumer key is invalid."
6612
  msgstr ""
6613
 
6614
+ #: includes/api/class-wc-rest-authentication.php:365 includes/api/legacy/v2/class-wc-api-authentication.php:250 includes/api/legacy/v1/class-wc-api-authentication.php:252 includes/api/legacy/v3/class-wc-api-authentication.php:242
6615
+ msgid "Invalid signature - failed to sort parameters."
6616
  msgstr ""
6617
 
6618
+ #: includes/api/class-wc-rest-authentication.php:374 includes/api/legacy/v2/class-wc-api-authentication.php:264 includes/api/legacy/v1/class-wc-api-authentication.php:266 includes/api/legacy/v3/class-wc-api-authentication.php:262
6619
+ msgid "Invalid signature - signature method is invalid."
6620
  msgstr ""
6621
 
6622
+ #: includes/api/class-wc-rest-authentication.php:382 includes/api/legacy/v2/class-wc-api-authentication.php:272 includes/api/legacy/v1/class-wc-api-authentication.php:274 includes/api/legacy/v3/class-wc-api-authentication.php:271
6623
+ msgid "Invalid signature - provided signature does not match."
 
 
 
6624
  msgstr ""
6625
 
6626
+ #: includes/api/class-wc-rest-authentication.php:458 includes/api/legacy/v2/class-wc-api-authentication.php:330 includes/api/legacy/v1/class-wc-api-authentication.php:332 includes/api/legacy/v3/class-wc-api-authentication.php:336
6627
+ msgid "Invalid timestamp."
 
 
6628
  msgstr ""
6629
 
6630
+ #: includes/api/class-wc-rest-authentication.php:468 includes/api/legacy/v2/class-wc-api-authentication.php:340 includes/api/legacy/v1/class-wc-api-authentication.php:342 includes/api/legacy/v3/class-wc-api-authentication.php:346
6631
+ msgid "Invalid nonce - nonce has already been used."
 
6632
  msgstr ""
6633
 
6634
+ #: includes/api/class-wc-rest-authentication.php:529 includes/api/legacy/v2/class-wc-api-authentication.php:375 includes/api/legacy/v1/class-wc-api-authentication.php:377 includes/api/legacy/v3/class-wc-api-authentication.php:381
6635
+ msgid "The API key provided does not have read permissions."
 
6636
  msgstr ""
6637
 
6638
+ #: includes/api/class-wc-rest-authentication.php:537 includes/api/legacy/v2/class-wc-api-authentication.php:384 includes/api/legacy/v1/class-wc-api-authentication.php:386 includes/api/legacy/v3/class-wc-api-authentication.php:390
6639
+ msgid "The API key provided does not have write permissions."
6640
  msgstr ""
6641
 
6642
+ #: includes/api/class-wc-rest-authentication.php:544
6643
+ msgid "Unknown request method."
6644
  msgstr ""
6645
 
6646
+ #: includes/api/class-wc-rest-authentication.php:575 includes/api/legacy/v3/class-wc-api-authentication.php:110
6647
+ msgid "WooCommerce API. Use a consumer key in the username field and a consumer secret in the password field."
6648
  msgstr ""
6649
 
6650
+ #: includes/api/class-wc-rest-customers-controller.php:130
6651
+ msgid "The date the customer was created, in the site's timezone."
 
 
 
6652
  msgstr ""
6653
 
6654
+ #: includes/api/class-wc-rest-customers-controller.php:136 includes/api/class-wc-rest-orders-controller.php:886 includes/api/v1/class-wc-rest-orders-controller.php:968
6655
+ msgid "The date the order was created, as GMT."
6656
  msgstr ""
6657
 
6658
+ #: includes/api/class-wc-rest-customers-controller.php:142
6659
+ msgid "The date the customer was last modified, in the site's timezone."
 
 
 
6660
  msgstr ""
6661
 
6662
+ #: includes/api/class-wc-rest-customers-controller.php:148 includes/api/v1/class-wc-rest-customers-controller.php:644
6663
+ msgid "The date the customer was last modified, as GMT."
6664
  msgstr ""
6665
 
6666
+ #: includes/api/class-wc-rest-customers-controller.php:154 includes/api/v1/class-wc-rest-customers-controller.php:650
6667
+ msgid "The email address for the customer."
6668
  msgstr ""
6669
 
6670
+ #: includes/api/class-wc-rest-customers-controller.php:160 includes/api/v1/class-wc-rest-customers-controller.php:656
6671
+ msgid "Customer first name."
 
 
6672
  msgstr ""
6673
 
6674
+ #: includes/api/class-wc-rest-customers-controller.php:168 includes/api/v1/class-wc-rest-customers-controller.php:664
6675
+ msgid "Customer last name."
6676
  msgstr ""
6677
 
6678
+ #: includes/api/class-wc-rest-customers-controller.php:176
6679
+ msgid "Customer role."
 
6680
  msgstr ""
6681
 
6682
+ #: includes/api/class-wc-rest-customers-controller.php:182 includes/api/v1/class-wc-rest-customers-controller.php:672
6683
+ msgid "Customer login name."
6684
  msgstr ""
6685
 
6686
+ #: includes/api/class-wc-rest-customers-controller.php:190 includes/api/v1/class-wc-rest-customers-controller.php:680
6687
+ msgid "Customer password."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6688
  msgstr ""
6689
 
6690
+ #: includes/api/class-wc-rest-customers-controller.php:195 includes/api/v1/class-wc-rest-customers-controller.php:723
6691
+ msgid "List of billing address data."
 
6692
  msgstr ""
6693
 
6694
+ #: includes/api/class-wc-rest-customers-controller.php:200 includes/api/class-wc-rest-customers-controller.php:263 includes/api/class-wc-rest-orders-controller.php:980 includes/api/class-wc-rest-orders-controller.php:1043 includes/api/v1/class-wc-rest-customers-controller.php:728 includes/api/v1/class-wc-rest-customers-controller.php:791 includes/api/v1/class-wc-rest-orders-controller.php:1033 includes/api/v1/class-wc-rest-orders-controller.php:1096
6695
+ msgid "First name."
 
 
 
6696
  msgstr ""
6697
 
6698
+ #: includes/api/class-wc-rest-customers-controller.php:205 includes/api/class-wc-rest-customers-controller.php:268 includes/api/class-wc-rest-orders-controller.php:985 includes/api/class-wc-rest-orders-controller.php:1048 includes/api/v1/class-wc-rest-customers-controller.php:733 includes/api/v1/class-wc-rest-customers-controller.php:796 includes/api/v1/class-wc-rest-orders-controller.php:1038 includes/api/v1/class-wc-rest-orders-controller.php:1101
6699
+ msgid "Last name."
 
6700
  msgstr ""
6701
 
6702
+ #: includes/api/class-wc-rest-customers-controller.php:210 includes/api/class-wc-rest-customers-controller.php:273 includes/api/class-wc-rest-orders-controller.php:990 includes/api/class-wc-rest-orders-controller.php:1053 includes/api/v1/class-wc-rest-customers-controller.php:738 includes/api/v1/class-wc-rest-customers-controller.php:801 includes/api/v1/class-wc-rest-orders-controller.php:1043 includes/api/v1/class-wc-rest-orders-controller.php:1106
6703
+ msgid "Company name."
 
6704
  msgstr ""
6705
 
6706
+ #: includes/api/class-wc-rest-customers-controller.php:215 includes/api/class-wc-rest-customers-controller.php:278 includes/api/class-wc-rest-orders-controller.php:995 includes/api/class-wc-rest-orders-controller.php:1058 includes/admin/class-wc-admin-profile.php:57 includes/admin/class-wc-admin-profile.php:117 includes/admin/settings/class-wc-settings-general.php:64 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:56 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:107
6707
+ msgid "Address line 1"
6708
  msgstr ""
6709
 
6710
+ #: includes/api/class-wc-rest-customers-controller.php:220 includes/api/class-wc-rest-customers-controller.php:283 includes/api/class-wc-rest-orders-controller.php:1000 includes/api/class-wc-rest-orders-controller.php:1063 includes/customizer/class-wc-shop-customizer.php:678 includes/admin/class-wc-admin-setup-wizard.php:405 includes/admin/class-wc-admin-profile.php:61 includes/admin/class-wc-admin-profile.php:121 includes/admin/settings/class-wc-settings-general.php:73 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:60 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:111
6711
+ msgid "Address line 2"
 
 
 
 
 
 
 
6712
  msgstr ""
6713
 
6714
+ #: includes/api/class-wc-rest-customers-controller.php:225 includes/api/class-wc-rest-customers-controller.php:288 includes/api/class-wc-rest-orders-controller.php:1005 includes/api/class-wc-rest-orders-controller.php:1068 includes/api/v1/class-wc-rest-customers-controller.php:753 includes/api/v1/class-wc-rest-customers-controller.php:816 includes/api/v1/class-wc-rest-taxes-controller.php:597 includes/api/v1/class-wc-rest-orders-controller.php:1058 includes/api/v1/class-wc-rest-orders-controller.php:1121
6715
+ msgid "City name."
6716
  msgstr ""
6717
 
6718
+ #: includes/api/class-wc-rest-customers-controller.php:230 includes/api/class-wc-rest-customers-controller.php:293 includes/api/class-wc-rest-orders-controller.php:1010 includes/api/class-wc-rest-orders-controller.php:1073 includes/api/v1/class-wc-rest-customers-controller.php:758 includes/api/v1/class-wc-rest-customers-controller.php:821 includes/api/v1/class-wc-rest-orders-controller.php:1063 includes/api/v1/class-wc-rest-orders-controller.php:1126
6719
+ msgid "ISO code or name of the state, province or district."
6720
  msgstr ""
6721
 
6722
+ #: includes/api/class-wc-rest-customers-controller.php:235 includes/api/class-wc-rest-customers-controller.php:298 includes/api/class-wc-rest-orders-controller.php:1015 includes/api/class-wc-rest-orders-controller.php:1078 includes/api/v1/class-wc-rest-customers-controller.php:763 includes/api/v1/class-wc-rest-customers-controller.php:826 includes/api/v1/class-wc-rest-orders-controller.php:1068 includes/api/v1/class-wc-rest-orders-controller.php:1131
6723
+ msgid "Postal code."
 
6724
  msgstr ""
6725
 
6726
+ #: includes/api/class-wc-rest-customers-controller.php:240 includes/api/class-wc-rest-customers-controller.php:303 includes/api/v1/class-wc-rest-customers-controller.php:768 includes/api/v1/class-wc-rest-customers-controller.php:831
6727
+ msgid "ISO code of the country."
 
 
6728
  msgstr ""
6729
 
6730
+ #: includes/api/class-wc-rest-customers-controller.php:245 includes/api/class-wc-rest-orders-controller.php:1025 includes/api/v1/class-wc-rest-customers-controller.php:773 includes/api/v1/class-wc-rest-orders-controller.php:1078
6731
+ msgid "Email address."
 
 
6732
  msgstr ""
6733
 
6734
+ #: includes/api/class-wc-rest-customers-controller.php:251 includes/api/class-wc-rest-orders-controller.php:1031 includes/api/v1/class-wc-rest-customers-controller.php:779 includes/api/v1/class-wc-rest-orders-controller.php:1084
6735
+ msgid "Phone number."
 
 
6736
  msgstr ""
6737
 
6738
+ #: includes/api/class-wc-rest-customers-controller.php:258 includes/api/v1/class-wc-rest-customers-controller.php:786
6739
+ msgid "List of shipping address data."
 
 
 
6740
  msgstr ""
6741
 
6742
+ #: includes/api/class-wc-rest-customers-controller.php:310
6743
+ msgid "Is the customer a paying customer?"
 
6744
  msgstr ""
6745
 
6746
+ #: includes/api/class-wc-rest-customers-controller.php:316 includes/api/v1/class-wc-rest-customers-controller.php:705
6747
+ msgid "Quantity of orders made by the customer."
 
6748
  msgstr ""
6749
 
6750
+ #: includes/api/class-wc-rest-customers-controller.php:322 includes/api/v1/class-wc-rest-customers-controller.php:711
6751
+ msgid "Total amount spent."
6752
  msgstr ""
6753
 
6754
+ #: includes/api/class-wc-rest-customers-controller.php:328 includes/api/v1/class-wc-rest-customers-controller.php:717
6755
+ msgid "Avatar URL."
6756
  msgstr ""
6757
 
6758
+ #: includes/api/class-wc-rest-customers-controller.php:334 includes/api/class-wc-rest-orders-controller.php:1135 includes/api/class-wc-rest-orders-controller.php:1247 includes/api/class-wc-rest-orders-controller.php:1338 includes/api/class-wc-rest-orders-controller.php:1424 includes/api/class-wc-rest-orders-controller.php:1522 includes/api/class-wc-rest-orders-controller.php:1580 includes/api/class-wc-rest-products-controller.php:2006 includes/api/class-wc-rest-order-refunds-controller.php:393 includes/api/class-wc-rest-order-refunds-controller.php:516 includes/api/class-wc-rest-product-variations-controller.php:973 includes/api/class-wc-rest-coupons-controller.php:495
6759
+ msgid "Meta data."
 
 
6760
  msgstr ""
6761
 
6762
+ #: includes/api/class-wc-rest-customers-controller.php:341 includes/api/class-wc-rest-orders-controller.php:1142 includes/api/class-wc-rest-orders-controller.php:1254 includes/api/class-wc-rest-orders-controller.php:1345 includes/api/class-wc-rest-orders-controller.php:1431 includes/api/class-wc-rest-orders-controller.php:1529 includes/api/class-wc-rest-orders-controller.php:1587 includes/api/class-wc-rest-products-controller.php:2013 includes/api/class-wc-rest-order-refunds-controller.php:400 includes/api/class-wc-rest-order-refunds-controller.php:524 includes/api/class-wc-rest-product-variations-controller.php:980 includes/api/class-wc-rest-coupons-controller.php:502
6763
+ msgid "Meta ID."
6764
  msgstr ""
6765
 
6766
+ #: includes/api/class-wc-rest-customers-controller.php:347 includes/api/class-wc-rest-orders-controller.php:1148 includes/api/class-wc-rest-orders-controller.php:1260 includes/api/class-wc-rest-orders-controller.php:1351 includes/api/class-wc-rest-orders-controller.php:1437 includes/api/class-wc-rest-orders-controller.php:1535 includes/api/class-wc-rest-orders-controller.php:1593 includes/api/class-wc-rest-products-controller.php:2019 includes/api/class-wc-rest-order-refunds-controller.php:406 includes/api/class-wc-rest-order-refunds-controller.php:530 includes/api/class-wc-rest-product-variations-controller.php:986 includes/api/class-wc-rest-coupons-controller.php:508 includes/api/v1/class-wc-rest-orders-controller.php:1314 includes/api/v1/class-wc-rest-order-refunds-controller.php:483
6767
+ msgid "Meta key."
6768
  msgstr ""
6769
 
6770
+ #: includes/api/class-wc-rest-customers-controller.php:352 includes/api/class-wc-rest-orders-controller.php:1153 includes/api/class-wc-rest-orders-controller.php:1265 includes/api/class-wc-rest-orders-controller.php:1356 includes/api/class-wc-rest-orders-controller.php:1442 includes/api/class-wc-rest-orders-controller.php:1540 includes/api/class-wc-rest-orders-controller.php:1598 includes/api/class-wc-rest-products-controller.php:2024 includes/api/class-wc-rest-order-refunds-controller.php:411 includes/api/class-wc-rest-order-refunds-controller.php:536 includes/api/class-wc-rest-product-variations-controller.php:991 includes/api/class-wc-rest-coupons-controller.php:513 includes/api/v1/class-wc-rest-orders-controller.php:1326 includes/api/v1/class-wc-rest-order-refunds-controller.php:495
6771
+ msgid "Meta value."
6772
  msgstr ""
6773
 
6774
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:81
6775
+ msgid "Download ID."
6776
  msgstr ""
6777
 
6778
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:87 includes/api/v1/class-wc-rest-customer-downloads-controller.php:169
6779
+ msgid "Download file URL."
 
6780
  msgstr ""
6781
 
6782
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:93 includes/api/v1/class-wc-rest-customer-downloads-controller.php:181
6783
+ msgid "Downloadable product ID."
 
 
 
6784
  msgstr ""
6785
 
6786
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:99 includes/api/class-wc-rest-orders-controller.php:1174 includes/api/class-wc-rest-products-controller.php:1435 includes/api/class-wc-rest-order-refunds-controller.php:433 includes/api/v1/class-wc-rest-report-top-sellers-controller.php:152 includes/api/v1/class-wc-rest-orders-controller.php:1218 includes/api/v1/class-wc-rest-products-controller.php:1740 includes/api/v1/class-wc-rest-order-refunds-controller.php:380
6787
+ msgid "Product name."
6788
  msgstr ""
6789
 
6790
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:105 includes/api/v1/class-wc-rest-customer-downloads-controller.php:187
6791
+ msgid "Downloadable file name."
6792
  msgstr ""
6793
 
6794
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:117 includes/api/class-wc-rest-orders-controller.php:848 includes/api/v1/class-wc-rest-customer-downloads-controller.php:199 includes/api/v1/class-wc-rest-orders-controller.php:937
6795
+ msgid "Order key."
 
 
6796
  msgstr ""
6797
 
6798
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:123 includes/api/v1/class-wc-rest-customer-downloads-controller.php:205
6799
+ msgid "Number of downloads remaining."
 
6800
  msgstr ""
6801
 
6802
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:129 includes/api/v1/class-wc-rest-customer-downloads-controller.php:211
6803
+ msgid "The date when download access expires, in the site's timezone."
6804
  msgstr ""
6805
 
6806
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:135
6807
+ msgid "The date when download access expires, as GMT."
 
 
6808
  msgstr ""
6809
 
6810
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:141 includes/api/v1/class-wc-rest-customer-downloads-controller.php:217
6811
+ msgid "File details."
 
 
 
 
6812
  msgstr ""
6813
 
6814
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:147 includes/api/class-wc-rest-products-controller.php:1603 includes/api/class-wc-rest-product-variations-controller.php:771 includes/api/v1/class-wc-rest-customer-downloads-controller.php:223 includes/api/v1/class-wc-rest-products-controller.php:1886 includes/api/v1/class-wc-rest-products-controller.php:2364
6815
+ msgid "File name."
6816
  msgstr ""
6817
 
6818
+ #: includes/api/class-wc-rest-customer-downloads-controller.php:153 includes/api/class-wc-rest-products-controller.php:1608 includes/api/class-wc-rest-product-variations-controller.php:776 includes/api/v1/class-wc-rest-customer-downloads-controller.php:229 includes/api/v1/class-wc-rest-products-controller.php:1891 includes/api/v1/class-wc-rest-products-controller.php:2369
6819
+ msgid "File URL."
6820
  msgstr ""
6821
 
6822
+ #: includes/api/class-wc-rest-shipping-zones-controller.php:41 includes/api/class-wc-rest-shipping-zones-controller.php:287
6823
+ msgid "Shipping zone name."
6824
  msgstr ""
6825
 
6826
+ #: includes/api/class-wc-rest-shipping-zones-controller.php:154
6827
+ msgid "Resource cannot be created. Check to make sure 'order' and 'name' are present."
6828
  msgstr ""
6829
 
6830
+ #: includes/api/class-wc-rest-shipping-zones-controller.php:214
6831
+ msgid "Shipping zones do not support trashing."
6832
  msgstr ""
6833
 
6834
+ #: includes/api/class-wc-rest-shipping-zones-controller.php:295
6835
+ msgid "Shipping zone order."
 
 
6836
  msgstr ""
6837
 
6838
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:109 includes/api/v1/class-wc-rest-product-attributes-controller.php:177
6839
+ msgid "Sorry, you cannot update resource."
6840
  msgstr ""
6841
 
6842
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:123
6843
+ msgid "WooCommerce transients"
6844
  msgstr ""
6845
 
6846
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:124 includes/api/class-wc-rest-system-status-tools-controller.php:129
6847
+ msgid "Clear transients"
6848
  msgstr ""
6849
 
6850
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:125
6851
+ msgid "This tool will clear the product/shop transients cache."
6852
  msgstr ""
6853
 
6854
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:128
6855
+ msgid "Expired transients"
6856
  msgstr ""
6857
 
6858
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:130
6859
+ msgid "This tool will clear ALL expired transients from WordPress."
6860
  msgstr ""
6861
 
6862
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:133
6863
+ msgid "Orphaned variations"
6864
  msgstr ""
6865
 
6866
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:134
6867
+ msgid "Delete orphaned variations"
6868
  msgstr ""
6869
 
6870
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:135
6871
+ msgid "This tool will delete all variations which have no parent."
6872
  msgstr ""
6873
 
6874
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:138
6875
+ msgid "Used-up download permissions"
6876
  msgstr ""
6877
 
6878
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:139
6879
+ msgid "Clean up download permissions"
 
 
 
6880
  msgstr ""
6881
 
6882
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:140
6883
+ msgid "This tool will delete expired download permissions and permissions with 0 remaining downloads."
 
6884
  msgstr ""
6885
 
6886
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:143
6887
+ msgid "Order address indexes"
 
6888
  msgstr ""
6889
 
6890
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:144
6891
+ msgid "Index orders"
 
 
 
6892
  msgstr ""
6893
 
6894
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:145
6895
+ msgid "This tool will add address indexes to orders that do not have them yet. This improves order search results."
6896
  msgstr ""
6897
 
6898
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:148
6899
+ msgid "Term counts"
6900
  msgstr ""
6901
 
6902
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:149
6903
+ msgid "Recount terms"
6904
  msgstr ""
6905
 
6906
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:150
6907
+ msgid "This tool will recount product terms - useful when changing your settings in a way which hides products from the catalog."
 
 
6908
  msgstr ""
6909
 
6910
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:153
6911
+ msgid "Capabilities"
6912
  msgstr ""
6913
 
6914
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:154
6915
+ msgid "Reset capabilities"
6916
  msgstr ""
6917
 
6918
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:155
6919
+ msgid "This tool will reset the admin, customer and shop_manager roles to default. Use this if your users cannot access all of the WooCommerce admin pages."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6920
  msgstr ""
6921
 
6922
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:158
6923
+ msgid "Clear customer sessions"
 
 
 
6924
  msgstr ""
6925
 
6926
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:159 templates/single-product/add-to-cart/variable.php:44
6927
+ msgid "Clear"
 
 
 
6928
  msgstr ""
6929
 
6930
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:163
6931
+ msgid "This tool will delete all customer session data from the database, including current carts and saved carts in the database."
 
6932
  msgstr ""
6933
 
6934
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:167
6935
+ msgid "Create default WooCommerce pages"
6936
  msgstr ""
6937
 
6938
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:168
6939
+ msgid "Create pages"
 
6940
  msgstr ""
6941
 
6942
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:172
6943
+ msgid "This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced."
 
6944
  msgstr ""
6945
 
6946
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:176
6947
+ msgid "Delete WooCommerce tax rates"
6948
  msgstr ""
6949
 
6950
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:177
6951
+ msgid "Delete tax rates"
 
 
6952
  msgstr ""
6953
 
6954
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:181
6955
+ msgid "This option will delete ALL of your tax rates, use with caution. This action cannot be reversed."
 
 
6956
  msgstr ""
6957
 
6958
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:185
6959
+ msgid "Reset usage tracking"
 
 
6960
  msgstr ""
6961
 
6962
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:186 includes/admin/reports/class-wc-report-sales-by-product.php:206
6963
+ msgid "Reset"
 
 
6964
  msgstr ""
6965
 
6966
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:187
6967
+ msgid "This will reset your usage tracking settings, causing it to show the opt-in banner again and not sending any data."
 
 
 
 
6968
  msgstr ""
6969
 
6970
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:190
6971
+ msgid "Regenerate shop thumbnails"
6972
  msgstr ""
6973
 
6974
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:191
6975
+ msgid "Regenerate"
 
 
 
6976
  msgstr ""
6977
 
6978
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:192
6979
+ msgid "This will regenerate all shop thumbnails to match your theme and/or image settings."
6980
  msgstr ""
6981
 
6982
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:238 includes/api/class-wc-rest-system-status-tools-controller.php:262
6983
+ msgid "Invalid tool ID."
6984
  msgstr ""
6985
 
6986
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:320
6987
+ msgid "A unique identifier for the tool."
6988
  msgstr ""
6989
 
6990
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:328
6991
+ msgid "Tool name."
6992
  msgstr ""
6993
 
6994
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:336
6995
+ msgid "What running the tool will do."
6996
  msgstr ""
6997
 
6998
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:344
6999
+ msgid "Tool description."
 
7000
  msgstr ""
7001
 
7002
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:352
7003
+ msgid "Did the tool run successfully?"
7004
  msgstr ""
7005
 
7006
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:357
7007
+ msgid "Tool return message."
7008
  msgstr ""
7009
 
7010
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:413
7011
+ msgid "Product transients cleared"
7012
  msgstr ""
7013
 
7014
+ #. translators: %d: amount of expired transients
7015
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:418
7016
+ #, php-format
7017
+ msgid "%d transients rows cleared"
7018
  msgstr ""
7019
 
7020
+ #. translators: %d: amount of orphaned variations
7021
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:432
7022
+ #, php-format
7023
+ msgid "%d orphaned variations deleted"
7024
  msgstr ""
7025
 
7026
+ #. translators: %d: amount of permissions
7027
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:447
7028
+ #, php-format
7029
+ msgid "%d permissions deleted"
7030
  msgstr ""
7031
 
7032
+ #. translators: %d: amount of indexes
7033
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:467
7034
+ #, php-format
7035
+ msgid "%d indexes added"
 
 
7036
  msgstr ""
7037
 
7038
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:474
7039
+ msgid "Roles successfully reset"
 
7040
  msgstr ""
7041
 
7042
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:492
7043
+ msgid "Terms successfully recounted"
7044
  msgstr ""
7045
 
7046
+ #. translators: %d: amount of sessions
7047
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:500
7048
+ #, php-format
7049
+ msgid "Deleted all active sessions, and %d saved carts."
 
7050
  msgstr ""
7051
 
7052
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:505
7053
+ msgid "All missing WooCommerce pages successfully installed"
 
 
 
 
 
7054
  msgstr ""
7055
 
7056
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:512
7057
+ msgid "Tax rates successfully deleted"
 
7058
  msgstr ""
7059
 
7060
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:522
7061
+ msgid "Usage tracking settings successfully reset."
 
7062
  msgstr ""
7063
 
7064
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:527
7065
+ msgid "Thumbnail regeneration has been scheduled to run in the background."
 
 
7066
  msgstr ""
7067
 
7068
+ #. translators: %s: callback string
7069
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:541
7070
+ #, php-format
7071
+ msgid "There was an error calling %s"
7072
  msgstr ""
7073
 
7074
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:543
7075
+ msgid "Tool ran."
 
 
7076
  msgstr ""
7077
 
7078
+ #: includes/api/class-wc-rest-system-status-tools-controller.php:547
7079
+ msgid "There was an error calling this tool. There is no callback present."
 
 
 
7080
  msgstr ""
7081
 
7082
+ #: includes/api/class-wc-rest-settings-controller.php:63
7083
+ msgid "No setting groups have been registered."
 
 
 
7084
  msgstr ""
7085
 
7086
+ #: includes/api/class-wc-rest-settings-controller.php:198
7087
+ msgid "A unique identifier that can be used to link settings together."
 
 
7088
  msgstr ""
7089
 
7090
+ #: includes/api/class-wc-rest-settings-controller.php:216
7091
+ msgid "ID of parent grouping."
7092
  msgstr ""
7093
 
7094
+ #: includes/api/class-wc-rest-settings-controller.php:222
7095
+ msgid "IDs for settings sub groups."
 
 
 
 
 
 
 
 
 
 
 
 
7096
  msgstr ""
7097
 
7098
+ #: includes/api/class-wc-rest-product-categories-controller.php:109 includes/api/class-wc-rest-products-controller.php:1812 includes/api/v1/class-wc-rest-product-categories-controller.php:180 includes/api/v1/class-wc-rest-products-controller.php:2102
7099
+ msgid "Category name."
 
 
 
 
 
 
 
 
7100
  msgstr ""
7101
 
7102
+ #: includes/api/class-wc-rest-product-categories-controller.php:117 includes/api/v1/class-wc-rest-product-tags-controller.php:108 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:209 includes/api/v1/class-wc-rest-product-categories-controller.php:188 includes/api/v1/class-wc-rest-product-attributes-controller.php:470 includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:108
7103
+ msgid "An alphanumeric identifier for the resource unique to its type."
7104
  msgstr ""
7105
 
7106
+ #: includes/api/class-wc-rest-product-categories-controller.php:125 includes/api/v1/class-wc-rest-product-categories-controller.php:196
7107
+ msgid "The ID for the parent of the resource."
7108
  msgstr ""
7109
 
7110
+ #: includes/api/class-wc-rest-product-categories-controller.php:130 includes/api/v1/class-wc-rest-product-tags-controller.php:116 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:217 includes/api/v1/class-wc-rest-product-categories-controller.php:201 includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:116
7111
+ msgid "HTML description of the resource."
7112
  msgstr ""
7113
 
7114
+ #: includes/api/class-wc-rest-product-categories-controller.php:138 includes/api/v1/class-wc-rest-product-categories-controller.php:209
7115
+ msgid "Category archive display type."
7116
  msgstr ""
7117
 
7118
+ #: includes/api/class-wc-rest-product-categories-controller.php:145 includes/api/v1/class-wc-rest-product-categories-controller.php:216
7119
+ msgid "Image data."
 
 
 
7120
  msgstr ""
7121
 
7122
+ #: includes/api/class-wc-rest-product-categories-controller.php:150 includes/api/class-wc-rest-products-controller.php:1861 includes/api/class-wc-rest-product-variations-controller.php:891 includes/api/v1/class-wc-rest-product-categories-controller.php:221 includes/api/v1/class-wc-rest-products-controller.php:2151 includes/api/v1/class-wc-rest-products-controller.php:2484
7123
+ msgid "Image ID."
7124
  msgstr ""
7125
 
7126
+ #: includes/api/class-wc-rest-product-categories-controller.php:155 includes/api/class-wc-rest-products-controller.php:1866 includes/api/class-wc-rest-product-variations-controller.php:896 includes/api/v1/class-wc-rest-product-categories-controller.php:226 includes/api/v1/class-wc-rest-products-controller.php:2156 includes/api/v1/class-wc-rest-products-controller.php:2489
7127
+ msgid "The date the image was created, in the site's timezone."
7128
  msgstr ""
7129
 
7130
+ #: includes/api/class-wc-rest-product-categories-controller.php:161 includes/api/class-wc-rest-products-controller.php:1872 includes/api/class-wc-rest-product-variations-controller.php:902
7131
+ msgid "The date the image was created, as GMT."
7132
  msgstr ""
7133
 
7134
+ #: includes/api/class-wc-rest-product-categories-controller.php:167 includes/api/class-wc-rest-products-controller.php:1878 includes/api/class-wc-rest-product-variations-controller.php:908 includes/api/v1/class-wc-rest-product-categories-controller.php:232 includes/api/v1/class-wc-rest-products-controller.php:2162 includes/api/v1/class-wc-rest-products-controller.php:2495
7135
+ msgid "The date the image was last modified, in the site's timezone."
 
7136
  msgstr ""
7137
 
7138
+ #: includes/api/class-wc-rest-product-categories-controller.php:173 includes/api/class-wc-rest-products-controller.php:1884 includes/api/class-wc-rest-product-variations-controller.php:914
7139
+ msgid "The date the image was last modified, as GMT."
7140
  msgstr ""
7141
 
7142
+ #: includes/api/class-wc-rest-product-categories-controller.php:179 includes/api/class-wc-rest-products-controller.php:1890 includes/api/class-wc-rest-product-variations-controller.php:920 includes/api/v1/class-wc-rest-product-categories-controller.php:238 includes/api/v1/class-wc-rest-products-controller.php:2168 includes/api/v1/class-wc-rest-products-controller.php:2501
7143
+ msgid "Image URL."
 
 
 
7144
  msgstr ""
7145
 
7146
+ #: includes/api/class-wc-rest-product-categories-controller.php:185 includes/api/class-wc-rest-products-controller.php:1896 includes/api/class-wc-rest-product-variations-controller.php:926 includes/api/v1/class-wc-rest-product-categories-controller.php:244 includes/api/v1/class-wc-rest-products-controller.php:2174 includes/api/v1/class-wc-rest-products-controller.php:2507
7147
+ msgid "Image name."
7148
  msgstr ""
7149
 
7150
+ #: includes/api/class-wc-rest-product-categories-controller.php:190 includes/api/class-wc-rest-products-controller.php:1901 includes/api/class-wc-rest-product-variations-controller.php:931 includes/api/v1/class-wc-rest-product-categories-controller.php:249 includes/api/v1/class-wc-rest-products-controller.php:2179 includes/api/v1/class-wc-rest-products-controller.php:2512
7151
+ msgid "Image alternative text."
7152
  msgstr ""
7153
 
7154
+ #: includes/api/class-wc-rest-product-categories-controller.php:197 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:225 includes/api/v1/class-wc-rest-product-categories-controller.php:256
7155
+ msgid "Menu order, used to custom sort the resource."
 
7156
  msgstr ""
7157
 
7158
+ #: includes/api/class-wc-rest-product-categories-controller.php:202 includes/api/v1/class-wc-rest-product-tags-controller.php:124 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:230 includes/api/v1/class-wc-rest-product-categories-controller.php:261 includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:124
7159
+ msgid "Number of published products for the resource."
7160
  msgstr ""
7161
 
7162
+ #: includes/api/class-wc-rest-orders-controller.php:519 includes/api/legacy/class-wc-rest-legacy-orders-controller.php:249 includes/api/v1/class-wc-rest-orders-controller.php:534 includes/api/legacy/v2/class-wc-api-orders.php:390 includes/api/legacy/v2/class-wc-api-orders.php:542 includes/api/legacy/v3/class-wc-api-orders.php:427 includes/api/legacy/v3/class-wc-api-orders.php:582
7163
+ msgid "Customer ID is invalid."
 
7164
  msgstr ""
7165
 
7166
+ #: includes/api/class-wc-rest-orders-controller.php:524 includes/api/legacy/class-wc-rest-legacy-orders-controller.php:254 includes/api/v1/class-wc-rest-orders-controller.php:539
7167
+ msgid "Customer ID does not belong to this site."
 
7168
  msgstr ""
7169
 
7170
+ #: includes/api/class-wc-rest-orders-controller.php:591 includes/api/v1/class-wc-rest-orders-controller.php:621
7171
+ msgid "Product ID or SKU is required."
7172
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7173
 
7174
+ #: includes/api/class-wc-rest-orders-controller.php:683 includes/api/v1/class-wc-rest-orders-controller.php:693 includes/api/legacy/v2/class-wc-api-orders.php:1043 includes/api/legacy/v3/class-wc-api-orders.php:1090
7175
+ msgid "Shipping method ID is required."
7176
+ msgstr ""
 
 
 
7177
 
7178
+ #: includes/api/class-wc-rest-orders-controller.php:707 includes/api/v1/class-wc-rest-orders-controller.php:716
7179
+ msgid "Fee name is required."
 
7180
  msgstr ""
7181
 
7182
+ #: includes/api/class-wc-rest-orders-controller.php:731 includes/api/v1/class-wc-rest-orders-controller.php:739 includes/api/legacy/v2/class-wc-api-orders.php:1166 includes/api/legacy/v3/class-wc-api-orders.php:1213
7183
+ msgid "Coupon code is required."
 
7184
  msgstr ""
7185
 
7186
+ #: includes/api/class-wc-rest-orders-controller.php:768 includes/api/v1/class-wc-rest-orders-controller.php:777 includes/api/legacy/v2/class-wc-api-orders.php:851 includes/api/legacy/v3/class-wc-api-orders.php:897
7187
+ msgid "Order item ID provided is not associated with order."
7188
  msgstr ""
7189
 
7190
+ #: includes/api/class-wc-rest-orders-controller.php:837 includes/api/v1/class-wc-rest-orders-controller.php:925
7191
+ msgid "Parent order ID."
7192
  msgstr ""
7193
 
7194
+ #: includes/api/class-wc-rest-orders-controller.php:842 includes/api/v1/class-wc-rest-orders-controller.php:943
7195
+ msgid "Order number."
 
 
 
 
 
 
7196
  msgstr ""
7197
 
7198
+ #: includes/api/class-wc-rest-orders-controller.php:854 includes/api/v1/class-wc-rest-orders-controller.php:1176
7199
+ msgid "Shows where the order was created."
 
 
 
 
 
 
7200
  msgstr ""
7201
 
7202
+ #: includes/api/class-wc-rest-orders-controller.php:860 includes/api/v1/class-wc-rest-orders-controller.php:956
7203
+ msgid "Version of WooCommerce which last updated the order."
 
 
 
 
 
 
 
 
 
 
7204
  msgstr ""
7205
 
7206
+ #: includes/api/class-wc-rest-orders-controller.php:866 includes/api/v1/class-wc-rest-orders-controller.php:930
7207
+ msgid "Order status."
 
7208
  msgstr ""
7209
 
7210
+ #: includes/api/class-wc-rest-orders-controller.php:873 includes/api/v1/class-wc-rest-orders-controller.php:949
7211
+ msgid "Currency the order was created with, in ISO format."
 
7212
  msgstr ""
7213
 
7214
+ #: includes/api/class-wc-rest-orders-controller.php:880
7215
+ msgid "The date the order was created, in the site's timezone."
7216
  msgstr ""
7217
 
7218
+ #: includes/api/class-wc-rest-orders-controller.php:892
7219
+ msgid "The date the order was last modified, in the site's timezone."
7220
  msgstr ""
7221
 
7222
+ #: includes/api/class-wc-rest-orders-controller.php:898 includes/api/v1/class-wc-rest-orders-controller.php:974
7223
+ msgid "The date the order was last modified, as GMT."
7224
  msgstr ""
7225
 
7226
+ #: includes/api/class-wc-rest-orders-controller.php:904 includes/api/v1/class-wc-rest-orders-controller.php:986
7227
+ msgid "Total discount amount for the order."
7228
  msgstr ""
7229
 
7230
+ #: includes/api/class-wc-rest-orders-controller.php:910 includes/api/v1/class-wc-rest-orders-controller.php:992
7231
+ msgid "Total discount tax amount for the order."
7232
  msgstr ""
7233
 
7234
+ #: includes/api/class-wc-rest-orders-controller.php:916 includes/api/v1/class-wc-rest-orders-controller.php:998
7235
+ msgid "Total shipping amount for the order."
 
7236
  msgstr ""
7237
 
7238
+ #: includes/api/class-wc-rest-orders-controller.php:922 includes/api/v1/class-wc-rest-orders-controller.php:1004
7239
+ msgid "Total shipping tax amount for the order."
7240
  msgstr ""
7241
 
7242
+ #: includes/api/class-wc-rest-orders-controller.php:928 includes/api/v1/class-wc-rest-orders-controller.php:1010
7243
+ msgid "Sum of line item taxes only."
7244
  msgstr ""
7245
 
7246
+ #: includes/api/class-wc-rest-orders-controller.php:934 includes/api/v1/class-wc-rest-orders-controller.php:1016
7247
+ msgid "Grand total."
7248
  msgstr ""
7249
 
7250
+ #: includes/api/class-wc-rest-orders-controller.php:940 includes/api/v1/class-wc-rest-orders-controller.php:1022
7251
+ msgid "Sum of all taxes."
 
7252
  msgstr ""
7253
 
7254
+ #: includes/api/class-wc-rest-orders-controller.php:946 includes/api/v1/class-wc-rest-orders-controller.php:962
7255
+ msgid "True the prices included tax during checkout."
 
 
 
 
7256
  msgstr ""
7257
 
7258
+ #: includes/api/class-wc-rest-orders-controller.php:952 includes/api/v1/class-wc-rest-orders-controller.php:980
7259
+ msgid "User ID who owns the order. 0 for guests."
 
 
 
 
7260
  msgstr ""
7261
 
7262
+ #: includes/api/class-wc-rest-orders-controller.php:958 includes/api/v1/class-wc-rest-orders-controller.php:1164
7263
+ msgid "Customer's IP address."
 
 
7264
  msgstr ""
7265
 
7266
+ #: includes/api/class-wc-rest-orders-controller.php:964 includes/api/v1/class-wc-rest-orders-controller.php:1170
7267
+ msgid "User agent of the customer."
 
 
7268
  msgstr ""
7269
 
7270
+ #: includes/api/class-wc-rest-orders-controller.php:970 includes/api/v1/class-wc-rest-orders-controller.php:1182
7271
+ msgid "Note left by customer during checkout."
7272
  msgstr ""
7273
 
7274
+ #: includes/api/class-wc-rest-orders-controller.php:975 includes/api/v1/class-wc-rest-orders-controller.php:1028
7275
+ msgid "Billing address."
7276
  msgstr ""
7277
 
7278
+ #: includes/api/class-wc-rest-orders-controller.php:1020 includes/api/class-wc-rest-orders-controller.php:1083 includes/api/v1/class-wc-rest-orders-controller.php:1073 includes/api/v1/class-wc-rest-orders-controller.php:1136
7279
+ msgid "Country code in ISO 3166-1 alpha-2 format."
 
7280
  msgstr ""
7281
 
7282
+ #: includes/api/class-wc-rest-orders-controller.php:1038 includes/api/v1/class-wc-rest-orders-controller.php:1091
7283
+ msgid "Shipping address."
 
 
 
 
 
 
 
7284
  msgstr ""
7285
 
7286
+ #: includes/api/class-wc-rest-orders-controller.php:1090 includes/api/v1/class-wc-rest-orders-controller.php:1143
7287
+ msgid "Payment method ID."
7288
  msgstr ""
7289
 
7290
+ #: includes/api/class-wc-rest-orders-controller.php:1095 includes/api/v1/class-wc-rest-orders-controller.php:1148
7291
+ msgid "Payment method title."
 
7292
  msgstr ""
7293
 
7294
+ #: includes/api/class-wc-rest-orders-controller.php:1100 includes/api/v1/class-wc-rest-orders-controller.php:1159
7295
+ msgid "Unique transaction ID."
 
 
7296
  msgstr ""
7297
 
7298
+ #: includes/api/class-wc-rest-orders-controller.php:1105 includes/api/v1/class-wc-rest-orders-controller.php:1193
7299
+ msgid "The date the order was paid, in the site's timezone."
7300
  msgstr ""
7301
 
7302
+ #: includes/api/class-wc-rest-orders-controller.php:1111
7303
+ msgid "The date the order was paid, as GMT."
 
 
7304
  msgstr ""
7305
 
7306
+ #: includes/api/class-wc-rest-orders-controller.php:1117 includes/api/v1/class-wc-rest-orders-controller.php:1187
7307
+ msgid "The date the order was completed, in the site's timezone."
 
 
7308
  msgstr ""
7309
 
7310
+ #: includes/api/class-wc-rest-orders-controller.php:1123
7311
+ msgid "The date the order was completed, as GMT."
7312
  msgstr ""
7313
 
7314
+ #: includes/api/class-wc-rest-orders-controller.php:1129 includes/api/v1/class-wc-rest-orders-controller.php:1199
7315
+ msgid "MD5 hash of cart items to ensure orders are not modified."
7316
  msgstr ""
7317
 
7318
+ #: includes/api/class-wc-rest-orders-controller.php:1161 includes/api/class-wc-rest-order-refunds-controller.php:419 includes/api/v1/class-wc-rest-orders-controller.php:1205 includes/api/v1/class-wc-rest-order-refunds-controller.php:366
7319
+ msgid "Line items data."
7320
  msgstr ""
7321
 
7322
+ #: includes/api/class-wc-rest-orders-controller.php:1168 includes/api/class-wc-rest-orders-controller.php:1296 includes/api/class-wc-rest-orders-controller.php:1374 includes/api/class-wc-rest-orders-controller.php:1460 includes/api/class-wc-rest-orders-controller.php:1558 includes/api/class-wc-rest-order-refunds-controller.php:427 includes/api/v1/class-wc-rest-orders-controller.php:1212 includes/api/v1/class-wc-rest-orders-controller.php:1346 includes/api/v1/class-wc-rest-orders-controller.php:1398 includes/api/v1/class-wc-rest-orders-controller.php:1458 includes/api/v1/class-wc-rest-orders-controller.php:1529 includes/api/v1/class-wc-rest-order-refunds-controller.php:374
7323
+ msgid "Item ID."
7324
  msgstr ""
7325
 
7326
+ #: includes/api/class-wc-rest-orders-controller.php:1184 includes/api/class-wc-rest-order-refunds-controller.php:445 includes/api/v1/class-wc-rest-orders-controller.php:1235 includes/api/v1/class-wc-rest-order-refunds-controller.php:398
7327
+ msgid "Variation ID, if applicable."
7328
  msgstr ""
7329
 
7330
+ #: includes/api/class-wc-rest-orders-controller.php:1189 includes/api/class-wc-rest-order-refunds-controller.php:451 includes/api/v1/class-wc-rest-orders-controller.php:1240 includes/api/v1/class-wc-rest-order-refunds-controller.php:404
7331
+ msgid "Quantity ordered."
7332
  msgstr ""
7333
 
7334
+ #: includes/api/class-wc-rest-orders-controller.php:1194 includes/api/class-wc-rest-order-refunds-controller.php:457 includes/api/v1/class-wc-rest-orders-controller.php:1245 includes/api/v1/class-wc-rest-order-refunds-controller.php:410
7335
+ msgid "Tax class of product."
7336
  msgstr ""
7337
 
7338
+ #: includes/api/class-wc-rest-orders-controller.php:1199 includes/api/class-wc-rest-order-refunds-controller.php:463 includes/api/v1/class-wc-rest-orders-controller.php:1257 includes/api/v1/class-wc-rest-order-refunds-controller.php:422
7339
+ msgid "Line subtotal (before discounts)."
7340
  msgstr ""
7341
 
7342
+ #: includes/api/class-wc-rest-orders-controller.php:1204 includes/api/class-wc-rest-order-refunds-controller.php:469 includes/api/v1/class-wc-rest-orders-controller.php:1262 includes/api/v1/class-wc-rest-order-refunds-controller.php:428
7343
+ msgid "Line subtotal tax (before discounts)."
7344
  msgstr ""
7345
 
7346
+ #: includes/api/class-wc-rest-orders-controller.php:1210 includes/api/class-wc-rest-orders-controller.php:1390 includes/api/class-wc-rest-orders-controller.php:1482 includes/api/class-wc-rest-order-refunds-controller.php:475 includes/api/v1/class-wc-rest-orders-controller.php:1267 includes/api/v1/class-wc-rest-orders-controller.php:1414 includes/api/v1/class-wc-rest-orders-controller.php:1480 includes/api/v1/class-wc-rest-order-refunds-controller.php:434
7347
+ msgid "Line total (after discounts)."
7348
  msgstr ""
7349
 
7350
+ #: includes/api/class-wc-rest-orders-controller.php:1215 includes/api/class-wc-rest-orders-controller.php:1395 includes/api/class-wc-rest-orders-controller.php:1487 includes/api/class-wc-rest-order-refunds-controller.php:481 includes/api/v1/class-wc-rest-orders-controller.php:1272 includes/api/v1/class-wc-rest-orders-controller.php:1419 includes/api/v1/class-wc-rest-orders-controller.php:1485 includes/api/v1/class-wc-rest-order-refunds-controller.php:440
7351
+ msgid "Line total tax (after discounts)."
7352
  msgstr ""
7353
 
7354
+ #: includes/api/class-wc-rest-orders-controller.php:1221 includes/api/class-wc-rest-orders-controller.php:1401 includes/api/class-wc-rest-orders-controller.php:1493 includes/api/class-wc-rest-order-refunds-controller.php:487 includes/api/v1/class-wc-rest-orders-controller.php:1277 includes/api/v1/class-wc-rest-orders-controller.php:1425 includes/api/v1/class-wc-rest-orders-controller.php:1490 includes/api/v1/class-wc-rest-order-refunds-controller.php:446
7355
+ msgid "Line taxes."
7356
  msgstr ""
7357
 
7358
+ #: includes/api/class-wc-rest-orders-controller.php:1229 includes/api/class-wc-rest-orders-controller.php:1308 includes/api/class-wc-rest-orders-controller.php:1409 includes/api/class-wc-rest-orders-controller.php:1501 includes/api/class-wc-rest-order-refunds-controller.php:495 includes/api/v1/class-wc-rest-orders-controller.php:1285 includes/api/v1/class-wc-rest-orders-controller.php:1358 includes/api/v1/class-wc-rest-orders-controller.php:1433 includes/api/v1/class-wc-rest-orders-controller.php:1498 includes/api/v1/class-wc-rest-order-refunds-controller.php:454
7359
+ msgid "Tax rate ID."
 
7360
  msgstr ""
7361
 
7362
+ #: includes/api/class-wc-rest-orders-controller.php:1234 includes/api/class-wc-rest-orders-controller.php:1415 includes/api/class-wc-rest-orders-controller.php:1507 includes/api/class-wc-rest-order-refunds-controller.php:501 includes/api/v1/class-wc-rest-orders-controller.php:1291 includes/api/v1/class-wc-rest-orders-controller.php:1439 includes/api/v1/class-wc-rest-orders-controller.php:1504 includes/api/v1/class-wc-rest-order-refunds-controller.php:460
7363
+ msgid "Tax total."
 
7364
  msgstr ""
7365
 
7366
+ #: includes/api/class-wc-rest-orders-controller.php:1239 includes/api/class-wc-rest-orders-controller.php:1513 includes/api/class-wc-rest-order-refunds-controller.php:507 includes/api/v1/class-wc-rest-orders-controller.php:1297 includes/api/v1/class-wc-rest-orders-controller.php:1510 includes/api/v1/class-wc-rest-order-refunds-controller.php:466
7367
+ msgid "Tax subtotal."
 
7368
  msgstr ""
7369
 
7370
+ #: includes/api/class-wc-rest-orders-controller.php:1273 includes/api/class-wc-rest-order-refunds-controller.php:545 includes/api/v1/class-wc-rest-orders-controller.php:1224 includes/api/v1/class-wc-rest-order-refunds-controller.php:386
7371
+ msgid "Product SKU."
 
7372
  msgstr ""
7373
 
7374
+ #: includes/api/class-wc-rest-orders-controller.php:1279 includes/api/class-wc-rest-order-refunds-controller.php:551 includes/api/v1/class-wc-rest-orders-controller.php:1251 includes/api/v1/class-wc-rest-order-refunds-controller.php:416
7375
+ msgid "Product price."
 
7376
  msgstr ""
7377
 
7378
+ #: includes/api/class-wc-rest-orders-controller.php:1288 includes/api/v1/class-wc-rest-orders-controller.php:1338
7379
+ msgid "Tax lines data."
 
7380
  msgstr ""
7381
 
7382
+ #: includes/api/class-wc-rest-orders-controller.php:1302 includes/api/v1/class-wc-rest-orders-controller.php:1352
7383
+ msgid "Tax rate code."
 
7384
  msgstr ""
7385
 
7386
+ #: includes/api/class-wc-rest-orders-controller.php:1314 includes/api/v1/class-wc-rest-orders-controller.php:1364
7387
+ msgid "Tax rate label."
 
7388
  msgstr ""
7389
 
7390
+ #: includes/api/class-wc-rest-orders-controller.php:1320 includes/api/v1/class-wc-rest-orders-controller.php:1370
7391
+ msgid "Show if is a compound tax rate."
7392
  msgstr ""
7393
 
7394
+ #: includes/api/class-wc-rest-orders-controller.php:1326 includes/api/v1/class-wc-rest-orders-controller.php:1376
7395
+ msgid "Tax total (not including shipping taxes)."
7396
  msgstr ""
7397
 
7398
+ #: includes/api/class-wc-rest-orders-controller.php:1332 includes/api/v1/class-wc-rest-orders-controller.php:1382
7399
+ msgid "Shipping tax total."
 
 
7400
  msgstr ""
7401
 
7402
+ #: includes/api/class-wc-rest-orders-controller.php:1367 includes/api/v1/class-wc-rest-orders-controller.php:1391
7403
+ msgid "Shipping lines data."
7404
  msgstr ""
7405
 
7406
+ #: includes/api/class-wc-rest-orders-controller.php:1380 includes/api/v1/class-wc-rest-orders-controller.php:1404
7407
+ msgid "Shipping method name."
7408
  msgstr ""
7409
 
7410
+ #: includes/api/class-wc-rest-orders-controller.php:1453 includes/api/v1/class-wc-rest-orders-controller.php:1451
7411
+ msgid "Fee lines data."
7412
  msgstr ""
7413
 
7414
+ #: includes/api/class-wc-rest-orders-controller.php:1466 includes/api/v1/class-wc-rest-orders-controller.php:1464
7415
+ msgid "Fee name."
 
7416
  msgstr ""
7417
 
7418
+ #: includes/api/class-wc-rest-orders-controller.php:1471 includes/api/v1/class-wc-rest-orders-controller.php:1469
7419
+ msgid "Tax class of fee."
7420
  msgstr ""
7421
 
7422
+ #: includes/api/class-wc-rest-orders-controller.php:1476 includes/api/v1/class-wc-rest-orders-controller.php:1474
7423
+ msgid "Tax status of fee."
7424
  msgstr ""
7425
 
7426
+ #: includes/api/class-wc-rest-orders-controller.php:1551 includes/api/v1/class-wc-rest-orders-controller.php:1522
7427
+ msgid "Coupons line data."
 
 
 
7428
  msgstr ""
7429
 
7430
+ #: includes/api/class-wc-rest-orders-controller.php:1564 includes/api/class-wc-rest-coupons-controller.php:61 includes/api/class-wc-rest-coupons-controller.php:341 includes/api/v1/class-wc-rest-orders-controller.php:1535 includes/api/v1/class-wc-rest-coupons-controller.php:70 includes/api/v1/class-wc-rest-coupons-controller.php:421
7431
+ msgid "Coupon code."
7432
  msgstr ""
7433
 
7434
+ #: includes/api/class-wc-rest-orders-controller.php:1569 includes/api/v1/class-wc-rest-orders-controller.php:1540
7435
+ msgid "Discount total."
7436
  msgstr ""
7437
 
7438
+ #: includes/api/class-wc-rest-orders-controller.php:1574 includes/api/v1/class-wc-rest-orders-controller.php:1545
7439
+ msgid "Discount total tax."
7440
  msgstr ""
7441
 
7442
+ #: includes/api/class-wc-rest-orders-controller.php:1609 includes/api/v1/class-wc-rest-orders-controller.php:1554
7443
+ msgid "List of refunds."
 
 
7444
  msgstr ""
7445
 
7446
+ #: includes/api/class-wc-rest-orders-controller.php:1623 includes/api/v1/class-wc-rest-orders-controller.php:1568
7447
+ msgid "Refund reason."
 
7448
  msgstr ""
7449
 
7450
+ #: includes/api/class-wc-rest-orders-controller.php:1629 includes/api/v1/class-wc-rest-orders-controller.php:1574
7451
+ msgid "Refund total."
7452
  msgstr ""
7453
 
7454
+ #: includes/api/class-wc-rest-orders-controller.php:1638 includes/api/v1/class-wc-rest-orders-controller.php:1153
7455
+ msgid "Define if the order is paid. It will set the status to processing and reduce stock items."
7456
  msgstr ""
7457
 
7458
+ #: includes/api/class-wc-rest-orders-controller.php:1659 includes/api/v1/class-wc-rest-orders-controller.php:1598
7459
+ msgid "Limit result set to orders assigned a specific status."
7460
  msgstr ""
7461
 
7462
+ #: includes/api/class-wc-rest-orders-controller.php:1666 includes/api/v1/class-wc-rest-orders-controller.php:1605
7463
+ msgid "Limit result set to orders assigned a specific customer."
 
7464
  msgstr ""
7465
 
7466
+ #: includes/api/class-wc-rest-orders-controller.php:1672 includes/api/v1/class-wc-rest-orders-controller.php:1611
7467
+ msgid "Limit result set to orders assigned a specific product."
 
 
7468
  msgstr ""
7469
 
7470
+ #: includes/api/class-wc-rest-orders-controller.php:1679 includes/api/v1/class-wc-rest-orders-controller.php:1618 includes/api/v1/class-wc-rest-order-refunds-controller.php:522
7471
+ msgid "Number of decimal points to use in each resource."
7472
  msgstr ""
7473
 
7474
+ #. translators: %s: attachment id
7475
+ #: includes/api/class-wc-rest-products-controller.php:1088 includes/api/v1/class-wc-rest-products-controller.php:867
7476
+ #, php-format
7477
+ msgid "#%s is an invalid image ID."
7478
  msgstr ""
7479
 
7480
+ #: includes/api/class-wc-rest-products-controller.php:1440 includes/api/v1/class-wc-rest-products-controller.php:1745
7481
+ msgid "Product slug."
7482
  msgstr ""
7483
 
7484
+ #: includes/api/class-wc-rest-products-controller.php:1445 includes/api/v1/class-wc-rest-products-controller.php:1750
7485
+ msgid "Product URL."
7486
  msgstr ""
7487
 
7488
+ #: includes/api/class-wc-rest-products-controller.php:1452 includes/api/v1/class-wc-rest-products-controller.php:1757
7489
+ msgid "The date the product was created, in the site's timezone."
 
 
7490
  msgstr ""
7491
 
7492
+ #: includes/api/class-wc-rest-products-controller.php:1458
7493
+ msgid "The date the product was created, as GMT."
7494
  msgstr ""
7495
 
7496
+ #: includes/api/class-wc-rest-products-controller.php:1464 includes/api/v1/class-wc-rest-products-controller.php:1763
7497
+ msgid "The date the product was last modified, in the site's timezone."
7498
  msgstr ""
7499
 
7500
+ #: includes/api/class-wc-rest-products-controller.php:1470
7501
+ msgid "The date the product was last modified, as GMT."
7502
  msgstr ""
7503
 
7504
+ #: includes/api/class-wc-rest-products-controller.php:1476 includes/api/v1/class-wc-rest-products-controller.php:1769
7505
+ msgid "Product type."
 
 
7506
  msgstr ""
7507
 
7508
+ #: includes/api/class-wc-rest-products-controller.php:1483 includes/api/v1/class-wc-rest-products-controller.php:1776
7509
+ msgid "Product status (post status)."
 
 
 
 
7510
  msgstr ""
7511
 
7512
+ #: includes/api/class-wc-rest-products-controller.php:1490 includes/api/v1/class-wc-rest-products-controller.php:1783
7513
+ msgid "Featured product."
 
7514
  msgstr ""
7515
 
7516
+ #: includes/api/class-wc-rest-products-controller.php:1496 includes/api/v1/class-wc-rest-products-controller.php:1789
7517
+ msgid "Catalog visibility."
7518
  msgstr ""
7519
 
7520
+ #: includes/api/class-wc-rest-products-controller.php:1503 includes/api/v1/class-wc-rest-products-controller.php:1796
7521
+ msgid "Product description."
7522
  msgstr ""
7523
 
7524
+ #: includes/api/class-wc-rest-products-controller.php:1508 includes/api/v1/class-wc-rest-products-controller.php:1801
7525
+ msgid "Product short description."
7526
  msgstr ""
7527
 
7528
+ #: includes/api/class-wc-rest-products-controller.php:1513 includes/api/class-wc-rest-product-variations-controller.php:687 includes/api/v1/class-wc-rest-products-controller.php:1806 includes/api/v1/class-wc-rest-products-controller.php:2291
7529
+ msgid "Unique identifier."
7530
  msgstr ""
7531
 
7532
+ #: includes/api/class-wc-rest-products-controller.php:1518 includes/api/v1/class-wc-rest-products-controller.php:1811
7533
+ msgid "Current product price."
 
 
 
 
 
7534
  msgstr ""
7535
 
7536
+ #: includes/api/class-wc-rest-products-controller.php:1524 includes/api/v1/class-wc-rest-products-controller.php:1817
7537
+ msgid "Product regular price."
 
 
7538
  msgstr ""
7539
 
7540
+ #: includes/api/class-wc-rest-products-controller.php:1529 includes/api/v1/class-wc-rest-products-controller.php:1822
7541
+ msgid "Product sale price."
7542
  msgstr ""
7543
 
7544
+ #: includes/api/class-wc-rest-products-controller.php:1534 includes/api/class-wc-rest-product-variations-controller.php:708
7545
+ msgid "Start date of sale price, in the site's timezone."
7546
  msgstr ""
7547
 
7548
+ #: includes/api/class-wc-rest-products-controller.php:1539 includes/api/class-wc-rest-product-variations-controller.php:713
7549
+ msgid "Start date of sale price, as GMT."
7550
  msgstr ""
7551
 
7552
+ #: includes/api/class-wc-rest-products-controller.php:1544 includes/api/class-wc-rest-product-variations-controller.php:718
7553
+ msgid "End date of sale price, in the site's timezone."
 
 
7554
  msgstr ""
7555
 
7556
+ #: includes/api/class-wc-rest-products-controller.php:1549 includes/api/class-wc-rest-product-variations-controller.php:723
7557
+ msgid "End date of sale price, as GMT."
 
7558
  msgstr ""
7559
 
7560
+ #: includes/api/class-wc-rest-products-controller.php:1554 includes/api/v1/class-wc-rest-products-controller.php:1837
7561
+ msgid "Price formatted in HTML."
 
 
7562
  msgstr ""
7563
 
7564
+ #: includes/api/class-wc-rest-products-controller.php:1560 includes/api/v1/class-wc-rest-products-controller.php:1843
7565
+ msgid "Shows if the product is on sale."
7566
  msgstr ""
7567
 
7568
+ #: includes/api/class-wc-rest-products-controller.php:1566 includes/api/v1/class-wc-rest-products-controller.php:1849
7569
+ msgid "Shows if the product can be bought."
 
 
7570
  msgstr ""
7571
 
7572
+ #: includes/api/class-wc-rest-products-controller.php:1572 includes/api/v1/class-wc-rest-products-controller.php:1855
7573
+ msgid "Amount of sales."
7574
  msgstr ""
7575
 
7576
+ #: includes/api/class-wc-rest-products-controller.php:1578 includes/api/v1/class-wc-rest-products-controller.php:1861
7577
+ msgid "If the product is virtual."
 
 
7578
  msgstr ""
7579
 
7580
+ #: includes/api/class-wc-rest-products-controller.php:1584 includes/api/v1/class-wc-rest-products-controller.php:1867
7581
+ msgid "If the product is downloadable."
7582
  msgstr ""
7583
 
7584
+ #: includes/api/class-wc-rest-products-controller.php:1590 includes/api/class-wc-rest-product-variations-controller.php:758 includes/api/v1/class-wc-rest-products-controller.php:1873 includes/api/v1/class-wc-rest-products-controller.php:2351
7585
+ msgid "List of downloadable files."
7586
  msgstr ""
7587
 
7588
+ #: includes/api/class-wc-rest-products-controller.php:1597 includes/api/class-wc-rest-product-variations-controller.php:765 includes/api/v1/class-wc-rest-products-controller.php:1880 includes/api/v1/class-wc-rest-products-controller.php:2358
7589
+ msgid "File MD5 hash."
7590
  msgstr ""
7591
 
7592
+ #: includes/api/class-wc-rest-products-controller.php:1616 includes/api/class-wc-rest-product-variations-controller.php:784 includes/api/v1/class-wc-rest-products-controller.php:1899 includes/api/v1/class-wc-rest-products-controller.php:2377
7593
+ msgid "Number of times downloadable files can be downloaded after purchase."
7594
  msgstr ""
7595
 
7596
+ #: includes/api/class-wc-rest-products-controller.php:1622 includes/api/class-wc-rest-product-variations-controller.php:790 includes/api/v1/class-wc-rest-products-controller.php:1905 includes/api/v1/class-wc-rest-products-controller.php:2383
7597
+ msgid "Number of days until access to downloadable files expires."
 
 
7598
  msgstr ""
7599
 
7600
+ #: includes/api/class-wc-rest-products-controller.php:1628 includes/api/v1/class-wc-rest-products-controller.php:1918
7601
+ msgid "Product external URL. Only for external products."
 
 
 
7602
  msgstr ""
7603
 
7604
+ #: includes/api/class-wc-rest-products-controller.php:1634 includes/api/v1/class-wc-rest-products-controller.php:1924
7605
+ msgid "Product external button text. Only for external products."
 
 
7606
  msgstr ""
7607
 
7608
+ #: includes/api/class-wc-rest-products-controller.php:1639 includes/api/class-wc-rest-product-variations-controller.php:796 includes/api/v1/class-wc-rest-products-controller.php:1929 includes/api/v1/class-wc-rest-products-controller.php:2389
7609
+ msgid "Tax status."
7610
  msgstr ""
7611
 
7612
+ #: includes/api/class-wc-rest-products-controller.php:1646 includes/api/class-wc-rest-product-variations-controller.php:803 includes/api/v1/class-wc-rest-taxes-controller.php:635 includes/api/v1/class-wc-rest-products-controller.php:1936 includes/api/v1/class-wc-rest-products-controller.php:2396
7613
+ msgid "Tax class."
7614
  msgstr ""
7615
 
7616
+ #: includes/api/class-wc-rest-products-controller.php:1651 includes/api/v1/class-wc-rest-products-controller.php:1941
7617
+ msgid "Stock management at product level."
 
 
7618
  msgstr ""
7619
 
7620
+ #: includes/api/class-wc-rest-products-controller.php:1657 includes/api/class-wc-rest-product-variations-controller.php:814 includes/api/v1/class-wc-rest-products-controller.php:1947 includes/api/v1/class-wc-rest-products-controller.php:2407
7621
+ msgid "Stock quantity."
7622
  msgstr ""
7623
 
7624
+ #: includes/api/class-wc-rest-products-controller.php:1662 includes/api/v1/class-wc-rest-products-controller.php:1952 includes/admin/meta-boxes/views/html-product-data-inventory.php:81 includes/admin/meta-boxes/views/html-variation-admin.php:222
7625
+ msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend."
 
 
7626
  msgstr ""
7627
 
7628
+ #: includes/api/class-wc-rest-products-controller.php:1668 includes/api/class-wc-rest-product-variations-controller.php:825 includes/api/v1/class-wc-rest-products-controller.php:1958 includes/api/v1/class-wc-rest-products-controller.php:2418
7629
+ msgid "If managing stock, this controls if backorders are allowed."
 
 
7630
  msgstr ""
7631
 
7632
+ #: includes/api/class-wc-rest-products-controller.php:1675 includes/api/class-wc-rest-product-variations-controller.php:832 includes/api/v1/class-wc-rest-products-controller.php:1965 includes/api/v1/class-wc-rest-products-controller.php:2425
7633
+ msgid "Shows if backorders are allowed."
 
 
7634
  msgstr ""
7635
 
7636
+ #: includes/api/class-wc-rest-products-controller.php:1681 includes/api/v1/class-wc-rest-products-controller.php:1971
7637
+ msgid "Shows if the product is on backordered."
 
 
 
7638
  msgstr ""
7639
 
7640
+ #: includes/api/class-wc-rest-products-controller.php:1687 includes/api/v1/class-wc-rest-products-controller.php:1977
7641
+ msgid "Allow one item to be bought in a single order."
 
 
7642
  msgstr ""
7643
 
7644
+ #. translators: %s: weight unit
7645
+ #: includes/api/class-wc-rest-products-controller.php:1694 includes/api/v1/class-wc-rest-products-controller.php:1984
7646
+ #, php-format
7647
+ msgid "Product weight (%s)."
7648
  msgstr ""
7649
 
7650
+ #: includes/api/class-wc-rest-products-controller.php:1699 includes/api/v1/class-wc-rest-products-controller.php:1989
7651
+ msgid "Product dimensions."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7652
  msgstr ""
7653
 
7654
+ #. translators: %s: dimension unit
7655
+ #: includes/api/class-wc-rest-products-controller.php:1705 includes/api/v1/class-wc-rest-products-controller.php:1995
7656
+ #, php-format
7657
+ msgid "Product length (%s)."
7658
  msgstr ""
7659
 
7660
+ #. translators: %s: dimension unit
7661
+ #: includes/api/class-wc-rest-products-controller.php:1711 includes/api/v1/class-wc-rest-products-controller.php:2001
7662
+ #, php-format
7663
+ msgid "Product width (%s)."
7664
  msgstr ""
7665
 
7666
+ #. translators: %s: dimension unit
7667
+ #: includes/api/class-wc-rest-products-controller.php:1717 includes/api/v1/class-wc-rest-products-controller.php:2007
7668
+ #, php-format
7669
+ msgid "Product height (%s)."
7670
  msgstr ""
7671
 
7672
+ #: includes/api/class-wc-rest-products-controller.php:1724 includes/api/v1/class-wc-rest-products-controller.php:2014
7673
+ msgid "Shows if the product need to be shipped."
 
 
7674
  msgstr ""
7675
 
7676
+ #: includes/api/class-wc-rest-products-controller.php:1730 includes/api/v1/class-wc-rest-products-controller.php:2020
7677
+ msgid "Shows whether or not the product shipping is taxable."
7678
  msgstr ""
7679
 
7680
+ #: includes/api/class-wc-rest-products-controller.php:1736 includes/api/class-wc-rest-product-variations-controller.php:875 includes/api/v1/class-wc-rest-products-controller.php:2026 includes/api/v1/class-wc-rest-products-controller.php:2468
7681
+ msgid "Shipping class slug."
 
 
7682
  msgstr ""
7683
 
7684
+ #: includes/api/class-wc-rest-products-controller.php:1741 includes/api/class-wc-rest-product-variations-controller.php:880 includes/api/v1/class-wc-rest-products-controller.php:2031 includes/api/v1/class-wc-rest-products-controller.php:2473
7685
+ msgid "Shipping class ID."
 
7686
  msgstr ""
7687
 
7688
+ #: includes/api/class-wc-rest-products-controller.php:1747 includes/api/v1/class-wc-rest-products-controller.php:2037
7689
+ msgid "Allow reviews."
7690
  msgstr ""
7691
 
7692
+ #: includes/api/class-wc-rest-products-controller.php:1753 includes/api/v1/class-wc-rest-products-controller.php:2043
7693
+ msgid "Reviews average rating."
 
7694
  msgstr ""
7695
 
7696
+ #: includes/api/class-wc-rest-products-controller.php:1759 includes/api/v1/class-wc-rest-products-controller.php:2049
7697
+ msgid "Amount of reviews that the product have."
 
 
 
7698
  msgstr ""
7699
 
7700
+ #: includes/api/class-wc-rest-products-controller.php:1765 includes/api/v1/class-wc-rest-products-controller.php:2055
7701
+ msgid "List of related products IDs."
 
 
 
 
 
 
7702
  msgstr ""
7703
 
7704
+ #: includes/api/class-wc-rest-products-controller.php:1774
7705
+ msgid "List of up-sell products IDs."
 
7706
  msgstr ""
7707
 
7708
+ #: includes/api/class-wc-rest-products-controller.php:1782 includes/api/v1/class-wc-rest-products-controller.php:2072
7709
+ msgid "List of cross-sell products IDs."
 
 
7710
  msgstr ""
7711
 
7712
+ #: includes/api/class-wc-rest-products-controller.php:1790 includes/api/v1/class-wc-rest-products-controller.php:2080
7713
+ msgid "Product parent ID."
7714
  msgstr ""
7715
 
7716
+ #: includes/api/class-wc-rest-products-controller.php:1795 includes/api/v1/class-wc-rest-products-controller.php:2085
7717
+ msgid "Optional note to send the customer after purchase."
7718
  msgstr ""
7719
 
7720
+ #: includes/api/class-wc-rest-products-controller.php:1800 includes/api/v1/class-wc-rest-products-controller.php:2090
7721
+ msgid "List of categories."
 
7722
  msgstr ""
7723
 
7724
+ #: includes/api/class-wc-rest-products-controller.php:1807 includes/api/v1/class-wc-rest-products-controller.php:2097
7725
+ msgid "Category ID."
7726
  msgstr ""
7727
 
7728
+ #: includes/api/class-wc-rest-products-controller.php:1818 includes/api/v1/class-wc-rest-products-controller.php:2108
7729
+ msgid "Category slug."
7730
  msgstr ""
7731
 
7732
+ #: includes/api/class-wc-rest-products-controller.php:1827 includes/api/v1/class-wc-rest-products-controller.php:2117
7733
+ msgid "List of tags."
 
 
7734
  msgstr ""
7735
 
7736
+ #: includes/api/class-wc-rest-products-controller.php:1834 includes/api/v1/class-wc-rest-products-controller.php:2124
7737
+ msgid "Tag ID."
7738
  msgstr ""
7739
 
7740
+ #: includes/api/class-wc-rest-products-controller.php:1839 includes/api/v1/class-wc-rest-product-tags-controller.php:100 includes/api/v1/class-wc-rest-products-controller.php:2129
7741
+ msgid "Tag name."
7742
  msgstr ""
7743
 
7744
+ #: includes/api/class-wc-rest-products-controller.php:1845 includes/api/v1/class-wc-rest-products-controller.php:2135
7745
+ msgid "Tag slug."
 
7746
  msgstr ""
7747
 
7748
+ #: includes/api/class-wc-rest-products-controller.php:1854 includes/api/v1/class-wc-rest-products-controller.php:2144
7749
+ msgid "List of images."
7750
  msgstr ""
7751
 
7752
+ #: includes/api/class-wc-rest-products-controller.php:1906 includes/api/class-wc-rest-product-variations-controller.php:936 includes/api/v1/class-wc-rest-products-controller.php:2184 includes/api/v1/class-wc-rest-products-controller.php:2517
7753
+ msgid "Image position. 0 means that the image is featured."
7754
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7755
 
7756
+ #: includes/api/class-wc-rest-products-controller.php:1914 includes/api/class-wc-rest-product-variations-controller.php:943 includes/api/v1/class-wc-rest-products-controller.php:2192 includes/api/v1/class-wc-rest-products-controller.php:2524
7757
+ msgid "List of attributes."
7758
+ msgstr ""
 
 
 
7759
 
7760
+ #: includes/api/class-wc-rest-products-controller.php:1926 includes/api/class-wc-rest-products-controller.php:1971 includes/api/class-wc-rest-product-variations-controller.php:955 includes/api/v1/class-wc-rest-products-controller.php:2204 includes/api/v1/class-wc-rest-products-controller.php:2246 includes/api/v1/class-wc-rest-products-controller.php:2536 includes/api/v1/class-wc-rest-product-attributes-controller.php:462
7761
+ msgid "Attribute name."
7762
+ msgstr ""
 
 
 
7763
 
7764
+ #: includes/api/class-wc-rest-products-controller.php:1931 includes/api/v1/class-wc-rest-products-controller.php:2209
7765
+ msgid "Attribute position."
7766
+ msgstr ""
 
 
 
7767
 
7768
+ #: includes/api/class-wc-rest-products-controller.php:1936 includes/api/v1/class-wc-rest-products-controller.php:2214
7769
+ msgid "Define if the attribute is visible on the \"Additional information\" tab in the product's page."
7770
+ msgstr ""
 
 
 
7771
 
7772
+ #: includes/api/class-wc-rest-products-controller.php:1942 includes/api/v1/class-wc-rest-products-controller.php:2220
7773
+ msgid "Define if the attribute can be used as variation."
7774
+ msgstr ""
 
 
 
7775
 
7776
+ #: includes/api/class-wc-rest-products-controller.php:1948 includes/api/v1/class-wc-rest-products-controller.php:2226
7777
+ msgid "List of available term names of the attribute."
7778
+ msgstr ""
 
 
 
7779
 
7780
+ #: includes/api/class-wc-rest-products-controller.php:1959 includes/api/v1/class-wc-rest-products-controller.php:2234
7781
+ msgid "Defaults variation attributes."
 
7782
  msgstr ""
7783
 
7784
+ #: includes/api/class-wc-rest-products-controller.php:1976 includes/api/class-wc-rest-product-variations-controller.php:960 includes/api/v1/class-wc-rest-products-controller.php:2251 includes/api/v1/class-wc-rest-products-controller.php:2541
7785
+ msgid "Selected attribute term name."
7786
  msgstr ""
7787
 
7788
+ #: includes/api/class-wc-rest-products-controller.php:1984
7789
+ msgid "List of variations IDs."
7790
  msgstr ""
7791
 
7792
+ #: includes/api/class-wc-rest-products-controller.php:1993 includes/api/v1/class-wc-rest-products-controller.php:2552
7793
+ msgid "List of grouped products ID."
7794
  msgstr ""
7795
 
7796
+ #: includes/api/class-wc-rest-products-controller.php:2001 includes/api/class-wc-rest-product-variations-controller.php:968 includes/api/v1/class-wc-rest-products-controller.php:2561
7797
+ msgid "Menu order, used to custom sort products."
7798
  msgstr ""
7799
 
7800
+ #: includes/api/class-wc-rest-products-controller.php:2046 includes/api/v1/class-wc-rest-products-controller.php:2580
7801
+ msgid "Limit result set to products with a specific slug."
7802
  msgstr ""
7803
 
7804
+ #: includes/api/class-wc-rest-products-controller.php:2052 includes/api/v1/class-wc-rest-products-controller.php:2586
7805
+ msgid "Limit result set to products assigned a specific status."
 
 
 
 
 
 
7806
  msgstr ""
7807
 
7808
+ #: includes/api/class-wc-rest-products-controller.php:2059 includes/api/v1/class-wc-rest-products-controller.php:2593
7809
+ msgid "Limit result set to products assigned a specific type."
 
 
7810
  msgstr ""
7811
 
7812
+ #: includes/api/class-wc-rest-products-controller.php:2066
7813
+ msgid "Limit result set to products with specific SKU(s). Use commas to separate."
7814
  msgstr ""
7815
 
7816
+ #: includes/api/class-wc-rest-products-controller.php:2072
7817
+ msgid "Limit result set to featured products."
7818
  msgstr ""
7819
 
7820
+ #: includes/api/class-wc-rest-products-controller.php:2078 includes/api/v1/class-wc-rest-products-controller.php:2600
7821
+ msgid "Limit result set to products assigned a specific category ID."
7822
  msgstr ""
7823
 
7824
+ #: includes/api/class-wc-rest-products-controller.php:2084 includes/api/v1/class-wc-rest-products-controller.php:2606
7825
+ msgid "Limit result set to products assigned a specific tag ID."
7826
  msgstr ""
7827
 
7828
+ #: includes/api/class-wc-rest-products-controller.php:2090 includes/api/v1/class-wc-rest-products-controller.php:2612
7829
+ msgid "Limit result set to products assigned a specific shipping class ID."
7830
  msgstr ""
7831
 
7832
+ #: includes/api/class-wc-rest-products-controller.php:2096
7833
+ msgid "Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug."
 
7834
  msgstr ""
7835
 
7836
+ #: includes/api/class-wc-rest-products-controller.php:2102 includes/api/v1/class-wc-rest-products-controller.php:2624
7837
+ msgid "Limit result set to products with a specific attribute term ID (required an assigned attribute)."
 
 
 
 
 
7838
  msgstr ""
7839
 
7840
+ #: includes/api/class-wc-rest-products-controller.php:2110
7841
+ msgid "Limit result set to products with a specific tax class."
 
 
 
 
 
7842
  msgstr ""
7843
 
7844
+ #: includes/api/class-wc-rest-products-controller.php:2119
7845
+ msgid "Limit result set to products in stock or out of stock."
 
 
 
7846
  msgstr ""
7847
 
7848
+ #: includes/api/class-wc-rest-products-controller.php:2125
7849
+ msgid "Limit result set to products on sale."
 
 
 
 
 
 
 
 
7850
  msgstr ""
7851
 
7852
+ #: includes/api/class-wc-rest-products-controller.php:2131
7853
+ msgid "Limit result set to products based on a minimum price."
 
 
 
 
 
 
 
 
 
 
7854
  msgstr ""
7855
 
7856
+ #: includes/api/class-wc-rest-products-controller.php:2137
7857
+ msgid "Limit result set to products based on a maximum price."
 
 
 
 
 
 
 
 
7858
  msgstr ""
7859
 
7860
+ #: includes/api/class-wc-rest-webhooks-controller.php:104 includes/api/v1/class-wc-rest-webhooks-controller.php:621
7861
+ msgid "A friendly name for the webhook."
 
 
 
 
 
 
 
 
 
7862
  msgstr ""
7863
 
7864
+ #: includes/api/class-wc-rest-webhooks-controller.php:109 includes/api/v1/class-wc-rest-webhooks-controller.php:626
7865
+ msgid "Webhook status."
 
 
 
 
 
 
 
7866
  msgstr ""
7867
 
7868
+ #: includes/api/class-wc-rest-webhooks-controller.php:119 includes/api/v1/class-wc-rest-webhooks-controller.php:63 includes/api/v1/class-wc-rest-webhooks-controller.php:636
7869
+ msgid "Webhook topic."
 
 
 
 
 
7870
  msgstr ""
7871
 
7872
+ #: includes/api/class-wc-rest-webhooks-controller.php:124 includes/api/v1/class-wc-rest-webhooks-controller.php:641
7873
+ msgid "Webhook resource."
 
 
 
 
 
 
 
7874
  msgstr ""
7875
 
7876
+ #: includes/api/class-wc-rest-webhooks-controller.php:130 includes/api/v1/class-wc-rest-webhooks-controller.php:647
7877
+ msgid "Webhook event."
 
7878
  msgstr ""
7879
 
7880
+ #: includes/api/class-wc-rest-webhooks-controller.php:136 includes/api/v1/class-wc-rest-webhooks-controller.php:653
7881
+ msgid "WooCommerce action names associated with the webhook."
 
 
 
 
7882
  msgstr ""
7883
 
7884
+ #: includes/api/class-wc-rest-webhooks-controller.php:145 includes/api/v1/class-wc-rest-webhooks-controller.php:662
7885
+ msgid "The URL where the webhook payload is delivered."
 
 
 
 
 
7886
  msgstr ""
7887
 
7888
+ #: includes/api/class-wc-rest-webhooks-controller.php:152 includes/api/v1/class-wc-rest-webhooks-controller.php:669
7889
+ msgid "Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided."
 
7890
  msgstr ""
7891
 
7892
+ #: includes/api/class-wc-rest-webhooks-controller.php:157 includes/api/v1/class-wc-rest-webhooks-controller.php:674
7893
+ msgid "The date the webhook was created, in the site's timezone."
7894
  msgstr ""
7895
 
7896
+ #: includes/api/class-wc-rest-webhooks-controller.php:163
7897
+ msgid "The date the webhook was created, as GMT."
 
 
7898
  msgstr ""
7899
 
7900
+ #: includes/api/class-wc-rest-webhooks-controller.php:169 includes/api/v1/class-wc-rest-webhooks-controller.php:680
7901
+ msgid "The date the webhook was last modified, in the site's timezone."
 
 
 
 
 
7902
  msgstr ""
7903
 
7904
+ #: includes/api/class-wc-rest-webhooks-controller.php:175
7905
+ msgid "The date the webhook was last modified, as GMT."
7906
  msgstr ""
7907
 
7908
+ #: includes/api/class-wc-rest-shipping-methods-controller.php:198
7909
+ msgid "Method ID."
7910
  msgstr ""
7911
 
7912
+ #: includes/api/class-wc-rest-order-refunds-controller.php:64 includes/api/class-wc-rest-order-refunds-controller.php:88 includes/api/v1/class-wc-rest-order-notes-controller.php:53 includes/api/v1/class-wc-rest-order-notes-controller.php:85 includes/api/v1/class-wc-rest-order-refunds-controller.php:61 includes/api/v1/class-wc-rest-order-refunds-controller.php:83
7913
+ msgid "The order ID."
7914
  msgstr ""
7915
 
7916
+ #: includes/api/class-wc-rest-order-refunds-controller.php:195 includes/api/v1/class-wc-rest-order-refunds-controller.php:133 includes/api/legacy/v2/class-wc-api-orders.php:1518 includes/api/legacy/v2/class-wc-api-orders.php:1680 includes/api/legacy/v2/class-wc-api-orders.php:1741 includes/api/legacy/v3/class-wc-api-orders.php:1565 includes/api/legacy/v3/class-wc-api-orders.php:1727 includes/api/legacy/v3/class-wc-api-orders.php:1788
7917
+ msgid "Invalid order refund ID."
7918
  msgstr ""
7919
 
7920
+ #: includes/api/class-wc-rest-order-refunds-controller.php:277 includes/api/v1/class-wc-rest-order-refunds-controller.php:291
7921
+ msgid "Refund amount must be greater than zero."
 
7922
  msgstr ""
7923
 
7924
+ #: includes/api/class-wc-rest-order-refunds-controller.php:296 includes/api/v1/class-wc-rest-order-refunds-controller.php:308 includes/api/legacy/v2/class-wc-api-orders.php:1617 includes/api/legacy/v3/class-wc-api-orders.php:1664
7925
+ msgid "Cannot create order refund, please try again."
7926
  msgstr ""
7927
 
7928
+ #: includes/api/class-wc-rest-order-refunds-controller.php:361 includes/api/v1/class-wc-rest-order-refunds-controller.php:350
7929
+ msgid "The date the order refund was created, in the site's timezone."
7930
  msgstr ""
7931
 
7932
+ #: includes/api/class-wc-rest-order-refunds-controller.php:367
7933
+ msgid "The date the order refund was created, as GMT."
7934
  msgstr ""
7935
 
7936
+ #: includes/api/class-wc-rest-order-refunds-controller.php:373 includes/api/v1/class-wc-rest-order-refunds-controller.php:356
7937
+ msgid "Refund amount."
 
 
 
 
7938
  msgstr ""
7939
 
7940
+ #: includes/api/class-wc-rest-order-refunds-controller.php:378 includes/api/v1/class-wc-rest-order-refunds-controller.php:361
7941
+ msgid "Reason for refund."
7942
  msgstr ""
7943
 
7944
+ #: includes/api/class-wc-rest-order-refunds-controller.php:383
7945
+ msgid "User ID of user who created the refund."
7946
  msgstr ""
7947
 
7948
+ #: includes/api/class-wc-rest-order-refunds-controller.php:388
7949
+ msgid "If the payment was refunded via the API."
7950
  msgstr ""
7951
 
7952
+ #: includes/api/class-wc-rest-order-refunds-controller.php:560
7953
+ msgid "When true, the payment gateway API is used to generate the refund."
7954
  msgstr ""
7955
 
7956
+ #: includes/api/class-wc-rest-product-variations-controller.php:58 includes/api/class-wc-rest-product-variations-controller.php:81 includes/api/class-wc-rest-product-variations-controller.php:126 includes/api/class-wc-rest-product-reviews-controller.php:45 includes/api/v1/class-wc-rest-product-reviews-controller.php:46 includes/api/v1/class-wc-rest-product-reviews-controller.php:88
7957
+ msgid "Unique identifier for the variable product."
7958
  msgstr ""
7959
 
7960
+ #: includes/api/class-wc-rest-product-variations-controller.php:85 includes/api/v1/class-wc-rest-product-reviews-controller.php:50
7961
+ msgid "Unique identifier for the variation."
7962
  msgstr ""
7963
 
7964
+ #: includes/api/class-wc-rest-product-variations-controller.php:167
7965
+ msgid "Parent product does not match current variation."
7966
  msgstr ""
7967
 
7968
+ #: includes/api/class-wc-rest-product-variations-controller.php:663 includes/api/v1/class-wc-rest-products-controller.php:2272
7969
+ msgid "The date the variation was created, in the site's timezone."
 
 
7970
  msgstr ""
7971
 
7972
+ #: includes/api/class-wc-rest-product-variations-controller.php:669 includes/api/v1/class-wc-rest-products-controller.php:2278
7973
+ msgid "The date the variation was last modified, in the site's timezone."
7974
  msgstr ""
7975
 
7976
+ #: includes/api/class-wc-rest-product-variations-controller.php:675
7977
+ msgid "Variation description."
7978
  msgstr ""
7979
 
7980
+ #: includes/api/class-wc-rest-product-variations-controller.php:680 includes/api/v1/class-wc-rest-products-controller.php:2284
7981
+ msgid "Variation URL."
 
7982
  msgstr ""
7983
 
7984
+ #: includes/api/class-wc-rest-product-variations-controller.php:692 includes/api/v1/class-wc-rest-products-controller.php:2296
7985
+ msgid "Current variation price."
7986
  msgstr ""
7987
 
7988
+ #: includes/api/class-wc-rest-product-variations-controller.php:698 includes/api/v1/class-wc-rest-products-controller.php:2302
7989
+ msgid "Variation regular price."
 
7990
  msgstr ""
7991
 
7992
+ #: includes/api/class-wc-rest-product-variations-controller.php:703 includes/api/v1/class-wc-rest-products-controller.php:2307
7993
+ msgid "Variation sale price."
 
7994
  msgstr ""
7995
 
7996
+ #: includes/api/class-wc-rest-product-variations-controller.php:728 includes/api/v1/class-wc-rest-products-controller.php:2322
7997
+ msgid "Shows if the variation is on sale."
 
7998
  msgstr ""
7999
 
8000
+ #: includes/api/class-wc-rest-product-variations-controller.php:734
8001
+ msgid "Define if the variation is visible on the product's page."
 
8002
  msgstr ""
8003
 
8004
+ #: includes/api/class-wc-rest-product-variations-controller.php:740 includes/api/v1/class-wc-rest-products-controller.php:2328
8005
+ msgid "Shows if the variation can be bought."
8006
  msgstr ""
8007
 
8008
+ #: includes/api/class-wc-rest-product-variations-controller.php:746 includes/api/v1/class-wc-rest-products-controller.php:2339
8009
+ msgid "If the variation is virtual."
 
8010
  msgstr ""
8011
 
8012
+ #: includes/api/class-wc-rest-product-variations-controller.php:752 includes/api/v1/class-wc-rest-products-controller.php:2345
8013
+ msgid "If the variation is downloadable."
 
 
 
 
 
 
 
 
 
 
8014
  msgstr ""
8015
 
8016
+ #: includes/api/class-wc-rest-product-variations-controller.php:808 includes/api/v1/class-wc-rest-products-controller.php:2401
8017
+ msgid "Stock management at variation level."
8018
  msgstr ""
8019
 
8020
+ #: includes/api/class-wc-rest-product-variations-controller.php:819 includes/api/v1/class-wc-rest-products-controller.php:2412
8021
+ msgid "Controls whether or not the variation is listed as \"in stock\" or \"out of stock\" on the frontend."
8022
  msgstr ""
8023
 
8024
+ #: includes/api/class-wc-rest-product-variations-controller.php:838 includes/api/v1/class-wc-rest-products-controller.php:2431
8025
+ msgid "Shows if the variation is on backordered."
8026
  msgstr ""
8027
 
8028
+ #. translators: %s: weight unit
8029
+ #: includes/api/class-wc-rest-product-variations-controller.php:845 includes/api/v1/class-wc-rest-products-controller.php:2438
8030
+ #, php-format
8031
+ msgid "Variation weight (%s)."
8032
  msgstr ""
8033
 
8034
+ #: includes/api/class-wc-rest-product-variations-controller.php:850 includes/api/v1/class-wc-rest-products-controller.php:2443
8035
+ msgid "Variation dimensions."
8036
  msgstr ""
8037
 
8038
+ #. translators: %s: dimension unit
8039
+ #: includes/api/class-wc-rest-product-variations-controller.php:856 includes/api/v1/class-wc-rest-products-controller.php:2449
8040
+ #, php-format
8041
+ msgid "Variation length (%s)."
8042
  msgstr ""
8043
 
8044
+ #. translators: %s: dimension unit
8045
+ #: includes/api/class-wc-rest-product-variations-controller.php:862 includes/api/v1/class-wc-rest-products-controller.php:2455
8046
+ #, php-format
8047
+ msgid "Variation width (%s)."
8048
  msgstr ""
8049
 
8050
+ #. translators: %s: dimension unit
8051
+ #: includes/api/class-wc-rest-product-variations-controller.php:868 includes/api/v1/class-wc-rest-products-controller.php:2461
8052
+ #, php-format
8053
+ msgid "Variation height (%s)."
8054
  msgstr ""
8055
 
8056
+ #: includes/api/class-wc-rest-product-variations-controller.php:886 includes/api/v1/class-wc-rest-products-controller.php:2479
8057
+ msgid "Variation image data."
8058
  msgstr ""
8059
 
8060
+ #: includes/api/class-wc-rest-product-reviews-controller.php:159 includes/api/v1/class-wc-rest-product-reviews-controller.php:532
8061
+ msgid "The content of the review."
 
 
8062
  msgstr ""
8063
 
8064
+ #: includes/api/class-wc-rest-product-reviews-controller.php:164 includes/api/v1/class-wc-rest-product-reviews-controller.php:537
8065
+ msgid "The date the review was created, in the site's timezone."
8066
  msgstr ""
8067
 
8068
+ #: includes/api/class-wc-rest-product-reviews-controller.php:169
8069
+ msgid "The date the review was created, as GMT."
8070
  msgstr ""
8071
 
8072
+ #: includes/api/class-wc-rest-product-reviews-controller.php:174 includes/api/v1/class-wc-rest-product-reviews-controller.php:542
8073
+ msgid "Review rating (0 to 5)."
 
8074
  msgstr ""
8075
 
8076
+ #: includes/api/class-wc-rest-product-reviews-controller.php:179 includes/api/v1/class-wc-rest-product-reviews-controller.php:547
8077
+ msgid "Reviewer name."
 
 
 
 
8078
  msgstr ""
8079
 
8080
+ #: includes/api/class-wc-rest-product-reviews-controller.php:184 includes/api/v1/class-wc-rest-product-reviews-controller.php:552
8081
+ msgid "Reviewer email."
 
8082
  msgstr ""
8083
 
8084
+ #: includes/api/class-wc-rest-product-reviews-controller.php:189 includes/api/v1/class-wc-rest-product-reviews-controller.php:557
8085
+ msgid "Shows if the reviewer bought the product or not."
8086
  msgstr ""
8087
 
8088
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:76 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:232
8089
+ msgid "The delivery duration, in seconds."
8090
  msgstr ""
8091
 
8092
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:82 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:238
8093
+ msgid "A friendly summary of the response including the HTTP response code, message, and body."
8094
  msgstr ""
8095
 
8096
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:88 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:244
8097
+ msgid "The URL where the webhook was delivered."
8098
  msgstr ""
8099
 
8100
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:95 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:251
8101
+ msgid "Request headers."
8102
  msgstr ""
8103
 
8104
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:104 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:260
8105
+ msgid "Request body."
8106
  msgstr ""
8107
 
8108
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:110 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:266
8109
+ msgid "The HTTP response code from the receiving server."
 
 
 
 
 
8110
  msgstr ""
8111
 
8112
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:116 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:272
8113
+ msgid "The HTTP response message from the receiving server."
8114
  msgstr ""
8115
 
8116
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:122 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:278
8117
+ msgid "Array of the response headers from the receiving server."
8118
  msgstr ""
8119
 
8120
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:131 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:287
8121
+ msgid "The response body from the receiving server."
 
 
8122
  msgstr ""
8123
 
8124
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:137 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:293
8125
+ msgid "The date the webhook delivery was logged, in the site's timezone."
8126
  msgstr ""
8127
 
8128
+ #: includes/api/class-wc-rest-webhook-deliveries-controller.php:143
8129
+ msgid "The date the webhook delivery was logged, as GMT."
8130
  msgstr ""
8131
 
8132
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:354
8133
+ msgid "Payment gateway ID."
8134
  msgstr ""
8135
 
8136
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:360
8137
+ msgid "Payment gateway title on checkout."
8138
  msgstr ""
8139
 
8140
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:365
8141
+ msgid "Payment gateway description on checkout."
8142
  msgstr ""
8143
 
8144
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:370
8145
+ msgid "Payment gateway sort order."
 
 
 
 
8146
  msgstr ""
8147
 
8148
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:378
8149
+ msgid "Payment gateway enabled status."
8150
  msgstr ""
8151
 
8152
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:383
8153
+ msgid "Payment gateway method title."
 
8154
  msgstr ""
8155
 
8156
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:389
8157
+ msgid "Payment gateway method description."
8158
  msgstr ""
8159
 
8160
+ #: includes/api/class-wc-rest-payment-gateways-controller.php:395
8161
+ msgid "Payment gateway settings."
8162
  msgstr ""
8163
 
8164
+ #: includes/api/class-wc-rest-setting-options-controller.php:45 includes/api/class-wc-rest-setting-options-controller.php:62 includes/api/class-wc-rest-setting-options-controller.php:80
8165
+ msgid "Settings group ID."
 
 
 
 
 
 
8166
  msgstr ""
8167
 
8168
+ #: includes/api/class-wc-rest-setting-options-controller.php:159 includes/api/class-wc-rest-setting-options-controller.php:165
8169
+ msgid "Invalid setting group."
 
 
 
 
8170
  msgstr ""
8171
 
8172
+ #: includes/api/class-wc-rest-setting-options-controller.php:234 includes/api/class-wc-rest-setting-options-controller.php:246 includes/api/class-wc-rest-setting-options-controller.php:252
8173
+ msgid "Invalid setting."
8174
  msgstr ""
8175
 
8176
+ #: includes/api/class-wc-rest-setting-options-controller.php:391 includes/api/v1/class-wc-rest-product-reviews-controller.php:179
8177
+ msgid "Sorry, you cannot edit this resource."
8178
  msgstr ""
8179
 
8180
+ #: includes/api/class-wc-rest-setting-options-controller.php:571
8181
+ msgid "Array of options (key value pairs) for inputs such as select, multiselect, and radio buttons."
 
 
8182
  msgstr ""
8183
 
8184
+ #: includes/api/class-wc-rest-coupons-controller.php:271 includes/api/legacy/class-wc-rest-legacy-coupons-controller.php:113 includes/api/v1/class-wc-rest-coupons-controller.php:253
8185
+ msgid "The coupon code cannot be empty."
8186
  msgstr ""
8187
 
8188
+ #: includes/api/class-wc-rest-coupons-controller.php:286 includes/api/legacy/class-wc-rest-legacy-coupons-controller.php:129 includes/api/v1/class-wc-rest-coupons-controller.php:269 includes/api/legacy/v2/class-wc-api-coupons.php:233 includes/api/legacy/v2/class-wc-api-coupons.php:344 includes/api/legacy/v3/class-wc-api-coupons.php:231 includes/api/legacy/v3/class-wc-api-coupons.php:342
8189
+ msgid "The coupon code already exists"
 
8190
  msgstr ""
8191
 
8192
+ #: includes/api/class-wc-rest-coupons-controller.php:335 includes/api/v1/class-wc-rest-coupons-controller.php:415
8193
+ msgid "Unique identifier for the object."
 
8194
  msgstr ""
8195
 
8196
+ #: includes/api/class-wc-rest-coupons-controller.php:346 includes/api/v1/class-wc-rest-coupons-controller.php:450
8197
+ msgid "The amount of discount. Should always be numeric, even if setting a percentage."
 
8198
  msgstr ""
8199
 
8200
+ #: includes/api/class-wc-rest-coupons-controller.php:351 includes/api/v1/class-wc-rest-coupons-controller.php:426
8201
+ msgid "The date the coupon was created, in the site's timezone."
 
8202
  msgstr ""
8203
 
8204
+ #: includes/api/class-wc-rest-coupons-controller.php:357
8205
+ msgid "The date the coupon was created, as GMT."
8206
  msgstr ""
8207
 
8208
+ #: includes/api/class-wc-rest-coupons-controller.php:363 includes/api/v1/class-wc-rest-coupons-controller.php:432
8209
+ msgid "The date the coupon was last modified, in the site's timezone."
 
 
8210
  msgstr ""
8211
 
8212
+ #: includes/api/class-wc-rest-coupons-controller.php:369
8213
+ msgid "The date the coupon was last modified, as GMT."
 
8214
  msgstr ""
8215
 
8216
+ #: includes/api/class-wc-rest-coupons-controller.php:375 includes/api/v1/class-wc-rest-coupons-controller.php:443
8217
+ msgid "Determines the type of discount that will be applied."
 
8218
  msgstr ""
8219
 
8220
+ #: includes/api/class-wc-rest-coupons-controller.php:382 includes/api/v1/class-wc-rest-coupons-controller.php:438
8221
+ msgid "Coupon description."
 
8222
  msgstr ""
8223
 
8224
+ #: includes/api/class-wc-rest-coupons-controller.php:387
8225
+ msgid "The date the coupon expires, in the site's timezone."
 
8226
  msgstr ""
8227
 
8228
+ #: includes/api/class-wc-rest-coupons-controller.php:392
8229
+ msgid "The date the coupon expires, as GMT."
 
 
 
8230
  msgstr ""
8231
 
8232
+ #: includes/api/class-wc-rest-coupons-controller.php:397 includes/api/v1/class-wc-rest-coupons-controller.php:460
8233
+ msgid "Number of times the coupon has been used already."
 
 
 
 
8234
  msgstr ""
8235
 
8236
+ #: includes/api/class-wc-rest-coupons-controller.php:403 includes/api/v1/class-wc-rest-coupons-controller.php:466
8237
+ msgid "If true, the coupon can only be used individually. Other applied coupons will be removed from the cart."
 
 
 
8238
  msgstr ""
8239
 
8240
+ #: includes/api/class-wc-rest-coupons-controller.php:409 includes/api/v1/class-wc-rest-coupons-controller.php:472
8241
+ msgid "List of product IDs the coupon can be used on."
 
 
 
 
8242
  msgstr ""
8243
 
8244
+ #: includes/api/class-wc-rest-coupons-controller.php:417 includes/api/v1/class-wc-rest-coupons-controller.php:480
8245
+ msgid "List of product IDs the coupon cannot be used on."
 
 
 
 
8246
  msgstr ""
8247
 
8248
+ #: includes/api/class-wc-rest-coupons-controller.php:425 includes/api/v1/class-wc-rest-coupons-controller.php:488
8249
+ msgid "How many times the coupon can be used in total."
 
 
 
 
 
8250
  msgstr ""
8251
 
8252
+ #: includes/api/class-wc-rest-coupons-controller.php:430 includes/api/v1/class-wc-rest-coupons-controller.php:493
8253
+ msgid "How many times the coupon can be used per customer."
8254
  msgstr ""
8255
 
8256
+ #: includes/api/class-wc-rest-coupons-controller.php:435 includes/api/v1/class-wc-rest-coupons-controller.php:498
8257
+ msgid "Max number of items in the cart the coupon can be applied to."
8258
  msgstr ""
8259
 
8260
+ #: includes/api/class-wc-rest-coupons-controller.php:440 includes/api/v1/class-wc-rest-coupons-controller.php:503
8261
+ msgid "If true and if the free shipping method requires a coupon, this coupon will enable free shipping."
8262
  msgstr ""
8263
 
8264
+ #: includes/api/class-wc-rest-coupons-controller.php:446 includes/api/v1/class-wc-rest-coupons-controller.php:509
8265
+ msgid "List of category IDs the coupon applies to."
8266
  msgstr ""
8267
 
8268
+ #: includes/api/class-wc-rest-coupons-controller.php:454 includes/api/v1/class-wc-rest-coupons-controller.php:517
8269
+ msgid "List of category IDs the coupon does not apply to."
 
 
8270
  msgstr ""
8271
 
8272
+ #: includes/api/class-wc-rest-coupons-controller.php:462 includes/api/v1/class-wc-rest-coupons-controller.php:525
8273
+ msgid "If true, this coupon will not be applied to items that have sale prices."
8274
  msgstr ""
8275
 
8276
+ #: includes/api/class-wc-rest-coupons-controller.php:468 includes/api/v1/class-wc-rest-coupons-controller.php:531
8277
+ msgid "Minimum order amount that needs to be in the cart before coupon applies."
8278
  msgstr ""
8279
 
8280
+ #: includes/api/class-wc-rest-coupons-controller.php:473 includes/api/v1/class-wc-rest-coupons-controller.php:536
8281
+ msgid "Maximum order amount allowed when using the coupon."
8282
  msgstr ""
8283
 
8284
+ #: includes/api/class-wc-rest-coupons-controller.php:478 includes/api/v1/class-wc-rest-coupons-controller.php:541
8285
+ msgid "List of email addresses that can use this coupon."
8286
  msgstr ""
8287
 
8288
+ #: includes/api/class-wc-rest-coupons-controller.php:486 includes/api/v1/class-wc-rest-coupons-controller.php:549
8289
+ msgid "List of user IDs (or guest email addresses) that have used the coupon."
 
 
8290
  msgstr ""
8291
 
8292
+ #: includes/api/class-wc-rest-coupons-controller.php:534 includes/api/v1/class-wc-rest-coupons-controller.php:572
8293
+ msgid "Limit result set to resources with a specific code."
8294
  msgstr ""
8295
 
8296
+ #: includes/api/class-wc-rest-system-status-controller.php:104
8297
+ msgid "Environment."
8298
  msgstr ""
8299
 
8300
+ #: includes/api/class-wc-rest-system-status-controller.php:110
8301
+ msgid "Home URL."
8302
  msgstr ""
8303
 
8304
+ #: includes/api/class-wc-rest-system-status-controller.php:117
8305
+ msgid "Site URL."
8306
  msgstr ""
8307
 
8308
+ #: includes/api/class-wc-rest-system-status-controller.php:124
8309
+ msgid "WooCommerce version."
8310
  msgstr ""
8311
 
8312
+ #: includes/api/class-wc-rest-system-status-controller.php:130
8313
+ msgid "Log directory."
8314
  msgstr ""
8315
 
8316
+ #: includes/api/class-wc-rest-system-status-controller.php:136
8317
+ msgid "Is log directory writable?"
8318
  msgstr ""
8319
 
8320
+ #: includes/api/class-wc-rest-system-status-controller.php:142
8321
+ msgid "WordPress version."
8322
  msgstr ""
8323
 
8324
+ #: includes/api/class-wc-rest-system-status-controller.php:148
8325
+ msgid "Is WordPress multisite?"
 
 
 
8326
  msgstr ""
8327
 
8328
+ #: includes/api/class-wc-rest-system-status-controller.php:154
8329
+ msgid "WordPress memory limit."
8330
  msgstr ""
8331
 
8332
+ #: includes/api/class-wc-rest-system-status-controller.php:160
8333
+ msgid "Is WordPress debug mode active?"
 
 
 
8334
  msgstr ""
8335
 
8336
+ #: includes/api/class-wc-rest-system-status-controller.php:166
8337
+ msgid "Are WordPress cron jobs enabled?"
8338
  msgstr ""
8339
 
8340
+ #: includes/api/class-wc-rest-system-status-controller.php:172
8341
+ msgid "WordPress language."
8342
  msgstr ""
8343
 
8344
+ #: includes/api/class-wc-rest-system-status-controller.php:178
8345
+ msgid "Server info."
8346
  msgstr ""
8347
 
8348
+ #: includes/api/class-wc-rest-system-status-controller.php:184
8349
+ msgid "PHP version."
 
 
8350
  msgstr ""
8351
 
8352
+ #: includes/api/class-wc-rest-system-status-controller.php:190
8353
+ msgid "PHP post max size."
8354
  msgstr ""
8355
 
8356
+ #: includes/api/class-wc-rest-system-status-controller.php:196
8357
+ msgid "PHP max execution time."
 
 
 
8358
  msgstr ""
8359
 
8360
+ #: includes/api/class-wc-rest-system-status-controller.php:202
8361
+ msgid "PHP max input vars."
8362
  msgstr ""
8363
 
8364
+ #: includes/api/class-wc-rest-system-status-controller.php:208
8365
+ msgid "cURL version."
8366
  msgstr ""
8367
 
8368
+ #: includes/api/class-wc-rest-system-status-controller.php:214
8369
+ msgid "Is SUHOSIN installed?"
8370
  msgstr ""
8371
 
8372
+ #: includes/api/class-wc-rest-system-status-controller.php:220
8373
+ msgid "Max upload size."
 
 
 
8374
  msgstr ""
8375
 
8376
+ #: includes/api/class-wc-rest-system-status-controller.php:226
8377
+ msgid "MySQL version."
8378
  msgstr ""
8379
 
8380
+ #: includes/api/class-wc-rest-system-status-controller.php:232
8381
+ msgid "MySQL version string."
8382
  msgstr ""
8383
 
8384
+ #: includes/api/class-wc-rest-system-status-controller.php:238
8385
+ msgid "Default timezone."
 
 
 
 
8386
  msgstr ""
8387
 
8388
+ #: includes/api/class-wc-rest-system-status-controller.php:244
8389
+ msgid "Is fsockopen/cURL enabled?"
8390
  msgstr ""
8391
 
8392
+ #: includes/api/class-wc-rest-system-status-controller.php:250
8393
+ msgid "Is SoapClient class enabled?"
8394
  msgstr ""
8395
 
8396
+ #: includes/api/class-wc-rest-system-status-controller.php:256
8397
+ msgid "Is DomDocument class enabled?"
 
 
8398
  msgstr ""
8399
 
8400
+ #: includes/api/class-wc-rest-system-status-controller.php:262
8401
+ msgid "Is GZip enabled?"
8402
  msgstr ""
8403
 
8404
+ #: includes/api/class-wc-rest-system-status-controller.php:268
8405
+ msgid "Is mbstring enabled?"
8406
  msgstr ""
8407
 
8408
+ #: includes/api/class-wc-rest-system-status-controller.php:274
8409
+ msgid "Remote POST successful?"
 
 
8410
  msgstr ""
8411
 
8412
+ #: includes/api/class-wc-rest-system-status-controller.php:280
8413
+ msgid "Remote POST response."
8414
  msgstr ""
8415
 
8416
+ #: includes/api/class-wc-rest-system-status-controller.php:286
8417
+ msgid "Remote GET successful?"
 
8418
  msgstr ""
8419
 
8420
+ #: includes/api/class-wc-rest-system-status-controller.php:292
8421
+ msgid "Remote GET response."
8422
  msgstr ""
8423
 
8424
+ #: includes/api/class-wc-rest-system-status-controller.php:300
8425
+ msgid "Database."
8426
  msgstr ""
8427
 
8428
+ #: includes/api/class-wc-rest-system-status-controller.php:306
8429
+ msgid "WC database version."
8430
  msgstr ""
8431
 
8432
+ #: includes/api/class-wc-rest-system-status-controller.php:312
8433
+ msgid "Database prefix."
8434
  msgstr ""
8435
 
8436
+ #: includes/api/class-wc-rest-system-status-controller.php:318
8437
+ msgid "MaxMind GeoIP database."
8438
  msgstr ""
8439
 
8440
+ #: includes/api/class-wc-rest-system-status-controller.php:324
8441
+ msgid "Database tables."
8442
  msgstr ""
8443
 
8444
+ #: includes/api/class-wc-rest-system-status-controller.php:335
8445
+ msgid "Active plugins."
8446
  msgstr ""
8447
 
8448
+ #: includes/api/class-wc-rest-system-status-controller.php:344
8449
+ msgid "Theme."
8450
  msgstr ""
8451
 
8452
+ #: includes/api/class-wc-rest-system-status-controller.php:350
8453
+ msgid "Theme name."
 
 
 
8454
  msgstr ""
8455
 
8456
+ #: includes/api/class-wc-rest-system-status-controller.php:356
8457
+ msgid "Theme version."
 
 
8458
  msgstr ""
8459
 
8460
+ #: includes/api/class-wc-rest-system-status-controller.php:362
8461
+ msgid "Latest version of theme."
8462
  msgstr ""
8463
 
8464
+ #: includes/api/class-wc-rest-system-status-controller.php:368
8465
+ msgid "Theme author URL."
8466
  msgstr ""
8467
 
8468
+ #: includes/api/class-wc-rest-system-status-controller.php:375
8469
+ msgid "Is this theme a child theme?"
8470
  msgstr ""
8471
 
8472
+ #: includes/api/class-wc-rest-system-status-controller.php:381
8473
+ msgid "Does the theme declare WooCommerce support?"
8474
+ msgstr ""
8475
 
8476
+ #: includes/api/class-wc-rest-system-status-controller.php:387
8477
+ msgid "Does the theme have a woocommerce.php file?"
8478
  msgstr ""
8479
 
8480
+ #: includes/api/class-wc-rest-system-status-controller.php:393
8481
+ msgid "Does this theme have outdated templates?"
8482
  msgstr ""
8483
 
8484
+ #: includes/api/class-wc-rest-system-status-controller.php:399
8485
+ msgid "Template overrides."
 
 
 
8486
  msgstr ""
8487
 
8488
+ #: includes/api/class-wc-rest-system-status-controller.php:408
8489
+ msgid "Parent theme name."
8490
  msgstr ""
8491
 
8492
+ #: includes/api/class-wc-rest-system-status-controller.php:414
8493
+ msgid "Parent theme version."
8494
  msgstr ""
8495
 
8496
+ #: includes/api/class-wc-rest-system-status-controller.php:420
8497
+ msgid "Parent theme author URL."
8498
  msgstr ""
8499
 
8500
+ #: includes/api/class-wc-rest-system-status-controller.php:429
8501
+ msgid "Settings."
8502
  msgstr ""
8503
 
8504
+ #: includes/api/class-wc-rest-system-status-controller.php:435
8505
+ msgid "REST API enabled?"
8506
  msgstr ""
8507
 
8508
+ #: includes/api/class-wc-rest-system-status-controller.php:441
8509
+ msgid "SSL forced?"
 
 
8510
  msgstr ""
8511
 
8512
+ #: includes/api/class-wc-rest-system-status-controller.php:447
8513
+ msgid "Currency."
8514
  msgstr ""
8515
 
8516
+ #: includes/api/class-wc-rest-system-status-controller.php:453
8517
+ msgid "Currency symbol."
8518
  msgstr ""
8519
 
8520
+ #: includes/api/class-wc-rest-system-status-controller.php:459
8521
+ msgid "Currency position."
8522
  msgstr ""
8523
 
8524
+ #: includes/api/class-wc-rest-system-status-controller.php:465
8525
+ msgid "Thousand separator."
8526
  msgstr ""
8527
 
8528
+ #: includes/api/class-wc-rest-system-status-controller.php:471
8529
+ msgid "Decimal separator."
 
 
 
8530
  msgstr ""
8531
 
8532
+ #: includes/api/class-wc-rest-system-status-controller.php:477
8533
+ msgid "Number of decimals."
 
 
8534
  msgstr ""
8535
 
8536
+ #: includes/api/class-wc-rest-system-status-controller.php:483
8537
+ msgid "Geolocation enabled?"
 
 
 
 
8538
  msgstr ""
8539
 
8540
+ #: includes/api/class-wc-rest-system-status-controller.php:489
8541
+ msgid "Taxonomy terms for product/order statuses."
 
 
 
8542
  msgstr ""
8543
 
8544
+ #: includes/api/class-wc-rest-system-status-controller.php:498
8545
+ msgid "Terms in the product visibility taxonomy."
 
 
 
 
8546
  msgstr ""
8547
 
8548
+ #: includes/api/class-wc-rest-system-status-controller.php:509
8549
+ msgid "Security."
8550
  msgstr ""
8551
 
8552
+ #: includes/api/class-wc-rest-system-status-controller.php:515 includes/admin/views/html-admin-page-status-report.php:522
8553
+ msgid "Is the connection to your store secure?"
 
 
8554
  msgstr ""
8555
 
8556
+ #: includes/api/class-wc-rest-system-status-controller.php:521
8557
+ msgid "Hide errors from visitors?"
 
8558
  msgstr ""
8559
 
8560
+ #: includes/api/class-wc-rest-system-status-controller.php:529
8561
+ msgid "WooCommerce pages."
8562
  msgstr ""
8563
 
8564
+ #: includes/api/class-wc-rest-system-status-controller.php:976
8565
+ msgctxt "Page setting"
8566
+ msgid "Shop base"
8567
  msgstr ""
8568
 
8569
+ #: includes/api/class-wc-rest-system-status-controller.php:980
8570
+ msgctxt "Page setting"
8571
+ msgid "Cart"
8572
  msgstr ""
8573
 
8574
+ #: includes/api/class-wc-rest-system-status-controller.php:984
8575
+ msgctxt "Page setting"
8576
+ msgid "Checkout"
8577
  msgstr ""
8578
 
8579
+ #: includes/api/class-wc-rest-system-status-controller.php:988
8580
+ msgctxt "Page setting"
8581
+ msgid "My account"
8582
  msgstr ""
8583
 
8584
+ #: includes/api/class-wc-rest-system-status-controller.php:992
8585
+ msgctxt "Page setting"
8586
+ msgid "Terms and conditions"
8587
  msgstr ""
8588
 
8589
+ #. translators: 1: credit card type 2: last 4 digits 3: expiry month 4: expiry
8590
+ #. year
8591
+ #: includes/payment-tokens/class-wc-payment-token-echeck.php:50
8592
+ #, php-format
8593
+ msgid "eCheck ending in %1$s"
8594
  msgstr ""
8595
 
8596
+ #. translators: 1: credit card type 2: last 4 digits 3: expiry month 4: expiry
8597
+ #. year
8598
+ #: includes/payment-tokens/class-wc-payment-token-cc.php:53
8599
+ #, php-format
8600
+ msgid "%1$s ending in %2$s (expires %3$s/%4$s)"
8601
  msgstr ""
8602
 
8603
+ #: includes/legacy/abstract-wc-legacy-product.php:72
8604
+ msgid "Product properties should not be accessed directly."
8605
  msgstr ""
8606
 
8607
+ #. translators: %d: Setting value
8608
+ #: includes/customizer/class-wc-shop-customizer.php:97
8609
+ #, php-format
8610
+ msgid "The minimum allowed setting is %d"
8611
  msgstr ""
8612
 
8613
+ #. translators: %d: Setting value
8614
+ #: includes/customizer/class-wc-shop-customizer.php:99
8615
+ #, php-format
8616
+ msgid "The maximum allowed setting is %d"
8617
  msgstr ""
8618
 
8619
+ #: includes/customizer/class-wc-shop-customizer.php:271 includes/customizer/class-wc-shop-customizer.php:437
8620
+ msgid "Default sorting (custom ordering + name)"
8621
  msgstr ""
8622
 
8623
+ #: includes/customizer/class-wc-shop-customizer.php:272 includes/customizer/class-wc-shop-customizer.php:438
8624
+ msgid "Popularity (sales)"
8625
  msgstr ""
8626
 
8627
+ #: includes/customizer/class-wc-shop-customizer.php:274 includes/customizer/class-wc-shop-customizer.php:440
8628
+ msgid "Sort by most recent"
 
 
8629
  msgstr ""
8630
 
8631
+ #: includes/customizer/class-wc-shop-customizer.php:275 includes/customizer/class-wc-shop-customizer.php:441
8632
+ msgid "Sort by price (asc)"
 
 
 
 
 
 
8633
  msgstr ""
8634
 
8635
+ #: includes/customizer/class-wc-shop-customizer.php:276 includes/customizer/class-wc-shop-customizer.php:442
8636
+ msgid "Sort by price (desc)"
 
8637
  msgstr ""
8638
 
8639
+ #: includes/customizer/class-wc-shop-customizer.php:291
8640
+ msgid "Store Notice"
 
8641
  msgstr ""
8642
 
8643
+ #: includes/customizer/class-wc-shop-customizer.php:322
8644
+ msgid "Store notice"
 
 
8645
  msgstr ""
8646
 
8647
+ #: includes/customizer/class-wc-shop-customizer.php:323
8648
+ msgid "If enabled, this text will be shown site-wide. You can use it to show events or promotions to visitors!"
 
8649
  msgstr ""
8650
 
8651
+ #: includes/customizer/class-wc-shop-customizer.php:333
8652
+ msgid "Enable store notice"
 
8653
  msgstr ""
8654
 
8655
+ #: includes/customizer/class-wc-shop-customizer.php:360
8656
+ msgid "Product Catalog"
 
8657
  msgstr ""
8658
 
8659
+ #: includes/customizer/class-wc-shop-customizer.php:379
8660
+ msgid "Shop page display"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8661
  msgstr ""
8662
 
8663
+ #: includes/customizer/class-wc-shop-customizer.php:380
8664
+ msgid "Choose what to display on the main shop page."
 
 
 
 
8665
  msgstr ""
8666
 
8667
+ #: includes/customizer/class-wc-shop-customizer.php:385 includes/customizer/class-wc-shop-customizer.php:411
8668
+ msgid "Show products"
 
 
 
 
8669
  msgstr ""
8670
 
8671
+ #: includes/customizer/class-wc-shop-customizer.php:386
8672
+ msgid "Show categories"
 
8673
  msgstr ""
8674
 
8675
+ #: includes/customizer/class-wc-shop-customizer.php:387
8676
+ msgid "Show categories &amp; products"
 
8677
  msgstr ""
8678
 
8679
+ #: includes/customizer/class-wc-shop-customizer.php:405
8680
+ msgid "Category display"
 
8681
  msgstr ""
8682
 
8683
+ #: includes/customizer/class-wc-shop-customizer.php:406
8684
+ msgid "Choose what to display on product category pages."
 
 
8685
  msgstr ""
8686
 
8687
+ #: includes/customizer/class-wc-shop-customizer.php:412
8688
+ msgid "Show subcategories"
8689
  msgstr ""
8690
 
8691
+ #: includes/customizer/class-wc-shop-customizer.php:413
8692
+ msgid "Show subcategories &amp; products"
 
8693
  msgstr ""
8694
 
8695
+ #: includes/customizer/class-wc-shop-customizer.php:431
8696
+ msgid "Default product sorting"
 
8697
  msgstr ""
8698
 
8699
+ #: includes/customizer/class-wc-shop-customizer.php:432
8700
+ msgid "How should products be sorted in the catalog by default?"
 
8701
  msgstr ""
8702
 
8703
+ #: includes/customizer/class-wc-shop-customizer.php:466
8704
+ msgid "Products per row"
 
 
 
8705
  msgstr ""
8706
 
8707
+ #: includes/customizer/class-wc-shop-customizer.php:467
8708
+ msgid "How many products should be shown per row?"
8709
  msgstr ""
8710
 
8711
+ #: includes/customizer/class-wc-shop-customizer.php:496
8712
+ msgid "Rows per page"
 
 
 
 
8713
  msgstr ""
8714
 
8715
+ #: includes/customizer/class-wc-shop-customizer.php:497
8716
+ msgid "How many rows of products should be shown per page?"
8717
  msgstr ""
8718
 
8719
+ #: includes/customizer/class-wc-shop-customizer.php:519
8720
+ msgid "After publishing your changes, new image sizes will be generated automatically."
8721
  msgstr ""
8722
 
8723
+ #. translators: 1: tools URL 2: regen thumbs url
8724
+ #: includes/customizer/class-wc-shop-customizer.php:522
8725
+ #, php-format
8726
+ msgid "After publishing your changes, new image sizes may not be shown until you regenerate thumbnails. You can do this from the <a href=\"%1$s\" target=\"_blank\">tools section in WooCommerce</a> or by using a plugin such as <a href=\"%2$s\" target=\"_blank\">Regenerate Thumbnails</a>."
8727
+ msgstr ""
 
8728
 
8729
+ #. translators: %s: regen thumbs url
8730
+ #: includes/customizer/class-wc-shop-customizer.php:525
8731
+ #, php-format
8732
+ msgid "After publishing your changes, new image sizes may not be shown until you <a href=\"%s\" target=\"_blank\">Regenerate Thumbnails</a>."
8733
  msgstr ""
8734
 
8735
+ #: includes/customizer/class-wc-shop-customizer.php:531
8736
+ msgid "Product Images"
8737
  msgstr ""
8738
 
8739
+ #: includes/customizer/class-wc-shop-customizer.php:553
8740
+ msgid "Main image width"
 
8741
  msgstr ""
8742
 
8743
+ #: includes/customizer/class-wc-shop-customizer.php:554
8744
+ msgid "Image size used for the main image on single product pages. These images will remain uncropped."
8745
  msgstr ""
8746
 
8747
+ #: includes/customizer/class-wc-shop-customizer.php:581
8748
+ msgid "Thumbnail width"
8749
  msgstr ""
8750
 
8751
+ #: includes/customizer/class-wc-shop-customizer.php:582
8752
+ msgid "Image size used for products in the catalog."
 
 
8753
  msgstr ""
8754
 
8755
+ #: includes/customizer/class-wc-shop-customizer.php:639
8756
+ msgid "Thumbnail cropping"
8757
  msgstr ""
8758
 
8759
+ #: includes/customizer/class-wc-shop-customizer.php:642
8760
+ msgid "1:1"
8761
  msgstr ""
8762
 
8763
+ #: includes/customizer/class-wc-shop-customizer.php:643
8764
+ msgid "Images will be cropped into a square"
 
8765
  msgstr ""
8766
 
8767
+ #: includes/customizer/class-wc-shop-customizer.php:646
8768
+ msgid "Custom"
8769
  msgstr ""
8770
 
8771
+ #: includes/customizer/class-wc-shop-customizer.php:647
8772
+ msgid "Images will be cropped to a custom aspect ratio"
8773
  msgstr ""
8774
 
8775
+ #: includes/customizer/class-wc-shop-customizer.php:650
8776
+ msgid "Uncropped"
 
 
8777
  msgstr ""
8778
 
8779
+ #: includes/customizer/class-wc-shop-customizer.php:651
8780
+ msgid "Images will display using the aspect ratio in which they were uploaded"
8781
  msgstr ""
8782
 
8783
+ #: includes/customizer/class-wc-shop-customizer.php:671
8784
+ msgid "These options let you change the appearance of the WooCommerce checkout."
 
 
8785
  msgstr ""
8786
 
8787
+ #. Translators: %s field name.
8788
+ #: includes/customizer/class-wc-shop-customizer.php:695
8789
+ #, php-format
8790
+ msgid "%s field"
8791
  msgstr ""
8792
 
8793
+ #: includes/customizer/class-wc-shop-customizer.php:701 includes/gateways/paypal/includes/settings-paypal.php:122 includes/gateways/paypal/includes/settings-paypal.php:130 includes/gateways/paypal/includes/settings-paypal.php:144 includes/gateways/paypal/includes/settings-paypal.php:152 includes/gateways/paypal/includes/settings-paypal.php:160 includes/gateways/paypal/includes/settings-paypal.php:168 includes/gateways/paypal/includes/settings-paypal.php:176 includes/gateways/paypal/includes/settings-paypal.php:184 includes/admin/meta-boxes/views/html-order-items.php:379
8794
+ msgid "Optional"
 
 
8795
  msgstr ""
8796
 
8797
+ #: includes/customizer/class-wc-shop-customizer.php:702
8798
+ msgid "Required"
 
 
8799
  msgstr ""
8800
 
8801
+ #: includes/customizer/class-wc-shop-customizer.php:748
8802
+ msgid "Highlight required fields with an asterisk"
 
 
8803
  msgstr ""
8804
 
8805
+ #: includes/customizer/class-wc-shop-customizer.php:756 includes/customizer/class-wc-shop-customizer.php:799 includes/admin/settings/class-wc-settings-accounts.php:118
8806
+ msgid "Privacy policy"
 
 
8807
  msgstr ""
8808
 
8809
+ #: includes/customizer/class-wc-shop-customizer.php:757 includes/customizer/class-wc-shop-customizer.php:811 includes/admin/settings/class-wc-settings-advanced.php:108
8810
+ msgid "Terms and conditions"
 
8811
  msgstr ""
8812
 
8813
+ #: includes/customizer/class-wc-shop-customizer.php:772
8814
+ msgid "No page set"
8815
  msgstr ""
8816
 
8817
+ #. Translators: %s: page name.
8818
+ #: includes/customizer/class-wc-shop-customizer.php:787
8819
+ #, php-format
8820
+ msgid "%s page"
8821
  msgstr ""
8822
 
8823
+ #: includes/customizer/class-wc-shop-customizer.php:800 includes/admin/settings/class-wc-settings-accounts.php:147
8824
+ msgid "Optionally add some text about your store privacy policy to show during checkout."
 
 
8825
  msgstr ""
8826
 
8827
+ #: includes/customizer/class-wc-shop-customizer.php:812
8828
+ msgid "Optionally add some text for the terms checkbox that customers must accept."
 
 
8829
  msgstr ""
8830
 
8831
+ #: includes/emails/class-wc-email-customer-note.php:39
8832
+ msgid "Customer note"
 
 
 
 
 
 
8833
  msgstr ""
8834
 
8835
+ #: includes/emails/class-wc-email-customer-note.php:40
8836
+ msgid "Customer note emails are sent when you add a note to an order."
 
8837
  msgstr ""
8838
 
8839
+ #: includes/emails/class-wc-email-customer-note.php:63
8840
+ msgid "Note added to your {site_title} order from {order_date}"
 
 
 
8841
  msgstr ""
8842
 
8843
+ #: includes/emails/class-wc-email-customer-note.php:73
8844
+ msgid "A note has been added to your order"
 
 
 
 
 
 
8845
  msgstr ""
8846
 
8847
+ #: includes/emails/class-wc-email-customer-refunded-order.php:46
8848
+ msgid "Refunded order"
8849
  msgstr ""
8850
 
8851
+ #: includes/emails/class-wc-email-customer-refunded-order.php:47
8852
+ msgid "Order refunded emails are sent to customers when their orders are refunded."
8853
  msgstr ""
8854
 
8855
+ #: includes/emails/class-wc-email-customer-refunded-order.php:73
8856
+ msgid "Your {site_title} order from {order_date} has been partially refunded"
8857
  msgstr ""
8858
 
8859
+ #: includes/emails/class-wc-email-customer-refunded-order.php:75
8860
+ msgid "Your {site_title} order from {order_date} has been refunded"
 
 
 
 
 
8861
  msgstr ""
8862
 
8863
+ #: includes/emails/class-wc-email-customer-refunded-order.php:88
8864
+ msgid "Your order has been partially refunded"
 
8865
  msgstr ""
8866
 
8867
+ #: includes/emails/class-wc-email-customer-refunded-order.php:90
8868
+ msgid "Order {order_number} details"
 
8869
  msgstr ""
8870
 
8871
+ #: includes/emails/class-wc-email-customer-refunded-order.php:229 includes/emails/class-wc-email-cancelled-order.php:139 includes/emails/class-wc-email.php:602 includes/emails/class-wc-email-customer-completed-order.php:137 includes/emails/class-wc-email-new-order.php:144 includes/emails/class-wc-email-failed-order.php:139 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:97 includes/gateways/cheque/class-wc-gateway-cheque.php:58 includes/gateways/bacs/class-wc-gateway-bacs.php:82 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:190 includes/gateways/cod/class-wc-gateway-cod.php:108 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:19 includes/gateways/paypal/includes/settings-paypal.php:12
8872
+ msgid "Enable/Disable"
 
 
 
8873
  msgstr ""
8874
 
8875
+ #: includes/emails/class-wc-email-customer-refunded-order.php:231 includes/emails/class-wc-email-cancelled-order.php:141 includes/emails/class-wc-email.php:604 includes/emails/class-wc-email-customer-completed-order.php:139 includes/emails/class-wc-email-new-order.php:146 includes/emails/class-wc-email-failed-order.php:141
8876
+ msgid "Enable this email notification"
 
 
 
 
8877
  msgstr ""
8878
 
8879
+ #: includes/emails/class-wc-email-customer-refunded-order.php:235
8880
+ msgid "Full refund subject"
 
 
 
8881
  msgstr ""
8882
 
8883
+ #. translators: %s: list of placeholders
8884
+ #: includes/emails/class-wc-email-customer-refunded-order.php:239 includes/emails/class-wc-email-customer-refunded-order.php:248 includes/emails/class-wc-email-customer-refunded-order.php:257 includes/emails/class-wc-email-customer-refunded-order.php:266 includes/emails/class-wc-email-customer-invoice.php:184 includes/emails/class-wc-email-customer-invoice.php:193 includes/emails/class-wc-email-customer-invoice.php:202 includes/emails/class-wc-email-customer-invoice.php:211 includes/emails/class-wc-email-cancelled-order.php:158 includes/emails/class-wc-email-cancelled-order.php:167 includes/emails/class-wc-email.php:612 includes/emails/class-wc-email.php:621 includes/emails/class-wc-email-customer-completed-order.php:147 includes/emails/class-wc-email-customer-completed-order.php:156 includes/emails/class-wc-email-new-order.php:163 includes/emails/class-wc-email-new-order.php:172 includes/emails/class-wc-email-failed-order.php:158 includes/emails/class-wc-email-failed-order.php:167
8885
+ #: includes/admin/settings/class-wc-settings-emails.php:129
8886
+ #, php-format
8887
+ msgid "Available placeholders: %s"
8888
  msgstr ""
8889
 
8890
+ #: includes/emails/class-wc-email-customer-refunded-order.php:244
8891
+ msgid "Partial refund subject"
 
 
 
8892
  msgstr ""
8893
 
8894
+ #: includes/emails/class-wc-email-customer-refunded-order.php:253
8895
+ msgid "Full refund email heading"
8896
  msgstr ""
8897
 
8898
+ #: includes/emails/class-wc-email-customer-refunded-order.php:262
8899
+ msgid "Partial refund email heading"
8900
  msgstr ""
8901
 
8902
+ #: includes/emails/class-wc-email-customer-refunded-order.php:271 includes/emails/class-wc-email-customer-invoice.php:216 includes/emails/class-wc-email-cancelled-order.php:172 includes/emails/class-wc-email.php:626 includes/emails/class-wc-email-customer-completed-order.php:161 includes/emails/class-wc-email-new-order.php:177 includes/emails/class-wc-email-failed-order.php:172
8903
+ msgid "Email type"
8904
  msgstr ""
8905
 
8906
+ #: includes/emails/class-wc-email-customer-refunded-order.php:273 includes/emails/class-wc-email-customer-invoice.php:218 includes/emails/class-wc-email-cancelled-order.php:174 includes/emails/class-wc-email.php:628 includes/emails/class-wc-email-customer-completed-order.php:163 includes/emails/class-wc-email-new-order.php:179 includes/emails/class-wc-email-failed-order.php:174
8907
+ msgid "Choose which format of email to send."
 
 
 
8908
  msgstr ""
8909
 
8910
+ #: includes/emails/class-wc-email-customer-reset-password.php:63
8911
+ msgid "Customer \"reset password\" emails are sent when customers reset their passwords."
8912
+ msgstr ""
 
 
 
 
 
 
 
8913
 
8914
+ #: includes/emails/class-wc-email-customer-reset-password.php:82
8915
+ msgid "Password reset for {site_title}"
8916
  msgstr ""
8917
 
8918
+ #: includes/emails/class-wc-email-customer-reset-password.php:92
8919
+ msgid "Password reset instructions"
 
 
 
 
8920
  msgstr ""
8921
 
8922
+ #: includes/emails/class-wc-email-customer-invoice.php:32
8923
+ msgid "Customer invoice / Order details"
 
 
8924
  msgstr ""
8925
 
8926
+ #: includes/emails/class-wc-email-customer-invoice.php:33
8927
+ msgid "Customer invoice emails can be sent to customers containing their order information and payment links."
8928
  msgstr ""
8929
 
8930
+ #: includes/emails/class-wc-email-customer-invoice.php:57
8931
+ msgid "Your {site_title} order from {order_date}"
 
 
 
 
8932
  msgstr ""
8933
 
8934
+ #: includes/emails/class-wc-email-customer-invoice.php:59 includes/emails/class-wc-email-customer-invoice.php:74
8935
+ msgid "Invoice for order {order_number}"
8936
  msgstr ""
8937
 
8938
+ #: includes/emails/class-wc-email-customer-invoice.php:72
8939
+ msgid "Your order details"
8940
  msgstr ""
8941
 
8942
+ #: includes/emails/class-wc-email-customer-invoice.php:180 includes/emails/class-wc-email-cancelled-order.php:154 includes/emails/class-wc-email.php:608 includes/emails/class-wc-email-customer-completed-order.php:143 includes/emails/class-wc-email-new-order.php:159 includes/emails/class-wc-email-failed-order.php:154
8943
+ msgid "Subject"
8944
  msgstr ""
8945
 
8946
+ #: includes/emails/class-wc-email-customer-invoice.php:189 includes/emails/class-wc-email-cancelled-order.php:163 includes/emails/class-wc-email.php:617 includes/emails/class-wc-email-customer-completed-order.php:152 includes/emails/class-wc-email-new-order.php:168 includes/emails/class-wc-email-failed-order.php:163
8947
+ msgid "Email heading"
8948
  msgstr ""
8949
 
8950
+ #: includes/emails/class-wc-email-customer-invoice.php:198
8951
+ msgid "Subject (paid)"
8952
  msgstr ""
8953
 
8954
+ #: includes/emails/class-wc-email-customer-invoice.php:207
8955
+ msgid "Email heading (paid)"
8956
  msgstr ""
8957
 
8958
+ #: includes/emails/class-wc-email-customer-on-hold-order.php:32
8959
+ msgid "Order on-hold"
 
8960
  msgstr ""
8961
 
8962
+ #: includes/emails/class-wc-email-customer-on-hold-order.php:33
8963
+ msgid "This is an order notification sent to customers containing order details after an order is placed on-hold."
 
8964
  msgstr ""
8965
 
8966
+ #: includes/emails/class-wc-email-customer-on-hold-order.php:57 includes/emails/class-wc-email-customer-processing-order.php:59
8967
+ msgid "Your {site_title} order receipt from {order_date}"
8968
  msgstr ""
8969
 
8970
+ #: includes/emails/class-wc-email-customer-on-hold-order.php:67 includes/emails/class-wc-email-customer-processing-order.php:69
8971
+ msgid "Thank you for your order"
 
8972
  msgstr ""
8973
 
8974
+ #: includes/emails/class-wc-email-cancelled-order.php:31 includes/emails/class-wc-email-cancelled-order.php:69
8975
+ msgid "Cancelled order"
8976
  msgstr ""
8977
 
8978
+ #: includes/emails/class-wc-email-cancelled-order.php:32
8979
+ msgid "Cancelled order emails are sent to chosen recipient(s) when orders have been marked cancelled (if they were previously processing or on-hold)."
8980
  msgstr ""
8981
 
8982
+ #: includes/emails/class-wc-email-cancelled-order.php:59
8983
+ msgid "[{site_title}] Cancelled order ({order_number})"
8984
  msgstr ""
8985
 
8986
+ #: includes/emails/class-wc-email-cancelled-order.php:145 includes/emails/class-wc-email-new-order.php:150 includes/emails/class-wc-email-failed-order.php:145 includes/admin/settings/class-wc-settings-emails.php:265
8987
+ msgid "Recipient(s)"
 
 
8988
  msgstr ""
8989
 
8990
+ #. translators: %s: admin email
8991
+ #. translators: %s: WP admin email
8992
+ #. translators: %s: WP admin email
8993
+ #: includes/emails/class-wc-email-cancelled-order.php:148 includes/emails/class-wc-email-new-order.php:153 includes/emails/class-wc-email-failed-order.php:148
8994
+ #, php-format
8995
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
8996
  msgstr ""
8997
 
8998
+ #: includes/emails/class-wc-email-customer-processing-order.php:33
8999
+ msgid "Processing order"
9000
  msgstr ""
9001
 
9002
+ #: includes/emails/class-wc-email-customer-processing-order.php:34
9003
+ msgid "This is an order notification sent to customers containing order details after payment."
9004
  msgstr ""
9005
 
9006
+ #: includes/emails/class-wc-email.php:643
9007
+ msgid "Plain text"
9008
  msgstr ""
9009
 
9010
+ #: includes/emails/class-wc-email.php:646
9011
+ msgid "HTML"
9012
  msgstr ""
9013
 
9014
+ #: includes/emails/class-wc-email.php:647
9015
+ msgid "Multipart"
9016
  msgstr ""
9017
 
9018
+ #: includes/emails/class-wc-email.php:712
9019
+ msgid "Could not write to template file."
 
9020
  msgstr ""
9021
 
9022
+ #: includes/emails/class-wc-email.php:759
9023
+ msgid "Template file copied to theme."
 
9024
  msgstr ""
9025
 
9026
+ #: includes/emails/class-wc-email.php:790
9027
+ msgid "Template file deleted from theme."
9028
  msgstr ""
9029
 
9030
+ #: includes/emails/class-wc-email.php:809 includes/admin/class-wc-admin-status.php:271 includes/admin/class-wc-admin-status.php:290 includes/admin/class-wc-admin-status.php:306 includes/admin/class-wc-admin-notices.php:132
9031
+ msgid "Action failed. Please refresh the page and retry."
9032
  msgstr ""
9033
 
9034
+ #: includes/emails/class-wc-email.php:813 includes/admin/class-wc-admin-notices.php:136
9035
+ msgid "You don&#8217;t have permission to do this."
9036
  msgstr ""
9037
 
9038
+ #: includes/emails/class-wc-email.php:838
9039
+ msgid "Return to emails"
 
 
 
9040
  msgstr ""
9041
 
9042
+ #: includes/emails/class-wc-email.php:871
9043
+ msgid "HTML template"
 
 
 
 
 
 
 
 
 
 
 
9044
  msgstr ""
9045
 
9046
+ #: includes/emails/class-wc-email.php:872
9047
+ msgid "Plain text template"
9048
  msgstr ""
9049
 
9050
+ #: includes/emails/class-wc-email.php:896
9051
+ msgid "Delete template file"
 
9052
  msgstr ""
9053
 
9054
+ #. translators: %s: Path to template file
9055
+ #: includes/emails/class-wc-email.php:902
9056
+ #, php-format
9057
+ msgid "This template has been overridden by your theme and can be found in: %s."
9058
  msgstr ""
9059
 
9060
+ #: includes/emails/class-wc-email.php:935
9061
+ msgid "Copy file to theme"
 
 
 
 
 
 
9062
  msgstr ""
9063
 
9064
+ #. translators: 1: Path to template file 2: Path to theme folder
9065
+ #: includes/emails/class-wc-email.php:941
9066
+ #, php-format
9067
+ msgid "To override and edit this email template copy %1$s to your theme folder: %2$s."
9068
  msgstr ""
9069
 
9070
+ #: includes/emails/class-wc-email.php:949
9071
+ msgid "File was not found."
 
 
9072
  msgstr ""
9073
 
9074
+ #: includes/emails/class-wc-email.php:973
9075
+ msgid "View template"
 
 
9076
  msgstr ""
9077
 
9078
+ #: includes/emails/class-wc-email.php:974
9079
+ msgid "Hide template"
 
 
9080
  msgstr ""
9081
 
9082
+ #: includes/emails/class-wc-email.php:985
9083
+ msgid "Are you sure you want to delete this template file?"
 
 
9084
  msgstr ""
9085
 
9086
+ #: includes/emails/class-wc-email-customer-completed-order.php:32
9087
+ msgid "Completed order"
 
 
9088
  msgstr ""
9089
 
9090
+ #: includes/emails/class-wc-email-customer-completed-order.php:33
9091
+ msgid "Order complete emails are sent to customers when their orders are marked completed and usually indicate that their orders have been shipped."
 
 
 
 
 
 
 
 
9092
  msgstr ""
9093
 
9094
+ #: includes/emails/class-wc-email-customer-completed-order.php:83
9095
+ msgid "Your {site_title} order from {order_date} is complete"
 
 
 
 
 
 
 
 
9096
  msgstr ""
9097
 
9098
+ #: includes/emails/class-wc-email-customer-completed-order.php:93
9099
+ msgid "Your order is complete"
 
 
 
 
9100
  msgstr ""
9101
 
9102
+ #: includes/emails/class-wc-email-customer-new-account.php:60
9103
+ msgid "New account"
 
 
9104
  msgstr ""
9105
 
9106
+ #: includes/emails/class-wc-email-customer-new-account.php:61
9107
+ msgid "Customer \"new account\" emails are sent to the customer when a customer signs up via checkout or account pages."
 
 
 
9108
  msgstr ""
9109
 
9110
+ #: includes/emails/class-wc-email-customer-new-account.php:76
9111
+ msgid "Your account on {site_title}"
 
 
 
 
 
 
 
9112
  msgstr ""
9113
 
9114
+ #: includes/emails/class-wc-email-customer-new-account.php:86
9115
+ msgid "Welcome to {site_title}"
 
 
 
 
 
 
9116
  msgstr ""
9117
 
9118
+ #: includes/emails/class-wc-email-new-order.php:32
9119
+ msgid "New order emails are sent to chosen recipient(s) when a new order is received."
 
 
 
 
 
 
9120
  msgstr ""
9121
 
9122
+ #: includes/emails/class-wc-email-new-order.php:63
9123
+ msgid "[{site_title}] New customer order ({order_number}) - {order_date}"
 
 
 
 
 
 
9124
  msgstr ""
9125
 
9126
+ #: includes/emails/class-wc-email-new-order.php:73
9127
+ msgid "New customer order"
 
 
9128
  msgstr ""
9129
 
9130
+ #: includes/emails/class-wc-email-failed-order.php:31 includes/emails/class-wc-email-failed-order.php:69
9131
+ msgid "Failed order"
 
 
 
9132
  msgstr ""
9133
 
9134
+ #: includes/emails/class-wc-email-failed-order.php:32
9135
+ msgid "Failed order emails are sent to chosen recipient(s) when orders have been marked failed (if they were previously processing or on-hold)."
 
 
 
 
9136
  msgstr ""
9137
 
9138
+ #: includes/emails/class-wc-email-failed-order.php:59
9139
+ msgid "[{site_title}] Failed order ({order_number})"
 
 
 
 
9140
  msgstr ""
9141
 
9142
+ #: includes/admin/class-wc-admin-menus.php:61 includes/admin/views/html-admin-page-product-export.php:41 includes/admin/importers/class-wc-product-csv-importer-controller.php:682 includes/admin/meta-boxes/class-wc-meta-box-product-data.php:111
9143
+ msgid "Attributes"
 
 
 
 
 
9144
  msgstr ""
9145
 
9146
+ #: includes/admin/class-wc-admin-menus.php:69
9147
+ msgid "Reports"
 
 
 
9148
  msgstr ""
9149
 
9150
+ #: includes/admin/class-wc-admin-menus.php:71
9151
+ msgid "Sales reports"
 
 
 
 
 
 
 
 
9152
  msgstr ""
9153
 
9154
+ #: includes/admin/class-wc-admin-menus.php:79
9155
+ msgid "WooCommerce settings"
 
 
9156
  msgstr ""
9157
 
9158
+ #: includes/admin/class-wc-admin-menus.php:123 includes/admin/class-wc-admin-dashboard.php:44
9159
+ msgid "WooCommerce status"
 
 
 
 
 
9160
  msgstr ""
9161
 
9162
+ #. translators: %s: extensions count
9163
+ #: includes/admin/class-wc-admin-menus.php:132
9164
+ #, php-format
9165
+ msgid "Extensions %s"
9166
  msgstr ""
9167
 
9168
+ #: includes/admin/class-wc-admin-menus.php:133
9169
+ msgid "WooCommerce extensions"
 
 
 
9170
  msgstr ""
9171
 
9172
+ #: includes/admin/class-wc-admin-menus.php:280 includes/admin/class-wc-admin-customize.php:41
9173
+ msgid "WooCommerce endpoints"
 
 
 
9174
  msgstr ""
9175
 
9176
+ #: includes/admin/class-wc-admin-menus.php:328
9177
+ msgid "Add to menu"
 
 
 
9178
  msgstr ""
9179
 
9180
+ #: includes/admin/class-wc-admin-menus.php:362
9181
+ msgid "Visit Store"
 
 
 
9182
  msgstr ""
9183
 
9184
+ #: includes/admin/class-wc-admin-dashboard.php:42
9185
+ msgid "WooCommerce recent reviews"
 
 
9186
  msgstr ""
9187
 
9188
+ #: includes/admin/class-wc-admin-dashboard.php:56
9189
+ msgid "WooCommerce network orders"
 
 
 
9190
  msgstr ""
9191
 
9192
+ #. translators: %s: net sales
9193
+ #: includes/admin/class-wc-admin-dashboard.php:121
9194
+ #, php-format
9195
+ msgid "%s net sales this month"
9196
  msgstr ""
9197
 
9198
+ #. translators: 1: top seller product title 2: top seller quantity
9199
+ #: includes/admin/class-wc-admin-dashboard.php:138
9200
+ #, php-format
9201
+ msgid "%1$s top seller this month (sold %2$d)"
 
9202
  msgstr ""
9203
 
9204
+ #. translators: %s: order count
9205
+ #: includes/admin/class-wc-admin-dashboard.php:176
9206
+ #, php-format
9207
+ msgid "<strong>%s order</strong> awaiting processing"
9208
+ msgid_plural "<strong>%s orders</strong> awaiting processing"
9209
+ msgstr[0] ""
9210
+ msgstr[1] ""
9211
 
9212
+ #. translators: %s: order count
9213
+ #: includes/admin/class-wc-admin-dashboard.php:187
9214
+ #, php-format
9215
+ msgid "<strong>%s order</strong> on-hold"
9216
+ msgid_plural "<strong>%s orders</strong> on-hold"
9217
+ msgstr[0] ""
9218
+ msgstr[1] ""
9219
 
9220
+ #. translators: %s: order count
9221
+ #: includes/admin/class-wc-admin-dashboard.php:247
9222
+ #, php-format
9223
+ msgid "<strong>%s product</strong> low in stock"
9224
+ msgid_plural "<strong>%s products</strong> low in stock"
9225
+ msgstr[0] ""
9226
+ msgstr[1] ""
9227
 
9228
+ #. translators: %s: order count
9229
+ #: includes/admin/class-wc-admin-dashboard.php:258
9230
+ #, php-format
9231
+ msgid "<strong>%s product</strong> out of stock"
9232
+ msgid_plural "<strong>%s products</strong> out of stock"
9233
+ msgstr[0] ""
9234
+ msgstr[1] ""
9235
 
9236
+ #. translators: %s: rating
9237
+ #: includes/admin/class-wc-admin-dashboard.php:301
9238
+ #, php-format
9239
+ msgid "%s out of 5"
 
9240
  msgstr ""
9241
 
9242
+ #. translators: %s: review author
9243
+ #: includes/admin/class-wc-admin-dashboard.php:304
9244
+ #, php-format
9245
+ msgid "reviewed by %s"
 
9246
  msgstr ""
9247
 
9248
+ #: includes/admin/class-wc-admin-dashboard.php:310
9249
+ msgid "There are no product reviews yet."
 
 
 
9250
  msgstr ""
9251
 
9252
+ #: includes/admin/class-wc-admin-dashboard.php:339
9253
+ msgid "Loading network orders"
 
 
 
 
 
 
9254
  msgstr ""
9255
 
9256
+ #: includes/admin/class-wc-admin-customize.php:42
9257
+ msgid "WooCommerce endpoint"
 
9258
  msgstr ""
9259
 
9260
+ #: includes/admin/class-wc-admin-customize.php:87
9261
+ msgid "Custom Link"
9262
  msgstr ""
9263
 
9264
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:37
9265
+ msgid "No keys found."
 
 
 
 
 
 
9266
  msgstr ""
9267
 
9268
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:49 includes/admin/settings/views/html-keys-edit.php:77
9269
+ msgid "Consumer key ending in"
9270
  msgstr ""
9271
 
9272
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:50 includes/admin/reports/class-wc-report-downloads.php:88 includes/admin/reports/class-wc-report-downloads.php:218 includes/admin/settings/views/html-keys-edit.php:28
9273
+ msgid "User"
9274
  msgstr ""
9275
 
9276
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:51 includes/admin/settings/views/html-keys-edit.php:53
9277
+ msgid "Permissions"
9278
  msgstr ""
9279
 
9280
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:52 includes/admin/settings/views/html-keys-edit.php:85
9281
+ msgid "Last access"
9282
  msgstr ""
9283
 
9284
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:78
9285
+ msgid "API key"
9286
  msgstr ""
9287
 
9288
+ #. translators: %s: API key ID.
9289
+ #. translators: %s: webhook ID.
9290
+ #. translators: %d: product ID.
9291
+ #. translators: 1: ID who refunded
9292
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:88 includes/admin/class-wc-admin-webhooks-table-list.php:81 includes/admin/list-tables/class-wc-admin-list-table-products.php:73 includes/admin/meta-boxes/views/html-order-refund.php:25
9293
+ #, php-format
9294
+ msgid "ID: %d"
9295
  msgstr ""
9296
 
9297
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:89
9298
+ msgid "View/Edit"
9299
  msgstr ""
9300
 
9301
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:90
9302
+ msgid "Revoke API key"
9303
  msgstr ""
9304
 
9305
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:98 includes/admin/class-wc-admin-api-keys-table-list.php:187
9306
+ msgid "Revoke"
9307
  msgstr ""
9308
 
9309
+ #. translators: 1: last access date 2: last access time
9310
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:172 includes/admin/views/html-admin-page-status-logs.php:30 includes/admin/settings/views/html-keys-edit.php:92
9311
+ #, php-format
9312
+ msgid "%1$s at %2$s"
9313
  msgstr ""
9314
 
9315
+ #: includes/admin/class-wc-admin-api-keys-table-list.php:177 includes/admin/settings/views/html-keys-edit.php:96
9316
+ msgid "Unknown"
9317
  msgstr ""
9318
 
9319
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:37
9320
+ msgid "No webhooks found."
9321
  msgstr ""
9322
 
9323
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:50 includes/admin/settings/views/html-webhooks-edit.php:56
9324
+ msgid "Topic"
9325
  msgstr ""
9326
 
9327
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:51 includes/admin/settings/views/html-webhooks-edit.php:108
9328
+ msgid "Delivery URL"
 
 
 
9329
  msgstr ""
9330
 
9331
+ #. translators: %s: webhook name
9332
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:84
9333
+ #, php-format
9334
+ msgid "Delete \"%s\" permanently"
 
9335
  msgstr ""
9336
 
9337
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:92 includes/admin/class-wc-admin-webhooks-table-list.php:206 includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:63 includes/admin/settings/views/html-webhooks-edit.php:195
9338
+ msgid "Delete permanently"
 
 
 
9339
  msgstr ""
9340
 
9341
+ #. translators: %s: count
9342
+ #: includes/admin/class-wc-admin-webhooks-table-list.php:178
9343
+ #, php-format
9344
+ msgctxt "posts"
9345
+ msgid "All <span class=\"count\">(%s)</span>"
9346
+ msgid_plural "All <span class=\"count\">(%s)</span>"
9347
+ msgstr[0] ""
9348
+ msgstr[1] ""
9349
+
9350
+ #: includes/admin/class-wc-admin-pointers.php:60 includes/admin/class-wc-admin-post-types.php:685
9351
+ msgid "Product name"
9352
  msgstr ""
9353
 
9354
+ #: includes/admin/class-wc-admin-pointers.php:61
9355
+ msgid "Give your new product a name here. This is a required field and will be what your customers will see in your store."
 
 
9356
  msgstr ""
9357
 
9358
+ #: includes/admin/class-wc-admin-pointers.php:73
9359
+ msgid "Product description"
9360
  msgstr ""
9361
 
9362
+ #: includes/admin/class-wc-admin-pointers.php:74
9363
+ msgid "This is your products main body of content. Here you should describe your product in detail."
9364
  msgstr ""
9365
 
9366
+ #: includes/admin/class-wc-admin-pointers.php:89
9367
+ msgid "Choose product type"
9368
  msgstr ""
9369
 
9370
+ #: includes/admin/class-wc-admin-pointers.php:90
9371
+ msgid "Choose a type for this product. Simple is suitable for most physical goods and services (we recommend setting up a simple product for now)."
9372
  msgstr ""
9373
 
9374
+ #: includes/admin/class-wc-admin-pointers.php:91
9375
+ msgid "Variable is for more complex products such as t-shirts with multiple sizes."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9376
  msgstr ""
9377
 
9378
+ #: includes/admin/class-wc-admin-pointers.php:92
9379
+ msgid "Grouped products are for grouping several simple products into one."
9380
  msgstr ""
9381
 
9382
+ #: includes/admin/class-wc-admin-pointers.php:93
9383
+ msgid "Finally, external products are for linking off-site."
9384
  msgstr ""
9385
 
9386
+ #: includes/admin/class-wc-admin-pointers.php:108
9387
+ msgid "Virtual products"
 
 
 
 
9388
  msgstr ""
9389
 
9390
+ #: includes/admin/class-wc-admin-pointers.php:109
9391
+ msgid "Check the \"Virtual\" box if this is a non-physical item, for example a service, which does not need shipping."
 
9392
  msgstr ""
9393
 
9394
+ #: includes/admin/class-wc-admin-pointers.php:124 includes/admin/settings/class-wc-settings-products.php:43 includes/admin/settings/class-wc-settings-products.php:259 includes/admin/meta-boxes/views/html-product-data-variations.php:85
9395
+ msgid "Downloadable products"
9396
+ msgstr ""
 
 
 
9397
 
9398
+ #: includes/admin/class-wc-admin-pointers.php:125
9399
+ msgid "If purchasing this product gives a customer access to a downloadable file, e.g. software, check this box."
9400
+ msgstr ""
 
 
 
9401
 
9402
+ #: includes/admin/class-wc-admin-pointers.php:140
9403
+ msgid "Prices"
9404
+ msgstr ""
 
 
 
9405
 
9406
+ #: includes/admin/class-wc-admin-pointers.php:141
9407
+ msgid "Next you need to give your product a price."
9408
+ msgstr ""
 
 
 
9409
 
9410
+ #: includes/admin/class-wc-admin-pointers.php:156 includes/admin/class-wc-admin-meta-boxes.php:120
9411
+ msgid "Product short description"
9412
  msgstr ""
9413
 
9414
+ #: includes/admin/class-wc-admin-pointers.php:157
9415
+ msgid "Add a quick summary for your product here. This will appear on the product page under the product name."
 
9416
  msgstr ""
9417
 
9418
+ #: includes/admin/class-wc-admin-pointers.php:168
9419
+ msgid "Product images"
 
 
 
 
 
 
 
 
 
 
 
 
9420
  msgstr ""
9421
 
9422
+ #: includes/admin/class-wc-admin-pointers.php:169
9423
+ msgid "Upload or assign an image to your product here. This image will be shown in your store's catalog."
9424
  msgstr ""
9425
 
9426
+ #: includes/admin/class-wc-admin-pointers.php:181
9427
+ msgid "You can optionally \"tag\" your products here. Tags are a method of labeling your products to make them easier for customers to find."
 
 
9428
  msgstr ""
9429
 
9430
+ #: includes/admin/class-wc-admin-pointers.php:193
9431
+ msgid "Optionally assign categories to your products to make them easier to browse through and find in your store."
9432
  msgstr ""
9433
 
9434
+ #: includes/admin/class-wc-admin-pointers.php:204
9435
+ msgid "Publish your product!"
9436
  msgstr ""
9437
 
9438
+ #: includes/admin/class-wc-admin-pointers.php:205
9439
+ msgid "When you are finished editing your product, hit the \"Publish\" button to publish your product to your store."
 
 
9440
  msgstr ""
9441
 
9442
+ #: includes/admin/class-wc-admin-settings.php:79
9443
+ msgid "Your settings have been saved."
9444
  msgstr ""
9445
 
9446
+ #: includes/admin/class-wc-admin-settings.php:139
9447
+ msgid "The changes you made will be lost if you navigate away from this page."
9448
  msgstr ""
9449
 
9450
+ #: includes/admin/class-wc-admin-settings.php:518
9451
+ msgid "The settings of this image size have been disabled because its values are being overwritten by a filter."
9452
  msgstr ""
9453
 
9454
+ #: includes/admin/class-wc-admin-settings.php:530
9455
+ msgid "Hard crop?"
9456
  msgstr ""
9457
 
9458
+ #: includes/admin/class-wc-admin-settings.php:561
9459
+ msgid "Select a page&hellip;"
9460
  msgstr ""
9461
 
9462
+ #: includes/admin/class-wc-admin-settings.php:584 includes/admin/class-wc-admin-setup-wizard.php:396
9463
+ msgid "Choose a country&hellip;"
9464
  msgstr ""
9465
 
9466
+ #: includes/admin/class-wc-admin-settings.php:609
9467
+ msgid "Choose countries&hellip;"
9468
  msgstr ""
9469
 
9470
+ #: includes/admin/class-wc-admin-permalink-settings.php:44
9471
+ msgid "Product permalinks"
 
9472
  msgstr ""
9473
 
9474
+ #: includes/admin/class-wc-admin-permalink-settings.php:48
9475
+ msgid "Product category base"
 
 
9476
  msgstr ""
9477
 
9478
+ #: includes/admin/class-wc-admin-permalink-settings.php:55
9479
+ msgid "Product tag base"
9480
  msgstr ""
9481
 
9482
+ #: includes/admin/class-wc-admin-permalink-settings.php:62
9483
+ msgid "Product attribute base"
9484
  msgstr ""
9485
 
9486
+ #. translators: %s: Home URL
9487
+ #: includes/admin/class-wc-admin-permalink-settings.php:103
9488
+ #, php-format
9489
+ msgid "If you like, you may enter custom structures for your product URLs here. For example, using <code>shop</code> would make your product links like <code>%sshop/sample-product/</code>. This setting affects product URLs only, not things such as product categories."
9490
  msgstr ""
9491
 
9492
+ #: includes/admin/class-wc-admin-permalink-settings.php:106 includes/admin/class-wc-admin-permalink-settings.php:205
9493
+ msgctxt "default-slug"
9494
+ msgid "shop"
9495
  msgstr ""
9496
 
9497
+ #: includes/admin/class-wc-admin-permalink-settings.php:107
9498
+ msgctxt "default-slug"
9499
+ msgid "product"
9500
  msgstr ""
9501
 
9502
+ #: includes/admin/class-wc-admin-permalink-settings.php:118 includes/admin/class-wc-admin-taxonomies.php:99 includes/admin/class-wc-admin-taxonomies.php:207
9503
+ msgid "Default"
9504
  msgstr ""
9505
 
9506
+ #: includes/admin/class-wc-admin-permalink-settings.php:123
9507
+ msgid "Shop base"
9508
  msgstr ""
9509
 
9510
+ #: includes/admin/class-wc-admin-permalink-settings.php:127
9511
+ msgid "Shop base with category"
9512
  msgstr ""
9513
 
9514
+ #: includes/admin/class-wc-admin-permalink-settings.php:133
9515
+ msgid "Custom base"
 
 
9516
  msgstr ""
9517
 
9518
+ #: includes/admin/class-wc-admin-permalink-settings.php:135
9519
+ msgid "Enter a custom base to use. A base must be set or WordPress will use default instead."
9520
  msgstr ""
9521
 
9522
+ #: includes/admin/class-wc-admin-setup-wizard.php:155
9523
+ msgid "Store setup"
9524
  msgstr ""
9525
 
9526
+ #: includes/admin/class-wc-admin-setup-wizard.php:160 includes/admin/class-wc-admin-setup-wizard.php:1560
9527
+ msgid "Payment"
9528
  msgstr ""
9529
 
9530
+ #: includes/admin/class-wc-admin-setup-wizard.php:170
9531
+ msgid "Recommended"
9532
  msgstr ""
9533
 
9534
+ #: includes/admin/class-wc-admin-setup-wizard.php:175
9535
+ msgid "Activate"
 
 
9536
  msgstr ""
9537
 
9538
+ #: includes/admin/class-wc-admin-setup-wizard.php:180
9539
+ msgid "Ready!"
9540
  msgstr ""
9541
 
9542
+ #: includes/admin/class-wc-admin-setup-wizard.php:289
9543
+ msgid "WooCommerce &rsaquo; Setup Wizard"
9544
  msgstr ""
9545
 
9546
+ #: includes/admin/class-wc-admin-setup-wizard.php:305
9547
+ msgid "Not right now"
9548
  msgstr ""
9549
 
9550
+ #: includes/admin/class-wc-admin-setup-wizard.php:307
9551
+ msgid "Skip this step"
 
9552
  msgstr ""
9553
 
9554
+ #: includes/admin/class-wc-admin-setup-wizard.php:391
9555
+ msgid "The following wizard will help you configure your store and get you started quickly."
9556
  msgstr ""
9557
 
9558
+ #: includes/admin/class-wc-admin-setup-wizard.php:395
9559
+ msgid "Where is your store based?"
9560
  msgstr ""
9561
 
9562
+ #: includes/admin/class-wc-admin-setup-wizard.php:402
9563
+ msgid "Address"
9564
  msgstr ""
9565
 
9566
+ #: includes/admin/class-wc-admin-setup-wizard.php:417
9567
+ msgid "Choose a state&hellip;"
 
 
 
 
 
 
 
 
 
9568
  msgstr ""
9569
 
9570
+ #: includes/admin/class-wc-admin-setup-wizard.php:428
9571
+ msgid "What currency do you accept payments in?"
 
9572
  msgstr ""
9573
 
9574
+ #: includes/admin/class-wc-admin-setup-wizard.php:434 includes/admin/class-wc-admin-setup-wizard.php:437
9575
+ msgid "Choose a currency&hellip;"
9576
  msgstr ""
9577
 
9578
+ #. translators: 1: currency name 2: currency code
9579
+ #. translators: %1$s: tax item name %2$s: tax class name
9580
+ #: includes/admin/class-wc-admin-setup-wizard.php:445 includes/admin/views/html-bulk-edit-product.php:134 includes/admin/meta-boxes/views/html-order-items.php:41
9581
+ #, php-format
9582
+ msgid "%1$s (%2$s)"
9583
  msgstr ""
9584
 
9585
+ #. translators: 1: currency name 2: currency symbol, 3: currency code
9586
+ #: includes/admin/class-wc-admin-setup-wizard.php:448
9587
+ #, php-format
9588
+ msgid "%1$s (%2$s / %3$s)"
9589
  msgstr ""
9590
 
9591
+ #: includes/admin/class-wc-admin-setup-wizard.php:462
9592
+ msgid "What type of products do you plan to sell?"
9593
  msgstr ""
9594
 
9595
+ #: includes/admin/class-wc-admin-setup-wizard.php:465
9596
+ msgid "I plan to sell both physical and digital products"
9597
  msgstr ""
9598
 
9599
+ #: includes/admin/class-wc-admin-setup-wizard.php:466
9600
+ msgid "I plan to sell physical products"
9601
  msgstr ""
9602
 
9603
+ #: includes/admin/class-wc-admin-setup-wizard.php:467
9604
+ msgid "I plan to sell digital products"
9605
  msgstr ""
9606
 
9607
+ #: includes/admin/class-wc-admin-setup-wizard.php:479
9608
+ msgid "I will also be selling products or services in person."
9609
+ msgstr ""
 
 
 
9610
 
9611
+ #: includes/admin/class-wc-admin-setup-wizard.php:488
9612
+ msgid "Help WooCommerce improve with usage tracking."
9613
+ msgstr ""
 
 
 
9614
 
9615
+ #: includes/admin/class-wc-admin-setup-wizard.php:492
9616
+ msgid "Gathering usage data allows us to make WooCommerce better &mdash; your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. If you would rather opt-out, and do not check this box, we will not know this store exists and we will not collect any usage data."
9617
  msgstr ""
9618
 
9619
+ #: includes/admin/class-wc-admin-setup-wizard.php:493
9620
+ msgid "Read more about what we collect."
 
9621
  msgstr ""
9622
 
9623
+ #: includes/admin/class-wc-admin-setup-wizard.php:501
9624
+ msgid "Let's go!"
9625
  msgstr ""
9626
 
9627
+ #: includes/admin/class-wc-admin-setup-wizard.php:674 includes/admin/class-wc-admin-setup-wizard.php:709 includes/admin/class-wc-admin-setup-wizard.php:2056
9628
+ msgid "Jetpack"
 
 
 
 
 
 
9629
  msgstr ""
9630
 
9631
+ #: includes/admin/class-wc-admin-setup-wizard.php:688 includes/admin/class-wc-admin-setup-wizard.php:703 includes/admin/class-wc-admin-addons.php:370 includes/admin/class-wc-admin-addons.php:545
9632
+ msgid "WooCommerce Services"
 
 
 
9633
  msgstr ""
9634
 
9635
+ #: includes/admin/class-wc-admin-setup-wizard.php:722
9636
+ msgid "The following plugins will be installed and activated for you:"
 
9637
  msgstr ""
9638
 
9639
+ #: includes/admin/class-wc-admin-setup-wizard.php:758
9640
+ msgid "Live Rates"
 
 
 
9641
  msgstr ""
9642
 
9643
+ #: includes/admin/class-wc-admin-setup-wizard.php:759
9644
+ msgid "Powered by WooCommerce Services and Jetpack."
9645
  msgstr ""
9646
 
9647
+ #: includes/admin/class-wc-admin-setup-wizard.php:762
9648
+ msgid "Flat Rate"
 
9649
  msgstr ""
9650
 
9651
+ #: includes/admin/class-wc-admin-setup-wizard.php:763
9652
+ msgid "Set a fixed price to cover shipping costs."
 
9653
  msgstr ""
9654
 
9655
+ #: includes/admin/class-wc-admin-setup-wizard.php:767 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:97 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:63 includes/shipping/flat-rate/includes/settings-flat-rate.php:31 includes/admin/meta-boxes/views/html-order-items.php:31
9656
+ msgid "Cost"
9657
  msgstr ""
9658
 
9659
+ #: includes/admin/class-wc-admin-setup-wizard.php:768
9660
+ msgid "What would you like to charge for flat rate shipping?"
9661
  msgstr ""
9662
 
9663
+ #: includes/admin/class-wc-admin-setup-wizard.php:774 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:106
9664
+ msgid "Free Shipping"
 
 
 
 
 
 
9665
  msgstr ""
9666
 
9667
+ #: includes/admin/class-wc-admin-setup-wizard.php:775
9668
+ msgid "Don't charge for shipping."
9669
  msgstr ""
9670
 
9671
+ #: includes/admin/class-wc-admin-setup-wizard.php:864
9672
+ msgid "How would you like units on your store displayed?"
9673
  msgstr ""
9674
 
9675
+ #. translators: %1$s: country name including the 'the' prefix, %2$s: shipping
9676
+ #. carrier name
9677
+ #: includes/admin/class-wc-admin-setup-wizard.php:868
9678
+ #, php-format
9679
+ msgid "You're all set up to ship anywhere in %1$s, and outside of it. We recommend using <strong>live rates</strong> (which are powered by our WooCommerce Services plugin and Jetpack) to get accurate %2$s shipping prices to cover the cost of order fulfillment."
9680
  msgstr ""
9681
 
9682
+ #. translators: %s: country name including the 'the' prefix if needed
9683
+ #: includes/admin/class-wc-admin-setup-wizard.php:875
9684
+ #, php-format
9685
+ msgid "You can choose which countries you'll be shipping to and with which methods. To get started, we've set you up with shipping inside and outside of %s."
9686
  msgstr ""
9687
 
9688
+ #: includes/admin/class-wc-admin-setup-wizard.php:888
9689
+ msgid "Shipping Zone"
9690
  msgstr ""
9691
 
9692
+ #: includes/admin/class-wc-admin-setup-wizard.php:891
9693
+ msgid "Shipping Method"
9694
  msgstr ""
9695
 
9696
+ #: includes/admin/class-wc-admin-setup-wizard.php:910 includes/data-stores/class-wc-shipping-zone-data-store.php:87 includes/admin/settings/views/html-admin-page-shipping-zones.php:26
9697
+ msgid "Locations not covered by your other zones"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9698
  msgstr ""
9699
 
9700
+ #: includes/admin/class-wc-admin-setup-wizard.php:932
9701
+ msgid "<strong>Weight unit</strong>—used to calculate shipping rates, and more."
9702
  msgstr ""
9703
 
9704
+ #: includes/admin/class-wc-admin-setup-wizard.php:940 includes/admin/settings/class-wc-settings-products.php:371
9705
+ msgid "kg"
9706
+ msgstr ""
 
 
 
9707
 
9708
+ #: includes/admin/class-wc-admin-setup-wizard.php:941 includes/admin/settings/class-wc-settings-products.php:372
9709
+ msgid "g"
9710
+ msgstr ""
 
 
 
9711
 
9712
+ #: includes/admin/class-wc-admin-setup-wizard.php:942 includes/admin/settings/class-wc-settings-products.php:373
9713
+ msgid "lbs"
 
 
 
 
9714
  msgstr ""
9715
 
9716
+ #: includes/admin/class-wc-admin-setup-wizard.php:943 includes/admin/settings/class-wc-settings-products.php:374
9717
+ msgid "oz"
9718
  msgstr ""
9719
 
9720
+ #: includes/admin/class-wc-admin-setup-wizard.php:952
9721
+ msgid "<strong>Dimension unit</strong>—helps for accurate package selection."
9722
  msgstr ""
9723
 
9724
+ #: includes/admin/class-wc-admin-setup-wizard.php:960 includes/admin/settings/class-wc-settings-products.php:388 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:237
9725
+ msgid "m"
9726
  msgstr ""
9727
 
9728
+ #: includes/admin/class-wc-admin-setup-wizard.php:961 includes/admin/settings/class-wc-settings-products.php:389
9729
+ msgid "cm"
9730
  msgstr ""
9731
 
9732
+ #: includes/admin/class-wc-admin-setup-wizard.php:962 includes/admin/settings/class-wc-settings-products.php:390
9733
+ msgid "mm"
 
 
 
 
 
 
9734
  msgstr ""
9735
 
9736
+ #: includes/admin/class-wc-admin-setup-wizard.php:963 includes/admin/settings/class-wc-settings-products.php:391
9737
+ msgid "in"
 
 
 
 
 
9738
  msgstr ""
9739
 
9740
+ #: includes/admin/class-wc-admin-setup-wizard.php:964 includes/admin/settings/class-wc-settings-products.php:392
9741
+ msgid "yd"
 
 
9742
  msgstr ""
9743
 
9744
+ #: includes/admin/class-wc-admin-setup-wizard.php:971 includes/admin/class-wc-admin-setup-wizard.php:1618 includes/admin/class-wc-admin-setup-wizard.php:1618 includes/admin/class-wc-admin-setup-wizard.php:1778 includes/admin/class-wc-admin-setup-wizard.php:1778 includes/admin/importers/views/html-product-csv-import-form.php:101 includes/admin/importers/views/html-product-csv-import-form.php:101
9745
+ msgid "Continue"
 
 
 
9746
  msgstr ""
9747
 
9748
+ #. translators: %s: URL
9749
+ #: includes/admin/class-wc-admin-setup-wizard.php:1198
9750
+ #, php-format
9751
+ msgid "Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay. <a href=\"%s\" target=\"_blank\">Learn more</a>."
9752
  msgstr ""
9753
 
9754
+ #. translators: %s: URL
9755
+ #: includes/admin/class-wc-admin-setup-wizard.php:1203
9756
+ #, php-format
9757
+ msgid "Safe and secure payments using credit cards or your customer's PayPal account. <a href=\"%s\" target=\"_blank\">Learn more</a>."
9758
  msgstr ""
9759
 
9760
+ #. translators: %s: URL
9761
+ #: includes/admin/class-wc-admin-setup-wizard.php:1208
9762
+ #, php-format
9763
+ msgid "Full checkout experience with pay now, pay later and slice it. No credit card numbers, no passwords, no worries. <a href=\"%s\" target=\"_blank\">Learn more about Klarna</a>."
9764
  msgstr ""
9765
 
9766
+ #. translators: %s: URL
9767
+ #: includes/admin/class-wc-admin-setup-wizard.php:1213
9768
+ #, php-format
9769
+ msgid "Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries. <a href=\"%s\" target=\"_blank\">Learn more about Klarna</a>."
9770
  msgstr ""
9771
 
9772
+ #. translators: %s: URL
9773
+ #: includes/admin/class-wc-admin-setup-wizard.php:1218
9774
+ #, php-format
9775
+ msgid "Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place. <a href=\"%s\" target=\"_blank\">Learn more about Square</a>."
9776
  msgstr ""
9777
 
9778
+ #: includes/admin/class-wc-admin-setup-wizard.php:1224
9779
+ msgid "WooCommerce Stripe Gateway"
 
9780
  msgstr ""
9781
 
9782
+ #: includes/admin/class-wc-admin-setup-wizard.php:1231
9783
+ msgid "Create a new Stripe account for me"
 
 
9784
  msgstr ""
9785
 
9786
+ #: includes/admin/class-wc-admin-setup-wizard.php:1239
9787
+ msgid "Stripe email address:"
 
 
9788
  msgstr ""
9789
 
9790
+ #: includes/admin/class-wc-admin-setup-wizard.php:1242
9791
+ msgid "Stripe email address"
9792
  msgstr ""
9793
 
9794
+ #: includes/admin/class-wc-admin-setup-wizard.php:1243
9795
+ msgid "Enter your email address and we'll handle account creation. Powered by WooCommerce Services and Jetpack."
9796
  msgstr ""
9797
 
9798
+ #: includes/admin/class-wc-admin-setup-wizard.php:1249
9799
+ msgid "WooCommerce PayPal Express Checkout Gateway"
 
 
 
 
9800
  msgstr ""
9801
 
9802
+ #: includes/admin/class-wc-admin-setup-wizard.php:1257
9803
+ msgid "Accept payments without linking a PayPal account"
9804
  msgstr ""
9805
 
9806
+ #: includes/admin/class-wc-admin-setup-wizard.php:1265
9807
+ msgid "Direct payments to email address:"
9808
  msgstr ""
9809
 
9810
+ #: includes/admin/class-wc-admin-setup-wizard.php:1268
9811
+ msgid "Email address to receive payments"
9812
  msgstr ""
9813
 
9814
+ #: includes/admin/class-wc-admin-setup-wizard.php:1269
9815
+ msgid "Enter your email address and we'll authenticate payments for you. Powered by WooCommerce Services and Jetpack."
9816
  msgstr ""
9817
 
9818
+ #: includes/admin/class-wc-admin-setup-wizard.php:1275
9819
+ msgid "PayPal Standard"
9820
  msgstr ""
9821
 
9822
+ #: includes/admin/class-wc-admin-setup-wizard.php:1276
9823
+ msgid "Accept payments via PayPal using account balance or credit card."
 
 
 
 
9824
  msgstr ""
9825
 
9826
+ #: includes/admin/class-wc-admin-setup-wizard.php:1280
9827
+ msgid "PayPal email address:"
9828
  msgstr ""
9829
 
9830
+ #: includes/admin/class-wc-admin-setup-wizard.php:1283
9831
+ msgid "PayPal email address"
9832
  msgstr ""
9833
 
9834
+ #: includes/admin/class-wc-admin-setup-wizard.php:1289
9835
+ msgid "Klarna Checkout for WooCommerce"
9836
  msgstr ""
9837
 
9838
+ #: includes/admin/class-wc-admin-setup-wizard.php:1297
9839
+ msgid "Klarna Payments for WooCommerce"
 
 
9840
  msgstr ""
9841
 
9842
+ #: includes/admin/class-wc-admin-setup-wizard.php:1305
9843
+ msgid "WooCommerce Square"
9844
  msgstr ""
9845
 
9846
+ #: includes/admin/class-wc-admin-setup-wizard.php:1313
9847
+ msgid "WooCommerce eWAY Gateway"
9848
  msgstr ""
9849
 
9850
+ #: includes/admin/class-wc-admin-setup-wizard.php:1314
9851
+ msgid "The eWAY extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment."
 
 
9852
  msgstr ""
9853
 
9854
+ #: includes/admin/class-wc-admin-setup-wizard.php:1321
9855
+ msgid "WooCommerce PayFast Gateway"
9856
  msgstr ""
9857
 
9858
+ #: includes/admin/class-wc-admin-setup-wizard.php:1322
9859
+ msgid "The PayFast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs."
 
 
9860
  msgstr ""
9861
 
9862
+ #: includes/admin/class-wc-admin-setup-wizard.php:1407 includes/gateways/cheque/class-wc-gateway-cheque.php:31 includes/gateways/cheque/class-wc-gateway-cheque.php:67
9863
+ msgctxt "Check payment method"
9864
+ msgid "Check payments"
9865
  msgstr ""
9866
 
9867
+ #: includes/admin/class-wc-admin-setup-wizard.php:1408
9868
+ msgid "A simple offline gateway that lets you accept a check as method of payment."
 
 
 
 
 
 
 
 
 
 
 
 
 
9869
  msgstr ""
9870
 
9871
+ #: includes/admin/class-wc-admin-setup-wizard.php:1413
9872
+ msgid "Bank transfer (BACS) payments"
 
 
9873
  msgstr ""
9874
 
9875
+ #: includes/admin/class-wc-admin-setup-wizard.php:1414
9876
+ msgid "A simple offline gateway that lets you accept BACS payment."
9877
  msgstr ""
9878
 
9879
+ #: includes/admin/class-wc-admin-setup-wizard.php:1419 includes/gateways/cod/class-wc-gateway-cod.php:56 includes/gateways/cod/class-wc-gateway-cod.php:118
9880
+ msgid "Cash on delivery"
 
 
9881
  msgstr ""
9882
 
9883
+ #: includes/admin/class-wc-admin-setup-wizard.php:1420
9884
+ msgid "A simple offline gateway that lets you accept cash on delivery."
9885
  msgstr ""
9886
 
9887
+ #. translators: %s: Link
9888
+ #: includes/admin/class-wc-admin-setup-wizard.php:1567
9889
+ #, php-format
9890
+ msgid "WooCommerce can accept both online and offline payments. <a href=\"%s\" target=\"_blank\">Additional payment methods</a> can be installed later."
9891
  msgstr ""
9892
 
9893
+ #: includes/admin/class-wc-admin-setup-wizard.php:1600
9894
+ msgid "Offline Payments"
9895
  msgstr ""
9896
 
9897
+ #: includes/admin/class-wc-admin-setup-wizard.php:1603
9898
+ msgid "Collect payments from customers offline."
9899
  msgstr ""
9900
 
9901
+ #: includes/admin/class-wc-admin-setup-wizard.php:1720
9902
+ msgid "Recommended for All WooCommerce Stores"
 
 
9903
  msgstr ""
9904
 
9905
+ #: includes/admin/class-wc-admin-setup-wizard.php:1730
9906
+ msgid "Select from the list below to enable automated taxes and MailChimp’s best-in-class email services — and design your store with our official, free WooCommerce theme."
9907
  msgstr ""
9908
 
9909
+ #: includes/admin/class-wc-admin-setup-wizard.php:1732
9910
+ msgid "Enhance your store with these recommended features."
9911
  msgstr ""
9912
 
9913
+ #: includes/admin/class-wc-admin-setup-wizard.php:1743
9914
+ msgid "Storefront Theme"
 
 
 
 
9915
  msgstr ""
9916
 
9917
+ #: includes/admin/class-wc-admin-setup-wizard.php:1744
9918
+ #, php-format
9919
+ msgid "Design your store with deep WooCommerce integration. If toggled on, we’ll install <a href=\"https://woocommerce.com/storefront/\" target=\"_blank\" rel=\"noopener noreferrer\">Storefront</a>, and your current theme <em>%s</em> will be deactivated."
9920
  msgstr ""
9921
 
9922
+ #: includes/admin/class-wc-admin-setup-wizard.php:1749
9923
+ msgid "Storefront icon"
 
9924
  msgstr ""
9925
 
9926
+ #: includes/admin/class-wc-admin-setup-wizard.php:1756
9927
+ msgid "Automated Taxes"
9928
  msgstr ""
9929
 
9930
+ #: includes/admin/class-wc-admin-setup-wizard.php:1757
9931
+ msgid "Save time and errors with automated tax calculation and collection at checkout. Powered by WooCommerce Services and Jetpack."
9932
  msgstr ""
9933
 
9934
+ #: includes/admin/class-wc-admin-setup-wizard.php:1759
9935
+ msgid "automated taxes icon"
9936
  msgstr ""
9937
 
9938
+ #: includes/admin/class-wc-admin-setup-wizard.php:1767
9939
+ msgid "MailChimp"
 
 
9940
  msgstr ""
9941
 
9942
+ #: includes/admin/class-wc-admin-setup-wizard.php:1768
9943
+ msgid "Join the 16 million customers who use MailChimp. Sync list and store data to send automated emails, and targeted campaigns."
9944
  msgstr ""
9945
 
9946
+ #: includes/admin/class-wc-admin-setup-wizard.php:1770
9947
+ msgid "MailChimp icon"
 
 
9948
  msgstr ""
9949
 
9950
+ #: includes/admin/class-wc-admin-setup-wizard.php:1771 includes/admin/class-wc-admin-setup-wizard.php:1813
9951
+ msgid "MailChimp for WooCommerce"
 
 
9952
  msgstr ""
9953
 
9954
+ #: includes/admin/class-wc-admin-setup-wizard.php:1864
9955
+ msgid "payment setup, automated taxes, live rates and discounted shipping labels"
9956
  msgstr ""
9957
 
9958
+ #: includes/admin/class-wc-admin-setup-wizard.php:1866
9959
+ msgid "payment setup and automated taxes"
9960
  msgstr ""
9961
 
9962
+ #: includes/admin/class-wc-admin-setup-wizard.php:1868
9963
+ msgid "payment setup, live rates and discounted shipping labels"
9964
  msgstr ""
9965
 
9966
+ #: includes/admin/class-wc-admin-setup-wizard.php:1870
9967
+ msgid "payment setup"
9968
  msgstr ""
9969
 
9970
+ #: includes/admin/class-wc-admin-setup-wizard.php:1872
9971
+ msgid "automated taxes, live rates and discounted shipping labels"
 
9972
  msgstr ""
9973
 
9974
+ #: includes/admin/class-wc-admin-setup-wizard.php:1874
9975
+ msgid "automated taxes"
9976
  msgstr ""
9977
 
9978
+ #: includes/admin/class-wc-admin-setup-wizard.php:1876
9979
+ msgid "live rates and discounted shipping labels"
9980
  msgstr ""
9981
 
9982
+ #: includes/admin/class-wc-admin-setup-wizard.php:1893
9983
+ msgid "Sorry, we couldn't connect your store to Jetpack"
9984
  msgstr ""
9985
 
9986
+ #. translators: %s: list of features, potentially comma separated
9987
+ #: includes/admin/class-wc-admin-setup-wizard.php:1905
9988
+ #, php-format
9989
+ msgid "Your store is almost ready! To activate services like %s, just connect with Jetpack."
9990
  msgstr ""
9991
 
9992
+ #: includes/admin/class-wc-admin-setup-wizard.php:1907
9993
+ #, php-format
9994
+ msgid "Thanks for using Jetpack! Your store is almost ready: to activate services like %s, just connect your store."
9995
  msgstr ""
9996
 
9997
+ #: includes/admin/class-wc-admin-setup-wizard.php:1914
9998
+ msgid "Connect your store to Jetpack"
 
9999
  msgstr ""
10000
 
10001
+ #: includes/admin/class-wc-admin-setup-wizard.php:1915
10002
+ msgid "Connect your store to Jetpack to enable extra features"
 
10003
  msgstr ""
10004
 
10005
+ #: includes/admin/class-wc-admin-setup-wizard.php:1916
10006
+ msgid "Continue with Jetpack"
10007
  msgstr ""
10008
 
10009
+ #: includes/admin/class-wc-admin-setup-wizard.php:1918
10010
+ msgid "Connect your store to activate WooCommerce Services"
10011
  msgstr ""
10012
 
10013
+ #: includes/admin/class-wc-admin-setup-wizard.php:1919
10014
+ msgid "Continue with WooCommerce Services"
10015
  msgstr ""
10016
 
10017
+ #: includes/admin/class-wc-admin-setup-wizard.php:1955
10018
+ msgid "Finish setting up your store"
10019
  msgstr ""
10020
 
10021
+ #: includes/admin/class-wc-admin-setup-wizard.php:1962
10022
+ #, php-format
10023
+ msgid "By connecting your site you agree to our fascinating <a href=\"%1$s\" target=\"_blank\">Terms of Service</a> and to <a href=\"%2$s\" target=\"_blank\">share details</a> with WordPress.com"
10024
  msgstr ""
10025
 
10026
+ #: includes/admin/class-wc-admin-setup-wizard.php:1979
10027
+ msgid "Bonus reasons you'll love Jetpack"
10028
  msgstr ""
10029
 
10030
+ #: includes/admin/class-wc-admin-setup-wizard.php:1980
10031
+ msgid "Reasons you'll love Jetpack"
10032
  msgstr ""
10033
 
10034
+ #: includes/admin/class-wc-admin-setup-wizard.php:1987
10035
+ msgid "Better security"
 
10036
  msgstr ""
10037
 
10038
+ #: includes/admin/class-wc-admin-setup-wizard.php:1990
10039
+ msgid "Protect your store from unauthorized access."
10040
  msgstr ""
10041
 
10042
+ #: includes/admin/class-wc-admin-setup-wizard.php:1995
10043
+ msgid "Store stats"
 
10044
  msgstr ""
10045
 
10046
+ #: includes/admin/class-wc-admin-setup-wizard.php:1998
10047
+ msgid "Get insights on how your store is doing, including total sales, top products, and more."
10048
  msgstr ""
10049
 
10050
+ #: includes/admin/class-wc-admin-setup-wizard.php:2003
10051
+ msgid "Store monitoring"
 
 
10052
  msgstr ""
10053
 
10054
+ #: includes/admin/class-wc-admin-setup-wizard.php:2006
10055
+ msgid "Get an alert if your store is down for even a few minutes."
 
 
 
10056
  msgstr ""
10057
 
10058
+ #: includes/admin/class-wc-admin-setup-wizard.php:2011
10059
+ msgid "Product promotion"
10060
  msgstr ""
10061
 
10062
+ #: includes/admin/class-wc-admin-setup-wizard.php:2014
10063
+ msgid "Share new items on social media the moment they're live in your store."
10064
  msgstr ""
10065
 
10066
+ #: includes/admin/class-wc-admin-setup-wizard.php:2025
10067
+ msgid "Sorry! We tried, but we couldn't connect Jetpack just now 😭. Please go to the Plugins tab to connect Jetpack, so that you can finish setting up your store."
10068
  msgstr ""
10069
 
10070
+ #: includes/admin/class-wc-admin-setup-wizard.php:2026
10071
+ msgid "Sorry! We tried, but we couldn't install Jetpack for you 😭. Please go to the Plugins tab to install it, and finish setting up your store."
10072
  msgstr ""
10073
 
10074
+ #: includes/admin/class-wc-admin-setup-wizard.php:2027
10075
+ msgid "Sorry! We couldn't contact Jetpack just now 😭. Please make sure that your site is visible over the internet, and that it accepts incoming and outgoing requests via curl. You can also try to connect to Jetpack again, and if you run into any more issues, please contact support."
10076
  msgstr ""
10077
 
10078
+ #: includes/admin/class-wc-admin-setup-wizard.php:2028
10079
+ msgid "Your site might be on a private network. Jetpack can only connect to public sites. Please make sure your site is visible over the internet, and then try connecting again 🙏."
10080
  msgstr ""
10081
 
10082
+ #. translators: %1$s: link to videos, %2$s: link to docs
10083
+ #: includes/admin/class-wc-admin-setup-wizard.php:2100
10084
+ #, php-format
10085
+ msgid "Watch our <a href=\"%1$s\" target=\"_blank\">guided tour videos</a> to learn more about WooCommerce, and visit WooCommerce.com to learn more about <a href=\"%2$s\" target=\"_blank\">getting started</a>."
10086
  msgstr ""
10087
 
10088
+ #: includes/admin/class-wc-admin-setup-wizard.php:2105
10089
+ msgid "You're ready to start selling!"
 
10090
  msgstr ""
10091
 
10092
+ #: includes/admin/class-wc-admin-setup-wizard.php:2108
10093
+ msgid "We're here for you get tips, product updates, and inspiration straight to your mailbox."
10094
  msgstr ""
10095
 
10096
+ #: includes/admin/class-wc-admin-setup-wizard.php:2122 includes/admin/class-wc-admin-setup-wizard.php:2126
10097
+ msgid "Yes please!"
10098
  msgstr ""
10099
 
10100
+ #: includes/admin/class-wc-admin-setup-wizard.php:2135
10101
+ msgid "Next step"
 
10102
  msgstr ""
10103
 
10104
+ #: includes/admin/class-wc-admin-setup-wizard.php:2136
10105
+ msgid "Create some products"
 
 
 
 
 
10106
  msgstr ""
10107
 
10108
+ #: includes/admin/class-wc-admin-setup-wizard.php:2137
10109
+ msgid "You're ready to add products to your store."
 
10110
  msgstr ""
10111
 
10112
+ #: includes/admin/class-wc-admin-setup-wizard.php:2142
10113
+ msgid "Create a product"
10114
  msgstr ""
10115
 
10116
+ #: includes/admin/class-wc-admin-setup-wizard.php:2149
10117
+ msgid "Have an existing store?"
10118
  msgstr ""
10119
 
10120
+ #: includes/admin/class-wc-admin-setup-wizard.php:2150 includes/admin/class-wc-admin-setup-wizard.php:2156
10121
+ msgid "Import products"
 
 
10122
  msgstr ""
10123
 
10124
+ #: includes/admin/class-wc-admin-setup-wizard.php:2151
10125
+ msgid "Transfer existing products to your new store — just import a CSV file."
10126
  msgstr ""
10127
 
10128
+ #: includes/admin/class-wc-admin-setup-wizard.php:2163
10129
+ msgid "You can also:"
10130
  msgstr ""
10131
 
10132
+ #: includes/admin/class-wc-admin-setup-wizard.php:2168
10133
+ msgid "Visit Dashboard"
10134
  msgstr ""
10135
 
10136
+ #: includes/admin/class-wc-admin-setup-wizard.php:2171
10137
+ msgid "Review Settings"
 
 
 
10138
  msgstr ""
10139
 
10140
+ #: includes/admin/class-wc-admin-setup-wizard.php:2174
10141
+ msgid "View &amp; Customize"
10142
  msgstr ""
10143
 
10144
+ #: includes/admin/class-wc-admin-attributes.php:138
10145
+ msgid "Attribute updated successfully"
10146
  msgstr ""
10147
 
10148
+ #: includes/admin/class-wc-admin-attributes.php:138
10149
+ msgid "Back to Attributes"
 
 
 
10150
  msgstr ""
10151
 
10152
+ #: includes/admin/class-wc-admin-attributes.php:169
10153
+ msgid "Edit attribute"
10154
  msgstr ""
10155
 
10156
+ #: includes/admin/class-wc-admin-attributes.php:173
10157
+ msgid "Error: non-existing attribute ID."
 
10158
  msgstr ""
10159
 
10160
+ #: includes/admin/class-wc-admin-attributes.php:191 includes/admin/class-wc-admin-attributes.php:389
10161
+ msgid "Name for the attribute (shown on the front-end)."
 
10162
  msgstr ""
10163
 
10164
+ #: includes/admin/class-wc-admin-attributes.php:196 includes/admin/class-wc-admin-attributes.php:290 includes/admin/class-wc-admin-attributes.php:393 includes/admin/settings/class-wc-settings-shipping.php:360 includes/admin/settings/views/html-admin-page-shipping-classes.php:68
10165
+ msgid "Slug"
 
 
 
 
10166
  msgstr ""
10167
 
10168
+ #: includes/admin/class-wc-admin-attributes.php:200 includes/admin/class-wc-admin-attributes.php:395
10169
+ msgid "Unique slug/reference for the attribute; must be no more than 28 characters."
 
10170
  msgstr ""
10171
 
10172
+ #: includes/admin/class-wc-admin-attributes.php:205
10173
+ msgid "Enable archives?"
10174
  msgstr ""
10175
 
10176
+ #: includes/admin/class-wc-admin-attributes.php:209 includes/admin/class-wc-admin-attributes.php:401
10177
+ msgid "Enable this if you want this attribute to have product archives in your store."
10178
  msgstr ""
10179
 
10180
+ #: includes/admin/class-wc-admin-attributes.php:241 includes/admin/class-wc-admin-attributes.php:430
10181
+ msgid "Determines how this attribute's values are displayed."
10182
  msgstr ""
10183
 
10184
+ #: includes/admin/class-wc-admin-attributes.php:249 includes/admin/class-wc-admin-attributes.php:437
10185
+ msgid "Default sort order"
10186
  msgstr ""
10187
 
10188
+ #: includes/admin/class-wc-admin-attributes.php:253 includes/admin/class-wc-admin-attributes.php:326 includes/admin/class-wc-admin-attributes.php:439
10189
+ msgid "Custom ordering"
10190
+ msgstr ""
 
 
10191
 
10192
+ #: includes/admin/class-wc-admin-attributes.php:255 includes/admin/class-wc-admin-attributes.php:320 includes/admin/class-wc-admin-attributes.php:441
10193
+ msgid "Name (numeric)"
 
 
10194
  msgstr ""
10195
 
10196
+ #: includes/admin/class-wc-admin-attributes.php:256 includes/admin/class-wc-admin-attributes.php:323 includes/admin/class-wc-admin-attributes.php:442
10197
+ msgid "Term ID"
 
 
10198
  msgstr ""
10199
 
10200
+ #: includes/admin/class-wc-admin-attributes.php:258 includes/admin/class-wc-admin-attributes.php:444
10201
+ msgid "Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute."
 
10202
  msgstr ""
10203
 
10204
+ #: includes/admin/class-wc-admin-attributes.php:264 includes/admin/helper/class-wc-helper.php:180 includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:74 includes/admin/meta-boxes/class-wc-meta-box-order-actions.php:74 includes/admin/helper/views/html-section-account.php:3
10205
+ msgid "Update"
 
 
 
 
 
10206
  msgstr ""
10207
 
10208
+ #: includes/admin/class-wc-admin-attributes.php:295
10209
+ msgid "Terms"
10210
  msgstr ""
10211
 
10212
+ #: includes/admin/class-wc-admin-attributes.php:311
10213
+ msgid "(Public)"
 
 
 
10214
  msgstr ""
10215
 
10216
+ #: includes/admin/class-wc-admin-attributes.php:361
10217
+ msgid "Configure terms"
 
 
10218
  msgstr ""
10219
 
10220
+ #: includes/admin/class-wc-admin-attributes.php:369
10221
+ msgid "No attributes currently exist."
10222
  msgstr ""
10223
 
10224
+ #: includes/admin/class-wc-admin-attributes.php:381
10225
+ msgid "Add new attribute"
10226
  msgstr ""
10227
 
10228
+ #: includes/admin/class-wc-admin-attributes.php:382
10229
+ msgid "Attributes let you define extra product data, such as size or color. You can use these attributes in the shop sidebar using the \"layered nav\" widgets."
10230
  msgstr ""
10231
 
10232
+ #: includes/admin/class-wc-admin-attributes.php:399
10233
+ msgid "Enable Archives?"
 
10234
  msgstr ""
10235
 
10236
+ #: includes/admin/class-wc-admin-attributes.php:449
10237
+ msgid "Add attribute"
10238
  msgstr ""
10239
 
10240
+ #: includes/admin/class-wc-admin-attributes.php:460
10241
+ msgid "Are you sure you want to delete this attribute?"
10242
  msgstr ""
10243
 
10244
+ #: includes/admin/class-wc-admin-help.php:42 includes/admin/class-wc-admin-help.php:44
10245
+ msgid "Help &amp; Support"
 
10246
  msgstr ""
10247
 
10248
+ #. translators: %s: Documentation URL
10249
+ #: includes/admin/class-wc-admin-help.php:47
10250
+ #, php-format
10251
+ msgid "Should you need help understanding, using, or extending WooCommerce, <a href=\"%s\">please read our documentation</a>. You will find all kinds of resources including snippets, tutorials and much more."
10252
  msgstr ""
10253
 
10254
+ #. translators: %s: Forum URL
10255
+ #: includes/admin/class-wc-admin-help.php:52
10256
+ #, php-format
10257
+ msgid "For further assistance with WooCommerce core you can use the <a href=\"%1$s\">community forum</a>. If you need help with premium extensions sold by WooCommerce, please <a href=\"%2$s\">use our helpdesk</a>."
10258
  msgstr ""
10259
 
10260
+ #: includes/admin/class-wc-admin-help.php:56
10261
+ msgid "Before asking for help we recommend checking the system status page to identify any problems with your configuration."
 
10262
  msgstr ""
10263
 
10264
+ #: includes/admin/class-wc-admin-help.php:57 includes/admin/class-wc-admin-help.php:69 includes/admin/views/html-admin-page-status.php:12
10265
+ msgid "System status"
10266
  msgstr ""
10267
 
10268
+ #: includes/admin/class-wc-admin-help.php:57
10269
+ msgid "Community forum"
10270
  msgstr ""
10271
 
10272
+ #: includes/admin/class-wc-admin-help.php:57
10273
+ msgid "WooCommerce helpdesk"
10274
  msgstr ""
10275
 
10276
+ #: includes/admin/class-wc-admin-help.php:64 includes/admin/class-wc-admin-help.php:66
10277
+ msgid "Found a bug?"
 
 
10278
  msgstr ""
10279
 
10280
+ #. translators: 1: GitHub issues URL 2: GitHub contribution guide URL 3: System
10281
+ #. status report URL
10282
+ #: includes/admin/class-wc-admin-help.php:68
10283
+ #, php-format
10284
+ msgid "If you find a bug within WooCommerce core you can create a ticket via <a href=\"%1$s\">Github issues</a>. Ensure you read the <a href=\"%2$s\">contribution guide</a> prior to submitting your report. To help us solve your issue, please be as descriptive as possible and include your <a href=\"%3$s\">system status report</a>."
10285
  msgstr ""
10286
 
10287
+ #: includes/admin/class-wc-admin-help.php:69
10288
+ msgid "Report a bug"
10289
  msgstr ""
10290
 
10291
+ #: includes/admin/class-wc-admin-help.php:77 includes/admin/class-wc-admin-help.php:79
10292
+ msgid "Education"
10293
  msgstr ""
10294
 
10295
+ #: includes/admin/class-wc-admin-help.php:80
10296
+ msgid "If you would like to learn about using WooCommerce from an expert, consider a WooCommerce course to further your education."
10297
  msgstr ""
10298
 
10299
+ #: includes/admin/class-wc-admin-help.php:81
10300
+ msgid "Further education"
10301
  msgstr ""
10302
 
10303
+ #: includes/admin/class-wc-admin-help.php:88 includes/admin/class-wc-admin-help.php:90 includes/admin/class-wc-admin-help.php:92
10304
+ msgid "Setup wizard"
10305
  msgstr ""
10306
 
10307
+ #: includes/admin/class-wc-admin-help.php:91
10308
+ msgid "If you need to access the setup wizard again, please click on the button below."
10309
  msgstr ""
10310
 
10311
+ #: includes/admin/class-wc-admin-help.php:98
10312
+ msgid "For more information:"
 
10313
  msgstr ""
10314
 
10315
+ #: includes/admin/class-wc-admin-help.php:99
10316
+ msgid "About WooCommerce"
10317
  msgstr ""
10318
 
10319
+ #: includes/admin/class-wc-admin-help.php:100
10320
+ msgid "WordPress.org project"
10321
  msgstr ""
10322
 
10323
+ #: includes/admin/class-wc-admin-help.php:101
10324
+ msgid "Github project"
 
10325
  msgstr ""
10326
 
10327
+ #: includes/admin/class-wc-admin-help.php:102
10328
+ msgid "Official theme"
10329
  msgstr ""
10330
 
10331
+ #: includes/admin/class-wc-admin-help.php:103
10332
+ msgid "Official extensions"
10333
  msgstr ""
10334
 
10335
+ #: includes/admin/class-wc-admin-exporters.php:42
10336
+ msgid "Product Export"
10337
  msgstr ""
10338
 
10339
+ #: includes/admin/class-wc-admin-exporters.php:129
10340
+ msgid "Insufficient privileges to export products."
10341
  msgstr ""
10342
 
10343
+ #: includes/admin/class-wc-admin.php:199
10344
+ msgid "HTML email template"
 
10345
  msgstr ""
10346
 
10347
+ #. translators: 1: WooCommerce 2:: five stars
10348
+ #: includes/admin/class-wc-admin.php:241
10349
+ #, php-format
10350
+ msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
10351
  msgstr ""
10352
 
10353
+ #: includes/admin/class-wc-admin.php:243
10354
+ msgid "Thanks :)"
10355
  msgstr ""
10356
 
10357
+ #: includes/admin/class-wc-admin.php:252
10358
+ msgid "Thank you for selling with WooCommerce."
10359
  msgstr ""
10360
 
10361
+ #: includes/admin/class-wc-admin-status.php:45
10362
+ msgid "Tool does not exist."
10363
  msgstr ""
10364
 
10365
+ #: includes/admin/class-wc-admin-status.php:58
10366
+ msgid "Your changes have been saved."
 
10367
  msgstr ""
10368
 
10369
+ #: includes/admin/class-wc-admin-api-keys.php:75 includes/admin/settings/class-wc-settings-advanced.php:43
10370
+ msgid "REST API"
10371
  msgstr ""
10372
 
10373
+ #: includes/admin/class-wc-admin-api-keys.php:75
10374
+ msgid "Add key"
10375
  msgstr ""
10376
 
10377
+ #: includes/admin/class-wc-admin-api-keys.php:88
10378
+ msgid "Search key"
10379
  msgstr ""
10380
 
10381
+ #: includes/admin/class-wc-admin-api-keys.php:93
10382
+ msgid "The WooCommerce REST API allows external apps to view and manage store data. Access is granted only to those with valid API keys."
 
10383
  msgstr ""
10384
 
10385
+ #: includes/admin/class-wc-admin-api-keys.php:94
10386
+ msgid "Create an API key"
 
 
 
10387
  msgstr ""
10388
 
10389
+ #: includes/admin/class-wc-admin-api-keys.php:160
10390
+ msgid "API key revoked successfully."
10391
  msgstr ""
10392
 
10393
+ #: includes/admin/class-wc-admin-api-keys.php:189
10394
+ msgid "You do not have permission to edit API Keys"
10395
  msgstr ""
10396
 
10397
+ #: includes/admin/class-wc-admin-webhooks.php:56
10398
+ msgid "You do not have permission to update Webhooks"
10399
  msgstr ""
10400
 
10401
+ #. translators: %s: date
10402
+ #: includes/admin/class-wc-admin-webhooks.php:69 includes/api/v1/class-wc-rest-webhooks-controller.php:500 includes/api/legacy/v2/class-wc-api-webhooks.php:199 includes/api/legacy/v3/class-wc-api-webhooks.php:199
10403
+ #, php-format
10404
+ msgid "Webhook created on %s"
10405
  msgstr ""
10406
 
10407
+ #: includes/admin/class-wc-admin-webhooks.php:71 includes/api/v1/class-wc-rest-webhooks-controller.php:500 includes/api/legacy/v2/class-wc-api-webhooks.php:199 includes/api/legacy/v3/class-wc-api-webhooks.php:199 includes/admin/settings/views/html-webhooks-edit.php:25
10408
+ msgctxt "Webhook created on date parsed by strftime"
10409
+ msgid "%b %d, %Y @ %I:%M %p"
10410
  msgstr ""
10411
 
10412
+ #: includes/admin/class-wc-admin-webhooks.php:117
10413
+ msgid "Webhook topic unknown. Please select a valid topic."
10414
  msgstr ""
10415
 
10416
+ #: includes/admin/class-wc-admin-webhooks.php:189
10417
+ msgid "You do not have permission to edit Webhooks"
 
 
 
 
 
 
 
 
 
10418
  msgstr ""
10419
 
10420
+ #. translators: %d: count
10421
+ #: includes/admin/class-wc-admin-webhooks.php:251
10422
+ #, php-format
10423
+ msgid "%d webhook permanently deleted."
10424
+ msgid_plural "%d webhooks permanently deleted."
10425
+ msgstr[0] ""
10426
+ msgstr[1] ""
10427
 
10428
+ #: includes/admin/class-wc-admin-webhooks.php:255
10429
+ msgid "Webhook updated successfully."
 
10430
  msgstr ""
10431
 
10432
+ #: includes/admin/class-wc-admin-webhooks.php:259
10433
+ msgid "Webhook created successfully."
10434
  msgstr ""
10435
 
10436
+ #: includes/admin/class-wc-admin-webhooks.php:295 includes/admin/settings/class-wc-settings-advanced.php:44
10437
+ msgid "Webhooks"
10438
  msgstr ""
10439
 
10440
+ #: includes/admin/class-wc-admin-webhooks.php:295
10441
+ msgid "Add webhook"
10442
  msgstr ""
10443
 
10444
+ #: includes/admin/class-wc-admin-webhooks.php:309
10445
+ msgid "Search webhooks"
 
10446
  msgstr ""
10447
 
10448
+ #: includes/admin/class-wc-admin-webhooks.php:314
10449
+ msgid "Webhooks are event notifications sent to URLs of your choice. They can be used to integrate with third-party services which support them."
10450
  msgstr ""
10451
 
10452
+ #: includes/admin/class-wc-admin-webhooks.php:315
10453
+ msgid "Create a new webhook"
10454
  msgstr ""
10455
 
10456
+ #. translators: %s: post title
10457
+ #: includes/admin/class-wc-admin-duplicate-product.php:61
10458
+ #, php-format
10459
+ msgid "Move &#8220;%s&#8221; to the Trash"
 
10460
  msgstr ""
10461
 
10462
+ #: includes/admin/class-wc-admin-duplicate-product.php:62
10463
+ msgid "Trash"
 
 
 
10464
  msgstr ""
10465
 
10466
+ #: includes/admin/class-wc-admin-duplicate-product.php:66
10467
+ msgid "Make a duplicate from this product"
10468
  msgstr ""
10469
 
10470
+ #: includes/admin/class-wc-admin-duplicate-product.php:67
10471
+ msgid "Duplicate"
10472
  msgstr ""
10473
 
10474
+ #: includes/admin/class-wc-admin-duplicate-product.php:93
10475
+ msgid "Copy to a new draft"
10476
  msgstr ""
10477
 
10478
+ #: includes/admin/class-wc-admin-duplicate-product.php:103
10479
+ msgid "No product to duplicate has been supplied!"
10480
  msgstr ""
10481
 
10482
+ #. translators: %s: product id
10483
+ #: includes/admin/class-wc-admin-duplicate-product.php:114
10484
+ #, php-format
10485
+ msgid "Product creation failed, could not find original product: %s"
10486
  msgstr ""
10487
 
10488
+ #: includes/admin/class-wc-admin-duplicate-product.php:140
10489
+ #, php-format
10490
+ msgid "%s (Copy)"
10491
  msgstr ""
10492
 
10493
+ #: includes/admin/class-wc-admin-reports.php:50
10494
+ msgid "Sales by date"
10495
  msgstr ""
10496
 
10497
+ #: includes/admin/class-wc-admin-reports.php:56
10498
+ msgid "Sales by product"
10499
  msgstr ""
10500
 
10501
+ #: includes/admin/class-wc-admin-reports.php:62
10502
+ msgid "Sales by category"
 
10503
  msgstr ""
10504
 
10505
+ #: includes/admin/class-wc-admin-reports.php:68
10506
+ msgid "Coupons by date"
 
10507
  msgstr ""
10508
 
10509
+ #: includes/admin/class-wc-admin-reports.php:74 includes/admin/reports/class-wc-report-downloads.php:79
10510
+ msgid "Customer downloads"
 
10511
  msgstr ""
10512
 
10513
+ #: includes/admin/class-wc-admin-reports.php:82
10514
+ msgid "Customers"
 
 
 
10515
  msgstr ""
10516
 
10517
+ #: includes/admin/class-wc-admin-reports.php:85
10518
+ msgid "Customers vs. guests"
10519
  msgstr ""
10520
 
10521
+ #: includes/admin/class-wc-admin-reports.php:91
10522
+ msgid "Customer list"
 
10523
  msgstr ""
10524
 
10525
+ #: includes/admin/class-wc-admin-reports.php:102
10526
+ msgid "Low in stock"
 
 
10527
  msgstr ""
10528
 
10529
+ #: includes/admin/class-wc-admin-reports.php:114
10530
+ msgid "Most stocked"
 
10531
  msgstr ""
10532
 
10533
+ #: includes/admin/class-wc-admin-reports.php:125
10534
+ msgid "Taxes"
 
 
 
 
 
10535
  msgstr ""
10536
 
10537
+ #: includes/admin/class-wc-admin-reports.php:128
10538
+ msgid "Taxes by code"
 
 
10539
  msgstr ""
10540
 
10541
+ #: includes/admin/class-wc-admin-reports.php:134
10542
+ msgid "Taxes by date"
 
 
10543
  msgstr ""
10544
 
10545
+ #. translators: %s: decimal
10546
+ #: includes/admin/class-wc-admin-assets.php:164
10547
+ #, php-format
10548
+ msgid "Please enter in decimal (%s) format without thousand separators."
 
10549
  msgstr ""
10550
 
10551
+ #. translators: %s: price decimal separator
10552
+ #: includes/admin/class-wc-admin-assets.php:166
10553
+ #, php-format
10554
+ msgid "Please enter in monetary decimal (%s) format without thousand separators and currency symbols."
10555
  msgstr ""
10556
 
10557
+ #: includes/admin/class-wc-admin-assets.php:167
10558
+ msgid "Please enter in country code with two capital letters."
 
 
 
10559
  msgstr ""
10560
 
10561
+ #: includes/admin/class-wc-admin-assets.php:168
10562
+ msgid "Please enter in a value less than the regular price."
 
 
 
10563
  msgstr ""
10564
 
10565
+ #: includes/admin/class-wc-admin-assets.php:169
10566
+ msgid "This product has produced sales and may be linked to existing orders. Are you sure you want to delete it?"
10567
  msgstr ""
10568
 
10569
+ #: includes/admin/class-wc-admin-assets.php:174 includes/admin/importers/class-wc-product-csv-importer-controller.php:102
10570
+ msgid "Import"
 
10571
  msgstr ""
10572
 
10573
+ #: includes/admin/class-wc-admin-assets.php:175
10574
+ msgid "Export"
 
 
 
10575
  msgstr ""
10576
 
10577
+ #: includes/admin/class-wc-admin-assets.php:200 includes/admin/settings/class-wc-settings-products.php:410 includes/admin/meta-boxes/views/html-product-data-advanced.php:47
10578
+ msgid "Enable reviews"
 
10579
  msgstr ""
10580
 
10581
+ #. translators: %d: Number of variations
10582
+ #: includes/admin/class-wc-admin-assets.php:228
10583
+ #, php-format
10584
+ msgid "Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max %d per run)."
 
10585
  msgstr ""
10586
 
10587
+ #: includes/admin/class-wc-admin-assets.php:229
10588
+ msgid "Enter a value"
 
 
10589
  msgstr ""
10590
 
10591
+ #: includes/admin/class-wc-admin-assets.php:230
10592
+ msgid "Variation menu order (determines position in the list of variations)"
 
 
 
 
 
10593
  msgstr ""
10594
 
10595
+ #: includes/admin/class-wc-admin-assets.php:231
10596
+ msgid "Enter a value (fixed or %)"
10597
  msgstr ""
10598
 
10599
+ #: includes/admin/class-wc-admin-assets.php:232
10600
+ msgid "Are you sure you want to delete all variations? This cannot be undone."
10601
  msgstr ""
10602
 
10603
+ #: includes/admin/class-wc-admin-assets.php:233
10604
+ msgid "Last warning, are you sure?"
10605
  msgstr ""
10606
 
10607
+ #: includes/admin/class-wc-admin-assets.php:234 includes/admin/class-wc-admin-taxonomies.php:135 includes/admin/class-wc-admin-taxonomies.php:245
10608
+ msgid "Choose an image"
 
 
 
10609
  msgstr ""
10610
 
10611
+ #: includes/admin/class-wc-admin-assets.php:235
10612
+ msgid "Set variation image"
 
 
10613
  msgstr ""
10614
 
10615
+ #: includes/admin/class-wc-admin-assets.php:236
10616
+ msgid "variation added"
10617
  msgstr ""
10618
 
10619
+ #: includes/admin/class-wc-admin-assets.php:237
10620
+ msgid "variations added"
 
 
 
 
10621
  msgstr ""
10622
 
10623
+ #: includes/admin/class-wc-admin-assets.php:238
10624
+ msgid "No variations added"
 
10625
  msgstr ""
10626
 
10627
+ #: includes/admin/class-wc-admin-assets.php:239
10628
+ msgid "Are you sure you want to remove this variation?"
 
10629
  msgstr ""
10630
 
10631
+ #: includes/admin/class-wc-admin-assets.php:240
10632
+ msgid "Sale start date (YYYY-MM-DD format or leave blank)"
 
 
 
10633
  msgstr ""
10634
 
10635
+ #: includes/admin/class-wc-admin-assets.php:241
10636
+ msgid "Sale end date (YYYY-MM-DD format or leave blank)"
 
 
 
10637
  msgstr ""
10638
 
10639
+ #: includes/admin/class-wc-admin-assets.php:242
10640
+ msgid "Save changes before changing page?"
 
 
 
10641
  msgstr ""
10642
 
10643
+ #: includes/admin/class-wc-admin-assets.php:243
10644
+ msgid "%qty% variation"
10645
  msgstr ""
10646
 
10647
+ #: includes/admin/class-wc-admin-assets.php:244
10648
+ msgid "%qty% variations"
 
 
10649
  msgstr ""
10650
 
10651
+ #: includes/admin/class-wc-admin-assets.php:262 includes/admin/meta-boxes/views/html-order-item-meta.php:49
10652
+ msgid "Name (required)"
 
 
10653
  msgstr ""
10654
 
10655
+ #: includes/admin/class-wc-admin-assets.php:263 includes/admin/meta-boxes/views/html-order-item-meta.php:50
10656
+ msgid "Value (required)"
 
 
10657
  msgstr ""
10658
 
10659
+ #: includes/admin/class-wc-admin-assets.php:282
10660
+ msgid "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock."
 
 
10661
  msgstr ""
10662
 
10663
+ #: includes/admin/class-wc-admin-assets.php:283
10664
+ msgid "Please select some items."
10665
  msgstr ""
10666
 
10667
+ #: includes/admin/class-wc-admin-assets.php:284
10668
+ msgid "Are you sure you wish to process this refund? This action cannot be undone."
10669
  msgstr ""
10670
 
10671
+ #: includes/admin/class-wc-admin-assets.php:285
10672
+ msgid "Are you sure you wish to delete this refund? This action cannot be undone."
 
10673
  msgstr ""
10674
 
10675
+ #: includes/admin/class-wc-admin-assets.php:286
10676
+ msgid "Are you sure you wish to delete this tax column? This action cannot be undone."
10677
  msgstr ""
10678
 
10679
+ #: includes/admin/class-wc-admin-assets.php:287
10680
+ msgid "Remove this item meta?"
10681
  msgstr ""
10682
 
10683
+ #: includes/admin/class-wc-admin-assets.php:288
10684
+ msgid "Remove this attribute?"
10685
  msgstr ""
10686
 
10687
+ #: includes/admin/class-wc-admin-assets.php:290 includes/admin/settings/views/html-admin-page-shipping-classes.php:54 includes/admin/meta-boxes/views/html-product-attribute.php:8 includes/admin/meta-boxes/views/html-variation-admin.php:16
10688
+ msgid "Remove"
10689
  msgstr ""
10690
 
10691
+ #: includes/admin/class-wc-admin-assets.php:291 includes/admin/meta-boxes/views/html-order-download-permission.php:9 includes/admin/meta-boxes/views/html-product-attribute.php:9 includes/admin/meta-boxes/views/html-variation-admin.php:17
10692
+ msgid "Click to toggle"
10693
  msgstr ""
10694
 
10695
+ #: includes/admin/class-wc-admin-assets.php:292 includes/admin/meta-boxes/views/html-product-attribute.php:29
10696
+ msgid "Value(s)"
10697
  msgstr ""
10698
 
10699
+ #: includes/admin/class-wc-admin-assets.php:293
10700
+ msgid "Enter some text, or some attributes by pipe (|) separating values."
10701
  msgstr ""
10702
 
10703
+ #: includes/admin/class-wc-admin-assets.php:294 includes/admin/meta-boxes/views/html-product-attribute.php:74
10704
+ msgid "Visible on the product page"
10705
  msgstr ""
10706
 
10707
+ #: includes/admin/class-wc-admin-assets.php:295 includes/admin/meta-boxes/views/html-product-attribute.php:80
10708
+ msgid "Used for variations"
10709
  msgstr ""
10710
 
10711
+ #: includes/admin/class-wc-admin-assets.php:296
10712
+ msgid "Enter a name for the new attribute term:"
10713
  msgstr ""
10714
 
10715
+ #: includes/admin/class-wc-admin-assets.php:297
10716
+ msgid "Recalculate totals? This will calculate taxes based on the customers country (or the store base country) and update totals."
10717
  msgstr ""
10718
 
10719
+ #: includes/admin/class-wc-admin-assets.php:298
10720
+ msgid "Copy billing information to shipping information? This will remove any currently entered shipping information."
10721
  msgstr ""
10722
 
10723
+ #: includes/admin/class-wc-admin-assets.php:299
10724
+ msgid "Load the customer's billing information? This will remove any currently entered billing information."
10725
  msgstr ""
10726
 
10727
+ #: includes/admin/class-wc-admin-assets.php:300
10728
+ msgid "Load the customer's shipping information? This will remove any currently entered shipping information."
10729
  msgstr ""
10730
 
10731
+ #: includes/admin/class-wc-admin-assets.php:301 includes/admin/class-wc-admin-post-types.php:746 includes/admin/views/html-bulk-edit-product.php:200 includes/admin/views/html-quick-edit-product.php:159 includes/admin/list-tables/class-wc-admin-list-table-products.php:120 includes/admin/list-tables/class-wc-admin-list-table-products.php:120
10732
+ msgid "Featured"
10733
  msgstr ""
10734
 
10735
+ #: includes/admin/class-wc-admin-assets.php:305
10736
+ msgid "No customer selected"
10737
  msgstr ""
10738
 
10739
+ #: includes/admin/class-wc-admin-assets.php:329
10740
+ msgid "Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved."
10741
  msgstr ""
10742
 
10743
+ #: includes/admin/class-wc-admin-assets.php:330
10744
+ msgid "Are you sure you want to revoke access to this download?"
10745
  msgstr ""
10746
 
10747
+ #: includes/admin/class-wc-admin-assets.php:331
10748
+ msgid "You cannot add the same tax rate twice!"
 
10749
  msgstr ""
10750
 
10751
+ #: includes/admin/class-wc-admin-assets.php:332
10752
+ msgid "Are you sure you wish to delete this note? This action cannot be undone."
 
 
 
 
 
 
 
 
 
10753
  msgstr ""
10754
 
10755
+ #: includes/admin/class-wc-admin-assets.php:333
10756
+ msgid "Enter a coupon code to apply to this order."
 
10757
  msgstr ""
10758
 
10759
+ #: includes/admin/class-wc-admin-assets.php:334
10760
+ msgid "Enter a fixed amount or percentage to apply as a fee."
 
10761
  msgstr ""
10762
 
10763
+ #: includes/admin/class-wc-admin-assets.php:383 includes/admin/views/html-admin-page-status-report.php:46
10764
+ msgid "Copying to clipboard failed. Please press Ctrl/Cmd+C to copy."
 
 
10765
  msgstr ""
10766
 
10767
+ #: includes/admin/class-wc-admin-assets.php:396
10768
+ msgid "Are you sure you want to delete this log?"
 
10769
  msgstr ""
10770
 
10771
+ #: includes/admin/class-wc-admin-addons.php:156
10772
+ msgid "Need a fresh look? Try Storefront child themes"
 
10773
  msgstr ""
10774
 
10775
+ #: includes/admin/class-wc-admin-addons.php:160
10776
+ msgid "View more Storefront child themes"
 
 
 
 
 
10777
  msgstr ""
10778
 
10779
+ #: includes/admin/class-wc-admin-addons.php:165
10780
+ msgid "Need a theme? Try Storefront"
 
10781
  msgstr ""
10782
 
10783
+ #: includes/admin/class-wc-admin-addons.php:371
10784
+ msgid "Buy discounted shipping labels — then print them from your dashboard."
 
10785
  msgstr ""
10786
 
10787
+ #: includes/admin/class-wc-admin-addons.php:372
10788
+ msgid "Integrate your store with USPS to buy discounted shipping labels, and print them directly from your WooCommerce dashboard. Powered by WooCommerce Services."
 
10789
  msgstr ""
10790
 
10791
+ #: includes/admin/class-wc-admin-addons.php:373
10792
+ msgid "Free - Install now"
 
10793
  msgstr ""
10794
 
10795
+ #: includes/admin/class-wc-admin-addons.php:382
10796
+ msgid "Show Canada Post shipping rates"
10797
  msgstr ""
10798
 
10799
+ #: includes/admin/class-wc-admin-addons.php:383
10800
+ msgid "Display live rates from Canada Post at checkout to make shipping a breeze. Powered by WooCommerce Services."
 
10801
  msgstr ""
10802
 
10803
+ #: includes/admin/class-wc-admin-addons.php:488
10804
+ msgid "Free"
 
 
 
 
10805
  msgstr ""
10806
 
10807
+ #: includes/admin/class-wc-admin-addons.php:490 includes/admin/helper/class-wc-helper.php:342
10808
+ msgid "Installed"
 
 
 
10809
  msgstr ""
10810
 
10811
+ #: includes/admin/class-wc-admin-importers.php:39
10812
+ msgid "Product Import"
 
 
10813
  msgstr ""
10814
 
10815
+ #: includes/admin/class-wc-admin-importers.php:113
10816
+ msgid "WooCommerce products (CSV)"
10817
  msgstr ""
10818
 
10819
+ #: includes/admin/class-wc-admin-importers.php:113
10820
+ msgid "Import <strong>products</strong> to your store via a csv file."
10821
  msgstr ""
10822
 
10823
+ #: includes/admin/class-wc-admin-importers.php:114
10824
+ msgid "WooCommerce tax rates (CSV)"
 
10825
  msgstr ""
10826
 
10827
+ #: includes/admin/class-wc-admin-importers.php:114
10828
+ msgid "Import <strong>tax rates</strong> to your store via a csv file."
10829
  msgstr ""
10830
 
10831
+ #: includes/admin/class-wc-admin-importers.php:207
10832
+ msgid "Insufficient privileges to import products."
 
10833
  msgstr ""
10834
 
10835
+ #: includes/admin/class-wc-admin-profile.php:42 includes/admin/settings/views/settings-tax.php:40
10836
+ msgid "Customer billing address"
10837
  msgstr ""
10838
 
10839
+ #: includes/admin/class-wc-admin-profile.php:53 includes/admin/class-wc-admin-profile.php:113 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:52 includes/admin/meta-boxes/class-wc-meta-box-order-data.php:103
10840
+ msgid "Company"
10841
  msgstr ""
10842
 
10843
+ #: includes/admin/class-wc-admin-profile.php:81 includes/admin/class-wc-admin-profile.php:141
10844
+ msgid "State / County or state code"
10845
  msgstr ""
10846
 
10847
+ #: includes/admin/class-wc-admin-profile.php:95 includes/admin/settings/views/settings-tax.php:39
10848
+ msgid "Customer shipping address"
 
 
10849
  msgstr ""
10850
 
10851
+ #: includes/admin/class-wc-admin-profile.php:98
10852
+ msgid "Copy from billing address"
 
10853
  msgstr ""
10854
 
10855
+ #: includes/admin/class-wc-admin-profile.php:102 includes/admin/settings/views/html-keys-edit.php:131 includes/admin/settings/views/html-keys-edit.php:139
10856
+ msgid "Copy"
10857
  msgstr ""
10858
 
10859
+ #: includes/admin/class-wc-admin-taxonomies.php:101 includes/admin/class-wc-admin-taxonomies.php:209
10860
+ msgid "Subcategories"
 
10861
  msgstr ""
10862
 
10863
+ #: includes/admin/class-wc-admin-taxonomies.php:102 includes/admin/class-wc-admin-taxonomies.php:210
10864
+ msgid "Both"
10865
  msgstr ""
10866
 
10867
+ #: includes/admin/class-wc-admin-taxonomies.php:106 includes/admin/class-wc-admin-taxonomies.php:215 includes/admin/class-wc-admin-taxonomies.php:419
10868
+ msgid "Thumbnail"
10869
  msgstr ""
10870
 
10871
+ #: includes/admin/class-wc-admin-taxonomies.php:110 includes/admin/class-wc-admin-taxonomies.php:220
10872
+ msgid "Upload/Add image"
 
 
 
10873
  msgstr ""
10874
 
10875
+ #: includes/admin/class-wc-admin-taxonomies.php:111 includes/admin/class-wc-admin-taxonomies.php:221
10876
+ msgid "Remove image"
 
 
 
 
 
10877
  msgstr ""
10878
 
10879
+ #: includes/admin/class-wc-admin-taxonomies.php:137 includes/admin/class-wc-admin-taxonomies.php:247
10880
+ msgid "Use image"
10881
  msgstr ""
10882
 
10883
+ #: includes/admin/class-wc-admin-taxonomies.php:300
10884
+ msgid "Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the \"screen options\" link at the top-right of this page."
 
10885
  msgstr ""
10886
 
10887
+ #. translators: %s: default category
10888
+ #: includes/admin/class-wc-admin-taxonomies.php:317
10889
+ #, php-format
10890
+ msgid "Deleting a category does not delete the products in that category. Instead, products that were only assigned to the deleted category are set to the category %s."
10891
  msgstr ""
10892
 
10893
+ #: includes/admin/class-wc-admin-taxonomies.php:330
10894
+ msgid "Attribute terms can be assigned to products and variations.<br/><br/><b>Note</b>: Deleting a term will remove it from all products and variations to which it has been assigned. Recreating a term will not automatically assign it back to products."
 
 
 
 
10895
  msgstr ""
10896
 
10897
+ #: includes/admin/class-wc-admin-taxonomies.php:347 includes/admin/list-tables/class-wc-admin-list-table-products.php:106 includes/admin/list-tables/class-wc-admin-list-table-products.php:106
10898
+ msgid "Image"
10899
  msgstr ""
10900
 
10901
+ #. translators: %s: taxonomy term name
10902
+ #: includes/admin/class-wc-admin-taxonomies.php:370
10903
+ #, php-format
10904
+ msgid "Make &#8220;%s&#8221; the default category"
10905
  msgstr ""
10906
 
10907
+ #: includes/admin/class-wc-admin-taxonomies.php:406
10908
+ msgid "This is the default category and it cannot be deleted. It will be automatically assigned to products with no category."
10909
  msgstr ""
10910
 
10911
+ #: includes/admin/class-wc-admin-post-types.php:121
10912
+ #, php-format
10913
+ msgid "Product updated. <a href=\"%s\">View Product</a>"
10914
  msgstr ""
10915
 
10916
+ #: includes/admin/class-wc-admin-post-types.php:122 includes/admin/class-wc-admin-post-types.php:143 includes/admin/class-wc-admin-post-types.php:162
10917
+ msgid "Custom field updated."
 
 
 
 
 
 
 
 
 
 
10918
  msgstr ""
10919
 
10920
+ #: includes/admin/class-wc-admin-post-types.php:123 includes/admin/class-wc-admin-post-types.php:144 includes/admin/class-wc-admin-post-types.php:163
10921
+ msgid "Custom field deleted."
10922
  msgstr ""
10923
 
10924
+ #: includes/admin/class-wc-admin-post-types.php:124
10925
+ msgid "Product updated."
 
10926
  msgstr ""
10927
 
10928
+ #: includes/admin/class-wc-admin-post-types.php:125 includes/admin/class-wc-admin-post-types.php:146 includes/admin/class-wc-admin-post-types.php:165
10929
+ msgid "Revision restored."
 
10930
  msgstr ""
10931
 
10932
+ #. translators: %s: product url
10933
+ #: includes/admin/class-wc-admin-post-types.php:127
10934
+ #, php-format
10935
+ msgid "Product published. <a href=\"%s\">View Product</a>"
 
 
 
 
10936
  msgstr ""
10937
 
10938
+ #: includes/admin/class-wc-admin-post-types.php:128
10939
+ msgid "Product saved."
 
 
 
 
 
 
10940
  msgstr ""
10941
 
10942
+ #. translators: %s: product url
10943
+ #: includes/admin/class-wc-admin-post-types.php:130
10944
+ #, php-format
10945
+ msgid "Product submitted. <a target=\"_blank\" href=\"%s\">Preview product</a>"
 
 
 
 
10946
  msgstr ""
10947
 
10948
+ #. translators: 1: date 2: product url
10949
+ #: includes/admin/class-wc-admin-post-types.php:133
10950
+ #, php-format
10951
+ msgid "Product scheduled for: %1$s. <a target=\"_blank\" href=\"%2$s\">Preview product</a>"
 
 
10952
  msgstr ""
10953
 
10954
+ #. translators: %s: product url
10955
+ #: includes/admin/class-wc-admin-post-types.php:137
10956
+ #, php-format
10957
+ msgid "Product draft updated. <a target=\"_blank\" href=\"%s\">Preview product</a>"
10958
  msgstr ""
10959
 
10960
+ #: includes/admin/class-wc-admin-post-types.php:142 includes/admin/class-wc-admin-post-types.php:145 includes/admin/class-wc-admin-post-types.php:147
10961
+ msgid "Order updated."
10962
  msgstr ""
10963
 
10964
+ #: includes/admin/class-wc-admin-post-types.php:148
10965
+ msgid "Order saved."
10966
  msgstr ""
10967
 
10968
+ #: includes/admin/class-wc-admin-post-types.php:149
10969
+ msgid "Order submitted."
 
 
 
10970
  msgstr ""
10971
 
10972
+ #. translators: %s: date
10973
+ #: includes/admin/class-wc-admin-post-types.php:152
10974
+ #, php-format
10975
+ msgid "Order scheduled for: %s."
10976
  msgstr ""
10977
 
10978
+ #: includes/admin/class-wc-admin-post-types.php:155
10979
+ msgid "Order draft updated."
10980
  msgstr ""
10981
 
10982
+ #: includes/admin/class-wc-admin-post-types.php:156
10983
+ msgid "Order updated and sent."
 
10984
  msgstr ""
10985
 
10986
+ #: includes/admin/class-wc-admin-post-types.php:161 includes/admin/class-wc-admin-post-types.php:164 includes/admin/class-wc-admin-post-types.php:166
10987
+ msgid "Coupon updated."
10988
  msgstr ""
10989
 
10990
+ #: includes/admin/class-wc-admin-post-types.php:167
10991
+ msgid "Coupon saved."
 
 
 
 
 
 
 
10992
  msgstr ""
10993
 
10994
+ #: includes/admin/class-wc-admin-post-types.php:168
10995
+ msgid "Coupon submitted."
10996
  msgstr ""
10997
 
10998
+ #. translators: %s: date
10999
+ #: includes/admin/class-wc-admin-post-types.php:171
11000
+ #, php-format
11001
+ msgid "Coupon scheduled for: %s."
11002
  msgstr ""
11003
 
11004
+ #: includes/admin/class-wc-admin-post-types.php:174
11005
+ msgid "Coupon draft updated."
11006
  msgstr ""
11007
 
11008
+ #. translators: %s: product count
11009
+ #: includes/admin/class-wc-admin-post-types.php:190
11010
+ #, php-format
11011
+ msgid "%s product updated."
11012
+ msgid_plural "%s products updated."
11013
  msgstr[0] ""
11014
  msgstr[1] ""
11015
 
11016
+ #. translators: %s: product count
11017
+ #: includes/admin/class-wc-admin-post-types.php:192
11018
+ #, php-format
11019
+ msgid "%s product not updated, somebody is editing it."
11020
+ msgid_plural "%s products not updated, somebody is editing them."
11021
+ msgstr[0] ""
11022
+ msgstr[1] ""
11023
 
11024
+ #. translators: %s: product count
11025
+ #: includes/admin/class-wc-admin-post-types.php:194
11026
+ #, php-format
11027
+ msgid "%s product permanently deleted."
11028
+ msgid_plural "%s products permanently deleted."
11029
+ msgstr[0] ""
11030
+ msgstr[1] ""
11031
 
11032
+ #. translators: %s: product count
11033
+ #: includes/admin/class-wc-admin-post-types.php:196
11034
+ #, php-format
11035
+ msgid "%s product moved to the Trash."
11036
+ msgid_plural "%s products moved to the Trash."
11037
+ msgstr[0] ""
11038
+ msgstr[1] ""
11039
 
11040
+ #. translators: %s: product count
11041
+ #: includes/admin/class-wc-admin-post-types.php:198
11042
+ #, php-format
11043
+ msgid "%s product restored from the Trash."
11044
+ msgid_plural "%s products restored from the Trash."
11045
+ msgstr[0] ""
11046
+ msgstr[1] ""
11047
 
11048
+ #. translators: %s: order count
11049
+ #: includes/admin/class-wc-admin-post-types.php:203
11050
+ #, php-format
11051
+ msgid "%s order updated."
11052
+ msgid_plural "%s orders updated."
11053
+ msgstr[0] ""
11054
+ msgstr[1] ""
11055
 
11056
+ #. translators: %s: order count
11057
+ #: includes/admin/class-wc-admin-post-types.php:205
11058
+ #, php-format
11059
+ msgid "%s order not updated, somebody is editing it."
11060
+ msgid_plural "%s orders not updated, somebody is editing them."
11061
+ msgstr[0] ""
11062
+ msgstr[1] ""
11063
 
11064
+ #. translators: %s: order count
11065
+ #: includes/admin/class-wc-admin-post-types.php:207
11066
+ #, php-format
11067
+ msgid "%s order permanently deleted."
11068
+ msgid_plural "%s orders permanently deleted."
11069
+ msgstr[0] ""
11070
+ msgstr[1] ""
11071
 
11072
+ #. translators: %s: order count
11073
+ #: includes/admin/class-wc-admin-post-types.php:209
11074
+ #, php-format
11075
+ msgid "%s order moved to the Trash."
11076
+ msgid_plural "%s orders moved to the Trash."
11077
+ msgstr[0] ""
11078
+ msgstr[1] ""
11079
 
11080
+ #. translators: %s: order count
11081
+ #: includes/admin/class-wc-admin-post-types.php:211
11082
+ #, php-format
11083
+ msgid "%s order restored from the Trash."
11084
+ msgid_plural "%s orders restored from the Trash."
11085
+ msgstr[0] ""
11086
+ msgstr[1] ""
11087
 
11088
+ #. translators: %s: coupon count
11089
+ #: includes/admin/class-wc-admin-post-types.php:216
11090
+ #, php-format
11091
+ msgid "%s coupon updated."
11092
+ msgid_plural "%s coupons updated."
11093
+ msgstr[0] ""
11094
+ msgstr[1] ""
11095
 
11096
+ #. translators: %s: coupon count
11097
+ #: includes/admin/class-wc-admin-post-types.php:218
11098
+ #, php-format
11099
+ msgid "%s coupon not updated, somebody is editing it."
11100
+ msgid_plural "%s coupons not updated, somebody is editing them."
11101
+ msgstr[0] ""
11102
+ msgstr[1] ""
11103
 
11104
+ #. translators: %s: coupon count
11105
+ #: includes/admin/class-wc-admin-post-types.php:220
11106
+ #, php-format
11107
+ msgid "%s coupon permanently deleted."
11108
+ msgid_plural "%s coupons permanently deleted."
11109
+ msgstr[0] ""
11110
+ msgstr[1] ""
11111
 
11112
+ #. translators: %s: coupon count
11113
+ #: includes/admin/class-wc-admin-post-types.php:222
11114
+ #, php-format
11115
+ msgid "%s coupon moved to the Trash."
11116
+ msgid_plural "%s coupons moved to the Trash."
11117
+ msgstr[0] ""
11118
+ msgstr[1] ""
11119
 
11120
+ #. translators: %s: coupon count
11121
+ #: includes/admin/class-wc-admin-post-types.php:224
11122
+ #, php-format
11123
+ msgid "%s coupon restored from the Trash."
11124
+ msgid_plural "%s coupons restored from the Trash."
11125
+ msgstr[0] ""
11126
+ msgstr[1] ""
11127
 
11128
+ #: includes/admin/class-wc-admin-post-types.php:702
11129
+ msgid "Description (optional)"
11130
  msgstr ""
11131
 
11132
+ #: includes/admin/class-wc-admin-post-types.php:739
11133
+ msgid "Catalog visibility:"
11134
  msgstr ""
11135
 
11136
+ #: includes/admin/class-wc-admin-post-types.php:759
11137
+ msgid "This setting determines which shop pages products will be listed on."
11138
  msgstr ""
11139
 
11140
+ #: includes/admin/class-wc-admin-post-types.php:765
11141
+ msgid "This is a featured product"
11142
  msgstr ""
11143
 
11144
+ #: includes/admin/class-wc-admin-post-types.php:768
11145
+ msgid "OK"
11146
  msgstr ""
11147
 
11148
+ #: includes/admin/class-wc-admin-post-types.php:848
11149
+ #, php-format
11150
+ msgid "This is the WooCommerce shop page. The shop page is a special archive that lists your products. <a href=\"%s\">You can read more about this here</a>."
11151
  msgstr ""
11152
 
11153
+ #: includes/admin/class-wc-admin-post-types.php:861
11154
+ msgid "Shop Page"
11155
  msgstr ""
11156
 
11157
+ #: includes/admin/class-wc-admin-post-types.php:865
11158
+ msgid "Cart Page"
11159
  msgstr ""
11160
 
11161
+ #: includes/admin/class-wc-admin-post-types.php:869
11162
+ msgid "Checkout Page"
 
11163
  msgstr ""
11164
 
11165
+ #: includes/admin/class-wc-admin-post-types.php:873
11166
+ msgid "My Account Page"
 
11167
  msgstr ""
11168
 
11169
+ #: includes/admin/class-wc-admin-post-types.php:877
11170
+ msgid "Terms and Conditions Page"
11171
  msgstr ""
11172
 
11173
+ #: includes/admin/class-wc-admin-log-table-list.php:44 includes/admin/class-wc-admin-log-table-list.php:144
11174
+ msgid "Emergency"
11175
  msgstr ""
11176
 
11177
+ #: includes/admin/class-wc-admin-log-table-list.php:48 includes/admin/class-wc-admin-log-table-list.php:145
11178
+ msgid "Alert"
11179
  msgstr ""
11180
 
11181
+ #: includes/admin/class-wc-admin-log-table-list.php:52 includes/admin/class-wc-admin-log-table-list.php:146
11182
+ msgid "Critical"
11183
  msgstr ""
11184
 
11185
+ #: includes/admin/class-wc-admin-log-table-list.php:56 includes/admin/class-wc-admin-log-table-list.php:147
11186
+ msgid "Error"
11187
  msgstr ""
11188
 
11189
+ #: includes/admin/class-wc-admin-log-table-list.php:60 includes/admin/class-wc-admin-log-table-list.php:148
11190
+ msgid "Warning"
11191
  msgstr ""
11192
 
11193
+ #: includes/admin/class-wc-admin-log-table-list.php:64 includes/admin/class-wc-admin-log-table-list.php:149
11194
+ msgid "Notice"
11195
  msgstr ""
11196
 
11197
+ #: includes/admin/class-wc-admin-log-table-list.php:68 includes/admin/class-wc-admin-log-table-list.php:150
11198
+ msgid "Info"
11199
  msgstr ""
11200
 
11201
+ #: includes/admin/class-wc-admin-log-table-list.php:72 includes/admin/class-wc-admin-log-table-list.php:151
11202
+ msgid "Debug"
11203
  msgstr ""
11204
 
11205
+ #: includes/admin/class-wc-admin-log-table-list.php:78
11206
+ msgid "Filter by level"
 
11207
  msgstr ""
11208
 
11209
+ #: includes/admin/class-wc-admin-log-table-list.php:80
11210
+ msgid "All levels"
11211
  msgstr ""
11212
 
11213
+ #: includes/admin/class-wc-admin-log-table-list.php:104
11214
+ msgid "Level"
11215
  msgstr ""
11216
 
11217
+ #: includes/admin/class-wc-admin-log-table-list.php:105
11218
+ msgid "Message"
11219
  msgstr ""
11220
 
11221
+ #: includes/admin/class-wc-admin-log-table-list.php:106
11222
+ msgid "Source"
 
11223
  msgstr ""
11224
 
11225
+ #: includes/admin/class-wc-admin-log-table-list.php:240
11226
+ msgid "Filter by source"
 
11227
  msgstr ""
11228
 
11229
+ #: includes/admin/class-wc-admin-log-table-list.php:242
11230
+ msgid "All sources"
 
11231
  msgstr ""
11232
 
11233
+ #: includes/admin/class-wc-admin-meta-boxes.php:121 includes/admin/views/html-bulk-edit-product.php:15 includes/admin/views/html-quick-edit-product.php:14
11234
+ msgid "Product data"
 
11235
  msgstr ""
11236
 
11237
+ #: includes/admin/class-wc-admin-meta-boxes.php:122
11238
+ msgid "Product gallery"
 
11239
  msgstr ""
11240
 
11241
+ #: includes/admin/class-wc-admin-meta-boxes.php:127
11242
+ #, php-format
11243
+ msgid "%s data"
 
11244
  msgstr ""
11245
 
11246
+ #: includes/admin/class-wc-admin-meta-boxes.php:129
11247
+ #, php-format
11248
+ msgid "%s notes"
11249
  msgstr ""
11250
 
11251
+ #: includes/admin/class-wc-admin-meta-boxes.php:130
11252
+ msgid "Downloadable product permissions"
 
 
11253
  msgstr ""
11254
 
11255
+ #: includes/admin/class-wc-admin-meta-boxes.php:130
11256
+ msgid "Note: Permissions for order items will automatically be granted when the order status changes to processing/completed."
 
11257
  msgstr ""
11258
 
11259
+ #: includes/admin/class-wc-admin-meta-boxes.php:131
11260
+ #, php-format
11261
+ msgid "%s actions"
11262
  msgstr ""
11263
 
11264
+ #: includes/admin/class-wc-admin-meta-boxes.php:135
11265
+ msgid "Coupon data"
11266
+ msgstr ""
 
 
 
11267
 
11268
+ #: includes/admin/class-wc-admin-meta-boxes.php:139
11269
+ msgid "Rating"
 
11270
  msgstr ""
11271
 
11272
+ #: includes/data-stores/class-wc-customer-data-store.php:147 includes/data-stores/class-wc-customer-data-store.php:152
11273
+ msgid "Invalid customer."
 
11274
  msgstr ""
11275
 
11276
+ #: includes/data-stores/class-wc-payment-token-data-store.php:44 includes/data-stores/class-wc-payment-token-data-store.php:88
11277
+ msgid "Invalid or missing payment token fields."
 
11278
  msgstr ""
11279
 
11280
+ #: includes/data-stores/class-wc-payment-token-data-store.php:174
11281
+ msgid "Invalid payment token."
 
 
11282
  msgstr ""
11283
 
11284
+ #. translators: %s: Order date
11285
+ #: includes/data-stores/abstract-wc-order-data-store-cpt.php:230
11286
+ #, php-format
11287
+ msgid "Order &ndash; %s"
11288
  msgstr ""
11289
 
11290
+ #: includes/data-stores/class-wc-coupon-data-store-cpt.php:106
11291
+ msgid "Invalid coupon."
11292
  msgstr ""
11293
 
11294
+ #: includes/data-stores/class-wc-customer-download-data-store.php:83 includes/data-stores/class-wc-customer-download-data-store.php:95
11295
+ msgid "Invalid download."
11296
  msgstr ""
11297
 
11298
+ #: includes/data-stores/class-wc-webhook-data-store.php:106
11299
+ msgid "Invalid webhook."
11300
  msgstr ""
11301
 
11302
+ #: includes/data-stores/class-wc-product-data-store-cpt.php:149
11303
+ msgid "Invalid product."
11304
  msgstr ""
11305
 
11306
+ #: includes/data-stores/abstract-wc-order-item-type-data-store.php:132
11307
+ msgid "Invalid order item."
 
11308
  msgstr ""
11309
 
11310
+ #: includes/data-stores/class-wc-order-data-store-cpt.php:426
11311
+ msgid "Invalid customer query."
 
11312
  msgstr ""
11313
 
11314
+ #: includes/data-stores/class-wc-customer-download-log-data-store.php:67
11315
+ msgid "Unable to insert download log entry in database."
11316
  msgstr ""
11317
 
11318
+ #: includes/data-stores/class-wc-customer-download-log-data-store.php:84
11319
+ msgid "Invalid download log: no ID."
 
11320
  msgstr ""
11321
 
11322
+ #: includes/data-stores/class-wc-customer-download-log-data-store.php:93
11323
+ msgid "Invalid download log: not found."
11324
  msgstr ""
11325
 
11326
+ #. Translators: This is a comma-separated list of very common words that should
11327
+ #. be excluded from a search, like a, an, and the. These are usually called
11328
+ #. "stopwords". You should not simply translate these individual words into
11329
+ #. your language. Instead, look for and provide commonly accepted stopwords in
11330
+ #. your language.
11331
+ #: includes/data-stores/class-wc-data-store-wp.php:483
11332
+ msgctxt "Comma-separated list of search stopwords in your language"
11333
+ msgid "about,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,to,was,what,when,where,who,will,with,www"
11334
  msgstr ""
11335
 
11336
+ #: i18n/states/AU.php:14
11337
+ msgid "Australian Capital Territory"
 
 
11338
  msgstr ""
11339
 
11340
+ #: i18n/states/AU.php:15
11341
+ msgid "New South Wales"
11342
  msgstr ""
11343
 
11344
+ #: i18n/states/AU.php:16
11345
+ msgid "Northern Territory"
11346
  msgstr ""
11347
 
11348
+ #: i18n/states/AU.php:17
11349
+ msgid "Queensland"
11350
  msgstr ""
11351
 
11352
+ #: i18n/states/AU.php:18
11353
+ msgid "South Australia"
11354
  msgstr ""
11355
 
11356
+ #: i18n/states/AU.php:19
11357
+ msgid "Tasmania"
11358
  msgstr ""
11359
 
11360
+ #: i18n/states/AU.php:20
11361
+ msgid "Victoria"
 
 
11362
  msgstr ""
11363
 
11364
+ #: i18n/states/AU.php:21
11365
+ msgid "Western Australia"
 
 
11366
  msgstr ""
11367
 
11368
+ #: i18n/states/PH.php:14
11369
+ msgid "Abra"
11370
  msgstr ""
11371
 
11372
+ #: i18n/states/PH.php:15
11373
+ msgid "Agusan del Norte"
11374
  msgstr ""
11375
 
11376
+ #: i18n/states/PH.php:16
11377
+ msgid "Agusan del Sur"
11378
  msgstr ""
11379
 
11380
+ #: i18n/states/PH.php:17
11381
+ msgid "Aklan"
11382
  msgstr ""
11383
 
11384
+ #: i18n/states/PH.php:18
11385
+ msgid "Albay"
11386
  msgstr ""
11387
 
11388
+ #: i18n/states/PH.php:19
11389
+ msgid "Antique"
11390
  msgstr ""
11391
 
11392
+ #: i18n/states/PH.php:20
11393
+ msgid "Apayao"
 
11394
  msgstr ""
11395
 
11396
+ #: i18n/states/PH.php:21
11397
+ msgid "Aurora"
 
11398
  msgstr ""
11399
 
11400
+ #: i18n/states/PH.php:22
11401
+ msgid "Basilan"
 
11402
  msgstr ""
11403
 
11404
+ #: i18n/states/PH.php:23
11405
+ msgid "Bataan"
11406
  msgstr ""
11407
 
11408
+ #: i18n/states/PH.php:24
11409
+ msgid "Batanes"
11410
  msgstr ""
11411
 
11412
+ #: i18n/states/PH.php:25
11413
+ msgid "Batangas"
11414
  msgstr ""
11415
 
11416
+ #: i18n/states/PH.php:26
11417
+ msgid "Benguet"
11418
  msgstr ""
11419
 
11420
+ #: i18n/states/PH.php:27
11421
+ msgid "Biliran"
11422
  msgstr ""
11423
 
11424
+ #: i18n/states/PH.php:28
11425
+ msgid "Bohol"
11426
  msgstr ""
11427
 
11428
+ #: i18n/states/PH.php:29
11429
+ msgid "Bukidnon"
11430
  msgstr ""
11431
 
11432
+ #: i18n/states/PH.php:30
11433
+ msgid "Bulacan"
 
11434
  msgstr ""
11435
 
11436
+ #: i18n/states/PH.php:31
11437
+ msgid "Cagayan"
11438
  msgstr ""
11439
 
11440
+ #: i18n/states/PH.php:32
11441
+ msgid "Camarines Norte"
11442
  msgstr ""
11443
 
11444
+ #: i18n/states/PH.php:33
11445
+ msgid "Camarines Sur"
11446
  msgstr ""
11447
 
11448
+ #: i18n/states/PH.php:34
11449
+ msgid "Camiguin"
 
 
11450
  msgstr ""
11451
 
11452
+ #: i18n/states/PH.php:35
11453
+ msgid "Capiz"
11454
  msgstr ""
11455
 
11456
+ #: i18n/states/PH.php:36
11457
+ msgid "Catanduanes"
11458
  msgstr ""
11459
 
11460
+ #: i18n/states/PH.php:37
11461
+ msgid "Cavite"
11462
  msgstr ""
11463
 
11464
+ #: i18n/states/PH.php:38
11465
+ msgid "Cebu"
11466
  msgstr ""
11467
 
11468
+ #: i18n/states/PH.php:39
11469
+ msgid "Compostela Valley"
 
 
11470
  msgstr ""
11471
 
11472
+ #: i18n/states/PH.php:40
11473
+ msgid "Cotabato"
11474
  msgstr ""
11475
 
11476
+ #: i18n/states/PH.php:41
11477
+ msgid "Davao del Norte"
11478
  msgstr ""
11479
 
11480
+ #: i18n/states/PH.php:42
11481
+ msgid "Davao del Sur"
11482
  msgstr ""
11483
 
11484
+ #: i18n/states/PH.php:43
11485
+ msgid "Davao Occidental"
 
 
 
11486
  msgstr ""
11487
 
11488
+ #: i18n/states/PH.php:44
11489
+ msgid "Davao Oriental"
11490
  msgstr ""
11491
 
11492
+ #: i18n/states/PH.php:45
11493
+ msgid "Dinagat Islands"
 
 
 
11494
  msgstr ""
11495
 
11496
+ #: i18n/states/PH.php:46
11497
+ msgid "Eastern Samar"
 
 
11498
  msgstr ""
11499
 
11500
+ #: i18n/states/PH.php:47
11501
+ msgid "Guimaras"
 
 
11502
  msgstr ""
11503
 
11504
+ #: i18n/states/PH.php:48
11505
+ msgid "Ifugao"
11506
  msgstr ""
11507
 
11508
+ #: i18n/states/PH.php:49
11509
+ msgid "Ilocos Norte"
11510
  msgstr ""
11511
 
11512
+ #: i18n/states/PH.php:50
11513
+ msgid "Ilocos Sur"
11514
  msgstr ""
11515
 
11516
+ #: i18n/states/PH.php:51
11517
+ msgid "Iloilo"
 
 
11518
  msgstr ""
11519
 
11520
+ #: i18n/states/PH.php:52
11521
+ msgid "Isabela"
 
 
 
 
 
11522
  msgstr ""
11523
 
11524
+ #: i18n/states/PH.php:53
11525
+ msgid "Kalinga"
11526
  msgstr ""
11527
 
11528
+ #: i18n/states/PH.php:54
11529
+ msgid "La Union"
 
 
 
11530
  msgstr ""
11531
 
11532
+ #: i18n/states/PH.php:55
11533
+ msgid "Laguna"
 
 
 
 
 
 
11534
  msgstr ""
11535
 
11536
+ #: i18n/states/PH.php:56
11537
+ msgid "Lanao del Norte"
11538
  msgstr ""
11539
 
11540
+ #: i18n/states/PH.php:57
11541
+ msgid "Lanao del Sur"
 
 
 
11542
  msgstr ""
11543
 
11544
+ #: i18n/states/PH.php:58
11545
+ msgid "Leyte"
11546
  msgstr ""
11547
 
11548
+ #: i18n/states/PH.php:59
11549
+ msgid "Maguindanao"
 
 
 
11550
  msgstr ""
11551
 
11552
+ #: i18n/states/PH.php:60
11553
+ msgid "Marinduque"
11554
  msgstr ""
11555
 
11556
+ #: i18n/states/PH.php:61
11557
+ msgid "Masbate"
 
 
11558
  msgstr ""
11559
 
11560
+ #: i18n/states/PH.php:62
11561
+ msgid "Misamis Occidental"
11562
  msgstr ""
11563
 
11564
+ #: i18n/states/PH.php:63
11565
+ msgid "Misamis Oriental"
 
 
11566
  msgstr ""
11567
 
11568
+ #: i18n/states/PH.php:64
11569
+ msgid "Mountain Province"
11570
  msgstr ""
11571
 
11572
+ #: i18n/states/PH.php:65
11573
+ msgid "Negros Occidental"
 
 
11574
  msgstr ""
11575
 
11576
+ #: i18n/states/PH.php:66
11577
+ msgid "Negros Oriental"
11578
  msgstr ""
11579
 
11580
+ #: i18n/states/PH.php:67
11581
+ msgid "Northern Samar"
 
 
11582
  msgstr ""
11583
 
11584
+ #: i18n/states/PH.php:68
11585
+ msgid "Nueva Ecija"
 
11586
  msgstr ""
11587
 
11588
+ #: i18n/states/PH.php:69
11589
+ msgid "Nueva Vizcaya"
 
11590
  msgstr ""
11591
 
11592
+ #: i18n/states/PH.php:70
11593
+ msgid "Occidental Mindoro"
 
 
11594
  msgstr ""
11595
 
11596
+ #: i18n/states/PH.php:71
11597
+ msgid "Oriental Mindoro"
11598
  msgstr ""
11599
 
11600
+ #: i18n/states/PH.php:72
11601
+ msgid "Palawan"
 
 
 
11602
  msgstr ""
11603
 
11604
+ #: i18n/states/PH.php:73
11605
+ msgid "Pampanga"
11606
  msgstr ""
11607
 
11608
+ #: i18n/states/PH.php:74
11609
+ msgid "Pangasinan"
11610
  msgstr ""
11611
 
11612
+ #: i18n/states/PH.php:75
11613
+ msgid "Quezon"
 
 
11614
  msgstr ""
11615
 
11616
+ #: i18n/states/PH.php:76
11617
+ msgid "Quirino"
 
 
11618
  msgstr ""
11619
 
11620
+ #: i18n/states/PH.php:77
11621
+ msgid "Rizal"
11622
  msgstr ""
11623
 
11624
+ #: i18n/states/PH.php:78
11625
+ msgid "Romblon"
11626
  msgstr ""
11627
 
11628
+ #: i18n/states/PH.php:79
11629
+ msgid "Samar"
 
 
 
11630
  msgstr ""
11631
 
11632
+ #: i18n/states/PH.php:80
11633
+ msgid "Sarangani"
11634
  msgstr ""
11635
 
11636
+ #: i18n/states/PH.php:81
11637
+ msgid "Siquijor"
11638
  msgstr ""
11639
 
11640
+ #: i18n/states/PH.php:82
11641
+ msgid "Sorsogon"
 
 
11642
  msgstr ""
11643
 
11644
+ #: i18n/states/PH.php:83
11645
+ msgid "South Cotabato"
 
11646
  msgstr ""
11647
 
11648
+ #: i18n/states/PH.php:84
11649
+ msgid "Southern Leyte"
11650
  msgstr ""
11651
 
11652
+ #: i18n/states/PH.php:85
11653
+ msgid "Sultan Kudarat"
 
11654
  msgstr ""
11655
 
11656
+ #: i18n/states/PH.php:86
11657
+ msgid "Sulu"
11658
  msgstr ""
11659
 
11660
+ #: i18n/states/PH.php:87
11661
+ msgid "Surigao del Norte"
 
 
 
11662
  msgstr ""
11663
 
11664
+ #: i18n/states/PH.php:88
11665
+ msgid "Surigao del Sur"
11666
  msgstr ""
11667
 
11668
+ #: i18n/states/PH.php:89
11669
+ msgid "Tarlac"
11670
  msgstr ""
11671
 
11672
+ #: i18n/states/PH.php:90
11673
+ msgid "Tawi-Tawi"
11674
  msgstr ""
11675
 
11676
+ #: i18n/states/PH.php:91
11677
+ msgid "Zambales"
11678
  msgstr ""
11679
 
11680
+ #: i18n/states/PH.php:92
11681
+ msgid "Zamboanga del Norte"
11682
  msgstr ""
11683
 
11684
+ #: i18n/states/PH.php:93
11685
+ msgid "Zamboanga del Sur"
11686
  msgstr ""
11687
 
11688
+ #: i18n/states/PH.php:94
11689
+ msgid "Zamboanga Sibugay"
 
 
 
11690
  msgstr ""
11691
 
11692
+ #: i18n/states/PH.php:95
11693
+ msgid "Metro Manila"
11694
  msgstr ""
11695
 
11696
+ #: i18n/states/LR.php:14
11697
+ msgid "Bomi"
 
11698
  msgstr ""
11699
 
11700
+ #: i18n/states/LR.php:15
11701
+ msgid "Bong"
11702
  msgstr ""
11703
 
11704
+ #: i18n/states/LR.php:16
11705
+ msgid "Gbarpolu"
11706
  msgstr ""
11707
 
11708
+ #: i18n/states/LR.php:17
11709
+ msgid "Grand Bassa"
11710
  msgstr ""
11711
 
11712
+ #: i18n/states/LR.php:18
11713
+ msgid "Grand Cape Mount"
11714
  msgstr ""
11715
 
11716
+ #: i18n/states/LR.php:19
11717
+ msgid "Grand Gedeh"
 
11718
  msgstr ""
11719
 
11720
+ #: i18n/states/LR.php:20
11721
+ msgid "Grand Kru"
11722
  msgstr ""
11723
 
11724
+ #: i18n/states/LR.php:21
11725
+ msgid "Lofa"
 
 
 
11726
  msgstr ""
11727
 
11728
+ #: i18n/states/LR.php:22
11729
+ msgid "Margibi"
11730
  msgstr ""
11731
 
11732
+ #: i18n/states/LR.php:23 i18n/states/US.php:34
11733
+ msgid "Maryland"
11734
  msgstr ""
11735
 
11736
+ #: i18n/states/LR.php:24
11737
+ msgid "Montserrado"
 
 
11738
  msgstr ""
11739
 
11740
+ #: i18n/states/LR.php:25
11741
+ msgid "Nimba"
 
 
11742
  msgstr ""
11743
 
11744
+ #: i18n/states/LR.php:26
11745
+ msgid "Rivercess"
11746
  msgstr ""
11747
 
11748
+ #: i18n/states/LR.php:27
11749
+ msgid "River Gee"
11750
  msgstr ""
11751
 
11752
+ #: i18n/states/LR.php:28
11753
+ msgid "Sinoe"
11754
  msgstr ""
11755
 
11756
+ #: i18n/states/ID.php:14
11757
+ msgid "Daerah Istimewa Aceh"
11758
  msgstr ""
11759
 
11760
+ #: i18n/states/ID.php:15
11761
+ msgid "Sumatera Utara"
 
 
11762
  msgstr ""
11763
 
11764
+ #: i18n/states/ID.php:16
11765
+ msgid "Sumatera Barat"
11766
  msgstr ""
11767
 
11768
+ #: i18n/states/ID.php:17
11769
+ msgid "Riau"
11770
  msgstr ""
11771
 
11772
+ #: i18n/states/ID.php:18
11773
+ msgid "Kepulauan Riau"
11774
  msgstr ""
11775
 
11776
+ #: i18n/states/ID.php:19
11777
+ msgid "Jambi"
11778
  msgstr ""
11779
 
11780
+ #: i18n/states/ID.php:20
11781
+ msgid "Sumatera Selatan"
11782
  msgstr ""
11783
 
11784
+ #: i18n/states/ID.php:21
11785
+ msgid "Bangka Belitung"
11786
  msgstr ""
11787
 
11788
+ #: i18n/states/ID.php:22
11789
+ msgid "Bengkulu"
 
 
11790
  msgstr ""
11791
 
11792
+ #: i18n/states/ID.php:23
11793
+ msgid "Lampung"
11794
  msgstr ""
11795
 
11796
+ #: i18n/states/ID.php:24
11797
+ msgid "DKI Jakarta"
 
 
11798
  msgstr ""
11799
 
11800
+ #: i18n/states/ID.php:25
11801
+ msgid "Jawa Barat"
11802
  msgstr ""
11803
 
11804
+ #: i18n/states/ID.php:26
11805
+ msgid "Banten"
11806
  msgstr ""
11807
 
11808
+ #: i18n/states/ID.php:27
11809
+ msgid "Jawa Tengah"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11810
  msgstr ""
11811
 
11812
+ #: i18n/states/ID.php:28
11813
+ msgid "Jawa Timur"
11814
  msgstr ""
11815
 
11816
+ #: i18n/states/ID.php:29
11817
+ msgid "Daerah Istimewa Yogyakarta"
 
11818
  msgstr ""
11819
 
11820
+ #: i18n/states/ID.php:30
11821
+ msgid "Bali"
11822
  msgstr ""
11823
 
11824
+ #: i18n/states/ID.php:31
11825
+ msgid "Nusa Tenggara Barat"
 
11826
  msgstr ""
11827
 
11828
+ #: i18n/states/ID.php:32
11829
+ msgid "Nusa Tenggara Timur"
11830
  msgstr ""
11831
 
11832
+ #: i18n/states/ID.php:33
11833
+ msgid "Kalimantan Barat"
 
11834
  msgstr ""
11835
 
11836
+ #: i18n/states/ID.php:34
11837
+ msgid "Kalimantan Tengah"
11838
  msgstr ""
11839
 
11840
+ #: i18n/states/ID.php:35
11841
+ msgid "Kalimantan Timur"
 
11842
  msgstr ""
11843
 
11844
+ #: i18n/states/ID.php:36
11845
+ msgid "Kalimantan Selatan"
11846
  msgstr ""
11847
 
11848
+ #: i18n/states/ID.php:37
11849
+ msgid "Kalimantan Utara"
 
 
 
11850
  msgstr ""
11851
 
11852
+ #: i18n/states/ID.php:38
11853
+ msgid "Sulawesi Utara"
11854
  msgstr ""
11855
 
11856
+ #: i18n/states/ID.php:39
11857
+ msgid "Sulawesi Tengah"
11858
  msgstr ""
11859
 
11860
+ #: i18n/states/ID.php:40
11861
+ msgid "Sulawesi Tenggara"
11862
  msgstr ""
11863
 
11864
+ #: i18n/states/ID.php:41
11865
+ msgid "Sulawesi Barat"
 
11866
  msgstr ""
11867
 
11868
+ #: i18n/states/ID.php:42
11869
+ msgid "Sulawesi Selatan"
 
11870
  msgstr ""
11871
 
11872
+ #: i18n/states/ID.php:43
11873
+ msgid "Gorontalo"
11874
  msgstr ""
11875
 
11876
+ #: i18n/states/ID.php:44
11877
+ msgid "Maluku"
 
11878
  msgstr ""
11879
 
11880
+ #: i18n/states/ID.php:45
11881
+ msgid "Maluku Utara"
11882
  msgstr ""
11883
 
11884
+ #: i18n/states/ID.php:46
11885
+ msgid "Papua"
11886
  msgstr ""
11887
 
11888
+ #: i18n/states/ID.php:47
11889
+ msgid "Papua Barat"
11890
  msgstr ""
11891
 
11892
+ #: i18n/states/NP.php:14
11893
+ msgid "Bagmati"
 
 
11894
  msgstr ""
11895
 
11896
+ #: i18n/states/NP.php:15
11897
+ msgid "Bheri"
11898
  msgstr ""
11899
 
11900
+ #: i18n/states/NP.php:16
11901
+ msgid "Dhaulagiri"
11902
  msgstr ""
11903
 
11904
+ #: i18n/states/NP.php:17
11905
+ msgid "Gandaki"
11906
  msgstr ""
11907
 
11908
+ #: i18n/states/NP.php:18
11909
+ msgid "Janakpur"
11910
  msgstr ""
11911
 
11912
+ #: i18n/states/NP.php:19
11913
+ msgid "Karnali"
 
 
11914
  msgstr ""
11915
 
11916
+ #: i18n/states/NP.php:20
11917
+ msgid "Koshi"
11918
  msgstr ""
11919
 
11920
+ #: i18n/states/NP.php:21
11921
+ msgid "Lumbini"
11922
  msgstr ""
11923
 
11924
+ #: i18n/states/NP.php:22
11925
+ msgid "Mahakali"
11926
+ msgstr ""
11927
+
11928
+ #: i18n/states/NP.php:23
11929
+ msgid "Mechi"
11930
  msgstr ""
11931
 
11932
+ #: i18n/states/NP.php:24
11933
+ msgid "Narayani"
11934
  msgstr ""
11935
 
11936
+ #: i18n/states/NP.php:25
11937
+ msgid "Rapti"
11938
  msgstr ""
11939
 
11940
+ #: i18n/states/NP.php:26
11941
+ msgid "Sagarmatha"
 
11942
  msgstr ""
11943
 
11944
+ #: i18n/states/NP.php:27
11945
+ msgid "Seti"
 
11946
  msgstr ""
11947
 
11948
+ #: i18n/states/IE.php:14
11949
+ msgid "Carlow"
11950
  msgstr ""
11951
 
11952
+ #: i18n/states/IE.php:15
11953
+ msgid "Cavan"
 
 
11954
  msgstr ""
11955
 
11956
+ #: i18n/states/IE.php:16
11957
+ msgid "Clare"
11958
  msgstr ""
11959
 
11960
+ #: i18n/states/IE.php:17
11961
+ msgid "Cork"
11962
  msgstr ""
11963
 
11964
+ #: i18n/states/IE.php:18
11965
+ msgid "Donegal"
11966
  msgstr ""
11967
 
11968
+ #: i18n/states/IE.php:19
11969
+ msgid "Dublin"
11970
  msgstr ""
11971
 
11972
+ #: i18n/states/IE.php:20
11973
+ msgid "Galway"
11974
  msgstr ""
11975
 
11976
+ #: i18n/states/IE.php:21
11977
+ msgid "Kerry"
11978
  msgstr ""
11979
 
11980
+ #: i18n/states/IE.php:22
11981
+ msgid "Kildare"
 
 
 
11982
  msgstr ""
11983
 
11984
+ #: i18n/states/IE.php:23
11985
+ msgid "Kilkenny"
11986
  msgstr ""
11987
 
11988
+ #: i18n/states/IE.php:24
11989
+ msgid "Laois"
11990
  msgstr ""
11991
 
11992
+ #: i18n/states/IE.php:25
11993
+ msgid "Leitrim"
11994
  msgstr ""
11995
 
11996
+ #: i18n/states/IE.php:26
11997
+ msgid "Limerick"
11998
  msgstr ""
11999
 
12000
+ #: i18n/states/IE.php:27
12001
+ msgid "Longford"
12002
  msgstr ""
12003
 
12004
+ #: i18n/states/IE.php:28
12005
+ msgid "Louth"
12006
  msgstr ""
12007
 
12008
+ #: i18n/states/IE.php:29
12009
+ msgid "Mayo"
12010
  msgstr ""
12011
 
12012
+ #: i18n/states/IE.php:30
12013
+ msgid "Meath"
 
 
12014
  msgstr ""
12015
 
12016
+ #: i18n/states/IE.php:31
12017
+ msgid "Monaghan"
12018
  msgstr ""
12019
 
12020
+ #: i18n/states/IE.php:32
12021
+ msgid "Offaly"
12022
  msgstr ""
12023
 
12024
+ #: i18n/states/IE.php:33
12025
+ msgid "Roscommon"
 
12026
  msgstr ""
12027
 
12028
+ #: i18n/states/IE.php:34
12029
+ msgid "Sligo"
 
 
12030
  msgstr ""
12031
 
12032
+ #: i18n/states/IE.php:35
12033
+ msgid "Tipperary"
 
12034
  msgstr ""
12035
 
12036
+ #: i18n/states/IE.php:36
12037
+ msgid "Waterford"
12038
  msgstr ""
12039
 
12040
+ #: i18n/states/IE.php:37
12041
+ msgid "Westmeath"
12042
  msgstr ""
12043
 
12044
+ #: i18n/states/IE.php:38
12045
+ msgid "Wexford"
12046
  msgstr ""
12047
 
12048
+ #: i18n/states/IE.php:39
12049
+ msgid "Wicklow"
12050
  msgstr ""
12051
 
12052
+ #: i18n/states/IR.php:14
12053
+ msgid "Khuzestan (خوزستان)"
12054
  msgstr ""
12055
 
12056
+ #: i18n/states/IR.php:15
12057
+ msgid "Tehran (تهران)"
 
12058
  msgstr ""
12059
 
12060
+ #: i18n/states/IR.php:16
12061
+ msgid "Ilaam (ایلام)"
12062
  msgstr ""
12063
 
12064
+ #: i18n/states/IR.php:17
12065
+ msgid "Bushehr (بوشهر)"
 
12066
  msgstr ""
12067
 
12068
+ #: i18n/states/IR.php:18
12069
+ msgid "Ardabil (اردبیل)"
12070
  msgstr ""
12071
 
12072
+ #: i18n/states/IR.php:19
12073
+ msgid "Isfahan (اصفهان)"
 
12074
  msgstr ""
12075
 
12076
+ #: i18n/states/IR.php:20
12077
+ msgid "Yazd (یزد)"
12078
  msgstr ""
12079
 
12080
+ #: i18n/states/IR.php:21
12081
+ msgid "Kermanshah (کرمانشاه)"
 
 
 
12082
  msgstr ""
12083
 
12084
+ #: i18n/states/IR.php:22
12085
+ msgid "Kerman (کرمان)"
12086
  msgstr ""
12087
 
12088
+ #: i18n/states/IR.php:23
12089
+ msgid "Hamadan (همدان)"
 
 
12090
  msgstr ""
12091
 
12092
+ #: i18n/states/IR.php:24
12093
+ msgid "Ghazvin (قزوین)"
 
12094
  msgstr ""
12095
 
12096
+ #: i18n/states/IR.php:25
12097
+ msgid "Zanjan (زنجان)"
12098
  msgstr ""
12099
 
12100
+ #: i18n/states/IR.php:26
12101
+ msgid "Luristan (لرستان)"
12102
  msgstr ""
12103
 
12104
+ #: i18n/states/IR.php:27
12105
+ msgid "Alborz (البرز)"
 
 
 
12106
  msgstr ""
12107
 
12108
+ #: i18n/states/IR.php:28
12109
+ msgid "East Azarbaijan (آذربایجان شرقی)"
12110
  msgstr ""
12111
 
12112
+ #: i18n/states/IR.php:29
12113
+ msgid "West Azarbaijan (آذربایجان غربی)"
12114
  msgstr ""
12115
 
12116
+ #: i18n/states/IR.php:30
12117
+ msgid "Chaharmahal and Bakhtiari (چهارمحال و بختیاری)"
12118
  msgstr ""
12119
 
12120
+ #: i18n/states/IR.php:31
12121
+ msgid "South Khorasan (خراسان جنوبی)"
 
 
12122
  msgstr ""
12123
 
12124
+ #: i18n/states/IR.php:32
12125
+ msgid "Razavi Khorasan (خراسان رضوی)"
12126
  msgstr ""
12127
 
12128
+ #: i18n/states/IR.php:33
12129
+ msgid "North Khorasan (خراسان جنوبی)"
12130
  msgstr ""
12131
 
12132
+ #: i18n/states/IR.php:34
12133
+ msgid "Semnan (سمنان)"
12134
  msgstr ""
12135
 
12136
+ #: i18n/states/IR.php:35
12137
+ msgid "Fars (فارس)"
12138
  msgstr ""
12139
 
12140
+ #: i18n/states/IR.php:36
12141
+ msgid "Qom (قم)"
12142
  msgstr ""
12143
 
12144
+ #: i18n/states/IR.php:37
12145
+ msgid "Kurdistan / کردستان)"
12146
  msgstr ""
12147
 
12148
+ #: i18n/states/IR.php:38
12149
+ msgid "Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)"
12150
  msgstr ""
12151
 
12152
+ #: i18n/states/IR.php:39
12153
+ msgid "Golestan (گلستان)"
12154
  msgstr ""
12155
 
12156
+ #: i18n/states/IR.php:40
12157
+ msgid "Gilan (گیلان)"
 
 
 
12158
  msgstr ""
12159
 
12160
+ #: i18n/states/IR.php:41
12161
+ msgid "Mazandaran (مازندران)"
12162
  msgstr ""
12163
 
12164
+ #: i18n/states/IR.php:42
12165
+ msgid "Markazi (مرکزی)"
12166
  msgstr ""
12167
 
12168
+ #: i18n/states/IR.php:43
12169
+ msgid "Hormozgan (هرمزگان)"
12170
  msgstr ""
12171
 
12172
+ #: i18n/states/IR.php:44
12173
+ msgid "Sistan and Baluchestan (سیستان و بلوچستان)"
12174
  msgstr ""
12175
 
12176
+ #: i18n/states/NG.php:14
12177
+ msgid "Abia"
12178
  msgstr ""
12179
 
12180
+ #: i18n/states/NG.php:15
12181
+ msgid "Abuja"
12182
  msgstr ""
12183
 
12184
+ #: i18n/states/NG.php:16
12185
+ msgid "Adamawa"
12186
  msgstr ""
12187
 
12188
+ #: i18n/states/NG.php:17
12189
+ msgid "Akwa Ibom"
12190
  msgstr ""
12191
 
12192
+ #: i18n/states/NG.php:18
12193
+ msgid "Anambra"
 
 
 
 
12194
  msgstr ""
12195
 
12196
+ #: i18n/states/NG.php:19
12197
+ msgid "Bauchi"
12198
  msgstr ""
12199
 
12200
+ #: i18n/states/NG.php:20
12201
+ msgid "Bayelsa"
12202
  msgstr ""
12203
 
12204
+ #: i18n/states/NG.php:21
12205
+ msgid "Benue"
12206
  msgstr ""
12207
 
12208
+ #: i18n/states/NG.php:22
12209
+ msgid "Borno"
12210
  msgstr ""
12211
 
12212
+ #: i18n/states/NG.php:23
12213
+ msgid "Cross River"
12214
  msgstr ""
12215
 
12216
+ #: i18n/states/NG.php:24
12217
+ msgid "Delta"
12218
  msgstr ""
12219
 
12220
+ #: i18n/states/NG.php:25
12221
+ msgid "Ebonyi"
12222
  msgstr ""
12223
 
12224
+ #: i18n/states/NG.php:26
12225
+ msgid "Edo"
 
 
12226
  msgstr ""
12227
 
12228
+ #: i18n/states/NG.php:27
12229
+ msgid "Ekiti"
12230
  msgstr ""
12231
 
12232
+ #: i18n/states/NG.php:28
12233
+ msgid "Enugu"
12234
  msgstr ""
12235
 
12236
+ #: i18n/states/NG.php:29
12237
+ msgid "Gombe"
 
 
12238
  msgstr ""
12239
 
12240
+ #: i18n/states/NG.php:30
12241
+ msgid "Imo"
 
 
12242
  msgstr ""
12243
 
12244
+ #: i18n/states/NG.php:31
12245
+ msgid "Jigawa"
12246
  msgstr ""
12247
 
12248
+ #: i18n/states/NG.php:32
12249
+ msgid "Kaduna"
12250
  msgstr ""
12251
 
12252
+ #: i18n/states/NG.php:33
12253
+ msgid "Kano"
12254
  msgstr ""
12255
 
12256
+ #: i18n/states/NG.php:34
12257
+ msgid "Katsina"
12258
  msgstr ""
12259
 
12260
+ #: i18n/states/NG.php:35
12261
+ msgid "Kebbi"
12262
  msgstr ""
12263
 
12264
+ #: i18n/states/NG.php:36
12265
+ msgid "Kogi"
12266
  msgstr ""
12267
 
12268
+ #: i18n/states/NG.php:37
12269
+ msgid "Kwara"
12270
  msgstr ""
12271
 
12272
+ #: i18n/states/NG.php:38
12273
+ msgid "Lagos"
12274
  msgstr ""
12275
 
12276
+ #: i18n/states/NG.php:39
12277
+ msgid "Nasarawa"
12278
  msgstr ""
12279
 
12280
+ #: i18n/states/NG.php:41
12281
+ msgid "Ogun"
12282
  msgstr ""
12283
 
12284
+ #: i18n/states/NG.php:42
12285
+ msgid "Ondo"
12286
  msgstr ""
12287
 
12288
+ #: i18n/states/NG.php:43
12289
+ msgid "Osun"
12290
  msgstr ""
12291
 
12292
+ #: i18n/states/NG.php:44
12293
+ msgid "Oyo"
12294
  msgstr ""
12295
 
12296
+ #: i18n/states/NG.php:45
12297
+ msgid "Plateau"
12298
  msgstr ""
12299
 
12300
+ #: i18n/states/NG.php:46
12301
+ msgid "Rivers"
 
 
 
 
12302
  msgstr ""
12303
 
12304
+ #: i18n/states/NG.php:47
12305
+ msgid "Sokoto"
 
12306
  msgstr ""
12307
 
12308
+ #: i18n/states/NG.php:48
12309
+ msgid "Taraba"
 
 
12310
  msgstr ""
12311
 
12312
+ #: i18n/states/NG.php:49
12313
+ msgid "Yobe"
12314
  msgstr ""
12315
 
12316
+ #: i18n/states/NG.php:50
12317
+ msgid "Zamfara"
12318
  msgstr ""
12319
 
12320
+ #: i18n/states/MX.php:14
12321
+ msgid "Ciudad de M&eacute;xico"
12322
  msgstr ""
12323
 
12324
+ #: i18n/states/MX.php:15
12325
+ msgid "Jalisco"
12326
  msgstr ""
12327
 
12328
+ #: i18n/states/MX.php:16
12329
+ msgid "Nuevo Le&oacute;n"
12330
  msgstr ""
12331
 
12332
+ #: i18n/states/MX.php:17
12333
+ msgid "Aguascalientes"
12334
  msgstr ""
12335
 
12336
+ #: i18n/states/MX.php:18
12337
+ msgid "Baja California"
12338
  msgstr ""
12339
 
12340
+ #: i18n/states/MX.php:19
12341
+ msgid "Baja California Sur"
12342
  msgstr ""
12343
 
12344
+ #: i18n/states/MX.php:20
12345
+ msgid "Campeche"
12346
  msgstr ""
12347
 
12348
+ #: i18n/states/MX.php:21
12349
+ msgid "Chiapas"
12350
  msgstr ""
12351
 
12352
+ #: i18n/states/MX.php:22
12353
+ msgid "Chihuahua"
 
 
12354
  msgstr ""
12355
 
12356
+ #: i18n/states/MX.php:23
12357
+ msgid "Coahuila"
 
12358
  msgstr ""
12359
 
12360
+ #: i18n/states/MX.php:24
12361
+ msgid "Colima"
 
 
 
12362
  msgstr ""
12363
 
12364
+ #: i18n/states/MX.php:25
12365
+ msgid "Durango"
 
 
12366
  msgstr ""
12367
 
12368
+ #: i18n/states/MX.php:26
12369
+ msgid "Guanajuato"
 
 
12370
  msgstr ""
12371
 
12372
+ #: i18n/states/MX.php:27
12373
+ msgid "Guerrero"
12374
  msgstr ""
12375
 
12376
+ #: i18n/states/MX.php:28
12377
+ msgid "Hidalgo"
 
 
12378
  msgstr ""
12379
 
12380
+ #: i18n/states/MX.php:29
12381
+ msgid "Estado de M&eacute;xico"
12382
  msgstr ""
12383
 
12384
+ #: i18n/states/MX.php:30
12385
+ msgid "Michoac&aacute;n"
 
12386
  msgstr ""
12387
 
12388
+ #: i18n/states/MX.php:31
12389
+ msgid "Morelos"
12390
  msgstr ""
12391
 
12392
+ #: i18n/states/MX.php:32
12393
+ msgid "Nayarit"
12394
  msgstr ""
12395
 
12396
+ #: i18n/states/MX.php:33
12397
+ msgid "Oaxaca"
12398
  msgstr ""
12399
 
12400
+ #: i18n/states/MX.php:34
12401
+ msgid "Puebla"
12402
  msgstr ""
12403
 
12404
+ #: i18n/states/MX.php:35
12405
+ msgid "Quer&eacute;taro"
 
12406
  msgstr ""
12407
 
12408
+ #: i18n/states/MX.php:36
12409
+ msgid "Quintana Roo"
12410
  msgstr ""
12411
 
12412
+ #: i18n/states/MX.php:37
12413
+ msgid "San Luis Potos&iacute;"
12414
  msgstr ""
12415
 
12416
+ #: i18n/states/MX.php:38
12417
+ msgid "Sinaloa"
12418
  msgstr ""
12419
 
12420
+ #: i18n/states/MX.php:39
12421
+ msgid "Sonora"
12422
  msgstr ""
12423
 
12424
+ #: i18n/states/MX.php:40
12425
+ msgid "Tabasco"
 
12426
  msgstr ""
12427
 
12428
+ #: i18n/states/MX.php:41
12429
+ msgid "Tamaulipas"
 
12430
  msgstr ""
12431
 
12432
+ #: i18n/states/MX.php:42
12433
+ msgid "Tlaxcala"
 
12434
  msgstr ""
12435
 
12436
+ #: i18n/states/MX.php:43
12437
+ msgid "Veracruz"
 
12438
  msgstr ""
12439
 
12440
+ #: i18n/states/MX.php:44
12441
+ msgid "Yucat&aacute;n"
 
 
 
12442
  msgstr ""
12443
 
12444
+ #: i18n/states/MX.php:45
12445
+ msgid "Zacatecas"
12446
  msgstr ""
12447
 
12448
+ #: i18n/states/JP.php:17
12449
+ msgid "Hokkaido"
12450
  msgstr ""
12451
 
12452
+ #: i18n/states/JP.php:18
12453
+ msgid "Aomori"
12454
  msgstr ""
12455
 
12456
+ #: i18n/states/JP.php:19
12457
+ msgid "Iwate"
12458
  msgstr ""
12459
 
12460
+ #: i18n/states/JP.php:20
12461
+ msgid "Miyagi"
12462
  msgstr ""
12463
 
12464
+ #: i18n/states/JP.php:21
12465
+ msgid "Akita"
12466
  msgstr ""
12467
 
12468
+ #: i18n/states/JP.php:22
12469
+ msgid "Yamagata"
 
 
12470
  msgstr ""
12471
 
12472
+ #: i18n/states/JP.php:23
12473
+ msgid "Fukushima"
12474
  msgstr ""
12475
 
12476
+ #: i18n/states/JP.php:24
12477
+ msgid "Ibaraki"
12478
  msgstr ""
12479
 
12480
+ #: i18n/states/JP.php:25
12481
+ msgid "Tochigi"
 
 
12482
  msgstr ""
12483
 
12484
+ #: i18n/states/JP.php:26
12485
+ msgid "Gunma"
12486
  msgstr ""
12487
 
12488
+ #: i18n/states/JP.php:27
12489
+ msgid "Saitama"
12490
  msgstr ""
12491
 
12492
+ #: i18n/states/JP.php:28
12493
+ msgid "Chiba"
12494
  msgstr ""
12495
 
12496
+ #: i18n/states/JP.php:29
12497
+ msgid "Tokyo"
 
 
 
 
 
12498
  msgstr ""
12499
 
12500
+ #: i18n/states/JP.php:30
12501
+ msgid "Kanagawa"
12502
  msgstr ""
12503
 
12504
+ #: i18n/states/JP.php:31
12505
+ msgid "Niigata"
 
 
12506
  msgstr ""
12507
 
12508
+ #: i18n/states/JP.php:32
12509
+ msgid "Toyama"
 
 
 
 
12510
  msgstr ""
12511
 
12512
+ #: i18n/states/JP.php:33
12513
+ msgid "Ishikawa"
 
 
12514
  msgstr ""
12515
 
12516
+ #: i18n/states/JP.php:34
12517
+ msgid "Fukui"
 
12518
  msgstr ""
12519
 
12520
+ #: i18n/states/JP.php:35
12521
+ msgid "Yamanashi"
 
 
 
12522
  msgstr ""
12523
 
12524
+ #: i18n/states/JP.php:36
12525
+ msgid "Nagano"
 
12526
  msgstr ""
12527
 
12528
+ #: i18n/states/JP.php:37
12529
+ msgid "Gifu"
 
 
12530
  msgstr ""
12531
 
12532
+ #: i18n/states/JP.php:38
12533
+ msgid "Shizuoka"
 
 
12534
  msgstr ""
12535
 
12536
+ #: i18n/states/JP.php:39
12537
+ msgid "Aichi"
 
 
12538
  msgstr ""
12539
 
12540
+ #: i18n/states/JP.php:40
12541
+ msgid "Mie"
12542
  msgstr ""
12543
 
12544
+ #: i18n/states/JP.php:41
12545
+ msgid "Shiga"
12546
  msgstr ""
12547
 
12548
+ #: i18n/states/JP.php:42
12549
+ msgid "Kyoto"
12550
  msgstr ""
12551
 
12552
+ #: i18n/states/JP.php:43
12553
+ msgid "Osaka"
 
 
12554
  msgstr ""
12555
 
12556
+ #: i18n/states/JP.php:44
12557
+ msgid "Hyogo"
 
 
12558
  msgstr ""
12559
 
12560
+ #: i18n/states/JP.php:45
12561
+ msgid "Nara"
12562
  msgstr ""
12563
 
12564
+ #: i18n/states/JP.php:46
12565
+ msgid "Wakayama"
12566
  msgstr ""
12567
 
12568
+ #: i18n/states/JP.php:47
12569
+ msgid "Tottori"
12570
  msgstr ""
12571
 
12572
+ #: i18n/states/JP.php:48
12573
+ msgid "Shimane"
12574
  msgstr ""
12575
 
12576
+ #: i18n/states/JP.php:49
12577
+ msgid "Okayama"
 
 
12578
  msgstr ""
12579
 
12580
+ #: i18n/states/JP.php:50
12581
+ msgid "Hiroshima"
12582
  msgstr ""
12583
 
12584
+ #: i18n/states/JP.php:51
12585
+ msgid "Yamaguchi"
12586
  msgstr ""
12587
 
12588
+ #: i18n/states/JP.php:52
12589
+ msgid "Tokushima"
12590
  msgstr ""
12591
 
12592
+ #: i18n/states/JP.php:53
12593
+ msgid "Kagawa"
12594
  msgstr ""
12595
 
12596
+ #: i18n/states/JP.php:54
12597
+ msgid "Ehime"
12598
  msgstr ""
12599
 
12600
+ #: i18n/states/JP.php:55
12601
+ msgid "Kochi"
12602
  msgstr ""
12603
 
12604
+ #: i18n/states/JP.php:56
12605
+ msgid "Fukuoka"
 
12606
  msgstr ""
12607
 
12608
+ #: i18n/states/JP.php:57
12609
+ msgid "Saga"
12610
  msgstr ""
12611
 
12612
+ #: i18n/states/JP.php:58
12613
+ msgid "Nagasaki"
12614
  msgstr ""
12615
 
12616
+ #: i18n/states/JP.php:59
12617
+ msgid "Kumamoto"
12618
  msgstr ""
12619
 
12620
+ #: i18n/states/JP.php:60
12621
+ msgid "Oita"
12622
  msgstr ""
12623
 
12624
+ #: i18n/states/JP.php:61
12625
+ msgid "Miyazaki"
 
12626
  msgstr ""
12627
 
12628
+ #: i18n/states/JP.php:62
12629
+ msgid "Kagoshima"
 
 
 
 
12630
  msgstr ""
12631
 
12632
+ #: i18n/states/JP.php:63
12633
+ msgid "Okinawa"
12634
  msgstr ""
12635
 
12636
+ #: i18n/states/GR.php:14
12637
+ msgid "Αττική"
12638
  msgstr ""
12639
 
12640
+ #: i18n/states/GR.php:15
12641
+ msgid "Ανατολική Μακεδονία και Θράκη"
12642
  msgstr ""
12643
 
12644
+ #: i18n/states/GR.php:16
12645
+ msgid "Κεντρική Μακεδονία"
 
 
 
12646
  msgstr ""
12647
 
12648
+ #: i18n/states/GR.php:17
12649
+ msgid "Δυτική Μακεδονία"
 
 
12650
  msgstr ""
12651
 
12652
+ #: i18n/states/GR.php:18
12653
+ msgid "Ήπειρος"
12654
  msgstr ""
12655
 
12656
+ #: i18n/states/GR.php:19
12657
+ msgid "Θεσσαλία"
12658
  msgstr ""
12659
 
12660
+ #: i18n/states/GR.php:20
12661
+ msgid "Ιόνιοι Νήσοι"
12662
  msgstr ""
12663
 
12664
+ #: i18n/states/GR.php:21
12665
+ msgid "Δυτική Ελλάδα"
 
 
 
12666
  msgstr ""
12667
 
12668
+ #: i18n/states/GR.php:22
12669
+ msgid "Στερεά Ελλάδα"
 
 
12670
  msgstr ""
12671
 
12672
+ #: i18n/states/GR.php:23
12673
+ msgid "Πελοπόννησος"
12674
  msgstr ""
12675
 
12676
+ #: i18n/states/GR.php:24
12677
+ msgid "Βόρειο Αιγαίο"
12678
  msgstr ""
12679
 
12680
+ #: i18n/states/GR.php:25
12681
+ msgid "Νότιο Αιγαίο"
12682
  msgstr ""
12683
 
12684
+ #: i18n/states/GR.php:26
12685
+ msgid "Κρήτη"
12686
  msgstr ""
12687
 
12688
+ #: i18n/states/TH.php:14
12689
+ msgid "Amnat Charoen"
12690
  msgstr ""
12691
 
12692
+ #: i18n/states/TH.php:15
12693
+ msgid "Ang Thong"
12694
  msgstr ""
12695
 
12696
+ #: i18n/states/TH.php:16
12697
+ msgid "Ayutthaya"
12698
  msgstr ""
12699
 
12700
+ #: i18n/states/TH.php:17
12701
+ msgid "Bangkok"
 
12702
  msgstr ""
12703
 
12704
+ #: i18n/states/TH.php:18
12705
+ msgid "Bueng Kan"
12706
  msgstr ""
12707
 
12708
+ #: i18n/states/TH.php:19
12709
+ msgid "Buri Ram"
12710
  msgstr ""
12711
 
12712
+ #: i18n/states/TH.php:20
12713
+ msgid "Chachoengsao"
12714
  msgstr ""
12715
 
12716
+ #: i18n/states/TH.php:21
12717
+ msgid "Chai Nat"
12718
  msgstr ""
12719
 
12720
+ #: i18n/states/TH.php:22
12721
+ msgid "Chaiyaphum"
12722
  msgstr ""
12723
 
12724
+ #: i18n/states/TH.php:23
12725
+ msgid "Chanthaburi"
 
 
 
12726
  msgstr ""
12727
 
12728
+ #: i18n/states/TH.php:24
12729
+ msgid "Chiang Mai"
 
 
 
12730
  msgstr ""
12731
 
12732
+ #: i18n/states/TH.php:25
12733
+ msgid "Chiang Rai"
12734
  msgstr ""
12735
 
12736
+ #: i18n/states/TH.php:26
12737
+ msgid "Chonburi"
12738
  msgstr ""
12739
 
12740
+ #: i18n/states/TH.php:27
12741
+ msgid "Chumphon"
12742
  msgstr ""
12743
 
12744
+ #: i18n/states/TH.php:28
12745
+ msgid "Kalasin"
12746
  msgstr ""
12747
 
12748
+ #: i18n/states/TH.php:29
12749
+ msgid "Kamphaeng Phet"
12750
  msgstr ""
12751
 
12752
+ #: i18n/states/TH.php:30
12753
+ msgid "Kanchanaburi"
12754
  msgstr ""
12755
 
12756
+ #: i18n/states/TH.php:31
12757
+ msgid "Khon Kaen"
12758
  msgstr ""
12759
 
12760
+ #: i18n/states/TH.php:32
12761
+ msgid "Krabi"
12762
  msgstr ""
12763
 
12764
+ #: i18n/states/TH.php:33
12765
+ msgid "Lampang"
12766
  msgstr ""
12767
 
12768
+ #: i18n/states/TH.php:34
12769
+ msgid "Lamphun"
12770
  msgstr ""
12771
 
12772
+ #: i18n/states/TH.php:35
12773
+ msgid "Loei"
12774
  msgstr ""
12775
 
12776
+ #: i18n/states/TH.php:36
12777
+ msgid "Lopburi"
12778
  msgstr ""
12779
 
12780
+ #: i18n/states/TH.php:37
12781
+ msgid "Mae Hong Son"
12782
  msgstr ""
12783
 
12784
+ #: i18n/states/TH.php:38
12785
+ msgid "Maha Sarakham"
12786
  msgstr ""
12787
 
12788
+ #: i18n/states/TH.php:39
12789
+ msgid "Mukdahan"
12790
  msgstr ""
12791
 
12792
+ #: i18n/states/TH.php:40
12793
+ msgid "Nakhon Nayok"
12794
  msgstr ""
12795
 
12796
+ #: i18n/states/TH.php:41
12797
+ msgid "Nakhon Pathom"
12798
  msgstr ""
12799
 
12800
+ #: i18n/states/TH.php:42
12801
+ msgid "Nakhon Phanom"
12802
  msgstr ""
12803
 
12804
+ #: i18n/states/TH.php:43
12805
+ msgid "Nakhon Ratchasima"
12806
  msgstr ""
12807
 
12808
+ #: i18n/states/TH.php:44
12809
+ msgid "Nakhon Sawan"
12810
  msgstr ""
12811
 
12812
+ #: i18n/states/TH.php:45
12813
+ msgid "Nakhon Si Thammarat"
12814
  msgstr ""
12815
 
12816
+ #: i18n/states/TH.php:46
12817
+ msgid "Nan"
 
 
12818
  msgstr ""
12819
 
12820
+ #: i18n/states/TH.php:47
12821
+ msgid "Narathiwat"
12822
  msgstr ""
12823
 
12824
+ #: i18n/states/TH.php:48
12825
+ msgid "Nong Bua Lam Phu"
12826
  msgstr ""
12827
 
12828
+ #: i18n/states/TH.php:49
12829
+ msgid "Nong Khai"
12830
  msgstr ""
12831
 
12832
+ #: i18n/states/TH.php:50
12833
+ msgid "Nonthaburi"
12834
  msgstr ""
12835
 
12836
+ #: i18n/states/TH.php:51
12837
+ msgid "Pathum Thani"
12838
  msgstr ""
12839
 
12840
+ #: i18n/states/TH.php:52
12841
+ msgid "Pattani"
12842
  msgstr ""
12843
 
12844
+ #: i18n/states/TH.php:53
12845
+ msgid "Phang Nga"
 
12846
  msgstr ""
12847
 
12848
+ #: i18n/states/TH.php:54
12849
+ msgid "Phatthalung"
12850
  msgstr ""
12851
 
12852
+ #: i18n/states/TH.php:55
12853
+ msgid "Phayao"
12854
  msgstr ""
12855
 
12856
+ #: i18n/states/TH.php:56
12857
+ msgid "Phetchabun"
12858
  msgstr ""
12859
 
12860
+ #: i18n/states/TH.php:57
12861
+ msgid "Phetchaburi"
 
 
12862
  msgstr ""
12863
 
12864
+ #: i18n/states/TH.php:58
12865
+ msgid "Phichit"
12866
  msgstr ""
12867
 
12868
+ #: i18n/states/TH.php:59
12869
+ msgid "Phitsanulok"
12870
  msgstr ""
12871
 
12872
+ #: i18n/states/TH.php:60
12873
+ msgid "Phrae"
12874
  msgstr ""
12875
 
12876
+ #: i18n/states/TH.php:61
12877
+ msgid "Phuket"
12878
  msgstr ""
12879
 
12880
+ #: i18n/states/TH.php:62
12881
+ msgid "Prachin Buri"
12882
  msgstr ""
12883
 
12884
+ #: i18n/states/TH.php:63
12885
+ msgid "Prachuap Khiri Khan"
 
 
12886
  msgstr ""
12887
 
12888
+ #: i18n/states/TH.php:64
12889
+ msgid "Ranong"
12890
  msgstr ""
12891
 
12892
+ #: i18n/states/TH.php:65
12893
+ msgid "Ratchaburi"
12894
  msgstr ""
12895
 
12896
+ #: i18n/states/TH.php:66
12897
+ msgid "Rayong"
12898
  msgstr ""
12899
 
12900
+ #: i18n/states/TH.php:67
12901
+ msgid "Roi Et"
12902
  msgstr ""
12903
 
12904
+ #: i18n/states/TH.php:68
12905
+ msgid "Sa Kaeo"
 
 
12906
  msgstr ""
12907
 
12908
+ #: i18n/states/TH.php:69
12909
+ msgid "Sakon Nakhon"
 
12910
  msgstr ""
12911
 
12912
+ #: i18n/states/TH.php:70
12913
+ msgid "Samut Prakan"
12914
  msgstr ""
12915
 
12916
+ #: i18n/states/TH.php:71
12917
+ msgid "Samut Sakhon"
 
12918
  msgstr ""
12919
 
12920
+ #: i18n/states/TH.php:72
12921
+ msgid "Samut Songkhram"
 
12922
  msgstr ""
12923
 
12924
+ #: i18n/states/TH.php:73
12925
+ msgid "Saraburi"
12926
  msgstr ""
12927
 
12928
+ #: i18n/states/TH.php:74
12929
+ msgid "Satun"
12930
  msgstr ""
12931
 
12932
+ #: i18n/states/TH.php:75
12933
+ msgid "Sing Buri"
 
 
 
 
12934
  msgstr ""
12935
 
12936
+ #: i18n/states/TH.php:76
12937
+ msgid "Sisaket"
12938
  msgstr ""
12939
 
12940
+ #: i18n/states/TH.php:77
12941
+ msgid "Songkhla"
12942
  msgstr ""
12943
 
12944
+ #: i18n/states/TH.php:78
12945
+ msgid "Sukhothai"
12946
  msgstr ""
12947
 
12948
+ #: i18n/states/TH.php:79
12949
+ msgid "Suphan Buri"
12950
  msgstr ""
12951
 
12952
+ #: i18n/states/TH.php:80
12953
+ msgid "Surat Thani"
12954
  msgstr ""
12955
 
12956
+ #: i18n/states/TH.php:81
12957
+ msgid "Surin"
 
 
12958
  msgstr ""
12959
 
12960
+ #: i18n/states/TH.php:82
12961
+ msgid "Tak"
12962
  msgstr ""
12963
 
12964
+ #: i18n/states/TH.php:83
12965
+ msgid "Trang"
12966
+ msgstr ""
12967
+
12968
+ #: i18n/states/TH.php:84
12969
+ msgid "Trat"
12970
  msgstr ""
12971
 
12972
+ #: i18n/states/TH.php:85
12973
+ msgid "Ubon Ratchathani"
 
 
 
12974
  msgstr ""
12975
 
12976
+ #: i18n/states/TH.php:86
12977
+ msgid "Udon Thani"
12978
  msgstr ""
12979
 
12980
+ #: i18n/states/TH.php:87
12981
+ msgid "Uthai Thani"
12982
  msgstr ""
12983
 
12984
+ #: i18n/states/TH.php:88
12985
+ msgid "Uttaradit"
12986
  msgstr ""
12987
 
12988
+ #: i18n/states/TH.php:89
12989
+ msgid "Yala"
12990
  msgstr ""
12991
 
12992
+ #: i18n/states/TH.php:90
12993
+ msgid "Yasothon"
 
 
12994
  msgstr ""
12995
 
12996
+ #: i18n/states/ES.php:14
12997
+ msgid "A Coru&ntilde;a"
12998
  msgstr ""
12999
 
13000
+ #: i18n/states/ES.php:15
13001
+ msgid "Araba/&Aacute;lava"
13002
  msgstr ""
13003
 
13004
+ #: i18n/states/ES.php:16
13005
+ msgid "Albacete"
13006
  msgstr ""
13007
 
13008
+ #: i18n/states/ES.php:17
13009
+ msgid "Alicante"
13010
  msgstr ""
13011
 
13012
+ #: i18n/states/ES.php:18
13013
+ msgid "Almer&iacute;a"
13014
  msgstr ""
13015
 
13016
+ #: i18n/states/ES.php:19
13017
+ msgid "Asturias"
13018
  msgstr ""
13019
 
13020
+ #: i18n/states/ES.php:20
13021
+ msgid "&Aacute;vila"
13022
  msgstr ""
13023
 
13024
+ #: i18n/states/ES.php:21
13025
+ msgid "Badajoz"
13026
  msgstr ""
13027
 
13028
+ #: i18n/states/ES.php:22
13029
+ msgid "Baleares"
13030
  msgstr ""
13031
 
13032
+ #: i18n/states/ES.php:23
13033
+ msgid "Barcelona"
13034
  msgstr ""
13035
 
13036
+ #: i18n/states/ES.php:24
13037
+ msgid "Burgos"
13038
  msgstr ""
13039
 
13040
+ #: i18n/states/ES.php:25
13041
+ msgid "C&aacute;ceres"
13042
  msgstr ""
13043
 
13044
+ #: i18n/states/ES.php:26
13045
+ msgid "C&aacute;diz"
13046
  msgstr ""
13047
 
13048
+ #: i18n/states/ES.php:27
13049
+ msgid "Cantabria"
 
 
13050
  msgstr ""
13051
 
13052
+ #: i18n/states/ES.php:28
13053
+ msgid "Castell&oacute;n"
13054
  msgstr ""
13055
 
13056
+ #: i18n/states/ES.php:29
13057
+ msgid "Ceuta"
13058
  msgstr ""
13059
 
13060
+ #: i18n/states/ES.php:30
13061
+ msgid "Ciudad Real"
13062
  msgstr ""
13063
 
13064
+ #: i18n/states/ES.php:31 i18n/states/AR.php:19
13065
+ msgid "C&oacute;rdoba"
13066
  msgstr ""
13067
 
13068
+ #: i18n/states/ES.php:32
13069
+ msgid "Cuenca"
13070
  msgstr ""
13071
 
13072
+ #: i18n/states/ES.php:33
13073
+ msgid "Girona"
13074
  msgstr ""
13075
 
13076
+ #: i18n/states/ES.php:34
13077
+ msgid "Granada"
13078
  msgstr ""
13079
 
13080
+ #: i18n/states/ES.php:35
13081
+ msgid "Guadalajara"
13082
  msgstr ""
13083
 
13084
+ #: i18n/states/ES.php:36
13085
+ msgid "Gipuzkoa"
13086
  msgstr ""
13087
 
13088
+ #: i18n/states/ES.php:37
13089
+ msgid "Huelva"
13090
  msgstr ""
13091
 
13092
+ #: i18n/states/ES.php:38
13093
+ msgid "Huesca"
13094
  msgstr ""
13095
 
13096
+ #: i18n/states/ES.php:39
13097
+ msgid "Ja&eacute;n"
 
 
13098
  msgstr ""
13099
 
13100
+ #: i18n/states/ES.php:40 i18n/states/AR.php:25
13101
+ msgid "La Rioja"
 
13102
  msgstr ""
13103
 
13104
+ #: i18n/states/ES.php:41
13105
+ msgid "Las Palmas"
13106
  msgstr ""
13107
 
13108
+ #: i18n/states/ES.php:42
13109
+ msgid "Le&oacute;n"
13110
  msgstr ""
13111
 
13112
+ #: i18n/states/ES.php:43
13113
+ msgid "Lleida"
 
13114
  msgstr ""
13115
 
13116
+ #: i18n/states/ES.php:44
13117
+ msgid "Lugo"
13118
  msgstr ""
13119
 
13120
+ #: i18n/states/ES.php:45
13121
+ msgid "Madrid"
13122
  msgstr ""
13123
 
13124
+ #: i18n/states/ES.php:46
13125
+ msgid "M&aacute;laga"
13126
  msgstr ""
13127
 
13128
+ #: i18n/states/ES.php:47
13129
+ msgid "Melilla"
13130
  msgstr ""
13131
 
13132
+ #: i18n/states/ES.php:48
13133
+ msgid "Murcia"
 
13134
  msgstr ""
13135
 
13136
+ #: i18n/states/ES.php:49
13137
+ msgid "Navarra"
13138
  msgstr ""
13139
 
13140
+ #: i18n/states/ES.php:50
13141
+ msgid "Ourense"
13142
  msgstr ""
13143
 
13144
+ #: i18n/states/ES.php:51
13145
+ msgid "Palencia"
13146
  msgstr ""
13147
 
13148
+ #: i18n/states/ES.php:52
13149
+ msgid "Pontevedra"
13150
  msgstr ""
13151
 
13152
+ #: i18n/states/ES.php:53
13153
+ msgid "Salamanca"
13154
  msgstr ""
13155
 
13156
+ #: i18n/states/ES.php:54
13157
+ msgid "Santa Cruz de Tenerife"
13158
  msgstr ""
13159
 
13160
+ #: i18n/states/ES.php:55
13161
+ msgid "Segovia"
13162
  msgstr ""
13163
 
13164
+ #: i18n/states/ES.php:56
13165
+ msgid "Sevilla"
13166
  msgstr ""
13167
 
13168
+ #: i18n/states/ES.php:57
13169
+ msgid "Soria"
13170
  msgstr ""
13171
 
13172
+ #: i18n/states/ES.php:58
13173
+ msgid "Tarragona"
13174
  msgstr ""
13175
 
13176
+ #: i18n/states/ES.php:59
13177
+ msgid "Teruel"
13178
  msgstr ""
13179
 
13180
+ #: i18n/states/ES.php:60
13181
+ msgid "Toledo"
13182
  msgstr ""
13183
 
13184
+ #: i18n/states/ES.php:61
13185
+ msgid "Valencia"
13186
  msgstr ""
13187
 
13188
+ #: i18n/states/ES.php:62
13189
+ msgid "Valladolid"
13190
  msgstr ""
13191
 
13192
+ #: i18n/states/ES.php:63
13193
+ msgid "Bizkaia"
13194
  msgstr ""
13195
 
13196
+ #: i18n/states/ES.php:64
13197
+ msgid "Zamora"
 
 
 
 
13198
  msgstr ""
13199
 
13200
+ #: i18n/states/ES.php:65
13201
+ msgid "Zaragoza"
 
 
 
13202
  msgstr ""
13203
 
13204
+ #: i18n/states/BG.php:14
13205
+ msgid "Blagoevgrad"
 
 
13206
  msgstr ""
13207
 
13208
+ #: i18n/states/BG.php:15
13209
+ msgid "Burgas"
13210
  msgstr ""
13211
 
13212
+ #: i18n/states/BG.php:16
13213
+ msgid "Dobrich"
13214
  msgstr ""
13215
 
13216
+ #: i18n/states/BG.php:17
13217
+ msgid "Gabrovo"
13218
  msgstr ""
13219
 
13220
+ #: i18n/states/BG.php:18
13221
+ msgid "Haskovo"
 
 
13222
  msgstr ""
13223
 
13224
+ #: i18n/states/BG.php:19
13225
+ msgid "Kardzhali"
13226
  msgstr ""
13227
 
13228
+ #: i18n/states/BG.php:20
13229
+ msgid "Kyustendil"
 
 
13230
  msgstr ""
13231
 
13232
+ #: i18n/states/BG.php:21
13233
+ msgid "Lovech"
13234
  msgstr ""
13235
 
13236
+ #: i18n/states/BG.php:22 i18n/states/US.php:40
13237
+ msgid "Montana"
13238
  msgstr ""
13239
 
13240
+ #: i18n/states/BG.php:23
13241
+ msgid "Pazardzhik"
13242
  msgstr ""
13243
 
13244
+ #: i18n/states/BG.php:24
13245
+ msgid "Pernik"
 
 
 
 
 
 
13246
  msgstr ""
13247
 
13248
+ #: i18n/states/BG.php:25
13249
+ msgid "Pleven"
13250
  msgstr ""
13251
 
13252
+ #: i18n/states/BG.php:26
13253
+ msgid "Plovdiv"
13254
  msgstr ""
13255
 
13256
+ #: i18n/states/BG.php:27
13257
+ msgid "Razgrad"
 
13258
  msgstr ""
13259
 
13260
+ #: i18n/states/BG.php:28
13261
+ msgid "Ruse"
13262
  msgstr ""
13263
 
13264
+ #: i18n/states/BG.php:29
13265
+ msgid "Shumen"
13266
  msgstr ""
13267
 
13268
+ #: i18n/states/BG.php:30
13269
+ msgid "Silistra"
13270
  msgstr ""
13271
 
13272
+ #: i18n/states/BG.php:31
13273
+ msgid "Sliven"
13274
  msgstr ""
13275
 
13276
+ #: i18n/states/BG.php:32
13277
+ msgid "Smolyan"
13278
  msgstr ""
13279
 
13280
+ #: i18n/states/BG.php:33
13281
+ msgid "Sofia"
 
13282
  msgstr ""
13283
 
13284
+ #: i18n/states/BG.php:34
13285
+ msgid "Sofia-Grad"
13286
  msgstr ""
13287
 
13288
+ #: i18n/states/BG.php:35
13289
+ msgid "Stara Zagora"
 
 
 
13290
  msgstr ""
13291
 
13292
+ #: i18n/states/BG.php:36
13293
+ msgid "Targovishte"
 
 
 
13294
  msgstr ""
13295
 
13296
+ #: i18n/states/BG.php:37
13297
+ msgid "Varna"
13298
  msgstr ""
13299
 
13300
+ #: i18n/states/BG.php:38
13301
+ msgid "Veliko Tarnovo"
 
 
 
13302
  msgstr ""
13303
 
13304
+ #: i18n/states/BG.php:39
13305
+ msgid "Vidin"
 
 
 
13306
  msgstr ""
13307
 
13308
+ #: i18n/states/BG.php:40
13309
+ msgid "Vratsa"
13310
  msgstr ""
13311
 
13312
+ #: i18n/states/BG.php:41
13313
+ msgid "Yambol"
13314
  msgstr ""
13315
 
13316
+ #: i18n/states/RO.php:17
13317
+ msgid "Alba"
 
 
 
13318
  msgstr ""
13319
 
13320
+ #: i18n/states/RO.php:18
13321
+ msgid "Arad"
13322
  msgstr ""
13323
 
13324
+ #: i18n/states/RO.php:19
13325
+ msgid "Arge&#537;"
13326
  msgstr ""
13327
 
13328
+ #: i18n/states/RO.php:20
13329
+ msgid "Bac&#259;u"
 
 
 
13330
  msgstr ""
13331
 
13332
+ #: i18n/states/RO.php:21
13333
+ msgid "Bihor"
13334
  msgstr ""
13335
 
13336
+ #: i18n/states/RO.php:22
13337
+ msgid "Bistri&#539;a-N&#259;s&#259;ud"
 
 
13338
  msgstr ""
13339
 
13340
+ #: i18n/states/RO.php:23
13341
+ msgid "Boto&#537;ani"
 
 
 
13342
  msgstr ""
13343
 
13344
+ #: i18n/states/RO.php:24
13345
+ msgid "Br&#259;ila"
13346
  msgstr ""
13347
 
13348
+ #: i18n/states/RO.php:25
13349
+ msgid "Bra&#537;ov"
 
 
13350
  msgstr ""
13351
 
13352
+ #: i18n/states/RO.php:26
13353
+ msgid "Bucure&#537;ti"
 
 
13354
  msgstr ""
13355
 
13356
+ #: i18n/states/RO.php:27
13357
+ msgid "Buz&#259;u"
13358
  msgstr ""
13359
 
13360
+ #: i18n/states/RO.php:28 i18n/states/MD.php:27
13361
+ msgid "C&#259;l&#259;ra&#537;i"
 
 
13362
  msgstr ""
13363
 
13364
+ #: i18n/states/RO.php:29
13365
+ msgid "Cara&#537;-Severin"
13366
  msgstr ""
13367
 
13368
+ #: i18n/states/RO.php:30
13369
+ msgid "Cluj"
13370
  msgstr ""
13371
 
13372
+ #: i18n/states/RO.php:31
13373
+ msgid "Constan&#539;a"
 
 
13374
  msgstr ""
13375
 
13376
+ #: i18n/states/RO.php:32
13377
+ msgid "Covasna"
13378
  msgstr ""
13379
 
13380
+ #: i18n/states/RO.php:33
13381
+ msgid "D&acirc;mbovi&#539;a"
 
13382
  msgstr ""
13383
 
13384
+ #: i18n/states/RO.php:34
13385
+ msgid "Dolj"
13386
  msgstr ""
13387
 
13388
+ #: i18n/states/RO.php:35
13389
+ msgid "Gala&#539;i"
13390
  msgstr ""
13391
 
13392
+ #: i18n/states/RO.php:36
13393
+ msgid "Giurgiu"
13394
  msgstr ""
13395
 
13396
+ #: i18n/states/RO.php:37
13397
+ msgid "Gorj"
13398
  msgstr ""
13399
 
13400
+ #: i18n/states/RO.php:38
13401
+ msgid "Harghita"
 
 
 
 
 
 
 
13402
  msgstr ""
13403
 
13404
+ #: i18n/states/RO.php:39
13405
+ msgid "Hunedoara"
13406
  msgstr ""
13407
 
13408
+ #: i18n/states/RO.php:40
13409
+ msgid "Ialomi&#539;a"
13410
  msgstr ""
13411
 
13412
+ #: i18n/states/RO.php:41
13413
+ msgid "Ia&#537;i"
13414
  msgstr ""
13415
 
13416
+ #: i18n/states/RO.php:42
13417
+ msgid "Ilfov"
13418
  msgstr ""
13419
 
13420
+ #: i18n/states/RO.php:43
13421
+ msgid "Maramure&#537;"
 
 
13422
  msgstr ""
13423
 
13424
+ #: i18n/states/RO.php:44
13425
+ msgid "Mehedin&#539;i"
13426
  msgstr ""
13427
 
13428
+ #: i18n/states/RO.php:45
13429
+ msgid "Mure&#537;"
13430
  msgstr ""
13431
 
13432
+ #: i18n/states/RO.php:46
13433
+ msgid "Neam&#539;"
13434
  msgstr ""
13435
 
13436
+ #: i18n/states/RO.php:47
13437
+ msgid "Olt"
 
13438
  msgstr ""
13439
 
13440
+ #: i18n/states/RO.php:48
13441
+ msgid "Prahova"
 
 
 
13442
  msgstr ""
13443
 
13444
+ #: i18n/states/RO.php:49
13445
+ msgid "S&#259;laj"
13446
  msgstr ""
13447
 
13448
+ #: i18n/states/RO.php:50
13449
+ msgid "Satu Mare"
 
 
13450
  msgstr ""
13451
 
13452
+ #: i18n/states/RO.php:51
13453
+ msgid "Sibiu"
13454
  msgstr ""
13455
 
13456
+ #: i18n/states/RO.php:52
13457
+ msgid "Suceava"
13458
  msgstr ""
13459
 
13460
+ #: i18n/states/RO.php:53
13461
+ msgid "Teleorman"
13462
  msgstr ""
13463
 
13464
+ #: i18n/states/RO.php:54
13465
+ msgid "Timi&#537;"
 
 
 
 
 
13466
  msgstr ""
13467
 
13468
+ #: i18n/states/RO.php:55
13469
+ msgid "Tulcea"
13470
  msgstr ""
13471
 
13472
+ #: i18n/states/RO.php:56
13473
+ msgid "V&acirc;lcea"
13474
  msgstr ""
13475
 
13476
+ #: i18n/states/RO.php:57
13477
+ msgid "Vaslui"
13478
  msgstr ""
13479
 
13480
+ #: i18n/states/RO.php:58
13481
+ msgid "Vrancea"
13482
  msgstr ""
13483
 
13484
+ #: i18n/states/IN.php:14
13485
+ msgid "Andhra Pradesh"
13486
  msgstr ""
13487
 
13488
+ #: i18n/states/IN.php:15
13489
+ msgid "Arunachal Pradesh"
13490
  msgstr ""
13491
 
13492
+ #: i18n/states/IN.php:16
13493
+ msgid "Assam"
 
 
13494
  msgstr ""
13495
 
13496
+ #: i18n/states/IN.php:17
13497
+ msgid "Bihar"
13498
  msgstr ""
13499
 
13500
+ #: i18n/states/IN.php:18
13501
+ msgid "Chhattisgarh"
13502
  msgstr ""
13503
 
13504
+ #: i18n/states/IN.php:19
13505
+ msgid "Goa"
13506
  msgstr ""
13507
 
13508
+ #: i18n/states/IN.php:20
13509
+ msgid "Gujarat"
13510
  msgstr ""
13511
 
13512
+ #: i18n/states/IN.php:21
13513
+ msgid "Haryana"
13514
  msgstr ""
13515
 
13516
+ #: i18n/states/IN.php:22
13517
+ msgid "Himachal Pradesh"
 
 
13518
  msgstr ""
13519
 
13520
+ #: i18n/states/IN.php:23
13521
+ msgid "Jammu and Kashmir"
13522
  msgstr ""
13523
 
13524
+ #: i18n/states/IN.php:24
13525
+ msgid "Jharkhand"
13526
  msgstr ""
13527
 
13528
+ #: i18n/states/IN.php:25
13529
+ msgid "Karnataka"
13530
  msgstr ""
13531
 
13532
+ #: i18n/states/IN.php:26
13533
+ msgid "Kerala"
 
13534
  msgstr ""
13535
 
13536
+ #: i18n/states/IN.php:27
13537
+ msgid "Madhya Pradesh"
 
13538
  msgstr ""
13539
 
13540
+ #: i18n/states/IN.php:28
13541
+ msgid "Maharashtra"
13542
  msgstr ""
13543
 
13544
+ #: i18n/states/IN.php:29
13545
+ msgid "Manipur"
13546
  msgstr ""
13547
 
13548
+ #: i18n/states/IN.php:30
13549
+ msgid "Meghalaya"
 
13550
  msgstr ""
13551
 
13552
+ #: i18n/states/IN.php:31
13553
+ msgid "Mizoram"
13554
  msgstr ""
13555
 
13556
+ #: i18n/states/IN.php:32
13557
+ msgid "Nagaland"
13558
  msgstr ""
13559
 
13560
+ #: i18n/states/IN.php:33
13561
+ msgid "Orissa"
13562
  msgstr ""
13563
 
13564
+ #: i18n/states/IN.php:34 i18n/states/PK.php:20
13565
+ msgid "Punjab"
13566
  msgstr ""
13567
 
13568
+ #: i18n/states/IN.php:35
13569
+ msgid "Rajasthan"
13570
  msgstr ""
13571
 
13572
+ #: i18n/states/IN.php:36
13573
+ msgid "Sikkim"
13574
  msgstr ""
13575
 
13576
+ #: i18n/states/IN.php:37
13577
+ msgid "Tamil Nadu"
13578
  msgstr ""
13579
 
13580
+ #: i18n/states/IN.php:38
13581
+ msgid "Telangana"
13582
  msgstr ""
13583
 
13584
+ #: i18n/states/IN.php:39
13585
+ msgid "Tripura"
13586
  msgstr ""
13587
 
13588
+ #: i18n/states/IN.php:40
13589
+ msgid "Uttarakhand"
 
 
 
 
13590
  msgstr ""
13591
 
13592
+ #: i18n/states/IN.php:41
13593
+ msgid "Uttar Pradesh"
13594
  msgstr ""
13595
 
13596
+ #: i18n/states/IN.php:42
13597
+ msgid "West Bengal"
13598
  msgstr ""
13599
 
13600
+ #: i18n/states/IN.php:43
13601
+ msgid "Andaman and Nicobar Islands"
13602
  msgstr ""
13603
 
13604
+ #: i18n/states/IN.php:44
13605
+ msgid "Chandigarh"
13606
  msgstr ""
13607
 
13608
+ #: i18n/states/IN.php:45
13609
+ msgid "Dadra and Nagar Haveli"
13610
  msgstr ""
13611
 
13612
+ #: i18n/states/IN.php:46
13613
+ msgid "Daman and Diu"
13614
  msgstr ""
13615
 
13616
+ #: i18n/states/IN.php:47
13617
+ msgid "Delhi"
13618
  msgstr ""
13619
 
13620
+ #: i18n/states/IN.php:48
13621
+ msgid "Lakshadeep"
 
 
13622
  msgstr ""
13623
 
13624
+ #: i18n/states/IN.php:49
13625
+ msgid "Pondicherry (Puducherry)"
13626
  msgstr ""
13627
 
13628
+ #: i18n/states/MY.php:14
13629
+ msgid "Johor"
13630
  msgstr ""
13631
 
13632
+ #: i18n/states/MY.php:15
13633
+ msgid "Kedah"
 
 
13634
  msgstr ""
13635
 
13636
+ #: i18n/states/MY.php:16
13637
+ msgid "Kelantan"
13638
  msgstr ""
13639
 
13640
+ #: i18n/states/MY.php:17
13641
+ msgid "Labuan"
 
 
 
 
13642
  msgstr ""
13643
 
13644
+ #: i18n/states/MY.php:18
13645
+ msgid "Malacca (Melaka)"
 
13646
  msgstr ""
13647
 
13648
+ #: i18n/states/MY.php:19
13649
+ msgid "Negeri Sembilan"
 
 
13650
  msgstr ""
13651
 
13652
+ #: i18n/states/MY.php:20
13653
+ msgid "Pahang"
13654
  msgstr ""
13655
 
13656
+ #: i18n/states/MY.php:21
13657
+ msgid "Penang (Pulau Pinang)"
13658
  msgstr ""
13659
 
13660
+ #: i18n/states/MY.php:22
13661
+ msgid "Perak"
13662
  msgstr ""
13663
 
13664
+ #: i18n/states/MY.php:23
13665
+ msgid "Perlis"
13666
  msgstr ""
13667
 
13668
+ #: i18n/states/MY.php:24
13669
+ msgid "Sabah"
 
 
 
 
 
 
 
 
 
 
 
13670
  msgstr ""
13671
 
13672
+ #: i18n/states/MY.php:25
13673
+ msgid "Sarawak"
 
 
 
 
13674
  msgstr ""
13675
 
13676
+ #: i18n/states/MY.php:26
13677
+ msgid "Selangor"
13678
  msgstr ""
13679
 
13680
+ #: i18n/states/MY.php:27
13681
+ msgid "Terengganu"
13682
  msgstr ""
13683
 
13684
+ #: i18n/states/MY.php:28
13685
+ msgid "Putrajaya"
13686
  msgstr ""
13687
 
13688
+ #: i18n/states/MY.php:29
13689
+ msgid "Kuala Lumpur"
 
13690
  msgstr ""
13691
 
13692
+ #: i18n/states/ZA.php:14
13693
+ msgid "Eastern Cape"
13694
  msgstr ""
13695
 
13696
+ #: i18n/states/ZA.php:15
13697
+ msgid "Free State"
13698
  msgstr ""
13699
 
13700
+ #: i18n/states/ZA.php:16
13701
+ msgid "Gauteng"
13702
  msgstr ""
13703
 
13704
+ #: i18n/states/ZA.php:17
13705
+ msgid "KwaZulu-Natal"
13706
  msgstr ""
13707
 
13708
+ #: i18n/states/ZA.php:18
13709
+ msgid "Limpopo"
 
13710
  msgstr ""
13711
 
13712
+ #: i18n/states/ZA.php:19
13713
+ msgid "Mpumalanga"
 
13714
  msgstr ""
13715
 
13716
+ #: i18n/states/ZA.php:20
13717
+ msgid "Northern Cape"
 
13718
  msgstr ""
13719
 
13720
+ #: i18n/states/ZA.php:21
13721
+ msgid "North West"
 
13722
  msgstr ""
13723
 
13724
+ #: i18n/states/ZA.php:22
13725
+ msgid "Western Cape"
 
13726
  msgstr ""
13727
 
13728
+ #: i18n/states/AR.php:14
13729
+ msgid "Ciudad Aut&oacute;noma de Buenos Aires"
 
 
 
13730
  msgstr ""
13731
 
13732
+ #: i18n/states/AR.php:15
13733
+ msgid "Buenos Aires"
 
13734
  msgstr ""
13735
 
13736
+ #: i18n/states/AR.php:16
13737
+ msgid "Catamarca"
 
 
13738
  msgstr ""
13739
 
13740
+ #: i18n/states/AR.php:17
13741
+ msgid "Chaco"
 
13742
  msgstr ""
13743
 
13744
+ #: i18n/states/AR.php:18
13745
+ msgid "Chubut"
 
 
13746
  msgstr ""
13747
 
13748
+ #: i18n/states/AR.php:20
13749
+ msgid "Corrientes"
13750
  msgstr ""
13751
 
13752
+ #: i18n/states/AR.php:21
13753
+ msgid "Entre R&iacute;os"
13754
  msgstr ""
13755
 
13756
+ #: i18n/states/AR.php:22
13757
+ msgid "Formosa"
13758
  msgstr ""
13759
 
13760
+ #: i18n/states/AR.php:23
13761
+ msgid "Jujuy"
 
 
13762
  msgstr ""
13763
 
13764
+ #: i18n/states/AR.php:24
13765
+ msgid "La Pampa"
 
 
 
 
 
13766
  msgstr ""
13767
 
13768
+ #: i18n/states/AR.php:26
13769
+ msgid "Mendoza"
 
13770
  msgstr ""
13771
 
13772
+ #: i18n/states/AR.php:27
13773
+ msgid "Misiones"
 
13774
  msgstr ""
13775
 
13776
+ #: i18n/states/AR.php:28
13777
+ msgid "Neuqu&eacute;n"
13778
  msgstr ""
13779
 
13780
+ #: i18n/states/AR.php:29
13781
+ msgid "R&iacute;o Negro"
 
 
13782
  msgstr ""
13783
 
13784
+ #: i18n/states/AR.php:30
13785
+ msgid "Salta"
 
 
13786
  msgstr ""
13787
 
13788
+ #: i18n/states/AR.php:31
13789
+ msgid "San Juan"
13790
  msgstr ""
13791
 
13792
+ #: i18n/states/AR.php:32
13793
+ msgid "San Luis"
 
 
13794
  msgstr ""
13795
 
13796
+ #: i18n/states/AR.php:33 i18n/states/BO.php:21
13797
+ msgid "Santa Cruz"
 
 
 
 
13798
  msgstr ""
13799
 
13800
+ #: i18n/states/AR.php:34
13801
+ msgid "Santa Fe"
 
 
 
 
13802
  msgstr ""
13803
 
13804
+ #: i18n/states/AR.php:35
13805
+ msgid "Santiago del Estero"
13806
  msgstr ""
13807
 
13808
+ #: i18n/states/AR.php:36
13809
+ msgid "Tierra del Fuego"
 
 
 
 
 
13810
  msgstr ""
13811
 
13812
+ #: i18n/states/AR.php:37
13813
+ msgid "Tucum&aacute;n"
13814
  msgstr ""
13815
 
13816
+ #: i18n/states/IT.php:14
13817
+ msgid "Agrigento"
 
 
 
 
 
13818
  msgstr ""
13819
 
13820
+ #: i18n/states/IT.php:15
13821
+ msgid "Alessandria"
13822
  msgstr ""
13823
 
13824
+ #: i18n/states/IT.php:16
13825
+ msgid "Ancona"
13826
  msgstr ""
13827
 
13828
+ #: i18n/states/IT.php:17
13829
+ msgid "Aosta"
 
13830
  msgstr ""
13831
 
13832
+ #: i18n/states/IT.php:18
13833
+ msgid "Arezzo"
13834
  msgstr ""
13835
 
13836
+ #: i18n/states/IT.php:19
13837
+ msgid "Ascoli Piceno"
13838
  msgstr ""
13839
 
13840
+ #: i18n/states/IT.php:20
13841
+ msgid "Asti"
 
 
13842
  msgstr ""
13843
 
13844
+ #: i18n/states/IT.php:21
13845
+ msgid "Avellino"
 
 
13846
  msgstr ""
13847
 
13848
+ #: i18n/states/IT.php:22
13849
+ msgid "Bari"
13850
  msgstr ""
13851
 
13852
+ #: i18n/states/IT.php:23
13853
+ msgid "Barletta-Andria-Trani"
13854
  msgstr ""
13855
 
13856
+ #: i18n/states/IT.php:24
13857
+ msgid "Belluno"
 
13858
  msgstr ""
13859
 
13860
+ #: i18n/states/IT.php:25
13861
+ msgid "Benevento"
13862
  msgstr ""
13863
 
13864
+ #: i18n/states/IT.php:26
13865
+ msgid "Bergamo"
 
 
 
13866
  msgstr ""
13867
 
13868
+ #: i18n/states/IT.php:27
13869
+ msgid "Biella"
13870
+ msgstr ""
 
 
 
13871
 
13872
+ #: i18n/states/IT.php:28
13873
+ msgid "Bologna"
 
 
 
13874
  msgstr ""
13875
 
13876
+ #: i18n/states/IT.php:29
13877
+ msgid "Bolzano"
 
 
 
13878
  msgstr ""
13879
 
13880
+ #: i18n/states/IT.php:30
13881
+ msgid "Brescia"
 
 
 
13882
  msgstr ""
13883
 
13884
+ #: i18n/states/IT.php:31
13885
+ msgid "Brindisi"
 
 
 
13886
  msgstr ""
13887
 
13888
+ #: i18n/states/IT.php:32
13889
+ msgid "Cagliari"
 
 
 
13890
  msgstr ""
13891
 
13892
+ #: i18n/states/IT.php:33
13893
+ msgid "Caltanissetta"
 
 
 
13894
  msgstr ""
13895
 
13896
+ #: i18n/states/IT.php:34
13897
+ msgid "Campobasso"
 
 
 
13898
  msgstr ""
13899
 
13900
+ #: i18n/states/IT.php:35
13901
+ msgid "Carbonia-Iglesias"
 
 
 
13902
  msgstr ""
13903
 
13904
+ #: i18n/states/IT.php:36
13905
+ msgid "Caserta"
13906
  msgstr ""
13907
 
13908
+ #: i18n/states/IT.php:37
13909
+ msgid "Catania"
 
 
 
13910
  msgstr ""
13911
 
13912
+ #: i18n/states/IT.php:38
13913
+ msgid "Catanzaro"
 
 
 
 
 
13914
  msgstr ""
13915
 
13916
+ #: i18n/states/IT.php:39
13917
+ msgid "Chieti"
 
 
 
 
 
 
 
 
 
13918
  msgstr ""
13919
 
13920
+ #: i18n/states/IT.php:40
13921
+ msgid "Como"
 
 
13922
  msgstr ""
13923
 
13924
+ #: i18n/states/IT.php:41
13925
+ msgid "Cosenza"
 
 
 
 
 
 
13926
  msgstr ""
13927
 
13928
+ #: i18n/states/IT.php:42
13929
+ msgid "Cremona"
 
13930
  msgstr ""
13931
 
13932
+ #: i18n/states/IT.php:43
13933
+ msgid "Crotone"
 
 
 
13934
  msgstr ""
13935
 
13936
+ #: i18n/states/IT.php:44
13937
+ msgid "Cuneo"
 
13938
  msgstr ""
13939
 
13940
+ #: i18n/states/IT.php:45
13941
+ msgid "Enna"
13942
  msgstr ""
13943
 
13944
+ #: i18n/states/IT.php:46
13945
+ msgid "Fermo"
 
13946
  msgstr ""
13947
 
13948
+ #: i18n/states/IT.php:47
13949
+ msgid "Ferrara"
13950
  msgstr ""
13951
 
13952
+ #: i18n/states/IT.php:48
13953
+ msgid "Firenze"
 
13954
  msgstr ""
13955
 
13956
+ #: i18n/states/IT.php:49
13957
+ msgid "Foggia"
 
13958
  msgstr ""
13959
 
13960
+ #: i18n/states/IT.php:50
13961
+ msgid "Forlì-Cesena"
13962
  msgstr ""
13963
 
13964
+ #: i18n/states/IT.php:51
13965
+ msgid "Frosinone"
13966
  msgstr ""
13967
 
13968
+ #: i18n/states/IT.php:52
13969
+ msgid "Genova"
 
13970
  msgstr ""
13971
 
13972
+ #: i18n/states/IT.php:53
13973
+ msgid "Gorizia"
 
 
 
13974
  msgstr ""
13975
 
13976
+ #: i18n/states/IT.php:54
13977
+ msgid "Grosseto"
 
13978
  msgstr ""
13979
 
13980
+ #: i18n/states/IT.php:55
13981
+ msgid "Imperia"
 
13982
  msgstr ""
13983
 
13984
+ #: i18n/states/IT.php:56
13985
+ msgid "Isernia"
 
13986
  msgstr ""
13987
 
13988
+ #: i18n/states/IT.php:57
13989
+ msgid "La Spezia"
 
13990
  msgstr ""
13991
 
13992
+ #: i18n/states/IT.php:58
13993
+ msgid "L'Aquila"
 
13994
  msgstr ""
13995
 
13996
+ #: i18n/states/IT.php:59
13997
+ msgid "Latina"
 
 
 
13998
  msgstr ""
13999
 
14000
+ #: i18n/states/IT.php:60
14001
+ msgid "Lecce"
 
14002
  msgstr ""
14003
 
14004
+ #: i18n/states/IT.php:61
14005
+ msgid "Lecco"
 
14006
  msgstr ""
14007
 
14008
+ #: i18n/states/IT.php:62
14009
+ msgid "Livorno"
 
14010
  msgstr ""
14011
 
14012
+ #: i18n/states/IT.php:63
14013
+ msgid "Lodi"
 
14014
  msgstr ""
14015
 
14016
+ #: i18n/states/IT.php:64
14017
+ msgid "Lucca"
 
14018
  msgstr ""
14019
 
14020
+ #: i18n/states/IT.php:65
14021
+ msgid "Macerata"
 
14022
  msgstr ""
14023
 
14024
+ #: i18n/states/IT.php:66
14025
+ msgid "Mantova"
 
14026
  msgstr ""
14027
 
14028
+ #: i18n/states/IT.php:67
14029
+ msgid "Massa-Carrara"
 
 
 
 
 
 
 
 
 
 
 
14030
  msgstr ""
14031
 
14032
+ #: i18n/states/IT.php:68
14033
+ msgid "Matera"
 
 
 
 
 
 
 
 
 
 
 
14034
  msgstr ""
14035
 
14036
+ #: i18n/states/IT.php:69
14037
+ msgid "Messina"
 
 
 
 
 
 
 
 
 
 
 
 
 
14038
  msgstr ""
14039
 
14040
+ #: i18n/states/IT.php:70
14041
+ msgid "Milano"
 
 
 
 
 
 
 
 
 
 
 
 
 
14042
  msgstr ""
14043
 
14044
+ #: i18n/states/IT.php:71
14045
+ msgid "Modena"
 
14046
  msgstr ""
14047
 
14048
+ #: i18n/states/IT.php:72
14049
+ msgid "Monza e della Brianza"
14050
  msgstr ""
14051
 
14052
+ #: i18n/states/IT.php:73
14053
+ msgid "Napoli"
 
14054
  msgstr ""
14055
 
14056
+ #: i18n/states/IT.php:74
14057
+ msgid "Novara"
 
14058
  msgstr ""
14059
 
14060
+ #: i18n/states/IT.php:75
14061
+ msgid "Nuoro"
 
 
 
 
 
 
 
14062
  msgstr ""
14063
 
14064
+ #: i18n/states/IT.php:76
14065
+ msgid "Olbia-Tempio"
 
14066
  msgstr ""
14067
 
14068
+ #: i18n/states/IT.php:77
14069
+ msgid "Oristano"
 
 
14070
  msgstr ""
14071
 
14072
+ #: i18n/states/IT.php:78
14073
+ msgid "Padova"
 
 
 
14074
  msgstr ""
14075
 
14076
+ #: i18n/states/IT.php:79
14077
+ msgid "Palermo"
 
14078
  msgstr ""
14079
 
14080
+ #: i18n/states/IT.php:80
14081
+ msgid "Parma"
 
14082
  msgstr ""
14083
 
14084
+ #: i18n/states/IT.php:81
14085
+ msgid "Pavia"
14086
  msgstr ""
14087
 
14088
+ #: i18n/states/IT.php:82
14089
+ msgid "Perugia"
 
14090
  msgstr ""
14091
 
14092
+ #: i18n/states/IT.php:83
14093
+ msgid "Pesaro e Urbino"
 
 
 
 
 
14094
  msgstr ""
14095
 
14096
+ #: i18n/states/IT.php:84
14097
+ msgid "Pescara"
 
 
 
 
 
14098
  msgstr ""
14099
 
14100
+ #: i18n/states/IT.php:85
14101
+ msgid "Piacenza"
14102
  msgstr ""
14103
 
14104
+ #: i18n/states/IT.php:86
14105
+ msgid "Pisa"
 
 
14106
  msgstr ""
14107
 
14108
+ #: i18n/states/IT.php:87
14109
+ msgid "Pistoia"
14110
  msgstr ""
14111
 
14112
+ #: i18n/states/IT.php:88
14113
+ msgid "Pordenone"
 
14114
  msgstr ""
14115
 
14116
+ #: i18n/states/IT.php:89
14117
+ msgid "Potenza"
 
14118
  msgstr ""
14119
 
14120
+ #: i18n/states/IT.php:90
14121
+ msgid "Prato"
 
14122
  msgstr ""
14123
 
14124
+ #: i18n/states/IT.php:91
14125
+ msgid "Ragusa"
 
14126
  msgstr ""
14127
 
14128
+ #: i18n/states/IT.php:92
14129
+ msgid "Ravenna"
14130
  msgstr ""
14131
 
14132
+ #: i18n/states/IT.php:93
14133
+ msgid "Reggio Calabria"
 
14134
  msgstr ""
14135
 
14136
+ #: i18n/states/IT.php:94
14137
+ msgid "Reggio Emilia"
 
14138
  msgstr ""
14139
 
14140
+ #: i18n/states/IT.php:95
14141
+ msgid "Rieti"
 
14142
  msgstr ""
14143
 
14144
+ #: i18n/states/IT.php:96
14145
+ msgid "Rimini"
 
 
 
 
 
 
 
14146
  msgstr ""
14147
 
14148
+ #: i18n/states/IT.php:97
14149
+ msgid "Roma"
 
 
 
 
 
 
 
14150
  msgstr ""
14151
 
14152
+ #: i18n/states/IT.php:98
14153
+ msgid "Rovigo"
 
 
 
 
 
 
 
14154
  msgstr ""
14155
 
14156
+ #: i18n/states/IT.php:99
14157
+ msgid "Salerno"
 
 
 
 
 
 
 
 
14158
  msgstr ""
14159
 
14160
+ #: i18n/states/IT.php:100
14161
+ msgid "Medio Campidano"
 
 
 
 
 
 
 
14162
  msgstr ""
14163
 
14164
+ #: i18n/states/IT.php:101
14165
+ msgid "Sassari"
 
 
 
 
 
 
 
14166
  msgstr ""
14167
 
14168
+ #: i18n/states/IT.php:102
14169
+ msgid "Savona"
 
 
 
14170
  msgstr ""
14171
 
14172
+ #: i18n/states/IT.php:103
14173
+ msgid "Siena"
 
 
 
14174
  msgstr ""
14175
 
14176
+ #: i18n/states/IT.php:104
14177
+ msgid "Siracusa"
 
 
 
14178
  msgstr ""
14179
 
14180
+ #: i18n/states/IT.php:105
14181
+ msgid "Sondrio"
 
14182
  msgstr ""
14183
 
14184
+ #: i18n/states/IT.php:106
14185
+ msgid "Taranto"
14186
  msgstr ""
14187
 
14188
+ #: i18n/states/IT.php:107
14189
+ msgid "Teramo"
 
14190
  msgstr ""
14191
 
14192
+ #: i18n/states/IT.php:108
14193
+ msgid "Terni"
 
14194
  msgstr ""
14195
 
14196
+ #: i18n/states/IT.php:109
14197
+ msgid "Torino"
 
14198
  msgstr ""
14199
 
14200
+ #: i18n/states/IT.php:110
14201
+ msgid "Ogliastra"
14202
  msgstr ""
14203
 
14204
+ #: i18n/states/IT.php:111
14205
+ msgid "Trapani"
14206
  msgstr ""
14207
 
14208
+ #: i18n/states/IT.php:112
14209
+ msgid "Trento"
14210
  msgstr ""
14211
 
14212
+ #: i18n/states/IT.php:113
14213
+ msgid "Treviso"
14214
  msgstr ""
14215
 
14216
+ #: i18n/states/IT.php:114
14217
+ msgid "Trieste"
14218
  msgstr ""
14219
 
14220
+ #: i18n/states/IT.php:115
14221
+ msgid "Udine"
 
 
 
 
 
 
 
 
 
14222
  msgstr ""
14223
 
14224
+ #: i18n/states/IT.php:116
14225
+ msgid "Varese"
 
14226
  msgstr ""
14227
 
14228
+ #: i18n/states/IT.php:117
14229
+ msgid "Venezia"
14230
  msgstr ""
14231
 
14232
+ #: i18n/states/IT.php:118
14233
+ msgid "Verbano-Cusio-Ossola"
 
14234
  msgstr ""
14235
 
14236
+ #: i18n/states/IT.php:119
14237
+ msgid "Vercelli"
 
 
14238
  msgstr ""
14239
 
14240
+ #: i18n/states/IT.php:120
14241
+ msgid "Verona"
14242
  msgstr ""
14243
 
14244
+ #: i18n/states/IT.php:121
14245
+ msgid "Vibo Valentia"
 
 
 
 
 
14246
  msgstr ""
14247
 
14248
+ #: i18n/states/IT.php:122
14249
+ msgid "Vicenza"
 
 
 
 
 
 
 
14250
  msgstr ""
14251
 
14252
+ #: i18n/states/IT.php:123
14253
+ msgid "Viterbo"
 
14254
  msgstr ""
14255
 
14256
+ #: i18n/states/CN.php:14
14257
+ msgid "Yunnan / &#20113;&#21335;"
 
 
 
14258
  msgstr ""
14259
 
14260
+ #: i18n/states/CN.php:15
14261
+ msgid "Beijing / &#21271;&#20140;"
 
14262
  msgstr ""
14263
 
14264
+ #: i18n/states/CN.php:16
14265
+ msgid "Tianjin / &#22825;&#27941;"
14266
  msgstr ""
14267
 
14268
+ #: i18n/states/CN.php:17
14269
+ msgid "Hebei / &#27827;&#21271;"
 
14270
  msgstr ""
14271
 
14272
+ #: i18n/states/CN.php:18
14273
+ msgid "Shanxi / &#23665;&#35199;"
 
14274
  msgstr ""
14275
 
14276
+ #: i18n/states/CN.php:19
14277
+ msgid "Inner Mongolia / &#20839;&#33945;&#21476;"
14278
  msgstr ""
14279
 
14280
+ #: i18n/states/CN.php:20
14281
+ msgid "Liaoning / &#36797;&#23425;"
14282
  msgstr ""
14283
 
14284
+ #: i18n/states/CN.php:21
14285
+ msgid "Jilin / &#21513;&#26519;"
 
 
 
14286
  msgstr ""
14287
 
14288
+ #: i18n/states/CN.php:22
14289
+ msgid "Heilongjiang / &#40657;&#40857;&#27743;"
 
 
 
 
 
 
 
 
 
 
 
14290
  msgstr ""
14291
 
14292
+ #: i18n/states/CN.php:23
14293
+ msgid "Shanghai / &#19978;&#28023;"
 
 
 
 
 
14294
  msgstr ""
14295
 
14296
+ #: i18n/states/CN.php:24
14297
+ msgid "Jiangsu / &#27743;&#33487;"
 
 
 
14298
  msgstr ""
14299
 
14300
+ #: i18n/states/CN.php:25
14301
+ msgid "Zhejiang / &#27993;&#27743;"
 
 
 
14302
  msgstr ""
14303
 
14304
+ #: i18n/states/CN.php:26
14305
+ msgid "Anhui / &#23433;&#24509;"
 
 
 
14306
  msgstr ""
14307
 
14308
+ #: i18n/states/CN.php:27
14309
+ msgid "Fujian / &#31119;&#24314;"
 
 
 
14310
  msgstr ""
14311
 
14312
+ #: i18n/states/CN.php:28
14313
+ msgid "Jiangxi / &#27743;&#35199;"
 
 
 
14314
  msgstr ""
14315
 
14316
+ #: i18n/states/CN.php:29
14317
+ msgid "Shandong / &#23665;&#19996;"
 
 
 
 
 
 
 
14318
  msgstr ""
14319
 
14320
+ #: i18n/states/CN.php:30
14321
+ msgid "Henan / &#27827;&#21335;"
 
 
 
 
 
 
 
14322
  msgstr ""
14323
 
14324
+ #: i18n/states/CN.php:31
14325
+ msgid "Hubei / &#28246;&#21271;"
 
 
 
 
 
 
 
14326
  msgstr ""
14327
 
14328
+ #: i18n/states/CN.php:32
14329
+ msgid "Hunan / &#28246;&#21335;"
 
 
 
 
 
 
 
 
 
14330
  msgstr ""
14331
 
14332
+ #: i18n/states/CN.php:33
14333
+ msgid "Guangdong / &#24191;&#19996;"
 
 
 
 
 
 
 
14334
  msgstr ""
14335
 
14336
+ #: i18n/states/CN.php:34
14337
+ msgid "Guangxi Zhuang / &#24191;&#35199;&#22766;&#26063;"
 
 
 
 
 
14338
  msgstr ""
14339
 
14340
+ #: i18n/states/CN.php:35
14341
+ msgid "Hainan / &#28023;&#21335;"
 
 
 
14342
  msgstr ""
14343
 
14344
+ #: i18n/states/CN.php:36
14345
+ msgid "Chongqing / &#37325;&#24198;"
 
 
 
14346
  msgstr ""
14347
 
14348
+ #: i18n/states/CN.php:37
14349
+ msgid "Sichuan / &#22235;&#24029;"
14350
  msgstr ""
14351
 
14352
+ #: i18n/states/CN.php:38
14353
+ msgid "Guizhou / &#36149;&#24030;"
 
 
 
 
 
 
14354
  msgstr ""
14355
 
14356
+ #: i18n/states/CN.php:39
14357
+ msgid "Shaanxi / &#38485;&#35199;"
 
 
14358
  msgstr ""
14359
 
14360
+ #: i18n/states/CN.php:40
14361
+ msgid "Gansu / &#29976;&#32899;"
 
14362
  msgstr ""
14363
 
14364
+ #: i18n/states/CN.php:41
14365
+ msgid "Qinghai / &#38738;&#28023;"
 
 
 
14366
  msgstr ""
14367
 
14368
+ #: i18n/states/CN.php:42
14369
+ msgid "Ningxia Hui / &#23425;&#22799;"
 
14370
  msgstr ""
14371
 
14372
+ #: i18n/states/CN.php:43
14373
+ msgid "Macau / &#28595;&#38376;"
 
 
 
14374
  msgstr ""
14375
 
14376
+ #: i18n/states/CN.php:44
14377
+ msgid "Tibet / &#35199;&#34255;"
 
 
 
14378
  msgstr ""
14379
 
14380
+ #: i18n/states/CN.php:45
14381
+ msgid "Xinjiang / &#26032;&#30086;"
 
14382
  msgstr ""
14383
 
14384
+ #: i18n/states/HU.php:14
14385
+ msgid "Bács-Kiskun"
 
14386
  msgstr ""
14387
 
14388
+ #: i18n/states/HU.php:15
14389
+ msgid "Békés"
 
14390
  msgstr ""
14391
 
14392
+ #: i18n/states/HU.php:16
14393
+ msgid "Baranya"
 
14394
  msgstr ""
14395
 
14396
+ #: i18n/states/HU.php:17
14397
+ msgid "Borsod-Abaúj-Zemplén"
 
14398
  msgstr ""
14399
 
14400
+ #: i18n/states/HU.php:18
14401
+ msgid "Budapest"
 
14402
  msgstr ""
14403
 
14404
+ #: i18n/states/HU.php:19
14405
+ msgid "Csongrád"
14406
  msgstr ""
14407
 
14408
+ #: i18n/states/HU.php:20
14409
+ msgid "Fejér"
14410
  msgstr ""
14411
 
14412
+ #: i18n/states/HU.php:21
14413
+ msgid "Győr-Moson-Sopron"
 
14414
  msgstr ""
14415
 
14416
+ #: i18n/states/HU.php:22
14417
+ msgid "Hajdú-Bihar"
 
14418
  msgstr ""
14419
 
14420
+ #: i18n/states/HU.php:23
14421
+ msgid "Heves"
 
14422
  msgstr ""
14423
 
14424
+ #: i18n/states/HU.php:24
14425
+ msgid "Jász-Nagykun-Szolnok"
 
14426
  msgstr ""
14427
 
14428
+ #: i18n/states/HU.php:25
14429
+ msgid "Komárom-Esztergom"
 
14430
  msgstr ""
14431
 
14432
+ #: i18n/states/HU.php:26
14433
+ msgid "Nógrád"
 
14434
  msgstr ""
14435
 
14436
+ #: i18n/states/HU.php:27
14437
+ msgid "Pest"
 
14438
  msgstr ""
14439
 
14440
+ #: i18n/states/HU.php:28
14441
+ msgid "Somogy"
 
14442
  msgstr ""
14443
 
14444
+ #: i18n/states/HU.php:29
14445
+ msgid "Szabolcs-Szatmár-Bereg"
 
14446
  msgstr ""
14447
 
14448
+ #: i18n/states/HU.php:30
14449
+ msgid "Tolna"
 
14450
  msgstr ""
14451
 
14452
+ #: i18n/states/HU.php:31
14453
+ msgid "Vas"
 
14454
  msgstr ""
14455
 
14456
+ #: i18n/states/HU.php:32
14457
+ msgid "Veszprém"
 
14458
  msgstr ""
14459
 
14460
+ #: i18n/states/HU.php:33
14461
+ msgid "Zala"
 
14462
  msgstr ""
14463
 
14464
+ #: i18n/states/CA.php:14
14465
+ msgid "Alberta"
 
14466
  msgstr ""
14467
 
14468
+ #: i18n/states/CA.php:15
14469
+ msgid "British Columbia"
 
 
 
14470
  msgstr ""
14471
 
14472
+ #: i18n/states/CA.php:16
14473
+ msgid "Manitoba"
 
14474
  msgstr ""
14475
 
14476
+ #: i18n/states/CA.php:17
14477
+ msgid "New Brunswick"
 
14478
  msgstr ""
14479
 
14480
+ #: i18n/states/CA.php:18
14481
+ msgid "Newfoundland and Labrador"
 
14482
  msgstr ""
14483
 
14484
+ #: i18n/states/CA.php:19
14485
+ msgid "Northwest Territories"
 
14486
  msgstr ""
14487
 
14488
+ #: i18n/states/CA.php:20
14489
+ msgid "Nova Scotia"
 
14490
  msgstr ""
14491
 
14492
+ #: i18n/states/CA.php:21
14493
+ msgid "Nunavut"
14494
  msgstr ""
14495
 
14496
+ #: i18n/states/CA.php:22
14497
+ msgid "Ontario"
 
14498
  msgstr ""
14499
 
14500
+ #: i18n/states/CA.php:23
14501
+ msgid "Prince Edward Island"
14502
  msgstr ""
14503
 
14504
+ #: i18n/states/CA.php:24
14505
+ msgid "Quebec"
 
14506
  msgstr ""
14507
 
14508
+ #: i18n/states/CA.php:25
14509
+ msgid "Saskatchewan"
 
14510
  msgstr ""
14511
 
14512
+ #: i18n/states/CA.php:26
14513
+ msgid "Yukon Territory"
 
14514
  msgstr ""
14515
 
14516
+ #: i18n/states/CH.php:14
14517
+ msgid "Aargau"
 
14518
  msgstr ""
14519
 
14520
+ #: i18n/states/CH.php:15
14521
+ msgid "Appenzell Ausserrhoden"
 
14522
  msgstr ""
14523
 
14524
+ #: i18n/states/CH.php:16
14525
+ msgid "Appenzell Innerrhoden"
 
14526
  msgstr ""
14527
 
14528
+ #: i18n/states/CH.php:17
14529
+ msgid "Basel-Landschaft"
 
14530
  msgstr ""
14531
 
14532
+ #: i18n/states/CH.php:18
14533
+ msgid "Basel-Stadt"
 
14534
  msgstr ""
14535
 
14536
+ #: i18n/states/CH.php:19
14537
+ msgid "Bern"
 
14538
  msgstr ""
14539
 
14540
+ #: i18n/states/CH.php:20
14541
+ msgid "Fribourg"
 
 
 
14542
  msgstr ""
14543
 
14544
+ #: i18n/states/CH.php:21
14545
+ msgid "Geneva"
 
14546
  msgstr ""
14547
 
14548
+ #: i18n/states/CH.php:22
14549
+ msgid "Glarus"
 
14550
  msgstr ""
14551
 
14552
+ #: i18n/states/CH.php:23
14553
+ msgid "Graub&uuml;nden"
 
14554
  msgstr ""
14555
 
14556
+ #: i18n/states/CH.php:24
14557
+ msgid "Jura"
 
14558
  msgstr ""
14559
 
14560
+ #: i18n/states/CH.php:25
14561
+ msgid "Luzern"
 
14562
  msgstr ""
14563
 
14564
+ #: i18n/states/CH.php:26
14565
+ msgid "Neuch&acirc;tel"
 
14566
  msgstr ""
14567
 
14568
+ #: i18n/states/CH.php:27
14569
+ msgid "Nidwalden"
 
14570
  msgstr ""
14571
 
14572
+ #: i18n/states/CH.php:28
14573
+ msgid "Obwalden"
 
14574
  msgstr ""
14575
 
14576
+ #: i18n/states/CH.php:29
14577
+ msgid "Schaffhausen"
 
 
14578
  msgstr ""
14579
 
14580
+ #: i18n/states/CH.php:30
14581
+ msgid "Schwyz"
 
14582
  msgstr ""
14583
 
14584
+ #: i18n/states/CH.php:31
14585
+ msgid "Solothurn"
 
14586
  msgstr ""
14587
 
14588
+ #: i18n/states/CH.php:32
14589
+ msgid "St. Gallen"
 
 
 
14590
  msgstr ""
14591
 
14592
+ #: i18n/states/CH.php:33
14593
+ msgid "Thurgau"
 
14594
  msgstr ""
14595
 
14596
+ #: i18n/states/CH.php:34
14597
+ msgid "Ticino"
 
14598
  msgstr ""
14599
 
14600
+ #: i18n/states/CH.php:35
14601
+ msgid "Uri"
 
14602
  msgstr ""
14603
 
14604
+ #: i18n/states/CH.php:36
14605
+ msgid "Valais"
 
 
14606
  msgstr ""
14607
 
14608
+ #: i18n/states/CH.php:37
14609
+ msgid "Vaud"
14610
  msgstr ""
14611
 
14612
+ #: i18n/states/CH.php:38
14613
+ msgid "Zug"
14614
  msgstr ""
14615
 
14616
+ #: i18n/states/CH.php:39
14617
+ msgid "Z&uuml;rich"
14618
  msgstr ""
14619
 
14620
+ #: i18n/states/US.php:14
14621
+ msgid "Alabama"
14622
  msgstr ""
14623
 
14624
+ #: i18n/states/US.php:15
14625
+ msgid "Alaska"
14626
  msgstr ""
14627
 
14628
+ #: i18n/states/US.php:16
14629
+ msgid "Arizona"
14630
  msgstr ""
14631
 
14632
+ #: i18n/states/US.php:17
14633
+ msgid "Arkansas"
14634
  msgstr ""
14635
 
14636
+ #: i18n/states/US.php:18
14637
+ msgid "California"
14638
  msgstr ""
14639
 
14640
+ #: i18n/states/US.php:19
14641
+ msgid "Colorado"
 
 
14642
  msgstr ""
14643
 
14644
+ #: i18n/states/US.php:20
14645
+ msgid "Connecticut"
 
 
 
14646
  msgstr ""
14647
 
14648
+ #: i18n/states/US.php:21
14649
+ msgid "Delaware"
 
 
 
14650
  msgstr ""
14651
 
14652
+ #: i18n/states/US.php:22
14653
+ msgid "District Of Columbia"
 
 
14654
  msgstr ""
14655
 
14656
+ #: i18n/states/US.php:23
14657
+ msgid "Florida"
 
 
14658
  msgstr ""
14659
 
14660
+ #: i18n/states/US.php:24
14661
+ msgctxt "US state of Georgia"
14662
+ msgid "Georgia"
 
14663
  msgstr ""
14664
 
14665
+ #: i18n/states/US.php:25
14666
+ msgid "Hawaii"
 
 
14667
  msgstr ""
14668
 
14669
+ #: i18n/states/US.php:26
14670
+ msgid "Idaho"
 
 
14671
  msgstr ""
14672
 
14673
+ #: i18n/states/US.php:27
14674
+ msgid "Illinois"
 
 
 
14675
  msgstr ""
14676
 
14677
+ #: i18n/states/US.php:28
14678
+ msgid "Indiana"
 
 
 
 
 
14679
  msgstr ""
14680
 
14681
+ #: i18n/states/US.php:29
14682
+ msgid "Iowa"
 
14683
  msgstr ""
14684
 
14685
+ #: i18n/states/US.php:30
14686
+ msgid "Kansas"
 
 
 
 
14687
  msgstr ""
14688
 
14689
+ #: i18n/states/US.php:31
14690
+ msgid "Kentucky"
 
14691
  msgstr ""
14692
 
14693
+ #: i18n/states/US.php:32
14694
+ msgid "Louisiana"
 
14695
  msgstr ""
14696
 
14697
+ #: i18n/states/US.php:33
14698
+ msgid "Maine"
 
 
 
 
 
14699
  msgstr ""
14700
 
14701
+ #: i18n/states/US.php:35
14702
+ msgid "Massachusetts"
 
 
 
 
 
14703
  msgstr ""
14704
 
14705
+ #: i18n/states/US.php:36
14706
+ msgid "Michigan"
 
 
14707
  msgstr ""
14708
 
14709
+ #: i18n/states/US.php:37
14710
+ msgid "Minnesota"
 
 
 
 
 
14711
  msgstr ""
14712
 
14713
+ #: i18n/states/US.php:38
14714
+ msgid "Mississippi"
 
 
14715
  msgstr ""
14716
 
14717
+ #: i18n/states/US.php:39
14718
+ msgid "Missouri"
 
 
 
 
 
14719
  msgstr ""
14720
 
14721
+ #: i18n/states/US.php:41
14722
+ msgid "Nebraska"
 
 
 
 
 
14723
  msgstr ""
14724
 
14725
+ #: i18n/states/US.php:42
14726
+ msgid "Nevada"
 
 
 
 
 
14727
  msgstr ""
14728
 
14729
+ #: i18n/states/US.php:43
14730
+ msgid "New Hampshire"
 
 
14731
  msgstr ""
14732
 
14733
+ #: i18n/states/US.php:44
14734
+ msgid "New Jersey"
 
 
 
 
14735
  msgstr ""
14736
 
14737
+ #: i18n/states/US.php:45
14738
+ msgid "New Mexico"
 
 
 
 
 
14739
  msgstr ""
14740
 
14741
+ #: i18n/states/US.php:46
14742
+ msgid "New York"
 
14743
  msgstr ""
14744
 
14745
+ #: i18n/states/US.php:47
14746
+ msgid "North Carolina"
 
14747
  msgstr ""
14748
 
14749
+ #: i18n/states/US.php:48
14750
+ msgid "North Dakota"
14751
  msgstr ""
14752
 
14753
+ #: i18n/states/US.php:49
14754
+ msgid "Ohio"
 
14755
  msgstr ""
14756
 
14757
+ #: i18n/states/US.php:50
14758
+ msgid "Oklahoma"
 
14759
  msgstr ""
14760
 
14761
+ #: i18n/states/US.php:51
14762
+ msgid "Oregon"
 
14763
  msgstr ""
14764
 
14765
+ #: i18n/states/US.php:52
14766
+ msgid "Pennsylvania"
 
14767
  msgstr ""
14768
 
14769
+ #: i18n/states/US.php:53
14770
+ msgid "Rhode Island"
 
14771
  msgstr ""
14772
 
14773
+ #: i18n/states/US.php:54
14774
+ msgid "South Carolina"
14775
  msgstr ""
14776
 
14777
+ #: i18n/states/US.php:55
14778
+ msgid "South Dakota"
 
14779
  msgstr ""
14780
 
14781
+ #: i18n/states/US.php:56
14782
+ msgid "Tennessee"
 
14783
  msgstr ""
14784
 
14785
+ #: i18n/states/US.php:57
14786
+ msgid "Texas"
14787
  msgstr ""
14788
 
14789
+ #: i18n/states/US.php:58
14790
+ msgid "Utah"
 
14791
  msgstr ""
14792
 
14793
+ #: i18n/states/US.php:59
14794
+ msgid "Vermont"
 
 
 
14795
  msgstr ""
14796
 
14797
+ #: i18n/states/US.php:60
14798
+ msgid "Virginia"
 
14799
  msgstr ""
14800
 
14801
+ #: i18n/states/US.php:61
14802
+ msgid "Washington"
 
14803
  msgstr ""
14804
 
14805
+ #: i18n/states/US.php:62
14806
+ msgid "West Virginia"
 
14807
  msgstr ""
14808
 
14809
+ #: i18n/states/US.php:63
14810
+ msgid "Wisconsin"
 
14811
  msgstr ""
14812
 
14813
+ #: i18n/states/US.php:64
14814
+ msgid "Wyoming"
 
14815
  msgstr ""
14816
 
14817
+ #: i18n/states/US.php:65
14818
+ msgid "Armed Forces (AA)"
 
14819
  msgstr ""
14820
 
14821
+ #: i18n/states/US.php:66
14822
+ msgid "Armed Forces (AE)"
 
14823
  msgstr ""
14824
 
14825
+ #: i18n/states/US.php:67
14826
+ msgid "Armed Forces (AP)"
 
14827
  msgstr ""
14828
 
14829
+ #: i18n/states/HK.php:14
14830
+ msgid "Hong Kong Island"
14831
  msgstr ""
14832
 
14833
+ #: i18n/states/HK.php:15
14834
+ msgid "Kowloon"
 
14835
  msgstr ""
14836
 
14837
+ #: i18n/states/HK.php:16
14838
+ msgid "New Territories"
 
14839
  msgstr ""
14840
 
14841
+ #: i18n/states/TZ.php:14
14842
+ msgid "Arusha"
 
14843
  msgstr ""
14844
 
14845
+ #: i18n/states/TZ.php:15
14846
+ msgid "Dar es Salaam"
 
 
 
14847
  msgstr ""
14848
 
14849
+ #: i18n/states/TZ.php:16
14850
+ msgid "Dodoma"
 
 
 
14851
  msgstr ""
14852
 
14853
+ #: i18n/states/TZ.php:17
14854
+ msgid "Iringa"
 
 
 
14855
  msgstr ""
14856
 
14857
+ #: i18n/states/TZ.php:18
14858
+ msgid "Kagera"
 
 
 
14859
  msgstr ""
14860
 
14861
+ #: i18n/states/TZ.php:19
14862
+ msgid "Pemba North"
 
 
 
14863
  msgstr ""
14864
 
14865
+ #: i18n/states/TZ.php:20
14866
+ msgid "Zanzibar North"
 
 
 
 
14867
  msgstr ""
14868
 
14869
+ #: i18n/states/TZ.php:21
14870
+ msgid "Kigoma"
 
14871
  msgstr ""
14872
 
14873
+ #: i18n/states/TZ.php:22
14874
+ msgid "Kilimanjaro"
 
 
 
14875
  msgstr ""
14876
 
14877
+ #: i18n/states/TZ.php:23
14878
+ msgid "Pemba South"
 
 
 
14879
  msgstr ""
14880
 
14881
+ #: i18n/states/TZ.php:24
14882
+ msgid "Zanzibar South"
 
 
 
14883
  msgstr ""
14884
 
14885
+ #: i18n/states/TZ.php:25
14886
+ msgid "Lindi"
 
 
 
14887
  msgstr ""
14888
 
14889
+ #: i18n/states/TZ.php:26
14890
+ msgid "Mara"
 
14891
  msgstr ""
14892
 
14893
+ #: i18n/states/TZ.php:27
14894
+ msgid "Mbeya"
 
 
14895
  msgstr ""
14896
 
14897
+ #: i18n/states/TZ.php:28
14898
+ msgid "Zanzibar West"
 
14899
  msgstr ""
14900
 
14901
+ #: i18n/states/TZ.php:29
14902
+ msgid "Morogoro"
 
 
14903
  msgstr ""
14904
 
14905
+ #: i18n/states/TZ.php:30
14906
+ msgid "Mtwara"
 
 
14907
  msgstr ""
14908
 
14909
+ #: i18n/states/TZ.php:31
14910
+ msgid "Mwanza"
 
 
14911
  msgstr ""
14912
 
14913
+ #: i18n/states/TZ.php:32
14914
+ msgid "Coast"
 
 
 
14915
  msgstr ""
14916
 
14917
+ #: i18n/states/TZ.php:33
14918
+ msgid "Rukwa"
 
 
 
14919
  msgstr ""
14920
 
14921
+ #: i18n/states/TZ.php:34
14922
+ msgid "Ruvuma"
 
14923
  msgstr ""
14924
 
14925
+ #: i18n/states/TZ.php:35
14926
+ msgid "Shinyanga"
 
 
 
14927
  msgstr ""
14928
 
14929
+ #: i18n/states/TZ.php:36
14930
+ msgid "Singida"
 
 
 
14931
  msgstr ""
14932
 
14933
+ #: i18n/states/TZ.php:37
14934
+ msgid "Tabora"
 
 
 
 
 
 
14935
  msgstr ""
14936
 
14937
+ #: i18n/states/TZ.php:38
14938
+ msgid "Tanga"
 
 
 
 
 
 
14939
  msgstr ""
14940
 
14941
+ #: i18n/states/TZ.php:39
14942
+ msgid "Manyara"
 
 
 
14943
  msgstr ""
14944
 
14945
+ #: i18n/states/TZ.php:40
14946
+ msgid "Geita"
 
 
14947
  msgstr ""
14948
 
14949
+ #: i18n/states/TZ.php:41
14950
+ msgid "Katavi"
 
 
 
 
 
 
 
 
 
 
14951
  msgstr ""
14952
 
14953
+ #: i18n/states/TZ.php:42
14954
+ msgid "Njombe"
 
 
14955
  msgstr ""
14956
 
14957
+ #: i18n/states/TZ.php:43
14958
+ msgid "Simiyu"
 
14959
  msgstr ""
14960
 
14961
+ #: i18n/states/TR.php:14
14962
+ msgid "Adana"
 
14963
  msgstr ""
14964
 
14965
+ #: i18n/states/TR.php:15
14966
+ msgid "Ad&#305;yaman"
 
14967
  msgstr ""
14968
 
14969
+ #: i18n/states/TR.php:16
14970
+ msgid "Afyon"
14971
  msgstr ""
14972
 
14973
+ #: i18n/states/TR.php:17
14974
+ msgid "A&#287;r&#305;"
 
14975
  msgstr ""
14976
 
14977
+ #: i18n/states/TR.php:18
14978
+ msgid "Amasya"
14979
  msgstr ""
14980
 
14981
+ #: i18n/states/TR.php:19
14982
+ msgid "Ankara"
 
14983
  msgstr ""
14984
 
14985
+ #: i18n/states/TR.php:20
14986
+ msgid "Antalya"
 
14987
  msgstr ""
14988
 
14989
+ #: i18n/states/TR.php:21
14990
+ msgid "Artvin"
 
14991
  msgstr ""
14992
 
14993
+ #: i18n/states/TR.php:22
14994
+ msgid "Ayd&#305;n"
 
14995
  msgstr ""
14996
 
14997
+ #: i18n/states/TR.php:23
14998
+ msgid "Bal&#305;kesir"
 
14999
  msgstr ""
15000
 
15001
+ #: i18n/states/TR.php:24
15002
+ msgid "Bilecik"
 
15003
  msgstr ""
15004
 
15005
+ #: i18n/states/TR.php:25
15006
+ msgid "Bing&#246;l"
 
15007
  msgstr ""
15008
 
15009
+ #: i18n/states/TR.php:26
15010
+ msgid "Bitlis"
 
15011
  msgstr ""
15012
 
15013
+ #: i18n/states/TR.php:27
15014
+ msgid "Bolu"
 
15015
  msgstr ""
15016
 
15017
+ #: i18n/states/TR.php:28
15018
+ msgid "Burdur"
 
15019
  msgstr ""
15020
 
15021
+ #: i18n/states/TR.php:29
15022
+ msgid "Bursa"
 
15023
  msgstr ""
15024
 
15025
+ #: i18n/states/TR.php:30
15026
+ msgid "&#199;anakkale"
 
15027
  msgstr ""
15028
 
15029
+ #: i18n/states/TR.php:31
15030
+ msgid "&#199;ank&#305;r&#305;"
 
15031
  msgstr ""
15032
 
15033
+ #: i18n/states/TR.php:32
15034
+ msgid "&#199;orum"
 
15035
  msgstr ""
15036
 
15037
+ #: i18n/states/TR.php:33
15038
+ msgid "Denizli"
 
15039
  msgstr ""
15040
 
15041
+ #: i18n/states/TR.php:34
15042
+ msgid "Diyarbak&#305;r"
 
15043
  msgstr ""
15044
 
15045
+ #: i18n/states/TR.php:35
15046
+ msgid "Edirne"
 
15047
  msgstr ""
15048
 
15049
+ #: i18n/states/TR.php:36
15050
+ msgid "Elaz&#305;&#287;"
 
15051
  msgstr ""
15052
 
15053
+ #: i18n/states/TR.php:37
15054
+ msgid "Erzincan"
 
15055
  msgstr ""
15056
 
15057
+ #: i18n/states/TR.php:38
15058
+ msgid "Erzurum"
 
15059
  msgstr ""
15060
 
15061
+ #: i18n/states/TR.php:39
15062
+ msgid "Eski&#351;ehir"
 
 
15063
  msgstr ""
15064
 
15065
+ #: i18n/states/TR.php:40
15066
+ msgid "Gaziantep"
 
15067
  msgstr ""
15068
 
15069
+ #: i18n/states/TR.php:41
15070
+ msgid "Giresun"
 
 
15071
  msgstr ""
15072
 
15073
+ #: i18n/states/TR.php:42
15074
+ msgid "G&#252;m&#252;&#351;hane"
 
 
15075
  msgstr ""
15076
 
15077
+ #: i18n/states/TR.php:43
15078
+ msgid "Hakkari"
 
 
15079
  msgstr ""
15080
 
15081
+ #: i18n/states/TR.php:44
15082
+ msgid "Hatay"
 
15083
  msgstr ""
15084
 
15085
+ #: i18n/states/TR.php:45
15086
+ msgid "Isparta"
 
15087
  msgstr ""
15088
 
15089
+ #: i18n/states/TR.php:46
15090
+ msgid "&#304;&#231;el"
 
15091
  msgstr ""
15092
 
15093
+ #: i18n/states/TR.php:47
15094
+ msgid "&#304;stanbul"
 
15095
  msgstr ""
15096
 
15097
+ #: i18n/states/TR.php:48
15098
+ msgid "&#304;zmir"
 
15099
  msgstr ""
15100
 
15101
+ #: i18n/states/TR.php:49
15102
+ msgid "Kars"
 
15103
  msgstr ""
15104
 
15105
+ #: i18n/states/TR.php:50
15106
+ msgid "Kastamonu"
15107
  msgstr ""
15108
 
15109
+ #: i18n/states/TR.php:51
15110
+ msgid "Kayseri"
 
15111
  msgstr ""
15112
 
15113
+ #: i18n/states/TR.php:52
15114
+ msgid "K&#305;rklareli"
 
15115
  msgstr ""
15116
 
15117
+ #: i18n/states/TR.php:53
15118
+ msgid "K&#305;r&#351;ehir"
 
15119
  msgstr ""
15120
 
15121
+ #: i18n/states/TR.php:54
15122
+ msgid "Kocaeli"
 
15123
  msgstr ""
15124
 
15125
+ #: i18n/states/TR.php:55
15126
+ msgid "Konya"
 
15127
  msgstr ""
15128
 
15129
+ #: i18n/states/TR.php:56
15130
+ msgid "K&#252;tahya"
 
15131
  msgstr ""
15132
 
15133
+ #: i18n/states/TR.php:57
15134
+ msgid "Malatya"
 
15135
  msgstr ""
15136
 
15137
+ #: i18n/states/TR.php:58
15138
+ msgid "Manisa"
 
15139
  msgstr ""
15140
 
15141
+ #: i18n/states/TR.php:59
15142
+ msgid "Kahramanmara&#351;"
 
 
15143
  msgstr ""
15144
 
15145
+ #: i18n/states/TR.php:60
15146
+ msgid "Mardin"
 
15147
  msgstr ""
15148
 
15149
+ #: i18n/states/TR.php:61
15150
+ msgid "Mu&#287;la"
 
15151
  msgstr ""
15152
 
15153
+ #: i18n/states/TR.php:62
15154
+ msgid "Mu&#351;"
 
15155
  msgstr ""
15156
 
15157
+ #: i18n/states/TR.php:63
15158
+ msgid "Nev&#351;ehir"
 
 
 
15159
  msgstr ""
15160
 
15161
+ #: i18n/states/TR.php:64
15162
+ msgid "Ni&#287;de"
 
15163
  msgstr ""
15164
 
15165
+ #: i18n/states/TR.php:65
15166
+ msgid "Ordu"
 
15167
  msgstr ""
15168
 
15169
+ #: i18n/states/TR.php:66
15170
+ msgid "Rize"
 
15171
  msgstr ""
15172
 
15173
+ #: i18n/states/TR.php:67
15174
+ msgid "Sakarya"
15175
  msgstr ""
15176
 
15177
+ #: i18n/states/TR.php:68
15178
+ msgid "Samsun"
 
15179
  msgstr ""
15180
 
15181
+ #: i18n/states/TR.php:69
15182
+ msgid "Siirt"
 
15183
  msgstr ""
15184
 
15185
+ #: i18n/states/TR.php:70
15186
+ msgid "Sinop"
 
15187
  msgstr ""
15188
 
15189
+ #: i18n/states/TR.php:71
15190
+ msgid "Sivas"
 
15191
  msgstr ""
15192
 
15193
+ #: i18n/states/TR.php:72
15194
+ msgid "Tekirda&#287;"
15195
  msgstr ""
15196
 
15197
+ #: i18n/states/TR.php:73
15198
+ msgid "Tokat"
15199
  msgstr ""
15200
 
15201
+ #: i18n/states/TR.php:74
15202
+ msgid "Trabzon"
 
15203
  msgstr ""
15204
 
15205
+ #: i18n/states/TR.php:75
15206
+ msgid "Tunceli"
 
15207
  msgstr ""
15208
 
15209
+ #: i18n/states/TR.php:76
15210
+ msgid "&#350;anl&#305;urfa"
 
15211
  msgstr ""
15212
 
15213
+ #: i18n/states/TR.php:77
15214
+ msgid "U&#351;ak"
 
 
15215
  msgstr ""
15216
 
15217
+ #: i18n/states/TR.php:78
15218
+ msgid "Van"
 
 
 
15219
  msgstr ""
15220
 
15221
+ #: i18n/states/TR.php:79
15222
+ msgid "Yozgat"
15223
  msgstr ""
15224
 
15225
+ #: i18n/states/TR.php:80
15226
+ msgid "Zonguldak"
15227
  msgstr ""
15228
 
15229
+ #: i18n/states/TR.php:81
15230
+ msgid "Aksaray"
15231
  msgstr ""
15232
 
15233
+ #: i18n/states/TR.php:82
15234
+ msgid "Bayburt"
15235
  msgstr ""
15236
 
15237
+ #: i18n/states/TR.php:83
15238
+ msgid "Karaman"
15239
  msgstr ""
15240
 
15241
+ #: i18n/states/TR.php:84
15242
+ msgid "K&#305;r&#305;kkale"
 
 
15243
  msgstr ""
15244
 
15245
+ #: i18n/states/TR.php:85
15246
+ msgid "Batman"
 
15247
  msgstr ""
15248
 
15249
+ #: i18n/states/TR.php:86
15250
+ msgid "&#350;&#305;rnak"
 
 
15251
  msgstr ""
15252
 
15253
+ #: i18n/states/TR.php:87
15254
+ msgid "Bart&#305;n"
 
15255
  msgstr ""
15256
 
15257
+ #: i18n/states/TR.php:88
15258
+ msgid "Ardahan"
 
 
15259
  msgstr ""
15260
 
15261
+ #: i18n/states/TR.php:89
15262
+ msgid "I&#287;d&#305;r"
15263
  msgstr ""
15264
 
15265
+ #: i18n/states/TR.php:90
15266
+ msgid "Yalova"
15267
  msgstr ""
15268
 
15269
+ #: i18n/states/TR.php:91
15270
+ msgid "Karab&#252;k"
15271
  msgstr ""
15272
 
15273
+ #: i18n/states/TR.php:92
15274
+ msgid "Kilis"
15275
  msgstr ""
15276
 
15277
+ #: i18n/states/TR.php:93
15278
+ msgid "Osmaniye"
15279
  msgstr ""
15280
 
15281
+ #: i18n/states/TR.php:94
15282
+ msgid "D&#252;zce"
 
15283
  msgstr ""
15284
 
15285
+ #: i18n/states/PE.php:14
15286
+ msgid "El Callao"
 
15287
  msgstr ""
15288
 
15289
+ #: i18n/states/PE.php:15
15290
+ msgid "Municipalidad Metropolitana de Lima"
 
15291
  msgstr ""
15292
 
15293
+ #: i18n/states/PE.php:16 i18n/states/BR.php:17
15294
+ msgid "Amazonas"
 
15295
  msgstr ""
15296
 
15297
+ #: i18n/states/PE.php:17
15298
+ msgid "Ancash"
15299
  msgstr ""
15300
 
15301
+ #: i18n/states/PE.php:18
15302
+ msgid "Apur&iacute;mac"
15303
  msgstr ""
15304
 
15305
+ #: i18n/states/PE.php:19
15306
+ msgid "Arequipa"
 
15307
  msgstr ""
15308
 
15309
+ #: i18n/states/PE.php:20
15310
+ msgid "Ayacucho"
15311
  msgstr ""
15312
 
15313
+ #: i18n/states/PE.php:21
15314
+ msgid "Cajamarca"
15315
  msgstr ""
15316
 
15317
+ #: i18n/states/PE.php:22
15318
+ msgid "Cusco"
15319
  msgstr ""
15320
 
15321
+ #: i18n/states/PE.php:23
15322
+ msgid "Huancavelica"
 
15323
  msgstr ""
15324
 
15325
+ #: i18n/states/PE.php:24
15326
+ msgid "Hu&aacute;nuco"
15327
  msgstr ""
15328
 
15329
+ #: i18n/states/PE.php:25
15330
+ msgid "Ica"
15331
  msgstr ""
15332
 
15333
+ #: i18n/states/PE.php:26
15334
+ msgid "Jun&iacute;n"
15335
  msgstr ""
15336
 
15337
+ #: i18n/states/PE.php:27
15338
+ msgid "La Libertad"
15339
  msgstr ""
15340
 
15341
+ #: i18n/states/PE.php:28
15342
+ msgid "Lambayeque"
 
15343
  msgstr ""
15344
 
15345
+ #: i18n/states/PE.php:29
15346
+ msgid "Lima"
 
 
15347
  msgstr ""
15348
 
15349
+ #: i18n/states/PE.php:30
15350
+ msgid "Loreto"
15351
  msgstr ""
15352
 
15353
+ #: i18n/states/PE.php:31
15354
+ msgid "Madre de Dios"
15355
  msgstr ""
15356
 
15357
+ #: i18n/states/PE.php:32
15358
+ msgid "Moquegua"
15359
  msgstr ""
15360
 
15361
+ #: i18n/states/PE.php:33
15362
+ msgid "Pasco"
15363
  msgstr ""
15364
 
15365
+ #: i18n/states/PE.php:34
15366
+ msgid "Piura"
15367
  msgstr ""
15368
 
15369
+ #: i18n/states/PE.php:35
15370
+ msgid "Puno"
15371
  msgstr ""
15372
 
15373
+ #: i18n/states/PE.php:36
15374
+ msgid "San Mart&iacute;n"
15375
  msgstr ""
15376
 
15377
+ #: i18n/states/PE.php:37
15378
+ msgid "Tacna"
15379
  msgstr ""
15380
 
15381
+ #: i18n/states/PE.php:38
15382
+ msgid "Tumbes"
15383
  msgstr ""
15384
 
15385
+ #: i18n/states/PE.php:39
15386
+ msgid "Ucayali"
15387
  msgstr ""
15388
 
15389
+ #: i18n/states/BO.php:14
15390
+ msgid "Chuquisaca"
15391
  msgstr ""
15392
 
15393
+ #: i18n/states/BO.php:15
15394
+ msgid "Beni"
15395
  msgstr ""
15396
 
15397
+ #: i18n/states/BO.php:16
15398
+ msgid "Cochabamba"
15399
  msgstr ""
15400
 
15401
+ #: i18n/states/BO.php:17
15402
+ msgid "La Paz"
15403
  msgstr ""
15404
 
15405
+ #: i18n/states/BO.php:18
15406
+ msgid "Oruro"
15407
  msgstr ""
15408
 
15409
+ #: i18n/states/BO.php:19
15410
+ msgid "Pando"
15411
  msgstr ""
15412
 
15413
+ #: i18n/states/BO.php:20
15414
+ msgid "Potosí"
15415
  msgstr ""
15416
 
15417
+ #: i18n/states/BO.php:22
15418
+ msgid "Tarija"
15419
  msgstr ""
15420
 
15421
+ #: i18n/states/AO.php:14
15422
+ msgid "Bengo"
15423
  msgstr ""
15424
 
15425
+ #: i18n/states/AO.php:15
15426
+ msgid "Benguela"
15427
  msgstr ""
15428
 
15429
+ #: i18n/states/AO.php:16
15430
+ msgid "Bié"
15431
  msgstr ""
15432
 
15433
+ #: i18n/states/AO.php:17
15434
+ msgid "Cabinda"
15435
  msgstr ""
15436
 
15437
+ #: i18n/states/AO.php:18
15438
+ msgid "Cunene"
15439
  msgstr ""
15440
 
15441
+ #: i18n/states/AO.php:19
15442
+ msgid "Huambo"
15443
  msgstr ""
15444
 
15445
+ #: i18n/states/AO.php:20
15446
+ msgid "Huíla"
15447
  msgstr ""
15448
 
15449
+ #: i18n/states/AO.php:21
15450
+ msgid "Kuando Kubango"
15451
  msgstr ""
15452
 
15453
+ #: i18n/states/AO.php:22
15454
+ msgid "Kwanza-Norte"
15455
  msgstr ""
15456
 
15457
+ #: i18n/states/AO.php:23
15458
+ msgid "Kwanza-Sul"
15459
  msgstr ""
15460
 
15461
+ #: i18n/states/AO.php:24
15462
+ msgid "Luanda"
15463
  msgstr ""
15464
 
15465
+ #: i18n/states/AO.php:25
15466
+ msgid "Lunda-Norte"
15467
  msgstr ""
15468
 
15469
+ #: i18n/states/AO.php:26
15470
+ msgid "Lunda-Sul"
15471
  msgstr ""
15472
 
15473
+ #: i18n/states/AO.php:27
15474
+ msgid "Malanje"
15475
  msgstr ""
15476
 
15477
+ #: i18n/states/AO.php:28
15478
+ msgid "Moxico"
15479
  msgstr ""
15480
 
15481
+ #: i18n/states/AO.php:29
15482
+ msgid "Namibe"
15483
  msgstr ""
15484
 
15485
+ #: i18n/states/AO.php:30
15486
+ msgid "Uíge"
15487
  msgstr ""
15488
 
15489
+ #: i18n/states/AO.php:31
15490
+ msgid "Zaire"
15491
  msgstr ""
15492
 
15493
+ #: i18n/states/MD.php:20
15494
+ msgid "Chi&#537;in&#259;u"
15495
  msgstr ""
15496
 
15497
+ #: i18n/states/MD.php:21
15498
+ msgid "B&#259;l&#539;i"
15499
  msgstr ""
15500
 
15501
+ #: i18n/states/MD.php:22
15502
+ msgid "Anenii Noi"
15503
  msgstr ""
15504
 
15505
+ #: i18n/states/MD.php:23
15506
+ msgid "Basarabeasca"
15507
  msgstr ""
15508
 
15509
+ #: i18n/states/MD.php:24
15510
+ msgid "Briceni"
15511
  msgstr ""
15512
 
15513
+ #: i18n/states/MD.php:25
15514
+ msgid "Cahul"
15515
  msgstr ""
15516
 
15517
+ #: i18n/states/MD.php:26
15518
+ msgid "Cantemir"
15519
  msgstr ""
15520
 
15521
+ #: i18n/states/MD.php:28
15522
+ msgid "C&#259;u&#537;eni"
15523
  msgstr ""
15524
 
15525
+ #: i18n/states/MD.php:29
15526
+ msgid "Cimi&#537;lia"
15527
  msgstr ""
15528
 
15529
+ #: i18n/states/MD.php:30
15530
+ msgid "Criuleni"
15531
  msgstr ""
15532
 
15533
+ #: i18n/states/MD.php:31
15534
+ msgid "Dondu&#537;eni"
15535
  msgstr ""
15536
 
15537
+ #: i18n/states/MD.php:32
15538
+ msgid "Drochia"
15539
  msgstr ""
15540
 
15541
+ #: i18n/states/MD.php:33
15542
+ msgid "Dub&#259;sari"
15543
  msgstr ""
15544
 
15545
+ #: i18n/states/MD.php:34
15546
+ msgid "Edine&#539;"
15547
  msgstr ""
15548
 
15549
+ #: i18n/states/MD.php:35
15550
+ msgid "F&#259;le&#537;ti"
15551
  msgstr ""
15552
 
15553
+ #: i18n/states/MD.php:36
15554
+ msgid "Flore&#537;ti"
15555
  msgstr ""
15556
 
15557
+ #: i18n/states/MD.php:37
15558
+ msgid "UTA G&#259;g&#259;uzia"
15559
  msgstr ""
15560
 
15561
+ #: i18n/states/MD.php:38
15562
+ msgid "Glodeni"
15563
  msgstr ""
15564
 
15565
+ #: i18n/states/MD.php:39
15566
+ msgid "H&icirc;nce&#537;ti"
15567
  msgstr ""
15568
 
15569
+ #: i18n/states/MD.php:40
15570
+ msgid "Ialoveni"
15571
  msgstr ""
15572
 
15573
+ #: i18n/states/MD.php:41
15574
+ msgid "Leova"
15575
  msgstr ""
15576
 
15577
+ #: i18n/states/MD.php:42
15578
+ msgid "Nisporeni"
15579
  msgstr ""
15580
 
15581
+ #: i18n/states/MD.php:43
15582
+ msgid "Ocni&#539;a"
15583
  msgstr ""
15584
 
15585
+ #: i18n/states/MD.php:44
15586
+ msgid "Orhei"
15587
  msgstr ""
15588
 
15589
+ #: i18n/states/MD.php:45
15590
+ msgid "Rezina"
15591
  msgstr ""
15592
 
15593
+ #: i18n/states/MD.php:46
15594
+ msgid "R&icirc;&#537;cani"
15595
  msgstr ""
15596
 
15597
+ #: i18n/states/MD.php:47
15598
+ msgid "S&icirc;ngerei"
15599
  msgstr ""
15600
 
15601
+ #: i18n/states/MD.php:48
15602
+ msgid "Soroca"
15603
  msgstr ""
15604
 
15605
+ #: i18n/states/MD.php:49
15606
+ msgid "Str&#259;&#537;eni"
15607
  msgstr ""
15608
 
15609
+ #: i18n/states/MD.php:50
15610
+ msgid "&#536;old&#259;ne&#537;ti"
15611
  msgstr ""
15612
 
15613
+ #: i18n/states/MD.php:51
15614
+ msgid "&#536;tefan Vod&#259;"
15615
  msgstr ""
15616
 
15617
+ #: i18n/states/MD.php:52
15618
+ msgid "Taraclia"
 
15619
  msgstr ""
15620
 
15621
+ #: i18n/states/MD.php:53
15622
+ msgid "Telene&#537;ti"
15623
  msgstr ""
15624
 
15625
+ #: i18n/states/MD.php:54
15626
+ msgid "Ungheni"
 
15627
  msgstr ""
15628
 
15629
+ #: i18n/states/BR.php:14
15630
+ msgid "Acre"
15631
  msgstr ""
15632
 
15633
+ #: i18n/states/BR.php:15
15634
+ msgid "Alagoas"
15635
  msgstr ""
15636
 
15637
+ #: i18n/states/BR.php:16
15638
+ msgid "Amap&aacute;"
15639
  msgstr ""
15640
 
15641
+ #: i18n/states/BR.php:18
15642
+ msgid "Bahia"
15643
  msgstr ""
15644
 
15645
+ #: i18n/states/BR.php:19
15646
+ msgid "Cear&aacute;"
15647
  msgstr ""
15648
 
15649
+ #: i18n/states/BR.php:20
15650
+ msgid "Distrito Federal"
15651
  msgstr ""
15652
 
15653
+ #: i18n/states/BR.php:21
15654
+ msgid "Esp&iacute;rito Santo"
15655
  msgstr ""
15656
 
15657
+ #: i18n/states/BR.php:22
15658
+ msgid "Goi&aacute;s"
15659
  msgstr ""
15660
 
15661
+ #: i18n/states/BR.php:23
15662
+ msgid "Maranh&atilde;o"
 
 
15663
  msgstr ""
15664
 
15665
+ #: i18n/states/BR.php:24
15666
+ msgid "Mato Grosso"
15667
  msgstr ""
15668
 
15669
+ #: i18n/states/BR.php:25
15670
+ msgid "Mato Grosso do Sul"
15671
  msgstr ""
15672
 
15673
+ #: i18n/states/BR.php:26
15674
+ msgid "Minas Gerais"
 
 
15675
  msgstr ""
15676
 
15677
+ #: i18n/states/BR.php:27
15678
+ msgid "Par&aacute;"
15679
  msgstr ""
15680
 
15681
+ #: i18n/states/BR.php:28
15682
+ msgid "Para&iacute;ba"
15683
  msgstr ""
15684
 
15685
+ #: i18n/states/BR.php:29
15686
+ msgid "Paran&aacute;"
 
 
15687
  msgstr ""
15688
 
15689
+ #: i18n/states/BR.php:30
15690
+ msgid "Pernambuco"
15691
  msgstr ""
15692
 
15693
+ #: i18n/states/BR.php:31
15694
+ msgid "Piau&iacute;"
15695
  msgstr ""
15696
 
15697
+ #: i18n/states/BR.php:32
15698
+ msgid "Rio de Janeiro"
 
 
15699
  msgstr ""
15700
 
15701
+ #: i18n/states/BR.php:33
15702
+ msgid "Rio Grande do Norte"
15703
  msgstr ""
15704
 
15705
+ #: i18n/states/BR.php:34
15706
+ msgid "Rio Grande do Sul"
 
15707
  msgstr ""
15708
 
15709
+ #: i18n/states/BR.php:35
15710
+ msgid "Rond&ocirc;nia"
 
 
15711
  msgstr ""
15712
 
15713
+ #: i18n/states/BR.php:36
15714
+ msgid "Roraima"
15715
  msgstr ""
15716
 
15717
+ #: i18n/states/BR.php:37
15718
+ msgid "Santa Catarina"
15719
  msgstr ""
15720
 
15721
+ #: i18n/states/BR.php:38
15722
+ msgid "S&atilde;o Paulo"
 
 
15723
  msgstr ""
15724
 
15725
+ #: i18n/states/BR.php:39
15726
+ msgid "Sergipe"
15727
  msgstr ""
15728
 
15729
+ #: i18n/states/BR.php:40
15730
+ msgid "Tocantins"
15731
  msgstr ""
15732
 
15733
+ #: i18n/states/PK.php:14
15734
+ msgid "Azad Kashmir"
 
 
15735
  msgstr ""
15736
 
15737
+ #: i18n/states/PK.php:15
15738
+ msgid "Balochistan"
15739
  msgstr ""
15740
 
15741
+ #: i18n/states/PK.php:16
15742
+ msgid "FATA"
 
 
15743
  msgstr ""
15744
 
15745
+ #: i18n/states/PK.php:17
15746
+ msgid "Gilgit Baltistan"
15747
  msgstr ""
15748
 
15749
+ #: i18n/states/PK.php:18
15750
+ msgid "Islamabad Capital Territory"
15751
  msgstr ""
15752
 
15753
+ #: i18n/states/PK.php:19
15754
+ msgid "Khyber Pakhtunkhwa"
 
 
15755
  msgstr ""
15756
 
15757
+ #: i18n/states/PK.php:21
15758
+ msgid "Sindh"
 
15759
  msgstr ""
15760
 
15761
+ #: i18n/states/NZ.php:14
15762
+ msgid "Northland"
15763
  msgstr ""
15764
 
15765
+ #: i18n/states/NZ.php:15
15766
+ msgid "Auckland"
15767
  msgstr ""
15768
 
15769
+ #: i18n/states/NZ.php:16
15770
+ msgid "Waikato"
15771
  msgstr ""
15772
 
15773
+ #: i18n/states/NZ.php:17
15774
+ msgid "Bay of Plenty"
15775
  msgstr ""
15776
 
15777
+ #: i18n/states/NZ.php:18
15778
+ msgid "Taranaki"
15779
  msgstr ""
15780
 
15781
+ #: i18n/states/NZ.php:19
15782
+ msgid "Gisborne"
15783
  msgstr ""
15784
 
15785
+ #: i18n/states/NZ.php:20
15786
+ msgid "Hawke&rsquo;s Bay"
15787
  msgstr ""
15788
 
15789
+ #: i18n/states/NZ.php:21
15790
+ msgid "Manawatu-Wanganui"
 
15791
  msgstr ""
15792
 
15793
+ #: i18n/states/NZ.php:22
15794
+ msgid "Wellington"
 
15795
  msgstr ""
15796
 
15797
+ #: i18n/states/NZ.php:23
15798
+ msgid "Nelson"
 
15799
  msgstr ""
15800
 
15801
+ #: i18n/states/NZ.php:24
15802
+ msgid "Marlborough"
 
15803
  msgstr ""
15804
 
15805
+ #: i18n/states/NZ.php:25
15806
+ msgid "Tasman"
15807
  msgstr ""
15808
 
15809
+ #: i18n/states/NZ.php:26
15810
+ msgid "West Coast"
15811
  msgstr ""
15812
 
15813
+ #: i18n/states/NZ.php:27
15814
+ msgid "Canterbury"
 
15815
  msgstr ""
15816
 
15817
+ #: i18n/states/NZ.php:28
15818
+ msgid "Otago"
15819
  msgstr ""
15820
 
15821
+ #: i18n/states/NZ.php:29
15822
+ msgid "Southland"
15823
  msgstr ""
15824
 
15825
+ #: i18n/states/BD.php:13
15826
+ msgid "Bagerhat"
15827
  msgstr ""
15828
 
15829
+ #: i18n/states/BD.php:14
15830
+ msgid "Bandarban"
15831
  msgstr ""
15832
 
15833
+ #: i18n/states/BD.php:15
15834
+ msgid "Barguna"
 
15835
  msgstr ""
15836
 
15837
+ #: i18n/states/BD.php:16
15838
+ msgid "Barishal"
15839
  msgstr ""
15840
 
15841
+ #: i18n/states/BD.php:17
15842
+ msgid "Bhola"
15843
  msgstr ""
15844
 
15845
+ #: i18n/states/BD.php:18
15846
+ msgid "Bogura"
 
15847
  msgstr ""
15848
 
15849
+ #: i18n/states/BD.php:19
15850
+ msgid "Brahmanbaria"
 
 
 
15851
  msgstr ""
15852
 
15853
+ #: i18n/states/BD.php:20
15854
+ msgid "Chandpur"
 
15855
  msgstr ""
15856
 
15857
+ #: i18n/states/BD.php:21
15858
+ msgid "Chattogram"
 
15859
  msgstr ""
15860
 
15861
+ #: i18n/states/BD.php:22
15862
+ msgid "Chuadanga"
 
15863
  msgstr ""
15864
 
15865
+ #: i18n/states/BD.php:23
15866
+ msgid "Cox's Bazar"
 
15867
  msgstr ""
15868
 
15869
+ #: i18n/states/BD.php:24
15870
+ msgid "Cumilla"
 
15871
  msgstr ""
15872
 
15873
+ #: i18n/states/BD.php:25
15874
+ msgid "Dhaka"
 
15875
  msgstr ""
15876
 
15877
+ #: i18n/states/BD.php:26
15878
+ msgid "Dinajpur"
 
15879
  msgstr ""
15880
 
15881
+ #: i18n/states/BD.php:27
15882
+ msgid "Faridpur "
 
15883
  msgstr ""
15884
 
15885
+ #: i18n/states/BD.php:28
15886
+ msgid "Feni"
15887
  msgstr ""
15888
 
15889
+ #: i18n/states/BD.php:29
15890
+ msgid "Gaibandha"
 
15891
  msgstr ""
15892
 
15893
+ #: i18n/states/BD.php:30
15894
+ msgid "Gazipur"
 
15895
  msgstr ""
15896
 
15897
+ #: i18n/states/BD.php:31
15898
+ msgid "Gopalganj"
 
 
15899
  msgstr ""
15900
 
15901
+ #: i18n/states/BD.php:32
15902
+ msgid "Habiganj"
 
15903
  msgstr ""
15904
 
15905
+ #: i18n/states/BD.php:33
15906
+ msgid "Jamalpur"
 
15907
  msgstr ""
15908
 
15909
+ #: i18n/states/BD.php:34
15910
+ msgid "Jashore"
 
15911
  msgstr ""
15912
 
15913
+ #: i18n/states/BD.php:35
15914
+ msgid "Jhalokati"
 
15915
  msgstr ""
15916
 
15917
+ #: i18n/states/BD.php:36
15918
+ msgid "Jhenaidah"
 
 
 
 
15919
  msgstr ""
15920
 
15921
+ #: i18n/states/BD.php:37
15922
+ msgid "Joypurhat"
 
15923
  msgstr ""
15924
 
15925
+ #: i18n/states/BD.php:38
15926
+ msgid "Khagrachhari"
15927
  msgstr ""
15928
 
15929
+ #: i18n/states/BD.php:39
15930
+ msgid "Khulna"
 
15931
  msgstr ""
15932
 
15933
+ #: i18n/states/BD.php:40
15934
+ msgid "Kishoreganj"
15935
  msgstr ""
15936
 
15937
+ #: i18n/states/BD.php:41
15938
+ msgid "Kurigram"
 
 
 
 
15939
  msgstr ""
15940
 
15941
+ #: i18n/states/BD.php:42
15942
+ msgid "Kushtia"
 
15943
  msgstr ""
15944
 
15945
+ #: i18n/states/BD.php:43
15946
+ msgid "Lakshmipur"
 
15947
  msgstr ""
15948
 
15949
+ #: i18n/states/BD.php:44
15950
+ msgid "Lalmonirhat"
 
 
 
15951
  msgstr ""
15952
 
15953
+ #: i18n/states/BD.php:45
15954
+ msgid "Madaripur"
 
 
15955
  msgstr ""
15956
 
15957
+ #: i18n/states/BD.php:46
15958
+ msgid "Magura"
 
 
15959
  msgstr ""
15960
 
15961
+ #: i18n/states/BD.php:47
15962
+ msgid "Manikganj "
 
 
15963
  msgstr ""
15964
 
15965
+ #: i18n/states/BD.php:48
15966
+ msgid "Meherpur"
 
 
15967
  msgstr ""
15968
 
15969
+ #: i18n/states/BD.php:49
15970
+ msgid "Moulvibazar"
 
 
15971
  msgstr ""
15972
 
15973
+ #: i18n/states/BD.php:50
15974
+ msgid "Munshiganj"
 
 
15975
  msgstr ""
15976
 
15977
+ #: i18n/states/BD.php:51
15978
+ msgid "Mymensingh"
 
 
15979
  msgstr ""
15980
 
15981
+ #: i18n/states/BD.php:52
15982
+ msgid "Naogaon"
 
 
15983
  msgstr ""
15984
 
15985
+ #: i18n/states/BD.php:53
15986
+ msgid "Narail"
 
 
15987
  msgstr ""
15988
 
15989
+ #: i18n/states/BD.php:54
15990
+ msgid "Narayanganj"
 
 
15991
  msgstr ""
15992
 
15993
+ #: i18n/states/BD.php:55
15994
+ msgid "Narsingdi"
 
 
15995
  msgstr ""
15996
 
15997
+ #: i18n/states/BD.php:56
15998
+ msgid "Natore"
 
 
15999
  msgstr ""
16000
 
16001
+ #: i18n/states/BD.php:57
16002
+ msgid "Nawabganj"
 
 
16003
  msgstr ""
16004
 
16005
+ #: i18n/states/BD.php:58
16006
+ msgid "Netrakona"
 
 
16007
  msgstr ""
16008
 
16009
+ #: i18n/states/BD.php:59
16010
+ msgid "Nilphamari"
 
 
16011
  msgstr ""
16012
 
16013
+ #: i18n/states/BD.php:60
16014
+ msgid "Noakhali"
 
 
 
 
16015
  msgstr ""
16016
 
16017
+ #: i18n/states/BD.php:61
16018
+ msgid "Pabna"
 
 
16019
  msgstr ""
16020
 
16021
+ #: i18n/states/BD.php:62
16022
+ msgid "Panchagarh"
 
 
 
 
16023
  msgstr ""
16024
 
16025
+ #: i18n/states/BD.php:63
16026
+ msgid "Patuakhali"
 
 
 
 
16027
  msgstr ""
16028
 
16029
+ #: i18n/states/BD.php:64
16030
+ msgid "Pirojpur"
 
 
 
 
16031
  msgstr ""
16032
 
16033
+ #: i18n/states/BD.php:65
16034
+ msgid "Rajbari"
 
 
16035
  msgstr ""
16036
 
16037
+ #: i18n/states/BD.php:66
16038
+ msgid "Rajshahi"
 
 
16039
  msgstr ""
16040
 
16041
+ #: i18n/states/BD.php:67
16042
+ msgid "Rangamati"
 
 
 
 
 
16043
  msgstr ""
16044
 
16045
+ #: i18n/states/BD.php:68
16046
+ msgid "Rangpur"
 
 
 
 
16047
  msgstr ""
16048
 
16049
+ #: i18n/states/BD.php:69
16050
+ msgid "Satkhira"
 
 
 
 
 
 
 
 
 
 
 
 
16051
  msgstr ""
16052
 
16053
+ #: i18n/states/BD.php:70
16054
+ msgid "Shariatpur"
 
 
16055
  msgstr ""
16056
 
16057
+ #: i18n/states/BD.php:71
16058
+ msgid "Sherpur"
 
 
16059
  msgstr ""
16060
 
16061
+ #: i18n/states/BD.php:72
16062
+ msgid "Sirajganj"
 
 
16063
  msgstr ""
16064
 
16065
+ #: i18n/states/BD.php:73
16066
+ msgid "Sunamganj"
 
 
16067
  msgstr ""
16068
 
16069
+ #: i18n/states/BD.php:74
16070
+ msgid "Sylhet"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16071
  msgstr ""
16072
 
16073
+ #: i18n/states/BD.php:75
16074
+ msgid "Tangail"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16075
  msgstr ""
16076
 
16077
+ #: i18n/states/BD.php:76
16078
+ msgid "Thakurgaon"
 
16079
  msgstr ""
16080
 
16081
+ #: templates/single-product/add-to-cart/variable.php:30
16082
+ msgid "This product is currently out of stock and unavailable."
 
 
 
16083
  msgstr ""
16084
 
16085
+ #. translators: %s: Order ID.
16086
+ #: templates/emails/plain/email-order-details.php:25
16087
+ #, php-format
16088
+ msgid "Order number: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16089
  msgstr ""
16090
 
16091
+ #. translators: %s: Order link.
16092
+ #: templates/emails/plain/email-order-details.php:51
16093
+ #, php-format
16094
+ msgid "View order: %s"
 
16095
  msgstr ""
16096
 
16097
+ #: templates/emails/plain/admin-new-order.php:25
16098
+ #, php-format
16099
+ msgid "You have received an order from %s."
 
 
 
 
 
 
 
16100
  msgstr ""
16101
 
16102
+ #: templates/emails/plain/customer-refunded-order.php:25
16103
+ #, php-format
16104
+ msgid "Hi there. Your order on %s has been refunded. Your order details are shown below for your reference:"
 
 
16105
  msgstr ""
16106
 
16107
+ #: templates/emails/plain/customer-new-account.php:28
16108
+ #, php-format
16109
+ msgid "Your password is %s."
 
16110
  msgstr ""
16111
 
16112
+ #: includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php:28
16113
+ msgid "International flat rate (legacy)"
 
16114
  msgstr ""
16115
 
16116
+ #. translators: %s: Admin shipping settings URL
16117
+ #: includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php:30 includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php:37 includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:30 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:44 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:30
16118
+ #, php-format
16119
+ msgid "This method is deprecated in 2.6.0 and will be removed in future versions - we recommend disabling it and instead setting up a new rate within your <a href=\"%s\">Shipping zones</a>."
16120
  msgstr ""
16121
 
16122
+ #: includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php:52 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:32
16123
+ msgid "Availability"
 
16124
  msgstr ""
16125
 
16126
+ #: includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php:58
16127
+ msgid "Selected countries"
 
 
 
16128
  msgstr ""
16129
 
16130
+ #: includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php:59
16131
+ msgid "Excluding selected countries"
 
 
 
16132
  msgstr ""
16133
 
16134
+ #: includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php:35
16135
+ msgid "Flat rate (legacy)"
 
16136
  msgstr ""
16137
 
16138
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:28
16139
+ msgid "Local delivery (legacy)"
 
16140
  msgstr ""
16141
 
16142
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:117 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:96
16143
+ msgid "Enable"
 
16144
  msgstr ""
16145
 
16146
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:119 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:99 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:98 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:21
16147
+ msgid "Once disabled, this legacy method will no longer be available."
 
16148
  msgstr ""
16149
 
16150
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:125 includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:81 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:105 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:104 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:82 includes/gateways/cheque/class-wc-gateway-cheque.php:66 includes/gateways/bacs/class-wc-gateway-bacs.php:90 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:199 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:27 includes/shipping/flat-rate/includes/settings-flat-rate.php:16 includes/gateways/paypal/includes/settings-paypal.php:20
16151
+ msgid "This controls the title which the user sees during checkout."
 
16152
  msgstr ""
16153
 
16154
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:126
16155
+ msgid "Local delivery"
 
16156
  msgstr ""
16157
 
16158
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:130
16159
+ msgid "Fee type"
 
16160
  msgstr ""
16161
 
16162
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:133
16163
+ msgid "How to calculate delivery charges"
 
16164
  msgstr ""
16165
 
16166
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:136
16167
+ msgid "Fixed amount"
 
16168
  msgstr ""
16169
 
16170
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:137
16171
+ msgid "Percentage of cart total"
 
16172
  msgstr ""
16173
 
16174
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:138
16175
+ msgid "Fixed amount per product"
 
16176
  msgstr ""
16177
 
16178
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:143
16179
+ msgid "Delivery fee"
 
16180
  msgstr ""
16181
 
16182
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:145
16183
+ msgid "What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable."
 
16184
  msgstr ""
16185
 
16186
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:151 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:109
16187
+ msgid "Allowed ZIP/post codes"
 
16188
  msgstr ""
16189
 
16190
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:153
16191
+ msgid "What ZIP/post codes are available for local delivery?"
 
 
 
 
 
16192
  msgstr ""
16193
 
16194
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:155 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:113
16195
+ msgid "Separate codes with a comma. Accepts wildcards, e.g. <code>P*</code> will match a postcode of PE30. Also accepts a pattern, e.g. <code>NG1___</code> would match NG1 1AA but not NG10 1AA"
 
 
 
 
 
16196
  msgstr ""
16197
 
16198
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:159 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:110 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:117
16199
+ msgid "Method availability"
 
16200
  msgstr ""
16201
 
16202
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:164 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:115 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:122 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:37
16203
+ msgid "All allowed countries"
 
16204
  msgstr ""
16205
 
16206
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:165 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:116 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:38
16207
+ msgid "Specific Countries"
 
 
16208
  msgstr ""
16209
 
16210
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:169 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:120 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:123 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:127 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:42
16211
+ msgid "Specific countries"
 
 
 
16212
  msgstr ""
16213
 
16214
+ #: includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php:176 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:127 includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:134 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:49
16215
+ msgid "Select some countries"
 
16216
  msgstr ""
16217
 
16218
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:45
16219
+ msgid "Free shipping"
 
16220
  msgstr ""
16221
 
16222
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:46
16223
+ msgid "Free shipping is a special method which can be triggered with coupons and minimum spends."
 
 
 
 
 
16224
  msgstr ""
16225
 
16226
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:86 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:131
16227
+ msgid "Free shipping requires..."
 
16228
  msgstr ""
16229
 
16230
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:92 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:137
16231
+ msgid "A valid free shipping coupon"
 
16232
  msgstr ""
16233
 
16234
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:93 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:138
16235
+ msgid "A minimum order amount"
 
16236
  msgstr ""
16237
 
16238
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:94 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:139
16239
+ msgid "A minimum order amount OR a coupon"
 
 
 
 
16240
  msgstr ""
16241
 
16242
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:95 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:140
16243
+ msgid "A minimum order amount AND a coupon"
 
 
 
16244
  msgstr ""
16245
 
16246
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:99 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:144
16247
+ msgid "Minimum order amount"
 
16248
  msgstr ""
16249
 
16250
+ #: includes/shipping/free-shipping/class-wc-shipping-free-shipping.php:102 includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:147
16251
+ msgid "Users will need to spend this amount to get free shipping (if enabled above)."
 
 
 
16252
  msgstr ""
16253
 
16254
+ #: includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:42
16255
+ msgid "Free shipping (legacy)"
 
 
 
16256
  msgstr ""
16257
 
16258
+ #: includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php:103 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:25 includes/shipping/flat-rate/includes/settings-flat-rate.php:14
16259
+ msgid "Method title"
 
16260
  msgstr ""
16261
 
16262
+ #: includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:28
16263
+ msgid "Local pickup (legacy)"
 
16264
  msgstr ""
16265
 
16266
+ #: includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:105 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:31 includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:83
16267
+ msgid "Local pickup"
 
16268
  msgstr ""
16269
 
16270
+ #: includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php:111
16271
+ msgid "What ZIP/post codes are available for local pickup?"
 
 
 
16272
  msgstr ""
16273
 
16274
+ #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:32
16275
+ msgid "Allow customers to pick up orders themselves. By default, when using local pickup store base taxes will apply regardless of customer address."
 
 
 
 
 
16276
  msgstr ""
16277
 
16278
+ #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:92 includes/admin/views/html-bulk-edit-product.php:76 includes/admin/views/html-quick-edit-product.php:54 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:58 includes/shipping/flat-rate/includes/settings-flat-rate.php:26 includes/admin/meta-boxes/views/html-product-data-general.php:153
16279
+ msgid "Taxable"
 
 
 
16280
  msgstr ""
16281
 
16282
+ #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:93 includes/admin/views/html-bulk-edit-product.php:78 includes/admin/views/html-quick-edit-product.php:56 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:59 includes/shipping/flat-rate/includes/settings-flat-rate.php:27 includes/admin/meta-boxes/views/html-product-data-general.php:155
16283
+ msgctxt "Tax status"
16284
+ msgid "None"
 
16285
  msgstr ""
16286
 
16287
+ #: includes/shipping/local-pickup/class-wc-shipping-local-pickup.php:100
16288
+ msgid "Optional cost for local pickup."
 
 
16289
  msgstr ""
16290
 
16291
+ #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:31 includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php:28 includes/shipping/flat-rate/includes/settings-flat-rate.php:17
16292
+ msgid "Flat rate"
 
 
 
16293
  msgstr ""
16294
 
16295
+ #: includes/shipping/flat-rate/class-wc-shipping-flat-rate.php:32
16296
+ msgid "Lets you charge a fixed rate for shipping."
 
 
16297
  msgstr ""
16298
 
16299
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:32
16300
+ msgid "Take payments in person via checks. This offline gateway can also be useful to test purchases."
 
 
 
 
 
 
 
 
16301
  msgstr ""
16302
 
16303
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:60
16304
+ msgid "Enable check payments"
 
 
 
 
16305
  msgstr ""
16306
 
16307
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:73 includes/gateways/bacs/class-wc-gateway-bacs.php:97 includes/gateways/cod/class-wc-gateway-cod.php:117
16308
+ msgid "Payment method description that the customer will see on your checkout."
 
 
 
 
16309
  msgstr ""
16310
 
16311
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:74
16312
+ msgid "Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode."
 
 
 
 
16313
  msgstr ""
16314
 
16315
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:78 includes/gateways/bacs/class-wc-gateway-bacs.php:102 includes/gateways/cod/class-wc-gateway-cod.php:129
16316
+ msgid "Instructions"
 
 
 
16317
  msgstr ""
16318
 
16319
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:80 includes/gateways/bacs/class-wc-gateway-bacs.php:104
16320
+ msgid "Instructions that will be added to the thank you page and emails."
 
 
 
16321
  msgstr ""
16322
 
16323
+ #: includes/gateways/cheque/class-wc-gateway-cheque.php:122
16324
+ msgctxt "Check payment method"
16325
+ msgid "Awaiting check payment"
 
16326
  msgstr ""
16327
 
16328
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:39 includes/gateways/bacs/class-wc-gateway-bacs.php:91
16329
+ msgid "Direct bank transfer"
 
 
16330
  msgstr ""
16331
 
16332
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:40
16333
+ msgid "Take payments in person via BACS. More commonly known as direct bank/wire transfer"
 
16334
  msgstr ""
16335
 
16336
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:84
16337
+ msgid "Enable bank transfer"
 
16338
  msgstr ""
16339
 
16340
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:98
16341
+ msgid "Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account."
 
16342
  msgstr ""
16343
 
16344
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:128 includes/gateways/bacs/class-wc-gateway-bacs.php:290
16345
+ msgid "Sort code"
16346
  msgstr ""
16347
 
16348
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:132
16349
+ msgid "Account details:"
 
 
 
16350
  msgstr ""
16351
 
16352
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:139
16353
+ msgid "Account name"
 
16354
  msgstr ""
16355
 
16356
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:141
16357
+ msgid "Bank name"
 
16358
  msgstr ""
16359
 
16360
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:143 includes/gateways/bacs/class-wc-gateway-bacs.php:323
16361
+ msgid "IBAN"
 
 
16362
  msgstr ""
16363
 
16364
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:144
16365
+ msgid "BIC / Swift"
 
 
 
16366
  msgstr ""
16367
 
16368
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:169
16369
+ msgid "+ Add account"
 
 
16370
  msgstr ""
16371
 
16372
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:169
16373
+ msgid "Remove selected account(s)"
 
16374
  msgstr ""
16375
 
16376
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:311
16377
+ msgid "Bank"
 
16378
  msgstr ""
16379
 
16380
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:327
16381
+ msgid "BIC"
16382
  msgstr ""
16383
 
16384
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:344
16385
+ msgid "Our bank details"
16386
  msgstr ""
16387
 
16388
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:362
16389
+ msgid "Awaiting BACS payment"
16390
  msgstr ""
16391
 
16392
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:395
16393
+ msgid "BSB"
16394
  msgstr ""
16395
 
16396
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:400
16397
+ msgid "Bank transit number"
16398
  msgstr ""
16399
 
16400
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:405
16401
+ msgid "IFSC"
16402
  msgstr ""
16403
 
16404
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:410
16405
+ msgid "Branch sort"
16406
  msgstr ""
16407
 
16408
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:415 includes/gateways/bacs/class-wc-gateway-bacs.php:420
16409
+ msgid "Bank code"
 
16410
  msgstr ""
16411
 
16412
+ #: includes/gateways/bacs/class-wc-gateway-bacs.php:430
16413
+ msgid "Branch code"
16414
  msgstr ""
16415
 
16416
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:24
16417
+ msgid "Simplify Commerce"
16418
  msgstr ""
16419
 
16420
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:25
16421
+ msgid "Take payments via Simplify Commerce - uses simplify.js to create card tokens and the Simplify Commerce SDK. Requires SSL when sandbox is disabled."
16422
  msgstr ""
16423
 
16424
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:26
16425
+ msgid "Use a new card"
16426
  msgstr ""
16427
 
16428
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:90
16429
+ msgid "Simplify Commerce by MasterCard"
16430
  msgstr ""
16431
 
16432
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:95
16433
+ msgid "Getting started"
16434
  msgstr ""
16435
 
16436
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:96 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:102
16437
+ msgid "Simplify Commerce is your merchant account and payment gateway all rolled into one. Choose Simplify Commerce as your WooCommerce payment gateway to get access to your money quickly with a powerful, secure payment engine backed by MasterCard."
16438
  msgstr ""
16439
 
16440
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:98
16441
+ msgid "Sign up for Simplify Commerce"
 
16442
  msgstr ""
16443
 
16444
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:98 includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php:44 includes/admin/meta-boxes/views/html-product-data-variations.php:19
16445
+ msgid "Learn more"
16446
  msgstr ""
16447
 
16448
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:148
16449
+ #, php-format
16450
+ msgid "Simplify Commerce Error: Simplify commerce requires PHP 5.3 and above. You are using version %s."
16451
  msgstr ""
16452
 
16453
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:153
16454
+ msgid "Simplify Commerce Error: Please enter your public and private keys"
 
16455
  msgstr ""
16456
 
16457
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:158
16458
+ #, php-format
16459
+ msgid "Simplify Commerce is enabled, but the <a href=\"%s\">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate - Simplify Commerce will only work in sandbox mode."
16460
  msgstr ""
16461
 
16462
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:191
16463
+ msgid "Enable Simplify Commerce"
16464
  msgstr ""
16465
 
16466
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:206 includes/gateways/paypal/includes/settings-paypal.php:28
16467
+ msgid "This controls the description which the user sees during checkout."
16468
  msgstr ""
16469
 
16470
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:211
16471
+ msgid "Payment mode"
16472
  msgstr ""
16473
 
16474
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:212
16475
+ msgid "Enable Hosted Payments"
16476
  msgstr ""
16477
 
16478
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:214
16479
+ #, php-format
16480
+ msgid "Standard will display the credit card fields on your store (SSL required). %1$s Hosted Payments will display a Simplify Commerce modal dialog on your store (if SSL) or will redirect the customer to Simplify Commerce hosted page (if not SSL). %1$s Note: Hosted Payments need a new API Key pair with the hosted payments flag selected. %2$sFor more details check the Simplify Commerce docs%3$s."
16481
  msgstr ""
16482
 
16483
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:218
16484
+ msgid "Hosted Payments"
16485
  msgstr ""
16486
 
16487
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:222
16488
+ msgid "Modal color"
16489
  msgstr ""
16490
 
16491
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:224
16492
+ msgid "Set the color of the buttons and titles on the modal dialog."
16493
  msgstr ""
16494
 
16495
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:229
16496
+ msgid "Sandbox"
16497
  msgstr ""
16498
 
16499
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:230
16500
+ msgid "Enable sandbox mode"
16501
  msgstr ""
16502
 
16503
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:232
16504
+ msgid "Place the payment gateway in sandbox mode using sandbox API keys (real payments will not be taken)."
16505
  msgstr ""
16506
 
16507
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:236
16508
+ msgid "Sandbox public key"
16509
  msgstr ""
16510
 
16511
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:238 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:245 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:252 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:259
16512
+ msgid "Get your API keys from your Simplify account: Settings > API Keys."
16513
  msgstr ""
16514
 
16515
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:243
16516
+ msgid "Sandbox private key"
16517
  msgstr ""
16518
 
16519
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:250
16520
+ msgid "Public key"
16521
  msgstr ""
16522
 
16523
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:257
16524
+ msgid "Private key"
 
16525
  msgstr ""
16526
 
16527
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:273
16528
+ #, php-format
16529
+ msgid "TEST MODE ENABLED. Use a test card: %s"
16530
  msgstr ""
16531
 
16532
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:308
16533
+ msgid "Expiry month"
16534
  msgstr ""
16535
 
16536
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:309
16537
+ msgid "Expiry year"
16538
  msgstr ""
16539
 
16540
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:310
16541
+ msgid "is invalid"
16542
  msgstr ""
16543
 
16544
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:319 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:333
16545
+ msgid "There was a problem adding this card."
16546
  msgstr ""
16547
 
16548
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:428 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:606 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:94 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:189
16549
+ msgid "Please make sure your card details have been entered correctly and that your browser supports JavaScript."
16550
  msgstr ""
16551
 
16552
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:431 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:97 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:192
16553
+ msgid "Developers: Please make sure that you are including jQuery and there are no JavaScript errors on the page."
16554
  msgstr ""
16555
 
16556
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:504 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:183 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:293
16557
+ msgid "Sorry, the minimum allowed order total is 0.50 to use this payment method."
16558
  msgstr ""
16559
 
16560
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:511 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:308
16561
+ #, php-format
16562
+ msgid "%1$s - Order #%2$s"
16563
  msgstr ""
16564
 
16565
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:530 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:325
16566
+ #, php-format
16567
+ msgid "Simplify payment error: %s."
16568
  msgstr ""
16569
 
16570
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:540 includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:709 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:335 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:462
16571
+ #, php-format
16572
+ msgid "Simplify payment approved (ID: %1$s, Auth Code: %2$s)"
16573
  msgstr ""
16574
 
16575
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:544 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:339
16576
+ msgid "Simplify payment declined"
 
 
16577
  msgstr ""
16578
 
16579
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:546 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:341
16580
+ msgid "Payment was declined - please try another card."
 
 
 
 
 
 
 
 
 
16581
  msgstr ""
16582
 
16583
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:652
16584
+ msgid "Thank you for your order, please click the button below to pay with credit card using Simplify Commerce by MasterCard."
16585
  msgstr ""
16586
 
16587
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:661
16588
+ msgid "Pay now"
16589
  msgstr ""
16590
 
16591
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:661
16592
+ msgid "Cancel order &amp; restore cart"
16593
  msgstr ""
16594
 
16595
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:681 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:511
16596
+ msgid "Payment was declined by Simplify Commerce."
 
16597
  msgstr ""
16598
 
16599
+ #: includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php:747
16600
+ msgid "Refund was declined."
16601
  msgstr ""
16602
 
16603
+ #: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:116 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:214
16604
+ msgid "Error creating user in Simplify Commerce."
16605
  msgstr ""
16606
 
16607
+ #: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:299 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:443
16608
+ msgid "Customer not found."
16609
  msgstr ""
16610
 
16611
+ #: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:355 includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:467
16612
+ #, php-format
16613
+ msgid "Simplify Transaction Failed (%s)"
16614
  msgstr ""
16615
 
16616
+ #. translators: 1: site name 2: product name 3: order number
16617
+ #: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:434
16618
+ #, php-format
16619
+ msgid "%1$s - Pre-order for \"%2$s\" (Order #%3$s)"
16620
  msgstr ""
16621
 
16622
+ #: includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php:464
16623
+ msgid "Payment was declined - the customer need to try another card."
 
 
 
16624
  msgstr ""
16625
 
16626
+ #: includes/gateways/cod/class-wc-gateway-cod.php:57
16627
+ msgid "Have your customers pay with cash (or by other means) upon delivery."
 
 
 
16628
  msgstr ""
16629
 
16630
+ #. Translators: %1$s shipping method name.
16631
+ #: includes/gateways/cod/class-wc-gateway-cod.php:81
16632
+ #, php-format
16633
+ msgid "Any &quot;%1$s&quot; method"
16634
  msgstr ""
16635
 
16636
+ #. Translators: %1$s shipping method title, %2$s shipping method id.
16637
+ #: includes/gateways/cod/class-wc-gateway-cod.php:96
16638
+ #, php-format
16639
+ msgid "%1$s (#%2$s)"
16640
  msgstr ""
16641
 
16642
+ #. Translators: %1$s zone name, %2$s shipping method instance name.
16643
+ #: includes/gateways/cod/class-wc-gateway-cod.php:99
16644
+ #, php-format
16645
+ msgid "%1$s &ndash; %2$s"
16646
  msgstr ""
16647
 
16648
+ #: includes/gateways/cod/class-wc-gateway-cod.php:99
16649
+ msgid "Other locations"
 
16650
  msgstr ""
16651
 
16652
+ #: includes/gateways/cod/class-wc-gateway-cod.php:109
16653
+ msgid "Enable cash on delivery"
16654
  msgstr ""
16655
 
16656
+ #: includes/gateways/cod/class-wc-gateway-cod.php:124
16657
+ msgid "Payment method description that the customer will see on your website."
 
 
16658
  msgstr ""
16659
 
16660
+ #: includes/gateways/cod/class-wc-gateway-cod.php:125 includes/gateways/cod/class-wc-gateway-cod.php:132
16661
+ msgid "Pay with cash upon delivery."
16662
  msgstr ""
16663
 
16664
+ #: includes/gateways/cod/class-wc-gateway-cod.php:131
16665
+ msgid "Instructions that will be added to the thank you page."
 
16666
  msgstr ""
16667
 
16668
+ #: includes/gateways/cod/class-wc-gateway-cod.php:136
16669
+ msgid "Enable for shipping methods"
 
16670
  msgstr ""
16671
 
16672
+ #: includes/gateways/cod/class-wc-gateway-cod.php:141
16673
+ msgid "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods."
 
 
16674
  msgstr ""
16675
 
16676
+ #: includes/gateways/cod/class-wc-gateway-cod.php:145
16677
+ msgid "Select shipping methods"
16678
  msgstr ""
16679
 
16680
+ #: includes/gateways/cod/class-wc-gateway-cod.php:149
16681
+ msgid "Accept for virtual orders"
16682
  msgstr ""
16683
 
16684
+ #: includes/gateways/cod/class-wc-gateway-cod.php:150
16685
+ msgid "Accept COD if the order is virtual"
16686
  msgstr ""
16687
 
16688
+ #: includes/gateways/cod/class-wc-gateway-cod.php:282
16689
+ msgid "Payment to be made upon delivery."
16690
  msgstr ""
16691
 
16692
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:42
16693
+ msgid "Proceed to PayPal"
16694
  msgstr ""
16695
 
16696
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:43 includes/gateways/paypal/includes/settings-paypal.php:21
16697
+ msgid "PayPal"
16698
  msgstr ""
16699
 
16700
+ #. translators: %s: Link to WC system status page
16701
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:45
16702
+ msgid "PayPal Standard redirects customers to PayPal to enter their payment information."
16703
  msgstr ""
16704
 
16705
+ #. translators: %s: Link to PayPal sandbox testing guide page
16706
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:67
16707
+ #, php-format
16708
+ msgid "SANDBOX ENABLED. You can use sandbox testing accounts only. See the <a href=\"%s\">PayPal Sandbox Testing Guide</a> for more details."
16709
  msgstr ""
16710
 
16711
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:148
16712
+ msgid "PayPal acceptance mark"
16713
  msgstr ""
16714
 
16715
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:151
16716
+ msgid "What is PayPal?"
 
 
 
16717
  msgstr ""
16718
 
16719
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:275
16720
+ msgid "Gateway disabled"
16721
  msgstr ""
16722
 
16723
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:275
16724
+ msgid "PayPal does not support your store currency."
16725
  msgstr ""
16726
 
16727
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:364
16728
+ msgid "Refund failed."
16729
  msgstr ""
16730
 
16731
+ #. translators: 1: Refund amount, 2: Refund ID
16732
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:383
16733
+ #, php-format
16734
+ msgid "Refunded %1$s - Refund ID: %2$s"
16735
  msgstr ""
16736
 
16737
+ #. translators: %s: Paypal gateway error message
16738
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:406
16739
+ #, php-format
16740
+ msgid "Payment could not captured: %s"
16741
  msgstr ""
16742
 
16743
+ #. translators: 1: Amount, 2: Authorization ID, 3: Transaction ID
16744
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:417
16745
+ #, php-format
16746
+ msgid "Payment of %1$s was captured - Auth ID: %2$s, Transaction ID: %3$s"
16747
  msgstr ""
16748
 
16749
+ #. translators: 1: Authorization ID, 2: Payment status
16750
+ #: includes/gateways/paypal/class-wc-gateway-paypal.php:423
16751
+ #, php-format
16752
+ msgid "Payment could not captured - Auth ID: %1$s, Status: %2$s"
16753
  msgstr ""
16754
 
16755
+ #. translators: 1: variation id 2: product name
16756
+ #: includes/api/legacy/class-wc-rest-legacy-products-controller.php:532 includes/api/v1/class-wc-rest-products-controller.php:1372 includes/api/legacy/v2/class-wc-api-products.php:1288 includes/api/legacy/v3/class-wc-api-products.php:1783
16757
+ #, php-format
16758
+ msgid "Variation #%1$s of %2$s"
16759
  msgstr ""
16760
 
16761
+ #: includes/api/v1/class-wc-rest-reports-controller.php:79
16762
+ msgid "List of sales reports."
 
16763
  msgstr ""
16764
 
16765
+ #: includes/api/v1/class-wc-rest-reports-controller.php:83
16766
+ msgid "List of top sellers products."
 
16767
  msgstr ""
16768
 
16769
+ #: includes/api/v1/class-wc-rest-reports-controller.php:147
16770
+ msgid "An alphanumeric identifier for the resource."
16771
  msgstr ""
16772
 
16773
+ #: includes/api/v1/class-wc-rest-reports-controller.php:153
16774
+ msgid "A human-readable description of the resource."
16775
  msgstr ""
16776
 
16777
+ #: includes/api/v1/class-wc-rest-order-notes-controller.php:233 includes/api/legacy/v2/class-wc-api-orders.php:1323 includes/api/legacy/v3/class-wc-api-orders.php:1370
16778
+ msgid "Cannot create order note, please try again."
16779
  msgstr ""
16780
 
16781
+ #: includes/api/v1/class-wc-rest-order-notes-controller.php:274 includes/api/v1/class-wc-rest-order-notes-controller.php:307 includes/api/v1/class-wc-rest-customers-controller.php:383 includes/api/v1/class-wc-rest-customers-controller.php:404 includes/api/v1/class-wc-rest-taxes-controller.php:400 includes/api/v1/class-wc-rest-taxes-controller.php:420 includes/api/v1/class-wc-rest-taxes-controller.php:463 includes/api/v1/class-wc-rest-product-reviews-controller.php:240 includes/api/v1/class-wc-rest-product-reviews-controller.php:321 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:153
16782
+ msgid "Invalid resource ID."
16783
  msgstr ""
16784
 
16785
+ #: includes/api/v1/class-wc-rest-order-notes-controller.php:295 includes/api/v1/class-wc-rest-webhooks-controller.php:454
16786
+ msgid "Webhooks do not support trashing."
16787
  msgstr ""
16788
 
16789
+ #: includes/api/v1/class-wc-rest-order-notes-controller.php:413
16790
+ msgid "Order note."
16791
  msgstr ""
16792
 
16793
+ #: includes/api/v1/class-wc-rest-order-notes-controller.php:418
16794
+ msgid "Shows/define if the note is only for reference or for the customer (the user will be notified)."
16795
  msgstr ""
16796
 
16797
  #: includes/api/v1/class-wc-rest-report-sales-controller.php:290
16842
  msgid "Report period."
16843
  msgstr ""
16844
 
 
16845
  #. translators: %s: date format
16846
+ #: includes/api/v1/class-wc-rest-report-sales-controller.php:381
16847
+ #, php-format
16848
+ msgid "Return sales for a specific start date, the date need to be in the %s format."
16849
  msgstr ""
16850
 
 
16851
  #. translators: %s: date format
16852
+ #: includes/api/v1/class-wc-rest-report-sales-controller.php:389
16853
+ #, php-format
16854
  msgid "Return sales for a specific end date, the date need to be in the %s format."
16855
  msgstr ""
16856
 
16857
+ #: includes/api/v1/class-wc-rest-customers-controller.php:58
16858
+ msgid "New user email address."
16859
  msgstr ""
16860
 
16861
+ #: includes/api/v1/class-wc-rest-customers-controller.php:62
16862
+ msgid "New user username."
16863
  msgstr ""
16864
 
16865
+ #: includes/api/v1/class-wc-rest-customers-controller.php:67
16866
+ msgid "New user password."
16867
  msgstr ""
16868
 
16869
+ #: includes/api/v1/class-wc-rest-customers-controller.php:109
16870
+ msgid "ID to reassign posts to."
16871
  msgstr ""
16872
 
16873
+ #: includes/api/v1/class-wc-rest-customers-controller.php:327 includes/api/v1/class-wc-rest-tax-classes-controller.php:184 includes/api/v1/class-wc-rest-taxes-controller.php:364
16874
+ msgid "Cannot create existing resource."
16875
  msgstr ""
16876
 
16877
+ #: includes/api/v1/class-wc-rest-customers-controller.php:345 includes/api/legacy/v2/class-wc-api-customers.php:374 includes/api/legacy/v3/class-wc-api-customers.php:375
16878
+ msgid "This resource cannot be created."
16879
  msgstr ""
16880
 
16881
+ #: includes/api/v1/class-wc-rest-customers-controller.php:408
16882
+ msgid "Email address is invalid."
 
16883
  msgstr ""
16884
 
16885
+ #: includes/api/v1/class-wc-rest-customers-controller.php:412
16886
+ msgid "Username isn't editable."
16887
  msgstr ""
16888
 
16889
+ #: includes/api/v1/class-wc-rest-customers-controller.php:466
16890
+ msgid "Customers do not support trashing."
16891
  msgstr ""
16892
 
16893
+ #: includes/api/v1/class-wc-rest-customers-controller.php:471 includes/api/v1/class-wc-rest-tax-classes-controller.php:245
16894
+ msgid "Invalid resource id."
16895
  msgstr ""
16896
 
16897
+ #: includes/api/v1/class-wc-rest-customers-controller.php:476
16898
+ msgid "Invalid resource id for reassignment."
16899
  msgstr ""
16900
 
16901
+ #: includes/api/v1/class-wc-rest-customers-controller.php:638
16902
+ msgid "The date the customer was created, as GMT."
16903
  msgstr ""
16904
 
16905
+ #: includes/api/v1/class-wc-rest-customers-controller.php:685
16906
+ msgid "Last order data."
16907
  msgstr ""
16908
 
16909
+ #: includes/api/v1/class-wc-rest-customers-controller.php:691
16910
+ msgid "Last order ID."
16911
  msgstr ""
16912
 
16913
+ #: includes/api/v1/class-wc-rest-customers-controller.php:697
16914
+ msgid "The date of the customer last order, as GMT."
16915
  msgstr ""
16916
 
16917
+ #: includes/api/v1/class-wc-rest-customers-controller.php:743 includes/api/v1/class-wc-rest-customers-controller.php:806 includes/api/v1/class-wc-rest-orders-controller.php:1048 includes/api/v1/class-wc-rest-orders-controller.php:1111
16918
+ msgid "Address line 1."
16919
  msgstr ""
16920
 
16921
+ #: includes/api/v1/class-wc-rest-customers-controller.php:748 includes/api/v1/class-wc-rest-customers-controller.php:811 includes/api/v1/class-wc-rest-orders-controller.php:1053 includes/api/v1/class-wc-rest-orders-controller.php:1116
16922
+ msgid "Address line 2."
16923
  msgstr ""
16924
 
16925
+ #: includes/api/v1/class-wc-rest-customers-controller.php:874
16926
+ msgid "Limit result set to specific IDs."
16927
  msgstr ""
16928
 
16929
+ #: includes/api/v1/class-wc-rest-customers-controller.php:910
16930
+ msgid "Limit result set to resources with a specific email."
 
16931
  msgstr ""
16932
 
16933
+ #: includes/api/v1/class-wc-rest-customers-controller.php:916
16934
+ msgid "Limit result set to resources with a specific role."
 
16935
  msgstr ""
16936
 
16937
+ #: includes/api/v1/class-wc-rest-tax-classes-controller.php:62
16938
+ msgid "Unique slug for the resource."
16939
  msgstr ""
16940
 
16941
+ #: includes/api/v1/class-wc-rest-tax-classes-controller.php:138 includes/api/legacy/v3/class-wc-api-taxes.php:534
16942
+ msgid "Standard rate"
 
16943
  msgstr ""
16944
 
16945
+ #: includes/api/v1/class-wc-rest-tax-classes-controller.php:225 includes/api/v1/class-wc-rest-taxes-controller.php:457
16946
+ msgid "Taxes do not support trashing."
16947
  msgstr ""
16948
 
16949
+ #: includes/api/v1/class-wc-rest-tax-classes-controller.php:340
16950
+ msgid "Tax class name."
16951
  msgstr ""
16952
 
16953
+ #: includes/api/v1/class-wc-rest-customer-downloads-controller.php:175
16954
+ msgid "Download ID (MD5)."
16955
  msgstr ""
16956
 
16957
+ #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:46 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:78 includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:114
16958
+ msgid "Unique identifier for the attribute of the terms."
16959
  msgstr ""
16960
 
16961
+ #: includes/api/v1/class-wc-rest-product-attribute-terms-controller.php:201
16962
+ msgid "Term name."
16963
  msgstr ""
16964
 
16965
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:582
16966
+ msgid "Country ISO 3166 code."
16967
  msgstr ""
16968
 
16969
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:587
16970
+ msgid "State code."
16971
  msgstr ""
16972
 
16973
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:592
16974
+ msgid "Postcode / ZIP."
 
16975
  msgstr ""
16976
 
16977
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:602
16978
+ msgid "Tax rate."
 
 
16979
  msgstr ""
16980
 
16981
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:607
16982
+ msgid "Tax rate name."
16983
  msgstr ""
16984
 
16985
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:612
16986
+ msgid "Tax priority."
 
 
16987
  msgstr ""
16988
 
16989
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:618
16990
+ msgid "Whether or not this is a compound rate."
16991
  msgstr ""
16992
 
16993
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:624
16994
+ msgid "Whether or not this tax rate also gets applied to shipping."
16995
  msgstr ""
16996
 
16997
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:630
16998
+ msgid "Indicates the order that will appear in queries."
16999
  msgstr ""
17000
 
17001
+ #: includes/api/v1/class-wc-rest-taxes-controller.php:700
17002
+ msgid "Sort by tax class."
17003
  msgstr ""
17004
 
17005
+ #: includes/api/v1/class-wc-rest-report-top-sellers-controller.php:164
17006
+ msgid "Total number of purchases."
17007
  msgstr ""
17008
 
17009
+ #: includes/api/v1/class-wc-rest-orders-controller.php:1306 includes/api/v1/class-wc-rest-order-refunds-controller.php:475
17010
+ msgid "Line item meta data."
17011
+ msgstr ""
17012
+
17013
+ #: includes/api/v1/class-wc-rest-orders-controller.php:1320 includes/api/v1/class-wc-rest-order-refunds-controller.php:489
17014
+ msgid "Meta label."
17015
  msgstr ""
17016
 
17017
+ #: includes/api/v1/class-wc-rest-products-controller.php:1639
17018
+ msgid "Invalid post ID."
 
 
17019
  msgstr ""
17020
 
17021
+ #: includes/api/v1/class-wc-rest-products-controller.php:1827 includes/api/v1/class-wc-rest-products-controller.php:2312
17022
+ msgid "Start date of sale price."
17023
  msgstr ""
17024
 
17025
+ #: includes/api/v1/class-wc-rest-products-controller.php:1832 includes/api/v1/class-wc-rest-products-controller.php:2317
17026
+ msgid "End date of sale price."
17027
  msgstr ""
17028
 
17029
+ #: includes/api/v1/class-wc-rest-products-controller.php:1911
17030
+ msgid "Download type, this controls the schema on the front-end."
17031
  msgstr ""
17032
 
17033
+ #: includes/api/v1/class-wc-rest-products-controller.php:2064
17034
+ msgid "List of upsell products IDs."
17035
  msgstr ""
17036
 
17037
+ #: includes/api/v1/class-wc-rest-products-controller.php:2259
17038
+ msgid "List of variations."
17039
  msgstr ""
17040
 
17041
+ #: includes/api/v1/class-wc-rest-products-controller.php:2266
17042
+ msgid "Variation ID."
17043
  msgstr ""
17044
 
17045
+ #: includes/api/v1/class-wc-rest-products-controller.php:2334
17046
+ msgid "If the variation is visible."
17047
  msgstr ""
17048
 
17049
+ #: includes/api/v1/class-wc-rest-products-controller.php:2618
17050
+ msgid "Limit result set to products with a specific attribute."
17051
  msgstr ""
17052
 
17053
+ #: includes/api/v1/class-wc-rest-products-controller.php:2630
17054
+ msgid "Limit result set to products with a specific SKU."
17055
  msgstr ""
17056
 
17057
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:68
17058
+ msgid "Webhook delivery URL."
17059
  msgstr ""
17060
 
17061
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:326 includes/api/legacy/v2/class-wc-api-webhooks.php:185 includes/api/legacy/v3/class-wc-api-webhooks.php:185
17062
+ msgid "Webhook topic is required and must be valid."
17063
  msgstr ""
17064
 
17065
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:331 includes/api/v1/class-wc-rest-webhooks-controller.php:400
17066
+ msgid "Webhook delivery URL must be a valid URL starting with http:// or https://."
17067
  msgstr ""
17068
 
17069
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:391 includes/api/legacy/v2/class-wc-api-webhooks.php:265 includes/api/legacy/v3/class-wc-api-webhooks.php:265
17070
+ msgid "Webhook topic must be valid."
17071
  msgstr ""
17072
 
17073
+ #: includes/api/v1/class-wc-rest-webhooks-controller.php:757
17074
+ msgid "Limit result set to webhooks assigned a specific status."
 
17075
  msgstr ""
17076
 
17077
+ #: includes/api/v1/class-wc-rest-product-attributes-controller.php:141
17078
+ msgid "Sorry, you cannot create new resource."
 
17079
  msgstr ""
17080
 
17081
+ #: includes/api/v1/class-wc-rest-product-attributes-controller.php:478
17082
+ msgid "Type of attribute."
17083
  msgstr ""
17084
 
17085
+ #: includes/api/v1/class-wc-rest-product-attributes-controller.php:485
17086
+ msgid "Default sort order."
 
17087
  msgstr ""
17088
 
17089
+ #: includes/api/v1/class-wc-rest-product-attributes-controller.php:492
17090
+ msgid "Enable/Disable attribute archives."
 
 
17091
  msgstr ""
17092
 
17093
+ #: includes/api/v1/class-wc-rest-order-refunds-controller.php:287
17094
+ msgid "Order is invalid"
17095
  msgstr ""
17096
 
17097
+ #: includes/api/v1/class-wc-rest-product-shipping-classes-controller.php:100
17098
+ msgid "Shipping class name."
17099
  msgstr ""
17100
 
17101
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:68
17102
+ msgid "Review content."
17103
  msgstr ""
17104
 
17105
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:73
17106
+ msgid "Name of the reviewer."
17107
  msgstr ""
17108
 
17109
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:78
17110
+ msgid "Email of the reviewer."
17111
  msgstr ""
17112
 
17113
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:193
17114
+ msgid "Sorry, you cannot delete this resource."
 
17115
  msgstr ""
17116
 
17117
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:209 includes/api/v1/class-wc-rest-product-reviews-controller.php:234 includes/api/v1/class-wc-rest-product-reviews-controller.php:260 includes/api/v1/class-wc-rest-product-reviews-controller.php:315
17118
+ msgid "Invalid product ID."
 
17119
  msgstr ""
17120
 
17121
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:277
17122
+ msgid "Creating product review failed."
 
17123
  msgstr ""
17124
 
17125
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:328
17126
+ msgid "Updating product review failed."
 
17127
  msgstr ""
17128
 
17129
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:366
17130
+ msgid "Invalid product review ID."
 
 
 
17131
  msgstr ""
17132
 
17133
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:386
17134
+ msgid "The product review does not support trashing."
 
 
 
 
17135
  msgstr ""
17136
 
17137
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:390
17138
+ msgid "The comment has already been trashed."
17139
  msgstr ""
17140
 
17141
+ #: includes/api/v1/class-wc-rest-product-reviews-controller.php:397
17142
+ msgid "The product review cannot be deleted."
 
 
 
17143
  msgstr ""
17144
 
17145
+ #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:47 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:63
17146
+ msgid "Unique identifier for the webhook."
 
 
 
17147
  msgstr ""
17148
 
17149
+ #: includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:122 includes/api/v1/class-wc-rest-webhook-deliveries-controller.php:147
17150
+ msgid "Invalid webhook ID."
17151
  msgstr ""
17152
 
17153
+ #: includes/api/v1/class-wc-rest-coupons-controller.php:455
17154
+ msgid "UTC DateTime when the coupon expires."
17155
  msgstr ""
17156
 
17157
+ #. translators: %s: version number
17158
+ #: includes/admin/plugin-updates/class-wc-plugin-updates.php:120
17159
+ #, php-format
17160
+ msgid "<strong>Heads up!</strong> The versions of the following plugins you're running haven't been tested with the latest version of WooCommerce (%s)."
 
17161
  msgstr ""
17162
 
17163
+ #. translators: %s: version number
17164
+ #: includes/admin/plugin-updates/class-wc-plugin-updates.php:143
17165
+ #, php-format
17166
+ msgid "<strong>Heads up!</strong> The versions of the following plugins you're running haven't been tested with WooCommerce %s. Please update them or confirm compatibility before updating WooCommerce, or you may experience issues:"
 
 
17167
  msgstr ""
17168
 
17169
+ #: includes/admin/plugin-updates/class-wc-plugin-updates.php:220
17170
+ msgid "unknown"
 
 
 
 
17171
  msgstr ""
17172
 
17173
+ #: includes/admin/views/html-notice-theme-support.php:14
17174
+ #, php-format
17175
+ msgid "<strong>Your theme does not declare WooCommerce support</strong> &#8211; Please read our <a href=\"%1$s\" target=\"_blank\">integration</a> guide or check out our <a href=\"%2$s\" target=\"_blank\">Storefront</a> theme which is totally free to download and designed specifically for use with WooCommerce."
 
17176
  msgstr ""
17177
 
17178
+ #: includes/admin/views/html-notice-theme-support.php:16
17179
+ msgid "Read more about Storefront"
17180
  msgstr ""
17181
 
17182
+ #: includes/admin/views/html-notice-theme-support.php:17
17183
+ msgid "Theme integration guide"
17184
  msgstr ""
17185
 
17186
+ #. translators: %s: documentation URL
17187
+ #: includes/admin/views/html-notice-secure-connection.php:18
17188
+ #, php-format
17189
+ msgid "Your store does not appear to be using a secure connection. We highly recommend serving your entire website over an HTTPS connection to help keep customer data secure. <a href=\"%s\">Learn more here.</a>"
 
17190
  msgstr ""
17191
 
17192
+ #. translators: 1: start date 2: end date
17193
+ #: includes/admin/views/html-report-by-date.php:22
17194
+ #, php-format
17195
+ msgid "From %1$s to %2$s"
 
17196
  msgstr ""
17197
 
17198
+ #: includes/admin/views/html-report-by-date.php:41
17199
+ msgid "Custom:"
17200
  msgstr ""
17201
 
17202
+ #: includes/admin/views/html-report-by-date.php:60 includes/admin/meta-boxes/views/html-product-data-variations.php:91
17203
+ msgid "Go"
 
 
 
17204
  msgstr ""
17205
 
17206
+ #: includes/admin/views/html-notice-no-shipping-methods.php:13
17207
+ msgid "Add shipping methods &amp; zones"
 
 
17208
  msgstr ""
17209
 
17210
+ #: includes/admin/views/html-notice-no-shipping-methods.php:14
17211
+ msgid "Shipping is currently enabled, but you have not added any shipping methods to your shipping zones."
 
 
17212
  msgstr ""
17213
 
17214
+ #: includes/admin/views/html-notice-no-shipping-methods.php:15
17215
+ msgid "Customers will not be able to purchase physical goods from your store until a shipping method is available."
17216
  msgstr ""
17217
 
17218
+ #: includes/admin/views/html-notice-no-shipping-methods.php:18 includes/admin/views/html-notice-legacy-shipping.php:18
17219
+ msgid "Setup shipping zones"
17220
  msgstr ""
17221
 
17222
+ #: includes/admin/views/html-notice-no-shipping-methods.php:19 includes/admin/views/html-notice-legacy-shipping.php:20
17223
+ msgid "Learn more about shipping zones"
17224
  msgstr ""
17225
 
17226
+ #: includes/admin/views/html-bulk-edit-product.php:26 includes/admin/views/html-bulk-edit-product.php:50 includes/admin/views/html-bulk-edit-product.php:75 includes/admin/views/html-bulk-edit-product.php:94 includes/admin/views/html-bulk-edit-product.php:123 includes/admin/views/html-bulk-edit-product.php:147 includes/admin/views/html-bulk-edit-product.php:169 includes/admin/views/html-bulk-edit-product.php:186 includes/admin/views/html-bulk-edit-product.php:205 includes/admin/views/html-bulk-edit-product.php:239 includes/admin/views/html-bulk-edit-product.php:258 includes/admin/views/html-bulk-edit-product.php:296
17227
+ msgid " No change —"
17228
  msgstr ""
17229
 
17230
+ #: includes/admin/views/html-bulk-edit-product.php:27 includes/admin/views/html-bulk-edit-product.php:51 includes/admin/views/html-bulk-edit-product.php:124 includes/admin/views/html-bulk-edit-product.php:148 includes/admin/views/html-bulk-edit-product.php:259
17231
+ msgid "Change to:"
 
 
17232
  msgstr ""
17233
 
17234
+ #: includes/admin/views/html-bulk-edit-product.php:28
17235
+ msgid "Increase existing price by (fixed amount or %):"
 
17236
  msgstr ""
17237
 
17238
+ #: includes/admin/views/html-bulk-edit-product.php:29
17239
+ msgid "Decrease existing price by (fixed amount or %):"
 
17240
  msgstr ""
17241
 
17242
+ #: includes/admin/views/html-bulk-edit-product.php:39
17243
+ #, php-format
17244
+ msgid "Enter price (%s)"
17245
  msgstr ""
17246
 
17247
+ #: includes/admin/views/html-bulk-edit-product.php:45 includes/admin/views/html-quick-edit-product.php:39
17248
+ msgid "Sale"
 
17249
  msgstr ""
17250
 
17251
+ #: includes/admin/views/html-bulk-edit-product.php:52
17252
+ msgid "Increase existing sale price by (fixed amount or %):"
 
17253
  msgstr ""
17254
 
17255
+ #: includes/admin/views/html-bulk-edit-product.php:53
17256
+ msgid "Decrease existing sale price by (fixed amount or %):"
 
17257
  msgstr ""
17258
 
17259
+ #: includes/admin/views/html-bulk-edit-product.php:54
17260
+ msgid "Set to regular price decreased by (fixed amount or %):"
 
 
17261
  msgstr ""
17262
 
17263
+ #: includes/admin/views/html-bulk-edit-product.php:64
17264
+ #, php-format
17265
+ msgid "Enter sale price (%s)"
17266
  msgstr ""
17267
 
17268
+ #: includes/admin/views/html-bulk-edit-product.php:77 includes/admin/views/html-quick-edit-product.php:55 includes/admin/meta-boxes/views/html-product-data-general.php:154
17269
+ msgid "Shipping only"
17270
  msgstr ""
17271
 
17272
+ #: includes/admin/views/html-bulk-edit-product.php:142 includes/admin/views/html-quick-edit-product.php:109
17273
+ msgid "L/W/H"
 
 
 
17274
  msgstr ""
17275
 
17276
+ #: includes/admin/views/html-bulk-edit-product.php:170 includes/admin/views/html-quick-edit-product.php:126 includes/admin/meta-boxes/views/html-product-data-shipping.php:48
17277
+ msgid "No shipping class"
 
 
17278
  msgstr ""
17279
 
17280
+ #: includes/admin/views/html-bulk-edit-product.php:181 includes/admin/views/html-quick-edit-product.php:138
17281
+ msgid "Visibility"
 
 
17282
  msgstr ""
17283
 
17284
+ #: includes/admin/views/html-bulk-edit-product.php:187 includes/admin/views/html-quick-edit-product.php:144
17285
+ msgid "Catalog &amp; search"
17286
  msgstr ""
17287
 
17288
+ #: includes/admin/views/html-bulk-edit-product.php:188 includes/admin/views/html-quick-edit-product.php:145
17289
+ msgid "Catalog"
 
 
 
17290
  msgstr ""
17291
 
17292
+ #: includes/admin/views/html-bulk-edit-product.php:189 includes/admin/views/html-quick-edit-product.php:146
17293
+ msgid "Search"
17294
  msgstr ""
17295
 
17296
+ #: includes/admin/views/html-bulk-edit-product.php:206 includes/admin/views/html-bulk-edit-product.php:240 includes/admin/views/html-bulk-edit-product.php:297 includes/admin/settings/class-wc-settings-emails.php:300 includes/admin/settings/class-wc-settings-payment-gateways.php:174 includes/admin/settings/class-wc-settings-shipping.php:261 includes/admin/list-tables/class-wc-admin-list-table-products.php:249 includes/admin/list-tables/class-wc-admin-list-table-products.php:249
17297
+ msgid "Yes"
17298
  msgstr ""
17299
 
17300
+ #: includes/admin/views/html-bulk-edit-product.php:207 includes/admin/views/html-bulk-edit-product.php:241 includes/admin/views/html-bulk-edit-product.php:298 includes/admin/settings/class-wc-settings-payment-gateways.php:176 includes/admin/settings/class-wc-settings-shipping.php:262 includes/admin/list-tables/class-wc-admin-list-table-products.php:251 includes/admin/list-tables/class-wc-admin-list-table-products.php:251
17301
+ msgid "No"
17302
  msgstr ""
17303
 
17304
+ #: includes/admin/views/html-bulk-edit-product.php:222 includes/admin/views/html-bulk-edit-product.php:278
17305
+ msgid "— No Change —"
17306
  msgstr ""
17307
 
17308
+ #: includes/admin/views/html-bulk-edit-product.php:234 includes/admin/views/html-quick-edit-product.php:167 includes/admin/meta-boxes/views/html-product-data-inventory.php:31 includes/admin/meta-boxes/views/html-variation-admin.php:91
17309
+ msgid "Manage stock?"
17310
  msgstr ""
17311
 
17312
+ #: includes/admin/views/html-bulk-edit-product.php:253 includes/admin/views/html-bulk-edit-product.php:269 includes/admin/views/html-quick-edit-product.php:188
17313
+ msgid "Stock qty"
17314
  msgstr ""
17315
 
17316
+ #: includes/admin/views/html-bulk-edit-product.php:274 includes/admin/views/html-quick-edit-product.php:197
17317
+ msgid "Backorders?"
17318
  msgstr ""
17319
 
17320
+ #: includes/admin/views/html-notice-updating.php:12 includes/admin/views/html-notice-update.php:12
17321
+ msgid "WooCommerce data update"
17322
  msgstr ""
17323
 
17324
+ #: includes/admin/views/html-notice-updating.php:12
17325
+ msgid "Your database is being updated in the background."
17326
  msgstr ""
17327
 
17328
+ #: includes/admin/views/html-notice-updating.php:12
17329
+ msgid "Taking a while? Click here to run it now."
17330
  msgstr ""
17331
 
17332
+ #: includes/admin/views/html-admin-page-addons.php:15 includes/admin/helper/views/html-section-nav.php:4
17333
+ msgid "Browse Extensions"
 
17334
  msgstr ""
17335
 
17336
+ #: includes/admin/views/html-admin-page-addons.php:19 includes/admin/helper/views/html-section-nav.php:8
17337
+ #, php-format
17338
+ msgid "WooCommerce.com Subscriptions %s"
17339
  msgstr ""
17340
 
17341
+ #: includes/admin/views/html-admin-page-addons.php:24 includes/admin/helper/views/html-main.php:5 includes/admin/helper/views/html-oauth-start.php:14
17342
+ msgid "WooCommerce Extensions"
 
17343
  msgstr ""
17344
 
17345
+ #: includes/admin/views/html-admin-page-addons.php:41
17346
+ #, php-format
17347
+ msgid "Showing search results for: %s"
17348
  msgstr ""
17349
 
17350
+ #: includes/admin/views/html-admin-page-addons.php:53
17351
+ msgid "Enter a search term and press enter"
17352
  msgstr ""
17353
 
17354
+ #: includes/admin/views/html-admin-page-addons.php:108
17355
+ #, php-format
17356
+ msgid "Our catalog of WooCommerce Extensions can be found on WooCommerce.com here: <a href=\"%s\">WooCommerce Extensions Catalog</a>"
17357
  msgstr ""
17358
 
17359
+ #: includes/admin/views/html-admin-page-addons.php:114
17360
+ msgid "Looking for a WooCommerce theme?"
 
17361
  msgstr ""
17362
 
17363
+ #: includes/admin/views/html-admin-page-addons.php:115
17364
+ msgid "We recommend Storefront, the <em>official</em> WooCommerce theme."
17365
  msgstr ""
17366
 
17367
+ #: includes/admin/views/html-admin-page-addons.php:116
17368
+ msgid "Storefront is an intuitive, flexible and <strong>free</strong> WordPress theme offering deep integration with WooCommerce and many of the most popular customer-facing extensions."
 
 
 
 
17369
  msgstr ""
17370
 
17371
+ #: includes/admin/views/html-admin-page-addons.php:118
17372
+ msgid "Read all about it"
17373
  msgstr ""
17374
 
17375
+ #: includes/admin/views/html-admin-page-addons.php:119
17376
+ msgid "Download &amp; install"
 
17377
  msgstr ""
17378
 
17379
+ #: includes/admin/views/html-quick-edit-product.php:111 includes/admin/meta-boxes/views/html-product-data-shipping.php:30 includes/admin/meta-boxes/views/html-product-data-variations.php:80 includes/admin/meta-boxes/views/html-variation-admin.php:268
17380
+ msgid "Length"
17381
  msgstr ""
17382
 
17383
+ #: includes/admin/views/html-quick-edit-product.php:112 includes/admin/meta-boxes/views/html-product-data-shipping.php:31 includes/admin/meta-boxes/views/html-product-data-variations.php:81 includes/admin/meta-boxes/views/html-variation-admin.php:269
17384
+ msgid "Width"
 
17385
  msgstr ""
17386
 
17387
+ #: includes/admin/views/html-quick-edit-product.php:113 includes/admin/meta-boxes/views/html-product-data-shipping.php:32 includes/admin/meta-boxes/views/html-product-data-variations.php:82 includes/admin/meta-boxes/views/html-variation-admin.php:270
17388
+ msgid "Height"
17389
  msgstr ""
17390
 
17391
+ #: includes/admin/views/html-admin-page-status-report.php:30
17392
+ msgid "Please copy and paste this information in your ticket when contacting support:"
17393
  msgstr ""
17394
 
17395
+ #: includes/admin/views/html-admin-page-status-report.php:33
17396
+ msgid "Get system report"
17397
  msgstr ""
17398
 
17399
+ #: includes/admin/views/html-admin-page-status-report.php:35
17400
+ msgid "Understanding the status report"
17401
  msgstr ""
17402
 
17403
+ #: includes/admin/views/html-admin-page-status-report.php:41 includes/admin/settings/views/html-keys-edit.php:131 includes/admin/settings/views/html-keys-edit.php:139 includes/admin/meta-boxes/views/html-order-download-permission.php:47
17404
+ msgid "Copied!"
17405
  msgstr ""
17406
 
17407
+ #: includes/admin/views/html-admin-page-status-report.php:42
17408
+ msgid "Copy for support"
17409
  msgstr ""
17410
 
17411
+ #: includes/admin/views/html-admin-page-status-report.php:53
17412
+ msgid "WordPress environment"
17413
  msgstr ""
17414
 
17415
+ #: includes/admin/views/html-admin-page-status-report.php:58
17416
+ msgid "Home URL"
17417
  msgstr ""
17418
 
17419
+ #: includes/admin/views/html-admin-page-status-report.php:59
17420
+ msgid "The homepage URL of your site."
17421
  msgstr ""
17422
 
17423
+ #: includes/admin/views/html-admin-page-status-report.php:63
17424
+ msgid "Site URL"
17425
  msgstr ""
17426
 
17427
+ #: includes/admin/views/html-admin-page-status-report.php:64
17428
+ msgid "The root URL of your site."
17429
  msgstr ""
17430
 
17431
+ #: includes/admin/views/html-admin-page-status-report.php:68
17432
+ msgid "WooCommerce version"
17433
  msgstr ""
17434
 
17435
+ #: includes/admin/views/html-admin-page-status-report.php:69
17436
+ msgid "The version of WooCommerce installed on your site."
 
17437
  msgstr ""
17438