-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Locales.lua
54 lines (42 loc) · 1.2 KB
/
Locales.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
--[[
This file is part of 'Masque: LiteStep', an add-on for World of Warcraft. For bug reports,
documentation and license information, please visit https://github.com/SFX-WoW/Masque_LiteStep.
* File...: Locales.lua
* Author.: StormFX
]]
local _, Core = ...
----------------------------------------
-- WoW API
---
local Locale = GetLocale()
----------------------------------------
-- Local
---
local L = {}
----------------------------------------
-- Core
---
Core.Locale = setmetatable(L, {
__index = function(self, k)
self[k] = k
return k
end
})
----------------------------------------
-- Localization
---
if Locale == "enGB" or Locale == "enUS" then
-- enUS/enGB for Reference
--L["A port of the original LiteStep skin by Saynt."] = "A port of the original LiteStep skin by Saynt."
--L["An alternate version of LiteStep without borders."] = "An alternate version of LiteStep without borders."
return
--elseif Locale == "deDE" then
--elseif Locale == "esES" or Locale == "esMX" then
--elseif Locale == "frFR" then
--elseif Locale == "itIT" then
--elseif Locale == "koKR" then
--elseif Locale == "ptBR" then
--elseif Locale == "ruRU" then
--elseif Locale == "zhCN" then
--elseif Locale == "zhTW" then
end