Merge pull request #2624 from derek-yesmunt/master
fix #2290: Update => Upgrade
This commit is contained in:
commit
65a3c62707
4 changed files with 9 additions and 7 deletions
|
@ -21,7 +21,7 @@ function Page(props: Props) {
|
||||||
{/* @if TARGET='app' */}
|
{/* @if TARGET='app' */}
|
||||||
{showUpgradeButton && (
|
{showUpgradeButton && (
|
||||||
<div className="main__status">
|
<div className="main__status">
|
||||||
{__('Update ready to install')}
|
{__('Upgrade is ready')}
|
||||||
<Button button="alt" icon={ICONS.DOWNLOAD} label={__('Install now')} onClick={doDownloadUpgradeRequested} />
|
<Button button="alt" icon={ICONS.DOWNLOAD} label={__('Install now')} onClick={doDownloadUpgradeRequested} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -17,8 +17,8 @@ class ModalAutoUpdateConfirm extends React.PureComponent<Props> {
|
||||||
<Modal
|
<Modal
|
||||||
isOpen
|
isOpen
|
||||||
type="confirm"
|
type="confirm"
|
||||||
contentLabel={__('Update Downloaded')}
|
contentLabel={__('Upgrade Downloaded')}
|
||||||
title={__('LBRY Update Ready')}
|
title={__('LBRY Upgrade Ready')}
|
||||||
confirmButtonLabel={__('Upgrade')}
|
confirmButtonLabel={__('Upgrade')}
|
||||||
abortButtonLabel={__('Not now')}
|
abortButtonLabel={__('Not now')}
|
||||||
onConfirmed={() => {
|
onConfirmed={() => {
|
||||||
|
@ -30,7 +30,7 @@ class ModalAutoUpdateConfirm extends React.PureComponent<Props> {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<section className="card__content">
|
<section className="card__content">
|
||||||
<p>{__('Your LBRY update is ready. Restart LBRY now to use it!')}</p>
|
<p>{__('Your LBRY upgrade is ready. Restart LBRY now to use it!')}</p>
|
||||||
<p className="help">
|
<p className="help">
|
||||||
{__('Want to know what has changed?')} See the{' '}
|
{__('Want to know what has changed?')} See the{' '}
|
||||||
<Button button="link" label={__('release notes')} href="https://github.com/lbryio/lbry-desktop/releases" />.
|
<Button button="link" label={__('release notes')} href="https://github.com/lbryio/lbry-desktop/releases" />.
|
||||||
|
|
|
@ -31,7 +31,7 @@ class ModalAutoUpdateDownloaded extends React.PureComponent<Props, State> {
|
||||||
<Modal
|
<Modal
|
||||||
isOpen
|
isOpen
|
||||||
type="confirm"
|
type="confirm"
|
||||||
contentLabel={__('Update Downloaded')}
|
contentLabel={__('Upgrade Downloaded')}
|
||||||
title={__('LBRY Leveled Up')}
|
title={__('LBRY Leveled Up')}
|
||||||
confirmButtonLabel={__('Use Now')}
|
confirmButtonLabel={__('Use Now')}
|
||||||
abortButtonLabel={__('Upgrade on Close')}
|
abortButtonLabel={__('Upgrade on Close')}
|
||||||
|
|
|
@ -538,5 +538,7 @@
|
||||||
"A few things to know before participating in the comment alpha:": "A few things to know before participating in the comment alpha:",
|
"A few things to know before participating in the comment alpha:": "A few things to know before participating in the comment alpha:",
|
||||||
"During the alpha, all comments are sent to a LBRY, Inc. server, not the LBRY network itself.": "During the alpha, all comments are sent to a LBRY, Inc. server, not the LBRY network itself.",
|
"During the alpha, all comments are sent to a LBRY, Inc. server, not the LBRY network itself.": "During the alpha, all comments are sent to a LBRY, Inc. server, not the LBRY network itself.",
|
||||||
"During the alpha, comments are not decentralized or censorship resistant (but we repeat ourselves).": "During the alpha, comments are not decentralized or censorship resistant (but we repeat ourselves).",
|
"During the alpha, comments are not decentralized or censorship resistant (but we repeat ourselves).": "During the alpha, comments are not decentralized or censorship resistant (but we repeat ourselves).",
|
||||||
"When the alpha ends, we will attempt to transition comments, but do not promise to do so. Any transition will likely involve publishing previous comments under a single archive handle.": "When the alpha ends, we will attempt to transition comments, but do not promise to do so. Any transition will likely involve publishing previous comments under a single archive handle."
|
"When the alpha ends, we will attempt to transition comments, but do not promise to do so. Any transition will likely involve publishing previous comments under a single archive handle.": "When the alpha ends, we will attempt to transition comments, but do not promise to do so. Any transition will likely involve publishing previous comments under a single archive handle.",
|
||||||
}
|
"Upgrade is ready to install": "Upgrade is ready to install",
|
||||||
|
"Upgrade is ready": "Upgrade is ready"
|
||||||
|
}
|
Loading…
Reference in a new issue