Index: trunk/phase3/includes/specials/SpecialMovepage.php |
— | — | @@ -235,16 +235,19 @@ |
236 | 236 | |
237 | 237 | if( ($this->oldTitle->hasSubpages() || $this->oldTitle->getTalkPage()->hasSubpages()) |
238 | 238 | && $this->oldTitle->userCan( 'move-subpages' ) ) { |
239 | | - global $wgMaximumMovedPages; |
| 239 | + global $wgMaximumMovedPages, $wgLang; |
240 | 240 | |
241 | 241 | $wgOut->addHTML( " |
242 | 242 | <tr> |
243 | 243 | <td></td> |
244 | 244 | <td class=\"mw-input\">" . |
245 | | - Xml::checkLabel( wfMsg( |
| 245 | + Xml::checkLabel( wfMsgExt( |
246 | 246 | ( $this->oldTitle->hasSubpages() |
247 | | - ? 'move-subpages' |
248 | | - : 'move-talk-subpages' ), |
| 247 | + ? 'move-subpages' |
| 248 | + : 'move-talk-subpages' ), |
| 249 | + array( 'parsemag' ), |
| 250 | + $wgLang->formatNum( $wgMaximumMovedPages ), |
| 251 | + # $2 to allow use of PLURAL in message. |
249 | 252 | $wgMaximumMovedPages |
250 | 253 | ), |
251 | 254 | 'wpMovesubpages', 'wpMovesubpages', |