OSDN Git Service

In English messages, replaced "ethereal form" with "ethereal" since the latter is...
authorEric Branlund <ebranlund@fastmail.com>
Wed, 25 Sep 2019 05:30:02 +0000 (22:30 -0700)
committerdeskull <deskull@users.sourceforge.jp>
Sun, 19 Jan 2020 06:33:03 +0000 (15:33 +0900)
src/mind.c
src/player-effects.c

index d64aa28..852bc23 100644 (file)
@@ -541,7 +541,7 @@ static concptr const mind_tips[5][MAX_MIND_POWERS] =
        "Releases a confusion ball which doesn't inflict any damage.",
        "Swaps positions of you and a monster.",
        "Sets a glyph under you. The glyph will explode when a monster moves on it.",
-       "Become ethereal form which gives ability to pass walls, and gives resistance to acid for a while. This resistance can be added to which from equipment for more powerful resistance.",
+       "Become ethereal for a period of time. While ethereal, you can pass through walls and are resistant to acid. This resistance can be added to which from equipment for more powerful resistance.",
        "Generates huge balls of poison, drain life and confusion, then teleport in a time.",
        "Fires some number of beams of fire, nether or plasma in random directions.",
        "Creates shadows of yourself which gives you abillity to completely evade any attacks at one in two chance for a while.",
index 976553c..09eb087 100644 (file)
@@ -2127,7 +2127,7 @@ bool set_kabenuke(player_type *creature_ptr, TIME_EFFECT v, bool do_dec)
                }
                else if (!creature_ptr->kabenuke)
                {
-                       msg_print(_("体が半物質の状態になった。", "You became ethereal form."));
+                       msg_print(_("体が半物質の状態になった。", "You became ethereal."));
                        notice = TRUE;
                }
        }
@@ -2136,7 +2136,7 @@ bool set_kabenuke(player_type *creature_ptr, TIME_EFFECT v, bool do_dec)
        {
                if (creature_ptr->kabenuke)
                {
-                       msg_print(_("体が物質化した。", "You are no longer in an ethereal form."));
+                       msg_print(_("体が物質化した。", "You are no longer ethereal."));
                        notice = TRUE;
                }
        }