-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathcommerce.php
More file actions
1396 lines (1395 loc) · 99.9 KB
/
Copy pathcommerce.php
File metadata and controls
1396 lines (1395 loc) · 99.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
return [
'(new price)' => '(new price)',
'(of original price)' => '(of original price)',
'(off original price)' => '(off original price)',
'A cart number must be specified.' => 'A cart number must be specified.',
'A friendly reference number will be generated based on this format when a cart is completed and becomes an order. For example {ex1}, or<br> {ex2}. The result of this format must be unique.' => 'A friendly reference number will be generated based on this format when a cart is completed and becomes an order. For example {ex1}, or<br> {ex2}. The result of this format must be unique.',
'A new download link has been sent to {email}' => 'A new download link has been sent to {email}',
'A new download link will be sent to {email}' => 'A new download link will be sent to {email}',
'A valid email is required to create a customer.' => 'A valid email is required to create a customer.',
'Accept' => 'Accept',
'Accepted' => 'Accepted',
'Actions' => 'Actions',
'Active Carts' => 'Active Carts',
'Active subscriptions' => 'Active subscriptions',
'Active' => 'Active',
'Add Address' => 'Add Address',
'Add a coupon' => 'Add a coupon',
'Add a custom line item' => 'Add a custom line item',
'Add a line item' => 'Add a line item',
'Add a product' => 'Add a product',
'Add a variant' => 'Add a variant',
'Add an adjustment' => 'Add an adjustment',
'Add an item' => 'Add an item',
'Add an option' => 'Add an option',
'Add catalog price' => 'Add catalogue price',
'Add variant above' => 'Add variant above',
'Add' => 'Add',
'Additional Actions' => 'Additional Actions',
'Additional recipients that should receive this email. Twig code can be used here.' => 'Additional recipients that should receive this email. Twig code can be used here.',
'Address 1' => 'Address 1',
'Address 2' => 'Address 2',
'Address 3' => 'Address 3',
'Address Line 1' => 'Address Line 1',
'Address Line 2' => 'Address Line 2',
'Address Updated.' => 'Address Updated.',
'Address copied to user.' => 'Address copied to user.',
'Address not found.' => 'Address not found.',
'Adjust Quantity' => 'Adjust Quantity',
'Adjust price when included rate is disqualified?' => 'Adjust price when included rate is disqualified?',
'Adjust' => 'Adjust',
'Adjustments' => 'Adjustments',
'Administrative Area Code of Origin' => 'Administrative Area Code of Origin',
'Advanced' => 'Advanced',
'All Orders' => 'All Orders',
'All Totals' => 'All Totals',
'All Transfers' => 'All Transfers',
'All active subscriptions' => 'All active subscriptions',
'All customers' => 'All customers',
'All products' => 'All products',
'All' => 'All',
'Allow Checkout Without Payment' => 'Allow Checkout Without Payment',
'Allow Empty Cart On Checkout' => 'Allow Empty Cart On Checkout',
'Allow Partial Payment On Checkout' => 'Allow Partial Payment On Checkout',
'Allow out of stock purchases' => 'Allow out of stock purchases',
'Allow' => 'Allow',
'Allowed Qty' => 'Allowed Qty',
'Alternative Phone' => 'Alternative Phone',
'Amount' => 'Amount',
'An ID must be provided' => 'An ID must be provided',
'An error occurred while generating this PDF.' => 'An error occurred while generating this PDF.',
'Any' => 'Any',
'Anywhere' => 'Anywhere',
'Are you sure you want to archive the “{name}” subscription plan? It WILL NOT cancel the existing subscriptions.' => 'Are you sure you want to archive the “{name}” subscription plan? It WILL NOT cancel the existing subscriptions.',
'Are you sure you want to capture this transaction?' => 'Are you sure you want to capture this transaction?',
'Are you sure you want to complete this order?' => 'Are you sure you want to complete this order?',
'Are you sure you want to delete the selected orders?' => 'Are you sure you want to delete the selected orders?',
'Are you sure you want to delete the selected product and its variants?' => 'Are you sure you want to delete the selected product and its variants?',
'Are you sure you want to delete the selected variants?' => 'Are you sure you want to delete the selected variants?',
'Are you sure you want to delete this shipping rule?' => 'Are you sure you want to delete this shipping rule?',
'Are you sure you want to delete “{name}” and all its products? Please make sure you have a backup of your database before performing this destructive action.' => 'Are you sure you want to delete “{name}” and all its products? Please make sure you have a backup of your database before performing this destructive action.',
'Are you sure you want to delete “{name}”, this will set all line items with this status to no status?' => 'Are you sure you want to delete “{name}”? This will set all line items with this status to no status.',
'Are you sure you want to mark this transfer as pending? This will show as incoming at the destination.' => 'Are you sure you want to mark this transfer as pending? This will show as incoming at the destination.',
'Are you sure you want to overwrite the billing address?' => 'Are you sure you want to overwrite the billing address?',
'Are you sure you want to overwrite the shipping address?' => 'Are you sure you want to overwrite the shipping address?',
'Are you sure you want to permanently delete this store and everything in it?' => 'Are you sure you want to permanently delete this store and everything in it?',
'Are you sure you want to refund this transaction?' => 'Are you sure you want to refund this transaction?',
'Are you sure you want to remove this customer?' => 'Are you sure you want to remove this customer?',
'Are you sure you want to save this as a new shipping rule?' => 'Are you sure you want to save this as a new shipping rule?',
'Are you sure you want to send email: {name}?' => 'Are you sure you want to send email: {name}?',
'At least one site must be enabled for the product type.' => 'At least one site must be enabled for the product type.',
'Attempted Payments' => 'Attempted Payments',
'Attention' => 'Attention',
'Authorize Only (Manually Capture)' => 'Authorise Only (Manually Capture)',
'Auto Set Cart Shipping Method Option' => 'Auto Set Cart Shipping Method Option',
'Auto Set New Cart Addresses' => 'Auto Set New Cart Addresses',
'Auto Set Payment Source' => 'Auto Set Payment Source',
'Automatic SKU Format' => 'Automatic SKU Format',
'Available Shipping Categories' => 'Available Shipping Categories',
'Available Tax Categories' => 'Available Tax Categories',
'Available for purchase' => 'Available for purchase',
'Available for purchase?' => 'Available for purchase?',
'Available to Product Types' => 'Available to Product Types',
'Available' => 'Available',
'Available?' => 'Available?',
'Average Order Total' => 'Average Order Total',
'Average' => 'Average',
'BCC’d Recipient' => 'BCC’d Recipient',
'Bad Request' => 'Bad Request',
'Bad address ID.' => 'Bad address ID.',
'Bad order ID.' => 'Bad order ID.',
'Base Price' => 'Base Price',
'Base Promotional Price' => 'Base Promotional Price',
'Base Rate' => 'Base Rate',
'Base' => 'Base',
'Bcc' => 'Bcc',
'Billing Address' => 'Billing Address',
'Billing Business Name' => 'Billing Business Name',
'Billing First Name' => 'Billing First Name',
'Billing Full Name' => 'Billing Full Name',
'Billing Last Name' => 'Billing Last Name',
'Billing address required.' => 'Billing address required.',
'Billing detail update URL' => 'Billing detail update URL',
'Billing issues' => 'Billing issues',
'Billing' => 'Billing',
'Both (Line item price + Line item shipping costs)' => 'Both (Line item price + Line item shipping costs)',
'Business ID' => 'Business ID',
'Business Name' => 'Business Name',
'Business Tax ID' => 'Business Tax ID',
'CC’d Recipient' => 'CC’d Recipient',
'CVV' => 'CVV',
'Can be used as an internal reference.' => 'Can be used as an internal reference.',
'Can not complete payment for missing transaction.' => 'Cannot complete payment for missing transaction.',
'Can not create a new order' => 'Cannot create a new order',
'Can not find an order to pay.' => 'Cannot find an order to pay.',
'Can not find enabled email.' => 'Cannot find enabled email.',
'Can not find order' => 'Cannot find order',
'Can not find order.' => 'Cannot find order.',
'Can not find the transaction to refund' => 'Cannot find the transaction to refund',
'Can not move between these inventory types.' => 'Cannot move between these inventory types.',
'Can not refund amount greater than the remaining amount' => 'Cannot refund amount greater than the remaining amount',
'Cancel subscription' => 'Cancel subscription',
'Cancel' => 'Cancel',
'Cancellation date' => 'Cancellation date',
'Cancellation' => 'Cancellation',
'Cannot switch plans for this subscription.' => 'Cannot switch plans for this subscription.',
'Can’t preview this email.' => 'Can’t preview this email.',
'Capture payment' => 'Capture payment',
'Capture' => 'Capture',
'Card Holder' => 'Card Holder',
'Card Number' => 'Card Number',
'Card' => 'Card',
'Cart forgotten.' => 'Cart forgotten.',
'Cart updated.' => 'Cart updated.',
'Cart {number}' => 'Cart {number}',
'Catalog Pricing Rule' => 'Catalogue Pricing Rule',
'Catalog pricing rule description.' => 'Catalogue pricing rule description.',
'Catalog pricing rule saved.' => 'Catalogue pricing rule saved.',
'Catalog pricing rules deleted.' => 'Catalogue pricing rules deleted.',
'Catalog pricing rules updated.' => 'Catalogue pricing rules updated.',
'Categories Relationship Type' => 'Categories Relationship Type',
'Categories' => 'Categories',
'Category Rate Overrides' => 'Category Rate Overrides',
'Centimeters (cm)' => 'Centimetres (cm)',
'Changing this value may affect your ability to refund existing transactions.' => 'Changing this value may affect your ability to refund existing transactions.',
'Choose a color to represent the order’s status' => 'Choose a colour to represent the order’s status',
'Choose adjustment values to include when calculating the product revenue total.' => 'Choose adjustment values to include when calculating the product revenue total.',
'Choose the currency’s ISO code.' => 'Choose the currency’s ISO code.',
'Choose the destination inventory location for the existing on hand stock.' => 'Choose the destination inventory location for the existing on hand stock.',
'Choose which sites this product type should be available in, and configure the site-specific settings.' => 'Choose which sites this product type should be available in, and configure the site-specific settings.',
'City' => 'City',
'Clear counter' => 'Clear counter',
'Clear notices' => 'Clear notices',
'Close' => 'Close',
'Code' => 'Code',
'Collapse' => 'Collapse',
'Collated PDF' => 'Collated PDF',
'Color' => 'Colour',
'Commerce Products' => 'Commerce Products',
'Commerce Settings' => 'Commerce Settings',
'Commerce Variants' => 'Commerce Variants',
'Commerce email “{email}” could not be sent for order “{order}”.' => 'Commerce email “{email}” could not be sent for order “{order}”.',
'Commerce order exports' => 'Commerce order exports',
'Commerce' => 'Commerce',
'Committed' => 'Committed',
'Completed Email' => 'Completed Email',
'Completed' => 'Completed',
'Completing order failed.' => 'Failed to complete order.',
'Condition' => 'Condition',
'Conditions here are matched against an order before looking through the rules. This is useful if you want to qualify a method’s availability early, or if there are common conditions to all rules for this method.' => 'Conditions here are matched against an order before looking through the rules. This is useful if you want to qualify a method’s availabililty early or if there are common conditions to all rules for this method.',
'Conditions here are matched against the order’s customer before looking through the rules. This is useful if you want qualify a method’s availability early or if there are common conditions to all rules for this method.' => 'Conditions here are matched against the order’s customer before looking through the rules. This is useful if you want qualify a method’s availability early or if there are common conditions to all rules for this method.',
'Conditions' => 'Conditions',
'Control Panel Settings' => 'Control Panel Settings',
'Control panel' => 'Control panel',
'Conversion Rate' => 'Conversion Rate',
'Converted Price' => 'Converted Price',
'Copied!' => 'Copied!',
'Copy the URL' => 'Copy the URL',
'Copy to {location}' => 'Copy to {location}',
'Copy' => 'Copy',
'Costs' => 'Costs',
'Could not archive gateway.' => 'Could not archive gateway.',
'Could not cancel “{reference}”.' => 'Could not cancel “{reference}”.',
'Could not create the payment source.' => 'Could not create the payment source.',
'Could not delete shipping rule' => 'Could not delete shipping rule',
'Could not delete shipping zone' => 'Could not delete shipping zone',
'Could not delete {count, number} shipping {count, plural, one{category} other{categories}}.' => 'Could not delete {count, number} shipping {count, plural, one{category} other{categories}}.',
'Could not delete {count, number} shipping {count, plural, one{method} other{methods}} and rules.' => 'Could not delete {count, number} shipping {count, plural, one{method} other{methods}} and rules.',
'Could not delete {count, number} tax {count, plural, one{category} other{categories}}.' => 'Could not delete {count, number} tax {count, plural, one{category} other{categories}}.',
'Could not find the email or template.' => 'Could not find the email or template.',
'Could not mark order {number} as complete. Order save failed during order completion with errors: {order}' => 'Could not mark order {number} as complete. Order save failed during order completion with errors: {order}',
'Could not reactivate “{reference}”.' => 'Could not reactivate “{reference}”.',
'Could not send email' => 'Could not send email',
'Could not switch “{reference}” to “{plan}”.' => 'Could not switch “{reference}” to “{plan}”.',
'Could not update orders address.' => 'Could not update orders address.',
'Couldn’t archive Line Item Status.' => 'Couldn’t archive Line Item Status.',
'Couldn’t archive Order Status.' => 'Couldn’t archive Order Status.',
'Couldn’t capture transaction.' => 'Couldn’t capture transaction.',
'Couldn’t capture transaction: {message}' => 'Couldn’t capture transaction: {message}',
'Couldn’t delete email.' => 'Couldn’t delete email.',
'Couldn’t delete the payment source.' => 'Couldn’t delete the payment source.',
'Couldn’t get order.' => 'Couldn’t get order.',
'Couldn’t recalculate order.' => 'Couldn’t recalculate order.',
'Couldn’t refund transaction.' => 'Couldn’t refund transaction.',
'Couldn’t refund transaction: {message}' => 'Couldn’t refund transaction: {message}',
'Couldn’t reorder Line Item Statuses.' => 'Couldn’t reorder Line Item Statuses.',
'Couldn’t reorder Order Statuses.' => 'Couldn’t reorder Order Statuses.',
'Couldn’t reorder PDFs.' => 'Couldn’t reorder PDFs.',
'Couldn’t reorder discounts.' => 'Couldn’t reorder discounts.',
'Couldn’t reorder gateways.' => 'Couldn’t reorder gateways.',
'Couldn’t reorder plans.' => 'Couldn’t reorder plans.',
'Couldn’t reorder rules.' => 'Couldn’t reorder rules.',
'Couldn’t reorder sale.' => 'Couldn’t reorder sale.',
'Couldn’t reorder sales.' => 'Couldn’t reorder sales.',
'Couldn’t reorder statuses.' => 'Couldn’t reorder statuses.',
'Couldn’t reorder stores.' => 'Couldn’t reorder stores.',
'Couldn’t save PDF.' => 'Couldn’t save PDF.',
'Couldn’t save catalog pricing rule.' => 'Couldn’t save catalog pricing rule.',
'Couldn’t save currency.' => 'Couldn’t save currency.',
'Couldn’t save discount.' => 'Couldn’t save discount.',
'Couldn’t save email.' => 'Couldn’t save email.',
'Couldn’t save gateway.' => 'Couldn’t save gateway.',
'Couldn’t save inventory location.' => 'Couldn’t save inventory location.',
'Couldn’t save line item status.' => 'Couldn’t save line item status.',
'Couldn’t save order fields.' => 'Couldn’t save order fields.',
'Couldn’t save order status.' => 'Couldn’t save order status.',
'Couldn’t save order.' => 'Couldn’t save order.',
'Couldn’t save product type.' => 'Couldn’t save product type.',
'Couldn’t save sale.' => 'Couldn’t save sale.',
'Couldn’t save settings.' => 'Couldn’t save settings.',
'Couldn’t save shipping category.' => 'Couldn’t save shipping category.',
'Couldn’t save shipping method.' => 'Couldn’t save shipping method.',
'Couldn’t save shipping rule.' => 'Couldn’t save shipping rule.',
'Couldn’t save shipping zone.' => 'Couldn’t save shipping zone.',
'Couldn’t save store.' => 'Could not save store.',
'Couldn’t save subscription fields.' => 'Couldn’t save subscription fields.',
'Couldn’t save subscription plan.' => 'Couldn’t save subscription plan.',
'Couldn’t save subscription.' => 'Couldn’t save subscription.',
'Couldn’t save tax category.' => 'Couldn’t save tax category.',
'Couldn’t save tax rate.' => 'Couldn’t save tax rate.',
'Couldn’t save tax zone.' => 'Couldn’t save tax zone.',
'Couldn’t save transfer fields.' => 'Couldn’t save transfer fields.',
'Couldn’t update catalog pricing rule statuses.' => 'Couldn’t update catalogue pricing rules status.',
'Couldn’t update status.' => 'Couldn’t update status.',
'Couldn’t updated sales status.' => 'Couldn’t update sales status.',
'Country Code of Origin' => 'Country Code of Origin',
'Country List' => 'Country List',
'Country not allowed.' => 'Country not allowed.',
'Country' => 'Country',
'Coupon Code' => 'Coupon Code',
'Coupon can not apply discount to this order due to address mismatch.' => 'Coupon can not apply discount to this order due to address mismatch.',
'Coupon can not apply discount to this order due to customer mismatch.' => 'Coupon can not apply discount to this order due to customer mismatch.',
'Coupon can not apply discount to this order.' => 'Coupon can not apply discount to this order.',
'Coupon code “{code}” is already in use by discount “{name}”.' => 'Coupon code “{code}” is already in use by discount “{name}”.',
'Coupon codes cannot be blank.' => 'Coupon codes cannot be blank.',
'Coupon codes must be unique.' => 'Coupon codes must be unique.',
'Coupon format is required and must contain at least one `#`.' => 'Coupon format is required and must contain at least one # sign.',
'Coupon not valid.' => 'Coupon not valid.',
'Coupon removed: {explanation}' => 'Coupon removed: {explanation}',
'Coupons' => 'Coupons',
'Craft Commerce' => 'Craft Commerce',
'Create a Discount' => 'Create a Discount',
'Create a Subscription Plan' => 'Create a Subscription Plan',
'Create a new PDF' => 'Create a new PDF',
'Create a new catalog pricing rule' => 'Create a new catalogue pricing rule',
'Create a new currency' => 'Create a new currency',
'Create a new email' => 'Create a new email',
'Create a new gateway' => 'Create a new gateway',
'Create a new line item status' => 'Create a new line item status',
'Create a new order status' => 'Create a new order status',
'Create a new product type' => 'Create a new product type',
'Create a new sale' => 'Create a new sale',
'Create a new shipping category' => 'Create a new shipping category',
'Create a new shipping method' => 'Create a new shipping method',
'Create a new shipping rule' => 'Create a new shipping rule',
'Create a new tax category' => 'Create a new tax category',
'Create a new tax rate' => 'Create a new tax rate',
'Create a new tax zone' => 'Create a new tax zone',
'Create a product type' => 'Create a product type',
'Create a shipping zone' => 'Create a shipping zone',
'Create a tax zone' => 'Create a tax zone',
'Create catalog pricing rules' => 'Create catalogue pricing rules',
'Create customer: “{email}”' => 'Create customer: “{email}”',
'Create discounts' => 'Create discounts',
'Create discount…' => 'Create discount…',
'Create products' => 'Create products',
'Create rules that allow this discount to match the order.' => 'Create rules that allow this discount to match the order.',
'Create rules that allow this discount to match the order’s billing address.' => 'Create rules that allow this discount to match the order’s billing address.',
'Create rules that allow this discount to match the order’s customer.' => 'Create rules that allow this discount to match the order’s customer.',
'Create rules that allow this discount to match the order’s shipping address.' => 'Create rules that allow this discount to match the order’s shipping address.',
'Create rules that allow this gateway to match the order.' => 'Create rules that allow this gateway to match the order.',
'Create sales' => 'Create sales',
'Create sale…' => 'Create sale…',
'Created' => 'Created',
'Credit Card Payment Type' => 'Credit Card Payment Type',
'Currency Code' => 'Currency Code',
'Currency saved.' => 'Currency saved.',
'Currency' => 'Currency',
'Current' => 'Current',
'Custom 1' => 'Custom 1',
'Custom 2' => 'Custom 2',
'Custom 3' => 'Custom 3',
'Custom 4' => 'Custom 4',
'Custom' => 'Custom',
'Customer Enabled?' => 'Customer Enabled?',
'Customer ID is required.' => 'Customer ID is required.',
'Customer Note' => 'Customer Note',
'Customer Notices' => 'Customer Notices',
'Customer' => 'Customer',
'Damaged' => 'Damaged',
'Data shown might be outdated.' => 'Data shown might be outdated.',
'Date Authorized' => 'Date Authorised',
'Date Created' => 'Date Created',
'Date First Paid' => 'Date First Paid',
'Date Ordered' => 'Date Ordered',
'Date Paid' => 'Date Paid',
'Date Updated' => 'Date Updated',
'Date from which the catalog pricing rule will be active. Leave blank for unlimited start date' => 'Date from which the catalogue pricing rule will be active. Leave blank for unlimited start date',
'Date from which the discount will be active. Leave blank for unlimited start date' => 'Date from which the discount will be active. Leave blank for unlimited start date',
'Date from which the sale will be active. Leave blank for unlimited start date' => 'Date from which the sale will be active. Leave blank for unlimited start date',
'Date when the catalog pricing rule will be finished. Leave blank for unlimited end date' => 'Date when the catalogue pricing rule will be finished. Leave blank for unlimited end date',
'Date when the discount will be finished. Leave blank for unlimited end date' => 'Date when the discount will be finished. Leave blank for unlimited end date',
'Date when the sale will be finished. Leave blank for unlimited end date' => 'Date when the sale will be finished. Leave blank for unlimited end date',
'Date' => 'Date',
'Default - Allow the price to be negative if discounts are greater than the order value.' => 'Default - Allow the price to be negative if discounts are greater than the order value.',
'Default Category' => 'Default Category',
'Default Commerce control panel view. If the user does not have permission it will fall back to a location they can access.' => 'Default Commerce control panel view. If the user does not have permission it will fall back to a location they can access.',
'Default Order PDF' => 'Default Order PDF',
'Default Per Item Rate' => 'Default Per Item Rate',
'Default Percentage Rate' => 'Default Percentage Rate',
'Default Status?' => 'Default Status?',
'Default View' => 'Default View',
'Default Weight Rate' => 'Default Weight Rate',
'Default Zone' => 'Default Zone',
'Default status?' => 'Default status?',
'Default to this tax zone when no billing address is set' => 'Default to this tax zone when no billing address is set',
'Default to this tax zone when no shipping address is set' => 'Default to this tax zone when no shipping address is set',
'Default variant updated.' => 'Default variant updated.',
'Default' => 'Default',
'Default?' => 'Default?',
'Delete catalog pricing rules' => 'Delete catalogue pricing rules',
'Delete discounts' => 'Delete discounts',
'Delete orders' => 'Delete orders',
'Delete products' => 'Delete products',
'Delete sales' => 'Delete sales',
'Delete' => 'Delete',
'Deleting the {location} location.' => 'Deleting the {location} location.',
'Describe this rule.' => 'Describe this rule.',
'Describe this shipping zone.' => 'Describe this shipping zone.',
'Describe this tax zone.' => 'Describe this tax zone.',
'Description' => 'Description',
'Destination Inventory Location' => 'Destination Inventory Location',
'Destination' => 'Destination',
'Details' => 'Details',
'Dimension Unit' => 'Dimension Unit',
'Dimensions' => 'Dimensions',
'Disable' => 'Disable',
'Disabled' => 'Disabled',
'Disallow' => 'Disallow',
'Discount all line items' => 'Discount all line items',
'Discount description.' => 'Discount description.',
'Discount is not allowed for the order' => 'Discount is not allowed for order',
'Discount is out of date.' => 'Discount is out of date.',
'Discount saved.' => 'Discount saved.',
'Discount the matching items only' => 'Discount matching items only',
'Discount use has reached its limit.' => 'Discount use has reached its limit.',
'Discount' => 'Discount',
'Discounted Item Subtotal' => 'Discounted Item Subtotal',
'Discounted Items' => 'Discounted Items',
'Discounts deleted.' => 'Discounts deleted.',
'Discounts reordered.' => 'Discounts reordered.',
'Discounts updated.' => 'Discounts updated.',
'Discounts' => 'Discounts',
'Disqualify with valid business tax ID?' => 'Disqualify with valid business tax ID?',
'Do not apply subsequent matching sales beyond applying this sale.' => 'Do not apply subsequent matching sales beyond applying this sale.',
'Do not apply this rate if the order address has any of the selected valid business tax IDs.' => 'Do not apply this rate if the order address has any of the selected valid business tax IDs.',
'Do not attach a PDF to this email' => 'Do not attach a PDF to this email',
'Do not call recalculate on the order (Number: {orderNumber}) if errors are present.' => 'Do not call recalculate on the order (Number: {orderNumber}) if errors are present.',
'Donation can not be zero.' => 'Donation cannot be zero.',
'Donation needs to be an amount.' => 'Donation needs to be an amount.',
'Donation settings saved.' => 'Donation settings saved.',
'Donation' => 'Donation',
'Donations' => 'Donations',
'Done' => 'Done',
'Don’t apply any subsequent discounts to an order if this discount is applied' => 'Don’t apply any subsequent discounts to an order if this discount is applied',
'Download PDF' => 'Download PDF',
'Download PDF…' => 'Download PDF…',
'Download Type' => 'Download Type',
'Download' => 'Download',
'Draft' => 'Draft',
'Dummy gateway payment failed.' => 'Dummy gateway payment failed.',
'Duplicate options exist' => 'Duplicate options exist',
'Duration' => 'Duration',
'EU VAT ID' => 'EU VAT ID',
'Edit address' => 'Edit address',
'Edit adjustments' => 'Edit adjustments',
'Edit catalog pricing rules' => 'Edit catalogue pricing rules',
'Edit discounts' => 'Edit discounts',
'Edit options' => 'Edit options',
'Edit orders' => 'Edit orders',
'Edit sales' => 'Edit sales',
'Edit “{type}” products' => 'Edit “{type}” products',
'Edit' => 'Edit',
'Effect' => 'Effect',
'Either (Default) - The relationship field is on the purchasable or the category' => 'Either (Default) - The relationship field is on the purchasable or the category',
'Either way' => 'Either way',
'Email PDF generation error for email “{email}”. Order: “{order}”. PDF Template error: “{message}” {file}:{line}' => 'Email PDF generation error for email “{email}”. Order: “{order}”. PDF Template error: “{message}” {file}:{line}',
'Email PDF template does not exist at “{templatePath}” for email “{email}”. Order: “{order}”.' => 'Email PDF template does not exist at “{templatePath}” for email “{email}”. Order: “{order}”.',
'Email Subject' => 'Email Subject',
'Email error. No email address found for order. Order: “{order}”' => 'Email error. No email address found for order. Order: “{order}”',
'Email is not enabled.' => 'Email is not enabled.',
'Email plain text template does not exist at “{templatePath}” which resulted in “{templateParsedPath}” for email “{email}”. Order: “{order}”.' => 'Email plain text template does not exist at “{templatePath}” which resulted in “{templateParsedPath}” for email “{email}”. Order: “{order}”.',
'Email plain text template parse error for email “{email}”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email plain text template parse error for email “{email}”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email plain text template path parse error for email “{email}” in “Template Path”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email plain text template path parse error for email “{email}” in “Template Path”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email required to make payments on a completed order.' => 'Email required to make payments on a completed order.',
'Email saved.' => 'Email saved.',
'Email sent' => 'Email sent',
'Email template does not exist at “{templatePath}” which resulted in “{templateParsedPath}” for email “{email}”. Order: “{order}”.' => 'Email template does not exist at “{templatePath}” which resulted in “{templateParsedPath}” for email “{email}”. Order: “{order}”.',
'Email template parse error for custom email “{email}” in “To:”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for custom email “{email}” in “To:”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template parse error for email “{email}” in “BCC:”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for email “{email}” in “BCC:”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template parse error for email “{email}” in “CC:”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for email “{email}” in “CC:”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template parse error for email “{email}” in “ReplyTo:”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for email “{email}” in “ReplyTo:”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template parse error for email “{email}” in “Subject:”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for email “{email}” in “Subject:”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template parse error for email “{email}”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template parse error for email “{email}”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email template path parse error for email “{email}” in “Template Path”. Order: “{order}”. Template error: “{message}” {file}:{line}' => 'Email template path parse error for email “{email}” in “Template Path”. Order: “{order}”. Template error: “{message}” {file}:{line}',
'Email unavailable.' => 'Email unavailable.',
'Email “{email}” could not be sent for order “{order}”. Error: {error} {file}:{line}' => 'Email “{email}” could not be sent for order “{order}”. Error: {error} {file}:{line}',
'Email “{email}” for order {order} was cancelled.' => 'Email “{email}” for order {order} was cancelled.',
'Email' => 'Email',
'Emails' => 'Emails',
'Enable if this rate should be built into the taxable subject price instead of adding a cost to the order.' => 'Enable if this rate should be built into the taxable subject price instead of adding a cost to the order.',
'Enable structure for products of this type' => 'Enable structure for products of this type',
'Enable this discount' => 'Enable this discount',
'Enable this rule' => 'Enable this rule',
'Enable this sale' => 'Enable this sale',
'Enable this shipping method on the front end' => 'Enable this shipping method on the front end',
'Enable this shipping rule' => 'Enable this shipping rule',
'Enable this tax rate' => 'Enable this tax rate',
'Enable' => 'Enable',
'Enabled for customers to select during checkout?' => 'Enabled for customers to select during checkout?',
'Enabled for customers to select?' => 'Enabled for customers to select?',
'Enabled' => 'Enabled',
'Enabled?' => 'Enabled?',
'End Date' => 'End Date',
'Enter SKU' => 'Enter SKU',
'Enter a human-friendly name for this tax rate to be used in the control panel.' => 'Enter a human-friendly name for this tax rate to be used in the control panel.',
'Enter a percentage like {ex1} or {ex2}.' => 'Enter a percentage like {ex1} or {ex2}.',
'Enter coupon code' => 'Enter coupon code',
'Enter reference' => 'Enter reference',
'Error refunding transaction: {transactionHash}' => 'Error refunding transaction: {transactionHash}',
'Every new store must be assigned to at least one site.' => 'Every new store must be assigned to at least one site.',
'Everywhere' => 'Everywhere',
'Example' => 'Example',
'Exclude this discount for products that are already on promotion' => 'Exclude this discount for products that are already on promotion',
'Expand' => 'Expand',
'Expired Link' => 'Expired Link',
'Expired' => 'Expired',
'Expiry Date' => 'Expiry Date',
'Expiry date' => 'Expiry date',
'Expiry' => 'Expiry',
'Failed to receive transfer: {error}' => 'Failed to receive transfer: {error}',
'Failed to send email. Please try again.' => 'Failed to send email. Please try again.',
'Failed to start' => 'Failed to start',
'Failed to update {num, plural, =1{order status} other{order statuses}}.' => 'Failed to update {num, plural, one {}=1{order status} other{order statuses}}.',
'Failed updating order status on {num, plural, =1{order} other{orders}}.' => 'Failed updating order status on {num, plural, one {}=1{order} other{orders}}.',
'Feet (ft)' => 'Feet (ft)',
'Filtering conditions which describe to which orders this rule is applicable to. Write 0 to skip a condition.' => 'Filtering conditions which describe which orders this rule is applicable to. Write 0 to skip a condition.',
'First Name' => 'First Name',
'Flat Amount Off Order' => 'Flat Amount Off Order',
'Flat Order Discount Amount Off' => 'Flat Order Discount Amount Off',
'Free Order Payment Strategy' => 'Free Order Payment Strategy',
'Free Shipping' => 'Free Shipping',
'Free orders are processed by the payment gateway' => 'Free orders are processed by the payment gateway',
'Free orders complete immediately' => 'Free orders complete immediately',
'Free shipping can only be for whole order or matching items, not both.' => 'Free shipping can only be for either the whole order or matching items, not both.',
'From Name' => 'From Name',
'Fulfill' => 'Fulfill',
'Fulfilled' => 'Fulfilled',
'Fulfillment' => 'Fulfillment',
'Full Name' => 'Full Name',
'Gateway Code' => 'Gateway Code',
'Gateway Message' => 'Gateway Message',
'Gateway Reference' => 'Gateway Reference',
'Gateway Response' => 'Gateway Response',
'Gateway doesn’t support authorize' => 'Gateway doesn’t support authorise',
'Gateway doesn’t support partial refunds.' => 'Gateway doesn’t support partial refunds.',
'Gateway doesn’t support purchase' => 'Gateway doesn’t support purchase',
'Gateway doesn’t support refunds.' => 'Gateway doesn’t support refunds.',
'Gateway saved.' => 'Gateway saved.',
'Gateway' => 'Gateway',
'Gateways reordered.' => 'Gateways reordered.',
'Gateways' => 'Gateways',
'General Settings' => 'General Settings',
'General' => 'General',
'Generate' => 'Generate',
'Generated Coupon Format' => 'Generated Coupon Format',
'Grams (g)' => 'Grams (g)',
'Groups for which this sale will be applicable to.' => 'Groups for which this sale will be applicable.',
'HTML Email Template Path' => 'HTML Email Template Path',
'Handle' => 'Handle',
'Harmonized System Code' => 'Harmonized System Code',
'Has Emails?' => 'Has Emails?',
'Has Free Shipping' => 'Has Free Shipping',
'Has Orders' => 'Has Orders',
'Has Purchasable' => 'Has Purchasable',
'Has Variants?' => 'Has Variants?',
'Height ({unit})' => 'Height ({unit})',
'Height' => 'Height',
'Hide snapshot' => 'Hide snapshot',
'History' => 'History',
'How long (in seconds) a PDF download link should remain valid before expiring. Default is 86400 (24 hours).' => 'How long (in seconds) a PDF download link should remain valid before expiring. Default is 86400 (24 hours).',
'How many times one email address is allowed to use this discount. This applies to all previous orders, whether guest or user. Set to zero for unlimited use by guests or users.' => 'How many times one email address is allowed to use this discount. This applies to all previous orders, whether guest or user. Set to zero for unlimited use by guests or users.',
'How many times one user is allowed to use this discount. If this is set to something besides zero, the discount will only be available to signed in users.' => 'How many times one user is allowed to use this discount. If this is set to something besides zero, the discount will only be available to signed in users.',
'How many times this discount can be used in total by guests or signed in users. Set zero for unlimited use.' => 'How many times this discount can be used in total by guests or signed in users. Set zero for unlimited use.',
'How the Purchasables and Categories are related, which determines the matching items. See [Relations Terminology]({link}).' => 'How the Purchasables and Categories are related, which determines the matching items. See [Relations Terminology]({link}).',
'How this product will be described on a line item in an order. You can include tags that output properties, such as {ex1} or {ex2}' => 'How this product will be described on a line item in an order. You can include tags that output properties, such as {ex1} or {ex2}',
'How this shipping method will be referred to in templates and forms.' => 'How this shipping method will be referred to in templates and forms.',
'How you’ll refer to this PDF in the templates.' => 'How you’ll refer to this PDF in the templates.',
'How you’ll refer to this product type in the templates.' => 'How you’ll refer to this product type in the templates.',
'How you’ll refer to this shipping category in the templates.' => 'How you’ll refer to this shipping category in the templates.',
'How you’ll refer to this status in the templates.' => 'How you’ll refer to this status in the templates.',
'How you’ll refer to this subscription plan in the templates.' => 'How you’ll refer to this subscription plan in the templates.',
'How you’ll refer to this tax category in the templates.' => 'How you’ll refer to this tax category in the templates.',
'ID' => 'ID',
'IP Address' => 'IP Address',
'If disabled, this PDF will not be available or sent with emails.' => 'If disabled, this PDF will not be available or sent with emails.',
'If disabled, this email will not send.' => 'If disabled, this email will not send.',
'If enabled and this rate does not match the order, the rate amount will be removed from the subject price in the cart.' => 'If enabled and this rate does not match the order, the rate amount will be removed from the subject price in the cart.',
'If set to Authorize Only, you will need to manually capture payments before the funds will be transferred to your account. The Gateway needs to support the selected option.' => 'If set to Authorise Only, you will need to manually capture payments before the funds will be transferred to your account. The Gateway needs to support the selected option.',
'If you select the percentage to be “off the discounted item price”, this will include the “Per Item Amount” as well as any other discounts that applied before this one.' => 'If you select the percentage to be “off the discounted item price”, this will include the “Per Item Amount” as well as any other discounts that applied before this one.',
'Ignore Promotions?' => 'Ignore Promotions?',
'Ignore previous matching sales if this sale matches.' => 'Ignore previous matching sales if this sale matches.',
'Ignore promotional prices when this discount is applied to matching line items' => 'Ignore promotional prices when this discount is applied to matching line items',
'Inactive Carts' => 'Inactive Carts',
'Inches (in)' => 'Inches (in)',
'Include built-in line item tax.' => 'Include built-in line item tax.',
'Include in price?' => 'Include in price?',
'Include line item discounts.' => 'Include line item discounts.',
'Include line item shipping costs.' => 'Include line item shipping costs.',
'Include separate line item tax.' => 'Include separate line item tax.',
'Included in price?' => 'Included in price?',
'Included' => 'Included',
'Incoming transfer from Transfer ID: ' => 'Incoming transfer from Transfer ID: ',
'Incoming' => 'Incoming',
'Info' => 'Info',
'Information linked?' => 'Information linked?',
'Information' => 'Information',
'Invalid JSON' => 'Invalid JSON',
'Invalid Order ID' => 'Invalid Order ID',
'Invalid VAT ID.' => 'Invalid VAT ID.',
'Invalid condition syntax' => 'Invalid condition syntax',
'Invalid email.' => 'Invalid email.',
'Invalid formula syntax' => 'Invalid formula syntax',
'Invalid gateway: {value}' => 'Invalid gateway: {value}',
'Invalid inventory movements.' => 'Invalid inventory movements.',
'Invalid order condition syntax.' => 'Invalid order condition syntax.',
'Invalid payment or order. Please review.' => 'Invalid payment or order. Please review.',
'Invalid payment source ID: {value}' => 'Invalid payment source ID: {value}',
'Invalid store.' => 'Invalid store.',
'Invalid user.' => 'Invalid user.',
'Inventory Item' => 'Inventory Item',
'Inventory Location' => 'Inventory Location',
'Inventory Locations' => 'Inventory Locations',
'Inventory Tracked' => 'Inventory Tracked',
'Inventory Transfers' => 'Inventory Transfers',
'Inventory could not be set.' => 'Inventory could not be set.',
'Inventory location has committed stock, the order(s) must first be fulfilled.' => 'Inventory location has committed stock, the order(s) must first be fulfilled.',
'Inventory location has incoming stock, the transfer(s) must first be completed.' => 'Inventory location has incoming stock, the transfer(s) must first be completed.',
'Inventory location is already deactivated.' => 'Inventory location is already deactivated.',
'Inventory location saved.' => 'Inventory location saved.',
'Inventory locations not saved.' => 'Inventory locations not saved.',
'Inventory movement could not be saved.' => 'Inventory movement could not be saved.',
'Inventory movement saved.' => 'Inventory movement saved.',
'Inventory updated.' => 'Inventory updated.',
'Inventory was not updated.' => 'Inventory was not updated.',
'Inventory' => 'Inventory',
'Invoice amount' => 'Invoice amount',
'Invoice date' => 'Invoice date',
'Is Promotable' => 'Is Promotable',
'Is Promotional Price?' => 'Is Promotional Price?',
'Is Shippable' => 'Is Shippable',
'Is Taxable' => 'Is Taxable',
'Item Rates' => 'Item Rates',
'Item Subtotal' => 'Item Subtotal',
'Item Total' => 'Item Total',
'Item' => 'Item',
'Items' => 'Items',
'Kilograms (kg)' => 'Kilograms (kg)',
'Label' => 'Label',
'Landscape' => 'Landscape',
'Language' => 'Language',
'Last Name' => 'Last Name',
'Last Updated' => 'Last Updated',
'Leave a category rate override blank to use the rate from above.' => 'Leave a category rate override blank to use the rate from above.',
'Leave blank for unlimited uses.' => 'Leave blank for unlimited uses.',
'Leave blank if products don’t have URLs' => 'Leave blank if products don’t have URLs',
'Length ({unit})' => 'Length ({unit})',
'Length' => 'Length',
'Let each product choose which sites it should be saved to' => 'Let each product choose which sites it should be saved to',
'Limit which orders this discount applies to based on its line items.' => 'Limit which orders this discount applies to based on its line items.',
'Limit which purchasables this sale applies to.' => 'Limit which purchasables this sale applies to.',
'Limit' => 'Limit',
'Line Item Statuses' => 'Line Item Statuses',
'Line Item' => 'Line Item',
'Line Items' => 'Line Items',
'Line item price (minus discounts)' => 'Line item price (minus discounts)',
'Line item shipping cost' => 'Line item shipping cost',
'Line item statuses reordered.' => 'Line item statuses reordered.',
'Link Duration' => 'Link Duration',
'Link Sent' => 'Link Sent',
'Link to a product' => 'Link to a product',
'Link to a variant' => 'Link to a variant',
'Link' => 'Link',
'Live' => 'Live',
'Location' => 'Location',
'MM' => 'MM',
'Make a payment' => 'Make a payment',
'Make this the primary store' => 'Make this the primary store',
'Manage Inventory' => 'Manage Inventory',
'Manage donation settings' => 'Manage donation settings',
'Manage general store settings' => 'Manage general store settings',
'Manage inventory locations' => 'Manage inventory locations',
'Manage inventory stock levels' => 'Manage inventory stock levels',
'Manage inventory transfers' => 'Manage inventory transfers',
'Manage orders' => 'Manage orders',
'Manage payment currencies' => 'Manage payment currencies',
'Manage promotions' => 'Manage promotions',
'Manage shipping' => 'Manage shipping',
'Manage store settings' => 'Manage store settings',
'Manage subscription plans' => 'Manage subscription plans',
'Manage subscription' => 'Manage subscription',
'Manage subscriptions' => 'Manage subscriptions',
'Manage taxes' => 'Manage taxes',
'Manage' => 'Manage',
'Mark as Pending' => 'Mark as Pending',
'Mark as completed' => 'Mark as completed',
'Match Billing Address' => 'Match Billing Address',
'Match Customer' => 'Match Customer',
'Match Order' => 'Match Order',
'Match Orders' => 'Match Orders',
'Match Product' => 'Match Product',
'Match Purchasable' => 'Match Purchasable',
'Match Shipping Address' => 'Match Shipping Address',
'Match Variant' => 'Match Variant',
'Matching Items' => 'Matching Items',
'Max Qty' => 'Max Qty',
'Max Uses' => 'Max Uses',
'Max Variants' => 'Max Variants',
'Max quantity must greater than min.' => 'Max quantity must greater than min.',
'Maximum Purchase Quantity' => 'Maximum Purchase Quantity',
'Maximum Total Shipping Cost' => 'Maximum Total Shipping Cost',
'Maximum allowed quantity' => 'Maximum allowed quantity',
'Maximum number of matching items that can be ordered for this discount to apply. A zero value here will skip this condition.' => 'Maximum number of matching items that can be ordered for this discount to apply. A zero value here will skip this condition.',
'Maximum order quantity for this item is {num}.' => 'Maximum order quantity for this item is {num}.',
'Message' => 'Message',
'Meters (m)' => 'Metres (m)',
'Millimeters (mm)' => 'Millimetres (mm)',
'Min Qty' => 'Min Qty',
'Min quantity must be less than max.' => 'Min quantity must be less than max.',
'Minimum Purchase Quantity' => 'Minimum Purchase Quantity',
'Minimum Total Price Strategy' => 'Minimum Total Price Strategy',
'Minimum Total Shipping Cost' => 'Minimum Total Shipping Cost',
'Minimum allowed quantity' => 'Minimum allowed quantity',
'Minimum number of matching items that need to be ordered for this discount to apply.' => 'Minimum number of matching items that need to be ordered for this discount to apply.',
'Minimum order quantity for this item is {num}.' => 'Minimum order quantity for this item is {num}.',
'Missing Gateway' => 'Missing Gateway',
'Missing a default inventory location.' => 'Missing a default inventory location.',
'Move Inventory' => 'Move Inventory',
'Move To' => 'Move To',
'Move {qty} from {fromType} to {toType}' => 'Move {qty} from {fromType} to {toType}',
'Move' => 'Move',
'Movement from deactivated inventory location' => 'Movement from deactivated inventory location',
'Movement' => 'Movement',
'Must have at least one variant.' => 'Must have at least one variant.',
'Name Field' => 'Name Field',
'Name' => 'Name',
'New Customer' => 'New Customer',
'New Customers' => 'New Customers',
'New Order' => 'New order',
'New PDF' => 'New PDF',
'New address' => 'New address',
'New catalog pricing rule' => 'New catalogue pricing rule',
'New currency' => 'New currency',
'New discount' => 'New discount',
'New email' => 'New email',
'New gateway' => 'New gateway',
'New line item status' => 'New line item status',
'New line items get this status by default when the order is completed' => 'New line items get this status by default when the order is completed',
'New location' => 'New location',
'New order status' => 'New order status',
'New orders get this status by default' => 'New orders get this status by default',
'New product type' => 'New product type',
'New product' => 'New product',
'New product, choose a type' => 'New product, choose a type',
'New products default to the first tax category available to them. If none are available, this category will be used.' => 'New products default to the first tax category available to them. If none are available, this category will be used.',
'New sale' => 'New sale',
'New shipping category' => 'New shipping category',
'New shipping method' => 'New shipping method',
'New shipping rule' => 'New shipping rule',
'New shipping zone' => 'New shipping zone',
'New subscription plan' => 'New subscription plan',
'New tax category' => 'New tax category',
'New tax rate' => 'New tax rate',
'New tax zone' => 'New tax zone',
'New transfer' => 'New transfer',
'New {productType} product' => 'New {productType} product',
'New' => 'New',
'Next payment' => 'Next payment',
'No Address' => 'No Address',
'No PDFs exist yet.' => 'No PDFs exist yet.',
'No access given to any specific store management features.' => 'No access given to any specific store management features.',
'No additional payment currencies exist yet.' => 'No additional payment currencies exist yet.',
'No address' => 'No address',
'No billing address' => 'No billing address',
'No catalog pricing rule exists with the ID “{id}”' => 'No catalogue pricing rule exists with the ID “{id}”',
'No catalog pricing rules exist yet.' => 'No catalogue pricing rules exist yet.',
'No currency exists with the ID “{id}”' => 'No currency exists with the ID “{id}”',
'No customer email address exists on this cart.' => 'No customer email address exists on this cart.',
'No description' => 'No description',
'No discount exists with the ID “{id}”' => 'No discount exists with the ID “{id}”',
'No discounts exist yet.' => 'No discounts exist yet.',
'No donation amount supplied.' => 'No donation amount supplied.',
'No emails exist yet.' => 'No emails exist yet.',
'No inventory changes made.' => 'No inventory changes made.',
'No inventory found.' => 'No inventory found.',
'No inventory movements made.' => 'No inventory movements made.',
'No inventory transactions for this location.' => 'No inventory transactions for this location.',
'No order history exists with the ID “{id}”' => 'No order history exists with the ID “{id}”',
'No order status history items will exist until the cart becomes an order.' => 'No order status history items will exist until the cart becomes an order.',
'No payment source exists with the ID “{id}”' => 'No payment source exists with the ID “{id}”',
'No private Note.' => 'No private Note.',
'No product available.' => 'No product available.',
'No product types exist yet.' => 'No product types exist yet.',
'No purchasable available.' => 'No purchasable available.',
'No sale exists with the ID “{id}”' => 'No sale exists with the ID “{id}”',
'No sales exist yet.' => 'No sales exist yet.',
'No shipping address' => 'No shipping address',
'No shipping category exists with the ID “{id}”' => 'No shipping category exists with the ID “{id}”',
'No shipping method exists with the ID “{id}”' => 'No shipping method exists with the ID “{id}”',
'No shipping rule exists with the ID “{id}”' => 'No shipping rule exists with the ID “{id}”',
'No shipping rules exist yet.' => 'No shipping rules exist yet.',
'No shipping zone exists with the ID “{id}”' => 'No shipping zone exists with the ID “{id}”',
'No stats available.' => 'No stats available.',
'No subscription plan exists with the ID “{id}”' => 'No subscription plan exists with the ID “{id}”',
'No subscription plans exist yet.' => 'No subscription plans exist yet.',
'No tax category exists with the ID “{id}”' => 'No tax category exists with the ID “{id}”',
'No tax rate exists with the ID “{id}”' => 'No tax rate exists with the ID “{id}”',
'No tax zone exists with the ID “{id}”' => 'No tax zone exists with the ID “{id}”',
'No transactions exist.' => 'No transactions exist.',
'No user authenticated.' => 'No user authenticated.',
'No' => 'No',
'None on hand' => 'None on hand',
'None' => 'None',
'Not a valid address type' => 'Not a valid address type',
'Not a valid credit card number.' => 'Not a valid credit card number.',
'Not all SKUs are unique.' => 'Not all SKUs are unique.',
'Note' => 'Note',
'Notes' => 'Notes',
'Number of Coupons' => 'Number of Coupons',
'Number' => 'Number',
'Of the enabled sites above, which sites should products in this product type be saved to?' => 'Of the enabled sites above, which sites should products in this product type be saved to?',
'On Hand' => 'On Hand',
'Only allow this gateway to be used for zero value orders?' => 'Only allow this gateway to be used for zero value orders?',
'Only match certain purchasables…' => 'Only match certain purchasables…',
'Only match purchasables related to…' => 'Only match purchasables related to…',
'Only orders with the following order statuses will be included. Leave blank to include all statuses.' => 'Only orders with the following order statuses will be included. Leave blank to include all statuses.',
'Only save product to the site they were created in' => 'Only save product to the site they were created in',
'Options' => 'Options',
'Order Condition Formula' => 'Order Condition Formula',
'Order Description Format' => 'Order Description Format',
'Order Details' => 'Order Details',
'Order Fields' => 'Order Fields',
'Order PDF Download Link' => 'Order PDF Download Link',
'Order PDF Filename Format' => 'Order PDF Filename Format',
'Order Reference Number Format' => 'Order Reference Number Format',
'Order Settings' => 'Order Settings',
'Order Site' => 'Order Site',
'Order Status description.' => 'Order Status description.',
'Order Status' => 'Order Status',
'Order Statuses' => 'Order Statuses',
'Order can not be empty.' => 'Order cannot be empty.',
'Order count' => 'Order count',
'Order deleted.' => 'Order deleted.',
'Order fields saved.' => 'Order fields saved.',
'Order not found.' => 'Order not found.',
'Order payment balance is {outstandingBalanceAsCurrency}. This is the maximum value that will be charged.' => 'Order payment balance is {outstandingBalanceAsCurrency}. This is the maximum value that will be charged.',
'Order recalculated.' => 'Order recalculated.',
'Order status saved.' => 'Order status saved.',
'Order statuses reordered.' => 'Order statuses reordered.',
'Order total shipping cost' => 'Order total shipping cost',
'Order total taxable price (Line item subtotal + Total discounts + Total shipping)' => 'Order total taxable price (Line item subtotal + Total discounts + Total shipping)',
'Order' => 'Order',
'Orders (Legacy)' => 'Orders (Legacy)',
'Orders deleted.' => 'Orders deleted.',
'Orders not restored.' => 'Orders not restored.',
'Orders restored.' => 'Orders restored.',
'Orders' => 'Orders',
'Organization Name' => 'Organisation Name',
'Organization Tax ID' => 'Organisation Tax ID',
'Origin and destination cannot be the same.' => 'Origin and destination cannot be the same.',
'Origin' => 'Origin',
'Original Price' => 'Original Price',
'Original price' => 'Original price',
'Original promotional price' => 'Original promotional price',
'Other Languages' => 'Other Languages',
'Other countries' => 'Other countries',
'Outgoing transfer from Transfer ID: ' => 'Outgoing transfer from Transfer ID: ',
'Overpaid' => 'Overpaid',
'Overrides previous?' => 'Overrides previous?',
'PDF Attachment' => 'PDF Attachment',
'PDF Template Path' => 'PDF Template Path',
'PDF saved.' => 'PDF saved.',
'PDF' => 'PDF',
'PDFs & Emails' => 'PDFs & Emails',
'PDFs' => 'PDFs',
'Paid Amount' => 'Paid Amount',
'Paid Status' => 'Paid Status',
'Paid' => 'Paid',
'Paper Orientation' => 'Paper Orientation',
'Paper Size' => 'Paper Size',
'Partial payment not allowed.' => 'Partial payment not allowed.',
'Partial' => 'Partial',
'Past year' => 'Past year',
'Past {num} days' => 'Past {num} days',
'Pay {amount} of {currency} on the order.' => 'Pay {amount} {currency} on the order.',
'Pay' => 'Pay',
'Payment Amount' => 'Payment Amount',
'Payment Currencies' => 'Payment Currencies',
'Payment Gateway' => 'Payment Gateway',
'Payment Method' => 'Payment Method',
'Payment error: {message}' => 'Payment error: {message}',
'Payment method issue' => 'Payment method issue',
'Payment source created.' => 'Payment source created.',
'Payment source deleted.' => 'Payment source deleted.',
'Payments' => 'Payments',
'Pending' => 'Pending',
'Per Email Address Discount Limit' => 'Per Email Address Discount Limit',
'Per Item Amount Off' => 'Per Item Amount Off',
'Per Item Discount' => 'Per Item Discount',
'Per Item Percentage Off' => 'Per Item Percentage Off',
'Per Item Rate' => 'Per Item Rate',
'Per User Discount Limit' => 'Per User Discount Limit',
'Percentage Rate' => 'Percentage Rate',
'Phone (Alt)' => 'Phone (Alt)',
'Phone' => 'Phone',
'Pick a plan' => 'Pick a plan',
'Plain Text Email Template Path' => 'Plain Text Email Template Path',
'Plan' => 'Plan',
'Plans reordered.' => 'Plans reordered.',
'Portrait' => 'Portrait',
'Post Date' => 'Post Date',
'Postal Code Formula' => 'Postal Code Formula',
'Pounds (lb)' => 'Pounds (lb)',
'Preview' => 'Preview',
'Previous Status' => 'Previous Status',
'Price' => 'Price',
'Prices' => 'Prices',
'Pricing Rules' => 'Pricing Rules',
'Pricing jobs are currently running.' => 'Pricing jobs are currently running.',
'Pricing' => 'Pricing',
'Primary Billing Address' => 'Primary Billing Address',
'Primary Shipping Address' => 'Primary Shipping Address',
'Primary payment source updated.' => 'Primary payment source updated.',
'Primary' => 'Primary',
'Private Note' => 'Private Note',
'Product Fields' => 'Product Fields',
'Product ID is required.' => 'Product ID is required.',
'Product Template' => 'Product Template',
'Product Title Format' => 'Product Title Format',
'Product Type' => 'Product Type',
'Product Types' => 'Product Types',
'Product URI Format' => 'Product URI Format',
'Product Variant' => 'Product Variant',
'Product Variants' => 'Product Variants',
'Product type saved.' => 'Product type saved.',
'Product type settings' => 'Product type settings',
'Product' => 'Product',
'Products and Variants deleted.' => 'Products and Variants deleted.',
'Products not restored.' => 'Products not restored.',
'Products restored.' => 'Products restored.',
'Products' => 'Products',
'Promotable' => 'Promotable',
'Promotable?' => 'Promotable?',
'Promotional Amount' => 'Promotional Amount',
'Promotional Price' => 'Promotional Price',
'Purchasable Categories' => 'Purchasable Categories',
'Purchasable ID and Sale ID are required.' => 'Purchasable ID and Sale ID are required.',
'Purchasable ID is required.' => 'Purchasable ID is required.',
'Purchasable Type' => 'Purchasable Type',
'Purchasable' => 'Purchasable',
'Purchase (Authorize and Capture Immediately)' => 'Purchase (Authorise and Capture Immediately)',
'Purchase Total' => 'Purchase Total',
'Qty' => 'Qty',
'Quality Control' => 'Quality Control',
'Quantity' => 'Quantity',
'Rate' => 'Rate',
'Recalculate order' => 'Recalculate order',
'Receive Inventory' => 'Receive Inventory',
'Receive Transfer' => 'Receive Transfer',
'Receive' => 'Receive',
'Received' => 'Received',
'Recent Orders' => 'Recent Orders',
'Recipient' => 'Recipient',
'Reduce price' => 'Reduce price',
'Reduce the price by a fixed amount' => 'Reduce the price by a fixed amount',
'Reduce the price by a percentage of the original price' => 'Reduce the price by a percentage of the original price',
'Reference' => 'Reference',
'Refresh payment history' => 'Refresh payment history',
'Refund note' => 'Refund note',
'Refund payment' => 'Refund payment',
'Refund' => 'Refund',
'Reject' => 'Reject',
'Rejected' => 'Rejected',
'Relationship Type' => 'Relationship Type',
'Removable included tax rates are only allowed for the default tax zone.' => 'Removable included tax rates are only allowed for the default tax zone.',
'Remove address' => 'Remove address',
'Remove all shipping costs from the order' => 'Remove all shipping costs from the order',
'Remove from price?' => 'Remove from price?',
'Remove shipping costs for matching items only' => 'Remove shipping costs for matching items only',
'Remove the included tax when a valid organization tax ID is present?' => 'Remove the included tax when a valid organization tax ID is present?',
'Remove' => 'Remove',
'Removed' => 'Removed',
'Repeat Customers' => 'Repeat Customers',
'Reply To' => 'Reply To',
'Require Billing Address At Checkout' => 'Require Billing Address At Checkout',
'Require Coupon Code' => 'Require Coupon Code',
'Require Shipping Address At Checkout' => 'Require Shipping Address At Checkout',
'Require Shipping Method Selection At Checkout' => 'Require Shipping Method Selection At Checkout',
'Require' => 'Require',
'Reserved' => 'Reserved',
'Reset usage' => 'Reset usage',
'Restrict the discount to only those orders where the customer has purchased a minimum total value of matching items.' => 'Restrict the discount to only those orders where the customer has purchased a minimum total value of matching items.',
'Revenue Options' => 'Revenue Options',
'Revenue' => 'Revenue',
'Rule' => 'Rule',
'Rules reordered.' => 'Rules reordered.',
'SKU' => 'SKU',
'Safety' => 'Safety',
'Sale Price' => 'Sale Price',
'Sale description.' => 'Sale description.',
'Sale reordered.' => 'Sale reordered.',
'Sale saved.' => 'Sale saved.',
'Sale' => 'Sale',
'Sales deleted.' => 'Sales deleted.',
'Sales updated.' => 'Sales updated.',
'Sales' => 'Sales',
'Save and continue editing' => 'Save and continue editing',
'Save and return to all orders' => 'Save and return to all orders',
'Save and set rules' => 'Save and set rules',
'Save as a new rule' => 'Save as a new rule',
'Save product to all sites enabled for this product type' => 'Save product to all sites enabled for this product type',
'Save product to other sites in the same site group' => 'Save product to other sites in the same site group',
'Save product to other sites with the same language' => 'Save product to other sites with the same language',
'Save' => 'Save',
'Search customer…' => 'Search customer…',
'Search inventory' => 'Search inventory',
'Search or enter customer email…' => 'Search or enter customer email…',
'Search…' => 'Search…',
'See Orders' => 'See Orders',
'Select a gateway' => 'Select a gateway',
'Select a tax category.' => 'Select a tax category.',
'Select a tax zone. If empty, this rate will match anywhere.' => 'Select a tax zone. If empty, this rate will match anywhere.',
'Select address' => 'Select address',
'Select an item' => 'Select an item',
'Select how the catalog pricing rule will be applied to the purchasable(s).' => 'Select how the catalogue pricing rule will be applied to the purchasable(s).',
'Select how the sale will be applied to the purchasable(s).' => 'Select how the sale will be applied to the purchasable(s).',
'Select product type' => 'Select product type',
'Select the emails that will be sent when transitioning to this status.' => 'Select the emails that will be sent when transitioning to this status.',
'Select what this rate should be applied to.' => 'Select what this rate should be applied to.',
'Send Email' => 'Send Email',
'Send to custom recipient' => 'Send to custom recipient',
'Send to the customer' => 'Send to the customer',
'Set Quantity' => 'Set Quantity',
'Set as the default variant' => 'Set as the default variant',
'Set default category' => 'Set default category',
'Set default variant' => 'Set default variant',
'Set or Adjust' => 'Set or Adjust',
'Set price' => 'Set price',
'Set status' => 'Set status',
'Set the price to a flat amount' => 'Set the price to a flat amount',
'Set the price to a percentage of the original price' => 'Set the price to a percentage of the original price',
'Set the sale price to a flat amount' => 'Set the sale price to a flat amount',
'Set the sale price to a percentage of the original price' => 'Set the sale price to a percentage of the original price',
'Set' => 'Set',