vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 Name: Babble-Zone-2.0
3 Revision: $Rev: 8586 $
4 Author(s): ckknight (ckknight@gmail.com)
5 Website: http://ckknight.wowinterface.com/
6 Documentation: http://wiki.wowace.com/index.php/Babble-Zone-2.0
7 SVN: http://svn.wowace.com/root/trunk/BabbleLib/Babble-Zone-2.0
8 Description: A library to provide localizations for zones.
9 Dependencies: AceLibrary, AceLocale-2.0
10 ]]
11  
12 local MAJOR_VERSION = "Babble-Zone-2.0"
13 local MINOR_VERSION = "$Revision: 8586 $"
14  
15 if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end
16 if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end
17  
18 if not AceLibrary:HasInstance("AceLocale-2.0") then error(MAJOR_VERSION .. " requires AceLocale-2.0") end
19  
20 local BabbleZone = AceLibrary("AceLocale-2.0"):new(MAJOR_VERSION)
21  
22 -- uncomment below for debug information
23 -- BabbleZone:EnableDebugging()
24  
25 BabbleZone:RegisterTranslations("enUS", function()
26 return {
27 ["Ahn'Qiraj"] = "Ahn'Qiraj",
28 ["Alterac Mountains"] = "Alterac Mountains",
29 ["Alterac Valley"] = "Alterac Valley",
30 ["Arathi Basin"] = "Arathi Basin",
31 ["Arathi Highlands"] = "Arathi Highlands",
32 ["Ashenvale"] = "Ashenvale",
33 ["Azshara"] = "Azshara",
34 ["Badlands"] = "Badlands",
35 ["The Barrens"] = "The Barrens",
36 ["Blackfathom Deeps"] = "Blackfathom Deeps",
37 ["Blackrock Depths"] = "Blackrock Depths",
38 ["Blackrock Mountain"] = "Blackrock Mountain",
39 ["Blackrock Spire"] = "Blackrock Spire",
40 ["Blackwing Lair"] = "Blackwing Lair",
41 ["Blasted Lands"] = "Blasted Lands",
42 ["Booty Bay"] = "Booty Bay",
43 ["Burning Steppes"] = "Burning Steppes",
44 ["Caverns of Time"] = "Caverns of Time",
45 ["Darkshore"] = "Darkshore",
46 ["Darnassus"] = "Darnassus",
47 ["The Deadmines"] = "The Deadmines",
48 ["Deadwind Pass"] = "Deadwind Pass",
49 ["Deeprun Tram"] = "Deeprun Tram",
50 ["Desolace"] = "Desolace",
51 ["Dire Maul"] = "Dire Maul",
52 ["Dun Morogh"] = "Dun Morogh",
53 ["Durotar"] = "Durotar",
54 ["Duskwood"] = "Duskwood",
55 ["Dustwallow Marsh"] = "Dustwallow Marsh",
56 ["Eastern Plaguelands"] = "Eastern Plaguelands",
57 ["Elwynn Forest"] = "Elwynn Forest",
58 ["Everlook"] = "Everlook",
59 ["Felwood"] = "Felwood",
60 ["Feralas"] = "Feralas",
61 ["The Forbidding Sea"] = "The Forbidding Sea",
62 ["Gadgetzan"] = "Gadgetzan",
63 ["Gnomeregan"] = "Gnomeregan",
64 ["The Great Sea"] = "The Great Sea",
65 ["Hall of Legends"] = "Hall of Legends",
66 ["Hillsbrad Foothills"] = "Hillsbrad Foothills",
67 ["The Hinterlands"] = "The Hinterlands",
68 ["Hyjal"] = "Hyjal",
69 ["Ironforge"] = "Ironforge",
70 ["Loch Modan"] = "Loch Modan",
71 ["Maraudon"] = "Maraudon",
72 ["Molten Core"] = "Molten Core",
73 ["Moonglade"] = "Moonglade",
74 ["Mulgore"] = "Mulgore",
75 ["Naxxramas"] = "Naxxramas",
76 ["Onyxia's Lair"] = "Onyxia's Lair",
77 ["Orgrimmar"] = "Orgrimmar",
78 ["Ratchet"] = "Ratchet",
79 ["Ragefire Chasm"] = "Ragefire Chasm",
80 ["Razorfen Downs"] = "Razorfen Downs",
81 ["Razorfen Kraul"] = "Razorfen Kraul",
82 ["Redridge Mountains"] = "Redridge Mountains",
83 ["Ruins of Ahn'Qiraj"] = "Ruins of Ahn'Qiraj",
84 ["Scarlet Monastery"] = "Scarlet Monastery",
85 ["Scholomance"] = "Scholomance",
86 ["Searing Gorge"] = "Searing Gorge",
87 ["Shadowfang Keep"] = "Shadowfang Keep",
88 ["Silithus"] = "Silithus",
89 ["Silverpine Forest"] = "Silverpine Forest",
90 ["The Stockade"] = "The Stockade",
91 ["Stonetalon Mountains"] = "Stonetalon Mountains",
92 ["Stormwind City"] = "Stormwind City",
93 ["Stranglethorn Vale"] = "Stranglethorn Vale",
94 ["Stratholme"] = "Stratholme",
95 ["Swamp of Sorrows"] = "Swamp of Sorrows",
96 ["Tanaris"] = "Tanaris",
97 ["Teldrassil"] = "Teldrassil",
98 ["Temple of Ahn'Qiraj"] = "Temple of Ahn'Qiraj",
99 ["The Temple of Atal'Hakkar"] = "The Temple of Atal'Hakkar",
100 ["Thousand Needles"] = "Thousand Needles",
101 ["Thunder Bluff"] = "Thunder Bluff",
102 ["Tirisfal Glades"] = "Tirisfal Glades",
103 ["Uldaman"] = "Uldaman",
104 ["Un'Goro Crater"] = "Un'Goro Crater",
105 ["Undercity"] = "Undercity",
106 ["Wailing Caverns"] = "Wailing Caverns",
107 ["Warsong Gulch"] = "Warsong Gulch",
108 ["Western Plaguelands"] = "Western Plaguelands",
109 ["Westfall"] = "Westfall",
110 ["Wetlands"] = "Wetlands",
111 ["Winterspring"] = "Winterspring",
112 ["Zul'Farrak"] = "Zul'Farrak",
113 ["Zul'Gurub"] = "Zul'Gurub",
114 }
115 end)
116  
117 BabbleZone:RegisterTranslations("deDE", function()
118 return {
119 ["Ahn'Qiraj"] = "Ahn'Qiraj",
120 ["Alterac Mountains"] = "Alteracgebirge",
121 ["Alterac Valley"] = "Alteractal",
122 ["Arathi Basin"] = "Arathibecken",
123 ["Arathi Highlands"] = "Arathihochland",
124 ["Ashenvale"] = "Ashenvale",
125 ["Azshara"] = "Azshara",
126 ["Badlands"] = "\195\150dland",
127 ["The Barrens"] = "Brachland",
128 ["Blackfathom Deeps"] = "Blackfathom-Tiefe",
129 ["Blackrock Depths"] = "Blackrocktiefen",
130 ["Blackrock Mountain"] = "Der Blackrock",
131 ["Blackrock Spire"] = "Blackrockspitze",
132 ["Blackwing Lair"] = "Pechschwingenhort",
133 ["Blasted Lands"] = "Verw\195\188steten Lande",
134 ["Booty Bay"] = "Booty Bay",
135 ["Burning Steppes"] = "Brennende Steppe",
136 ["Caverns of Time"] = "Die H\195\182hlen der Zeit",
137 ["Darkshore"] = "Dunkelk\195\188ste",
138 ["Darnassus"] = "Darnassus",
139 ["The Deadmines"] = "Die Todesminen",
140 ["Deadwind Pass"] = "Gebirgspass der Totenwinde",
141 ["Deeprun Tram"] = "Die Tiefenbahn",
142 ["Desolace"] = "Desolace",
143 ["Dire Maul"] = "D\195\188sterbruch",
144 ["Dun Morogh"] = "Dun Morogh",
145 ["Durotar"] = "Durotar",
146 ["Duskwood"] = "D\195\164mmerwald",
147 ["Dustwallow Marsh"] = "Marschen von Dustwallow",
148 ["Eastern Plaguelands"] = "\195\150stliche Pestl\195\164nder",
149 ["Elwynn Forest"] = "Wald von Elwynn",
150 ["Everlook"] = "Everlook",
151 ["Felwood"] = "Teufelswald",
152 ["Feralas"] = "Feralas",
153 ["The Forbidding Sea"] = "Das verbotene Meer",
154 ["Gadgetzan"] = "Gadgetzan",
155 ["Gnomeregan"] = "Gnomeregan",
156 ["The Great Sea"] = "Das grosse Meer",
157 ["Hall of Legends"] = "Halle der Legenden",
158 ["Hillsbrad Foothills"] = "Vorgebirge von Hillsbrad",
159 ["The Hinterlands"] = "Hinterland",
160 ["Hyjal"] = "Hyjal",
161 ["Ironforge"] = "Ironforge",
162 ["Loch Modan"] = "Loch Modan",
163 ["Maraudon"] = "Maraudon",
164 ["Molten Core"] = "Geschmolzener Kern",
165 ["Moonglade"] = "Moonglade",
166 ["Mulgore"] = "Mulgore",
167 ["Naxxramas"] = "Naxxramas",
168 ["Onyxia's Lair"] = "Onyxias Hort",
169 ["Orgrimmar"] = "Orgrimmar",
170 ["Ratchet"] = "Ratchet",
171 ["Ragefire Chasm"] = "Ragefireabgrund",
172 ["Razorfen Downs"] = "Die H\195\188gel von Razorfen",
173 ["Razorfen Kraul"] = "Der Kral von Razorfen",
174 ["Redridge Mountains"] = "Rotkammgebirge",
175 ["Ruins of Ahn'Qiraj"] = "Ruinen von Ahn'Qiraj",
176 ["Scarlet Monastery"] = "Das Scharlachrote Kloster",
177 ["Scholomance"] = "Scholomance",
178 ["Searing Gorge"] = "Sengende Schlucht",
179 ["Shadowfang Keep"] = "Burg Shadowfang",
180 ["Silithus"] = "Silithus",
181 ["Silverpine Forest"] = "Silberwald",
182 ["The Stockade"] = "Das Verlies",
183 ["Stonetalon Mountains"] = "Steinkrallengebirge",
184 ["Stormwind City"] = "Stormwind",
185 ["Stranglethorn Vale"] = "Schlingendorntal",
186 ["Stratholme"] = "Stratholme",
187 ["Swamp of Sorrows"] = "S\195\188mpfe des Elends",
188 ["Tanaris"] = "Tanaris",
189 ["Teldrassil"] = "Teldrassil",
190 ["Temple of Ahn'Qiraj"] = "Tempel von Ahn'Qiraj",
191 ["The Temple of Atal'Hakkar"] = "Der Tempel von Atal'Hakkar",
192 ["Thousand Needles"] = "Tausend Nadeln",
193 ["Thunder Bluff"] = "Thunder Bluff",
194 ["Tirisfal Glades"] = "Tirisfal",
195 ["Uldaman"] = "Uldaman",
196 ["Un'Goro Crater"] = "Un'Goro-Krater",
197 ["Undercity"] = "Undercity",
198 ["Wailing Caverns"] = "Die H\195\182hlen des Wehklagens",
199 ["Warsong Gulch"] = "Warsongschlucht",
200 ["Western Plaguelands"] = "Westliche Pestl\195\164nder",
201 ["Westfall"] = "Westfall",
202 ["Wetlands"] = "Sumpfland",
203 ["Winterspring"] = "Winterspring",
204 ["Zul'Farrak"] = "Zul'Farrak",
205 ["Zul'Gurub"] = "Zul'Gurub",
206 }
207 end)
208  
209 BabbleZone:RegisterTranslations("frFR", function()
210 return {
211 ["Ahn'Qiraj"] = "Ahn'Qiraj",
212 ["Alterac Mountains"] = "Montagnes d'Alterac",
213 ["Alterac Valley"] = "Vall\195\169e d'Alterac",
214 ["Arathi Basin"] = "Bassin d'Arathi",
215 ["Arathi Highlands"] = "Hautes-terres d'Arathi",
216 ["Ashenvale"] = "Ashenvale",
217 ["Azshara"] = "Azshara",
218 ["Badlands"] = "Terres ingrates",
219 ["The Barrens"] = "Les Tarides",
220 ["Blackfathom Deeps"] = "Profondeurs de Brassenoire",
221 ["Blackrock Depths"] = "Profondeurs de Blackrock",
222 ["Blackrock Mountain"] = "Mont Blackrock",
223 ["Blackrock Spire"] = "Pic Blackrock",
224 ["Blackwing Lair"] = "Repaire de l'Aile noire",
225 ["Blasted Lands"] = "Terres foudroy\195\169es",
226 ["Booty Bay"] = "Baie-du-Butin",
227 ["Burning Steppes"] = "Steppes Ardentes",
228 ["Caverns of Time"] = "Grottes du temps",
229 ["Darkshore"] = "Sombrivage",
230 ["Darnassus"] = "Darnassus",
231 ["The Deadmines"] = "Les mortemines",
232 ["Deadwind Pass"] = "D\195\169fil\195\169 de Deuillevent",
233 ["Deeprun Tram"] = "Tram des profondeurs",
234 ["Desolace"] = "D\195\169solace",
235 ["Dire Maul"] = "Hache-Tripes",
236 ["Dun Morogh"] = "Dun Morogh",
237 ["Durotar"] = "Durotar",
238 ["Duskwood"] = "Bois de la p\195\169nombre",
239 ["Dustwallow Marsh"] = "Mar\195\169cage d'\195\130prefange",
240 ["Eastern Plaguelands"] = "Maleterres de l'est",
241 ["Elwynn Forest"] = "For\195\170t d'Elwynn",
242 ["Everlook"] = "Long-guet",
243 ["Felwood"] = "Gangrebois",
244 ["Feralas"] = "Feralas",
245 ["The Forbidding Sea"] = "La Mer interdite",
246 ["Gadgetzan"] = "Gadgetzan",
247 ["Gnomeregan"] = "Gnomeregan",
248 ["The Great Sea"] = "La Grande mer",
249 ["Hall of Legends"] = "Hall des L\195\169gendes",
250 ["Hillsbrad Foothills"] = "Contreforts d'Hillsbrad",
251 ["The Hinterlands"] = "Les Hinterlands",
252 ["Hyjal"] = "Hyjal", -- CHECK
253 ["Ironforge"] = "Ironforge",
254 ["Loch Modan"] = "Loch Modan",
255 ["Maraudon"] = "Maraudon",
256 ["Molten Core"] = "C\197\147ur du Magma",
257 ["Moonglade"] = "Reflet-de-lune",
258 ["Mulgore"] = "Mulgore",
259 ["Onyxia's Lair"] = "Repaire d'Onyxia",
260 ["Naxxramas"] = "Naxxramas",
261 ["Orgrimmar"] = "Orgrimmar",
262 ["Ratchet"] = "Ratchet",
263 ["Ragefire Chasm"] = "Gouffre de Ragefeu",
264 ["Razorfen Downs"] = "Souilles de Tranchebauge",
265 ["Razorfen Kraul"] = "Kraal de Tranchebauge",
266 ["Redridge Mountains"] = "Les Carmines",
267 ["Ruins of Ahn'Qiraj"] = "Ruines d'Ahn'Qiraj",
268 ["Scarlet Monastery"] = "Monast\195\168re Ecarlate",
269 ["Scholomance"] = "Scholomance",
270 ["Searing Gorge"] = "Gorge des Vents br\195\187lants",
271 ["Shadowfang Keep"] = "Donjon d'Ombrecroc",
272 ["Silithus"] = "Silithus",
273 ["Silverpine Forest"] = "For\195\170t des pins argent\195\169s",
274 ["The Stockade"] = "La Prison",
275 ["Stonetalon Mountains"] = "Les Serres-Rocheuses",
276 ["Stormwind City"] = "Cit\195\169 de Stormwind",
277 ["Stranglethorn Vale"] = "Vall\195\169e de Strangleronce",
278 ["Stratholme"] = "Stratholme",
279 ["Swamp of Sorrows"] = "Marais des Chagrins",
280 ["Tanaris"] = "Tanaris",
281 ["Teldrassil"] = "Teldrassil",
282 ["Temple of Ahn'Qiraj"] = "Le temple d'Ahn'Qiraj",
283 ["The Temple of Atal'Hakkar"] = "Le Temple d'Atal'Hakkar",
284 ["Thousand Needles"] = "Mille pointes",
285 ["Thunder Bluff"] = "Thunder Bluff",
286 ["Tirisfal Glades"] = "Clairi\195\168res de Tirisfal",
287 ["Uldaman"] = "Uldaman",
288 ["Un'Goro Crater"] = "Crat\195\168re d'Un'Goro",
289 ["Undercity"] = "Undercity",
290 ["Wailing Caverns"] = "Cavernes des lamentations",
291 ["Warsong Gulch"] = "Goulet des Warsong",
292 ["Western Plaguelands"] = "Maleterres de l'ouest",
293 ["Westfall"] = "Marche de l'Ouest",
294 ["Wetlands"] = "Les Paluns",
295 ["Winterspring"] = "Berceau-de-l'Hiver",
296 ["Zul'Farrak"] = "Zul'Farrak",
297 ["Zul'Gurub"] = "Zul'Gurub",
298 }
299 end)
300  
301 BabbleZone:RegisterTranslations("zhCN", function()
302 return {
303 ["Ahn'Qiraj"] = "\229\174\137\229\133\182\230\139\137",
304 ["Alterac Mountains"] = "\229\165\165\231\137\185\229\133\176\229\133\139\229\177\177\232\132\137",
305 ["Alterac Valley"] = "\229\165\165\231\137\185\229\133\176\229\133\139\229\177\177\232\176\183",
306 ["Arathi Basin"] = "\233\152\191\230\139\137\229\184\140\231\155\134\229\156\176",
307 ["Arathi Highlands"] = "\233\152\191\230\139\137\229\184\140\233\171\152\229\156\176",
308 ["Ashenvale"] = "\231\129\176\232\176\183",
309 ["Azshara"] = "\232\137\190\232\144\168\230\139\137",
310 ["Badlands"] = "\232\141\146\232\138\156\228\185\139\229\156\176",
311 ["The Barrens"] = "\232\180\171\231\152\160\228\185\139\229\156\176",
312 ["Blackfathom Deeps"] = "\233\187\145\230\154\151\230\183\177\230\184\138",
313 ["Blackrock Depths"] = "\233\187\145\231\159\179\230\183\177\230\184\138",
314 ["Blackrock Mountain"] = "\233\187\145\231\159\179\229\177\177",
315 ["Blackrock Spire"] = "\233\187\145\231\159\179\229\161\148",
316 ["Blackwing Lair"] = "\233\187\145\231\191\188\228\185\139\229\183\162",
317 ["Blasted Lands"] = "\232\175\133\229\146\146\228\185\139\229\156\176",
318 ["Booty Bay"] = "藏宝海湾",
319 ["Burning Steppes"] = "\231\135\131\231\131\167\229\185\179\229\142\159",
320 ["Caverns of Time"] = "\230\151\182\229\133\137\228\185\139\231\169\180",
321 ["Darkshore"] = "\233\187\145\230\181\183\229\178\184",
322 ["Darnassus"] = "\232\190\190\231\186\179\232\139\143\230\150\175",
323 ["The Deadmines"] = "\230\173\187\228\186\161\231\159\191\228\186\149",
324 ["Deadwind Pass"] = "\233\128\134\233\163\142\229\176\143\229\190\132",
325 ["Deeprun Tram"] = "矿道地铁",
326 ["Desolace"] = "\229\135\132\229\135\137\228\185\139\229\156\176",
327 ["Dire Maul"] = "\229\142\132\232\191\144\228\185\139\230\167\140",
328 ["Dun Morogh"] = "\228\184\185\232\142\171\231\189\151",
329 ["Durotar"] = "\230\157\156\233\154\134\229\161\148\229\176\148",
330 ["Duskwood"] = "\230\154\174\232\137\178\230\163\174\230\158\151",
331 ["Dustwallow Marsh"] = "\229\176\152\230\179\165\230\178\188\230\179\189",
332 ["Eastern Plaguelands"] = "\228\184\156\231\152\159\231\150\171\228\185\139\229\156\176",
333 ["Elwynn Forest"] = "\232\137\190\229\176\148\230\150\135\230\163\174\230\158\151",
334 ["Felwood"] = "\232\180\185\228\188\141\229\190\183\230\163\174\230\158\151",
335 ["Feralas"] = "菲拉斯",
336 ["The Forbidding Sea"] = "The Forbidding Sea",
337 ["Gadgetzan"] = "加基森",
338 ["Gnomeregan"] = "\232\175\186\232\142\171\231\145\158\230\160\185",
339 ["The Great Sea"] = "无尽之海",
340 ["Hall of Legends"] = "传说大厅",
341 ["Hillsbrad Foothills"] = "\229\184\140\229\176\148\230\150\175\229\184\131\232\142\177\229\190\183\228\184\152\233\153\181",
342 ["The Hinterlands"] = "\232\190\155\231\137\185\229\133\176",
343 ["Hyjal"] = "海加尔",
344 ["Ironforge"] = "\233\147\129\231\130\137\229\160\161",
345 ["Loch Modan"] = "\230\180\155\229\133\139\232\142\171\228\184\185",
346 ["Maraudon"] = "\231\142\155\230\139\137\233\161\191",
347 ["Molten Core"] = "\231\134\148\231\129\171\228\185\139\229\191\131",
348 ["Moonglade"] = "\230\156\136\229\133\137\230\158\151\229\156\176",
349 ["Mulgore"] = "\232\142\171\233\171\152\233\155\183",
350 ["Naxxramas"] = "纳克萨玛斯",
351 ["Onyxia's Lair"] = "\229\165\165\229\166\174\229\133\139\232\165\191\228\186\154\231\154\132\229\183\162\231\169\180",
352 ["Orgrimmar"] = "\229\165\165\230\160\188\231\145\158\231\142\155",
353 ["Ratchet"] = "棘齿城",
354 ["Ragefire Chasm"] = "\230\128\146\231\132\176\232\163\130\232\176\183",
355 ["Razorfen Downs"] = "\229\137\131\229\136\128\233\171\152\229\156\176",
356 ["Razorfen Kraul"] = "\229\137\131\229\136\128\230\178\188\230\179\189",
357 ["Redridge Mountains"] = "\232\181\164\232\132\138\229\177\177",
358 ["Ruins of Ahn'Qiraj"] = "\229\174\137\229\133\182\230\139\137\229\186\159\229\162\159",
359 ["Scarlet Monastery"] = "\232\161\128\232\137\178\228\191\174\233\129\147\233\153\162",
360 ["Scholomance"] = "通灵学院",
361 ["Searing Gorge"] = "\231\129\188\231\131\173\229\179\161\232\176\183",
362 ["Shadowfang Keep"] = "\229\189\177\231\137\153\229\159\142\229\160\161",
363 ["Silithus"] = "希利苏斯",
364 ["Silverpine Forest"] = "银松森林",
365 ["The Stockade"] = "\230\154\180\233\163\142\229\159\142\231\155\145\231\139\177",
366 ["Stonetalon Mountains"] = "\231\159\179\231\136\170\229\177\177\232\132\137",
367 ["Stormwind City"] = "\230\154\180\233\163\142\229\159\142",
368 ["Stranglethorn Vale"] = "\232\141\134\230\163\152\232\176\183",
369 ["Stratholme"] = "\230\150\175\229\157\166\231\180\162\229\167\134",
370 ["Swamp of Sorrows"] = "\230\130\178\228\188\164\230\178\188\230\179\189",
371 ["Tanaris"] = "\229\161\148\231\186\179\229\136\169\230\150\175",
372 ["Teldrassil"] = "\230\179\176\232\190\190\229\184\140\229\176\148",
373 ["Temple of Ahn'Qiraj"] = "\229\174\137\229\133\182\230\139\137\231\165\158\230\174\191",
374 ["The Temple of Atal'Hakkar"] = "阿塔哈卡神庙",
375 ["Thousand Needles"] = "千针石林",
376 ["Thunder Bluff"] = "\233\155\183\233\156\134\229\180\150",
377 ["Tirisfal Glades"] = "\230\143\144\231\145\158\230\150\175\230\179\149\230\158\151\229\156\176",
378 ["Uldaman"] = "\229\165\165\232\190\190\230\155\188",
379 ["Un'Goro Crater"] = "\231\142\175\229\158\139\229\177\177",
380 ["Undercity"] = "\229\185\189\230\154\151\229\159\142",
381 ["Wailing Caverns"] = "\229\147\128\229\154\142\230\180\158\231\169\180",
382 ["Warsong Gulch"] = "\230\136\152\230\173\140\229\179\161\232\176\183",
383 ["Western Plaguelands"] = "\232\165\191\231\152\159\231\150\171\228\185\139\229\156\176",
384 ["Westfall"] = "\232\165\191\233\131\168\232\141\146\233\135\142",
385 ["Wetlands"] = "\230\185\191\229\156\176",
386 ["Winterspring"] = "\229\134\172\230\179\137\232\176\183",
387 ["Zul'Farrak"] = "\231\165\150\229\176\148\230\179\149\230\139\137\229\133\139",
388 ["Zul'Gurub"] = "\231\165\150\229\176\148\230\160\188\230\139\137\229\184\131",
389 }
390 end)
391  
392 BabbleZone:RegisterTranslations("koKR", function()
393 return {
394 ["Ahn'Qiraj"] = "안퀴라즈",
395 ["Alterac Mountains"] = "알터랙 산맥",
396 ["Alterac Valley"] = "알터랙 계곡",
397 ["Arathi Basin"] = "아라시 분지",
398 ["Arathi Highlands"] = "아라시 고원",
399 ["Ashenvale"] = "잿빛 골짜기",
400 ["Azshara"] = "아즈샤라",
401 ["Badlands"] = "황야의 땅",
402 ["The Barrens"] = "불모의 땅",
403 ["Blackfathom Deeps"] = "검은 심연의 나락",
404 ["Blackrock Depths"] = "검은바위 나락",
405 ["Blackrock Mountain"] = "검은바위 산",
406 ["Blackrock Spire"] = "검은바위 첨탑",
407 ["Blackwing Lair"] = "검은날개 둥지",
408 ["Blasted Lands"] = "저주받은 땅",
409 ["Booty Bay"] = "무법항",
410 ["Burning Steppes"] = "불타는 평원",
411 ["Caverns of Time"] = "시간의 동굴",
412 ["Darkshore"] = "어둠의 해안",
413 ["Darnassus"] = "다르나서스",
414 ["The Deadmines"] = "죽음의 폐광",
415 ["Deadwind Pass"] = "죽음의 고개",
416 ["Deeprun Tram"] = "깊은굴 지하철",
417 ["Desolace"] = "잊혀진 땅",
418 ["Dire Maul"] = "혈투의 전장",
419 ["Dun Morogh"] = "던 모로",
420 ["Durotar"] = "듀로타",
421 ["Duskwood"] = "그늘숲",
422 ["Dustwallow Marsh"] = "먼지진흙 습지대",
423 ["Eastern Plaguelands"] = "동부 역병지대",
424 ["Elwynn Forest"] = "엘윈 숲",
425 ["Felwood"] = "악령의 숲",
426 ["Feralas"] = "페랄라스",
427 ["The Forbidding Sea"] = "성난폭풍 해안",
428 ["Gadgetzan"] = "가젯잔",
429 ["Gnomeregan"] = "놈리건",
430 ["The Great Sea"] = "대해",
431 ["Hall of Legends"] = "용사의 전당",
432 ["Hillsbrad Foothills"] = "힐스브래드 구릉지",
433 ["The Hinterlands"] = "동부 내륙지",
434 ["Hyjal"] = "하이잘",
435 ["Ironforge"] = "아이언포지",
436 ["Loch Modan"] = "모단 호수",
437 ["Maraudon"] = "마라우돈",
438 ["Molten Core"] = "화산 심장부",
439 ["Moonglade"] = "달의 숲",
440 ["Mulgore"] = "멀고어",
441 ["Naxxramas"] = "낙스라마스",
442 ["Onyxia's Lair"] = "오닉시아의 둥지",
443 ["Orgrimmar"] = "오그리마",
444 ["Ratchet"] = "톱니항",
445 ["Ragefire Chasm"] = "성난 불길협곡",
446 ["Razorfen Downs"] = "가시덩쿨 구릉",
447 ["Razorfen Kraul"] = "가시덩쿨 우리",
448 ["Redridge Mountains"] = "붉은마루 산맥",
449 ["Ruins of Ahn'Qiraj"] = "안퀴라즈 폐허",
450 ["Scarlet Monastery"] = "붉은 십자군 수도원",
451 ["Scholomance"] = "스칼로맨스",
452 ["Searing Gorge"] = "이글거리는 협곡",
453 ["Shadowfang Keep"] = "그림자 송곳니 성채",
454 ["Silithus"] = "실리더스",
455 ["Silverpine Forest"] = "은빛소나무 숲",
456 ["The Stockade"] = "지하감옥",
457 ["Stonetalon Mountains"] = "돌발톱 산맥",
458 ["Stormwind City"] = "스톰윈드",
459 ["Stranglethorn Vale"] = "가시덤불 골짜기",
460 ["Stratholme"] = "스트라솔름",
461 ["Swamp of Sorrows"] = "슬픔의 늪",
462 ["Tanaris"] = "타나리스",
463 ["Teldrassil"] = "텔드랏실",
464 ["Temple of Ahn'Qiraj"] = "안퀴라즈",
465 ["The Temple of Atal'Hakkar"] = "아탈학카르 신전",
466 ["Thousand Needles"] = "버섯구름 봉우리",
467 ["Thunder Bluff"] = "썬더 블러프",
468 ["Tirisfal Glades"] = "티리스팔 숲",
469 ["Uldaman"] = "울다만",
470 ["Un'Goro Crater"] = "운고로 분화구",
471 ["Undercity"] = "언더시티",
472 ["Wailing Caverns"] = "통곡의 동굴",
473 ["Warsong Gulch"] = "전쟁노래 협곡",
474 ["Western Plaguelands"] = "서부 역병지대",
475 ["Westfall"] = "서부 몰락지대",
476 ["Wetlands"] = "저습지",
477 ["Winterspring"] = "여명의 설원",
478 ["Zul'Farrak"] = "줄파락",
479 ["Zul'Gurub"] = "줄구룹",
480 }
481 end)
482  
483 BabbleZone:Debug()
484 BabbleZone:SetStrictness(true)
485  
486 AceLibrary:Register(BabbleZone, MAJOR_VERSION, MINOR_VERSION)
487 BabbleZone = nil