Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -21,6 +21,7 @@ |
22 | 22 | 'code-load-diff'=> 'Loading diff…', |
23 | 23 | 'code-notes' => 'review notes', |
24 | 24 | 'code-authors' => 'authors', |
| 25 | + 'code-status' => 'status', |
25 | 26 | 'code-tags' => 'tags', |
26 | 27 | 'code-authors-text' => 'Below is a list of repo authors in order of recent commits.', |
27 | 28 | 'code-author-haslink' => 'This author is linked to the wiki user $1', |
Index: trunk/extensions/CodeReview/CodeRepoListView.php |
— | — | @@ -21,6 +21,7 @@ |
22 | 22 | public static function getNavItem( $name ) { |
23 | 23 | $text = "'''[[Special:Code/$name|$name]]''' ("; |
24 | 24 | $text .= "[[Special:Code/$name/comments|".wfMsgHtml( 'code-notes' )."]]"; |
| 25 | + $text .= " | [[Special:Code/$name/status|".wfMsgHtml( 'code-status' )."]]"; |
25 | 26 | $text .= " | [[Special:Code/$name/tag|".wfMsgHtml( 'code-tags' )."]]"; |
26 | 27 | $text .= " | [[Special:Code/$name/author|".wfMsgHtml( 'code-authors' )."]]"; |
27 | 28 | $text .= ")"; |