From: Eric Branlund Date: Wed, 25 Sep 2019 06:20:52 +0000 (-0700) Subject: Changed "riding pet" to "pet you are/were riding" for a clearer English messages... X-Git-Tag: vmacos2.2.1-7a~255 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=fd516b96490d47372e7c2c467f445cdee6c67120;p=hengbandforosx%2Fhengbandosx.git 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. --- diff --git a/src/cmd-pet.c b/src/cmd-pet.c index e6adb763b..f7024562c 100644 --- a/src/cmd-pet.c +++ b/src/cmd-pet.c @@ -591,7 +591,7 @@ void do_cmd_pet(void) { if (p_ptr->pet_extra_flags & PF_RYOUTE) { - 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 { @@ -611,7 +611,7 @@ void do_cmd_pet(void) { if (p_ptr->pet_extra_flags & PF_RYOUTE) { - 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 { @@ -624,7 +624,7 @@ void do_cmd_pet(void) { if (p_ptr->pet_extra_flags & PF_RYOUTE) { - 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 eb098da15..dc5a5cc18 100644 --- a/src/monster-process.c +++ b/src/monster-process.c @@ -2232,7 +2232,7 @@ void process_monster(MONSTER_IDX m_idx) msg_format(_("%sはあなたの束縛から脱出した。", "%^s succeeded to escape from your restriction!"), m_name); if (rakuba(-1, FALSE)) { - msg_print(_("地面に落とされた。", "You have fallen from riding pet.")); + msg_print(_("地面に落とされた。", "You have fallen from the pet you were riding.")); } } @@ -2249,7 +2249,7 @@ void process_monster(MONSTER_IDX m_idx) if (is_riding_mon && rakuba(-1, FALSE)) { - msg_print(_("地面に落とされた。", "You have fallen from riding pet.")); + msg_print(_("地面に落とされた。", "You have fallen from the pet you were riding.")); } check_quest_completion(m_ptr); diff --git a/src/monster1.c b/src/monster1.c index a42819fca..47b6e413e 100644 --- a/src/monster1.c +++ b/src/monster1.c @@ -2629,7 +2629,7 @@ void monster_death(MONSTER_IDX m_idx, bool drop_item) { if (rakuba(-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 87f435294..76191d097 100644 --- a/src/player-status.c +++ b/src/player-status.c @@ -2708,7 +2708,7 @@ void calc_bonuses(void) #ifdef JP msg_format("%s馬を操れない。", (empty_hands(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 @@ -2716,7 +2716,7 @@ void calc_bonuses(void) #ifdef JP msg_format("%s馬を操れるようになった。", (empty_hands(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 }