From: Evan Prodromou Date: Mon, 25 Jan 2010 03:52:03 +0000 (-0500) Subject: fix interpolation for positional arguments in replies X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fc7afed92478117d009d835a4d1cd0565ada1089;p=quix0rs-gnu-social.git fix interpolation for positional arguments in replies --- diff --git a/actions/replies.php b/actions/replies.php index 2e50f1c3c4..164c328db3 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); }