Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -28,6 +28,7 @@ |
29 | 29 | 'code-notes' => 'recent comments', |
30 | 30 | 'code-statuschanges' => 'status changes', |
31 | 31 | 'code-mycommits' => 'my commits', |
| 32 | + 'code-mycomments' => 'my comments', |
32 | 33 | 'code-authors' => 'authors', |
33 | 34 | 'code-status' => 'states', |
34 | 35 | 'code-tags' => 'tags', |
Index: trunk/extensions/CodeReview/ui/CodeRepoListView.php |
— | — | @@ -27,6 +27,7 @@ |
28 | 28 | $author = $repo->wikiUserAuthor( $wgUser->getName() ); |
29 | 29 | if ( $author !== false ) { |
30 | 30 | $links[] = "[[Special:Code/$name/author/$author|" . wfMsgHtml( 'code-mycommits' ) . "]]"; |
| 31 | + $links[] = "[[Special:Code/$name/comments/$author|" . wfMsgHtml( 'code-mycomments' ) . "]]"; |
31 | 32 | } |
32 | 33 | } |
33 | 34 | $links[] = "[[Special:Code/$name/tag|" . wfMsgHtml( 'code-tags' ) . "]]"; |