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("deDE", function() return {
4 NAME = "FuBar - RegenFu",
5 DESCRIPTION = "Zeige HP/MP Regenerationsrate",
6  
7 HP_LABEL = "HP: ";
8 MP_LABEL = "MP: ";
9  
10 MENU_SHOW_HP = "Zeige HP";
11 MENU_SHOW_MP = "Zeige MP";
12 MENU_SHOW_PERCENT = "Zeige als Prozent";
13 MENU_SHOW_CURRENT = "Show current value";
14  
15 MENU_HIDE_LABEL = "Text verstecken";
16  
17 TOOLTIP1_LEFT = "Gesundheit:";
18 TOOLTIP2_LEFT = "Mana:";
19 TOOLTIP3_LEFT = "Beste HP Regeneration:";
20 TOOLTIP4_LEFT = "Am schlechtesten HP Regeneration:";
21 TOOLTIP5_LEFT = "Beste MP Regeneration:";
22 TOOLTIP6_LEFT = "Am schlechtesten MP Regeneration:";
23 TOOLTIP7_LEFT = "MP Regeneration im letzten Kampf:";
24 TOOLTIP8_LEFT = "HP Regeneration im letzten Kampf:";
25  
26 } end )
27