Merge pull request #6437 from vector-im/doug/deactivate-account

Reword account deactivation button in Settings.
This commit is contained in:
Doug 2022-07-15 12:58:46 +01:00 committed by GitHub
commit b50adf93b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View file

@ -706,7 +706,7 @@ Tap the + to start adding people.";
"settings_crypto_export" = "Export keys"; "settings_crypto_export" = "Export keys";
"settings_crypto_blacklist_unverified_devices" = "Encrypt to verified sessions only"; "settings_crypto_blacklist_unverified_devices" = "Encrypt to verified sessions only";
"settings_deactivate_my_account" = "Deactivate my account"; "settings_deactivate_my_account" = "Deactivate account permanently";
"settings_key_backup_info" = "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages."; "settings_key_backup_info" = "Encrypted messages are secured with end-to-end encryption. Only you and the recipient(s) have the keys to read these messages.";
"settings_key_backup_info_checking" = "Checking…"; "settings_key_backup_info_checking" = "Checking…";

View file

@ -6647,7 +6647,7 @@ public class VectorL10n: NSObject {
public static var settingsDeactivateAccount: String { public static var settingsDeactivateAccount: String {
return VectorL10n.tr("Vector", "settings_deactivate_account") return VectorL10n.tr("Vector", "settings_deactivate_account")
} }
/// Deactivate my account /// Deactivate account permanently
public static var settingsDeactivateMyAccount: String { public static var settingsDeactivateMyAccount: String {
return VectorL10n.tr("Vector", "settings_deactivate_my_account") return VectorL10n.tr("Vector", "settings_deactivate_my_account")
} }

View file

@ -617,7 +617,7 @@ ChangePasswordCoordinatorBridgePresenterDelegate>
{ {
Section *sectionDeactivate = [Section sectionWithTag:SECTION_TAG_DEACTIVATE_ACCOUNT]; Section *sectionDeactivate = [Section sectionWithTag:SECTION_TAG_DEACTIVATE_ACCOUNT];
[sectionDeactivate addRowWithTag:0]; [sectionDeactivate addRowWithTag:0];
sectionDeactivate.headerTitle = [VectorL10n settingsDeactivateMyAccount]; sectionDeactivate.headerTitle = [VectorL10n settingsDeactivateAccount];
[tmpSections addObject:sectionDeactivate]; [tmpSections addObject:sectionDeactivate];
} }

1
changelog.d/6436.change Normal file
View file

@ -0,0 +1 @@
Reword account deactivation button on the Settings screen.