From e046c30483efccb1fd70a2f088146d0423b30158 Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Tue, 24 Sep 2019 18:28:21 -0700 Subject: [PATCH] In English message for a door blocked from closing, "stuck" is an awkward adjective to use for a place. Reworded the message to be more specific about what is happening. --- src/cmd/cmd-basic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/cmd-basic.c b/src/cmd/cmd-basic.c index 5ba7bd7aa..8e199260b 100644 --- a/src/cmd/cmd-basic.c +++ b/src/cmd/cmd-basic.c @@ -127,7 +127,7 @@ bool cmd_limit_image(player_type *creature_ptr) { if (creature_ptr->image) { - msg_print(_("幻覚が見えて集中できない!", "You are too hallucinated!")); + msg_print(_("幻覚が見えて集中できない!", "Your hallucinations prevent you from concentrating!")); return TRUE; } return FALSE; @@ -908,7 +908,7 @@ static bool exe_close(player_type *creature_ptr, POSITION y, POSITION x) if ((g_ptr->o_idx || (g_ptr->info & CAVE_OBJECT)) && (closed_feat != old_feat) && !have_flag(f_info[closed_feat].flags, FF_DROP)) { - msg_print(_("何かがつっかえて閉まらない。", "There seems stuck.")); + msg_print(_("何かがつっかえて閉まらない。", "Something prevents it from closing.")); } else { -- 2.11.0