2019-08-23 20:40:33 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
|
|
|
local minetest, nodecore, pairs
|
|
|
|
= minetest, nodecore, pairs
|
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
|
|
|
|
minetest.after(0, function()
|
2019-08-27 19:14:51 -04:00
|
|
|
for _, v in pairs(minetest.registered_items) do
|
|
|
|
if v.description then
|
|
|
|
nodecore.translate_inform(v.description)
|
|
|
|
end
|
|
|
|
if v.meta_descriptions then
|
|
|
|
for _, d in pairs(v.meta_descriptions) do
|
|
|
|
nodecore.translate_inform(d)
|
|
|
|
end
|
2019-08-23 20:40:33 -04:00
|
|
|
end
|
|
|
|
end
|
2019-08-27 19:14:51 -04:00
|
|
|
end)
|