update string
This commit is contained in:
parent
c54ea58532
commit
ff58ee53dc
1 changed files with 5 additions and 2 deletions
|
@ -473,8 +473,11 @@ class SettingsPage extends React.PureComponent<Props, State> {
|
|||
title={__('Blocked Channels')}
|
||||
actions={
|
||||
<p>
|
||||
{__('Blocked Channels')}: {userBlockedChannelsCount} {' '}
|
||||
<Button button="link" label={__('Manage')} navigate={`/$/${PAGES.BLOCKED}`} />.
|
||||
{__('You have %count% blocked %channels%.', {
|
||||
count: userBlockedChannelsCount,
|
||||
channels: userBlockedChannelsCount === 1 ? __('channel') : __('channels'),
|
||||
})}{' '}
|
||||
<Button button="link" label={__('Manage')} navigate={`/$/${PAGES.BLOCKED}`} />
|
||||
</p>
|
||||
}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue