about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/hashtag.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-04 04:14:13 +0200
committerThibaut Girka <thib@sitedethib.com>2019-09-05 14:11:52 +0200
commit4907517db4103f93bc7df0c1e9f42a533fff630e (patch)
tree63a9409f2b7b5857193879ebd559cab8e7889c11 /app/javascript/flavours/glitch/components/hashtag.js
parentca86858558c420d87f9e5d5e08d4ff8d34ecbce0 (diff)
[Glitch] Fix wrong pluralization in hashtag component in web UI
Port 1a00bd9244ee8555d7401f4f0ee01ec381e96c1c to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/components/hashtag.js')
-rw-r--r--app/javascript/flavours/glitch/components/hashtag.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/hashtag.js b/app/javascript/flavours/glitch/components/hashtag.js
index 426f7ecb0..03c8b6e3a 100644
--- a/app/javascript/flavours/glitch/components/hashtag.js
+++ b/app/javascript/flavours/glitch/components/hashtag.js
@@ -12,7 +12,7 @@ const Hashtag = ({ hashtag }) => (
         #<span>{hashtag.get('name')}</span>
       </Permalink>
 
-      <FormattedMessage id='trends.count_by_accounts' defaultMessage='{count} {rawCount, plural, one {person} other {people}} talking' values={{ rawCount: hashtag.getIn(['history', 0, 'accounts']), count: <strong>{shortNumberFormat(hashtag.getIn(['history', 0, 'accounts']) + hashtag.getIn(['history', 1, 'accounts']))}</strong> }} />
+      <FormattedMessage id='trends.count_by_accounts' defaultMessage='{count} {rawCount, plural, one {person} other {people}} talking' values={{ rawCount: hashtag.getIn(['history', 0, 'accounts']) + hashtag.getIn(['history', 1, 'accounts']), count: <strong>{shortNumberFormat(hashtag.getIn(['history', 0, 'accounts']) + hashtag.getIn(['history', 1, 'accounts']))}</strong> }} />
     </div>
 
     <div className='trends__item__current'>