Skip to content

Commit

Permalink
Merge branch 'release/1.8.23/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Jul 15, 2022
2 parents 363aad7 + f299c0f commit bcc1a0e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Changes in 1.8.23 (2022-07-15)

🙌 Improvements

- Reword account deactivation button on the Settings screen. ([#6436](https://github.com/vector-im/element-ios/issues/6436))


## Changes in 1.8.22 (2022-07-13)

🙌 Improvements
Expand Down
4 changes: 2 additions & 2 deletions Config/AppVersion.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
//

// Version
MARKETING_VERSION = 1.8.22
CURRENT_PROJECT_VERSION = 1.8.22
MARKETING_VERSION = 1.8.23
CURRENT_PROJECT_VERSION = 1.8.23
2 changes: 1 addition & 1 deletion Riot/Assets/en.lproj/Vector.strings
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ Tap the + to start adding people.";
"settings_crypto_export" = "Export keys";
"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_checking" = "Checking…";
Expand Down
2 changes: 1 addition & 1 deletion Riot/Generated/Strings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6647,7 +6647,7 @@ public class VectorL10n: NSObject {
public static var settingsDeactivateAccount: String {
return VectorL10n.tr("Vector", "settings_deactivate_account")
}
/// Deactivate my account
/// Deactivate account permanently
public static var settingsDeactivateMyAccount: String {
return VectorL10n.tr("Vector", "settings_deactivate_my_account")
}
Expand Down
2 changes: 1 addition & 1 deletion Riot/Modules/Settings/SettingsViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ - (void)updateSections
{
Section *sectionDeactivate = [Section sectionWithTag:SECTION_TAG_DEACTIVATE_ACCOUNT];
[sectionDeactivate addRowWithTag:0];
sectionDeactivate.headerTitle = [VectorL10n settingsDeactivateMyAccount];
sectionDeactivate.headerTitle = [VectorL10n settingsDeactivateAccount];
[tmpSections addObject:sectionDeactivate];
}

Expand Down

0 comments on commit bcc1a0e

Please sign in to comment.