Index: trunk/extensions/CountEdits/CountEdits.page.php |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | $skin =& $wgUser->getSkin(); |
83 | 83 | $wgOut->addHTML( '<h2>' . wfMsgHtml( 'countedits-resultheader', htmlspecialchars( $this->target ) ) . '</h2>' ); |
84 | 84 | $links = $skin->userLink( $id, $this->target ) . $skin->userToolLinks( $id, $this->target ); |
85 | | - $wgOut->addHTML( '<p>' . wfMsgHtml( 'countedits-resulttext', $links, $count ) . '</p>' ); |
| 85 | + $wgOut->addHTML( '<p>' . wfMsgExt( 'countedits-resulttext', array( 'escape', 'parsemag' ), $links, $count ) . '</p>' ); |
86 | 86 | $wgOut->addWikiText( wfMsg( 'countedits-warning' ) ); |
87 | 87 | } |
88 | 88 | |
Index: trunk/extensions/CountEdits/CountEdits.i18n.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | 'countedits-ok' => 'OK', |
22 | 22 | 'countedits-nosuchuser' => 'There is no user with the name $1.', |
23 | 23 | 'countedits-resultheader' => 'Results for $1', |
24 | | - 'countedits-resulttext' => '$1 has made $2 edits', |
| 24 | + 'countedits-resulttext' => '$1 has made $2 {{PLURAL:$2|edit|edits}}', |
25 | 25 | 'countedits-mostactive' => 'Most active contributors', |
26 | 26 | 'countedits-nocontribs' => 'There have been no contributions to this wiki.', |
27 | 27 | ); |