-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLanguages.json
4773 lines (4773 loc) · 126 KB
/
Languages.json
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
[
{
"id": "test",
"english": "Test",
"schinese": "测试"
},
{
"id": "Mod.Reworked",
"english": "Town Of Us Reworked",
"schinese": "职业小镇修改版"
},
{
"id": "Mod.Submerged",
"english": "Submerged",
"schinese": "潜艇"
},
{
"id": "Mod.LevelImpostor",
"english": "LevelImpostor",
"schinese": ""
},
{
"id": "Presets.Casual",
"english": "Casual",
"schinese": "轻松"
},
{
"id": "Presets.Chaos",
"english": "Chaos",
"schinese": "混乱"
},
{
"id": "Presets.Default",
"english": "Default",
"schinese": "默认"
},
{
"id": "Presets.LastUsed",
"english": "Last Used",
"schinese": "上次使用"
},
{
"id": "Presets.Ranked",
"english": "Ranked",
"schinese": "分级"
},
{
"id": "Updates.Mod.Updating",
"english": "Downloading %mod%\nPlease wait...",
"schinese": "正在更新%mod%\n请稍候..."
},
{
"id": "Updates.Mod.Manually",
"english": "Unable to download.\nPlease update manually.",
"schinese": "无法自动更新。\n请手动更新本模组。"
},
{
"id": "Updates.Mod.Copying",
"english": "%mod%\ndownloaded.\nCopying file...",
"schinese": ""
},
{
"id": "Updates.Mod.Success",
"english": "%mod%\ndownloaded successfully.\nPlease RESTART the game.",
"schinese": "%mod%\n已成功更新。\n请重启游戏。"
},
{
"id": "Updates.Mod.NoSuccess",
"english": "Download wasn't successful\nTry again later,\nor update manually.",
"schinese": "更新失败。\n请稍后再试,\n或尝试手动更新。"
},
{
"id": "Colors.Watermelon",
"english": "Watermelon",
"schinese": "西瓜色"
},
{
"id": "Colors.Chocolate",
"english": "Chocolate",
"schinese": "巧克力色"
},
{
"id": "Colors.SkyBlue",
"english": "Sky Blue",
"schinese": "天蓝色"
},
{
"id": "Colors.Beige",
"english": "Beige",
"schinese": "米色"
},
{
"id": "Colors.Magenta",
"english": "Magenta",
"schinese": "洋红色"
},
{
"id": "Colors.Turquoise",
"english": "Turquoise",
"schinese": "绿松石色"
},
{
"id": "Colors.Lilac",
"english": "Lilac",
"schinese": "丁香紫"
},
{
"id": "Colors.Azure",
"english": "Azure",
"schinese": "橄榄色"
},
{
"id": "Colors.Olive",
"english": "Olive",
"schinese": "蔚蓝色"
},
{
"id": "Colors.Plum",
"english": "Plum",
"schinese": "紫红色"
},
{
"id": "Colors.Jungle",
"english": "Jungle",
"schinese": "丛林绿"
},
{
"id": "Colors.Mint",
"english": "Mint",
"schinese": "薄荷色"
},
{
"id": "Colors.Chartreuse",
"english": "Chartreuse",
"schinese": "黄绿色"
},
{
"id": "Colors.Macau",
"english": "Macau",
"schinese": "澳门绿"
},
{
"id": "Colors.Tawny",
"english": "Tawny",
"schinese": "黄褐色"
},
{
"id": "Colors.Gold",
"english": "Gold",
"schinese": "金黄色"
},
{
"id": "Colors.Panda",
"english": "Panda",
"schinese": "熊猫色"
},
{
"id": "Colors.Contrast",
"english": "Contrast",
"schinese": "对比色"
},
{
"id": "Colors.Starlight",
"english": "Starlight",
"schinese": "星光色"
},
{
"id": "Colors.Vantablack",
"english": "Vantablack",
"schinese": "梵塔黑"
},
{
"id": "Colors.Ice",
"english": "Ice",
"schinese": "冰蓝色"
},
{
"id": "Colors.Nougat",
"english": "Nougat",
"schinese": "奶糖色"
},
{
"id": "Colors.Reversebow",
"english": "Reversebow",
"schinese": "反色"
},
{
"id": "Colors.Vibrance",
"english": "Vibrance",
"schinese": "饱和"
},
{
"id": "Colors.Darkbow",
"english": "Darkbow",
"schinese": "玄黑色"
},
{
"id": "Colors.Aberration",
"english": "Aberration",
"schinese": "差色"
},
{
"id": "Colors.Chroma",
"english": "Chroma",
"schinese": "色度"
},
{
"id": "Colors.Mantle",
"english": "Mantle",
"schinese": "地幔色"
},
{
"id": "Colors.Fire",
"english": "Fire",
"schinese": "火红色"
},
{
"id": "Colors.Galaxy",
"english": "Galaxy",
"schinese": "银河白"
},
{
"id": "Colors.Monochrome",
"english": "Monochrome",
"schinese": "单色"
},
{
"id": "Colors.Lava",
"english": "Lava",
"schinese": ""
},
{
"id": "Colors.Rainbow",
"english": "Rainbow",
"schinese": "彩虹色"
},
{
"id": "Shade.Lighter",
"english": "Lighter",
"schinese": "浅"
},
{
"id": "Shade.Darker",
"english": "Darker",
"schinese": "深"
},
{
"id": "CustomOption.GameSettings",
"english": "Game Settings",
"schinese": "基础设置"
},
{
"id": "CustomOption.PlayerSpeed",
"english": "Player Speed",
"schinese": "玩家速度"
},
{
"id": "CustomOption.GhostSpeed",
"english": "Ghost Speed",
"schinese": "鬼魂速度"
},
{
"id": "CustomOption.InteractionDistance",
"english": "Interaction Distance",
"schinese": "交互距离"
},
{
"id": "CustomOption.EmergencyButtonCount",
"english": "Emergency Button Count",
"schinese": "紧急会议次数"
},
{
"id": "CustomOption.EmergencyButtonCooldown",
"english": "Emergency Button Cooldown",
"schinese": "紧急会议冷却"
},
{
"id": "CustomOption.DiscussionTime",
"english": "Discussion Time",
"schinese": "会议阶段讨论时间"
},
{
"id": "CustomOption.VotingTime",
"english": "Voting Time",
"schinese": "会议阶段投票时间"
},
{
"id": "CustomOption.TaskBar",
"english": "Taskbar Updates",
"schinese": "任务进度更新频率"
},
{
"ids": [ "CustomOption.TaskBarMode.Normal", "CustomOption.AirshipSpawnType.Normal" ],
"english": "Normal",
"schinese": ""
},
{
"id": "CustomOption.TaskBarMode.MeetingOnly",
"english": "Meeting Only",
"schinese": ""
},
{
"ids": [ "CustomOption.TaskBarMode.Invisible", "CustomOption.PlayerNames.NotVisible" ],
"english": "Invisible",
"schinese": "任务进度新频率"
},
{
"id": "CustomOption.ConfirmEjects",
"english": "Confirm Ejects",
"schinese": "放逐确认"
},
{
"id": "CustomOption.EjectionRevealsRoles",
"english": "Ejection Reveals <color=#FFD700FF>Roles</color>",
"schinese": "显示被放逐玩家的<color=#FFD700FF>职业</color>"
},
{
"id": "CustomOption.EnableInitialCds",
"english": "Enable Game Start Cooldowns",
"schinese": ""
},
{
"id": "CustomOption.InitialCooldowns",
"english": "Game Start Cooldowns",
"schinese": "游戏开始后冷却"
},
{
"id": "CustomOption.EnableMeetingCds",
"english": "Enable Meeting End Cooldowns",
"schinese": ""
},
{
"id": "CustomOption.MeetingCooldowns",
"english": "Meeting End Cooldowns",
"schinese": "会议阶段结束后冷却"
},
{
"id": "CustomOption.EnableFailCds",
"english": "Enable Ability Failure Cooldowns",
"schinese": ""
},
{
"id": "CustomOption.FailCooldowns",
"english": "Ability Failure Cooldowns",
"schinese": ""
},
{
"id": "CustomOption.ReportDistance",
"english": "Player Report Distance",
"schinese": "最大报告距离"
},
{
"id": "CustomOption.ChatCooldown",
"english": "Chat Cooldown",
"schinese": "聊天冷却"
},
{
"id": "CustomOption.ChatCharacterLimit",
"english": "Chat Character Limit",
"schinese": "聊天字数限制"
},
{
"id": "CustomOption.LobbySize",
"english": "Lobby Size",
"schinese": "玩家上限"
},
{
"id": "CustomOption.GameModeSettings",
"english": "Game Mode Settings",
"schinese": "游戏模式设置"
},
{
"id": "CustomOption.GameMode",
"english": "Game Mode",
"schinese": "游戏模式"
},
{
"id": "CustomOption.GameMode.Classic",
"english": "<color=#C02A2CFF>Classic</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.AllAny",
"english": "<color=#CBD542FF>All Any</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.KillingOnly",
"english": "<color=#06E00CFF>Killing Only</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.RoleList",
"english": "<color=#FA1C79FF>Role List</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.HideAndSeek",
"english": "<color=#7500AFFF>Hide And Seek</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.TaskRace",
"english": "<color=#1E49CFFF>Task Race</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.Custom",
"english": "<color=#E6956AFF>Custom</color>",
"schinese": ""
},
{
"id": "CustomOption.GameMode.Vanilla",
"english": "Vanilla",
"schinese": ""
},
{
"id": "CustomOption.IgnoreAlignmentCaps",
"english": "Ignore <color=#1D7CF2FF>Alignment</color> Caps",
"schinese": "全击杀模式设置"
},
{
"id": "CustomOption.IgnoreFactionCaps",
"english": "Ignore <color=#00E66DFF>Faction</color> Caps",
"schinese": "全击杀模式设置"
},
{
"id": "CustomOption.IgnoreLayerCaps",
"english": "Ignore Non-<color=#FFD700FF>Role</color> Caps",
"schinese": "全击杀模式设置"
},
{
"id": "CustomOption.NeutralsCount",
"english": "<color=#B3B3B3FF>Neutrals</color> Count",
"schinese": "<color=#B3B3B3FF>独立阵营</color>玩家数"
},
{
"id": "CustomOption.AddArsonist",
"english": "Add <color=#EE7600FF>Arsonist</color>",
"schinese": "添加<color=#EE7600FF>纵火狂</color>"
},
{
"id": "CustomOption.AddCryomaniac",
"english": "Add <color=#642DEAFF>Cryomaniac</color>",
"schinese": "添加<color=#642DEAFF>冰冻狂</color>"
},
{
"id": "CustomOption.AddPlaguebearer",
"english": "Add <color=#CFFE61FF>Plaguebearer</color>",
"schinese": "添加<color=#CFFE61FF>瘟疫之源</color>"
},
{
"id": "CustomOption.GameModifiers",
"english": "Game Modifiers",
"schinese": "更多设置"
},
{
"id": "CustomOption.WhoCanVent",
"english": "Serial Venters",
"schinese": "允许使用管道的玩家"
},
{
"ids": [ "CustomOption.WhoCanVentOptions.Everyone", "CustomOption.ShieldOptions.Everyone", "CustomOption.AdminDeadPlayers.Everyone", "CustomOption.RevealerCanBeClickedBy.Everyone",
"CustomOption.DisguiserTargets.Everyone", "CustomOption.ProtectOptions.Everyone", "CustomOption.WhoCanSeeFirstKillShield.Everyone", "CustomOption.DeadRevealed.Everyone" ],
"english": "Everyone",
"schinese": ""
},
{
"id": "CustomOption.WhoCanVentOptions.Default",
"english": "Default",
"schinese": ""
},
{
"ids": [ "CustomOption.WhoCanVentOptions.NoOne", "CustomOption.ShieldOptions.Nobody", "CustomOption.WhoCanSeeFirstKillShield.NoOne", "CustomOption.AdminDeadPlayers.Nobody",
"CustomOption.ProtectOptions.Nobody" ],
"english": "No One",
"schinese": ""
},
{
"id": "CustomOption.AnonymousVoting",
"english": "Anonymous Voting",
"schinese": "匿名投票"
},
{
"id": "CustomOption.AnonVotes.Enabled",
"english": "Grey",
"schinese": "匿名投票"
},
{
"ids": [ "CustomOption.AnonVotes.Disabled", "CustomOption.RandomSpawning.Disabled" ],
"english": "Disabled",
"schinese": "匿名投票"
},
{
"id": "CustomOption.AnonVotes.NonPolitician",
"english": "Non-<color=#CCA3CCFF>Politicians</color> Only",
"schinese": "匿名投票"
},
{
"id": "CustomOption.AnonVotes.PoliticianOnly",
"english": "<color=#CCA3CCFF>Politician</color> Only",
"schinese": "匿名投票"
},
{
"id": "CustomOption.AnonVotes.NotVisible",
"english": "Not Visible",
"schinese": "匿名投票"
},
{
"id": "CustomOption.NoSkipping",
"english": "No Skipping",
"schinese": "禁止弃票"
},
{
"id": "CustomOption.DisableSkipButtonMeetings.Emergency",
"english": "Emergency",
"schinese": ""
},
{
"id": "CustomOption.FirstKillShield",
"english": "Enable First Kill Shield",
"schinese": "首杀保护"
},
{
"id": "CustomOption.WhoSeesFirstKillShield",
"english": "Who Sees First Kill Shield",
"schinese": "可以确认首杀保护的玩家"
},
{
"id": "CustomOption.FactionSeeRoles",
"english": "Factioned Evils See The <color=#FFD700FF>Roles</color> Of Their Team",
"schinese": "不止一名玩家的邪恶阵营可以互相确认<color=#FFD700FF>职业</color>"
},
{
"id": "CustomOption.VisualTasks",
"english": "Visual Tasks",
"schinese": "视觉性任务"
},
{
"id": "CustomOption.Whispers",
"english": "Whispering",
"schinese": "启用悄悄话"
},
{
"id": "CustomOption.WhispersAnnouncement",
"english": "Everyone Is Alerted To Whispers",
"schinese": "所有玩家都会确认说悄悄话的玩家"
},
{
"id": "CustomOption.CooldownInVent",
"english": "Cooldown Decreases Even While In A Vent",
"schinese": ""
},
{
"id": "CustomOption.HideVentAnims",
"english": "Hide Vent Animations In The Dark",
"schinese": ""
},
{
"id": "CustomOption.JaniCanMutuallyExclusive",
"english": "Janitor And Cannibal Are Mutually Exclusive",
"schinese": ""
},
{
"id": "CustomOption.IndicateReportedBodies",
"english": "Indicate Reported Bodies In Meetings",
"schinese": ""
},
{
"id": "CustomOption.AppearanceAnimation",
"english": "Kill Animations Show Modified Player",
"schinese": "击杀动画是否显示改变外表的凶手"
},
{
"id": "CustomOption.RandomSpawns",
"english": "Random Player Spawns",
"schinese": "玩家随机出生"
},
{
"id": "CustomOption.RandomSpawning.GameStart",
"english": "Game Start",
"schinese": ""
},
{
"id": "CustomOption.RandomSpawning.Meeting",
"english": "After Meetings",
"schinese": ""
},
{
"id": "CustomOption.RandomSpawning.Both",
"english": "Both",
"schinese": ""
},
{
"id": "CustomOption.VentTargeting",
"english": "Players In Vents Can Be Targeted",
"schinese": "管道内的玩家可以成为技能目标"
},
{
"id": "CustomOption.EnableAbilities",
"english": "Enable <color=#FF9900FF>Abilities</color>",
"schinese": "启用<color=#FF9900FF>额外能力</color>"
},
{
"id": "CustomOption.EnableModifiers",
"english": "Enable <color=#7F7F7FFF>Modifiers</color>",
"schinese": "启用<color=#7F7F7FFF>附加职业</color>"
},
{
"id": "CustomOption.EnableDispositions",
"english": "Enable <color=#DD585BFF>Dispositions</color>",
"schinese": ""
},
{
"id": "CustomOption.EnableCustomSpawns",
"english": "Enable Custom Spawn Locations",
"schinese": ""
},
{
"id": "CustomOption.GameAnnouncementSettings",
"english": "Game Announcement Settings",
"schinese": "游戏内公开信息设置"
},
{
"id": "CustomOption.GameAnnouncements",
"english": "Enable Game Announcements",
"schinese": "启用公开信息"
},
{
"id": "CustomOption.LocationReports",
"english": "Reported Body's Location Is Announced",
"schinese": "公开尸体位置"
},
{
"id": "CustomOption.RoleFactionReports",
"english": "Every Body's <color=#FFD700FF>Role</color>/<color=#00E66DFF>Faction</color> Is Announced",
"schinese": "公开死亡玩家<color=#FFD700FF>职业</color>/<color=#00E66DFF>阵营</color>"
},
{
"id": "CustomOption.RoleFactionReports.Neither",
"english": "Neither",
"schinese": ""
},
{
"ids": [ "CustomOption.RoleFactionReports.Role", "CustomOption.ConsigInfo.Role" ],
"english": "<color=#FFD700FF>Role</color>",
"schinese": ""
},
{
"ids": [ "CustomOption.RoleFactionReports.Faction", "CustomOption.ConsigInfo.Faction" ],
"english": "<color=#00E66DFF>Faction</color>",
"schinese": ""
},
{
"id": "CustomOption.KillerReports",
"english": "Every Body's Killer's <color=#FFD700FF>Role</color>/<color=#00E66DFF>Faction</color> Is Announced",
"schinese": "公开杀害死亡玩家凶手的<color=#FFD700FF>职业</color>/<color=#00E66DFF>阵营</color>"
},
{
"id": "CustomOption.DeadSeeEverything",
"english": "Dead Can See Everything",
"schinese": "死亡玩家可确认所有信息"
},
{
"id": "CustomOption.ParallelMedScans",
"english": "Parallel Medbay Scans",
"schinese": "允许同时进行扫描"
},
{
"id": "CustomOption.PlayerNames",
"english": "Player Names",
"schinese": ""
},
{
"id": "CustomOption.PlayerNames.Obstructed",
"english": "Hide Obstructed",
"schinese": ""
},
{
"id": "CustomOption.PlayerNames.Visible",
"english": "Visible",
"schinese": ""
},
{
"id": "CustomOption.MapSettings",
"english": "Map Settings",
"schinese": "地图设置"
},
{
"id": "CustomOption.RandomMapSkeld",
"english": "Skeld Chance",
"schinese": "游玩Skeld概率"
},
{
"id": "CustomOption.RandomMapMira",
"english": "Mira HQ Chance",
"schinese": "游玩Mira HQ概率"
},
{
"id": "CustomOption.RandomMapdlekS",
"english": "dlekS Chance",
"schinese": "游玩dlekS概率"
},
{
"id": "CustomOption.RandomMapPolus",
"english": "Polus Chance",
"schinese": "游玩Polus概率"
},
{
"id": "CustomOption.RandomMapAirship",
"english": "Airship Chance",
"schinese": "游玩Airship概率"
},
{
"id": "CustomOption.RandomMapFungle",
"english": "Fungle Chance",
"schinese": "游玩Fungle概率"
},
{
"id": "CustomOption.RandomMapSubmerged",
"english": "Submerged Chance",
"schinese": "游玩Submerged概率"
},
{
"id": "CustomOption.RandomMapLevelImpostor",
"english": "Level Impostor Chance",
"schinese": "游玩Level Impostor自制地图概率"
},
{
"id": "CustomOption.AutoAdjustSettings",
"english": "Auto Adjust Settings",
"schinese": "地图预设自动调整设置"
},
{
"id": "CustomOption.SmallMapHalfVision",
"english": "Half Vision On Small Maps",
"schinese": "小型地图视野减半"
},
{
"id": "CustomOption.SmallMapDecreasedCooldown",
"english": "Small Maps Decreased Cooldowns",
"schinese": "小型地图冷却减少"
},
{
"id": "CustomOption.LargeMapIncreasedCooldown",
"english": "Large Maps Increased Cooldowns",
"schinese": "大型地图冷却增加"
},
{
"id": "CustomOption.SmallMapIncreasedShortTasks",
"english": "Small Maps Increased Short Tasks",
"schinese": "小型地图短任务增加"
},
{
"id": "CustomOption.SmallMapIncreasedLongTasks",
"english": "Small Maps Increased Long Tasks",
"schinese": "小型地图长任务增加"
},
{
"id": "CustomOption.LargeMapDecreasedShortTasks",
"english": "Large Maps Decreased Short Tasks",
"schinese": "大型地图短任务减少"
},
{
"id": "CustomOption.LargeMapDecreasedLongTasks",
"english": "Large Maps Decreased Long Tasks",
"schinese": "大型地图长任务减少"
},
{
"id": "CustomOption.BetterSabotages",
"english": "Better Sabotages",
"schinese": "高级破坏设置"
},
{
"id": "CustomOption.CamouflagedComms",
"english": "Camouflaged Comms",
"schinese": "通讯破坏附带隐蔽效果"
},
{
"id": "CustomOption.CamouflagedMeetings",
"english": "Camouflaged Meetings",
"schinese": "隐蔽效果在会议阶段也生效"
},
{
"id": "CustomOption.NightVision",
"english": "Night Vision Cameras",
"schinese": "监控画面启用夜视效果"
},
{
"id": "CustomOption.EvilsIgnoreNV",
"english": "Evils Ignore Night Vision",
"schinese": "邪恶阵营玩家无视夜视效果"
},
{
"id": "CustomOption.OxySlow",
"english": "Oxygen Sabotage Slows Down Players",
"schinese": "氧气破坏减慢玩家速度"
},
{
"id": "CustomOption.ReactorShake",
"english": "Reactor Sabotage Shakes The Screen By",
"schinese": "反应堆破坏会使屏幕晃动"
},
{
"id": "CustomOption.BetterSkeld",
"english": "Better Skeld",
"schinese": "Better Skeld设置"
},
{
"id": "CustomOption.EnableBetterSkeld",
"english": "Enable Better Skeld",
"schinese": ""
},
{
"id": "CustomOption.BetterMiraHQ",
"english": "Better Mira HQ",
"schinese": "Better Mira HQ设置"
},
{
"id": "CustomOption.EnableBetterMiraHQ",
"english": "Enable Better Mira HQ",
"schinese": ""
},
{
"ids": [ "CustomOption.MiraHQVentImprovements", "CustomOption.PolusVentImprovements", "CustomOption.SkeldVentImprovements" ],
"english": "Improved Vent Layout",
"schinese": "优化管道网络布局"
},
{
"ids": [ "CustomOption.FungleReactorTimer", "CustomOption.MiraReactorTimer", "CustomOption.SkeldReactorTimer" ],
"english": "Reactor Countdown",
"schinese": ""
},
{
"ids": [ "CustomOption.SkeldO2Timer", "CustomOption.MiraO2Timer" ],
"english": "Oxygen Countdown",
"schinese": ""
},
{
"id": "CustomOption.BetterPolus",
"english": "Better Polus",
"schinese": "Better Polus设置"
},
{
"id": "CustomOption.EnableBetterPolus",
"english": "Enable Better Polus",
"schinese": ""
},
{
"id": "CustomOption.TempLocation",
"english": "Move Cold Temperature To",
"schinese": ""
},
{
"id": "CustomOption.TempLocation.DeathValley",
"english": "Death Valley",
"schinese": ""
},
{
"id": "CustomOption.TempLocation.SwappedWithVitals",
"english": "Swapped With Vitals",
"schinese": ""
},
{
"id": "CustomOption.WifiChartCourseSwap",
"english": "Reboot Wifi And Chart Course Positions Are Swapped",
"schinese": "交换重启WIFI任务与标出航线任务的位置"
},
{
"id": "CustomOption.SeismicTimer",
"english": "Seimic Stabliser Malfunction Countdown",
"schinese": "重置抗震稳定器倒计时"
},
{
"id": "CustomOption.SpawnType",
"english": "Spawn Type",
"schinese": "玩家出生点规则"
},
{
"id": "CustomOption.AirshipSpawnType.Fixed",
"english": "Fixed",
"schinese": ""
},
{
"id": "CustomOption.AirshipSpawnType.RandomSynchronised",
"english": "Random Synchronised",
"schinese": ""
},
{
"id": "CustomOption.AirshipSpawnType.RandomSynchronized",
"english": "Random Synchronized",
"schinese": ""
},
{
"id": "CustomOption.AirshipSpawnType.Meeting",
"english": "After Meetings",
"schinese": ""
},
{
"id": "CustomOption.BetterAirship",
"english": "Better Airship",
"schinese": "Better Airship设置"
},
{
"id": "CustomOption.EnableBetterAirship",
"english": "Enable Better Airship",
"schinese": ""
},
{
"id": "CustomOption.MoveVitals",
"english": "Move Vitals",
"schinese": "移动生命监装置"
},
{
"id": "CustomOption.MoveFuel",
"english": "Move Fuel",
"schinese": "移动添加燃料任务"
},
{
"id": "CustomOption.MoveDivert",
"english": "Move Divert Power",
"schinese": "移动电力转移任务"
},
{
"id": "CustomOption.MoveAdmin",
"english": "Move Admin Table",
"schinese": "移动管理地图"
},
{
"id": "CustomOption.MoveElectrical",
"english": "Move Electrical Outlet",
"schinese": "移动配电室出口"
},
{
"id": "CustomOption.MinDoorSwipeTime",
"english": "Min Time For Door Swipe",
"schinese": "开门刷卡最短时间"
},
{
"id": "CustomOption.MoveAdmin.Cockpit",
"english": "Cockpit",
"schinese": ""
},
{
"id": "CustomOption.MoveAdmin.MainHall",
"english": "Main Hall",
"schinese": ""
},
{
"id": "CustomOption.MoveElectrical.Vault",
"english": "Vault",
"schinese": ""
},
{
"id": "CustomOption.MoveElectrical.Electrical",
"english": "Electrical",
"schinese": ""
},
{
"ids": [ "CustomOption.MoveAdmin.DontMove", "CustomOption.MoveElectrical.DontMove", "CustomOption.TempLocation.DontMove" ],
"english": "Don't Move",
"schinese": ""
},
{
"id": "CustomOption.CrashTimer",
"english": "Heli Crash Countdown",
"schinese": "避开撞毁路线倒计时"
},
{
"id": "CustomOption.BetterFungle",
"english": "Better Fungle",
"schinese": "Better Fungle设置"
},
{
"id": "CustomOption.EnableBetterFungle",
"english": "Enable Better Fungle",
"schinese": ""
},
{
"id": "CustomOption.FungleMixupTimer",
"english": "Mushroom Mixup Timer",
"schinese": ""
},
{
"id": "CustomOption.ShowKillerRoleColor",
"english": "Show The Role Colour Of The Killer In Kill Animation",
"schinese": ""
},
{
"ids": [ "CustomOption.CrewAuditorRoles", "CustomOption.CrewAuditorSettings" ],
"english": "<color=#8CFFFFFF>Crew</color> <color=#1D7CF2FF>Auditor</color> <color=#FFD700FF>Roles</color>",
"schinese": "<color=#1D7CF2FF>审判型</color><color=#8CFFFFFF>船员</color><color=#FFD700FF>职业</color>"
},
{
"ids": [ "CustomOption.Mystic", "CustomOption.Mystic1", "RoleList.Mystic" ],
"english": "Mystic",
"schinese": "祭司"
},
{
"ids": [ "CustomOption.VampireHunter", "CustomOption.VampireHunter1", "RoleList.VampireHunter" ],