]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/listsnav.php
If there's no Happening, we can't use the RSVP.
[quix0rs-gnu-social.git] / lib / listsnav.php
index 412c18ffd9c95cc583a6282ffad83f873b8357b1..d550233ef5810864ee482df053c4b4b68f2e1c22 100644 (file)
@@ -58,15 +58,15 @@ class ListsNav extends MoreMenu
     {
         return 'lists';
     }
-    
+
     function getItems()
     {
         $items = array();
-        
+
         while ($this->lists->fetch()) {
                 $mode = $this->lists->private ? 'private' : 'public';
                 $items[] = array('showprofiletag',
-                                 array('tagger' => $this->profile->nickname,
+                                 array('nickname' => $this->profile->getNickname(),
                                        'tag'    => $this->lists->tag),
                                  $this->lists->tag,
                                  '');
@@ -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.'));
     }
 }