vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | function ReagentData_LoadFrench() |
2 | ------------------------------- |
||
3 | -- Reagent Data: Data Tables -- |
||
4 | ------------------------------- |
||
5 | |||
6 | ----------------- |
||
7 | -- Basic Items -- |
||
8 | ----------------- |
||
9 | |||
10 | -- Reagent Data: Alchemy Fish |
||
11 | ReagentData["alchemyfish"] = { |
||
12 | ["oilyblackmouth"] = "Bouche-noire huileux", |
||
13 | ["firefinsnapper"] = "Lutjan de nagefeu", |
||
14 | ["stonescaleeel"] = "Anguille pierre-\195\169caille", |
||
15 | }; |
||
16 | |||
17 | -- Reagent Data: Bandages |
||
18 | ReagentData["bandage"] = { |
||
19 | ["linen"] = "Bandage en lin", |
||
20 | ["heavylinen"] = "Bandage \195\169pais en lin", |
||
21 | ["wool"] = "Bandage en laine", |
||
22 | ["heavywool"] = "Bandage \195\169pais en laine", |
||
23 | ["silk"] = "Bandage en soie", |
||
24 | ["heavysilk"] = "Bandage \195\169pais en soie", |
||
25 | ["mageweave"] = "Bandage en tissu de mage", |
||
26 | ["heavymageweave"] = "Bandage \195\169pais en tissu de mage", |
||
27 | ["runecloth"] = "Bandage en \195\169toffe runique", |
||
28 | ["heavyrunecloth"] = "Bandage \195\169 en \195\169toffe runique", |
||
29 | ["antivenom"] = "Anti-venin", |
||
30 | ["strongantivenom"] = "S\195\169rum anti-venin sup\195\169rieur", |
||
31 | ["powerfulantivenom"] = "Anti-venin puissant", |
||
32 | }; |
||
33 | |||
34 | -- Reagent Data: Bar |
||
35 | ReagentData["bar"] = { |
||
36 | ["copper"] = "Barre de cuivre", |
||
37 | ["tin"] = "Barre d\'\195\169tain", |
||
38 | ["bronze"] = "Barre de bronze", |
||
39 | ["silver"] = "Barre d\'argent", |
||
40 | ["iron"] = "Barre de fer", |
||
41 | ["steel"] = "Barre d\'acier", |
||
42 | ["gold"] = "Barre d\'or", |
||
43 | ["mithril"] = "Barre de Mithril", |
||
44 | ["truesilver"] = "Barre de vrai-argent", |
||
45 | ["thorium"] = "Barre de thorium", |
||
46 | ["arcanite"] = "Barre d\'arcanite", |
||
47 | ["darkiron"] = "Barre Dark Iron", |
||
48 | ["enchantedthorium"] = "Barre de thorium enchant\195\169", |
||
49 | }; |
||
50 | |||
51 | -- Reagent Data: Cloth |
||
52 | ReagentData["cloth"] = { |
||
53 | ["linen"] = "Tissu en lin", |
||
54 | ["wool"] = "Tissu en laine", |
||
55 | ["silk"] = "Etoffe de soie", |
||
56 | ["mageweave"] = "Tissu de mage", |
||
57 | ["rune"] = "Etoffe runique", |
||
58 | ["fel"] = "Gangr\195\169toffe", |
||
59 | ["moon"] = "Etoffe lunaire", |
||
60 | }; |
||
61 | |||
62 | -- Reagent Data: Cooking Fish |
||
63 | ReagentData["cookingfish"] = { |
||
64 | ["rawslitherskinmackerel"] = "Maquereau ombr\195\169 cru", |
||
65 | ["rawbrilliantsmall"] = "Goujon brillant cru", |
||
66 | ["rawlochfrenzy"] = "Furie de Loch crue", |
||
67 | ["rawlongjawmudsnapper"] = "Lutjan \195\160 longue m\195\162choire cru", |
||
68 | ["rawrainbowfinalbacore"] = "Thon arc-en-ciel cru", |
||
69 | ["deviate"] = "Poisson d\195\169viant", |
||
70 | ["rawbristlewhiskercat"] = "Poisson-chat h\195\169riss\195\169 cru", |
||
71 | ["rawrockscalecod"] = "Morue roch\195\169caille crue", |
||
72 | ["rawmithrilheadtrout"] = "Truite t\195\170te-mithril crue", |
||
73 | ["rawredgill"] = "Rouget cru", |
||
74 | ["rawspottedyellowtail"] = "Jaune-queue tachet\195\169 cru", |
||
75 | ["largerawmightfish"] = "Grand Barracuda cru", |
||
76 | ["rawsummerbass"] = "Perche estivale crue", |
||
77 | ["wintersquid"] = "Pieuvre blanche", |
||
78 | ["rawsunscalesalmon"] = "Saumon Sol\195\169caille cru", |
||
79 | ["rawnightfinsnapper"] = "Lutjan noir cru", |
||
80 | ["rawwhitescalesalmon"] = "Saumon Blanch\195\169caille cru", |
||
81 | ["darkclawlobster"] = "Homard Pince-noire", |
||
82 | ["rawglossymightfish"] = "Barracuda luisant cru", |
||
83 | }; |
||
84 | |||
85 | -- Reagent Data: Elements |
||
86 | ReagentData["element"] = { |
||
87 | ["earth"] = "Terre \195\169l\195\169mentaire", |
||
88 | ["fire"] = "Feu \195\169l\195\169mentaire", |
||
89 | ["water"] = "Eau \195\169l\195\169mentaire", |
||
90 | ["air"] = "Air \195\169l\195\169mentaire", |
||
91 | ["ichorofundeath"] = "Ichor de non-mort", |
||
92 | ["heartofthewild"] = "Coeur du fauve", |
||
93 | ["coreofearth"] = "Noyau de terre", |
||
94 | ["heartoffire"] = "Coeur de feu", |
||
95 | ["globeofwater"] = "Globe d\'eau", |
||
96 | ["breathofwind"] = "Souffle de vent", |
||
97 | ["essenceofearth"] = "Essence de terre", |
||
98 | ["essenceofwater"] = "Essence d\'eau", |
||
99 | ["essenceofair"] = "Essence d\'air", |
||
100 | ["essenceoffire"] = "Essence de feu", |
||
101 | ["essenceofundeath"] = "Essence de non-mort", |
||
102 | ["livingessence"] = "Essence de vie", |
||
103 | }; |
||
104 | |||
105 | -- Reagent Data: Gems |
||
106 | ReagentData["gem"] = { |
||
107 | ["malachite"] = "Malachite", |
||
108 | ["tigerseye"] = "Oeil de tigre", |
||
109 | ["shadow"] = "Oeil t\195\169n\195\169breux", |
||
110 | ["lessermoonstone"] = "Pierre lunaire inf\195\169rieure", |
||
111 | ["mossagate"] = "Agate", |
||
112 | ["jade"] = "Jade", |
||
113 | ["citrine"] = "Citrine", |
||
114 | ["aquamarine"] = "Aigue-marine", |
||
115 | ["starruby"] = "Rubis stellaire", |
||
116 | ["blackvitriol"] = "Vitriol noir", |
||
117 | ["largeopal"] = "Grande opale", |
||
118 | ["hugeemerald"] = "Enorme \195\169meraude", |
||
119 | ["bluesapphire"] = "Saphir bleu", |
||
120 | ["azerothiandiamond"] = "Diamant d\'Azeroth", |
||
121 | ["arcanecrystal"] = "Cristal des arcanes", |
||
122 | ["bloodofthemountain"] = "Sang de la montagne", |
||
123 | ["blackdiamond"] = "Diamant noir", |
||
124 | ["souldarite"] = "\195\130marite", |
||
125 | ["pristineblackdiamond"] = "Diamant noir parfait", |
||
126 | }; |
||
127 | |||
128 | -- Reagent Data: Herbs |
||
129 | ReagentData["herb"] = { |
||
130 | ["peacebloom"] = "Pacifique", |
||
131 | ["silverleaf"] = "Feuillargent", |
||
132 | ["earthroot"] = "Terrestrine", |
||
133 | ["mageroyal"] = "Mage royal", |
||
134 | ["briarthorn"] = "Eglantine", |
||
135 | ["swifthistle"] = "Chardonnier", |
||
136 | ["stranglekelp"] = "Etouffante", |
||
137 | ["bruiseweed"] = "Doulourante", |
||
138 | ["wildsteelbloom"] = "Aci\195\169rite sauvage", |
||
139 | ["gravemoss"] = "Tombeline", |
||
140 | ["kingsblood"] = "Sang-royal", |
||
141 | ["liferoot"] = "Viet\195\169rule", |
||
142 | ["fadeleaf"] = "P\195\162lerette", |
||
143 | ["goldthorn"] = "Dor\195\169pine", |
||
144 | ["khadgarswhisker"] = "Moustache de Khadgar", |
||
145 | ["wintersbite"] = "Hivernale", |
||
146 | ["firebloom"] = "Fleur de feu", |
||
147 | ["purplelotus"] = "Lotus pourpre", |
||
148 | ["sungrass"] = "Soleillette", |
||
149 | ["blindweed"] = "Aveuglette", |
||
150 | ["morrowgrain"] = "Morrowgrain", -- FIX ME |
||
151 | ["ghostmushroom"] = "Champignon fant\195\180me", |
||
152 | ["gromsblood"] = "Gromsang", |
||
153 | ["wildvine"] = "Sauvageonne", |
||
154 | ["icecap"] = "Calot de glace", |
||
155 | ["arthastears"] = "Larmes d\'Arthas", |
||
156 | ["dreamfoil"] = "Feuiller\195\170ve", |
||
157 | ["goldensansam"] = "Sansam dor\195\169", |
||
158 | ["mountainsilversage"] = "Sauge-argent des montagnes", |
||
159 | ["plaguebloom"] = "Fleur de peste", |
||
160 | ["blacklotus"] = "Lotus noir", |
||
161 | ["bloodvine"] = "Vignesang", |
||
162 | }; |
||
163 | |||
164 | -- Reagent Data: Hide |
||
165 | ReagentData["hide"] = { |
||
166 | ["light"] = "Peau l\195\169g\195\168re", |
||
167 | ["medium"] = "Peau moyenne", |
||
168 | ["heavy"] = "Peau lourde", |
||
169 | ["thick"] = "Peau \195\169paisse", |
||
170 | ["rugged"] = "Peau robuste", |
||
171 | ["raptor"] = "Peau de Raptor", |
||
172 | ["thickwolf"] = "Peau de Loup \195\169paisse", |
||
173 | ["shadowcat"] = "Peau de f\195\169lin des ombres", |
||
174 | ["curedlight"] = "Peau l\195\169g\195\168re trait\195\169e", |
||
175 | ["curedmedium"] = "Peau moyenne trait\195\169e", |
||
176 | ["curedheavy"] = "Peau lourde trait\195\169e", |
||
177 | ["curedthick"] = "Peau \195\169paisse trait\195\169e", |
||
178 | ["curedrugged"] = "Peau robuste trait\195\169e", |
||
179 | }; |
||
180 | |||
181 | -- Reagent Data: Leather |
||
182 | ReagentData["leather"] = { |
||
183 | ["ruinedscraps"] = "Lani\195\168res de cuir d\195\169chir\195\169es", |
||
184 | ["light"] = "Cuir l\195\169ger", |
||
185 | ["medium"] = "Cuir moyen", |
||
186 | ["heavy"] = "Cuir lourd", |
||
187 | ["thick"] = "Cuir \195\169pais", |
||
188 | ["rugged"] = "Cuir robuste", |
||
189 | ["enchanted"] = "Cuir enchant\195\169", |
||
190 | ["devilsaur"] = "Cuir de Diablosaure", |
||
191 | ["thinkodo"] = "Cuir de Kodo fin", |
||
192 | ["chimera"] = "Cuir de Chim\195\168re", |
||
193 | ["frostsaber"] = "Cuir de Dents de sabre blanc", |
||
194 | ["warbear"] = "Cuir de grand ours", |
||
195 | ["core"] = "Cuir du Magma", |
||
196 | ["primalbat"] = "Cuir de chauve-souris primordiale", |
||
197 | ["primaltiger"] = "Cuir de tigre primordial", |
||
198 | }; |
||
199 | |||
200 | -- Reagent Data: Ore |
||
201 | ReagentData["ore"] = { |
||
202 | ["copper"] = "Minerai de cuivre", |
||
203 | ["tin"] = "Minerai d\'\195\169tain", |
||
204 | ["silver"] = "Minerai d\'argent", |
||
205 | ["iron"] = "Minerai de fer", |
||
206 | ["gold"] = "Minerai d\'or", |
||
207 | ["mithril"] = "Minerai de Mithril", |
||
208 | ["truesilver"] = "Minerai de vrai-argent", |
||
209 | ["thorium"] = "Minerai de thorium", |
||
210 | ["darkiron"] = "Minerai Dark Iron", |
||
211 | ["elementium"] = "Minerai d\'\195\169l\195\169mentium", |
||
212 | ["smallobsidianshard"] = "Small Obsidian Shard", -- FIX ME |
||
213 | ["largeobsidianshard"] = "Large Obsidian Shard", -- FIX ME |
||
214 | }; |
||
215 | |||
216 | -- Reagent Data: Pearl |
||
217 | ReagentData["pearl"] = { |
||
218 | ["smalllustrous"] = "Petite perle satin\195\169e", |
||
219 | ["iridescent"] = "Perle iridescente", |
||
220 | ["blue"] = "Perle bleue", |
||
221 | ["black"] = "Perle noire", |
||
222 | ["golden"] = "Perle dor\195\169e", |
||
223 | }; |
||
224 | |||
225 | -- Reagent Data: Poisons |
||
226 | ReagentData["poison"] = { |
||
227 | ["instant"] = "Poison instantan\195\169", |
||
228 | ["instantii"] = "Poison instantan\195\169 II", |
||
229 | ["instantiii"] = "Poison instantan\195\169 III", |
||
230 | ["instantiv"] = "Poison instantan\195\169 IV", |
||
231 | ["instantv"] = "Poison instantan\195\169 V", |
||
232 | ["instantvi"] = "Poison instantan\195\169 VI", |
||
233 | ["crippling"] = "Poison affaiblissant", |
||
234 | ["cripplingii"] = "Poison affaiblissant II", |
||
235 | ["mindnumbing"] = "Poison de distraction mentale", |
||
236 | ["mindnumbingii"] = "Poison de distraction mentale II", |
||
237 | ["mindnumbingiii"] = "Poison de distraction mentale III", |
||
238 | ["deadly"] = "Poison mortel", |
||
239 | ["deadlyii"] = "Poison mortel II", |
||
240 | ["deadlyiii"] = "Poison mortel III", |
||
241 | ["deadlyiv"] = "Poison mortel IV", |
||
242 | ["deadlyv"] = "Poison mortel V", |
||
243 | ["wound"] = "Poison douloureux", |
||
244 | ["woundii"] = "Poison douloureux II", |
||
245 | ["woundiii"] = "Poison douloureux III", |
||
246 | ["woundiv"] = "Poison douloureux IV", |
||
247 | }; |
||
248 | |||
249 | -- Reagent Data: Potions |
||
250 | ReagentData["potion"] = { |
||
251 | ["minorhealing"] = "Potion de soins mineure", |
||
252 | ["elixirofdetectdemon"] = "Elixir de D\195\169tection des D\195\169mons", |
||
253 | ["swiftness"] = "Potion de Rapidit\195\169", |
||
254 | ["elixirofbruteforce"] = "Elixir de Force de Brute", |
||
255 | ["freeaction"] = "Potion de libre action", |
||
256 | ["majormana"] = "Potion de mana majeure", |
||
257 | ["elixirofgiantgrowth"] = "Elixir de Taille de g\195\169ant", |
||
258 | ["dreamlesssleep"] = "Potion de sommeil sans r\195\170ve", |
||
259 | ["greaterarcaneelixir"] = "Elixir des arcanes sup\195\169rieur", |
||
260 | ["flaskofdistilledwisdom"] = "Flacon de sagesse distill\195\169e", |
||
261 | ["mightytrollsblood"] = "Potion de Sang de Troll Hargneux", |
||
262 | ["elixirofgreaterintellect"] = "Elixir d\'Intelligence sup\195\169rieure", |
||
263 | ["elixirofdefense"] = "Elixir de D\195\169fense", |
||
264 | ["flaskofsupremepower"] = "Flacon de pouvoir supr\195\170me", |
||
265 | ["arcaneelixir"] = "Elixir des arcanes", |
||
266 | ["flaskofpetrification"] = "Flacon de p\195\169trification", |
||
267 | ["flaskofchromaticresistance"] = "Flacon de r\195\169sistance chromatique", |
||
268 | ["shadowprotection"] = "Potion de protection contre l\'ombre", |
||
269 | ["greatershadowprotection"] = "Potion de Protection contre l\'ombre sup\195\169rieure", |
||
270 | ["swimspeed"] = "Potion de Nage rapide", |
||
271 | ["flaskofthetitans"] = "Flacon des Titans", |
||
272 | ["elixirofagility"] = "Elixir d\'Agilit\195\169", |
||
273 | ["elixirofminordefense"] = "Elixir de d\195\169fense mineure", |
||
274 | ["natureprotection"] = "Potion de protection contre la nature", |
||
275 | ["elixirofgreateragility"] = "Elixir d\'Agilit\195\169 sup\195\169rieure", |
||
276 | ["elixirofdreamvision"] = "Elixir de Vision de r\195\170ve", |
||
277 | ["elixirofminoragility"] = "Elixir d\'Agilit\195\169 mineure", |
||
278 | ["catseyeelixir"] = "Elixir d\'oeil de Chat", |
||
279 | ["weaktrollsblood"] = "Potion de sang de Troll faible", |
||
280 | ["elixirofgreaterdefense"] = "Elixir de d\195\169fense sup\195\169rieure", |
||
281 | ["greaterstoneshield"] = "Potion de Bouclier de pierre sup\195\169rieure", |
||
282 | ["minormana"] = "Potion de mana mineure", |
||
283 | ["giftofarthas"] = "Cadeau d\'Arthas", |
||
284 | ["elixirofshadowpower"] = "Elixir de Puissance de l\'ombre", |
||
285 | ["mightyrage"] = "Potion de rage puissante", |
||
286 | ["minorrejuvenation"] = "Potion de r\195\169g\195\169n\195\169ration mineure", |
||
287 | ["elixiroflionsstrength"] = "Elixir de force du Lion", |
||
288 | ["healing"] = "Potion de soins", |
||
289 | ["greatermana"] = "Potion de mana sup\195\169rieure", |
||
290 | ["lesserinvisibility"] = "Potion d\'invisibilit\195\169 inf\195\169rieure", |
||
291 | ["elixirofdetectlesserinvisibility"] = "Elixir de D\195\169tection d\'invisibilit\195\169 inf\195\169rieure", |
||
292 | ["fireprotection"] = "Potion de protection contre le feu", |
||
293 | ["discoloredhealing"] = "Potion de soins d\195\169color\195\169e", |
||
294 | ["majorhealing"] = "Potion de soins majeure", |
||
295 | ["lesserstoneshield"] = "Potion de Bouclier de pierre inf\195\169rieure", |
||
296 | ["elixirofdetectundead"] = "Elixir de D\195\169tection des Mort-vivants", |
||
297 | ["elixirofthemongoose"] = "Elixir de la Mangouste", |
||
298 | ["holyprotection"] = "Potion de protection contre le sacr\195\169", |
||
299 | ["lessermana"] = "Potion de mana inf\195\169rieure", |
||
300 | ["elixiroffortitude"] = "Elixir de Robustesse", |
||
301 | ["elixirofminorfortitude"] = "Elixir de Robustesse mineure", |
||
302 | ["elixirofdemonslaying"] = "Elixir de Tueur de D\195\169mons", |
||
303 | ["mana"] = "Potion de mana", |
||
304 | ["frostprotection"] = "Potion de protection contre le givre", |
||
305 | ["elixirofgiants"] = "Elixir des G\195\169ants", |
||
306 | ["elixiroffrostpower"] = "Elixir de Puissance du givre", |
||
307 | ["elixirofpoisonresistance"] = "Elixir de r\195\169sistance au poison", |
||
308 | ["strongtrollsblood"] = "Potion de sang de Troll forte", |
||
309 | ["lesserhealing"] = "Potion de soins inf\195\169rieure", |
||
310 | ["greaterhealing"] = "Potion de soins sup\195\169rieure", |
||
311 | ["magicresistance"] = "Potion de r\195\169sistance \195\160 la magie", |
||
312 | ["restorativeelixir"] = "Potion de restauration", |
||
313 | ["elixirofwisdom"] = "Elixir de Sagesse", |
||
314 | ["rage"] = "Potion de Rage", |
||
315 | ["greatrage"] = "Potion de Grande rage", |
||
316 | ["elixirofogresstrength"] = "Elixir de Force d\'Ogre", |
||
317 | ["superiorhealing"] = "Potion de soins excellente", |
||
318 | ["minormagicresistance"] = "Potion de r\195\169sistance \195\160 la magie mineure", |
||
319 | ["elixirofthesages"] = "Elixir des Sages", |
||
320 | ["elixiroffirepower"] = "Elixir de Ma\195\174trise du feu", |
||
321 | ["greaterfireprotection"] = "Potion de Protection contre le feu sup\195\169rieure", |
||
322 | ["elixiroflesseragility"] = "Elixir d\'Agilit\195\169 inf\195\169rieur", |
||
323 | ["purificationpotion"] = "Potion de purification", |
||
324 | ["superiormana"] = "Potion de mana excellente", |
||
325 | ["wildvine"] = "Potion de Sauvageonne", |
||
326 | ["elixirofwaterbreathing"] = "Elixir de Respiration aquatique", |
||
327 | ["limitedinvulnerability"] = "Potion d\'invuln\195\169rabilit\195\169 limit\195\169e", |
||
328 | ["elixirofsuperiordefense"] = "Potion de protection contre le givre", |
||
329 | ["invisibility"] = "Potion d\'invisibilit\195\169", |
||
330 | ["majortrollsblood"] = "Potion de sang de Troll majeure", |
||
331 | ["livingaction"] = "Potion de vive action", |
||
332 | ["greaterdreamlesssleep"] = "Potion de sommeil sans r\195\170ve sup\195\169rieure", |
||
333 | ["mageblood"] = "Potion Magesang", |
||
334 | }; |
||
335 | |||
336 | -- Reagent Data: Spell Reagents |
||
337 | ReagentData["reagent"] = { |
||
338 | ["ironwoodseed"] = "Graine de bois de fer", |
||
339 | ["soulshard"] = "Fragment d\'\195\162me", |
||
340 | ["ankh"] = "Croix", |
||
341 | ["hornbeamseed"] = "Graine de charme", |
||
342 | ["demonicfigurine"] = "Figurine d\195\169moniaque", |
||
343 | ["mapleseed"] = "Graine d\'\195\169rable", |
||
344 | ["infernalstone"] = "Pierre infernale", |
||
345 | ["runeofteleportation"] = "Rune de t\195\169l\195\169portation", |
||
346 | ["wildthornroot"] = "Epinette sauvage", |
||
347 | ["runeofportals"] = "Rune des portails", |
||
348 | ["ashwoodseed"] = "Graine de fr\195\170ne", |
||
349 | ["wildberries"] = "Baies sauvages", |
||
350 | ["lightfeather"] = "Plume l\195\169g\195\168re", |
||
351 | ["fishoil"] = "Huile de poisson", |
||
352 | ["flashpowder"] = "Poudre \195\169clipsante", |
||
353 | ["holycandle"] = "Bougie sanctifi\195\169e", |
||
354 | ["sacredcandle"] = "Bougie sacr\195\169e", |
||
355 | ["stranglethornseed"] = "Graine de strangleronce", |
||
356 | ["symbolofdivinity"] = "Symbole de divinit\195\169", |
||
357 | ["blindingpowder"] = "Poudre aveuglante", |
||
358 | ["shinyfishscales"] = "Ecailles de poisson brillantes", |
||
359 | ["arcanepowder"] = "Arcane Powder", --FIX ME |
||
360 | ["symbolofkings"] = "Symbol of Kings", --FIX ME |
||
361 | }; |
||
362 | |||
363 | -- Reagent Data: Scales |
||
364 | ReagentData["scale"] = { |
||
365 | ["bluedragon"] = "Ecaille de Dragon bleu", |
||
366 | ["redwhelp"] = "Ecaille de Dragonnet rouge", |
||
367 | ["perfectdeviate"] = "Ecaille de d\195\169viant parfaite", |
||
368 | ["reddragon"] = "Ecaille de Dragon rouge", |
||
369 | ["greenwhelp"] = "Ecaille de Dragonnet vert", |
||
370 | ["turtle"] = "Ecaille de Tortue", |
||
371 | ["greendragon"] = "Ecaille de Dragon vert", |
||
372 | ["blackdragon"] = "Ecaille de Dragon noir", |
||
373 | ["blackwhelp"] = "Ecaille de Dragonnet noir", |
||
374 | ["worndragon"] = "Ecaille de Dragon us\195\169e", |
||
375 | ["deviate"] = "Ecaille de d\195\169viant", |
||
376 | ["scorpid"] = "Ecaille de Scorpide", |
||
377 | ["heavyscorpid"] = "Ecaille de Scorpide \195\169paisse", |
||
378 | ["dream"] = "R\195\170v\195\169caille", |
||
379 | }; |
||
380 | |||
381 | -- Reagent Data: Stone |
||
382 | ReagentData["stone"] = { |
||
383 | ["solid"] = "Pierre solide", |
||
384 | ["dense"] = "Pierre dense", |
||
385 | ["rough"] = "Pierre brute", |
||
386 | ["coarse"] = "Pierre grossi\195\168re", |
||
387 | ["heavy"] = "Pierre lourde", |
||
388 | }; |
||
389 | |||
390 | ------------------------------- |
||
391 | -- Tradeskill Produced Items -- |
||
392 | ------------------------------- |
||
393 | |||
394 | -- Reagent Data: Armors (Only those used in other tradeskills) |
||
395 | ReagentData["armor"] = { |
||
396 | ["goblinconstructionhelmet"] = "Casque de construction des Gobelins", |
||
397 | ["fineleathertunic"] = "Tunique en cuir \195\169l\195\169gant", |
||
398 | ["greenleather"] = "Armure en cuir vert", |
||
399 | ["greentintedgoggles"] = "Lunettes teint\195\169es vertes", |
||
400 | ["flyingtigergoggles"] = "Lunettes de tigre volant", |
||
401 | ["firegoggles"] = "Lunettes de feu", |
||
402 | ["spellpowergogglesxtreme"] = "Lunettes de fortification des sorts", |
||
403 | ["blackmageweaveboots"] = "Bottes en tissu de mage noir", |
||
404 | ["guardiangloves"] = "Gants du gardien", |
||
405 | ["cinderclothcloak"] = "Cape en \195\169toffe cendr\195\169e", |
||
406 | ["fineleatherbelt"] = "Ceinture en cuir \195\169l\195\169gant", |
||
407 | ["fineleathergloves"] = "Gants en cuir \195\169l\195\169gant", |
||
408 | ["duskybelt"] = "Ceinture sombre", |
||
409 | ["ironbuckle"] = "Boucle en fer", |
||
410 | }; |
||
411 | |||
412 | -- Reagent Data: Cloth Bolts |
||
413 | ReagentData["bolt"] = { |
||
414 | ["linen"] = "Rouleau de tissu en lin", |
||
415 | ["wool"] = "Rouleau de tissu en laine", |
||
416 | ["silk"] = "Rouleau d\'\195\169toffe de soie", |
||
417 | ["mageweave"] = "Rouleau de tissu de mage", |
||
418 | ["rune"] = "Rouleau d\'\195\169toffe runique", |
||
419 | }; |
||
420 | |||
421 | -- Reagent Data: Grinding Stones |
||
422 | ReagentData["grinding"] = { |
||
423 | ["solid"] = "Silex \195\160 aiguiser solide", |
||
424 | ["dense"] = "Silex \195\160 aiguiser dense", |
||
425 | ["rough"] = "Silex \195\160 aiguiser brut", |
||
426 | ["coarse"] = "Silex \195\160 aiguiser grossier", |
||
427 | ["heavy"] = "Silex \195\160 aiguiser lourd", |
||
428 | }; |
||
429 | |||
430 | -- Reagent Data: Oils |
||
431 | ReagentData["oil"] = { |
||
432 | ["goblinrocketfuel"] = "Carburant de fus\195\169e des Gobelins", |
||
433 | ["blackmouth"] = "Huile de Bouche-noire", |
||
434 | ["shadow"] = "Huile des t\195\169n\195\168bres", |
||
435 | ["fire"] = "Huile de feu", |
||
436 | ["immolation"] = "Huile d\'immolation", |
||
437 | ["stonescale"] = "Huile de Stonescale", |
||
438 | ["frost"] = "Huile glaciale", |
||
439 | }; |
||
440 | |||
441 | -- Reagent Data: Other (Items that don't fit in other categories) |
||
442 | ReagentData["other"] = { |
||
443 | ["yellowpowercrystal"] = "Cristal de puissance jaune", |
||
444 | ["philosophersstone"] = "Pierre philosophale", |
||
445 | ["redpowercrystal"] = "Cristal de puissance rouge", |
||
446 | ["snowball"] = "Boule de neige", |
||
447 | ["runntumtuber"] = "Racine de courante", |
||
448 | ["greenpowercrystal"] = "Cristal de puissance vert", |
||
449 | ["bluepowercrystal"] = "Cristal de puissance bleu", |
||
450 | ["frozenrune"] = "Frozen Rune", -- FIX ME |
||
451 | ["bloodofheroes"] = "Blood of Heroes", -- FIX ME |
||
452 | ["frayedabominationstitchings"] = "Frayed Abomination Stitchings", -- FIX ME |
||
453 | }; |
||
454 | |||
455 | -- Reagent Data: Blasting Powder |
||
456 | ReagentData["powder"] = { |
||
457 | ["solid"] = "Poudre noire solide", |
||
458 | ["dense"] = "Poudre d\'explosion dense", |
||
459 | ["rough"] = "Poudre d\'explosion basique", |
||
460 | ["coarse"] = "Poudre d\'explosion grossi\195\168re", |
||
461 | ["heavy"] = "Poudre d\'explosion majeure", |
||
462 | }; |
||
463 | |||
464 | -- Reagent Data: Engineering Parts |
||
465 | ReagentData["part"] = { |
||
466 | ["coppertube"] = "Tube de cuivre", |
||
467 | ["woodenstock"] = "Crosse en bois", |
||
468 | ["mithrilmechanicaldragonling"] = "Petit dragon m\195\169canique en mithril", |
||
469 | ["delicatearcaniteconverter"] = "Convertisseur d\'arcanite d\195\169licat", |
||
470 | ["bronzetube"] = "Tube de bronze", |
||
471 | ["fusedwiring"] = "C\195\162ble avec fusible", |
||
472 | ["thoriumwidget"] = "Rouage en thorium", |
||
473 | ["deadlyscope"] = "Lunette mortelle", |
||
474 | ["coppermodulator"] = "Modulateur de cuivre", |
||
475 | ["bigironbomb"] = "Grande bombe en fer", |
||
476 | ["heavystock"] = "Crosse lourde", |
||
477 | ["unstabletrigger"] = "D\195\169clencheur instable", |
||
478 | ["silvercontact"] = "Contact en argent", |
||
479 | ["accuratescope"] = "Lunette de pr\195\169cision", |
||
480 | ["handfulofcopperbolts"] = "Poign\195\169e de boulons en cuivre", |
||
481 | ["ironstrut"] = "Contrefiche en fer", |
||
482 | ["soliddynamite"] = "Dynamite solide", |
||
483 | ["mithriltube"] = "Tube de mithril", |
||
484 | ["gyrochronatom"] = "Gyrochronatome", |
||
485 | ["inlaidmithrilcylinder"] = "Cylindre en alliage de mithril", |
||
486 | ["goldpowercore"] = "Batterie en or", |
||
487 | ["mithrilcasing"] = "Caisse en mithril", |
||
488 | ["bronzeframework"] = "Structure en bronze", |
||
489 | ["blankparchment"] = "Parchemin vierge", |
||
490 | ["engineersink"] = "Encre de l\'ing\195\169nieur", |
||
491 | ["whirringbronzegizmo"] = "Bidule bourdonnant en bronze", |
||
492 | ["thoriumtube"] = "Tube en thorium", |
||
493 | ["truesilvertransformer"] = "Alt\195\169rateur de vrai-argent", |
||
494 | ["thebigone"] = "Le Mastoc", |
||
495 | }; |
||
496 | |||
497 | -- Reagent Data: Rods |
||
498 | ReagentData["rod"] = { |
||
499 | ["golden"] = "Baguette en or", |
||
500 | ["arcanite"] = "Baguette en arcanite", |
||
501 | ["truesilver"] = "Baguette en vrai-argent", |
||
502 | ["silver"] = "Baguette d\'argent", |
||
503 | ["copper"] = "Baguette de cuivre", |
||
504 | }; |
||
505 | |||
506 | ------------------------- |
||
507 | -- Enchanting Reagents -- |
||
508 | ------------------------- |
||
509 | |||
510 | -- Reagent Data: Dusts |
||
511 | ReagentData["dust"] = { |
||
512 | ["vision"] = "Poussi\195\168re de vision", |
||
513 | ["soul"] = "Poussi\195\168re d\'\195\162me", |
||
514 | ["strange"] = "Poussi\195\168re \195\169trange", |
||
515 | ["dream"] = "Poussi\195\168re de r\195\170ve", |
||
516 | ["illusion"] = "Poudre d\'illusion", |
||
517 | }; |
||
518 | |||
519 | -- Reagent Data: Essences |
||
520 | ReagentData["essence"] = { |
||
521 | ["lessereternal"] = "Essence \195\169ternelle inf\195\169rieure", |
||
522 | ["lessermystic"] = "Essence mystique inf\195\169rieure", |
||
523 | ["greaterastral"] = "Essence astrale sup\195\169rieure", |
||
524 | ["greatermystic"] = "Essence mystique sup\195\169rieure", |
||
525 | ["greaternether"] = "Essence du n\195\169ant sup\195\169rieure", |
||
526 | ["lesserastral"] = "Essence astrale inf\195\169rieure", |
||
527 | ["lessernether"] = "Essence du n\195\169ant inf\195\169rieure", |
||
528 | ["greatermagic"] = "Essence de magie sup\195\169rieure", |
||
529 | ["lessermagic"] = "Essence de magie inf\195\169rieure", |
||
530 | ["greatereternal"] = "Essence \195\169ternelle sup\195\169rieure", |
||
531 | }; |
||
532 | |||
533 | -- Reagent Data: Shards |
||
534 | ReagentData["shard"] = { |
||
535 | ["largeglimmering"] = "Gros \195\169clat scintillant", |
||
536 | ["largebrilliant"] = "Grand \195\169clat brillant", |
||
537 | ["smallglowing"] = "Petit \195\169clat lumineux", |
||
538 | ["smallglimmering"] = "Petit \195\169clat scintillant", |
||
539 | ["smallbrilliant"] = "Petit \195\169clat brillant", |
||
540 | ["smallradiant"] = "Petit \195\169clat irradiant", |
||
541 | ["largeradiant"] = "Gros \195\169clat irradiant", |
||
542 | ["largeglowing"] = "Gros \195\169clat lumineux", |
||
543 | ["nexuscrystal"] = "Nexus Crystal", -- FIX ME |
||
544 | }; |
||
545 | |||
546 | ------------------ |
||
547 | -- Vendor Items -- |
||
548 | ------------------ |
||
549 | |||
550 | -- Reagent Data: Drinks (Only those used in tradeskills) |
||
551 | ReagentData["drink"] = { |
||
552 | ["rhapsodymalt"] = "bi\195\168re au malt Rhapsody", |
||
553 | ["icecoldmilk"] = "Lait glac\195\169", |
||
554 | ["holidyspirits"] = "Eau de vie sp\195\169ciale", |
||
555 | ["skinofdwarvenstout"] = "Outre de bi\195\168re naine", |
||
556 | ["refreshingspringwater"] = "Eau de source", |
||
557 | }; |
||
558 | |||
559 | -- Reagent Data: Dye |
||
560 | ReagentData["dye"] = { |
||
561 | ["blue"] = "Teinture bleue", |
||
562 | ["ghost"] = "Teinture fant\195\180me", |
||
563 | ["purple"] = "Teinture pourpre", |
||
564 | ["red"] = "Teinture rouge", |
||
565 | ["bleach"] = "D\195\169colorant", |
||
566 | ["black"] = "Teinture noire", |
||
567 | ["green"] = "Teinture verte", |
||
568 | ["pink"] = "Teinture rose", |
||
569 | ["yellow"] = "Teinture jaune", |
||
570 | ["orange"] = "Teinture orange", |
||
571 | ["gray"] = "Teinture grise", |
||
572 | }; |
||
573 | |||
574 | -- Reagent Data: Flux |
||
575 | ReagentData["flux"] = { |
||
576 | ["weak"] = "Catalyseur l\195\169ger", |
||
577 | ["strong"] = "Catalyseur puissant", |
||
578 | ["elemental"] = "Catalyseur \195\169l\195\169mentaire", |
||
579 | }; |
||
580 | |||
581 | -- Reagent Data: Food (used in tradeskills) |
||
582 | ReagentData["food"] = { |
||
583 | ["shinyredapple"] = "Pomme rouge brillante", |
||
584 | }; |
||
585 | |||
586 | -- Reagent Data: Poison Ingredients |
||
587 | ReagentData["poisoningredient"] = { |
||
588 | ["dustofdecay"] = "Poudre de d\195\169labrement", |
||
589 | ["essenceofpain"] = "Essence de douleur", |
||
590 | ["essenceofagony"] = "Essence d\'agonie", |
||
591 | ["dustofdeterioration"] = "Poussi\195\168re de d\195\169t\195\169rioration", |
||
592 | ["deathweed"] = "Herbe mortelle", |
||
593 | }; |
||
594 | |||
595 | -- Reagent Data: Salt |
||
596 | ReagentData["salt"] = { |
||
597 | ["refineddeeprock"] = "Sel de Fonderoc raffin\195\169", |
||
598 | ["salt"] = "Sel", |
||
599 | ["deeprock"] = "Sel de Fonderoc", |
||
600 | }; |
||
601 | |||
602 | -- Reagent Data: Spices |
||
603 | ReagentData["spice"] = { |
||
604 | ["soothing"] = "Epices apaisantes", |
||
605 | ["stormwindseasoningherbs"] = "Herbes aromatiques de Stormwind", |
||
606 | ["mild"] = "Epices douces", |
||
607 | ["holiday"] = "Epices Sp\195\169ciales", |
||
608 | ["hot"] = "Epices fortes", |
||
609 | }; |
||
610 | |||
611 | -- Reagent Data: Thread |
||
612 | ReagentData["thread"] = { |
||
613 | ["heavysilken"] = "Bobine de soie lourde", |
||
614 | ["rune"] = "Fil runique", |
||
615 | ["silken"] = "Bobine de soie", |
||
616 | ["coarse"] = "Bobine de fil grossier", |
||
617 | ["fine"] = "Bobine de fil raffin\195\169", |
||
618 | }; |
||
619 | |||
620 | -- Reagent Data: Vendor Other |
||
621 | ReagentData["vendorother"] = { |
||
622 | ["coal"] = "Charbon", |
||
623 | ["nightcrawlers"] = "Asticots", |
||
624 | }; |
||
625 | |||
626 | -- Reagent Data: Vials |
||
627 | ReagentData["vial"] = { |
||
628 | ["crystal"] = "Fiole de cristal", |
||
629 | ["imbued"] = "Fiole impr\195\169gn\195\169e", |
||
630 | ["leaded"] = "Fiole plomb\195\169e", |
||
631 | ["empty"] = "Fiole vide", |
||
632 | }; |
||
633 | |||
634 | -- Reagent Data: Wood |
||
635 | ReagentData["wood"] = { |
||
636 | ["simple"] = "Bois simple", |
||
637 | ["star"] = "Bois d\'\195\169toile", |
||
638 | }; |
||
639 | |||
640 | ----------- |
||
641 | -- Other -- |
||
642 | ----------- |
||
643 | |||
644 | -- Reagent Data: Monster Parts |
||
645 | ReagentData["monster"] = { |
||
646 | ["tendercrocoliskmeat"] = "Viande de Crocilisque tendre", |
||
647 | ["stagmeat"] = "Viande de cerf", |
||
648 | ["powerfulmojo"] = "Mojo puissant", |
||
649 | ["lavacore"] = "Noyau de lave", |
||
650 | ["crispspidermeat"] = "Chair croustillante d\'Araign\195\169e", |
||
651 | ["largefang"] = "Grand croc", |
||
652 | ["softfrenzyflesh"] = "Chair tendre de Furie", |
||
653 | ["boarintestines"] = "Tripes de Sanglier", |
||
654 | ["leanwolfflank"] = "Steak de Loup", |
||
655 | ["stringyvulturemeat"] = "Viande filandreuse de vautour", |
||
656 | ["stringywolfmeat"] = "Viande de Loup maigre", |
||
657 | ["nagascale"] = "Ecaille de Naga", |
||
658 | ["murlocfin"] = "Aileron de Murloc", |
||
659 | ["turtlemeat"] = "Viande de Tortue", |
||
660 | ["larvalacid"] = "Acide de larve", |
||
661 | ["mysterymeat"] = "Viande myst\195\168re", |
||
662 | ["meatybatwing"] = "Aile de Chauve-souris charnue", |
||
663 | ["sulfuroningot"] = "Lingot de sulfuron", |
||
664 | ["smallvenomsac"] = "Petite glande de venin", |
||
665 | ["crocoliskmeat"] = "Viande de Crocilisque", |
||
666 | ["whitespidermeat"] = "Viande d\'Araign\195\169e blanche", |
||
667 | ["wickedclaw"] = "Serre cruelle", |
||
668 | ["goretuskliver"] = "Foie de Goretusk", |
||
669 | ["righteousorb"] = "Orbe de pi\195\169t\195\169", |
||
670 | ["kodomeat"] = "Viande de Kodo", |
||
671 | ["skinofshadow"] = "Peau des ombres", |
||
672 | ["ogretannin"] = "Tanin ogre", |
||
673 | ["smallflamesac"] = "Petit sac de flammes", |
||
674 | ["spiderichor"] = "Essence d\'Araign\195\169e", |
||
675 | ["giantegg"] = "Oeuf g\195\169ant", |
||
676 | ["smallspiderleg"] = "Petite patte d\'Araign\195\169e", |
||
677 | ["demonicrune"] = "Rune d\195\169moniaque", |
||
678 | ["crawlerclaw"] = "Pince de Crabe rampant", |
||
679 | ["clawmeat"] = "Chair de palourde", |
||
680 | ["chunkofboarmeat"] = "Morceau de viande de sanglier", |
||
681 | ["goretusksnout"] = "Groin de Goretusk", |
||
682 | ["zestyclammeat"] = "Viande de Strider", |
||
683 | ["flaskofbigmojo"] = "Flacon de grand Mojo", |
||
684 | ["tendercrabmeat"] = "Viande de Crabe tendre", |
||
685 | ["gooeyspiderleg"] = "Patte d\'Araign\195\169e fondante", |
||
686 | ["flaskofoil"] = "Flasque d\'huile", |
||
687 | ["giantclammeat"] = "Chair de palourdes g\195\169antes", |
||
688 | ["scorpidstinger"] = "Dard de Scorpion", |
||
689 | ["smallegg"] = "Petit oeuf", |
||
690 | ["luckycharm"] = "Charme de chance", |
||
691 | ["toughcondormeat"] = "Viande de Condor", |
||
692 | ["boarribs"] = "C\195\180tes de Sanglier", |
||
693 | ["murloceye"] = "Oeil de Murloc", |
||
694 | ["guardianstone"] = "Pierre de Gardien", |
||
695 | ["largevenomsac"] = "Poche de venin", |
||
696 | ["volatilerum"] = "Rhum explosif", |
||
697 | ["brilliantchromaticscale"] = "Ecaille chromatique brillante", |
||
698 | ["coyotemeat"] = "Viande de Coyote", |
||
699 | ["crawlermeat"] = "Chair de Crabe rampant", |
||
700 | ["bigbearmeat"] = "Viande de grand Ours", |
||
701 | ["stridermeat"] = "Viande de Strider", |
||
702 | ["tenderwolfmeat"] = "Viande de Loup tendre", |
||
703 | ["flaskofmojo"] = "Flacon de Mojo", |
||
704 | ["coarsegorillahair"] = "Poil de Gorille grossier", |
||
705 | ["discoloredworgheart"] = "Coeur de Worg d\195\169color\195\169", |
||
706 | ["scaleofonyxia"] = "Ecaille d\'Onyxia", |
||
707 | ["bearmeat"] = "Viande d\'Ours", |
||
708 | ["buzzardwing"] = "Aile de Busard", |
||
709 | ["cragboarrib"] = "C\195\180tes de Sanglier des rochers", |
||
710 | ["tangyclammeat"] = "Chair de palourde piquante", |
||
711 | ["sharpclaw"] = "Griffe aiguis\195\169e", |
||
712 | ["thunderlizardtail"] = "Queue de L\195\169zard foudroyant", |
||
713 | ["lionmeat"] = "Viande de Lion", |
||
714 | ["raptoregg"] = "Oeuf de Raptor", |
||
715 | ["clammeat"] = "Chair de palourde", |
||
716 | ["tigermeat"] = "Viande de Tigre", |
||
717 | ["digrat"] = "Rat fouisseur", |
||
718 | ["redwolfmeat"] = "Viande de Loup rouge", |
||
719 | ["slimymurlocscale"] = "Ecailles de Murloc visqueuses", |
||
720 | ["heavykodomeat"] = "Viande de Kodo", |
||
721 | ["raptorflesh"] = "Chair de Raptor", |
||
722 | ["fierycore"] = "Noyau de feu", |
||
723 | ["thickmurlocscale"] = "Ecailles de Murloc \195\169paisses", |
||
724 | ["massivemojo"] = "Mojo \195\169crasant", |
||
725 | ["hugevenomsac"] = "Enorme sac de venim", |
||
726 | ["sandwormmeat"] = "Chair de ver des sables", |
||
727 | ["darkrune"] = "Rune t\195\169n\195\169breuse", |
||
728 | ["heavysilithidcarapace"] = "Carapace lourde de Silithide", |
||
729 | ["lightsilithidcarapace"] = "Carapace l\195\169g\195\168re de Silithide", |
||
730 | ["silithidchitin"] = "Chitine de Silithide", |
||
731 | ["chimaeroktenderloin"] = "Chimaerok Tenderloin", -- FIX ME |
||
732 | }; |
||
733 | |||
734 | -- Reagent Data: Feathers |
||
735 | ReagentData["feather"] = { |
||
736 | ["longtail"] = "Longue plume de queue", |
||
737 | ["iron"] = "Plumacier", |
||
738 | ["jetblack"] = "Plume noire", |
||
739 | ["longelegant"] = "Longue plume \195\169l\195\169gante" |
||
740 | }; |
||
741 | |||
742 | -- Reagent Data: Spider Silk |
||
743 | ReagentData["spidersilk"] = { |
||
744 | ["ironweb"] = "Soie d\'araign\195\169e toilacier", |
||
745 | ["shadow"] = "Soie des t\195\169n\195\168bres", |
||
746 | ["thick"] = "Soie d\'araign\195\169e \195\169paisse", |
||
747 | ["silk"] = "Soie d\'araign\195\169e", |
||
748 | }; |
||
749 | |||
750 | -- Reagent Data: Classes |
||
751 | ReagentData["classes"] = {}; |
||
752 | ReagentData["classes"]["druid"] = "Druide"; |
||
753 | ReagentData["classes"]["hunter"] = "Chasseur"; |
||
754 | ReagentData["classes"]["mage"] = "Mage"; |
||
755 | ReagentData["classes"]["paladin"] = "Paladin"; |
||
756 | ReagentData["classes"]["priest"] = "Pr\195\170tre"; |
||
757 | ReagentData["classes"]["rogue"] = "Voleur"; |
||
758 | ReagentData["classes"]["shaman"] = "Chaman"; |
||
759 | ReagentData["classes"]["warlock"] = "D\195\169moniste"; |
||
760 | ReagentData["classes"]["warrior"] = "Guerrier"; |
||
761 | |||
762 | -- Reagent Data: Item location |
||
763 | ReagentData["location"] = {}; |
||
764 | ReagentData["location"]["head"] = "T\195\170te"; |
||
765 | ReagentData["location"]["neck"] = "Cou"; |
||
766 | ReagentData["location"]["shoulder"] = "Epaule"; |
||
767 | ReagentData["location"]["back"] = "Dos"; |
||
768 | ReagentData["location"]["chest"] = "Torse"; |
||
769 | ReagentData["location"]["shirt"] = "Chemise"; |
||
770 | ReagentData["location"]["tabard"] = "Tabard"; |
||
771 | ReagentData["location"]["wrist"] = "Poignets"; |
||
772 | ReagentData["location"]["hands"] = "Mains"; |
||
773 | ReagentData["location"]["waist"] = "Taille"; |
||
774 | ReagentData["location"]["legs"] = "Jambes"; |
||
775 | ReagentData["location"]["feet"] = "Pieds"; |
||
776 | ReagentData["location"]["finger"] = "Doigt"; |
||
777 | ReagentData["location"]["trinket"] = "Bijou"; |
||
778 | ReagentData["location"]["enchant"] = "Enchantement"; |
||
779 | ReagentData["location"]["weapon"] = "Weapon"; --FIX ME |
||
780 | |||
781 | -- Reagent Data: Professions (Skills that produce a finished product) |
||
782 | ReagentData["professions"] = {}; |
||
783 | ReagentData["professions"]["alchemy"] = "Alchimie"; |
||
784 | ReagentData["professions"]["blacksmithing"] = "Forge"; |
||
785 | ReagentData["professions"]["cooking"] = "Cuisine"; |
||
786 | ReagentData["professions"]["enchanting"] = "Enchantement"; |
||
787 | ReagentData["professions"]["engineering"] = "Ing\195\169nierie"; |
||
788 | ReagentData["professions"]["firstaid"] = "Secourisme"; |
||
789 | ReagentData["professions"]["leatherworking"] = "Travail du cuir"; |
||
790 | ReagentData["professions"]["tailoring"] = "Couture"; |
||
791 | |||
792 | -- Reagent Data: Gather Skills (Skills to gather/find reagents) |
||
793 | ReagentData["gathering"] = {}; |
||
794 | ReagentData["gathering"]["fishing"] = "P\195\170che"; |
||
795 | ReagentData["gathering"]["herbalism"] = "Herboristerie"; |
||
796 | ReagentData["gathering"]["mining"] = "Minage"; |
||
797 | ReagentData["gathering"]["skinning"] = "D\195\169pe\195\167age"; |
||
798 | |||
799 | end |
||
800 | |||
801 | |||
802 | ------------------------------------- |
||
803 | -- Reagent Data: QUEST ITEM Tables -- |
||
804 | ------------------------------------- |
||
805 | |||
806 | function ReagentData_LoadQuestItemsFrench() |
||
807 | |||
808 | ---------------------------- |
||
809 | -- Zul' Gurub quest items -- |
||
810 | ---------------------------- |
||
811 | |||
812 | ReagentData["quest"] = {}; |
||
813 | ReagentData["quest"]["Zul\'Gurub"] = {}; |
||
814 | ReagentData["quest"]["Zul\'Gurub"]["item"] = { |
||
815 | --~ ["coin"] = { |
||
816 | --~ ["bloodscalp"] = "Pi\195\168ce Bloodscalp", |
||
817 | --~ ["gurubashi"] = "Pi\195\168ce Gurubashi", |
||
818 | --~ ["hakkari"] = "Pi\195\168ce hakkari", |
||
819 | --~ ["razzashi"] = "Pi\195\168ce Razzashi", |
||
820 | --~ ["sandfury"] = "Pi\195\168ce Sandfury", |
||
821 | --~ ["skullsplitter"] = "Pi\195\168ce Skullsplitter", |
||
822 | --~ ["vilebranch"] = "Pi\195\168ce Vilebranch", |
||
823 | --~ ["witherbark"] = "Pi\195\168ce Witherbark", |
||
824 | --~ ["zulian"] = "Pi\195\168ce zulienne", |
||
825 | --~ }, |
||
826 | --~ ["bijou"] = { |
||
827 | --~ ["blue"] = "Bijou hakkari bleu", |
||
828 | --~ ["bronze"] = "Bijou hakkari bronze", |
||
829 | --~ ["gold"] = "Bijou hakkari dor\195\169", |
||
830 | --~ ["green"] = "Bijou hakkari vert", |
||
831 | --~ ["orange"] = "Bijou hakkari orange", |
||
832 | --~ ["purple"] = "Bijou hakkari violet", |
||
833 | --~ ["red"] = "Bijou hakkari rouge", |
||
834 | --~ ["silver"] = "Bijou hakkari argent\195\169", |
||
835 | --~ ["yellow"] = "Bijou hakkari jaune", |
||
836 | --~ }, |
||
837 | ["doll"] = { |
||
838 | ["voodoo"] = "Punctured Voodoo Doll", --FIX ME |
||
839 | }, |
||
840 | ["primal"] = { |
||
841 | ["aegis"] = "Egide primordiale hakkari", |
||
842 | ["armsplint"] = "Brassards primordiaux hakkari", |
||
843 | ["bindings"] = "Manchettes primordiales hakkari", |
||
844 | ["girdle"] = "Ceinturon primordial hakkari", |
||
845 | ["kossack"] = "Casaque primordiale hakkari", |
||
846 | ["sash"] = "Echarpe primordiale hakkari", |
||
847 | ["shawl"] = "Ch\195\162le primordial hakkari", |
||
848 | ["stanchion"] = "Etan\195\167on primordial hakkari", |
||
849 | ["tabard"] = "Tabard primordial hakkari", |
||
850 | ["idol"] = "Primal Hakkari Idol", --FIX ME |
||
851 | }, |
||
852 | }; |
||
853 | ReagentData["quest"]["Ruins of Anh\'Qiraj"] = {}; |
||
854 | ReagentData["quest"]["Ruins of Anh\'Qiraj"]["item"] = { |
||
855 | ["idol"] = { |
||
856 | ["alabaster"] = "Alabaster Idol", --FIX ME |
||
857 | ["amber"] = "Amber Idol", --FIX ME |
||
858 | ["azure"] = "Azure Idol", --FIX ME |
||
859 | ["jasper"] = "Jasper Idol", --FIX ME |
||
860 | ["lambent"] = "Lambent Idol", --FIX ME |
||
861 | ["obsidian"] = "Obsidian Idol", --FIX ME |
||
862 | ["onyx"] = "Onyx Idol", --FIX ME |
||
863 | ["vermillion"] = "Vermillion Idol", --FIX ME |
||
864 | }, |
||
865 | --[[ ["scarab"] = { |
||
866 | ["bone"] = "Bone Scarab", --FIX ME |
||
867 | ["bronze"] = "Bronze Scarab", --FIX ME |
||
868 | ["clay"] = "Clay Scarab", --FIX ME |
||
869 | ["crystal"] = "Crystal Scarab", --FIX ME |
||
870 | ["ivory"] = "Ivory Scarab", --FIX ME |
||
871 | ["gold"] = "Gold Scarab", --FIX ME |
||
872 | ["silver"] = "Silver Scarab", --FIX ME |
||
873 | ["stone"] = "Stone Scarab", --FIX ME |
||
874 | },]] |
||
875 | ["hilt"] = { |
||
876 | ["ornate"] = "Qiraji Ornate Hilt", --FIX ME |
||
877 | ["spiked"] = "Qiraji Spiked Hilt", --FIX ME |
||
878 | }, |
||
879 | ["ring"] = { |
||
880 | ["ceremonial"] = "Qiraji Ceremonial Ring", --FIX ME |
||
881 | ["magisterial"] = "Qiraji Magisterial Ring", --FIX ME |
||
882 | }, |
||
883 | ["drape"] = { |
||
884 | ["martial"] = "Qiraji Martial Drape", --FIX ME |
||
885 | ["regal"] = "Qiraji Regal Drape", --FIX ME |
||
886 | }, |
||
887 | }; |
||
888 | ReagentData["quest"]["Anh\'Qiraj"] = {}; |
||
889 | ReagentData["quest"]["Anh\'Qiraj"]["item"] = { |
||
890 | ["idol"] = { |
||
891 | ["death"] = "Idol of Death", |
||
892 | ["life"] = "Idol of Life", |
||
893 | ["night"] = "Idol of Night", |
||
894 | ["rebirth"] = "Idol of Rebirth", |
||
895 | ["sage"] = "Idol of the Sage", |
||
896 | ["strife"] = "Idol of Strife", |
||
897 | ["sun"] = "Idol of the Sun", |
||
898 | ["war"] = "Idol of War", |
||
899 | }, |
||
900 | ["scarab"] = { |
||
901 | ["bone"] = "Bone Scarab", |
||
902 | ["bronze"] = "Bronze Scarab", |
||
903 | ["clay"] = "Clay Scarab", |
||
904 | ["crystal"] = "Crystal Scarab", |
||
905 | ["ivory"] = "Ivory Scarab", |
||
906 | ["gold"] = "Gold Scarab", |
||
907 | ["silver"] = "Silver Scarab", |
||
908 | ["stone"] = "Stone Scarab", |
||
909 | }, |
||
910 | ["part"] = { |
||
911 | ["command"] = "Qiraji Bindings of Command", |
||
912 | ["dominance"] = "Qiraji Bindings of Dominance", |
||
913 | ["circlet"] = "Vek\'nilash\'s Circlet", |
||
914 | ["diadem"] = "Vek\'lor\'s Diadem", |
||
915 | ["hide"] = "Ouro\'s Intact Hide", |
||
916 | ["skin"] = "Skin of the Great Sandwormd", |
||
917 | ["carapace"] = "Carapace of the Old God", |
||
918 | ["husk"] = "Husk of the Old God", |
||
919 | }, |
||
920 | }; |
||
921 | ReagentData["quest"]["Naxxramas"] = {}; |
||
922 | ReagentData["quest"]["Naxxramas"]["item"] = { |
||
923 | ["scrap"] = { |
||
924 | ["cloth"] = "Wartorn Cloth Scrap", -- FIX ME |
||
925 | ["leather"] = "Wartorn Leather Scrap", -- FIX ME |
||
926 | ["chain"] = "Wartorn Chain Scrap", -- FIX ME |
||
927 | ["plate"] = "Wartorn Plate Scrap", -- FIX ME |
||
928 | }, |
||
929 | ["desecrated"] = { |
||
930 | ["belt"] = "Desecrated Belt", -- FIX ME |
||
931 | ["bindings"] = "Desecrated Bindings", -- FIX ME |
||
932 | ["boots"] = "Desecrated Boots", -- FIX ME |
||
933 | ["bracers"] = "Desecrated Bracers", -- FIX ME |
||
934 | ["breastplate"] = "Desecrated Breastplate", -- FIX ME |
||
935 | ["circlet"] = "Desecrated Circlet", -- FIX ME |
||
936 | ["gauntlets"] = "Desecrated Gauntlets", -- FIX ME |
||
937 | ["girdle"] = "Desecrated Girdle", -- FIX ME |
||
938 | ["gloves"] = "Desecrated Gloves", -- FIX ME |
||
939 | ["handguards"] = "Desecrated Handguards", -- FIX ME |
||
940 | ["headpiece"] = "Desecrated Headpiece", -- FIX ME |
||
941 | ["helmet"] = "Desecrated Helmet", -- FIX ME |
||
942 | ["leggings"] = "Desecrated Leggings", -- FIX ME |
||
943 | ["legguards"] = "Desecrated Legguards", -- FIX ME |
||
944 | ["legplates"] = "Desecrated Legplates", -- FIX ME |
||
945 | ["pauldrons"] = "Desecrated Pauldrons", -- FIX ME |
||
946 | ["robe"] = "Desecrated Robe", -- FIX ME |
||
947 | ["sabatons"] = "Desecrated Sabatons", -- FIX ME |
||
948 | ["sandals"] = "Desecrated Sandals", -- FIX ME |
||
949 | ["shoulderpads"] = "Desecrated Shoulderpads", -- FIX ME |
||
950 | ["spaulders"] = "Desecrated Spaulders", -- FIX ME |
||
951 | ["tunic"] = "Desecrated Tunic", -- FIX ME |
||
952 | ["waistguard"] = "Desecrated Waistguard", -- FIX ME |
||
953 | ["wristguards"] = "Desecrated Wristguards", -- FIX ME |
||
954 | }, |
||
955 | ["other"] = { |
||
956 | ["gem"] = { |
||
957 | ["arcanecrystal"] = "Cristal des arcanes", |
||
958 | }, |
||
959 | ["shard"] = { |
||
960 | ["nexuscrystal"] = "Nexus Crystal", --FIX ME |
||
961 | }, |
||
962 | ["bar"] = { |
||
963 | ["arcanite"] = "Barre d\'arcanite", |
||
964 | }, |
||
965 | ["hide"] = { |
||
966 | ["curedrugged"] = "Peau robuste trait\195\169e", |
||
967 | }, |
||
968 | ["cloth"] = { |
||
969 | ["moon"] = "Etoffe lunaire", |
||
970 | }, |
||
971 | }, |
||
972 | }; |
||
973 | |||
974 | end |