Index: trunk/extensions/Translate/SpecialSupportedLanguages.php |
— | — | @@ -59,13 +59,17 @@ |
60 | 60 | $lb->execute(); |
61 | 61 | global $wgUser; |
62 | 62 | $skin = $wgUser->getSkin(); |
| 63 | + $portalText = wfMsg( 'portal' ); |
63 | 64 | |
64 | 65 | foreach ( array_keys( $users ) as $code ) { |
65 | 66 | $portalTitle = Title::makeTitleSafe( NS_PORTAL, $code ); |
66 | 67 | $portalLink = $skin->link( |
67 | 68 | $portalTitle, |
68 | 69 | wfMsg( 'supportedlanguages-portallink', $code, $locals[$code], $natives[$code] ), |
69 | | - array( 'id' => $code ), |
| 70 | + array( |
| 71 | + 'id' => $code |
| 72 | + 'title' => $portalText . ' ' . $locals[$code] |
| 73 | + ), |
70 | 74 | array(), |
71 | 75 | array( 'known', 'noclasses' ) |
72 | 76 | ); |