From a96756d220bfa1d891d0c1727340fb675a6a23df Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Wed, 17 Aug 2022 00:34:48 +0200 Subject: [PATCH] Unify wording --- Shared/Playlists/PlaylistFormView.swift | 2 +- Shared/Settings/HistorySettings.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()