From 226abb457e2ca5b3302609b6a69033e1480e24f6 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 3 Jun 2020 12:24:22 +0100 Subject: [PATCH] Update copy in encryption upgrade swcreen --- .../secretstorage/CreateSecretStorageDialog.js | 14 ++++++-------- src/i18n/strings/en_EN.json | 6 ++---- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js b/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js index dd71b13fb6..192427d384 100644 --- a/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js +++ b/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js @@ -389,10 +389,8 @@ export default class CreateSecretStorageDialog extends React.PureComponent { let authPrompt; let nextCaption = _t("Next"); if (!this.state.backupSigStatus.usable) { - authPrompt =
-
{_t("Restore your key backup to upgrade your encryption")}
-
; - nextCaption = _t("Restore"); + authPrompt = null; + nextCaption = _t("Upload"); } else if (this.state.canUploadKeysWithPasswordOnly && !this.props.accountPassword) { authPrompt =
{_t("Enter your account password to confirm the upgrade:")}
@@ -413,9 +411,9 @@ export default class CreateSecretStorageDialog extends React.PureComponent { return

{_t( - "Upgrade this session to allow it to verify other sessions, " + - "granting them access to encrypted messages and marking them " + - "as trusted for other users.", + "Upgrade your Recovery Key to store encryption keys & secrets " + + "with your account data. If you lose access to this login you'll " + + "need it to unlock your data.", )}

{authPrompt}