-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocalizations.lua
57 lines (46 loc) · 2.21 KB
/
localizations.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
local AppName = ...
local AL = LibStub("AceLocale-3.0")
local L = AL:NewLocale(AppName, "enUS", true)
L["focus"] = "Focus"
L["mouseover"] = "Mouseover"
L["pet"] = "Pet"
L["playertarget"] = "Target"
L["arena%d"]="Arena%d"
L["|cffeda55fControl + Left Click|r to lock frames"] = "|cffeda55fControl + Left Click|r to lock frames"
L["|cffeda55fDrag|r to move the frame"] = "|cffeda55fDrag|r to move the frame"
L["|cffeda55fLeft Click|r to lock/unlock frames"] = "|cffeda55fLeft Click|r to lock/unlock frames"
L["|cffeda55fShift + Left Click|r to toggle sound"] = "|cffeda55fShift + Left Click|r to toggle sound"
L["|cffeda55fRight Click|r to open the configuration window"] = "|cffeda55fRight Click|r to open the configuration window"
-----------------------------------------------------------------------------
L = AL:NewLocale(AppName, "deDE")
if L then
--@localization(locale="deDE", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "esES")
if L then
--@localization(locale="esES", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "esMX")
if L then
--@localization(locale="esMX", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "frFR")
if L then
--@localization(locale="frFR", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "koKR")
if L then
--@localization(locale="koKR", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "ruRU")
if L then
--@localization(locale="ruRU", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "zhCN")
if L then
--@localization(locale="zhCN", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end
L = AL:NewLocale(AppName, "zhTW")
if L then
--@localization(locale="zhTW", format="lua_additive_table", handle-subnamespaces="none", namespace="", handle-unlocalized="ignore")@
end