From: Eric Branlund Date: Wed, 25 Sep 2019 21:07:24 +0000 (-0700) Subject: To make them clearer, reworded some of the English messages for adding/removing items... X-Git-Tag: vmacos3.0.0-alpha52~1887 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=136148a8cf416c7de10af31147b3ceeeb8c78bfa;p=hengbandforosx%2Fhengbandosx.git To make them clearer, reworded some of the English messages for adding/removing items from the museum. --- diff --git a/src/store.c b/src/store.c index 06dc53506..26c08f68b 100644 --- a/src/store.c +++ b/src/store.c @@ -5004,11 +5004,11 @@ static void store_sell(player_type *owner_ptr) if (-1 == store_check_num(q_ptr)) { - msg_print(_("それと同じ品物は既に博物館にあるようです。", "The same object as it is already in the Museum.")); + msg_print(_("それと同じ品物は既に博物館にあるようです。", "The Museum already has one of those items.")); } else { - msg_print(_("博物館に寄贈したものは取り出すことができません!!", "You cannot take items which is given to the Museum back!!")); + msg_print(_("博物館に寄贈したものは取り出すことができません!!", "You cannot take back items which have been donated to the Museum!!")); } if (!get_check(format(_("本当に%sを寄贈しますか?", "Really give %s to the Museum? "), o2_name))) return; @@ -5162,7 +5162,7 @@ static void museum_remove_object(player_type *player_ptr) GAME_TEXT o_name[MAX_NLEN]; object_desc(player_ptr, o_name, o_ptr, 0); - msg_print(_("展示をやめさせたアイテムは二度と見ることはできません!", "You cannot see items which is removed from the Museum!")); + msg_print(_("展示をやめさせたアイテムは二度と見ることはできません!", "Once removed from the Museum, an item will be gone forever!")); if (!get_check(format(_("本当に%sの展示をやめさせますか?", "Really order to remove %s from the Museum? "), o_name))) return; msg_format(_("%sの展示をやめさせた。", "You ordered to remove %s."), o_name);