* L10n update

* superfluous whitespace removed.
This commit is contained in:
Siebrand Mazeland 2010-09-18 11:27:37 +02:00
parent eed0b24f23
commit 11a98ea41f

View File

@ -48,7 +48,6 @@ if (!defined('STATUSNET')) {
*/ */
class TinyMCEPlugin extends Plugin class TinyMCEPlugin extends Plugin
{ {
var $html; var $html;
function onEndShowScripts($action) function onEndShowScripts($action)
@ -74,7 +73,7 @@ class TinyMCEPlugin extends Plugin
'author' => 'Evan Prodromou', 'author' => 'Evan Prodromou',
'homepage' => 'http://status.net/wiki/Plugin:TinyMCE', 'homepage' => 'http://status.net/wiki/Plugin:TinyMCE',
'rawdescription' => 'rawdescription' =>
_m('Use TinyMCE library to allow rich text editing in the browser')); _m('Use TinyMCE library to allow rich text editing in the browser.'));
return true; return true;
} }
@ -108,7 +107,7 @@ class TinyMCEPlugin extends Plugin
/** /**
* Hook for new-notice form processing to take our HTML goodies; * Hook for new-notice form processing to take our HTML goodies;
* won't affect API posting etc. * won't affect API posting etc.
* *
* @param NewNoticeAction $action * @param NewNoticeAction $action
* @param User $user * @param User $user
* @param string $content * @param string $content
@ -159,9 +158,9 @@ class TinyMCEPlugin extends Plugin
/** /**
* Format the attachment placeholder img with the final version. * Format the attachment placeholder img with the final version.
* *
* @param DOMElement $img * @param DOMElement $img
* @param MediaFile $media * @param MediaFile $media
*/ */
private function formatAttachment($img, $media) private function formatAttachment($img, $media)
{ {
@ -321,5 +320,4 @@ END_OF_SCRIPT;
return $scr; return $scr;
} }
} }