vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | |
2 | |||
3 | local L = AceLibrary("AceLocale-2.0"):new("Detox") |
||
4 | |||
5 | L:RegisterTranslations("enUS", function() return { |
||
6 | |||
7 | -- menu/options |
||
8 | ["Clean group"] = true, |
||
9 | ["Will attempt to clean a player in your raid/party."] = true, |
||
10 | ["Play sound if unit needs decursing"] = true, |
||
11 | ["Show detoxing in scrolling combat frame"] = true, |
||
12 | ["This will use SCT5 when available, otherwise Blizzards Floating Combat Text."] = true, |
||
13 | ["Seconds to blacklist"] = true, |
||
14 | ["Units that are out of Line of Sight will be blacklisted for the set duration."] = true, |
||
15 | ["Max debuffs shown"] = true, |
||
16 | ["Defines the max number of debuffs to display in the live list."] = true, |
||
17 | ["Update speed"] = true, |
||
18 | ["Defines the speed the live list is updated, in seconds."] = true, |
||
19 | ["Detaches the live list from the Detox icon."] = true, |
||
20 | ["Show live list"] = true, |
||
21 | ["Options for the live list."] = true, |
||
22 | ["Live list"] = true, |
||
23 | |||
24 | -- Filtering |
||
25 | ["Filter"] = true, |
||
26 | ["Options for filtering various debuffs and conditions."] = true, |
||
27 | ["Debuff"] = true, |
||
28 | ["Filter by debuff and class."] = true, |
||
29 | ["Classes to filter for: %s."] = true, |
||
30 | ["Toggle filtering %s on %s."] = true, |
||
31 | ["Adds a new debuff to the class submenus."] = true, |
||
32 | ["Add"] = true, |
||
33 | ["Removes a debuff from the class submenus."] = true, |
||
34 | ["Remove %s from the class submenus."] = true, |
||
35 | ["Remove"] = true, |
||
36 | ["<debuff name>"] = true, |
||
37 | ["Filter stealthed units"] = true, |
||
38 | ["It is recommended not to cure stealthed units."] = true, |
||
39 | ["Filter Abolished units"] = true, |
||
40 | ["Skip units that have an active Abolish buff."] = true, |
||
41 | ["Filter pets"] = true, |
||
42 | ["Pets are also your friends."] = true, |
||
43 | ["Filter by type"] = true, |
||
44 | ["Only show debuffs you can cure."] = true, |
||
45 | ["Filter by range"] = true, |
||
46 | ["Only show units in range."] = true, |
||
47 | |||
48 | -- Priority list |
||
49 | ["Priority"] = true, |
||
50 | ["These units will be priorized when curing."] = true, |
||
51 | ["Show priorities"] = true, |
||
52 | ["Displays who is prioritized in the live list."] = true, |
||
53 | ["Priorities"] = true, |
||
54 | ["Can't add/remove current target to priority list, it doesn't exist."] = true, |
||
55 | ["Can't add/remove current target to priority list, it's not in your raid."] = true, |
||
56 | ["%s was added to the priority list."] = true, |
||
57 | ["%s has been removed from the priority list."] = true, |
||
58 | ["Nothing"] = true, |
||
59 | ["Prioritize %s."] = true, |
||
60 | ["Every %s"] = true, |
||
61 | ["Prioritize every %s."] = true, |
||
62 | ["Groups"] = true, |
||
63 | ["Prioritize by group."] = true, |
||
64 | ["Group %s"] = true, |
||
65 | ["Prioritize group %s."] = true, |
||
66 | ["Class %s"] = true, |
||
67 | |||
68 | -- bindings |
||
69 | ["Clean group"] = true, |
||
70 | ["Toggle target priority"] = true, |
||
71 | ["Toggle target class priority"] = true, |
||
72 | ["Toggle target group priority"] = true, |
||
73 | |||
74 | -- spells and potions |
||
75 | ["Dreamless Sleep"] = true, |
||
76 | ["Greater Dreamless Sleep"] = true, |
||
77 | ["Ancient Hysteria"] = true, |
||
78 | ["Ignite Mana"] = true, |
||
79 | ["Tainted Mind"] = true, |
||
80 | ["Magma Shackles"] = true, |
||
81 | ["Cripple"] = true, |
||
82 | ["Frost Trap Aura"] = true, |
||
83 | ["Dust Cloud"] = true, |
||
84 | ["Widow's Embrace"] = true, |
||
85 | ["Curse of Tongues"] = true, |
||
86 | ["Sonic Burst"] = true, |
||
87 | ["Thunderclap"] = true, |
||
88 | ["Delusions of Jin'do"] = true, |
||
89 | |||
90 | |||
91 | ["Magic"] = true, |
||
92 | ["Charm"] = true, |
||
93 | ["Curse"] = true, |
||
94 | ["Poison"] = true, |
||
95 | ["Disease"] = true, |
||
96 | |||
97 | ["Cleaned %s"] = true, |
||
98 | |||
99 | ["Rank (%d+)"] = true |
||
100 | |||
101 | } end) |