vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 Decursive (v 1.9.7) add-on for World of Warcraft UI
3 Copyright (C) 2005 Archarodim ( http://www.2072productions.com/?to=decursive-continued.txt )
4 This is the continued work of the original Decursive (v1.9.4) by Quu
5 Decursive 1.9.4 is in public domain ( www.quutar.com )
6  
7 License:
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12  
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17  
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 --]]
22  
23 -------------------------------------------------------------------------------
24 -- French localization {{{
25 -------------------------------------------------------------------------------
26 if ( GetLocale() == "frFR" ) then
27 --start added in Rc4
28 DCR_ALLIANCE_NAME = 'Alliance';
29  
30 DCR_LOC_CLASS_DRUID = 'Druide';
31 DCR_LOC_CLASS_HUNTER = 'Chasseur';
32 DCR_LOC_CLASS_MAGE = 'Mage';
33 DCR_LOC_CLASS_PALADIN = 'Paladin';
34 DCR_LOC_CLASS_PRIEST = 'Prêtre';
35 DCR_LOC_CLASS_ROGUE = 'Voleur';
36 DCR_LOC_CLASS_SHAMAN = 'Shaman';
37 DCR_LOC_CLASS_WARLOCK = 'Démoniste';
38 DCR_LOC_CLASS_WARRIOR = 'Guerrier';
39  
40 DCR_STR_OTHER = 'Autre';
41 DCR_STR_ANCHOR = 'Ancre';
42 DCR_STR_OPTIONS = 'Options de Decursive';
43 DCR_STR_CLOSE = 'Fermer';
44 DCR_STR_ASSISTANT = 'Assistant';
45 DCR_STR_DCR_PRIO = 'Priorités de Decursive';
46 DCR_STR_DCR_SKIP = 'Exlusions de Decursive';
47 DCR_STR_QUICK_POP = 'Remplir rapidememt';
48 DCR_STR_POP = 'Remplir la liste';
49 DCR_STR_GROUP = 'Groupe ';
50  
51  
52 DCR_STR_NOMANA = 'Pas assez de mana!';
53 DCR_STR_UNUSABLE = 'Impossible de guérir maintenant !';
54 DCR_STR_NEED_CURE_ACTION_IN_BARS = "Decursive n'a put trouver aucun sort de guérison dans vos barres d'actions. Il en a besoin pour tester le mana...";
55  
56 DCR_UP = 'H.';
57 DCR_DOWN = 'BAS';
58  
59 DCR_PRIORITY_SHOW = 'P';
60 DCR_POPULATE = 'R';
61 DCR_SKIP_SHOW = 'S';
62 DCR_ANCHOR_SHOW = 'A';
63 DCR_OPTION_SHOW = 'O';
64 DCR_CLEAR_PRIO = 'E';
65 DCR_CLEAR_SKIP = 'E';
66  
67  
68 --end added in Rc4
69 DCR_DISEASE = 'Maladie';
70 DCR_MAGIC = 'Magie';
71 DCR_POISON = 'Poison';
72 DCR_CURSE = 'Malédiction';
73 DCR_CHARMED = 'Contrôle mentale';
74  
75 DCR_PET_FELHUNTER = "Chasseur corrompu";
76 DCR_PET_DOOMGUARD = "Garde funeste";
77 DCR_PET_FEL_CAST = "Dévorer la magie";
78 DCR_PET_DOOM_CAST = "Dissipation de la magie";
79  
80 DCR_SPELL_CURE_DISEASE = 'Guérison des maladies';
81 DCR_SPELL_ABOLISH_DISEASE = 'Abolir maladie';
82 DCR_SPELL_PURIFY = 'Purification';
83 DCR_SPELL_CLEANSE = 'Epuration';
84 DCR_SPELL_DISPELL_MAGIC = 'Dissipation de la magie';
85 DCR_SPELL_CURE_POISON = 'Guérison du poison';
86 DCR_SPELL_ABOLISH_POISON = 'Abolir le poison';
87 DCR_SPELL_REMOVE_LESSER_CURSE = 'Délivrance de la malédiction mineure';
88 DCR_SPELL_REMOVE_CURSE = 'Délivrance de la malédiction';
89 DCR_SPELL_PURGE = 'Expiation';
90 DCR_SPELL_RANK_1 = 'Rang 1';
91 DCR_SPELL_RANK_2 = 'Rang 2';
92  
93 BINDING_NAME_DCRCLEAN = "Guérison (DoT, Poisons et Malédictions)";
94 BINDING_NAME_DCRSHOW = "Afficher\\Cacher la Liste";
95  
96 BINDING_NAME_DCRPRADD = "Ajouter la Cible à la Liste des Priorités";
97 BINDING_NAME_DCRPRCLEAR = "Effacer la Liste des Priorités";
98 BINDING_NAME_DCRPRLIST = "Afficher la Liste des Priorités";
99 BINDING_NAME_DCRPRSHOW = "Fermer la Liste des Priorités";
100  
101 BINDING_NAME_DCRSKADD = "Ajouter la Cible à la Liste des Exceptions";
102 BINDING_NAME_DCRSKCLEAR = "Effacer la Liste des Exceptions";
103 BINDING_NAME_DCRSKLIST = "Afficher la Liste des Exceptions";
104 BINDING_NAME_DCRSKSHOW = "Fermer la Liste des Exceptions";
105  
106 DCR_PRIORITY_LIST = "Liste des Priorités";
107 DCR_SKIP_LIST_STR = "Liste des Exceptions";
108 DCR_SKIP_OPT_STR = "Options de Decursive";
109 DCR_POPULATE_LIST = "Liste des Groupes";
110 DCR_RREMOVE_ID = "Effacer ce Personnage";
111 DCR_HIDE_MAIN = "Fermer Decursive";
112 DCR_RESHOW_MSG = "Pour afficher la Liste de Decursive, tapez /dcrshow.";
113 DCR_SHOW_MSG = "Pour afficher la fenêtre de Decursive, tapez /dcrshow.";
114 DCR_IS_HERE_MSG = "Decursive est initialisé, rappelez-vous de vérifier les options disponibles";
115  
116 DCR_PRINT_CHATFRAME = "Afficher dans le Canal par Défaut";
117 DCR_PRINT_CUSTOM = "Afficher dans la Fenêtre";
118 DCR_PRINT_ERRORS = "Afficher les Messages d'Erreurs";
119 DCR_AMOUNT_AFFLIC = "Nombre de Personnages à Afficher : ";
120 DCR_BLACK_LENGTH = "Délais (Secs) sur la Blacklist : ";
121 DCR_SCAN_LENGTH = "Délais (Secs) entre les Scans : ";
122 DCR_ABOLISH_CHECK = "Voir si \"Abolir\" sur la cible avant de Guérir"; -- XXX
123 DCR_BEST_SPELL = "Utiliser le Sort de Plus Haut Rang";
124 DCR_RANDOM_ORDER = "Guérir Aléatoirement";
125 DCR_CURE_PETS = "Vérifier et Guérir les Pets";
126 DCR_IGNORE_STEALTH = "Ignorer les Unités camouflées";
127 DCR_PLAY_SOUND = "Jouer un son si vous devez guérir quelqu'un";
128 DCR_ANCHOR = "Ancre du Texte";
129 DCR_CHECK_RANGE = "Tester si la cible est à portée";
130 DCR_DONOT_BL_PRIO = "Ne pas blaclister les gens prioritaires";
131  
132 -- $s is spell name
133 -- $a is affliction name/type
134 -- $t is target name
135 DCR_DISPELL_ENEMY = "Lance '$s' sur $t";
136 DCR_NOT_CLEANED = "Rien à nettoyer !";
137 -- DCR_CLEAN_STRING = "Lance $s sur $t (dissipation de $a)";
138 DCR_CLEAN_STRING = "Dissipation de \"$a\" sur $t";
139 DCR_SPELL_FOUND = "$t trouvé.";
140 DCR_NO_SPELLS = "Aucun sort trouvé...";
141 DCR_NO_SPELLS_RDY = "Aucun sort prêt à utiliser !";
142 DCR_OUT_OF_RANGE = "$t est hors de portée et Devrait être soigné contre $a !";
143 DCR_IGNORE_STRING = "$a trouvé sur $t - $t ignoré.";
144  
145 DCR_INVISIBLE_LIST = {
146 ["Rôder"] = true,
147 ["Camouflage"] = true,
148 ["Camouflage dans l’ombre"] = true,
149 }
150  
151 DCR_IGNORELIST = {
152 ["Bannir"] = true,
153 ["Changement de phase"] = true,
154 };
155  
156 DCR_SKIP_LIST = {
157 ["Sommeil sans rêve"] = true,
158 ["Sommeil sans rêve supérieur"] = true,
159 ["Vision Télépathique"] = true,
160 };
161  
162 DCR_SKIP_BY_CLASS_LIST = {
163 [DCR_CLASS_WARRIOR] = {
164 ["Hystérie ancienne"] = true,
165 ["Enflammer le mana"] = true,
166 ["Esprit corrompu"] = true,
167 };
168 [DCR_CLASS_ROGUE] = {
169 ["Silence"] = true;
170 ["Hystérie ancienne"] = true,
171 ["Enflammer le mana"] = true,
172 ["Esprit corrompu"] = true,
173 };
174 [DCR_CLASS_HUNTER] = {
175 ["Entraves de magma"] = true,
176 };
177 [DCR_CLASS_MAGE] = {
178 ["Entraves de magma"] = true,
179 };
180 };
181  
182 -- for cut and paste ease
183 -- DCR_CLASS_DRUID
184 -- DCR_CLASS_HUNTER
185 -- DCR_CLASS_MAGE
186 -- DCR_CLASS_PALADIN
187 -- DCR_CLASS_PRIEST
188 -- DCR_CLASS_ROGUE
189 -- DCR_CLASS_SHAMAN
190 -- DCR_CLASS_WARLOCK
191 -- DCR_CLASS_WARRIOR
192 -- }}}
193 end