mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-10 12:39:44 +00:00
copy: clearer subscription text
This commit is contained in:
parent
74305501af
commit
721262bd39
1 changed files with 11 additions and 12 deletions
|
@ -43,14 +43,13 @@ export default (props: Props) => {
|
||||||
<Button button="primary" label={__('Explore')} onClick={doShowSuggestedSubs} />
|
<Button button="primary" label={__('Explore')} onClick={doShowSuggestedSubs} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{showSuggested &&
|
{showSuggested && numberOfSubscriptions > 0 && (
|
||||||
numberOfSubscriptions > 0 && (
|
|
||||||
<div className="card__actions">
|
<div className="card__actions">
|
||||||
<Button
|
<Button
|
||||||
button="primary"
|
button="primary"
|
||||||
onClick={onFinish}
|
onClick={onFinish}
|
||||||
label={`${__('View your')} ${numberOfSubscriptions} ${
|
label={`${__('View your')} ${numberOfSubscriptions} ${
|
||||||
numberOfSubscriptions > 1 ? __('subcriptions') : __('subscription')
|
numberOfSubscriptions > 1 ? __('subscribed channels') : __('subscribed channel')
|
||||||
}`}
|
}`}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue