-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocales.lua
More file actions
40 lines (37 loc) · 723 Bytes
/
Locales.lua
File metadata and controls
40 lines (37 loc) · 723 Bytes
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
local _, S = ...
local L = {
deDE = {
MSG_PLAYER_DING = "Ding! Stufe <LEVEL> in <TIME>",
},
enUS = {
MSG_PLAYER_DING = TUTORIAL_TITLE55.." "..LEVEL.." <LEVEL> in <TIME>",
},
esES = {
MSG_PLAYER_DING = "Ding! Nivel <LEVEL> en <TIME>",
},
esMX = {
},
frFR = {
},
itIT = {
},
koKR = {
MSG_PLAYER_DING = "두둥! <LEVEL> 레벨까지 <TIME> 소요",
},
ptBR = {
},
ruRU = {
},
zhCN = {
MSG_PLAYER_DING = "升级! 等级 <LEVEL> 使用 <TIME>",
},
zhTW = {
MSG_PLAYER_DING = "升級! 等級 <LEVEL> 使用 <TIME>",
},
}
L.esMX = L.esES -- esMX is empty
S.L = setmetatable(L[GetLocale()] or L.enUS, {__index = function(t, k)
local v = rawget(L.enUS, k) or k
rawset(t, k, v)
return v
end})