vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | local L = AceLibrary("AceLocale-2.0"):new("RegenFu") |
2 | |||
3 | L:RegisterTranslations("frFR", function() return { |
||
4 | NAME = "FuBar - RegenFu", |
||
5 | DESCRIPTION = "Affiche vos vitesses de regen HP/Mana", |
||
6 | |||
7 | HP_LABEL = "HP: "; |
||
8 | MP_LABEL = "MP: "; |
||
9 | |||
10 | MENU_SHOW_HP = "Montrer HP"; |
||
11 | MENU_SHOW_MP = "Montrer MP"; |
||
12 | MENU_SHOW_PERCENT = "Montrer %"; |
||
13 | MENU_SHOW_CURRENT = "Montrer %"; |
||
14 | |||
15 | MENU_HIDE_LABEL = "Cacher le texte"; |
||
16 | |||
17 | TOOLTIP1_LEFT = "Vie:"; |
||
18 | TOOLTIP2_LEFT = "Mana:"; |
||
19 | TOOLTIP3_LEFT = "Meilleur regen HP:"; |
||
20 | TOOLTIP4_LEFT = "Moins bon regen HP:"; |
||
21 | TOOLTIP5_LEFT = "Meilleur regen Mana:"; |
||
22 | TOOLTIP6_LEFT = "Moins bon regen Mana:"; |
||
23 | TOOLTIP7_LEFT = "Mana R\195\169cup\195\169r\195\169e durant le dernier combat:"; |
||
24 | TOOLTIP8_LEFT = "HP R\195\169cup\195\169r\195\169s durant le dernier combat:"; |
||
25 | } end ) |
||
26 |