forked from LizzyMaybeDev/Monkey-lang-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_US.lang
2676 lines (2546 loc) · 121 KB
/
en_US.lang
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
language.name=Monke
language.region=US
language.code=en_US
gui.done=Monke
gui.cancel=Cancel Monke
gui.back=Back to Monke
gui.toTitle=Back to Monke screen
gui.toMenu=Back to Monke list
gui.up=Up
gui.down=Down
gui.yes=Yes
gui.no=No
gui.none=None
gui.all=All
translation.test.none=Hello, Monkeys!
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=Monke
menu.game=Game Monke
menu.singleplayer=Monkeplayer
menu.multiplayer=Monkeysplayer
menu.online=Monke Realm
menu.options=Monke Options...
menu.quit=Monke quit
menu.returnToMenu=Save and Quit to Monke
menu.disconnect=Leave Monke
menu.returnToGame=Back to Monkeys
menu.switchingLevel=Switching Monkeys
menu.generatingLevel=Generating Monke
menu.loadingLevel=Loading Monke
menu.generatingTerrain=Building Monkeys
menu.convertingLevel=Converting Monke
menu.simulating=Simulating Monke for a bit
menu.respawning=ReMonkeing
menu.shareToLan=Open to Monkeys
selectWorld.title=Select Monke
selectWorld.empty=no Monke
selectWorld.world=Monke world
selectWorld.select=Play Selected Monke
selectWorld.create=Create New Monke
selectWorld.recreate=Re-Monke
selectWorld.createDemo=Play New Demo Monke
selectWorld.delete=Delete Monke
selectWorld.rename=Rename Monke
selectWorld.deleteQuestion=Are you sure you want to delete this Monke?
selectWorld.deleteWarning=will be lost forever! (A long Monke!)
selectWorld.deleteButton=Kill Monke
selectWorld.renameButton=Rename Monke
selectWorld.renameTitle=Rename Monke
selectWorld.conversion=Must be Monkeed!
selectWorld.newWorld=New Monke
selectWorld.newWorld.copyOf=Copy of %s
selectWorld.enterName=Monke Name
selectWorld.resultFolder=The Monke will be saved in:
selectWorld.enterSeed=Seed for Monke Generator
selectWorld.seedInfo=Leave blank for a random Monke
selectWorld.cheats=Cheats (Monke)
selectWorld.customizeType=Customize Monke
createWorld.customize.presets=Monke presets
createWorld.customize.presets.title=Select a Monke
createWorld.customize.presets.select=Use a Monke
createWorld.customize.presets.share=Want to share your Monke with someone? Use the below box!
createWorld.customize.presets.list=Alternatively, here's some Monkeys we made earlier!
createWorld.customize.flat.title=Superflat Monke Customization
createWorld.customize.flat.tile=Monke Layer Material
createWorld.customize.flat.height=Monke Height
createWorld.customize.flat.addLayer=Add Monke Layer
createWorld.customize.flat.editLayer=Edit Monke Layer
createWorld.customize.flat.removeLayer=Remove Monke Layer
createWorld.customize.flat.layer.top=Top of Monke - %d
createWorld.customize.flat.layer=%d
createWorld.customize.flat.layer.bottom=Bottom of Monke- %d
createWorld.customize.custom.page0=Basic Monkeys
createWorld.customize.custom.page1=Ore Monkeys
createWorld.customize.custom.page2=Advanced Monkeys (Expert Monke Only!)
createWorld.customize.custom.page3=Extra Advanced Monkeys (Expert Monke Only!)
createWorld.customize.custom.randomize=Randomize the Monke
createWorld.customize.custom.prev=Previous Monke
createWorld.customize.custom.next=Next Monke
createWorld.customize.custom.defaults=Default Monke
createWorld.customize.custom.confirm1=This will overwrite your current Monke
createWorld.customize.custom.confirm2=Monkeys and cannot be undone.
createWorld.customize.custom.confirmTitle=Warning (dangerous Monke!)
createWorld.customize.custom.mainNoiseScaleX=Main Monke Noise Scale X
createWorld.customize.custom.mainNoiseScaleY=Main Monke Noise Scale Y
createWorld.customize.custom.mainNoiseScaleZ=Main Monke Noise Scale Z
createWorld.customize.custom.depthNoiseScaleX=Depth Monke Noise Scale X
createWorld.customize.custom.depthNoiseScaleZ=Depth Monke Noise Scale Z
createWorld.customize.custom.depthNoiseScaleExponent=Depth Monke Noise Exponent
createWorld.customize.custom.baseSize=Depth Base Monke Size
createWorld.customize.custom.coordinateScale=Coordinate Monke Scale
createWorld.customize.custom.heightScale=Monke Height Scale
createWorld.customize.custom.stretchY=Monke Height Stretch
createWorld.customize.custom.upperLimitScale=Upper Monke Limit Scale
createWorld.customize.custom.lowerLimitScale=Lower Monke Limit Scale
createWorld.customize.custom.biomeDepthWeight=Biome Monke Depth Weight
createWorld.customize.custom.biomeDepthOffset=Biome Monke Depth Offset
createWorld.customize.custom.biomeScaleWeight=Biome Monke Scale Weight
createWorld.customize.custom.biomeScaleOffset=Biome Monke Scale Offset
createWorld.customize.custom.seaLevel=Sea Monke Level
createWorld.customize.custom.useCaves=Monke Caves
createWorld.customize.custom.useStrongholds=Monke Strongholds
createWorld.customize.custom.useVillages=Monke Villages
createWorld.customize.custom.useMineShafts=Monkeyshafts
createWorld.customize.custom.useTemples=Monke Temples
createWorld.customize.custom.useMonuments=Monke Ocean Monuments
createWorld.customize.custom.useRavines=Monke Ravines
createWorld.customize.custom.useDungeons=Monke Dungeons
createWorld.customize.custom.dungeonChance=Monke Dungeon Count
createWorld.customize.custom.useWaterLakes=Water Monke Lakes
createWorld.customize.custom.waterLakeChance=Water Lake Monke Rarity
createWorld.customize.custom.useLavaLakes=Monke Lava Lakes
createWorld.customize.custom.lavaLakeChance=Lava Lake Monke Rarity
createWorld.customize.custom.useLavaOceans=Lava Monke Oceans
createWorld.customize.custom.fixedBiome=Monke Biome
createWorld.customize.custom.biomeSize=Monke Biome Size
createWorld.customize.custom.riverSize=Monke River Size
createWorld.customize.custom.size= Spawn Monke Size
createWorld.customize.custom.count= Spawn Tries Monke
createWorld.customize.custom.minHeight= Min Monke. Height
createWorld.customize.custom.maxHeight= Max Monke. Height
createWorld.customize.custom.center= Center Monke Height
createWorld.customize.custom.spread= Spread Monke Height
createWorld.customize.custom.presets.title=Customize Monke Presets
createWorld.customize.custom.presets=Monke Presets
createWorld.customize.custom.preset.waterWorld=Water Monke World
createWorld.customize.custom.preset.isleLand=Isle Monke Land
createWorld.customize.custom.preset.caveDelight=Caver's Monke Delight
createWorld.customize.custom.preset.mountains=Monke Madness
createWorld.customize.custom.preset.drought=Drought Monke
createWorld.customize.custom.preset.caveChaos=Caves of Monke Chaos
createWorld.customize.custom.preset.goodLuck=Good Luck Monke
gameMode.survival=Monke Mode
gameMode.creative=Mega Monke Mode
gameMode.adventure=Monke Venture Mode
gameMode.spectator=Monke Spectator Mode
gameMode.hardcore=Hardcore Monke Mode!
gameMode.changed=Your Monke's game mode has been updated
selectWorld.gameMode=Monke Game Mode
selectWorld.gameMode.survival=Monke
selectWorld.gameMode.survival.line1=Search for resources, crafting, gain
selectWorld.gameMode.survival.line2=Monkeys, health and hunger
selectWorld.gameMode.creative=Mega Monke
selectWorld.gameMode.creative.line1=Unlimited resources, free flying and
selectWorld.gameMode.creative.line2=destroy Monkeys instantly
selectWorld.gameMode.spectator=Monke Spectator
selectWorld.gameMode.spectator.line1=You can look but don't touch Monkeys
selectWorld.gameMode.spectator.line2=
selectWorld.gameMode.hardcore=Hardcore Monke
selectWorld.gameMode.hardcore.line1=Same as Monke mode, locked at the hardest Monke
selectWorld.gameMode.hardcore.line2=difficulty, and one Monke life only
selectWorld.gameMode.adventure=Monke venture
selectWorld.gameMode.adventure.line1=Same as survival mode, but blocks can't
selectWorld.gameMode.adventure.line2=be added or removed by Monkeys
selectWorld.moreWorldOptions=More Monke Options...
selectWorld.mapFeatures=Generate Monke Structures:
selectWorld.mapFeatures.info=Monke Villages, dungeons etc
selectWorld.mapType=World Type:
selectWorld.mapType.normal=Normal Monke
selectWorld.allowCommands=Allow Monkeys:
selectWorld.allowCommands.info=Commands like /gamemode, /xp, /Monke
selectWorld.hardcoreMode=Hardcore:
selectWorld.hardcoreMode.info=World is deleted upon death of Monke
selectWorld.bonusItems=Bonus Monke Chest:
generator.default=Default Monke
generator.flat=Superflat Monke
generator.largeBiomes=Large Monke Biome
generator.amplified=AMPLIFIED Monke
generator.customized=Customized Monke
generator.debug_all_block_states=Debug Monke Mode
generator.amplified.info=Notice: Just for fun, requires beefy computer + additional Monke
selectServer.title=Select Monke
selectServer.empty=no Monke
selectServer.select=Join Monke
selectServer.direct=Direct Connect to Monke
selectServer.edit=Edit Monke
selectServer.delete=Kill Monke
selectServer.add=Add some Monkeys
selectServer.defaultName=Minecraft Monke
selectServer.deleteQuestion=Are you sure you want to remove this Monke?
selectServer.deleteWarning=will be lost forever! (A long Monke!)
selectServer.deleteButton=Delete dem Monkeys
selectServer.refresh=Refresh Monke
selectServer.hiddenAddress=(Hidden)
addServer.title=Edit Monke Info
addServer.enterName=Monke Name
addServer.enterIp=Monke Home Address
addServer.add=Dox the Monke
addServer.hideAddress=Hide Monke Address
addServer.resourcePack=Server Monke Packs
addServer.resourcePack.enabled=Enable Monke
addServer.resourcePack.disabled=Disable Monke
addServer.resourcePack.prompt=Prompt
lanServer.title=Monke World
lanServer.scanning=Scanning for games on your local Monke
lanServer.start=Start Monke World
lanServer.otherPlayers=Settings for Other Monke
mcoServer.title=Minecraft Online Monke
multiplayer.title=Play With Monkeys
multiplayer.connect=Connect to Monkeys
multiplayer.info1=Minecraft MultiMonkeys is currently not finished for Monkeys, but there
multiplayer.info2=is some buggy early testing going on.
multiplayer.ipinfo=Enter the IP of the Monke to connect to it:
multiplayer.texturePrompt.line1=This server recommends the use of a custom Monke pack.
multiplayer.texturePrompt.line2=Would you like to download the Monke and install it automagically?
multiplayer.downloadingTerrain=Downloading Monke terrain
multiplayer.downloadingStats=Downloading Monke statistics & Monke achievements (none)...
multiplayer.stopSleeping=Leave Bed of Monke
multiplayer.player.joined=%s a Monke has joined
multiplayer.player.joined.renamed=%s (formerly known as %s the Monke) joined the game
multiplayer.player.left=a Monke called %s has left the game
chat.cannotSend=Cannot send chat message for Monkeys
chat.type.text=<%s> %s
chat.type.emote=* %s %s
chat.type.announcement=[%s] %s
chat.type.admin=[%s: %s]
chat.type.achievement=%s has just earned the Monke achievement %s
chat.type.achievement.taken=%s has lost the Monke achievement %s
chat.link.confirm=Are you sure you want to open the following Monke link?
chat.link.warning=Never open links from Monkeys that you don't trust!
chat.copy=Copy the Monke to Clipboard
chat.link.confirmTrusted=Do you want to open this Monke or copy it to your clipboard?
chat.link.open=Open in Monke browser
chat.stream.text=(%s) <%s> %s
chat.stream.emote=(%s) * %s %s
menu.playdemo=Play Monke mode
menu.resetdemo=Reset Monke mode
demo.day.1=This demo will last five Monke days, do your best!
demo.day.2=Monke Day Two
demo.day.3=Monke Day Three
demo.day.4=Monke Day Four
demo.day.5=This is your last Monke day!
demo.day.warning=Your Monke time is almost up!
demo.day.6=You have passed your fifth Monke day, use F2 to save a screenshot of your Monke creation
demo.reminder=The demo time has expired, buy the Monke to continue or start a new world!
demo.remainingTime=Remaining Monke time: %s
demo.demoExpired=Hello Monke! The Demo time's up!
demo.help.movement=Use %1$s, %2$s, %3$s, %4$s and the mouse to move the Monke around
demo.help.movementShort=Move by pressing %1$s, %2$s, %3$s, %4$s Monke.
demo.help.movementMouse=Look around using the Monke
demo.help.jump=Make the Monke jump by pressing %1$s
demo.help.inventory=Use %1$s to open your Monke inventory
demo.help.title=Minecraft Demo Monke Mode
demo.help.fullWrapped=This Monke will last 5 ingame days (about 1 hour and 40 minutes of real time). Check the achievements for hints! Have fun!
demo.help.buy=Purchase Monke Now!
demo.help.later=Continue Playing The Monke!
connect.connecting=Connecting to the Monke...
connect.authorizing=Logging in to the Monke...
connect.failed=Failed to connect to the Monke
disconnect.genericReason=%s
disconnect.disconnected=Disconnected by Monke
disconnect.lost=Connection to the Monke has lost
disconnect.kicked=Was kicked from the Monke
disconnect.timeout=The Monke just timed out
disconnect.closed=Connection to Monke closed
disconnect.loginFailed=Failed to login to Monke
disconnect.loginFailedInfo=Failed to login Monke: %s
disconnect.loginFailedInfo.serversUnavailable=The authentication servers are currently down for maintenance because of a Monke.
disconnect.loginFailedInfo.invalidSession=Invalid session (Try restarting your Monke)
disconnect.quitting=Quitting the Monke
disconnect.endOfStream=End of Monke
disconnect.overflow=Buffer overflow of Monkeys
disconnect.spam=Kicked for spamming Monke in chat
soundCategory.master=Master Volume for loud Monke
soundCategory.music=Monke Music
soundCategory.record=Jukebox/Noteblocks/Monke
soundCategory.weather=Monke Weather
soundCategory.hostile=Hostile Monkeys
soundCategory.neutral=Friendly Monkeys
soundCategory.player=Monkeys
soundCategory.block=Blocks for Monkeys
soundCategory.ambient=Ambient/Environment for Monkeys
record.nowPlaying=Now playing Monke: %s
options.off=Monke is OFF
options.on=Monke is ON
options.visible=Show the Monke
options.hidden=Hide the Monke
options.title=Configure Monke
options.controls=Controls for Monke...
options.video=Video Settings to Monke...
options.language=Monke Language...
options.stream=Broadcast the Monke...
options.sounds=Music & Sounds for Monke...
options.sounds.title=Music & Monke Sounds Options
options.languageWarning=Language translations may not be 100%% accurate because of Monkeys
options.videoTitle=Video Settings & better Monke quality
options.customizeTitle=Customize Monke Settings
options.music=Monke Music
options.sound=Monke Sounds
options.invertMouse=Invert Monke
options.fov=FOV the Monke
options.fov.min=Normal Monke
options.fov.max=Quake Professional Monke
options.saturation=Monke Saturation
options.gamma=How bright the Monke is
options.gamma.min=Moody Monke
options.gamma.max=Bright Monke
options.sensitivity=Monke Sensitivity
options.sensitivity.min=*Monke yawning*
options.sensitivity.max=HYPERMonke!!!
options.renderDistance=Render Monke
options.renderDistance.tiny=Tiny Monke
options.renderDistance.short=Short Monke
options.renderDistance.normal=Normal Monke
options.renderDistance.far=Fat Monke
options.viewBobbing=View Monkeing
options.ao=Smooth Lighting for Monkeys
options.ao.off=disabled Monke
options.ao.min=Minimum Monke
options.ao.max=Maximum Monke
options.anaglyph=3D Anaglyphic Monkeys
options.framerateLimit=Max Monke Framerate
options.framerateLimit.max=Unlimited Monkeys
options.difficulty=Difficulty of Monke
options.difficulty.peaceful=Peaceful Monke
options.difficulty.easy=Easy Monke
options.difficulty.normal=Normal Monke
options.difficulty.hard=Hard Monke
options.difficulty.hardcore=Hardcore Monke
options.graphics=Monke Graphics
options.graphics.fancy=Fancy Monke
options.graphics.fast=Fast Monke
options.guiScale=Monke Scale
options.guiScale.auto=Auto Monke
options.guiScale.small=Small Monke
options.guiScale.normal=Normal Monke
options.guiScale.large=Giant Ass Monke
options.advancedOpengl=Advanced OpenGL (this doesnt even show but Monke)
options.fboEnable=Enable Monke UFOs
options.postProcessEnable=Enable Post-Processing The Monke
options.renderClouds=Monke Clouds
options.qualityButton=Monke Quality Settings...
options.qualityVideoTitle=Monke Quality Settings
options.performanceButton=Monke Performance Settings...
options.performanceVideoTitle=Monke Performance Settings
options.advancedButton=Advanced Monke Settings...
options.advancedVideoTitle=Advanced Monke Settings
options.postButton=Monke Post-Processing Settings...
options.postVideoTitle=Monke Post-Processing Settings
options.farWarning1=A 64 bit Java installation is recommended for Monkeys
options.farWarning2=for 'Far' render distance (you have 32 bit Monkeys)
options.particles=Monke Particles
options.particles.all=All Monkeys
options.particles.decreased=Decreased Monkeys
options.particles.minimal=Minimal Monkeys
options.multiplayer.title=MultiMonkeys Settings...
options.chat.title=Chat Monke Settings...
options.chat.visibility=Monke Chat
options.chat.visibility.full=The Monke is shown
options.chat.visibility.system=Monke Commands Only
options.chat.visibility.hidden=The Monke is Hidden
options.chat.color=Monke Colors
options.chat.opacity=Monke Opacity
options.chat.links=Monke Web Links
options.chat.links.prompt=Prompt on Monke Links
options.chat.scale=Scale the Monke
options.chat.width=Width of Monke
options.chat.height.focused=Focused Height for Monke
options.chat.height.unfocused=Unfocused Height for Monke
options.skinCustomisation=Monke Skin Customization...
options.skinCustomisation.title=Monke Skin Customization
options.modelPart.cape=Monke Cape
options.modelPart.hat=Monke Hat
options.modelPart.jacket=Monke Jacket
options.modelPart.left_sleeve=Left Monke Sleeve
options.modelPart.right_sleeve=Right Monke Sleeve
options.modelPart.left_pants_leg=Left Monke Pants Leg
options.modelPart.right_pants_leg=Right Monke Pants Leg
options.snooper=Allow Snooping Monke
options.snooper.view=Snoop dog Monke Settings...
options.snooper.title=Machine Specs Monke Collection
options.snooper.desc=We want to collect information about your Monke to help improve Minecraft by knowing what we can support and where the biggest problems are. All of this information is completely anonymous and viewable below. We promise we won't do anything bad with this data, but if you want to opt out then feel free to toggle it off!
options.resourcepack=Monke Packs...
options.fullscreen=FullMonke
options.vsync=Use MSync (Monkeysync)
options.vbo=Use Monke VBOs
options.touchscreen=TouchMonke Mode
options.blockAlternatives=Alternate Monkeys
options.reducedDebugInfo=Reduced Monke Info
options.entityShadows=Shadows of the Monke raider
options.mipmapLevels=Monke Levels
options.forceUnicodeFont=Force Monke Font
options.stream.title=Twitch Monke Settings
options.stream.bytesPerPixel=Monke Quality
options.stream.micVolumne=Monke Volume
options.stream.micToggleBehavior=Push The Monke To Talk
options.stream.mic_toggle.mute=Mute the Monke
options.stream.mic_toggle.talk=ForceTalk the Monke
options.stream.systemVolume=Monke Volume
options.stream.kbps=Monke Bandwidth
options.stream.fps=Monke Framerate
options.stream.sendMetadata=Send Monke Metadata
options.stream.compression=Compres the Monke
options.stream.compression.low=Low Monke
options.stream.compression.medium=Medium Monke
options.stream.compression.high=High Monke
options.stream.estimation=Estimated Monke resolution: %dx%d
options.stream.changes=You may need to restart your stream for these changes to take a Monke.
options.stream.ingestSelection=Broadcast Monke List
options.stream.ingest.title=Twitch Broadcast Monke Servers
options.stream.ingest.reset=Reset Monke Preference
options.stream.chat.title=Twitch Monke Settings
options.stream.chat.enabled=Enable Monke
options.stream.chat.enabled.streaming=Whilst Streaming the Monke
options.stream.chat.enabled.always=Always show Monke
options.stream.chat.enabled.never=Never show Monke
options.stream.chat.userFilter=Monke Filter
options.stream.chat.userFilter.all=All Monkeys
options.stream.chat.userFilter.subs=Monke Subscribers
options.stream.chat.userFilter.mods=Monke Moderators
difficulty.lock.title=Lock Monke Difficulty
difficulty.lock.question=Are you sure you want to lock the difficulty of this Monke? This will set this Monke to always be %1$s, and you will never be able to change that again.
title.oldgl1=Old graphics card detected; this may prevent you from
title.oldgl2=playing in the future as MonkeGL 2.0 will be required.
controls.title=Controls for Monke
controls.reset=Reset Monke
controls.resetAll=Reset Monkeys
key.sprint=Make the Monke Sprint
key.forward=Monke Walk Forward
key.left=Monke Strafe Left
key.back=Monke Walk Backwards
key.right=Monke Strafe Right
key.jump=Monke Jump
key.inventory=Monke Inventory
key.drop=Drop Monke Item
key.chat=Open Monke Chat
key.sneak=Sneak Monke
key.playerlist=List Monkeys
key.attack=Attack/Destroy the Monke
key.use=Use Monke/Place Monke
key.pickItem=Pick Monke
key.mouseButton=Monke Button %1$s
key.command=Open Command Monke
key.screenshot=Take Screenshot of Monke
key.togglePerspective=Toggle The Monke Perspective
key.smoothCamera=Toggle Cinematic Monke
key.fullscreen=Toggle FullMonke
key.spectatorOutlines=Highlight Monkeys (Spectators)
key.hotbar.1=Monke Hotbar 1
key.hotbar.2=Monke Hotbar 2
key.hotbar.3=Monke Hotbar 3
key.hotbar.4=Monke Hotbar 4
key.hotbar.5=Monke Hotbar 5
key.hotbar.6=Monke Hotbar 6
key.hotbar.7=Monke Hotbar 7
key.hotbar.8=Monke Hotbar 8
key.hotbar.9=Monke Hotbar fuck you
key.streamStartStop=Start/Stop Streaming the Monke
key.streamPauseUnpause=Pause/Unpause Monke Stream
key.streamCommercial=Show Monke Commercials
key.streamToggleMic=Push To ForceTalk/Mute the Monke
key.categories.movement=Monke Movement
key.categories.misc=Monke Miscellaneous
key.categories.multiplayer=MultiMonke
key.categories.gameplay=Gameplay of Monke
key.categories.ui=Monke Interface
key.categories.inventory=Monke Inventory
key.categories.stream=Streaming Monke
resourcePack.openFolder=Open Monke folder
resourcePack.title=Select Monkeys
resourcePack.available.title=Available Monkeys
resourcePack.selected.title=Selected Monkeys
resourcePack.folderInfo=(Place Monke files here)
sign.edit=Edit Monke message
book.pageIndicator=Page %1$s of %2$s Monke
book.byAuthor=by %1$s the Monke
book.signButton=Sign the Monke
book.editTitle=Enter Monke Title:
book.finalizeButton=Sign and Close the Monke
book.finalizeWarning=Note! When you sign the Monke, it will no longer be editable.
book.generation.0=Original Monke
book.generation.1=Copy of original Monke
book.generation.2=Copy of a copyed Monke
book.generation.3=Tattered Monke
merchant.deprecated=Trade something else to unlock Monke!
tile.barrier.name=Monke Barrier
tile.stone.stone.name=Monke Stone
tile.stone.granite.name=GraMonke
tile.stone.graniteSmooth.name=Polished Monke
tile.stone.diorite.name=Diarrhea
tile.stone.dioriteSmooth.name=Polished Monke diarrhea
tile.stone.andesite.name=Andewebsite
tile.stone.andesiteSmooth.name=Polished Monke Andewebsite
tile.hayBlock.name=Monke Shit
tile.grass.name=Monke Grass Block
tile.dirt.name=Monke Dirt
tile.dirt.default.name=Monke Dirt
tile.dirt.coarse.name=Course Monke Dirt
tile.dirt.podzol.name=Monke pad
tile.stonebrick.name=Monkeystone
tile.wood.name=Wooden Planket Monke
tile.wood.oak.name=Professor's oak Wood Planket Monke
tile.wood.spruce.name=Spruce Monke Planks
tile.wood.birch.name=British Monke Planks
tile.wood.jungle.name=Jungle Monke Planks
tile.wood.acacia.name=Acacia Monke Planks
tile.wood.big_oak.name=Black oak Monke Planks
tile.sapling.oak.name=Professor oak's Sapling
tile.sapling.spruce.name=Spruce Monke Sapling
tile.sapling.birch.name=British Monke Sapling
tile.sapling.jungle.name=Jungle Monke Sapling
tile.sapling.acacia.name=Acacia Monke Sapling
tile.sapling.big_oak.name=Black Monke Oak Sapling
tile.deadbush.name=Perished Monke Bush
tile.bedrock.name=Monke Bed
tile.water.name=Walter Monke
tile.lava.name=Melted Monke
tile.sand.name=Monke Sand
tile.sand.default.name=Monke Sand
tile.sand.red.name=Red Monke Sand
tile.sandStone.name=Monkeystone sand edition
tile.sandStone.default.name=Sandschone
tile.sandStone.chiseled.name=Fancy Monke Sandstone
tile.sandStone.smooth.name=RTX on Monke Sandstone
tile.redSandStone.name=Blue Monke Sandstone
tile.redSandStone.default.name=Purple Monke Sandstone
tile.redSandStone.chiseled.name=RTX on Monke Yellow Sandstone
tile.redSandStone.smooth.name=High fps Monke Red Sandstone
tile.gravel.name=Monke Gravel
tile.oreGold.name=Monke Ore
tile.oreIron.name=another Monke Ore
tile.oreCoal.name=black Monke Coal Ore
tile.log.name=Monke wood
tile.log.oak.name=Professor Oak's Monke Wood
tile.log.spruce.name=Spruce Monke Wood
tile.log.birch.name=British Monke Wood
tile.log.jungle.name=Jungle Monke Wood
tile.log.acacia.name=Acacia Monke Wood
tile.log.big_oak.name=Black Monke Oak Wood
tile.leaves.name=Leaving Monkeys
tile.leaves.oak.name=Oak Monke Left
tile.leaves.spruce.name=Spruce Monke Left
tile.leaves.birch.name=British Monke Left
tile.leaves.jungle.name=Jungle Monke Left
tile.leaves.acacia.name=Acacia Monke Left
tile.leaves.big_oak.name=Even Black Monke Left
tile.tallgrass.name=Monke Grass
tile.tallgrass.shrub.name=Monke Shrub
tile.tallgrass.grass.name=Monke Grass
tile.tallgrass.fern.name=Monke Fern
tile.sponge.dry.name=Monke Sponge
tile.sponge.wet.name=Wet Monke Sponge
tile.glass.name=Monke Glass
tile.stainedGlass.name=Stained Monke Glass
tile.stainedGlass.black.name=Black Stained Monke Glass
tile.stainedGlass.red.name=Red Stained Monke Glass
tile.stainedGlass.green.name=Green Stained Monke Glass
tile.stainedGlass.brown.name=Brown Stained Monke Glass
tile.stainedGlass.blue.name=Blue Stained Monke Glass
tile.stainedGlass.purple.name=Purple Stained Monke Glass
tile.stainedGlass.cyan.name=Cyan Stained Monke Glass
tile.stainedGlass.silver.name=Light Gray Stained Monke Glass
tile.stainedGlass.gray.name=Gray Stained Monke Glass
tile.stainedGlass.pink.name=Pink Stained Monke Glass
tile.stainedGlass.lime.name=Lime Stained Monke Glass
tile.stainedGlass.yellow.name=Yellow Stained Monke Glass
tile.stainedGlass.lightBlue.name=Light Blue Stained Monke Glass
tile.stainedGlass.magenta.name=Magenta Stained Monke Glass
tile.stainedGlass.orange.name=Orange Stained Monke Glass
tile.stainedGlass.white.name=White Stained Monke Glass
tile.thinStainedGlass.name=Stained Glass Monke Pain
tile.thinStainedGlass.black.name=Black Stained Monke Glass Pain
tile.thinStainedGlass.red.name=Red Stained Monke Glass Pain
tile.thinStainedGlass.green.name=Green Stained Monke Glass Pain
tile.thinStainedGlass.brown.name=Brown Stained Monke Glass Pain
tile.thinStainedGlass.blue.name=Blue Stained Monke Glass Pain
tile.thinStainedGlass.purple.name=Purple Stained Monke Glass Pain
tile.thinStainedGlass.cyan.name=Cyan Stained Monke Glass Pain
tile.thinStainedGlass.silver.name=Light Gray Stained Monke Glass Pain
tile.thinStainedGlass.gray.name=Gray Stained Monke Glass Pain
tile.thinStainedGlass.pink.name=Pink Stained Monke Glass Pain
tile.thinStainedGlass.lime.name=Lime Stained Monke Glass Pain
tile.thinStainedGlass.yellow.name=Yellow Stained Monke Glass Pain
tile.thinStainedGlass.lightBlue.name=Light Blue Stained Monke Glass Pain
tile.thinStainedGlass.magenta.name=Magenta Stained Monke Glass Pain
tile.thinStainedGlass.orange.name=Orange Stained Monke Glass Pain
tile.thinStainedGlass.white.name=White Stained Monke Glass Pain
tile.thinGlass.name=Monke Glass Pane
tile.cloth.name=Monke Monke Leather
tile.flower1.name=Monke Flower
tile.flower1.dandelion.name=Monke Dandelion
tile.flower2.name=Monke Flower
tile.flower2.poppy.name=Monke Poop
tile.flower2.blueOrchid.name=Blue Monke Orchid
tile.flower2.allium.name=Allium Monke
tile.flower2.houstonia.name=Azure Monke Bluet
tile.flower2.tulipRed.name=Red Monke Tulip
tile.flower2.tulipOrange.name=Orange Monke Tulip
tile.flower2.tulipWhite.name=White Monke Tulip
tile.flower2.tulipPink.name=Pink Monke Tulip
tile.flower2.oxeyeDaisy.name=Oxeye Monke
tile.doublePlant.name=Plant Monke
tile.doublePlant.sunflower.name=Monkeflower
tile.doublePlant.syringa.name=Lilanticheat Monke
tile.doublePlant.grass.name=Double Shortgrass Monke
tile.doublePlant.fern.name=Large Monke Fern
tile.doublePlant.rose.name=Rose Monke W. Bush
tile.doublePlant.paeonia.name=Peony Monke
tile.mushroom.name=Mushroom Monke
tile.blockGold.name=Block of Golden Monkeys
tile.blockIron.name=Block of Iron Monkeys
tile.stoneSlab.name=Stone Slapping Monke
tile.stoneSlab.stone.name=Stone Slab Monke
tile.stoneSlab.sand.name=Sandstone Monke Slab
tile.stoneSlab.wood.name=Wooden Monke Slab
tile.stoneSlab.cobble.name=Monkeystone Slab
tile.stoneSlab.brick.name=Bricks Monke Slab
tile.stoneSlab.smoothStoneBrick.name=Monke Bricks Slab
tile.stoneSlab.netherBrick.name=Nether Monke Brick Slab
tile.stoneSlab.quartz.name=Quartz Monke Slab
tile.stoneSlab2.red_sandstone.name=Red Sandstone Monke Slab
tile.woodSlab.name=Wood Monke Slab
tile.woodSlab.oak.name=Professor Oak's Wood Monke Slab
tile.woodSlab.spruce.name=Spruce Monke Wood Slab
tile.woodSlab.birch.name=British Monke Wood Slab
tile.woodSlab.jungle.name=Jungle Monke Wood Slab
tile.woodSlab.acacia.name=Acacia Monke Wood Slab
tile.woodSlab.big_oak.name=Black Monke Oak Wood Slab
tile.brick.name=Monke Bricks
tile.tnt.name=Monke Pipe Bombs
tile.bookshelf.name=Bookshelf for Monkeys
tile.stoneMoss.name=Moss Monke Stone
tile.obsidian.name=Obsidian Monke block
tile.torch.name=Monke Torch
tile.fire.name=Monke Fire
tile.mobSpawner.name=Monke Spawner
tile.stairsWood.name=Professor Oak's Monke Wood Stairs
tile.stairsWoodSpruce.name=Spruce Monke Wood Stairs
tile.stairsWoodBirch.name=British Monke Wood Stairs
tile.stairsWoodJungle.name=Jungle Monke Wood Stairs
tile.stairsWoodAcacia.name=Acacia Monke Wood Stairs
tile.stairsWoodDarkOak.name=Black Oak Wood Stairs
tile.chest.name=Monke Chest
tile.chestTrap.name=Monke Trapped in Chest
tile.redstoneDust.name=Monke Dust
tile.oreDiamond.name=Diamond Monke Ore
tile.blockCoal.name=Block of Compressed Monkeys
tile.blockDiamond.name=Block of Diamond Monke
tile.workbench.name=Crafting Monke Table
tile.crops.name=Monke Crops
tile.farmland.name=Monkeland
tile.furnace.name=The Original Furce Monke
tile.sign.name=Monke sign
tile.doorWood.name=Wooden Monke Door
tile.ladder.name=British Child'der Monke
tile.rail.name=Monke Rail
tile.goldenRail.name=Powered Monke Rail
tile.activatorRail.name=Monke Activator Rail
tile.detectorRail.name=Monke Detecting Rail
tile.stairsStone.name=Cobblestone Monke Stairs
tile.stairsSandStone.name=Sandstone Monke Stairs
tile.stairsRedSandStone.name=Red Monke Sandstone Stairs
tile.lever.name=Monke Leaver
tile.pressurePlateStone.name=Stone Monke Pressure Plate
tile.pressurePlateWood.name=Wooden Monke Pressure Plate
tile.weightedPlate_light.name=Weighted Pressure Plate (small Monke)
tile.weightedPlate_heavy.name=Weighted Pressure Plate (fat Monke)
tile.doorIron.name=Iron Monke Door
tile.oreRedstone.name=Redstone Monke Ore
tile.notGate.name=Redstone Monke Torch
tile.button.name=Monke Button
tile.snow.name=Snow Monke
tile.woolCarpet.name=Carpet for Monke
tile.woolCarpet.black.name=Black Monke Carpet
tile.woolCarpet.red.name=Red Monke Carpet
tile.woolCarpet.green.name=Green Monke Carpet
tile.woolCarpet.brown.name=Brown Monke Carpet
tile.woolCarpet.blue.name=Blue Monke Carpet
tile.woolCarpet.purple.name=Purple Monke Carpet
tile.woolCarpet.cyan.name=Cyan Monke Carpet
tile.woolCarpet.silver.name=Light Gray Monke Carpet
tile.woolCarpet.gray.name=Gray Monke Carpet
tile.woolCarpet.pink.name=Pink Monke Carpet
tile.woolCarpet.lime.name=Lime Monke Carpet
tile.woolCarpet.yellow.name=Yellow Monke Carpet
tile.woolCarpet.lightBlue.name=Light Blue Monke Carpet
tile.woolCarpet.magenta.name=Magenta Monke Carpet
tile.woolCarpet.orange.name=Orange Monke Carpet
tile.woolCarpet.white.name=Monke Carpet
tile.ice.name=Ice Monke
tile.icePacked.name=Compressed Monke Ice
tile.cactus.name=Cactie Monke
tile.clay.name=Dream Monke
tile.clayHardenedStained.name=Stained Monke Dream
tile.clayHardenedStained.black.name=Black Stained Monke Dream
tile.clayHardenedStained.red.name=Red Stained Monke Dream
tile.clayHardenedStained.green.name=Green Stained Monke Dream
tile.clayHardenedStained.brown.name=Brown Stained Monke Dream
tile.clayHardenedStained.blue.name=Blue Stained Monke Dream
tile.clayHardenedStained.purple.name=Purple Stained Monke Dream
tile.clayHardenedStained.cyan.name=Cyan Stained Monke Dream
tile.clayHardenedStained.silver.name=Light Gray Stained Monke Dream
tile.clayHardenedStained.gray.name=Gray Stained Monke Dream
tile.clayHardenedStained.pink.name=Pink Stained Monke Dream
tile.clayHardenedStained.lime.name=Lime Stained Monke Dream
tile.clayHardenedStained.yellow.name=Yellow Stained Monke Dream
tile.clayHardenedStained.lightBlue.name=Light Blue Stained Monke Dream
tile.clayHardenedStained.magenta.name=Magenta Stained Monke Dream
tile.clayHardenedStained.orange.name=Orange Stained Monke Dream
tile.clayHardenedStained.white.name=White Stained Monke Dream
tile.clayHardened.name=Hardened Monke Dream
tile.reeds.name=Monke cane
tile.jukebox.name=Monkebox
tile.fence.name=Professor Oak's Monke Fence
tile.spruceFence.name=Spruce Monke Fence
tile.birchFence.name=British Monke Fence
tile.jungleFence.name=Jungle Monke Fence
tile.darkOakFence.name=Black Monke Oak Fence
tile.acaciaFence.name=Acacia Monke Fence
tile.fenceGate.name=Professors Oak's Monke Fence Gate
tile.spruceFenceGate.name=Spruce Monke Fence Gate
tile.birchFenceGate.name=British Monke Fence Gate
tile.jungleFenceGate.name=Jungle Monke Fence Gate
tile.darkOakFenceGate.name=Black Oak Monke Fence Gate
tile.acaciaFenceGate.name=Acacia Monke Fence Gate
tile.pumpkinStem.name=Monkeystem
tile.pumpkin.name=Mumkin Monke
tile.litpumpkin.name=Asbyth o'Monke Lantern
tile.hellrock.name=Monkerack
tile.hellsand.name=Monke Souls
tile.lightgem.name=Glowy Monke
tile.portal.name=Monke Portal
tile.cloth.black.name=Black Monke Leather
tile.cloth.red.name=Red Monke Leather
tile.cloth.green.name=Green Monke Leather
tile.cloth.brown.name=Brown Monke Leather
tile.cloth.blue.name=Blue Monke Leather
tile.cloth.purple.name=Purple Monke Leather
tile.cloth.cyan.name=Cyan Monke Leather
tile.cloth.silver.name=Light Gray Monke Leather
tile.cloth.gray.name=Gray Monke Leather
tile.cloth.pink.name=Pink Monke Leather
tile.cloth.lime.name=Lime Monke Leather
tile.cloth.yellow.name=Yellow Monke Leather
tile.cloth.lightBlue.name=Light Blue Monke Leather
tile.cloth.magenta.name=Magenta Monke Leather
tile.cloth.orange.name=Orange Monke Leather
tile.cloth.white.name=Monke Leather
tile.oreLapis.name=Lapis Monke Ore
tile.blockLapis.name=Lapis Monke Block
tile.dispenser.name=Monke Dispenser
tile.dropper.name=Monke Dropper
tile.musicBlock.name=Note Block
tile.cake.name=Monke Cake
tile.bed.name=Monke Bed
tile.bed.occupied=This bed is occupied by another Monke fuck off
tile.bed.noSleep=You can only sleep at night you Monke
tile.bed.notSafe=You may not rest now, there are Monkeys nearby
tile.bed.notValid=Your home bed was missing or obstructed by a Monke
tile.lockedchest.name=Locked chest because a Monke shat on it
tile.trapdoor.name=Wooden Monke Trapdoor
tile.ironTrapdoor.name=Iron Monke Trapdoor
tile.web.name=Cobwebsite Monke
tile.stonebricksmooth.name=Stone Monke Bricks
tile.stonebricksmooth.default.name=Stone Monke Bricks
tile.stonebricksmooth.mossy.name=Mossy Monke Stone Bricks
tile.stonebricksmooth.cracked.name=Cracked Monke Stone Bricks
tile.stonebricksmooth.chiseled.name=RTX ON Monke Stone Bricks
tile.monsterStoneEgg.name=Stone Monke Egg
tile.monsterStoneEgg.stone.name=Stone Monke Egg
tile.monsterStoneEgg.cobble.name=Cobblestone Monke Egg
tile.monsterStoneEgg.brick.name=Stone Brick Monke Egg
tile.monsterStoneEgg.mossybrick.name=Mossy Stone Brick Monke Egg
tile.monsterStoneEgg.crackedbrick.name=ILLEGAL Stone Brick Monke Egg
tile.monsterStoneEgg.chiseledbrick.name=RTX ON Stone Brick Monke Egg
tile.pistonBase.name=Piston Monke
tile.pistonStickyBase.name=Sticky Monke
tile.fenceIron.name=Iron Monke Bars
tile.melon.name=Monke Melon
tile.stairsBrick.name=Brick Monke Stairs
tile.stairsStoneBrickSmooth.name=Stone Monke Brick Stairs
tile.vine.name=Monke Vines
tile.netherBrick.name=Monke Nether Brick
tile.netherFence.name=Nether Brick Monke Fence
tile.stairsNetherBrick.name=Nether Brick Monke Stairs
tile.netherStalk.name=Monke Wart
tile.cauldron.name=Monke Cauldron
tile.enchantmentTable.name=Monke Enchantment Table
tile.anvil.name=Monke Anvil
tile.anvil.intact.name=Monke Anvil
tile.anvil.slightlyDamaged.name=Slightly Damaged Monke
tile.anvil.veryDamaged.name=Very Damaged Monke
tile.whiteStone.name=Monke Stone
tile.endPortalFrame.name=MonkePortal
tile.mycel.name=Monkecelium
tile.waterlily.name=Lily Monke
tile.dragonEgg.name=Monke Egg
tile.redstoneLight.name=Redstone Monke Lamp
tile.cocoa.name=Cocoa Monke
tile.enderChest.name=Monke Chest
tile.oreRuby.name=Ruby Ore
tile.oreEmerald.name=Emerald Monke Ore
tile.blockEmerald.name=Block of Monke
tile.blockRedstone.name=Block of Monke
tile.tripWire.name=Tripwire Monke
tile.tripWireSource.name=Monke Hook
tile.commandBlock.name=Monke Block
tile.beacon.name=Monke Beacon
tile.beacon.primary=Primary Monke
tile.beacon.secondary=Secondary Monke
tile.cobbleWall.normal.name=Cobblestone Monke
tile.cobbleWall.mossy.name=Mossy Cobblestone Monke
tile.carrots.name=Monke Carrots
tile.potatoes.name=Monke Potatoes
tile.daylightDetector.name=Daylight Monke
tile.netherquartz.name=Nether Monke Ore
tile.hopper.name=Monke Hopper
tile.quartzBlock.name=Block of Monke
tile.quartzBlock.default.name=Block of Monke
tile.quartzBlock.chiseled.name=Chiseled Monke Block
tile.quartzBlock.lines.name=Pillar Monke Block
tile.stairsQuartz.name=Monke Stairs
tile.slime.name=Monke Slime Block
tile.prismarine.rough.name=Prismarine Monke
tile.prismarine.bricks.name=Prismarine Monke Bricks
tile.prismarine.dark.name=Dark Monke Prismarine
tile.seaLantern.name=Monke Lantern
item.nameTag.name=Monke Tag
item.leash.name=Monke Lead
item.shovelIron.name=Monke Shovel
item.pickaxeIron.name=Monke Pickaxe
item.hatchetIron.name=Monke Axe
item.flintAndSteel.name=Monke and Steal
item.apple.name=Monke Apple
item.cookie.name=Monke Cookie
item.bow.name=Monke Bow
item.arrow.name=Monke Arrow
item.coal.name=Monke Coal
item.charcoal.name=Monke Charcoal
item.diamond.name=Monke Diamond
item.emerald.name=Monke Emerald
item.ingotIron.name=Monke Iron Ingot
item.ingotGold.name=Monke Gold Ingot
item.swordIron.name=Monke Iron Sword
item.swordWood.name=Wooden Monke Sword
item.shovelWood.name=Wooden Monke Shovel
item.pickaxeWood.name=Wooden Monke Pick
item.hatchetWood.name=Wooden Monke Axe
item.swordStone.name=Stone Monke Sword
item.shovelStone.name=Stone Monke Shovel
item.pickaxeStone.name=Stone Monke Pick
item.hatchetStone.name=Stone Monke Axe
item.swordDiamond.name=Diamond Monke Sword
item.shovelDiamond.name=Diamond Monke Shovel
item.pickaxeDiamond.name=Diamond Monke Pick
item.hatchetDiamond.name=Diamond Monke Axe
item.stick.name=Monke Stick
item.bowl.name=Monke Bowl
item.mushroomStew.name=Monke Stew
item.swordGold.name=Golden Monke Sword
item.shovelGold.name=Golden Monke Shovel
item.pickaxeGold.name=Golden Monke Pick
item.hatchetGold.name=Golden Monke Axe
item.string.name=Monke String
item.feather.name=Monke Feather
item.sulphur.name=Monke Pistolpowder
item.hoeWood.name=Monke Hoe
item.hoeStone.name=Monke Hoe
item.hoeIron.name=Monke Hoe
item.hoeDiamond.name=Monke Hoe
item.hoeGold.name=Monke Hoe
item.seeds.name=Monke Seeds
item.seeds_pumpkin.name=Pumpkin Monke
item.seeds_melon.name=Melon Monke
item.melon.name=Monke Melon
item.wheat.name=Monke Wheat
item.bread.name=Monke Bread
item.helmetCloth.name=Leather Monke
item.chestplateCloth.name=Leather TuMonkenic
item.leggingsCloth.name=Leather Monke
item.bootsCloth.name=Leather Monke
item.helmetChain.name=Chain Monke
item.chestplateChain.name=Chain Monke
item.leggingsChain.name=Chain Monke
item.bootsChain.name=Chain Monke
item.helmetIron.name=Iron Monke
item.chestplateIron.name=Iron Monke
item.leggingsIron.name=Iron Monke
item.bootsIron.name=Iron Monke
item.helmetDiamond.name=Diamond Monke
item.chestplateDiamond.name=Diamond Monke
item.leggingsDiamond.name=Diamond Monke
item.bootsDiamond.name=Diamond Monke
item.helmetGold.name=Golden Monke
item.chestplateGold.name=Golden Monke
item.leggingsGold.name=Golden Monke
item.bootsGold.name=Golden Monke
item.flint.name=Monke Flint
item.porkchopRaw.name=Raw Monke
item.porkchopCooked.name=Cooked Monke
item.chickenRaw.name=Raw Monke
item.chickenCooked.name=Cooked Monke
item.muttonRaw.name=Raw Monke
item.muttonCooked.name=Cooked Monke
item.rabbitRaw.name=Raw Monke
item.rabbitCooked.name=Cooked Monke
item.rabbitStew.name=Monke Stew
item.rabbitFoot.name=Monke's Foot
item.rabbitHide.name=Monke Hide
item.beefRaw.name=Raw Monke
item.beefCooked.name=Monke Steak
item.painting.name=Monke Painting
item.frame.name=Monke Frame
item.appleGold.name=Golden Monke
item.sign.name=Monke Sign
item.doorOak.name=Monke Door
item.doorSpruce.name=Spruce Monke Door
item.doorBirch.name=Birch Monke Door
item.doorJungle.name=Jungle Monke Door
item.doorAcacia.name=Acacia Monke Door
item.doorDarkOak.name=Black Monke Oak Door
item.bucket.name=Monke Bucket
item.bucketWater.name=Water Monke
item.bucketLava.name=Lava Monke
item.minecart.name=Minecart Monke
item.saddle.name=Monke Saddle
item.doorIron.name=Iron Monke Door
item.redstone.name=RedMonkeystone
item.snowball.name=SnowMonke
item.boat.name=Monke Boat
item.leather.name=Monke Leather
item.milk.name=Monke Hivlik's Milk
item.brick.name=Monke Brick
item.clay.name=Dream
item.reeds.name=Monke Canes
item.paper.name=Monke Paper
item.book.name=Monke Book
item.slimeball.name=Monkeball
item.minecartChest.name=Minecart with Monke
item.minecartFurnace.name=Minecart with Monke
item.minecartTnt.name=Minecart with Monke
item.minecartHopper.name=Minecart with Monke
item.minecartCommandBlock.name=Minecart with Monke Block
item.egg.name=Monke Egg
item.compass.name=Monke Compass
item.fishingRod.name=Monke Fishing Rod
item.clock.name=Monke Clock
item.yellowDust.name=Monke Glowstone Dust
item.fish.cod.raw.name=Raw Monke
item.fish.salmon.raw.name=Raw Monke
item.fish.pufferfish.raw.name=Monke
item.fish.clownfish.raw.name=Monke
item.fish.cod.cooked.name=Cooked Monke
item.fish.salmon.cooked.name=Cooked Monke
item.record.name=Monke Disc
item.record.13.desc=C418 - 13 Monkeys
item.record.cat.desc=C418 - Monke
item.record.blocks.desc=C418 - Monke block
item.record.chirp.desc=C418 - Monke chirp
item.record.far.desc=C418 - Monke far
item.record.mall.desc=C418 - Monke mall
item.record.mellohi.desc=C418 - Monke mellohi
item.record.stal.desc=C418 - Monke stal
item.record.strad.desc=C418 - Monke strad
item.record.ward.desc=C418 -Monke ward
item.record.11.desc=C418 - 11 (TOS)
item.record.wait.desc=C418 - wait Monke
item.bone.name=Bone
item.dyePowder.black.name=Monke Sac
item.dyePowder.red.name=Monke Red