From: Siebrand Mazeland Date: Mon, 31 Jan 2011 17:43:39 +0000 (+0100) Subject: Update translator documentation, remove FIXME and add comment. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f41dcb644c8e72bd6db33071655a07b21e100ad7;p=quix0rs-gnu-social.git Update translator documentation, remove FIXME and add comment. --- diff --git a/actions/groupmembers.php b/actions/groupmembers.php index 39fea736b2..7b1512dfab 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -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')); } }