mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
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')}
|
title={__('Blocked Channels')}
|
||||||
actions={
|
actions={
|
||||||
<p>
|
<p>
|
||||||
{__('Blocked Channels')}: {userBlockedChannelsCount} {' '}
|
{__('You have %count% blocked %channels%.', {
|
||||||
<Button button="link" label={__('Manage')} navigate={`/$/${PAGES.BLOCKED}`} />.
|
count: userBlockedChannelsCount,
|
||||||
|
channels: userBlockedChannelsCount === 1 ? __('channel') : __('channels'),
|
||||||
|
})}{' '}
|
||||||
|
<Button button="link" label={__('Manage')} navigate={`/$/${PAGES.BLOCKED}`} />
|
||||||
</p>
|
</p>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue