-
Notifications
You must be signed in to change notification settings - Fork 0
/
CheckFearWard3Locale.lua
45 lines (39 loc) · 1.63 KB
/
CheckFearWard3Locale.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
--[[
File Author: @file-author@
File Revision: @file-abbreviated-hash@
File Date: @file-date-iso@
]]--
local debug = false
--@debug@
debug = true
--@end-debug@
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "enUS", true)
if L then
--@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="subtable")@
if GetLocale() == "enUS" then return end
end
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "deDE")
if L then
--@localization(locale="deDE", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="concat")@
if GetLocale() == "deDE" then return end
end
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "zhCN")
if L then
--@localization(locale="zhCN", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="concat")@
if GetLocale() == "zhCN" then return end
end
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "zhTW")
if L then
--@localization(locale="zhTW", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="concat")@
if GetLocale() == "zhTW" then return end
end
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "koKR")
if L then
--@localization(locale="koKR", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="concat")@
if GetLocale() == "koKR" then return end
end
local L = LibStub("AceLocale-3.0"):NewLocale("CheckFearWard3", "frFR")
if L then
--@localization(locale="frFR", format="lua_additive_table", same-key-is-true=true, handle-subnamespaces="concat")@
if GetLocale() == "frFR" then return end
end