add help tip for empty labels
This commit is contained in:
parent
a043ad2929
commit
215af8921a
|
@ -5448,7 +5448,11 @@
|
||||||
$message = __("No starred articles found to display.");
|
$message = __("No starred articles found to display.");
|
||||||
break;
|
break;
|
||||||
default:
|
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>";
|
if (!$offset) print "<div class='whiteBox'>$message</div>";
|
||||||
|
|
Loading…
Reference in New Issue