diff options
author | Evan Prodromou <evan@status.net> | 2010-01-24 22:55:29 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-24 22:55:29 -0500 |
commit | 73fdec6c12c308732f0673f2d10ab1542c927a33 (patch) | |
tree | fd07251c0e29704312ff0c5335492190520ac817 | |
parent | 9077db00a50a6123ece70eb690b658c19c5aeb27 (diff) |
fix interpolation of positional arguments to sprintf in usergroups
-rw-r--r-- | actions/usergroups.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/usergroups.php b/actions/usergroups.php index 504226143..97faabae6 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -59,9 +59,9 @@ class UsergroupsAction extends OwnerDesignAction function title() { if ($this->page == 1) { - return sprintf(_("%s groups"), $this->user->nickname); + return sprintf(_('%s groups'), $this->user->nickname); } else { - return sprintf(_("%1$s groups, page %2$d"), + return sprintf(_('%1$s groups, page %2$d'), $this->user->nickname, $this->page); } |