# 「未読が1件、新しいトピックが4件残っています。または、他のトピックを...で閲覧する」

**URL:** https://meta.discourse.org/t/there-is-1-unread-and-4-new-topics-remaining-or-browse-other-topics-in/384930
**Category:** UX
**Created:** [2025 年 10 月 7 日午後 5:15 UTC](https://meta.discourse.org/t/there-is-1-unread-and-4-new-topics-remaining-or-browse-other-topics-in/384930 "2025-10-07T17:15:59Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [2025 年 10 月 8 日午前 12:01 UTC](https://meta.discourse.org/t/there-is-1-unread-and-4-new-topics-remaining-or-browse-other-topics-in/384930/4 "2025-10-08T00:01:58Z")

</div>

最初の投稿で言及されたテキストではないと思います。トピックに関するものは次のとおりです。

```plaintext
{ HAS_UNREAD_AND_NEW, select,
  true {
    { UNREAD, plural,
         =0 {}
        one {There is # unread}
      other {There are # unread}
    }
    { NEW, plural,
         =0 {}
        one { and # new topic remaining,}
      other { and # new topics remaining,}
    }
  }
  false {
    { UNREAD, plural,
         =0 {}
        one {There is # unread topic remaining,}
      other {There are # unread topics remaining,}
    }
    { NEW, plural,
         =0 {}
        one {There is # new topic remaining,}
      other {There are # new topics remaining,}
    }
  }
  other {}
}
{ HAS_CATEGORY, select,
  true { or browse other topics in {categoryLink}}
  false { or view latest topics}
  other {}
}

```

これはICUメッセージ形式を使用しています。翻訳ガイドラインについては、[https://meta.discourse.org/t/7035](https://meta.discourse.org/t/7035) を参照してください。  
HAS\_UNREAD\_AND\_NEW が true の場合、UNREAD と NEW は両方とも 0 より大きいです。  
HAS\_UNREAD\_AND\_NEW が false の場合、UNREAD または NEW のいずれかが 0 より大きいです。

コメントが正しく理解できている場合、最初の `is` を `are` に変更する必要があります。これは、未読が 1 件で新しいトピックが少なくとも 1 件ある場合のテキストだからです。それが変更されると、「There are 1 unread and 1 new topic remaining,」と表示されるはずです。  
「There is 1 new topic remaining,」と「There is 1 unread topic remaining,」は、依然として「is」を使用しています。

もし私が正しければ、フォーラムで `js.topic.read_more_MF` の最初の `is` を `are` に変更することで修正できます。  
その後、メッセージ用のものも同様に試し、すべてのフォーラムを修正するためにプルリクエストを作成できます。

---

_[View the full topic](https://meta.discourse.org/t/there-is-1-unread-and-4-new-topics-remaining-or-browse-other-topics-in/384930)._
