From c7570ac645ea69fb0be19f00fe909af731b44c1e Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Thu, 24 Sep 2009 18:49:09 -0500 Subject: [PATCH] fix invalid i18n label in AssetTrash --- lib/WebGUI/AssetTrash.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/AssetTrash.pm b/lib/WebGUI/AssetTrash.pm index 03e2e94ee..4d681859f 100644 --- a/lib/WebGUI/AssetTrash.pm +++ b/lib/WebGUI/AssetTrash.pm @@ -271,7 +271,7 @@ sub trash { $index->delete; $outputSub->($i18n->get('Deleting exported files')); $asset->_invokeWorkflowOnExportedFiles($session->setting->get('trashWorkflow'), 1); - $outputSub->($i18n->get('Purging the cache')); + $outputSub->($i18n->get('Clearing cache')); $asset->purgeCache; $asset->updateHistory("trashed"); }