1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 07:31:28 +00:00

add help tip for empty labels

This commit is contained in:
Andrew Dolgov
2009-01-19 05:09:51 +01:00
parent a043ad2929
commit 215af8921a

View File

@@ -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 "<div class='whiteBox'>$message</div>";