OSDN Git Service

To be more idiomatic, change "don't have any item" to "don't have any items".
authorEric Branlund <ebranlund@fastmail.com>
Fri, 12 Feb 2021 21:05:17 +0000 (13:05 -0800)
committerEric Branlund <ebranlund@fastmail.com>
Fri, 12 Feb 2021 21:05:17 +0000 (13:05 -0800)
src/store/sell-order.c

index 20908df..76c92c0 100644 (file)
@@ -194,9 +194,9 @@ void store_sell(player_type *owner_ptr)
     /* 我が家でおかしなメッセージが出るオリジナルのバグを修正 */
     concptr s;
     if (cur_store_num == STORE_HOME) {
-        s = _("置けるアイテムを持っていません。", "You don't have any item to drop.");
+        s = _("置けるアイテムを持っていません。", "You don't have any items to drop.");
     } else if (cur_store_num == STORE_MUSEUM) {
-        s = _("寄贈できるアイテムを持っていません。", "You don't have any item to give.");
+        s = _("寄贈できるアイテムを持っていません。", "You don't have any items to give.");
     } else {
         s = _("欲しい物がないですねえ。", "You have nothing that I want.");
     }