update string

This commit is contained in:
Sean Yesmunt 2020-04-14 13:01:52 -04:00
parent c54ea58532
commit ff58ee53dc

View file

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