forked from cybrespace/mastodon
		
	Fix wrong pluralization in hashtag component in web UI (#11754)
This commit is contained in:
		
							parent
							
								
									43f56f1291
								
							
						
					
					
						commit
						1a00bd9244
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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'>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue