forked from EmeraldCoasttt/BrutalDoomPlatinum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
language.enu
1483 lines (1382 loc) · 54.4 KB
/
language.enu
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
[enu eng en default]
LOADNET = "you can't do load while in a net game!\n\npress a key.";
QLOADNET = "you can't quickload during a netgame!\n\npress a key.";
QSAVESPOT = "you haven't picked a quicksave slot yet!\n\npress a key.";
SAVEDEAD = "you can't save if you aren't playing!\n\npress a key.";
QSPROMPT = "quicksave over your game named\n\n'%s'?\n\npress y or n.";
QLPROMPT = "do you want to quickload the game named\n\n'%s'?\n\npress y or n.";
NEWGAME = "you can't start a new game\nwhile in a network game.\n\npress a key.";
NIGHTMARE = "are you sure? this skill level\nisn't even remotely fair.\n\npress y or n.";
SWSTRING = "this is the shareware version of doom.\n\nyou need to order the entire trilogy.\n\npress a key.";
MSGOFF = "Messages OFF";
MSGON = "Messages ON";
NETEND = "you can't end a netgame!\n\npress a key.";
ENDGAME = "are you sure you want to end the game?\n\npress y or n.";
DOSY = "(press y to quit)";
EMPTYSTRING = "empty slot";
GOTARMOR = "Picked up the armor.";
GOTMEGA = "Picked up the MegaArmor!";
GOTHTHBONUS = "Picked up a health bonus.";
GOTARMBONUS = "Picked up an armor bonus.";
GOTSTIM = "Picked up a stimpack.";
GOTMEDINEED = "Picked up a medikit that you REALLY need!";
GOTMEDIKIT = "Picked up a medikit.";
GOTSUPER = "Supercharge!";
GOTBLUECARD = "Picked up a blue keycard.";
GOTYELWCARD = "Picked up a yellow keycard.";
GOTREDCARD = "Picked up a red keycard.";
GOTBLUESKUL = "Picked up a blue skull key.";
GOTYELWSKUL = "Picked up a yellow skull key.";
GOTREDSKUL = "Picked up a red skull key.";
GOTINVUL = "Invulnerability!";
GOTBERSERK = "Berserk!";
GOTINVIS = "Partial Invisibility";
GOTSUIT = "Radiation Shielding Suit";
GOTMAP = "Computer Area Map";
GOTVISOR = "Light Amplification Visor";
GOTMSPHERE = "MegaSphere!";
GOTCLIP = "Picked up a magazine.";
GOTCLIPBOX = "Picked up a box of rifle bullets.";
GOTROCKET = "Picked up a rocket.";
GOTROCKBOX = "Picked up a box of rockets.";
GOTCELL = "Picked up an energy cell.";
GOTCELLBOX = "Picked up an energy cell pack.";
GOTSHELLS = "Picked up 4 shotgun shells.";
GOTSHELLBOX = "Picked up a box of shotgun shells.";
GOTBACKPACK = "Picked up a backpack full of ammo!";
GOTBFG9000 = "You got the BFG9000! Oh, yes.";
GOTCHAINGUN = "You got the minigun!";
GOTPISTOL = "You got the pistol!";
GOTRIFLE = "You got the assault rifle!";
GOTCHAINSAW = "A chainsaw! Find some meat!";
GOTLAUNCHER = "You got the rocket launcher!";
GOTPLASMA = "You got the plasma gun!";
GOTSHOTGUN = "You got the shotgun!";
GOTSHOTGUN2 = "You got the super shotgun!";
PD_BLUEO = "You need a blue key to activate this object";
PD_REDO = "You need a red key to activate this object";
PD_YELLOWO = "You need a yellow key to activate this object";
PD_BLUEK = "You need a blue key to open this door";
PD_REDK = "You need a red key to open this door";
PD_YELLOWK = "You need a yellow key to open this door";
PD_BLUECO = "You need a blue card to activate this object";
PD_REDCO = "You need a red card to activate this object";
PD_YELLOWCO = "You need a yellow card to activate this object";
PD_BLUESO = "You need a blue skull to activate this object";
PD_REDSO = "You need a red skull to activate this object";
PD_YELLOWSO = "You need a yellow skull to activate this object";
NEWSAVE = "<New Save Game>";
GGSAVED = "game saved.";
HUSTR_MSGU = "[Message unsent]";
PICKUP_PISTOL_DROPPED = "Picked up a pistol.";
BETA_BONUS1 = "You pick up a demonic dagger.";
BETA_BONUS2 = "You pick up a skullchest.";
BETA_BONUS3 = "You pick up an evil sceptre.";
BETA_BONUS4 = "You pick up an unholy bible.";
AMSTR_FOLLOWON = "Follow Mode ON";
AMSTR_FOLLOWOFF = "Follow Mode OFF";
AMSTR_GRIDON = "Grid ON";
AMSTR_GRIDOFF = "Grid OFF";
AMSTR_TEXON = "Texture Mode ON";
AMSTR_TEXOFF = "Texture Mode OFF";
AMSTR_MARKEDSPOT = "Marked Spot";
AMSTR_MARKSCLEARED = "All Marks Cleared";
STSTR_MUS = "Music Change";
STSTR_NOMUS = "IMPOSSIBLE SELECTION";
STSTR_DQDON = "Degreelessness Mode ON";
STSTR_DQDOFF = "Degreelessness Mode OFF";
STSTR_DQD2ON = "Ultimate Degreelessness Mode ON";
STSTR_DQD2OFF = "Ultimate Degreelessness Mode OFF";
STSTR_KFAADDED = "Very Happy Ammo Added";
STSTR_FAADDED = "Ammo (no keys) Added";
STSTR_NCON = "No Clipping Mode ON";
STSTR_NCOFF = "No Clipping Mode OFF";
STSTR_NC2ON = "No Clipping Mode 2 ON";
STSTR_BEHOLD = "inVuln, Str, Inviso, Rad, Allmap, or Lite-amp";
STSTR_BEHOLDX = "Power-up Toggled";
STSTR_CHOPPERS = "... doesn't suck - GM";
STSTR_CLEV = "Changing Level...\n";
TXT_BUDDHAON = "Buddha mode ON";
TXT_BUDDHAOFF = "Buddha mode OFF";
TXT_BUDDHA2ON = "Ultimate Buddha Mode ON";
TXT_BUDDHA2OFF = "Ultimate Buddha Mode OFF";
TXT_DEFAULTPICKUPMSG = "You got a pickup";
// New strings from BOOM
PD_BLUEC = "You need a blue card to open this door";
PD_REDC = "You need a red card to open this door";
PD_YELLOWC = "You need a yellow card to open this door";
PD_BLUES = "You need a blue skull to open this door";
PD_REDS = "You need a red skull to open this door";
PD_YELLOWS = "You need a yellow skull to open this door";
PD_ANY = "Any key will open this door";
PD_ANYOBJ = "Any key will activate this object";
PD_ALL3 = "You need all three keys to open this door";
PD_ALL3O = "You need all three keys to activate this object";
PD_ALL6 = "You need all six keys to open this door";
PD_ALL6O = "You need all six keys to activate this object";
PD_ALLKEYS = "You need all the keys";
// MBF (BOOM?) narration backgrounds
bgflatE1 = "FLOOR4_8";
bgflatE2 = "SFLR6_1";
bgflatE3 = "MFLR8_4";
bgflatE4 = "MFLR8_3";
bgflat06 = "SLIME16";
bgflat11 = "RROCK14";
bgflat20 = "RROCK07";
bgflat30 = "RROCK17";
bgflat15 = "RROCK13";
bgflat31 = "RROCK19";
bgcastcall = "BOSSBACK";
// Gameflow messages
TXT_FRAGLIMIT = "Fraglimit hit.";
TXT_TIMELIMIT = "Timelimit hit.";
// Spree messages
SPREEKILLSELF = "%o was looking good until %g killed %hself!";
SPREEOVER = "%o's killing spree was ended by %k";
SPREE5 = "%k is on a killing spree!";
SPREE10 = "%k is on a rampage!";
SPREE15 = "%k is dominating!";
SPREE20 = "%k is unstoppable!";
SPREE25 = "%k is Godlike!";
// Mulitkill messages
MULTI2 = "Double kill!";
MULTI3 = "Multi kill!";
MULTI4 = "Ultra kill!";
MULTI5 = "Monster kill!";
// Obituary strings
// First the self-kills, then the other-kills
OB_SUICIDE = "%o suicides.";
OB_FALLING = "%o fell too far.";
OB_CRUSH = "%o was squished.";
OB_EXIT = "%o tried to leave.";
OB_WATER = "%o can't swim.";
OB_SLIME = "%o mutated.";
OB_LAVA = "%o melted.";
OB_BARREL = "%o went boom.";
OB_SPLASH = "%o stood in the wrong spot.";
OB_R_SPLASH = "%o should have stood back.";
OB_ROCKET = "%o should have stood back.";
OB_KILLEDSELF = "%o killed %hself.";
// Same as OB_MPTELEFRAG, but shown when a monster telefrags you
OB_MONTELEFRAG = "%o was telefragged.";
OB_DEFAULT = "%o died.";
OB_MPDEFAULT = "%o was killed by %k.";
OB_FRIENDLY1 = "%k mows down a teammate.";
OB_FRIENDLY2 = "%k checks %p glasses.";
OB_FRIENDLY3 = "%k gets a frag for the other team.";
OB_FRIENDLY4 = "%k loses another friend.";
SAVEGAMENAME = "zdoomsv";
STARTUP1 = "";
STARTUP2 = "";
STARTUP3 = "";
STARTUP4 = "";
STARTUP5 = "";
// Scoreboard text
SCORE_ITEMS = "ITEMS";
SCORE_BONUS = "BONUS";
SCORE_COLOR = "COLOR";
SCORE_SECRET = "SECRET";
SCORE_NAME = "NAME";
SCORE_DELAY = "DELAY(ms)";
SCORE_KILLS = "KILLS";
SCORE_FRAGS = "FRAGS";
SCORE_DEATHS = "DEATHS";
SCORE_MISSED = "MISSED";
SCORE_TOTAL = "TOTAL";
SCORE_LVLTIME = "LEVEL TIME";
// Item tags: Doom weapons
TAG_FIST = "Brass Knuckles";
TAG_CHAINSAW = "Chainsaw";
TAG_PISTOL = "Pistol";
TAG_SHOTGUN = "Shotgun";
TAG_SUPERSHOTGUN = "Super Shotgun";
TAG_CHAINGUN = "Chaingun";
TAG_ROCKETLAUNCHER = "Rocket Launcher";
TAG_PLASMARIFLE = "Plasma Rifle";
TAG_BFG9000 = "BFG 9000";
// Main Menu
MNU_NEWGAME = "NEW GAME";
MNU_OPTIONS = "OPTIONS";
MNU_GAMEFILES = "GAME FILES";
MNU_INFO = "INFO";
MNU_QUITGAME = "QUIT GAME";
// Skills
MNU_CHOOSESKILL = "CHOOSE SKILL LEVEL:";
SKILL_BABY = "I'm too young to die";
SKILL_EASY = "Hey, not too rough";
SKILL_NORMAL = "Hurt me plenty";
SKILL_HARD = "Ultra-Violence";
SKILL_NIGHTMARE = "NIGHTMARE!";
CSKILL_BABY = "Easy does it";
CSKILL_EASY = "Not so sticky";
CSKILL_NORMAL = "Gobs of goo";
CSKILL_HARD = "Extreme Ooze";
CSKILL_NIGHTMARE = "Super Slimey!";
SSKILL_BABY = "Training";
SSKILL_EASY = "Rookie";
SSKILL_NORMAL = "Veteran";
SSKILL_HARD = "Elite";
SSKILL_NIGHTMARE = "Bloodbath";
MNU_WETNURSE = "THOU NEEDETH A WET-NURSE";
MNU_YELLOWBELLIES = "YELLOWBELLIES-R-US";
MNU_BRINGEST = "BRINGEST THEM ONETH";
MNU_SMITE = "THOU ART A SMITE-MEISTER";
MNU_BLACKPLAGUE = "BLACK PLAGUE POSSESSES THEE";
MNU_SQUIRE = "SQUIRE";
MNU_KNIGHT = "KNIGHT";
MNU_WARRIOR = "WARRIOR";
MNU_BERSERKER = "BERSERKER";
MNU_TITAN = "TITAN";
MNU_ALTARBOY = "ALTAR BOY";
MNU_ACOLYTE = "ACOLYTE";
MNU_PRIEST = "PRIEST";
MNU_CARDINAL = "CARDINAL";
MNU_POPE = "POPE";
MNU_APPRENTICE = "APPRENTICE";
MNU_ENCHANTER = "ENCHANTER";
MNU_SORCERER = "SORCERER";
MNU_WARLOCK = "WARLOCK";
MNU_ARCHMAGE = "ARCHMAGE";
// Classes
MNU_CHOOSECLASS = "CHOOSE CLASS:";
MNU_FIGHTER = "FIGHTER";
MNU_CLERIC = "CLERIC";
MNU_MAGE = "MAGE";
MNU_RANDOM = "RANDOM";
// Game Files
MNU_LOADGAME = "LOAD GAME";
MNU_SAVEGAME = "SAVE GAME";
MNU_NOPICTURE = "No Picture";
MNU_DIFFVERSION = "Different\nVersion";
MNU_NOFILES = "No files";
MNU_DELETESG = "Do you really want to delete the savegame\n";
// Episodes
MNU_EPISODE = "Select Episode";
MNU_COTD = "CITY OF THE DAMNED";
MNU_HELLSMAW = "HELL'S MAW";
MNU_DOME = "THE DOME OF D'SPARIL";
MNU_OSSUARY = "THE OSSUARY";
MNU_DEMESNE = "THE STAGNANT DEMESNE";
$ifgame(heretic) SWSTRING = "ONLY AVAILABLE IN THE REGISTERED VERSION";
// Options Menu
OPTMNU_TITLE = "OPTIONS";
OPTMNU_CONTROLS = "Customize Controls";
OPTMNU_MOUSE = "Mouse options";
OPTMNU_JOYSTICK = "Joystick options";
OPTMNU_PLAYER = "Player Setup";
OPTMNU_GAMEPLAY = "Gameplay Options";
OPTMNU_COMPATIBILITY = "Compatibility Options";
OPTMNU_AUTOMAP = "Automap Options";
OPTMNU_HUD = "HUD Options";
OPTMNU_MISCELLANEOUS = "Miscellaneous Options";
OPTMNU_NETWORK = "Network Options";
OPTMNU_SOUND = "Sound Options";
OPTMNU_DISPLAY = "Display Options";
OPTMNU_VIDEO = "Set video mode";
OPTMNU_DEFAULTS = "Reset to defaults";
OPTMNU_RESETTOSAVED = "Reset to last saved";
OPTMNU_CONSOLE = "Go to console";
// Controls Menu
CNTRLMNU_TITLE = "CUSTOMIZE CONTROLS";
CNTRLMNU_SWITCHTEXT1 = "ENTER to change, BACKSPACE to clear";
CNTRLMNU_SWITCHTEXT2 = "Press new key for control, ESC to cancel";
CNTRLMNU_CONTROLS = "Controls";
CNTRLMNU_ATTACK = "Fire";
CNTRLMNU_ALTATTACK = "Secondary Fire";
CNTRLMNU_RELOAD = "Weapon Reload";
CNTRLMNU_ZOOM = "Weapon Zoom";
CNTRLMNU_USER1 = "Weapon State 1";
CNTRLMNU_USER2 = "Weapon State 2";
CNTRLMNU_USER3 = "Weapon State 3";
CNTRLMNU_USER4 = "Weapon State 4";
CNTRLMNU_USE = "Use / Open";
CNTRLMNU_FORWARD = "Move forward";
CNTRLMNU_BACK = "Move backward";
CNTRLMNU_MOVELEFT = "Strafe left";
CNTRLMNU_MOVERIGHT = "Strafe right";
CNTRLMNU_TURNLEFT = "Turn left";
CNTRLMNU_TURNRIGHT = "Turn right";
CNTRLMNU_TURN180 = "Quick Turn";
CNTRLMNU_JUMP = "Jump";
CNTRLMNU_CROUCH = "Crouch";
CNTRLMNU_TOGGLECROUCH = "Crouch Toggle";
CNTRLMNU_MOVEUP = "Fly / Swim up";
CNTRLMNU_MOVEDOWN = "Fly / Swim down";
CNTRLMNU_LAND = "Stop flying";
CNTRLMNU_MOUSELOOK = "Mouse look";
CNTRLMNU_KEYBOARDLOOK = "Keyboard look";
CNTRLMNU_LOOKUP = "Look up";
CNTRLMNU_LOOKDOWN = "Look down";
CNTRLMNU_CENTERVIEW = "Center view";
CNTRLMNU_RUN = "Run";
CNTRLMNU_TOGGLERUN = "Toggle Run";
CNTRLMNU_STRAFE = "Strafe";
CNTRLMNU_SCOREBOARD = "Show Scoreboard";
CNTRLMNU_TOGGLESCOREBOARD = "Toggle Scoreboard";
CNTRLMNU_CHAT = "Chat";
CNTRLMNU_SAY = "Say";
CNTRLMNU_TEAMSAY = "Team say";
CNTRLMNU_WEAPONS = "Weapons";
CNTRLMNU_NEXTWEAPON = "Next weapon";
CNTRLMNU_PREVIOUSWEAPON = "Previous weapon";
CNTRLMNU_SLOT1 = "Weapon Slot 1";
CNTRLMNU_SLOT2 = "Weapon Slot 2";
CNTRLMNU_SLOT3 = "Weapon Slot 3";
CNTRLMNU_SLOT4 = "Weapon Slot 4";
CNTRLMNU_SLOT5 = "Weapon Slot 5";
CNTRLMNU_SLOT6 = "Weapon Slot 6";
CNTRLMNU_SLOT7 = "Weapon Slot 7";
CNTRLMNU_SLOT8 = "Weapon Slot 8";
CNTRLMNU_SLOT9 = "Weapon Slot 9";
CNTRLMNU_SLOT0 = "Weapon Slot 0";
CNTRLMNU_INVENTORY = "Inventory";
CNTRLMNU_USEITEM = "Activate item";
CNTRLMNU_USEALLITEMS = "Activate all items";
CNTRLMNU_NEXTITEM = "Next item";
CNTRLMNU_PREVIOUSITEM = "Previous item";
CNTRLMNU_DROPITEM = "Drop item";
CNTRLMNU_QUERYITEM = "Query item";
CNTRLMNU_DROPWEAPON = "Drop weapon";
CNTRLMNU_OTHER = "Other";
CNTRLMNU_AUTOMAP = "Toggle automap";
CNTRLMNU_CHASECAM = "Chasecam";
CNTRLMNU_COOPSPY = "Coop spy";
CNTRLMNU_SCREENSHOT = "Screenshot";
CNTRLMNU_CONSOLE = "Open console";
CNTRLMNU_POPUPS = "Strife Popup Screens";
CNTRLMNU_MISSION = "Mission objectives";
CNTRLMNU_KEYS = "Keys list";
CNTRLMNU_STATS = "Weapons/ammo/stats";
// Mouse Menu
MOUSEMNU_TITLE = "MOUSE OPTIONS";
MOUSEMNU_ENABLEMOUSE = "Enable mouse";
MOUSEMNU_MOUSEINMENU = "Enable mouse in menus";
MOUSEMNU_SHOWBACKBUTTON = "Show back button";
MOUSEMNU_CURSOR = "Cursor";
MOUSEMNU_SENSITIVITY = "Overall sensitivity";
MOUSEMNU_NOPRESCALE = "Prescale mouse movement";
MOUSEMNU_SMOOTHMOUSE = "Smooth mouse movement";
MOUSEMNU_TURNSPEED = "Turning speed";
MOUSEMNU_MOUSELOOKSPEED = "Mouselook speed";
MOUSEMNU_FORWBACKSPEED = "Forward/Backward speed";
MOUSEMNU_STRAFESPEED = "Strafing speed";
MOUSEMNU_ALWAYSMOUSELOOK = "Always Mouselook";
MOUSEMNU_INVERTMOUSE = "Invert Mouse";
MOUSEMNU_LOOKSPRING = "Lookspring";
MOUSEMNU_LOOKSTRAFE = "Lookstrafe";
// Joystick Menu
JOYMNU_CONFIG = "CONFIGURE CONTROLLER";
JOYMNU_OPTIONS = "CONTROLLER OPTIONS";
// Player Setup Menu
MNU_PLAYERSETUP = "PLAYER SETUP";
PLYRMNU_NAME = "Name";
PLYRMNU_TEAM = "Team";
PLYRMNU_PLAYERCOLOR = "Color";
PLYRMNU_RED = "Red";
PLYRMNU_GREEN = "Green";
PLYRMNU_BLUE = "Blue";
PLYRMNU_PLAYERCLASS = "Class";
PLYRMNU_PLAYERSKIN = "Skin";
PLYRMNU_PLAYERGENDER = "Gender";
PLYRMNU_AUTOAIM = "Autoaim";
PLYRMNU_SWITCHONPICKUP = "Switch on pickup";
PLYRMNU_ALWAYSRUN = "Always Run";
// Display Options
DSPLYMNU_TITLE = "DISPLAY OPTIONS";
DSPLYMNU_SCOREBOARD = "Scoreboard Options";
DSPLYMNU_SCREENSIZE = "Screen size";
DSPLYMNU_BRIGHTNESS = "Brightness";
DSPLYMNU_VSYNC = "Vertical Sync";
DSPLYMNU_CAPFPS = "Rendering Interpolation";
DSPLYMNU_WIPETYPE = "Screen wipe style";
DSPLYMNU_SHOWENDOOM = "Show ENDOOM screen";
DSPLYMNU_BLOODFADE = "Blood Flash Intensity";
DSPLYMNU_PICKUPFADE = "Pickup Flash Intensity";
DSPLYMNU_WATERFADE = "Underwater Blend Intensity";
DSPLYMNU_PALLETEHACK = "DirectDraw palette hack"; // Not used
DSPLYMNU_ATTACHEDSURFACES = "Use attached surfaces"; // Not used
DSPLYMNU_SKYMODE = "Sky render mode";
DSPLYMNU_GZDFULLBRIGHT = "Fullbright overrides sector color";
DSPLYMNU_DRAWFUZZ = "Use fuzz effect";
DSPLYMNU_TRANSSOUL = "Lost Soul translucency";
DSPLYMNU_FAKECONTRAST = "Use fake contrast";
DSPLYMNU_ROCKETTRAILS = "Rocket Trails";
DSPLYMNU_BLOODTYPE = "Blood Type";
DSPLYMNU_PUFFTYPE = "Bullet Puff Type";
DSPLYMNU_MAXPARTICLES = "Number of particles";
DSPLYMNU_MAXDECALS = "Number of decals";
DSPLYMNU_PLAYERSPRITES = "Show player sprites";
DSPLYMNU_DEATHCAM = "Death camera";
DSPLYMNU_TELEZOOM = "Teleporter zoom";
DSPLYMNU_QUAKEINTENSITY = "Earthquake shake intensity";
DSPLYMNU_NOMONSTERINTERPOLATION = "Interpolate monster movement";
DSPLYMNU_MENUDIM = "Menu dim";
DSPLYMNU_DIMCOLOR = "Dim color";
DSPLYMNU_MOVEBOB = "View bob amount while moving";
DSPLYMNU_STILLBOB = "View bob amount while not moving";
DSPLYMNU_BOBSPEED = "Weapon bob speed";
// HUD Options
HUDMNU_TITLE = "HUD Options";
HUDMNU_ALTHUD = "Alternative HUD";
HUDMNU_MESSAGE = "Message Options";
HUDMNU_UISCALE = "User interface scale";
HUDMNU_CROSSHAIR = "Default Crosshair";
HUDMNU_FORCECROSSHAIR = "Force default crosshair";
HUDMNU_GROWCROSSHAIR = "Grow crosshair when picking up items";
HUDMNU_CROSSHAIRCOLOR = "Crosshair color";
HUDMNU_CROSSHAIRHEALTH = "Crosshair shows health";
HUDMNU_CROSSHAIRSCALE = "Scale crosshair";
HUDMNU_NAMETAGS = "Display nametags";
HUDMNU_NAMETAGCOLOR = "Nametag color";
HUDMNU_SCALESTATBAR = "Stretch status bar";
HUDMNU_SCALEFULLSCREENHUD = "Stretch Fullscreen HUD";
HUDMNU_OLDOUCH = "Use old ouch mug shot formula";
HUDMNU_HEXENFLASHES = "Hexen weapon flashes";
HUDMNU_POISONFLASHES = "Poison damage flashes";
HUDMNU_ICEFLASHES = "Ice death flashes";
HUDMNU_HAZARDFLASHES = "Poison Buildup flashes";
// AltHUD Options
ALTHUDMNU_TITLE = "Alternative HUD";
ALTHUDMNU_ENABLE = "Enable alternative HUD";
ALTHUDMNU_SCALEHUD = "Stretch alternative HUD";
ALTHUDMNU_SHOWSECRETS = "Show secret count";
ALTHUDMNU_SHOWMONSTERS = "Show monster count";
ALTHUDMNU_SHOWITEMS = "Show item count";
ALTHUDMNU_SHOWSTATS = "Show stamina and accuracy";
ALTHUDMNU_SHOWBERSERK = "Show berserk";
ALTHUDMNU_SHOWWEAPONS = "Show weapons";
ALTHUDMNU_SHOWAMMO = "Show ammo for";
ALTHUDMNU_SHOWTIME = "Show time";
ALTHUDMNU_TIMECOLOR = "Time color";
ALTHUDMNU_SHOWLAG = "Show network latency";
ALTHUDMNU_AMMOORDER = "Ammo display order";
ALTHUDMNU_AMMORED = "Red ammo display below %";
ALTHUDMNU_AMMOYELLOW = "Yellow ammo display below %";
ALTHUDMNU_HEALTHRED = "Red health display below";
ALTHUDMNU_HEALTHYELLOW = "Yellow health display below";
ALTHUDMNU_HEALTHGREEN = "Green health display below";
ALTHUDMNU_ARMORRED = "Red armor display below";
ALTHUDMNU_ARMORYELLOW = "Yellow armor display below";
ALTHUDMNU_ARMORGREEN = "Green armor display below";
ALTHUDMNU_AUTOMAPHUD = "Alternative Automap HUD";
ALTHUDMNU_TITLECOLOR = "Map title color";
ALTHUDMNU_MAPTIMECOLOR = "Map time color";
ALTHUDMNU_HUBTIMECOLOR = "Hub time color";
ALTHUDMNU_TOTALTIMECOLOR = "Total time color";
ALTHUDMNU_COORDINATECOLOR = "Coordinate color";
ALTHUDMNU_COORDINATEMODE = "Coordinate mode";
ALTHUDMNU_STATSNAMECOLOR = "Statistics name color";
ALTHUDMNU_STATSCOLOR = "Statistics color";
// Misc. Options
MISCMNU_TITLE = "Miscellaneous Options";
MISCMNU_MERGEKEYS = "Merge left+right Alt/Ctrl/Shift";
MISCMNU_WINFULLSCREENTOGGLE = "Alt-Enter toggles fullscreen";
MISCMNU_MACFULLSCREENTOGGLE = "Command-F toggles fullscreen";
MISCMNU_QUERYIWAD = "Show IWAD selection dialog";
MISCMNU_ALLCHEATS = "Enable cheats from all games";
MISCMNU_ENABLEAUTOSAVES = "Enable autosaves";
MISCMNU_AUTOSAVECOUNT = "Number of autosaves";
MISCMNU_SAVELOADCONFIRMATION = "Save/Load confirmation";
MISCMNU_DEHLOAD = "Load *.deh/*.bex lumps";
MISCMNU_CACHENODES = "Cache nodes";
MISCMNU_CACHETIME = "Time threshold for node caching";
MISCMNU_CLEARNODECACHE = "Clear node cache";
// Automap Options
AUTOMAPMNU_TITLE = "AUTOMAP OPTIONS";
AUTOMAPMNU_COLORSET = "Map color set";
AUTOMAPMNU_CUSTOMCOLORS = "Allow map defined colors";
AUTOMAPMNU_SETCUSTOMCOLORS = "Set custom colors";
AUTOMAPMNU_CONTROLS = "Customize map controls";
AUTOMAPMNU_ROTATE = "Rotate automap";
AUTOMAPMNU_OVERLAY = "Overlay automap";
AUTOMAPMNU_TEXTURED = "Enable textured display";
AUTOMAPMNU_FOLLOW = "Follow player";
AUTOMAPMNU_SHOWITEMS = "Show item counts";
AUTOMAPMNU_SHOWMONSTERS = "Show monster counts";
AUTOMAPMNU_SHOWSECRETS = "Show secret counts";
AUTOMAPMNU_SHOWTIME = "Show time elapsed";
AUTOMAPMNU_SHOWTOTALTIME = "Show total time elapsed";
AUTOMAPMNU_MAPSECRETS = "Show secrets on map";
AUTOMAPMNU_SHOWMAPLABEL = "Show map label";
AUTOMAPMNU_DRAWMAPBACK = "Draw map background";
AUTOMAPMNU_SHOWKEYS = "Show keys (cheat)";
AUTOMAPMNU_SHOWTRIGGERLINES = "Show trigger lines";
AUTOMAPMNU_SHOWTHINGSPRITES = "Show things as sprites";
AUTOMAPMNU_PTOVERLAY = "Overlay portals";
// Automap Controls
MAPCNTRLMNU_TITLE = "CUSTOMIZE MAP CONTROLS";
MAPCNTRLMNU_CONTROLS = "Map Controls";
MAPCNTRLMNU_PANLEFT = "Pan left";
MAPCNTRLMNU_PANRIGHT = "Pan right";
MAPCNTRLMNU_PANUP = "Pan up";
MAPCNTRLMNU_PANDOWN = "Pan down";
MAPCNTRLMNU_ZOOMIN = "Zoom in";
MAPCNTRLMNU_ZOOMOUT = "Zoom out";
MAPCNTRLMNU_TOGGLEZOOM = "Toggle zoom";
MAPCNTRLMNU_TOGGLEFOLLOW = "Toggle follow";
MAPCNTRLMNU_TOGGLEGRID = "Toggle grid";
MAPCNTRLMNU_TOGGLETEXTURE = "Toggle texture";
MAPCNTRLMNU_SETMARK = "Set mark";
MAPCNTRLMNU_CLEARMARK = "Clear mark";
// Automap Colors
MAPCOLORMNU_TITLE = "CUSTOMIZE MAP COLORS";
MAPCOLORMNU_DEFAULTMAPCOLORS = "Restore default custom colors";
MAPCOLORMNU_BACKCOLOR = "Background";
MAPCOLORMNU_YOURCOLOR = "You";
MAPCOLORMNU_WALLCOLOR = "1-sided walls";
MAPCOLORMNU_FDWALLCOLOR = "2-sided walls with different floors";
MAPCOLORMNU_CDWALLCOLOR = "2-sided walls with different ceilings";
MAPCOLORMNU_EFWALLCOLOR = "2-sided walls with 3D floors";
MAPCOLORMNU_GRIDCOLOR = "Map grid";
MAPCOLORMNU_XHAIRCOLOR = "Center point";
MAPCOLORMNU_NOTSEENCOLOR = "Not-yet-seen walls";
MAPCOLORMNU_LOCKEDCOLOR = "Locked doors";
MAPCOLORMNU_INTRALEVELCOLOR = "Teleporter to the same map";
MAPCOLORMNU_INTERLEVELCOLOR = "Teleporter to a different map";
MAPCOLORMNU_SECRETSECTORCOLOR = "Secret sector";
MAPCOLORMNU_SPECIALWALLCOLOR = "Special trigger lines";
MAPCOLORMNU_CHEATMODE = "Cheat Mode";
MAPCOLORMNU_TSWALLCOLOR = "Invisible 2-sided walls";
MAPCOLORMNU_SECRETWALLCOLOR = "Secret walls";
MAPCOLORMNU_THINGCOLOR = "Actors";
MAPCOLORMNU_MONSTERCOLOR = "Monsters";
MAPCOLORMNU_NONCOUNTINGMONSTERCOLOR = "non-counting Monsters";
MAPCOLORMNU_FRIENDCOLOR = "Friends";
MAPCOLORMNU_ITEMCOLOR = "Items";
MAPCOLORMNU_COUNTITEMCOLOR = "Count Items";
MAPCOLORMNU_OVERLAY = "Overlay Mode";
MAPCOLORMNU_OVCHEATMODE = "Overlay Cheat Mode";
MAPCOLORMNU_PORTAL = "Portal Overlays";
// Message Options
MSGMNU_TITLE = "MESSAGES";
MSGMNU_SHOWMESSAGES = "Show messages";
MSGMNU_SHOWOBITUARIES = "Show obituaries";
MSGMNU_SHOWSECRETS = "Show secret notifications";
MSGMNU_SCALETEXT = "Scale text in high res";
MSGMNU_SCALECONSOLE = "Scale console";
MSGMNU_MESSAGELEVEL = "Minimum message level";
MSGMNU_CENTERMESSAGES = "Center messages";
MSGMNU_MESSAGECOLORS = "Message Colors";
MSGMNU_ITEMPICKUP = "Item Pickup";
MSGMNU_OBITUARIES = "Obituaries";
MSGMNU_CRITICALMESSAGES = "Critical Messages";
MSGMNU_CHATMESSAGES = "Chat Messages";
MSGMNU_TEAMMESSAGES = "Team Messages";
MSGMNU_CENTEREDMESSAGES = "Centered Messages";
MSGMNU_SCREENSHOTMESSAGES = "Screenshot messages";
MSGMNU_LONGSAVEMESSAGES = "Detailed save messages";
MSGMNU_DEVELOPER = "Developer message mode";
// Scoreboard Options
SCRBRDMNU_TITLE = "SCOREBOARD OPTIONS";
SCRBRDMNU_COOPERATIVE = "Cooperative Options";
SCRBRDMNU_ENABLE = "Enable Scoreboard";
SCRBRDMNU_HEADERCOLOR = "Header Color";
SCRBRDMNU_YOURCOLOR = "Your Player Color";
SCRBRDMNU_OTHERPLAYERCOLOR = "Other Players' Color";
SCRBRDMNU_DEATHMATCH = "Deathmatch Options";
SCRBRDMNU_TEAMDEATHMATCH = "Team Deathmatch Options";
// Gameplay Menu
GMPLYMNU_TITLE = "GAMEPLAY OPTIONS";
GMPLYMNU_TEAMPLAY = "Teamplay";
GMPLYMNU_TEAMDAMAGE = "Team damage scalar";
GMPLYMNU_SMARTAUTOAIM = "Smart Autoaim";
GMPLYMNU_FALLINGDAMAGE = "Falling damage";
GMPLYMNU_DROPWEAPON = "Drop weapon";
GMPLYMNU_DOUBLEAMMO = "Double ammo";
GMPLYMNU_INFINITEAMMO = "Infinite ammo";
GMPLYMNU_INFINITEINVENTORY = "Infinite inventory";
GMPLYMNU_NOMONSTERS = "No monsters";
GMPLYMNU_NOMONSTERSTOEXIT = "No monsters to exit";
GMPLYMNU_MONSTERSRESPAWN = "Monsters respawn";
GMPLYMNU_NORESPAWN = "No respawn";
GMPLYMNU_ITEMSRESPAWN = "Items respawn";
GMPLYMNU_SUPERRESPAWN = "Big powerups respawn";
GMPLYMNU_FASTMONSTERS = "Fast monsters";
GMPLYMNU_DEGENERATION = "Degeneration";
GMPLYMNU_NOAUTOAIM = "Allow Autoaim";
GMPLYMNU_ALLOWSUICIDE = "Allow Suicide";
GMPLYMNU_ALLOWJUMP = "Allow jump";
GMPLYMNU_ALLOWCROUCH = "Allow crouch";
GMPLYMNU_ALLOWFREELOOK = "Allow freelook";
GMPLYMNU_ALLOWFOV = "Allow FOV";
GMPLYMNU_BFGFREEAIM = "Allow BFG aiming";
GMPLYMNU_ALLOWAUTOMAP = "Allow automap";
GMPLYMNU_AUTOMAPALLIES = "Automap allies";
GMPLYMNU_ALLOWSPYING = "Allow spying";
GMPLYMNU_CHASECAM = "Chasecam cheat";
GMPLYMNU_DONTCHECKAMMO = "Check ammo for weapon switch";
GMPLYMNU_KILLBOSSSPAWNS = "Icon's death kills its spawns";
GMPLYMNU_NOCOUNTENDMONSTER = "End sector counts for kill %";
GMPLYMNU_DEATHMATCH = "Deathmatch Settings";
GMPLYMNU_WEAPONSSTAY = "Weapons stay";
GMPLYMNU_ALLOWPOWERUPS = "Allow powerups";
GMPLYMNU_ALLOWHEALTH = "Allow health";
GMPLYMNU_ALLOWARMOR = "Allow armor";
GMPLYMNU_SPAWNFARTHEST = "Spawn farthest";
GMPLYMNU_SAMEMAP = "Same map";
GMPLYMNU_FORCERESPAWN = "Force respawn";
GMPLYMNU_ALLOWEXIT = "Allow exit";
GMPLYMNU_BARRELSRESPAWN = "Barrels respawn";
GMPLYMNU_RESPAWNPROTECTION = "Respawn protection";
GMPLYMNU_LOSEFRAG = "Lose frag if fragged";
GMPLYMNU_KEEPFRAGS = "Keep frags gained";
GMPLYMNU_NOTEAMSWITCH = "No team switching";
GMPLYMNU_COOPERATIVE = "Cooperative Settings";
GMPLYMNU_MULTIPLAYERWEAPONS = "Spawn multi. weapons";
GMPLYMNU_LOSEINVENTORY = "Lose entire inventory";
GMPLYMNU_KEEPKEYS = "Keep keys";
GMPLYMNU_KEEPWEAPONS = "Keep weapons";
GMPLYMNU_KEEPARMOR = "Keep armor";
GMPLYMNU_KEEPPOWERUPS = "Keep powerups";
GMPLYMNU_KEEPAMMO = "Keep ammo";
GMPLYMNU_LOSEHALFAMMO = "Lose half ammo";
GMPLYMNU_SPAWNWHEREDIED = "Spawn where died";
// Compatibility Options
CMPTMNU_TITLE = "COMPATIBILITY OPTIONS";
CMPTMNU_MODE = "Compatibility mode";
CMPTMNU_ACTORBEHAVIOR = "Actor Behavior";
CMPTMNU_CORPSEGIBS = "Crushed monsters can be resurrected";
CMPTMNU_NOBLOCKFRIENDS = "Friendly monsters aren't blocked";
CMPTMNU_LIMITPAIN = "Limit Pain Elementals' Lost Souls";
CMPTMNU_MBFMONSTERMOVE = "Monster movement is affected by effects";
CMPTMNU_CROSSDROPOFF = "Monsters cannot cross dropoffs";
CMPTMNU_DROPOFF = "Monsters get stuck over dropoffs";
CMPTMNU_INVISIBILITY = "Monsters see invisible players";
CMPTMNU_MINOTAUR = "No Minotaur floor flames in water";
CMPTMNU_NOTOSSDROPS = "Spawn item drops on the floor";
CMPTMNU_DEHACKEDBEHAVIOR = "DehackEd Behavior";
CMPTMNU_DEHHEALTH = "DEH health settings like Doom2.exe";
CMPTMNU_MUSHROOM = "Original A_Mushroom speed in DEH mods";
CMPTMNU_MAPACTIONBEHAVIOR = "Map/Action Behavior";
CMPTMNU_USEBLOCKING = "All special lines can block <use>";
CMPTMNU_ANYBOSSDEATH = "Allow any bossdeath for level special";
CMPTMNU_NODOORLIGHT = "Disable BOOM door light effect";
CMPTMNU_LIGHT = "Find neighboring light like Doom";
CMPTMNU_SHORTTEX = "Find shortest textures like Doom";
CMPTMNU_STAIRS = "Use buggier stair building";
CMPTMNU_FLOORMOVE = "Use Doom's floor motion behavior";
CMPTMNU_POINTONLINE = "Use Doom's point-on-line algorithm";
CMPTMNU_MULTIEXIT = "Level exit can be triggered more than once.";
CMPTMNU_PHYSICSBEHAVIOR = "Physics Behavior";
CMPTMNU_NOPASSOVER = "Actors are infinitely tall";
CMPTMNU_BOOMSCROLL = "Boom scrollers are additive";
CMPTMNU_BADANGLES = "Cannot travel straight NSEW";
CMPTMNU_WALLRUN = "Enable wall running";
CMPTMNU_RAVENSCROLL = "Raven scrollers use original speed";
CMPTMNU_TRACE = "Self ref. sectors don't block shots";
CMPTMNU_HITSCAN = "Use Doom code for hitscan checks";
CMPTMNU_MISSILECLIP = "Use Doom heights for missile clipping";
CMPTMNU_RENDERINGBEHAVIOR = "Rendering Behavior";
CMPTMNU_POLYOBJ = "Draw polyobjects like Hexen";
CMPTMNU_MASKEDMIDTEX = "Ignore Y offsets on masked midtextures";
CMPTMNU_SPRITESORT = "Invert sprite sorting";
CMPTMNU_SOUNDBEHAVIOR = "Sound Behavior";
CMPTMNU_SOUNDSLOTS = "Cripple sound for silent BFG trick";
CMPTMNU_SILENTPICKUP = "Don't let others hear your pickups";
CMPTMNU_SILENTINSTANTFLOORS = "Inst. moving floors are not silent";
CMPTMNU_SECTORSOUNDS = "Sector sounds use center as source";
CMPTMNU_SOUNDCUTOFF = "Sounds stop when actor vanishes";
CMPTMNU_SOUNDTARGET = "Use original sound target handling";
CMPTMNU_TELEPORT = "Scripted teleports don't trigger sector actions";
CMPTMNU_PUSHWINDOW = "Non-blocking lines can be pushed";
// Sound Options
SNDMNU_TITLE = "SOUND OPTIONS";
SNDMNU_SFXVOLUME = "Sounds volume";
SNDMNU_MENUVOLUME = "Menu volume";
SNDMNU_MUSICVOLUME = "Music volume";
SNDMNU_MIDIDEVICE = "MIDI device";
SNDMNU_UNDERWATERREVERB = "Underwater reverb";
SNDMNU_RANDOMIZEPITCHES = "Randomize pitches";
SNDMNU_CHANNELS = "Sound channels";
SNDMNU_BACKEND = "Sound backend";
SNDMNU_FMOD = "FMOD options";
SNDMNU_OPENAL = "OpenAL options";
SNDMNU_RESTART = "Restart sound";
SNDMNU_ADVANCED = "Advanced options";
SNDMNU_MODREPLAYER = "Module replayer options";
// Fmod Options
FMODMNU_TITLE = "FMOD OPTIONS";
FMODMNU_WATERCUTOFF = "Underwater cutoff";
FMODMNU_OUTPUTSYSTEM = "Output system";
FMODMNU_OUTPUTFORMAT = "Output format";
FMODMNU_SPEAKERMODE = "Speaker mode";
FMODMNU_RESAMPLER = "Resampler";
FMODMNU_HRTFFILTER = "HRTF filter";
FMODMNU_BUFFERSIZE = "Buffer size";
FMODMNU_BUFFERCOUNT = "Buffer count";
// OpenAL Options
OPENALMNU_TITLE = "OPENAL OPTIONS";
OPENALMNU_PLAYBACKDEVICE = "Playback device";
OPENALMNU_ENABLEEFX = "Enable EFX";
// Advanced Sound Options
ADVSNDMNU_TITLE = "ADVANCED SOUND OPTIONS";
ADVSNDMNU_SAMPLERATE = "Sample rate";
ADVSNDMNU_OPLSYNTHESIS = "OPL Synthesis";
ADVSNDMNU_OPLNUMCHIPS = "Number of emulated OPL chips";
ADVSNDMNU_OPLFULLPAN = "Full MIDI stereo panning";
ADVSNDMNU_OPLCORES = "OPL Emulator Core";
ADVSNDMNU_GUSEMULATION = "GUS Emulation";
ADVSNDMNU_GUSCONFIG = "GUS config file";
ADVSNDMNU_MIDIVOICES = "MIDI voices";
ADVSNDMNU_DMXGUS = "Read DMXGUS lumps";
ADVSNDMNU_GUSMEMSIZE = "GUS memory size";
ADVSNDMNU_FLUIDSYNTH = "FluidSynth";
ADVSNDMNU_FLUIDPATCHSET = "Patch set";
ADVSNDMNU_FLUIDGAIN = "Gain";
ADVSNDMNU_REVERB = "Reverb";
ADVSNDMNU_FLUIDVOICES = "MIDI voices";
ADVSNDMNU_TIMIDITY = "Timidity++";
ADVSNDMNU_TIMIDITYEXE = "Path for executable";
ADVSNDMNU_TIMIDITYCHORUS = "Chorus";
ADVSNDMNU_TIMIDITYVOLUME = "Relative volume";
ADVSNDMNU_WILDMIDI = "WildMidi";
ADVSNDMNU_WILDMIDICONFIG = "WildMidi config file";
// Module Replayer Options
MODMNU_TITLE = "MODULE REPLAYER OPTIONS";
MODMNU_REPLAYERENGINE = "Replayer engine";
MODMNU_MASTERVOLUME = "Master Volume";
MODMNU_QUALITY = "Quality";
MODMNU_VOLUMERAMPING = "Volume ramping";
MODMNU_CHIPOMATIC = "Chip-o-matic";
// Video Options
VIDMNU_TITLE = "VIDEO MODE";
VIDMNU_FULLSCREEN = "Fullscreen";
VIDMNU_HIDPI = "Retina/HiDPI support";
VIDMNU_ASPECTRATIO = "Aspect ratio";
VIDMNU_FORCEASPECT = "Force aspect ratio";
VIDMNU_5X4ASPECTRATIO = "Enable 5:4 aspect ratio";
VIDMNU_ENTERTEXT = "Press ENTER to set mode";
VIDMNU_TESTTEXT1 = "T to test mode for 5 seconds";
VIDMNU_TESTTEXT2 = "Please wait 5 seconds...";
// Network Options
NETMNU_TITLE = "NETWORK OPTIONS";
NETMNU_LOCALOPTIONS = "Local options";
NETMNU_MOVEPREDICTION = "Movement prediction";
NETMNU_LINESPECIALPREDICTION = "Predict line actions";
NETMNU_PREDICTIONLERPSCALE = "Prediction Lerp Scale";
NETMNU_LERPTHRESHOLD = "Lerp Threshold";
NETMNU_HOSTOPTIONS = "Host options";
NETMNU_EXTRATICS = "Extra Tics";
NETMNU_TICBALANCE = "Latency balancing";
// Option Values
OPTVAL_OFF = "Off";
OPTVAL_ON = "On";
OPTVAL_LOW = "Low";
OPTVAL_MEDIUM = "Medium";
OPTVAL_HIGH = "High";
OPTVAL_MALE = "Male";
OPTVAL_FEMALE = "Female";
OPTVAL_OTHER = "Other";
OPTVAL_UPPERLEFT = "Upper left";
OPTVAL_UPPERRIGHT = "Upper right";
OPTVAL_LOWERLEFT = "Lower left";
OPTVAL_LOWERRIGHT = "Lower right";
OPTVAL_TOUCHSCREENLIKE = "Touchscreen-like";
OPTVAL_NONE = "None";
OPTVAL_TURNING = "Turning";
OPTVAL_LOOKINGUPDOWN = "Looking Up/Down";
OPTVAL_MOVINGFORWARD = "Moving Forward";
OPTVAL_STRAFING = "Strafing";
OPTVAL_MOVINGUPDOWN = "Moving Up/Down";
OPTVAL_INVERTED = "Inverted";
OPTVAL_NOTINVERTED = "Not Inverted";
OPTVAL_ORIGINAL = "Original";
OPTVAL_OPTIMIZED = "Optimized";
OPTVAL_NORMAL = "Normal";
OPTVAL_STRETCH = "Stretch";
OPTVAL_CAPPED = "Capped";
OPTVAL_PARTICLES = "Particles";
OPTVAL_SPRITES = "Sprites";
OPTVAL_SPRITESPARTICLES = "Sprites & Particles";
OPTVAL_MELT = "Melt";
OPTVAL_BURN = "Burn";
OPTVAL_CROSSFADE = "Crossfade";
OPTVAL_ONLYMODIFIED = "Only modified";
OPTVAL_SMOOTH = "Smooth";
OPTVAL_TRANSLUCENT = "Translucent";
OPTVAL_FUZZ = "Fuzz";
OPTVAL_SHADOW = "Shadow";
OPTVAL_ITEMS = "Items";
OPTVAL_WEAPONS = "Weapons";
OPTVAL_BOTH = "Both";
OPTVAL_ZDOOM = "ZDoom";
OPTVAL_STRIFE = "Strife";
OPTVAL_PLAYER = "Player";
OPTVAL_MAP = "Map";
OPTVAL_SCALETO640X400 = "Scale to 640x400";
OPTVAL_PIXELDOUBLE = "Pixel double";
OPTVAL_PIXELQUADRUPLE = "Pixel quadruple";
OPTVAL_CURRENTWEAPON = "Current weapon";
OPTVAL_AVAILABLEWEAPONS = "Available weapons";
OPTVAL_ALLWEAPONS = "All weapons";
OPTVAL_LEVELMILLISECONDS = "Level, milliseconds";
OPTVAL_LEVELSECONDS = "Level, seconds";
OPTVAL_LEVEL = "Level";
OPTVAL_HUBSECONDS = "Hub, seconds";
OPTVAL_HUB = "Hub";
OPTVAL_TOTALSECONDS = "Total, seconds";
OPTVAL_TOTAL = "Total";
OPTVAL_SYSTEMSECONDS = "System, seconds";
OPTVAL_SYSTEM = "System";
OPTVAL_NETGAMESONLY = "Netgames only";
OPTVAL_ALWAYS = "Always";
OPTVAL_AMMOIMAGETEXT = "Image and Text";
OPTVAL_AMMOTEXTIMAGE = "Text and Image";
OPTVAL_SCRIPTSONLY = "Scripts Only";
OPTVAL_NEVER = "Never";
OPTVAL_ALL = "All";
OPTVAL_ONLYLASTONE = "Only last one";
OPTVAL_CUSTOM = "Custom";
OPTVAL_TRADITIONALDOOM = "Traditional Doom";
OPTVAL_TRADITIONALSTRIFE = "Traditional Strife";
OPTVAL_TRADITIONALRAVEN = "Traditional Raven";
OPTVAL_ONLYWHENFOUND = "Only when found";
OPTVAL_ONFOROVERLAYONLY = "On for overlay only";
OPTVAL_OVERLAYNORMAL = "Overlay+Normal";
OPTVAL_OVERLAYONLY = "Overlay Only";
OPTVAL_NOTFORHUBS = "Not for hubs";
OPTVAL_FRONT = "Front";
OPTVAL_ANIMATED = "Animated";
OPTVAL_ROTATED = "Rotated";
OPTVAL_MAPDEFINEDCOLORSONLY = "Map defined colors only";
OPTVAL_DOUBLE = "Double";
OPTVAL_TRIPLE = "Triple";
OPTVAL_QUADRUPLE = "Quadruple";
OPTVAL_ITEMPICKUP = "Item Pickup";
OPTVAL_OBITUARIES = "Obituaries";
OPTVAL_CRITICALMESSAGES = "Critical Messages";
OPTVAL_NEVERFRIENDS = "Never friends";
OPTVAL_ONLYMONSTERS = "Only monsters";
OPTVAL_HEXEN = "Hexen";
OPTVAL_OLD = "Old";
OPTVAL_DEFAULT = "Default";
OPTVAL_DOOM = "Doom";
OPTVAL_DOOMSTRICT = "Doom (strict)";
OPTVAL_BOOM = "Boom";
OPTVAL_BOOMSTRICT = "Boom (strict)";
OPTVAL_MBF = "MBF";
OPTVAL_ZDOOM2063 = "ZDoom 2.0.63";
OPTVAL_4000HZ = "4000 Hz";
OPTVAL_8000HZ = "8000 Hz";
OPTVAL_11025HZ = "11025 Hz";
OPTVAL_22050HZ = "22050 Hz";
OPTVAL_32000HZ = "32000 Hz";
OPTVAL_44100HZ = "44100 Hz";
OPTVAL_48000HZ = "48000 Hz";
OPTVAL_64SAMPLES = "64 samples";
OPTVAL_128SAMPLES = "128 samples";
OPTVAL_256SAMPLES = "256 samples";
OPTVAL_512SAMPLES = "512 samples";
OPTVAL_1024SAMPLES = "1024 samples";
OPTVAL_2048SAMPLES = "2048 samples";
OPTVAL_4096SAMPLES = "4096 samples";
OPTVAL_UNLIMITED = "Unlimited";
OPTVAL_256K = "256K";
OPTVAL_512K = "512K";
OPTVAL_768K = "768K";
OPTVAL_1024K = "1024K";
OPTVAL_MAMEOPL2 = "MAME OPL2";
OPTVAL_DOSBOXOPL3 = "DOSBox OPL3";
OPTVAL_JAVAOPL3 = "Java OPL3";
OPTVAL_NUKEDOPL3 = "Nuked OPL3";
OPTVAL_SOUNDSYSTEM = "Sound System";
OPTVAL_FOO_DUMB = "foo_dumb";
OPTVAL_ALIASING = "Aliasing";
OPTVAL_LINEAR = "Linear";
OPTVAL_CUBIC = "Cubic";
OPTVAL_BLEP = "Band-limited step";
OPTVAL_LINEARSLOW = "Linear (Slower)";
OPTVAL_BLAM = "Band-limited linear";
OPTVAL_CUBICSLOW = "Cubic (Slower)";
OPTVAL_SINC = "Sinc";
OPTVAL_NOTEONOFFONLY = "Note on/off only";
OPTVAL_FULLRAMPING = "Full ramping";
OPTVAL_ALLUNACKNOWLEDGED = "All unacknowledged";
OPTVAL_ERRORS = "Errors";
OPTVAL_WARNINGS = "Warnings";
OPTVAL_NOTIFICATIONS = "Notifications";
OPTVAL_EVERYTHING = "Everything";
OPTVAL_FULLSCREENONLY = "Fullscreen only";
// Colors
C_BRICK = "\cabrick";
C_TAN = "\cbtan";
C_GRAY = "\ccgray";
C_GREEN = "\cdgreen";
C_BROWN = "\cebrown";
C_GOLD = "\cfgold";
C_RED = "\cgred";
C_BLUE = "\chblue";
C_ORANGE = "\ciorange";
C_WHITE = "\cjwhite";
C_YELLOW = "\ckyellow";
C_DEFAULT = "\cldefault";
C_BLACK = "\cmblack";
C_LIGHTBLUE = "\cnlight blue";
C_CREAM = "\cocream";
C_OLIVE = "\cpolive";
C_DARKGREEN = "\cqdark green";
C_DARKRED = "\crdark red";
C_DARKBROWN = "\csdark brown";
C_PURPLE = "\ctpurple";
C_DARKGRAY = "\cudark gray";
C_CYAN = "\cvcyan";
// Option Strings
OPTSTR_SIMPLEARROW = "Simple arrow";
OPTSTR_HERETIC = "Heretic";
OPTSTR_CHEX = "Chex";
OPTSTR_SYSTEMCURSOR = "System cursor";
OPTSTR_DIRECTSOUND = "DirectSound";
OPTSTR_WASAPI = "Vista WASAPI";
OPTSTR_ASIO = "ASIO";
OPTSTR_WAVEOUT = "WaveOut";
OPTSTR_NOSOUND = "No Sound";
OPTSTR_OSS = "OSS";
OPTSTR_ALSA = "ALSA";
OPTSTR_SDL = "SDL";
OPTSTR_ESD = "ESD";
OPTSTR_PULSEAUDIO = "PulseAudio";
OPTSTR_COREAUDIO = "Core Audio";
OPTSTR_PCM8BIT = "8-bit";
OPTSTR_PCM16BIT = "16-bit";
OPTSTR_PCM24BIT = "24-bit";
OPTSTR_PCM32BIT = "32-bit";
OPTSTR_PCMFLOAT = "32-bit float";
OPTSTR_AUTO = "Auto";