diff --git a/Shared/Playlists/PlaylistFormView.swift b/Shared/Playlists/PlaylistFormView.swift index a1a0aef8..8b6ae8ac 100644 --- a/Shared/Playlists/PlaylistFormView.swift +++ b/Shared/Playlists/PlaylistFormView.swift @@ -222,7 +222,7 @@ struct PlaylistFormView: View { .alert(isPresented: $presentingDeleteConfirmation) { Alert( title: Text("Are you sure you want to delete playlist?"), - message: Text("Playlist \"\(playlist.title)\" will be deleted.\nIt cannot be undone."), + message: Text("Playlist \"\(playlist.title)\" will be deleted.\nIt cannot be reverted."), primaryButton: .destructive(Text("Delete"), action: deletePlaylistAndDismiss), secondaryButton: .cancel() ) diff --git a/Shared/Settings/HistorySettings.swift b/Shared/Settings/HistorySettings.swift index d0413068..8437901a 100644 --- a/Shared/Settings/HistorySettings.swift +++ b/Shared/Settings/HistorySettings.swift @@ -150,7 +150,7 @@ struct HistorySettings: View { "Are you sure you want to clear history of watched videos?" ), message: Text( - "This cannot be undone. You might need to switch between views or restart the app to see changes." + "This cannot be reverted. You might need to switch between views or restart the app to see changes." ), primaryButton: .destructive(Text("Clear All")) { player.removeAllWatches()