Fix intllib boilerplate code

This commit is contained in:
sys4-fr
2017-04-03 01:50:59 +02:00
committed by rubenwardy
parent 54e7fa3b81
commit 93de17fdc3
4 changed files with 11 additions and 8 deletions

View File

@ -8,9 +8,8 @@
-- Boilerplate to support localized strings if intllib mod is installed.
local S = 0
if rawget(_G, "intllib") then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function ( s ) return s end
end