diff options
author | Evan Prodromou <evan@status.net> | 2010-01-13 23:17:37 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-13 23:17:37 -0800 |
commit | 30e50439a32eaf7b68897c5b141c955f6906ad79 (patch) | |
tree | 954777689161c852b4d8b3e8c308ba7ad31aec9d | |
parent | 16742d0fde811256c386d1bae9768fcd939b9af8 (diff) |
change double quotes to single quotes in numbered format string
-rw-r--r-- | actions/all.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php index efa4521e2..3eb185214 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); } |