mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-04 21:05:17 +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,18 +43,17 @@ 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 ? __('subscribed channels') : __('subscribed channel')
|
||||||
numberOfSubscriptions > 1 ? __('subcriptions') : __('subscription')
|
}`}
|
||||||
}`}
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
)}
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{showSuggested && !loadingSuggested && <SuggestedSubscriptions />}
|
{showSuggested && !loadingSuggested && <SuggestedSubscriptions />}
|
||||||
|
|
Loading…
Add table
Reference in a new issue