share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <almikes@aol.com>
Wed, 11 Oct 2017 18:39:19 +0200
changeset 12694 5b135c26f320
parent 12018 3e615852f36e
child 13093 2b5314cc356c
permissions -rw-r--r--
Don't let player save ammo scheme with pre-installed name, even case-insensitively

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