1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-15 12:10:25 +02:00

Update translations (#59)

* Update translations

* Fix usage of translation api in log message

* Fix %s usage in itemframes.it.tr
This commit is contained in:
Niklp
2023-08-20 23:54:38 +02:00
committed by GitHub
parent 60d63cda6f
commit ecd67f0eab
322 changed files with 1930 additions and 4188 deletions

View File

@ -193,8 +193,8 @@ minetest.register_on_player_receive_fields(function(player, form_name, fields)
if (fields.title or "") ~= "" then
meta:set_string("infotext", fields.title)
end
minetest.log("action", S("@1 has written in a book (title: \"@2\"): \"@3\" at location @4",
player:get_player_name(), fields.title, fields.text, minetest.pos_to_string(player:get_pos())))
minetest.log("action", ("%s has written in a book (title: \"%s\"): \"%s\" at location %s"):format(
player:get_player_name(), fields.title, fields.text, minetest.pos_to_string(pos)))
player_current_book[player_name] = nil
return true