From: Eric Branlund Date: Wed, 27 Jan 2021 20:16:10 +0000 (-0800) Subject: Correct subject-verb agreement in English message ("nothing" is singular). X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f9f7e2ad3fdbe709a3f35e7685a3b3701e537ed8;p=hengband%2Fhengband.git Correct subject-verb agreement in English message ("nothing" is singular). --- diff --git a/src/cmd-action/cmd-mane.c b/src/cmd-action/cmd-mane.c index 9e951f949..751cfa3fe 100644 --- a/src/cmd-action/cmd-mane.c +++ b/src/cmd-action/cmd-mane.c @@ -877,7 +877,7 @@ static bool use_mane(player_type *caster_ptr, int spell) trap_creation(caster_ptr, target_row, target_col); break; case MS_FORGET: - msg_print(_("しかし何も起きなかった。", "Nothing happen.")); + msg_print(_("しかし何も起きなかった。", "Nothing happens.")); break; case MS_RAISE_DEAD: msg_print(_("死者復活の呪文を唱えた。", "You animate the dead."));