share/hedgewars/Data/Scripts/Locale.lua
author nemo
Tue, 11 Mar 2014 22:49:01 -0400
changeset 10192 bb1310c4bd79
parent 8824 fe9eacd390f2
child 12013 3e615852f36e
permissions -rw-r--r--
Feel free to revert this one, was just screwing around with stuff from before. I kinda like it and figured committing it was the easiest way for you to look at it. http://m8y.org/hw/perlin.png

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