summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-08-25 00:51:10 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-08-25 12:48:14 +0200
commit0859e69be044f1ae56b8492ff82e6de06b739d34 (patch)
tree1cb864a18e341972757d54534349523aae4d6317
parent31a6a13268023a2db5eba2445ee6c7db4a6d9623 (diff)
Short labels for number of unread items
On the aside flux, suggestion of showing only a number (e.g. "7") instead of the longer (e.g. "7 unread")
-rw-r--r--app/layout/aside_flux.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml
index ccbb0e213..5c954c8d9 100644
--- a/app/layout/aside_flux.phtml
+++ b/app/layout/aside_flux.phtml
@@ -59,7 +59,7 @@
<a class="btn<?php echo $c_active ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index', 'get', 'c_' . $cat->id ()); ?>">
<?php echo $cat->name (); ?>
<?php if ($catNotRead > 0) { ?>
- <span class="notRead"><?php echo $catNotRead > 1 ? Translate::t ('not_reads', $catNotRead) : Translate::t ('not_read', $catNotRead); ?></span>
+ <span class="notRead" title="<?php echo $catNotRead > 1 ? Translate::t ('not_reads', $catNotRead) : Translate::t ('not_read', $catNotRead); ?>"><?php echo $catNotRead ; ?></span>
<?php } ?>
</a>
</div>