diff options
author | Evan Prodromou <evan@status.net> | 2010-01-24 22:52:03 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-24 22:52:03 -0500 |
commit | fc7afed92478117d009d835a4d1cd0565ada1089 (patch) | |
tree | c1550f260d95b0a47b95c1b4d9dc0521c3a19436 | |
parent | e400437d5783a5a1a03feb3ea3e5b6a40a71ed60 (diff) |
fix interpolation for positional arguments in replies
-rw-r--r-- | actions/replies.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/replies.php b/actions/replies.php index 2e50f1c3c..164c328db 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -124,7 +124,7 @@ class RepliesAction extends OwnerDesignAction if ($this->page == 1) { return sprintf(_("Replies to %s"), $this->user->nickname); } else { - return sprintf(_("Replies to %1$s, page %2$d"), + return sprintf(_('Replies to %1$s, page %2$d'), $this->user->nickname, $this->page); } |