From 9b9eaa5b1ae0175fc2d0977f146a2677ee6ea51f Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Tue, 24 Sep 2019 23:20:52 -0700 Subject: [PATCH] Changed "riding pet" to "pet you are/were riding" for a clearer English messages. Another option, more concise option, would be to replace "riding pet" with "steed" but that loses the connection with pets. --- src/cmd/cmd-pet.c | 6 +++--- src/monster-process.c | 4 ++-- src/monster1.c | 2 +- src/player-status.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cmd/cmd-pet.c b/src/cmd/cmd-pet.c index 0a5640346..924200d04 100644 --- a/src/cmd/cmd-pet.c +++ b/src/cmd/cmd-pet.c @@ -609,7 +609,7 @@ void do_cmd_pet(player_type *creature_ptr) { if (creature_ptr->pet_extra_flags & PF_TWO_HANDS) { - power_desc[num] = _("武器を片手で持つ", "use one hand to control a riding pet"); + power_desc[num] = _("武器を片手で持つ", "use one hand to control the pet you are riding"); } else { @@ -629,7 +629,7 @@ void do_cmd_pet(player_type *creature_ptr) { if (creature_ptr->pet_extra_flags & PF_TWO_HANDS) { - power_desc[num] = _("片手で格闘する", "use one hand to control a riding pet"); + power_desc[num] = _("片手で格闘する", "use one hand to control the pet you are riding"); } else { @@ -642,7 +642,7 @@ void do_cmd_pet(player_type *creature_ptr) { if (creature_ptr->pet_extra_flags & PF_TWO_HANDS) { - power_desc[num] = _("格闘を行わない", "use one hand to control a riding pet"); + power_desc[num] = _("格闘を行わない", "use one hand to control the pet you are riding"); } else { diff --git a/src/monster-process.c b/src/monster-process.c index 138389db3..0b4ff9f43 100644 --- a/src/monster-process.c +++ b/src/monster-process.c @@ -1372,7 +1372,7 @@ void process_monster(player_type *target_ptr, MONSTER_IDX m_idx) msg_format(_("%sはあなたの束縛から脱出した。", "%^s succeeded to escape from your restriction!"), m_name); if (rakuba(target_ptr, -1, FALSE)) { - msg_print(_("地面に落とされた。", "You have fallen from riding pet.")); + msg_print(_("地面に落とされた。", "You have fallen from the pet you were riding.")); } } @@ -1389,7 +1389,7 @@ void process_monster(player_type *target_ptr, MONSTER_IDX m_idx) if (is_riding_mon && rakuba(target_ptr, -1, FALSE)) { - msg_print(_("地面に落とされた。", "You have fallen from riding pet.")); + msg_print(_("地面に落とされた。", "You have fallen from the pet you were riding.")); } check_quest_completion(target_ptr, m_ptr); diff --git a/src/monster1.c b/src/monster1.c index 3c3d1a73d..cbb8d1e0a 100644 --- a/src/monster1.c +++ b/src/monster1.c @@ -2461,7 +2461,7 @@ void monster_death(player_type *player_ptr, MONSTER_IDX m_idx, bool drop_item) { if (rakuba(player_ptr, -1, FALSE)) { - msg_print(_("地面に落とされた。", "You have fallen from your riding pet.")); + msg_print(_("地面に落とされた。", "You have fallen from the pet you were riding.")); } } diff --git a/src/player-status.c b/src/player-status.c index c6efa5f67..1fb4e0bb4 100644 --- a/src/player-status.c +++ b/src/player-status.c @@ -3808,7 +3808,7 @@ void calc_bonuses(player_type *creature_ptr) #ifdef JP msg_format("%s馬を操れない。", (empty_hands(creature_ptr, FALSE) == EMPTY_HAND_NONE) ? "両手がふさがっていて" : ""); #else - msg_print("You are using both hand for fighting, and you can't control a riding pet."); + msg_print("You are using both hand for fighting, and you can't control the pet you're riding."); #endif } else @@ -3816,7 +3816,7 @@ void calc_bonuses(player_type *creature_ptr) #ifdef JP msg_format("%s馬を操れるようになった。", (empty_hands(creature_ptr, FALSE) == EMPTY_HAND_NONE) ? "手が空いて" : ""); #else - msg_print("You began to control riding pet with one hand."); + msg_print("You began to control the pet you're riding with one hand."); #endif } -- 2.11.0