From 215af8921a03bc905508a1ff53c5facf28681ca3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 19 Jan 2009 05:09:51 +0100 Subject: add help tip for empty labels --- functions.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index d80bbf4e9..3de256c7d 100644 --- a/functions.php +++ b/functions.php @@ -5448,7 +5448,11 @@ $message = __("No starred articles found to display."); break; default: - $message = __("No articles found to display."); + if ($feed < -10) { + $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter."); + } else { + $message = __("No articles found to display."); + } } if (!$offset) print "
$message
"; -- cgit v1.2.3