Replace subscribers with followers

This commit is contained in:
Franco Montenegro 2021-08-13 15:10:24 -03:00
parent bdcd9d65b6
commit 3375782a0e
2 changed files with 4 additions and 4 deletions
static
ui/component/claimPreview

View file

@ -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--"
}

View file

@ -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]);