X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Flistsnav.php;h=a2fa0b8cd13acb36130b0718b649fe09c01d8a03;hb=41fe435553a4fd754355b7685378cad7843c681c;hp=412c18ffd9c95cc583a6282ffad83f873b8357b1;hpb=87d46e1ae5e5effcc985021ff5af3f10815f3d3c;p=quix0rs-gnu-social.git diff --git a/lib/listsnav.php b/lib/listsnav.php index 412c18ffd9..a2fa0b8cd1 100644 --- a/lib/listsnav.php +++ b/lib/listsnav.php @@ -58,11 +58,11 @@ class ListsNav extends MoreMenu { return 'lists'; } - + function getItems() { $items = array(); - + while ($this->lists->fetch()) { $mode = $this->lists->private ? 'private' : 'public'; $items[] = array('showprofiletag', @@ -84,7 +84,9 @@ class ListsNav extends MoreMenu { return array('peopletagsbyuser', array('nickname' => $this->profile->nickname), + // TRANS: Link description for seeing all lists. _('See all'), - _('See all lists you have created')); + // TRANS: Link title for seeing all lists. + _('See all lists you have created.')); } }