Index: trunk/phase3/includes/media/Generic.php |
— | — | @@ -416,10 +416,14 @@ |
417 | 417 | function getDimensionsString( $file ) { |
418 | 418 | global $wgLang; |
419 | 419 | $pages = $file->pageCount(); |
| 420 | + $width = $wgLang->formatNum( $file->getWidth() ); |
| 421 | + $height = $wgLang->formatNum( $file->getHeight() ); |
| 422 | + $pagesFmt = $wgLang->formatNum( $pages ) |
| 423 | + |
420 | 424 | if ( $pages > 1 ) { |
421 | | - return wfMsg( 'widthheightpage', $wgLang->formatNum( $file->getWidth() ), $wgLang->formatNum( $file->getHeight() ), $wgLang->formatNum( $pages ) ); |
| 425 | + return wfMsgExt( 'widthheightpage', 'parsemag', $width, $height, $pagesFmt ); |
422 | 426 | } else { |
423 | | - return wfMsg( 'widthheight', $wgLang->formatNum( $file->getWidth() ), $wgLang->formatNum( $file->getHeight() ) ); |
| 427 | + return wfMsg( 'widthheight', $width, $height ); |
424 | 428 | } |
425 | 429 | } |
426 | 430 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1476,7 +1476,7 @@ |
1477 | 1477 | 'right-autoconfirmed' => 'Edit semi-protected pages', |
1478 | 1478 | 'right-bot' => 'Be treated as an automated process', |
1479 | 1479 | 'right-nominornewtalk' => 'Not have minor edits to discussion pages trigger the new messages prompt', |
1480 | | -'right-apihighlimits' => 'Use API high limits', |
| 1480 | +'right-apihighlimits' => 'Use higher limits in API queries', |
1481 | 1481 | 'right-delete' => 'Delete pages', |
1482 | 1482 | 'right-bigdelete' => 'Delete pages with large histories', |
1483 | 1483 | 'right-deleterevision' => 'Delete and undelete specific revisions of pages', |
— | — | @@ -1714,7 +1714,7 @@ |
1715 | 1715 | 'redirectstofile' => 'The following files redirect to this file:', |
1716 | 1716 | 'sharedupload' => 'This file is a shared upload and may be used by other projects.', |
1717 | 1717 | 'shareduploadwiki' => 'Please see the $1 for further information.', |
1718 | | -'shareduploadwiki-desc' => 'The description on its $1 there is shown below.', |
| 1718 | +'shareduploadwiki-desc' => 'The description on its $1 on the shared repository is shown below.', |
1719 | 1719 | 'shareduploadwiki-linktext' => 'file description page', |
1720 | 1720 | 'shareddescriptionfollows' => '-', # do not translate or duplicate this message to other languages |
1721 | 1721 | 'shareduploadduplicate' => 'This file is a duplicate of $1 from shared repository.', |
— | — | @@ -2713,7 +2713,7 @@ |
2714 | 2714 | 'imagemaxsize' => 'Limit images on file description pages to:', |
2715 | 2715 | 'thumbsize' => 'Thumbnail size:', |
2716 | 2716 | 'widthheight' => '$1×$2', # only translate this message to other languages if you have to change it |
2717 | | -'widthheightpage' => '$1×$2, $3 pages', |
| 2717 | +'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}', |
2718 | 2718 | 'file-info' => '(file size: $1, MIME type: $2)', |
2719 | 2719 | 'file-info-size' => '($1 × $2 pixel, file size: $3, MIME type: $4)', |
2720 | 2720 | 'file-nohires' => '<small>No higher resolution available.</small>', |