samling 0.13.1

App for managing apparel collections
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
msgid ""
msgstr ""
"POT-Creation-Date: 2022-05-24 21:48+0200\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Language: en\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Plural-Forms: \n"

#: src/pages/app/admin/AdminEditUser.tsx:405
msgid "# collections"
msgstr "# collections"

#: src/components/admin/CollectionsTable.tsx:76
#: src/pages/app/admin/AdminEditGroup.tsx:528
msgid "# colors"
msgstr "# colors"

#: src/pages/app/admin/AdminEditUser.tsx:411
msgid "# price lists"
msgstr "# price lists"

#: src/components/admin/CollectionsTable.tsx:82
#: src/pages/app/admin/AdminEditGroup.tsx:534
msgid "# sizes"
msgstr "# sizes"

#: src/components/admin/CollectionsTable.tsx:70
#: src/pages/app/admin/AdminEditGroup.tsx:522
msgid "# styles"
msgstr "# styles"

#: src/pages/public/errors/Unauthorized.tsx:17
msgid "401 Error"
msgstr "401 Error"

#: src/pages/app/errors/NotFound.tsx:17
#: src/pages/public/errors/NotFoundPublic.tsx:17
msgid "404 Error"
msgstr "404 Error"

#: src/pages/public/SplashPage.tsx:175
msgid "<0>Get full insight into</0><1>your product data.</1>"
msgstr "<0>Get full insight into</0><1>your product data.</1>"

#: src/pages/public/SplashPage.tsx:409
#~ msgid "<0>Share product data</0><1>faster than ever</1>"
#~ msgstr "<0>Share product data</0><1>faster than ever</1>"

#: src/pages/public/SplashPage.tsx:217
msgid "<0>We care about the protection of your data. Read our </0><1>Privacy Policy</1>."
msgstr "<0>We care about the protection of your data. Read our </0><1>Privacy Policy</1>."

#: src/pages/app/admin/AdminHome.tsx:57
#~ msgid "A list of all the groups in your organization."
#~ msgstr "A list of all the groups in your organization."

#: src/pages/app/admin/AdminEditGroup.tsx:425
#: src/roles.ts:14
#: src/roles.ts:15
msgid "Active"
msgstr "Active"

#: src/components/admin/UsersTable.tsx:99
msgid "Active users"
msgstr "Active users"

#: src/components/admin/AddCollectionItemsModal.tsx:228
#: src/components/admin/NewCollectionPricingGroupModal.tsx:114
msgid "Add"
msgstr "Add"

#: src/pages/app/admin/AdminEditGroup.tsx:556
msgid "Add collection"
msgstr "Add collection"

#: src/components/admin/AddCollectionItemsModal.tsx:158
msgid "Add collection items"
msgstr "Add collection items"

#: src/components/admin/NewCollectionPricingGroupModal.tsx:78
msgid "Add collection pricing date"
msgstr "Add collection pricing date"

#: src/components/admin/GroupsTable.tsx:55
#: src/pages/app/admin/AdminEditUser.tsx:300
#: src/pages/app/admin/AdminEditUser.tsx:430
msgid "Add group"
msgstr "Add group"

#: src/pages/app/admin/AdminEditCollection.tsx:629
msgid "Add items"
msgstr "Add items"

#: src/components/forms/AssociatedPriceListsEditor.tsx:102
#~ msgid "Add price list"
#~ msgstr "Add price list"

#: src/pages/app/admin/AdminEditCollection.tsx:370
#~ msgid "Add pricing"
#~ msgstr "Add pricing"

#: src/components/admin/UsersTable.tsx:183
#: src/pages/app/admin/AdminEditGroup.tsx:379
msgid "Add user"
msgstr "Add user"

#: src/pages/app/Style.tsx:254
msgid "Additional details"
msgstr "Additional details"

#: src/components/nav/Sidebar.tsx:34
#: src/pages/app/admin/AdminCollections.tsx:12
#: src/pages/app/admin/AdminCollections.tsx:45
#: src/pages/app/admin/AdminCreateCollection.tsx:24
#: src/pages/app/admin/AdminCreateCollection.tsx:32
#: src/pages/app/admin/AdminEditCollection.tsx:71
#: src/pages/app/admin/AdminEditCollection.tsx:84
#: src/pages/app/admin/AdminEditGroup.tsx:49
#: src/pages/app/admin/AdminEditGroup.tsx:62
#: src/pages/app/admin/AdminEditUser.tsx:41
#: src/pages/app/admin/AdminEditUser.tsx:54
#: src/pages/app/admin/AdminGroups.tsx:12
#: src/pages/app/admin/AdminGroups.tsx:40
#: src/pages/app/admin/AdminHome.tsx:21
#: src/pages/app/admin/AdminHome.tsx:49
#: src/pages/app/admin/AdminHome.tsx:56
#: src/pages/app/admin/AdminUsers.tsx:13
#: src/pages/app/admin/AdminUsers.tsx:91
msgid "Admin"
msgstr "Admin"

#: src/pages/app/admin/AdminHome.tsx:41
msgid "Administrate collections"
msgstr "Administrate collections"

#: src/pages/app/admin/AdminHome.tsx:34
msgid "Administrate groups"
msgstr "Administrate groups"

#: src/pages/app/admin/AdminHome.tsx:27
msgid "Administrate users"
msgstr "Administrate users"

#: src/roles.ts:41
msgid "Administrator"
msgstr "Administrator"

#: src/roles.ts:42
msgid "Administrators"
msgstr "Administrators"

#: src/pages/app/admin/AdminCreateCollection.tsx:187
#: src/pages/app/admin/AdminEditCollection.tsx:317
msgid "Advanced settings"
msgstr "Advanced settings"

#: src/pages/app/AlreadySignedInPage.tsx:11
msgid "Already signed in"
msgstr "Already signed in"

#: src/pages/app/AlreadySignedInPage.tsx:27
msgid "Already signed in."
msgstr "Already signed in."

#: src/state/slices/user.ts:43
msgid "An error occurred"
msgstr "An error occurred"

#: src/pages/app/errors/ApiError.tsx:26
msgid "An error occurred."
msgstr "An error occurred."

#: src/components/forms/ImageInput.tsx:37
#~ msgid "Any image, up to {maxSizeMegaBytes} MB."
#~ msgstr "Any image, up to {maxSizeMegaBytes} MB."

#: src/components/admin/DeleteCollectionModal.tsx:50
msgid "Are you sure you want to delete the collection <0>{0}</0>? This action cannot be undone."
msgstr "Are you sure you want to delete the collection <0>{0}</0>? This action cannot be undone."

#: src/components/admin/DeleteGroupModal.tsx:44
msgid "Are you sure you want to delete the group <0>{0}</0>? This action cannot be undone."
msgstr "Are you sure you want to delete the group <0>{0}</0>? This action cannot be undone."

#: src/components/admin/DeleteUserModal.tsx:44
msgid "Are you sure you want to delete the user <0>{0}</0>? This action cannot be undone."
msgstr "Are you sure you want to delete the user <0>{0}</0>? This action cannot be undone."

#: src/components/ExportForm.tsx:157
#: src/components/admin/AddCollectionItemsModal.tsx:192
msgid "Attributes"
msgstr "Attributes"

#: src/state/slices/user.ts:117
msgid "Automatic sign out"
msgstr "Automatic sign out"

#: src/state/slices/user.ts:58
msgid "Backend error"
msgstr "Backend error"

#: src/pages/app/admin/AdminCreateCollection.tsx:154
#: src/pages/app/admin/AdminEditCollection.tsx:263
#: src/pages/app/admin/AdminEditGroup.tsx:177
#: src/pages/app/admin/AdminEditUser.tsx:157
msgid "Basic settings"
msgstr "Basic settings"

#: src/components/ExportForm.tsx:57
msgid "CSV"
msgstr "CSV"

#: src/roles.ts:33
msgid "Can create and edit groups and collections, in addition to viewer level access."
msgstr "Can create and edit groups and collections, in addition to viewer level access."

#: src/roles.ts:43
msgid "Can manage users, in addition to editor level access. Also gets full API access, which is useful when creating integrations."
msgstr "Can manage users, in addition to editor level access. Also gets full API access, which is useful when creating integrations."

#: src/roles.ts:16
msgid "Can sign in."
msgstr "Can sign in."

#: src/roles.ts:23
msgid "Can view and export collections where explicit access has been configured in Groups."
msgstr "Can view and export collections where explicit access has been configured in Groups."

#: src/components/admin/AddCollectionItemsModal.tsx:235
#: src/components/admin/ModalBase.tsx:242
#: src/components/admin/NewCollectionPricingGroupModal.tsx:121
#: src/pages/app/admin/AdminCreateCollection.tsx:224
#: src/pages/app/admin/AdminEditCollection.tsx:356
#: src/pages/app/admin/AdminEditGroup.tsx:278
#: src/pages/app/admin/AdminEditUser.tsx:214
msgid "Cancel"
msgstr "Cancel"

#: src/components/admin/AddCollectionItemsModal.tsx:178
#: src/components/filters/CategoryFilter.tsx:54
msgid "Categories"
msgstr "Categories"

#: src/components/ExportForm.tsx:82
#: src/components/filters/ActiveFilters.tsx:63
msgid "Category"
msgstr "Category"

#: src/components/ExportForm.tsx:154
msgid "Category name"
msgstr "Category name"

#: src/pages/app/Style.tsx:215
msgid "Choose a color"
msgstr "Choose a color"

#: src/pages/app/admin/AdminEditCollection.tsx:674
msgid "Clear selection"
msgstr "Clear selection"

#: src/components/UserMessage.tsx:87
msgid "Close"
msgstr "Close"

#: src/components/nav/SidebarMobile.tsx:64
msgid "Close sidebar"
msgstr "Close sidebar"

#: src/components/admin/CollectionsTable.tsx:64
msgid "Collection"
msgstr "Collection"

#: src/pages/Collection.tsx:21
#~ msgid "Collection not found"
#~ msgstr "Collection not found"

#: src/components/CollectionTable.tsx:78
#: src/components/admin/CollectionsTable.tsx:35
#: src/components/admin/GroupsTable.tsx:82
#: src/components/nav/Sidebar.tsx:22
#: src/pages/app/HomeScreen.tsx:12
#: src/pages/app/Style.tsx:82
#: src/pages/app/admin/AdminCollections.tsx:12
#: src/pages/app/admin/AdminCollections.tsx:47
#: src/pages/app/admin/AdminCreateCollection.tsx:34
#: src/pages/app/admin/AdminEditCollection.tsx:71
#: src/pages/app/admin/AdminEditCollection.tsx:86
#: src/pages/app/admin/AdminEditGroup.tsx:495
#: src/pages/app/admin/AdminHome.tsx:39
msgid "Collections"
msgstr "Collections"

#: src/components/ExportForm.tsx:75
#: src/pages/app/Style.tsx:205
msgid "Color"
msgstr "Color"

#: src/components/ExportForm.tsx:178
msgid "Color external id"
msgstr "Color external id"

#: src/components/ExportMenu.tsx:119
#: src/components/ExportMenu.tsx:177
#~ msgid "Color level"
#~ msgstr "Color level"

#: src/components/ExportForm.tsx:118
msgid "Color name"
msgstr "Color name"

#: src/components/ExportForm.tsx:117
msgid "Color number"
msgstr "Color number"

#: src/components/CollectionTable.tsx:56
#: src/components/filters/NewFilter.tsx:25
msgid "Colors"
msgstr "Colors"

#: src/pages/app/admin/AdminEditCollection.tsx:703
msgid "Colors / Sizes"
msgstr "Colors / Sizes"

#: src/pages/public/SplashPage.tsx:14
msgid "Company"
msgstr "Company"

#: src/pages/public/SplashPage.tsx:213
msgid "Contact me"
msgstr "Contact me"

#: src/components/ExportForm.tsx:111
#: src/components/columns/data/Style.tsx:112
#: src/components/filters/CoreFilter.tsx:20
msgid "Core"
msgstr "Core"

#: src/components/columns/data/Style.tsx:97
msgid "Core style"
msgstr "Core style"

#: src/components/filters/CoreFilter.tsx:31
msgid "Core styles"
msgstr "Core styles"

#: src/components/filters/ActiveFilters.tsx:72
msgid "Country"
msgstr "Country"

#: src/components/ExportForm.tsx:114
#: src/components/filters/CountryFilter.tsx:46
msgid "Country of origin"
msgstr "Country of origin"

#: src/pages/app/admin/AdminCreateCollection.tsx:175
#: src/pages/app/admin/AdminEditCollection.tsx:291
msgid "Cover photo"
msgstr "Cover photo"

#: src/components/admin/CreateGroupModal.tsx:63
#: src/components/admin/CreateUserModal.tsx:132
msgid "Create"
msgstr "Create"

#: src/components/admin/CollectionsTable.tsx:49
msgid "Create collection"
msgstr "Create collection"

#: src/components/admin/CreateGroupModal.tsx:90
#~ msgid "Create group"
#~ msgstr "Create group"

#: src/components/admin/CollectionsTable.tsx:88
msgid "Created at"
msgstr "Created at"

#: src/components/admin/NewCollectionPricingGroupModal.tsx:23
#~ msgid "Date"
#~ msgstr "Date"

#: src/components/admin/CollectionsTable.tsx:109
#: src/components/admin/DeleteCollectionModal.tsx:58
#: src/components/admin/DeleteGroupModal.tsx:50
#: src/components/admin/DeleteUserModal.tsx:50
#: src/components/admin/GroupsTable.tsx:103
#: src/components/admin/GroupsTable.tsx:166
#: src/components/admin/UsersTable.tsx:240
#: src/components/admin/UsersTable.tsx:317
msgid "Delete"
msgstr "Delete"

#: src/components/admin/DeleteGroupModal.tsx:107
#~ msgid "Delete group"
#~ msgstr "Delete group"

#: src/components/admin/CollectionsTable.tsx:191
msgid "Delete<0>, {0}</0>"
msgstr "Delete<0>, {0}</0>"

#: src/components/ExportForm.tsx:163
#: src/types/other.ts:19
msgid "Delivery period"
msgstr "Delivery period"

#: src/types/other.ts:23
msgid "Delivery period (descending)"
msgstr "Delivery period (descending)"

#: src/pages/app/Style.tsx:190
#: src/pages/app/admin/AdminEditGroup.tsx:197
#: src/pages/app/admin/AdminEditUser.tsx:281
msgid "Description"
msgstr "Description"

#: src/components/admin/AddCollectionItemsModal.tsx:193
msgid "Different types of attributes must all get matched. Within the same type any may match."
msgstr "Different types of attributes must all get matched. Within the same type any may match."

#: src/pages/app/admin/AdminEditCollection.tsx:867
msgid "Disable all"
msgstr "Disable all"

#: src/components/ExportForm.tsx:516
msgid "Download"
msgstr "Download"

#: src/components/ExportMenu.tsx:84
#: src/components/ExportMenu.tsx:142
#~ msgid "Download as"
#~ msgstr "Download as"

#: src/components/ExportForm.tsx:514
msgid "Downloading..."
msgstr "Downloading..."

#: src/components/admin/CreateUserModal.tsx:44
#: src/components/admin/UsersTable.tsx:375
#: src/pages/app/admin/AdminEditUser.tsx:176
msgid "E-mail address"
msgstr "E-mail address"

#: src/components/ExportForm.tsx:122
msgid "EAN code"
msgstr "EAN code"

#: src/components/admin/CollectionsTable.tsx:101
#: src/components/admin/GroupsTable.tsx:95
#: src/components/admin/GroupsTable.tsx:155
#: src/components/admin/UsersTable.tsx:232
#: src/components/admin/UsersTable.tsx:306
msgid "Edit"
msgstr "Edit"

#: src/pages/app/admin/AdminEditCollection.tsx:47
#~ msgid "Edit collection"
#~ msgstr "Edit collection"

#: src/pages/app/admin/AdminEditGroup.tsx:69
msgid "Edit group"
msgstr "Edit group"

#: src/pages/app/admin/AdminEditUser.tsx:55
#~ msgid "Edit user"
#~ msgstr "Edit user"

#: src/pages/app/admin/AdminEditUser.tsx:61
msgid "Edit {0}"
msgstr "Edit {0}"

#: src/components/admin/CollectionsTable.tsx:176
msgid "Edit<0>, {0}</0>"
msgstr "Edit<0>, {0}</0>"

#: src/roles.ts:31
msgid "Editor"
msgstr "Editor"

#: src/roles.ts:32
msgid "Editors"
msgstr "Editors"

#: src/components/SignInModal.tsx:73
msgid "Email address"
msgstr "Email address"

#: src/pages/app/admin/AdminEditCollection.tsx:867
msgid "Enable all"
msgstr "Enable all"

#: src/pages/app/admin/AdminEditUser.tsx:185
msgid "Enter new password here to change..."
msgstr "Enter new password here to change..."

#: src/pages/public/SplashPage.tsx:207
msgid "Enter your email"
msgstr "Enter your email"

#: src/pages/app/AlreadySignedInPage.tsx:24
msgid "Error"
msgstr "Error"

#: src/components/ExportForm.tsx:51
msgid "Excel"
msgstr "Excel"

#: src/components/forms/ImageInput.tsx:92
msgid "Existing image"
msgstr "Existing image"

#: src/components/ExportForm.tsx:249
#: src/components/ExportForm.tsx:267
msgid "Export"
msgstr "Export"

#: src/pages/app/admin/AdminCreateCollection.tsx:206
#: src/pages/app/admin/AdminEditCollection.tsx:336
#: src/pages/app/admin/AdminEditGroup.tsx:219
msgid "External ID"
msgstr "External ID"

#: src/pages/public/SplashPage.tsx:13
msgid "Features"
msgstr "Features"

#: src/components/ExportForm.tsx:417
msgid "Fields"
msgstr "Fields"

#: src/components/filters/ActiveFilters.tsx:109
msgid "Filters<0>, active</0>"
msgstr "Filters<0>, active</0>"

#: src/components/ExportForm.tsx:322
msgid "Format"
msgstr "Format"

#: src/pages/app/errors/ApiError.tsx:36
#: src/pages/app/errors/NotFound.tsx:32
#: src/pages/public/errors/NotFoundPublic.tsx:32
msgid "Go back home"
msgstr "Go back home"

#: src/pages/public/SplashPage.tsx:105
msgid "Go to app"
msgstr "Go to app"

#: src/components/CollectionDetailTable.tsx:72
#~ msgid "Good amount of variants"
#~ msgstr "Good amount of variants"

#: src/components/ExportForm.tsx:167
msgid "Gross weight"
msgstr "Gross weight"

#: src/components/ExportForm.tsx:369
msgid "Group by"
msgstr "Group by"

#: src/components/admin/GroupsTable.tsx:35
#: src/components/admin/UsersTable.tsx:225
#: src/components/admin/UsersTable.tsx:401
#: src/pages/app/admin/AdminEditGroup.tsx:64
#: src/pages/app/admin/AdminEditUser.tsx:381
#: src/pages/app/admin/AdminGroups.tsx:12
#: src/pages/app/admin/AdminGroups.tsx:41
#: src/pages/app/admin/AdminHome.tsx:32
msgid "Groups"
msgstr "Groups"

#: src/components/admin/GroupsTable.tsx:38
msgid "Groups are used to give access to collections and price lists to a specific set of users. The price lists and collections that a user has been granted to via one or more groups are added together. Groups cannot take away access to price lists or collections."
msgstr "Groups are used to give access to collections and price lists to a specific set of users. The price lists and collections that a user has been granted to via one or more groups are added together. Groups cannot take away access to price lists or collections."

#: src/components/admin/CreateGroupModal.tsx:59
msgid "Groups are used to limit user access to collections and price lists."
msgstr "Groups are used to limit user access to collections and price lists."

#: src/components/nav/Sidebar.tsx:18
#~ msgid "Home"
#~ msgstr "Home"

#: src/components/ExportForm.tsx:94
msgid "Image"
msgstr "Image"

#: src/components/columns/data/Style.tsx:16
msgid "Image for {0}"
msgstr "Image for {0}"

#: src/components/columns/data/Colors.tsx:36
msgid "Image for {0} / {1}"
msgstr "Image for {0} / {1}"

#: src/components/forms/ImageInput.tsx:92
msgid "Image to upload"
msgstr "Image to upload"

#: src/components/ExportForm.tsx:170
msgid "Images"
msgstr "Images"

#: src/components/admin/UsersTable.tsx:93
msgid "Inactive users"
msgstr "Inactive users"

#: src/pages/app/admin/AdminCreateCollection.tsx:177
#: src/pages/app/admin/AdminEditCollection.tsx:293
msgid "It is recommended to give the image a 10:7 ratio and a minimum width and height of 1070 by 750 pixels."
msgstr "It is recommended to give the image a 10:7 ratio and a minimum width and height of 1070 by 750 pixels."

#: src/pages/app/admin/AdminEditCollection.tsx:615
msgid "Items"
msgstr "Items"

#: src/components/ExportForm.tsx:63
msgid "JSON"
msgstr "JSON"

#: src/components/admin/CreateUserModal.tsx:35
#: src/pages/app/admin/AdminEditUser.tsx:165
msgid "Jane Doe"
msgstr "Jane Doe"

#: src/components/ExportForm.tsx:285
#: src/components/nav/SidebarDesktop.tsx:67
#: src/components/nav/SidebarMobile.tsx:118
msgid "Language"
msgstr "Language"

#: src/components/admin/UsersTable.tsx:213
#: src/pages/app/admin/AdminEditGroup.tsx:360
msgid "Last sign in"
msgstr "Last sign in"

#: src/components/CollectionsTable.tsx:74
#~ msgid "Last updated"
#~ msgstr "Last updated"

#: src/pages/app/admin/AdminEditGroup.tsx:338
#: src/pages/app/admin/AdminEditGroup.tsx:506
#: src/pages/app/admin/AdminEditUser.tsx:265
#: src/pages/app/admin/AdminEditUser.tsx:389
msgid "List is empty."
msgstr "List is empty."

#: src/components/Loading.tsx:22
msgid "Loading..."
msgstr "Loading..."

#: src/pages/public/SplashPage.tsx:112
#: src/pages/public/SplashPage.tsx:163
msgid "Log in"
msgstr "Log in"

#: src/components/nav/ProfileDropdown.tsx:17
msgid "Login"
msgstr "Login"

#: src/components/nav/ProfileDropdown.tsx:31
#~ msgid "Logout"
#~ msgstr "Logout"

#: src/pages/app/admin/AdminCreateCollection.tsx:147
#: src/pages/app/admin/AdminEditCollection.tsx:256
#: src/pages/app/admin/AdminEditGroup.tsx:170
#: src/pages/app/admin/AdminEditUser.tsx:150
msgid "Make your changes, then hit save when done."
msgstr "Make your changes, then hit save when done."

#: src/components/admin/AddCollectionItemsModal.tsx:161
#: src/components/admin/NewCollectionPricingGroupModal.tsx:81
msgid "Make your selection of items to add here. Manual adjustments can be made once added."
msgstr "Make your selection of items to add here. Manual adjustments can be made once added."

#: src/pages/app/admin/AdminHome.tsx:28
msgid "Manage users, associate roles and groups individually."
msgstr "Manage users, associate roles and groups individually."

#: src/components/admin/CreateGroupModal.tsx:27
#: src/components/admin/CreateUserModal.tsx:34
#: src/components/admin/GroupsTable.tsx:70
#: src/components/admin/UsersTable.tsx:374
#: src/pages/app/admin/AdminCreateCollection.tsx:166
#: src/pages/app/admin/AdminEditCollection.tsx:275
#: src/pages/app/admin/AdminEditGroup.tsx:186
#: src/pages/app/admin/AdminEditGroup.tsx:348
#: src/pages/app/admin/AdminEditGroup.tsx:516
#: src/pages/app/admin/AdminEditUser.tsx:166
#: src/pages/app/admin/AdminEditUser.tsx:275
#: src/pages/app/admin/AdminEditUser.tsx:399
#: src/types/other.ts:17
msgid "Name"
msgstr "Name"

#: src/components/columns/data/Colors.tsx:160
#: src/components/columns/data/Style.tsx:155
#: src/components/filters/ActiveFilters.tsx:81
#: src/components/filters/NewFilter.tsx:45
#: src/pages/app/admin/AdminCreateCollection.tsx:39
#: src/pages/app/admin/AdminEditCollection.tsx:793
#: src/pages/app/admin/AdminEditCollection.tsx:879
msgid "New"
msgstr "New"

#: src/pages/app/admin/AdminCreateCollection.tsx:24
#: src/pages/app/admin/AdminCreateCollection.tsx:144
msgid "New collection"
msgstr "New collection"

#: src/components/ExportForm.tsx:119
#: src/components/columns/data/Colors.tsx:145
msgid "New color"
msgstr "New color"

#: src/pages/app/admin/AdminEditCollection.tsx:459
msgid "New date"
msgstr "New date"

#: src/components/ExportForm.tsx:110
#: src/components/columns/data/Style.tsx:140
msgid "New style"
msgstr "New style"

#: src/components/admin/UsersTable.tsx:376
msgid "Newest sign in"
msgstr "Newest sign in"

#: src/state/slices/user.ts:142
msgid "No access"
msgstr "No access"

#: src/components/CollectionsGridList.tsx:70
msgid "No collections"
msgstr "No collections"

#: src/components/admin/CreateGroupModal.tsx:28
msgid "North America sales reps"
msgstr "North America sales reps"

#: src/components/nav/ProfileDropdown.tsx:29
msgid "Notifications"
msgstr "Notifications"

#: src/types/other.ts:16
msgid "Number"
msgstr "Number"

#: src/components/admin/AddCollectionItemsModal.tsx:260
msgid "Number of colors"
msgstr "Number of colors"

#: src/components/admin/AddCollectionItemsModal.tsx:261
msgid "Number of sizes"
msgstr "Number of sizes"

#: src/components/admin/AddCollectionItemsModal.tsx:259
msgid "Number of styles"
msgstr "Number of styles"

#: src/components/ExportForm.tsx:58
msgid "Often useful for ERP system imports."
msgstr "Often useful for ERP system imports."

#: src/components/admin/UsersTable.tsx:377
msgid "Oldest sign in"
msgstr "Oldest sign in"

#: src/components/ExportForm.tsx:158
msgid "One column per attribute type will be generated."
msgstr "One column per attribute type will be generated."

#: src/components/PinnedCollections.tsx:72
msgid "Open options"
msgstr "Open options"

#: src/components/nav/TopbarMobile.tsx:17
msgid "Open sidebar"
msgstr "Open sidebar"

#: src/components/nav/ProfileDropdownMobile.tsx:17
msgid "Open user menu"
msgstr "Open user menu"

#: src/pages/public/SignInPage.tsx:208
#~ msgid "Or continue with"
#~ msgstr "Or continue with"

#: src/pages/app/errors/NotFound.tsx:20
#: src/pages/public/errors/NotFoundPublic.tsx:20
msgid "Page not found."
msgstr "Page not found."

#: src/components/SignInModal.tsx:96
#: src/pages/app/admin/AdminEditUser.tsx:186
msgid "Password"
msgstr "Password"

#: src/components/admin/CreateUserModal.tsx:54
msgid "Password (optional)"
msgstr "Password (optional)"

#: src/components/PinnedCollections.tsx:19
msgid "Pinned Collections"
msgstr "Pinned Collections"

#: src/components/EnvironmentWarning.tsx:28
msgid "Please go to <0>Samling.io</0> for the production environment."
msgstr "Please go to <0>Samling.io</0> for the production environment."

#: src/components/admin/NewCollectionPricingGroupModal.tsx:30
msgid "Please select a date."
msgstr "Please select a date."

#: src/pages/app/admin/AdminEditGroup.tsx:569
#~ msgid "Price dates"
#~ msgstr "Price dates"

#: src/components/ExportForm.tsx:88
msgid "Price list"
msgstr "Price list"

#: src/components/CollectionTablePriceListsMenu.tsx:43
#: src/components/admin/GroupsTable.tsx:88
#: src/components/admin/NewCollectionPricingGroupModal.tsx:99
#: src/pages/app/admin/AdminEditGroup.tsx:243
msgid "Price lists"
msgstr "Price lists"

#: src/components/ActivePriceLists.tsx:19
msgid "Price lists<0>, active</0>"
msgstr "Price lists<0>, active</0>"

#: src/pages/public/SplashPage.tsx:15
msgid "Pricing"
msgstr "Pricing"

#: src/components/admin/NewCollectionPricingGroupModal.tsx:86
msgid "Pricing date"
msgstr "Pricing date"

#: src/pages/app/admin/AdminEditCollection.tsx:425
msgid "Pricing dates"
msgstr "Pricing dates"

#: src/pages/app/admin/AdminEditCollection.tsx:324
#~ msgid "Pricing stuff."
#~ msgstr "Pricing stuff."

#: src/components/ExportForm.tsx:169
msgid "Primary image"
msgstr "Primary image"

#: src/pages/public/SplashPage.tsx:12
msgid "Product"
msgstr "Product"

#: src/pages/app/Style.tsx:158
msgid "Product information"
msgstr "Product information"

#: src/pages/public/SplashPage.tsx:194
msgid "Provide your e-mail below to hear from our team."
msgstr "Provide your e-mail below to hear from our team."

#: src/components/nav/SidebarMobile.tsx:107
#~ msgid "Recent"
#~ msgstr "Recent"

#: src/components/SignInModal.tsx:126
msgid "Remember me"
msgstr "Remember me"

#: src/components/admin/MultipleCombobox.tsx:153
msgid "Remove filter"
msgstr "Remove filter"

#: src/components/filters/ActiveFilters.tsx:151
msgid "Remove filter for {0}"
msgstr "Remove filter for {0}"

#: src/components/PinnedCollections.tsx:111
msgid "Remove from pinned"
msgstr "Remove from pinned"

#: src/components/forms/AssociatedPriceListsEditor.tsx:80
#~ msgid "Remove price list"
#~ msgstr "Remove price list"

#: src/components/ActivePriceLists.tsx:44
msgid "Remove {0}"
msgstr "Remove {0}"

#: src/pages/app/admin/AdminEditGroup.tsx:438
#: src/pages/app/admin/AdminEditGroup.tsx:619
#: src/pages/app/admin/AdminEditUser.tsx:334
#: src/pages/app/admin/AdminEditUser.tsx:473
msgid "Remove<0>, {0}</0>"
msgstr "Remove<0>, {0}</0>"

#: src/components/PinnedCollections.tsx:77
#~ msgid "Removed from pinned"
#~ msgstr "Removed from pinned"

#: src/components/admin/AddCollectionItemsModal.tsx:266
msgid "Results from current filters"
msgstr "Results from current filters"

#: src/components/CollectionTable.tsx:62
msgid "Retail price"
msgstr "Retail price"

#: src/components/ExportForm.tsx:126
msgid "Retail price amount"
msgstr "Retail price amount"

#: src/components/ExportForm.tsx:131
msgid "Retail price currency"
msgstr "Retail price currency"

#: src/components/ExportForm.tsx:136
msgid "Retail price list"
msgstr "Retail price list"

#: src/components/admin/CreateUserModal.tsx:64
#: src/components/admin/UsersTable.tsx:219
#: src/components/admin/UsersTable.tsx:383
#: src/pages/app/admin/AdminEditUser.tsx:257
msgid "Roles"
msgstr "Roles"

#: src/components/nav/SidebarDesktop.tsx:84
#: src/components/nav/SidebarMobile.tsx:134
msgid "Samling.io logotype"
msgstr "Samling.io logotype"

#: src/pages/app/admin/AdminCreateCollection.tsx:239
#: src/pages/app/admin/AdminEditCollection.tsx:371
#: src/pages/app/admin/AdminEditGroup.tsx:284
#: src/pages/app/admin/AdminEditUser.tsx:220
msgid "Save"
msgstr "Save"

#: src/pages/app/admin/AdminCreateCollection.tsx:239
#: src/pages/app/admin/AdminEditCollection.tsx:371
msgid "Saving..."
msgstr "Saving..."

#: src/components/nav/SidebarSearch.tsx:8
#: src/components/nav/SidebarSearch.tsx:25
msgid "Search"
msgstr "Search"

#: src/components/ExportForm.tsx:123
#: src/components/columns/data/Colors.tsx:102
#: src/components/columns/data/Colors.tsx:117
#: src/components/filters/ServiceItemFilter.tsx:23
msgid "Service item"
msgstr "Service item"

#: src/components/filters/ServiceItemFilter.tsx:34
#~ msgid "Service item styles"
#~ msgstr "Service item styles"

#: src/components/filters/ServiceItemFilter.tsx:34
msgid "Service items"
msgstr "Service items"

#: src/components/filters/ServiceItemFilter.tsx:34
#~ msgid "ServiceItem styles"
#~ msgstr "ServiceItem styles"

#: src/components/nav/ProfileDropdown.tsx:27
msgid "Settings"
msgstr "Settings"

#: src/components/PinnedCollections.tsx:124
msgid "Share"
msgstr "Share"

#: src/pages/public/SplashPage.tsx:158
#~ msgid "Sign In"
#~ msgstr "Sign In"

#: src/components/SignInModal.tsx:59
#: src/components/SignInModal.tsx:142
#: src/pages/public/SignInPage.tsx:32
#: src/pages/public/errors/Unauthorized.tsx:30
msgid "Sign in"
msgstr "Sign in"

#: src/pages/public/SignInPage.tsx:105
msgid "Sign in to your account"
msgstr "Sign in to your account"

#: src/pages/public/SignInPage.tsx:192
msgid "Sign in with Microsoft"
msgstr "Sign in with Microsoft"

#: src/components/nav/ProfileDropdown.tsx:34
#: src/pages/app/AlreadySignedInPage.tsx:39
#: src/pages/app/SignOutPage.tsx:14
msgid "Sign out"
msgstr "Sign out"

#: src/components/ExportForm.tsx:79
msgid "Size"
msgstr "Size"

#: src/components/ExportMenu.tsx:135
#: src/components/ExportMenu.tsx:191
#~ msgid "Size level"
#~ msgstr "Size level"

#: src/components/ExportForm.tsx:121
msgid "Size number"
msgstr "Size number"

#: src/components/ExportForm.tsx:120
msgid "Size type"
msgstr "Size type"

#: src/pages/app/admin/AdminCreateCollection.tsx:196
#: src/pages/app/admin/AdminEditCollection.tsx:326
#: src/pages/app/admin/AdminEditGroup.tsx:208
msgid "Slug"
msgstr "Slug"

#: src/pages/app/admin/AdminEditCollection.tsx:142
#~ msgid "Some collection name..."
#~ msgstr "Some collection name..."

#: src/pages/app/admin/AdminCreateCollection.tsx:205
#: src/pages/app/admin/AdminEditCollection.tsx:335
#: src/pages/app/admin/AdminEditGroup.tsx:218
msgid "Some external ID value..."
msgstr "Some external ID value..."

#: src/pages/app/admin/AdminEditGroup.tsx:196
msgid "Some group description..."
msgstr "Some group description..."

#: src/pages/app/admin/AdminEditGroup.tsx:185
msgid "Some group name..."
msgstr "Some group name..."

#: src/pages/app/admin/AdminCreateCollection.tsx:195
#: src/pages/app/admin/AdminEditCollection.tsx:325
#: src/pages/app/admin/AdminEditGroup.tsx:207
msgid "Some slug value..."
msgstr "Some slug value..."

#: src/pages/app/errors/NotFound.tsx:23
#: src/pages/public/errors/NotFoundPublic.tsx:23
msgid "Sorry, we couldn’t find the page you’re looking for."
msgstr "Sorry, we couldn’t find the page you’re looking for."

#: src/components/CollectionTableSortMenu.tsx:30
msgid "Sort by"
msgstr "Sort by"

#: src/components/admin/AddCollectionItemsModal.tsx:166
#: src/pages/app/admin/AdminEditGroup.tsx:354
msgid "Status"
msgstr "Status"

#: src/components/CollectionTable.tsx:50
#: src/components/ExportForm.tsx:72
#: src/components/admin/AddCollectionItemsModal.tsx:208
#: src/components/filters/ActiveFilters.tsx:40
#: src/components/filters/ActiveFilters.tsx:49
#: src/pages/app/admin/AdminEditCollection.tsx:697
msgid "Style"
msgstr "Style"

#: src/components/ExportForm.tsx:107
msgid "Style description"
msgstr "Style description"

#: src/components/ExportForm.tsx:173
msgid "Style external id"
msgstr "Style external id"

#: src/components/ExportMenu.tsx:103
#: src/components/ExportMenu.tsx:161
#~ msgid "Style level"
#~ msgstr "Style level"

#: src/components/ExportForm.tsx:104
msgid "Style name"
msgstr "Style name"

#: src/components/ExportForm.tsx:103
msgid "Style number"
msgstr "Style number"

#: src/components/filters/NewFilter.tsx:24
#: src/components/filters/StyleFilter.tsx:55
msgid "Styles"
msgstr "Styles"

#: src/pages/app/admin/AdminEditCollection.tsx:618
msgid "Styles, colors and sizes to associate with this collection."
msgstr "Styles, colors and sizes to associate with this collection."

#: src/pages/app/admin/AdminCreateCollection.tsx:89
#: src/pages/app/admin/AdminEditCollection.tsx:180
#: src/pages/app/admin/AdminEditGroup.tsx:141
#: src/pages/app/admin/AdminEditUser.tsx:121
msgid "Success!"
msgstr "Success!"

#: src/state/slices/user.ts:81
msgid "Successfully signed in"
msgstr "Successfully signed in"

#: src/state/slices/user.ts:99
msgid "Successfully signed out"
msgstr "Successfully signed out"

#: src/components/nav/ProfileDropdown.tsx:18
#: src/components/nav/ProfileDropdown.tsx:33
msgid "Support"
msgstr "Support"

#: src/components/ExportForm.tsx:166
msgid "Tariff no"
msgstr "Tariff no"

#: src/pages/public/SignInPage.tsx:56
#: src/pages/public/SignInPage.tsx:83
#: src/pages/public/SignInPage.tsx:176
msgid "Technical error prevents login"
msgstr "Technical error prevents login"

#: src/pages/app/admin/AdminCreateCollection.tsx:90
msgid "The collection \"{0}\" was successfully created."
msgstr "The collection \"{0}\" was successfully created."

#: src/pages/app/admin/AdminEditCollection.tsx:181
msgid "The collection \"{0}\" was successfully updated."
msgstr "The collection \"{0}\" was successfully updated."

#: src/state/slices/user.ts:131
msgid "The given e-mail and password combination does not exist."
msgstr "The given e-mail and password combination does not exist."

#: src/pages/app/admin/AdminEditGroup.tsx:142
msgid "The group \"{0}\" was successfully updated."
msgstr "The group \"{0}\" was successfully updated."

#: src/pages/app/admin/AdminEditUser.tsx:384
msgid "The groups that this user belong to."
msgstr "The groups that this user belong to."

#: src/components/admin/NewCollectionPricingGroupModal.tsx:32
#~ msgid "The price lists to add."
#~ msgstr "The price lists to add."

#: src/pages/app/admin/AdminEditUser.tsx:260
msgid "The roles that are assigned to this user."
msgstr "The roles that are assigned to this user."

#: src/pages/app/admin/AdminEditUser.tsx:122
msgid "The user \"{0}\" was successfully updated."
msgstr "The user \"{0}\" was successfully updated."

#: src/pages/app/admin/AdminEditGroup.tsx:333
msgid "The users that belong to this group."
msgstr "The users that belong to this group."

#: src/components/CollectionsGridList.tsx:73
msgid "There are no collections available to you. Talk an administrator to get access."
msgstr "There are no collections available to you. Talk an administrator to get access."

#: src/components/admin/CollectionsTable.tsx:38
msgid "These are all the collections that exist in the system."
msgstr "These are all the collections that exist in the system."

#: src/pages/app/admin/AdminEditCollection.tsx:428
msgid "These dates decide which item prices should be picked up for each price list. Each item price is associated with a start date and end date, so the date you choose has to fall within those."
msgstr "These dates decide which item prices should be picked up for each price list. Each item price is associated with a start date and end date, so the date you choose has to fall within those."

#: src/components/admin/CreateUserModal.tsx:65
msgid "These roles will be assign to the user and determine what they can and cannot do."
msgstr "These roles will be assign to the user and determine what they can and cannot do."

#: src/components/admin/UsersTable.tsx:144
msgid "These users have access to the system."
msgstr "These users have access to the system."

#: src/components/columns/data/Colors.tsx:163
msgid "This color first appears in this collection."
msgstr "This color first appears in this collection."

#: src/components/admin/AddCollectionItemsModal.tsx:167
msgid "This filter is applied at the size level which means that it will affect which colors/sizes are selected for each style."
msgstr "This filter is applied at the size level which means that it will affect which colors/sizes are selected for each style."

#: src/components/columns/data/Style.tsx:115
msgid "This is a Core style, meaning that it represents the brand's core values."
msgstr "This is a Core style, meaning that it represents the brand's core values."

#: src/components/columns/data/Colors.tsx:120
msgid "This is a service item, meaning that it's our intention to never run out of stock with this style."
msgstr "This is a service item, meaning that it's our intention to never run out of stock with this style."

#: src/pages/app/admin/AdminHome.tsx:42
msgid "This is where you create collections and associate styles, colors and sizes to them."
msgstr "This is where you create collections and associate styles, colors and sizes to them."

#: src/components/columns/data/Style.tsx:158
msgid "This style first appears in this collection."
msgstr "This style first appears in this collection."

#: src/components/ExportForm.tsx:372
msgid "Tick the data types that you want to appear on their own separate line in the exported file."
msgstr "Tick the data types that you want to appear on their own separate line in the exported file."

#: src/pages/public/SplashPage.tsx:181
#~ msgid "Tired of collecting data from multiple different ERP systems and combining them in your Excel sheets? This Software-as-a-Service is your savior."
#~ msgstr "Tired of collecting data from multiple different ERP systems and combining them in your Excel sheets? This Software-as-a-Service is your savior."

#: src/pages/public/SplashPage.tsx:186
msgid "Tired of collecting data from multiple different ERP systems and combining them in your Excel sheets? This Software-as-a-Service wants to help you."
msgstr "Tired of collecting data from multiple different ERP systems and combining them in your Excel sheets? This Software-as-a-Service wants to help you."

#: src/components/nav/Sidebar.tsx:41
msgid "To public page"
msgstr "To public page"

#: src/pages/public/errors/Unauthorized.tsx:20
msgid "Unauthorized."
msgstr "Unauthorized."

#: src/components/ExportForm.tsx:141
msgid "Unit price amount"
msgstr "Unit price amount"

#: src/components/ExportForm.tsx:146
msgid "Unit price currency"
msgstr "Unit price currency"

#: src/components/ExportForm.tsx:151
msgid "Unit price list"
msgstr "Unit price list"

#: src/components/CollectionTable.tsx:68
msgid "Unit prices"
msgstr "Unit prices"

#: src/components/ExportForm.tsx:168
msgid "Unit volume"
msgstr "Unit volume"

#: src/components/forms/ImageInput.tsx:37
msgid "Up to {maxSizeMegaBytes} MB."
msgstr "Up to {maxSizeMegaBytes} MB."

#: src/components/admin/CollectionsTable.tsx:94
msgid "Updated at"
msgstr "Updated at"

#: src/components/forms/ImageInput.tsx:115
msgid "Upload an image"
msgstr "Upload an image"

#: src/pages/app/admin/AdminHome.tsx:35
msgid "Use groups to specify which collections and price lists users have access to."
msgstr "Use groups to specify which collections and price lists users have access to."

#: src/components/admin/NewCollectionPricingGroupModal.tsx:63
#~ msgid "Use this form to add a new pricing date group."
#~ msgstr "Use this form to add a new pricing date group."

#: src/components/admin/CreateUserModal.tsx:126
msgid "Use this form to create a new user. All users can sign in via a Google or Microsoft account matching the entered e-mail address. Filling in a password is optional."
msgstr "Use this form to create a new user. All users can sign in via a Google or Microsoft account matching the entered e-mail address. Filling in a password is optional."

#: src/components/ExportForm.tsx:270
msgid "Use this form to export the current selection of items to file."
msgstr "Use this form to export the current selection of items to file."

#: src/components/ExportForm.tsx:64
msgid "Useful for integration with other systems."
msgstr "Useful for integration with other systems."

#: src/components/admin/UsersTable.tsx:207
msgid "User"
msgstr "User"

#: src/components/nav/ProfileDropdownDesktop.tsx:25
#: src/components/nav/ProfileDropdownDesktop.tsx:30
msgid "User profile"
msgstr "User profile"

#: src/components/admin/GroupsTable.tsx:76
#: src/components/admin/UsersTable.tsx:141
#: src/pages/app/admin/AdminEditGroup.tsx:330
#: src/pages/app/admin/AdminEditUser.tsx:56
#: src/pages/app/admin/AdminHome.tsx:25
#: src/pages/app/admin/AdminUsers.tsx:13
#: src/pages/app/admin/AdminUsers.tsx:92
msgid "Users"
msgstr "Users"

#: src/components/ExportForm.tsx:52
msgid "Uses the newer .xlsx format."
msgstr "Uses the newer .xlsx format."

#: src/components/PinnedCollections.tsx:96
msgid "View"
msgstr "View"

#: src/components/CollectionsGridList.tsx:39
msgid "View details for {0}"
msgstr "View details for {0}"

#: src/components/nav/ProfileDropdown.tsx:24
msgid "View profile"
msgstr "View profile"

#: src/roles.ts:21
msgid "Viewer"
msgstr "Viewer"

#: src/roles.ts:22
msgid "Viewers"
msgstr "Viewers"

#: src/pages/app/admin/AdminEditGroup.tsx:498
msgid "Which collections users of this group will have access to."
msgstr "Which collections users of this group will have access to."

#: src/components/ExportForm.tsx:420
msgid "Which fields you want to include in the exported file."
msgstr "Which fields you want to include in the exported file."

#: src/components/ExportForm.tsx:325
msgid "Which format you want to export to."
msgstr "Which format you want to export to."

#: src/components/ExportForm.tsx:249
#~ msgid "Which format you want to export to. CSV is often useful for import into ERP system and JSON can be helpful for integration developers."
#~ msgstr "Which format you want to export to. CSV is often useful for import into ERP system and JSON can be helpful for integration developers."

#: src/components/ExportForm.tsx:288
msgid "Which language you want to export to."
msgstr "Which language you want to export to."

#: src/pages/app/admin/AdminEditGroup.tsx:246
msgid "Which price lists users of this group will have access to."
msgstr "Which price lists users of this group will have access to."

#: src/state/slices/user.ts:130
msgid "Wrong credentials"
msgstr "Wrong credentials"

#: src/pages/app/AlreadySignedInPage.tsx:30
msgid "You are already signed in as {0} ({1})"
msgstr "You are already signed in as {0} ({1})"

#: src/state/slices/user.ts:82
msgid "You are now signed in with account {0}."
msgstr "You are now signed in with account {0}."

#: src/state/slices/user.ts:143
msgid "You don't have access to any organizations. Please contact an administrator."
msgstr "You don't have access to any organizations. Please contact an administrator."

#: src/pages/public/errors/Unauthorized.tsx:23
msgid "You need to sign in to be able to view this page."
msgstr "You need to sign in to be able to view this page."

#: src/state/slices/user.ts:118
msgid "You were automatically signed out from account {userEmail} because of an expired token. Please sign in again."
msgstr "You were automatically signed out from account {userEmail} because of an expired token. Please sign in again."

#: src/state/slices/user.ts:100
msgid "You've signed out from account {userEmail}."
msgstr "You've signed out from account {userEmail}."

#: src/components/admin/CreateUserModal.tsx:54
#~ msgid "YuXQFHDK2OF8Or"
#~ msgstr "YuXQFHDK2OF8Or"

#: src/components/filters/ActiveFilters.tsx:83
msgid "colors"
msgstr "colors"

#: src/pages/app/admin/AdminEditUser.tsx:175
msgid "jane.doe@example.com"
msgstr "jane.doe@example.com"

#: src/components/forms/ImageInput.tsx:126
msgid "or drag and drop."
msgstr "or drag and drop."

#: src/components/filters/ActiveFilters.tsx:83
msgid "styles"
msgstr "styles"

#: src/components/admin/CreateUserModal.tsx:45
msgid "user@example.com"
msgstr "user@example.com"

#: src/components/PinnedCollections.tsx:35
#~ msgid "{0, plural, =0 {No styles} one {One style} other {# styles}}"
#~ msgstr "{0, plural, =0 {No styles} one {One style} other {# styles}}"

#: src/components/admin/GroupsTable.tsx:134
#: src/pages/app/admin/AdminEditUser.tsx:455
msgid "{0, plural, one {# collection} other {# collections}}"
msgstr "{0, plural, one {# collection} other {# collections}}"

#: src/components/admin/GroupsTable.tsx:143
#: src/pages/app/admin/AdminEditUser.tsx:462
msgid "{0, plural, one {# price list} other {# price lists}}"
msgstr "{0, plural, one {# price list} other {# price lists}}"

#: src/components/CollectionsGridList.tsx:49
#: src/components/PinnedCollections.tsx:62
msgid "{0, plural, one {# style} other {# styles}}"
msgstr "{0, plural, one {# style} other {# styles}}"

#: src/components/admin/GroupsTable.tsx:125
msgid "{0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {# user} other {# users}}"

#: src/pages/app/admin/AdminEditCollection.tsx:647
msgid "{0, plural, one {Disable # style} other {Disable # styles}}"
msgstr "{0, plural, one {Disable # style} other {Disable # styles}}"

#: src/pages/app/admin/AdminEditCollection.tsx:661
msgid "{0, plural, one {Enable # style} other {Enable # styles}}"
msgstr "{0, plural, one {Enable # style} other {Enable # styles}}"

#: src/components/CollectionDetailTable.tsx:61
#~ msgid "{0, plural, one {Has one variant} other {Has # variants}}"
#~ msgstr "{0, plural, one {Has one variant} other {Has # variants}}"

#: src/pages/app/admin/AdminEditCollection.tsx:581
#~ msgid "{0, plural, one {Remove # style} other {Remove # styles}}"
#~ msgstr "{0, plural, one {Remove # style} other {Remove # styles}}"

#: src/components/CollectionTable.tsx:46
#: src/components/ExportForm.tsx:49
#: src/components/ExportForm.tsx:50
#: src/components/ExportForm.tsx:55
#: src/components/ExportForm.tsx:56
#: src/components/ExportForm.tsx:61
#: src/components/ExportForm.tsx:62
#: src/components/ExportForm.tsx:68
#: src/components/ExportForm.tsx:69
#: src/components/ExportForm.tsx:70
#: src/components/ExportForm.tsx:73
#: src/components/ExportForm.tsx:79
#: src/components/ExportForm.tsx:85
#: src/components/ExportForm.tsx:92
#: src/components/ExportForm.tsx:93
#: src/components/ExportForm.tsx:96
#: src/components/ExportForm.tsx:99
#: src/components/ExportForm.tsx:100
#: src/components/ExportForm.tsx:103
#: src/components/ExportForm.tsx:106
#: src/components/ExportForm.tsx:107
#: src/components/ExportForm.tsx:108
#: src/components/ExportForm.tsx:109
#: src/components/ExportForm.tsx:110
#: src/components/ExportForm.tsx:111
#: src/components/ExportForm.tsx:114
#: src/components/ExportForm.tsx:119
#: src/components/ExportForm.tsx:124
#: src/components/ExportForm.tsx:129
#: src/components/ExportForm.tsx:134
#: src/components/ExportForm.tsx:139
#: src/components/ExportForm.tsx:142
#: src/components/ExportForm.tsx:145
#: src/components/ExportForm.tsx:146
#: src/components/ExportForm.tsx:151
#: src/components/ExportForm.tsx:154
#: src/components/ExportForm.tsx:155
#: src/components/ExportForm.tsx:156
#: src/components/ExportForm.tsx:157
#: src/components/ExportForm.tsx:158
#: src/components/ExportForm.tsx:159
#: src/components/ExportForm.tsx:162
#: src/components/ExportForm.tsx:167
#: src/components/admin/AddCollectionItemsModal.tsx:157
#: src/components/admin/AddCollectionItemsModal.tsx:160
#: src/components/admin/AddCollectionItemsModal.tsx:165
#: src/components/admin/AddCollectionItemsModal.tsx:177
#: src/components/admin/AddCollectionItemsModal.tsx:189
#: src/components/admin/AddCollectionItemsModal.tsx:210
#: src/components/admin/AddCollectionItemsModal.tsx:217
#: src/components/admin/AddCollectionItemsModal.tsx:241
#: src/components/admin/AddCollectionItemsModal.tsx:242
#: src/components/admin/AddCollectionItemsModal.tsx:243
#: src/components/admin/AddCollectionItemsModal.tsx:248
#: src/components/admin/CreateGroupModal.tsx:27
#: src/components/admin/CreateGroupModal.tsx:28
#: src/components/admin/CreateGroupModal.tsx:63
#: src/components/admin/CreateUserModal.tsx:33
#: src/components/admin/CreateUserModal.tsx:34
#: src/components/admin/CreateUserModal.tsx:43
#: src/components/admin/CreateUserModal.tsx:44
#: src/components/admin/CreateUserModal.tsx:53
#: src/components/admin/CreateUserModal.tsx:54
#: src/components/admin/CreateUserModal.tsx:63
#: src/components/admin/CreateUserModal.tsx:64
#: src/components/admin/CreateUserModal.tsx:131
#: src/components/admin/DeleteCollectionModal.tsx:58
#: src/components/admin/DeleteGroupModal.tsx:50
#: src/components/admin/DeleteUserModal.tsx:50
#: src/components/admin/NewCollectionPricingGroupModal.tsx:23
#: src/components/admin/NewCollectionPricingGroupModal.tsx:31
#: src/components/admin/NewCollectionPricingGroupModal.tsx:32
#: src/components/admin/NewCollectionPricingGroupModal.tsx:65
#: src/components/admin/UsersTable.tsx:85
#: src/components/admin/UsersTable.tsx:91
#: src/components/admin/UsersTable.tsx:354
#: src/components/admin/UsersTable.tsx:355
#: src/components/admin/UsersTable.tsx:356
#: src/components/admin/UsersTable.tsx:357
#: src/components/admin/UsersTable.tsx:363
#: src/components/admin/UsersTable.tsx:381
#: src/components/columns/data/Colors.tsx:35
#: src/components/columns/data/Colors.tsx:101
#: src/components/columns/data/Colors.tsx:144
#: src/components/columns/data/Colors.tsx:227
#: src/components/columns/data/Style.tsx:16
#: src/components/columns/data/Style.tsx:97
#: src/components/columns/data/Style.tsx:140
#: src/components/filters/ActiveFilters.tsx:40
#: src/components/filters/ActiveFilters.tsx:49
#: src/components/filters/ActiveFilters.tsx:63
#: src/components/filters/ActiveFilters.tsx:72
#: src/components/filters/ActiveFilters.tsx:81
#: src/components/filters/ActiveFilters.tsx:83
#: src/components/filters/ActiveFilters.tsx:83
#: src/components/filters/ActiveFilters.tsx:134
#: src/components/filters/NewFilter.tsx:24
#: src/components/filters/NewFilter.tsx:25
#: src/components/forms/AssociatedPriceListsEditor.tsx:102
#: src/components/forms/ImageInput.tsx:37
#: src/components/forms/ImageInput.tsx:38
#: src/components/forms/ImageInput.tsx:92
#: src/components/forms/ImageInput.tsx:92
#: src/components/nav/ProfileDropdown.tsx:17
#: src/components/nav/ProfileDropdown.tsx:18
#: src/components/nav/ProfileDropdown.tsx:24
#: src/components/nav/ProfileDropdown.tsx:27
#: src/components/nav/ProfileDropdown.tsx:29
#: src/components/nav/ProfileDropdown.tsx:33
#: src/components/nav/ProfileDropdown.tsx:34
#: src/components/nav/ProfileDropdownDesktop.tsx:25
#: src/components/nav/ProfileDropdownDesktop.tsx:30
#: src/components/nav/Sidebar.tsx:22
#: src/components/nav/Sidebar.tsx:34
#: src/components/nav/Sidebar.tsx:41
#: src/components/nav/SidebarDesktop.tsx:24
#: src/components/nav/SidebarDesktop.tsx:84
#: src/components/nav/SidebarMobile.tsx:78
#: src/components/nav/SidebarMobile.tsx:134
#: src/components/nav/SidebarSearch.tsx:25
#: src/pages/app/AlreadySignedInPage.tsx:11
#: src/pages/app/HomeScreen.tsx:12
#: src/pages/app/SignOutPage.tsx:14
#: src/pages/app/Style.tsx:82
#: src/pages/app/admin/AdminCollections.tsx:12
#: src/pages/app/admin/AdminCollections.tsx:12
#: src/pages/app/admin/AdminCollections.tsx:45
#: src/pages/app/admin/AdminCollections.tsx:47
#: src/pages/app/admin/AdminCreateCollection.tsx:24
#: src/pages/app/admin/AdminCreateCollection.tsx:24
#: src/pages/app/admin/AdminCreateCollection.tsx:32
#: src/pages/app/admin/AdminCreateCollection.tsx:34
#: src/pages/app/admin/AdminCreateCollection.tsx:39
#: src/pages/app/admin/AdminCreateCollection.tsx:144
#: src/pages/app/admin/AdminCreateCollection.tsx:166
#: src/pages/app/admin/AdminCreateCollection.tsx:175
#: src/pages/app/admin/AdminCreateCollection.tsx:177
#: src/pages/app/admin/AdminCreateCollection.tsx:195
#: src/pages/app/admin/AdminCreateCollection.tsx:196
#: src/pages/app/admin/AdminCreateCollection.tsx:205
#: src/pages/app/admin/AdminCreateCollection.tsx:206
#: src/pages/app/admin/AdminEditCollection.tsx:65
#: src/pages/app/admin/AdminEditCollection.tsx:65
#: src/pages/app/admin/AdminEditCollection.tsx:76
#: src/pages/app/admin/AdminEditCollection.tsx:78
#: src/pages/app/admin/AdminEditCollection.tsx:160
#: src/pages/app/admin/AdminEditCollection.tsx:246
#: src/pages/app/admin/AdminEditCollection.tsx:262
#: src/pages/app/admin/AdminEditCollection.tsx:264
#: src/pages/app/admin/AdminEditCollection.tsx:296
#: src/pages/app/admin/AdminEditCollection.tsx:297
#: src/pages/app/admin/AdminEditCollection.tsx:306
#: src/pages/app/admin/AdminEditCollection.tsx:307
#: src/pages/app/admin/AdminEditCollection.tsx:770
#: src/pages/app/admin/AdminEditCollection.tsx:770
#: src/pages/app/admin/AdminEditCollection.tsx:831
#: src/pages/app/admin/AdminEditCollection.tsx:831
#: src/pages/app/admin/AdminEditGroup.tsx:47
#: src/pages/app/admin/AdminEditGroup.tsx:60
#: src/pages/app/admin/AdminEditGroup.tsx:62
#: src/pages/app/admin/AdminEditGroup.tsx:67
#: src/pages/app/admin/AdminEditGroup.tsx:181
#: src/pages/app/admin/AdminEditGroup.tsx:182
#: src/pages/app/admin/AdminEditGroup.tsx:192
#: src/pages/app/admin/AdminEditGroup.tsx:193
#: src/pages/app/admin/AdminEditGroup.tsx:203
#: src/pages/app/admin/AdminEditGroup.tsx:204
#: src/pages/app/admin/AdminEditGroup.tsx:214
#: src/pages/app/admin/AdminEditGroup.tsx:215
#: src/pages/app/admin/AdminEditGroup.tsx:377
#: src/pages/app/admin/AdminEditGroup.tsx:550
#: src/pages/app/admin/AdminEditUser.tsx:40
#: src/pages/app/admin/AdminEditUser.tsx:53
#: src/pages/app/admin/AdminEditUser.tsx:55
#: src/pages/app/admin/AdminEditUser.tsx:159
#: src/pages/app/admin/AdminEditUser.tsx:160
#: src/pages/app/admin/AdminEditUser.tsx:169
#: src/pages/app/admin/AdminEditUser.tsx:170
#: src/pages/app/admin/AdminEditUser.tsx:179
#: src/pages/app/admin/AdminEditUser.tsx:180
#: src/pages/app/admin/AdminEditUser.tsx:294
#: src/pages/app/admin/AdminEditUser.tsx:422
#: src/pages/app/admin/AdminGroups.tsx:12
#: src/pages/app/admin/AdminGroups.tsx:12
#: src/pages/app/admin/AdminGroups.tsx:40
#: src/pages/app/admin/AdminGroups.tsx:41
#: src/pages/app/admin/AdminHome.tsx:21
#: src/pages/app/admin/AdminHome.tsx:25
#: src/pages/app/admin/AdminHome.tsx:27
#: src/pages/app/admin/AdminHome.tsx:28
#: src/pages/app/admin/AdminHome.tsx:32
#: src/pages/app/admin/AdminHome.tsx:34
#: src/pages/app/admin/AdminHome.tsx:35
#: src/pages/app/admin/AdminHome.tsx:39
#: src/pages/app/admin/AdminHome.tsx:41
#: src/pages/app/admin/AdminHome.tsx:42
#: src/pages/app/admin/AdminHome.tsx:49
#: src/pages/app/admin/AdminUsers.tsx:13
#: src/pages/app/admin/AdminUsers.tsx:13
#: src/pages/app/admin/AdminUsers.tsx:91
#: src/pages/app/admin/AdminUsers.tsx:92
#: src/pages/public/SignInPage.tsx:32
#: src/pages/public/SignInPage.tsx:56
#: src/pages/public/SignInPage.tsx:83
#: src/pages/public/SignInPage.tsx:176
#: src/pages/public/SignInPage.tsx:192
#: src/pages/public/SplashPage.tsx:12
#: src/pages/public/SplashPage.tsx:13
#: src/pages/public/SplashPage.tsx:14
#: src/pages/public/SplashPage.tsx:15
#: src/pages/public/SplashPage.tsx:207
#: src/roles.ts:14
#: src/roles.ts:15
#: src/roles.ts:16
#: src/roles.ts:21
#: src/roles.ts:22
#: src/roles.ts:23
#: src/roles.ts:28
#: src/roles.ts:29
#: src/roles.ts:30
#: src/roles.ts:35
#: src/roles.ts:36
#: src/roles.ts:37
#: src/state/slices/user.ts:43
#: src/state/slices/user.ts:58
#: src/state/slices/user.ts:59
#: src/state/slices/user.ts:83
#: src/state/slices/user.ts:84
#: src/state/slices/user.ts:101
#: src/state/slices/user.ts:102
#: src/state/slices/user.ts:119
#: src/state/slices/user.ts:120
#: src/state/slices/user.ts:132
#: src/state/slices/user.ts:133
#: src/state/slices/user.ts:144
#: src/state/slices/user.ts:145
#: src/types/columns.ts:34
#: src/types/columns.ts:40
#: src/types/columns.ts:46
#: src/types/columns.ts:52
#: src/types/other.ts:16
#: src/types/other.ts:17
#: src/types/other.ts:19
#: src/types/other.ts:23
#~ msgid "{0}"
#~ msgstr "{0}"

#: src/components/columns/data/Colors.tsx:223
msgid "{0} (+{1} more)"
msgstr "{0} (+{1} more)"

#: src/state/slices/user.ts:59
#~ msgid "{0} [{1}]"
#~ msgstr "{0} [{1}]"

#: src/components/filters/ActiveFilters.tsx:134
msgid "{0} filter {1}"
msgstr "{0} filter {1}"

#: src/components/nav/SidebarDesktop.tsx:24
#: src/components/nav/SidebarMobile.tsx:78
msgid "{0} logotype"
msgstr "{0} logotype"

#: src/components/ExportForm.tsx:429
msgid "{0} of {1} fields selected"
msgstr "{0} of {1} fields selected"

#: src/components/admin/UsersTable.tsx:255
msgid "{0} profile"
msgstr "{0} profile"

#: src/components/forms/ImageInput.tsx:38
msgid "{0}, up to {maxSizeMegaBytes} MB."
msgstr "{0}, up to {maxSizeMegaBytes} MB."