Index: trunk/phase3/includes/Credits.php |
— | — | @@ -144,7 +144,7 @@ |
145 | 145 | # "ThisSite user(s) A, B and C" |
146 | 146 | |
147 | 147 | if (!empty($user)) { |
148 | | - $user = wfMsg('siteusers', $user); |
| 148 | + $user = wfMsg('siteusers', array( $user, count($contributors) ) ); |
149 | 149 | } |
150 | 150 | |
151 | 151 | # This is the big list, all mooshed together. We sift for blank strings |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2758,7 +2758,7 @@ |
2759 | 2759 | 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', # $1 date, $2 time, $3 user |
2760 | 2760 | 'othercontribs' => 'Based on work by $1.', |
2761 | 2761 | 'others' => 'others', |
2762 | | -'siteusers' => '{{SITENAME}} user(s) $1', |
| 2762 | +'siteusers' => '{{SITENAME}} {{PLURAL:$2|user|users}} $1', |
2763 | 2763 | 'creditspage' => 'Page credits', |
2764 | 2764 | 'nocredits' => 'There is no credits info available for this page.', |
2765 | 2765 | |