Add channel subscriptions count below author. #6867
2 changed files with 4 additions and 4 deletions
|
@ -2082,7 +2082,7 @@
|
|||
"Expand Comments": "Expand Comments",
|
||||
"Expand": "Expand",
|
||||
"Load More": "Load More",
|
||||
"%channelSubCount% subscribers": "%channelSubCount% subscribers",
|
||||
"%channelSubCount% subscriber": "%channelSubCount% subscriber",
|
||||
"%channelSubCount% Followers": "%channelSubCount% Followers",
|
||||
"%channelSubCount% Follower": "%channelSubCount% Follower",
|
||||
"--end--": "--end--"
|
||||
}
|
||||
|
|
|
@ -175,8 +175,8 @@ const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
|||
return (
|
||||
<span className="claim-preview__channel-sub-count">
|
||||
{channelSubCount === 1
|
||||
? __('%channelSubCount% subscriber', { channelSubCount })
|
||||
: __('%channelSubCount% subscribers', { channelSubCount })}
|
||||
? __('%channelSubCount% Follower', { channelSubCount })
|
||||
: __('%channelSubCount% Followers', { channelSubCount })}
|
||||
</span>
|
||||
);
|
||||
}, [channelSubCount]);
|
||||
|
|
Loading…
Add table
Reference in a new issue