From 1ba105feba1649f46afd81597e5ce0a423cd104b Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Wed, 27 Jan 2021 12:10:11 -0800 Subject: [PATCH] For readability, change English dismount message to present tense and change the verb used. --- src/cmd-action/cmd-pet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd-action/cmd-pet.c b/src/cmd-action/cmd-pet.c index 8a381d79a..f5d2e214c 100644 --- a/src/cmd-action/cmd-pet.c +++ b/src/cmd-action/cmd-pet.c @@ -150,7 +150,7 @@ void do_cmd_pet_dismiss(player_type *creature_ptr) } if (pet_ctr == creature_ptr->riding) { - msg_format(_("%sから降りた。", "You have got off %s. "), friend_name); + msg_format(_("%sから降りた。", "You dismount from %s. "), friend_name); creature_ptr->riding = 0; -- 2.11.0