Index: trunk/extensions/CodeReview/ui/CodeRepoListView.php |
— | — | @@ -21,7 +21,6 @@ |
22 | 22 | public static function getNavItem( $repo ) { |
23 | 23 | global $wgLang, $wgUser; |
24 | 24 | $name = $repo->getName(); |
25 | | - $text = "'''[[Special:Code/$name|$name]]''' ("; |
26 | 25 | $links[] = "[[Special:Code/$name/comments|" . wfMsgHtml( 'code-notes' ) . "]]"; |
27 | 26 | $links[] = "[[Special:Code/$name/statuschanges|" . wfMsgHtml( 'code-statuschanges' ) . "]]"; |
28 | 27 | if ( $wgUser->getId() ) { |
— | — | @@ -35,8 +34,7 @@ |
36 | 35 | $links[] = "[[Special:Code/$name/status|" . wfMsgHtml( 'code-status' ) . "]]"; |
37 | 36 | $links[] = "[[Special:Code/$name/releasenotes|" . wfMsgHtml( 'code-releasenotes' ) . "]]"; |
38 | 37 | $links[] = "[[Special:Code/$name/stats|" . wfMsgHtml( 'code-stats' ) . "]]"; |
39 | | - $text .= $wgLang->pipeList( $links ); |
40 | | - $text .= ")"; |
| 38 | + $text = "'''[[Special:Code/$name|$name]]''' " . wfMsg( 'parentheses', $wgLang->pipeList( $links ) ); |
41 | 39 | return $text; |
42 | 40 | } |
43 | 41 | } |