OSDN Git Service

Except in files.c, replaced "posture" or "form" with "stance" in the English messages...
authorEric Branlund <ebranlund@fastmail.com>
Sun, 15 Dec 2019 05:16:54 +0000 (21:16 -0800)
committerdeskull <deskull@users.sourceforge.jp>
Sun, 9 Feb 2020 13:36:51 +0000 (22:36 +0900)
src/player-effects.c

index af5e42c..fb5b9b2 100644 (file)
@@ -130,13 +130,13 @@ void set_action(player_type *creature_ptr, ACTION_IDX typ)
                        }
                        case ACTION_KAMAE:
                        {
-                               msg_print(_("構えをといた。", "You stop assuming the posture."));
+                               msg_print(_("構えをといた。", "You stop assuming the special stance."));
                                creature_ptr->special_defense &= ~(KAMAE_MASK);
                                break;
                        }
                        case ACTION_KATA:
                        {
-                               msg_print(_("型を崩した。", "You stop assuming the posture."));
+                               msg_print(_("型を崩した。", "You stop assuming the special stance."));
                                creature_ptr->special_defense &= ~(KATA_MASK);
                                creature_ptr->update |= (PU_MONSTERS);
                                creature_ptr->redraw |= (PR_STATUS);