Index: trunk/extensions/Translate/specials/SpecialMessageGroupStats.php |
— | — | @@ -52,7 +52,12 @@ |
53 | 53 | |
54 | 54 | /// Overwritten from SpecialLanguageStats |
55 | 55 | protected function outputIntroduction() { |
56 | | - return ''; |
| 56 | + global $wgRequest, $wgOut; |
| 57 | + $group = $wgRequest->getVal( 'group' ); |
| 58 | + $priorityLangs = TranslateMetadata::get( $group, 'prioritylangs' ); |
| 59 | + if( $priorityLangs ){ |
| 60 | + $wgOut->addHTML( wfMsg('tpt-priority-languages', $priorityLangs ) ); |
| 61 | + } |
57 | 62 | } |
58 | 63 | |
59 | 64 | /// Overwriten from SpecialLanguageStats |