vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if not ace:LoadTranslation("RecapFu") then
2  
3 if not RecapFu then
4 local compost = CompostLib:GetInstance('compost-1')
5 RecapFu = compost:Acquire()
6 end
7  
8 RecapFu.locals = {
9 Desc = "Easy access to Recap info.",
10  
11 DISABLED = "Disabled",
12  
13 BUTTON = {
14 LABEL = "DPS:",
15 NO_LABEL = " ",
16 HINT_TEXT = "Left-click to toggle Recap window",
17 PAUSE_TEXT = "Pause Monitoring",
18 START_TEXT = "Resume Monitoring",
19 SHOWLABEL = "Show Label",
20  
21 DPS = "Show your DPS",
22 DPS_IN = "Show your DPS in",
23 DPS_OUT = "Show your DPS out",
24 HEALING = "Show Healing",
25 OVERHEAL = "Show Overhealing %",
26 MAXHIT = "Show Max Hit",
27 },
28  
29 TOOLTIP = {
30 STATE = "State: ",
31 VIEW_TYPE = "View Type: ",
32  
33 DPS = "Your DPS: ",
34 DPS_IN = "Total DPS In: ",
35 DPS_OUT = "Total DPS Out: ",
36 HEALING = "Healing: ",
37 OVERHEAL = "Overhealing %: ",
38 MAXHIT = "Max hit: ",
39 },
40 }
41  
42 end