damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 6e700e57269f5e8ef7f6466d4dc07b287643814c
parent 18ad113198b66c22ac5658326d92fc8dc5e9ecc3
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 10 Feb 2023 11:27:44 -0800

Rename delete account to "permanently delete account"

Diffstat:
Mdamus/Views/ConfigView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift @@ -196,7 +196,7 @@ struct ConfigView: View { } .navigationTitle(NSLocalizedString("Settings", comment: "Navigation title for Settings view.")) .navigationBarTitleDisplayMode(.large) - .alert(NSLocalizedString("Delete Account", comment: "Alert for deleting the users account."), isPresented: $confirm_delete_account) { + .alert(NSLocalizedString("Permanently Delete Account", comment: "Alert for deleting the users account."), isPresented: $confirm_delete_account) { TextField(NSLocalizedString("Type DELETE to delete", comment: "Text field prompt asking user to type the word DELETE to confirm that they want to proceed with deleting their account. The all caps lock DELETE word should not be translated. Everything else should."), text: $delete_text) Button(NSLocalizedString("Cancel", comment: "Cancel deleting the user."), role: .cancel) { confirm_delete_account = false