From 78cbebdc2791575cf3bcb2c4d4e8bfdfccc2a1fc Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Thu, 26 Sep 2019 12:45:03 -0700 Subject: [PATCH] For the English messages about the remove curse for mana spell, got rid of "away" since "vanish" is enough and added an indefinite article. --- src/realm-hex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/realm-hex.c b/src/realm-hex.c index 37356b25f..1fc5f4002 100644 --- a/src/realm-hex.c +++ b/src/realm-hex.c @@ -940,13 +940,13 @@ concptr do_hex_spell(SPELL_IDX spell, BIT_FLAGS mode) { if (one_in_(7)) { - msg_print(_("呪いを全て吸い取った。", "Heavy curse vanished away.")); + msg_print(_("呪いを全て吸い取った。", "A heavy curse vanished.")); o_ptr->curse_flags = 0L; } } else if ((o_ptr->curse_flags & (TRC_CURSED)) && one_in_(3)) { - msg_print(_("呪いを全て吸い取った。", "Curse vanished away.")); + msg_print(_("呪いを全て吸い取った。", "A curse vanished.")); o_ptr->curse_flags = 0L; } -- 2.11.0