You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
import React from 'react'; |
|
|
|
import { FormattedMessage } from 'react-intl'; |
|
|
|
export const StatusesCounter = ( |
|
displayNumber: React.ReactNode, |
|
pluralReady: number, |
|
) => ( |
|
<FormattedMessage |
|
id='account.statuses_counter' |
|
defaultMessage='{count, plural, one {{counter} Post} other {{counter} Posts}}' |
|
values={{ |
|
count: pluralReady, |
|
counter: <strong>{displayNumber}</strong>, |
|
}} |
|
/> |
|
); |
|
|
|
export const FollowingCounter = ( |
|
displayNumber: React.ReactNode, |
|
pluralReady: number, |
|
) => ( |
|
<FormattedMessage |
|
id='account.following_counter' |
|
defaultMessage='{count, plural, one {{counter} Following} other {{counter} Following}}' |
|
values={{ |
|
count: pluralReady, |
|
counter: <strong>{displayNumber}</strong>, |
|
}} |
|
/> |
|
); |
|
|
|
export const FollowersCounter = ( |
|
displayNumber: React.ReactNode, |
|
pluralReady: number, |
|
) => ( |
|
<FormattedMessage |
|
id='account.followers_counter' |
|
defaultMessage='{count, plural, one {{counter} Follower} other {{counter} Followers}}' |
|
values={{ |
|
count: pluralReady, |
|
counter: <strong>{displayNumber}</strong>, |
|
}} |
|
/> |
|
);
|
|
|