share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <Wuzzy2@mail.ru>
Sun, 29 Oct 2017 19:06:02 +0100
changeset 12803 fdb3730aa0e2
parent 12018 3e615852f36e
child 13093 2b5314cc356c
permissions -rw-r--r--
ACF6: Make sure player only gets portal gun at the portal sequence, and not a pile full of weapons and ropes

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