From 8bb53a659dfb4e2a31864cfc653c4cb2038ca2cc Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Sun, 15 Dec 2019 10:58:15 -0800 Subject: [PATCH 1/1] For English message, replaced "did Seppuku" with "committed seppuku" since the literal English translation would be "committed ritual suicide". --- src/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.c b/src/files.c index 87ffdf34a..ae0a50cdc 100644 --- a/src/files.c +++ b/src/files.c @@ -3460,7 +3460,7 @@ void display_player(player_type *creature_ptr, int mode) #ifdef JP sprintf(statmsg, "…あなたは勝利の後%sした。", streq(creature_ptr->died_from, "Seppuku") ? "切腹" : "引退"); #else - sprintf(statmsg, "...You %s after winning.", streq(creature_ptr->died_from, "Seppuku") ? "did Seppuku" : "retired from the adventure"); + sprintf(statmsg, "...You %s after winning.", streq(creature_ptr->died_from, "Seppuku") ? "committed seppuku" : "retired from the adventure"); #endif } else if (!floor_ptr->dun_level) -- 2.11.0