Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2560,7 +2560,6 @@ |
2561 | 2561 | 'widthheightpage', |
2562 | 2562 | 'file-info', |
2563 | 2563 | 'file-info-size', |
2564 | | - 'file-info-wrapper', |
2565 | 2564 | 'file-nohires', |
2566 | 2565 | 'svg-long-desc', |
2567 | 2566 | 'show-big-image', |
Index: trunk/phase3/includes/ImagePage.php |
— | — | @@ -330,7 +330,7 @@ |
331 | 331 | $height_orig = $this->displayImg->getHeight( $page ); |
332 | 332 | $height = $height_orig; |
333 | 333 | |
334 | | - $longDesc = wfMsgExt( 'file-info-wrapper', 'parseinline', $this->displayImg->getLongDesc() ); |
| 334 | + $longDesc = wfMsgExt( 'parentheses', 'parseinline', $this->displayImg->getLongDesc() ); |
335 | 335 | |
336 | 336 | wfRunHooks( 'ImageOpenShowImageInlineBefore', array( &$this, &$wgOut ) ); |
337 | 337 | |
Index: trunk/phase3/includes/specials/SpecialSearch.php |
— | — | @@ -594,7 +594,7 @@ |
595 | 595 | if( $img ) { |
596 | 596 | $thumb = $img->transform( array( 'width' => 120, 'height' => 120 ) ); |
597 | 597 | if( $thumb ) { |
598 | | - $desc = wfMsgExt( 'file-info-wrapper', 'parseinline', $img->getShortDesc() ); |
| 598 | + $desc = wfMsgExt( 'parentheses', 'parseinline', $img->getShortDesc() ); |
599 | 599 | wfProfileOut( __METHOD__ ); |
600 | 600 | // Float doesn't seem to interact well with the bullets. |
601 | 601 | // Table messes up vertical alignment of the bullets. |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -3059,7 +3059,6 @@ |
3060 | 3060 | 'widthheightpage' => 'This message is used on image pages in the dimensions column in the file history section for images with more than one page. Parameter $1 is the image width (in pixels), parameter $2 is the image height, and parameter $3 is the number of pages.', |
3061 | 3061 | 'file-info' => 'File info displayed on file description page.', |
3062 | 3062 | 'file-info-size' => 'File info displayed on file description page.', |
3063 | | -'file-info-wrapper' => 'Surrounds file info descriptions', |
3064 | 3063 | 'file-nohires' => 'File info displayed on file description page. For example of message in use see [[:File:Mouse10.gif]].', |
3065 | 3064 | 'svg-long-desc' => 'Displayed under an SVG image at the image description page. Note that argument 3 is a string that includes the file size unit symbol. See for example [[:File:Yes check.svg]].', |
3066 | 3065 | 'show-big-image' => 'Displayed under an image at the image description page, when it is displayed smaller there than it was uploaded.', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3604,7 +3604,6 @@ |
3605 | 3605 | 'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}', |
3606 | 3606 | 'file-info' => 'file size: $1, MIME type: $2', |
3607 | 3607 | 'file-info-size' => '$1 × $2 pixels, file size: $3, MIME type: $4', |
3608 | | -'file-info-wrapper' => '($1)', |
3609 | 3608 | 'file-nohires' => '<small>No higher resolution available.</small>', |
3610 | 3609 | 'svg-long-desc' => 'SVG file, nominally $1 × $2 pixels, file size: $3', |
3611 | 3610 | 'show-big-image' => 'Full resolution', |