From 8fbc580aa388d26a4dbc0e915e4affd735f85b3b Mon Sep 17 00:00:00 2001 From: notramo Date: Wed, 1 Jun 2022 19:30:14 -0500 Subject: [PATCH] Clarify logout key backup warning dialog Added details to the logout key backup warning dialog on why access to encrypted messages will be lost. Fix https://github.com/vector-im/element-web/issues/15565 --- src/components/views/dialogs/LogoutDialog.tsx | 6 ++++++ src/i18n/strings/en_EN.json | 1 + 2 files changed, 7 insertions(+) diff --git a/src/components/views/dialogs/LogoutDialog.tsx b/src/components/views/dialogs/LogoutDialog.tsx index 4131d7d455f..8e6550a17a3 100644 --- a/src/components/views/dialogs/LogoutDialog.tsx +++ b/src/components/views/dialogs/LogoutDialog.tsx @@ -134,6 +134,12 @@ export default class LogoutDialog extends React.Component { "Encrypted messages are secured with end-to-end encryption. " + "Only you and the recipient(s) have the keys to read these messages.", ) }

+

{ _t( + "When you sign out, these keys will be deleted from this device, " + + "which means you won't be able to read encrypted messages unless you " + + "have the keys for them on your other devices, or backed them up to the " + + "server.", + ) }

{ _t("Back up your keys before signing out to avoid losing them.") }

; diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 71157585d9e..6b7d348bacd 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -2651,6 +2651,7 @@ "Leave some rooms": "Leave some rooms", "Leave space": "Leave space", "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.": "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.", + "When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.": "When you sign out, these keys will be deleted from this device, which means you won't be able to read encrypted messages unless you have the keys for them on your other devices, or backed them up to the server.", "Start using Key Backup": "Start using Key Backup", "I don't want my encrypted messages": "I don't want my encrypted messages", "Manually export keys": "Manually export keys",