OSDN Git Service

Add "apiece" to English message to clarify that the quoted price is per charge.
authorEric Branlund <ebranlund@fastmail.com>
Wed, 3 Feb 2021 05:15:55 +0000 (21:15 -0800)
committerEric Branlund <ebranlund@fastmail.com>
Wed, 3 Feb 2021 05:15:55 +0000 (21:15 -0800)
src/market/building-recharger.c

index 303d877..c5493a2 100644 (file)
@@ -141,7 +141,7 @@ void building_recharge(player_type *player_ptr)
             max_charges = o_ptr->number * k_ptr->pval - o_ptr->pval;
 
         charges = (PARAMETER_VALUE)get_quantity(
-            format(_("一回分$%d で何回分充填しますか?", "Add how many charges for %d gold? "), price), MIN(player_ptr->au / price, max_charges));
+            format(_("一回分$%d で何回分充填しますか?", "Add how many charges for %d gold apiece? "), price), MIN(player_ptr->au / price, max_charges));
 
         if (charges < 1)
             return;