diff --git a/SightKeeper.Avalonia/DataSets/DataSetsViewModel.cs b/SightKeeper.Avalonia/DataSets/DataSetsViewModel.cs index c8489328..17d95a6f 100644 --- a/SightKeeper.Avalonia/DataSets/DataSetsViewModel.cs +++ b/SightKeeper.Avalonia/DataSets/DataSetsViewModel.cs @@ -74,7 +74,7 @@ private async Task DeleteDataSetAsync(DataSet dataSet) MessageBoxButtonDefinition deletionButton = new("Delete", MaterialIconKind.Delete); MessageBoxDialogViewModel dialog = new( "Data set deletion confirmation", - $"Are you sure you want to permanently delete the data set \"{dataSet.Name}\"?", + $"Are you sure you want to permanently delete the data set '{dataSet.Name}'? You will not be able to recover it.", deletionButton, new MessageBoxButtonDefinition("Cancel", MaterialIconKind.Cancel)); if (await _dialogManager.ShowDialogAsync(dialog) == deletionButton)