-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathdefaultMessages.json
More file actions
11503 lines (11503 loc) · 289 KB
/
defaultMessages.json
File metadata and controls
11503 lines (11503 loc) · 289 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
{
"++8ZWj": {
"context": "Transaction event status - requested",
"string": "Requested"
},
"+2VydL": {
"context": "card title",
"string": "Country exceptions"
},
"+2VzH4": {
"context": "avatar change button",
"string": "Change"
},
"+43JV5": {
"context": "header",
"string": "Products in {categoryName}"
},
"+470FM": {
"context": "voucher status expired",
"string": "Expired"
},
"+7OsyM": {
"context": "button",
"string": "Set as default shipping address"
},
"+8v1ny": {
"context": "discount button",
"string": "Discount"
},
"+B25o/": {
"context": "dialog header",
"string": "Mark Order as Paid"
},
"+BkNuT": {
"context": "aria label for grid view button",
"string": "Grid view"
},
"+G2N98": {
"string": "Install from manifest"
},
"+HuipK": {
"context": "variant sku",
"string": "SKU {sku}"
},
"+IayD+": {
"context": "order transaction refund summary title",
"string": "Refund amount"
},
"+Jgot0": {
"context": "tax class for a product type",
"string": "Tax class"
},
"+NUzaQ": {
"context": "check to mark this account as active",
"string": "User account active"
},
"+PclgM": {
"context": "tabel column header",
"string": "Total"
},
"+RffqY": {
"context": "Dry run dialog object title",
"string": "Select object type to perform dry run on provided query"
},
"+RjQjs": {
"context": "return button",
"string": "Return / Replace order"
},
"+SYLEL": {
"context": "refunded fulfillment, section header",
"string": "Refunded"
},
"+T0oJ7": {
"context": "input label",
"string": "Stock reservation for anonymous user (in minutes)"
},
"+U6ozc": {
"string": "Type"
},
"+VEhV8": {
"context": "product channels",
"string": "Availability"
},
"+WTmpr": {
"context": "disabled status option label",
"string": "Disabled"
},
"+Wm2vY": {
"context": "discount type percentage",
"string": "Percentage"
},
"+ZwF+1": {
"context": "Description for live status when product is visible but purchase is scheduled",
"string": "Visible but not purchasable"
},
"+a+2ug": {
"string": "Members"
},
"+ahkGr": {
"context": "section header",
"string": "Customer details"
},
"+b/qJ9": {
"string": "Delete draft orders"
},
"+b3KCV": {
"context": "button",
"string": "Activate"
},
"+bhokL": {
"string": "Search discounts..."
},
"+cGU63": {
"string": "Are you sure you want to cancel fulfillment?"
},
"+djx5u": {
"string": "You can't give this extension permissions you don't have."
},
"+do3gl": {
"context": "input helper text",
"string": "This number defines quantity of items in checkout line that can be bought. You can override this setting per variant. Leaving this setting empty mean that there is no limits."
},
"+fICx5": {
"string": "Important"
},
"+hib+V": {
"context": "error message",
"string": "This attribute is already assigned."
},
"+iVKR1": {
"context": "assign attribute value button",
"string": "Assign value"
},
"+jCDvp": {
"context": "section header",
"string": "Store Information"
},
"+jHXT3": {
"context": "limit voucher",
"string": "Limit to staff only"
},
"+mbkbU": {
"context": "unknown customer display name",
"string": "Unknown customer"
},
"+mmPxn": {
"context": "page header",
"string": "Grant refund"
},
"+pGERa": {
"string": "Provide details manually"
},
"+q4WRK": {
"context": "Badge shown when channel has validation errors",
"string": "error"
},
"+qDoi0": {
"context": "button",
"string": "Create model type"
},
"+sXiWx": {
"context": "window title",
"string": "Edit grant refund"
},
"+svQBN": {
"context": "alert",
"string": "Order limit reached"
},
"+tIkAe": {
"context": "status",
"string": "Status"
},
"+vzDH4": {
"context": "error message used when manifest URL is incorrect (before any further validation)",
"string": "Invalid manifest URL"
},
"+wpvnk": {
"context": "dialog title",
"string": "Delete Collection"
},
"+x4cZH": {
"string": "Only staff members can be assigned"
},
"+x84Ji": {
"context": "order status",
"string": "Unconfirmed"
},
"+xTpT1": {
"string": "Attributes"
},
"//k1GX": {
"context": "expired on label",
"string": "Expired on {date}"
},
"/0QqzO": {
"context": "aria-label for the warning icon inside a channel issue badge",
"string": "Warning"
},
"/0gMCW": {
"string": "Try to refresh the page or go navigate to a different page and back."
},
"/2OOMe": {
"context": "product type shipping settings, section header",
"string": "Shipping"
},
"/2o5cH": {
"context": "section description",
"string": "Controls whether users can authenticate using password-based login. You can allow it for everyone, restrict it to customers only, or disable it entirely."
},
"/4/nYx": {
"string": "Discount updated"
},
"/4bJkA": {
"context": "header field value, header",
"string": "Value"
},
"/5r4he": {
"context": "label for button",
"string": "Add country"
},
"/68iG8": {
"context": "product export to csv file, header",
"string": "Information exported"
},
"/6uK4C": {
"context": "button",
"string": "Assign collections"
},
"/8/Ffn": {
"context": "button",
"string": "Show"
},
"/8a4cU": {
"context": "Description for stock-outside-channel-warehouses info",
"string": "This product has stock in warehouses that are not linked to this channel. Assign the warehouse to the channel for the stock to count toward availability."
},
"/AbHy4": {
"context": "creation label",
"string": "Creation"
},
"/BJQIq": {
"context": "dialog header",
"string": "Add Tracking Code"
},
"/C//FB": {
"context": "header, allocated product quantity",
"string": "Allocated"
},
"/DzBc6": {
"context": "section description",
"string": "Strategy defines the preference of warehouses for stock allocations and reservations."
},
"/H9LeU": {
"string": "Explore Saleor App Store"
},
"/ILyIf": {
"context": "tax classes menu header",
"string": "Tax class label"
},
"/Mcvt4": {
"context": "section header",
"string": "Media"
},
"/TF6BZ": {
"string": "Search Products"
},
"/U8FUp": {
"string": "Couldn't load activities"
},
"/UP01b": {
"context": "Fallback text shown when a product media image fails to load",
"string": "Image could not be loaded"
},
"/WXs6H": {
"context": "collection name",
"string": "Name"
},
"/Xwjww": {
"context": "button",
"string": "Fulfill"
},
"/Zee1r": {
"string": "Only added postal codes will be able to use this shipping rate"
},
"/cow4T": {
"context": "WarehousesSection select field placeholder",
"string": "Select Warehouse"
},
"/dnWE8": {
"context": "products in collection",
"string": "Products in {name}"
},
"/eWPsp": {
"string": "Invalid currency used to create transaction"
},
"/glQgs": {
"string": "No channels found"
},
"/iijFq": {
"context": "input label",
"string": "Global threshold"
},
"/jJLYy": {
"string": "Transactions"
},
"/kWzY1": {
"string": "Are you sure you want to delete this address from users address book?"
},
"/lBLBI": {
"context": "channels alphabetically title",
"string": "Channels from A to Z"
},
"/ly15q": {
"context": "tab label for required attributes",
"string": "Required Attributes"
},
"/nZy6A": {
"context": "page subtitle",
"string": "Issue refund"
},
"/oaqFS": {
"context": "section header",
"string": "Value"
},
"/oyr6M": {
"context": "no variants",
"string": "No variants found"
},
"/qk66u": {
"context": "window title",
"string": "Grant refund #{orderNumber}"
},
"/rsk2X": {
"context": "Badge shown when channel is newly added",
"string": "new"
},
"/vCXIP": {
"string": "Translation"
},
"/w919H": {
"context": "OrderCustomer Fulfillment from Local Warehouse",
"string": "Fulfill from Local Stock"
},
"/x7Y7U": {
"context": "search models placeholder",
"string": "Search models"
},
"/xJSe8": {
"context": "When users confirm their email account, all previous anonymous orders placed under the same email would be added to their order history.",
"string": "When users confirm their email account, all previous anonymous orders placed under the same email would be added to their order history."
},
"/yJJvI": {
"context": "dialog header",
"string": "Select a product type"
},
"/yy0uS": {
"context": "message when no SKU prefix is provided",
"string": "SKU will not be set"
},
"/z5aI6": {
"context": "section header",
"string": "Extension Webhooks"
},
"/zFGgP": {
"string": "+{count} more"
},
"0+sGhF": {
"context": "Suffix for show-more button when hidden problems include active ones",
"string": ", including {active} active"
},
"0+zatS": {
"string": "Hello {userName}, welcome to your Store Dashboard"
},
"0/Y0nG": {
"context": "date group header",
"string": "Last 7 days"
},
"00d8GP": {
"context": "info about variant metadata with link to edit",
"string": "The read-only metadata of the actual variant used in this order. {link}"
},
"033/zW": {
"context": "explore extensions section name",
"string": "Explore"
},
"05hqq6": {
"context": "checkbox label",
"string": "Automatically approve all fulfillments"
},
"06bR4Z": {
"context": "order history message",
"string": "Order cancel information was sent to customer"
},
"0AQH0Q": {
"string": "Plugin is misconfigured and cannot be activated"
},
"0Azlrb": {
"string": "Manage"
},
"0B0HS2": {
"context": "dialog header",
"string": "Delete model"
},
"0DRBjg": {
"string": "Token Note"
},
"0DTk+2": {
"context": "Add custom extension page subheader",
"string": "Learn more about {manifestFormatLink}"
},
"0DgA8v": {
"context": "swatch attribute color picker label",
"string": "Picker"
},
"0FexL7": {
"context": "min price in channel",
"string": "Min. value"
},
"0HBlkO": {
"string": "Search channels"
},
"0KVj6r": {
"string": "Copy tracking number"
},
"0Kz+nM": {
"string": "Cut-off date"
},
"0MetrR": {
"context": "webhook input help text",
"string": "This URL will receive webhook POST requests"
},
"0Mg8o5": {
"context": "header",
"string": "Tokens"
},
"0OAE9q": {
"string": "Checkout and orders"
},
"0OfZJA": {
"context": "button",
"string": "Back"
},
"0QE6RR": {
"context": "Message when all countries are covered",
"string": "All countries covered"
},
"0ReyKr": {
"context": "VariantDetailsChannelsAvailabilityCard item subtitle published",
"string": "Published since {publishedAt}"
},
"0V1q0d": {
"context": "add country dialog header",
"string": "Choose country you want to add"
},
"0XHXTZ": {
"context": "column header",
"string": "Title"
},
"0YOedO": {
"context": "label for already charged amount",
"string": "Captured so far"
},
"0YjGFG": {
"context": "alert message",
"string": "For subscription"
},
"0a0fLZ": {
"context": "countries list menu label when no countries are assigned",
"string": "There are no countries assigned"
},
"0dCGBW": {
"context": "button",
"string": "Create structure"
},
"0dPP8O": {
"string": "Order #{orderId} was placed"
},
"0em8tI": {
"context": "ProductTypeDeleteWarningDialog multiple consent label",
"string": "Yes, I want to delete those products types and assigned products"
},
"0f6YvV": {
"context": "dialog title",
"string": "Capture Payment"
},
"0g0LHg": {
"context": "card header and checkbox label",
"string": "Emit update webhooks for metadata changes"
},
"0iMYc+": {
"context": "field is optional",
"string": "(Optional)"
},
"0iZ6Ds": {
"context": "snackbar text",
"string": "Extension activated"
},
"0ix6PR": {
"string": "Order cancelled"
},
"0j4/kV": {
"context": "discount reason input label",
"string": "Reason"
},
"0kPdlb": {
"context": "deprecated secret key toolbar label",
"string": "Use RS256 signature instead."
},
"0krqBj": {
"context": "page header",
"string": "Order no. {orderNumber} - Refund"
},
"0mhR+F": {
"context": "Header row quantity label",
"string": "Quantity"
},
"0nLsyM": {
"string": "No product types found"
},
"0oo+BT": {
"context": "section header",
"string": "Refunded Amount"
},
"0qg33z": {
"context": "table column header",
"string": "Return"
},
"0sd4ez": {
"context": "selected customer channel subtitle",
"string": "Customer will be sent the gift card code via this channels email address"
},
"0u9Ng0": {
"context": "Dry run no objects found",
"string": "No objects found in the provided query"
},
"0whAeC": {
"context": "sum of all pending refunds inside an order",
"string": "Pending refunds"
},
"0xMUfd": {
"string": "No results found for \"{query}\""
},
"1+ROfp": {
"string": "Transaction"
},
"1/bAgt": {
"context": "discount type fixed",
"string": "Fixed"
},
"1/oauz": {
"context": "grant refund table, column header",
"string": "Qty to refund"
},
"11ep0q": {
"context": "button",
"string": "Show metadata"
},
"11lR5V": {
"context": "avatar delete button",
"string": "Delete"
},
"129wyQ": {
"context": "dialog header",
"string": "Change customer shipping address"
},
"12K83x": {
"context": "shipping method option when name unknown",
"string": "Current method"
},
"15PiOX": {
"context": "button title",
"string": "Unassign"
},
"15fg+o": {
"context": "weeks after label",
"string": "weeks after issue"
},
"16Dpgb": {
"context": "Synchronous events description",
"string": "Synchronous webhook sends payload and waits for a response from the target URL to continue processing."
},
"16PGt9": {
"context": "WarehouseSettings all warehouses label",
"string": "All warehouses"
},
"16iwCI": {
"context": "section header",
"string": "Fulfilled"
},
"19/lwV": {
"string": "Determine attributes used to create product types"
},
"19o9WS": {
"string": "Learn more about {userPermissions}"
},
"1ACBFw": {
"context": "Ripple tooltip confirmation button",
"string": "Show me"
},
"1BNKCZ": {
"context": "sale channel",
"string": "Channel"
},
"1H+V6k": {
"context": "error message",
"string": "Page with these attributes already exists."
},
"1H0tqc": {
"context": "Scheduled date for availability",
"string": "scheduled {date}"
},
"1J/bhZ": {
"context": "expiry date section header",
"string": "Expiry date"
},
"1LiVhv": {
"context": "section header",
"string": "Recent Orders"
},
"1T1fP8": {
"context": "range input label",
"string": "Postal codes (start)"
},
"1UKx20": {
"context": "header",
"string": "Translation ShippingMethod \"{shippingMethodName}\" - {languageCode}"
},
"1UQ9Qy": {
"string": "Code Prefix (Optional)"
},
"1Uj0Wd": {
"context": "order draft total price",
"string": "Total"
},
"1WbTJ5": {
"context": "product variants, title",
"string": "Variants"
},
"1X6HtI": {
"string": "All Categories"
},
"1Znp5B": {
"string": "Be extra careful with taxes and payment extensions, ensure your configuration selects other extension to be used"
},
"1lk/oS": {
"context": "button",
"string": "Add postal code range"
},
"1n1tOR": {
"string": "Group is out of your permission scope"
},
"1ncKJy": {
"context": "Warning when no warehouses configured",
"string": "No warehouses"
},
"1oYjZc": {
"context": "sum of all granted refunds for an order",
"string": "Granted refund"
},
"1qukRr": {
"context": "message when all selected variant combinations already exist",
"string": "All selected combinations already exist as variants"
},
"1rpzrM": {
"context": "search placeholder",
"string": "Search by country name"
},
"1shOIS": {
"context": "column title",
"string": "Price"
},
"1tXSSK": {
"context": "header",
"string": "Translation Voucher \"{voucherName}\" - {languageCode}"
},
"1wbsEu": {
"context": "Transaction card title",
"string": "Transaction"
},
"1wyZpQ": {
"string": "These passwords are too similar"
},
"1zuQ2P": {
"context": "unassign country",
"string": "Are you sure you want to remove {countryName} from this shipping zone?"
},
"2+v1wX": {
"context": "number of metadata fields in model",
"string": "{number,plural,one{{number} string} other{{number} strings}}"
},
"21cJ+Z": {
"context": "structures section name",
"string": "Structures"
},
"22x9tu": {
"context": "header",
"string": "Translation Product \"{productName}\" - {languageCode}"
},
"23g7PY": {
"context": "dialog header",
"string": "Invite Staff Member"
},
"26BKkX": {
"context": "order status",
"string": "Partially returned"
},
"28vvyx": {
"context": "deselect all values button",
"string": "None"
},
"29L5Yq": {
"context": "gift card not found message",
"string": "Couldn't find gift card"
},
"2BHjVL": {
"context": "header",
"string": "Custom request headers"
},
"2CBcub": {
"context": "CreateVariantTitle manage",
"string": "Manage"
},
"2FQ5xn": {
"context": "Status when product is currently available for purchase",
"string": "Available now"
},
"2FQsYj": {
"context": "button",
"string": "Clear"
},
"2HfSiT": {
"context": "pagination",
"string": "No. of rows"
},
"2J6EFz": {
"context": "button",
"string": "Choose media"
},
"2JBvj0": {
"context": "export products to csv file, button",
"string": "Export products"
},
"2MKBk2": {
"context": "window title",
"string": "Fulfill Order #{orderNumber}"
},
"2MKkgX": {
"context": "checkbox label",
"string": "Allow fulfillment without payment"
},
"2NdGVf": {
"context": "description for required non-selection attributes section",
"string": "These values will be applied to all generated variants."
},
"2NgTCJ": {
"string": "A product with this SKU already exists"
},
"2OH46U": {
"context": "search modal shipping title",
"string": "Shipping address"
},
"2RYRdr": {
"context": "webhooks active label",
"string": "Active"
},
"2Sx05f": {
"context": "Previous discount label",
"string": "Previous discount value"
},
"2V6eD8": {
"context": "refund type",
"string": "Miscellaneous refund"
},
"2VSP8C": {
"context": "delete token",
"string": "Are you sure you want to delete token {token}?"
},
"2W4EBM": {
"context": "button",
"string": "Set maximal quantities"
},
"2Xt+sw": {
"context": "dialog header",
"string": "Add postal codes"
},
"2atspc": {
"string": "Drafts"
},
"2dgbGR": {
"string": "Those codes already exist"
},
"2eHzVW": {
"string": "Manual refunds cannot be edited"
},
"2fgaAQ": {
"context": "search input placeholder",
"string": "Search shipping zones..."
},
"2gsiR1": {
"string": "No warehouses found"
},
"2i81/P": {
"context": "section header button",
"string": "Manage"
},
"2nnp9+": {
"context": "Info box title when product is not available for purchase",
"string": "Visible but not purchasable."
},
"2ob30/": {
"string": "Success! In a few minutes you’ll receive a message with instructions on how to reset your password."
},
"2oyWT9": {
"context": "button",
"string": "Back to login"
},
"2p0tZx": {
"context": "delete customer, dialog content",
"string": "Are you sure you want to delete {email}?"
},
"2pw5dQ": {
"context": "payment status",
"string": "Fully paid"
},
"2qHTHI": {
"string": "Default weight unit updated"
},
"2qfU+C": {
"string": "The extension identifier is already in use."
},
"2x9ZgK": {
"context": "card title",
"string": "Refund balance"
},
"2xkzcr": {
"context": "btn label",
"string": "Go to GraphQL Playground"
},
"2yV+s8": {
"context": "order history message",
"string": "Payment was captured"
},
"2zCmiR": {
"context": "tabel column header",
"string": "Cost price"
},
"3+990c": {
"context": "button",
"string": "View all orders"
},
"3+KwtP": {
"context": "VariantDetailsChannelsAvailabilityCard subtitle",
"string": "Available in {publishedInChannelsCount} out of {availableChannelsCount}"
},
"3/IQO9": {
"context": "extension install page, permissions section",
"string": "Installing this extension will give it following permissions"
},
"30X9S8": {
"context": "gift card history message",
"string": "Gift card was issued by {issuedBy}"
},
"32Capp": {
"context": "page title",
"string": "Explore"
},
"32dfzI": {
"context": "price or ordered products",
"string": "Price"
},
"34F7Jk": {
"context": "filter range separator",
"string": "and"
},
"38dS1A": {
"context": "code ending with label",
"string": "Code ending with {last4CodeChars}"
},
"38dc43": {
"context": "Features preview",
"string": "Features preview"
},
"39yi8w": {
"context": "selected currency",
"string": "Selected currency"
},
"3AqOxp": {
"context": "no category set error",
"string": "Product category not set"
},
"3C3Nj5": {
"context": "button",
"string": "Add variant"
},
"3CMUKE": {
"context": "password login mode option description",
"string": "Only customer users can log in with a password. Staff users logging in with a password will be treated as customers."
},
"3DGvA/": {
"string": "Remember this will also unpin all products assigned to this category, making them unavailable in storefront."
},
"3EFNZn": {
"context": "password login mode option",
"string": "Customers only"
},
"3Eyq0y": {
"string": "Mark as paid manually if the payment is confirmed"
},
"3Gkj+d": {
"context": "button to reset cut-off date to saved value",
"string": "Reset to saved value"
},
"3PVGWj": {
"string": "Filter preset"
},
"3R7BmI": {
"context": "Extension by Author",
"string": "by"
},
"3SVI5p": {
"string": "Warning"
},
"3VsNbv": {
"context": "WarehouseSettings local warehouse description",
"string": "If selected customer will be able to choose this warehouse as pickup point.{break}Ordered products will be only fulfilled from this warehouse stock"
},
"3a5wL8": {
"string": "Active"
},
"3bQz2o": {
"context": "bulk issue gift cards success alert title",
"string": "Gift Cards Issued"
},
"3d1RXL": {
"string": "This customer has no addresses yet"
},
"3dJ2Sc": {
"context": "model status",
"string": "Not published"
},
"3dVKNR": {
"context": "ProductTypeDeleteWarningDialog with items multiple description",
"string": "You are about to delete multiple product types. Some of them are assigned to products. Deleting those product types will also delete those products"
},
"3eR8iC": {
"string": "Show me"
},
"3evXPj": {
"string": "Leave your note here..."
},
"3fBg0U": {
"context": "Message when no issues found",
"string": "No availability issues detected"
},
"3fgyFh": {
"context": "order history message",
"string": "Payment was refunded"
},
"3kVRE2": {
"context": "Checkbox label for setting publication date",
"string": "Set publication date"
},
"3kwdxJ": {
"context": "gift card export type label",
"string": "gift cards"
},
"3mvL2Q": {
"string": "and"
},
"3oQzWR": {
"context": "product availability",
"string": "Set publication date"
},
"3psvRS": {
"context": "attribute values list: slug column header",
"string": "Admin"
},
"3rIMq/": {
"context": "product shipping",
"string": "Shipping"
},
"3tbL7x": {
"context": "description",
"string": "Forgot password?"
},
"3u+4NZ": {
"string": "Invoice email sent"
},
"3ukd9/": {
"context": "attributes, section header",
"string": "Attributes"
},
"3xv4ez": {
"string": "Go to users/staff members"
},
"3y4r+z": {
"context": "channel settings",
"string": "Channel Settings"
},
"3yf2ND": {