]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 16:11:31 +0000 (18:11 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 16:11:31 +0000 (18:11 +0200)
L10n updates.
Whitespace updates.

lib/groupsnav.php
lib/listsnav.php

index bedb9f9b6ebd7b9a557cd954677025c1f3af3118..3d282f5e1d88aa1b10d968ae1b70ea31f4b7a0cd 100644 (file)
@@ -84,8 +84,10 @@ class GroupsNav extends MoreMenu
     function seeAllItem() {
         return array('usergroups',
                      array('nickname' => $this->user->nickname),
+                     // TRANS: Link description for seeing all groups.
                      _('See all'),
-                     _('See all groups you belong to'));
+                     // TRANS: Link title for seeing all groups.
+                     _('See all groups you belong to.'));
     }
-    
+
 }
index 412c18ffd9c95cc583a6282ffad83f873b8357b1..a2fa0b8cd13acb36130b0718b649fe09c01d8a03 100644 (file)
@@ -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.'));
     }
 }