Skip to content
Snippets Groups Projects
Commit 6c8ea9e5 authored by TenPlus1's avatar TenPlus1
Browse files

update intllib

parent 99b8a247
No related branches found
No related tags found
No related merge requests found
......@@ -56,8 +56,14 @@ end
-- 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment