Index: trunk/extensions/CentralAuth/SpecialEditWikiSets.php |
— | — | @@ -174,7 +174,7 @@ |
175 | 175 | if( !in_array( $wiki, $allwikis ) ) |
176 | 176 | $badwikis[] = $wiki; |
177 | 177 | if( $badwikis ) { |
178 | | - $this->buildSetView( $id, wfMsgExt( 'centralauth-editset-badwikis', array( 'escapenoentities' ), implode( ', ', $badwikis ) ), |
| 178 | + $this->buildSetView( $id, wfMsgExt( 'centralauth-editset-badwikis', array( 'escapenoentities' ), array( implode( ', ', $badwikis ), count( $badwikis ) ), |
179 | 179 | $name, $type, $wikis, $reason ); |
180 | 180 | return; |
181 | 181 | } |
Index: trunk/extensions/CentralAuth/CentralAuth.i18n.php |
— | — | @@ -312,7 +312,7 @@ |
313 | 313 | 'centralauth-editset-grouplink' => '[[Special:GlobalGroupPermissions/$1|$1]]', |
314 | 314 | 'centralauth-editset-nouse' => '(none)', |
315 | 315 | 'centralauth-editset-usage' => 'Used in groups:', |
316 | | - 'centralauth-editset-badwikis' => 'Following wikis do not exist: $1.', |
| 316 | + 'centralauth-editset-badwikis' => 'The following {{PLURAL:$2|wiki does not|wikis do not}} exist: $1.', |
317 | 317 | 'centralauth-editset-success' => 'Successfully changed wiki set.', |
318 | 318 | 'centralauth-editset-return' => 'Return to main view', |
319 | 319 | |