From: Brion Vibber Date: Fri, 9 Apr 2010 16:43:34 +0000 (-0700) Subject: Cleanup bad i18n format for page title on bookmarklet posting window X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b76b0d3a5ff59b636ccde6966c08f1ea00705a0d;p=quix0rs-gnu-social.git Cleanup bad i18n format for page title on bookmarklet posting window --- diff --git a/actions/bookmarklet.php b/actions/bookmarklet.php index 0603a74561..041c2e8947 100644 --- a/actions/bookmarklet.php +++ b/actions/bookmarklet.php @@ -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()