summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php15
1 files changed, 14 insertions, 1 deletions
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 "<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) {