share/hedgewars/Data/Scripts/Locale.lua
author Henek
Sun, 16 Jan 2011 01:20:36 +0100
changeset 4842 65eae3df18ac
parent 4502 759c1a3bb156
child 4854 881c8232b66a
permissions -rw-r--r--
readding cabal file for the server, burp not shure why it had gone

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

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