summaryrefslogtreecommitdiff
path: root/builtin/client/death_formspec.lua
diff options
context:
space:
mode:
authorWuzzy <wuzzy2@mail.ru>2021-03-05 15:27:33 +0000
committerSmallJoker <mk939@ymail.com>2021-03-05 16:29:48 +0100
commitcafad6ac03348aa77e8ee4bb035840e73de4b2a9 (patch)
treebf4b24df4e92ea49ccccb19101671bb136abba12 /builtin/client/death_formspec.lua
parentac8ac191691a13162667314358e96f07a65d0d1a (diff)
downloadminetest-cafad6ac03348aa77e8ee4bb035840e73de4b2a9.tar.gz
minetest-cafad6ac03348aa77e8ee4bb035840e73de4b2a9.tar.bz2
minetest-cafad6ac03348aa77e8ee4bb035840e73de4b2a9.zip
Translate builtin (#10693)
This PR is the second attempt to translate builtin. Server-sent translation files can be added to `builtin/locale/`, whereas client-side translations depend on gettext.
Diffstat (limited to 'builtin/client/death_formspec.lua')
-rw-r--r--builtin/client/death_formspec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/client/death_formspec.lua b/builtin/client/death_formspec.lua
index e755ac5c1..7df0cbd75 100644
--- a/builtin/client/death_formspec.lua
+++ b/builtin/client/death_formspec.lua
@@ -2,7 +2,7 @@
-- handled by the engine.
core.register_on_death(function()
- core.display_chat_message("You died.")
+ core.display_chat_message(core.gettext("You died."))
local formspec = "size[11,5.5]bgcolor[#320000b4;true]" ..
"label[4.85,1.35;" .. fgettext("You died") ..
"]button_exit[4,3;3,0.5;btn_respawn;".. fgettext("Respawn") .."]"