summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-09 09:43:34 -0700
committerBrion Vibber <brion@pobox.com>2010-04-09 09:43:34 -0700
commitf13bf37e11371dace9998e0c1cc03d233f986869 (patch)
treee3ba80d2464aa5cab7af5db030e6b24eb3d49bd9 /actions
parent13e8214a67815b92dea53de3f0644897b15c7c19 (diff)
Cleanup bad i18n format for page title on bookmarklet posting window
Diffstat (limited to 'actions')
-rw-r--r--actions/bookmarklet.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/bookmarklet.php b/actions/bookmarklet.php
index 0603a7456..041c2e894 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()