share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <almikes@aol.com>
Sat, 09 Apr 2016 22:13:47 +0200
changeset 12013 3e615852f36e
parent 8824 fe9eacd390f2
child 13088 2b5314cc356c
permissions -rw-r--r--
Add loc_noop to Locale Lua library For collecting strings without translating them (yet)

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