share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <Wuzzy2@mail.ru>
Sat, 28 Oct 2017 07:59:41 +0200
changeset 12792 8fa21750470f
parent 12013 3e615852f36e
child 13088 2b5314cc356c
permissions -rw-r--r--
HedgeEditor: Define fallback flag/voice/fort/grave when saving level data

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

function loc_noop(text)
    return text
end