From 298b672cd2e95239dfec4b731c560cd1ea1e3473 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 8 Jun 2022 10:22:30 -0500 Subject: [PATCH] Clarify logout key backup warning dialog (#8741) 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 Co-authored-by: notramo --- 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 b1fa02d4ce7..b87d30d8ece 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -2654,6 +2654,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",