aboutsummaryrefslogtreecommitdiff
path: root/minecrafttrivia/mcdata/lang.json
blob: 4279485f383be68941f80418b231e1da4a416d73 (plain)
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
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
{
  "language.name": "English",
  "language.region": "United States",
  "language.code": "en_us",
  "narrator.button.accessibility": "Accessibility",
  "narrator.button.language": "Language",
  "narrator.button.difficulty_lock": "Difficulty lock",
  "narrator.button.difficulty_lock.unlocked": "Unlocked",
  "narrator.button.difficulty_lock.locked": "Locked",
  "narrator.screen.title": "Title Screen",
  "narrator.controls.reset": "Reset %s button",
  "narrator.controls.bound": "%s is bound to %s",
  "narrator.controls.unbound": "%s is not bound",
  "narrator.select": "Selected: %s",
  "narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s",
  "narrator.loading": "Loading: %s",
  "narrator.loading.done": "Done",
  "narrator.joining": "Joining",
  "narration.suggestion.tooltip": "Selected suggestion %d out of %d: %s (%s)",
  "narration.suggestion": "Selected suggestion %d out of %d: %s",
  "gui.done": "Done",
  "gui.cancel": "Cancel",
  "gui.back": "Back",
  "gui.toTitle": "Back to title screen",
  "gui.toMenu": "Back to server list",
  "gui.up": "Up",
  "gui.down": "Down",
  "gui.yes": "Yes",
  "gui.no": "No",
  "gui.none": "None",
  "gui.all": "All",
  "gui.ok": "Ok",
  "gui.proceed": "Proceed",
  "gui.recipebook.moreRecipes": "Right Click for more",
  "gui.recipebook.search_hint": "Search...",
  "gui.recipebook.toggleRecipes.all": "Showing all",
  "gui.recipebook.toggleRecipes.craftable": "Showing craftable",
  "gui.recipebook.toggleRecipes.smeltable": "Showing smeltable",
  "gui.recipebook.toggleRecipes.blastable": "Showing blastable",
  "gui.recipebook.toggleRecipes.smokable": "Showing smokable",
  "gui.narrate.button": "%s button",
  "gui.narrate.slider": "%s slider",
  "gui.narrate.editBox": "%s edit box: %s",
  "translation.test.none": "Hello, world!",
  "translation.test.complex": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!",
  "translation.test.escape": "%%s %%%s %%%%s %%%%%s",
  "translation.test.invalid": "hi %",
  "translation.test.invalid2": "hi %  s",
  "translation.test.args": "%s %s",
  "translation.test.world": "world",
  "menu.game": "Game Menu",
  "menu.singleplayer": "Singleplayer",
  "menu.multiplayer": "Multiplayer",
  "menu.online": "Minecraft Realms",
  "menu.options": "Options...",
  "menu.quit": "Quit Game",
  "menu.returnToMenu": "Save and Quit to Title",
  "menu.disconnect": "Disconnect",
  "menu.returnToGame": "Back to Game",
  "menu.generatingLevel": "Generating world",
  "menu.loadingLevel": "Loading world",
  "menu.savingLevel": "Saving world",
  "menu.working": "Working...",
  "menu.savingChunks": "Saving chunks",
  "menu.preparingSpawn": "Preparing spawn area: %s%%",
  "menu.loadingForcedChunks": "Loading forced chunks for dimension %s",
  "menu.generatingTerrain": "Building terrain",
  "menu.convertingLevel": "Converting world",
  "menu.respawning": "Respawning",
  "menu.shareToLan": "Open to LAN",
  "menu.sendFeedback": "Give Feedback",
  "menu.reportBugs": "Report Bugs",
  "menu.paused": "Game paused",
  "menu.modded": " (Modded)",
  "optimizeWorld.confirm.title": "Optimize world",
  "optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?",
  "optimizeWorld.title": "Optimizing World '%s'",
  "optimizeWorld.stage.counting": "Counting chunks...",
  "optimizeWorld.stage.upgrading": "Upgrading all chunks...",
  "optimizeWorld.stage.finished": "Finishing up...",
  "optimizeWorld.stage.failed": "Failed! :(",
  "optimizeWorld.info.converted": "Upgraded chunks: %s",
  "optimizeWorld.info.skipped": "Skipped chunks: %s",
  "optimizeWorld.info.total": "Total chunks: %s",
  "selectWorld.title": "Select World",
  "selectWorld.search": "search for worlds",
  "selectWorld.world": "World",
  "selectWorld.select": "Play Selected World",
  "selectWorld.create": "Create New World",
  "selectWorld.recreate": "Re-Create",
  "selectWorld.createDemo": "Play New Demo World",
  "selectWorld.delete": "Delete",
  "selectWorld.edit": "Edit",
  "selectWorld.edit.title": "Edit World",
  "selectWorld.edit.resetIcon": "Reset Icon",
  "selectWorld.edit.openFolder": "Open World Folder",
  "selectWorld.edit.save": "Save",
  "selectWorld.edit.backup": "Make Backup",
  "selectWorld.edit.backupFolder": "Open Backups Folder",
  "selectWorld.edit.backupFailed": "Backup failed",
  "selectWorld.edit.backupCreated": "Backed up: %s",
  "selectWorld.edit.backupSize": "size: %s MB",
  "selectWorld.edit.optimize": "Optimize World",
  "selectWorld.edit.export_worldgen_settings": "Export World Generation Settings",
  "selectWorld.edit.export_worldgen_settings.success": "Exported",
  "selectWorld.edit.export_worldgen_settings.failure": "Export failed",
  "selectWorld.deleteQuestion": "Are you sure you want to delete this world?",
  "selectWorld.deleteWarning": "'%s' will be lost forever! (A long time!)",
  "selectWorld.deleteButton": "Delete",
  "selectWorld.conversion": "Must be converted!",
  "selectWorld.locked": "Locked by another running instance of Minecraft",
  "selectWorld.newWorld": "New World",
  "selectWorld.enterName": "World Name",
  "selectWorld.resultFolder": "Will be saved in:",
  "selectWorld.enterSeed": "Seed for the world generator",
  "selectWorld.seedInfo": "Leave blank for a random seed",
  "selectWorld.cheats": "Cheats",
  "selectWorld.customizeType": "Customize",
  "selectWorld.version": "Version:",
  "selectWorld.versionUnknown": "unknown",
  "selectWorld.versionQuestion": "Do you really want to load this world?",
  "selectWorld.versionWarning": "This world was last played in version %s and loading it in this version could cause corruption!",
  "selectWorld.versionJoinButton": "Load Anyway",
  "selectWorld.backupQuestion": "Do you really want to load this world?",
  "selectWorld.backupWarning": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions!",
  "selectWorld.backupQuestion.customized": "Customized worlds are no longer supported",
  "selectWorld.backupWarning.customized": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!",
  "selectWorld.backupQuestion.experimental": "Worlds using Experimental Settings are not supported",
  "selectWorld.backupWarning.experimental": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!",
  "selectWorld.backupEraseCache": "Erase cached data",
  "selectWorld.backupJoinConfirmButton": "Create Backup and Load",
  "selectWorld.backupJoinSkipButton": "I know what I'm doing!",
  "selectWorld.tooltip.fromNewerVersion1": "World was saved in a newer version,",
  "selectWorld.tooltip.fromNewerVersion2": "loading this world could cause problems!",
  "selectWorld.tooltip.snapshot1": "Don't forget to back up this world",
  "selectWorld.tooltip.snapshot2": "before you load it in this snapshot.",
  "selectWorld.unable_to_load": "Unable to load worlds",
  "selectWorld.futureworld.error.title": "An error occurred!",
  "selectWorld.futureworld.error.text": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work.",
  "selectWorld.recreate.error.title": "An error occurred!",
  "selectWorld.recreate.error.text": "Something went wrong while trying to recreate a world.",
  "selectWorld.recreate.customized.title": "Customized worlds are no longer supported",
  "selectWorld.recreate.customized.text": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!",
  "selectWorld.load_folder_access": "Unable to read or access folder where game worlds are saved!",
  "selectWorld.access_failure": "Failed to access world",
  "selectWorld.delete_failure": "Failed to delete world",
  "selectWorld.data_read": "Reading world data...",
  "createWorld.customize.presets": "Presets",
  "createWorld.customize.presets.title": "Select a Preset",
  "createWorld.customize.presets.select": "Use Preset",
  "createWorld.customize.presets.share": "Want to share your preset with someone? Use the box below!",
  "createWorld.customize.presets.list": "Alternatively, here's some we made earlier!",
  "createWorld.customize.flat.title": "Superflat Customization",
  "createWorld.customize.flat.tile": "Layer Material",
  "createWorld.customize.flat.height": "Height",
  "createWorld.customize.flat.removeLayer": "Remove Layer",
  "createWorld.customize.flat.layer.top": "Top - %s",
  "createWorld.customize.flat.layer": "%s",
  "createWorld.customize.flat.layer.bottom": "Bottom - %s",
  "createWorld.customize.buffet.title": "Buffet world customization",
  "createWorld.customize.buffet.biome": "Please select a biome",
  "createWorld.customize.preset.classic_flat": "Classic Flat",
  "createWorld.customize.preset.tunnelers_dream": "Tunnelers' Dream",
  "createWorld.customize.preset.water_world": "Water World",
  "createWorld.customize.preset.overworld": "Overworld",
  "createWorld.customize.preset.snowy_kingdom": "Snowy Kingdom",
  "createWorld.customize.preset.bottomless_pit": "Bottomless Pit",
  "createWorld.customize.preset.desert": "Desert",
  "createWorld.customize.preset.redstone_ready": "Redstone Ready",
  "createWorld.customize.preset.the_void": "The Void",
  "createWorld.customize.custom.page0": "Basic Settings",
  "createWorld.customize.custom.page1": "Ore Settings",
  "createWorld.customize.custom.page2": "Advanced Settings (Expert Users Only!)",
  "createWorld.customize.custom.page3": "Extra Advanced Settings (Expert Users Only!)",
  "createWorld.customize.custom.randomize": "Randomize",
  "createWorld.customize.custom.prev": "Previous Page",
  "createWorld.customize.custom.next": "Next Page",
  "createWorld.customize.custom.defaults": "Defaults",
  "createWorld.customize.custom.confirm1": "This will overwrite your current",
  "createWorld.customize.custom.confirm2": "settings and cannot be undone.",
  "createWorld.customize.custom.confirmTitle": "Warning!",
  "createWorld.customize.custom.mainNoiseScaleX": "Main Noise Scale X",
  "createWorld.customize.custom.mainNoiseScaleY": "Main Noise Scale Y",
  "createWorld.customize.custom.mainNoiseScaleZ": "Main Noise Scale Z",
  "createWorld.customize.custom.depthNoiseScaleX": "Depth Noise Scale X",
  "createWorld.customize.custom.depthNoiseScaleZ": "Depth Noise Scale Z",
  "createWorld.customize.custom.depthNoiseScaleExponent": "Depth Noise Exponent",
  "createWorld.customize.custom.baseSize": "Depth Base Size",
  "createWorld.customize.custom.coordinateScale": "Coordinate Scale",
  "createWorld.customize.custom.heightScale": "Height Scale",
  "createWorld.customize.custom.stretchY": "Height Stretch",
  "createWorld.customize.custom.upperLimitScale": "Upper Limit Scale",
  "createWorld.customize.custom.lowerLimitScale": "Lower Limit Scale",
  "createWorld.customize.custom.biomeDepthWeight": "Biome Depth Weight",
  "createWorld.customize.custom.biomeDepthOffset": "Biome Depth Offset",
  "createWorld.customize.custom.biomeScaleWeight": "Biome Scale Weight",
  "createWorld.customize.custom.biomeScaleOffset": "Biome Scale Offset",
  "createWorld.customize.custom.seaLevel": "Sea Level",
  "createWorld.customize.custom.useCaves": "Caves",
  "createWorld.customize.custom.useStrongholds": "Strongholds",
  "createWorld.customize.custom.useVillages": "Villages",
  "createWorld.customize.custom.useMineShafts": "Mineshafts",
  "createWorld.customize.custom.useTemples": "Temples",
  "createWorld.customize.custom.useOceanRuins": "Ocean Ruins",
  "createWorld.customize.custom.useMonuments": "Ocean Monuments",
  "createWorld.customize.custom.useMansions": "Woodland Mansions",
  "createWorld.customize.custom.useRavines": "Ravines",
  "createWorld.customize.custom.useDungeons": "Dungeons",
  "createWorld.customize.custom.dungeonChance": "Dungeon Count",
  "createWorld.customize.custom.useWaterLakes": "Water Lakes",
  "createWorld.customize.custom.waterLakeChance": "Water Lake Rarity",
  "createWorld.customize.custom.useLavaLakes": "Lava Lakes",
  "createWorld.customize.custom.lavaLakeChance": "Lava Lake Rarity",
  "createWorld.customize.custom.useLavaOceans": "Lava Oceans",
  "createWorld.customize.custom.fixedBiome": "Biome",
  "createWorld.customize.custom.biomeSize": "Biome Size",
  "createWorld.customize.custom.riverSize": "River Size",
  "createWorld.customize.custom.size": "Spawn Size",
  "createWorld.customize.custom.count": "Spawn Tries",
  "createWorld.customize.custom.minHeight": "Min. Height",
  "createWorld.customize.custom.maxHeight": "Max. Height",
  "createWorld.customize.custom.center": "Center Height",
  "createWorld.customize.custom.spread": "Spread Height",
  "createWorld.customize.custom.presets.title": "Customize World Presets",
  "createWorld.customize.custom.presets": "Presets",
  "createWorld.customize.custom.preset.waterWorld": "Water World",
  "createWorld.customize.custom.preset.isleLand": "Isle Land",
  "createWorld.customize.custom.preset.caveDelight": "Caver's Delight",
  "createWorld.customize.custom.preset.mountains": "Mountain Madness",
  "createWorld.customize.custom.preset.drought": "Drought",
  "createWorld.customize.custom.preset.caveChaos": "Caves of Chaos",
  "createWorld.customize.custom.preset.goodLuck": "Good Luck",
  "createWorld.preparing": "Preparing for world creation...",
  "datapackFailure.title":  "Errors in currently selected datapacks prevented world from loading.\nYou can either try to load only with vanilla datapack (\"safe mode\") or go back to title screen and fix it manually.",
  "datapackFailure.safeMode": "Safe Mode",
  "editGamerule.title": "Edit Game Rules",
  "editGamerule.default": "Default: %s",
  "gameMode.survival": "Survival Mode",
  "gameMode.creative": "Creative Mode",
  "gameMode.adventure": "Adventure Mode",
  "gameMode.spectator": "Spectator Mode",
  "gameMode.hardcore": "Hardcore Mode!",
  "gameMode.changed": "Your game mode has been updated to %s",
  "spectatorMenu.previous_page": "Previous Page",
  "spectatorMenu.next_page": "Next Page",
  "spectatorMenu.close": "Close Menu",
  "spectatorMenu.teleport": "Teleport to Player",
  "spectatorMenu.teleport.prompt": "Select a player to teleport to",
  "spectatorMenu.team_teleport": "Teleport to Team Member",
  "spectatorMenu.team_teleport.prompt": "Select a team to teleport to",
  "spectatorMenu.root.prompt": "Press a key to select a command, and again to use it.",
  "selectWorld.gameMode": "Game Mode",
  "selectWorld.gameMode.survival": "Survival",
  "selectWorld.gameMode.survival.line1": "Search for resources, craft, gain",
  "selectWorld.gameMode.survival.line2": "levels, health and hunger",
  "selectWorld.gameMode.creative": "Creative",
  "selectWorld.gameMode.creative.line1": "Unlimited resources, free flying and",
  "selectWorld.gameMode.creative.line2": "destroy blocks instantly",
  "selectWorld.gameMode.spectator": "Spectator",
  "selectWorld.gameMode.spectator.line1": "You can look but don't touch",
  "selectWorld.gameMode.spectator.line2": "",
  "selectWorld.gameMode.hardcore": "Hardcore",
  "selectWorld.gameMode.hardcore.line1": "Same as Survival Mode, locked at hardest",
  "selectWorld.gameMode.hardcore.line2": "difficulty, and one life only",
  "selectWorld.gameMode.adventure": "Adventure",
  "selectWorld.gameMode.adventure.line1": "Same as Survival Mode, but blocks can't",
  "selectWorld.gameMode.adventure.line2": "be added or removed",
  "selectWorld.moreWorldOptions": "More World Options...",
  "selectWorld.gameRules": "Game Rules",
  "selectWorld.mapFeatures": "Generate Structures:",
  "selectWorld.mapFeatures.info": "Villages, dungeons etc.",
  "selectWorld.mapType": "World Type:",
  "selectWorld.mapType.normal": "Normal",
  "selectWorld.allowCommands": "Allow Cheats:",
  "selectWorld.allowCommands.info": "Commands like /gamemode, /experience",
  "selectWorld.dataPacks": "Data Packs",
  "selectWorld.hardcoreMode": "Hardcore:",
  "selectWorld.hardcoreMode.info": "World is deleted upon death",
  "selectWorld.bonusItems": "Bonus Chest:",
  "selectWorld.import_worldgen_settings": "Import Settings",
  "selectWorld.import_worldgen_settings.select_file": "Select settings file (.json)",
  "selectWorld.import_worldgen_settings.failure": "Error importing settings",
  "selectWorld.import_worldgen_settings.experimental.title": "Warning! These settings are using experimental features",
  "selectWorld.import_worldgen_settings.experimental.question": "These settings are experimental and could one day stop working. Do you wish to proceed?",
  "selectWorld.import_worldgen_settings.deprecated.title": "Warning! These settings are using deprecated features",
  "selectWorld.import_worldgen_settings.deprecated.question": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?",
  "generator.default": "Default",
  "generator.flat": "Superflat",
  "generator.large_biomes": "Large Biomes",
  "generator.amplified": "AMPLIFIED",
  "generator.customized": "Old Customized",
  "generator.custom": "Custom",
  "generator.debug_all_block_states": "Debug Mode",
  "generator.amplified.info": "Notice: Just for fun! Requires a beefy computer.",
  "generator.single_biome_surface": "Single Biome",
  "generator.single_biome_caves": "Caves",
  "generator.single_biome_floating_islands": "Floating Islands",
  "selectServer.title": "Select Server",
  "selectServer.select": "Join Server",
  "selectServer.direct": "Direct Connection",
  "selectServer.edit": "Edit",
  "selectServer.delete": "Delete",
  "selectServer.add": "Add Server",
  "selectServer.defaultName": "Minecraft Server",
  "selectServer.deleteQuestion": "Are you sure you want to remove this server?",
  "selectServer.deleteWarning": "'%s' will be lost forever! (A long time!)",
  "selectServer.deleteButton": "Delete",
  "selectServer.refresh": "Refresh",
  "selectServer.hiddenAddress": "(Hidden)",
  "addServer.title": "Edit Server Info",
  "addServer.enterName": "Server Name",
  "addServer.enterIp": "Server Address",
  "addServer.add": "Done",
  "addServer.hideAddress": "Hide Address",
  "addServer.resourcePack": "Server Resource Packs",
  "addServer.resourcePack.enabled": "Enabled",
  "addServer.resourcePack.disabled": "Disabled",
  "addServer.resourcePack.prompt": "Prompt",
  "lanServer.title": "LAN World",
  "lanServer.scanning": "Scanning for games on your local network",
  "lanServer.start": "Start LAN World",
  "lanServer.otherPlayers": "Settings for Other Players",
  "multiplayerWarning.header": "Caution: Third-Party Online Play",
  "multiplayerWarning.message": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone.",
  "multiplayerWarning.check": "Do not show this screen again",
  "multiplayer.title": "Play Multiplayer",
  "multiplayer.texturePrompt.line1": "This server recommends the use of a custom resource pack.",
  "multiplayer.texturePrompt.line2": "Would you like to download and install it automagically?",
  "multiplayer.downloadingTerrain": "Loading terrain...",
  "multiplayer.downloadingStats": "Retrieving statistics...",
  "multiplayer.stopSleeping": "Leave Bed",
  "multiplayer.message_not_delivered": "Can't deliver chat message, check server logs: %s",
  "multiplayer.player.joined": "%s joined the game",
  "multiplayer.player.joined.renamed": "%s (formerly known as %s) joined the game",
  "multiplayer.player.left": "%s left the game",
  "multiplayer.status.and_more": "... and %s more ...",
  "multiplayer.status.cancelled": "Cancelled",
  "multiplayer.status.cannot_connect": "Can't connect to server",
  "multiplayer.status.cannot_resolve": "Can't resolve hostname",
  "multiplayer.status.client_out_of_date": "Client out of date!",
  "multiplayer.status.finished": "Finished",
  "multiplayer.status.no_connection": "(no connection)",
  "multiplayer.status.ping": "%s ms",
  "multiplayer.status.old": "Old",
  "multiplayer.status.pinging": "Pinging...",
  "multiplayer.status.quitting": "Quitting",
  "multiplayer.status.server_out_of_date": "Server out of date!",
  "multiplayer.status.unknown": "???",
  "multiplayer.status.unrequested": "Received unrequested status",
  "multiplayer.status.request_handled": "Status request has been handled",
  "multiplayer.disconnect.authservers_down": "Authentication servers are down. Please try again later, sorry!",
  "multiplayer.disconnect.banned": "You are banned from this server",
  "multiplayer.disconnect.banned.reason": "You are banned from this server.\nReason: %s",
  "multiplayer.disconnect.banned.expiration": "\nYour ban will be removed on %s",
  "multiplayer.disconnect.banned_ip.reason": "Your IP address is banned from this server.\nReason: %s",
  "multiplayer.disconnect.banned_ip.expiration": "\nYour ban will be removed on %s",
  "multiplayer.disconnect.duplicate_login": "You logged in from another location",
  "multiplayer.disconnect.flying": "Flying is not enabled on this server",
  "multiplayer.disconnect.generic": "Disconnected",
  "multiplayer.disconnect.idling": "You have been idle for too long!",
  "multiplayer.disconnect.illegal_characters": "Illegal characters in chat",
  "multiplayer.disconnect.invalid_entity_attacked": "Attempting to attack an invalid entity",
  "multiplayer.disconnect.invalid_player_movement": "Invalid move player packet received",
  "multiplayer.disconnect.invalid_vehicle_movement": "Invalid move vehicle packet received",
  "multiplayer.disconnect.ip_banned": "You have been IP banned from this server",
  "multiplayer.disconnect.kicked": "Kicked by an operator",
  "multiplayer.disconnect.outdated_client": "Outdated client! Please use %s",
  "multiplayer.disconnect.outdated_server": "Outdated server! I'm still on %s",
  "multiplayer.disconnect.server_shutdown": "Server closed",
  "multiplayer.disconnect.slow_login": "Took too long to log in",
  "multiplayer.disconnect.unverified_username": "Failed to verify username!",
  "multiplayer.disconnect.not_whitelisted": "You are not white-listed on this server!",
  "multiplayer.disconnect.server_full": "The server is full!",
  "multiplayer.disconnect.name_taken": "That name is already taken",
  "multiplayer.disconnect.unexpected_query_response": "Unexpected custom data from client",
  "chat.editBox": "chat",
  "chat.cannotSend": "Cannot send chat message",
  "chat.type.text": "<%s> %s",
  "chat.type.text.narrate": "%s says %s",
  "chat.type.emote": "* %s %s",
  "chat.type.announcement": "[%s] %s",
  "chat.type.admin": "[%s: %s]",
  "chat.type.advancement.task": "%s has made the advancement %s",
  "chat.type.advancement.challenge": "%s has completed the challenge %s",
  "chat.type.advancement.goal": "%s has reached the goal %s",
  "chat.type.team.text": "%s <%s> %s",
  "chat.type.team.sent": "-> %s <%s> %s",
  "chat.type.team.hover": "Message Team",
  "chat.link.confirm": "Are you sure you want to open the following website?",
  "chat.link.warning": "Never open links from people that you don't trust!",
  "chat.copy": "Copy to Clipboard",
  "chat.copy.click": "Click to Copy to Clipboard",
  "chat.link.confirmTrusted": "Do you want to open this link or copy it to your clipboard?",
  "chat.link.open": "Open in Browser",
  "chat.coordinates": "%s, %s, %s",
  "chat.coordinates.tooltip": "Click to teleport",
  "chat.queue": "[+%s pending lines]",
  "menu.playdemo": "Play Demo World",
  "menu.resetdemo": "Reset Demo World",
  "demo.day.1": "This demo will last five game days. Do your best!",
  "demo.day.2": "Day Two",
  "demo.day.3": "Day Three",
  "demo.day.4": "Day Four",
  "demo.day.5": "This is your last day!",
  "demo.day.warning": "Your time is almost up!",
  "demo.day.6": "You have passed your fifth day. Use %s to save a screenshot of your creation.",
  "demo.reminder": "The demo time has expired. Buy the game to continue or start a new world!",
  "demo.remainingTime": "Remaining time: %s",
  "demo.demoExpired": "Demo time's up!",
  "demo.help.movement": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around",
  "demo.help.movementShort": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys",
  "demo.help.movementMouse": "Look around using the mouse",
  "demo.help.jump": "Jump by pressing the %1$s key",
  "demo.help.inventory": "Use the %1$s key to open your inventory",
  "demo.help.title": "Minecraft Demo Mode",
  "demo.help.fullWrapped": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!",
  "demo.help.buy": "Purchase Now!",
  "demo.help.later": "Continue Playing!",
  "connect.connecting": "Connecting to the server...",
  "connect.aborted": "Aborted",
  "connect.authorizing": "Logging in...",
  "connect.negotiating": "Negotiating...",
  "connect.encrypting": "Encrypting...",
  "connect.joining": "Joining world...",
  "connect.failed": "Failed to connect to the server",
  "disconnect.genericReason": "%s",
  "disconnect.disconnected": "Disconnected by Server",
  "disconnect.lost": "Connection Lost",
  "disconnect.kicked": "Was kicked from the game",
  "disconnect.timeout": "Timed out",
  "disconnect.closed": "Connection closed",
  "disconnect.loginFailed": "Failed to log in",
  "disconnect.loginFailedInfo": "Failed to log in: %s",
  "disconnect.loginFailedInfo.serversUnavailable": "The authentication servers are currently down for maintenance.",
  "disconnect.loginFailedInfo.invalidSession": "Invalid session (Try restarting your game and the launcher)",
  "disconnect.quitting": "Quitting",
  "disconnect.endOfStream": "End of stream",
  "disconnect.overflow": "Buffer overflow",
  "disconnect.spam": "Kicked for spamming",
  "soundCategory.master": "Master Volume",
  "soundCategory.music": "Music",
  "soundCategory.record": "Jukebox/Note Blocks",
  "soundCategory.weather": "Weather",
  "soundCategory.hostile": "Hostile Creatures",
  "soundCategory.neutral": "Friendly Creatures",
  "soundCategory.player": "Players",
  "soundCategory.block": "Blocks",
  "soundCategory.ambient": "Ambient/Environment",
  "soundCategory.voice": "Voice/Speech",
  "record.nowPlaying": "Now playing: %s",
  "options.off": "OFF",
  "options.on": "ON",
  "options.visible": "Shown",
  "options.hidden": "Hidden",
  "options.title": "Options",
  "options.controls": "Controls...",
  "options.video": "Video Settings...",
  "options.language": "Language...",
  "options.sounds": "Music & Sounds...",
  "options.sounds.title": "Music & Sound Options",
  "options.languageWarning": "Language translations may not be 100%% accurate",
  "options.videoTitle": "Video Settings",
  "options.mouse_settings": "Mouse Settings...",
  "options.mouse_settings.title": "Mouse Settings",
  "options.customizeTitle": "Customize World Settings",
  "options.invertMouse": "Invert Mouse",
  "options.fov": "FOV",
  "options.fov.min": "Normal",
  "options.fov.max": "Quake Pro",
  "options.biomeBlendRadius": "Biome Blend",
  "options.biomeBlendRadius.1": "OFF (Fastest)",
  "options.biomeBlendRadius.3": "3x3 (Fast)",
  "options.biomeBlendRadius.5": "5x5 (Normal)",
  "options.biomeBlendRadius.7": "7x7 (High)",
  "options.biomeBlendRadius.9": "9x9 (Very High)",
  "options.biomeBlendRadius.11": "11x11 (Extreme)",
  "options.biomeBlendRadius.13": "13x13 (Showoff)",
  "options.biomeBlendRadius.15": "15x15 (Maximum)",
  "options.gamma": "Brightness",
  "options.gamma.min": "Moody",
  "options.gamma.max": "Bright",
  "options.sensitivity": "Sensitivity",
  "options.sensitivity.min": "*yawn*",
  "options.sensitivity.max": "HYPERSPEED!!!",
  "options.renderDistance": "Render Distance",
  "options.entityDistanceScaling": "Entity Distance",
  "options.entityDistancePercent": "%s%%",
  "options.viewBobbing": "View Bobbing",
  "options.ao": "Smooth Lighting",
  "options.ao.off": "OFF",
  "options.ao.min": "Minimum",
  "options.ao.max": "Maximum",
  "options.chunks": "%s chunks",
  "options.framerate": "%s fps",
  "options.framerateLimit": "Max Framerate",
  "options.framerateLimit.max": "Unlimited",
  "options.difficulty": "Difficulty",
  "options.difficulty.peaceful": "Peaceful",
  "options.difficulty.easy": "Easy",
  "options.difficulty.normal": "Normal",
  "options.difficulty.hard": "Hard",
  "options.difficulty.hardcore": "Hardcore",
  "options.graphics": "Graphics",
  "options.graphics.fabulous.tooltip": "%s graphics uses screen shaders for drawing weather, clouds and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays.",
  "options.graphics.fabulous": "Fabulous!",
  "options.graphics.fancy.tooltip": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds and particles may not appear behind translucent blocks or water.",
  "options.graphics.fancy": "Fancy",
  "options.graphics.fast.tooltip": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as tree-leaves.",
  "options.graphics.fast": "Fast",
  "options.graphics.warning.title": "Graphics Device Unsupported",
  "options.graphics.warning.message": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics.",
  "options.graphics.warning.renderer": "Renderer detected: [%s]",
  "options.graphics.warning.vendor": "Vendor detected: [%s]",
  "options.graphics.warning.version": "OpenGL Version detected: [%s]",
  "options.graphics.warning.accept": "Continue without support",
  "options.graphics.warning.cancel": "Take me back",
  "options.clouds.fancy": "Fancy",
  "options.clouds.fast": "Fast",
  "options.guiScale": "GUI Scale",
  "options.guiScale.auto": "Auto",
  "options.renderClouds": "Clouds",
  "options.particles": "Particles",
  "options.particles.all": "All",
  "options.particles.decreased": "Decreased",
  "options.particles.minimal": "Minimal",
  "options.multiplayer.title": "Multiplayer Settings...",
  "options.chat.title": "Chat Settings...",
  "options.chat.visibility": "Chat",
  "options.chat.visibility.full": "Shown",
  "options.chat.visibility.system": "Commands Only",
  "options.chat.visibility.hidden": "Hidden",
  "options.chat.color": "Colors",
  "options.chat.opacity": "Chat Text Opacity",
  "options.chat.line_spacing": "Line Spacing",
  "options.chat.links": "Web Links",
  "options.chat.links.prompt": "Prompt on Links",
  "options.chat.delay_none": "Chat Delay: None",
  "options.chat.delay": "Chat Delay: %s seconds",
  "options.chat.scale": "Chat Text Size",
  "options.chat.width": "Width",
  "options.chat.height.focused": "Focused Height",
  "options.chat.height.unfocused": "Unfocused Height",
  "options.accessibility.title": "Accessibility Settings...",
  "options.accessibility.text_background": "Text Background",
  "options.accessibility.text_background.chat": "Chat",
  "options.accessibility.text_background.everywhere": "Everywhere",
  "options.accessibility.text_background_opacity": "Text Background Opacity",
  "options.key.toggle": "Toggle",
  "options.key.hold": "Hold",
  "options.skinCustomisation": "Skin Customization...",
  "options.skinCustomisation.title": "Skin Customization",
  "options.modelPart.cape": "Cape",
  "options.modelPart.hat": "Hat",
  "options.modelPart.jacket": "Jacket",
  "options.modelPart.left_sleeve": "Left Sleeve",
  "options.modelPart.right_sleeve": "Right Sleeve",
  "options.modelPart.left_pants_leg": "Left Pants Leg",
  "options.modelPart.right_pants_leg": "Right Pants Leg",
  "options.snooper": "Allow Snooper",
  "options.snooper.view": "Snooper Settings...",
  "options.snooper.title": "Feed us data!",
  "options.snooper.desc": "We always want to improve Minecraft and, to help us do that, we'd like to collect some information. This lets us know what hardware to support and where the big problems are. It also gives us a sense of the size of our active player base, so we know if we're doing a good job. You can view all the information we collect below. If you want to opt out then you can simply toggle it off!",
  "options.resourcepack": "Resource Packs...",
  "options.fullscreen": "Fullscreen",
  "options.vsync": "Use VSync",
  "options.vbo": "Use VBOs",
  "options.touchscreen": "Touchscreen Mode",
  "options.reducedDebugInfo": "Reduced Debug Info",
  "options.entityShadows": "Entity Shadows",
  "options.mainHand": "Main Hand",
  "options.mainHand.left": "Left",
  "options.mainHand.right": "Right",
  "options.attackIndicator": "Attack Indicator",
  "options.attack.crosshair": "Crosshair",
  "options.attack.hotbar": "Hotbar",
  "options.showSubtitles": "Show Subtitles",
  "options.realmsNotifications": "Realms Notifications",
  "options.autoJump": "Auto-Jump",
  "options.autoSuggestCommands": "Command Suggestions",
  "options.discrete_mouse_scroll": "Discrete Scrolling",
  "options.mouseWheelSensitivity": "Scroll Sensitivity",
  "options.rawMouseInput": "Raw Input",
  "options.narrator": "Narrator",
  "options.narrator.off": "OFF",
  "options.narrator.all": "Narrates All",
  "options.narrator.chat": "Narrates Chat",
  "options.narrator.system": "Narrates System",
  "options.narrator.notavailable": "Not Available",
  "options.fullscreen.resolution": "Fullscreen Resolution",
  "options.fullscreen.unavailable": "Setting unavailable",
  "options.fullscreen.current": "Current",
  "options.mipmapLevels": "Mipmap Levels",
  "options.forceUnicodeFont": "Force Unicode Font",
  "narrator.toast.disabled": "Narrator Disabled",
  "narrator.toast.enabled": "Narrator Enabled",
  "difficulty.lock.title": "Lock World Difficulty",
  "difficulty.lock.question": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again.",
  "title.oldgl.eol.line1": "Old graphics card detected; this WILL prevent you from",
  "title.oldgl.eol.line2": "playing future updates as OpenGL 2.0 will be required!",
  "title.oldgl.deprecation.line1": "Old graphics card detected; this may prevent you from",
  "title.oldgl.deprecation.line2": "playing in the future as OpenGL 3.2 will be required!",
  "title.multiplayer.disabled": "Multiplayer is disabled, please check your launcher settings.",
  "controls.title": "Controls",
  "controls.reset": "Reset",
  "controls.resetAll": "Reset Keys",
  "key.sprint": "Sprint",
  "key.forward": "Walk Forwards",
  "key.left": "Strafe Left",
  "key.back": "Walk Backwards",
  "key.right": "Strafe Right",
  "key.jump": "Jump",
  "key.inventory": "Open/Close Inventory",
  "key.drop": "Drop Selected Item",
  "key.swapOffhand": "Swap Item With Offhand",
  "key.chat": "Open Chat",
  "key.sneak": "Sneak",
  "key.playerlist": "List Players",
  "key.attack": "Attack/Destroy",
  "key.use": "Use Item/Place Block",
  "key.pickItem": "Pick Block",
  "key.command": "Open Command",
  "key.screenshot": "Take Screenshot",
  "key.togglePerspective": "Toggle Perspective",
  "key.smoothCamera": "Toggle Cinematic Camera",
  "key.fullscreen": "Toggle Fullscreen",
  "key.spectatorOutlines": "Highlight Players (Spectators)",
  "key.hotbar.1": "Hotbar Slot 1",
  "key.hotbar.2": "Hotbar Slot 2",
  "key.hotbar.3": "Hotbar Slot 3",
  "key.hotbar.4": "Hotbar Slot 4",
  "key.hotbar.5": "Hotbar Slot 5",
  "key.hotbar.6": "Hotbar Slot 6",
  "key.hotbar.7": "Hotbar Slot 7",
  "key.hotbar.8": "Hotbar Slot 8",
  "key.hotbar.9": "Hotbar Slot 9",
  "key.saveToolbarActivator": "Save Hotbar Activator",
  "key.loadToolbarActivator": "Load Hotbar Activator",
  "key.advancements": "Advancements",
  "key.categories.movement": "Movement",
  "key.categories.misc": "Miscellaneous",
  "key.categories.multiplayer": "Multiplayer",
  "key.categories.gameplay": "Gameplay",
  "key.categories.ui": "Game Interface",
  "key.categories.inventory": "Inventory",
  "key.categories.creative": "Creative Mode",
  "key.mouse.left": "Left Button",
  "key.mouse.right": "Right Button",
  "key.mouse.middle": "Middle Button",
  "key.mouse": "Button %1$s",
  "key.keyboard.unknown": "Not bound",
  "key.keyboard.apostrophe": "'",
  "key.keyboard.backslash": "\\",
  "key.keyboard.backspace": "Backspace",
  "key.keyboard.comma": ",",
  "key.keyboard.delete": "Delete",
  "key.keyboard.end": "End",
  "key.keyboard.enter": "Enter",
  "key.keyboard.equal": "=",
  "key.keyboard.escape": "Escape",
  "key.keyboard.f1": "F1",
  "key.keyboard.f2": "F2",
  "key.keyboard.f3": "F3",
  "key.keyboard.f4": "F4",
  "key.keyboard.f5": "F5",
  "key.keyboard.f6": "F6",
  "key.keyboard.f7": "F7",
  "key.keyboard.f8": "F8",
  "key.keyboard.f9": "F9",
  "key.keyboard.f10": "F10",
  "key.keyboard.f11": "F11",
  "key.keyboard.f12": "F12",
  "key.keyboard.f13": "F13",
  "key.keyboard.f14": "F14",
  "key.keyboard.f15": "F15",
  "key.keyboard.f16": "F16",
  "key.keyboard.f17": "F17",
  "key.keyboard.f18": "F18",
  "key.keyboard.f19": "F19",
  "key.keyboard.f20": "F20",
  "key.keyboard.f21": "F21",
  "key.keyboard.f22": "F22",
  "key.keyboard.f23": "F23",
  "key.keyboard.f24": "F24",
  "key.keyboard.f25": "F25",
  "key.keyboard.grave.accent": "`",
  "key.keyboard.home": "Home",
  "key.keyboard.insert": "Insert",
  "key.keyboard.keypad.0": "Keypad 0",
  "key.keyboard.keypad.1": "Keypad 1",
  "key.keyboard.keypad.2": "Keypad 2",
  "key.keyboard.keypad.3": "Keypad 3",
  "key.keyboard.keypad.4": "Keypad 4",
  "key.keyboard.keypad.5": "Keypad 5",
  "key.keyboard.keypad.6": "Keypad 6",
  "key.keyboard.keypad.7": "Keypad 7",
  "key.keyboard.keypad.8": "Keypad 8",
  "key.keyboard.keypad.9": "Keypad 9",
  "key.keyboard.keypad.add": "Keypad +",
  "key.keyboard.keypad.decimal": "Keypad Decimal",
  "key.keyboard.keypad.enter": "Keypad Enter",
  "key.keyboard.keypad.equal": "Keypad =",
  "key.keyboard.keypad.multiply": "Keypad *",
  "key.keyboard.keypad.divide": "Keypad /",
  "key.keyboard.keypad.subtract": "Keypad -",
  "key.keyboard.left.bracket": "[",
  "key.keyboard.right.bracket": "]",
  "key.keyboard.minus": "-",
  "key.keyboard.num.lock": "Num Lock",
  "key.keyboard.caps.lock": "Caps Lock",
  "key.keyboard.scroll.lock": "Scroll Lock",
  "key.keyboard.page.down": "Page Down",
  "key.keyboard.page.up": "Page Up",
  "key.keyboard.pause": "Pause",
  "key.keyboard.period": ".",
  "key.keyboard.left.control": "Left Control",
  "key.keyboard.right.control": "Right Control",
  "key.keyboard.left.alt": "Left Alt",
  "key.keyboard.right.alt": "Right Alt",
  "key.keyboard.left.shift": "Left Shift",
  "key.keyboard.right.shift": "Right Shift",
  "key.keyboard.left.win": "Left Win",
  "key.keyboard.right.win": "Right Win",
  "key.keyboard.semicolon": ";",
  "key.keyboard.slash": "/",
  "key.keyboard.space": "Space",
  "key.keyboard.tab": "Tab",
  "key.keyboard.up": "Up Arrow",
  "key.keyboard.down": "Down Arrow",
  "key.keyboard.left": "Left Arrow",
  "key.keyboard.right": "Right Arrow",
  "key.keyboard.menu": "Menu",
  "key.keyboard.print.screen": "Print Screen",
  "key.keyboard.world.1": "World 1",
  "key.keyboard.world.2": "World 2",
  "pack.available.title": "Available",
  "pack.selected.title": "Selected",
  "pack.incompatible": "Incompatible",
  "pack.incompatible.old": "(Made for an older version of Minecraft)",
  "pack.incompatible.new": "(Made for a newer version of Minecraft)",
  "pack.incompatible.confirm.title": "Are you sure you want to load this pack?",
  "pack.incompatible.confirm.old": "This pack was made for an older version of Minecraft and may no longer work correctly.",
  "pack.incompatible.confirm.new": "This pack was made for a newer version of Minecraft and may no longer work correctly.",
  "pack.dropInfo": "Drag and drop files into this window to add packs",
  "pack.dropConfirm": "Do you want to add following packs to Minecraft?",
  "pack.copyFailure": "Failed to copy packs",
  "pack.nameAndSource": "%s (%s)",
  "pack.openFolder": "Open Pack Folder",
  "pack.folderInfo": "(Place pack files here)",
  "resourcePack.title": "Select Resource Packs",
  "resourcePack.server.name": "World Specific Resources",
  "resourcePack.broken_assets": "BROKEN ASSETS DETECTED",
  "resourcePack.load_fail": "Resource reload failed",
  "dataPack.title": "Select Data Packs",
  "dataPack.validation.working": "Validating selected data packs...",
  "dataPack.validation.failed": "Data pack validation failed!",
  "dataPack.validation.back": "Go Back",
  "dataPack.validation.reset": "Reset to Default",
  "sign.edit": "Edit Sign Message",
  "book.pageIndicator": "Page %1$s of %2$s",
  "book.byAuthor": "by %1$s",
  "book.signButton": "Sign",
  "book.editTitle": "Enter Book Title:",
  "book.finalizeButton": "Sign and Close",
  "book.finalizeWarning": "Note! When you sign the book, it will no longer be editable.",
  "book.generation.0": "Original",
  "book.generation.1": "Copy of original",
  "book.generation.2": "Copy of a copy",
  "book.generation.3": "Tattered",
  "book.invalid.tag": "* Invalid book tag *",
  "merchant.deprecated": "Villagers restock up to two times per day.",
  "merchant.current_level": "Trader's current level",
  "merchant.next_level": "Trader's next level",
  "merchant.level.1": "Novice",
  "merchant.level.2": "Apprentice",
  "merchant.level.3": "Journeyman",
  "merchant.level.4": "Expert",
  "merchant.level.5": "Master",
  "merchant.trades": "Trades",
  "block.minecraft.air": "Air",
  "block.minecraft.barrier": "Barrier",
  "block.minecraft.stone": "Stone",
  "block.minecraft.granite": "Granite",
  "block.minecraft.polished_granite": "Polished Granite",
  "block.minecraft.diorite": "Diorite",
  "block.minecraft.polished_diorite": "Polished Diorite",
  "block.minecraft.andesite": "Andesite",
  "block.minecraft.polished_andesite": "Polished Andesite",
  "block.minecraft.hay_block": "Hay Bale",
  "block.minecraft.grass_block": "Grass Block",
  "block.minecraft.dirt": "Dirt",
  "block.minecraft.coarse_dirt": "Coarse Dirt",
  "block.minecraft.podzol": "Podzol",
  "block.minecraft.cobblestone": "Cobblestone",
  "block.minecraft.oak_planks": "Oak Planks",
  "block.minecraft.spruce_planks": "Spruce Planks",
  "block.minecraft.birch_planks": "Birch Planks",
  "block.minecraft.jungle_planks": "Jungle Planks",
  "block.minecraft.acacia_planks": "Acacia Planks",
  "block.minecraft.dark_oak_planks": "Dark Oak Planks",
  "block.minecraft.oak_sapling": "Oak Sapling",
  "block.minecraft.spruce_sapling": "Spruce Sapling",
  "block.minecraft.birch_sapling": "Birch Sapling",
  "block.minecraft.jungle_sapling": "Jungle Sapling",
  "block.minecraft.acacia_sapling": "Acacia Sapling",
  "block.minecraft.dark_oak_sapling": "Dark Oak Sapling",
  "block.minecraft.oak_door": "Oak Door",
  "block.minecraft.spruce_door": "Spruce Door",
  "block.minecraft.birch_door": "Birch Door",
  "block.minecraft.jungle_door": "Jungle Door",
  "block.minecraft.acacia_door": "Acacia Door",
  "block.minecraft.dark_oak_door": "Dark Oak Door",
  "block.minecraft.bedrock": "Bedrock",
  "block.minecraft.water": "Water",
  "block.minecraft.lava": "Lava",
  "block.minecraft.sand": "Sand",
  "block.minecraft.red_sand": "Red Sand",
  "block.minecraft.sandstone": "Sandstone",
  "block.minecraft.chiseled_sandstone": "Chiseled Sandstone",
  "block.minecraft.cut_sandstone": "Cut Sandstone",
  "block.minecraft.red_sandstone": "Red Sandstone",
  "block.minecraft.chiseled_red_sandstone": "Chiseled Red Sandstone",
  "block.minecraft.cut_red_sandstone": "Cut Red Sandstone",
  "block.minecraft.gravel": "Gravel",
  "block.minecraft.gold_ore": "Gold Ore",
  "block.minecraft.nether_gold_ore": "Nether Gold Ore",
  "block.minecraft.iron_ore": "Iron Ore",
  "block.minecraft.coal_ore": "Coal Ore",
  "block.minecraft.oak_wood": "Oak Wood",
  "block.minecraft.spruce_wood": "Spruce Wood",
  "block.minecraft.birch_wood": "Birch Wood",
  "block.minecraft.jungle_wood": "Jungle Wood",
  "block.minecraft.acacia_wood": "Acacia Wood",
  "block.minecraft.dark_oak_wood": "Dark Oak Wood",
  "block.minecraft.oak_log": "Oak Log",
  "block.minecraft.spruce_log": "Spruce Log",
  "block.minecraft.birch_log": "Birch Log",
  "block.minecraft.jungle_log": "Jungle Log",
  "block.minecraft.acacia_log": "Acacia Log",
  "block.minecraft.dark_oak_log": "Dark Oak Log",
  "block.minecraft.stripped_oak_log": "Stripped Oak Log",
  "block.minecraft.stripped_spruce_log": "Stripped Spruce Log",
  "block.minecraft.stripped_birch_log": "Stripped Birch Log",
  "block.minecraft.stripped_jungle_log": "Stripped Jungle Log",
  "block.minecraft.stripped_acacia_log": "Stripped Acacia Log",
  "block.minecraft.stripped_dark_oak_log": "Stripped Dark Oak Log",
  "block.minecraft.stripped_oak_wood": "Stripped Oak Wood",
  "block.minecraft.stripped_spruce_wood": "Stripped Spruce Wood",
  "block.minecraft.stripped_birch_wood": "Stripped Birch Wood",
  "block.minecraft.stripped_jungle_wood": "Stripped Jungle Wood",
  "block.minecraft.stripped_acacia_wood": "Stripped Acacia Wood",
  "block.minecraft.stripped_dark_oak_wood": "Stripped Dark Oak Wood",
  "block.minecraft.oak_leaves": "Oak Leaves",
  "block.minecraft.spruce_leaves": "Spruce Leaves",
  "block.minecraft.birch_leaves": "Birch Leaves",
  "block.minecraft.jungle_leaves": "Jungle Leaves",
  "block.minecraft.acacia_leaves": "Acacia Leaves",
  "block.minecraft.dark_oak_leaves": "Dark Oak Leaves",
  "block.minecraft.dead_bush": "Dead Bush",
  "block.minecraft.grass": "Grass",
  "block.minecraft.fern": "Fern",
  "block.minecraft.sponge": "Sponge",
  "block.minecraft.wet_sponge": "Wet Sponge",
  "block.minecraft.glass": "Glass",
  "block.minecraft.kelp_plant": "Kelp Plant",
  "block.minecraft.kelp": "Kelp",
  "block.minecraft.dried_kelp_block": "Dried Kelp Block",
  "block.minecraft.white_stained_glass": "White Stained Glass",
  "block.minecraft.orange_stained_glass": "Orange Stained Glass",
  "block.minecraft.magenta_stained_glass": "Magenta Stained Glass",
  "block.minecraft.light_blue_stained_glass": "Light Blue Stained Glass",
  "block.minecraft.yellow_stained_glass": "Yellow Stained Glass",
  "block.minecraft.lime_stained_glass": "Lime Stained Glass",
  "block.minecraft.pink_stained_glass": "Pink Stained Glass",
  "block.minecraft.gray_stained_glass": "Gray Stained Glass",
  "block.minecraft.light_gray_stained_glass": "Light Gray Stained Glass",
  "block.minecraft.cyan_stained_glass": "Cyan Stained Glass",
  "block.minecraft.purple_stained_glass": "Purple Stained Glass",
  "block.minecraft.blue_stained_glass": "Blue Stained Glass",
  "block.minecraft.brown_stained_glass": "Brown Stained Glass",
  "block.minecraft.green_stained_glass": "Green Stained Glass",
  "block.minecraft.red_stained_glass": "Red Stained Glass",
  "block.minecraft.black_stained_glass": "Black Stained Glass",
  "block.minecraft.white_stained_glass_pane": "White Stained Glass Pane",
  "block.minecraft.orange_stained_glass_pane": "Orange Stained Glass Pane",
  "block.minecraft.magenta_stained_glass_pane": "Magenta Stained Glass Pane",
  "block.minecraft.light_blue_stained_glass_pane": "Light Blue Stained Glass Pane",
  "block.minecraft.yellow_stained_glass_pane": "Yellow Stained Glass Pane",
  "block.minecraft.lime_stained_glass_pane": "Lime Stained Glass Pane",
  "block.minecraft.pink_stained_glass_pane": "Pink Stained Glass Pane",
  "block.minecraft.gray_stained_glass_pane": "Gray Stained Glass Pane",
  "block.minecraft.light_gray_stained_glass_pane": "Light Gray Stained Glass Pane",
  "block.minecraft.cyan_stained_glass_pane": "Cyan Stained Glass Pane",
  "block.minecraft.purple_stained_glass_pane": "Purple Stained Glass Pane",
  "block.minecraft.blue_stained_glass_pane": "Blue Stained Glass Pane",
  "block.minecraft.brown_stained_glass_pane": "Brown Stained Glass Pane",
  "block.minecraft.green_stained_glass_pane": "Green Stained Glass Pane",
  "block.minecraft.red_stained_glass_pane": "Red Stained Glass Pane",
  "block.minecraft.black_stained_glass_pane": "Black Stained Glass Pane",
  "block.minecraft.glass_pane": "Glass Pane",
  "block.minecraft.dandelion": "Dandelion",
  "block.minecraft.poppy": "Poppy",
  "block.minecraft.blue_orchid": "Blue Orchid",
  "block.minecraft.allium": "Allium",
  "block.minecraft.azure_bluet": "Azure Bluet",
  "block.minecraft.red_tulip": "Red Tulip",
  "block.minecraft.orange_tulip": "Orange Tulip",
  "block.minecraft.white_tulip": "White Tulip",
  "block.minecraft.pink_tulip": "Pink Tulip",
  "block.minecraft.oxeye_daisy": "Oxeye Daisy",
  "block.minecraft.cornflower": "Cornflower",
  "block.minecraft.lily_of_the_valley": "Lily of the Valley",
  "block.minecraft.wither_rose": "Wither Rose",
  "block.minecraft.sunflower": "Sunflower",
  "block.minecraft.lilac": "Lilac",
  "block.minecraft.tall_grass": "Tall Grass",
  "block.minecraft.tall_seagrass": "Tall Seagrass",
  "block.minecraft.large_fern": "Large Fern",
  "block.minecraft.rose_bush": "Rose Bush",
  "block.minecraft.peony": "Peony",
  "block.minecraft.seagrass": "Seagrass",
  "block.minecraft.sea_pickle": "Sea Pickle",
  "block.minecraft.brown_mushroom": "Brown Mushroom",
  "block.minecraft.red_mushroom_block": "Red Mushroom Block",
  "block.minecraft.brown_mushroom_block": "Brown Mushroom Block",
  "block.minecraft.mushroom_stem": "Mushroom Stem",
  "block.minecraft.gold_block": "Block of Gold",
  "block.minecraft.iron_block": "Block of Iron",
  "block.minecraft.smooth_stone": "Smooth Stone",
  "block.minecraft.smooth_sandstone": "Smooth Sandstone",
  "block.minecraft.smooth_red_sandstone": "Smooth Red Sandstone",
  "block.minecraft.smooth_quartz": "Smooth Quartz Block",
  "block.minecraft.stone_slab": "Stone Slab",
  "block.minecraft.smooth_stone_slab": "Smooth Stone Slab",
  "block.minecraft.sandstone_slab": "Sandstone Slab",
  "block.minecraft.red_sandstone_slab": "Red Sandstone Slab",
  "block.minecraft.cut_sandstone_slab": "Cut Sandstone Slab",
  "block.minecraft.cut_red_sandstone_slab": "Cut Red Sandstone Slab",
  "block.minecraft.petrified_oak_slab": "Petrified Oak Slab",
  "block.minecraft.cobblestone_slab": "Cobblestone Slab",
  "block.minecraft.brick_slab": "Brick Slab",
  "block.minecraft.stone_brick_slab": "Stone Brick Slab",
  "block.minecraft.nether_brick_slab": "Nether Brick Slab",
  "block.minecraft.quartz_slab": "Quartz Slab",
  "block.minecraft.oak_slab": "Oak Slab",
  "block.minecraft.spruce_slab": "Spruce Slab",
  "block.minecraft.birch_slab": "Birch Slab",
  "block.minecraft.jungle_slab": "Jungle Slab",
  "block.minecraft.acacia_slab": "Acacia Slab",
  "block.minecraft.dark_oak_slab": "Dark Oak Slab",
  "block.minecraft.dark_prismarine_slab": "Dark Prismarine Slab",
  "block.minecraft.prismarine_slab": "Prismarine Slab",
  "block.minecraft.prismarine_brick_slab": "Prismarine Brick Slab",
  "block.minecraft.bricks": "Bricks",
  "block.minecraft.tnt": "TNT",
  "block.minecraft.bookshelf": "Bookshelf",
  "block.minecraft.mossy_cobblestone": "Mossy Cobblestone",
  "block.minecraft.obsidian": "Obsidian",
  "block.minecraft.torch": "Torch",
  "block.minecraft.wall_torch": "Wall Torch",
  "block.minecraft.soul_torch": "Soul Torch",
  "block.minecraft.soul_wall_torch": "Soul Wall Torch",
  "block.minecraft.fire": "Fire",
  "block.minecraft.spawner": "Spawner",
  "block.minecraft.respawn_anchor": "Respawn Anchor",
  "block.minecraft.oak_stairs": "Oak Stairs",
  "block.minecraft.spruce_stairs": "Spruce Stairs",
  "block.minecraft.birch_stairs": "Birch Stairs",
  "block.minecraft.jungle_stairs": "Jungle Stairs",
  "block.minecraft.acacia_stairs": "Acacia Stairs",
  "block.minecraft.dark_oak_stairs": "Dark Oak Stairs",
  "block.minecraft.dark_prismarine_stairs": "Dark Prismarine Stairs",
  "block.minecraft.prismarine_stairs": "Prismarine Stairs",
  "block.minecraft.prismarine_brick_stairs": "Prismarine Brick Stairs",
  "block.minecraft.chest": "Chest",
  "block.minecraft.trapped_chest": "Trapped Chest",
  "block.minecraft.redstone_wire": "Redstone Wire",
  "block.minecraft.diamond_ore": "Diamond Ore",
  "block.minecraft.coal_block": "Block of Coal",
  "block.minecraft.diamond_block": "Block of Diamond",
  "block.minecraft.crafting_table": "Crafting Table",
  "block.minecraft.wheat": "Wheat Crops",
  "block.minecraft.farmland": "Farmland",
  "block.minecraft.furnace": "Furnace",
  "block.minecraft.oak_sign": "Oak Sign",
  "block.minecraft.spruce_sign": "Spruce Sign",
  "block.minecraft.birch_sign": "Birch Sign",
  "block.minecraft.acacia_sign": "Acacia Sign",
  "block.minecraft.jungle_sign": "Jungle Sign",
  "block.minecraft.dark_oak_sign": "Dark Oak Sign",
  "block.minecraft.oak_wall_sign": "Oak Wall Sign",
  "block.minecraft.spruce_wall_sign": "Spruce Wall Sign",
  "block.minecraft.birch_wall_sign": "Birch Wall Sign",
  "block.minecraft.acacia_wall_sign": "Acacia Wall Sign",
  "block.minecraft.jungle_wall_sign": "Jungle Wall Sign",
  "block.minecraft.dark_oak_wall_sign": "Dark Oak Wall Sign",
  "block.minecraft.ladder": "Ladder",
  "block.minecraft.scaffolding": "Scaffolding",
  "block.minecraft.rail": "Rail",
  "block.minecraft.powered_rail": "Powered Rail",
  "block.minecraft.activator_rail": "Activator Rail",
  "block.minecraft.detector_rail": "Detector Rail",
  "block.minecraft.cobblestone_stairs": "Cobblestone Stairs",
  "block.minecraft.sandstone_stairs": "Sandstone Stairs",
  "block.minecraft.red_sandstone_stairs": "Red Sandstone Stairs",
  "block.minecraft.lever": "Lever",
  "block.minecraft.stone_pressure_plate": "Stone Pressure Plate",
  "block.minecraft.oak_pressure_plate": "Oak Pressure Plate",
  "block.minecraft.spruce_pressure_plate": "Spruce Pressure Plate",
  "block.minecraft.birch_pressure_plate": "Birch Pressure Plate",
  "block.minecraft.jungle_pressure_plate": "Jungle Pressure Plate",
  "block.minecraft.acacia_pressure_plate": "Acacia Pressure Plate",
  "block.minecraft.dark_oak_pressure_plate": "Dark Oak Pressure Plate",
  "block.minecraft.light_weighted_pressure_plate": "Light Weighted Pressure Plate",
  "block.minecraft.heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate",
  "block.minecraft.iron_door": "Iron Door",
  "block.minecraft.redstone_ore": "Redstone Ore",
  "block.minecraft.redstone_torch": "Redstone Torch",
  "block.minecraft.redstone_wall_torch": "Redstone Wall Torch",
  "block.minecraft.stone_button": "Stone Button",
  "block.minecraft.oak_button": "Oak Button",
  "block.minecraft.spruce_button": "Spruce Button",
  "block.minecraft.birch_button": "Birch Button",
  "block.minecraft.jungle_button": "Jungle Button",
  "block.minecraft.acacia_button": "Acacia Button",
  "block.minecraft.dark_oak_button": "Dark Oak Button",
  "block.minecraft.snow": "Snow",
  "block.minecraft.white_carpet": "White Carpet",
  "block.minecraft.orange_carpet": "Orange Carpet",
  "block.minecraft.magenta_carpet": "Magenta Carpet",
  "block.minecraft.light_blue_carpet": "Light Blue Carpet",
  "block.minecraft.yellow_carpet": "Yellow Carpet",
  "block.minecraft.lime_carpet": "Lime Carpet",
  "block.minecraft.pink_carpet": "Pink Carpet",
  "block.minecraft.gray_carpet": "Gray Carpet",
  "block.minecraft.light_gray_carpet": "Light Gray Carpet",
  "block.minecraft.cyan_carpet": "Cyan Carpet",
  "block.minecraft.purple_carpet": "Purple Carpet",
  "block.minecraft.blue_carpet": "Blue Carpet",
  "block.minecraft.brown_carpet": "Brown Carpet",
  "block.minecraft.green_carpet": "Green Carpet",
  "block.minecraft.red_carpet": "Red Carpet",
  "block.minecraft.black_carpet": "Black Carpet",
  "block.minecraft.ice": "Ice",
  "block.minecraft.frosted_ice": "Frosted Ice",
  "block.minecraft.packed_ice": "Packed Ice",
  "block.minecraft.blue_ice": "Blue Ice",
  "block.minecraft.cactus": "Cactus",
  "block.minecraft.clay": "Clay",
  "block.minecraft.white_terracotta": "White Terracotta",
  "block.minecraft.orange_terracotta": "Orange Terracotta",
  "block.minecraft.magenta_terracotta": "Magenta Terracotta",
  "block.minecraft.light_blue_terracotta": "Light Blue Terracotta",
  "block.minecraft.yellow_terracotta": "Yellow Terracotta",
  "block.minecraft.lime_terracotta": "Lime Terracotta",
  "block.minecraft.pink_terracotta": "Pink Terracotta",
  "block.minecraft.gray_terracotta": "Gray Terracotta",
  "block.minecraft.light_gray_terracotta": "Light Gray Terracotta",
  "block.minecraft.cyan_terracotta": "Cyan Terracotta",
  "block.minecraft.purple_terracotta": "Purple Terracotta",
  "block.minecraft.blue_terracotta": "Blue Terracotta",
  "block.minecraft.brown_terracotta": "Brown Terracotta",
  "block.minecraft.green_terracotta": "Green Terracotta",
  "block.minecraft.red_terracotta": "Red Terracotta",
  "block.minecraft.black_terracotta": "Black Terracotta",
  "block.minecraft.terracotta": "Terracotta",
  "block.minecraft.sugar_cane": "Sugar Cane",
  "block.minecraft.jukebox": "Jukebox",
  "block.minecraft.oak_fence": "Oak Fence",
  "block.minecraft.spruce_fence": "Spruce Fence",
  "block.minecraft.birch_fence": "Birch Fence",
  "block.minecraft.jungle_fence": "Jungle Fence",
  "block.minecraft.dark_oak_fence": "Dark Oak Fence",
  "block.minecraft.acacia_fence": "Acacia Fence",
  "block.minecraft.oak_fence_gate": "Oak Fence Gate",
  "block.minecraft.spruce_fence_gate": "Spruce Fence Gate",
  "block.minecraft.birch_fence_gate": "Birch Fence Gate",
  "block.minecraft.jungle_fence_gate": "Jungle Fence Gate",
  "block.minecraft.dark_oak_fence_gate": "Dark Oak Fence Gate",
  "block.minecraft.acacia_fence_gate": "Acacia Fence Gate",
  "block.minecraft.pumpkin_stem": "Pumpkin Stem",
  "block.minecraft.attached_pumpkin_stem": "Attached Pumpkin Stem",
  "block.minecraft.pumpkin": "Pumpkin",
  "block.minecraft.carved_pumpkin": "Carved Pumpkin",
  "block.minecraft.jack_o_lantern": "Jack o'Lantern",
  "block.minecraft.netherrack": "Netherrack",
  "block.minecraft.soul_sand": "Soul Sand",
  "block.minecraft.glowstone": "Glowstone",
  "block.minecraft.nether_portal": "Nether Portal",
  "block.minecraft.white_wool": "White Wool",
  "block.minecraft.orange_wool": "Orange Wool",
  "block.minecraft.magenta_wool": "Magenta Wool",
  "block.minecraft.light_blue_wool": "Light Blue Wool",
  "block.minecraft.yellow_wool": "Yellow Wool",
  "block.minecraft.lime_wool": "Lime Wool",
  "block.minecraft.pink_wool": "Pink Wool",
  "block.minecraft.gray_wool": "Gray Wool",
  "block.minecraft.light_gray_wool": "Light Gray Wool",
  "block.minecraft.cyan_wool": "Cyan Wool",
  "block.minecraft.purple_wool": "Purple Wool",
  "block.minecraft.blue_wool": "Blue Wool",
  "block.minecraft.brown_wool": "Brown Wool",
  "block.minecraft.green_wool": "Green Wool",
  "block.minecraft.red_wool": "Red Wool",
  "block.minecraft.black_wool": "Black Wool",
  "block.minecraft.lapis_ore": "Lapis Lazuli Ore",
  "block.minecraft.lapis_block": "Lapis Lazuli Block",
  "block.minecraft.dispenser": "Dispenser",
  "block.minecraft.dropper": "Dropper",
  "block.minecraft.note_block": "Note Block",
  "block.minecraft.cake": "Cake",
  "block.minecraft.bed.occupied": "This bed is occupied",
  "block.minecraft.bed.obstructed": "This bed is obstructed",
  "block.minecraft.bed.no_sleep": "You can sleep only at night or during thunderstorms",
  "block.minecraft.bed.too_far_away": "You may not rest now; the bed is too far away",
  "block.minecraft.bed.not_safe": "You may not rest now; there are monsters nearby",
  "block.minecraft.spawn.not_valid": "You have no home bed or charged respawn anchor, or it was obstructed",
  "block.minecraft.set_spawn": "Respawn point set",
  "block.minecraft.oak_trapdoor": "Oak Trapdoor",
  "block.minecraft.spruce_trapdoor": "Spruce Trapdoor",
  "block.minecraft.birch_trapdoor": "Birch Trapdoor",
  "block.minecraft.jungle_trapdoor": "Jungle Trapdoor",
  "block.minecraft.acacia_trapdoor": "Acacia Trapdoor",
  "block.minecraft.dark_oak_trapdoor": "Dark Oak Trapdoor",
  "block.minecraft.iron_trapdoor": "Iron Trapdoor",
  "block.minecraft.cobweb": "Cobweb",
  "block.minecraft.stone_bricks": "Stone Bricks",
  "block.minecraft.mossy_stone_bricks": "Mossy Stone Bricks",
  "block.minecraft.cracked_stone_bricks": "Cracked Stone Bricks",
  "block.minecraft.chiseled_stone_bricks": "Chiseled Stone Bricks",
  "block.minecraft.infested_stone": "Infested Stone",
  "block.minecraft.infested_cobblestone": "Infested Cobblestone",
  "block.minecraft.infested_stone_bricks": "Infested Stone Bricks",
  "block.minecraft.infested_mossy_stone_bricks": "Infested Mossy Stone Bricks",
  "block.minecraft.infested_cracked_stone_bricks": "Infested Cracked Stone Bricks",
  "block.minecraft.infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks",
  "block.minecraft.piston": "Piston",
  "block.minecraft.sticky_piston": "Sticky Piston",
  "block.minecraft.iron_bars": "Iron Bars",
  "block.minecraft.melon": "Melon",
  "block.minecraft.brick_stairs": "Brick Stairs",
  "block.minecraft.stone_brick_stairs": "Stone Brick Stairs",
  "block.minecraft.vine": "Vines",
  "block.minecraft.nether_bricks": "Nether Bricks",
  "block.minecraft.nether_brick_fence": "Nether Brick Fence",
  "block.minecraft.nether_brick_stairs": "Nether Brick Stairs",
  "block.minecraft.nether_wart": "Nether Wart",
  "block.minecraft.warped_wart_block": "Warped Wart Block",
  "block.minecraft.warped_stem": "Warped Stem",
  "block.minecraft.stripped_warped_stem": "Stripped Warped Stem",
  "block.minecraft.warped_hyphae": "Warped Hyphae",
  "block.minecraft.stripped_warped_hyphae": "Stripped Warped Hyphae",
  "block.minecraft.crimson_stem": "Crimson Stem",
  "block.minecraft.stripped_crimson_stem": "Stripped Crimson Stem",
  "block.minecraft.crimson_hyphae": "Crimson Hyphae",
  "block.minecraft.stripped_crimson_hyphae": "Stripped Crimson Hyphae",
  "block.minecraft.warped_nylium": "Warped Nylium",
  "block.minecraft.crimson_nylium": "Crimson Nylium",
  "block.minecraft.warped_fungus": "Warped Fungus",
  "block.minecraft.crimson_fungus": "Crimson Fungus",
  "block.minecraft.crimson_roots": "Crimson Roots",
  "block.minecraft.warped_roots": "Warped Roots",
  "block.minecraft.nether_sprouts": "Nether Sprouts",
  "block.minecraft.shroomlight": "Shroomlight",
  "block.minecraft.weeping_vines": "Weeping Vines",
  "block.minecraft.weeping_vines_plant": "Weeping Vines Plant",
  "block.minecraft.twisting_vines": "Twisting Vines",
  "block.minecraft.twisting_vines_plant": "Twisting Vines Plant",
  "block.minecraft.soul_soil": "Soul Soil",
  "block.minecraft.basalt": "Basalt",
  "block.minecraft.polished_basalt": "Polished Basalt",
  "block.minecraft.warped_planks": "Warped Planks",
  "block.minecraft.warped_slab": "Warped Slab",
  "block.minecraft.warped_pressure_plate": "Warped Pressure Plate",
  "block.minecraft.warped_fence": "Warped Fence",
  "block.minecraft.warped_trapdoor": "Warped Trapdoor",
  "block.minecraft.warped_fence_gate": "Warped Fence Gate",
  "block.minecraft.warped_stairs": "Warped Stairs",
  "block.minecraft.warped_button": "Warped Button",
  "block.minecraft.warped_door": "Warped Door",
  "block.minecraft.warped_sign": "Warped Sign",
  "block.minecraft.warped_wall_sign": "Warped Wall Sign",
  "block.minecraft.crimson_planks": "Crimson Planks",
  "block.minecraft.crimson_slab": "Crimson Slab",
  "block.minecraft.crimson_pressure_plate": "Crimson Pressure Plate",
  "block.minecraft.crimson_fence": "Crimson Fence",
  "block.minecraft.crimson_trapdoor": "Crimson Trapdoor",
  "block.minecraft.crimson_fence_gate": "Crimson Fence Gate",
  "block.minecraft.crimson_stairs": "Crimson Stairs",
  "block.minecraft.crimson_button": "Crimson Button",
  "block.minecraft.crimson_door": "Crimson Door",
  "block.minecraft.crimson_sign": "Crimson Sign",
  "block.minecraft.crimson_wall_sign": "Crimson Wall Sign",
  "block.minecraft.soul_fire": "Soul Fire",
  "block.minecraft.cauldron": "Cauldron",
  "block.minecraft.enchanting_table": "Enchanting Table",
  "block.minecraft.anvil": "Anvil",
  "block.minecraft.chipped_anvil": "Chipped Anvil",
  "block.minecraft.damaged_anvil": "Damaged Anvil",
  "block.minecraft.end_stone": "End Stone",
  "block.minecraft.end_portal_frame": "End Portal Frame",
  "block.minecraft.mycelium": "Mycelium",
  "block.minecraft.lily_pad": "Lily Pad",
  "block.minecraft.dragon_egg": "Dragon Egg",
  "block.minecraft.redstone_lamp": "Redstone Lamp",
  "block.minecraft.cocoa": "Cocoa",
  "block.minecraft.ender_chest": "Ender Chest",
  "block.minecraft.emerald_ore": "Emerald Ore",
  "block.minecraft.emerald_block": "Block of Emerald",
  "block.minecraft.redstone_block": "Block of Redstone",
  "block.minecraft.tripwire": "Tripwire",
  "block.minecraft.tripwire_hook": "Tripwire Hook",
  "block.minecraft.command_block": "Command Block",
  "block.minecraft.repeating_command_block": "Repeating Command Block",
  "block.minecraft.chain_command_block": "Chain Command Block",
  "block.minecraft.beacon": "Beacon",
  "block.minecraft.beacon.primary": "Primary Power",
  "block.minecraft.beacon.secondary": "Secondary Power",
  "block.minecraft.cobblestone_wall": "Cobblestone Wall",
  "block.minecraft.mossy_cobblestone_wall": "Mossy Cobblestone Wall",
  "block.minecraft.carrots": "Carrots",
  "block.minecraft.potatoes": "Potatoes",
  "block.minecraft.daylight_detector": "Daylight Detector",
  "block.minecraft.nether_quartz_ore": "Nether Quartz Ore",
  "block.minecraft.hopper": "Hopper",
  "block.minecraft.quartz_block": "Block of Quartz",
  "block.minecraft.chiseled_quartz_block": "Chiseled Quartz Block",
  "block.minecraft.quartz_pillar": "Quartz Pillar",
  "block.minecraft.quartz_stairs": "Quartz Stairs",
  "block.minecraft.slime_block": "Slime Block",
  "block.minecraft.prismarine": "Prismarine",
  "block.minecraft.prismarine_bricks": "Prismarine Bricks",
  "block.minecraft.dark_prismarine": "Dark Prismarine",
  "block.minecraft.sea_lantern": "Sea Lantern",
  "block.minecraft.end_rod": "End Rod",
  "block.minecraft.chorus_plant": "Chorus Plant",
  "block.minecraft.chorus_flower": "Chorus Flower",
  "block.minecraft.purpur_block": "Purpur Block",
  "block.minecraft.purpur_pillar": "Purpur Pillar",
  "block.minecraft.purpur_stairs": "Purpur Stairs",
  "block.minecraft.purpur_slab": "Purpur Slab",
  "block.minecraft.end_stone_bricks": "End Stone Bricks",
  "block.minecraft.beetroots": "Beetroots",
  "block.minecraft.grass_path": "Grass Path",
  "block.minecraft.magma_block": "Magma Block",
  "block.minecraft.nether_wart_block": "Nether Wart Block",
  "block.minecraft.red_nether_bricks": "Red Nether Bricks",
  "block.minecraft.bone_block": "Bone Block",
  "block.minecraft.observer": "Observer",
  "block.minecraft.shulker_box": "Shulker Box",
  "block.minecraft.white_shulker_box": "White Shulker Box",
  "block.minecraft.orange_shulker_box": "Orange Shulker Box",
  "block.minecraft.magenta_shulker_box": "Magenta Shulker Box",
  "block.minecraft.light_blue_shulker_box": "Light Blue Shulker Box",
  "block.minecraft.yellow_shulker_box": "Yellow Shulker Box",
  "block.minecraft.lime_shulker_box": "Lime Shulker Box",
  "block.minecraft.pink_shulker_box": "Pink Shulker Box",
  "block.minecraft.gray_shulker_box": "Gray Shulker Box",
  "block.minecraft.light_gray_shulker_box": "Light Gray Shulker Box",
  "block.minecraft.cyan_shulker_box": "Cyan Shulker Box",
  "block.minecraft.purple_shulker_box": "Purple Shulker Box",
  "block.minecraft.blue_shulker_box": "Blue Shulker Box",
  "block.minecraft.brown_shulker_box": "Brown Shulker Box",
  "block.minecraft.green_shulker_box": "Green Shulker Box",
  "block.minecraft.red_shulker_box": "Red Shulker Box",
  "block.minecraft.black_shulker_box": "Black Shulker Box",
  "block.minecraft.white_glazed_terracotta": "White Glazed Terracotta",
  "block.minecraft.orange_glazed_terracotta": "Orange Glazed Terracotta",
  "block.minecraft.magenta_glazed_terracotta": "Magenta Glazed Terracotta",
  "block.minecraft.light_blue_glazed_terracotta": "Light Blue Glazed Terracotta",
  "block.minecraft.yellow_glazed_terracotta": "Yellow Glazed Terracotta",
  "block.minecraft.lime_glazed_terracotta": "Lime Glazed Terracotta",
  "block.minecraft.pink_glazed_terracotta": "Pink Glazed Terracotta",
  "block.minecraft.gray_glazed_terracotta": "Gray Glazed Terracotta",
  "block.minecraft.light_gray_glazed_terracotta": "Light Gray Glazed Terracotta",
  "block.minecraft.cyan_glazed_terracotta": "Cyan Glazed Terracotta",
  "block.minecraft.purple_glazed_terracotta": "Purple Glazed Terracotta",
  "block.minecraft.blue_glazed_terracotta": "Blue Glazed Terracotta",
  "block.minecraft.brown_glazed_terracotta": "Brown Glazed Terracotta",
  "block.minecraft.green_glazed_terracotta": "Green Glazed Terracotta",
  "block.minecraft.red_glazed_terracotta": "Red Glazed Terracotta",
  "block.minecraft.black_glazed_terracotta": "Black Glazed Terracotta",
  "block.minecraft.black_concrete": "Black Concrete",
  "block.minecraft.red_concrete": "Red Concrete",
  "block.minecraft.green_concrete": "Green Concrete",
  "block.minecraft.brown_concrete": "Brown Concrete",
  "block.minecraft.blue_concrete": "Blue Concrete",
  "block.minecraft.purple_concrete": "Purple Concrete",
  "block.minecraft.cyan_concrete": "Cyan Concrete",
  "block.minecraft.light_gray_concrete": "Light Gray Concrete",
  "block.minecraft.gray_concrete": "Gray Concrete",
  "block.minecraft.pink_concrete": "Pink Concrete",
  "block.minecraft.lime_concrete": "Lime Concrete",
  "block.minecraft.yellow_concrete": "Yellow Concrete",
  "block.minecraft.light_blue_concrete": "Light Blue Concrete",
  "block.minecraft.magenta_concrete": "Magenta Concrete",
  "block.minecraft.orange_concrete": "Orange Concrete",
  "block.minecraft.white_concrete": "White Concrete",
  "block.minecraft.black_concrete_powder": "Black Concrete Powder",
  "block.minecraft.red_concrete_powder": "Red Concrete Powder",
  "block.minecraft.green_concrete_powder": "Green Concrete Powder",
  "block.minecraft.brown_concrete_powder": "Brown Concrete Powder",
  "block.minecraft.blue_concrete_powder": "Blue Concrete Powder",
  "block.minecraft.purple_concrete_powder": "Purple Concrete Powder",
  "block.minecraft.cyan_concrete_powder": "Cyan Concrete Powder",
  "block.minecraft.light_gray_concrete_powder": "Light Gray Concrete Powder",
  "block.minecraft.gray_concrete_powder": "Gray Concrete Powder",
  "block.minecraft.pink_concrete_powder": "Pink Concrete Powder",
  "block.minecraft.lime_concrete_powder": "Lime Concrete Powder",
  "block.minecraft.yellow_concrete_powder": "Yellow Concrete Powder",
  "block.minecraft.light_blue_concrete_powder": "Light Blue Concrete Powder",
  "block.minecraft.magenta_concrete_powder": "Magenta Concrete Powder",
  "block.minecraft.orange_concrete_powder": "Orange Concrete Powder",
  "block.minecraft.white_concrete_powder": "White Concrete Powder",
  "block.minecraft.turtle_egg": "Turtle Egg",
  "block.minecraft.piston_head": "Piston Head",
  "block.minecraft.moving_piston": "Moving Piston",
  "block.minecraft.red_mushroom": "Red Mushroom",
  "block.minecraft.snow_block": "Snow Block",
  "block.minecraft.attached_melon_stem": "Attached Melon Stem",
  "block.minecraft.melon_stem": "Melon Stem",
  "block.minecraft.brewing_stand": "Brewing Stand",
  "block.minecraft.end_portal": "End Portal",
  "block.minecraft.flower_pot": "Flower Pot",
  "block.minecraft.potted_oak_sapling": "Potted Oak Sapling",
  "block.minecraft.potted_spruce_sapling": "Potted Spruce Sapling",
  "block.minecraft.potted_birch_sapling": "Potted Birch Sapling",
  "block.minecraft.potted_jungle_sapling": "Potted Jungle Sapling",
  "block.minecraft.potted_acacia_sapling": "Potted Acacia Sapling",
  "block.minecraft.potted_dark_oak_sapling": "Potted Dark Oak Sapling",
  "block.minecraft.potted_fern": "Potted Fern",
  "block.minecraft.potted_dandelion": "Potted Dandelion",
  "block.minecraft.potted_poppy": "Potted Poppy",
  "block.minecraft.potted_blue_orchid": "Potted Blue Orchid",
  "block.minecraft.potted_allium": "Potted Allium",
  "block.minecraft.potted_azure_bluet": "Potted Azure Bluet",
  "block.minecraft.potted_red_tulip": "Potted Red Tulip",
  "block.minecraft.potted_orange_tulip": "Potted Orange Tulip",
  "block.minecraft.potted_white_tulip": "Potted White Tulip",
  "block.minecraft.potted_pink_tulip": "Potted Pink Tulip",
  "block.minecraft.potted_oxeye_daisy": "Potted Oxeye Daisy",
  "block.minecraft.potted_cornflower": "Potted Cornflower",
  "block.minecraft.potted_lily_of_the_valley": "Potted Lily of the Valley",
  "block.minecraft.potted_wither_rose": "Potted Wither Rose",
  "block.minecraft.potted_red_mushroom": "Potted Red Mushroom",
  "block.minecraft.potted_brown_mushroom": "Potted Brown Mushroom",
  "block.minecraft.potted_dead_bush": "Potted Dead Bush",
  "block.minecraft.potted_cactus": "Potted Cactus",
  "block.minecraft.potted_bamboo": "Potted Bamboo",
  "block.minecraft.potted_crimson_fungus": "Potted Crimson Fungus",
  "block.minecraft.potted_warped_fungus": "Potted Warped Fungus",
  "block.minecraft.potted_crimson_roots": "Potted Crimson Roots",
  "block.minecraft.potted_warped_roots": "Potted Warped Roots",
  "block.minecraft.skeleton_wall_skull": "Skeleton Wall Skull",
  "block.minecraft.skeleton_skull": "Skeleton Skull",
  "block.minecraft.wither_skeleton_wall_skull": "Wither Skeleton Wall Skull",
  "block.minecraft.wither_skeleton_skull": "Wither Skeleton Skull",
  "block.minecraft.zombie_wall_head": "Zombie Wall Head",
  "block.minecraft.zombie_head": "Zombie Head",
  "block.minecraft.player_wall_head": "Player Wall Head",
  "block.minecraft.player_head": "Player Head",
  "block.minecraft.player_head.named": "%s's Head",
  "block.minecraft.creeper_wall_head": "Creeper Wall Head",
  "block.minecraft.creeper_head": "Creeper Head",
  "block.minecraft.dragon_wall_head": "Dragon Wall Head",
  "block.minecraft.dragon_head": "Dragon Head",
  "block.minecraft.end_gateway": "End Gateway",
  "block.minecraft.structure_void": "Structure Void",
  "block.minecraft.structure_block": "Structure Block",
  "block.minecraft.void_air": "Void Air",
  "block.minecraft.cave_air": "Cave Air",
  "block.minecraft.bubble_column": "Bubble Column",
  "block.minecraft.dead_tube_coral_block": "Dead Tube Coral Block",
  "block.minecraft.dead_brain_coral_block": "Dead Brain Coral Block",
  "block.minecraft.dead_bubble_coral_block": "Dead Bubble Coral Block",
  "block.minecraft.dead_fire_coral_block": "Dead Fire Coral Block",
  "block.minecraft.dead_horn_coral_block": "Dead Horn Coral Block",
  "block.minecraft.tube_coral_block": "Tube Coral Block",
  "block.minecraft.brain_coral_block": "Brain Coral Block",
  "block.minecraft.bubble_coral_block": "Bubble Coral Block",
  "block.minecraft.fire_coral_block": "Fire Coral Block",
  "block.minecraft.horn_coral_block": "Horn Coral Block",
  "block.minecraft.tube_coral": "Tube Coral",
  "block.minecraft.brain_coral": "Brain Coral",
  "block.minecraft.bubble_coral": "Bubble Coral",
  "block.minecraft.fire_coral": "Fire Coral",
  "block.minecraft.horn_coral": "Horn Coral",
  "block.minecraft.dead_tube_coral": "Dead Tube Coral",
  "block.minecraft.dead_brain_coral": "Dead Brain Coral",
  "block.minecraft.dead_bubble_coral": "Dead Bubble Coral",
  "block.minecraft.dead_fire_coral": "Dead Fire Coral",
  "block.minecraft.dead_horn_coral": "Dead Horn Coral",
  "block.minecraft.tube_coral_fan": "Tube Coral Fan",
  "block.minecraft.brain_coral_fan": "Brain Coral Fan",
  "block.minecraft.bubble_coral_fan": "Bubble Coral Fan",
  "block.minecraft.fire_coral_fan": "Fire Coral Fan",
  "block.minecraft.horn_coral_fan": "Horn Coral Fan",
  "block.minecraft.dead_tube_coral_fan": "Dead Tube Coral Fan",
  "block.minecraft.dead_brain_coral_fan": "Dead Brain Coral Fan",
  "block.minecraft.dead_bubble_coral_fan": "Dead Bubble Coral Fan",
  "block.minecraft.dead_fire_coral_fan": "Dead Fire Coral Fan",
  "block.minecraft.dead_horn_coral_fan": "Dead Horn Coral Fan",
  "block.minecraft.tube_coral_wall_fan": "Tube Coral Wall Fan",
  "block.minecraft.brain_coral_wall_fan": "Brain Coral Wall Fan",
  "block.minecraft.bubble_coral_wall_fan": "Bubble Coral Wall Fan",
  "block.minecraft.fire_coral_wall_fan": "Fire Coral Wall Fan",
  "block.minecraft.horn_coral_wall_fan": "Horn Coral Wall Fan",
  "block.minecraft.dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan",
  "block.minecraft.dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan",
  "block.minecraft.dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan",
  "block.minecraft.dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan",
  "block.minecraft.dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan",
  "block.minecraft.loom": "Loom",
  "block.minecraft.conduit": "Conduit",
  "block.minecraft.bamboo": "Bamboo",
  "block.minecraft.bamboo_sapling": "Bamboo Shoot",
  "block.minecraft.jigsaw": "Jigsaw Block",
  "block.minecraft.composter": "Composter",
  "block.minecraft.target": "Target",
  "block.minecraft.polished_granite_stairs": "Polished Granite Stairs",
  "block.minecraft.smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs",
  "block.minecraft.mossy_stone_brick_stairs": "Mossy Stone Brick Stairs",
  "block.minecraft.polished_diorite_stairs": "Polished Diorite Stairs",
  "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobblestone Stairs",
  "block.minecraft.end_stone_brick_stairs": "End Stone Brick Stairs",
  "block.minecraft.stone_stairs": "Stone Stairs",
  "block.minecraft.smooth_sandstone_stairs": "Smooth Sandstone Stairs",
  "block.minecraft.smooth_quartz_stairs": "Smooth Quartz Stairs",
  "block.minecraft.granite_stairs": "Granite Stairs",
  "block.minecraft.andesite_stairs": "Andesite Stairs",
  "block.minecraft.red_nether_brick_stairs": "Red Nether Brick Stairs",
  "block.minecraft.polished_andesite_stairs": "Polished Andesite Stairs",
  "block.minecraft.diorite_stairs": "Diorite Stairs",
  "block.minecraft.polished_granite_slab": "Polished Granite Slab",
  "block.minecraft.smooth_red_sandstone_slab": "Smooth Red Sandstone Slab",
  "block.minecraft.mossy_stone_brick_slab": "Mossy Stone Brick Slab",
  "block.minecraft.polished_diorite_slab": "Polished Diorite Slab",
  "block.minecraft.mossy_cobblestone_slab": "Mossy Cobblestone Slab",
  "block.minecraft.end_stone_brick_slab": "End Stone Brick Slab",
  "block.minecraft.smooth_sandstone_slab": "Smooth Sandstone Slab",
  "block.minecraft.smooth_quartz_slab": "Smooth Quartz Slab",
  "block.minecraft.granite_slab": "Granite Slab",
  "block.minecraft.andesite_slab": "Andesite Slab",
  "block.minecraft.red_nether_brick_slab": "Red Nether Brick Slab",
  "block.minecraft.polished_andesite_slab": "Polished Andesite Slab",
  "block.minecraft.diorite_slab": "Diorite Slab",
  "block.minecraft.brick_wall": "Brick Wall",
  "block.minecraft.prismarine_wall": "Prismarine Wall",
  "block.minecraft.red_sandstone_wall": "Red Sandstone Wall",
  "block.minecraft.mossy_stone_brick_wall": "Mossy Stone Brick Wall",
  "block.minecraft.granite_wall": "Granite Wall",
  "block.minecraft.stone_brick_wall": "Stone Brick Wall",
  "block.minecraft.nether_brick_wall": "Nether Brick Wall",
  "block.minecraft.andesite_wall": "Andesite Wall",
  "block.minecraft.red_nether_brick_wall": "Red Nether Brick Wall",
  "block.minecraft.sandstone_wall": "Sandstone Wall",
  "block.minecraft.end_stone_brick_wall": "End Stone Brick Wall",
  "block.minecraft.diorite_wall": "Diorite Wall",
  "block.minecraft.barrel": "Barrel",
  "block.minecraft.smoker": "Smoker",
  "block.minecraft.blast_furnace": "Blast Furnace",
  "block.minecraft.cartography_table": "Cartography Table",
  "block.minecraft.fletching_table": "Fletching Table",
  "block.minecraft.smithing_table": "Smithing Table",
  "block.minecraft.grindstone": "Grindstone",
  "block.minecraft.lectern": "Lectern",
  "block.minecraft.stonecutter": "Stonecutter",
  "block.minecraft.bell": "Bell",
  "block.minecraft.ominous_banner": "Ominous Banner",
  "block.minecraft.lantern": "Lantern",
  "block.minecraft.soul_lantern": "Soul Lantern",
  "block.minecraft.sweet_berry_bush": "Sweet Berry Bush",
  "block.minecraft.campfire": "Campfire",
  "block.minecraft.soul_campfire": "Soul Campfire",
  "block.minecraft.beehive": "Beehive",
  "block.minecraft.bee_nest": "Bee Nest",
  "block.minecraft.honey_block": "Honey Block",
  "block.minecraft.honeycomb_block": "Honeycomb Block",
  "block.minecraft.lodestone": "Lodestone",
  "block.minecraft.netherite_block": "Block of Netherite",
  "block.minecraft.ancient_debris": "Ancient Debris",
  "block.minecraft.crying_obsidian": "Crying Obsidian",
  "block.minecraft.blackstone": "Blackstone",
  "block.minecraft.blackstone_slab": "Blackstone Slab",
  "block.minecraft.blackstone_stairs": "Blackstone Stairs",
  "block.minecraft.blackstone_wall": "Blackstone Wall",
  "block.minecraft.polished_blackstone_bricks": "Polished Blackstone Bricks",
  "block.minecraft.polished_blackstone_brick_slab": "Polished Blackstone Brick Slab",
  "block.minecraft.polished_blackstone_brick_stairs": "Polished Blackstone Brick Stairs",
  "block.minecraft.polished_blackstone_brick_wall": "Polished Blackstone Brick Wall",
  "block.minecraft.chiseled_polished_blackstone": "Chiseled Polished Blackstone",
  "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Polished Blackstone Bricks",
  "block.minecraft.gilded_blackstone": "Gilded Blackstone",
  "block.minecraft.polished_blackstone": "Polished Blackstone",
  "block.minecraft.polished_blackstone_wall": "Polished Blackstone Wall",
  "block.minecraft.polished_blackstone_slab": "Polished Blackstone Slab",
  "block.minecraft.polished_blackstone_stairs": "Polished Blackstone Stairs",
  "block.minecraft.polished_blackstone_pressure_plate": "Polished Blackstone Pressure Plate",
  "block.minecraft.polished_blackstone_button": "Polished Blackstone Button",
  "block.minecraft.cracked_nether_bricks": "Cracked Nether Bricks",
  "block.minecraft.chiseled_nether_bricks": "Chiseled Nether Bricks",
  "block.minecraft.quartz_bricks": "Quartz Bricks",
  "block.minecraft.chain": "Chain",
  "item.minecraft.name_tag": "Name Tag",
  "item.minecraft.lead": "Lead",
  "item.minecraft.iron_shovel": "Iron Shovel",
  "item.minecraft.iron_pickaxe": "Iron Pickaxe",
  "item.minecraft.iron_axe": "Iron Axe",
  "item.minecraft.flint_and_steel": "Flint and Steel",
  "item.minecraft.apple": "Apple",
  "item.minecraft.cookie": "Cookie",
  "item.minecraft.bow": "Bow",
  "item.minecraft.arrow": "Arrow",
  "item.minecraft.spectral_arrow": "Spectral Arrow",
  "item.minecraft.tipped_arrow": "Tipped Arrow",
  "item.minecraft.dried_kelp": "Dried Kelp",
  "item.minecraft.coal": "Coal",
  "item.minecraft.charcoal": "Charcoal",
  "item.minecraft.diamond": "Diamond",
  "item.minecraft.emerald": "Emerald",
  "item.minecraft.iron_ingot": "Iron Ingot",
  "item.minecraft.gold_ingot": "Gold Ingot",
  "item.minecraft.iron_sword": "Iron Sword",
  "item.minecraft.wooden_sword": "Wooden Sword",
  "item.minecraft.wooden_shovel": "Wooden Shovel",
  "item.minecraft.wooden_pickaxe": "Wooden Pickaxe",
  "item.minecraft.wooden_axe": "Wooden Axe",
  "item.minecraft.stone_sword": "Stone Sword",
  "item.minecraft.stone_shovel": "Stone Shovel",
  "item.minecraft.stone_pickaxe": "Stone Pickaxe",
  "item.minecraft.stone_axe": "Stone Axe",
  "item.minecraft.diamond_sword": "Diamond Sword",
  "item.minecraft.diamond_shovel": "Diamond Shovel",
  "item.minecraft.diamond_pickaxe": "Diamond Pickaxe",
  "item.minecraft.diamond_axe": "Diamond Axe",
  "item.minecraft.stick": "Stick",
  "item.minecraft.bowl": "Bowl",
  "item.minecraft.mushroom_stew": "Mushroom Stew",
  "item.minecraft.golden_sword": "Golden Sword",
  "item.minecraft.golden_shovel": "Golden Shovel",
  "item.minecraft.golden_pickaxe": "Golden Pickaxe",
  "item.minecraft.golden_axe": "Golden Axe",
  "item.minecraft.string": "String",
  "item.minecraft.feather": "Feather",
  "item.minecraft.gunpowder": "Gunpowder",
  "item.minecraft.wooden_hoe": "Wooden Hoe",
  "item.minecraft.stone_hoe": "Stone Hoe",
  "item.minecraft.iron_hoe": "Iron Hoe",
  "item.minecraft.diamond_hoe": "Diamond Hoe",
  "item.minecraft.golden_hoe": "Golden Hoe",
  "item.minecraft.wheat_seeds": "Wheat Seeds",
  "item.minecraft.pumpkin_seeds": "Pumpkin Seeds",
  "item.minecraft.melon_seeds": "Melon Seeds",
  "item.minecraft.melon_slice": "Melon Slice",
  "item.minecraft.wheat": "Wheat",
  "item.minecraft.bread": "Bread",
  "item.minecraft.leather_helmet": "Leather Cap",
  "item.minecraft.leather_chestplate": "Leather Tunic",
  "item.minecraft.leather_leggings": "Leather Pants",
  "item.minecraft.leather_boots": "Leather Boots",
  "item.minecraft.chainmail_helmet": "Chainmail Helmet",
  "item.minecraft.chainmail_chestplate": "Chainmail Chestplate",
  "item.minecraft.chainmail_leggings": "Chainmail Leggings",
  "item.minecraft.chainmail_boots": "Chainmail Boots",
  "item.minecraft.iron_helmet": "Iron Helmet",
  "item.minecraft.iron_chestplate": "Iron Chestplate",
  "item.minecraft.iron_leggings": "Iron Leggings",
  "item.minecraft.iron_boots": "Iron Boots",
  "item.minecraft.diamond_helmet": "Diamond Helmet",
  "item.minecraft.diamond_chestplate": "Diamond Chestplate",
  "item.minecraft.diamond_leggings": "Diamond Leggings",
  "item.minecraft.diamond_boots": "Diamond Boots",
  "item.minecraft.golden_helmet": "Golden Helmet",
  "item.minecraft.golden_chestplate": "Golden Chestplate",
  "item.minecraft.golden_leggings": "Golden Leggings",
  "item.minecraft.golden_boots": "Golden Boots",
  "item.minecraft.flint": "Flint",
  "item.minecraft.porkchop": "Raw Porkchop",
  "item.minecraft.cooked_porkchop": "Cooked Porkchop",
  "item.minecraft.chicken": "Raw Chicken",
  "item.minecraft.cooked_chicken": "Cooked Chicken",
  "item.minecraft.mutton": "Raw Mutton",
  "item.minecraft.cooked_mutton": "Cooked Mutton",
  "item.minecraft.rabbit": "Raw Rabbit",
  "item.minecraft.cooked_rabbit": "Cooked Rabbit",
  "item.minecraft.rabbit_stew": "Rabbit Stew",
  "item.minecraft.rabbit_foot": "Rabbit's Foot",
  "item.minecraft.rabbit_hide": "Rabbit Hide",
  "item.minecraft.beef": "Raw Beef",
  "item.minecraft.cooked_beef": "Steak",
  "item.minecraft.painting": "Painting",
  "item.minecraft.item_frame": "Item Frame",
  "item.minecraft.golden_apple": "Golden Apple",
  "item.minecraft.enchanted_golden_apple": "Enchanted Golden Apple",
  "item.minecraft.sign": "Sign",
  "item.minecraft.bucket": "Bucket",
  "item.minecraft.water_bucket": "Water Bucket",
  "item.minecraft.lava_bucket": "Lava Bucket",
  "item.minecraft.pufferfish_bucket": "Bucket of Pufferfish",
  "item.minecraft.salmon_bucket": "Bucket of Salmon",
  "item.minecraft.cod_bucket": "Bucket of Cod",
  "item.minecraft.tropical_fish_bucket": "Bucket of Tropical Fish",
  "item.minecraft.minecart": "Minecart",
  "item.minecraft.saddle": "Saddle",
  "item.minecraft.redstone": "Redstone Dust",
  "item.minecraft.snowball": "Snowball",
  "item.minecraft.oak_boat": "Oak Boat",
  "item.minecraft.spruce_boat": "Spruce Boat",
  "item.minecraft.birch_boat": "Birch Boat",
  "item.minecraft.jungle_boat": "Jungle Boat",
  "item.minecraft.acacia_boat": "Acacia Boat",
  "item.minecraft.dark_oak_boat": "Dark Oak Boat",
  "item.minecraft.leather": "Leather",
  "item.minecraft.milk_bucket": "Milk Bucket",
  "item.minecraft.brick": "Brick",
  "item.minecraft.clay_ball": "Clay Ball",
  "item.minecraft.paper": "Paper",
  "item.minecraft.book": "Book",
  "item.minecraft.slime_ball": "Slimeball",
  "item.minecraft.chest_minecart": "Minecart with Chest",
  "item.minecraft.furnace_minecart": "Minecart with Furnace",
  "item.minecraft.tnt_minecart": "Minecart with TNT",
  "item.minecraft.hopper_minecart": "Minecart with Hopper",
  "item.minecraft.command_block_minecart": "Minecart with Command Block",
  "item.minecraft.egg": "Egg",
  "item.minecraft.compass": "Compass",
  "item.minecraft.fishing_rod": "Fishing Rod",
  "item.minecraft.clock": "Clock",
  "item.minecraft.glowstone_dust": "Glowstone Dust",
  "item.minecraft.cod": "Raw Cod",
  "item.minecraft.salmon": "Raw Salmon",
  "item.minecraft.pufferfish": "Pufferfish",
  "item.minecraft.tropical_fish": "Tropical Fish",
  "item.minecraft.cooked_cod": "Cooked Cod",
  "item.minecraft.cooked_salmon": "Cooked Salmon",
  "item.minecraft.music_disc_13": "Music Disc",
  "item.minecraft.music_disc_cat": "Music Disc",
  "item.minecraft.music_disc_blocks": "Music Disc",
  "item.minecraft.music_disc_chirp": "Music Disc",
  "item.minecraft.music_disc_far": "Music Disc",
  "item.minecraft.music_disc_mall": "Music Disc",
  "item.minecraft.music_disc_mellohi": "Music Disc",
  "item.minecraft.music_disc_stal": "Music Disc",
  "item.minecraft.music_disc_strad": "Music Disc",
  "item.minecraft.music_disc_ward": "Music Disc",
  "item.minecraft.music_disc_11": "Music Disc",
  "item.minecraft.music_disc_wait": "Music Disc",
  "item.minecraft.music_disc_pigstep": "Music Disc",
  "item.minecraft.music_disc_13.desc": "C418 - 13",
  "item.minecraft.music_disc_cat.desc": "C418 - cat",
  "item.minecraft.music_disc_blocks.desc": "C418 - blocks",
  "item.minecraft.music_disc_chirp.desc": "C418 - chirp",
  "item.minecraft.music_disc_far.desc": "C418 - far",
  "item.minecraft.music_disc_mall.desc": "C418 - mall",
  "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi",
  "item.minecraft.music_disc_stal.desc": "C418 - stal",
  "item.minecraft.music_disc_strad.desc": "C418 - strad",
  "item.minecraft.music_disc_ward.desc": "C418 - ward",
  "item.minecraft.music_disc_11.desc": "C418 - 11",
  "item.minecraft.music_disc_wait.desc": "C418 - wait",
  "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep",
  "item.minecraft.bone": "Bone",
  "item.minecraft.ink_sac": "Ink Sac",
  "item.minecraft.red_dye": "Red Dye",
  "item.minecraft.green_dye": "Green Dye",
  "item.minecraft.cocoa_beans": "Cocoa Beans",
  "item.minecraft.lapis_lazuli": "Lapis Lazuli",
  "item.minecraft.purple_dye": "Purple Dye",
  "item.minecraft.cyan_dye": "Cyan Dye",
  "item.minecraft.light_gray_dye": "Light Gray Dye",
  "item.minecraft.gray_dye": "Gray Dye",
  "item.minecraft.pink_dye": "Pink Dye",
  "item.minecraft.lime_dye": "Lime Dye",
  "item.minecraft.yellow_dye": "Yellow Dye",
  "item.minecraft.light_blue_dye": "Light Blue Dye",
  "item.minecraft.magenta_dye": "Magenta Dye",
  "item.minecraft.orange_dye": "Orange Dye",
  "item.minecraft.bone_meal": "Bone Meal",
  "item.minecraft.blue_dye": "Blue Dye",
  "item.minecraft.black_dye": "Black Dye",
  "item.minecraft.brown_dye": "Brown Dye",
  "item.minecraft.white_dye": "White Dye",
  "item.minecraft.sugar": "Sugar",
  "block.minecraft.black_bed": "Black Bed",
  "block.minecraft.red_bed": "Red Bed",
  "block.minecraft.green_bed": "Green Bed",
  "block.minecraft.brown_bed": "Brown Bed",
  "block.minecraft.blue_bed": "Blue Bed",
  "block.minecraft.purple_bed": "Purple Bed",
  "block.minecraft.cyan_bed": "Cyan Bed",
  "block.minecraft.light_gray_bed": "Light Gray Bed",
  "block.minecraft.gray_bed": "Gray Bed",
  "block.minecraft.pink_bed": "Pink Bed",
  "block.minecraft.lime_bed": "Lime Bed",
  "block.minecraft.yellow_bed": "Yellow Bed",
  "block.minecraft.light_blue_bed": "Light Blue Bed",
  "block.minecraft.magenta_bed": "Magenta Bed",
  "block.minecraft.orange_bed": "Orange Bed",
  "block.minecraft.white_bed": "White Bed",
  "block.minecraft.repeater": "Redstone Repeater",
  "block.minecraft.comparator": "Redstone Comparator",
  "item.minecraft.filled_map": "Map",
  "item.minecraft.shears": "Shears",
  "item.minecraft.rotten_flesh": "Rotten Flesh",
  "item.minecraft.ender_pearl": "Ender Pearl",
  "item.minecraft.blaze_rod": "Blaze Rod",
  "item.minecraft.ghast_tear": "Ghast Tear",
  "item.minecraft.nether_wart": "Nether Wart",
  "item.minecraft.potion": "Potion",
  "item.minecraft.splash_potion": "Splash Potion",
  "item.minecraft.lingering_potion": "Lingering Potion",
  "item.minecraft.end_crystal": "End Crystal",
  "item.minecraft.gold_nugget": "Gold Nugget",
  "item.minecraft.glass_bottle": "Glass Bottle",
  "item.minecraft.spider_eye": "Spider Eye",
  "item.minecraft.fermented_spider_eye": "Fermented Spider Eye",
  "item.minecraft.blaze_powder": "Blaze Powder",
  "item.minecraft.magma_cream": "Magma Cream",
  "item.minecraft.cauldron": "Cauldron",
  "item.minecraft.brewing_stand": "Brewing Stand",
  "item.minecraft.ender_eye": "Eye of Ender",
  "item.minecraft.glistering_melon_slice": "Glistering Melon Slice",
  "item.minecraft.bat_spawn_egg": "Bat Spawn Egg",
  "item.minecraft.bee_spawn_egg": "Bee Spawn Egg",
  "item.minecraft.blaze_spawn_egg": "Blaze Spawn Egg",
  "item.minecraft.cat_spawn_egg": "Cat Spawn Egg",
  "item.minecraft.cave_spider_spawn_egg": "Cave Spider Spawn Egg",
  "item.minecraft.chicken_spawn_egg": "Chicken Spawn Egg",
  "item.minecraft.cod_spawn_egg": "Cod Spawn Egg",
  "item.minecraft.cow_spawn_egg": "Cow Spawn Egg",
  "item.minecraft.creeper_spawn_egg": "Creeper Spawn Egg",
  "item.minecraft.dolphin_spawn_egg": "Dolphin Spawn Egg",
  "item.minecraft.donkey_spawn_egg": "Donkey Spawn Egg",
  "item.minecraft.drowned_spawn_egg": "Drowned Spawn Egg",
  "item.minecraft.elder_guardian_spawn_egg": "Elder Guardian Spawn Egg",
  "item.minecraft.enderman_spawn_egg": "Enderman Spawn Egg",
  "item.minecraft.endermite_spawn_egg": "Endermite Spawn Egg",
  "item.minecraft.evoker_spawn_egg": "Evoker Spawn Egg",
  "item.minecraft.ghast_spawn_egg": "Ghast Spawn Egg",
  "item.minecraft.guardian_spawn_egg": "Guardian Spawn Egg",
  "item.minecraft.hoglin_spawn_egg": "Hoglin Spawn Egg",
  "item.minecraft.horse_spawn_egg": "Horse Spawn Egg",
  "item.minecraft.husk_spawn_egg": "Husk Spawn Egg",
  "item.minecraft.ravager_spawn_egg": "Ravager Spawn Egg",
  "item.minecraft.llama_spawn_egg": "Llama Spawn Egg",
  "item.minecraft.magma_cube_spawn_egg": "Magma Cube Spawn Egg",
  "item.minecraft.mooshroom_spawn_egg": "Mooshroom Spawn Egg",
  "item.minecraft.mule_spawn_egg": "Mule Spawn Egg",
  "item.minecraft.ocelot_spawn_egg": "Ocelot Spawn Egg",
  "item.minecraft.panda_spawn_egg": "Panda Spawn Egg",
  "item.minecraft.parrot_spawn_egg": "Parrot Spawn Egg",
  "item.minecraft.pig_spawn_egg": "Pig Spawn Egg",
  "item.minecraft.piglin_spawn_egg": "Piglin Spawn Egg",
  "item.minecraft.pillager_spawn_egg": "Pillager Spawn Egg",
  "item.minecraft.phantom_spawn_egg": "Phantom Spawn Egg",
  "item.minecraft.polar_bear_spawn_egg": "Polar Bear Spawn Egg",
  "item.minecraft.pufferfish_spawn_egg": "Pufferfish Spawn Egg",
  "item.minecraft.rabbit_spawn_egg": "Rabbit Spawn Egg",
  "item.minecraft.fox_spawn_egg": "Fox Spawn Egg",
  "item.minecraft.salmon_spawn_egg": "Salmon Spawn Egg",
  "item.minecraft.sheep_spawn_egg": "Sheep Spawn Egg",
  "item.minecraft.shulker_spawn_egg": "Shulker Spawn Egg",
  "item.minecraft.silverfish_spawn_egg": "Silverfish Spawn Egg",
  "item.minecraft.skeleton_spawn_egg": "Skeleton Spawn Egg",
  "item.minecraft.skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg",
  "item.minecraft.slime_spawn_egg": "Slime Spawn Egg",
  "item.minecraft.spider_spawn_egg": "Spider Spawn Egg",
  "item.minecraft.squid_spawn_egg": "Squid Spawn Egg",
  "item.minecraft.stray_spawn_egg": "Stray Spawn Egg",
  "item.minecraft.strider_spawn_egg": "Strider Spawn Egg",
  "item.minecraft.trader_llama_spawn_egg": "Trader Llama Spawn Egg",
  "item.minecraft.tropical_fish_spawn_egg": "Tropical Fish Spawn Egg",
  "item.minecraft.turtle_spawn_egg": "Turtle Spawn Egg",
  "item.minecraft.vex_spawn_egg": "Vex Spawn Egg",
  "item.minecraft.villager_spawn_egg": "Villager Spawn Egg",
  "item.minecraft.wandering_trader_spawn_egg": "Wandering Trader Spawn Egg",
  "item.minecraft.vindicator_spawn_egg": "Vindicator Spawn Egg",
  "item.minecraft.witch_spawn_egg": "Witch Spawn Egg",
  "item.minecraft.wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg",
  "item.minecraft.wolf_spawn_egg": "Wolf Spawn Egg",
  "item.minecraft.zoglin_spawn_egg": "Zoglin Spawn Egg",
  "item.minecraft.zombie_spawn_egg": "Zombie Spawn Egg",
  "item.minecraft.zombie_horse_spawn_egg": "Zombie Horse Spawn Egg",
  "item.minecraft.zombified_piglin_spawn_egg": "Zombified Piglin Spawn Egg",
  "item.minecraft.zombie_villager_spawn_egg": "Zombie Villager Spawn Egg",
  "item.minecraft.experience_bottle": "Bottle o' Enchanting",
  "item.minecraft.fire_charge": "Fire Charge",
  "item.minecraft.writable_book": "Book and Quill",
  "item.minecraft.written_book": "Written Book",
  "item.minecraft.flower_pot": "Flower Pot",
  "item.minecraft.map": "Empty Map",
  "item.minecraft.carrot": "Carrot",
  "item.minecraft.golden_carrot": "Golden Carrot",
  "item.minecraft.potato": "Potato",
  "item.minecraft.baked_potato": "Baked Potato",
  "item.minecraft.poisonous_potato": "Poisonous Potato",
  "item.minecraft.carrot_on_a_stick": "Carrot on a Stick",
  "item.minecraft.nether_star": "Nether Star",
  "item.minecraft.pumpkin_pie": "Pumpkin Pie",
  "item.minecraft.enchanted_book": "Enchanted Book",
  "item.minecraft.firework_rocket": "Firework Rocket",
  "item.minecraft.firework_rocket.flight": "Flight Duration:",
  "item.minecraft.firework_star": "Firework Star",
  "item.minecraft.firework_star.black": "Black",
  "item.minecraft.firework_star.red": "Red",
  "item.minecraft.firework_star.green": "Green",
  "item.minecraft.firework_star.brown": "Brown",
  "item.minecraft.firework_star.blue": "Blue",
  "item.minecraft.firework_star.purple": "Purple",
  "item.minecraft.firework_star.cyan": "Cyan",
  "item.minecraft.firework_star.light_gray": "Light Gray",
  "item.minecraft.firework_star.gray": "Gray",
  "item.minecraft.firework_star.pink": "Pink",
  "item.minecraft.firework_star.lime": "Lime",
  "item.minecraft.firework_star.yellow": "Yellow",
  "item.minecraft.firework_star.light_blue": "Light Blue",
  "item.minecraft.firework_star.magenta": "Magenta",
  "item.minecraft.firework_star.orange": "Orange",
  "item.minecraft.firework_star.white": "White",
  "item.minecraft.firework_star.custom_color": "Custom",
  "item.minecraft.firework_star.fade_to": "Fade to",
  "item.minecraft.firework_star.flicker": "Twinkle",
  "item.minecraft.firework_star.trail": "Trail",
  "item.minecraft.firework_star.shape.small_ball": "Small Ball",
  "item.minecraft.firework_star.shape.large_ball": "Large Ball",
  "item.minecraft.firework_star.shape.star": "Star-shaped",
  "item.minecraft.firework_star.shape.creeper": "Creeper-shaped",
  "item.minecraft.firework_star.shape.burst": "Burst",
  "item.minecraft.firework_star.shape": "Unknown Shape",
  "item.minecraft.nether_brick": "Nether Brick",
  "item.minecraft.quartz": "Nether Quartz",
  "item.minecraft.armor_stand": "Armor Stand",
  "item.minecraft.iron_horse_armor": "Iron Horse Armor",
  "item.minecraft.golden_horse_armor": "Golden Horse Armor",
  "item.minecraft.diamond_horse_armor": "Diamond Horse Armor",
  "item.minecraft.leather_horse_armor": "Leather Horse Armor",
  "item.minecraft.prismarine_shard": "Prismarine Shard",
  "item.minecraft.prismarine_crystals": "Prismarine Crystals",
  "item.minecraft.chorus_fruit": "Chorus Fruit",
  "item.minecraft.popped_chorus_fruit": "Popped Chorus Fruit",
  "item.minecraft.beetroot": "Beetroot",
  "item.minecraft.beetroot_seeds": "Beetroot Seeds",
  "item.minecraft.beetroot_soup": "Beetroot Soup",
  "item.minecraft.dragon_breath": "Dragon's Breath",
  "item.minecraft.elytra": "Elytra",
  "item.minecraft.totem_of_undying": "Totem of Undying",
  "item.minecraft.shulker_shell": "Shulker Shell",
  "item.minecraft.iron_nugget": "Iron Nugget",
  "item.minecraft.knowledge_book": "Knowledge Book",
  "item.minecraft.debug_stick": "Debug Stick",
  "item.minecraft.debug_stick.empty": "%s has no properties",
  "item.minecraft.debug_stick.update": "\"%s\" to %s",
  "item.minecraft.debug_stick.select": "selected \"%s\" (%s)",
  "item.minecraft.trident": "Trident",
  "item.minecraft.scute": "Scute",
  "item.minecraft.turtle_helmet": "Turtle Shell",
  "item.minecraft.phantom_membrane": "Phantom Membrane",
  "item.minecraft.nautilus_shell": "Nautilus Shell",
  "item.minecraft.heart_of_the_sea": "Heart of the Sea",
  "item.minecraft.crossbow": "Crossbow",
  "item.minecraft.crossbow.projectile": "Projectile:",
  "item.minecraft.suspicious_stew": "Suspicious Stew",
  "item.minecraft.creeper_banner_pattern": "Banner Pattern",
  "item.minecraft.skull_banner_pattern": "Banner Pattern",
  "item.minecraft.flower_banner_pattern": "Banner Pattern",
  "item.minecraft.mojang_banner_pattern": "Banner Pattern",
  "item.minecraft.globe_banner_pattern": "Banner Pattern",
  "item.minecraft.creeper_banner_pattern.desc": "Creeper Charge",
  "item.minecraft.skull_banner_pattern.desc": "Skull Charge",
  "item.minecraft.flower_banner_pattern.desc": "Flower Charge",
  "item.minecraft.mojang_banner_pattern.desc": "Thing",
  "item.minecraft.globe_banner_pattern.desc": "Globe",
  "item.minecraft.piglin_banner_pattern": "Banner Pattern",
  "item.minecraft.piglin_banner_pattern.desc": "Snout",
  "item.minecraft.sweet_berries": "Sweet Berries",
  "item.minecraft.honey_bottle": "Honey Bottle",
  "item.minecraft.honeycomb": "Honeycomb",
  "item.minecraft.lodestone_compass": "Lodestone Compass",
  "item.minecraft.netherite_scrap": "Netherite Scrap",
  "item.minecraft.netherite_ingot": "Netherite Ingot",
  "item.minecraft.netherite_helmet": "Netherite Helmet",
  "item.minecraft.netherite_chestplate": "Netherite Chestplate",
  "item.minecraft.netherite_leggings": "Netherite Leggings",
  "item.minecraft.netherite_boots": "Netherite Boots",
  "item.minecraft.netherite_axe": "Netherite Axe",
  "item.minecraft.netherite_pickaxe": "Netherite Pickaxe",
  "item.minecraft.netherite_hoe": "Netherite Hoe",
  "item.minecraft.netherite_shovel": "Netherite Shovel",
  "item.minecraft.netherite_sword": "Netherite Sword",
  "item.minecraft.warped_fungus_on_a_stick": "Warped Fungus on a Stick",
  "container.inventory": "Inventory",
  "container.hopper": "Item Hopper",
  "container.crafting": "Crafting",
  "container.dispenser": "Dispenser",
  "container.dropper": "Dropper",
  "container.furnace": "Furnace",
  "container.enchant": "Enchant",
  "container.smoker": "Smoker",
  "container.lectern": "Lectern",
  "container.blast_furnace": "Blast Furnace",
  "container.enchant.lapis.one": "1 Lapis Lazuli",
  "container.enchant.lapis.many": "%s Lapis Lazuli",
  "container.enchant.level.one": "1 Enchantment Level",
  "container.enchant.level.many": "%s Enchantment Levels",
  "container.enchant.level.requirement": "Level requirement: %s",
  "container.enchant.clue": "%s . . . ?",
  "container.repair": "Repair & Name",
  "container.repair.cost": "Enchantment Cost: %1$s",
  "container.repair.expensive": "Too Expensive!",
  "container.creative": "Item Selection",
  "container.brewing": "Brewing Stand",
  "container.chest": "Chest",
  "container.chestDouble": "Large Chest",
  "container.enderchest": "Ender Chest",
  "container.beacon": "Beacon",
  "container.shulkerBox": "Shulker Box",
  "container.shulkerBox.more": "and %s more...",
  "container.barrel": "Barrel",
  "container.spectatorCantOpen": "Unable to open. Loot not generated yet.",
  "container.isLocked": "%s is locked!",
  "container.loom": "Loom",
  "container.grindstone_title": "Repair & Disenchant",
  "container.cartography_table": "Cartography Table",
  "container.stonecutter": "Stonecutter",
  "container.upgrade": "Upgrade Gear",
  "structure_block.invalid_structure_name": "Invalid structure name '%s'",
  "structure_block.save_success": "Structure saved as '%s'",
  "structure_block.save_failure": "Unable to save structure '%s'",
  "structure_block.load_success": "Structure loaded from '%s'",
  "structure_block.load_prepare": "Structure '%s' position prepared",
  "structure_block.load_not_found": "Structure '%s' is not available",
  "structure_block.size_success": "Size successfully detected for '%s'",
  "structure_block.size_failure": "Unable to detect structure size. Add corners with matching structure names",
  "structure_block.mode.save": "Save",
  "structure_block.mode.load": "Load",
  "structure_block.mode.data": "Data",
  "structure_block.mode.corner": "Corner",
  "structure_block.hover.save": "Save: %s",
  "structure_block.hover.load": "Load: %s",
  "structure_block.hover.data": "Data: %s",
  "structure_block.hover.corner": "Corner: %s",
  "structure_block.mode_info.save": "Save mode - write to file",
  "structure_block.mode_info.load": "Load mode - load from file",
  "structure_block.mode_info.data": "Data mode - game logic marker",
  "structure_block.mode_info.corner": "Corner mode - placement and size marker",
  "structure_block.structure_name": "Structure Name",
  "structure_block.custom_data": "Custom Data Tag Name",
  "structure_block.position": "Relative Position",
  "structure_block.position.x": "relative Position x",
  "structure_block.position.y": "relative position y",
  "structure_block.position.z": "relative position z",
  "structure_block.size": "Structure Size",
  "structure_block.size.x": "structure size x",
  "structure_block.size.y": "structure size y",
  "structure_block.size.z": "structure size z",
  "structure_block.integrity": "Structure Integrity and Seed",
  "structure_block.integrity.integrity": "Structure Integrity",
  "structure_block.integrity.seed": "Structure Seed",
  "structure_block.include_entities": "Include entities:",
  "structure_block.detect_size": "Detect structure size and position:",
  "structure_block.button.detect_size": "DETECT",
  "structure_block.button.save": "SAVE",
  "structure_block.button.load": "LOAD",
  "structure_block.show_air": "Show invisible blocks:",
  "structure_block.show_boundingbox": "Show bounding box:",
  "jigsaw_block.pool": "Target pool:",
  "jigsaw_block.name": "Name:",
  "jigsaw_block.target": "Target name:",
  "jigsaw_block.final_state": "Turns into:",
  "jigsaw_block.levels": "Levels: %s",
  "jigsaw_block.keep_jigsaws": "Keep Jigsaws: ",
  "jigsaw_block.generate": "Generate",
  "jigsaw_block.joint_label": "Joint type:",
  "jigsaw_block.joint.rollable": "Rollable",
  "jigsaw_block.joint.aligned": "Aligned",
  "item.dyed": "Dyed",
  "item.unbreakable": "Unbreakable",
  "item.canBreak": "Can break:",
  "item.canPlace": "Can be placed on:",
  "item.color": "Color: %s",
  "item.nbt_tags": "NBT: %s tag(s)",
  "item.durability": "Durability: %s / %s",
  "filled_map.mansion": "Woodland Explorer Map",
  "filled_map.monument": "Ocean Explorer Map",
  "filled_map.buried_treasure": "Buried Treasure Map",
  "filled_map.unknown": "Unknown Map",
  "filled_map.id": "Id #%s",
  "filled_map.level": "(Level %s/%s)",
  "filled_map.scale": "Scaling at 1:%s",
  "filled_map.locked": "Locked",
  "entity.minecraft.area_effect_cloud": "Area Effect Cloud",
  "entity.minecraft.armor_stand": "Armor Stand",
  "entity.minecraft.arrow": "Arrow",
  "entity.minecraft.bat": "Bat",
  "entity.minecraft.bee": "Bee",
  "entity.minecraft.blaze": "Blaze",
  "entity.minecraft.boat": "Boat",
  "entity.minecraft.cat": "Cat",
  "entity.minecraft.cave_spider": "Cave Spider",
  "entity.minecraft.chest_minecart": "Minecart with Chest",
  "entity.minecraft.chicken": "Chicken",
  "entity.minecraft.command_block_minecart": "Minecart with Command Block",
  "entity.minecraft.cod": "Cod",
  "entity.minecraft.cow": "Cow",
  "entity.minecraft.creeper": "Creeper",
  "entity.minecraft.dolphin": "Dolphin",
  "entity.minecraft.donkey": "Donkey",
  "entity.minecraft.drowned": "Drowned",
  "entity.minecraft.dragon_fireball": "Dragon Fireball",
  "entity.minecraft.egg": "Thrown Egg",
  "entity.minecraft.elder_guardian": "Elder Guardian",
  "entity.minecraft.end_crystal": "End Crystal",
  "entity.minecraft.ender_dragon": "Ender Dragon",
  "entity.minecraft.ender_pearl": "Thrown Ender Pearl",
  "entity.minecraft.enderman": "Enderman",
  "entity.minecraft.endermite": "Endermite",
  "entity.minecraft.evoker_fangs": "Evoker Fangs",
  "entity.minecraft.evoker": "Evoker",
  "entity.minecraft.eye_of_ender": "Eye of Ender",
  "entity.minecraft.falling_block": "Falling Block",
  "entity.minecraft.fireball": "Fireball",
  "entity.minecraft.firework_rocket": "Firework Rocket",
  "entity.minecraft.fishing_bobber": "Fishing Bobber",
  "entity.minecraft.fox": "Fox",
  "entity.minecraft.furnace_minecart": "Minecart with Furnace",
  "entity.minecraft.ghast": "Ghast",
  "entity.minecraft.giant": "Giant",
  "entity.minecraft.guardian": "Guardian",
  "entity.minecraft.hoglin": "Hoglin",
  "entity.minecraft.hopper_minecart": "Minecart with Hopper",
  "entity.minecraft.horse": "Horse",
  "entity.minecraft.husk": "Husk",
  "entity.minecraft.ravager": "Ravager",
  "entity.minecraft.illusioner": "Illusioner",
  "entity.minecraft.item": "Item",
  "entity.minecraft.item_frame": "Item Frame",
  "entity.minecraft.killer_bunny": "The Killer Bunny",
  "entity.minecraft.leash_knot": "Leash Knot",
  "entity.minecraft.lightning_bolt": "Lightning Bolt",
  "entity.minecraft.llama": "Llama",
  "entity.minecraft.llama_spit": "Llama Spit",
  "entity.minecraft.magma_cube": "Magma Cube",
  "entity.minecraft.minecart": "Minecart",
  "entity.minecraft.mooshroom": "Mooshroom",
  "entity.minecraft.mule": "Mule",
  "entity.minecraft.ocelot": "Ocelot",
  "entity.minecraft.painting": "Painting",
  "entity.minecraft.panda": "Panda",
  "entity.minecraft.parrot": "Parrot",
  "entity.minecraft.phantom": "Phantom",
  "entity.minecraft.pig": "Pig",
  "entity.minecraft.piglin": "Piglin",
  "entity.minecraft.pillager": "Pillager",
  "entity.minecraft.player": "Player",
  "entity.minecraft.polar_bear": "Polar Bear",
  "entity.minecraft.potion": "Potion",
  "entity.minecraft.pufferfish": "Pufferfish",
  "entity.minecraft.rabbit": "Rabbit",
  "entity.minecraft.salmon": "Salmon",
  "entity.minecraft.sheep": "Sheep",
  "entity.minecraft.shulker": "Shulker",
  "entity.minecraft.shulker_bullet": "Shulker Bullet",
  "entity.minecraft.silverfish": "Silverfish",
  "entity.minecraft.skeleton": "Skeleton",
  "entity.minecraft.skeleton_horse": "Skeleton Horse",
  "entity.minecraft.slime": "Slime",
  "entity.minecraft.small_fireball": "Small Fireball",
  "entity.minecraft.snowball": "Snowball",
  "entity.minecraft.snow_golem": "Snow Golem",
  "entity.minecraft.spawner_minecart": "Minecart with Spawner",
  "entity.minecraft.spectral_arrow": "Spectral Arrow",
  "entity.minecraft.spider": "Spider",
  "entity.minecraft.squid": "Squid",
  "entity.minecraft.stray": "Stray",
  "entity.minecraft.strider": "Strider",
  "entity.minecraft.tnt": "Primed TNT",
  "entity.minecraft.tnt_minecart": "Minecart with TNT",
  "entity.minecraft.trader_llama": "Trader Llama",
  "entity.minecraft.trident": "Trident",
  "entity.minecraft.tropical_fish": "Tropical Fish",
  "entity.minecraft.tropical_fish.predefined.0": "Anemone",
  "entity.minecraft.tropical_fish.predefined.1": "Black Tang",
  "entity.minecraft.tropical_fish.predefined.2": "Blue Tang",
  "entity.minecraft.tropical_fish.predefined.3": "Butterflyfish",
  "entity.minecraft.tropical_fish.predefined.4": "Cichlid",
  "entity.minecraft.tropical_fish.predefined.5": "Clownfish",
  "entity.minecraft.tropical_fish.predefined.6": "Cotton Candy Betta",
  "entity.minecraft.tropical_fish.predefined.7": "Dottyback",
  "entity.minecraft.tropical_fish.predefined.8": "Emperor Red Snapper",
  "entity.minecraft.tropical_fish.predefined.9": "Goatfish",
  "entity.minecraft.tropical_fish.predefined.10": "Moorish Idol",
  "entity.minecraft.tropical_fish.predefined.11": "Ornate Butterflyfish",
  "entity.minecraft.tropical_fish.predefined.12": "Parrotfish",
  "entity.minecraft.tropical_fish.predefined.13": "Queen Angelfish",
  "entity.minecraft.tropical_fish.predefined.14": "Red Cichlid",
  "entity.minecraft.tropical_fish.predefined.15": "Red Lipped Blenny",
  "entity.minecraft.tropical_fish.predefined.16": "Red Snapper",
  "entity.minecraft.tropical_fish.predefined.17": "Threadfin",
  "entity.minecraft.tropical_fish.predefined.18": "Tomato Clownfish",
  "entity.minecraft.tropical_fish.predefined.19": "Triggerfish",
  "entity.minecraft.tropical_fish.predefined.20": "Yellowtail Parrotfish",
  "entity.minecraft.tropical_fish.predefined.21": "Yellow Tang",
  "entity.minecraft.tropical_fish.type.flopper": "Flopper",
  "entity.minecraft.tropical_fish.type.stripey": "Stripey",
  "entity.minecraft.tropical_fish.type.glitter": "Glitter",
  "entity.minecraft.tropical_fish.type.blockfish": "Blockfish",
  "entity.minecraft.tropical_fish.type.betty": "Betty",
  "entity.minecraft.tropical_fish.type.clayfish": "Clayfish",
  "entity.minecraft.tropical_fish.type.kob": "Kob",
  "entity.minecraft.tropical_fish.type.sunstreak": "Sunstreak",
  "entity.minecraft.tropical_fish.type.snooper": "Snooper",
  "entity.minecraft.tropical_fish.type.dasher": "Dasher",
  "entity.minecraft.tropical_fish.type.brinely": "Brinely",
  "entity.minecraft.tropical_fish.type.spotty": "Spotty",
  "entity.minecraft.turtle": "Turtle",
  "entity.minecraft.vex": "Vex",
  "entity.minecraft.villager.armorer": "Armorer",
  "entity.minecraft.villager.butcher": "Butcher",
  "entity.minecraft.villager.cartographer": "Cartographer",
  "entity.minecraft.villager.cleric": "Cleric",
  "entity.minecraft.villager.farmer": "Farmer",
  "entity.minecraft.villager.fisherman": "Fisherman",
  "entity.minecraft.villager.fletcher": "Fletcher",
  "entity.minecraft.villager.leatherworker": "Leatherworker",
  "entity.minecraft.villager.librarian": "Librarian",
  "entity.minecraft.villager.mason": "Mason",
  "entity.minecraft.villager.none": "Villager",
  "entity.minecraft.villager.nitwit": "Nitwit",
  "entity.minecraft.villager.shepherd": "Shepherd",
  "entity.minecraft.villager.toolsmith": "Toolsmith",
  "entity.minecraft.villager.weaponsmith": "Weaponsmith",
  "entity.minecraft.villager": "Villager",
  "entity.minecraft.wandering_trader": "Wandering Trader",
  "entity.minecraft.iron_golem": "Iron Golem",
  "entity.minecraft.vindicator": "Vindicator",
  "entity.minecraft.witch": "Witch",
  "entity.minecraft.wither": "Wither",
  "entity.minecraft.wither_skeleton": "Wither Skeleton",
  "entity.minecraft.wither_skull": "Wither Skull",
  "entity.minecraft.wolf": "Wolf",
  "entity.minecraft.experience_bottle": "Thrown Bottle o' Enchanting",
  "entity.minecraft.experience_orb": "Experience Orb",
  "entity.minecraft.zoglin": "Zoglin",
  "entity.minecraft.zombie": "Zombie",
  "entity.minecraft.zombie_horse": "Zombie Horse",
  "entity.minecraft.zombified_piglin": "Zombified Piglin",
  "entity.minecraft.zombie_villager": "Zombie Villager",
  "death.fell.accident.ladder": "%1$s fell off a ladder",
  "death.fell.accident.vines": "%1$s fell off some vines",
  "death.fell.accident.weeping_vines": "%1$s fell off some weeping vines",
  "death.fell.accident.twisting_vines": "%1$s fell off some twisting vines",
  "death.fell.accident.scaffolding": "%1$s fell off scaffolding",
  "death.fell.accident.other_climbable": "%1$s fell while climbing",
  "death.fell.accident.generic": "%1$s fell from a high place",
  "death.fell.killer": "%1$s was doomed to fall",
  "death.fell.assist": "%1$s was doomed to fall by %2$s",
  "death.fell.assist.item": "%1$s was doomed to fall by %2$s using %3$s",
  "death.fell.finish": "%1$s fell too far and was finished by %2$s",
  "death.fell.finish.item": "%1$s fell too far and was finished by %2$s using %3$s",
  "death.attack.lightningBolt": "%1$s was struck by lightning",
  "death.attack.lightningBolt.player": "%1$s was struck by lightning whilst fighting %2$s",
  "death.attack.inFire": "%1$s went up in flames",
  "death.attack.inFire.player": "%1$s walked into fire whilst fighting %2$s",
  "death.attack.onFire": "%1$s burned to death",
  "death.attack.onFire.player": "%1$s was burnt to a crisp whilst fighting %2$s",
  "death.attack.lava": "%1$s tried to swim in lava",
  "death.attack.lava.player": "%1$s tried to swim in lava to escape %2$s",
  "death.attack.hotFloor": "%1$s discovered the floor was lava",
  "death.attack.hotFloor.player": "%1$s walked into danger zone due to %2$s",
  "death.attack.inWall": "%1$s suffocated in a wall",
  "death.attack.inWall.player": "%1$s suffocated in a wall whilst fighting %2$s",
  "death.attack.cramming": "%1$s was squished too much",
  "death.attack.cramming.player": "%1$s was squashed by %2$s",
  "death.attack.drown": "%1$s drowned",
  "death.attack.drown.player": "%1$s drowned whilst trying to escape %2$s",
  "death.attack.starve": "%1$s starved to death",
  "death.attack.starve.player": "%1$s starved to death whilst fighting %2$s",
  "death.attack.cactus": "%1$s was pricked to death",
  "death.attack.cactus.player": "%1$s walked into a cactus whilst trying to escape %2$s",
  "death.attack.generic": "%1$s died",
  "death.attack.generic.player": "%1$s died because of %2$s",
  "death.attack.explosion": "%1$s blew up",
  "death.attack.explosion.player": "%1$s was blown up by %2$s",
  "death.attack.explosion.player.item": "%1$s was blown up by %2$s using %3$s",
  "death.attack.magic": "%1$s was killed by magic",
  "death.attack.magic.player": "%1$s was killed by magic whilst trying to escape %2$s",
  "death.attack.even_more_magic": "%1$s was killed by even more magic",
  "death.attack.message_too_long": "Actually, message was too long to deliver fully. Sorry! Here's stripped version: %s",
  "death.attack.wither": "%1$s withered away",
  "death.attack.wither.player": "%1$s withered away whilst fighting %2$s",
  "death.attack.witherSkull": "%1$s was shot by a %2$s's skull",
  "death.attack.anvil": "%1$s was squashed by a falling anvil",
  "death.attack.anvil.player": "%1$s was squashed by a falling anvil whilst fighting %2$s",
  "death.attack.fallingBlock": "%1$s was squashed by a falling block",
  "death.attack.fallingBlock.player": "%1$s was squashed by a falling block whilst fighting %2$s",
  "death.attack.mob": "%1$s was slain by %2$s",
  "death.attack.mob.item": "%1$s was slain by %2$s using %3$s",
  "death.attack.player": "%1$s was slain by %2$s",
  "death.attack.player.item": "%1$s was slain by %2$s using %3$s",
  "death.attack.arrow": "%1$s was shot by %2$s",
  "death.attack.arrow.item": "%1$s was shot by %2$s using %3$s",
  "death.attack.fireball": "%1$s was fireballed by %2$s",
  "death.attack.fireball.item": "%1$s was fireballed by %2$s using %3$s",
  "death.attack.thrown": "%1$s was pummeled by %2$s",
  "death.attack.thrown.item": "%1$s was pummeled by %2$s using %3$s",
  "death.attack.indirectMagic": "%1$s was killed by %2$s using magic",
  "death.attack.indirectMagic.item": "%1$s was killed by %2$s using %3$s",
  "death.attack.thorns": "%1$s was killed trying to hurt %2$s",
  "death.attack.thorns.item": "%1$s was killed by %3$s trying to hurt %2$s",
  "death.attack.trident": "%1$s was impaled by %2$s",
  "death.attack.trident.item": "%1$s was impaled by %2$s with %3$s",
  "death.attack.fall": "%1$s hit the ground too hard",
  "death.attack.fall.player": "%1$s hit the ground too hard whilst trying to escape %2$s",
  "death.attack.outOfWorld": "%1$s fell out of the world",
  "death.attack.outOfWorld.player": "%1$s didn't want to live in the same world as %2$s",
  "death.attack.dragonBreath": "%1$s was roasted in dragon breath",
  "death.attack.dragonBreath.player": "%1$s was roasted in dragon breath by %2$s",
  "death.attack.flyIntoWall": "%1$s experienced kinetic energy",
  "death.attack.flyIntoWall.player": "%1$s experienced kinetic energy whilst trying to escape %2$s",
  "death.attack.fireworks": "%1$s went off with a bang",
  "death.attack.fireworks.player": "%1$s went off with a bang whilst fighting %2$s",
  "death.attack.fireworks.item": "%1$s went off with a bang due to a firework fired from %3$s by %2$s",
  "death.attack.badRespawnPoint.message": "%1$s was killed by %2$s",
  "death.attack.badRespawnPoint.link": "Intentional Game Design",
  "death.attack.sweetBerryBush": "%1$s was poked to death by a sweet berry bush",
  "death.attack.sweetBerryBush.player": "%1$s was poked to death by a sweet berry bush whilst trying to escape %2$s",
  "death.attack.sting": "%1$s was stung to death",
  "death.attack.sting.player": "%1$s was stung to death by %2$s",
  "deathScreen.respawn": "Respawn",
  "deathScreen.spectate": "Spectate world",
  "deathScreen.titleScreen": "Title screen",
  "deathScreen.score": "Score",
  "deathScreen.title.hardcore": "Game over!",
  "deathScreen.title": "You died!",
  "deathScreen.quit.confirm": "Are you sure you want to quit?",
  "effect.none": "No Effects",
  "effect.minecraft.speed": "Speed",
  "effect.minecraft.slowness": "Slowness",
  "effect.minecraft.haste": "Haste",
  "effect.minecraft.mining_fatigue": "Mining Fatigue",
  "effect.minecraft.strength": "Strength",
  "effect.minecraft.instant_health": "Instant Health",
  "effect.minecraft.instant_damage": "Instant Damage",
  "effect.minecraft.jump_boost": "Jump Boost",
  "effect.minecraft.nausea": "Nausea",
  "effect.minecraft.regeneration": "Regeneration",
  "effect.minecraft.resistance": "Resistance",
  "effect.minecraft.fire_resistance": "Fire Resistance",
  "effect.minecraft.water_breathing": "Water Breathing",
  "effect.minecraft.invisibility": "Invisibility",
  "effect.minecraft.blindness": "Blindness",
  "effect.minecraft.night_vision": "Night Vision",
  "effect.minecraft.hunger": "Hunger",
  "effect.minecraft.weakness": "Weakness",
  "effect.minecraft.poison": "Poison",
  "effect.minecraft.wither": "Wither",
  "effect.minecraft.health_boost": "Health Boost",
  "effect.minecraft.absorption": "Absorption",
  "effect.minecraft.saturation": "Saturation",
  "effect.minecraft.glowing": "Glowing",
  "effect.minecraft.luck": "Luck",
  "effect.minecraft.unluck": "Bad Luck",
  "effect.minecraft.levitation": "Levitation",
  "effect.minecraft.slow_falling": "Slow Falling",
  "effect.minecraft.conduit_power": "Conduit Power",
  "effect.minecraft.dolphins_grace": "Dolphin's Grace",
  "effect.minecraft.bad_omen": "Bad Omen",
  "effect.minecraft.hero_of_the_village": "Hero of the Village",
  "event.minecraft.raid": "Raid",
  "event.minecraft.raid.raiders_remaining": "Raiders remaining: %s",
  "event.minecraft.raid.victory": "Victory",
  "event.minecraft.raid.defeat": "Defeat",
  "item.minecraft.tipped_arrow.effect.empty": "Uncraftable Tipped Arrow",
  "item.minecraft.tipped_arrow.effect.water": "Arrow of Splashing",
  "item.minecraft.tipped_arrow.effect.mundane": "Tipped Arrow",
  "item.minecraft.tipped_arrow.effect.thick": "Tipped Arrow",
  "item.minecraft.tipped_arrow.effect.awkward": "Tipped Arrow",
  "item.minecraft.tipped_arrow.effect.night_vision": "Arrow of Night Vision",
  "item.minecraft.tipped_arrow.effect.invisibility": "Arrow of Invisibility",
  "item.minecraft.tipped_arrow.effect.leaping": "Arrow of Leaping",
  "item.minecraft.tipped_arrow.effect.fire_resistance": "Arrow of Fire Resistance",
  "item.minecraft.tipped_arrow.effect.swiftness": "Arrow of Swiftness",
  "item.minecraft.tipped_arrow.effect.slowness": "Arrow of Slowness",
  "item.minecraft.tipped_arrow.effect.water_breathing": "Arrow of Water Breathing",
  "item.minecraft.tipped_arrow.effect.healing": "Arrow of Healing",
  "item.minecraft.tipped_arrow.effect.harming": "Arrow of Harming",
  "item.minecraft.tipped_arrow.effect.poison": "Arrow of Poison",
  "item.minecraft.tipped_arrow.effect.regeneration": "Arrow of Regeneration",
  "item.minecraft.tipped_arrow.effect.strength": "Arrow of Strength",
  "item.minecraft.tipped_arrow.effect.weakness": "Arrow of Weakness",
  "item.minecraft.tipped_arrow.effect.levitation": "Arrow of Levitation",
  "item.minecraft.tipped_arrow.effect.luck": "Arrow of Luck",
  "item.minecraft.tipped_arrow.effect.turtle_master": "Arrow of the Turtle Master",
  "item.minecraft.tipped_arrow.effect.slow_falling": "Arrow of Slow Falling",
  "potion.whenDrank": "When Applied:",
  "item.minecraft.potion.effect.empty": "Uncraftable Potion",
  "item.minecraft.potion.effect.water": "Water Bottle",
  "item.minecraft.potion.effect.mundane": "Mundane Potion",
  "item.minecraft.potion.effect.thick": "Thick Potion",
  "item.minecraft.potion.effect.awkward": "Awkward Potion",
  "item.minecraft.potion.effect.night_vision": "Potion of Night Vision",
  "item.minecraft.potion.effect.invisibility": "Potion of Invisibility",
  "item.minecraft.potion.effect.leaping": "Potion of Leaping",
  "item.minecraft.potion.effect.fire_resistance": "Potion of Fire Resistance",
  "item.minecraft.potion.effect.swiftness": "Potion of Swiftness",
  "item.minecraft.potion.effect.slowness": "Potion of Slowness",
  "item.minecraft.potion.effect.water_breathing": "Potion of Water Breathing",
  "item.minecraft.potion.effect.healing": "Potion of Healing",
  "item.minecraft.potion.effect.harming": "Potion of Harming",
  "item.minecraft.potion.effect.poison": "Potion of Poison",
  "item.minecraft.potion.effect.regeneration": "Potion of Regeneration",
  "item.minecraft.potion.effect.strength": "Potion of Strength",
  "item.minecraft.potion.effect.weakness": "Potion of Weakness",
  "item.minecraft.potion.effect.levitation": "Potion of Levitation",
  "item.minecraft.potion.effect.luck": "Potion of Luck",
  "item.minecraft.potion.effect.turtle_master": "Potion of the Turtle Master",
  "item.minecraft.potion.effect.slow_falling": "Potion of Slow Falling",
  "item.minecraft.splash_potion.effect.empty": "Splash Uncraftable Potion",
  "item.minecraft.splash_potion.effect.water": "Splash Water Bottle",
  "item.minecraft.splash_potion.effect.mundane": "Mundane Splash Potion",
  "item.minecraft.splash_potion.effect.thick": "Thick Splash Potion",
  "item.minecraft.splash_potion.effect.awkward": "Awkward Splash Potion",
  "item.minecraft.splash_potion.effect.night_vision": "Splash Potion of Night Vision",
  "item.minecraft.splash_potion.effect.invisibility": "Splash Potion of Invisibility",
  "item.minecraft.splash_potion.effect.leaping": "Splash Potion of Leaping",
  "item.minecraft.splash_potion.effect.fire_resistance": "Splash Potion of Fire Resistance",
  "item.minecraft.splash_potion.effect.swiftness": "Splash Potion of Swiftness",
  "item.minecraft.splash_potion.effect.slowness": "Splash Potion of Slowness",
  "item.minecraft.splash_potion.effect.water_breathing": "Splash Potion of Water Breathing",
  "item.minecraft.splash_potion.effect.healing": "Splash Potion of Healing",
  "item.minecraft.splash_potion.effect.harming": "Splash Potion of Harming",
  "item.minecraft.splash_potion.effect.poison": "Splash Potion of Poison",
  "item.minecraft.splash_potion.effect.regeneration": "Splash Potion of Regeneration",
  "item.minecraft.splash_potion.effect.strength": "Splash Potion of Strength",
  "item.minecraft.splash_potion.effect.weakness": "Splash Potion of Weakness",
  "item.minecraft.splash_potion.effect.levitation": "Splash Potion of Levitation",
  "item.minecraft.splash_potion.effect.luck": "Splash Potion of Luck",
  "item.minecraft.splash_potion.effect.turtle_master": "Splash Potion of the Turtle Master",
  "item.minecraft.splash_potion.effect.slow_falling": "Splash Potion of Slow Falling",
  "item.minecraft.lingering_potion.effect.empty": "Lingering Uncraftable Potion",
  "item.minecraft.lingering_potion.effect.water": "Lingering Water Bottle",
  "item.minecraft.lingering_potion.effect.mundane": "Mundane Lingering Potion",
  "item.minecraft.lingering_potion.effect.thick": "Thick Lingering Potion",
  "item.minecraft.lingering_potion.effect.awkward": "Awkward Lingering Potion",
  "item.minecraft.lingering_potion.effect.night_vision": "Lingering Potion of Night Vision",
  "item.minecraft.lingering_potion.effect.invisibility": "Lingering Potion of Invisibility",
  "item.minecraft.lingering_potion.effect.leaping": "Lingering Potion of Leaping",
  "item.minecraft.lingering_potion.effect.fire_resistance": "Lingering Potion of Fire Resistance",
  "item.minecraft.lingering_potion.effect.swiftness": "Lingering Potion of Swiftness",
  "item.minecraft.lingering_potion.effect.slowness": "Lingering Potion of Slowness",
  "item.minecraft.lingering_potion.effect.water_breathing": "Lingering Potion of Water Breathing",
  "item.minecraft.lingering_potion.effect.healing": "Lingering Potion of Healing",
  "item.minecraft.lingering_potion.effect.harming": "Lingering Potion of Harming",
  "item.minecraft.lingering_potion.effect.poison": "Lingering Potion of Poison",
  "item.minecraft.lingering_potion.effect.regeneration": "Lingering Potion of Regeneration",
  "item.minecraft.lingering_potion.effect.strength": "Lingering Potion of Strength",
  "item.minecraft.lingering_potion.effect.weakness": "Lingering Potion of Weakness",
  "item.minecraft.lingering_potion.effect.levitation": "Lingering Potion of Levitation",
  "item.minecraft.lingering_potion.effect.luck": "Lingering Potion of Luck",
  "item.minecraft.lingering_potion.effect.turtle_master": "Lingering Potion of the Turtle Master",
  "item.minecraft.lingering_potion.effect.slow_falling": "Lingering Potion of Slow Falling",
  "potion.potency.0": "",
  "potion.potency.1": "II",
  "potion.potency.2": "III",
  "potion.potency.3": "IV",
  "potion.potency.4": "V",
  "potion.potency.5": "VI",
  "enchantment.minecraft.sharpness": "Sharpness",
  "enchantment.minecraft.smite": "Smite",
  "enchantment.minecraft.bane_of_arthropods": "Bane of Arthropods",
  "enchantment.minecraft.knockback": "Knockback",
  "enchantment.minecraft.fire_aspect": "Fire Aspect",
  "enchantment.minecraft.sweeping": "Sweeping Edge",
  "enchantment.minecraft.protection": "Protection",
  "enchantment.minecraft.fire_protection": "Fire Protection",
  "enchantment.minecraft.feather_falling": "Feather Falling",
  "enchantment.minecraft.blast_protection": "Blast Protection",
  "enchantment.minecraft.projectile_protection": "Projectile Protection",
  "enchantment.minecraft.respiration": "Respiration",
  "enchantment.minecraft.aqua_affinity": "Aqua Affinity",
  "enchantment.minecraft.depth_strider": "Depth Strider",
  "enchantment.minecraft.frost_walker": "Frost Walker",
  "enchantment.minecraft.soul_speed": "Soul Speed",
  "enchantment.minecraft.efficiency": "Efficiency",
  "enchantment.minecraft.silk_touch": "Silk Touch",
  "enchantment.minecraft.unbreaking": "Unbreaking",
  "enchantment.minecraft.looting": "Looting",
  "enchantment.minecraft.fortune": "Fortune",
  "enchantment.minecraft.luck_of_the_sea": "Luck of the Sea",
  "enchantment.minecraft.lure": "Lure",
  "enchantment.minecraft.power": "Power",
  "enchantment.minecraft.flame": "Flame",
  "enchantment.minecraft.punch": "Punch",
  "enchantment.minecraft.infinity": "Infinity",
  "enchantment.minecraft.thorns": "Thorns",
  "enchantment.minecraft.mending": "Mending",
  "enchantment.minecraft.binding_curse": "Curse of Binding",
  "enchantment.minecraft.vanishing_curse": "Curse of Vanishing",
  "enchantment.minecraft.loyalty": "Loyalty",
  "enchantment.minecraft.impaling": "Impaling",
  "enchantment.minecraft.riptide": "Riptide",
  "enchantment.minecraft.channeling": "Channeling",
  "enchantment.minecraft.multishot": "Multishot",
  "enchantment.minecraft.quick_charge": "Quick Charge",
  "enchantment.minecraft.piercing": "Piercing",
  "enchantment.level.1": "I",
  "enchantment.level.2": "II",
  "enchantment.level.3": "III",
  "enchantment.level.4": "IV",
  "enchantment.level.5": "V",
  "enchantment.level.6": "VI",
  "enchantment.level.7": "VII",
  "enchantment.level.8": "VIII",
  "enchantment.level.9": "IX",
  "enchantment.level.10": "X",
  "gui.advancements": "Advancements",
  "gui.stats": "Statistics",
  "gui.entity_tooltip.type": "Type: %s",
  "advancements.empty": "There doesn't seem to be anything here...",
  "advancements.toast.task": "Advancement Made!",
  "advancements.toast.challenge": "Challenge Complete!",
  "advancements.toast.goal": "Goal Reached!",
  "stats.tooltip.type.statistic": "Statistic",
  "stat.generalButton": "General",
  "stat.itemsButton": "Items",
  "stat.mobsButton": "Mobs",
  "stat_type.minecraft.mined": "Times Mined",
  "stat_type.minecraft.crafted": "Times Crafted",
  "stat_type.minecraft.used": "Times Used",
  "stat_type.minecraft.broken": "Times Broken",
  "stat_type.minecraft.picked_up": "Picked Up",
  "stat_type.minecraft.dropped": "Dropped",
  "stat_type.minecraft.killed": "You killed %s %s",
  "stat_type.minecraft.killed.none": "You have never killed %s",
  "stat_type.minecraft.killed_by": "%s killed you %s time(s)",
  "stat_type.minecraft.killed_by.none": "You have never been killed by %s",
  "stat.minecraft.animals_bred": "Animals Bred",
  "stat.minecraft.aviate_one_cm": "Distance by Elytra",
  "stat.minecraft.clean_armor": "Armor Pieces Cleaned",
  "stat.minecraft.clean_banner": "Banners Cleaned",
  "stat.minecraft.clean_shulker_box": "Shulker Boxes Cleaned",
  "stat.minecraft.climb_one_cm": "Distance Climbed",
  "stat.minecraft.bell_ring": "Bells Rung",
  "stat.minecraft.target_hit": "Targets Hit",
  "stat.minecraft.boat_one_cm": "Distance by Boat",
  "stat.minecraft.crouch_one_cm": "Distance Crouched",
  "stat.minecraft.damage_dealt": "Damage Dealt",
  "stat.minecraft.damage_dealt_absorbed": "Damage Dealt (Absorbed)",
  "stat.minecraft.damage_dealt_resisted": "Damage Dealt (Resisted)",
  "stat.minecraft.damage_taken": "Damage Taken",
  "stat.minecraft.damage_blocked_by_shield": "Damage Blocked by Shield",
  "stat.minecraft.damage_absorbed": "Damage Absorbed",
  "stat.minecraft.damage_resisted": "Damage Resisted",
  "stat.minecraft.deaths": "Number of Deaths",
  "stat.minecraft.walk_under_water_one_cm": "Distance Walked under Water",
  "stat.minecraft.drop": "Items Dropped",
  "stat.minecraft.eat_cake_slice": "Cake Slices Eaten",
  "stat.minecraft.enchant_item": "Items Enchanted",
  "stat.minecraft.fall_one_cm": "Distance Fallen",
  "stat.minecraft.fill_cauldron": "Cauldrons Filled",
  "stat.minecraft.fish_caught": "Fish Caught",
  "stat.minecraft.fly_one_cm": "Distance Flown",
  "stat.minecraft.horse_one_cm": "Distance by Horse",
  "stat.minecraft.inspect_dispenser": "Dispensers Searched",
  "stat.minecraft.inspect_dropper": "Droppers Searched",
  "stat.minecraft.inspect_hopper": "Hoppers Searched",
  "stat.minecraft.interact_with_anvil": "Interactions with Anvil",
  "stat.minecraft.interact_with_beacon": "Interactions with Beacon",
  "stat.minecraft.interact_with_brewingstand": "Interactions with Brewing Stand",
  "stat.minecraft.interact_with_campfire": "Interactions with Campfire",
  "stat.minecraft.interact_with_cartography_table": "Interactions with Cartography Table",
  "stat.minecraft.interact_with_crafting_table": "Interactions with Crafting Table",
  "stat.minecraft.interact_with_furnace": "Interactions with Furnace",
  "stat.minecraft.interact_with_grindstone": "Interactions with Grindstone",
  "stat.minecraft.interact_with_lectern": "Interactions with Lectern",
  "stat.minecraft.interact_with_loom": "Interactions with Loom",
  "stat.minecraft.interact_with_blast_furnace": "Interactions with Blast Furnace",
  "stat.minecraft.interact_with_smithing_table": "Interactions with Smithing Table",
  "stat.minecraft.interact_with_smoker": "Interactions with Smoker",
  "stat.minecraft.interact_with_stonecutter": "Interactions with Stonecutter",
  "stat.minecraft.jump": "Jumps",
  "stat.minecraft.junk_fished": "Junk Fished",
  "stat.minecraft.leave_game": "Games Quit",
  "stat.minecraft.minecart_one_cm": "Distance by Minecart",
  "stat.minecraft.mob_kills": "Mob Kills",
  "stat.minecraft.open_barrel": "Barrels Opened",
  "stat.minecraft.open_chest": "Chests Opened",
  "stat.minecraft.open_enderchest": "Ender Chests Opened",
  "stat.minecraft.open_shulker_box": "Shulker Boxes Opened",
  "stat.minecraft.pig_one_cm": "Distance by Pig",
  "stat.minecraft.strider_one_cm": "Distance by Strider",
  "stat.minecraft.player_kills": "Player Kills",
  "stat.minecraft.play_noteblock": "Note Blocks Played",
  "stat.minecraft.play_one_minute": "Time Played",
  "stat.minecraft.play_record": "Music Discs Played",
  "stat.minecraft.pot_flower": "Plants Potted",
  "stat.minecraft.raid_trigger": "Raids Triggered",
  "stat.minecraft.raid_win": "Raids Won",
  "stat.minecraft.ring_bell": "Bells Rung",
  "stat.minecraft.sleep_in_bed": "Times Slept in a Bed",
  "stat.minecraft.sneak_time": "Sneak Time",
  "stat.minecraft.sprint_one_cm": "Distance Sprinted",
  "stat.minecraft.walk_on_water_one_cm": "Distance Walked on Water",
  "stat.minecraft.swim_one_cm": "Distance Swum",
  "stat.minecraft.talked_to_villager": "Talked to Villagers",
  "stat.minecraft.time_since_rest": "Time Since Last Rest",
  "stat.minecraft.time_since_death": "Time Since Last Death",
  "stat.minecraft.traded_with_villager": "Traded with Villagers",
  "stat.minecraft.treasure_fished": "Treasure Fished",
  "stat.minecraft.trigger_trapped_chest": "Trapped Chests Triggered",
  "stat.minecraft.tune_noteblock": "Note Blocks Tuned",
  "stat.minecraft.use_cauldron": "Water Taken from Cauldron",
  "stat.minecraft.walk_one_cm": "Distance Walked",
  "recipe.toast.title": "New Recipes Unlocked!",
  "recipe.toast.description": "Check your recipe book",
  "itemGroup.buildingBlocks": "Building Blocks",
  "itemGroup.decorations": "Decoration Blocks",
  "itemGroup.redstone": "Redstone",
  "itemGroup.transportation": "Transportation",
  "itemGroup.misc": "Miscellaneous",
  "itemGroup.search": "Search Items",
  "itemGroup.food": "Foodstuffs",
  "itemGroup.tools": "Tools",
  "itemGroup.combat": "Combat",
  "itemGroup.brewing": "Brewing",
  "itemGroup.materials": "Materials",
  "itemGroup.inventory": "Survival Inventory",
  "itemGroup.hotbar": "Saved Hotbars",
  "inventory.binSlot": "Destroy Item",
  "inventory.hotbarSaved": "Item hotbar saved (restore with %1$s+%2$s)",
  "inventory.hotbarInfo": "Save hotbar with %1$s+%2$s",
  "advMode.setCommand": "Set Console Command for Block",
  "advMode.setCommand.success": "Command set: %s",
  "advMode.command": "Console Command",
  "advMode.nearestPlayer": "Use \"@p\" to target nearest player",
  "advMode.randomPlayer": "Use \"@r\" to target random player",
  "advMode.allPlayers": "Use \"@a\" to target all players",
  "advMode.allEntities": "Use \"@e\" to target all entities",
  "advMode.self": "Use \"@s\" to target the executing entity",
  "advMode.previousOutput": "Previous Output",
  "advMode.mode.sequence": "Chain",
  "advMode.mode.auto": "Repeat",
  "advMode.mode.redstone": "Impulse",
  "advMode.mode.conditional": "Conditional",
  "advMode.mode.unconditional": "Unconditional",
  "advMode.mode.redstoneTriggered": "Needs Redstone",
  "advMode.mode.autoexec.bat": "Always Active",
  "advMode.notEnabled": "Command blocks are not enabled on this server",
  "advMode.notAllowed": "Must be an opped player in creative mode",
  "mount.onboard": "Press %1$s to dismount",
  "build.tooHigh": "Height limit for building is %s blocks",
  "item.modifiers.mainhand": "When in main hand:",
  "item.modifiers.offhand": "When in off hand:",
  "item.modifiers.feet": "When on feet:",
  "item.modifiers.legs": "When on legs:",
  "item.modifiers.chest": "When on body:",
  "item.modifiers.head": "When on head:",
  "attribute.unknown": "Unknown attribute",
  "attribute.modifier.plus.0": "+%s %s",
  "attribute.modifier.plus.1": "+%s%% %s",
  "attribute.modifier.plus.2": "+%s%% %s",
  "attribute.modifier.take.0": "-%s %s",
  "attribute.modifier.take.1": "-%s%% %s",
  "attribute.modifier.take.2": "-%s%% %s",
  "attribute.modifier.equals.0": "%s %s",
  "attribute.modifier.equals.1": "%s%% %s",
  "attribute.modifier.equals.2": "%s%% %s",
  "attribute.name.horse.jump_strength": "Horse Jump Strength",
  "attribute.name.zombie.spawn_reinforcements": "Zombie Reinforcements",
  "attribute.name.generic.max_health": "Max Health",
  "attribute.name.generic.follow_range": "Mob Follow Range",
  "attribute.name.generic.knockback_resistance": "Knockback Resistance",
  "attribute.name.generic.movement_speed": "Speed",
  "attribute.name.generic.flying_speed": "Flying Speed",
  "attribute.name.generic.attack_damage": "Attack Damage",
  "attribute.name.generic.attack_knockback": "Attack Knockback",
  "attribute.name.generic.attack_speed": "Attack Speed",
  "attribute.name.generic.luck": "Luck",
  "attribute.name.generic.armor": "Armor",
  "attribute.name.generic.armor_toughness": "Armor Toughness",
  "screenshot.success": "Saved screenshot as %s",
  "screenshot.failure": "Couldn't save screenshot: %s",
  "block.minecraft.black_banner": "Black Banner",
  "block.minecraft.red_banner": "Red Banner",
  "block.minecraft.green_banner": "Green Banner",
  "block.minecraft.brown_banner": "Brown Banner",
  "block.minecraft.blue_banner": "Blue Banner",
  "block.minecraft.purple_banner": "Purple Banner",
  "block.minecraft.cyan_banner": "Cyan Banner",
  "block.minecraft.light_gray_banner": "Light Gray Banner",
  "block.minecraft.gray_banner": "Gray Banner",
  "block.minecraft.pink_banner": "Pink Banner",
  "block.minecraft.lime_banner": "Lime Banner",
  "block.minecraft.yellow_banner": "Yellow Banner",
  "block.minecraft.light_blue_banner": "Light Blue Banner",
  "block.minecraft.magenta_banner": "Magenta Banner",
  "block.minecraft.orange_banner": "Orange Banner",
  "block.minecraft.white_banner": "White Banner",
  "item.minecraft.shield": "Shield",
  "item.minecraft.shield.black": "Black Shield",
  "item.minecraft.shield.red": "Red Shield",
  "item.minecraft.shield.green": "Green Shield",
  "item.minecraft.shield.brown": "Brown Shield",
  "item.minecraft.shield.blue": "Blue Shield",
  "item.minecraft.shield.purple": "Purple Shield",
  "item.minecraft.shield.cyan": "Cyan Shield",
  "item.minecraft.shield.light_gray": "Light Gray Shield",
  "item.minecraft.shield.gray": "Gray Shield",
  "item.minecraft.shield.pink": "Pink Shield",
  "item.minecraft.shield.lime": "Lime Shield",
  "item.minecraft.shield.yellow": "Yellow Shield",
  "item.minecraft.shield.light_blue": "Light Blue Shield",
  "item.minecraft.shield.magenta": "Magenta Shield",
  "item.minecraft.shield.orange": "Orange Shield",
  "item.minecraft.shield.white": "White Shield",
  "block.minecraft.banner.square_bottom_left.black": "Black Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.red": "Red Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.green": "Green Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.brown": "Brown Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.blue": "Blue Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.purple": "Purple Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.cyan": "Cyan Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.light_gray": "Light Gray Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.gray": "Gray Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.pink": "Pink Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.lime": "Lime Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.yellow": "Yellow Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.light_blue": "Light Blue Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.magenta": "Magenta Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.orange": "Orange Base Dexter Canton",
  "block.minecraft.banner.square_bottom_left.white": "White Base Dexter Canton",
  "block.minecraft.banner.square_bottom_right.black": "Black Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.red": "Red Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.green": "Green Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.brown": "Brown Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.blue": "Blue Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.purple": "Purple Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.cyan": "Cyan Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.light_gray": "Light Gray Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.gray": "Gray Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.pink": "Pink Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.lime": "Lime Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.yellow": "Yellow Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.light_blue": "Light Blue Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.magenta": "Magenta Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.orange": "Orange Base Sinister Canton",
  "block.minecraft.banner.square_bottom_right.white": "White Base Sinister Canton",
  "block.minecraft.banner.square_top_left.black": "Black Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.red": "Red Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.green": "Green Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.brown": "Brown Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.blue": "Blue Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.purple": "Purple Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.cyan": "Cyan Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.light_gray": "Light Gray Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.gray": "Gray Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.pink": "Pink Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.lime": "Lime Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.yellow": "Yellow Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.light_blue": "Light Blue Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.magenta": "Magenta Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.orange": "Orange Chief Dexter Canton",
  "block.minecraft.banner.square_top_left.white": "White Chief Dexter Canton",
  "block.minecraft.banner.square_top_right.black": "Black Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.red": "Red Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.green": "Green Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.brown": "Brown Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.blue": "Blue Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.purple": "Purple Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.cyan": "Cyan Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.light_gray": "Light Gray Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.gray": "Gray Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.pink": "Pink Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.lime": "Lime Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.yellow": "Yellow Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.light_blue": "Light Blue Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.magenta": "Magenta Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.orange": "Orange Chief Sinister Canton",
  "block.minecraft.banner.square_top_right.white": "White Chief Sinister Canton",
  "block.minecraft.banner.stripe_bottom.black": "Black Base",
  "block.minecraft.banner.stripe_bottom.red": "Red Base",
  "block.minecraft.banner.stripe_bottom.green": "Green Base",
  "block.minecraft.banner.stripe_bottom.brown": "Brown Base",
  "block.minecraft.banner.stripe_bottom.blue": "Blue Base",
  "block.minecraft.banner.stripe_bottom.purple": "Purple Base",
  "block.minecraft.banner.stripe_bottom.cyan": "Cyan Base",
  "block.minecraft.banner.stripe_bottom.light_gray": "Light Gray Base",
  "block.minecraft.banner.stripe_bottom.gray": "Gray Base",
  "block.minecraft.banner.stripe_bottom.pink": "Pink Base",
  "block.minecraft.banner.stripe_bottom.lime": "Lime Base",
  "block.minecraft.banner.stripe_bottom.yellow": "Yellow Base",
  "block.minecraft.banner.stripe_bottom.light_blue": "Light Blue Base",
  "block.minecraft.banner.stripe_bottom.magenta": "Magenta Base",
  "block.minecraft.banner.stripe_bottom.orange": "Orange Base",
  "block.minecraft.banner.stripe_bottom.white": "White Base",
  "block.minecraft.banner.stripe_top.black": "Black Chief",
  "block.minecraft.banner.stripe_top.red": "Red Chief",
  "block.minecraft.banner.stripe_top.green": "Green Chief",
  "block.minecraft.banner.stripe_top.brown": "Brown Chief",
  "block.minecraft.banner.stripe_top.blue": "Blue Chief",
  "block.minecraft.banner.stripe_top.purple": "Purple Chief",
  "block.minecraft.banner.stripe_top.cyan": "Cyan Chief",
  "block.minecraft.banner.stripe_top.light_gray": "Light Gray Chief",
  "block.minecraft.banner.stripe_top.gray": "Gray Chief",
  "block.minecraft.banner.stripe_top.pink": "Pink Chief",
  "block.minecraft.banner.stripe_top.lime": "Lime Chief",
  "block.minecraft.banner.stripe_top.yellow": "Yellow Chief",
  "block.minecraft.banner.stripe_top.light_blue": "Light Blue Chief",
  "block.minecraft.banner.stripe_top.magenta": "Magenta Chief",
  "block.minecraft.banner.stripe_top.orange": "Orange Chief",
  "block.minecraft.banner.stripe_top.white": "White Chief",
  "block.minecraft.banner.stripe_left.black": "Black Pale Dexter",
  "block.minecraft.banner.stripe_left.red": "Red Pale Dexter",
  "block.minecraft.banner.stripe_left.green": "Green Pale Dexter",
  "block.minecraft.banner.stripe_left.brown": "Brown Pale Dexter",
  "block.minecraft.banner.stripe_left.blue": "Blue Pale Dexter",
  "block.minecraft.banner.stripe_left.purple": "Purple Pale Dexter",
  "block.minecraft.banner.stripe_left.cyan": "Cyan Pale Dexter",
  "block.minecraft.banner.stripe_left.light_gray": "Light Gray Pale Dexter",
  "block.minecraft.banner.stripe_left.gray": "Gray Pale Dexter",
  "block.minecraft.banner.stripe_left.pink": "Pink Pale Dexter",
  "block.minecraft.banner.stripe_left.lime": "Lime Pale Dexter",
  "block.minecraft.banner.stripe_left.yellow": "Yellow Pale Dexter",
  "block.minecraft.banner.stripe_left.light_blue": "Light Blue Pale Dexter",
  "block.minecraft.banner.stripe_left.magenta": "Magenta Pale Dexter",
  "block.minecraft.banner.stripe_left.orange": "Orange Pale Dexter",
  "block.minecraft.banner.stripe_left.white": "White Pale Dexter",
  "block.minecraft.banner.stripe_right.black": "Black Pale Sinister",
  "block.minecraft.banner.stripe_right.red": "Red Pale Sinister",
  "block.minecraft.banner.stripe_right.green": "Green Pale Sinister",
  "block.minecraft.banner.stripe_right.brown": "Brown Pale Sinister",
  "block.minecraft.banner.stripe_right.blue": "Blue Pale Sinister",
  "block.minecraft.banner.stripe_right.purple": "Purple Pale Sinister",
  "block.minecraft.banner.stripe_right.cyan": "Cyan Pale Sinister",
  "block.minecraft.banner.stripe_right.light_gray": "Light Gray Pale Sinister",
  "block.minecraft.banner.stripe_right.gray": "Gray Pale Sinister",
  "block.minecraft.banner.stripe_right.pink": "Pink Pale Sinister",
  "block.minecraft.banner.stripe_right.lime": "Lime Pale Sinister",
  "block.minecraft.banner.stripe_right.yellow": "Yellow Pale Sinister",
  "block.minecraft.banner.stripe_right.light_blue": "Light Blue Pale Sinister",
  "block.minecraft.banner.stripe_right.magenta": "Magenta Pale Sinister",
  "block.minecraft.banner.stripe_right.orange": "Orange Pale Sinister",
  "block.minecraft.banner.stripe_right.white": "White Pale Sinister",
  "block.minecraft.banner.stripe_center.black": "Black Pale",
  "block.minecraft.banner.stripe_center.red": "Red Pale",
  "block.minecraft.banner.stripe_center.green": "Green Pale",
  "block.minecraft.banner.stripe_center.brown": "Brown Pale",
  "block.minecraft.banner.stripe_center.blue": "Blue Pale",
  "block.minecraft.banner.stripe_center.purple": "Purple Pale",
  "block.minecraft.banner.stripe_center.cyan": "Cyan Pale",
  "block.minecraft.banner.stripe_center.light_gray": "Light Gray Pale",
  "block.minecraft.banner.stripe_center.gray": "Gray Pale",
  "block.minecraft.banner.stripe_center.pink": "Pink Pale",
  "block.minecraft.banner.stripe_center.lime": "Lime Pale",
  "block.minecraft.banner.stripe_center.yellow": "Yellow Pale",
  "block.minecraft.banner.stripe_center.light_blue": "Light Blue Pale",
  "block.minecraft.banner.stripe_center.magenta": "Magenta Pale",
  "block.minecraft.banner.stripe_center.orange": "Orange Pale",
  "block.minecraft.banner.stripe_center.white": "White Pale",
  "block.minecraft.banner.stripe_middle.black": "Black Fess",
  "block.minecraft.banner.stripe_middle.red": "Red Fess",
  "block.minecraft.banner.stripe_middle.green": "Green Fess",
  "block.minecraft.banner.stripe_middle.brown": "Brown Fess",
  "block.minecraft.banner.stripe_middle.blue": "Blue Fess",
  "block.minecraft.banner.stripe_middle.purple": "Purple Fess",
  "block.minecraft.banner.stripe_middle.cyan": "Cyan Fess",
  "block.minecraft.banner.stripe_middle.light_gray": "Light Gray Fess",
  "block.minecraft.banner.stripe_middle.gray": "Gray Fess",
  "block.minecraft.banner.stripe_middle.pink": "Pink Fess",
  "block.minecraft.banner.stripe_middle.lime": "Lime Fess",
  "block.minecraft.banner.stripe_middle.yellow": "Yellow Fess",
  "block.minecraft.banner.stripe_middle.light_blue": "Light Blue Fess",
  "block.minecraft.banner.stripe_middle.magenta": "Magenta Fess",
  "block.minecraft.banner.stripe_middle.orange": "Orange Fess",
  "block.minecraft.banner.stripe_middle.white": "White Fess",
  "block.minecraft.banner.stripe_downright.black": "Black Bend",
  "block.minecraft.banner.stripe_downright.red": "Red Bend",
  "block.minecraft.banner.stripe_downright.green": "Green Bend",
  "block.minecraft.banner.stripe_downright.brown": "Brown Bend",
  "block.minecraft.banner.stripe_downright.blue": "Blue Bend",
  "block.minecraft.banner.stripe_downright.purple": "Purple Bend",
  "block.minecraft.banner.stripe_downright.cyan": "Cyan Bend",
  "block.minecraft.banner.stripe_downright.light_gray": "Light Gray Bend",
  "block.minecraft.banner.stripe_downright.gray": "Gray Bend",
  "block.minecraft.banner.stripe_downright.pink": "Pink Bend",
  "block.minecraft.banner.stripe_downright.lime": "Lime Bend",
  "block.minecraft.banner.stripe_downright.yellow": "Yellow Bend",
  "block.minecraft.banner.stripe_downright.light_blue": "Light Blue Bend",
  "block.minecraft.banner.stripe_downright.magenta": "Magenta Bend",
  "block.minecraft.banner.stripe_downright.orange": "Orange Bend",
  "block.minecraft.banner.stripe_downright.white": "White Bend",
  "block.minecraft.banner.stripe_downleft.black": "Black Bend Sinister",
  "block.minecraft.banner.stripe_downleft.red": "Red Bend Sinister",
  "block.minecraft.banner.stripe_downleft.green": "Green Bend Sinister",
  "block.minecraft.banner.stripe_downleft.brown": "Brown Bend Sinister",
  "block.minecraft.banner.stripe_downleft.blue": "Blue Bend Sinister",
  "block.minecraft.banner.stripe_downleft.purple": "Purple Bend Sinister",
  "block.minecraft.banner.stripe_downleft.cyan": "Cyan Bend Sinister",
  "block.minecraft.banner.stripe_downleft.light_gray": "Light Gray Bend Sinister",
  "block.minecraft.banner.stripe_downleft.gray": "Gray Bend Sinister",
  "block.minecraft.banner.stripe_downleft.pink": "Pink Bend Sinister",
  "block.minecraft.banner.stripe_downleft.lime": "Lime Bend Sinister",
  "block.minecraft.banner.stripe_downleft.yellow": "Yellow Bend Sinister",
  "block.minecraft.banner.stripe_downleft.light_blue": "Light Blue Bend Sinister",
  "block.minecraft.banner.stripe_downleft.magenta": "Magenta Bend Sinister",
  "block.minecraft.banner.stripe_downleft.orange": "Orange Bend Sinister",
  "block.minecraft.banner.stripe_downleft.white": "White Bend Sinister",
  "block.minecraft.banner.small_stripes.black": "Black Paly",
  "block.minecraft.banner.small_stripes.red": "Red Paly",
  "block.minecraft.banner.small_stripes.green": "Green Paly",
  "block.minecraft.banner.small_stripes.brown": "Brown Paly",
  "block.minecraft.banner.small_stripes.blue": "Blue Paly",
  "block.minecraft.banner.small_stripes.purple": "Purple Paly",
  "block.minecraft.banner.small_stripes.cyan": "Cyan Paly",
  "block.minecraft.banner.small_stripes.light_gray": "Light Gray Paly",
  "block.minecraft.banner.small_stripes.gray": "Gray Paly",
  "block.minecraft.banner.small_stripes.pink": "Pink Paly",
  "block.minecraft.banner.small_stripes.lime": "Lime Paly",
  "block.minecraft.banner.small_stripes.yellow": "Yellow Paly",
  "block.minecraft.banner.small_stripes.light_blue": "Light Blue Paly",
  "block.minecraft.banner.small_stripes.magenta": "Magenta Paly",
  "block.minecraft.banner.small_stripes.orange": "Orange Paly",
  "block.minecraft.banner.small_stripes.white": "White Paly",
  "block.minecraft.banner.cross.black": "Black Saltire",
  "block.minecraft.banner.cross.red": "Red Saltire",
  "block.minecraft.banner.cross.green": "Green Saltire",
  "block.minecraft.banner.cross.brown": "Brown Saltire",
  "block.minecraft.banner.cross.blue": "Blue Saltire",
  "block.minecraft.banner.cross.purple": "Purple Saltire",
  "block.minecraft.banner.cross.cyan": "Cyan Saltire",
  "block.minecraft.banner.cross.light_gray": "Light Gray Saltire",
  "block.minecraft.banner.cross.gray": "Gray Saltire",
  "block.minecraft.banner.cross.pink": "Pink Saltire",
  "block.minecraft.banner.cross.lime": "Lime Saltire",
  "block.minecraft.banner.cross.yellow": "Yellow Saltire",
  "block.minecraft.banner.cross.light_blue": "Light Blue Saltire",
  "block.minecraft.banner.cross.magenta": "Magenta Saltire",
  "block.minecraft.banner.cross.orange": "Orange Saltire",
  "block.minecraft.banner.cross.white": "White Saltire",
  "block.minecraft.banner.triangle_bottom.black": "Black Chevron",
  "block.minecraft.banner.triangle_bottom.red": "Red Chevron",
  "block.minecraft.banner.triangle_bottom.green": "Green Chevron",
  "block.minecraft.banner.triangle_bottom.brown": "Brown Chevron",
  "block.minecraft.banner.triangle_bottom.blue": "Blue Chevron",
  "block.minecraft.banner.triangle_bottom.purple": "Purple Chevron",
  "block.minecraft.banner.triangle_bottom.cyan": "Cyan Chevron",
  "block.minecraft.banner.triangle_bottom.light_gray": "Light Gray Chevron",
  "block.minecraft.banner.triangle_bottom.gray": "Gray Chevron",
  "block.minecraft.banner.triangle_bottom.pink": "Pink Chevron",
  "block.minecraft.banner.triangle_bottom.lime": "Lime Chevron",
  "block.minecraft.banner.triangle_bottom.yellow": "Yellow Chevron",
  "block.minecraft.banner.triangle_bottom.light_blue": "Light Blue Chevron",
  "block.minecraft.banner.triangle_bottom.magenta": "Magenta Chevron",
  "block.minecraft.banner.triangle_bottom.orange": "Orange Chevron",
  "block.minecraft.banner.triangle_bottom.white": "White Chevron",
  "block.minecraft.banner.triangle_top.black": "Black Inverted Chevron",
  "block.minecraft.banner.triangle_top.red": "Red Inverted Chevron",
  "block.minecraft.banner.triangle_top.green": "Green Inverted Chevron",
  "block.minecraft.banner.triangle_top.brown": "Brown Inverted Chevron",
  "block.minecraft.banner.triangle_top.blue": "Blue Inverted Chevron",
  "block.minecraft.banner.triangle_top.purple": "Purple Inverted Chevron",
  "block.minecraft.banner.triangle_top.cyan": "Cyan Inverted Chevron",
  "block.minecraft.banner.triangle_top.light_gray": "Light Gray Inverted Chevron",
  "block.minecraft.banner.triangle_top.gray": "Gray Inverted Chevron",
  "block.minecraft.banner.triangle_top.pink": "Pink Inverted Chevron",
  "block.minecraft.banner.triangle_top.lime": "Lime Inverted Chevron",
  "block.minecraft.banner.triangle_top.yellow": "Yellow Inverted Chevron",
  "block.minecraft.banner.triangle_top.light_blue": "Light Blue Inverted Chevron",
  "block.minecraft.banner.triangle_top.magenta": "Magenta Inverted Chevron",
  "block.minecraft.banner.triangle_top.orange": "Orange Inverted Chevron",
  "block.minecraft.banner.triangle_top.white": "White Inverted Chevron",
  "block.minecraft.banner.triangles_bottom.black": "Black Base Indented",
  "block.minecraft.banner.triangles_bottom.red": "Red Base Indented",
  "block.minecraft.banner.triangles_bottom.green": "Green Base Indented",
  "block.minecraft.banner.triangles_bottom.brown": "Brown Base Indented",
  "block.minecraft.banner.triangles_bottom.blue": "Blue Base Indented",
  "block.minecraft.banner.triangles_bottom.purple": "Purple Base Indented",
  "block.minecraft.banner.triangles_bottom.cyan": "Cyan Base Indented",
  "block.minecraft.banner.triangles_bottom.light_gray": "Light Gray Base Indented",
  "block.minecraft.banner.triangles_bottom.gray": "Gray Base Indented",
  "block.minecraft.banner.triangles_bottom.pink": "Pink Base Indented",
  "block.minecraft.banner.triangles_bottom.lime": "Lime Base Indented",
  "block.minecraft.banner.triangles_bottom.yellow": "Yellow Base Indented",
  "block.minecraft.banner.triangles_bottom.light_blue": "Light Blue Base Indented",
  "block.minecraft.banner.triangles_bottom.magenta": "Magenta Base Indented",
  "block.minecraft.banner.triangles_bottom.orange": "Orange Base Indented",
  "block.minecraft.banner.triangles_bottom.white": "White Base Indented",
  "block.minecraft.banner.triangles_top.black": "Black Chief Indented",
  "block.minecraft.banner.triangles_top.red": "Red Chief Indented",
  "block.minecraft.banner.triangles_top.green": "Green Chief Indented",
  "block.minecraft.banner.triangles_top.brown": "Brown Chief Indented",
  "block.minecraft.banner.triangles_top.blue": "Blue Chief Indented",
  "block.minecraft.banner.triangles_top.purple": "Purple Chief Indented",
  "block.minecraft.banner.triangles_top.cyan": "Cyan Chief Indented",
  "block.minecraft.banner.triangles_top.light_gray": "Light Gray Chief Indented",
  "block.minecraft.banner.triangles_top.gray": "Gray Chief Indented",
  "block.minecraft.banner.triangles_top.pink": "Pink Chief Indented",
  "block.minecraft.banner.triangles_top.lime": "Lime Chief Indented",
  "block.minecraft.banner.triangles_top.yellow": "Yellow Chief Indented",
  "block.minecraft.banner.triangles_top.light_blue": "Light Blue Chief Indented",
  "block.minecraft.banner.triangles_top.magenta": "Magenta Chief Indented",
  "block.minecraft.banner.triangles_top.orange": "Orange Chief Indented",
  "block.minecraft.banner.triangles_top.white": "White Chief Indented",
  "block.minecraft.banner.diagonal_left.black": "Black Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.red": "Red Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.green": "Green Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.brown": "Brown Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.blue": "Blue Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.purple": "Purple Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.cyan": "Cyan Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.light_gray": "Light Gray Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.gray": "Gray Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.pink": "Pink Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.lime": "Lime Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.yellow": "Yellow Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.light_blue": "Light Blue Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.magenta": "Magenta Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.orange": "Orange Per Bend Sinister",
  "block.minecraft.banner.diagonal_left.white": "White Per Bend Sinister",
  "block.minecraft.banner.diagonal_right.black": "Black Per Bend",
  "block.minecraft.banner.diagonal_right.red": "Red Per Bend",
  "block.minecraft.banner.diagonal_right.green": "Green Per Bend",
  "block.minecraft.banner.diagonal_right.brown": "Brown Per Bend",
  "block.minecraft.banner.diagonal_right.blue": "Blue Per Bend",
  "block.minecraft.banner.diagonal_right.purple": "Purple Per Bend",
  "block.minecraft.banner.diagonal_right.cyan": "Cyan Per Bend",
  "block.minecraft.banner.diagonal_right.light_gray": "Light Gray Per Bend",
  "block.minecraft.banner.diagonal_right.gray": "Gray Per Bend",
  "block.minecraft.banner.diagonal_right.pink": "Pink Per Bend",
  "block.minecraft.banner.diagonal_right.lime": "Lime Per Bend",
  "block.minecraft.banner.diagonal_right.yellow": "Yellow Per Bend",
  "block.minecraft.banner.diagonal_right.light_blue": "Light Blue Per Bend",
  "block.minecraft.banner.diagonal_right.magenta": "Magenta Per Bend",
  "block.minecraft.banner.diagonal_right.orange": "Orange Per Bend",
  "block.minecraft.banner.diagonal_right.white": "White Per Bend",
  "block.minecraft.banner.diagonal_up_left.black": "Black Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.red": "Red Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.green": "Green Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.brown": "Brown Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.blue": "Blue Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.purple": "Purple Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.cyan": "Cyan Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.light_gray": "Light Gray Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_left.white": "White Per Bend Inverted",
  "block.minecraft.banner.diagonal_up_right.black": "Black Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.red": "Red Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.green": "Green Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.brown": "Brown Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.blue": "Blue Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.purple": "Purple Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gray Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.gray": "Gray Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.pink": "Pink Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.lime": "Lime Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.yellow": "Yellow Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.light_blue": "Light Blue Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.magenta": "Magenta Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.orange": "Orange Per Bend Sinister Inverted",
  "block.minecraft.banner.diagonal_up_right.white": "White Per Bend Sinister Inverted",
  "block.minecraft.banner.circle.black": "Black Roundel",
  "block.minecraft.banner.circle.red": "Red Roundel",
  "block.minecraft.banner.circle.green": "Green Roundel",
  "block.minecraft.banner.circle.brown": "Brown Roundel",
  "block.minecraft.banner.circle.blue": "Blue Roundel",
  "block.minecraft.banner.circle.purple": "Purple Roundel",
  "block.minecraft.banner.circle.cyan": "Cyan Roundel",
  "block.minecraft.banner.circle.light_gray": "Light Gray Roundel",
  "block.minecraft.banner.circle.gray": "Gray Roundel",
  "block.minecraft.banner.circle.pink": "Pink Roundel",
  "block.minecraft.banner.circle.lime": "Lime Roundel",
  "block.minecraft.banner.circle.yellow": "Yellow Roundel",
  "block.minecraft.banner.circle.light_blue": "Light Blue Roundel",
  "block.minecraft.banner.circle.magenta": "Magenta Roundel",
  "block.minecraft.banner.circle.orange": "Orange Roundel",
  "block.minecraft.banner.circle.white": "White Roundel",
  "block.minecraft.banner.rhombus.black": "Black Lozenge",
  "block.minecraft.banner.rhombus.red": "Red Lozenge",
  "block.minecraft.banner.rhombus.green": "Green Lozenge",
  "block.minecraft.banner.rhombus.brown": "Brown Lozenge",
  "block.minecraft.banner.rhombus.blue": "Blue Lozenge",
  "block.minecraft.banner.rhombus.purple": "Purple Lozenge",
  "block.minecraft.banner.rhombus.cyan": "Cyan Lozenge",
  "block.minecraft.banner.rhombus.light_gray": "Light Gray Lozenge",
  "block.minecraft.banner.rhombus.gray": "Gray Lozenge",
  "block.minecraft.banner.rhombus.pink": "Pink Lozenge",
  "block.minecraft.banner.rhombus.lime": "Lime Lozenge",
  "block.minecraft.banner.rhombus.yellow": "Yellow Lozenge",
  "block.minecraft.banner.rhombus.light_blue": "Light Blue Lozenge",
  "block.minecraft.banner.rhombus.magenta": "Magenta Lozenge",
  "block.minecraft.banner.rhombus.orange": "Orange Lozenge",
  "block.minecraft.banner.rhombus.white": "White Lozenge",
  "block.minecraft.banner.half_vertical.black": "Black Per Pale",
  "block.minecraft.banner.half_vertical.red": "Red Per Pale",
  "block.minecraft.banner.half_vertical.green": "Green Per Pale",
  "block.minecraft.banner.half_vertical.brown": "Brown Per Pale",
  "block.minecraft.banner.half_vertical.blue": "Blue Per Pale",
  "block.minecraft.banner.half_vertical.purple": "Purple Per Pale",
  "block.minecraft.banner.half_vertical.cyan": "Cyan Per Pale",
  "block.minecraft.banner.half_vertical.light_gray": "Light Gray Per Pale",
  "block.minecraft.banner.half_vertical.gray": "Gray Per Pale",
  "block.minecraft.banner.half_vertical.pink": "Pink Per Pale",
  "block.minecraft.banner.half_vertical.lime": "Lime Per Pale",
  "block.minecraft.banner.half_vertical.yellow": "Yellow Per Pale",
  "block.minecraft.banner.half_vertical.light_blue": "Light Blue Per Pale",
  "block.minecraft.banner.half_vertical.magenta": "Magenta Per Pale",
  "block.minecraft.banner.half_vertical.orange": "Orange Per Pale",
  "block.minecraft.banner.half_vertical.white": "White Per Pale",
  "block.minecraft.banner.half_horizontal.black": "Black Per Fess",
  "block.minecraft.banner.half_horizontal.red": "Red Per Fess",
  "block.minecraft.banner.half_horizontal.green": "Green Per Fess",
  "block.minecraft.banner.half_horizontal.brown": "Brown Per Fess",
  "block.minecraft.banner.half_horizontal.blue": "Blue Per Fess",
  "block.minecraft.banner.half_horizontal.purple": "Purple Per Fess",
  "block.minecraft.banner.half_horizontal.cyan": "Cyan Per Fess",
  "block.minecraft.banner.half_horizontal.light_gray": "Light Gray Per Fess",
  "block.minecraft.banner.half_horizontal.gray": "Gray Per Fess",
  "block.minecraft.banner.half_horizontal.pink": "Pink Per Fess",
  "block.minecraft.banner.half_horizontal.lime": "Lime Per Fess",
  "block.minecraft.banner.half_horizontal.yellow": "Yellow Per Fess",
  "block.minecraft.banner.half_horizontal.light_blue": "Light Blue Per Fess",
  "block.minecraft.banner.half_horizontal.magenta": "Magenta Per Fess",
  "block.minecraft.banner.half_horizontal.orange": "Orange Per Fess",
  "block.minecraft.banner.half_horizontal.white": "White Per Fess",
  "block.minecraft.banner.half_vertical_right.black": "Black Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.red": "Red Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.green": "Green Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.brown": "Brown Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.blue": "Blue Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.purple": "Purple Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.cyan": "Cyan Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.light_gray": "Light Gray Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.gray": "Gray Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.pink": "Pink Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.lime": "Lime Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.yellow": "Yellow Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.light_blue": "Light Blue Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.magenta": "Magenta Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.orange": "Orange Per Pale Inverted",
  "block.minecraft.banner.half_vertical_right.white": "White Per Pale Inverted",
  "block.minecraft.banner.half_horizontal_bottom.black": "Black Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.red": "Red Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.green": "Green Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.brown": "Brown Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.blue": "Blue Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.purple": "Purple Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.cyan": "Cyan Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.light_gray": "Light Gray Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.gray": "Gray Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.pink": "Pink Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.lime": "Lime Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.yellow": "Yellow Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.light_blue": "Light Blue Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.magenta": "Magenta Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.orange": "Orange Per Fess Inverted",
  "block.minecraft.banner.half_horizontal_bottom.white": "White Per Fess Inverted",
  "block.minecraft.banner.creeper.black": "Black Creeper Charge",
  "block.minecraft.banner.creeper.red": "Red Creeper Charge",
  "block.minecraft.banner.creeper.green": "Green Creeper Charge",
  "block.minecraft.banner.creeper.brown": "Brown Creeper Charge",
  "block.minecraft.banner.creeper.blue": "Blue Creeper Charge",
  "block.minecraft.banner.creeper.purple": "Purple Creeper Charge",
  "block.minecraft.banner.creeper.cyan": "Cyan Creeper Charge",
  "block.minecraft.banner.creeper.light_gray": "Light Gray Creeper Charge",
  "block.minecraft.banner.creeper.gray": "Gray Creeper Charge",
  "block.minecraft.banner.creeper.pink": "Pink Creeper Charge",
  "block.minecraft.banner.creeper.lime": "Lime Creeper Charge",
  "block.minecraft.banner.creeper.yellow": "Yellow Creeper Charge",
  "block.minecraft.banner.creeper.light_blue": "Light Blue Creeper Charge",
  "block.minecraft.banner.creeper.magenta": "Magenta Creeper Charge",
  "block.minecraft.banner.creeper.orange": "Orange Creeper Charge",
  "block.minecraft.banner.creeper.white": "White Creeper Charge",
  "block.minecraft.banner.bricks.black": "Black Field Masoned",
  "block.minecraft.banner.bricks.red": "Red Field Masoned",
  "block.minecraft.banner.bricks.green": "Green Field Masoned",
  "block.minecraft.banner.bricks.brown": "Brown Field Masoned",
  "block.minecraft.banner.bricks.blue": "Blue Field Masoned",
  "block.minecraft.banner.bricks.purple": "Purple Field Masoned",
  "block.minecraft.banner.bricks.cyan": "Cyan Field Masoned",
  "block.minecraft.banner.bricks.light_gray": "Light Gray Field Masoned",
  "block.minecraft.banner.bricks.gray": "Gray Field Masoned",
  "block.minecraft.banner.bricks.pink": "Pink Field Masoned",
  "block.minecraft.banner.bricks.lime": "Lime Field Masoned",
  "block.minecraft.banner.bricks.yellow": "Yellow Field Masoned",
  "block.minecraft.banner.bricks.light_blue": "Light Blue Field Masoned",
  "block.minecraft.banner.bricks.magenta": "Magenta Field Masoned",
  "block.minecraft.banner.bricks.orange": "Orange Field Masoned",
  "block.minecraft.banner.bricks.white": "White Field Masoned",
  "block.minecraft.banner.gradient.black": "Black Gradient",
  "block.minecraft.banner.gradient.red": "Red Gradient",
  "block.minecraft.banner.gradient.green": "Green Gradient",
  "block.minecraft.banner.gradient.brown": "Brown Gradient",
  "block.minecraft.banner.gradient.blue": "Blue Gradient",
  "block.minecraft.banner.gradient.purple": "Purple Gradient",
  "block.minecraft.banner.gradient.cyan": "Cyan Gradient",
  "block.minecraft.banner.gradient.light_gray": "Light Gray Gradient",
  "block.minecraft.banner.gradient.gray": "Gray Gradient",
  "block.minecraft.banner.gradient.pink": "Pink Gradient",
  "block.minecraft.banner.gradient.lime": "Lime Gradient",
  "block.minecraft.banner.gradient.yellow": "Yellow Gradient",
  "block.minecraft.banner.gradient.light_blue": "Light Blue Gradient",
  "block.minecraft.banner.gradient.magenta": "Magenta Gradient",
  "block.minecraft.banner.gradient.orange": "Orange Gradient",
  "block.minecraft.banner.gradient.white": "White Gradient",
  "block.minecraft.banner.gradient_up.black": "Black Base Gradient",
  "block.minecraft.banner.gradient_up.red": "Red Base Gradient",
  "block.minecraft.banner.gradient_up.green": "Green Base Gradient",
  "block.minecraft.banner.gradient_up.brown": "Brown Base Gradient",
  "block.minecraft.banner.gradient_up.blue": "Blue Base Gradient",
  "block.minecraft.banner.gradient_up.purple": "Purple Base Gradient",
  "block.minecraft.banner.gradient_up.cyan": "Cyan Base Gradient",
  "block.minecraft.banner.gradient_up.light_gray": "Light Gray Base Gradient",
  "block.minecraft.banner.gradient_up.gray": "Gray Base Gradient",
  "block.minecraft.banner.gradient_up.pink": "Pink Base Gradient",
  "block.minecraft.banner.gradient_up.lime": "Lime Base Gradient",
  "block.minecraft.banner.gradient_up.yellow": "Yellow Base Gradient",
  "block.minecraft.banner.gradient_up.light_blue": "Light Blue Base Gradient",
  "block.minecraft.banner.gradient_up.magenta": "Magenta Base Gradient",
  "block.minecraft.banner.gradient_up.orange": "Orange Base Gradient",
  "block.minecraft.banner.gradient_up.white": "White Base Gradient",
  "block.minecraft.banner.skull.black": "Black Skull Charge",
  "block.minecraft.banner.skull.red": "Red Skull Charge",
  "block.minecraft.banner.skull.green": "Green Skull Charge",
  "block.minecraft.banner.skull.brown": "Brown Skull Charge",
  "block.minecraft.banner.skull.blue": "Blue Skull Charge",
  "block.minecraft.banner.skull.purple": "Purple Skull Charge",
  "block.minecraft.banner.skull.cyan": "Cyan Skull Charge",
  "block.minecraft.banner.skull.light_gray": "Light Gray Skull Charge",
  "block.minecraft.banner.skull.gray": "Gray Skull Charge",
  "block.minecraft.banner.skull.pink": "Pink Skull Charge",
  "block.minecraft.banner.skull.lime": "Lime Skull Charge",
  "block.minecraft.banner.skull.yellow": "Yellow Skull Charge",
  "block.minecraft.banner.skull.light_blue": "Light Blue Skull Charge",
  "block.minecraft.banner.skull.magenta": "Magenta Skull Charge",
  "block.minecraft.banner.skull.orange": "Orange Skull Charge",
  "block.minecraft.banner.skull.white": "White Skull Charge",
  "block.minecraft.banner.flower.black": "Black Flower Charge",
  "block.minecraft.banner.flower.red": "Red Flower Charge",
  "block.minecraft.banner.flower.green": "Green Flower Charge",
  "block.minecraft.banner.flower.brown": "Brown Flower Charge",
  "block.minecraft.banner.flower.blue": "Blue Flower Charge",
  "block.minecraft.banner.flower.purple": "Purple Flower Charge",
  "block.minecraft.banner.flower.cyan": "Cyan Flower Charge",
  "block.minecraft.banner.flower.light_gray": "Light Gray Flower Charge",
  "block.minecraft.banner.flower.gray": "Gray Flower Charge",
  "block.minecraft.banner.flower.pink": "Pink Flower Charge",
  "block.minecraft.banner.flower.lime": "Lime Flower Charge",
  "block.minecraft.banner.flower.yellow": "Yellow Flower Charge",
  "block.minecraft.banner.flower.light_blue": "Light Blue Flower Charge",
  "block.minecraft.banner.flower.magenta": "Magenta Flower Charge",
  "block.minecraft.banner.flower.orange": "Orange Flower Charge",
  "block.minecraft.banner.flower.white": "White Flower Charge",
  "block.minecraft.banner.border.black": "Black Bordure",
  "block.minecraft.banner.border.red": "Red Bordure",
  "block.minecraft.banner.border.green": "Green Bordure",
  "block.minecraft.banner.border.brown": "Brown Bordure",
  "block.minecraft.banner.border.blue": "Blue Bordure",
  "block.minecraft.banner.border.purple": "Purple Bordure",
  "block.minecraft.banner.border.cyan": "Cyan Bordure",
  "block.minecraft.banner.border.light_gray": "Light Gray Bordure",
  "block.minecraft.banner.border.gray": "Gray Bordure",
  "block.minecraft.banner.border.pink": "Pink Bordure",
  "block.minecraft.banner.border.lime": "Lime Bordure",
  "block.minecraft.banner.border.yellow": "Yellow Bordure",
  "block.minecraft.banner.border.light_blue": "Light Blue Bordure",
  "block.minecraft.banner.border.magenta": "Magenta Bordure",
  "block.minecraft.banner.border.orange": "Orange Bordure",
  "block.minecraft.banner.border.white": "White Bordure",
  "block.minecraft.banner.curly_border.black": "Black Bordure Indented",
  "block.minecraft.banner.curly_border.red": "Red Bordure Indented",
  "block.minecraft.banner.curly_border.green": "Green Bordure Indented",
  "block.minecraft.banner.curly_border.brown": "Brown Bordure Indented",
  "block.minecraft.banner.curly_border.blue": "Blue Bordure Indented",
  "block.minecraft.banner.curly_border.purple": "Purple Bordure Indented",
  "block.minecraft.banner.curly_border.cyan": "Cyan Bordure Indented",
  "block.minecraft.banner.curly_border.light_gray": "Light Gray Bordure Indented",
  "block.minecraft.banner.curly_border.gray": "Gray Bordure Indented",
  "block.minecraft.banner.curly_border.pink": "Pink Bordure Indented",
  "block.minecraft.banner.curly_border.lime": "Lime Bordure Indented",
  "block.minecraft.banner.curly_border.yellow": "Yellow Bordure Indented",
  "block.minecraft.banner.curly_border.light_blue": "Light Blue Bordure Indented",
  "block.minecraft.banner.curly_border.magenta": "Magenta Bordure Indented",
  "block.minecraft.banner.curly_border.orange": "Orange Bordure Indented",
  "block.minecraft.banner.curly_border.white": "White Bordure Indented",
  "block.minecraft.banner.mojang.black": "Black Thing",
  "block.minecraft.banner.mojang.red": "Red Thing",
  "block.minecraft.banner.mojang.green": "Green Thing",
  "block.minecraft.banner.mojang.brown": "Brown Thing",
  "block.minecraft.banner.mojang.blue": "Blue Thing",
  "block.minecraft.banner.mojang.purple": "Purple Thing",
  "block.minecraft.banner.mojang.cyan": "Cyan Thing",
  "block.minecraft.banner.mojang.light_gray": "Light Gray Thing",
  "block.minecraft.banner.mojang.gray": "Gray Thing",
  "block.minecraft.banner.mojang.pink": "Pink Thing",
  "block.minecraft.banner.mojang.lime": "Lime Thing",
  "block.minecraft.banner.mojang.yellow": "Yellow Thing",
  "block.minecraft.banner.mojang.light_blue": "Light Blue Thing",
  "block.minecraft.banner.mojang.magenta": "Magenta Thing",
  "block.minecraft.banner.mojang.orange": "Orange Thing",
  "block.minecraft.banner.mojang.white": "White Thing",
  "block.minecraft.banner.straight_cross.black": "Black Cross",
  "block.minecraft.banner.straight_cross.red": "Red Cross",
  "block.minecraft.banner.straight_cross.green": "Green Cross",
  "block.minecraft.banner.straight_cross.brown": "Brown Cross",
  "block.minecraft.banner.straight_cross.blue": "Blue Cross",
  "block.minecraft.banner.straight_cross.purple": "Purple Cross",
  "block.minecraft.banner.straight_cross.cyan": "Cyan Cross",
  "block.minecraft.banner.straight_cross.light_gray": "Light Gray Cross",
  "block.minecraft.banner.straight_cross.gray": "Gray Cross",
  "block.minecraft.banner.straight_cross.pink": "Pink Cross",
  "block.minecraft.banner.straight_cross.lime": "Lime Cross",
  "block.minecraft.banner.straight_cross.yellow": "Yellow Cross",
  "block.minecraft.banner.straight_cross.light_blue": "Light Blue Cross",
  "block.minecraft.banner.straight_cross.magenta": "Magenta Cross",
  "block.minecraft.banner.straight_cross.orange": "Orange Cross",
  "block.minecraft.banner.straight_cross.white": "White Cross",
  "block.minecraft.banner.globe.black": "Black Globe",
  "block.minecraft.banner.globe.red": "Red Globe",
  "block.minecraft.banner.globe.green": "Green Globe",
  "block.minecraft.banner.globe.brown": "Brown Globe",
  "block.minecraft.banner.globe.blue": "Blue Globe",
  "block.minecraft.banner.globe.purple": "Purple Globe",
  "block.minecraft.banner.globe.cyan": "Cyan Globe",
  "block.minecraft.banner.globe.light_gray": "Light Gray Globe",
  "block.minecraft.banner.globe.gray": "Gray Globe",
  "block.minecraft.banner.globe.pink": "Pink Globe",
  "block.minecraft.banner.globe.lime": "Lime Globe",
  "block.minecraft.banner.globe.yellow": "Yellow Globe",
  "block.minecraft.banner.globe.light_blue": "Light Blue Globe",
  "block.minecraft.banner.globe.magenta": "Magenta Globe",
  "block.minecraft.banner.globe.orange": "Orange Globe",
  "block.minecraft.banner.globe.white": "White Globe",
  "block.minecraft.banner.piglin.black": "Black Snout",
  "block.minecraft.banner.piglin.red": "Red Snout",
  "block.minecraft.banner.piglin.green": "Green Snout",
  "block.minecraft.banner.piglin.brown": "Brown Snout",
  "block.minecraft.banner.piglin.blue": "Blue Snout",
  "block.minecraft.banner.piglin.purple": "Purple Snout",
  "block.minecraft.banner.piglin.cyan": "Cyan Snout",
  "block.minecraft.banner.piglin.light_gray": "Light Gray Snout",
  "block.minecraft.banner.piglin.gray": "Gray Snout",
  "block.minecraft.banner.piglin.pink": "Pink Snout",
  "block.minecraft.banner.piglin.lime": "Lime Snout",
  "block.minecraft.banner.piglin.yellow": "Yellow Snout",
  "block.minecraft.banner.piglin.light_blue": "Light Blue Snout",
  "block.minecraft.banner.piglin.magenta": "Magenta Snout",
  "block.minecraft.banner.piglin.orange": "Orange Snout",
  "block.minecraft.banner.piglin.white": "White Snout",
  "subtitles.ambient.cave": "Eerie noise",
  "subtitles.block.anvil.destroy": "Anvil destroyed",
  "subtitles.block.anvil.land": "Anvil landed",
  "subtitles.block.anvil.use": "Anvil used",
  "subtitles.block.barrel.close": "Barrel closes",
  "subtitles.block.barrel.open": "Barrel opens",
  "subtitles.block.beacon.activate": "Beacon activates",
  "subtitles.block.beacon.ambient": "Beacon hums",
  "subtitles.block.beacon.deactivate": "Beacon deactivates",
  "subtitles.block.beacon.power_select": "Beacon power selected",
  "subtitles.block.beehive.drip": "Honey drips",
  "subtitles.block.beehive.enter": "Bee enters hive",
  "subtitles.block.beehive.exit": "Bee leaves hive",
  "subtitles.block.beehive.shear": "Shears scrape",
  "subtitles.block.beehive.work": "Bees work",
  "subtitles.block.bell.resonate": "Bell resonates",
  "subtitles.block.bell.use": "Bell rings",
  "subtitles.block.blastfurnace.fire_crackle": "Blast Furnace crackles",
  "subtitles.block.brewing_stand.brew": "Brewing Stand bubbles",
  "subtitles.block.bubble_column.bubble_pop": "Bubbles pop",
  "subtitles.block.bubble_column.upwards_ambient": "Bubbles flow",
  "subtitles.block.bubble_column.upwards_inside": "Bubbles woosh",
  "subtitles.block.bubble_column.whirlpool_ambient": "Bubbles whirl",
  "subtitles.block.bubble_column.whirlpool_inside": "Bubbles zoom",
  "subtitles.block.button.click": "Button clicks",
  "subtitles.block.campfire.crackle": "Campfire crackles",
  "subtitles.block.chest.close": "Chest closes",
  "subtitles.block.chest.locked": "Chest locked",
  "subtitles.block.chest.open": "Chest opens",
  "subtitles.block.chorus_flower.death": "Chorus Flower withers",
  "subtitles.block.chorus_flower.grow": "Chorus Flower grows",
  "subtitles.block.comparator.click": "Comparator clicks",
  "subtitles.block.composter.empty": "Composter emptied",
  "subtitles.block.composter.fill": "Composter filled",
  "subtitles.block.composter.ready": "Composter composts",
  "subtitles.block.conduit.activate": "Conduit activates",
  "subtitles.block.conduit.ambient": "Conduit pulses",
  "subtitles.block.conduit.attack.target": "Conduit attacks",
  "subtitles.block.conduit.deactivate": "Conduit deactivates",
  "subtitles.block.dispenser.dispense": "Dispensed item",
  "subtitles.block.dispenser.fail": "Dispenser failed",
  "subtitles.block.door.toggle": "Door creaks",
  "subtitles.block.enchantment_table.use": "Enchanting Table used",
  "subtitles.block.end_portal.spawn": "End Portal opens",
  "subtitles.block.end_portal_frame.fill": "Eye of Ender attaches",
  "subtitles.block.fence_gate.toggle": "Fence Gate creaks",
  "subtitles.block.fire.ambient": "Fire crackles",
  "subtitles.block.fire.extinguish": "Fire extinguished",
  "subtitles.block.furnace.fire_crackle": "Furnace crackles",
  "subtitles.block.generic.break": "Block broken",
  "subtitles.block.generic.footsteps": "Footsteps",
  "subtitles.block.generic.hit": "Block breaking",
  "subtitles.block.generic.place": "Block placed",
  "subtitles.block.grindstone.use": "Grindstone used",
  "subtitles.block.honey_block.slide": "Sliding down a honey block",
  "subtitles.block.iron_trapdoor.close": "Trapdoor closes",
  "subtitles.block.iron_trapdoor.open": "Trapdoor opens",
  "subtitles.block.lava.ambient": "Lava pops",
  "subtitles.block.lava.extinguish": "Lava hisses",
  "subtitles.block.lever.click": "Lever clicks",
  "subtitles.block.note_block.note": "Note Block plays",
  "subtitles.block.piston.move": "Piston moves",
  "subtitles.block.portal.ambient": "Portal whooshes",
  "subtitles.block.portal.travel": "Portal noise fades",
  "subtitles.block.portal.trigger": "Portal noise intensifies",
  "subtitles.block.pressure_plate.click": "Pressure Plate clicks",
  "subtitles.block.pumpkin.carve": "Shears carve",
  "subtitles.block.redstone_torch.burnout": "Torch fizzes",
  "subtitles.block.respawn_anchor.ambient": "Portal whooshes",
  "subtitles.block.respawn_anchor.charge": "Respawn Anchor is charged",
  "subtitles.block.respawn_anchor.deplete": "Respawn Anchor depletes",
  "subtitles.block.respawn_anchor.set_spawn": "Respawn Anchor sets spawn",
  "subtitles.block.shulker_box.close": "Shulker closes",
  "subtitles.block.shulker_box.open": "Shulker opens",
  "subtitles.block.smithing_table.use": "Smithing Table used",
  "subtitles.block.smoker.smoke": "Smoker smokes",
  "subtitles.block.trapdoor.toggle": "Trapdoor creaks",
  "subtitles.block.tripwire.attach": "Tripwire attaches",
  "subtitles.block.tripwire.click": "Tripwire clicks",
  "subtitles.block.tripwire.detach": "Tripwire detaches",
  "subtitles.block.water.ambient": "Water flows",
  "subtitles.enchant.thorns.hit": "Thorns prick",
  "subtitles.entity.armor_stand.fall": "Something fell",
  "subtitles.entity.arrow.hit": "Arrow hits",
  "subtitles.entity.arrow.hit_player": "Player hit",
  "subtitles.entity.arrow.shoot": "Arrow fired",
  "subtitles.entity.bat.ambient": "Bat screeches",
  "subtitles.entity.bat.death": "Bat dies",
  "subtitles.entity.bat.hurt": "Bat hurts",
  "subtitles.entity.bat.takeoff": "Bat takes off",
  "subtitles.entity.bee.ambient": "Bee buzzes",
  "subtitles.entity.bee.death": "Bee dies",
  "subtitles.entity.bee.hurt": "Bee hurts",
  "subtitles.entity.bee.loop": "Bee buzzes",
  "subtitles.entity.bee.loop_aggressive": "Bee buzzes angrily",
  "subtitles.entity.bee.pollinate": "Bee buzzes happily",
  "subtitles.entity.bee.sting": "Bee stings",
  "subtitles.entity.blaze.ambient": "Blaze breathes",
  "subtitles.entity.blaze.burn": "Blaze crackles",
  "subtitles.entity.blaze.death": "Blaze dies",
  "subtitles.entity.blaze.hurt": "Blaze hurts",
  "subtitles.entity.blaze.shoot": "Blaze shoots",
  "subtitles.entity.boat.paddle_land": "Rowing",
  "subtitles.entity.boat.paddle_water": "Rowing",
  "subtitles.entity.cat.ambient": "Cat meows",
  "subtitles.entity.cat.beg_for_food": "Cat begs",
  "subtitles.entity.cat.death": "Cat dies",
  "subtitles.entity.cat.eat": "Cat eats",
  "subtitles.entity.cat.hiss": "Cat hisses",
  "subtitles.entity.cat.hurt": "Cat hurts",
  "subtitles.entity.cat.purr": "Cat purrs",
  "subtitles.entity.chicken.ambient": "Chicken clucks",
  "subtitles.entity.chicken.death": "Chicken dies",
  "subtitles.entity.chicken.egg": "Chicken plops",
  "subtitles.entity.chicken.hurt": "Chicken hurts",
  "subtitles.entity.cod.death": "Cod dies",
  "subtitles.entity.cod.flop": "Cod flops",
  "subtitles.entity.cod.hurt": "Cod hurts",
  "subtitles.entity.cow.ambient": "Cow moos",
  "subtitles.entity.cow.death": "Cow dies",
  "subtitles.entity.cow.hurt": "Cow hurts",
  "subtitles.entity.cow.milk": "Cow gets milked",
  "subtitles.entity.creeper.death": "Creeper dies",
  "subtitles.entity.creeper.hurt": "Creeper hurts",
  "subtitles.entity.creeper.primed": "Creeper hisses",
  "subtitles.entity.dolphin.ambient": "Dolphin chirps",
  "subtitles.entity.dolphin.ambient_water": "Dolphin whistles",
  "subtitles.entity.dolphin.attack": "Dolphin attacks",
  "subtitles.entity.dolphin.death": "Dolphin dies",
  "subtitles.entity.dolphin.eat": "Dolphin eats",
  "subtitles.entity.dolphin.hurt": "Dolphin hurts",
  "subtitles.entity.dolphin.jump": "Dolphin jumps",
  "subtitles.entity.dolphin.play": "Dolphin plays",
  "subtitles.entity.dolphin.splash": "Dolphin splashes",
  "subtitles.entity.dolphin.swim": "Dolphin swims",
  "subtitles.entity.donkey.ambient": "Donkey hee-haws",
  "subtitles.entity.donkey.angry": "Donkey neighs",
  "subtitles.entity.donkey.chest": "Donkey Chest equips",
  "subtitles.entity.donkey.death": "Donkey dies",
  "subtitles.entity.donkey.eat": "Donkey eats",
  "subtitles.entity.donkey.hurt": "Donkey hurts",
  "subtitles.entity.drowned.ambient": "Drowned gurgles",
  "subtitles.entity.drowned.ambient_water": "Drowned gurgles",
  "subtitles.entity.drowned.death": "Drowned dies",
  "subtitles.entity.drowned.hurt": "Drowned hurts",
  "subtitles.entity.drowned.shoot": "Drowned throws Trident",
  "subtitles.entity.drowned.step": "Drowned steps",
  "subtitles.entity.drowned.swim": "Drowned swims",
  "subtitles.entity.egg.throw": "Egg flies",
  "subtitles.entity.elder_guardian.ambient": "Elder Guardian moans",
  "subtitles.entity.elder_guardian.ambient_land": "Elder Guardian flaps",
  "subtitles.entity.elder_guardian.curse": "Elder Guardian curses",
  "subtitles.entity.elder_guardian.death": "Elder Guardian dies",
  "subtitles.entity.elder_guardian.flop": "Elder Guardian flops",
  "subtitles.entity.elder_guardian.hurt": "Elder Guardian hurts",
  "subtitles.entity.ender_dragon.ambient": "Dragon roars",
  "subtitles.entity.ender_dragon.death": "Dragon dies",
  "subtitles.entity.ender_dragon.flap": "Dragon flaps",
  "subtitles.entity.ender_dragon.growl": "Dragon growls",
  "subtitles.entity.ender_dragon.hurt": "Dragon hurts",
  "subtitles.entity.ender_dragon.shoot": "Dragon shoots",
  "subtitles.entity.ender_eye.death": "Eye of Ender falls",
  "subtitles.entity.ender_eye.launch": "Eye of Ender shoots",
  "subtitles.entity.ender_pearl.throw": "Ender Pearl flies",
  "subtitles.entity.enderman.ambient": "Enderman vwoops",
  "subtitles.entity.enderman.death": "Enderman dies",
  "subtitles.entity.enderman.hurt": "Enderman hurts",
  "subtitles.entity.enderman.stare": "Enderman cries out",
  "subtitles.entity.enderman.teleport": "Enderman teleports",
  "subtitles.entity.endermite.ambient": "Endermite scuttles",
  "subtitles.entity.endermite.death": "Endermite dies",
  "subtitles.entity.endermite.hurt": "Endermite hurts",
  "subtitles.entity.evoker.ambient": "Evoker murmurs",
  "subtitles.entity.evoker.cast_spell": "Evoker casts spell",
  "subtitles.entity.evoker.celebrate": "Evoker cheers",
  "subtitles.entity.evoker.death": "Evoker dies",
  "subtitles.entity.evoker.hurt": "Evoker hurts",
  "subtitles.entity.evoker.prepare_attack": "Evoker prepares attack",
  "subtitles.entity.evoker.prepare_summon": "Evoker prepares summoning",
  "subtitles.entity.evoker.prepare_wololo": "Evoker prepares charming",
  "subtitles.entity.evoker_fangs.attack": "Fangs snap",
  "subtitles.entity.experience_orb.pickup": "Experience gained",
  "subtitles.entity.firework_rocket.blast": "Firework blasts",
  "subtitles.entity.firework_rocket.launch": "Firework launches",
  "subtitles.entity.firework_rocket.twinkle": "Firework twinkles",
  "subtitles.entity.fishing_bobber.retrieve": "Bobber retrieved",
  "subtitles.entity.fishing_bobber.splash": "Fishing Bobber splashes",
  "subtitles.entity.fishing_bobber.throw": "Bobber thrown",
  "subtitles.entity.fox.aggro": "Fox angers",
  "subtitles.entity.fox.ambient": "Fox squeaks",
  "subtitles.entity.fox.bite": "Fox bites",
  "subtitles.entity.fox.death": "Fox dies",
  "subtitles.entity.fox.eat": "Fox eats",
  "subtitles.entity.fox.hurt": "Fox hurts",
  "subtitles.entity.fox.screech": "Fox screeches",
  "subtitles.entity.fox.sleep": "Fox snores",
  "subtitles.entity.fox.sniff": "Fox sniffs",
  "subtitles.entity.fox.spit": "Fox spits",
  "subtitles.entity.fox.teleport": "Fox teleports",
  "subtitles.entity.generic.big_fall": "Something fell",
  "subtitles.entity.generic.burn": "Burning",
  "subtitles.entity.generic.death": "Dying",
  "subtitles.entity.generic.drink": "Sipping",
  "subtitles.entity.generic.eat": "Eating",
  "subtitles.entity.generic.explode": "Explosion",
  "subtitles.entity.generic.extinguish_fire": "Fire extinguishes",
  "subtitles.entity.generic.hurt": "Something hurts",
  "subtitles.entity.generic.small_fall": "Something trips",
  "subtitles.entity.generic.splash": "Splashing",
  "subtitles.entity.generic.swim": "Swimming",
  "subtitles.entity.ghast.ambient": "Ghast cries",
  "subtitles.entity.ghast.death": "Ghast dies",
  "subtitles.entity.ghast.hurt": "Ghast hurts",
  "subtitles.entity.ghast.shoot": "Ghast shoots",
  "subtitles.entity.guardian.ambient": "Guardian moans",
  "subtitles.entity.guardian.ambient_land": "Guardian flaps",
  "subtitles.entity.guardian.attack": "Guardian shoots",
  "subtitles.entity.guardian.death": "Guardian dies",
  "subtitles.entity.guardian.flop": "Guardian flops",
  "subtitles.entity.guardian.hurt": "Guardian hurts",
  "subtitles.entity.hoglin.ambient": "Hoglin growls",
  "subtitles.entity.hoglin.angry": "Hoglin growls angrily",
  "subtitles.entity.hoglin.attack": "Hoglin attacks",
  "subtitles.entity.hoglin.converted_to_zombified": "Hoglin converts to Zoglin",
  "subtitles.entity.hoglin.death": "Hoglin dies",
  "subtitles.entity.hoglin.hurt": "Hoglin hurts",
  "subtitles.entity.hoglin.retreat": "Hoglin retreats",
  "subtitles.entity.hoglin.step": "Hoglin steps",
  "subtitles.entity.horse.ambient": "Horse neighs",
  "subtitles.entity.horse.angry": "Horse neighs",
  "subtitles.entity.horse.armor": "Horse armor equips",
  "subtitles.entity.horse.breathe": "Horse breathes",
  "subtitles.entity.horse.death": "Horse dies",
  "subtitles.entity.horse.eat": "Horse eats",
  "subtitles.entity.horse.gallop": "Horse gallops",
  "subtitles.entity.horse.hurt": "Horse hurts",
  "subtitles.entity.horse.jump": "Horse jumps",
  "subtitles.entity.horse.saddle": "Saddle equips",
  "subtitles.entity.husk.ambient": "Husk groans",
  "subtitles.entity.husk.converted_to_zombie": "Husk converts to Zombie",
  "subtitles.entity.husk.death": "Husk dies",
  "subtitles.entity.husk.hurt": "Husk hurts",
  "subtitles.entity.illusioner.ambient": "Illusioner murmurs",
  "subtitles.entity.illusioner.cast_spell": "Illusioner casts spell",
  "subtitles.entity.illusioner.death": "Illusioner dies",
  "subtitles.entity.illusioner.hurt": "Illusioner hurts",
  "subtitles.entity.illusioner.mirror_move": "Illusioner displaces",
  "subtitles.entity.illusioner.prepare_blindness": "Illusioner prepares blindness",
  "subtitles.entity.illusioner.prepare_mirror": "Illusioner prepares mirror image",
  "subtitles.entity.iron_golem.attack": "Iron Golem attacks",
  "subtitles.entity.iron_golem.damage": "Iron Golem breaks",
  "subtitles.entity.iron_golem.death": "Iron Golem dies",
  "subtitles.entity.iron_golem.hurt": "Iron Golem hurts",
  "subtitles.entity.iron_golem.repair": "Iron Golem repaired",
  "subtitles.entity.item.break": "Item breaks",
  "subtitles.entity.item.pickup": "Item plops",
  "subtitles.entity.item_frame.add_item": "Item Frame fills",
  "subtitles.entity.item_frame.break": "Item Frame breaks",
  "subtitles.entity.item_frame.place": "Item Frame placed",
  "subtitles.entity.item_frame.remove_item": "Item Frame empties",
  "subtitles.entity.item_frame.rotate_item": "Item Frame clicks",
  "subtitles.entity.leash_knot.break": "Leash knot breaks",
  "subtitles.entity.leash_knot.place": "Leash knot tied",
  "subtitles.entity.lightning_bolt.impact": "Lightning strikes",
  "subtitles.entity.lightning_bolt.thunder": "Thunder roars",
  "subtitles.entity.llama.ambient": "Llama bleats",
  "subtitles.entity.llama.angry": "Llama bleats angrily",
  "subtitles.entity.llama.chest": "Llama Chest equips",
  "subtitles.entity.llama.death": "Llama dies",
  "subtitles.entity.llama.eat": "Llama eats",
  "subtitles.entity.llama.hurt": "Llama hurts",
  "subtitles.entity.llama.spit": "Llama spits",
  "subtitles.entity.llama.step": "Llama steps",
  "subtitles.entity.llama.swag": "Llama is decorated",
  "subtitles.entity.magma_cube.death": "Magma Cube dies",
  "subtitles.entity.magma_cube.hurt": "Magma Cube hurts",
  "subtitles.entity.magma_cube.squish": "Magma Cube squishes",
  "subtitles.entity.minecart.riding": "Minecart rolls",
  "subtitles.entity.mooshroom.convert": "Mooshroom transforms",
  "subtitles.entity.mooshroom.eat": "Mooshroom eats",
  "subtitles.entity.mooshroom.milk": "Mooshroom gets milked",
  "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom gets milked suspiciously",
  "subtitles.entity.mule.ambient": "Mule hee-haws",
  "subtitles.entity.mule.angry": "Mule neighs",
  "subtitles.entity.mule.chest": "Mule Chest equips",
  "subtitles.entity.mule.death": "Mule dies",
  "subtitles.entity.mule.eat": "Mule eats",
  "subtitles.entity.mule.hurt": "Mule hurts",
  "subtitles.entity.painting.break": "Painting breaks",
  "subtitles.entity.painting.place": "Painting placed",
  "subtitles.entity.panda.aggressive_ambient": "Panda huffs",
  "subtitles.entity.panda.ambient": "Panda pants",
  "subtitles.entity.panda.bite": "Panda bites",
  "subtitles.entity.panda.cant_breed": "Panda bleats",
  "subtitles.entity.panda.death": "Panda dies",
  "subtitles.entity.panda.eat": "Panda eats",
  "subtitles.entity.panda.hurt": "Panda hurts",
  "subtitles.entity.panda.pre_sneeze": "Panda's nose tickles",
  "subtitles.entity.panda.sneeze": "Panda sneezes",
  "subtitles.entity.panda.step": "Panda steps",
  "subtitles.entity.panda.worried_ambient": "Panda whimpers",
  "subtitles.entity.parrot.ambient": "Parrot talks",
  "subtitles.entity.parrot.death": "Parrot dies",
  "subtitles.entity.parrot.eats": "Parrot eats",
  "subtitles.entity.parrot.fly": "Parrot flutters",
  "subtitles.entity.parrot.hurts": "Parrot hurts",
  "subtitles.entity.parrot.imitate.blaze": "Parrot breathes",
  "subtitles.entity.parrot.imitate.creeper": "Parrot hisses",
  "subtitles.entity.parrot.imitate.drowned": "Parrot gurgles",
  "subtitles.entity.parrot.imitate.elder_guardian": "Parrot flaps",
  "subtitles.entity.parrot.imitate.ender_dragon": "Parrot roars",
  "subtitles.entity.parrot.imitate.endermite": "Parrot scuttles",
  "subtitles.entity.parrot.imitate.evoker": "Parrot murmurs",
  "subtitles.entity.parrot.imitate.ghast": "Parrot cries",
  "subtitles.entity.parrot.imitate.guardian": "Parrot moans",
  "subtitles.entity.parrot.imitate.hoglin": "Parrot growls",
  "subtitles.entity.parrot.imitate.husk": "Parrot groans",
  "subtitles.entity.parrot.imitate.illusioner": "Parrot murmurs",
  "subtitles.entity.parrot.imitate.magma_cube": "Parrot squishes",
  "subtitles.entity.parrot.imitate.phantom": "Parrot screeches",
  "subtitles.entity.parrot.imitate.piglin": "Parrot snorts",
  "subtitles.entity.parrot.imitate.pillager": "Parrot murmurs",
  "subtitles.entity.parrot.imitate.ravager": "Parrot grunts",
  "subtitles.entity.parrot.imitate.shulker": "Parrot lurks",
  "subtitles.entity.parrot.imitate.silverfish": "Parrot hisses",
  "subtitles.entity.parrot.imitate.skeleton": "Parrot rattles",
  "subtitles.entity.parrot.imitate.slime": "Parrot squishes",
  "subtitles.entity.parrot.imitate.spider": "Parrot hisses",
  "subtitles.entity.parrot.imitate.stray": "Parrot rattles",
  "subtitles.entity.parrot.imitate.vex": "Parrot vexes",
  "subtitles.entity.parrot.imitate.vindicator": "Parrot mutters",
  "subtitles.entity.parrot.imitate.witch": "Parrot giggles",
  "subtitles.entity.parrot.imitate.wither": "Parrot angers",
  "subtitles.entity.parrot.imitate.wither_skeleton": "Parrot rattles",
  "subtitles.entity.parrot.imitate.zoglin": "Parrot growls",
  "subtitles.entity.parrot.imitate.zombie": "Parrot groans",
  "subtitles.entity.parrot.imitate.zombie_villager": "Parrot groans",
  "subtitles.entity.phantom.ambient": "Phantom screeches",
  "subtitles.entity.phantom.bite": "Phantom bites",
  "subtitles.entity.phantom.death": "Phantom dies",
  "subtitles.entity.phantom.flap": "Phantom flaps",
  "subtitles.entity.phantom.hurt": "Phantom hurts",
  "subtitles.entity.phantom.swoop": "Phantom swoops",
  "subtitles.entity.pig.ambient": "Pig oinks",
  "subtitles.entity.pig.death": "Pig dies",
  "subtitles.entity.pig.hurt": "Pig hurts",
  "subtitles.entity.pig.saddle": "Saddle equips",
  "subtitles.entity.piglin.admiring_item": "Piglin admires item",
  "subtitles.entity.piglin.ambient": "Piglin snorts",
  "subtitles.entity.piglin.angry": "Piglin snorts angrily",
  "subtitles.entity.piglin.celebrate": "Piglin celebrates",
  "subtitles.entity.piglin.converted_to_zombified": "Piglin converts to Zombified Piglin",
  "subtitles.entity.piglin.death": "Piglin dies",
  "subtitles.entity.piglin.hurt": "Piglin hurts",
  "subtitles.entity.piglin.jealous": "Piglin snorts enviously",
  "subtitles.entity.piglin.retreat": "Piglin retreats",
  "subtitles.entity.piglin.step": "Piglin steps",
  "subtitles.entity.pillager.ambient": "Pillager murmurs",
  "subtitles.entity.pillager.celebrate": "Pillager cheers",
  "subtitles.entity.pillager.death": "Pillager dies",
  "subtitles.entity.pillager.hurt": "Pillager hurts",
  "subtitles.entity.player.attack.crit": "Critical attack",
  "subtitles.entity.player.attack.knockback": "Knockback attack",
  "subtitles.entity.player.attack.strong": "Strong attack",
  "subtitles.entity.player.attack.sweep": "Sweeping attack",
  "subtitles.entity.player.attack.weak": "Weak attack",
  "subtitles.entity.player.burp": "Burp",
  "subtitles.entity.player.death": "Player dies",
  "subtitles.entity.player.hurt": "Player hurts",
  "subtitles.entity.player.hurt_drown": "Player drowning",
  "subtitles.entity.player.hurt_on_fire": "Player burns",
  "subtitles.entity.player.levelup": "Player dings",
  "subtitles.entity.polar_bear.ambient": "Polar Bear groans",
  "subtitles.entity.polar_bear.ambient_baby": "Polar Bear hums",
  "subtitles.entity.polar_bear.death": "Polar Bear dies",
  "subtitles.entity.polar_bear.hurt": "Polar Bear hurts",
  "subtitles.entity.polar_bear.warning": "Polar Bear roars",
  "subtitles.entity.potion.splash": "Bottle smashes",
  "subtitles.entity.potion.throw": "Bottle thrown",
  "subtitles.entity.puffer_fish.blow_out": "Pufferfish deflates",
  "subtitles.entity.puffer_fish.blow_up": "Pufferfish inflates",
  "subtitles.entity.puffer_fish.death": "Pufferfish dies",
  "subtitles.entity.puffer_fish.flop": "Pufferfish flops",
  "subtitles.entity.puffer_fish.hurt": "Pufferfish hurts",
  "subtitles.entity.puffer_fish.sting": "Pufferfish stings",
  "subtitles.entity.rabbit.ambient": "Rabbit squeaks",
  "subtitles.entity.rabbit.attack": "Rabbit attacks",
  "subtitles.entity.rabbit.death": "Rabbit dies",
  "subtitles.entity.rabbit.hurt": "Rabbit hurts",
  "subtitles.entity.rabbit.jump": "Rabbit hops",
  "subtitles.entity.ravager.ambient": "Ravager grunts",
  "subtitles.entity.ravager.attack": "Ravager bites",
  "subtitles.entity.ravager.celebrate": "Ravager cheers",
  "subtitles.entity.ravager.death": "Ravager dies",
  "subtitles.entity.ravager.hurt": "Ravager hurts",
  "subtitles.entity.ravager.roar": "Ravager roars",
  "subtitles.entity.ravager.step": "Ravager steps",
  "subtitles.entity.ravager.stunned": "Ravager stunned",
  "subtitles.entity.salmon.death": "Salmon dies",
  "subtitles.entity.salmon.flop": "Salmon flops",
  "subtitles.entity.salmon.hurt": "Salmon hurts",
  "subtitles.entity.sheep.ambient": "Sheep baahs",
  "subtitles.entity.sheep.death": "Sheep dies",
  "subtitles.entity.sheep.hurt": "Sheep hurts",
  "subtitles.entity.shulker.ambient": "Shulker lurks",
  "subtitles.entity.shulker.close": "Shulker closes",
  "subtitles.entity.shulker.death": "Shulker dies",
  "subtitles.entity.shulker.hurt": "Shulker hurts",
  "subtitles.entity.shulker.open": "Shulker opens",
  "subtitles.entity.shulker.shoot": "Shulker shoots",
  "subtitles.entity.shulker.teleport": "Shulker teleports",
  "subtitles.entity.shulker_bullet.hit": "Shulker bullet explodes",
  "subtitles.entity.shulker_bullet.hurt": "Shulker bullet breaks",
  "subtitles.entity.silverfish.ambient": "Silverfish hisses",
  "subtitles.entity.silverfish.death": "Silverfish dies",
  "subtitles.entity.silverfish.hurt": "Silverfish hurts",
  "subtitles.entity.skeleton.ambient": "Skeleton rattles",
  "subtitles.entity.skeleton.death": "Skeleton dies",
  "subtitles.entity.skeleton.hurt": "Skeleton hurts",
  "subtitles.entity.skeleton.shoot": "Skeleton shoots",
  "subtitles.entity.skeleton_horse.ambient": "Skeleton Horse cries",
  "subtitles.entity.skeleton_horse.death": "Skeleton Horse dies",
  "subtitles.entity.skeleton_horse.hurt": "Skeleton Horse hurts",
  "subtitles.entity.skeleton_horse.swim": "Skeleton Horse swims",
  "subtitles.entity.slime.attack": "Slime attacks",
  "subtitles.entity.slime.death": "Slime dies",
  "subtitles.entity.slime.hurt": "Slime hurts",
  "subtitles.entity.slime.squish": "Slime squishes",
  "subtitles.entity.snow_golem.death": "Snow Golem dies",
  "subtitles.entity.snow_golem.hurt": "Snow Golem hurts",
  "subtitles.entity.snowball.throw": "Snowball flies",
  "subtitles.entity.spider.ambient": "Spider hisses",
  "subtitles.entity.spider.death": "Spider dies",
  "subtitles.entity.spider.hurt": "Spider hurts",
  "subtitles.entity.squid.ambient": "Squid swims",
  "subtitles.entity.squid.death": "Squid dies",
  "subtitles.entity.squid.hurt": "Squid hurts",
  "subtitles.entity.squid.squirt": "Squid shoots ink",
  "subtitles.entity.stray.ambient": "Stray rattles",
  "subtitles.entity.stray.death": "Stray dies",
  "subtitles.entity.stray.hurt": "Stray hurts",
  "subtitles.entity.strider.death": "Strider dies",
  "subtitles.entity.strider.eat": "Strider eats",
  "subtitles.entity.strider.happy": "Strider warbles",
  "subtitles.entity.strider.hurt": "Strider hurts",
  "subtitles.entity.strider.idle": "Strider chirps",
  "subtitles.entity.strider.retreat": "Strider retreats",
  "subtitles.entity.tnt.primed": "TNT fizzes",
  "subtitles.entity.tropical_fish.death": "Tropical Fish dies",
  "subtitles.entity.tropical_fish.flop": "Tropical Fish flops",
  "subtitles.entity.tropical_fish.hurt": "Tropical Fish hurts",
  "subtitles.entity.turtle.ambient_land": "Turtle chirps",
  "subtitles.entity.turtle.death": "Turtle dies",
  "subtitles.entity.turtle.death_baby": "Turtle baby dies",
  "subtitles.entity.turtle.egg_break": "Turtle Egg breaks",
  "subtitles.entity.turtle.egg_crack": "Turtle Egg cracks",
  "subtitles.entity.turtle.egg_hatch": "Turtle Egg hatches",
  "subtitles.entity.turtle.hurt": "Turtle hurts",
  "subtitles.entity.turtle.hurt_baby": "Turtle baby hurts",
  "subtitles.entity.turtle.lay_egg": "Turtle lays egg",
  "subtitles.entity.turtle.shamble": "Turtle shambles",
  "subtitles.entity.turtle.shamble_baby": "Turtle baby shambles",
  "subtitles.entity.turtle.swim": "Turtle swims",
  "subtitles.entity.vex.ambient": "Vex vexes",
  "subtitles.entity.vex.charge": "Vex shrieks",
  "subtitles.entity.vex.death": "Vex dies",
  "subtitles.entity.vex.hurt": "Vex hurts",
  "subtitles.entity.villager.ambient": "Villager mumbles",
  "subtitles.entity.villager.celebrate": "Villager cheers",
  "subtitles.entity.villager.death": "Villager dies",
  "subtitles.entity.villager.hurt": "Villager hurts",
  "subtitles.entity.villager.no": "Villager disagrees",
  "subtitles.entity.villager.trade": "Villager trades",
  "subtitles.entity.villager.work_armorer": "Armorer works",
  "subtitles.entity.villager.work_butcher": "Butcher works",
  "subtitles.entity.villager.work_cartographer": "Cartographer works",
  "subtitles.entity.villager.work_cleric": "Cleric works",
  "subtitles.entity.villager.work_farmer": "Farmer works",
  "subtitles.entity.villager.work_fisherman": "Fisherman works",
  "subtitles.entity.villager.work_fletcher": "Fletcher works",
  "subtitles.entity.villager.work_leatherworker": "Leatherworker works",
  "subtitles.entity.villager.work_librarian": "Librarian works",
  "subtitles.entity.villager.work_mason": "Mason works",
  "subtitles.entity.villager.work_shepherd": "Shepherd works",
  "subtitles.entity.villager.work_toolsmith": "Toolsmith works",
  "subtitles.entity.villager.work_weaponsmith": "Weaponsmith works",
  "subtitles.entity.villager.yes": "Villager agrees",
  "subtitles.entity.vindicator.ambient": "Vindicator mutters",
  "subtitles.entity.vindicator.celebrate": "Vindicator cheers",
  "subtitles.entity.vindicator.death": "Vindicator dies",
  "subtitles.entity.vindicator.hurt": "Vindicator hurts",
  "subtitles.entity.wandering_trader.ambient": "Wandering Trader mumbles",
  "subtitles.entity.wandering_trader.death": "Wandering Trader dies",
  "subtitles.entity.wandering_trader.disappeared": "Wandering Trader disappears",
  "subtitles.entity.wandering_trader.drink_milk": "Wandering Trader drinks milk",
  "subtitles.entity.wandering_trader.drink_potion": "Wandering Trader drinks potion",
  "subtitles.entity.wandering_trader.hurt": "Wandering Trader hurts",
  "subtitles.entity.wandering_trader.no": "Wandering Trader disagrees",
  "subtitles.entity.wandering_trader.reappeared": "Wandering Trader appears",
  "subtitles.entity.wandering_trader.trade": "Wandering Trader trades",
  "subtitles.entity.wandering_trader.yes": "Wandering Trader agrees",
  "subtitles.entity.witch.ambient": "Witch giggles",
  "subtitles.entity.witch.celebrate": "Witch cheers",
  "subtitles.entity.witch.death": "Witch dies",
  "subtitles.entity.witch.drink": "Witch drinks",
  "subtitles.entity.witch.hurt": "Witch hurts",
  "subtitles.entity.witch.throw": "Witch throws",
  "subtitles.entity.wither.ambient": "Wither angers",
  "subtitles.entity.wither.death": "Wither dies",
  "subtitles.entity.wither.hurt": "Wither hurts",
  "subtitles.entity.wither.shoot": "Wither attacks",
  "subtitles.entity.wither.spawn": "Wither released",
  "subtitles.entity.wither_skeleton.ambient": "Wither Skeleton rattles",
  "subtitles.entity.wither_skeleton.death": "Wither Skeleton dies",
  "subtitles.entity.wither_skeleton.hurt": "Wither Skeleton hurts",
  "subtitles.entity.wolf.ambient": "Wolf pants",
  "subtitles.entity.wolf.death": "Wolf dies",
  "subtitles.entity.wolf.growl": "Wolf growls",
  "subtitles.entity.wolf.hurt": "Wolf hurts",
  "subtitles.entity.wolf.shake": "Wolf shakes",
  "subtitles.entity.zoglin.ambient": "Zoglin growls",
  "subtitles.entity.zoglin.angry": "Zoglin growls angrily",
  "subtitles.entity.zoglin.attack": "Zoglin attacks",
  "subtitles.entity.zoglin.death": "Zoglin dies",
  "subtitles.entity.zoglin.hurt": "Zoglin hurts",
  "subtitles.entity.zoglin.step": "Zoglin steps",
  "subtitles.entity.zombie.ambient": "Zombie groans",
  "subtitles.entity.zombie.attack_wooden_door": "Door shakes",
  "subtitles.entity.zombie.converted_to_drowned": "Zombie converts to Drowned",
  "subtitles.entity.zombie.break_wooden_door": "Door breaks",
  "subtitles.entity.zombie.death": "Zombie dies",
  "subtitles.entity.zombie.destroy_egg": "Turtle Egg stomped",
  "subtitles.entity.zombie.hurt": "Zombie hurts",
  "subtitles.entity.zombie.infect": "Zombie infects",
  "subtitles.entity.zombie_horse.ambient": "Zombie Horse cries",
  "subtitles.entity.zombie_horse.death": "Zombie Horse dies",
  "subtitles.entity.zombie_horse.hurt": "Zombie Horse hurts",
  "subtitles.entity.zombie_villager.ambient": "Zombie Villager groans",
  "subtitles.entity.zombie_villager.converted": "Zombie Villager vociferates",
  "subtitles.entity.zombie_villager.cure": "Zombie Villager snuffles",
  "subtitles.entity.zombie_villager.death": "Zombie Villager dies",
  "subtitles.entity.zombie_villager.hurt": "Zombie Villager hurts",
  "subtitles.entity.zombified_piglin.ambient": "Zombified Piglin grunts",
  "subtitles.entity.zombified_piglin.angry": "Zombified Piglin grunts angrily",
  "subtitles.entity.zombified_piglin.death": "Zombified Piglin dies",
  "subtitles.entity.zombified_piglin.hurt": "Zombified Piglin hurts",
  "subtitles.event.raid.horn": "Ominous horn blares",
  "subtitles.item.armor.equip": "Gear equips",
  "subtitles.item.armor.equip_chain": "Chain armor jingles",
  "subtitles.item.armor.equip_diamond": "Diamond armor clangs",
  "subtitles.item.armor.equip_elytra": "Elytra rustle",
  "subtitles.item.armor.equip_gold": "Gold armor clinks",
  "subtitles.item.armor.equip_iron": "Iron armor clanks",
  "subtitles.item.armor.equip_leather": "Leather armor rustles",
  "subtitles.item.armor.equip_netherite": "Netherite armor clanks",
  "subtitles.item.armor.equip_turtle": "Turtle shell thunks",
  "subtitles.item.axe.strip": "Axe scrapes",
  "subtitles.item.berries.pick": "Berries pop",
  "subtitles.item.book.page_turn": "Page rustles",
  "subtitles.item.book.put": "Book thumps",
  "subtitles.item.bottle.empty": "Bottle empties",
  "subtitles.item.bottle.fill": "Bottle fills",
  "subtitles.item.bucket.empty": "Bucket empties",
  "subtitles.item.bucket.fill": "Bucket fills",
  "subtitles.item.bucket.fill_fish": "Fish captured",
  "subtitles.item.chorus_fruit.teleport": "Player teleports",
  "subtitles.item.crop.plant": "Crop planted",
  "subtitles.item.crossbow.charge": "Crossbow charges up",
  "subtitles.item.crossbow.hit": "Arrow hits",
  "subtitles.item.crossbow.load": "Crossbow loads",
  "subtitles.item.crossbow.shoot": "Crossbow fires",
  "subtitles.item.firecharge.use": "Fireball whooshes",
  "subtitles.item.flintandsteel.use": "Flint and Steel click",
  "subtitles.item.hoe.till": "Hoe tills",
  "subtitles.item.honey_bottle.drink": "Gulping",
  "subtitles.item.lodestone_compass.lock": "Lodestone Compass locks onto Lodestone",
  "subtitles.item.nether_wart.plant": "Crop planted",
  "subtitles.item.shears.shear": "Shears click",
  "subtitles.item.shield.block": "Shield blocks",
  "subtitles.item.shovel.flatten": "Shovel flattens",
  "subtitles.item.totem.use": "Totem activates",
  "subtitles.item.trident.hit": "Trident stabs",
  "subtitles.item.trident.hit_ground": "Trident vibrates",
  "subtitles.item.trident.return": "Trident returns",
  "subtitles.item.trident.riptide": "Trident zooms",
  "subtitles.item.trident.throw": "Trident clangs",
  "subtitles.item.trident.thunder": "Trident thunder cracks",
  "subtitles.particle.soul_escape": "Soul escapes",
  "subtitles.ui.cartography_table.take_result": "Map drawn",
  "subtitles.ui.loom.take_result": "Loom used",
  "subtitles.ui.stonecutter.take_result": "Stonecutter used",
  "subtitles.weather.rain": "Rain falls",
  "debug.prefix": "[Debug]:",
  "debug.reload_chunks.help": "F3 + A = Reload chunks",
  "debug.show_hitboxes.help": "F3 + B = Show hitboxes",
  "debug.clear_chat.help": "F3 + D = Clear chat",
  "debug.cycle_renderdistance.help": "F3 + F = Cycle render distance (Shift to invert)",
  "debug.chunk_boundaries.help": "F3 + G = Show chunk boundaries",
  "debug.advanced_tooltips.help": "F3 + H = Advanced tooltips",
  "debug.creative_spectator.help": "F3 + N = Cycle previous gamemode <-> spectator",
  "debug.pause_focus.help": "F3 + P = Pause on lost focus",
  "debug.help.help": "F3 + Q = Show this list",
  "debug.reload_resourcepacks.help": "F3 + T = Reload resource packs",
  "debug.pause.help": "F3 + Esc = Pause without pause menu (if pausing is possible)",
  "debug.copy_location.help": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game",
  "debug.inspect.help": "F3 + I = Copy entity or block data to clipboard",
  "debug.gamemodes.help": "F3 + F4 = Open game mode switcher",
  "debug.copy_location.message": "Copied location to clipboard",
  "debug.inspect.server.block": "Copied server-side block data to clipboard",
  "debug.inspect.server.entity": "Copied server-side entity data to clipboard",
  "debug.inspect.client.block": "Copied client-side block data to clipboard",
  "debug.inspect.client.entity": "Copied client-side entity data to clipboard",
  "debug.reload_chunks.message": "Reloading all chunks",
  "debug.show_hitboxes.on": "Hitboxes: shown",
  "debug.show_hitboxes.off": "Hitboxes: hidden",
  "debug.cycle_renderdistance.message": "Render Distance: %s",
  "debug.chunk_boundaries.on": "Chunk borders: shown",
  "debug.chunk_boundaries.off": "Chunk borders: hidden",
  "debug.advanced_tooltips.on": "Advanced tooltips: shown",
  "debug.advanced_tooltips.off": "Advanced tooltips: hidden",
  "debug.creative_spectator.error": "Unable to switch gamemode, no permission",
  "debug.gamemodes.error": "Unable to open game mode switcher, no permission",
  "debug.pause_focus.on": "Pause on lost focus: enabled",
  "debug.pause_focus.off": "Pause on lost focus: disabled",
  "debug.help.message": "Key bindings:",
  "debug.reload_resourcepacks.message": "Reloaded resource packs",
  "debug.crash.message": "F3 + C is held down. This will crash the game unless released.",
  "debug.crash.warning": "Crashing in %s...",
  "debug.gamemodes.press_f4": "[ F4 ]",
  "debug.gamemodes.select_next": "%s Next",
  "resourcepack.downloading": "Downloading Resource Pack",
  "resourcepack.requesting": "Making Request...",
  "resourcepack.progress": "Downloading file (%s MB)...",
  "tutorial.move.title": "Move with %s, %s, %s and %s",
  "tutorial.move.description": "Jump with %s",
  "tutorial.look.title": "Look around",
  "tutorial.look.description": "Use your mouse to turn",
  "tutorial.find_tree.title": "Find a tree",
  "tutorial.find_tree.description": "Punch it to collect wood",
  "tutorial.punch_tree.title": "Destroy the tree",
  "tutorial.punch_tree.description": "Hold down %s",
  "tutorial.open_inventory.title": "Open your inventory",
  "tutorial.open_inventory.description": "Press %s",
  "tutorial.craft_planks.title": "Craft wooden planks",
  "tutorial.craft_planks.description": "The recipe book can help",
  "advancements.adventure.adventuring_time.title": "Adventuring Time",
  "advancements.adventure.adventuring_time.description": "Discover every biome",
  "advancements.adventure.arbalistic.title": "Arbalistic",
  "advancements.adventure.arbalistic.description": "Kill five unique mobs with one crossbow shot",
  "advancements.adventure.bullseye.title": "Bullseye",
  "advancements.adventure.bullseye.description": "Hit the bullseye of a Target block from at least 30 meters away",
  "advancements.adventure.hero_of_the_village.title": "Hero of the Village",
  "advancements.adventure.hero_of_the_village.description": "Successfully defend a village from a raid",
  "advancements.adventure.honey_block_slide.title": "Sticky Situation",
  "advancements.adventure.honey_block_slide.description": "Jump into a Honey Block to break your fall",
  "advancements.adventure.kill_all_mobs.title": "Monsters Hunted",
  "advancements.adventure.kill_all_mobs.description": "Kill one of every hostile monster",
  "advancements.adventure.kill_a_mob.title": "Monster Hunter",
  "advancements.adventure.kill_a_mob.description": "Kill any hostile monster",
  "advancements.adventure.ol_betsy.title": "Ol' Betsy",
  "advancements.adventure.ol_betsy.description": "Shoot a crossbow",
  "advancements.adventure.root.title": "Adventure",
  "advancements.adventure.root.description": "Adventure, exploration and combat",
  "advancements.adventure.shoot_arrow.title": "Take Aim",
  "advancements.adventure.shoot_arrow.description": "Shoot something with an arrow",
  "advancements.adventure.sleep_in_bed.title": "Sweet Dreams",
  "advancements.adventure.sleep_in_bed.description": "Sleep in a bed to change your respawn point",
  "advancements.adventure.sniper_duel.title": "Sniper Duel",
  "advancements.adventure.sniper_duel.description": "Kill a Skeleton from at least 50 meters away",
  "advancements.adventure.summon_iron_golem.title": "Hired Help",
  "advancements.adventure.summon_iron_golem.description": "Summon an Iron Golem to help defend a village",
  "advancements.adventure.totem_of_undying.title": "Postmortal",
  "advancements.adventure.totem_of_undying.description": "Use a Totem of Undying to cheat death",
  "advancements.adventure.trade.title": "What a Deal!",
  "advancements.adventure.trade.description": "Successfully trade with a Villager",
  "advancements.adventure.throw_trident.title": "A Throwaway Joke",
  "advancements.adventure.throw_trident.description": "Throw a trident at something.\nNote: Throwing away your only weapon is not a good idea.",
  "advancements.adventure.two_birds_one_arrow.title": "Two Birds, One Arrow",
  "advancements.adventure.two_birds_one_arrow.description": "Kill two Phantoms with a piercing arrow",
  "advancements.adventure.very_very_frightening.title": "Very Very Frightening",
  "advancements.adventure.very_very_frightening.description": "Strike a Villager with lightning",
  "advancements.adventure.voluntary_exile.title": "Voluntary Exile",
  "advancements.adventure.voluntary_exile.description": "Kill a raid captain.\nMaybe consider staying away from villages for the time being...",
  "advancements.adventure.whos_the_pillager_now.title": "Who's the Pillager Now?",
  "advancements.adventure.whos_the_pillager_now.description": "Give a Pillager a taste of their own medicine",
  "advancements.husbandry.root.title": "Husbandry",
  "advancements.husbandry.root.description": "The world is full of friends and food",
  "advancements.husbandry.breed_an_animal.title": "The Parrots and the Bats",
  "advancements.husbandry.breed_an_animal.description": "Breed two animals together",
  "advancements.husbandry.fishy_business.title": "Fishy Business",
  "advancements.husbandry.fishy_business.description": "Catch a fish",
  "advancements.husbandry.tactical_fishing.title": "Tactical Fishing",
  "advancements.husbandry.tactical_fishing.description": "Catch a fish... without a fishing rod!",
  "advancements.husbandry.breed_all_animals.title": "Two by Two",
  "advancements.husbandry.breed_all_animals.description": "Breed all the animals!",
  "advancements.husbandry.tame_an_animal.title": "Best Friends Forever",
  "advancements.husbandry.tame_an_animal.description": "Tame an animal",
  "advancements.husbandry.plant_seed.title": "A Seedy Place",
  "advancements.husbandry.plant_seed.description": "Plant a seed and watch it grow",
  "advancements.husbandry.netherite_hoe.title": "Serious Dedication",
  "advancements.husbandry.netherite_hoe.description": "Use a Netherite ingot to upgrade a hoe, and then reevaluate your life choices",
  "advancements.husbandry.balanced_diet.title": "A Balanced Diet",
  "advancements.husbandry.balanced_diet.description": "Eat everything that is edible, even if it's not good for you",
  "advancements.husbandry.complete_catalogue.title": "A Complete Catalogue",
  "advancements.husbandry.complete_catalogue.description": "Tame all cat variants!",
  "advancements.husbandry.safely_harvest_honey.title": "Bee Our Guest",
  "advancements.husbandry.safely_harvest_honey.description": "Use a Campfire to collect Honey from a Beehive using a Bottle without aggravating the bees",
  "advancements.husbandry.silk_touch_nest.title": "Total Beelocation",
  "advancements.husbandry.silk_touch_nest.description": "Move a Bee Nest, with 3 bees inside, using Silk Touch",
  "advancements.end.dragon_breath.title": "You Need a Mint",
  "advancements.end.dragon_breath.description": "Collect dragon's breath in a glass bottle",
  "advancements.end.dragon_egg.title": "The Next Generation",
  "advancements.end.dragon_egg.description": "Hold the Dragon Egg",
  "advancements.end.elytra.title": "Sky's the Limit",
  "advancements.end.elytra.description": "Find elytra",
  "advancements.end.enter_end_gateway.title": "Remote Getaway",
  "advancements.end.enter_end_gateway.description": "Escape the island",
  "advancements.end.find_end_city.title": "The City at the End of the Game",
  "advancements.end.find_end_city.description": "Go on in, what could happen?",
  "advancements.end.kill_dragon.title": "Free the End",
  "advancements.end.kill_dragon.description": "Good luck",
  "advancements.end.levitate.title": "Great View From Up Here",
  "advancements.end.levitate.description": "Levitate up 50 blocks from the attacks of a Shulker",
  "advancements.end.respawn_dragon.title": "The End... Again...",
  "advancements.end.respawn_dragon.description": "Respawn the Ender Dragon",
  "advancements.end.root.title": "The End",
  "advancements.end.root.description": "Or the beginning?",
  "advancements.nether.brew_potion.title": "Local Brewery",
  "advancements.nether.brew_potion.description": "Brew a potion",
  "advancements.nether.all_potions.title": "A Furious Cocktail",
  "advancements.nether.all_potions.description": "Have every potion effect applied at the same time",
  "advancements.nether.all_effects.title": "How Did We Get Here?",
  "advancements.nether.all_effects.description": "Have every effect applied at the same time",
  "advancements.nether.create_beacon.title": "Bring Home the Beacon",
  "advancements.nether.create_beacon.description": "Construct and place a Beacon",
  "advancements.nether.create_full_beacon.title": "Beaconator",
  "advancements.nether.create_full_beacon.description": "Bring a beacon to full power",
  "advancements.nether.find_fortress.title": "A Terrible Fortress",
  "advancements.nether.find_fortress.description": "Break your way into a Nether Fortress",
  "advancements.nether.get_wither_skull.title": "Spooky Scary Skeleton",
  "advancements.nether.get_wither_skull.description": "Obtain a Wither Skeleton's skull",
  "advancements.nether.obtain_blaze_rod.title": "Into Fire",
  "advancements.nether.obtain_blaze_rod.description": "Relieve a Blaze of its rod",
  "advancements.nether.return_to_sender.title": "Return to Sender",
  "advancements.nether.return_to_sender.description": "Destroy a Ghast with a fireball",
  "advancements.nether.root.title": "Nether",
  "advancements.nether.root.description": "Bring summer clothes",
  "advancements.nether.summon_wither.title": "Withering Heights",
  "advancements.nether.summon_wither.description": "Summon the Wither",
  "advancements.nether.fast_travel.title": "Subspace Bubble",
  "advancements.nether.fast_travel.description": "Use the Nether to travel 7 km in the Overworld",
  "advancements.nether.uneasy_alliance.title": "Uneasy Alliance",
  "advancements.nether.uneasy_alliance.description": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it",
  "advancements.nether.obtain_ancient_debris.title": "Hidden in the Depths",
  "advancements.nether.obtain_ancient_debris.description": "Obtain Ancient Debris",
  "advancements.nether.netherite_armor.title": "Cover Me in Debris",
  "advancements.nether.netherite_armor.description": "Get a full suit of Netherite armor",
  "advancements.nether.use_lodestone.title": "Country Lode, Take Me Home",
  "advancements.nether.use_lodestone.description": "Use a Compass on a Lodestone",
  "advancements.nether.obtain_crying_obsidian.title": "Who is Cutting Onions?",
  "advancements.nether.obtain_crying_obsidian.description": "Obtain Crying Obsidian",
  "advancements.nether.charge_respawn_anchor.title": "Not Quite \"Nine\" Lives",
  "advancements.nether.charge_respawn_anchor.description": "Charge a Respawn Anchor to the maximum",
  "advancements.nether.ride_strider.title": "This Boat Has Legs",
  "advancements.nether.ride_strider.description": "Ride a Strider with a Warped Fungus on a Stick",
  "advancements.nether.explore_nether.title": "Hot Tourist Destinations",
  "advancements.nether.explore_nether.description": "Explore all Nether biomes",
  "advancements.nether.find_bastion.title": "Those Were the Days",
  "advancements.nether.find_bastion.description": "Enter a Bastion Remnant",
  "advancements.nether.loot_bastion.title": "War Pigs",
  "advancements.nether.loot_bastion.description": "Loot a chest in a Bastion Remnant",
  "advancements.nether.distract_piglin.title": "Oh Shiny",
  "advancements.nether.distract_piglin.description": "Distract Piglins with gold",
  "advancements.story.cure_zombie_villager.title": "Zombie Doctor",
  "advancements.story.cure_zombie_villager.description": "Weaken and then cure a Zombie Villager",
  "advancements.story.deflect_arrow.title": "Not Today, Thank You",
  "advancements.story.deflect_arrow.description": "Deflect a projectile with a shield",
  "advancements.story.enchant_item.title": "Enchanter",
  "advancements.story.enchant_item.description": "Enchant an item at an Enchanting Table",
  "advancements.story.enter_the_end.title": "The End?",
  "advancements.story.enter_the_end.description": "Enter the End Portal",
  "advancements.story.enter_the_nether.title": "We Need to Go Deeper",
  "advancements.story.enter_the_nether.description": "Build, light and enter a Nether Portal",
  "advancements.story.follow_ender_eye.title": "Eye Spy",
  "advancements.story.follow_ender_eye.description": "Follow an Eye of Ender",
  "advancements.story.form_obsidian.title": "Ice Bucket Challenge",
  "advancements.story.form_obsidian.description": "Obtain a block of obsidian",
  "advancements.story.iron_tools.title": "Isn't It Iron Pick",
  "advancements.story.iron_tools.description": "Upgrade your pickaxe",
  "advancements.story.lava_bucket.title": "Hot Stuff",
  "advancements.story.lava_bucket.description": "Fill a bucket with lava",
  "advancements.story.mine_diamond.title": "Diamonds!",
  "advancements.story.mine_diamond.description": "Acquire diamonds",
  "advancements.story.mine_stone.title": "Stone Age",
  "advancements.story.mine_stone.description": "Mine stone with your new pickaxe",
  "advancements.story.obtain_armor.title": "Suit Up",
  "advancements.story.obtain_armor.description": "Protect yourself with a piece of iron armor",
  "advancements.story.root.title": "Minecraft",
  "advancements.story.root.description": "The heart and story of the game",
  "advancements.story.shiny_gear.title": "Cover Me With Diamonds",
  "advancements.story.shiny_gear.description": "Diamond armor saves lives",
  "advancements.story.smelt_iron.title": "Acquire Hardware",
  "advancements.story.smelt_iron.description": "Smelt an iron ingot",
  "advancements.story.upgrade_tools.title": "Getting an Upgrade",
  "advancements.story.upgrade_tools.description": "Construct a better pickaxe",
  "team.visibility.always": "Always",
  "team.visibility.never": "Never",
  "team.visibility.hideForOtherTeams": "Hide for other teams",
  "team.visibility.hideForOwnTeam": "Hide for own team",
  "team.collision.always": "Always",
  "team.collision.never": "Never",
  "team.collision.pushOtherTeams": "Push other teams",
  "team.collision.pushOwnTeam": "Push own team",
  "argument.uuid.invalid": "Invalid UUID",
  "argument.entity.selector.nearestPlayer": "Nearest player",
  "argument.entity.selector.randomPlayer": "Random player",
  "argument.entity.selector.allPlayers": "All players",
  "argument.entity.selector.allEntities": "All entities",
  "argument.entity.selector.self": "Current entity",
  "argument.entity.options.name.description": "Entity name",
  "argument.entity.options.distance.description": "Distance to entity",
  "argument.entity.options.level.description": "Experience level",
  "argument.entity.options.x.description": "x position",
  "argument.entity.options.y.description": "y position",
  "argument.entity.options.z.description": "z position",
  "argument.entity.options.dx.description": "Entities between x and x + dx",
  "argument.entity.options.dy.description": "Entities between y and y + dy",
  "argument.entity.options.dz.description": "Entities between z and z + dz",
  "argument.entity.options.x_rotation.description": "Entity's x rotation",
  "argument.entity.options.y_rotation.description": "Entity's y rotation",
  "argument.entity.options.limit.description": "Maximum number of entities to return",
  "argument.entity.options.sort.description": "Sort the entities",
  "argument.entity.options.gamemode.description": "Players with gamemode",
  "argument.entity.options.team.description": "Entities on team",
  "argument.entity.options.type.description": "Entities of type",
  "argument.entity.options.tag.description": "Entities with tag",
  "argument.entity.options.nbt.description": "Entities with NBT",
  "argument.entity.options.scores.description": "Entities with scores",
  "argument.entity.options.advancements.description": "Players with advancements",
  "argument.entity.options.predicate.description": "Custom predicate",
  "command.failed": "An unexpected error occurred trying to execute that command",
  "command.context.here": "<--[HERE]",
  "commands.publish.started": "Local game hosted on port %s",
  "commands.publish.failed": "Unable to host local game",
  "commands.advancement.advancementNotFound": "No advancement was found by the name '%1$s'",
  "commands.advancement.criterionNotFound": "The advancement %1$s does not contain the criterion '%2$s'",
  "commands.advancement.grant.one.to.one.success": "Granted the advancement %s to %s",
  "commands.advancement.grant.one.to.one.failure": "Couldn't grant advancement %s to %s as they already have it",
  "commands.advancement.grant.one.to.many.success": "Granted the advancement %s to %s players",
  "commands.advancement.grant.one.to.many.failure": "Couldn't grant advancement %s to %s players as they already have it",
  "commands.advancement.grant.many.to.one.success": "Granted %s advancements to %s",
  "commands.advancement.grant.many.to.one.failure": "Couldn't grant %s advancements to %s as they already have them",
  "commands.advancement.grant.many.to.many.success": "Granted %s advancements to %s players",
  "commands.advancement.grant.many.to.many.failure": "Couldn't grant %s advancements to %s players as they already have them",
  "commands.advancement.grant.criterion.to.one.success": "Granted criterion '%s' of advancement %s to %s",
  "commands.advancement.grant.criterion.to.one.failure": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it",
  "commands.advancement.grant.criterion.to.many.success": "Granted criterion '%s' of advancement %s to %s players",
  "commands.advancement.grant.criterion.to.many.failure": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it",
  "commands.advancement.revoke.one.to.one.success": "Revoked the advancement %s from %s",
  "commands.advancement.revoke.one.to.one.failure": "Couldn't revoke advancement %s from %s as they don't have it",
  "commands.advancement.revoke.one.to.many.success": "Revoked the advancement %s from %s players",
  "commands.advancement.revoke.one.to.many.failure": "Couldn't revoke advancement %s from %s players as they don't have it",
  "commands.advancement.revoke.many.to.one.success": "Revoked %s advancements from %s",
  "commands.advancement.revoke.many.to.one.failure": "Couldn't revoke %s advancements from %s as they don't have them",
  "commands.advancement.revoke.many.to.many.success": "Revoked %s advancements from %s players",
  "commands.advancement.revoke.many.to.many.failure": "Couldn't revoke %s advancements from %s players as they don't have them",
  "commands.advancement.revoke.criterion.to.one.success": "Revoked criterion '%s' of advancement %s from %s",
  "commands.advancement.revoke.criterion.to.one.failure": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it",
  "commands.advancement.revoke.criterion.to.many.success": "Revoked criterion '%s' of advancement %s from %s players",
  "commands.advancement.revoke.criterion.to.many.failure": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it",
  "commands.attribute.failed.entity": "%s is not a valid entity for this command",
  "commands.attribute.failed.no_attribute": "Entity %s has no attribute %s",
  "commands.attribute.failed.no_modifier": "Attribute %s for entity %s has no modifier %s",
  "commands.attribute.failed.modifier_already_present": "Modifier %s is already present on attribute %s for entity %s",
  "commands.attribute.value.get.success": "Value of attribute %s for entity %s is %s",
  "commands.attribute.base_value.get.success": "Base value of attribute %s for entity %s is %s",
  "commands.attribute.base_value.set.success": "Base value for attribute %s for entity %s set to %s",
  "commands.attribute.modifier.add.success": "Added modifier %s to attribute %s for entity %s",
  "commands.attribute.modifier.remove.success": "Removed modifier %s from attribute %s for entity %s",
  "commands.attribute.modifier.value.get.success": "Value of modifier %s on attribute %s for entity %s is %s",
  "commands.forceload.added.failure": "No chunks were marked for force loading",
  "commands.forceload.added.single": "Marked chunk %s in %s to be force loaded",
  "commands.forceload.added.multiple": "Marked %s chunks in %s from %s to %s to be force loaded",
  "commands.forceload.query.success": "Chunk at %s in %s is marked for force loading",
  "commands.forceload.query.failure": "Chunk at %s in %s is not marked for force loading",
  "commands.forceload.list.single": "A force loaded chunk was found in %s at: %s",
  "commands.forceload.list.multiple": "%s force loaded chunks were found in %s at: %s",
  "commands.forceload.added.none": "No force loaded chunks were found in %s",
  "commands.forceload.removed.all": "Unmarked all force loaded chunks in %s",
  "commands.forceload.removed.failure": "No chunks were removed from force loading",
  "commands.forceload.removed.single": "Unmarked chunk %s in %s for force loading",
  "commands.forceload.removed.multiple": "Unmarked %s chunks in %s from %s to %s for force loading",
  "commands.forceload.toobig": "Too many chunks in the specified area (maximum %s, specified %s)",
  "commands.clear.success.single": "Removed %s items from player %s",
  "commands.clear.success.multiple": "Removed %s items from %s players",
  "commands.clear.test.single": "Found %s matching items on player %s",
  "commands.clear.test.multiple": "Found %s matching items on %s players",
  "commands.clone.success": "Successfully cloned %s blocks",
  "commands.debug.started": "Started debug profiling",
  "commands.debug.stopped": "Stopped debug profiling after %s seconds and %s ticks (%s ticks per second)",
  "commands.debug.reportSaved": "Created debug report in %s",
  "commands.debug.reportFailed": "Failed to create debug report",
  "commands.defaultgamemode.success": "The default game mode is now %s",
  "commands.difficulty.success": "The difficulty has been set to %s",
  "commands.difficulty.query": "The difficulty is %s",
  "commands.drop.no_held_items": "Entity can't hold any items",
  "commands.drop.no_loot_table": "Entity %s has no loot table",
  "commands.drop.success.single": "Dropped %s %s",
  "commands.drop.success.single_with_table": "Dropped %s %s from loot table %s",
  "commands.drop.success.multiple": "Dropped %s items",
  "commands.drop.success.multiple_with_table": "Dropped %s items from loot table %s",
  "commands.effect.give.success.single": "Applied effect %s to %s",
  "commands.effect.give.success.multiple": "Applied effect %s to %s targets",
  "commands.effect.clear.everything.success.single": "Removed every effect from %s",
  "commands.effect.clear.everything.success.multiple": "Removed every effect from %s targets",
  "commands.effect.clear.specific.success.single": "Removed effect %s from %s",
  "commands.effect.clear.specific.success.multiple": "Removed effect %s from %s targets",
  "commands.enchant.success.single": "Applied enchantment %s to %s's item",
  "commands.enchant.success.multiple": "Applied enchantment %s to %s entities",
  "commands.experience.add.points.success.single": "Gave %s experience points to %s",
  "commands.experience.add.points.success.multiple": "Gave %s experience points to %s players",
  "commands.experience.add.levels.success.single": "Gave %s experience levels to %s",
  "commands.experience.add.levels.success.multiple": "Gave %s experience levels to %s players",
  "commands.experience.set.points.success.single": "Set %s experience points on %s",
  "commands.experience.set.points.success.multiple": "Set %s experience points on %s players",
  "commands.experience.set.levels.success.single": "Set %s experience levels on %s",
  "commands.experience.set.levels.success.multiple": "Set %s experience levels on %s players",
  "commands.experience.query.points": "%s has %s experience points",
  "commands.experience.query.levels": "%s has %s experience levels",
  "commands.fill.success": "Successfully filled %s blocks",
  "commands.function.success.single": "Executed %s commands from function '%s'",
  "commands.function.success.multiple": "Executed %s commands from %s functions",
  "commands.give.success.single": "Gave %s %s to %s",
  "commands.give.success.multiple": "Gave %s %s to %s players",
  "commands.playsound.success.single": "Played sound %s to %s",
  "commands.playsound.success.multiple": "Played sound %s to %s players",
  "commands.publish.success": "Multiplayer game is now hosted on port %s",
  "commands.list.players": "There are %s of a max of %s players online: %s",
  "commands.kill.success.single": "Killed %s",
  "commands.kill.success.multiple": "Killed %s entities",
  "commands.kick.success": "Kicked %s: %s",
  "commands.locate.success": "The nearest %s is at %s (%s blocks away)",
  "commands.locatebiome.success": "The nearest %s is at %s (%s blocks away)",
  "commands.message.display.outgoing": "You whisper to %s: %s",
  "commands.message.display.incoming": "%s whispers to you: %s",
  "commands.op.success": "Made %s a server operator",
  "commands.deop.success": "Made %s no longer a server operator",
  "commands.ban.success": "Banned %s: %s",
  "commands.pardon.success": "Unbanned %s",
  "commands.particle.success": "Displaying particle %s",
  "commands.seed.success": "Seed: %s",
  "commands.stop.stopping": "Stopping the server",
  "commands.time.query": "The time is %s",
  "commands.time.set": "Set the time to %s",
  "commands.schedule.created.function": "Scheduled function '%s' in %s ticks at gametime %s",
  "commands.schedule.created.tag": "Scheduled tag '%s' in %s ticks at gametime %s",
  "commands.schedule.cleared.success": "Removed %s schedules with id %s",
  "commands.schedule.cleared.failure": "No schedules with id %s",
  "commands.schedule.same_tick": "Can't schedule for current tick",
  "commands.gamemode.success.self": "Set own game mode to %s",
  "commands.gamemode.success.other": "Set %s's game mode to %s",
  "commands.gamerule.query": "Gamerule %s is currently set to: %s",
  "commands.gamerule.set": "Gamerule %s is now set to: %s",
  "commands.save.disabled": "Automatic saving is now disabled",
  "commands.save.enabled": "Automatic saving is now enabled",
  "commands.save.saving": "Saving the game (this may take a moment!)",
  "commands.save.success": "Saved the game",
  "commands.setidletimeout.success": "The player idle timeout is now %s minutes",
  "commands.banlist.none": "There are no bans",
  "commands.banlist.list": "There are %s bans:",
  "commands.banlist.entry": "%s was banned by %s: %s",
  "commands.bossbar.create.success": "Created custom bossbar %s",
  "commands.bossbar.remove.success": "Removed custom bossbar %s",
  "commands.bossbar.list.bars.none": "There are no custom bossbars active",
  "commands.bossbar.list.bars.some": "There are %s custom bossbars active: %s",
  "commands.bossbar.set.players.success.none": "Custom bossbar %s no longer has any players",
  "commands.bossbar.set.players.success.some": "Custom bossbar %s now has %s players: %s",
  "commands.bossbar.set.name.success": "Custom bossbar %s has been renamed",
  "commands.bossbar.set.color.success": "Custom bossbar %s has changed color",
  "commands.bossbar.set.style.success": "Custom bossbar %s has changed style",
  "commands.bossbar.set.value.success": "Custom bossbar %s has changed value to %s",
  "commands.bossbar.set.max.success": "Custom bossbar %s has changed maximum to %s",
  "commands.bossbar.set.visible.success.visible": "Custom bossbar %s is now visible",
  "commands.bossbar.set.visible.success.hidden": "Custom bossbar %s is now hidden",
  "commands.bossbar.get.value": "Custom bossbar %s has a value of %s",
  "commands.bossbar.get.max": "Custom bossbar %s has a maximum of %s",
  "commands.bossbar.get.visible.visible": "Custom bossbar %s is currently shown",
  "commands.bossbar.get.visible.hidden": "Custom bossbar %s is currently hidden",
  "commands.bossbar.get.players.none": "Custom bossbar %s has no players currently online",
  "commands.bossbar.get.players.some": "Custom bossbar %s has %s players currently online: %s",
  "commands.recipe.give.success.single": "Unlocked %s recipes for %s",
  "commands.recipe.give.success.multiple": "Unlocked %s recipes for %s players",
  "commands.recipe.take.success.single": "Took %s recipes from %s",
  "commands.recipe.take.success.multiple": "Took %s recipes from %s players",
  "commands.summon.success": "Summoned new %s",
  "commands.whitelist.enabled": "Whitelist is now turned on",
  "commands.whitelist.disabled": "Whitelist is now turned off",
  "commands.whitelist.none": "There are no whitelisted players",
  "commands.whitelist.list": "There are %s whitelisted players: %s",
  "commands.whitelist.add.success": "Added %s to the whitelist",
  "commands.whitelist.remove.success": "Removed %s from the whitelist",
  "commands.whitelist.reloaded": "Reloaded the whitelist",
  "commands.weather.set.clear": "Set the weather to clear",
  "commands.weather.set.rain": "Set the weather to rain",
  "commands.weather.set.thunder": "Set the weather to rain & thunder",
  "commands.spawnpoint.success.single": "Set spawn point to %s, %s, %s in %s for %s",
  "commands.spawnpoint.success.multiple": "Set spawn point to %s, %s, %s in %s for %s players",
  "commands.stopsound.success.source.sound": "Stopped sound '%s' on source '%s'",
  "commands.stopsound.success.source.any": "Stopped all '%s' sounds",
  "commands.stopsound.success.sourceless.sound": "Stopped sound '%s'",
  "commands.stopsound.success.sourceless.any": "Stopped all sounds",
  "commands.setworldspawn.success": "Set the world spawn point to %s, %s, %s",
  "commands.spreadplayers.success.teams": "Spread %s teams around %s, %s with an average distance of %s blocks apart",
  "commands.spreadplayers.success.entities": "Spread %s players around %s, %s with an average distance of %s blocks apart",
  "commands.setblock.success": "Changed the block at %s, %s, %s",
  "commands.banip.success": "Banned IP %s: %s",
  "commands.banip.info": "This ban affects %s players: %s",
  "commands.pardonip.success": "Unbanned IP %s",
  "commands.teleport.success.entity.single": "Teleported %s to %s",
  "commands.teleport.success.entity.multiple": "Teleported %s entities to %s",
  "commands.teleport.success.location.single": "Teleported %s to %s, %s, %s",
  "commands.teleport.success.location.multiple": "Teleported %s entities to %s, %s, %s",
  "commands.teleport.invalidPosition": "Invalid position for teleport",
  "commands.title.cleared.single": "Cleared titles for %s",
  "commands.title.cleared.multiple": "Cleared titles for %s players",
  "commands.title.reset.single": "Reset title options for %s",
  "commands.title.reset.multiple": "Reset title options for %s players",
  "commands.title.show.title.single": "Showing new title for %s",
  "commands.title.show.title.multiple": "Showing new title for %s players",
  "commands.title.show.subtitle.single": "Showing new subtitle for %s",
  "commands.title.show.subtitle.multiple": "Showing new subtitle for %s players",
  "commands.title.show.actionbar.single": "Showing new actionbar title for %s",
  "commands.title.show.actionbar.multiple": "Showing new actionbar title for %s players",
  "commands.title.times.single": "Changed title display times for %s",
  "commands.title.times.multiple": "Changed title display times for %s players",
  "commands.worldborder.set.grow": "Growing the world border to %s blocks wide over %s seconds",
  "commands.worldborder.set.shrink": "Shrinking the world border to %s blocks wide over %s seconds",
  "commands.worldborder.set.immediate": "Set the world border to %s blocks wide",
  "commands.worldborder.center.success": "Set the center of the world border to %s, %s",
  "commands.worldborder.get": "The world border is currently %s blocks wide",
  "commands.worldborder.damage.buffer.success": "Set the world border damage buffer to %s blocks",
  "commands.worldborder.damage.amount.success": "Set the world border damage to %s per block each second",
  "commands.worldborder.warning.time.success": "Set the world border warning time to %s seconds",
  "commands.worldborder.warning.distance.success": "Set the world border warning distance to %s blocks",
  "commands.replaceitem.block.success": "Replaced a slot at %s, %s, %s with %s",
  "commands.replaceitem.entity.success.single": "Replaced a slot on %s with %s",
  "commands.replaceitem.entity.success.multiple": "Replaced a slot on %s entities with %s",
  "commands.tag.add.success.single": "Added tag '%s' to %s",
  "commands.tag.add.success.multiple": "Added tag '%s' to %s entities",
  "commands.tag.remove.success.single": "Removed tag '%s' from %s",
  "commands.tag.remove.success.multiple": "Removed tag '%s' from %s entities",
  "commands.tag.list.single.empty": "%s has no tags",
  "commands.tag.list.single.success": "%s has %s tags: %s",
  "commands.tag.list.multiple.empty": "There are no tags on the %s entities",
  "commands.tag.list.multiple.success": "The %s entities have %s total tags: %s",
  "commands.team.list.members.empty": "There are no members on team %s",
  "commands.team.list.members.success": "Team %s has %s members: %s",
  "commands.team.list.teams.empty": "There are no teams",
  "commands.team.list.teams.success": "There are %s teams: %s",
  "commands.team.add.success": "Created team %s",
  "commands.team.remove.success": "Removed team %s",
  "commands.team.empty.success": "Removed %s members from team %s",
  "commands.team.option.color.success": "Updated the color for team %s to %s",
  "commands.team.option.name.success": "Updated the name of team %s",
  "commands.team.option.friendlyfire.enabled": "Enabled friendly fire for team %s",
  "commands.team.option.friendlyfire.disabled": "Disabled friendly fire for team %s",
  "commands.team.option.seeFriendlyInvisibles.enabled": "Team %s can now see invisible teammates",
  "commands.team.option.seeFriendlyInvisibles.disabled": "Team %s can no longer see invisible teammates",
  "commands.team.option.nametagVisibility.success": "Nametag visibility for team %s is now \"%s\"",
  "commands.team.option.deathMessageVisibility.success": "Death message visibility for team %s is now \"%s\"",
  "commands.team.option.collisionRule.success": "Collision rule for team %s is now \"%s\"",
  "commands.team.option.prefix.success": "Team prefix set to %s",
  "commands.team.option.suffix.success": "Team suffix set to %s",
  "commands.team.join.success.single": "Added %s to team %s",
  "commands.team.join.success.multiple": "Added %s members to team %s",
  "commands.team.leave.success.single": "Removed %s from any team",
  "commands.team.leave.success.multiple": "Removed %s members from any team",
  "commands.trigger.simple.success": "Triggered %s",
  "commands.trigger.add.success": "Triggered %s (added %s to value)",
  "commands.trigger.set.success": "Triggered %s (set value to %s)",
  "commands.scoreboard.objectives.list.empty": "There are no objectives",
  "commands.scoreboard.objectives.list.success": "There are %s objectives: %s",
  "commands.scoreboard.objectives.add.success": "Created new objective %s",
  "commands.scoreboard.objectives.remove.success": "Removed objective %s",
  "commands.scoreboard.objectives.display.cleared": "Cleared any objectives in display slot %s",
  "commands.scoreboard.objectives.display.set": "Set display slot %s to show objective %s",
  "commands.scoreboard.objectives.modify.displayname": "Changed the display name of %s to %s",
  "commands.scoreboard.objectives.modify.rendertype": "Changed the render type of objective %s",
  "commands.scoreboard.players.list.empty": "There are no tracked entities",
  "commands.scoreboard.players.list.success": "There are %s tracked entities: %s",
  "commands.scoreboard.players.list.entity.empty": "%s has no scores to show",
  "commands.scoreboard.players.list.entity.success": "%s has %s scores:",
  "commands.scoreboard.players.list.entity.entry": "%s: %s",
  "commands.scoreboard.players.set.success.single": "Set %s for %s to %s",
  "commands.scoreboard.players.set.success.multiple": "Set %s for %s entities to %s",
  "commands.scoreboard.players.add.success.single": "Added %s to %s for %s (now %s)",
  "commands.scoreboard.players.add.success.multiple": "Added %s to %s for %s entities",
  "commands.scoreboard.players.remove.success.single": "Removed %s from %s for %s (now %s)",
  "commands.scoreboard.players.remove.success.multiple": "Removed %s from %s for %s entities",
  "commands.scoreboard.players.reset.all.single": "Reset all scores for %s",
  "commands.scoreboard.players.reset.all.multiple": "Reset all scores for %s entities",
  "commands.scoreboard.players.reset.specific.single": "Reset %s for %s",
  "commands.scoreboard.players.reset.specific.multiple": "Reset %s for %s entities",
  "commands.scoreboard.players.enable.success.single": "Enabled trigger %s for %s",
  "commands.scoreboard.players.enable.success.multiple": "Enabled trigger %s for %s entities",
  "commands.scoreboard.players.operation.success.single": "Set %s for %s to %s",
  "commands.scoreboard.players.operation.success.multiple": "Updated %s for %s entities",
  "commands.scoreboard.players.get.success": "%s has %s %s",
  "commands.reload.success": "Reloading!",
  "commands.reload.failure": "Reload failed, keeping old data",
  "commands.data.entity.modified": "Modified entity data of %s",
  "commands.data.entity.query": "%s has the following entity data: %s",
  "commands.data.entity.get": "%s on %s after scale factor of %s is %s",
  "commands.data.block.modified": "Modified block data of %s, %s, %s",
  "commands.data.block.query": "%s, %s, %s has the following block data: %s",
  "commands.data.block.get": "%s on block %s, %s, %s after scale factor of %s is %s",
  "commands.data.storage.modified": "Modified storage %s",
  "commands.data.storage.query": "Storage %s has the following contents: %s",
  "commands.data.storage.get": "%s in storage %s after scale factor of %s is %s",
  "commands.datapack.list.enabled.success": "There are %s data packs enabled: %s",
  "commands.datapack.list.enabled.none": "There are no data packs enabled",
  "commands.datapack.list.available.success": "There are %s data packs available: %s",
  "commands.datapack.list.available.none": "There are no more data packs available",
  "commands.datapack.modify.enable": "Enabling data pack %s",
  "commands.datapack.modify.disable": "Disabling data pack %s",
  "commands.spectate.success.stopped": "No longer spectating an entity",
  "commands.spectate.success.started": "Now spectating %s",
  "commands.spectate.not_spectator": "%s is not in spectator mode",
  "commands.spectate.self": "Cannot spectate yourself",
  "argument.range.empty": "Expected value or range of values",
  "argument.range.ints": "Only whole numbers allowed, not decimals",
  "argument.range.swapped": "Min cannot be bigger than max",
  "permissions.requires.player": "A player is required to run this command here",
  "permissions.requires.entity": "An entity is required to run this command here",
  "argument.entity.toomany": "Only one entity is allowed, but the provided selector allows more than one",
  "argument.player.toomany": "Only one player is allowed, but the provided selector allows more than one",
  "argument.player.entities": "Only players may be affected by this command, but the provided selector includes entities",
  "argument.entity.notfound.entity": "No entity was found",
  "argument.entity.notfound.player": "No player was found",
  "argument.player.unknown": "That player does not exist",
  "arguments.nbtpath.node.invalid": "Invalid NBT path element",
  "arguments.nbtpath.nothing_found": "Found no elements matching %s",
  "arguments.operation.invalid": "Invalid operation",
  "arguments.operation.div0": "Cannot divide by zero",
  "argument.scoreHolder.empty": "No relevant score holders could be found",
  "argument.block.tag.disallowed": "Tags aren't allowed here, only actual blocks",
  "argument.block.property.unclosed": "Expected closing ] for block state properties",
  "argument.pos.unloaded": "That position is not loaded",
  "argument.pos.outofworld": "That position is out of this world!",
  "argument.rotation.incomplete": "Incomplete (expected 2 coordinates)",
  "arguments.swizzle.invalid": "Invalid swizzle, expected combination of 'x', 'y' and 'z'",
  "argument.pos2d.incomplete": "Incomplete (expected 2 coordinates)",
  "argument.pos3d.incomplete": "Incomplete (expected 3 coordinates)",
  "argument.pos.mixed": "Cannot mix world & local coordinates (everything must either use ^ or not)",
  "argument.pos.missing.double": "Expected a coordinate",
  "argument.pos.missing.int": "Expected a block position",
  "argument.item.tag.disallowed": "Tags aren't allowed here, only actual items",
  "argument.entity.invalid": "Invalid name or UUID",
  "argument.entity.selector.missing": "Missing selector type",
  "argument.entity.selector.not_allowed": "Selector not allowed",
  "argument.entity.options.unterminated": "Expected end of options",
  "argument.entity.options.distance.negative": "Distance cannot be negative",
  "argument.entity.options.level.negative": "Level shouldn't be negative",
  "argument.entity.options.limit.toosmall": "Limit must be at least 1",
  "argument.nbt.trailing": "Unexpected trailing data",
  "argument.nbt.expected.key": "Expected key",
  "argument.nbt.expected.value": "Expected value",
  "argument.id.invalid": "Invalid ID",
  "argument.time.invalid_unit": "Invalid unit",
  "argument.time.invalid_tick_count": "Tick count must be non-negative",
  "commands.banip.invalid": "Invalid IP address or unknown player",
  "commands.banip.failed": "Nothing changed. That IP is already banned",
  "commands.ban.failed": "Nothing changed. The player is already banned",
  "commands.bossbar.set.players.unchanged": "Nothing changed. Those players are already on the bossbar with nobody to add or remove",
  "commands.bossbar.set.name.unchanged": "Nothing changed. That's already the name of this bossbar",
  "commands.bossbar.set.color.unchanged": "Nothing changed. That's already the color of this bossbar",
  "commands.bossbar.set.style.unchanged": "Nothing changed. That's already the style of this bossbar",
  "commands.bossbar.set.value.unchanged": "Nothing changed. That's already the value of this bossbar",
  "commands.bossbar.set.max.unchanged": "Nothing changed. That's already the max of this bossbar",
  "commands.bossbar.set.visibility.unchanged.hidden": "Nothing changed. The bossbar is already hidden",
  "commands.bossbar.set.visibility.unchanged.visible": "Nothing changed. The bossbar is already visible",
  "commands.clone.overlap": "The source and destination areas cannot overlap",
  "commands.clone.failed": "No blocks were cloned",
  "commands.debug.notRunning": "The debug profiler hasn't started",
  "commands.debug.alreadyRunning": "The debug profiler is already started",
  "commands.deop.failed": "Nothing changed. The player is not an operator",
  "commands.effect.give.failed": "Unable to apply this effect (target is either immune to effects, or has something stronger)",
  "commands.effect.clear.everything.failed": "Target has no effects to remove",
  "commands.effect.clear.specific.failed": "Target doesn't have the requested effect",
  "commands.enchant.failed": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied",
  "commands.experience.set.points.invalid": "Cannot set experience points above the maximum points for the player's current level",
  "commands.fill.failed": "No blocks were filled",
  "commands.help.failed": "Unknown command or insufficient permissions",
  "commands.locate.failed": "Could not find that structure nearby",
  "commands.locatebiome.notFound": "Could not find a biome of type \"%s\" within reasonable distance",
  "commands.locatebiome.invalid": "There is no biome with type \"%s\"",
  "commands.op.failed": "Nothing changed. The player already is an operator",
  "commands.pardon.failed": "Nothing changed. The player isn't banned",
  "commands.pardonip.invalid": "Invalid IP address",
  "commands.pardonip.failed": "Nothing changed. That IP isn't banned",
  "commands.particle.failed": "The particle was not visible for anybody",
  "commands.playsound.failed": "The sound is too far away to be heard",
  "commands.recipe.give.failed": "No new recipes were learned",
  "commands.recipe.take.failed": "No recipes could be forgotten",
  "commands.replaceitem.block.failed": "The target block is not a container",
  "commands.replaceitem.slot.inapplicable": "The target does not have slot %s",
  "commands.replaceitem.entity.failed": "Could not put %s in slot %s",
  "commands.save.failed": "Unable to save the game (is there enough disk space?)",
  "commands.save.alreadyOff": "Saving is already turned off",
  "commands.save.alreadyOn": "Saving is already turned on",
  "commands.scoreboard.objectives.add.duplicate": "An objective already exists by that name",
  "commands.scoreboard.objectives.display.alreadyEmpty": "Nothing changed. That display slot is already empty",
  "commands.scoreboard.objectives.display.alreadySet": "Nothing changed. That display slot is already showing that objective",
  "commands.scoreboard.players.enable.failed": "Nothing changed. That trigger is already enabled",
  "commands.scoreboard.players.enable.invalid": "Enable only works on trigger-objectives",
  "commands.setblock.failed": "Could not set the block",
  "commands.summon.failed": "Unable to summon entity",
  "commands.summon.invalidPosition": "Invalid position for summon",
  "commands.tag.add.failed": "Target either already has the tag or has too many tags",
  "commands.tag.remove.failed": "Target does not have this tag",
  "commands.team.add.duplicate": "A team already exists by that name",
  "commands.team.empty.unchanged": "Nothing changed. That team is already empty",
  "commands.team.option.color.unchanged": "Nothing changed. That team already has that color",
  "commands.team.option.name.unchanged": "Nothing changed. That team already has that name",
  "commands.team.option.friendlyfire.alreadyEnabled": "Nothing changed. Friendly fire is already enabled for that team",
  "commands.team.option.friendlyfire.alreadyDisabled": "Nothing changed. Friendly fire is already disabled for that team",
  "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothing changed. That team can already see invisible teammates",
  "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nothing changed. That team already can't see invisible teammates",
  "commands.team.option.nametagVisibility.unchanged": "Nothing changed. Nametag visibility is already that value",
  "commands.team.option.deathMessageVisibility.unchanged": "Nothing changed. Death message visibility is already that value",
  "commands.team.option.collisionRule.unchanged": "Nothing changed. Collision rule is already that value",
  "commands.trigger.failed.unprimed": "You cannot trigger this objective yet",
  "commands.trigger.failed.invalid": "You can only trigger objectives that are 'trigger' type",
  "commands.whitelist.alreadyOn": "Whitelist is already turned on",
  "commands.whitelist.alreadyOff": "Whitelist is already turned off",
  "commands.whitelist.add.failed": "Player is already whitelisted",
  "commands.whitelist.remove.failed": "Player is not whitelisted",
  "commands.worldborder.center.failed": "Nothing changed. The world border is already centered there",
  "commands.worldborder.set.failed.nochange": "Nothing changed. The world border is already that size",
  "commands.worldborder.set.failed.small.": "World border cannot be smaller than 1 block wide",
  "commands.worldborder.set.failed.big.": "World border cannot be bigger than 60,000,000 blocks wide",
  "commands.worldborder.warning.time.failed": "Nothing changed. The world border warning is already that amount of time",
  "commands.worldborder.warning.distance.failed": "Nothing changed. The world border warning is already that distance",
  "commands.worldborder.damage.buffer.failed": "Nothing changed. The world border damage buffer is already that distance",
  "commands.worldborder.damage.amount.failed": "Nothing changed. The world border damage is already that amount",
  "commands.data.block.invalid": "The target block is not a block entity",
  "commands.data.merge.failed": "Nothing changed. The specified properties already have these values",
  "commands.data.modify.expected_list": "Expected list, got: %s",
  "commands.data.modify.expected_object": "Expected object, got: %s",
  "commands.data.modify.invalid_index": "Invalid list index: %s",
  "commands.data.get.multiple": "This argument accepts a single NBT value",
  "commands.data.entity.invalid": "Unable to modify player data",
  "commands.teammsg.failed.noteam": "You must be on a team to message your team",
  "argument.color.invalid": "Unknown color '%s'",
  "argument.dimension.invalid": "Unknown dimension '%s'",
  "argument.component.invalid": "Invalid chat component: %s",
  "argument.anchor.invalid": "Invalid entity anchor position %s",
  "enchantment.unknown": "Unknown enchantment: %s",
  "lectern.take_book": "Take Book",
  "effect.effectNotFound": "Unknown effect: %s",
  "arguments.objective.notFound": "Unknown scoreboard objective '%s'",
  "arguments.objective.readonly": "Scoreboard objective '%s' is read-only",
  "commands.scoreboard.objectives.add.longName": "Objective names cannot be longer than %s characters",
  "argument.criteria.invalid": "Unknown criterion '%s'",
  "particle.notFound": "Unknown particle: %s",
  "argument.id.unknown": "Unknown ID: %s",
  "advancement.advancementNotFound": "Unknown advancement: %s",
  "recipe.notFound": "Unknown recipe: %s",
  "entity.notFound": "Unknown entity: %s",
  "predicate.unknown": "Unknown predicate: %s",
  "argument.scoreboardDisplaySlot.invalid": "Unknown display slot '%s'",
  "slot.unknown": "Unknown slot '%s'",
  "team.notFound": "Unknown team '%s'",
  "arguments.block.tag.unknown": "Unknown block tag '%s'",
  "argument.block.id.invalid": "Unknown block type '%s'",
  "argument.block.property.unknown": "Block %s does not have property '%s'",
  "argument.block.property.duplicate": "Property '%s' can only be set once for block %s",
  "argument.block.property.invalid": "Block %s does not accept '%s' for %s property",
  "argument.block.property.novalue": "Expected value for property '%s' on block %s",
  "arguments.function.tag.unknown": "Unknown function tag '%s'",
  "arguments.function.unknown": "Unknown function %s",
  "arguments.item.overstacked": "%s can only stack up to %s",
  "argument.item.id.invalid": "Unknown item '%s'",
  "arguments.item.tag.unknown": "Unknown item tag '%s'",
  "argument.entity.selector.unknown": "Unknown selector type '%s'",
  "argument.entity.options.valueless": "Expected value for option '%s'",
  "argument.entity.options.unknown": "Unknown option '%s'",
  "argument.entity.options.inapplicable": "Option '%s' isn't applicable here",
  "argument.entity.options.sort.irreversible": "Invalid or unknown sort type '%s'",
  "argument.entity.options.mode.invalid": "Invalid or unknown game mode '%s'",
  "argument.entity.options.type.invalid": "Invalid or unknown entity type '%s'",
  "argument.nbt.list.mixed": "Can't insert %s into list of %s",
  "argument.nbt.array.mixed": "Can't insert %s into %s",
  "argument.nbt.array.invalid": "Invalid array type '%s'",
  "commands.bossbar.create.failed": "A bossbar already exists with the ID '%s'",
  "commands.bossbar.unknown": "No bossbar exists with the ID '%s'",
  "clear.failed.single": "No items were found on player %s",
  "clear.failed.multiple": "No items were found on %s players",
  "commands.clone.toobig": "Too many blocks in the specified area (maximum %s, specified %s)",
  "commands.datapack.unknown": "Unknown data pack '%s'",
  "commands.datapack.enable.failed": "Pack '%s' is already enabled!",
  "commands.datapack.disable.failed": "Pack '%s' is not enabled!",
  "commands.difficulty.failure": "The difficulty did not change; it is already set to %s",
  "commands.enchant.failed.entity": "%s is not a valid entity for this command",
  "commands.enchant.failed.itemless": "%s is not holding any item",
  "commands.enchant.failed.incompatible": "%s cannot support that enchantment",
  "commands.enchant.failed.level": "%s is higher than the maximum level of %s supported by that enchantment",
  "commands.execute.blocks.toobig": "Too many blocks in the specified area (maximum %s, specified %s)",
  "commands.execute.conditional.pass": "Test passed",
  "commands.execute.conditional.pass_count": "Test passed, count: %s",
  "commands.execute.conditional.fail": "Test failed",
  "commands.execute.conditional.fail_count": "Test failed, count: %s",
  "commands.fill.toobig": "Too many blocks in the specified area (maximum %s, specified %s)",
  "commands.publish.alreadyPublished": "Multiplayer game is already hosted on port %s",
  "commands.scoreboard.players.get.null": "Can't get value of %s for %s; none is set",
  "commands.spreadplayers.failed.teams": "Could not spread %s teams around %s, %s (too many entities for space - try using spread of at most %s)",
  "commands.spreadplayers.failed.entities": "Could not spread %s entities around %s, %s (too many entities for space - try using spread of at most %s)",
  "commands.team.add.longName": "Team names cannot be longer than %s characters",
  "commands.data.get.invalid": "Can't get %s; only numeric tags are allowed",
  "commands.data.get.unknown": "Can't get %s; tag doesn't exist",
  "argument.double.low": "Double must not be less than %s, found %s",
  "argument.double.big": "Double must not be more than %s, found %s",
  "argument.float.low": "Float must not be less than %s, found %s",
  "argument.float.big": "Float must not be more than %s, found %s",
  "argument.integer.low": "Integer must not be less than %s, found %s",
  "argument.integer.big": "Integer must not be more than %s, found %s",
  "argument.long.low": "Long must not be less than %s, found %s",
  "argument.long.big": "Long must not be more than %s, found %s",
  "argument.literal.incorrect": "Expected literal %s",
  "parsing.quote.expected.start": "Expected quote to start a string",
  "parsing.quote.expected.end": "Unclosed quoted string",
  "parsing.quote.escape": "Invalid escape sequence '\\%s' in quoted string",
  "parsing.bool.invalid": "Invalid boolean, expected 'true' or 'false' but found '%s'",
  "parsing.int.invalid": "Invalid integer '%s'",
  "parsing.int.expected": "Expected integer",
  "parsing.long.invalid": "Invalid long '%s'",
  "parsing.long.expected": "Expected long",
  "command.exception": "Could not parse command: %s",
  "parsing.double.invalid": "Invalid double '%s'",
  "parsing.double.expected": "Expected double",
  "parsing.float.invalid": "Invalid float '%s'",
  "parsing.float.expected": "Expected float",
  "parsing.bool.expected": "Expected boolean",
  "parsing.expected": "Expected '%s'",
  "command.unknown.command": "Unknown or incomplete command, see below for error",
  "command.unknown.argument": "Incorrect argument for command",
  "command.expected.separator": "Expected whitespace to end one argument, but found trailing data",
  "biome.minecraft.beach": "Beach",
  "biome.minecraft.birch_forest": "Birch Forest",
  "biome.minecraft.birch_forest_hills": "Birch Forest Hills",
  "biome.minecraft.snowy_beach": "Snowy Beach",
  "biome.minecraft.cold_ocean": "Cold Ocean",
  "biome.minecraft.deep_cold_ocean": "Deep Cold Ocean",
  "biome.minecraft.deep_frozen_ocean": "Deep Frozen Ocean",
  "biome.minecraft.deep_lukewarm_ocean": "Deep Lukewarm Ocean",
  "biome.minecraft.deep_ocean": "Deep Ocean",
  "biome.minecraft.deep_warm_ocean": "Deep Warm Ocean",
  "biome.minecraft.desert": "Desert",
  "biome.minecraft.desert_hills": "Desert Hills",
  "biome.minecraft.mountains": "Mountains",
  "biome.minecraft.wooded_mountains": "Wooded Mountains",
  "biome.minecraft.forest": "Forest",
  "biome.minecraft.wooded_hills": "Wooded Hills",
  "biome.minecraft.frozen_ocean": "Frozen Ocean",
  "biome.minecraft.frozen_river": "Frozen River",
  "biome.minecraft.nether_wastes": "Nether Wastes",
  "biome.minecraft.snowy_tundra": "Snowy Tundra",
  "biome.minecraft.snowy_mountains": "Snowy Mountains",
  "biome.minecraft.jungle_edge": "Jungle Edge",
  "biome.minecraft.jungle_hills": "Jungle Hills",
  "biome.minecraft.jungle": "Jungle",
  "biome.minecraft.lukewarm_ocean": "Lukewarm Ocean",
  "biome.minecraft.badlands_plateau": "Badlands Plateau",
  "biome.minecraft.badlands": "Badlands",
  "biome.minecraft.wooded_badlands_plateau": "Wooded Badlands Plateau",
  "biome.minecraft.mushroom_fields": "Mushroom Fields",
  "biome.minecraft.mushroom_field_shore": "Mushroom Field Shore",
  "biome.minecraft.tall_birch_hills": "Tall Birch Hills",
  "biome.minecraft.tall_birch_forest": "Tall Birch Forest",
  "biome.minecraft.desert_lakes": "Desert Lakes",
  "biome.minecraft.gravelly_mountains": "Gravelly Mountains",
  "biome.minecraft.modified_gravelly_mountains": "Gravelly Mountains+",
  "biome.minecraft.flower_forest": "Flower Forest",
  "biome.minecraft.ice_spikes": "Ice Spikes",
  "biome.minecraft.modified_jungle_edge": "Modified Jungle Edge",
  "biome.minecraft.modified_jungle": "Modified Jungle",
  "biome.minecraft.modified_badlands_plateau": "Modified Badlands Plateau",
  "biome.minecraft.eroded_badlands": "Eroded Badlands",
  "biome.minecraft.modified_wooded_badlands_plateau": "Modified Wooded Badlands Plateau",
  "biome.minecraft.sunflower_plains": "Sunflower Plains",
  "biome.minecraft.giant_spruce_taiga_hills": "Giant Spruce Taiga Hills",
  "biome.minecraft.giant_spruce_taiga": "Giant Spruce Taiga",
  "biome.minecraft.dark_forest_hills": "Dark Forest Hills",
  "biome.minecraft.shattered_savanna": "Shattered Savanna",
  "biome.minecraft.shattered_savanna_plateau": "Shattered Savanna Plateau",
  "biome.minecraft.swamp_hills": "Swamp Hills",
  "biome.minecraft.snowy_taiga_mountains": "Snowy Taiga Mountains",
  "biome.minecraft.taiga_mountains": "Taiga Mountains",
  "biome.minecraft.ocean": "Ocean",
  "biome.minecraft.plains": "Plains",
  "biome.minecraft.giant_tree_taiga_hills": "Giant Tree Taiga Hills",
  "biome.minecraft.giant_tree_taiga": "Giant Tree Taiga",
  "biome.minecraft.river": "River",
  "biome.minecraft.dark_forest": "Dark Forest",
  "biome.minecraft.savanna_plateau": "Savanna Plateau",
  "biome.minecraft.savanna": "Savanna",
  "biome.minecraft.end_barrens": "End Barrens",
  "biome.minecraft.end_highlands": "End Highlands",
  "biome.minecraft.small_end_islands": "Small End Islands",
  "biome.minecraft.end_midlands": "End Midlands",
  "biome.minecraft.the_end": "The End",
  "biome.minecraft.mountain_edge": "Mountain Edge",
  "biome.minecraft.stone_shore": "Stone Shore",
  "biome.minecraft.swamp": "Swamp",
  "biome.minecraft.snowy_taiga": "Snowy Taiga",
  "biome.minecraft.snowy_taiga_hills": "Snowy Taiga Hills",
  "biome.minecraft.taiga_hills": "Taiga Hills",
  "biome.minecraft.taiga": "Taiga",
  "biome.minecraft.the_void": "The Void",
  "biome.minecraft.warm_ocean": "Warm Ocean",
  "biome.minecraft.bamboo_jungle": "Bamboo Jungle",
  "biome.minecraft.bamboo_jungle_hills": "Bamboo Jungle Hills",
  "biome.minecraft.soul_sand_valley": "Soul Sand Valley",
  "biome.minecraft.warped_forest": "Warped Forest",
  "biome.minecraft.crimson_forest": "Crimson Forest",
  "biome.minecraft.basalt_deltas": "Basalt Deltas",
  "realms.missing.module.error.text": "Realms could not be opened right now, please try again later",
  "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots",
  "color.minecraft.white": "White",
  "color.minecraft.orange": "Orange",
  "color.minecraft.magenta": "Magenta",
  "color.minecraft.light_blue": "Light Blue",
  "color.minecraft.yellow": "Yellow",
  "color.minecraft.lime": "Lime",
  "color.minecraft.pink": "Pink",
  "color.minecraft.gray": "Gray",
  "color.minecraft.light_gray": "Light Gray",
  "color.minecraft.cyan": "Cyan",
  "color.minecraft.purple": "Purple",
  "color.minecraft.blue": "Blue",
  "color.minecraft.brown": "Brown",
  "color.minecraft.green": "Green",
  "color.minecraft.red": "Red",
  "color.minecraft.black": "Black",
  "title.singleplayer": "Singleplayer",
  "title.multiplayer.realms": "Multiplayer (Realms)",
  "title.multiplayer.lan": "Multiplayer (LAN)",
  "title.multiplayer.other": "Multiplayer (3rd-party Server)",
  "gamerule.announceAdvancements": "Announce advancements",
  "gamerule.commandBlockOutput": "Broadcast command block output",
  "gamerule.disableElytraMovementCheck": "Disable elytra movement check",
  "gamerule.disableRaids": "Disable raids",
  "gamerule.doDaylightCycle": "Advance in-game time",
  "gamerule.doEntityDrops": "Drop entity equipment",
  "gamerule.doEntityDrops.description": "Controls drops from minecarts (including inventories), item frames, boats, etc.",
  "gamerule.doFireTick": "Update fire",
  "gamerule.doImmediateRespawn": "Respawn immediately",
  "gamerule.doInsomnia": "Spawn phantoms",
  "gamerule.doLimitedCrafting": "Require recipe for crafting",
  "gamerule.doLimitedCrafting.description": "If enabled, players will be able to craft only unlocked recipes",
  "gamerule.doMobLoot": "Drop mob loot",
  "gamerule.doMobLoot.description": "Controls resource drops from mobs, including experience orbs",
  "gamerule.doMobSpawning": "Spawn mobs",
  "gamerule.doMobSpawning.description": "Some entities might have separate rules",
  "gamerule.doPatrolSpawning": "Spawn pillager patrols",
  "gamerule.doTileDrops": "Drop blocks",
  "gamerule.doTileDrops.description": "Controls resource drops from blocks, including experience orbs",
  "gamerule.doTraderSpawning": "Spawn wandering traders",
  "gamerule.doWeatherCycle": "Update weather",
  "gamerule.drowningDamage": "Deal drowning damage",
  "gamerule.fallDamage": "Deal fall damage",
  "gamerule.fireDamage": "Deal fire damage",
  "gamerule.forgiveDeadPlayers": "Forgive dead players",
  "gamerule.forgiveDeadPlayers.description": "Angered neutral mobs stop being angry when the targeted player dies nearby.",
  "gamerule.keepInventory": "Keep inventory after death",
  "gamerule.logAdminCommands": "Broadcast admin commands",
  "gamerule.maxCommandChainLength": "Command chain size limit",
  "gamerule.maxCommandChainLength.description": "Applies to command block chains and functions",
  "gamerule.maxEntityCramming": "Entity cramming threshold",
  "gamerule.mobGriefing": "Allow destructive mob actions",
  "gamerule.naturalRegeneration": "Regenerate health",
  "gamerule.randomTickSpeed": "Random tick speed rate",
  "gamerule.reducedDebugInfo": "Reduce debug info",
  "gamerule.reducedDebugInfo.description": "Limits contents of debug screen",
  "gamerule.sendCommandFeedback": "Send command feedback",
  "gamerule.showDeathMessages": "Show death messages",
  "gamerule.spawnRadius": "Respawn location radius",
  "gamerule.spectatorsGenerateChunks": "Allow spectators to generate terrain",
  "gamerule.universalAnger": "Universal anger",
  "gamerule.universalAnger.description": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled.",
  "gamerule.category.chat": "Chat",
  "gamerule.category.spawning": "Spawning",
  "gamerule.category.updates": "World updates",
  "gamerule.category.drops": "Drops",
  "gamerule.category.mobs": "Mobs",
  "gamerule.category.player": "Player",
  "gamerule.category.misc": "Miscellaneous",
  "pack.source.builtin": "built-in",
  "pack.source.world": "world",
  "pack.source.local": "local",
  "pack.source.server": "server"
}