update intllib

This commit is contained in:
TenPlus1
2017-07-09 14:09:34 +01:00
parent b40fe3a2c7
commit 1c3d11ca30
2 changed files with 13 additions and 3 deletions

View File

@ -3,8 +3,14 @@ local path = minetest.get_modpath("mobs_animal")
-- Intllib
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
if minetest.global_exists("intllib") then
if intllib.make_gettext_pair then
-- New method using gettext.
S = intllib.make_gettext_pair()
else
-- Old method using text files.
S = intllib.Getter()
end
else
S = function(s) return s end
end