diff --git a/functions.php b/functions.php
index 3e6c0bcb1..b4a540e7e 100644
--- a/functions.php
+++ b/functions.php
@@ -5099,7 +5099,20 @@
} else {
- if (!$offset) print "
".__('No articles found.')."
";
+ $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 "$message
";
}
if (!$offset) {