Index: trunk/extensions/CodeReview/CodeReview.i18n.php |
— | — | @@ -43,6 +43,7 @@ |
44 | 44 | 'code-author-unlink' => 'unlink?', |
45 | 45 | 'code-author-unlinksuccess' => 'Author $1 has been unlinked', |
46 | 46 | 'code-author-badtoken' => 'Session error trying to perform the action.', |
| 47 | + 'code-author-total' => 'Total number of authors: $1', |
47 | 48 | 'code-browsing-path' => "Browsing revisions in '''$1'''", |
48 | 49 | 'code-field-id' => 'Revision', |
49 | 50 | 'code-field-author' => 'Author', |
Index: trunk/extensions/CodeReview/ui/CodeAuthorListView.php |
— | — | @@ -11,7 +11,8 @@ |
12 | 12 | global $wgOut; |
13 | 13 | $authors = $this->mRepo->getAuthorList(); |
14 | 14 | $repo = $this->mRepo->getName(); |
15 | | - $text = wfMsg( 'code-authors-text' ) . "\n"; |
| 15 | + $text = wfMsg( 'code-authors-text' ) . "\n\n"; |
| 16 | + $text .= '<strong>' . wfMsg( 'code-author-total', count( $authors ) ) . "</strong>\n"; |
16 | 17 | foreach ( $authors as $committer ) { |
17 | 18 | if ( $committer ) { |
18 | 19 | $text .= "* [[Special:Code/$repo/author/$committer|$committer]]"; |