From: Eric Branlund Date: Wed, 27 Jan 2021 19:55:43 +0000 (-0800) Subject: For readability of an English message, replaced "do" followed by a gerund with a... X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2a9219c8f4aa5377e7d2288883edfc174bdd0d0e;p=hengband%2Fhengband.git For readability of an English message, replaced "do" followed by a gerund with a simple verb. --- diff --git a/src/cmd-action/cmd-attack.c b/src/cmd-action/cmd-attack.c index 021ba235c..02f5d7478 100644 --- a/src/cmd-action/cmd-attack.c +++ b/src/cmd-action/cmd-attack.c @@ -171,7 +171,7 @@ bool do_cmd_attack(player_type *attacker_ptr, POSITION y, POSITION x, combat_opt if (!has_right_hand_weapon(attacker_ptr) && !has_left_hand_weapon(attacker_ptr) && !(attacker_ptr->muta2 & (MUT2_HORNS | MUT2_BEAK | MUT2_SCOR_TAIL | MUT2_TRUNK | MUT2_TENTACLES))) { - msg_format(_("%s攻撃できない。", "You cannot do attacking."), (empty_hands(attacker_ptr, FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : ""); + msg_format(_("%s攻撃できない。", "You cannot attack."), (empty_hands(attacker_ptr, FALSE) == EMPTY_HAND_NONE) ? _("両手がふさがって", "") : ""); return FALSE; }