share/hedgewars/Data/Scripts/Locale.lua
author belphegorr <szabibibi@gmail.com>
Fri, 10 Aug 2012 00:20:21 +0300
changeset 7438 195f9cbd6df6
parent 5616 a96231121eac
child 8349 a1dbe148f10f
permissions -rw-r--r--
Modified Animate.lua: Modified event removal function to check if removed event is before current one, added optional parameter to RemoveEventFunc for optional checking of parameter list identicity.

-- Library for localizing strings in lua scripts

local lang = loadfile(GetUserDataPath() .. "Locale/" .. tostring(L) .. ".lua")

if lang ~= nil then
    lang()
else
    lang = loadfile(GetDataPath() .. "Locale/" .. tostring(L) .. ".lua")
    if lang ~= nil then
        lang()
    end
end

function loc(text)
    if lang ~= nil and locale ~= nil and locale[text] ~= nil then return locale[text]
    else return text
    end
end