summaryrefslogtreecommitdiff
path: root/plugins/Disqus
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-09-23 15:46:01 -0700
committerZach Copley <zach@status.net>2010-09-23 15:46:01 -0700
commit62f7d6c74dcfca5f073c04aa3ba68b9d6a4ac77d (patch)
treee4c2f62547f80aba798f352f6accd94722e56f55 /plugins/Disqus
parent7e177b7ec6ac070e5f31749e26feabc89796d46a (diff)
Fix strings in Disqus plugin for i18n
Diffstat (limited to 'plugins/Disqus')
-rw-r--r--plugins/Disqus/DisqusPlugin.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php
index 3901562f9..96bfb4e09 100644
--- a/plugins/Disqus/DisqusPlugin.php
+++ b/plugins/Disqus/DisqusPlugin.php
@@ -108,14 +108,14 @@ ENDOFSCRIPT;
$action->elementStart('div', $attrs);
$action->elementStart('noscript');
- // @todo FIXME: No i18n yet, because of bad implementation. Should be one string.
- $action->raw('Please enable JavaScript to view the ');
- $noscriptUrl = 'http://disqus.com/?ref_noscript=' . $this->shortname;
- $action->element('a', array('href' => $noscriptUrl), 'comments powered by Disqus.');
+ $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname);
+ $output = common_markup_to_html($noScriptMsg);
+ $action->raw($output);
+
$action->elementEnd('noscript');
$action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink'));
- $action->raw('blog comments powered by ');
+ $action->raw(_m('Comments powered by '));
$action->element('span', array('class' => 'logo-disqus'), 'Disqus');
$action->elementEnd('a');
$action->elementEnd('div');