]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix strings in Disqus plugin for i18n
authorZach Copley <zach@status.net>
Thu, 23 Sep 2010 22:46:01 +0000 (15:46 -0700)
committerZach Copley <zach@status.net>
Thu, 23 Sep 2010 22:46:01 +0000 (15:46 -0700)
plugins/Disqus/DisqusPlugin.php

index 3901562f98fe02131c2db30c4f3d82106b7e0a90..96bfb4e09f8f2c0ee307baca3bf80a350dfcbc8a 100644 (file)
@@ -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');