share/hedgewars/Data/Scripts/Locale.lua
author nemo
Mon, 03 Dec 2018 12:43:49 -0500
branch0.9.23
changeset 14362 bdf5840863c6
parent 12013 3e615852f36e
child 13088 2b5314cc356c
permissions -rw-r--r--
close 0.9.23

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