vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.0"):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  
10 MENU_SHOW_HP = "Show HP";
11 MENU_SHOW_MP = "Show MP";
12 MENU_SHOW_PERCENT = "Show as percentage";
13 MENU_SHOW_CURRENT = "Show current value";
14  
15 MENU_HIDE_LABEL = "Hide label";
16  
17 TOOLTIP1_LEFT = "Health:";
18 TOOLTIP2_LEFT = "Mana:";
19 TOOLTIP3_LEFT = "Best HP Regen:";
20 TOOLTIP4_LEFT = "Worst HP Regen:";
21 TOOLTIP5_LEFT = "Best MP Regen:";
22 TOOLTIP6_LEFT = "Worst MP Regen:";
23 TOOLTIP7_LEFT = "MP Regen in Last Fight:";
24 TOOLTIP8_LEFT = "HP Regen in Last Fight:";
25  
26 } end )
27