Index: trunk/phase3/includes/Credits.php |
— | — | @@ -108,7 +108,7 @@ |
109 | 109 | if( $cnt > 0 && $contributors->count() > $cnt ){ |
110 | 110 | $others_link = self::othersLink( $article ); |
111 | 111 | if( !$showIfMax ) |
112 | | - return wfMsg( 'othercontribs', $others_link ); |
| 112 | + return wfMsgExt( 'othercontribs', 'parsemag', $others_link, $contributors->count() ); |
113 | 113 | } |
114 | 114 | |
115 | 115 | $real_names = array(); |
— | — | @@ -163,7 +163,9 @@ |
164 | 164 | $creds = $wgLang->listToText( $fulllist ); |
165 | 165 | |
166 | 166 | # "Based on work by ..." |
167 | | - return strlen( $creds ) ? wfMsg( 'othercontribs', $creds ) : ''; |
| 167 | + return strlen( $creds ) |
| 168 | + ? wfMsgExt( 'othercontribs', 'parsemag', $creds, count( $fulllist ) ) |
| 169 | + : ''; |
168 | 170 | } |
169 | 171 | |
170 | 172 | /** |
Index: trunk/extensions/Translate/check-blacklist.php |
— | — | @@ -28,6 +28,7 @@ |
29 | 29 | 'lastmodifiedatby', // Optional time parameters |
30 | 30 | 'listusers-blocked', // Optional GENDER parameter |
31 | 31 | 'login-userblocked', // Optional GENDER parameter |
| 32 | + 'othercontribs', // Optional count parameter |
32 | 33 | 'perfcachedts', // Optional time parameters |
33 | 34 | 'prefs-memberingroups-type', // Optional parameter for group name |
34 | 35 | 'prefs-registration-date-time', // Optional time parameters |