From: Eric Branlund Date: Sun, 15 Dec 2019 05:43:54 +0000 (-0800) Subject: In English messages, replaced "spelling" with "casting" when referring to the ongoing... X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3efdfb4ae7b248deeb49b100896c8644a5ea576c;p=hengband%2Fhengband.git In English messages, replaced "spelling" with "casting" when referring to the ongoing process of using a spell. --- diff --git a/src/player-effects.c b/src/player-effects.c index fb5b9b2a2..de8bafcfd 100644 --- a/src/player-effects.c +++ b/src/player-effects.c @@ -338,7 +338,7 @@ void dispel_player(player_type *creature_ptr) if (music_singing_any(creature_ptr) || hex_spelling_any(creature_ptr)) { - concptr str = (music_singing_any(creature_ptr)) ? _("歌", "singing") : _("呪文", "spelling"); + concptr str = (music_singing_any(creature_ptr)) ? _("歌", "singing") : _("呪文", "casting"); INTERUPTING_SONG_EFFECT(creature_ptr) = SINGING_SONG_EFFECT(creature_ptr); SINGING_SONG_EFFECT(creature_ptr) = MUSIC_NONE; msg_format(_("%sが途切れた。", "Your %s is interrupted."), str);