From: Andrew Dolgov Date: Mon, 19 Jan 2009 04:09:51 +0000 (+0100) Subject: add help tip for empty labels X-Git-Tag: 1.3.0~60 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=215af8921a03bc905508a1ff53c5facf28681ca3;p=tt-rss.git add help tip for empty labels --- diff --git a/functions.php b/functions.php index d80bbf4e..3de256c7 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
";