Index: trunk/phase3/languages/Language.php |
— | — | @@ -3815,7 +3815,7 @@ |
3816 | 3816 | function formatBitrate( $bps ) { |
3817 | 3817 | $units = array( '', 'kilo', 'mega', 'giga', 'tera', 'peta', 'exa', 'zeta', 'yotta' ); |
3818 | 3818 | if ( $bps <= 0 ) { |
3819 | | - return $this->formatNum( $bps ) . $units[0]; |
| 3819 | + return str_replace( '$1', $this->formatNum( $bps ), $this->getMessageFromDB( 'bitrate-bits' ) ); |
3820 | 3820 | } |
3821 | 3821 | $unitIndex = (int)floor( log10( $bps ) / 3 ); |
3822 | 3822 | $mantissa = $bps / pow( 1000, $unitIndex ); |