From 2a9219c8f4aa5377e7d2288883edfc174bdd0d0e Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Wed, 27 Jan 2021 11:55:43 -0800 Subject: [PATCH] For readability of an English message, replaced "do" followed by a gerund with a simple verb. --- src/cmd-action/cmd-attack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0