Fix strings in Disqus plugin for i18n
This commit is contained in:
		@@ -108,14 +108,14 @@ ENDOFSCRIPT;
 | 
				
			|||||||
            $action->elementStart('div', $attrs);
 | 
					            $action->elementStart('div', $attrs);
 | 
				
			||||||
            $action->elementStart('noscript');
 | 
					            $action->elementStart('noscript');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			// @todo FIXME: No i18n yet, because of bad implementation. Should be one string.
 | 
					            $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname);
 | 
				
			||||||
            $action->raw('Please enable JavaScript to view the ');
 | 
					            $output = common_markup_to_html($noScriptMsg);
 | 
				
			||||||
            $noscriptUrl = 'http://disqus.com/?ref_noscript=' . $this->shortname;
 | 
					            $action->raw($output);
 | 
				
			||||||
            $action->element('a', array('href' => $noscriptUrl), 'comments powered by Disqus.');
 | 
					
 | 
				
			||||||
            $action->elementEnd('noscript');
 | 
					            $action->elementEnd('noscript');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            $action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink'));
 | 
					            $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->element('span', array('class' => 'logo-disqus'), 'Disqus');
 | 
				
			||||||
            $action->elementEnd('a');
 | 
					            $action->elementEnd('a');
 | 
				
			||||||
            $action->elementEnd('div');
 | 
					            $action->elementEnd('div');
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user