share/hedgewars/Data/Scripts/Locale.lua
author unC0Rr
Fri, 05 Feb 2016 11:32:23 +0300
changeset 11540 135094ab3146
parent 8824 fe9eacd390f2
child 11168 e104e060911b
child 12018 3e615852f36e
permissions -rw-r--r--
Racer maps #18 and #19

-- Library for localizing strings in lua scripts

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

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