From 62f7d6c74dcfca5f073c04aa3ba68b9d6a4ac77d Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 23 Sep 2010 15:46:01 -0700 Subject: Fix strings in Disqus plugin for i18n --- plugins/Disqus/DisqusPlugin.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/Disqus') 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'); -- cgit v1.2.3-54-g00ecf