This commit is contained in:
HybridDog 2015-02-14 22:08:10 +00:00
commit d7060e2dc1
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
-- Support the old multi-load method -- Support the old multi-load method
intllib = intllib or {} intllib = rawget(_G, "intllib") or {}
local MP = minetest.get_modpath("intllib") local MP = minetest.get_modpath("intllib")
@ -23,7 +23,7 @@ local insertion_pattern = "("..INS_CHAR.."?)"..INS_CHAR.."(%(?)(%d+)(%)?)"
local function make_getter(msgstrs) local function make_getter(msgstrs)
return function(s, ...) return function(s, ...)
local str local str
if strs then if rawget(_G, "strs") then
str = msgstrs[s] str = msgstrs[s]
end end
if not str or str == "" then if not str or str == "" then