share/hedgewars/Data/Scripts/Locale.lua
author Wuzzy <almikes@aol.com>
Thu, 15 Jun 2017 15:50:23 +0200
changeset 12430 c461a224ec09
parent 12013 3e615852f36e
child 13088 2b5314cc356c
permissions -rw-r--r--
Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0

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