aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/OrbisMedia/strings.h
blob: 07e0ebcae575cab59ef270866717da13c18d86c1 (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
#pragma once
#define IDS_ACHIEVEMENTS 0
#define IDS_ACTION_BAN_LEVEL_DESCRIPTION 1
#define IDS_ACTION_BAN_LEVEL_TITLE 2
#define IDS_ALLOWFRIENDSOFFRIENDS 3
#define IDS_ANY_WOOL 4
#define IDS_AUDIO 5
#define IDS_AUTOSAVE_COUNTDOWN 6
#define IDS_AWARD_GAMERPIC1 7
#define IDS_AWARD_GAMERPIC2 8
#define IDS_AWARD_TITLE 9
#define IDS_BACK 10
#define IDS_BACK_BUTTON 11
#define IDS_BANNED_LEVEL_TITLE 12
#define IDS_BLAZE 13
#define IDS_BONUS_CHEST 14
#define IDS_BOSS_ENDERDRAGON_HEALTH 15
#define IDS_BREWING_STAND 16
#define IDS_BUTTON_REMOVE_FROM_BAN_LIST 17
#define IDS_CAN_ATTACK_ANIMALS 18
#define IDS_CAN_ATTACK_PLAYERS 19
#define IDS_CAN_BUILD_AND_MINE 20
#define IDS_CAN_DISABLE_EXHAUSTION 21
#define IDS_CAN_FLY 22
#define IDS_CAN_INVISIBLE 23
#define IDS_CAN_OPEN_CONTAINERS 24
#define IDS_CAN_USE_DOORS_AND_SWITCHES 25
#define IDS_CANCEL 26
#define IDS_CANT_PLACE_NEAR_SPAWN_TEXT 27
#define IDS_CANT_PLACE_NEAR_SPAWN_TITLE 28
#define IDS_CANT_SHEAR_MOOSHROOM 29
#define IDS_CANT_SPAWN_IN_PEACEFUL 30
#define IDS_CANTJOIN_TITLE 31
#define IDS_CARROTS 32
#define IDS_CAVE_SPIDER 33
#define IDS_CHANGE_SKIN 34
#define IDS_CHAT_RESTRICTION_UGC 35
#define IDS_CHECKBOX_ANIMATED_CHARACTER 36
#define IDS_CHECKBOX_CUSTOM_SKIN_ANIM 37
#define IDS_CHECKBOX_DEATH_MESSAGES 38
#define IDS_CHECKBOX_DISPLAY_HAND 39
#define IDS_CHECKBOX_DISPLAY_HUD 40
#define IDS_CHECKBOX_DISPLAY_SPLITSCREENGAMERTAGS 41
#define IDS_CHECKBOX_RENDER_BEDROCKFOG 42
#define IDS_CHECKBOX_RENDER_CLOUDS 43
#define IDS_CHECKBOX_VERTICAL_SPLIT_SCREEN 44
#define IDS_CHEST 45
#define IDS_CHEST_LARGE 46
#define IDS_CHICKEN 47
#define IDS_COMMAND_TELEPORT_ME 48
#define IDS_COMMAND_TELEPORT_SUCCESS 49
#define IDS_COMMAND_TELEPORT_TO_ME 50
#define IDS_CONFIRM_CANCEL 51
#define IDS_CONFIRM_DECLINE_SAVE_GAME 52
#define IDS_CONFIRM_DISABLE_AUTOSAVE 53
#define IDS_CONFIRM_ENABLE_AUTOSAVE 54
#define IDS_CONFIRM_EXIT_GAME 55
#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT 56
#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT_SAVE 57
#define IDS_CONFIRM_EXIT_GAME_PROGRESS_LOST 58
#define IDS_CONFIRM_LEAVE_VIA_INVITE 59
#define IDS_CONFIRM_OK 60
#define IDS_CONFIRM_SAVE_GAME 61
#define IDS_CONFIRM_START_CREATIVE 62
#define IDS_CONFIRM_START_HOST_PRIVILEGES 63
#define IDS_CONFIRM_START_SAVEDINCREATIVE 64
#define IDS_CONFIRM_START_SAVEDINCREATIVE_CONTINUE 65
#define IDS_CONNECTION_FAILED 66
#define IDS_CONNECTION_FAILED_NO_SD_SPLITSCREEN 67
#define IDS_CONNECTION_LOST 68
#define IDS_CONNECTION_LOST_LIVE 69
#define IDS_CONNECTION_LOST_LIVE_NO_EXIT 70
#define IDS_CONNECTION_LOST_SERVER 71
#define IDS_CONTENT_RESTRICTION 72
#define IDS_CONTENT_RESTRICTION_MULTIPLAYER 73
#define IDS_CONTENT_RESTRICTION_PATCH_AVAILABLE 74
#define IDS_CONTROL 75
#define IDS_CONTROLER_DISCONNECT_TEXT 76
#define IDS_CONTROLER_DISCONNECT_TITLE 77
#define IDS_CONTROLLER_A 78
#define IDS_CONTROLLER_B 79
#define IDS_CONTROLLER_BACK 80
#define IDS_CONTROLLER_DPAD_D 81
#define IDS_CONTROLLER_DPAD_L 82
#define IDS_CONTROLLER_DPAD_R 83
#define IDS_CONTROLLER_DPAD_U 84
#define IDS_CONTROLLER_LEFT_BUMPER 85
#define IDS_CONTROLLER_LEFT_STICK 86
#define IDS_CONTROLLER_LEFT_THUMBSTICK 87
#define IDS_CONTROLLER_LEFT_TRIGGER 88
#define IDS_CONTROLLER_RIGHT_BUMPER 89
#define IDS_CONTROLLER_RIGHT_STICK 90
#define IDS_CONTROLLER_RIGHT_THUMBSTICK 91
#define IDS_CONTROLLER_RIGHT_TRIGGER 92
#define IDS_CONTROLLER_START 93
#define IDS_CONTROLLER_X 94
#define IDS_CONTROLLER_Y 95
#define IDS_CONTROLS 96
#define IDS_CONTROLS_ACTION 97
#define IDS_CONTROLS_CRAFTING 98
#define IDS_CONTROLS_DPAD 99
#define IDS_CONTROLS_DROP 100
#define IDS_CONTROLS_HELDITEM 101
#define IDS_CONTROLS_INVENTORY 102
#define IDS_CONTROLS_JUMP 103
#define IDS_CONTROLS_JUMPFLY 104
#define IDS_CONTROLS_LAYOUT 105
#define IDS_CONTROLS_LOOK 106
#define IDS_CONTROLS_MOVE 107
#define IDS_CONTROLS_PAUSE 108
#define IDS_CONTROLS_PLAYERS 109
#define IDS_CONTROLS_SCHEME0 110
#define IDS_CONTROLS_SCHEME1 111
#define IDS_CONTROLS_SCHEME2 112
#define IDS_CONTROLS_SNEAK 113
#define IDS_CONTROLS_SNEAKFLY 114
#define IDS_CONTROLS_THIRDPERSON 115
#define IDS_CONTROLS_USE 116
#define IDS_COPYSAVE 117
#define IDS_COPYSAVE_FAILED_LOCAL 118
#define IDS_COPYSAVE_FAILED_QUOTA 119
#define IDS_COPYSAVE_FAILED_TITLE 120
#define IDS_CORRUPT_DLC 121
#define IDS_CORRUPT_DLC_MULTIPLE 122
#define IDS_CORRUPT_DLC_TITLE 123
#define IDS_CORRUPT_FILE 124
#define IDS_CORRUPT_OPTIONS 125
#define IDS_CORRUPT_OR_DAMAGED_SAVE_TEXT 126
#define IDS_CORRUPT_OR_DAMAGED_SAVE_TITLE 127
#define IDS_CORRUPT_SAVECACHE 128
#define IDS_CORRUPTSAVE_TEXT 129
#define IDS_CORRUPTSAVE_TITLE 130
#define IDS_COW 131
#define IDS_CREATE_NEW_WORLD 132
#define IDS_CREATE_NEW_WORLD_RANDOM_SEED 133
#define IDS_CREATE_NEW_WORLD_SEED 134
#define IDS_CREATE_NEW_WORLD_SEEDTEXT 135
#define IDS_CREATEANEWSAVE 136
#define IDS_CREATED_IN_CREATIVE 137
#define IDS_CREATED_IN_SURVIVAL 138
#define IDS_CREATIVE 139
#define IDS_CREDITS 140
#define IDS_CREDITS_ADDITIONALSTE 141
#define IDS_CREDITS_ART 142
#define IDS_CREDITS_ARTDEVELOPER 143
#define IDS_CREDITS_ASIALOC 144
#define IDS_CREDITS_BIZDEV 145
#define IDS_CREDITS_BULLYCOORD 146
#define IDS_CREDITS_CEO 147
#define IDS_CREDITS_CHIEFARCHITECT 148
#define IDS_CREDITS_CODENINJA 149
#define IDS_CREDITS_COMMUNITYMANAGER 150
#define IDS_CREDITS_CONCEPTART 151
#define IDS_CREDITS_CRUNCHER 152
#define IDS_CREDITS_CUSTOMERSUPPORT 153
#define IDS_CREDITS_DESIGNTEAM 154
#define IDS_CREDITS_DESPROG 155
#define IDS_CREDITS_DEVELOPER 156
#define IDS_CREDITS_DEVELOPMENTTEAM 157
#define IDS_CREDITS_DOF 158
#define IDS_CREDITS_EUROPELOC 159
#define IDS_CREDITS_EXECPRODUCER 160
#define IDS_CREDITS_EXPLODANIM 161
#define IDS_CREDITS_GAMECRAFTER 162
#define IDS_CREDITS_JON_KAGSTROM 163
#define IDS_CREDITS_LEADPC 164
#define IDS_CREDITS_LEADPRODUCER 165
#define IDS_CREDITS_LEADTESTER 166
#define IDS_CREDITS_MARKETING 167
#define IDS_CREDITS_MGSCENTRAL 168
#define IDS_CREDITS_MILESTONEACCEPT 169
#define IDS_CREDITS_MUSICANDSOUNDS 170
#define IDS_CREDITS_OFFICEDJ 171
#define IDS_CREDITS_ORIGINALDESIGN 172
#define IDS_CREDITS_PMPROD 173
#define IDS_CREDITS_PORTFOLIODIRECTOR 174
#define IDS_CREDITS_PRODUCER 175
#define IDS_CREDITS_PRODUCTMANAGER 176
#define IDS_CREDITS_PROGRAMMING 177
#define IDS_CREDITS_PROJECT 178
#define IDS_CREDITS_QA 179
#define IDS_CREDITS_REDMONDLOC 180
#define IDS_CREDITS_RELEASEMANAGEMENT 181
#define IDS_CREDITS_RESTOFMOJANG 182
#define IDS_CREDITS_RISE_LUGO 183
#define IDS_CREDITS_SDET 184
#define IDS_CREDITS_SPECIALTHANKS 185
#define IDS_CREDITS_SRTESTLEAD 186
#define IDS_CREDITS_TESTASSOCIATES 187
#define IDS_CREDITS_TESTLEAD 188
#define IDS_CREDITS_TESTMANAGER 189
#define IDS_CREDITS_TOBIAS_MOLLSTAM 190
#define IDS_CREDITS_USERRESEARCH 191
#define IDS_CREDITS_WCW 192
#define IDS_CREDITS_XBLADIRECTOR 193
#define IDS_CREEPER 194
#define IDS_CURRENT_LAYOUT 195
#define IDS_DEATH_ARROW 196
#define IDS_DEATH_CACTUS 197
#define IDS_DEATH_DRAGON_BREATH 198
#define IDS_DEATH_DROWN 199
#define IDS_DEATH_EXPLOSION 200
#define IDS_DEATH_FALL 201
#define IDS_DEATH_FALLING_ANVIL 202
#define IDS_DEATH_FALLING_TILE 203
#define IDS_DEATH_FIREBALL 204
#define IDS_DEATH_GENERIC 205
#define IDS_DEATH_INDIRECT_MAGIC 206
#define IDS_DEATH_INFIRE 207
#define IDS_DEATH_INWALL 208
#define IDS_DEATH_LAVA 209
#define IDS_DEATH_MAGIC 210
#define IDS_DEATH_MOB 211
#define IDS_DEATH_ONFIRE 212
#define IDS_DEATH_OUTOFWORLD 213
#define IDS_DEATH_PLAYER 214
#define IDS_DEATH_STARVE 215
#define IDS_DEATH_THORNS 216
#define IDS_DEATH_THROWN 217
#define IDS_DEBUG_SETTINGS 218
#define IDS_DEFAULT_SAVENAME 219
#define IDS_DEFAULT_SKINS 220
#define IDS_DEFAULT_TEXTUREPACK 221
#define IDS_DEFAULT_WORLD_NAME 222
#define IDS_DEFAULTS_TEXT 223
#define IDS_DEFAULTS_TITLE 224
#define IDS_DESC_ANVIL 225
#define IDS_DESC_APPLE 226
#define IDS_DESC_ARROW 227
#define IDS_DESC_BED 228
#define IDS_DESC_BEDROCK 229
#define IDS_DESC_BEEF_COOKED 230
#define IDS_DESC_BEEF_RAW 231
#define IDS_DESC_BLAZE 232
#define IDS_DESC_BLAZE_POWDER 233
#define IDS_DESC_BLAZE_ROD 234
#define IDS_DESC_BLOCK 235
#define IDS_DESC_BLOCK_DIAMOND 236
#define IDS_DESC_BLOCK_GOLD 237
#define IDS_DESC_BLOCK_IRON 238
#define IDS_DESC_BLOCK_LAPIS 239
#define IDS_DESC_BOAT 240
#define IDS_DESC_BONE 241
#define IDS_DESC_BOOK 242
#define IDS_DESC_BOOKSHELF 243
#define IDS_DESC_BOOTS 244
#define IDS_DESC_BOOTS_CHAIN 245
#define IDS_DESC_BOOTS_DIAMOND 246
#define IDS_DESC_BOOTS_GOLD 247
#define IDS_DESC_BOOTS_IRON 248
#define IDS_DESC_BOOTS_LEATHER 249
#define IDS_DESC_BOW 250
#define IDS_DESC_BOWL 251
#define IDS_DESC_BREAD 252
#define IDS_DESC_BREWING_STAND 253
#define IDS_DESC_BRICK 254
#define IDS_DESC_BUCKET 255
#define IDS_DESC_BUCKET_LAVA 256
#define IDS_DESC_BUCKET_MILK 257
#define IDS_DESC_BUCKET_WATER 258
#define IDS_DESC_BUTTON 259
#define IDS_DESC_CACTUS 260
#define IDS_DESC_CAKE 261
#define IDS_DESC_CARPET 262
#define IDS_DESC_CARROT_GOLDEN 263
#define IDS_DESC_CARROT_ON_A_STICK 264
#define IDS_DESC_CARROTS 265
#define IDS_DESC_CAULDRON 266
#define IDS_DESC_CAVE_SPIDER 267
#define IDS_DESC_CHEST 268
#define IDS_DESC_CHESTPLATE 269
#define IDS_DESC_CHESTPLATE_CHAIN 270
#define IDS_DESC_CHESTPLATE_DIAMOND 271
#define IDS_DESC_CHESTPLATE_GOLD 272
#define IDS_DESC_CHESTPLATE_IRON 273
#define IDS_DESC_CHESTPLATE_LEATHER 274
#define IDS_DESC_CHICKEN 275
#define IDS_DESC_CHICKEN_COOKED 276
#define IDS_DESC_CHICKEN_RAW 277
#define IDS_DESC_CLAY 278
#define IDS_DESC_CLAY_TILE 279
#define IDS_DESC_CLOCK 280
#define IDS_DESC_COAL 281
#define IDS_DESC_COBBLESTONE_WALL 282
#define IDS_DESC_COCOA 283
#define IDS_DESC_COMPASS 284
#define IDS_DESC_COOKIE 285
#define IDS_DESC_COW 286
#define IDS_DESC_CRAFTINGTABLE 287
#define IDS_DESC_CREEPER 288
#define IDS_DESC_CROPS 289
#define IDS_DESC_DEAD_BUSH 290
#define IDS_DESC_DETECTORRAIL 291
#define IDS_DESC_DIAMONDS 292
#define IDS_DESC_DIRT 293
#define IDS_DESC_DISPENSER 294
#define IDS_DESC_DOOR_IRON 295
#define IDS_DESC_DOOR_WOOD 296
#define IDS_DESC_DRAGONEGG 297
#define IDS_DESC_DYE_BLACK 298
#define IDS_DESC_DYE_BLUE 299
#define IDS_DESC_DYE_BROWN 300
#define IDS_DESC_DYE_CYAN 301
#define IDS_DESC_DYE_GRAY 302
#define IDS_DESC_DYE_GREEN 303
#define IDS_DESC_DYE_LIGHTBLUE 304
#define IDS_DESC_DYE_LIGHTGRAY 305
#define IDS_DESC_DYE_LIME 306
#define IDS_DESC_DYE_MAGENTA 307
#define IDS_DESC_DYE_ORANGE 308
#define IDS_DESC_DYE_PINK 309
#define IDS_DESC_DYE_PURPLE 310
#define IDS_DESC_DYE_RED 311
#define IDS_DESC_DYE_SILVER 312
#define IDS_DESC_DYE_WHITE 313
#define IDS_DESC_DYE_YELLOW 314
#define IDS_DESC_EGG 315
#define IDS_DESC_EMERALD 316
#define IDS_DESC_EMERALDBLOCK 317
#define IDS_DESC_EMERALDORE 318
#define IDS_DESC_ENCHANTED_BOOK 319
#define IDS_DESC_ENCHANTED_GOLDENAPPLE 320
#define IDS_DESC_ENCHANTMENTTABLE 321
#define IDS_DESC_END_PORTAL 322
#define IDS_DESC_ENDER_PEARL 323
#define IDS_DESC_ENDERCHEST 324
#define IDS_DESC_ENDERDRAGON 325
#define IDS_DESC_ENDERMAN 326
#define IDS_DESC_ENDPORTALFRAME 327
#define IDS_DESC_EXP_BOTTLE 328
#define IDS_DESC_EYE_OF_ENDER 329
#define IDS_DESC_FARMLAND 330
#define IDS_DESC_FEATHER 331
#define IDS_DESC_FENCE 332
#define IDS_DESC_FENCE_GATE 333
#define IDS_DESC_FERMENTED_SPIDER_EYE 334
#define IDS_DESC_FIREBALL 335
#define IDS_DESC_FISH_COOKED 336
#define IDS_DESC_FISH_RAW 337
#define IDS_DESC_FISHINGROD 338
#define IDS_DESC_FLINT 339
#define IDS_DESC_FLINTANDSTEEL 340
#define IDS_DESC_FLOWER 341
#define IDS_DESC_FLOWERPOT 342
#define IDS_DESC_FURNACE 343
#define IDS_DESC_GHAST 344
#define IDS_DESC_GHAST_TEAR 345
#define IDS_DESC_GLASS 346
#define IDS_DESC_GLASS_BOTTLE 347
#define IDS_DESC_GLOWSTONE 348
#define IDS_DESC_GOLD_NUGGET 349
#define IDS_DESC_GOLDENAPPLE 350
#define IDS_DESC_GRASS 351
#define IDS_DESC_GRAVEL 352
#define IDS_DESC_HALFSLAB 353
#define IDS_DESC_HATCHET 354
#define IDS_DESC_HELL_ROCK 355
#define IDS_DESC_HELL_SAND 356
#define IDS_DESC_HELMET 357
#define IDS_DESC_HELMET_CHAIN 358
#define IDS_DESC_HELMET_DIAMOND 359
#define IDS_DESC_HELMET_GOLD 360
#define IDS_DESC_HELMET_IRON 361
#define IDS_DESC_HELMET_LEATHER 362
#define IDS_DESC_HOE 363
#define IDS_DESC_ICE 364
#define IDS_DESC_INGOT 365
#define IDS_DESC_IRON_FENCE 366
#define IDS_DESC_IRONGOLEM 367
#define IDS_DESC_ITEM_NETHERBRICK 368
#define IDS_DESC_ITEMFRAME 369
#define IDS_DESC_JACKOLANTERN 370
#define IDS_DESC_JUKEBOX 371
#define IDS_DESC_LADDER 372
#define IDS_DESC_LAVA 373
#define IDS_DESC_LAVA_SLIME 374
#define IDS_DESC_LEATHER 375
#define IDS_DESC_LEAVES 376
#define IDS_DESC_LEGGINGS 377
#define IDS_DESC_LEGGINGS_CHAIN 378
#define IDS_DESC_LEGGINGS_DIAMOND 379
#define IDS_DESC_LEGGINGS_GOLD 380
#define IDS_DESC_LEGGINGS_IRON 381
#define IDS_DESC_LEGGINGS_LEATHER 382
#define IDS_DESC_LEVER 383
#define IDS_DESC_LOG 384
#define IDS_DESC_MAGMA_CREAM 385
#define IDS_DESC_MAP 386
#define IDS_DESC_MELON_BLOCK 387
#define IDS_DESC_MELON_SEEDS 388
#define IDS_DESC_MELON_SLICE 389
#define IDS_DESC_MINECART 390
#define IDS_DESC_MINECARTWITHCHEST 391
#define IDS_DESC_MINECARTWITHFURNACE 392
#define IDS_DESC_MOB_SPAWNER 393
#define IDS_DESC_MONSTER_SPAWNER 394
#define IDS_DESC_MOSS_STONE 395
#define IDS_DESC_MUSHROOM 396
#define IDS_DESC_MUSHROOM_COW 397
#define IDS_DESC_MUSHROOMSTEW 398
#define IDS_DESC_MYCEL 399
#define IDS_DESC_NETHER_QUARTZ 400
#define IDS_DESC_NETHER_QUARTZ_ORE 401
#define IDS_DESC_NETHER_STALK_SEEDS 402
#define IDS_DESC_NETHERBRICK 403
#define IDS_DESC_NETHERFENCE 404
#define IDS_DESC_NETHERSTALK 405
#define IDS_DESC_NOTEBLOCK 406
#define IDS_DESC_OBSIDIAN 407
#define IDS_DESC_ORE_COAL 408
#define IDS_DESC_ORE_DIAMOND 409
#define IDS_DESC_ORE_GOLD 410
#define IDS_DESC_ORE_IRON 411
#define IDS_DESC_ORE_LAPIS 412
#define IDS_DESC_ORE_REDSTONE 413
#define IDS_DESC_OZELOT 414
#define IDS_DESC_PAPER 415
#define IDS_DESC_PICKAXE 416
#define IDS_DESC_PICTURE 417
#define IDS_DESC_PIG 418
#define IDS_DESC_PIGZOMBIE 419
#define IDS_DESC_PISTON 420
#define IDS_DESC_PORKCHOP_COOKED 421
#define IDS_DESC_PORKCHOP_RAW 422
#define IDS_DESC_PORTAL 423
#define IDS_DESC_POTATO 424
#define IDS_DESC_POTATO_BAKED 425
#define IDS_DESC_POTATO_POISONOUS 426
#define IDS_DESC_POTION 427
#define IDS_DESC_POWEREDRAIL 428
#define IDS_DESC_PRESSUREPLATE 429
#define IDS_DESC_PUMPKIN 430
#define IDS_DESC_PUMPKIN_PIE 431
#define IDS_DESC_PUMPKIN_SEEDS 432
#define IDS_DESC_QUARTZ_BLOCK 433
#define IDS_DESC_RAIL 434
#define IDS_DESC_RECORD 435
#define IDS_DESC_REDSTONE_DUST 436
#define IDS_DESC_REDSTONE_LIGHT 437
#define IDS_DESC_REDSTONEREPEATER 438
#define IDS_DESC_REDSTONETORCH 439
#define IDS_DESC_REEDS 440
#define IDS_DESC_ROTTEN_FLESH 441
#define IDS_DESC_SADDLE 442
#define IDS_DESC_SAND 443
#define IDS_DESC_SANDSTONE 444
#define IDS_DESC_SAPLING 445
#define IDS_DESC_SHEARS 446
#define IDS_DESC_SHEEP 447
#define IDS_DESC_SHOVEL 448
#define IDS_DESC_SIGN 449
#define IDS_DESC_SILVERFISH 450
#define IDS_DESC_SKELETON 451
#define IDS_DESC_SKULL 452
#define IDS_DESC_SLAB 453
#define IDS_DESC_SLIME 454
#define IDS_DESC_SLIMEBALL 455
#define IDS_DESC_SNOW 456
#define IDS_DESC_SNOWBALL 457
#define IDS_DESC_SNOWMAN 458
#define IDS_DESC_SPECKLED_MELON 459
#define IDS_DESC_SPIDER 460
#define IDS_DESC_SPIDER_EYE 461
#define IDS_DESC_SPONGE 462
#define IDS_DESC_SQUID 463
#define IDS_DESC_STAIRS 464
#define IDS_DESC_STICK 465
#define IDS_DESC_STICKY_PISTON 466
#define IDS_DESC_STONE 467
#define IDS_DESC_STONE_BRICK 468
#define IDS_DESC_STONE_BRICK_SMOOTH 469
#define IDS_DESC_STONE_SILVERFISH 470
#define IDS_DESC_STONESLAB 471
#define IDS_DESC_STRING 472
#define IDS_DESC_STRUCTBLOCK 473
#define IDS_DESC_SUGAR 474
#define IDS_DESC_SULPHUR 475
#define IDS_DESC_SWORD 476
#define IDS_DESC_TALL_GRASS 477
#define IDS_DESC_THIN_GLASS 478
#define IDS_DESC_TNT 479
#define IDS_DESC_TOP_SNOW 480
#define IDS_DESC_TORCH 481
#define IDS_DESC_TRAPDOOR 482
#define IDS_DESC_TRIPWIRE 483
#define IDS_DESC_TRIPWIRE_SOURCE 484
#define IDS_DESC_VILLAGER 485
#define IDS_DESC_VINE 486
#define IDS_DESC_WATER 487
#define IDS_DESC_WATERLILY 488
#define IDS_DESC_WEB 489
#define IDS_DESC_WHEAT 490
#define IDS_DESC_WHEAT_SEEDS 491
#define IDS_DESC_WHITESTONE 492
#define IDS_DESC_WOLF 493
#define IDS_DESC_WOODENPLANKS 494
#define IDS_DESC_WOODSLAB 495
#define IDS_DESC_WOOL 496
#define IDS_DESC_WOOLSTRING 497
#define IDS_DESC_YELLOW_DUST 498
#define IDS_DESC_ZOMBIE 499
#define IDS_DEVICEGONE_TITLE 500
#define IDS_DIFFICULTY_EASY 501
#define IDS_DIFFICULTY_HARD 502
#define IDS_DIFFICULTY_NORMAL 503
#define IDS_DIFFICULTY_PEACEFUL 504
#define IDS_DIFFICULTY_TITLE_EASY 505
#define IDS_DIFFICULTY_TITLE_HARD 506
#define IDS_DIFFICULTY_TITLE_NORMAL 507
#define IDS_DIFFICULTY_TITLE_PEACEFUL 508
#define IDS_DISABLE_AUTOSAVE 509
#define IDS_DISABLE_EXHAUSTION 510
#define IDS_DISABLE_SAVING 511
#define IDS_DISCONNECTED 512
#define IDS_DISCONNECTED_BANNED 513
#define IDS_DISCONNECTED_CLIENT_OLD 514
#define IDS_DISCONNECTED_FLYING 515
#define IDS_DISCONNECTED_KICKED 516
#define IDS_DISCONNECTED_LOGIN_TOO_LONG 517
#define IDS_DISCONNECTED_NAT_TYPE_MISMATCH 518
#define IDS_DISCONNECTED_NO_FRIENDS_IN_GAME 519
#define IDS_DISCONNECTED_SERVER_FULL 520
#define IDS_DISCONNECTED_SERVER_OLD 521
#define IDS_DISCONNECTED_SERVER_QUIT 522
#define IDS_DISPENSER 523
#define IDS_DLC_COST 524
#define IDS_DLC_MENU_AVATARITEMS 525
#define IDS_DLC_MENU_GAMERPICS 526
#define IDS_DLC_MENU_MASHUPPACKS 527
#define IDS_DLC_MENU_SKINPACKS 528
#define IDS_DLC_MENU_TEXTUREPACKS 529
#define IDS_DLC_MENU_THEMES 530
#define IDS_DLC_PRICE_FREE 531
#define IDS_DLC_TEXTUREPACK_GET_FULL_TITLE 532
#define IDS_DLC_TEXTUREPACK_GET_TRIAL_TITLE 533
#define IDS_DLC_TEXTUREPACK_NOT_PRESENT 534
#define IDS_DLC_TEXTUREPACK_NOT_PRESENT_TITLE 535
#define IDS_DLC_TEXTUREPACK_UNLOCK_TITLE 536
#define IDS_DONE 537
#define IDS_DONT_RESET_NETHER 538
#define IDS_DOWNLOADABLE_CONTENT_OFFERS 539
#define IDS_DOWNLOADABLECONTENT 540
#define IDS_DYNAFONT 541
#define IDS_EDIT_SIGN_MESSAGE 542
#define IDS_ENABLE_TELEPORT 543
#define IDS_ENCHANT 544
#define IDS_ENCHANTMENT_ARROW_DAMAGE 545
#define IDS_ENCHANTMENT_ARROW_FIRE 546
#define IDS_ENCHANTMENT_ARROW_INFINITE 547
#define IDS_ENCHANTMENT_ARROW_KNOCKBACK 548
#define IDS_ENCHANTMENT_DAMAGE_ALL 549
#define IDS_ENCHANTMENT_DAMAGE_ARTHROPODS 550
#define IDS_ENCHANTMENT_DAMAGE_UNDEAD 551
#define IDS_ENCHANTMENT_DIGGING 552
#define IDS_ENCHANTMENT_DURABILITY 553
#define IDS_ENCHANTMENT_FIRE 554
#define IDS_ENCHANTMENT_KNOCKBACK 555
#define IDS_ENCHANTMENT_LEVEL_1 556
#define IDS_ENCHANTMENT_LEVEL_10 557
#define IDS_ENCHANTMENT_LEVEL_2 558
#define IDS_ENCHANTMENT_LEVEL_3 559
#define IDS_ENCHANTMENT_LEVEL_4 560
#define IDS_ENCHANTMENT_LEVEL_5 561
#define IDS_ENCHANTMENT_LEVEL_6 562
#define IDS_ENCHANTMENT_LEVEL_7 563
#define IDS_ENCHANTMENT_LEVEL_8 564
#define IDS_ENCHANTMENT_LEVEL_9 565
#define IDS_ENCHANTMENT_LOOT_BONUS 566
#define IDS_ENCHANTMENT_LOOT_BONUS_DIGGER 567
#define IDS_ENCHANTMENT_OXYGEN 568
#define IDS_ENCHANTMENT_PROTECT_ALL 569
#define IDS_ENCHANTMENT_PROTECT_EXPLOSION 570
#define IDS_ENCHANTMENT_PROTECT_FALL 571
#define IDS_ENCHANTMENT_PROTECT_FIRE 572
#define IDS_ENCHANTMENT_PROTECT_PROJECTILE 573
#define IDS_ENCHANTMENT_THORNS 574
#define IDS_ENCHANTMENT_UNTOUCHING 575
#define IDS_ENCHANTMENT_WATER_WORKER 576
#define IDS_ENDERDRAGON 577
#define IDS_ENDERMAN 578
#define IDS_ERROR_NETWORK 579
#define IDS_ERROR_NETWORK_EXIT 580
#define IDS_ERROR_NETWORK_TITLE 581
#define IDS_ERROR_PSN_SIGN_OUT 582
#define IDS_ERROR_PSN_SIGN_OUT_EXIT 583
#define IDS_EULA 584
#define IDS_EULA_SCEA 585
#define IDS_EULA_SCEE 586
#define IDS_EULA_SCEE_BD 587
#define IDS_EXIT_GAME 588
#define IDS_EXIT_GAME_NO_SAVE 589
#define IDS_EXIT_GAME_SAVE 590
#define IDS_EXITING_GAME 591
#define IDS_FAILED_TO_CREATE_GAME_TITLE 592
#define IDS_FAILED_TO_SAVE_TITLE 593
#define IDS_FATAL_ERROR_TEXT 594
#define IDS_FATAL_ERROR_TITLE 595
#define IDS_FATAL_TROPHY_ERROR 596
#define IDS_FAVORITES_SKIN_PACK 597
#define IDS_FIRE_SPREADS 598
#define IDS_FLOWERPOT 599
#define IDS_FUEL 600
#define IDS_FURNACE 601
#define IDS_GAME_HOST_NAME 602
#define IDS_GAME_HOST_NAME_UNKNOWN 603
#define IDS_GAME_MODE_CHANGED 604
#define IDS_GAME_OPTIONS 605
#define IDS_GAMEMODE_CREATIVE 606
#define IDS_GAMEMODE_SURVIVAL 607
#define IDS_GAMENAME 608
#define IDS_GAMEOPTION_ALLOWFOF 609
#define IDS_GAMEOPTION_BONUS_CHEST 610
#define IDS_GAMEOPTION_DISABLE_SAVING 611
#define IDS_GAMEOPTION_FIRE_SPREADS 612
#define IDS_GAMEOPTION_HOST_PRIVILEGES 613
#define IDS_GAMEOPTION_INVITEONLY 614
#define IDS_GAMEOPTION_ONLINE 615
#define IDS_GAMEOPTION_PVP 616
#define IDS_GAMEOPTION_RESET_NETHER 617
#define IDS_GAMEOPTION_SEED 618
#define IDS_GAMEOPTION_STRUCTURES 619
#define IDS_GAMEOPTION_SUPERFLAT 620
#define IDS_GAMEOPTION_TNT_EXPLODES 621
#define IDS_GAMEOPTION_TRUST 622
#define IDS_GAMEOPTION_WORLD_SIZE 623
#define IDS_GAMERPICS 624
#define IDS_GENERATE_STRUCTURES 625
#define IDS_GENERIC_ERROR 626
#define IDS_GHAST 627
#define IDS_GRAPHICS 628
#define IDS_GROUPNAME_ARMOUR 629
#define IDS_GROUPNAME_BUILDING_BLOCKS 630
#define IDS_GROUPNAME_DECORATIONS 631
#define IDS_GROUPNAME_FOOD 632
#define IDS_GROUPNAME_MATERIALS 633
#define IDS_GROUPNAME_MECHANISMS 634
#define IDS_GROUPNAME_MISCELLANEOUS 635
#define IDS_GROUPNAME_POTIONS 636
#define IDS_GROUPNAME_POTIONS_480 637
#define IDS_GROUPNAME_REDSTONE_AND_TRANSPORT 638
#define IDS_GROUPNAME_STRUCTURES 639
#define IDS_GROUPNAME_TOOLS 640
#define IDS_GROUPNAME_TOOLS_WEAPONS_ARMOR 641
#define IDS_GROUPNAME_TRANSPORT 642
#define IDS_GROUPNAME_WEAPONS 643
#define IDS_GUEST_ORDER_CHANGED_TEXT 644
#define IDS_GUEST_ORDER_CHANGED_TITLE 645
#define IDS_HELP_AND_OPTIONS 646
#define IDS_HINTS 647
#define IDS_HOST_OPTION_DISABLES_ACHIEVEMENTS 648
#define IDS_HOST_OPTIONS 649
#define IDS_HOST_PRIVILEGES 650
#define IDS_HOW_TO_PLAY 651
#define IDS_HOW_TO_PLAY_ANVIL 652
#define IDS_HOW_TO_PLAY_BANLIST 653
#define IDS_HOW_TO_PLAY_BASICS 654
#define IDS_HOW_TO_PLAY_BREEDANIMALS 655
#define IDS_HOW_TO_PLAY_BREWING 656
#define IDS_HOW_TO_PLAY_CHEST 657
#define IDS_HOW_TO_PLAY_CRAFT_TABLE 658
#define IDS_HOW_TO_PLAY_CRAFTING 659
#define IDS_HOW_TO_PLAY_CREATIVE 660
#define IDS_HOW_TO_PLAY_DISPENSER 661
#define IDS_HOW_TO_PLAY_ENCHANTMENT 662
#define IDS_HOW_TO_PLAY_ENDERCHEST 663
#define IDS_HOW_TO_PLAY_FARMANIMALS 664
#define IDS_HOW_TO_PLAY_FURNACE 665
#define IDS_HOW_TO_PLAY_HOSTOPTIONS 666
#define IDS_HOW_TO_PLAY_HUD 667
#define IDS_HOW_TO_PLAY_INVENTORY 668
#define IDS_HOW_TO_PLAY_LARGECHEST 669
#define IDS_HOW_TO_PLAY_MENU_ANVIL 670
#define IDS_HOW_TO_PLAY_MENU_BANLIST 671
#define IDS_HOW_TO_PLAY_MENU_BASICS 672
#define IDS_HOW_TO_PLAY_MENU_BREEDANIMALS 673
#define IDS_HOW_TO_PLAY_MENU_BREWING 674
#define IDS_HOW_TO_PLAY_MENU_CHESTS 675
#define IDS_HOW_TO_PLAY_MENU_CRAFTING 676
#define IDS_HOW_TO_PLAY_MENU_CREATIVE 677
#define IDS_HOW_TO_PLAY_MENU_DISPENSER 678
#define IDS_HOW_TO_PLAY_MENU_ENCHANTMENT 679
#define IDS_HOW_TO_PLAY_MENU_FARMANIMALS 680
#define IDS_HOW_TO_PLAY_MENU_FURNACE 681
#define IDS_HOW_TO_PLAY_MENU_HOSTOPTIONS 682
#define IDS_HOW_TO_PLAY_MENU_HUD 683
#define IDS_HOW_TO_PLAY_MENU_INVENTORY 684
#define IDS_HOW_TO_PLAY_MENU_MULTIPLAYER 685
#define IDS_HOW_TO_PLAY_MENU_NETHERPORTAL 686
#define IDS_HOW_TO_PLAY_MENU_SOCIALMEDIA 687
#define IDS_HOW_TO_PLAY_MENU_SPRINT 688
#define IDS_HOW_TO_PLAY_MENU_THEEND 689
#define IDS_HOW_TO_PLAY_MENU_TRADING 690
#define IDS_HOW_TO_PLAY_MENU_WHATSNEW 691
#define IDS_HOW_TO_PLAY_MULTIPLAYER 692
#define IDS_HOW_TO_PLAY_NETHERPORTAL 693
#define IDS_HOW_TO_PLAY_NEXT 694
#define IDS_HOW_TO_PLAY_PREV 695
#define IDS_HOW_TO_PLAY_SOCIALMEDIA 696
#define IDS_HOW_TO_PLAY_THEEND 697
#define IDS_HOW_TO_PLAY_TRADING 698
#define IDS_HOW_TO_PLAY_WHATSNEW 699
#define IDS_ICON_SHANK_01 700
#define IDS_ICON_SHANK_03 701
#define IDS_IN_GAME_GAMERTAGS 702
#define IDS_IN_GAME_TOOLTIPS 703
#define IDS_INGREDIENT 704
#define IDS_INGREDIENTS 705
#define IDS_INVENTORY 706
#define IDS_INVERT_LOOK 707
#define IDS_INVISIBLE 708
#define IDS_INVITATION_BODY 709
#define IDS_INVITATION_SUBJECT_MAX_18_CHARS 710
#define IDS_INVITE_ONLY 711
#define IDS_IRONGOLEM 712
#define IDS_ITEM_APPLE 713
#define IDS_ITEM_APPLE_GOLD 714
#define IDS_ITEM_ARROW 715
#define IDS_ITEM_BED 716
#define IDS_ITEM_BEEF_COOKED 717
#define IDS_ITEM_BEEF_RAW 718
#define IDS_ITEM_BLAZE_POWDER 719
#define IDS_ITEM_BLAZE_ROD 720
#define IDS_ITEM_BOAT 721
#define IDS_ITEM_BONE 722
#define IDS_ITEM_BOOK 723
#define IDS_ITEM_BOOTS_CHAIN 724
#define IDS_ITEM_BOOTS_CLOTH 725
#define IDS_ITEM_BOOTS_DIAMOND 726
#define IDS_ITEM_BOOTS_GOLD 727
#define IDS_ITEM_BOOTS_IRON 728
#define IDS_ITEM_BOW 729
#define IDS_ITEM_BOWL 730
#define IDS_ITEM_BREAD 731
#define IDS_ITEM_BREWING_STAND 732
#define IDS_ITEM_BRICK 733
#define IDS_ITEM_BUCKET 734
#define IDS_ITEM_BUCKET_LAVA 735
#define IDS_ITEM_BUCKET_MILK 736
#define IDS_ITEM_BUCKET_WATER 737
#define IDS_ITEM_CAKE 738
#define IDS_ITEM_CARROT_GOLDEN 739
#define IDS_ITEM_CARROT_ON_A_STICK 740
#define IDS_ITEM_CAULDRON 741
#define IDS_ITEM_CHARCOAL 742
#define IDS_ITEM_CHESTPLATE_CHAIN 743
#define IDS_ITEM_CHESTPLATE_CLOTH 744
#define IDS_ITEM_CHESTPLATE_DIAMOND 745
#define IDS_ITEM_CHESTPLATE_GOLD 746
#define IDS_ITEM_CHESTPLATE_IRON 747
#define IDS_ITEM_CHICKEN_COOKED 748
#define IDS_ITEM_CHICKEN_RAW 749
#define IDS_ITEM_CLAY 750
#define IDS_ITEM_CLOCK 751
#define IDS_ITEM_COAL 752
#define IDS_ITEM_COMPASS 753
#define IDS_ITEM_COOKIE 754
#define IDS_ITEM_DIAMOND 755
#define IDS_ITEM_DIODE 756
#define IDS_ITEM_DOOR_IRON 757
#define IDS_ITEM_DOOR_WOOD 758
#define IDS_ITEM_DYE_POWDER 759
#define IDS_ITEM_DYE_POWDER_BLACK 760
#define IDS_ITEM_DYE_POWDER_BLUE 761
#define IDS_ITEM_DYE_POWDER_BROWN 762
#define IDS_ITEM_DYE_POWDER_CYAN 763
#define IDS_ITEM_DYE_POWDER_GRAY 764
#define IDS_ITEM_DYE_POWDER_GREEN 765
#define IDS_ITEM_DYE_POWDER_LIGHT_BLUE 766
#define IDS_ITEM_DYE_POWDER_LIME 767
#define IDS_ITEM_DYE_POWDER_MAGENTA 768
#define IDS_ITEM_DYE_POWDER_ORANGE 769
#define IDS_ITEM_DYE_POWDER_PINK 770
#define IDS_ITEM_DYE_POWDER_PURPLE 771
#define IDS_ITEM_DYE_POWDER_RED 772
#define IDS_ITEM_DYE_POWDER_SILVER 773
#define IDS_ITEM_DYE_POWDER_WHITE 774
#define IDS_ITEM_DYE_POWDER_YELLOW 775
#define IDS_ITEM_EGG 776
#define IDS_ITEM_EMERALD 777
#define IDS_ITEM_ENCHANTED_BOOK 778
#define IDS_ITEM_ENDER_PEARL 779
#define IDS_ITEM_EXP_BOTTLE 780
#define IDS_ITEM_EYE_OF_ENDER 781
#define IDS_ITEM_FEATHER 782
#define IDS_ITEM_FERMENTED_SPIDER_EYE 783
#define IDS_ITEM_FIREBALL 784
#define IDS_ITEM_FIREBALLCHARCOAL 785
#define IDS_ITEM_FIREBALLCOAL 786
#define IDS_ITEM_FISH_COOKED 787
#define IDS_ITEM_FISH_RAW 788
#define IDS_ITEM_FISHING_ROD 789
#define IDS_ITEM_FLINT 790
#define IDS_ITEM_FLINT_AND_STEEL 791
#define IDS_ITEM_GHAST_TEAR 792
#define IDS_ITEM_GLASS_BOTTLE 793
#define IDS_ITEM_GOLD_NUGGET 794
#define IDS_ITEM_HATCHET_DIAMOND 795
#define IDS_ITEM_HATCHET_GOLD 796
#define IDS_ITEM_HATCHET_IRON 797
#define IDS_ITEM_HATCHET_STONE 798
#define IDS_ITEM_HATCHET_WOOD 799
#define IDS_ITEM_HELMET_CHAIN 800
#define IDS_ITEM_HELMET_CLOTH 801
#define IDS_ITEM_HELMET_DIAMOND 802
#define IDS_ITEM_HELMET_GOLD 803
#define IDS_ITEM_HELMET_IRON 804
#define IDS_ITEM_HOE_DIAMOND 805
#define IDS_ITEM_HOE_GOLD 806
#define IDS_ITEM_HOE_IRON 807
#define IDS_ITEM_HOE_STONE 808
#define IDS_ITEM_HOE_WOOD 809
#define IDS_ITEM_INGOT_GOLD 810
#define IDS_ITEM_INGOT_IRON 811
#define IDS_ITEM_ITEMFRAME 812
#define IDS_ITEM_LEATHER 813
#define IDS_ITEM_LEGGINGS_CHAIN 814
#define IDS_ITEM_LEGGINGS_CLOTH 815
#define IDS_ITEM_LEGGINGS_DIAMOND 816
#define IDS_ITEM_LEGGINGS_GOLD 817
#define IDS_ITEM_LEGGINGS_IRON 818
#define IDS_ITEM_MAGMA_CREAM 819
#define IDS_ITEM_MAP 820
#define IDS_ITEM_MELON_SEEDS 821
#define IDS_ITEM_MELON_SLICE 822
#define IDS_ITEM_MINECART 823
#define IDS_ITEM_MINECART_CHEST 824
#define IDS_ITEM_MINECART_FURNACE 825
#define IDS_ITEM_MONSTER_SPAWNER 826
#define IDS_ITEM_MUSHROOM_STEW 827
#define IDS_ITEM_NETHER_QUARTZ 828
#define IDS_ITEM_NETHER_STALK_SEEDS 829
#define IDS_ITEM_NETHERBRICK 830
#define IDS_ITEM_PAINTING 831
#define IDS_ITEM_PAPER 832
#define IDS_ITEM_PICKAXE_DIAMOND 833
#define IDS_ITEM_PICKAXE_GOLD 834
#define IDS_ITEM_PICKAXE_IRON 835
#define IDS_ITEM_PICKAXE_STONE 836
#define IDS_ITEM_PICKAXE_WOOD 837
#define IDS_ITEM_PORKCHOP_COOKED 838
#define IDS_ITEM_PORKCHOP_RAW 839
#define IDS_ITEM_POTATO_BAKED 840
#define IDS_ITEM_POTATO_POISONOUS 841
#define IDS_ITEM_POTION 842
#define IDS_ITEM_PUMPKIN_PIE 843
#define IDS_ITEM_PUMPKIN_SEEDS 844
#define IDS_ITEM_RECORD_01 845
#define IDS_ITEM_RECORD_02 846
#define IDS_ITEM_RECORD_03 847
#define IDS_ITEM_RECORD_04 848
#define IDS_ITEM_RECORD_05 849
#define IDS_ITEM_RECORD_06 850
#define IDS_ITEM_RECORD_07 851
#define IDS_ITEM_RECORD_08 852
#define IDS_ITEM_RECORD_09 853
#define IDS_ITEM_RECORD_10 854
#define IDS_ITEM_RECORD_11 855
#define IDS_ITEM_RECORD_12 856
#define IDS_ITEM_REDSTONE 857
#define IDS_ITEM_REEDS 858
#define IDS_ITEM_ROTTEN_FLESH 859
#define IDS_ITEM_SADDLE 860
#define IDS_ITEM_SHEARS 861
#define IDS_ITEM_SHOVEL_DIAMOND 862
#define IDS_ITEM_SHOVEL_GOLD 863
#define IDS_ITEM_SHOVEL_IRON 864
#define IDS_ITEM_SHOVEL_STONE 865
#define IDS_ITEM_SHOVEL_WOOD 866
#define IDS_ITEM_SIGN 867
#define IDS_ITEM_SKULL 868
#define IDS_ITEM_SKULL_CHARACTER 869
#define IDS_ITEM_SKULL_CREEPER 870
#define IDS_ITEM_SKULL_PLAYER 871
#define IDS_ITEM_SKULL_SKELETON 872
#define IDS_ITEM_SKULL_WITHER 873
#define IDS_ITEM_SKULL_ZOMBIE 874
#define IDS_ITEM_SLIMEBALL 875
#define IDS_ITEM_SNOWBALL 876
#define IDS_ITEM_SPECKLED_MELON 877
#define IDS_ITEM_SPIDER_EYE 878
#define IDS_ITEM_STICK 879
#define IDS_ITEM_STRING 880
#define IDS_ITEM_SUGAR 881
#define IDS_ITEM_SULPHUR 882
#define IDS_ITEM_SWORD_DIAMOND 883
#define IDS_ITEM_SWORD_GOLD 884
#define IDS_ITEM_SWORD_IRON 885
#define IDS_ITEM_SWORD_STONE 886
#define IDS_ITEM_SWORD_WOOD 887
#define IDS_ITEM_WATER_BOTTLE 888
#define IDS_ITEM_WHEAT 889
#define IDS_ITEM_WHEAT_SEEDS 890
#define IDS_ITEM_YELLOW_DUST 891
#define IDS_JOIN_GAME 892
#define IDS_KEYBOARDUI_SAVEGAME_TEXT 893
#define IDS_KEYBOARDUI_SAVEGAME_TITLE 894
#define IDS_KICK_PLAYER 895
#define IDS_KICK_PLAYER_DESCRIPTION 896
#define IDS_LABEL_DIFFICULTY 897
#define IDS_LABEL_FIRE_SPREADS 898
#define IDS_LABEL_GAME_TYPE 899
#define IDS_LABEL_GAMERTAGS 900
#define IDS_LABEL_LEVEL_TYPE 901
#define IDS_LABEL_PvP 902
#define IDS_LABEL_STRUCTURES 903
#define IDS_LABEL_TNT 904
#define IDS_LABEL_TRUST 905
#define IDS_LAVA_SLIME 906
#define IDS_LEADERBOARD_ENTRIES 907
#define IDS_LEADERBOARD_FARMING_EASY 908
#define IDS_LEADERBOARD_FARMING_HARD 909
#define IDS_LEADERBOARD_FARMING_NORMAL 910
#define IDS_LEADERBOARD_FARMING_PEACEFUL 911
#define IDS_LEADERBOARD_FILTER 912
#define IDS_LEADERBOARD_FILTER_FRIENDS 913
#define IDS_LEADERBOARD_FILTER_MYSCORE 914
#define IDS_LEADERBOARD_FILTER_OVERALL 915
#define IDS_LEADERBOARD_GAMERTAG 916
#define IDS_LEADERBOARD_KILLS_EASY 917
#define IDS_LEADERBOARD_KILLS_HARD 918
#define IDS_LEADERBOARD_KILLS_NORMAL 919
#define IDS_LEADERBOARD_LOADING 920
#define IDS_LEADERBOARD_MINING_BLOCKS_EASY 921
#define IDS_LEADERBOARD_MINING_BLOCKS_HARD 922
#define IDS_LEADERBOARD_MINING_BLOCKS_NORMAL 923
#define IDS_LEADERBOARD_MINING_BLOCKS_PEACEFUL 924
#define IDS_LEADERBOARD_NORESULTS 925
#define IDS_LEADERBOARD_RANK 926
#define IDS_LEADERBOARD_TRAVELLING_EASY 927
#define IDS_LEADERBOARD_TRAVELLING_HARD 928
#define IDS_LEADERBOARD_TRAVELLING_NORMAL 929
#define IDS_LEADERBOARD_TRAVELLING_PEACEFUL 930
#define IDS_LEADERBOARDS 931
#define IDS_LEVELTYPE_NORMAL 932
#define IDS_LEVELTYPE_SUPERFLAT 933
#define IDS_LOAD 934
#define IDS_LOAD_SAVED_WORLD 935
#define IDS_MAX_BOATS 936
#define IDS_MAX_CHICKENS_BRED 937
#define IDS_MAX_CHICKENS_SPAWNED 938
#define IDS_MAX_ENEMIES_SPAWNED 939
#define IDS_MAX_HANGINGENTITIES 940
#define IDS_MAX_MOOSHROOMS_SPAWNED 941
#define IDS_MAX_MUSHROOMCOWS_BRED 942
#define IDS_MAX_PIGS_SHEEP_COWS_CATS_BRED 943
#define IDS_MAX_PIGS_SHEEP_COWS_CATS_SPAWNED 944
#define IDS_MAX_SKULL_TILES 945
#define IDS_MAX_SQUID_SPAWNED 946
#define IDS_MAX_VILLAGERS_SPAWNED 947
#define IDS_MAX_WOLVES_BRED 948
#define IDS_MAX_WOLVES_SPAWNED 949
#define IDS_MINUTES 950
#define IDS_MODERATOR 951
#define IDS_MORE_OPTIONS 952
#define IDS_MULTIPLAYER_FULL_TEXT 953
#define IDS_MULTIPLAYER_FULL_TITLE 954
#define IDS_MUSHROOM_COW 955
#define IDS_MUST_SIGN_IN_TEXT 956
#define IDS_MUST_SIGN_IN_TITLE 957
#define IDS_NAME_CAPTION 958
#define IDS_NAME_CAPTION_TEXT 959
#define IDS_NAME_DESC 960
#define IDS_NAME_DESC_TEXT 961
#define IDS_NAME_TITLE 962
#define IDS_NAME_TITLE_TEXT 963
#define IDS_NAME_WORLD 964
#define IDS_NAME_WORLD_TEXT 965
#define IDS_NO 966
#define IDS_NO_DLCCATEGORIES 967
#define IDS_NO_DLCOFFERS 968
#define IDS_NO_GAMES_FOUND 969
#define IDS_NO_MULTIPLAYER_PRIVILEGE_HOST_TEXT 970
#define IDS_NO_MULTIPLAYER_PRIVILEGE_JOIN_TEXT 971
#define IDS_NO_MULTIPLAYER_PRIVILEGE_TITLE 972
#define IDS_NO_PLAYSTATIONPLUS 973
#define IDS_NO_SKIN_PACK 974
#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_ALL_LOCAL 975
#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_CREATE 976
#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_SINGLE_LOCAL 977
#define IDS_NODEVICE_DECLINE 978
#define IDS_NOFREESPACE_TEXT 979
#define IDS_NOFREESPACE_TITLE 980
#define IDS_NOTALLOWED_FRIENDSOFFRIENDS 981
#define IDS_NOWPLAYING 982
#define IDS_OFF 983
#define IDS_OK 984
#define IDS_ON 985
#define IDS_ONLINE_GAME 986
#define IDS_ONLINE_SERVICE_TITLE 987
#define IDS_OPTIONS 988
#define IDS_OPTIONSFILE 989
#define IDS_OVERWRITESAVE_NO 990
#define IDS_OVERWRITESAVE_TITLE 991
#define IDS_OVERWRITESAVE_YES 992
#define IDS_OZELOT 993
#define IDS_PATCH_AVAILABLE_TEXT 994
#define IDS_PATCH_AVAILABLE_TITLE 995
#define IDS_PIG 996
#define IDS_PIGZOMBIE 997
#define IDS_PLAY_GAME 998
#define IDS_PLAY_OFFLINE 999
#define IDS_PLAY_TUTORIAL 1000
#define IDS_PLAYER_BANNED_LEVEL 1001
#define IDS_PLAYER_ENTERED_END 1002
#define IDS_PLAYER_JOINED 1003
#define IDS_PLAYER_KICKED 1004
#define IDS_PLAYER_LEFT 1005
#define IDS_PLAYER_LEFT_END 1006
#define IDS_PLAYER_LIST_TITLE 1007
#define IDS_PLAYER_VS_PLAYER 1008
#define IDS_PLAYERS 1009
#define IDS_PLAYERS_INVITE 1010
#define IDS_PLAYSTATIONPLUS_SIGNUP 1011
#define IDS_PLAYWITHOUTSAVING 1012
#define IDS_POTATO 1013
#define IDS_POTION_BLINDNESS 1014
#define IDS_POTION_BLINDNESS_POSTFIX 1015
#define IDS_POTION_CONFUSION 1016
#define IDS_POTION_CONFUSION_POSTFIX 1017
#define IDS_POTION_DAMAGEBOOST 1018
#define IDS_POTION_DAMAGEBOOST_POSTFIX 1019
#define IDS_POTION_DESC_DAMAGEBOOST 1020
#define IDS_POTION_DESC_EMPTY 1021
#define IDS_POTION_DESC_FIRERESISTANCE 1022
#define IDS_POTION_DESC_HARM 1023
#define IDS_POTION_DESC_HEAL 1024
#define IDS_POTION_DESC_INVISIBILITY 1025
#define IDS_POTION_DESC_MOVESLOWDOWN 1026
#define IDS_POTION_DESC_MOVESPEED 1027
#define IDS_POTION_DESC_NIGHTVISION 1028
#define IDS_POTION_DESC_POISON 1029
#define IDS_POTION_DESC_REGENERATION 1030
#define IDS_POTION_DESC_WATER_BOTTLE 1031
#define IDS_POTION_DESC_WEAKNESS 1032
#define IDS_POTION_DIGSLOWDOWN 1033
#define IDS_POTION_DIGSLOWDOWN_POSTFIX 1034
#define IDS_POTION_DIGSPEED 1035
#define IDS_POTION_DIGSPEED_POSTFIX 1036
#define IDS_POTION_EMPTY 1037
#define IDS_POTION_FIRERESISTANCE 1038
#define IDS_POTION_FIRERESISTANCE_POSTFIX 1039
#define IDS_POTION_HARM 1040
#define IDS_POTION_HARM_POSTFIX 1041
#define IDS_POTION_HEAL 1042
#define IDS_POTION_HEAL_POSTFIX 1043
#define IDS_POTION_HUNGER 1044
#define IDS_POTION_HUNGER_POSTFIX 1045
#define IDS_POTION_INVISIBILITY 1046
#define IDS_POTION_INVISIBILITY_POSTFIX 1047
#define IDS_POTION_JUMP 1048
#define IDS_POTION_JUMP_POSTFIX 1049
#define IDS_POTION_MOVESLOWDOWN 1050
#define IDS_POTION_MOVESLOWDOWN_POSTFIX 1051
#define IDS_POTION_MOVESPEED 1052
#define IDS_POTION_MOVESPEED_POSTFIX 1053
#define IDS_POTION_NIGHTVISION 1054
#define IDS_POTION_NIGHTVISION_POSTFIX 1055
#define IDS_POTION_POISON 1056
#define IDS_POTION_POISON_POSTFIX 1057
#define IDS_POTION_POTENCY_0 1058
#define IDS_POTION_POTENCY_1 1059
#define IDS_POTION_POTENCY_2 1060
#define IDS_POTION_POTENCY_3 1061
#define IDS_POTION_PREFIX_ACRID 1062
#define IDS_POTION_PREFIX_ARTLESS 1063
#define IDS_POTION_PREFIX_AWKWARD 1064
#define IDS_POTION_PREFIX_BLAND 1065
#define IDS_POTION_PREFIX_BULKY 1066
#define IDS_POTION_PREFIX_BUNGLING 1067
#define IDS_POTION_PREFIX_BUTTERED 1068
#define IDS_POTION_PREFIX_CHARMING 1069
#define IDS_POTION_PREFIX_CLEAR 1070
#define IDS_POTION_PREFIX_CORDIAL 1071
#define IDS_POTION_PREFIX_DASHING 1072
#define IDS_POTION_PREFIX_DEBONAIR 1073
#define IDS_POTION_PREFIX_DIFFUSE 1074
#define IDS_POTION_PREFIX_ELEGANT 1075
#define IDS_POTION_PREFIX_FANCY 1076
#define IDS_POTION_PREFIX_FLAT 1077
#define IDS_POTION_PREFIX_FOUL 1078
#define IDS_POTION_PREFIX_GRENADE 1079
#define IDS_POTION_PREFIX_GROSS 1080
#define IDS_POTION_PREFIX_HARSH 1081
#define IDS_POTION_PREFIX_MILKY 1082
#define IDS_POTION_PREFIX_MUNDANE 1083
#define IDS_POTION_PREFIX_ODORLESS 1084
#define IDS_POTION_PREFIX_POTENT 1085
#define IDS_POTION_PREFIX_RANK 1086
#define IDS_POTION_PREFIX_REFINED 1087
#define IDS_POTION_PREFIX_SMOOTH 1088
#define IDS_POTION_PREFIX_SPARKLING 1089
#define IDS_POTION_PREFIX_STINKY 1090
#define IDS_POTION_PREFIX_SUAVE 1091
#define IDS_POTION_PREFIX_THICK 1092
#define IDS_POTION_PREFIX_THIN 1093
#define IDS_POTION_PREFIX_UNINTERESTING 1094
#define IDS_POTION_REGENERATION 1095
#define IDS_POTION_REGENERATION_POSTFIX 1096
#define IDS_POTION_RESISTANCE 1097
#define IDS_POTION_RESISTANCE_POSTFIX 1098
#define IDS_POTION_WATERBREATHING 1099
#define IDS_POTION_WATERBREATHING_POSTFIX 1100
#define IDS_POTION_WEAKNESS 1101
#define IDS_POTION_WEAKNESS_POSTFIX 1102
#define IDS_PRESS_START_TO_JOIN 1103
#define IDS_PRESS_X_TO_JOIN 1104
#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_OFF 1105
#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_ON 1106
#define IDS_PRIV_ATTACK_MOB_TOGGLE_OFF 1107
#define IDS_PRIV_ATTACK_MOB_TOGGLE_ON 1108
#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_OFF 1109
#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_ON 1110
#define IDS_PRIV_BUILD_TOGGLE_OFF 1111
#define IDS_PRIV_BUILD_TOGGLE_ON 1112
#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_OFF 1113
#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_ON 1114
#define IDS_PRIV_CAN_FLY_TOGGLE_OFF 1115
#define IDS_PRIV_CAN_FLY_TOGGLE_ON 1116
#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_OFF 1117
#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_ON 1118
#define IDS_PRIV_CAN_TELEPORT_TOGGLE_OFF 1119
#define IDS_PRIV_CAN_TELEPORT_TOGGLE_ON 1120
#define IDS_PRIV_EXHAUSTION_TOGGLE_OFF 1121
#define IDS_PRIV_EXHAUSTION_TOGGLE_ON 1122
#define IDS_PRIV_FLY_TOGGLE_OFF 1123
#define IDS_PRIV_FLY_TOGGLE_ON 1124
#define IDS_PRIV_INVISIBLE_TOGGLE_OFF 1125
#define IDS_PRIV_INVISIBLE_TOGGLE_ON 1126
#define IDS_PRIV_INVULNERABLE_TOGGLE_OFF 1127
#define IDS_PRIV_INVULNERABLE_TOGGLE_ON 1128
#define IDS_PRIV_MINE_TOGGLE_OFF 1129
#define IDS_PRIV_MINE_TOGGLE_ON 1130
#define IDS_PRIV_MODERATOR_TOGGLE_OFF 1131
#define IDS_PRIV_MODERATOR_TOGGLE_ON 1132
#define IDS_PRIV_USE_CONTAINERS_TOGGLE_OFF 1133
#define IDS_PRIV_USE_CONTAINERS_TOGGLE_ON 1134
#define IDS_PRIV_USE_DOORS_TOGGLE_OFF 1135
#define IDS_PRIV_USE_DOORS_TOGGLE_ON 1136
#define IDS_PRO_ACHIEVEMENTPROBLEM_TEXT 1137
#define IDS_PRO_ACHIEVEMENTPROBLEM_TITLE 1138
#define IDS_PRO_GUESTPROFILE_TEXT 1139
#define IDS_PRO_GUESTPROFILE_TITLE 1140
#define IDS_PRO_NOPROFILE_TITLE 1141
#define IDS_PRO_NOPROFILEOPTIONS_TEXT 1142
#define IDS_PRO_NOTONLINE_ACCEPT 1143
#define IDS_PRO_NOTONLINE_DECLINE 1144
#define IDS_PRO_NOTONLINE_TEXT 1145
#define IDS_PRO_NOTONLINE_TITLE 1146
#define IDS_PRO_RETURNEDTOMENU_ACCEPT 1147
#define IDS_PRO_RETURNEDTOMENU_TEXT 1148
#define IDS_PRO_RETURNEDTOMENU_TITLE 1149
#define IDS_PRO_RETURNEDTOTITLESCREEN_TEXT 1150
#define IDS_PRO_UNLOCKGAME_TEXT 1151
#define IDS_PRO_UNLOCKGAME_TITLE 1152
#define IDS_PRO_XBOXLIVE_NOTIFICATION 1153
#define IDS_PROGRESS_AUTOSAVING_LEVEL 1154
#define IDS_PROGRESS_BUILDING_TERRAIN 1155
#define IDS_PROGRESS_CONNECTING 1156
#define IDS_PROGRESS_CONVERTING_TO_OFFLINE_GAME 1157
#define IDS_PROGRESS_COPYING_SAVE 1158
#define IDS_PROGRESS_DOWNLOADING_TERRAIN 1159
#define IDS_PROGRESS_ENTERING_END 1160
#define IDS_PROGRESS_ENTERING_NETHER 1161
#define IDS_PROGRESS_GENERATING_LEVEL 1162
#define IDS_PROGRESS_GENERATING_SPAWN_AREA 1163
#define IDS_PROGRESS_HOST_SAVING 1164
#define IDS_PROGRESS_INITIALISING_SERVER 1165
#define IDS_PROGRESS_LEAVING_END 1166
#define IDS_PROGRESS_LEAVING_NETHER 1167
#define IDS_PROGRESS_LOADING_LEVEL 1168
#define IDS_PROGRESS_LOADING_SPAWN_AREA 1169
#define IDS_PROGRESS_NEW_WORLD_SEED 1170
#define IDS_PROGRESS_RESPAWNING 1171
#define IDS_PROGRESS_SAVING_CHUNKS 1172
#define IDS_PROGRESS_SAVING_LEVEL 1173
#define IDS_PROGRESS_SAVING_PLAYERS 1174
#define IDS_PROGRESS_SAVING_TO_DISC 1175
#define IDS_PROGRESS_SIMULATING_WORLD 1176
#define IDS_REINSTALL_AVATAR_ITEM_1 1177
#define IDS_REINSTALL_AVATAR_ITEM_2 1178
#define IDS_REINSTALL_AVATAR_ITEM_3 1179
#define IDS_REINSTALL_CONTENT 1180
#define IDS_REINSTALL_GAMERPIC_1 1181
#define IDS_REINSTALL_GAMERPIC_2 1182
#define IDS_REINSTALL_THEME 1183
#define IDS_RENAME_WORLD_TEXT 1184
#define IDS_RENAME_WORLD_TITLE 1185
#define IDS_REPAIR_AND_NAME 1186
#define IDS_REPAIR_COST 1187
#define IDS_REPAIR_EXPENSIVE 1188
#define IDS_REQUIRED_ITEMS_FOR_TRADE 1189
#define IDS_RESET_NETHER 1190
#define IDS_RESET_TO_DEFAULTS 1191
#define IDS_RESETNETHER_TEXT 1192
#define IDS_RESETNETHER_TITLE 1193
#define IDS_RESPAWN 1194
#define IDS_RESUME_GAME 1195
#define IDS_RETURNEDTOMENU_TITLE 1196
#define IDS_RETURNEDTOTITLESCREEN_TEXT 1197
#define IDS_RICHPRESENCE_GAMESTATE 1198
#define IDS_RICHPRESENCE_IDLE 1199
#define IDS_RICHPRESENCE_MENUS 1200
#define IDS_RICHPRESENCE_MULTIPLAYER 1201
#define IDS_RICHPRESENCE_MULTIPLAYER_1P 1202
#define IDS_RICHPRESENCE_MULTIPLAYER_1POFFLINE 1203
#define IDS_RICHPRESENCE_MULTIPLAYEROFFLINE 1204
#define IDS_RICHPRESENCESTATE_ANVIL 1205
#define IDS_RICHPRESENCESTATE_BLANK 1206
#define IDS_RICHPRESENCESTATE_BOATING 1207
#define IDS_RICHPRESENCESTATE_BREWING 1208
#define IDS_RICHPRESENCESTATE_CD 1209
#define IDS_RICHPRESENCESTATE_CRAFTING 1210
#define IDS_RICHPRESENCESTATE_ENCHANTING 1211
#define IDS_RICHPRESENCESTATE_FISHING 1212
#define IDS_RICHPRESENCESTATE_FORGING 1213
#define IDS_RICHPRESENCESTATE_MAP 1214
#define IDS_RICHPRESENCESTATE_NETHER 1215
#define IDS_RICHPRESENCESTATE_RIDING_MINECART 1216
#define IDS_RICHPRESENCESTATE_RIDING_PIG 1217
#define IDS_RICHPRESENCESTATE_TRADING 1218
#define IDS_SAVE_GAME 1219
#define IDS_SAVE_ICON_MESSAGE 1220
#define IDS_SAVE_INCOMPLETE_DELETE_SAVES 1221
#define IDS_SAVE_INCOMPLETE_DISABLE_SAVING 1222
#define IDS_SAVE_INCOMPLETE_EXPLANATION_LOCAL_STORAGE 1223
#define IDS_SAVE_INCOMPLETE_EXPLANATION_QUOTA 1224
#define IDS_SAVE_INCOMPLETE_RETRY_SAVING 1225
#define IDS_SAVE_INCOMPLETE_TITLE 1226
#define IDS_SAVE_SUBTITLE_SUFFIX 1227
#define IDS_SAVE_TRANSFER_DOWNLOADCOMPLETE 1228
#define IDS_SAVE_TRANSFER_DOWNLOADFAILED 1229
#define IDS_SAVE_TRANSFER_NOT_AVAILABLE_TEXT 1230
#define IDS_SAVE_TRANSFER_TEXT 1231
#define IDS_SAVECACHEFILE 1232
#define IDS_SAVEDATA_COPIED_TEXT 1233
#define IDS_SAVEDATA_COPIED_TITLE 1234
#define IDS_SAVETRANSFER_STAGE_CONVERTING 1235
#define IDS_SAVETRANSFER_STAGE_GET_DATA 1236
#define IDS_SAVETRANSFER_STAGE_PUT_DATA 1237
#define IDS_SAVETRANSFER_STAGE_SAVING 1238
#define IDS_SEED 1239
#define IDS_SELECTAGAIN 1240
#define IDS_SELECTED 1241
#define IDS_SELECTED_SKIN 1242
#define IDS_SETTINGS 1243
#define IDS_SHEEP 1244
#define IDS_SIGN_TITLE 1245
#define IDS_SIGN_TITLE_TEXT 1246
#define IDS_SIGNIN_PSN 1247
#define IDS_SILVERFISH 1248
#define IDS_SKELETON 1249
#define IDS_SKINS 1250
#define IDS_SLIDER_AUTOSAVE 1251
#define IDS_SLIDER_AUTOSAVE_OFF 1252
#define IDS_SLIDER_DIFFICULTY 1253
#define IDS_SLIDER_GAMMA 1254
#define IDS_SLIDER_INTERFACEOPACITY 1255
#define IDS_SLIDER_MUSIC 1256
#define IDS_SLIDER_SENSITIVITY_INGAME 1257
#define IDS_SLIDER_SENSITIVITY_INMENU 1258
#define IDS_SLIDER_SOUND 1259
#define IDS_SLIDER_UISIZE 1260
#define IDS_SLIDER_UISIZESPLITSCREEN 1261
#define IDS_SLIME 1262
#define IDS_SNOWMAN 1263
#define IDS_SOCIAL_DEFAULT_CAPTION 1264
#define IDS_SOCIAL_DEFAULT_DESCRIPTION 1265
#define IDS_SOCIAL_LABEL_CAPTION 1266
#define IDS_SOCIAL_LABEL_DESCRIPTION 1267
#define IDS_SOCIAL_TEXT 1268
#define IDS_SOUTHPAW 1269
#define IDS_SPIDER 1270
#define IDS_SQUID 1271
#define IDS_START_GAME 1272
#define IDS_STO_SAVING_LONG 1273
#define IDS_STO_SAVING_SHORT 1274
#define IDS_STRINGVERIFY_AWAITING_APPROVAL 1275
#define IDS_STRINGVERIFY_CENSORED 1276
#define IDS_SUPERFLAT_WORLD 1277
#define IDS_SURVIVAL 1278
#define IDS_TELEPORT 1279
#define IDS_TELEPORT_TO_ME 1280
#define IDS_TELEPORT_TO_PLAYER 1281
#define IDS_TEXT_COPY_SAVE 1282
#define IDS_TEXT_DELETE_SAVE 1283
#define IDS_TEXT_SAVEOPTIONS 1284
#define IDS_TEXTURE_PACK_TRIALVERSION 1285
#define IDS_TEXTUREPACK_FULLVERSION 1286
#define IDS_THEMES 1287
#define IDS_TILE_ANVIL 1288
#define IDS_TILE_ANVIL_INTACT 1289
#define IDS_TILE_ANVIL_SLIGHTLYDAMAGED 1290
#define IDS_TILE_ANVIL_VERYDAMAGED 1291
#define IDS_TILE_BED 1292
#define IDS_TILE_BED_MESLEEP 1293
#define IDS_TILE_BED_NO_SLEEP 1294
#define IDS_TILE_BED_NOT_VALID 1295
#define IDS_TILE_BED_NOTSAFE 1296
#define IDS_TILE_BED_OCCUPIED 1297
#define IDS_TILE_BED_PLAYERSLEEP 1298
#define IDS_TILE_BEDROCK 1299
#define IDS_TILE_BIRCH 1300
#define IDS_TILE_BIRCHWOOD_PLANKS 1301
#define IDS_TILE_BLOCK_DIAMOND 1302
#define IDS_TILE_BLOCK_GOLD 1303
#define IDS_TILE_BLOCK_IRON 1304
#define IDS_TILE_BLOCK_LAPIS 1305
#define IDS_TILE_BOOKSHELF 1306
#define IDS_TILE_BREWINGSTAND 1307
#define IDS_TILE_BRICK 1308
#define IDS_TILE_BUTTON 1309
#define IDS_TILE_CACTUS 1310
#define IDS_TILE_CAKE 1311
#define IDS_TILE_CARPET 1312
#define IDS_TILE_CARPET_BLACK 1313
#define IDS_TILE_CARPET_BLUE 1314
#define IDS_TILE_CARPET_BROWN 1315
#define IDS_TILE_CARPET_CYAN 1316
#define IDS_TILE_CARPET_GRAY 1317
#define IDS_TILE_CARPET_GREEN 1318
#define IDS_TILE_CARPET_LIGHT_BLUE 1319
#define IDS_TILE_CARPET_LIME 1320
#define IDS_TILE_CARPET_MAGENTA 1321
#define IDS_TILE_CARPET_ORANGE 1322
#define IDS_TILE_CARPET_PINK 1323
#define IDS_TILE_CARPET_PURPLE 1324
#define IDS_TILE_CARPET_RED 1325
#define IDS_TILE_CARPET_SILVER 1326
#define IDS_TILE_CARPET_WHITE 1327
#define IDS_TILE_CARPET_YELLOW 1328
#define IDS_TILE_CARROTS 1329
#define IDS_TILE_CAULDRON 1330
#define IDS_TILE_CHEST 1331
#define IDS_TILE_CLAY 1332
#define IDS_TILE_CLOTH 1333
#define IDS_TILE_CLOTH_BLACK 1334
#define IDS_TILE_CLOTH_BLUE 1335
#define IDS_TILE_CLOTH_BROWN 1336
#define IDS_TILE_CLOTH_CYAN 1337
#define IDS_TILE_CLOTH_GRAY 1338
#define IDS_TILE_CLOTH_GREEN 1339
#define IDS_TILE_CLOTH_LIGHT_BLUE 1340
#define IDS_TILE_CLOTH_LIME 1341
#define IDS_TILE_CLOTH_MAGENTA 1342
#define IDS_TILE_CLOTH_ORANGE 1343
#define IDS_TILE_CLOTH_PINK 1344
#define IDS_TILE_CLOTH_PURPLE 1345
#define IDS_TILE_CLOTH_RED 1346
#define IDS_TILE_CLOTH_SILVER 1347
#define IDS_TILE_CLOTH_WHITE 1348
#define IDS_TILE_CLOTH_YELLOW 1349
#define IDS_TILE_COBBLESTONE_WALL 1350
#define IDS_TILE_COBBLESTONE_WALL_MOSSY 1351
#define IDS_TILE_COCOA 1352
#define IDS_TILE_CROPS 1353
#define IDS_TILE_DEAD_BUSH 1354
#define IDS_TILE_DETECTOR_RAIL 1355
#define IDS_TILE_DIODE 1356
#define IDS_TILE_DIRT 1357
#define IDS_TILE_DISPENSER 1358
#define IDS_TILE_DOOR_IRON 1359
#define IDS_TILE_DOOR_WOOD 1360
#define IDS_TILE_DRAGONEGG 1361
#define IDS_TILE_EMERALDBLOCK 1362
#define IDS_TILE_EMERALDORE 1363
#define IDS_TILE_ENCHANTMENTTABLE 1364
#define IDS_TILE_END_PORTAL 1365
#define IDS_TILE_ENDERCHEST 1366
#define IDS_TILE_ENDPORTALFRAME 1367
#define IDS_TILE_FARMLAND 1368
#define IDS_TILE_FENCE 1369
#define IDS_TILE_FENCE_GATE 1370
#define IDS_TILE_FERN 1371
#define IDS_TILE_FIRE 1372
#define IDS_TILE_FLOWER 1373
#define IDS_TILE_FLOWERPOT 1374
#define IDS_TILE_FURNACE 1375
#define IDS_TILE_GLASS 1376
#define IDS_TILE_GOLDEN_RAIL 1377
#define IDS_TILE_GRASS 1378
#define IDS_TILE_GRAVEL 1379
#define IDS_TILE_HELL_ROCK 1380
#define IDS_TILE_HELL_SAND 1381
#define IDS_TILE_HUGE_MUSHROOM_1 1382
#define IDS_TILE_HUGE_MUSHROOM_2 1383
#define IDS_TILE_ICE 1384
#define IDS_TILE_IRON_FENCE 1385
#define IDS_TILE_JUKEBOX 1386
#define IDS_TILE_JUNGLE_PLANKS 1387
#define IDS_TILE_LADDER 1388
#define IDS_TILE_LAVA 1389
#define IDS_TILE_LEAVES 1390
#define IDS_TILE_LEAVES_BIRCH 1391
#define IDS_TILE_LEAVES_JUNGLE 1392
#define IDS_TILE_LEAVES_OAK 1393
#define IDS_TILE_LEAVES_SPRUCE 1394
#define IDS_TILE_LEVER 1395
#define IDS_TILE_LIGHT_GEM 1396
#define IDS_TILE_LIT_PUMPKIN 1397
#define IDS_TILE_LOCKED_CHEST 1398
#define IDS_TILE_LOG 1399
#define IDS_TILE_LOG_BIRCH 1400
#define IDS_TILE_LOG_JUNGLE 1401
#define IDS_TILE_LOG_OAK 1402
#define IDS_TILE_LOG_SPRUCE 1403
#define IDS_TILE_MELON 1404
#define IDS_TILE_MELON_STEM 1405
#define IDS_TILE_MOB_SPAWNER 1406
#define IDS_TILE_MONSTER_STONE_EGG 1407
#define IDS_TILE_MUSHROOM 1408
#define IDS_TILE_MUSIC_BLOCK 1409
#define IDS_TILE_MYCEL 1410
#define IDS_TILE_NETHER_QUARTZ 1411
#define IDS_TILE_NETHERBRICK 1412
#define IDS_TILE_NETHERFENCE 1413
#define IDS_TILE_NETHERSTALK 1414
#define IDS_TILE_NOT_GATE 1415
#define IDS_TILE_OAK 1416
#define IDS_TILE_OAKWOOD_PLANKS 1417
#define IDS_TILE_OBSIDIAN 1418
#define IDS_TILE_ORE_COAL 1419
#define IDS_TILE_ORE_DIAMOND 1420
#define IDS_TILE_ORE_GOLD 1421
#define IDS_TILE_ORE_IRON 1422
#define IDS_TILE_ORE_LAPIS 1423
#define IDS_TILE_ORE_REDSTONE 1424
#define IDS_TILE_PISTON_BASE 1425
#define IDS_TILE_PISTON_STICK_BASE 1426
#define IDS_TILE_PORTAL 1427
#define IDS_TILE_POTATOES 1428
#define IDS_TILE_PRESSURE_PLATE 1429
#define IDS_TILE_PUMPKIN 1430
#define IDS_TILE_PUMPKIN_STEM 1431
#define IDS_TILE_QUARTZ_BLOCK 1432
#define IDS_TILE_QUARTZ_BLOCK_CHISELED 1433
#define IDS_TILE_QUARTZ_BLOCK_LINES 1434
#define IDS_TILE_RAIL 1435
#define IDS_TILE_REDSTONE_DUST 1436
#define IDS_TILE_REDSTONE_LIGHT 1437
#define IDS_TILE_REEDS 1438
#define IDS_TILE_ROSE 1439
#define IDS_TILE_SAND 1440
#define IDS_TILE_SANDSTONE 1441
#define IDS_TILE_SANDSTONE_CHISELED 1442
#define IDS_TILE_SANDSTONE_SMOOTH 1443
#define IDS_TILE_SAPLING 1444
#define IDS_TILE_SAPLING_BIRCH 1445
#define IDS_TILE_SAPLING_JUNGLE 1446
#define IDS_TILE_SAPLING_OAK 1447
#define IDS_TILE_SAPLING_SPRUCE 1448
#define IDS_TILE_SHRUB 1449
#define IDS_TILE_SIGN 1450
#define IDS_TILE_SKULL 1451
#define IDS_TILE_SNOW 1452
#define IDS_TILE_SPONGE 1453
#define IDS_TILE_SPRUCE 1454
#define IDS_TILE_SPRUCEWOOD_PLANKS 1455
#define IDS_TILE_STAIRS_BIRCHWOOD 1456
#define IDS_TILE_STAIRS_BRICKS 1457
#define IDS_TILE_STAIRS_JUNGLEWOOD 1458
#define IDS_TILE_STAIRS_NETHERBRICK 1459
#define IDS_TILE_STAIRS_QUARTZ 1460
#define IDS_TILE_STAIRS_SANDSTONE 1461
#define IDS_TILE_STAIRS_SPRUCEWOOD 1462
#define IDS_TILE_STAIRS_STONE 1463
#define IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH 1464
#define IDS_TILE_STAIRS_WOOD 1465
#define IDS_TILE_STONE 1466
#define IDS_TILE_STONE_BRICK 1467
#define IDS_TILE_STONE_BRICK_SMOOTH 1468
#define IDS_TILE_STONE_BRICK_SMOOTH_CHISELED 1469
#define IDS_TILE_STONE_BRICK_SMOOTH_CRACKED 1470
#define IDS_TILE_STONE_BRICK_SMOOTH_MOSSY 1471
#define IDS_TILE_STONE_MOSS 1472
#define IDS_TILE_STONE_SILVERFISH 1473
#define IDS_TILE_STONE_SILVERFISH_COBBLESTONE 1474
#define IDS_TILE_STONE_SILVERFISH_STONE_BRICK 1475
#define IDS_TILE_STONESLAB 1476
#define IDS_TILE_STONESLAB_BIRCH 1477
#define IDS_TILE_STONESLAB_BRICK 1478
#define IDS_TILE_STONESLAB_COBBLE 1479
#define IDS_TILE_STONESLAB_JUNGLE 1480
#define IDS_TILE_STONESLAB_NETHERBRICK 1481
#define IDS_TILE_STONESLAB_OAK 1482
#define IDS_TILE_STONESLAB_QUARTZ 1483
#define IDS_TILE_STONESLAB_SAND 1484
#define IDS_TILE_STONESLAB_SMOOTHBRICK 1485
#define IDS_TILE_STONESLAB_SPRUCE 1486
#define IDS_TILE_STONESLAB_STONE 1487
#define IDS_TILE_STONESLAB_WOOD 1488
#define IDS_TILE_TALL_GRASS 1489
#define IDS_TILE_THIN_GLASS 1490
#define IDS_TILE_TNT 1491
#define IDS_TILE_TORCH 1492
#define IDS_TILE_TORCHCHARCOAL 1493
#define IDS_TILE_TORCHCOAL 1494
#define IDS_TILE_TRAPDOOR 1495
#define IDS_TILE_TRIPWIRE 1496
#define IDS_TILE_TRIPWIRE_SOURCE 1497
#define IDS_TILE_VINE 1498
#define IDS_TILE_WATER 1499
#define IDS_TILE_WATERLILY 1500
#define IDS_TILE_WEB 1501
#define IDS_TILE_WHITESTONE 1502
#define IDS_TILE_WORKBENCH 1503
#define IDS_TIPS_GAMETIP_0 1504
#define IDS_TIPS_GAMETIP_1 1505
#define IDS_TIPS_GAMETIP_10 1506
#define IDS_TIPS_GAMETIP_11 1507
#define IDS_TIPS_GAMETIP_12 1508
#define IDS_TIPS_GAMETIP_13 1509
#define IDS_TIPS_GAMETIP_14 1510
#define IDS_TIPS_GAMETIP_15 1511
#define IDS_TIPS_GAMETIP_16 1512
#define IDS_TIPS_GAMETIP_17 1513
#define IDS_TIPS_GAMETIP_18 1514
#define IDS_TIPS_GAMETIP_19 1515
#define IDS_TIPS_GAMETIP_2 1516
#define IDS_TIPS_GAMETIP_20 1517
#define IDS_TIPS_GAMETIP_21 1518
#define IDS_TIPS_GAMETIP_22 1519
#define IDS_TIPS_GAMETIP_23 1520
#define IDS_TIPS_GAMETIP_24 1521
#define IDS_TIPS_GAMETIP_25 1522
#define IDS_TIPS_GAMETIP_26 1523
#define IDS_TIPS_GAMETIP_27 1524
#define IDS_TIPS_GAMETIP_28 1525
#define IDS_TIPS_GAMETIP_29 1526
#define IDS_TIPS_GAMETIP_3 1527
#define IDS_TIPS_GAMETIP_30 1528
#define IDS_TIPS_GAMETIP_31 1529
#define IDS_TIPS_GAMETIP_32 1530
#define IDS_TIPS_GAMETIP_33 1531
#define IDS_TIPS_GAMETIP_34 1532
#define IDS_TIPS_GAMETIP_35 1533
#define IDS_TIPS_GAMETIP_36 1534
#define IDS_TIPS_GAMETIP_37 1535
#define IDS_TIPS_GAMETIP_38 1536
#define IDS_TIPS_GAMETIP_39 1537
#define IDS_TIPS_GAMETIP_4 1538
#define IDS_TIPS_GAMETIP_40 1539
#define IDS_TIPS_GAMETIP_41 1540
#define IDS_TIPS_GAMETIP_42 1541
#define IDS_TIPS_GAMETIP_43 1542
#define IDS_TIPS_GAMETIP_44 1543
#define IDS_TIPS_GAMETIP_45 1544
#define IDS_TIPS_GAMETIP_46 1545
#define IDS_TIPS_GAMETIP_47 1546
#define IDS_TIPS_GAMETIP_48 1547
#define IDS_TIPS_GAMETIP_49 1548
#define IDS_TIPS_GAMETIP_5 1549
#define IDS_TIPS_GAMETIP_50 1550
#define IDS_TIPS_GAMETIP_6 1551
#define IDS_TIPS_GAMETIP_7 1552
#define IDS_TIPS_GAMETIP_8 1553
#define IDS_TIPS_GAMETIP_9 1554
#define IDS_TIPS_GAMETIP_NEWDLC 1555
#define IDS_TIPS_GAMETIP_SKINPACKS 1556
#define IDS_TIPS_TRIVIA_1 1557
#define IDS_TIPS_TRIVIA_10 1558
#define IDS_TIPS_TRIVIA_11 1559
#define IDS_TIPS_TRIVIA_12 1560
#define IDS_TIPS_TRIVIA_13 1561
#define IDS_TIPS_TRIVIA_14 1562
#define IDS_TIPS_TRIVIA_15 1563
#define IDS_TIPS_TRIVIA_16 1564
#define IDS_TIPS_TRIVIA_17 1565
#define IDS_TIPS_TRIVIA_18 1566
#define IDS_TIPS_TRIVIA_19 1567
#define IDS_TIPS_TRIVIA_2 1568
#define IDS_TIPS_TRIVIA_20 1569
#define IDS_TIPS_TRIVIA_3 1570
#define IDS_TIPS_TRIVIA_4 1571
#define IDS_TIPS_TRIVIA_5 1572
#define IDS_TIPS_TRIVIA_6 1573
#define IDS_TIPS_TRIVIA_7 1574
#define IDS_TIPS_TRIVIA_8 1575
#define IDS_TIPS_TRIVIA_9 1576
#define IDS_TITLE_DECLINE_SAVE_GAME 1577
#define IDS_TITLE_DISABLE_AUTOSAVE 1578
#define IDS_TITLE_ENABLE_AUTOSAVE 1579
#define IDS_TITLE_RENAME 1580
#define IDS_TITLE_RENAMESAVE 1581
#define IDS_TITLE_SAVE_GAME 1582
#define IDS_TITLE_START_GAME 1583
#define IDS_TITLE_UPDATE_NAME 1584
#define IDS_TITLEUPDATE 1585
#define IDS_TNT_EXPLODES 1586
#define IDS_TOOLTIPS_ACCEPT 1587
#define IDS_TOOLTIPS_ALL_GAMES 1588
#define IDS_TOOLTIPS_BACK 1589
#define IDS_TOOLTIPS_BANLEVEL 1590
#define IDS_TOOLTIPS_BLOCK 1591
#define IDS_TOOLTIPS_CANCEL 1592
#define IDS_TOOLTIPS_CANCEL_JOIN 1593
#define IDS_TOOLTIPS_CHANGE_FILTER 1594
#define IDS_TOOLTIPS_CHANGE_GROUP 1595
#define IDS_TOOLTIPS_CHANGEDEVICE 1596
#define IDS_TOOLTIPS_CHANGEPITCH 1597
#define IDS_TOOLTIPS_CLEAR_QUICK_SELECT 1598
#define IDS_TOOLTIPS_CLEARSLOTS 1599
#define IDS_TOOLTIPS_COLLECT 1600
#define IDS_TOOLTIPS_CONTINUE 1601
#define IDS_TOOLTIPS_CRAFTING 1602
#define IDS_TOOLTIPS_CREATE 1603
#define IDS_TOOLTIPS_CREATIVE 1604
#define IDS_TOOLTIPS_CURE 1605
#define IDS_TOOLTIPS_DELETE 1606
#define IDS_TOOLTIPS_DELETESAVE 1607
#define IDS_TOOLTIPS_DETONATE 1608
#define IDS_TOOLTIPS_DRAW_BOW 1609
#define IDS_TOOLTIPS_DRINK 1610
#define IDS_TOOLTIPS_DROP_ALL 1611
#define IDS_TOOLTIPS_DROP_GENERIC 1612
#define IDS_TOOLTIPS_DROP_ONE 1613
#define IDS_TOOLTIPS_DYE 1614
#define IDS_TOOLTIPS_DYECOLLAR 1615
#define IDS_TOOLTIPS_EAT 1616
#define IDS_TOOLTIPS_EJECT 1617
#define IDS_TOOLTIPS_EMPTY 1618
#define IDS_TOOLTIPS_EQUIP 1619
#define IDS_TOOLTIPS_EXECUTE_COMMAND 1620
#define IDS_TOOLTIPS_EXIT 1621
#define IDS_TOOLTIPS_FEED 1622
#define IDS_TOOLTIPS_FOLLOWME 1623
#define IDS_TOOLTIPS_GAME_INVITES 1624
#define IDS_TOOLTIPS_GROW 1625
#define IDS_TOOLTIPS_HANG 1626
#define IDS_TOOLTIPS_HARVEST 1627
#define IDS_TOOLTIPS_HEAL 1628
#define IDS_TOOLTIPS_HIDE 1629
#define IDS_TOOLTIPS_HIT 1630
#define IDS_TOOLTIPS_IGNITE 1631
#define IDS_TOOLTIPS_INSTALL 1632
#define IDS_TOOLTIPS_INSTALL_FULL 1633
#define IDS_TOOLTIPS_INSTALL_TRIAL 1634
#define IDS_TOOLTIPS_INVITE_FRIENDS 1635
#define IDS_TOOLTIPS_INVITE_PARTY 1636
#define IDS_TOOLTIPS_KICK 1637
#define IDS_TOOLTIPS_LOVEMODE 1638
#define IDS_TOOLTIPS_MILK 1639
#define IDS_TOOLTIPS_MINE 1640
#define IDS_TOOLTIPS_NAVIGATE 1641
#define IDS_TOOLTIPS_NEXT 1642
#define IDS_TOOLTIPS_OPEN 1643
#define IDS_TOOLTIPS_OPTIONS 1644
#define IDS_TOOLTIPS_PAGE_DOWN 1645
#define IDS_TOOLTIPS_PAGE_UP 1646
#define IDS_TOOLTIPS_PAGEDOWN 1647
#define IDS_TOOLTIPS_PAGEUP 1648
#define IDS_TOOLTIPS_PARTY_GAMES 1649
#define IDS_TOOLTIPS_PICKUP_ALL 1650
#define IDS_TOOLTIPS_PICKUP_GENERIC 1651
#define IDS_TOOLTIPS_PICKUP_HALF 1652
#define IDS_TOOLTIPS_PICKUPPLACE 1653
#define IDS_TOOLTIPS_PLACE 1654
#define IDS_TOOLTIPS_PLACE_ALL 1655
#define IDS_TOOLTIPS_PLACE_GENERIC 1656
#define IDS_TOOLTIPS_PLACE_ONE 1657
#define IDS_TOOLTIPS_PLANT 1658
#define IDS_TOOLTIPS_PLAY 1659
#define IDS_TOOLTIPS_PREVIOUS 1660
#define IDS_TOOLTIPS_PRIVILEGES 1661
#define IDS_TOOLTIPS_QUICK_MOVE 1662
#define IDS_TOOLTIPS_QUICK_MOVE_ARMOR 1663
#define IDS_TOOLTIPS_QUICK_MOVE_FUEL 1664
#define IDS_TOOLTIPS_QUICK_MOVE_INGREDIENT 1665
#define IDS_TOOLTIPS_QUICK_MOVE_TOOL 1666
#define IDS_TOOLTIPS_QUICK_MOVE_WEAPON 1667
#define IDS_TOOLTIPS_READ 1668
#define IDS_TOOLTIPS_REFRESH 1669
#define IDS_TOOLTIPS_REINSTALL 1670
#define IDS_TOOLTIPS_RELEASE_BOW 1671
#define IDS_TOOLTIPS_REPAIR 1672
#define IDS_TOOLTIPS_RIDE 1673
#define IDS_TOOLTIPS_ROTATE 1674
#define IDS_TOOLTIPS_SADDLE 1675
#define IDS_TOOLTIPS_SAIL 1676
#define IDS_TOOLTIPS_SAVEOPTIONS 1677
#define IDS_TOOLTIPS_SAVETRANSFER_DOWNLOAD 1678
#define IDS_TOOLTIPS_SELECT 1679
#define IDS_TOOLTIPS_SELECT_SKIN 1680
#define IDS_TOOLTIPS_SELECTDEVICE 1681
#define IDS_TOOLTIPS_SEND_FRIEND_REQUEST 1682
#define IDS_TOOLTIPS_SHARE 1683
#define IDS_TOOLTIPS_SHEAR 1684
#define IDS_TOOLTIPS_SHOW_DESCRIPTION 1685
#define IDS_TOOLTIPS_SHOW_INGREDIENTS 1686
#define IDS_TOOLTIPS_SHOW_INVENTORY 1687
#define IDS_TOOLTIPS_SIT 1688
#define IDS_TOOLTIPS_SLEEP 1689
#define IDS_TOOLTIPS_SWAP 1690
#define IDS_TOOLTIPS_SWIMUP 1691
#define IDS_TOOLTIPS_TAME 1692
#define IDS_TOOLTIPS_THROW 1693
#define IDS_TOOLTIPS_TILL 1694
#define IDS_TOOLTIPS_TRADE 1695
#define IDS_TOOLTIPS_UNLOCKFULLVERSION 1696
#define IDS_TOOLTIPS_USE 1697
#define IDS_TOOLTIPS_VIEW_GAMERCARD 1698
#define IDS_TOOLTIPS_VIEW_GAMERPROFILE 1699
#define IDS_TOOLTIPS_WAKEUP 1700
#define IDS_TOOLTIPS_WHAT_IS_THIS 1701
#define IDS_TRIALOVER_TEXT 1702
#define IDS_TRIALOVER_TITLE 1703
#define IDS_TRUST_PLAYERS 1704
#define IDS_TUTORIAL_BREEDING_OVERVIEW 1705
#define IDS_TUTORIAL_COMPLETED 1706
#define IDS_TUTORIAL_COMPLETED_EXPLORE 1707
#define IDS_TUTORIAL_CONSTRAINT_TUTORIAL_AREA 1708
#define IDS_TUTORIAL_CREATIVE_OVERVIEW 1709
#define IDS_TUTORIAL_FARMING_OVERVIEW 1710
#define IDS_TUTORIAL_FEATURES_IN_THIS_AREA 1711
#define IDS_TUTORIAL_FEATURES_OUTSIDE_THIS_AREA 1712
#define IDS_TUTORIAL_GOLEM_OVERVIEW 1713
#define IDS_TUTORIAL_HINT_ATTACK_WITH_TOOL 1714
#define IDS_TUTORIAL_HINT_BOAT 1715
#define IDS_TUTORIAL_HINT_CRAFT_NO_INGREDIENTS 1716
#define IDS_TUTORIAL_HINT_DIGGER_ITEM_HATCHET 1717
#define IDS_TUTORIAL_HINT_DIGGER_ITEM_PICKAXE 1718
#define IDS_TUTORIAL_HINT_DIGGER_ITEM_SHOVEL 1719
#define IDS_TUTORIAL_HINT_FISHING 1720
#define IDS_TUTORIAL_HINT_HOLD_TO_MINE 1721
#define IDS_TUTORIAL_HINT_INV_DROP 1722
#define IDS_TUTORIAL_HINT_MINECART 1723
#define IDS_TUTORIAL_HINT_PISTON_SELF_REPAIRING_BRIDGE 1724
#define IDS_TUTORIAL_HINT_SWIM_UP 1725
#define IDS_TUTORIAL_HINT_TOOL_DAMAGED 1726
#define IDS_TUTORIAL_HTML_EXIT_PICTURE 1727
#define IDS_TUTORIAL_NEW_FEATURES_CHOICE 1728
#define IDS_TUTORIAL_PORTAL_OVERVIEW 1729
#define IDS_TUTORIAL_PROMPT_ANVIL_MENU_OVERVIEW 1730
#define IDS_TUTORIAL_PROMPT_ANVIL_OVERVIEW 1731
#define IDS_TUTORIAL_PROMPT_BASIC_COMPLETE 1732
#define IDS_TUTORIAL_PROMPT_BED_OVERVIEW 1733
#define IDS_TUTORIAL_PROMPT_BOAT_OVERVIEW 1734
#define IDS_TUTORIAL_PROMPT_BREEDING_OVERVIEW 1735
#define IDS_TUTORIAL_PROMPT_BREWING_MENU_OVERVIEW 1736
#define IDS_TUTORIAL_PROMPT_BREWING_OVERVIEW 1737
#define IDS_TUTORIAL_PROMPT_CRAFT_OVERVIEW 1738
#define IDS_TUTORIAL_PROMPT_CREATIVE_INV_OVERVIEW 1739
#define IDS_TUTORIAL_PROMPT_CREATIVE_OVERVIEW 1740
#define IDS_TUTORIAL_PROMPT_ENCHANTING_MENU_OVERVIEW 1741
#define IDS_TUTORIAL_PROMPT_ENCHANTING_OVERVIEW 1742
#define IDS_TUTORIAL_PROMPT_ENDERCHEST_OVERVIEW 1743
#define IDS_TUTORIAL_PROMPT_FARMING_OVERVIEW 1744
#define IDS_TUTORIAL_PROMPT_FISHING_OVERVIEW 1745
#define IDS_TUTORIAL_PROMPT_FOOD_BAR_OVERVIEW 1746
#define IDS_TUTORIAL_PROMPT_FURNACE_OVERVIEW 1747
#define IDS_TUTORIAL_PROMPT_GOLEM_OVERVIEW 1748
#define IDS_TUTORIAL_PROMPT_INV_OVERVIEW 1749
#define IDS_TUTORIAL_PROMPT_MINECART_OVERVIEW 1750
#define IDS_TUTORIAL_PROMPT_NEW_FEATURES_CHOICE 1751
#define IDS_TUTORIAL_PROMPT_PORTAL_OVERVIEW 1752
#define IDS_TUTORIAL_PROMPT_PRESS_A_TO_CONTINUE 1753
#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_DESCRIPTION 1754
#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INGREDIENTS 1755
#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INVENTORY 1756
#define IDS_TUTORIAL_PROMPT_REDSTONE_OVERVIEW 1757
#define IDS_TUTORIAL_PROMPT_START_TUTORIAL 1758
#define IDS_TUTORIAL_PROMPT_TRADING_MENU_OVERVIEW 1759
#define IDS_TUTORIAL_PROMPT_TRADING_OVERVIEW 1760
#define IDS_TUTORIAL_REDSTONE_OVERVIEW 1761
#define IDS_TUTORIAL_REMINDER 1762
#define IDS_TUTORIAL_TASK_ACTIVATE_PORTAL 1763
#define IDS_TUTORIAL_TASK_ANVIL_COST 1764
#define IDS_TUTORIAL_TASK_ANVIL_COST2 1765
#define IDS_TUTORIAL_TASK_ANVIL_ENCHANTED_BOOKS 1766
#define IDS_TUTORIAL_TASK_ANVIL_MENU_COST 1767
#define IDS_TUTORIAL_TASK_ANVIL_MENU_ENCHANT 1768
#define IDS_TUTORIAL_TASK_ANVIL_MENU_OVERVIEW 1769
#define IDS_TUTORIAL_TASK_ANVIL_MENU_RENAMING 1770
#define IDS_TUTORIAL_TASK_ANVIL_MENU_REPAIR 1771
#define IDS_TUTORIAL_TASK_ANVIL_MENU_SACRIFICE 1772
#define IDS_TUTORIAL_TASK_ANVIL_MENU_SMITH 1773
#define IDS_TUTORIAL_TASK_ANVIL_MENU_START 1774
#define IDS_TUTORIAL_TASK_ANVIL_OVERVIEW 1775
#define IDS_TUTORIAL_TASK_ANVIL_RENAMING 1776
#define IDS_TUTORIAL_TASK_ANVIL_SUMMARY 1777
#define IDS_TUTORIAL_TASK_ANVIL_USE_CHESTS 1778
#define IDS_TUTORIAL_TASK_BASIC_COMPLETE 1779
#define IDS_TUTORIAL_TASK_BED_MULTIPLAYER 1780
#define IDS_TUTORIAL_TASK_BED_OVERVIEW 1781
#define IDS_TUTORIAL_TASK_BED_PLACEMENT 1782
#define IDS_TUTORIAL_TASK_BOAT_OVERVIEW 1783
#define IDS_TUTORIAL_TASK_BOAT_STEER 1784
#define IDS_TUTORIAL_TASK_BREEDING_BABY 1785
#define IDS_TUTORIAL_TASK_BREEDING_COMPLETE 1786
#define IDS_TUTORIAL_TASK_BREEDING_DELAY 1787
#define IDS_TUTORIAL_TASK_BREEDING_FEED 1788
#define IDS_TUTORIAL_TASK_BREEDING_FEED_FOOD 1789
#define IDS_TUTORIAL_TASK_BREEDING_FOLLOW 1790
#define IDS_TUTORIAL_TASK_BREEDING_RIDING_PIGS 1791
#define IDS_TUTORIAL_TASK_BREEDING_WOLF_COLLAR 1792
#define IDS_TUTORIAL_TASK_BREEDING_WOLF_TAMING 1793
#define IDS_TUTORIAL_TASK_BREWING_CREATE_FIRE_POTION 1794
#define IDS_TUTORIAL_TASK_BREWING_DRINK_FIRE_POTION 1795
#define IDS_TUTORIAL_TASK_BREWING_FILL_CAULDRON 1796
#define IDS_TUTORIAL_TASK_BREWING_FILL_GLASS_BOTTLE 1797
#define IDS_TUTORIAL_TASK_BREWING_GET_GLASS_BOTTLE 1798
#define IDS_TUTORIAL_TASK_BREWING_MENU_BASIC_INGREDIENTS 1799
#define IDS_TUTORIAL_TASK_BREWING_MENU_CREATE_FIRE_POTION 1800
#define IDS_TUTORIAL_TASK_BREWING_MENU_EXIT 1801
#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS 1802
#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS_2 1803
#define IDS_TUTORIAL_TASK_BREWING_MENU_METHOD 1804
#define IDS_TUTORIAL_TASK_BREWING_MENU_OVERVIEW 1805
#define IDS_TUTORIAL_TASK_BREWING_OVERVIEW 1806
#define IDS_TUTORIAL_TASK_BREWING_USE_EFFECTS 1807
#define IDS_TUTORIAL_TASK_BREWING_USE_POTION 1808
#define IDS_TUTORIAL_TASK_BUILD_PORTAL 1809
#define IDS_TUTORIAL_TASK_CHOP_WOOD 1810
#define IDS_TUTORIAL_TASK_COLLECT_RESOURCES 1811
#define IDS_TUTORIAL_TASK_CRAFT_CRAFT_TABLE 1812
#define IDS_TUTORIAL_TASK_CRAFT_CREATE 1813
#define IDS_TUTORIAL_TASK_CRAFT_CREATE_FURNACE 1814
#define IDS_TUTORIAL_TASK_CRAFT_CREATE_PLANKS 1815
#define IDS_TUTORIAL_TASK_CRAFT_DESCRIPTION 1816
#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_FURNACE 1817
#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_TABLE 1818
#define IDS_TUTORIAL_TASK_CRAFT_INGREDIENTS 1819
#define IDS_TUTORIAL_TASK_CRAFT_INVENTORY 1820
#define IDS_TUTORIAL_TASK_CRAFT_NAV 1821
#define IDS_TUTORIAL_TASK_CRAFT_OVERVIEW 1822
#define IDS_TUTORIAL_TASK_CRAFT_SELECT_CRAFTING_TABLE 1823
#define IDS_TUTORIAL_TASK_CRAFT_SELECT_STRUCTURES 1824
#define IDS_TUTORIAL_TASK_CRAFT_SELECT_TOOLS 1825
#define IDS_TUTORIAL_TASK_CRAFT_SELECT_WOODEN_SHOVEL 1826
#define IDS_TUTORIAL_TASK_CRAFT_TOOLS_BUILT 1827
#define IDS_TUTORIAL_TASK_CRAFTING 1828
#define IDS_TUTORIAL_TASK_CREATE_CHARCOAL 1829
#define IDS_TUTORIAL_TASK_CREATE_CRAFTING_TABLE 1830
#define IDS_TUTORIAL_TASK_CREATE_FURNACE 1831
#define IDS_TUTORIAL_TASK_CREATE_GLASS 1832
#define IDS_TUTORIAL_TASK_CREATE_PLANKS 1833
#define IDS_TUTORIAL_TASK_CREATE_STICKS 1834
#define IDS_TUTORIAL_TASK_CREATE_TORCH 1835
#define IDS_TUTORIAL_TASK_CREATE_WOODEN_DOOR 1836
#define IDS_TUTORIAL_TASK_CREATE_WOODEN_HATCHET 1837
#define IDS_TUTORIAL_TASK_CREATE_WOODEN_PICKAXE 1838
#define IDS_TUTORIAL_TASK_CREATE_WOODEN_SHOVEL 1839
#define IDS_TUTORIAL_TASK_CREATIVE_COMPLETE 1840
#define IDS_TUTORIAL_TASK_CREATIVE_EXIT 1841
#define IDS_TUTORIAL_TASK_CREATIVE_INV_DROP 1842
#define IDS_TUTORIAL_TASK_CREATIVE_INV_EXIT 1843
#define IDS_TUTORIAL_TASK_CREATIVE_INV_INFO 1844
#define IDS_TUTORIAL_TASK_CREATIVE_INV_MOVE 1845
#define IDS_TUTORIAL_TASK_CREATIVE_INV_NAV 1846
#define IDS_TUTORIAL_TASK_CREATIVE_INV_OVERVIEW 1847
#define IDS_TUTORIAL_TASK_CREATIVE_INV_PICK_UP 1848
#define IDS_TUTORIAL_TASK_CREATIVE_MODE 1849
#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKCASES 1850
#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKS 1851
#define IDS_TUTORIAL_TASK_ENCHANTING_BOTTLE_O_ENCHANTING 1852
#define IDS_TUTORIAL_TASK_ENCHANTING_EXPERIENCE 1853
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_BETTER_ENCHANTMENTS 1854
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_COST 1855
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANT 1856
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANTMENTS 1857
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_OVERVIEW 1858
#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_START 1859
#define IDS_TUTORIAL_TASK_ENCHANTING_OVERVIEW 1860
#define IDS_TUTORIAL_TASK_ENCHANTING_SUMMARY 1861
#define IDS_TUTORIAL_TASK_ENCHANTING_USE_CHESTS 1862
#define IDS_TUTORIAL_TASK_ENDERCHEST_FUNCTION 1863
#define IDS_TUTORIAL_TASK_ENDERCHEST_OVERVIEW 1864
#define IDS_TUTORIAL_TASK_ENDERCHEST_PLAYERS 1865
#define IDS_TUTORIAL_TASK_ENDERCHEST_SUMMARY 1866
#define IDS_TUTORIAL_TASK_FARMING_BONEMEAL 1867
#define IDS_TUTORIAL_TASK_FARMING_CACTUS 1868
#define IDS_TUTORIAL_TASK_FARMING_CARROTS_AND_POTATOES 1869
#define IDS_TUTORIAL_TASK_FARMING_COMPLETE 1870
#define IDS_TUTORIAL_TASK_FARMING_FARMLAND 1871
#define IDS_TUTORIAL_TASK_FARMING_MUSHROOM 1872
#define IDS_TUTORIAL_TASK_FARMING_PUMPKIN_AND_MELON 1873
#define IDS_TUTORIAL_TASK_FARMING_SEEDS 1874
#define IDS_TUTORIAL_TASK_FARMING_SUGARCANE 1875
#define IDS_TUTORIAL_TASK_FARMING_WHEAT 1876
#define IDS_TUTORIAL_TASK_FISHING_CAST 1877
#define IDS_TUTORIAL_TASK_FISHING_FISH 1878
#define IDS_TUTORIAL_TASK_FISHING_OVERVIEW 1879
#define IDS_TUTORIAL_TASK_FISHING_USES 1880
#define IDS_TUTORIAL_TASK_FLY 1881
#define IDS_TUTORIAL_TASK_FOOD_BAR_DEPLETE 1882
#define IDS_TUTORIAL_TASK_FOOD_BAR_EAT_STEAK 1883
#define IDS_TUTORIAL_TASK_FOOD_BAR_FEED 1884
#define IDS_TUTORIAL_TASK_FOOD_BAR_HEAL 1885
#define IDS_TUTORIAL_TASK_FOOD_BAR_OVERVIEW 1886
#define IDS_TUTORIAL_TASK_FURNACE_CHARCOAL_USES 1887
#define IDS_TUTORIAL_TASK_FURNACE_CREATE_CHARCOAL 1888
#define IDS_TUTORIAL_TASK_FURNACE_CREATE_GLASS 1889
#define IDS_TUTORIAL_TASK_FURNACE_FUELS 1890
#define IDS_TUTORIAL_TASK_FURNACE_INGREDIENTS 1891
#define IDS_TUTORIAL_TASK_FURNACE_METHOD 1892
#define IDS_TUTORIAL_TASK_FURNACE_OVERVIEW 1893
#define IDS_TUTORIAL_TASK_GOLEM_IRON 1894
#define IDS_TUTORIAL_TASK_GOLEM_IRON_VILLAGE 1895
#define IDS_TUTORIAL_TASK_GOLEM_PUMPKIN 1896
#define IDS_TUTORIAL_TASK_GOLEM_SNOW 1897
#define IDS_TUTORIAL_TASK_INV_DROP 1898
#define IDS_TUTORIAL_TASK_INV_EXIT 1899
#define IDS_TUTORIAL_TASK_INV_INFO 1900
#define IDS_TUTORIAL_TASK_INV_MOVE 1901
#define IDS_TUTORIAL_TASK_INV_OVERVIEW 1902
#define IDS_TUTORIAL_TASK_INV_PICK_UP 1903
#define IDS_TUTORIAL_TASK_INVENTORY 1904
#define IDS_TUTORIAL_TASK_JUMP 1905
#define IDS_TUTORIAL_TASK_LOOK 1906
#define IDS_TUTORIAL_TASK_MINE 1907
#define IDS_TUTORIAL_TASK_MINE_STONE 1908
#define IDS_TUTORIAL_TASK_MINECART_OVERVIEW 1909
#define IDS_TUTORIAL_TASK_MINECART_POWERED_RAILS 1910
#define IDS_TUTORIAL_TASK_MINECART_PUSHING 1911
#define IDS_TUTORIAL_TASK_MINECART_RAILS 1912
#define IDS_TUTORIAL_TASK_MOVE 1913
#define IDS_TUTORIAL_TASK_NEARBY_SHELTER 1914
#define IDS_TUTORIAL_TASK_NETHER 1915
#define IDS_TUTORIAL_TASK_NETHER_FAST_TRAVEL 1916
#define IDS_TUTORIAL_TASK_NIGHT_DANGER 1917
#define IDS_TUTORIAL_TASK_OPEN_CONTAINER 1918
#define IDS_TUTORIAL_TASK_OPEN_CREATIVE_INVENTORY 1919
#define IDS_TUTORIAL_TASK_OPEN_WORKBENCH 1920
#define IDS_TUTORIAL_TASK_OVERVIEW 1921
#define IDS_TUTORIAL_TASK_PISTONS 1922
#define IDS_TUTORIAL_TASK_PLACE_AND_OPEN_FURNACE 1923
#define IDS_TUTORIAL_TASK_PLACE_DOOR 1924
#define IDS_TUTORIAL_TASK_PLACE_WORKBENCH 1925
#define IDS_TUTORIAL_TASK_REDSTONE_DUST 1926
#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES 1927
#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES_POSITION 1928
#define IDS_TUTORIAL_TASK_REDSTONE_REPEATER 1929
#define IDS_TUTORIAL_TASK_REDSTONE_TRIPWIRE 1930
#define IDS_TUTORIAL_TASK_SCROLL 1931
#define IDS_TUTORIAL_TASK_SPRINT 1932
#define IDS_TUTORIAL_TASK_TRADING_DECREASE_TRADES 1933
#define IDS_TUTORIAL_TASK_TRADING_INCREASE_TRADES 1934
#define IDS_TUTORIAL_TASK_TRADING_MENU_DETAILS 1935
#define IDS_TUTORIAL_TASK_TRADING_MENU_INVENTORY 1936
#define IDS_TUTORIAL_TASK_TRADING_MENU_OVERVIEW 1937
#define IDS_TUTORIAL_TASK_TRADING_MENU_START 1938
#define IDS_TUTORIAL_TASK_TRADING_MENU_TRADE 1939
#define IDS_TUTORIAL_TASK_TRADING_MENU_UNAVAILABLE 1940
#define IDS_TUTORIAL_TASK_TRADING_OVERVIEW 1941
#define IDS_TUTORIAL_TASK_TRADING_SUMMARY 1942
#define IDS_TUTORIAL_TASK_TRADING_TRADES 1943
#define IDS_TUTORIAL_TASK_TRADING_USE_CHESTS 1944
#define IDS_TUTORIAL_TASK_TRY_IT 1945
#define IDS_TUTORIAL_TASK_USE 1946
#define IDS_TUTORIAL_TASK_USE_PORTAL 1947
#define IDS_TUTORIALSAVENAME 1948
#define IDS_UNHIDE_MASHUP_WORLDS 1949
#define IDS_UNLOCK_ACCEPT_INVITE 1950
#define IDS_UNLOCK_ACHIEVEMENT_TEXT 1951
#define IDS_UNLOCK_DLC_SKIN 1952
#define IDS_UNLOCK_DLC_TEXTUREPACK_TEXT 1953
#define IDS_UNLOCK_DLC_TEXTUREPACK_TITLE 1954
#define IDS_UNLOCK_DLC_TITLE 1955
#define IDS_UNLOCK_FULL_GAME 1956
#define IDS_UNLOCK_GUEST_TEXT 1957
#define IDS_UNLOCK_KICK_PLAYER 1958
#define IDS_UNLOCK_KICK_PLAYER_TITLE 1959
#define IDS_UNLOCK_THEME_TEXT 1960
#define IDS_UNLOCK_TITLE 1961
#define IDS_UNLOCK_TOSAVE_TEXT 1962
#define IDS_USER_INTERFACE 1963
#define IDS_USING_TRIAL_TEXUREPACK_WARNING 1964
#define IDS_VIEW_BOBBING 1965
#define IDS_VILLAGER 1966
#define IDS_VILLAGER_BUTCHER 1967
#define IDS_VILLAGER_FARMER 1968
#define IDS_VILLAGER_LIBRARIAN 1969
#define IDS_VILLAGER_OFFERS_ITEM 1970
#define IDS_VILLAGER_PRIEST 1971
#define IDS_VILLAGER_SMITH 1972
#define IDS_WARNING_ARCADE_TEXT 1973
#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TEXT 1974
#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TITLE 1975
#define IDS_WIN_TEXT 1976
#define IDS_WIN_TEXT_PART_2 1977
#define IDS_WIN_TEXT_PART_3 1978
#define IDS_WOLF 1979
#define IDS_WORLD_NAME 1980
#define IDS_WORLD_OPTIONS 1981
#define IDS_WORLD_SIZE 1982
#define IDS_WORLD_SIZE_TITLE_CLASSIC 1983
#define IDS_WORLD_SIZE_TITLE_LARGE 1984
#define IDS_WORLD_SIZE_TITLE_MEDIUM 1985
#define IDS_WORLD_SIZE_TITLE_SMALL 1986
#define IDS_YES 1987
#define IDS_YOU_DIED 1988
#define IDS_YOU_HAVE 1989
#define IDS_ZOMBIE 1990