Index: trunk/extensions/CodeReview/ui/CodeAuthorListView.php |
— | — | @@ -8,11 +8,11 @@ |
9 | 9 | } |
10 | 10 | |
11 | 11 | function execute() { |
12 | | - global $wgOut; |
| 12 | + global $wgOut, $wgLang; |
13 | 13 | $authors = $this->mRepo->getAuthorList(); |
14 | 14 | $repo = $this->mRepo->getName(); |
15 | 15 | $text = wfMsg( 'code-authors-text' ) . "\n\n"; |
16 | | - $text .= '<strong>' . wfMsg( 'code-author-total', count( $authors ) ) . "</strong>\n"; |
| 16 | + $text .= '<strong>' . wfMsg( 'code-author-total', $wgLang->formatNum( count( $authors ) ) ) . "</strong>\n"; |
17 | 17 | foreach ( $authors as $committer ) { |
18 | 18 | if ( $committer ) { |
19 | 19 | $text .= "* [[Special:Code/$repo/author/$committer|$committer]]"; |