Fix unescaped dollar signs in double-quoted strings due to localization updates (%1$s etc)

This commit is contained in:
Brion Vibber
2010-10-04 14:24:04 -07:00
parent 2295bbec9e
commit d6b3d7fb1a
8 changed files with 11 additions and 11 deletions

View File

@@ -77,7 +77,7 @@ class AllmapAction extends MapAction
// @todo CHECKME: does this even happen? May not be needed.
// TRANS: Page title.
// TRANS: %1$s is a user nickname, %2$d is a page number.
return sprintf(_m("%1$s friends map, page %2$d"),
return sprintf(_m('%1$s friends map, page %2$d'),
$base,
$this->page);
}