lib/Limiter: fix translate w/ sprintf

This commit is contained in:
Eric Lippmann 2014-08-19 16:29:11 +02:00
parent 8c02f140c3
commit 995355ec30
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Limiter extends AbstractWidget
$this->url->setParam('limit', $limit),
null,
array(
'title' => t(sprintf('Show %s rows on one page', $caption))
'title' => sprintf(t('Show %s rows on one page'), $caption)
)
);
}