Index: trunk/extensions/Translate/specials/SpecialTranslations.php |
— | — | @@ -194,7 +194,6 @@ |
195 | 195 | $ajaxPageList = array(); |
196 | 196 | $historyText = " <sup>" . wfMsgHtml( 'translate-translations-history-short' ) . "</sup> "; |
197 | 197 | $separator = wfMessage( 'word-separator' )->plain(); |
198 | | - $parentheses = wfMessage( 'parentheses' )->escaped(); |
199 | 198 | |
200 | 199 | foreach ( $res as $s ) { |
201 | 200 | $key = $s->page_title; |
— | — | @@ -205,7 +204,7 @@ |
206 | 205 | |
207 | 206 | $text = TranslateUtils::getLanguageName( $code, false, $wgLang->getCode() ); |
208 | 207 | $text .= $separator; |
209 | | - $text .= $parentheses->params( $code ); |
| 208 | + $text .= wfMessage( 'parentheses' )->params( $code )->escaped(); |
210 | 209 | $text = htmlspecialchars( $text ); |
211 | 210 | |
212 | 211 | if ( $canTranslate ) { |