From 6e700e57269f5e8ef7f6466d4dc07b287643814c Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 10 Feb 2023 11:27:44 -0800 Subject: [PATCH] Rename delete account to "permanently delete account" --- damus/Views/ConfigView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift index 2ef764e0..9d0fe860 100644 --- 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