update translation checks

This commit is contained in:
tenplus1 2022-01-20 08:57:36 +00:00
parent 9e0021a0f8
commit 8996ad27d8
2 changed files with 26 additions and 5 deletions

View File

@ -1,8 +1,29 @@
-- Load support for intllib.
local MP = minetest.get_modpath(minetest.get_current_modname()) .. "/"
local S = minetest.get_translator and minetest.get_translator("mob_horse") or
dofile(MP .. "intllib.lua")
-- Check for translation method
local S
if minetest.get_translator ~= nil then
S = minetest.get_translator("mob_horse") -- 5.x translation function
else
if minetest.get_modpath("intllib") then
dofile(minetest.get_modpath("intllib") .. "/init.lua")
if intllib.make_gettext_pair then
gettext, ngettext = intllib.make_gettext_pair() -- new gettext method
else
gettext = intllib.Getter() -- old text file method
end
S = gettext
else -- boilerplate function
S = function(str, ...)
local args = {...}
return str:gsub("@%d+", function(match)
return args[tonumber(match:sub(2))]
end)
end
end
end
-- 0.4.17 or 5.0 check
@ -348,3 +369,6 @@ lucky_block:add_blocks({
})
end
print("[MOD] Mob Horse loaded")

View File

@ -1,3 +0,0 @@
-- Support for the old multi-load method
return dofile(minetest.get_modpath("intllib").."/init.lua")