share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 17:04:15 +0100
changeset 12041 4cdea287bbf9
parent 12013 3e615852f36e
child 13088 2b5314cc356c
permissions -rw-r--r--
HedgeEditor: Rename “Standard” target and cleaver to just target and cleaver

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