diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-05 20:53:53 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-05 20:53:53 +0200 |
commit | 5f7b7d7509413724202a0dd62dbfcfdbc095afb0 (patch) | |
tree | 0c77e734cd2cb8cf4f07e94cd5bf91e3d7471443 | |
parent | ea99855b350b326f81bda0ea42be6dff8919b527 (diff) |
* move TRANS comment from ea99855b350b326f81bda0ea42be6dff8919b527 down to right before the line with the message, otherwise gettext does not pick it up.
* add another TRANS comment
-rw-r--r-- | actions/apigrouplist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index 42211a03c..3ea2c30cb 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -93,6 +93,7 @@ class ApiGroupListAction extends ApiBareAuthAction parent::handle($args); $sitename = common_config('site', 'name'); + // TRANS: %s is a user name $title = sprintf(_("%s's groups"), $this->user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:Groups"; @@ -101,8 +102,8 @@ class ApiGroupListAction extends ApiBareAuthAction array('nickname' => $this->user->nickname) ); - // TRANS: Meant to convey the user is a member of each of the groups listed $subtitle = sprintf( + // TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s _("%1\$s groups %2\$s is a member of."), $sitename, $this->user->nickname |