From b714194e3a65037287ab062c209bb98ff7d3c245 Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Tue, 22 Oct 2024 23:45:18 +0200 Subject: [PATCH] Make text respect asset count --- Source/Editor/Windows/ContentWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/ContentWindow.cs b/Source/Editor/Windows/ContentWindow.cs index 90da6735b..6089b2e07 100644 --- a/Source/Editor/Windows/ContentWindow.cs +++ b/Source/Editor/Windows/ContentWindow.cs @@ -641,7 +641,7 @@ namespace FlaxEditor.Windows string singularPlural = toDelete.Count > 1 ? "s" : ""; string msg = toDelete.Count == 1 - ? string.Format("Delete \'{0}\'?\n\nThis action cannot be undone.\nFiles will be deleted permanently.", items[0].Path) + ? string.Format("Delete \'{0}\'?\n\nThis action cannot be undone.\nFile will be deleted permanently.", items[0].Path) : string.Format("Delete {0} selected items?\n\nThis action cannot be undone.\nFiles will be deleted permanently.", items.Count); // Ask user