-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLocalization.lua
More file actions
61 lines (49 loc) · 1.99 KB
/
Localization.lua
File metadata and controls
61 lines (49 loc) · 1.99 KB
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
57
58
59
60
61
-- Inventorian Locale
-- Please use the Localization App on WoWAce to Update this
-- http://www.wowace.com/projects/inventorian/localization/
local debug = false
--@debug@
debug = true
--@end-debug@
local L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "enUS", true, debug)
--@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true)@
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "deDE")
if L then
--@localization(locale="deDE", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "esES")
if L then
--@localization(locale="esES", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "esMX")
if L then
--@localization(locale="esMX", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "frFR")
if L then
--@localization(locale="frFR", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "itIT")
if L then
--@localization(locale="itIT", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "koKR")
if L then
--@localization(locale="koKR", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "ptBR")
if L then
--@localization(locale="ptBR", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "ruRU")
if L then
--@localization(locale="ruRU", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "zhCN")
if L then
--@localization(locale="zhCN", format="lua_additive_table", handle-unlocalized="ignore")@
end
L = LibStub("AceLocale-3.0"):NewLocale("Inventorian", "zhTW")
if L then
--@localization(locale="zhTW", format="lua_additive_table", handle-unlocalized="ignore")@
end