share/hedgewars/Data/Scripts/Locale.lua
author Xeli
Mon, 28 May 2012 19:15:51 +0200
changeset 7140 29948153fda2
parent 5616 a96231121eac
child 8349 a1dbe148f10f
permissions -rw-r--r--
Don't allow for multiple key up(or down) events, it will ignore the excess events

-- 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