Move the () surrounding description strings of files, out of the description and...
[lhc/web/wiklou.git] / includes / media / Generic.php
index 92f0304..cf69a01 100644 (file)
@@ -240,8 +240,8 @@ abstract class MediaHandler {
 
        function getShortDesc( $file ) {
                global $wgLang;
-               $nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $file->getSize() ) ) . ')';
+               $nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
+                       $wgLang->formatNum( $file->getSize() ) );
                return "$nbytes";
        }
 
@@ -255,8 +255,8 @@ abstract class MediaHandler {
        
        static function getGeneralShortDesc( $file ) {
                global $wgLang;
-               $nbytes = '(' . wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $file->getSize() ) ) . ')';
+               $nbytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
+                       $wgLang->formatNum( $file->getSize() ) );
                return "$nbytes";
        }