share/hedgewars/Data/Scripts/Locale.lua
author sheepluva
Fri, 29 Sep 2017 22:09:11 +0200
changeset 12597 00b539e6115d
parent 12018 3e615852f36e
child 13093 2b5314cc356c
permissions -rw-r--r--
rename ifTransparent to ifColorKey This should make the name less confusing. However this image-flag will possibly be dropped completely.

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