i18n: revert string so translators don't need to redo

Changing the string means it will stay in English until retranslated. Reverting so that it can re-use existing translated database.

I don't think there is a clash in the `followingCount` variable, so the change was probably unnecessary.
This commit is contained in:
infinite-persistence 2021-12-22 08:57:47 +08:00
parent ebcbc8cdb8
commit 33ddccb3c5
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -95,10 +95,10 @@ function UserChannelFollowIntro(props: Props) {
type="helpful"
message={__(
followingCountIgnoringAutoFollows === 1
? 'Nice! You are currently following %following_count% creator'
: 'Nice! You are currently following %following_count% creators',
? 'Nice! You are currently following %followingCount% creator'
: 'Nice! You are currently following %followingCount% creators',
{
following_count: followingCountIgnoringAutoFollows,
followingCount: followingCountIgnoringAutoFollows,
}
)}
actionText={__('Continue')}