vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | local L = AceLibrary("AceLocale-2.2"):new("RegenFu") |
2 | |||
3 | L:RegisterTranslations("frFR", function() return { |
||
4 | NAME = "FuBar - RegenFu", |
||
5 | DESCRIPTION = "Affiche les taux de régenèration de vie et mana", |
||
6 | |||
7 | HP_LABEL = "HP: "; |
||
8 | MP_LABEL = "MP: "; |
||
9 | FSR_LABEL = "R5S: ", |
||
10 | |||
11 | MENU_SHOW_HP = "Afficher la vie"; |
||
12 | MENU_SHOW_MP = "Afficher la mana"; |
||
13 | |||
14 | ["Show FSRT"] = "Afficher le temps sous la règle des 5 secondes (R5S)", |
||
15 | |||
16 | MENU_SHOW_PERCENT = "Afficher en pourcentage"; |
||
17 | MENU_SHOW_CURRENT = "Afficher la valeur courante"; |
||
18 | |||
19 | ["Show In Combat Regen Total"] = "Montrez la régenèration totale en combat", |
||
20 | |||
21 | |||
22 | MENU_HIDE_LABEL = "Cacher le menu"; |
||
23 | |||
24 | TOOLTIP1_LEFT = "Vie:"; |
||
25 | TOOLTIP2_LEFT = "Mana:"; |
||
26 | TOOLTIP3_LEFT = "Meilleure régenèration de vie:"; |
||
27 | TOOLTIP4_LEFT = "Pire régenèration de vie:"; |
||
28 | TOOLTIP5_LEFT = "Meilleure régenèration de mana:"; |
||
29 | TOOLTIP6_LEFT = "Pire régenèration de mana:"; |
||
30 | TOOLTIP7_LEFT = "Régenèration de mana pendant le dernier combat:"; |
||
31 | TOOLTIP8_LEFT = "Régenèration de vie pendant le dernier combat:"; |
||
32 | |||
33 | ["AceConsole-commands"] = { "/regenfu" }, |
||
34 | |||
35 | ["Percent Regen While Casting"] = "Pourcentage de régenèration pendant l'incantation", |
||
36 | ["Mana Regen Forumula (Spirit/<value>)"] = "Mana régenèré par point d'Esprit", |
||
37 | ["Mana Per Int"] = "Mana régenèré par point d'Intelligence", |
||
38 | |||
39 | |||
40 | ["Reset FSR Data"] = "Remise à zéro des données R5S", |
||
41 | ["Time Spent In Regen"] = "Temps pass\195\169 en r\195\169g\195\169n\195\169ration", |
||
42 | ["(This Fight)"] = "(Ce combat)", |
||
43 | ["(Last Fight)"] = "(Combat pr\195\169c\195\169dent)", |
||
44 | |||
45 | ["Total Regen Time Observed"] = "Durée de régeneration observée", |
||
46 | ["% Of That Time In FSR"] = "% de ce temps sous la R5S", |
||
47 | ["Spirit Needed To Equal 1mp5"] = "Esprit requis pour égaler 1 mana/5s", |
||
48 | ["Int Needed To Equal 1mp5"] = "Intelligence requise pour égaler 1 mana/5s", |
||
49 | } end ) |