Index: trunk/extensions/Translate/TranslateTasks.php |
— | — | @@ -323,7 +323,7 @@ |
324 | 324 | |
325 | 325 | public function output() { |
326 | 326 | $writer = $this->messageGroup->getWriter(); |
327 | | - $writer->addAuthors( $this->getAuthorsArray() ); |
| 327 | + $writer->addAuthors( $this->getAuthorsArray(), $this->options->getLanguage() ); |
328 | 328 | $data = $writer->webExport( $this->messages ); |
329 | 329 | |
330 | 330 | return Xml::openElement( 'textarea', array( 'id' => 'wpTextbox1', 'rows' => '50' ) ) . |
— | — | @@ -341,7 +341,7 @@ |
342 | 342 | |
343 | 343 | public function output() { |
344 | 344 | $writer = $this->messageGroup->getWriter(); |
345 | | - $writer->addAuthors( $this->getAuthorsArray() ); |
| 345 | + $writer->addAuthors( $this->getAuthorsArray(), $this->options->getLanguage() ); |
346 | 346 | return $writer->webExport( $this->messages ); |
347 | 347 | } |
348 | 348 | } |