Update copy

This commit is contained in:
Andy Uhnak 2023-03-28 14:24:54 +01:00
parent bff0b28b4b
commit 8202617b70
3 changed files with 6 additions and 8 deletions

View file

@ -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";

View file

@ -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")
}

View file

@ -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 {