From 8202617b70c85c0abf4c7f923581fcc3b4861c61 Mon Sep 17 00:00:00 2001 From: Andy Uhnak Date: Tue, 28 Mar 2023 14:24:54 +0100 Subject: [PATCH] Update copy --- Riot/Assets/en.lproj/Vector.strings | 4 ++-- Riot/Generated/Strings.swift | 4 ++-- Riot/Modules/Home/AllChats/AllChatsViewController.swift | 6 ++---- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Riot/Assets/en.lproj/Vector.strings b/Riot/Assets/en.lproj/Vector.strings index 9c929a9cf..5b98db946 100644 --- a/Riot/Assets/en.lproj/Vector.strings +++ b/Riot/Assets/en.lproj/Vector.strings @@ -1562,8 +1562,8 @@ Tap the + to start adding people."; // Legacy to Rust security upgrade -"key_verification_self_verify_security_upgrade_alert_title" = "Encryption upgraded"; -"key_verification_self_verify_security_upgrade_alert_message" = "The end-to-end encryption has been upgraded to be more secure. Please re-verify your account."; +"key_verification_self_verify_security_upgrade_alert_title" = "App updated"; +"key_verification_self_verify_security_upgrade_alert_message" = "Secure messaging has been improved with the latest update. Please re-verify your device."; // Unverified sessions "key_verification_alert_title" = "You have unverified sessions"; diff --git a/Riot/Generated/Strings.swift b/Riot/Generated/Strings.swift index 365fe90ef..3cde53fe9 100644 --- a/Riot/Generated/Strings.swift +++ b/Riot/Generated/Strings.swift @@ -3027,11 +3027,11 @@ public class VectorL10n: NSObject { public static var keyVerificationSelfVerifyCurrentSessionAlertValidateAction: String { return VectorL10n.tr("Vector", "key_verification_self_verify_current_session_alert_validate_action") } - /// Your end-to-end encryption algorithms have been upgraded to be more secure. Please re-verify your account. + /// Secure messaging has been improved with the latest update. Please re-verify your device. public static var keyVerificationSelfVerifySecurityUpgradeAlertMessage: String { return VectorL10n.tr("Vector", "key_verification_self_verify_security_upgrade_alert_message") } - /// Encryption upgraded + /// App updated public static var keyVerificationSelfVerifySecurityUpgradeAlertTitle: String { return VectorL10n.tr("Vector", "key_verification_self_verify_security_upgrade_alert_title") } diff --git a/Riot/Modules/Home/AllChats/AllChatsViewController.swift b/Riot/Modules/Home/AllChats/AllChatsViewController.swift index 3c5d194d3..ea96873ba 100644 --- a/Riot/Modules/Home/AllChats/AllChatsViewController.swift +++ b/Riot/Modules/Home/AllChats/AllChatsViewController.swift @@ -988,10 +988,8 @@ extension AllChatsViewController: SplitViewMasterViewControllerProtocol { let title: String let message: String - if - let feature = MXSDKOptions.sharedInstance().cryptoSDKFeature, - feature.isEnabled && feature.needsVerificationUpgrade - { + if let feature = MXSDKOptions.sharedInstance().cryptoSDKFeature, + feature.isEnabled && feature.needsVerificationUpgrade { title = VectorL10n.keyVerificationSelfVerifySecurityUpgradeAlertTitle message = VectorL10n.keyVerificationSelfVerifySecurityUpgradeAlertMessage } else {