Cleanup bad i18n format for page title on bookmarklet posting window

This commit is contained in:
Brion Vibber 2010-04-09 09:43:34 -07:00
parent db497e80e8
commit b76b0d3a5f
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ class BookmarkletAction extends NewnoticeAction
{
function showTitle()
{
$this->element('title', null, _('Post to ').common_config('site', 'name'));
// TRANS: Title for mini-posting window loaded from bookmarklet.
$this->element('title', null, sprintf(_('Post to %s'), common_config('site', 'name')));
}
function showHeader()