]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation, remove FIXME and add comment.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 31 Jan 2011 17:43:39 +0000 (18:43 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 31 Jan 2011 17:43:39 +0000 (18:43 +0100)
actions/groupmembers.php

index 39fea736b2fb99fab84b2f28b0716e61709c8acf..7b1512dfab5cce8aa1f8e8e555bc655e7d8759e1 100644 (file)
@@ -183,12 +183,10 @@ class GroupMemberListItem extends ProfileListItem
 
     function showFullName()
     {
-        // @todo FIXME: i18n issue. Message should be "%s (Admin)" instead of patchwork.
         parent::showFullName();
         if ($this->profile->isAdmin($this->group)) {
-            $this->out->text(' ');
-            // TRANS: Suffix for group members that are group administrators. Separated from user name with a space.
-            // TRANS: This is a to be addressed i18n issue.
+            $this->out->text(' '); // for separating the classes.
+            // TRANS: Indicator in group members list that this user is a group administrator.
             $this->out->element('span', 'role', _('Admin'));
         }
     }