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:
parent
ebcbc8cdb8
commit
33ddccb3c5
1 changed files with 3 additions and 3 deletions
|
@ -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')}
|
||||
|
|
Loading…
Reference in a new issue