From: Evan Prodromou Date: Thu, 14 Jan 2010 07:17:37 +0000 (-0800) Subject: change double quotes to single quotes in numbered format string X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=30e50439a32eaf7b68897c5b141c955f6906ad79;p=quix0rs-gnu-social.git change double quotes to single quotes in numbered format string --- diff --git a/actions/all.php b/actions/all.php index efa4521e21..3eb1852147 100644 --- a/actions/all.php +++ b/actions/all.php @@ -81,7 +81,7 @@ class AllAction extends ProfileAction function title() { if ($this->page > 1) { - return sprintf(_("%1$s and friends, page %2$d"), $this->user->nickname, $this->page); + return sprintf(_('%1$s and friends, page %2$d'), $this->user->nickname, $this->page); } else { return sprintf(_("%s and friends"), $this->user->nickname); }