Index: trunk/phase3/includes/specials/SpecialImport.php |
— | — | @@ -350,11 +350,11 @@ |
351 | 351 | } |
352 | 352 | |
353 | 353 | function close() { |
354 | | - global $wgOut; |
| 354 | + global $wgOut, $wgLang; |
355 | 355 | |
356 | 356 | if ( $this->mLogItemCount > 0 ) { |
357 | 357 | $msg = wfMsgExt( 'imported-log-entries', 'parseinline', |
358 | | - $this->mLogItemCount ); |
| 358 | + $wgLang->formatNum( $this->mLogItemCount ) ); |
359 | 359 | $wgOut->addHTML( Xml::tags( 'li', null, $msg ) ); |
360 | 360 | } elseif( $this->mPageCount == 0 && $this->mLogItemCount == 0 ) { |
361 | 361 | $wgOut->addHTML( "</ul>\n" ); |
Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2173,6 +2173,7 @@ |
2174 | 2174 | 'importstart', |
2175 | 2175 | 'import-revision-count', |
2176 | 2176 | 'importnopages', |
| 2177 | + 'imported-log-entries', |
2177 | 2178 | 'importfailed', |
2178 | 2179 | 'importunknownsource', |
2179 | 2180 | 'importcantopen', |