vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.2"):new("RegenFu")
2  
3 L:RegisterTranslations("enUS", function() return {
4 NAME = "FuBar - RegenFu",
5 DESCRIPTION = "Show your HP/MP regen rate.",
6  
7 HP_LABEL = "HP: ";
8 MP_LABEL = "MP: ";
9 FSR_LABEL = "FSR: ",
10  
11 MENU_SHOW_HP = "Show HP";
12 MENU_SHOW_MP = "Show MP";
13  
14 ["Show FSRT"] = true,
15  
16 MENU_SHOW_PERCENT = "Show as percentage";
17 MENU_SHOW_CURRENT = "Show current value";
18  
19 ["Show In Combat Regen Total"] = true,
20  
21  
22 MENU_HIDE_LABEL = "Hide label";
23  
24 TOOLTIP1_LEFT = "Health:";
25 TOOLTIP2_LEFT = "Mana:";
26 TOOLTIP3_LEFT = "Best HP Regen:";
27 TOOLTIP4_LEFT = "Worst HP Regen:";
28 TOOLTIP5_LEFT = "Best MP Regen:";
29 TOOLTIP6_LEFT = "Worst MP Regen:";
30 TOOLTIP7_LEFT = "MP Regen in Last Fight:";
31 TOOLTIP8_LEFT = "HP Regen in Last Fight:";
32 TOOLTIP9_LEFT = "Average MP Regen in Last Fight:";
33  
34 ["AceConsole-commands"] = { "/regenfu" },
35  
36 ["Percent Regen While Casting"] = true,
37 ["Mana Regen Forumula (Spirit/<value>)"] = true,
38 ["Mana Per Int"] = true,
39  
40  
41 ["Reset FSR Data"] = true,
42 ["Time Spent In Regen"] = true,
43 ["(This Fight)"] = true,
44 ["(Last Fight)"] = true,
45  
46 ["Total Regen Time Observed"] = true,
47 ["% Of That Time In FSR"] = true,
48 ["Spirit Needed To Equal 1mp5"] = true,
49 ["Int Needed To Equal 1mp5"] = true,
50  
51 ["FSR Countdown Bar"] = true,
52 ["FSR"] = true,
53  
54 } end )
55