fix interpolation for positional arguments in replies

This commit is contained in:
Evan Prodromou 2010-01-24 22:52:03 -05:00
parent e400437d57
commit fc7afed924
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}