diff --git a/damus/ContentView.swift b/damus/ContentView.swift index f86e258e..0e835392 100644 --- a/damus/ContentView.swift +++ b/damus/ContentView.swift @@ -588,7 +588,7 @@ struct ContentView: View { }, message: { Text("No mute list found, create a new one? This will overwrite any previous mute lists.", comment: "Alert message prompt that asks if the user wants to create a new mute list, overwriting previous mute lists.") }) - .alert(NSLocalizedString("Mute User", comment: "Title of alert for muting a user."), isPresented: $confirm_mute, actions: { + .alert(NSLocalizedString("Mute/Block User", comment: "Title of alert for muting/blocking a user."), isPresented: $confirm_mute, actions: { Button(NSLocalizedString("Cancel", comment: "Alert button to cancel out of alert for muting a user."), role: .cancel) { confirm_mute = false } diff --git a/damus/Views/Events/EventMenu.swift b/damus/Views/Events/EventMenu.swift index 67942707..e0c3e3a7 100644 --- a/damus/Views/Events/EventMenu.swift +++ b/damus/Views/Events/EventMenu.swift @@ -135,7 +135,7 @@ struct MenuItems: View { MuteDurationMenu { duration in notify(.mute(.user(target_pubkey, duration?.date_from_now))) } label: { - Label(NSLocalizedString("Mute user", comment: "Context menu option for muting users."), image: "mute") + Label(NSLocalizedString("Mute/Block user", comment: "Context menu option for muting/blocking users."), image: "mute") } } }