change double quotes to single quotes in numbered format string

This commit is contained in:
Evan Prodromou 2010-01-13 23:17:37 -08:00
parent 16742d0fde
commit 30e50439a3
1 changed files with 1 additions and 1 deletions

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