fix interpolation for positional arguments in showstream

This commit is contained in:
Evan Prodromou 2010-01-24 22:50:07 -05:00
parent 536170d788
commit e400437d57
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class ShowstreamAction extends ProfileAction
if ($this->page == 1) {
return $base;
} else {
return sprintf(_("%1$s, page %2$d"),
return sprintf(_('%1$s, page %2$d'),
$base,
$this->page);
}