mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-08 03:29:46 +00:00
Update Auto Update-related copy
This commit is contained in:
parent
5a475f4ba4
commit
0c8ba50207
2 changed files with 7 additions and 7 deletions
|
@ -462,9 +462,9 @@ app.on('before-quit', event => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
showingAutoUpdateCloseAlert = true;
|
showingAutoUpdateCloseAlert = true;
|
||||||
dialog.showMessageBox({
|
dialog.showMessageBox({
|
||||||
type: "info",
|
type: 'info',
|
||||||
title: "LBRY will upgrade",
|
title: 'LBRY Will Upgrade',
|
||||||
message: "Please select \"Yes\" at the upgrade prompt shown after the app closes.",
|
message: 'LBRY has a pending upgrade. Please select "Yes" to install it on the prompt shown after this one.',
|
||||||
}, () => {
|
}, () => {
|
||||||
// After the user approves the dialog, we can quit once and for all.
|
// After the user approves the dialog, we can quit once and for all.
|
||||||
quitNow();
|
quitNow();
|
||||||
|
|
|
@ -13,9 +13,9 @@ class ModalAutoUpdateDownloaded extends React.PureComponent {
|
||||||
<Modal
|
<Modal
|
||||||
isOpen={true}
|
isOpen={true}
|
||||||
type="confirm"
|
type="confirm"
|
||||||
contentLabel={__("Update downloaded")}
|
contentLabel={__("Update Downloaded")}
|
||||||
confirmButtonLabel={__("Update and Restart")}
|
confirmButtonLabel={__("Use it Now")}
|
||||||
abortButtonLabel={__("Don't Update")}
|
abortButtonLabel={__("Upgrade on Restart")}
|
||||||
onConfirmed={() => {
|
onConfirmed={() => {
|
||||||
ipcRenderer.send("autoUpdateAccepted");
|
ipcRenderer.send("autoUpdateAccepted");
|
||||||
}}
|
}}
|
||||||
|
@ -28,7 +28,7 @@ class ModalAutoUpdateDownloaded extends React.PureComponent {
|
||||||
<h3 className="text-center">{__("LBRY Leveled Up")}</h3>
|
<h3 className="text-center">{__("LBRY Leveled Up")}</h3>
|
||||||
<p>
|
<p>
|
||||||
{__(
|
{__(
|
||||||
"A new version of LBRY has been downloaded and is ready to install."
|
'A new version of LBRY has been released, downloaded, and is ready for you to use pending a restart.'
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Add table
Reference in a new issue