some copy changes
This commit is contained in:
parent
e140613faf
commit
9cb49ddb47
4 changed files with 47 additions and 46 deletions
|
@ -108,7 +108,7 @@ const WalletBalance = (props: Props) => {
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
title={__('Subscriptions')}
|
title={__('Subscriptions (Coming Soon)')}
|
||||||
body={
|
body={
|
||||||
<>
|
<>
|
||||||
<div className="table__wrapper">
|
<div className="table__wrapper">
|
||||||
|
|
|
@ -38,56 +38,57 @@ const WalletBalance = (props: Props) => {
|
||||||
|
|
||||||
<h2 className="section__title--small">
|
<h2 className="section__title--small">
|
||||||
${(accountDetails && (accountDetails.total_paid_out / 100)) || 0} Withdrawn
|
${(accountDetails && (accountDetails.total_paid_out / 100)) || 0} Withdrawn
|
||||||
<Button
|
{/* <Button */}
|
||||||
button="link"
|
{/* button="link" */}
|
||||||
label={detailsExpanded ? __('View less') : __('View more')}
|
{/* label={detailsExpanded ? __('View less') : __('View more')} */}
|
||||||
iconRight={detailsExpanded ? ICONS.UP : ICONS.DOWN}
|
{/* iconRight={detailsExpanded ? ICONS.UP : ICONS.DOWN} */}
|
||||||
onClick={() => setDetailsExpanded(!detailsExpanded)}
|
{/* onClick={() => setDetailsExpanded(!detailsExpanded)} */}
|
||||||
/>
|
{/* /> */}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
{/* view more section */}
|
{/* view more section */}
|
||||||
{detailsExpanded && (
|
{/* commenting out because not implemented, but could be used in the future */}
|
||||||
<div className="section__subtitle">
|
{/* {detailsExpanded && ( */}
|
||||||
<dl>
|
{/* <div className="section__subtitle"> */}
|
||||||
<dt>
|
{/* <dl> */}
|
||||||
<span className="dt__text">{__('Earned from uploads')}</span>
|
{/* <dt> */}
|
||||||
{/* <span className="help--dt">({__('Earned from channel page')})</span> */}
|
{/* <span className="dt__text">{__('Earned from uploads')}</span> */}
|
||||||
</dt>
|
{/* /!* <span className="help--dt">({__('Earned from channel page')})</span> *!/ */}
|
||||||
<dd>
|
{/* </dt> */}
|
||||||
<span className="dd__text">
|
{/* <dd> */}
|
||||||
{Boolean(1) && (
|
{/* <span className="dd__text"> */}
|
||||||
<Button
|
{/* {Boolean(1) && ( */}
|
||||||
button="link"
|
{/* <Button */}
|
||||||
className="dd__button"
|
{/* button="link" */}
|
||||||
icon={ICONS.UNLOCK}
|
{/* className="dd__button" */}
|
||||||
/>
|
{/* icon={ICONS.UNLOCK} */}
|
||||||
)}
|
{/* /> */}
|
||||||
<CreditAmount amount={1} precision={4} />
|
{/* )} */}
|
||||||
</span>
|
{/* <CreditAmount amount={1} precision={4} /> */}
|
||||||
</dd>
|
{/* </span> */}
|
||||||
|
{/* </dd> */}
|
||||||
|
|
||||||
<dt>
|
{/* <dt> */}
|
||||||
<span className="dt__text">{__('Earned from channel page')}</span>
|
{/* <span className="dt__text">{__('Earned from channel page')}</span> */}
|
||||||
{/* <span className="help--dt">({__('Delete or edit past content to spend')})</span> */}
|
{/* /!* <span className="help--dt">({__('Delete or edit past content to spend')})</span> *!/ */}
|
||||||
</dt>
|
{/* </dt> */}
|
||||||
<dd>
|
{/* <dd> */}
|
||||||
<CreditAmount amount={1} precision={4} />
|
{/* <CreditAmount amount={1} precision={4} /> */}
|
||||||
</dd>
|
{/* </dd> */}
|
||||||
|
|
||||||
{/* <dt> */}
|
{/* /!* <dt> *!/ */}
|
||||||
{/* <span className="dt__text">{__('...supporting content')}</span> */}
|
{/* /!* <span className="dt__text">{__('...supporting content')}</span> *!/ */}
|
||||||
{/* <span className="help--dt">({__('Delete supports to spend')})</span> */}
|
{/* /!* <span className="help--dt">({__('Delete supports to spend')})</span> *!/ */}
|
||||||
{/* </dt> */}
|
{/* /!* </dt> *!/ */}
|
||||||
{/* <dd> */}
|
{/* /!* <dd> *!/ */}
|
||||||
{/* <CreditAmount amount={1} precision={4} /> */}
|
{/* /!* <CreditAmount amount={1} precision={4} /> *!/ */}
|
||||||
{/* </dd> */}
|
{/* /!* </dd> *!/ */}
|
||||||
</dl>
|
{/* </dl> */}
|
||||||
</div>
|
{/* </div> */}
|
||||||
)}
|
{/* )} */}
|
||||||
|
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button button="primary" label={__('Receive Payout')} icon={ICONS.SEND} />
|
{/* <Button button="primary" label={__('Receive Payout')} icon={ICONS.SEND} /> */}
|
||||||
<Button button="secondary" label={__('Account Configuration')} icon={ICONS.SETTINGS} navigate={`/$/${PAGES.SETTINGS_STRIPE_ACCOUNT}`} />
|
<Button button="secondary" label={__('Account Configuration')} icon={ICONS.SETTINGS} navigate={`/$/${PAGES.SETTINGS_STRIPE_ACCOUNT}`} />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -144,7 +144,7 @@ const WalletBalance = (props: Props) => {
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
title={__('Subscriptions')}
|
title={__('Subscriptions (Coming Soon)')}
|
||||||
body={
|
body={
|
||||||
<>
|
<>
|
||||||
<div className="table__wrapper">
|
<div className="table__wrapper">
|
||||||
|
|
|
@ -170,7 +170,7 @@ const WalletPage = (props: Props) => {
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
focusLBCTab();
|
focusLBCTab();
|
||||||
}}
|
}}
|
||||||
>LBC Wallet</h2>
|
>LBRY Credits</h2>
|
||||||
{/* account history button */}
|
{/* account history button */}
|
||||||
<h2 className="fiat-tab-switcher"
|
<h2 className="fiat-tab-switcher"
|
||||||
style={{display: 'inline-block', textUnderlineOffset: '4px', fontSize: '18px', marginRight: '14px'}}
|
style={{display: 'inline-block', textUnderlineOffset: '4px', fontSize: '18px', marginRight: '14px'}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue