[Glitch] Fix following_counter plural to include "one"
Port 7b682ceb13
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
parent
f450e52085
commit
18722c2809
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ export function counterRenderer(counterType, isBold = true) {
|
||||||
return (displayNumber, pluralReady) => (
|
return (displayNumber, pluralReady) => (
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='account.following_counter'
|
id='account.following_counter'
|
||||||
defaultMessage='{count, plural, other {{counter} Following}}'
|
defaultMessage='{count, plural, one {{counter} Following} other {{counter} Following}}'
|
||||||
values={{
|
values={{
|
||||||
count: pluralReady,
|
count: pluralReady,
|
||||||
counter: renderCounter(displayNumber),
|
counter: renderCounter(displayNumber),
|
||||||
|
|
Loading…
Reference in a new issue