1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 03:55:56 +00:00

extend no articles error messages

This commit is contained in:
Andrew Dolgov
2008-02-23 06:39:36 +01:00
parent c67d2990c7
commit 93c841c4e5

View File

@@ -5099,7 +5099,20 @@
} else {
if (!$offset) print "<div class='whiteBox'>".__('No articles found.')."</div>";
$message = "";
switch ($view_mode) {
case "unread":
$message = __("No unread articles found to display.");
break;
case "marked":
$message = __("No starred articles found to display.");
break;
default:
$message = __("No articles found to display.");
}
if (!$offset) print "<div class='whiteBox'>$message</div>";
}
if (!$offset) {