diff --git a/app/assets/javascripts/discourse/templates/components/basic-topic-list.js.handlebars b/app/assets/javascripts/discourse/templates/components/basic-topic-list.js.handlebars index 45e45f3b4a5..76afb4705ae 100644 --- a/app/assets/javascripts/discourse/templates/components/basic-topic-list.js.handlebars +++ b/app/assets/javascripts/discourse/templates/components/basic-topic-list.js.handlebars @@ -30,13 +30,13 @@ {{topicStatus topic=topic}} {{{unbound topic.fancy_title}}} {{#if unread}} - {{unbound topic.unread}} {{i18n filters.unread.title.zero}} + {{unbound topic.unread}} {{/if}} {{#if topic.new_posts}} - {{unbound topic.new_posts}} {{i18n filters.new.title.zero}} + {{unbound topic.new_posts}} {{/if}} {{#if topic.unseen}} - {{i18n filters.new.title.zero}} + {{i18n filters.new.lower_title}} {{/if}} diff --git a/app/assets/javascripts/discourse/templates/discovery/categories.js.handlebars b/app/assets/javascripts/discourse/templates/discovery/categories.js.handlebars index 9bb46d4f14d..476d3ac66c1 100644 --- a/app/assets/javascripts/discourse/templates/discovery/categories.js.handlebars +++ b/app/assets/javascripts/discourse/templates/discovery/categories.js.handlebars @@ -20,10 +20,10 @@ {{#if controller.ordering}}{{/if}} {{categoryLink this allowUncategorized=true}} {{#if unreadTopics}} - {{unbound unreadTopics}} {{i18n filters.unread.title.zero}} + {{unbound unreadTopics}} {{/if}} {{#if newTopics}} - {{unbound newTopics}} {{i18n filters.new.title.zero}} + {{i18n filters.new.lower_title_with_count count="newTopics"}} {{/if}}