]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
change double quotes to single quotes in numbered format string
authorEvan Prodromou <evan@status.net>
Thu, 14 Jan 2010 07:17:37 +0000 (23:17 -0800)
committerEvan Prodromou <evan@status.net>
Thu, 14 Jan 2010 07:17:37 +0000 (23:17 -0800)
actions/all.php

index efa4521e21a9170bf53c41522270caffa68ff72e..3eb1852147f4b8467f27fd2f41b6dbd850101a90 100644 (file)
@@ -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);
         }