diff --git a/Riot/Assets/en.lproj/Vector.strings b/Riot/Assets/en.lproj/Vector.strings index 530e1eda4..cdf8779a9 100644 --- a/Riot/Assets/en.lproj/Vector.strings +++ b/Riot/Assets/en.lproj/Vector.strings @@ -572,7 +572,7 @@ "security_settings_title" = "Security"; "security_settings_crypto_sessions" = "MY SESSIONS"; "security_settings_crypto_sessions_loading" = "Loading sessions…"; -"security_settings_crypto_sessions_description" = "Trust sessions to grant access to end-to-end encrypted messages. If you don’t recognise a session, change your login password and reset your Message Password used for Message Backup."; +"security_settings_crypto_sessions_description_2" = "If you don’t recognise a login, change your password and reset Secure Backup."; "security_settings_secure_backup" = "SECURE BACKUP"; "security_settings_secure_backup_description" = "Safeguard against losing access to encrypted messages & data by backing up encryption keys on your server."; diff --git a/Riot/Generated/Strings.swift b/Riot/Generated/Strings.swift index 6a4f60fd0..fe7661b04 100644 --- a/Riot/Generated/Strings.swift +++ b/Riot/Generated/Strings.swift @@ -3166,9 +3166,9 @@ internal enum VectorL10n { internal static var securitySettingsCryptoSessions: String { return VectorL10n.tr("Vector", "security_settings_crypto_sessions") } - /// Trust sessions to grant access to end-to-end encrypted messages. If you don’t recognise a session, change your login password and reset your Message Password used for Message Backup. - internal static var securitySettingsCryptoSessionsDescription: String { - return VectorL10n.tr("Vector", "security_settings_crypto_sessions_description") + /// If you don’t recognise a login, change your password and reset Secure Backup. + internal static var securitySettingsCryptoSessionsDescription2: String { + return VectorL10n.tr("Vector", "security_settings_crypto_sessions_description_2") } /// Loading sessions… internal static var securitySettingsCryptoSessionsLoading: String { diff --git a/Riot/Modules/Settings/Security/SecurityViewController.m b/Riot/Modules/Settings/Security/SecurityViewController.m index add35a0d8..be0c1b669 100644 --- a/Riot/Modules/Settings/Security/SecurityViewController.m +++ b/Riot/Modules/Settings/Security/SecurityViewController.m @@ -841,8 +841,6 @@ SecureBackupSetupCoordinatorBridgePresenterDelegate> { // Accept to create a setup only if we have the 3 cross-signing keys // This is the path to have a sane state - // TODO: What about missing MSK that was not gossiped before? - MXRecoveryService *recoveryService = self.mainSession.crypto.recoveryService; NSArray *crossSigningServiceSecrets = @[ @@ -1135,7 +1133,7 @@ SecureBackupSetupCoordinatorBridgePresenterDelegate> else { cell = [self descriptionCellForTableView:tableView - withText:NSLocalizedStringFromTable(@"security_settings_crypto_sessions_description", @"Vector", nil) ]; + withText:NSLocalizedStringFromTable(@"security_settings_crypto_sessions_description_2", @"Vector", nil) ]; } } else @@ -1147,7 +1145,7 @@ SecureBackupSetupCoordinatorBridgePresenterDelegate> else if (row == devicesArray.count) { cell = [self descriptionCellForTableView:tableView - withText:NSLocalizedStringFromTable(@"security_settings_crypto_sessions_description", @"Vector", nil) ]; + withText:NSLocalizedStringFromTable(@"security_settings_crypto_sessions_description_2", @"Vector", nil) ]; } }