-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathenUS.lua
1658 lines (1657 loc) · 59.9 KB
/
enUS.lua
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
-- This file generated by scripts from WindToolsScripts
-- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales
local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "enUS", true, true)
L["!! No talking about specific UI sets !!"] = true
L["!keys Command"] = true
L["%month%-%day%-%year%"] = true
L["%player% cast %spell% -> %target%"] = true
L["%player% cast %spell%, today's special is Anchovy Pie!"] = true
L["%player% dispelled %target%'s %target_spell%!"] = true
L["%player% failed on taunting %target%!"] = true
L["%player% has earned the achievement %achievement%!"] = true
L["%player% interrupted %target%'s %target_spell%!"] = true
L["%player% is casting %spell%, please assist!"] = true
L["%player% is handing out cookies, go and get one!"] = true
L["%player% opened %spell%!"] = true
L["%player% puts %spell%"] = true
L["%player% taunted %target% successfully!"] = true
L["%player% taunted all enemies!"] = true
L["%player% used %spell%"] = true
L["%player%'s %pet_role% %pet% failed on taunting %target%!"] = true
L["%player%'s %pet_role% %pet% taunted %target% successfully!"] = true
L["%players% (%bnet%) has come online."] = true
L["%players% (%bnet%) has gone offline."] = true
L["%players% have earned the achievement %achievement%!"] = true
L["%s %s Loaded."] = true
L["%s + Click to clear all marks."] = true
L["%s + Click to remove all worldmarkers."] = true
L["%s + Left Click to mark the target with this mark."] = true
L["%s + Left Click to place this worldmarker."] = true
L["%s + Right Click to clear the mark on the target."] = true
L["%s + Right Click to clear this worldmarker."] = true
L["%s can be collected"] = true
L["%s detected, %s will be disabled automatically."] = true
L["%s detects CVar %s has been changed."] = true
L["%s has been added to the ignore list."] = true
L["%s has been reset"] = true
L["%s is not loaded."] = true
L["%s may cause some frames to get messed, but you can use %s button to reset frames."] = true
L["%s never lock the CVars."] = true
L["%s not been loaded since you are using an outdated version of ElvUI."] = true
L["%s style absorb color"] = true
L["%s will be started in %s!"] = true
L["%target%, thank you for %spell%. :)"] = true
L["%target%, thank you for using %spell% to revive me. :)"] = true
L["'Absolute' mode means the height of the bar is fixed."] = true
L["'Absolute' mode means the width of the bar is fixed."] = true
L["'Dynamic' mode will also add the height of header text."] = true
L["'Dynamic' mode will also add the width of header text."] = true
L["(e.g., 'in-quadratic' becomes 'out-quadratic' and vice versa)"] = true
L["1. Customize the font of Objective Tracker."] = true
L["2. Add colorful progress text to the quest."] = true
L["24 Hours"] = true
L["A simple editor for CVars."] = true
L["AFK"] = "AFK"
L["AFK Mode"] = true
L["Abbreviation"] = true
L["Abbreviation Customization"] = true
L["Absolute"] = true
L["Absorb"] = true
L["Accept Combat Resurrect"] = true
L["Accept Resurrect"] = true
L["Accept resurrect from other player automatically when you in combat."] = true
L["Accept resurrect from other player automatically when you not in combat."] = true
L["Accept the teleportation from Darkmoon Faire Mystic Mage automatically."] = true
L["Accepted"] = true
L["Accuracy"] = true
L["Ace3"] = true
L["Ace3 Dropdown Backdrop"] = true
L["Achievements"] = true
L["Action Status"] = true
L["Actionbars Backdrop"] = true
L["Actionbars Button"] = true
L["Active Aliases"] = true
L["Add"] = true
L["Add / Update"] = true
L["Add Command"] = true
L["Add Icon"] = true
L["Add LFG group info to tooltip."] = true
L["Add Server Name"] = true
L["Add Target"] = true
L["Add Title"] = true
L["Add To Favorites"] = true
L["Add a bar on unitframe to show the estimated heal of Death Strike."] = true
L["Add a bar that contains buttons to enable/disable modules quickly."] = true
L["Add a bar to contain quest items and usable equipment."] = true
L["Add a chat bar for switching channel."] = true
L["Add a contact frame beside the mail frame."] = true
L["Add a frame to Inspect Frame."] = true
L["Add a frame to your character panel."] = true
L["Add a game bar for improving QoL."] = true
L["Add a glow in the end of health bars to indicate the over absorb."] = true
L["Add a input box to the world map."] = true
L["Add a line in class color."] = true
L["Add a lot of QoL features to WoW."] = true
L["Add a small icon to indicate the highest score."] = true
L["Add a styled section title to the context menu."] = true
L["Add additional information to the friend frame."] = true
L["Add an additional frame to filter the groups."] = true
L["Add an additional frame to show party members' keystone."] = true
L["Add an additional overlay to the absorb bar."] = true
L["Add an extra bar to collect minimap buttons."] = true
L["Add an extra bar to let you set raid markers efficiently."] = true
L["Add an extra item level text to some equipment buttons."] = true
L["Add an icon for indicating the type of the pet."] = true
L["Add an indicator for the leader."] = true
L["Add an indicator icon to buttons."] = true
L["Add an invite link to the guild member online message."] = true
L["Add calendar button to the bar."] = true
L["Add expansion landing page (ex. garrison) to the bar."] = true
L["Add extra information on the link, so that you can get basic information but do not need to click."] = true
L["Add features to pop-up menu without taint."] = true
L["Add more details of objective progress information into tooltips."] = true
L["Add more features to ElvUI UnitFrames."] = true
L["Add more oUF tags. You can use them on UnitFrames configuration."] = true
L["Add or update the rule with custom abbreviation."] = true
L["Add percentage text after quest text."] = true
L["Add progression information to tooltips."] = true
L["Add skins for all modules inside %s with %s functions."] = true
L["Add some additional information into title or description."] = true
L["Add some additional information to your tooltips."] = true
L["Add some features on Trade Frame."] = true
L["Add some useful features for maps."] = true
L["Add statistics information for comparison."] = true
L["Add the Blizzard over absorb glow and overlay to ElvUI unit frames."] = true
L["Add the prefix if the quest is a daily quest."] = true
L["Add the prefix if the quest is a weekly quest."] = true
L["Add trackers for world events in the bottom of world map."] = true
L["AddOn Manager"] = true
L["Additional Backdrop"] = true
L["Additional Information"] = true
L["Additional Text"] = true
L["Additional features for waypoint."] = true
L["Addons"] = true
L["AdiBags"] = true
L["Advanced"] = true
L["Advanced CLEU Event Trace"] = true
L["Advanced Combat Logging"] = true
L["Advanced settings."] = true
L["Adventure Map"] = true
L["Affixes"] = true
L["After you stop debuging, %s will reenable the addons automatically."] = true
L["AiFaDian"] = true
L["Alert"] = true
L["Alert Frames"] = true
L["Alert Second"] = true
L["Alert Sound"] = true
L["Alert Timeout"] = true
L["Alert teammates that the threat transfer spell being used."] = true
L["Alert will be disabled after the set value (hours)."] = true
L["Alert will be triggered when the remaining time is less than the set value."] = true
L["Alias"] = true
L["All"] = true
L["All Factions"] = true
L["All Realms"] = true
L["All Versions"] = true
L["All nets can be collected"] = true
L["Alliance"] = true
L["Allow you to use Delete Key for confirming deleting."] = true
L["Almost full"] = true
L["Alpha"] = true
L["Alpha Max"] = true
L["Alpha Min"] = true
L["Already Known"] = true
L["Alt"] = true
L["Alt Key"] = true
L["Alt List"] = true
L["Alt Power"] = true
L["Alternate Character"] = true
L["Always Display"] = true
L["Always Show Info"] = true
L["Always Show Mine"] = true
L["Americas & Oceania"] = true
L["Anchor Point"] = true
L["Angry Keystones"] = true
L["Anima Diversion"] = true
L["Animation"] = true
L["Animation Duration"] = true
L["Animation Effect"] = true
L["Animation Size"] = true
L["Announce every time the progress has been changed."] = true
L["Announce your mythic keystone."] = true
L["Announce your quest progress to other players."] = true
L["Announcement"] = true
L["Announcement module is a tool to help you send messages."] = true
L["Anonymous"] = true
L["Anti-override"] = true
L["Any"] = true
L["Apply"] = true
L["Apply new shadow style for ElvUI."] = true
L["Are you sure to clear the alt list?"] = true
L["Are you sure to delete the %s command?"] = true
L["Are you sure you want to import the profile?"] = true
L["Are you sure you want to import this string?"] = true
L["Are you sure you want to reset %s module?"] = true
L["Armor Category"] = true
L["Armory"] = true
L["Arrangement direction of the bar."] = true
L["Artifact"] = true
L["Ascending"] = true
L["Auction House"] = true
L["Auctionator"] = true
L["Auras"] = true
L["Auto Compare"] = true
L["Auto Fill"] = true
L["Auto Height"] = true
L["Auto Hide"] = true
L["Auto Hide Bag"] = true
L["Auto Hide Map"] = true
L["Auto Join"] = true
L["Auto Open Loot History"] = true
L["Auto Refresh"] = true
L["Auto Screenshot"] = true
L["Auto Toggle Chat Bubble"] = true
L["Auto Track Waypoint"] = true
L["Auto accept and turn in quests."] = true
L["Auto join the channel if you are not in it."] = true
L["Auto track the waypoint after setting."] = true
L["Auto-detect"] = true
L["AutoButtons"] = true
L["Automate your game life."] = true
L["Automatic filters behaviour"] = true
L["Automatically close bag if player enters combat."] = true
L["Automatically close world map if player enters combat."] = true
L["Automatically join the dungeon when clicking on the LFG row, without asking for role confirmation."] = true
L["Automatically refresh the list after you changing the filter."] = true
L["Automatically select the best format of power (e.g. Rogue is 120, Mage is 100%)"] = true
L["Automatically select the best format of power (e.g. Rogue is 120, Mage is 100)"] = true
L["Automation"] = true
L["Azerite"] = true
L["Azerite Essence"] = true
L["Azerite Respec"] = true
L["BNet Friend Offline"] = true
L["BNet Friend Online"] = true
L["BOTTOM"] = true
L["BOTTOMLEFT"] = true
L["BOTTOMRIGHT"] = true
L["Backdrop"] = true
L["Backdrop Alpha"] = true
L["Backdrop Class Color"] = true
L["Backdrop Color"] = true
L["Backdrop Spacing"] = true
L["Bags"] = true
L["Bags are full"] = true
L["Banners"] = true
L["Bar"] = true
L["Bar Backdrop"] = true
L["Barber Shop"] = true
L["Battle.net Tag"] = true
L["Battleground"] = true
L["Because of %s, this module will not be loaded."] = true
L["Before you submit a bug, please enable debug mode with %s and test it one more time."] = true
L["Besides the raid spells, it also provides numerous features to help you be a friendly player."] = true
L["Better Mythic+ Info"] = true
L["Big Dig"] = true
L["BigWigs"] = true
L["BigWigs Bars"] = true
L["BigWigs Queue Timer"] = true
L["BigWigs Skin"] = true
L["BigfootWorldChannel"] = true
L["Binding"] = true
L["Black Market"] = true
L["Blacklist"] = true
L["Blanchard"] = true
L["Bleeding Hollow"] = true
L["Blizzard"] = true
L["Blizzard Absorb Overlay"] = true
L["Blizzard Buttons"] = true
L["Blizzard Over Absorb Glow"] = true
L["Blizzard Shop"] = true
L["Blizzard Style"] = true
L["Block"] = true
L["Block Shadow"] = true
L["Bonus Net"] = true
L["Border"] = true
L["Border Alpha"] = true
L["Border Class Color"] = true
L["Border Color"] = true
L["Bots"] = true
L["Bottom Right Offset X"] = true
L["Bottom Right Offset Y"] = true
L["Bounce Ease"] = true
L["BugSack"] = true
L["Burning Blade"] = true
L["Burning Legion"] = true
L["Button"] = true
L["Button #%d"] = true
L["Button Animation"] = true
L["Button Animation Duration"] = true
L["Button Animation Scale"] = true
L["Button Backdrop"] = true
L["Button Groups"] = true
L["Button Height"] = true
L["Button Size"] = true
L["Button Spacing"] = true
L["Button Width"] = true
L["Buttons"] = true
L["Buttons Per Row"] = true
L["CDKey"] = true
L["CENTER"] = true
L["CTRL+A: Select All"] = true
L["CTRL+C: Copy"] = true
L["CTRL+V: Paste"] = true
L["CVar Alert"] = true
L["CVars Editor"] = true
L["Calendar"] = true
L["Can be collected"] = true
L["Can be set"] = true
L["Can not set waypoint on this map."] = true
L["Candidate"] = true
L["Cannot reset %s (There are players in your party attempting to zone into an instance.)"] = true
L["Cannot reset %s (There are players offline in your party.)"] = true
L["Cannot reset %s (There are players still inside the instance.)"] = true
L["Cast Bar"] = true
L["Center"] = true
L["Challenges"] = true
L["Change role icons."] = true
L["Change the alpha of vignetting."] = true
L["Change the color of quest titles."] = true
L["Change the color of the absorb bar."] = true
L["Change the color of the name to the in-playing game style."] = true
L["Change the icons that indicate the role."] = true
L["Change the postion of the health bar."] = true
L["Change the postion of the health text."] = true
L["Change the role icon of unitframes."] = true
L["Change the shape of ElvUI minimap."] = true
L["Change this only if you know what you are doing"] = true
L["Changelog"] = true
L["Changelog Popup"] = true
L["Changes the rate at which your mouse pointer moves based on the speed you are moving the mouse."] = true
L["Channel"] = true
L["Channel Abbreviation"] = true
L["Channel Name"] = true
L["Channel Name is empty."] = true
L["Channels"] = true
L["Character"] = true
L["Character Name"] = true
L["Chat Bar"] = true
L["Chat Bubbles"] = true
L["Chat Copy Frame"] = true
L["Chat Data Panels"] = true
L["Chat Link"] = true
L["Chat Panels"] = true
L["Chat Text"] = true
L["Chat Voice Panel"] = true
L["Chat with NPCs smartly. It will automatically select the best option for you."] = true
L["Check Box"] = true
L["Check the setting of ElvUI Private database in ElvUI Options -> Profiles -> Private (tab)."] = true
L["Checked"] = true
L["China"] = true
L["Choose the module you would like to |cff00d1b2use|r"] = true
L["Chromie Time"] = true
L["Circular Ease"] = true
L["Class Bars"] = true
L["Class Color"] = true
L["Class Helper"] = true
L["Class Icon"] = true
L["Class Icon Style"] = true
L["Class Line"] = true
L["Clear All"] = true
L["Clear History"] = true
L["Clear the alt list."] = true
L["Click Binding"] = true
L["Click [%s] to show the QQ groups."] = true
L["Click to clear all marks."] = true
L["Click to confirm"] = true
L["Click to open the weekly rewards frame."] = true
L["Click to remove all worldmarkers."] = true
L["Click to show location"] = true
L["Club channel %s no found, please use the full name of the channel."] = true
L["Club channel no found, please setup again."] = true
L["Codes"] = true
L["Collect Garbage"] = true
L["Collections"] = true
L["Color"] = true
L["Color Mode"] = true
L["Color Override"] = true
L["Colorful Percentage"] = true
L["Colorful Progress"] = true
L["Combat"] = true
L["Combat Alert"] = true
L["Combat Resurrection"] = true
L["Command"] = true
L["Command Configuration"] = true
L["Command List"] = true
L["Communities"] = true
L["Community"] = true
L["Community Feast"] = true
L["Compact"] = true
L["Compatibility Check"] = true
L["Complete"] = true
L["Complete the quest with the most valuable reward."] = true
L["Completed"] = true
L["Config List"] = true
L["Confirm Summon"] = true
L["Confirm summon from other player automatically."] = true
L["Confirmed"] = true
L["Contacts"] = true
L["Context Menu"] = true
L["Contributors (GitHub.com)"] = true
L["Cooking"] = true
L["Cooldown Text Offset"] = true
L["Core"] = true
L["Cosmetic Bar"] = true
L["Count Down"] = true
L["Count Down Time"] = true
L["Count Sub Accounts"] = true
L["Count active WoW sub accounts rather than Battle.net Accounts."] = true
L["Count down time in seconds."] = true
L["Counter"] = true
L["Covenant Preview"] = true
L["Covenant Renown"] = true
L["Covenant Sanctum"] = true
L["Crafted Food"] = true
L["Crafted by mage"] = true
L["Crafting Quality Tier"] = true
L["Credits"] = true
L["Credits & help."] = true
L["Crying"] = true
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = true
L["Cubic Ease"] = true
L["Current Location"] = true
L["Current Region: %s"] = true
L["Custom"] = true
L["Custom Color"] = true
L["Custom Items"] = true
L["Custom String"] = true
L["Custom Strings"] = true
L["Custom Texture"] = true
L["Custom color can be used by adding the following code"] = true
L["Custom hotkey alias for keybinding."] = true
L["Customize the ElvUI cooldown text offset."] = true
L["DND"] = "Busy"
L["DPS"] = true
L["DS Estimator"] = true
L["Daily"] = true
L["Daily Quest at %s"] = true
L["Dark Moon"] = true
L["Data Bars"] = true
L["Data Panels"] = true
L["Database cleanup"] = true
L["Datatexts"] = true
L["Death Effect"] = true
L["Deathknight"] = true
L["Debuff on Friendly Nameplates"] = true
L["Debug Enviroment"] = true
L["Debug Tools"] = true
L["Decimal Length"] = true
L["Decrease the volume"] = true
L["Default"] = true
L["Default Blizzard Style"] = true
L["Default Page"] = true
L["Default Text"] = true
L["Default is %s."] = true
L["Delay (sec)"] = true
L["Delete"] = true
L["Delete Channel Abbreviation Rule"] = true
L["Delete Command"] = true
L["Delete Item"] = true
L["Delete the selected NPC."] = true
L["Delete the selected command."] = true
L["Delete the selected item."] = true
L["Delves"] = true
L["Demon Fall Canyon"] = true
L["Demonhunter"] = true
L["Desaturate"] = true
L["Desaturate icon if the event is completed in this week."] = true
L["Descending"] = true
L["Description"] = true
L["Diablo 3"] = true
L["Difficulty"] = true
L["Disable"] = true
L["Disable All"] = true
L["Disable Blizzard"] = true
L["Disable Blizzard Talking Head."] = true
L["Disable Blizzard loot info which auto showing after combat overed."] = true
L["Disable Blizzard quest progress message."] = true
L["Disable Talking Head"] = true
L["Disable all other addons except ElvUI Core, ElvUI %s and BugSack."] = true
L["Disable announcement in open world."] = true
L["Disable debug mode"] = true
L["Disable safe filters"] = true
L["Disable some annoying sound effects."] = true
L["Disable the default behaviour that prevents inconsistent filters with flags 'Has Tank', 'Has Healer' and 'Role Available'"] = true
L["Disable the default class-colored background circle in LFG Lists, leaving only the skinned icons from preferences"] = true
L["Disable the health bar of nameplate."] = true
L["Disabled"] = "|cffff0000Disabled|r"
L["Discord"] = true
L["Dispel"] = true
L["Dispelled spell link"] = true
L["Display"] = true
L["Display a text when you enter or leave combat."] = true
L["Display an additional title."] = true
L["Display an animation when you enter or leave combat."] = true
L["Display character equipments list when you inspect someone."] = true
L["Display the level of the item on the item link."] = true
L["Display the name of the player who clicked the minimap."] = true
L["Distance"] = true
L["Distance Text"] = true
L["Don't forget to set you favorite bar texture in BigWigs option!"] = true
L["Donate"] = true
L["Drag"] = true
L["Dragon"] = true
L["Dragonbane Keep"] = true
L["Dragonflight"] = true
L["Dressing Room"] = true
L["Druid"] = true
L["Dungeon Score"] = true
L["Dungeon Score Over"] = true
L["Duration"] = true
L["Dyanamic"] = true
L["Ease"] = true
L["Echoes"] = true
L["Edit Mode Manager"] = true
L["Editbox"] = true
L["ElvUI"] = true
L["ElvUI Enhanced Again"] = "|cff00c0faElvUI|r |cffff8000Enhanced|r |cff00c0faAgain|r"
L["ElvUI Tooltip Tweaks"] = true
L["ElvUI Version Popup"] = true
L["Emote"] = true
L["Emote Format"] = true
L["Emote Icon Size"] = true
L["Emote Selector"] = true
L["Emphasized Bar"] = true
L["Enable"] = true
L["Enable All"] = true
L["Enable debug mode"] = true
L["Enable the replacing of ElvUI absorb bar textures."] = true
L["Enable this filter will only show the group that fits you or your group members to join."] = true
L["Enable this filter will only show the group that have the healer already in party."] = true
L["Enable this filter will only show the group that have the tank already in party."] = true
L["Enable to use the command to set the waypoint."] = true
L["Enable/Disable the spell activation alert frame."] = true
L["Enabled"] = "|cff00ff00Enabled|r"
L["Encounter Journal"] = true
L["Enhance ElvUI Mythic Plus info with more details."] = true
L["Enhance the message when a guild member comes online or goes offline."] = true
L["Enhanced Combat Log Events in /etrace frame."] = true
L["Enhanced Shadow"] = true
L["Enhancement"] = true
L["Enhancements"] = true
L["Enter Color"] = true
L["Enter Combat"] = true
L["Enter Text"] = true
L["Equipments"] = true
L["Europe"] = true
L["Even you are not pressing the modifier key, the item level will still be shown."] = true
L["Event Trace"] = true
L["Event Tracker"] = true
L["Evoker"] = true
L["Example"] = true
L["Exclude Dungeons"] = true
L["Expansion Landing Page"] = true
L["Expiration time (min)"] = true
L["Exponential Ease"] = true
L["Export All"] = true
L["Export Private"] = true
L["Export Profile"] = true
L["Export all setting of %s."] = true
L["Export the setting of %s that stored in ElvUI Private database."] = true
L["Export the setting of %s that stored in ElvUI Profile database."] = true
L["Extend Merchant Pages"] = true
L["Extends the merchant page to show more items."] = true
L["Extra"] = true
L["Extra Buttons"] = true
L["Extra Items Bar"] = true
L["Faction"] = true
L["Faction Icon"] = true
L["Fade"] = true
L["Fade In"] = true
L["Fade Out"] = true
L["Fade Time"] = true
L["Failed"] = true
L["Fast Loot"] = true
L["Favorite List"] = true
L["Feast"] = true
L["Feasts"] = true
L["Fill In"] = true
L["Fill by click"] = true
L["Filter"] = true
L["Filters"] = true
L["Fishing"] = true
L["Fishing Net"] = true
L["Fishing Nets"] = true
L["Fix the issue that the guild news update too frequently."] = true
L["Fix the merchant frame showing when you using Trader Skill Master."] = true
L["Flash"] = true
L["Flasks"] = true
L["Flight Map"] = true
L["Floating Damage Text"] = true
L["Floating Healing Text"] = true
L["Floating Text Scale"] = true
L["Flyout Button"] = true
L["Focus the target by modifier key + click."] = true
L["Follow ElvUI Setting"] = true
L["Follower Assignees"] = true
L["Font"] = true
L["Font Setting"] = true
L["Food"] = true
L["Force Item Level"] = true
L["Force to announce if the spell which is cast by you."] = true
L["Force to announce if the target is you."] = true
L["Force to track the target even if it over 1000 yds."] = true
L["Friend List"] = true
L["Friendly Player Name"] = true
L["Friends"] = true
L["G"] = true
L["Game Bar"] = true
L["Game Fix"] = true
L["Game Icon Style for WoW"] = true
L["Game Menu"] = true
L["Garrison"] = true
L["General"] = true
L["Generally, enabling this option makes the value increase faster in the first half of the animation."] = true
L["Generic Trait"] = true
L["Get Best Reward"] = true
L["GitHub"] = true
L["Glow Effect"] = true
L["Go to ..."] = true
L["Golden Donators"] = true
L["Goodbye"] = true
L["Gossip Frame"] = true
L["Gradient"] = true
L["Gradient Color 1"] = true
L["Gradient Color 2"] = true
L["Gradient color of the left part of the bar."] = true
L["Gradient color of the right part of the bar."] = true
L["Group Finder"] = true
L["Group Info"] = true
L["Guild"] = true
L["Guild Bank"] = true
L["Guild Invite"] = true
L["Guild Member Status"] = true
L["Guild Members"] = true
L["Guild News IL"] = true
L["Guild News Update Fix"] = true
L["Has Healer"] = true
L["Has Tank"] = true
L["Have a good time with %s!"] = true
L["Header"] = true
L["Header Style"] = true
L["Heal Prediction"] = true
L["Healer"] = true
L["Health"] = true
L["Health Bar"] = true
L["Health Bar Y-Offset"] = true
L["Health Text Y-Offset"] = true
L["Height"] = true
L["Height Mode"] = true
L["Height Percentage"] = true
L["Hekili"] = true
L["Help"] = true
L["Help Frame"] = true
L["Help you to enable/disable the modules for a better experience with other plugins."] = true
L["Here are some buttons for helping you change the setting of all absorb bars by one-click."] = true
L["Here are some example presets, just try them!"] = true
L["Heroic"] = true
L["Hide Blizzard Indicator"] = true
L["Hide Crafter"] = true
L["Hide If The Bar Outside"] = true
L["Hide Max Level"] = true
L["Hide Player Brackets"] = true
L["Hide Realm"] = true
L["Hide With Objective Tracker"] = true
L["Hide channels that do not exist."] = true
L["Hide crafter name in the item tooltip."] = true
L["Hide default class circles"] = true
L["Hide the level part if the quest level is the max level of this expansion."] = true
L["Hide the realm name of friends."] = true
L["Highlight Color"] = true
L["Hold Control + Right Click:"] = true
L["Holiday Reward Boxes"] = true
L["Home"] = true
L["Horde"] = true
L["Horizontal"] = true
L["Horizontal Spacing"] = true
L["Hot Key"] = true
L["Hover"] = true
L["How to change BigWigs bar style:"] = true
L["Hunter"] = true
L["I"] = true
L["I dispelled %target%'s %target_spell%!"] = true
L["I failed on taunting %target%!"] = true
L["I got it!"] = true
L["I interrupted %target%'s %target_spell%!"] = true
L["I taunted %target% successfully!"] = true
L["I taunted all enemies!"] = true
L["I want to sync setting of WindTools!"] = true
L["IL"] = true
L["Icon"] = true
L["Icon Height"] = true
L["Icon Width"] = true
L["If the game language is different from the primary language in this server, you need to specify which area you play on."] = true
L["If the quest is suggested with multi-players, add the number of players to the message."] = true
L["If there are multiple items in the reward list, it will select the reward with the highest sell price."] = true
L["If you add the NPC into the list, all automation will do not work for it."] = true
L["If you already have a healer in your group and you use the 'Role Available' filter, it won't find any match."] = true
L["If you already have a tank in your group and you use the 'Role Available' filter, it won't find any match."] = true
L["If you find the %s module conflicts with another addon, alert me via Discord."] = true
L["If you found the CVars changed automatically, please check other addons."] = true
L["If you have privilege, it would the message to raid warning(/rw) rather than raid(/r)."] = true
L["If you want to use WeakAuras skin, please install |cffff0000WeakAurasPatched|r (https://wow-ui.net/wap)."] = true
L["Ignore List"] = true
L["Ignored NPCs"] = true
L["Immersion"] = true
L["Import"] = true
L["Import and export your %s settings."] = true
L["Important"] = true
L["Improvement"] = true
L["In Instance"] = true
L["In Party"] = true
L["In Progress"] = true
L["In Raid"] = true
L["Include Details"] = true
L["Include Player"] = true
L["Increase Size"] = true
L["Increase the volume"] = true
L["Information"] = true
L["Information Color"] = true
L["Inherit Global Fade"] = true
L["Input Box"] = true
L["Input Method Editor"] = true
L["Inspect"] = true
L["Instance"] = true
L["Instance Difficulty"] = true
L["Instances"] = true
L["Interrupt"] = true
L["Interrupted spell link"] = true
L["Interval"] = true
L["Inverse Direction"] = true
L["Inverse Mode"] = true
L["Invert Ease"] = true
L["Invite"] = true
L["Iskaaran Fishing Net"] = true
L["It doesn't mean that the %s Skins will not be applied."] = true
L["It may broken inspect feature sometimes."] = true
L["It only applies to players who play WoW in Simplified Chinese."] = true
L["It only works when you enable the skin (%s)."] = true
L["It will affect the cry emote sound."] = true
L["It will alert you to reload UI when you change the CVar %s."] = true
L["It will also affect the crying sound of all female Blood Elves."] = true
L["It will cause some buttons not to work properly before UI reloading."] = true
L["It will check the role of current party members if you are in a group."] = true
L["It will fix the problem if your cursor has abnormal movement."] = true
L["It will not show the group info for dungeons."] = true
L["It will override the config which has the same region, faction and realm."] = true
L["It will override your %s setting."] = true
L["Item"] = true
L["Item Interaction"] = true
L["Item Level"] = true
L["Item Level:"] = true
L["Item Name"] = true
L["Item Socketing"] = true
L["Item Upgrade"] = true
L["Jewelcrafting"] = true
L["Just for Chinese and Korean players"] = true
L["Key Binding"] = true
L["Key Timers"] = true
L["Keybind Alias"] = true
L["Keybind Text Above"] = true
L["Keystone"] = true
L["Khaz Algar Emissary"] = true
L["Korea"] = true
L["LEFT"] = true
L["LFG Info"] = true
L["LFG List"] = true
L["Label"] = true
L["Leader"] = true
L["Leader Best Run"] = true
L["Leader Score"] = true
L["Leader Score Over"] = true
L["Leader's Dungeon Score"] = true
L["Leader's Overall Score"] = true
L["Leave Color"] = true
L["Leave Combat"] = true
L["Leave Party"] = true
L["Leave Party if soloing"] = true
L["Leave Text"] = true
L["Left"] = true
L["Left Button"] = true
L["Left Click to mark the target with this mark."] = true
L["Left Click to place this worldmarker."] = true
L["Left Click to ready check."] = true
L["Left Click to start count down."] = true
L["Left Click: Change to"] = true
L["Left Click: Toggle"] = true
L["Left Color"] = true
L["Left Panel"] = true
L["Let you can view the group created by Simplified Chinese players."] = true
L["Let your teammates know the progress of quests."] = true
L["Level"] = true
L["Lights Hope"] = true
L["Limit"] = true
L["Linear Ease"] = true
L["List"] = true
L["Lists"] = true
L["Local Time"] = true
L["Localization"] = true
L["Location"] = true
L["Log Level"] = true
L["Login Message"] = true
L["Logout"] = true
L["Looking For Group"] = true
L["Loot"] = true
L["Loot Frames"] = true
L["Loot Roll"] = true
L["Loss Of Control"] = true
L["M+ Best Run"] = true
L["M+ Level"] = true
L["M+ Score"] = true
L["MONOCHROME"] = true
L["MONOCHROMETHICKOUTLINE"] = true
L["MONOCROMEOUTLINE"] = true
L["Macros"] = true
L["Mage"] = true
L["Mail"] = true
L["Mail Frame"] = true
L["Major Factions"] = true
L["Make adventure life easier."] = true
L["Make combat more interesting."] = true
L["Make quest acceptance and completion automatically."] = true
L["Make shadow thicker."] = true
L["Make some enhancements on chat and friend frames."] = true
L["Make sure you select the NPC as your target."] = true
L["Make the additional percentage text be colored."] = true
L["Maps"] = true
L["Mark Highest Score"] = true
L["Mark as read, the changelog message will be hidden when you login next time."] = true
L["Math Without Kanji"] = true
L["Max Overflow"] = true
L["Media Files"] = true
L["Menu"] = true
L["Menu Title"] = true
L["MerathilisUI"] = "|cffffffffMerathilis|r|cffff7d0aUI|r"
L["Merchant"] = true
L["Merge Achievement"] = true
L["Merge the achievement message into one line."] = true
L["Message From the Author"] = true
L["Micro Bar"] = true
L["Micro Menu"] = true
L["Middle Button"] = true
L["Middle Click To Clear"] = true
L["Middle click the waypoint to clear it."] = true
L["Minimap"] = "Minimap"
L["Minimap Button Bar"] = true
L["Minimap Buttons"] = true
L["Minimap Buttons Bar"] = true
L["Minimap Ping"] = true
L["Mirror Timers"] = true
L["Misc"] = true
L["Misc Frames"] = true
L["Miscellaneous modules."] = true
L["Mission Reports"] = true
L["MoP Remixed Items"] = true
L["Mode"] = true
L["Modifier Key"] = true
L["Modify the chat text style."] = true
L["Modify the style of abbreviation of channels."] = true
L["Modify the texture of status and make name colorful."] = true
L["Modify the texture of the absorb bar."] = true
L["Module"] = true
L["Modules"] = true
L["Monk"] = true
L["Monochrome"] = true
L["More"] = true
L["More Resources"] = true
L["Mount"] = true
L["Mouse"] = true
L["Mouse Over"] = true
L["Move (L\124\124R) Reset"] = true
L["Move ElvUI Bags"] = true
L["Move Frames"] = true
L["Move Speed"] = true
L["Mute"] = true
L["Mute crying sounds of all races."] = true
L["Mute the sound of dragons."] = true
L["Mute the sound of jewelcrafting."] = true
L["My %pet_role% %pet% failed on taunting %target%!"] = true
L["My %pet_role% %pet% taunted %target% successfully!"] = true
L["My Favorites"] = true
L["My new keystone is %keystone%."] = true
L["Myslot"] = true
L["Mythic"] = true
L["Mythic Dungeon Tools"] = true
L["Mythic Dungeons"] = true
L["Mythic Plus"] = true
L["NGA.cn"] = true
L["Name"] = true
L["Name of the player"] = true
L["Nameplate"] = true
L["Nameplate Only Names"] = true
L["Net #%d"] = true
L["Net %s can be collected"] = true
L["Nether Effect"] = true
L["New"] = true
L["New Channel Abbreviation Rule"] = true
L["New Command"] = true
L["New Config"] = true
L["New Item ID"] = true
L["Next Event"] = true
L["Next Location"] = true
L["Next Time"] = true
L["Niuzao"] = true
L["No Arg"] = true
L["No Dash"] = true
L["No Distance Limitation"] = true
L["No Hearthstone Found!"] = true
L["No Loot Panel"] = true
L["No Mythic+ Runs"] = true
L["No Nets Set"] = true
L["No Record"] = true
L["No Unit"] = true
L["No automatic removal of filters, might cause empty results if you already have the roles in your party."] = true
L["No weekly runs found."] = true
L["None"] = true
L["Normal"] = true
L["Normal Bar"] = true
L["Normal Class Color"] = true
L["Normal Color"] = true
L["Not Completed"] = true
L["Not Set"] = true
L["Notice"] = true
L["Notice that if you are using some unblock addons in CN, you region are may changed to others."] = true
L["Notification"] = true
L["Number of Pages"] = true
L["Number of Players"] = true
L["Numerical Quality Tier"] = true
L["O"] = true
L["OMG, wealthy %player% puts %spell%!"] = true
L["OUTLINE"] = true
L["Objective Progress"] = true
L["Objective Tracker"] = true
L["ObjectiveTracker Skin"] = true
L["Off"] = true
L["Officer"] = true
L["OmniCD"] = true
L["OmniCD Icon"] = true
L["OmniCD Status Bar"] = true
L["On"] = true
L["One Pixel"] = true
L["Online Friends"] = true
L["Online Invite Link"] = true
L["Only Accept"] = true
L["Only Complete"] = true
L["Only Current Realm"] = true
L["Only DF Character"] = true
L["Only In Combat"] = true
L["Only Instance"] = true
L["Only Not Tank"] = true
L["Only On Combat"] = true
L["Only Watched"] = true
L["Only You"] = true
L["Only announce when the target is not a tank."] = true
L["Only display log message that the level is higher than you choose."] = true
L["Only send messages after you cast combat resurrection."] = true
L["Only show chat bar when you mouse over it."] = true
L["Only show chat bubble in instance."] = true
L["Only show minimap buttons bar when you mouse over it."] = true
L["Only show raid markers bar when you mouse over it."] = true
L["Only show the bar when you mouse over it."] = true
L["Only skip watched cut scene. (some cut scenes can't be skipped)"] = true
L["Only works with ElvUI action bar and ElvUI cooldowns."] = true
L["Opacity"] = true
L["Open BigWigs Options UI with /bw > Bars > Style."] = true
L["Open Changelog"] = true
L["Open the project page and download more resources."] = true
L["Open the window of follower recruit automatically."] = true
L["Openable Items"] = true
L["Options"] = true
L["Orderhall"] = true
L["Orientation"] = true
L["Original Text"] = true
L["Other Players"] = true
L["Other Players' Pet"] = true
L["Others"] = true
L["Otherwise, it will filter with your current specialization."] = true
L["Outline"] = true
L["Overall Score"] = true
L["Overflow"] = true
L["Override the bar color."] = true
L["P"] = true
L["PL"] = true
L["Paladin"] = true
L["Panels"] = true
L["Parchment Remover"] = true
L["Parse emote expression from other players."] = true
L["Party"] = true
L["Party Info"] = true
L["Party Keystone"] = true
L["Patreon"] = true
L["Pause On Press"] = true
L["Pause the automation by pressing a modifier key."] = true
L["Pause to slash"] = true
L["Percentage"] = true
L["Percentage of ElvUI minimap size."] = true
L["Performing"] = true
L["Perks Program"] = true
L["Pet Battle"] = true