-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathstrings.json
More file actions
2570 lines (2570 loc) · 110 KB
/
strings.json
File metadata and controls
2570 lines (2570 loc) · 110 KB
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
{
"All Tweaks": {
"message": "All Tweaks",
"description": "All Tweaks Tab Header"
},
"AutoLockHotbar / Description": {
"message": "Automatically locks action bars when certain conditions are met.",
"description": "[AutoLockHotbar] Tweak Description"
},
"AutoLockHotbar / Lock at beginning of combat.": {
"message": "Lock at beginning of combat.",
"description": "[AutoLockHotbar] [Config] Lock at beginning of combat."
},
"AutoLockHotbar / Lock Cross Hotbar": {
"message": "Lock Cross Hotbar",
"description": "[AutoLockHotbar] [Config] Lock Cross Hotbar"
},
"AutoLockHotbar / Lock when changing zone.": {
"message": "Lock when changing zone.",
"description": "[AutoLockHotbar] [Config] Lock when changing zone."
},
"AutoLockHotbar / Name": {
"message": "Auto Lock Action Bars",
"description": "[AutoLockHotbar] Tweak Name"
},
"AutoLockHotbar / Unlock when combat ends.": {
"message": "Unlock when combat ends.",
"description": "[AutoLockHotbar] [Config] Unlock when combat ends."
},
"AutoOpenCommendWindow / Description": {
"message": "Open the commendation window upon completion of a duty.",
"description": "[AutoOpenCommendWindow] Tweak Description"
},
"AutoOpenCommendWindow / Name": {
"message": "Open Commendation Window Automatically",
"description": "[AutoOpenCommendWindow] Tweak Name"
},
"AutoOpenLootWindow / Description": {
"message": "Open the loot rolling window when new items are added to be rolled on.",
"description": "[AutoOpenLootWindow] Tweak Description"
},
"AutoOpenLootWindow / Name": {
"message": "Open loot window when items are added",
"description": "[AutoOpenLootWindow] Tweak Name"
},
"AutoRefreshMaterialList / Description": {
"message": "Automatically refreshes the raw material list and recipe tree windows.",
"description": "[AutoRefreshMaterialList] Tweak Description"
},
"AutoRefreshMaterialList / Name": {
"message": "Auto Refresh Material List",
"description": "[AutoRefreshMaterialList] Tweak Name"
},
"BaitCommand / Description": {
"message": "Adds /bait to switch fishing baits.",
"description": "[BaitCommand] Tweak Description"
},
"BaitCommand / Name": {
"message": "Bait Command",
"description": "[BaitCommand] Tweak Name"
},
"Category / Chat": {
"message": "Chat",
"description": "Tweak Category"
},
"Category / Command": {
"message": "Command",
"description": "Tweak Category"
},
"Category / Experimental": {
"message": "Experimental",
"description": "Tweak Category"
},
"Category / Other": {
"message": "Other",
"description": "Tweak Category"
},
"Category / QoL": {
"message": "QoL",
"description": "Tweak Category"
},
"Category / Tooltip": {
"message": "Tooltip",
"description": "Tweak Category"
},
"Category / UI": {
"message": "UI",
"description": "Tweak Category"
},
"CharaCardCommand / Description": {
"message": "Adds a command to open adventurer plates.",
"description": "[CharaCardCommand] Tweak Description"
},
"CharaCardCommand / Name": {
"message": "Open Adventurer Plate Command",
"description": "[CharaCardCommand] Tweak Name"
},
"CharacterClassSwitcher / Description": {
"message": "Allow clicking on classes to switch to gearsets.",
"description": "[CharacterClassSwitcher] Tweak Description"
},
"CharacterClassSwitcher / Name": {
"message": "Character Window Job Switcher",
"description": "[CharacterClassSwitcher] Tweak Name"
},
"CharaViewIncreasedZoom / Description": {
"message": "Allows zooming in near infinitely on character preview views, such as Try On and Examine.",
"description": "[CharaViewIncreasedZoom] Tweak Description"
},
"CharaViewIncreasedZoom / Name": {
"message": "Increased zoom on character previews",
"description": "[CharaViewIncreasedZoom] Tweak Name"
},
"ChatTweaks / Name": {
"message": "Chat Tweaks",
"description": "[ChatTweaks] Tweak Name"
},
"ChatTweaks@CaseInsensitiveCommands / Description": {
"message": "Allows text commands to be entered without caring about case.",
"description": "[CaseInsensitiveCommands] Tweak Description"
},
"ChatTweaks@CaseInsensitiveCommands / Name": {
"message": "Case Insensitive Text Commands",
"description": "[CaseInsensitiveCommands] Tweak Name"
},
"ChatTweaks@CaseInsensitiveCommands / Resolve Dalamud-provided commands)": {
"message": "Resolve Dalamud-provided commands)",
"description": "[CaseInsensitiveCommands] [Config] Resolve Dalamud-provided commands)"
},
"ChatTweaks@ChatNameColours / ApplyDefaultColour": {
"message": "Use a specific colour for unlisted players",
"description": "[ChatNameColours] Chat Name Colours - Use a specific colour for unlisted players"
},
"ChatTweaks@ChatNameColours / Description": {
"message": "Gives players a random colour in chat, or set the name manually.",
"description": "[ChatNameColours] Tweak Description"
},
"ChatTweaks@ChatNameColours / LegacyColours": {
"message": "Use old colour limits.",
"description": "[ChatNameColours] Chat Name Colours - Use old colour limits."
},
"ChatTweaks@ChatNameColours / Name": {
"message": "Chat Name Colours",
"description": "[ChatNameColours] Tweak Name"
},
"ChatTweaks@ChatNameColours / NameAlreadyAddedError": {
"message": "Name is already in list.",
"description": "[ChatNameColours] Chat Name Colours - Name is already in list."
},
"ChatTweaks@ChatNameColours / Player Name": {
"message": "Player Name",
"description": "[ChatNameColours] Chat Name Colours - Player Name"
},
"ChatTweaks@ChatNameColours / RandomColours": {
"message": "Use random colours for unlisted players",
"description": "[ChatNameColours] Chat Name Colours - Use random colours for unlisted players"
},
"ChatTweaks@ChatNameColours / Server": {
"message": "Server",
"description": "[ChatNameColours] Chat Name Colours - Server"
},
"ChatTweaks@ChatSoundsEverywhere / Description": {
"message": "Enables <se.#> chat sounds everywhere, regardless of channel.",
"description": "[ChatSoundsEverywhere] Tweak Description"
},
"ChatTweaks@ChatSoundsEverywhere / Name": {
"message": "Chat Sounds Everywhere",
"description": "[ChatSoundsEverywhere] Tweak Name"
},
"ChatTweaks@ClickableLinks / Description": {
"message": "Parses links posted in chat and allows them to be clicked.",
"description": "[ClickableLinks] Tweak Description"
},
"ChatTweaks@ClickableLinks / Name": {
"message": "Clickable Links in Chat",
"description": "[ClickableLinks] Tweak Name"
},
"ChatTweaks@CustomTimestampFormat / Description": {
"message": "Customize the timestamps displayed on chat messages.",
"description": "[CustomTimestampFormat] Tweak Description"
},
"ChatTweaks@CustomTimestampFormat / Name": {
"message": "Custom Timestamp Format",
"description": "[CustomTimestampFormat] Tweak Name"
},
"ChatTweaks@DisableAutoChatInputs / Description": {
"message": "Prevent the game from inserting <flag> or other parameters into chat box.",
"description": "[DisableAutoChatInputs] Tweak Description"
},
"ChatTweaks@DisableAutoChatInputs / Disable <flag> when setting map flags.": {
"message": "Disable <flag> when setting map flags.",
"description": "[DisableAutoChatInputs] [Config] Disable <flag> when setting map flags."
},
"ChatTweaks@DisableAutoChatInputs / Disable <item> when linking items.": {
"message": "Disable <item> when linking items.",
"description": "[DisableAutoChatInputs] [Config] Disable <item> when linking items."
},
"ChatTweaks@DisableAutoChatInputs / Disable <pfinder> when linking party finder.": {
"message": "Disable <pfinder> when linking party finder.",
"description": "[DisableAutoChatInputs] [Config] Disable <pfinder> when linking party finder."
},
"ChatTweaks@DisableAutoChatInputs / Disable <quest> when linking quests.": {
"message": "Disable <quest> when linking quests.",
"description": "[DisableAutoChatInputs] [Config] Disable <quest> when linking quests."
},
"ChatTweaks@DisableAutoChatInputs / Disable <status> when linking a status.": {
"message": "Disable <status> when linking a status.",
"description": "[DisableAutoChatInputs] [Config] Disable <status> when linking a status."
},
"ChatTweaks@DisableAutoChatInputs / Name": {
"message": "Disable Auto Chat Inputs",
"description": "[DisableAutoChatInputs] Tweak Name"
},
"ChatTweaks@DisableChatAutoscroll / AllowAutoscrollLabel": {
"message": "Always allow autoscrolling in:",
"description": "[DisableChatAutoscroll] Smart AutoScroll - Always allow autoscrolling in:"
},
"ChatTweaks@DisableChatAutoscroll / Description": {
"message": "Attempts to prevent autoscrolling when receiving new chat messages while scrolled up.",
"description": "[DisableChatAutoscroll] Tweak Description"
},
"ChatTweaks@DisableChatAutoscroll / Name": {
"message": "Smart AutoScroll",
"description": "[DisableChatAutoscroll] Tweak Name"
},
"ChatTweaks@DisableChatAutoscroll / TabLabel": {
"message": "Tab {0}",
"description": "[DisableChatAutoscroll] Smart AutoScroll - Tab {0}"
},
"ChatTweaks@DisableChatMovement / Description": {
"message": "Prevents movement of the chat window.",
"description": "[DisableChatMovement] Tweak Description"
},
"ChatTweaks@DisableChatMovement / Name": {
"message": "Disable Chat Movement",
"description": "[DisableChatMovement] Tweak Name"
},
"ChatTweaks@DisableChatResize / Description": {
"message": "Prevents resizing of the chat window.",
"description": "[DisableChatResize] Tweak Description"
},
"ChatTweaks@DisableChatResize / Name": {
"message": "Disable Chat Resize",
"description": "[DisableChatResize] Tweak Name"
},
"ChatTweaks@EchoPartyFinder / Description": {
"message": "Prints Party Finder description to chat when joining a group and entering a duty.",
"description": "[EchoPartyFinder] Tweak Description"
},
"ChatTweaks@EchoPartyFinder / Name": {
"message": "Echo Party Finder",
"description": "[EchoPartyFinder] Tweak Name"
},
"ChatTweaks@EchoStorySelection / Description": {
"message": "When given multiple choices during quests, print the selected option to chat.",
"description": "[EchoStorySelection] Tweak Description"
},
"ChatTweaks@EchoStorySelection / Display Character Name": {
"message": "Display Character Name",
"description": "[EchoStorySelection] [Config] Display Character Name"
},
"ChatTweaks@EchoStorySelection / Name": {
"message": "Echo Story Selection",
"description": "[EchoStorySelection] Tweak Name"
},
"ChatTweaks@ExpGainLevelPercent / Description": {
"message": "Adds the percentage of your next level to exp gains in chat.",
"description": "[ExpGainLevelPercent] Tweak Description"
},
"ChatTweaks@ExpGainLevelPercent / Name": {
"message": "Display EXP Gain Percentage of Level",
"description": "[ExpGainLevelPercent] Tweak Name"
},
"ChatTweaks@HideChat / Description": {
"message": "Provides commands to hide the chat. (/chatvis show|hide|toggle)",
"description": "[HideChat] Tweak Description"
},
"ChatTweaks@HideChat / Name": {
"message": "Hide Chat",
"description": "[HideChat] Tweak Name"
},
"ChatTweaks@HideChatAuto / Description": {
"message": "Hides chat automatically except when typing.",
"description": "[HideChatAuto] Tweak Description"
},
"ChatTweaks@HideChatAuto / Name": {
"message": "Hide Chat Automatically",
"description": "[HideChatAuto] Tweak Name"
},
"ChatTweaks@HideChatPanelButtons / Description": {
"message": "Hide the chat log name and close button on panels that have been split from the main window.",
"description": "[HideChatPanelButtons] Tweak Description"
},
"ChatTweaks@HideChatPanelButtons / Name": {
"message": "Hide Chat Panel Buttons",
"description": "[HideChatPanelButtons] Tweak Name"
},
"ChatTweaks@ImprovedFontSizes / Description": {
"message": "Allows you to change the font size for the chat windows beyond the default limits, and allows docked chat tabs to keep their font size separate from the main tab.",
"description": "[ImprovedFontSizes] Tweak Description"
},
"ChatTweaks@ImprovedFontSizes / Name": {
"message": "Improved Chat Font Sizes",
"description": "[ImprovedFontSizes] Tweak Name"
},
"ChatTweaks@PrintSearchComment / Description": {
"message": "Prints the Search Comment of people, that get inspected, into the chat.",
"description": "[PrintSearchComment] Tweak Description"
},
"ChatTweaks@PrintSearchComment / Name": {
"message": "Print Search Comment",
"description": "[PrintSearchComment] Tweak Name"
},
"ChatTweaks@RenameChatTabs / Description": {
"message": "Allows renaming the General and Battle tabs in the chat window.",
"description": "[RenameChatTabs] Tweak Description"
},
"ChatTweaks@RenameChatTabs / Name": {
"message": "Rename Chat Tabs",
"description": "[RenameChatTabs] Tweak Name"
},
"ChatTweaks@RenameChatTabs / TabLabel": {
"message": "Tab {0}",
"description": "[RenameChatTabs] Rename Chat Tabs - Tab {0}"
},
"ChatTweaks@ReplyChannelSwitch / Description": {
"message": "Allow typing /r to set active chat channel to Tell.",
"description": "[ReplyChannelSwitch] Tweak Description"
},
"ChatTweaks@ReplyChannelSwitch / Name": {
"message": "Reply Channel Switch",
"description": "[ReplyChannelSwitch] Tweak Name"
},
"ChatTweaks@StickyChat / Description": {
"message": "Sets the chat channel when you use temporary chat messages.\nExample: \"/p hello!\" will set the chat channel to Party",
"description": "[StickyChat] Tweak Description"
},
"ChatTweaks@StickyChat / Name": {
"message": "Sticky Chat",
"description": "[StickyChat] Tweak Name"
},
"ChatTweaks@StickyShoutChat / Description": {
"message": "Prevents the game from automatically switching out of shout chat.",
"description": "[StickyShoutChat] Tweak Description"
},
"ChatTweaks@StickyShoutChat / Name": {
"message": "Sticky Shout Chat",
"description": "[StickyShoutChat] Tweak Name"
},
"ChatTweaks@ZoomedChatCustomization / Description": {
"message": "Allows customization of the size and position of the zoomed chat view.",
"description": "[ZoomedChatCustomization] Tweak Description"
},
"ChatTweaks@ZoomedChatCustomization / Name": {
"message": "Zoomed Chat Customization",
"description": "[ZoomedChatCustomization] Tweak Name"
},
"ChrDirCommand / Description": {
"message": "Adds a command to open the directory when client side character data is stored.",
"description": "[ChrDirCommand] Tweak Description"
},
"ChrDirCommand / Name": {
"message": "Character Directory Command",
"description": "[ChrDirCommand] Tweak Name"
},
"ClickableAlarm / Description": {
"message": "Allows clicking the alarm icon in the server bar to open the alarm window.",
"description": "[ClickableAlarm] Tweak Description"
},
"ClickableAlarm / Name": {
"message": "Clickable Alarm Icon",
"description": "[ClickableAlarm] Tweak Name"
},
"CombatMovementControl / Description": {
"message": "Set movement type between Standard and Legacy when in/out of combat or when weapon is drawn/sheathed.",
"description": "[CombatMovementControl] Tweak Description"
},
"CombatMovementControl / Name": {
"message": "Combat Movement Type Control",
"description": "[CombatMovementControl] Tweak Name"
},
"CommandAlias / \nEnabled": {
"message": "\nEnabled",
"description": "[CommandAlias] Command Alias - \nEnabled"
},
"CommandAlias / \nInput Command": {
"message": "\nInput Command",
"description": "[CommandAlias] Command Alias - \nInput Command"
},
"CommandAlias / \nOutput Command": {
"message": "\nOutput Command",
"description": "[CommandAlias] Command Alias - \nOutput Command"
},
"CommandAlias / Alt\nMode": {
"message": "Alt\nMode",
"description": "[CommandAlias] Command Alias - Alt\nMode"
},
"CommandAlias / Description": {
"message": "Allows replacing commands typed into chat box with other commands.",
"description": "[CommandAlias] Tweak Description"
},
"CommandAlias / EmptyInputError": {
"message": "Input must not be empty.",
"description": "[CommandAlias] Command Alias - Input must not be empty."
},
"CommandAlias / EmptyOutputError": {
"message": "Output must not be empty.",
"description": "[CommandAlias] Command Alias - Output must not be empty."
},
"CommandAlias / Enabled": {
"message": "Enabled",
"description": "[CommandAlias] Command Alias - Enabled"
},
"CommandAlias / Input Command": {
"message": "Input Command",
"description": "[CommandAlias] Command Alias - Input Command"
},
"CommandAlias / Instruction": {
"message": "Add list of command alias. Do not start command with the '/'\nThese aliases, by design, do not work with macros.",
"description": "[CommandAlias] Command Alias - Add list of command alias. Do not start command with the '/'\nThese aliases, by design, do not work with macros."
},
"CommandAlias / MacroHelp": {
"message": "Aliases are not supported in macros to prevent them from being sent to the server in the event you back them up on server.\nPlease use the original command in your macros.",
"description": "[CommandAlias] Macro Help Tooltip"
},
"CommandAlias / Name": {
"message": "Command Alias",
"description": "[CommandAlias] Tweak Name"
},
"CommandAlias / New Label": {
"message": "New:",
"description": "[CommandAlias] Command Alias - New:"
},
"CommandAlias / Output Command": {
"message": "Output Command",
"description": "[CommandAlias] Command Alias - Output Command"
},
"CommandAlias / ProtectedCommandError": {
"message": "'/{0}' is a protected command.",
"description": "[CommandAlias] Command Alias - '/{0}' is a protected command."
},
"ContentsFinderConfirmClassSwitch / Description": {
"message": "Click 'Previous' class icon in Duty Ready window to switch class.",
"description": "[ContentsFinderConfirmClassSwitch] Tweak Description"
},
"ContentsFinderConfirmClassSwitch / Name": {
"message": "Duty Ready Class Switching",
"description": "[ContentsFinderConfirmClassSwitch] Tweak Name"
},
"CustomDefaultQuantity / Description": {
"message": "Allows setting a custom amount to deposit or withdraw when using the 'Retrieve Quantity' and 'Entrust Quantity' options.",
"description": "[CustomDefaultQuantity] Tweak Description"
},
"CustomDefaultQuantity / Name": {
"message": "Customize default deposit and withdraw quantity",
"description": "[CustomDefaultQuantity] Tweak Name"
},
"CustomizeGroupPoseCameraControl / Description": {
"message": "Allows you to customize the camera control in group pose",
"description": "[CustomizeGroupPoseCameraControl] Tweak Description"
},
"CustomizeGroupPoseCameraControl / Name": {
"message": "Customize Group Pose Camera Control",
"description": "[CustomizeGroupPoseCameraControl] Tweak Name"
},
"DataCentreOnTitleScreen / Description": {
"message": "Shows the current Data Centre on the Title Screen",
"description": "[DataCentreOnTitleScreen] Tweak Description"
},
"DataCentreOnTitleScreen / Name": {
"message": "Data Centre on Title Screen",
"description": "[DataCentreOnTitleScreen] Tweak Name"
},
"DataCentreOnTitleScreen / Show Service Account Number": {
"message": "Show Service Account Number",
"description": "[DataCentreOnTitleScreen] [Config] Show Service Account Number"
},
"DisableCameraCulling / Description": {
"message": "Disable the hiding of characters when the camera gets too close.",
"description": "[DisableCameraCulling] Tweak Description"
},
"DisableCameraCulling / Name": {
"message": "Disable Camera Culling",
"description": "[DisableCameraCulling] Tweak Name"
},
"DisableClickTargeting / AddButton": {
"message": "Add",
"description": "[DisableClickTargeting] Disable Click Targeting - Add"
},
"DisableClickTargeting / CombatHeader": {
"message": "Only in\nCombat",
"description": "[DisableClickTargeting] Disable Click Targeting - Only in\nCombat"
},
"DisableClickTargeting / DefaultNameText": {
"message": "Default (Unmatched Names)",
"description": "[DisableClickTargeting] Disable Click Targeting - Default (Unmatched Names)"
},
"DisableClickTargeting / Description": {
"message": "Allows disabling of the target function on left and right mouse clicks.",
"description": "[DisableClickTargeting] Tweak Description"
},
"DisableClickTargeting / EverythingDisabled": {
"message": "It is doing nothing if everything is disabled...",
"description": "[DisableClickTargeting] Disable Click Targeting - It is doing nothing if everything is disabled..."
},
"DisableClickTargeting / LeftHeader": {
"message": "Disable\nLeft",
"description": "[DisableClickTargeting] Disable Click Targeting - Disable\nLeft"
},
"DisableClickTargeting / Name": {
"message": "Disable Click Targeting",
"description": "[DisableClickTargeting] Tweak Name"
},
"DisableClickTargeting / NameFiltering": {
"message": "Enable Name Filtering",
"description": "[DisableClickTargeting] Disable Click Targeting - Enable Name Filtering"
},
"DisableClickTargeting / NameFiltersHelp": {
"message": "Per actor options for ",
"description": "[DisableClickTargeting] Disable Click Targeting - Per actor options for "
},
"DisableClickTargeting / NameFiltersLabel": {
"message": "Name Filters:",
"description": "[DisableClickTargeting] Disable Click Targeting - Name Filters:"
},
"DisableClickTargeting / NameHeader": {
"message": "\nName",
"description": "[DisableClickTargeting] Disable Click Targeting - \nName"
},
"DisableClickTargeting / NamePlaceholder": {
"message": "Name",
"description": "[DisableClickTargeting] Disable Click Targeting - Name"
},
"DisableClickTargeting / PlayerHeader": {
"message": "Only\nPlayers",
"description": "[DisableClickTargeting] Disable Click Targeting - Only\nPlayers"
},
"DisableClickTargeting / RemoveTooltip": {
"message": "Remove {0}",
"description": "[DisableClickTargeting] Disable Click Targeting - Remove {0}"
},
"DisableClickTargeting / RightHeader": {
"message": "Disable\nRight",
"description": "[DisableClickTargeting] Disable Click Targeting - Disable\nRight"
},
"DisableClickTargeting / SimpleCombatOnly": {
"message": "Only disable in combat",
"description": "[DisableClickTargeting] Disable Click Targeting - Only disable in combat"
},
"DisableClickTargeting / SimpleDisableLeftClick": {
"message": "Disable Left Click Targeting",
"description": "[DisableClickTargeting] Disable Click Targeting - Disable Left Click Targeting"
},
"DisableClickTargeting / SimpleDisableRightClick": {
"message": "Disable Right Click Targeting",
"description": "[DisableClickTargeting] Disable Click Targeting - Disable Right Click Targeting"
},
"DisableMountVolumeChange / Description": {
"message": "Prevents mount music from going quiet when not moving.",
"description": "[DisableMountVolumeChange] Tweak Description"
},
"DisableMountVolumeChange / Name": {
"message": "Disable Mount Music Volume Change",
"description": "[DisableMountVolumeChange] Tweak Name"
},
"DisableMouseCameraControl / Description": {
"message": "Disables all control of the camera using the mouse.",
"description": "[DisableMouseCameraControl] Tweak Description"
},
"DisableMouseCameraControl / Name": {
"message": "Disable Mouse Camera Control",
"description": "[DisableMouseCameraControl] Tweak Name"
},
"DisableNoviceNetworkAutoSwitch / Description": {
"message": "Disables automatically selecting novice network when logging in or transferring to another server.",
"description": "[DisableNoviceNetworkAutoSwitch] Tweak Description"
},
"DisableNoviceNetworkAutoSwitch / Name": {
"message": "Disable Novice Network Auto-Switch",
"description": "[DisableNoviceNetworkAutoSwitch] Tweak Name"
},
"DisableTitleScreenMovie / Description": {
"message": "Prevents the title screen from playing the introduction movie after 60 seconds.",
"description": "[DisableTitleScreenMovie] Tweak Description"
},
"DisableTitleScreenMovie / Name": {
"message": "Disable Title Screen Movie",
"description": "[DisableTitleScreenMovie] Tweak Name"
},
"DutyTimer / Description": {
"message": "When completing a duty, tells you how much time the duty took.",
"description": "[DutyTimer] Tweak Description"
},
"DutyTimer / Name": {
"message": "Duty Timer",
"description": "[DutyTimer] Tweak Name"
},
"EmoteLogServerBarEntry / Description": {
"message": "Show the emote log status in the server bar.",
"description": "[EmoteLogServerBarEntry] Tweak Description"
},
"EmoteLogServerBarEntry / Name": {
"message": "Emote Log Status in Server Bar",
"description": "[EmoteLogServerBarEntry] Tweak Name"
},
"EmoteLogSubcommand / Description": {
"message": "Adds a 'text' subcommand for emotes when emotelog is disabled. /yes text",
"description": "[EmoteLogSubcommand] Tweak Description"
},
"EmoteLogSubcommand / Name": {
"message": "Emote Log Subcommand",
"description": "[EmoteLogSubcommand] Tweak Name"
},
"Enabled Tweaks": {
"message": "Enabled Tweaks",
"description": "Enabled Tweaks Tab Header"
},
"EnsureTooltipRemainsOnScreen / Description": {
"message": "Prevents tooltips from extending below the bottom of the screen. Useful when using tweaks that make the tooltips longer.",
"description": "[EnsureTooltipRemainsOnScreen] Tweak Description"
},
"EnsureTooltipRemainsOnScreen / Name": {
"message": "Ensure tooltips remain on screen",
"description": "[EnsureTooltipRemainsOnScreen] Tweak Name"
},
"EnsureTooltipRemainsOnScreen / Padding": {
"message": "Padding",
"description": "[EnsureTooltipRemainsOnScreen] [Config] Padding"
},
"EquipFromHotbar / Description": {
"message": "Enables the ability to equip items assigned to hotbars.",
"description": "[EquipFromHotbar] Tweak Description"
},
"EquipFromHotbar / Name": {
"message": "Equip items from Hotbars",
"description": "[EquipFromHotbar] Tweak Name"
},
"EquipJobCommand / Description": {
"message": "Adds a command to switch to a class or job's gearset.",
"description": "[EquipJobCommand] Tweak Description"
},
"EquipJobCommand / Name": {
"message": "Equip Job Command",
"description": "[EquipJobCommand] Tweak Name"
},
"EquipJobCommand / PriorityHelp": {
"message": "Useful when generalizing between classes / jobs (e.g. /equipjob pld gla)",
"description": "[EquipJobCommand] Allow Priority Tooltip"
},
"EquipJobCommand / PriorityName": {
"message": "Allow priority list of jobs? (Only allows using abbreviations)",
"description": "[EquipJobCommand] Allow Priority Config Option"
},
"EstateListCommand / Description": {
"message": "Adds a command to open the estate list of one of your friends. (/estatelist)",
"description": "[EstateListCommand] Tweak Description"
},
"EstateListCommand / Name": {
"message": "Estate List Command",
"description": "[EstateListCommand] Tweak Name"
},
"ExitGame / Description": {
"message": "Pressing Alt + F4 will cause the game to close safely.",
"description": "[ExitGame] Tweak Description"
},
"ExitGame / Name": {
"message": "Alt + F4 Exit Game",
"description": "[ExitGame] Tweak Name"
},
"ExtendedMacroIcon / Description": {
"message": "Allow using specific Icon IDs when using '/macroicon # id' inside of a macro.",
"description": "[ExtendedMacroIcon] Tweak Description"
},
"ExtendedMacroIcon / Name": {
"message": "Extended Macro Icons",
"description": "[ExtendedMacroIcon] Tweak Name"
},
"FixedShadowDistance / Description": {
"message": "Sets a fixed value for the shadow rendering, preventing it from changing when flying.",
"description": "[FixedShadowDistance] Tweak Description"
},
"FixedShadowDistance / Name": {
"message": "Fixed Shadow Distance",
"description": "[FixedShadowDistance] Tweak Name"
},
"FixedShadowDistance / Shadow Distance": {
"message": "Shadow Distance",
"description": "[FixedShadowDistance] Fixed Shadow Distance - Shadow Distance"
},
"FixTarget / Description": {
"message": "Allows using the default '/target' command for targeting players or NPCs by their names.",
"description": "[FixTarget] Tweak Description"
},
"FixTarget / Name": {
"message": "Fix '/target' command",
"description": "[FixTarget] Tweak Name"
},
"FurnitureClocksCustomTime / Description": {
"message": "Changes the time displayed on chronometer furniture.",
"description": "[FurnitureClocksCustomTime] Tweak Description"
},
"FurnitureClocksCustomTime / Mode": {
"message": "Mode",
"description": "[FurnitureClocksCustomTime] [Config] Mode"
},
"FurnitureClocksCustomTime / Name": {
"message": "Use Custom Time for Furniture Clocks",
"description": "[FurnitureClocksCustomTime] Tweak Name"
},
"GcArmyChemistryAvailable / Description": {
"message": "Show an icon over squadron members who have a new chemistry available.",
"description": "[GcArmyChemistryAvailable] Tweak Description"
},
"GcArmyChemistryAvailable / Name": {
"message": "Squadron Chemistry Available Icon",
"description": "[GcArmyChemistryAvailable] Tweak Name"
},
"GearsetSaveCurrent / Description": {
"message": "Updates the active gearset with your current equipment.",
"description": "[GearsetSaveCurrent] Tweak Description"
},
"GearsetSaveCurrent / Name": {
"message": "Gearset Update Command",
"description": "[GearsetSaveCurrent] Tweak Name"
},
"General Options / Analytics Opt Out": {
"message": "Opt out of metrics",
"description": "General Options / Analytics Opt Out - Opt out of metrics"
},
"General Options / Auto Open Changelog": {
"message": "Open New Changelogs Automatically",
"description": "General Options / Auto Open Changelog - Open New Changelogs Automatically"
},
"General Options / Disable Changelog Notice": {
"message": "Disable Changelog Notifications",
"description": "General Options / Disable Changelog Notice - Disable Changelog Notifications"
},
"General Options / Festive Decorations": {
"message": "Festive Decorations",
"description": "General Options / Festive Decorations - Festive Decorations"
},
"General Options / Formatting Culture": {
"message": "Formatting Culture",
"description": "General Options / Formatting Culture - Formatting Culture"
},
"General Options / Hide KoFi": {
"message": "Hide Ko-fi link.",
"description": "General Options / Hide KoFi - Hide Ko-fi link."
},
"General Options / Language": {
"message": "Language",
"description": "General Options / Language - Language"
},
"General Options / Show Experimental Tweaks": {
"message": "Show Experimental Tweaks.",
"description": "General Options / Show Experimental Tweaks - Show Experimental Tweaks."
},
"General Options / Show Tweak Descriptions": {
"message": "Show tweak descriptions.",
"description": "General Options / Show Tweak Descriptions - Show tweak descriptions."
},
"General Options / Show Tweak IDs": {
"message": "Show tweak IDs.",
"description": "General Options / Show Tweak IDs - Show tweak IDs."
},
"General Options / TabHeader": {
"message": "General Options",
"description": "General Options / TabHeader - General Options"
},
"General Options / Use Fuzzy Search": {
"message": "Use fuzzy search",
"description": "General Options / Use Fuzzy Search - Use fuzzy search"
},
"General Options / Visible Category Tabs": {
"message": "Visible Category Tabs",
"description": "General Options / Visible Category Tabs - Visible Category Tabs"
},
"General Tweaks": {
"message": "General Tweaks",
"description": "General Tweaks Tab Header"
},
"Hide Tweak": {
"message": "Hide Tweak",
"description": "Hide Tweak - Hide Tweak"
},
"HideHotbarLock / Description": {
"message": "Hides the hotbar lock button, with an option to make it visible while holding SHIFT.",
"description": "[HideHotbarLock] Tweak Description"
},
"HideHotbarLock / Name": {
"message": "Hide Hotbar Lock",
"description": "[HideHotbarLock] Tweak Name"
},
"HideMouseAfterInactivity / Description": {
"message": "Hides the mouse cursor after a period of inactivity like video players do.",
"description": "[HideMouseAfterInactivity] Tweak Description"
},
"HideMouseAfterInactivity / Name": {
"message": "Hide Mouse Cursor After Inactivity",
"description": "[HideMouseAfterInactivity] Tweak Name"
},
"HighResScreenshots / Description": {
"message": "Allows taking higher resolution screenshots, Hiding Dalamud & Game UIs and removing the copyright notice from screenshots.",
"description": "[HighResScreenshots] Tweak Description"
},
"HighResScreenshots / Name": {
"message": "Screenshot Improvements",
"description": "[HighResScreenshots] Tweak Name"
},
"HotkeyHelper.Set": {
"message": "Set Keybind",
"description": "HotkeyHelper.Set - Set Keybind"
},
"HouseLightCommand / Description": {
"message": "Adds a command to control lighting in your own housing areas.",
"description": "[HouseLightCommand] Tweak Description"
},
"HouseLightCommand / Name": {
"message": "House Lights Command",
"description": "[HouseLightCommand] Tweak Name"
},
"ImprovedCraftingLog / Description": {
"message": "Modifies the Synthesize button in the Crafting Log to switch job or stand up from the crafting position, allowing you to stop crafting without closing the crafting log.",
"description": "[ImprovedCraftingLog] Tweak Description"
},
"ImprovedCraftingLog / Name": {
"message": "Improved Crafting Log",
"description": "[ImprovedCraftingLog] Tweak Name"
},
"ImprovedSentMessageHistory / Description": {
"message": "Recover messages after accidentally pressing up in the chat, and increase the amount of history retained.",
"description": "[ImprovedSentMessageHistory] Tweak Description"
},
"ImprovedSentMessageHistory / Name": {
"message": "Improved Sent Message History",
"description": "[ImprovedSentMessageHistory] Tweak Name"
},
"IncreaseChatBubbleLines / Description": {
"message": "Allow upto 7 lines of text to be displayed in chat bubbles.",
"description": "[IncreaseChatBubbleLines] Tweak Description"
},
"IncreaseChatBubbleLines / Max Lines": {
"message": "Max Lines",
"description": "[IncreaseChatBubbleLines] [Config] Max Lines"
},
"IncreaseChatBubbleLines / Name": {
"message": "Increase max line count in chat bubbles",
"description": "[IncreaseChatBubbleLines] Tweak Name"
},
"JokeTweaks / Name": {
"message": "Joke Tweaks",
"description": "[JokeTweaks] Tweak Name"
},
"JokeTweaks@Fools2023 / Description": {
"message": "Re-enable the April Fools 2023 Features",
"description": "[Fools2023] Tweak Description"
},
"JokeTweaks@Fools2023 / Name": {
"message": "April Fools 2023",
"description": "[Fools2023] Tweak Name"
},
"KeepOpen / Description": {
"message": "Prevents certain windows from hiding under specific circumstances.",
"description": "[KeepOpen] Tweak Description"
},
"KeepOpen / Name": {
"message": "Keep Windows Open",
"description": "[KeepOpen] Tweak Name"
},
"KeyInterrupt / Description": {
"message": "Block Alt-Tab and other keys to keep you in the game.",
"description": "[KeyInterrupt] Tweak Description"
},
"KeyInterrupt / Name": {
"message": "Keyboard Gaming Mode",
"description": "[KeyInterrupt] Tweak Name"
},
"LeaveDutyCommand / Description": {
"message": "Adds a command to leave the current duty.",
"description": "[LeaveDutyCommand] Tweak Description"
},
"LeaveDutyCommand / Name": {
"message": "Leave Duty Command",
"description": "[LeaveDutyCommand] Tweak Name"
},
"LegacyCameraLock / Description": {
"message": "Prevents camera rotation when using Legacy movement type.",
"description": "[LegacyCameraLock] Tweak Description"
},
"LegacyCameraLock / Name": {
"message": "Legacy Camera Lock",
"description": "[LegacyCameraLock] Tweak Name"
},
"LevelingDungeonCommand / Description": {
"message": "Adds a command to open the highest level leveling dungeon available for your level.",
"description": "[LevelingDungeonCommand] Tweak Description"
},
"LevelingDungeonCommand / Name": {
"message": "Leveling Dungeon Command",
"description": "[LevelingDungeonCommand] Tweak Name"
},
"LongVeil / Description": {
"message": "Replaces the wedding veils with their long variants that are usually only shown in the sanctum of the twelve.",
"description": "[LongVeil] Tweak Description"
},
"LongVeil / Name": {
"message": "Long Veil",
"description": "[LongVeil] Tweak Name"
},
"MainCommandCommand / Description": {
"message": "Adds the command '/maincommand [name]' to allow using any Main Command from chat or macro.",
"description": "[MainCommandCommand] Tweak Description"
},
"MainCommandCommand / Name": {
"message": "Main Command Command",
"description": "[MainCommandCommand] Tweak Name"
},
"MinionAway / Description": {
"message": "Adds a command to dismiss your current minion. /minionaway",
"description": "[MinionAway] Tweak Description"
},
"MinionAway / Name": {
"message": "Dismiss Minion Command",
"description": "[MinionAway] Tweak Name"
},
"MoreGearSets / Description": {
"message": "Increases maximum gear sets to 100.",
"description": "[MoreGearSets] Tweak Description"
},
"MoreGearSets / Name": {
"message": "More Gear Sets",
"description": "[MoreGearSets] Tweak Name"
},
"MoveCutsceneTalk / Description": {
"message": "Allows setting a custom position for dialogue boxes used in cutscenes.",
"description": "[MoveCutsceneTalk] Tweak Description"
},
"MoveCutsceneTalk / Name": {
"message": "Reposition Cutscene Dialogue Box",
"description": "[MoveCutsceneTalk] Tweak Name"
},
"NoCharacterNotFoundWarning / Description": {
"message": "Prevent the game from displaying the \"The character you last logged out with could not be found on the current data center.\" message.",
"description": "[NoCharacterNotFoundWarning] Tweak Description"
},
"NoCharacterNotFoundWarning / Name": {
"message": "Hide 'Character not found' Message",
"description": "[NoCharacterNotFoundWarning] Tweak Name"
},
"NoSellList / Description": {
"message": "Allows you to define a list of items that can not be sold to a vendor.",
"description": "[NoSellList] Tweak Description"
},
"NoSellList / Name": {
"message": "No Sell List",
"description": "[NoSellList] Tweak Name"
},
"OpenEstateAccess / Description": {
"message": "Adds a command to open the estate access configuration for the current estate.",
"description": "[OpenEstateAccess] Tweak Description"
},
"OpenEstateAccess / Name": {
"message": "Estate Access Command",
"description": "[OpenEstateAccess] Tweak Name"
},
"PhantomJobCommand / Description": {
"message": "Adds a command to switch phantom jobs within Occult Crescent",
"description": "[PhantomJobCommand] Tweak Description"
},
"PhantomJobCommand / Name": {
"message": "Phantom Job Command",
"description": "[PhantomJobCommand] Tweak Name"
},
"PidCommand / Description": {
"message": "Adds the command '/pid' to show current process id.",
"description": "[PidCommand] Tweak Description"
},
"PidCommand / Name": {
"message": "Show process id Command",
"description": "[PidCommand] Tweak Name"
},
"QuickSellItems / Description": {
"message": "Hold a modifier key to sell items from your inventory in one click.",
"description": "[QuickSellItems] Tweak Description"
},
"QuickSellItems / Name": {
"message": "Quick Sell Items at Vendors",
"description": "[QuickSellItems] Tweak Name"
},
"RecommendEquipCommand / Description": {
"message": "Adds /equiprecommended to equip recommended gear.",
"description": "[RecommendEquipCommand] Tweak Description"
},
"RecommendEquipCommand / Name": {
"message": "Equip Recommended Command",
"description": "[RecommendEquipCommand] Tweak Name"
},
"RefreshMarketPrices / Description": {
"message": "Retries to get prices upon receiving the 'Please wait and try your search again' message",
"description": "[RefreshMarketPrices] Tweak Description"