public
Description: WoW Addon - Crowd control assistance
Homepage: http://www.tekkub.net
Clone URL: git://github.com/tekkub/controlfreak.git
Click here to lend your support to: controlfreak and make a donation at www.pledgie.com !
Say it frenchie! Say "Chowdah!"
tekkub (author)
Tue Aug 05 20:34:36 -0700 2008
commit  9474faf7498c6653c8d2b722350d9b3391f9f3ee
tree    765dafe16ddc01b02a4f3b8fbca88e708d43c960
parent  b52d8a8639d46ad83727047d675a50a3d3056bc9
...
34
35
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
38
39
...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
0
@@ -34,6 +34,23 @@ if loc == "deDE" then localized = {
0
 } end
0
 
0
 
0
+----------------------
0
+-- French --
0
+----------------------
0
+
0
+if loc == "frFR" then localized = {
0
+ Beast = "B\195\170te",
0
+ Critter = "Bestiole",
0
+ Demon = "D\195\169mon",
0
+ Dragonkin = "Draconien",
0
+ Elemental = "El\195\169mentaire",
0
+ Giant = "G\195\169ant",
0
+ Humanoid = "Humano\195\175de",
0
+ Mechanical = "M\195\169canique",
0
+ Undead = "Mort-vivant",
0
+} end
0
+
0
+
0
 -- Metatable majicks... makes localized table fallback to engrish, or fallback to the index requested.
0
 -- This ensures we ALWAYS get a value back, even if it's the index we requested originally
0
 CONTROLFREAK_LOCALE = localized and setmetatable(localized, {__index = function(t,i) return engrish[i] or i end})

Comments

    No one has commented yet.