From b3e7c78be55cce5bb28fdb2f787d5ee97eb946df Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Tue, 24 May 2016 10:32:10 -0700 Subject: [PATCH] UX: always use short reply counts (no word) --- app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 b/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 index 1684df4bc90..870353caceb 100644 --- a/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 +++ b/app/assets/javascripts/discourse/widgets/topic-timeline.js.es6 @@ -41,9 +41,8 @@ createWidget('timeline-scroller', { html(attrs) { const { current, total, date } = attrs; - const repliesKey = (total < 1000) ? 'replies' : 'replies_short'; const contents = [ - h('div.timeline-replies', I18n.t(`topic.timeline.${repliesKey}`, { current, total })) + h('div.timeline-replies', I18n.t(`topic.timeline.replies_short`, { current, total })) ]; if (date) {