1
0
mirror of https://codeberg.org/tenplus1/mobs_redo.git synced 2025-07-03 00:40:20 +02:00

update translation (thanks Niklp)

This commit is contained in:
tenplus1
2023-08-13 10:07:09 +01:00
parent 32231d5043
commit 3ca3d656cb
16 changed files with 421 additions and 339 deletions

View File

@ -1,5 +1,6 @@
local S = mobs.intllib
local S = mobs.translate
local FS = function(...) return minetest.formspec_escape(S(...)) end
local mc2 = minetest.get_modpath("mcl_core")
-- recipe items
@ -326,9 +327,9 @@ minetest.register_tool(":mobs:mob_reset_stick", {
minetest.show_formspec(name, "mobs_texture", "size[8,4]"
.. "field[0.5,1;7.5,0;name;"
.. minetest.formspec_escape(S("Enter texture:")) .. ";" .. bt .. "]"
.. FS("Enter texture:") .. ";" .. bt .. "]"
.. "button_exit[2.5,3.5;3,1;mob_texture_change;"
.. minetest.formspec_escape(S("Change")) .. "]")
.. FS("Change") .. "]")
end
end
})