vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --$Id: locals.lua 8366 2006-08-18 12:53:47Z gamefaq $
2  
3 -- zhCN localization by hk2717
4 -- deDE localization by Gamefaq
5  
6 local L = AceLibrary("AceLocale-2.0"):new("OneBank")
7  
8 L:RegisterTranslations("enUS", function()
9 return {
10 ["First Bag"] = true,
11 ["Turns display of your first bag on and off."] = true,
12 ["Second Bag"] = true,
13 ["Turns display of your second bag on and off."] = true,
14 ["Third Bag"] = true,
15 ["Turns display of your third bag on and off."] = true,
16 ["Fourth Bag"] = true,
17 ["Turns display of your fourth bag on and off."] = true,
18 ["Fifth Bag"] = true,
19 ["Turns display of your fifth bag on and off."] = true,
20 ["Sixth Bag"] = true,
21 ["Turns display of your sixth bag on and off."] = true,
22 ["'s Bank Bags"] = true,
23 }
24 end)
25  
26 L:RegisterTranslations("zhCN", function()
27 return {
28 ["First Bag"] = "第一个包",
29 ["Turns display of your first bag on and off."] = "切换是否显示第一个包。",
30 ["Second Bag"] = "第二个包",
31 ["Turns display of your second bag on and off."] = "切换是否显示第二个包。",
32 ["Third Bag"] = "第三个包",
33 ["Turns display of your third bag on and off."] = "切换是否显示第三个包。",
34 ["Fourth Bag"] = "第四个包",
35 ["Turns display of your fourth bag on and off."] = "切换是否显示第四个包。",
36 ["Fifth Bag"] = "第五个包",
37 ["Turns display of your fifth bag on and off."] = "切换是否显示第五个包。",
38 ["Sixth Bag"] = "第六个包",
39 ["Turns display of your sixth bag on and off."] = "切换是否显示第六个包。",
40 ["'s Bank Bags"] = "的银行",
41 }
42 end)
43  
44 L:RegisterTranslations("deDE", function()
45 return {
46 ["First Bag"] = "Erste Tasche",
47 ["Turns display of your first bag on and off."] = "Schaltet das Anzeigen der ersten Tasche an und aus",
48 ["Second Bag"] = "Zweite Tasche",
49 ["Turns display of your second bag on and off."] = "Schaltet das Anzeigen der zweiten Bank Tasche an und aus",
50 ["Third Bag"] = "Dritte Tasche",
51 ["Turns display of your third bag on and off."] = "Schaltet das Anzeigen der dritten Tasche an und aus",
52 ["Fourth Bag"] = "Vierte Tasche",
53 ["Turns display of your fourth bag on and off."] = "Schaltet das Anzeigen der vierte Tasche an und aus",
54 ["Fifth Bag"] = "F\195\188nfte Tasche",
55 ["Turns display of your fifth bag on and off."] = "Schaltet das Anzeigen der f\195\188nften Tasche an und aus",
56 ["Sixth Bag"] = "Sechste Tasche",
57 ["Turns display of your sixth bag on and off."] = "Schaltet das Anzeigen der sechsten Tasche an und aus",
58 ["'s Bank Bags"] = "'s Bank Taschen",
59 }
60 end)