-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
strings.json
1758 lines (1758 loc) · 75.1 KB
/
strings.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
{
"AutoLockHotbar / Description": {
"message": "Automatically locks action bars when certain conditions are met.",
"description": "[AutoLockHotbar] Tweak Description"
},
"AutoLockHotbar / Name": {
"message": "Auto Lock Action Bars",
"description": "[AutoLockHotbar] Tweak Name"
},
"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"
},
"BaitCommand / Description": {
"message": "Adds /bait to switch fishing baits.",
"description": "[BaitCommand] Tweak Description"
},
"BaitCommand / Name": {
"message": "Bait Command",
"description": "[BaitCommand] Tweak Name"
},
"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. [Note: does not work on crafters]",
"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@ChatNameColours / Description": {
"message": "Gives players a random colour in chat, or set the name manually.",
"description": "[ChatNameColours] Tweak Description"
},
"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@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 / 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 upon joining a group.",
"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 / Name": {
"message": "Echo Story Selection",
"description": "[EchoStorySelection] 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 Font Sizes",
"description": "[ImprovedFontSizes] 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 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"
},
"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"
},
"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 / 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"
},
"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"
},
"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 / 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": "Disable all control of the camera using the mouse.",
"description": "[DisableMouseCameraControl] Tweak Description"
},
"DisableMouseCameraControl / Name": {
"message": "Disable Mouse Camera Control",
"description": "[DisableMouseCameraControl] 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"
},
"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"
},
"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"
},
"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"
},
"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 / 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 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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"RefreshMarketPrices / Name": {
"message": "Refresh Market Prices",
"description": "[RefreshMarketPrices] Tweak Name"
},
"RememberQuickGathering / Description": {
"message": "Remembers quick gathering status even after gathering at unspoiled nodes.",
"description": "[RememberQuickGathering] Tweak Description"
},
"RememberQuickGathering / Name": {
"message": "Remember Quick Gathering",
"description": "[RememberQuickGathering] Tweak Name"
},
"SanctuarySprintReplacer / Description": {
"message": "Replaces the normal Sprint action with Isle Sprint while in the Island Sanctuary.",
"description": "[SanctuarySprintReplacer] Tweak Description"
},
"SanctuarySprintReplacer / Name": {
"message": "Island Sanctuary Sprint Replacer",
"description": "[SanctuarySprintReplacer] Tweak Name"
},
"ScreenshotFileName / Description": {
"message": "Change the file name format for screenshots.",
"description": "[ScreenshotFileName] Tweak Description"
},
"ScreenshotFileName / Name": {
"message": "Screenshot File Name",
"description": "[ScreenshotFileName] Tweak Name"
},
"SetOptionCommand / alias": {
"message": "alias",
"description": "[SetOptionCommand] Set Option Command - alias"
},
"SetOptionCommand / Available Options": {
"message": "Available Options",
"description": "[SetOptionCommand] Set Option Command - Available Options"
},
"SetOptionCommand / Description": {
"message": "Adds commands to change various settings.",
"description": "[SetOptionCommand] Tweak Description"
},
"SetOptionCommand / Name": {
"message": "Set Option Command",
"description": "[SetOptionCommand] Tweak Name"
},
"SetOptionCommand / option": {
"message": "option",
"description": "[SetOptionCommand] Set Option Command - option"
},
"SetOptionCommand / values": {
"message": "values",
"description": "[SetOptionCommand] Set Option Command - values"
},
"SmartStrafe / Description": {
"message": "Inteligently switches keyboard controls between strafing and turning.\n(Legacy type movmement only)",
"description": "[SmartStrafe] Tweak Description"
},
"SmartStrafe / Name": {
"message": "Smart Strafe",
"description": "[SmartStrafe] Tweak Name"
},
"SyncCrafterBars / Description": {
"message": "Keeps DoH job bars in sync",
"description": "[SyncCrafterBars] Tweak Description"
},
"SyncCrafterBars / Name": {
"message": "Sync Crafter Bars",
"description": "[SyncCrafterBars] Tweak Name"
},
"SyncGathererBars / Description": {
"message": "Keeps miner and botanist hotbars in sync.",
"description": "[SyncGathererBars] Tweak Description"
},
"SyncGathererBars / Name": {
"message": "Sync Gatherer Bars",
"description": "[SyncGathererBars] Tweak Name"
},
"SystemConfigInGroupPose / Description": {
"message": "Allows the use of the /systemconfig command while in gpose.",
"description": "[SystemConfigInGroupPose] Tweak Description"
},
"SystemConfigInGroupPose / Name": {
"message": "SystemConfig in Group Pose",
"description": "[SystemConfigInGroupPose] Tweak Name"
},
"TooltipTweaks / Name": {
"message": "Tooltip Tweaks",
"description": "[TooltipTweaks] Tweak Name"
},
"TooltipTweaks@AdditionalItemInfo / Description": {
"message": "Adds extra information to item tooltips",
"description": "[AdditionalItemInfo] Tweak Description"
},
"TooltipTweaks@AdditionalItemInfo / Name": {
"message": "Extra Information for Tooltips",
"description": "[AdditionalItemInfo] Tweak Name"
},
"TooltipTweaks@BlueActionInfo / Description": {
"message": "Adds Damage Type, Aspect and Rank to blue mage actions.",
"description": "[BlueActionInfo] Tweak Description"
},
"TooltipTweaks@BlueActionInfo / Name": {
"message": "Improved Blue Mage Action Tooltips",
"description": "[BlueActionInfo] Tweak Name"
},
"TooltipTweaks@CopyHotkey / Browser Only": {
"message": "Browser Only",
"description": "[CopyHotkey] Item Hotkeys - Browser Only"
},
"TooltipTweaks@CopyHotkey / Cancel": {
"message": "Cancel",
"description": "[CopyHotkey] Item Hotkeys - Cancel"
},
"TooltipTweaks@CopyHotkey / Confirm": {
"message": "Confirm",
"description": "[CopyHotkey] Item Hotkeys - Confirm"
},
"TooltipTweaks@CopyHotkey / Copy Item Name": {
"message": "Copy Item Name",
"description": "[CopyHotkey] Item Hotkeys - Copy Item Name"
},
"TooltipTweaks@CopyHotkey / Description": {
"message": "Adds hotkeys for various actions when the item detail window is visible.",
"description": "[CopyHotkey] Tweak Description"
},
"TooltipTweaks@CopyHotkey / Name": {
"message": "Item Hotkeys",
"description": "[CopyHotkey] Tweak Name"
},
"TooltipTweaks@CopyHotkey / NoHelpText": {
"message": "Don't show hotkey help on Tooltip",
"description": "[CopyHotkey] Item Hotkeys - Don't show hotkey help on Tooltip"
},
"TooltipTweaks@CopyHotkey / Set Keybind": {
"message": "Set Keybind",
"description": "[CopyHotkey] Item Hotkeys - Set Keybind"
},
"TooltipTweaks@CopyHotkey / View on Eriones (JP)": {
"message": "View on Eriones (JP)",
"description": "[CopyHotkey] Item Hotkeys - View on Eriones (JP)"
},
"TooltipTweaks@CopyHotkey / View on Gamer Escape": {
"message": "View on Gamer Escape",
"description": "[CopyHotkey] Item Hotkeys - View on Gamer Escape"
},
"TooltipTweaks@CopyHotkey / View on Garland Tools": {
"message": "View on Garland Tools",
"description": "[CopyHotkey] Item Hotkeys - View on Garland Tools"
},
"TooltipTweaks@CopyHotkey / View on Teamcraft": {
"message": "View on Teamcraft",
"description": "[CopyHotkey] Item Hotkeys - View on Teamcraft"
},
"TooltipTweaks@CraftingActionInfo / Description": {
"message": "Adds calculated efficiency of crafting actions to tooltips.",
"description": "[CraftingActionInfo] Tweak Description"
},
"TooltipTweaks@CraftingActionInfo / Name": {
"message": "Improved Crafting Action Tooltips",
"description": "[CraftingActionInfo] Tweak Name"
},
"TooltipTweaks@DesynthesisSkill / Colour Value": {
"message": "Colour Value",
"description": "[DesynthesisSkill] Show Desynthesis Skill - Colour Value"
},
"TooltipTweaks@DesynthesisSkill / Description": {
"message": "Shows your current desynthesis level when viewing a desynthesizable item.",
"description": "[DesynthesisSkill] Tweak Description"
},
"TooltipTweaks@DesynthesisSkill / Desynthesis Delta": {
"message": "Desynthesis Delta",
"description": "[DesynthesisSkill] Show Desynthesis Skill - Desynthesis Delta"
},
"TooltipTweaks@DesynthesisSkill / Name": {
"message": "Show Desynthesis Skill",
"description": "[DesynthesisSkill] Tweak Name"
},
"TooltipTweaks@FoodStats / Description": {
"message": "Calculates the stat results a consumable will have based on your current stats.",
"description": "[FoodStats] Tweak Description"
},
"TooltipTweaks@FoodStats / Highlight Active": {
"message": "Highlight Active",
"description": "[FoodStats] Show expected food and potion stats - Highlight Active"
},
"TooltipTweaks@FoodStats / Name": {
"message": "Show expected food and potion stats",
"description": "[FoodStats] Tweak Name"
},
"TooltipTweaks@HideTooltipsInCombat / Description": {
"message": "Allows hiding Action and/or Item tooltips while in combat.",
"description": "[HideTooltipsInCombat] Tweak Description"
},
"TooltipTweaks@HideTooltipsInCombat / Name": {
"message": "Hide Tooltips in Combat",
"description": "[HideTooltipsInCombat] Tweak Name"
},
"TooltipTweaks@ItemHotkeys / Description": {
"message": "Adds hotkeys for various actions when the item detail window is visible.",
"description": "[ItemHotkeys] Tweak Description"
},
"TooltipTweaks@ItemHotkeys / Name": {
"message": "Item Hotkeys",
"description": "[ItemHotkeys] Tweak Name"
},
"TooltipTweaks@MateriaStats / Colour Value": {
"message": "Colour Value",
"description": "[MateriaStats] Materia Stats - Colour Value"
},
"TooltipTweaks@MateriaStats / Description": {
"message": "Includes an item's attached materia when displaying the stats.",
"description": "[MateriaStats] Tweak Description"
},
"TooltipTweaks@MateriaStats / Name": {
"message": "Materia Stats",
"description": "[MateriaStats] Tweak Name"
},
"TooltipTweaks@MateriaStats / Show Delta": {
"message": "Show Delta",
"description": "[MateriaStats] Materia Stats - Show Delta"
},
"TooltipTweaks@MateriaStats / Show Total": {
"message": "Show Total",
"description": "[MateriaStats] Materia Stats - Show Total"
},
"TooltipTweaks@MateriaStats / Simplified Combined Display": {
"message": "Simplified Combined Display",
"description": "[MateriaStats] Materia Stats - Simplified Combined Display"
},
"TooltipTweaks@PaintingPreview / Description": {
"message": "Add an image preview for paintings to item tooltips.",
"description": "[PaintingPreview] Tweak Description"
},
"TooltipTweaks@PaintingPreview / Name": {
"message": "Show Painting Preview",
"description": "[PaintingPreview] Tweak Name"
},
"TooltipTweaks@PrecisionDurability / Description": {
"message": "Show partial percentages for durability.",
"description": "[PrecisionDurability] Tweak Description"
},
"TooltipTweaks@PrecisionDurability / Name": {
"message": "Precise Durability",
"description": "[PrecisionDurability] Tweak Name"
},
"TooltipTweaks@PrecisionDurability / Trailing Zeros": {
"message": "Trailing Zeros",
"description": "[PrecisionDurability] Precise Durability - Trailing Zeros"
},
"TooltipTweaks@PrecisionSpiritbond / Description": {
"message": "Show partial percentages for Spiritbond.",
"description": "[PrecisionSpiritbond] Tweak Description"
},
"TooltipTweaks@PrecisionSpiritbond / Name": {
"message": "Precise Spiritbond",
"description": "[PrecisionSpiritbond] Tweak Name"
},
"TooltipTweaks@PrecisionSpiritbond / Trailing Zeros": {
"message": "Trailing Zeros",
"description": "[PrecisionSpiritbond] Precise Spiritbond - Trailing Zeros"
},
"TooltipTweaks@ShowItemID / Description": {
"message": "Show the ID of actions and items on their tooltips.",
"description": "[ShowItemID] Tweak Description"
},
"TooltipTweaks@ShowItemID / Name": {
"message": "Show ID",
"description": "[ShowItemID] Tweak Name"
},
"TooltipTweaks@ShowItemID / Show Both HEX and Decimal": {
"message": "Show Both HEX and Decimal",
"description": "[ShowItemID] [Config] Show Both HEX and Decimal"
},
"TooltipTweaks@ShowItemID / Use Hexadecimal ID": {
"message": "Use Hexadecimal ID",
"description": "[ShowItemID] [Config] Use Hexadecimal ID"
},
"TooltipTweaks@SimplifiedClassJobDisplay / Description": {
"message": "Hides classes from equipment tooltips when their jobs are unlocked.",
"description": "[SimplifiedClassJobDisplay] Tweak Description"
},
"TooltipTweaks@SimplifiedClassJobDisplay / Name": {
"message": "Simplified Equipment Job Display",
"description": "[SimplifiedClassJobDisplay] Tweak Name"
},
"TooltipTweaks@TrackFadedRolls / Description": {
"message": "Adds the collected checkmark to Faded Orchestrion Rolls.",
"description": "[TrackFadedRolls] Tweak Description"
},
"TooltipTweaks@TrackFadedRolls / Name": {
"message": "Track Faded Orchestrion Rolls",
"description": "[TrackFadedRolls] Tweak Name"
},
"TooltipTweaks@TrackGachaItems / Description": {
"message": "Adds the collectable checkmark to gacha items, such as Triple Triad card packs, when all potential items have been obtained.",
"description": "[TrackGachaItems] Tweak Description"
},
"TooltipTweaks@TrackGachaItems / Name": {
"message": "Track Gacha Items",
"description": "[TrackGachaItems] Tweak Name"
},
"TreasureHuntTargets / Description": {
"message": "Disable targeting for enemies that are part of another players Treasure Hunt duty.",
"description": "[TreasureHuntTargets] Tweak Description"
},
"TreasureHuntTargets / Name": {
"message": "Block Targeting Treasure Hunt Enemies",
"description": "[TreasureHuntTargets] Tweak Name"
},
"TryOnCorrectItem / Description": {
"message": "Show the correct item when trying on a glamoured item.",
"description": "[TryOnCorrectItem] Tweak Description"
},
"TryOnCorrectItem / Name": {
"message": "Try On Correct Item",
"description": "[TryOnCorrectItem] Tweak Name"
},
"UiAdjustments / Name": {
"message": "UI Tweaks",
"description": "[UiAdjustments] Tweak Name"
},
"UiAdjustments@AccurateVentureTimes / Description": {
"message": "Show live countdowns to venture completion on the retainer list.",
"description": "[AccurateVentureTimes] Tweak Description"
},
"UiAdjustments@AccurateVentureTimes / Name": {
"message": "Accurate Venture Times",
"description": "[AccurateVentureTimes] Tweak Name"
},
"UiAdjustments@AccurateVentureTimes / Simple Display": {
"message": "Simple Display",
"description": "[AccurateVentureTimes] [Config] Simple Display"
},
"UiAdjustments@ActionPressMirroring / Description": {
"message": "Will show the action press pulse on all hotbar slots with the same ability when you use it.",
"description": "[ActionPressMirroring] Tweak Description"
},
"UiAdjustments@ActionPressMirroring / Name": {
"message": "Duplicate Action Presses Between Hotbars",
"description": "[ActionPressMirroring] Tweak Name"
},
"UiAdjustments@AlwaysYes / Description": {
"message": "Default cursor to yes when using confirm (num 0).",
"description": "[AlwaysYes] Tweak Description"
},
"UiAdjustments@AlwaysYes / Name": {
"message": "Always Yes",
"description": "[AlwaysYes] Tweak Name"
},
"UiAdjustments@BattleTalkAdjustments / Description": {
"message": "Allows moving of the dialogue box that appears in the middle of battles.",
"description": "[BattleTalkAdjustments] Tweak Description"
},
"UiAdjustments@BattleTalkAdjustments / Name": {
"message": "Battle Talk Adjustments",
"description": "[BattleTalkAdjustments] Tweak Name"
},
"UiAdjustments@BattleTalkAdjustments / PositionPreviewText": {
"message": "NEW BATTLE TALK DIALOGUE BOX POSITION",
"description": "[BattleTalkAdjustments] Battle Talk Adjustments - NEW BATTLE TALK DIALOGUE BOX POSITION"
},
"UiAdjustments@BattleTalkAdjustments / Scale": {
"message": "Scale",
"description": "[BattleTalkAdjustments] Battle Talk Adjustments - Scale"
},
"UiAdjustments@BattleTalkAdjustments / X Offset": {
"message": "X Offset",
"description": "[BattleTalkAdjustments] Battle Talk Adjustments - X Offset"
},
"UiAdjustments@BattleTalkAdjustments / Y Offset": {
"message": "Y Offset",
"description": "[BattleTalkAdjustments] Battle Talk Adjustments - Y Offset"
},
"UiAdjustments@CastBarAdjustments / Align Ability Name": {
"message": "Align Ability Name",
"description": "[CastBarAdjustments] Cast Bar Adjustments - Align Ability Name"