mirror of
https://github.com/parnic/LibDogTag-3.0.git
synced 2025-06-16 20:20:14 -05:00
17 lines
404 B
Lua
17 lines
404 B
Lua
local MAJOR_VERSION = "LibDogTag-3.0"
|
|
local MINOR_VERSION = tonumber(("@project-date-integer@"):match("%d+")) or 33333333333333
|
|
|
|
if MINOR_VERSION > _G.DogTag_MINOR_VERSION then
|
|
_G.DogTag_MINOR_VERSION = MINOR_VERSION
|
|
end
|
|
|
|
if GetLocale() == "koKR" then
|
|
|
|
DogTag_funcs[#DogTag_funcs+1] = function(DogTag)
|
|
local L = DogTag.L
|
|
|
|
L["DogTag Help"] = "DogTag 도움말"
|
|
L["True"] = "True" -- check
|
|
end
|
|
|
|
end |