share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <almikes@aol.com>
Sun, 16 Apr 2017 04:49:05 +0200
changeset 12268 2eedf9e0cd6d
parent 12013 3e615852f36e
child 13088 2b5314cc356c
permissions -rw-r--r--
Replace some HTTP links with HTTPS links Don't worry, I have tested all the links

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