2023-07-08 19:11:22 +10:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
export const StatusesCounter = (
|
|
|
|
displayNumber: React.ReactNode,
|
2023-07-13 19:26:45 +10:00
|
|
|
pluralReady: number,
|
2023-07-08 19:11:22 +10:00
|
|
|
) => (
|
|
|
|
<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,
|
2023-07-13 19:26:45 +10:00
|
|
|
pluralReady: number,
|
2023-07-08 19:11:22 +10:00
|
|
|
) => (
|
|
|
|
<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,
|
2023-07-13 19:26:45 +10:00
|
|
|
pluralReady: number,
|
2023-07-08 19:11:22 +10:00
|
|
|
) => (
|
|
|
|
<FormattedMessage
|
|
|
|
id='account.followers_counter'
|
|
|
|
defaultMessage='{count, plural, one {{counter} Follower} other {{counter} Followers}}'
|
|
|
|
values={{
|
|
|
|
count: pluralReady,
|
|
|
|
counter: <strong>{displayNumber}</strong>,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|