Index: trunk/extensions/Translate/utils/StatsTable.php |
— | — | @@ -153,11 +153,11 @@ |
154 | 154 | |
155 | 155 | $out .= "\n\t\t" . $this->element( $this->formatPercentage( $translated / $total ), |
156 | 156 | $this->getBackgroundColour( $translated, $total ), |
157 | | - sprintf( '%1.3f', $translated / $total ) ); |
| 157 | + sprintf( '%1.5f', $translated / $total ) ); |
158 | 158 | |
159 | 159 | $out .= "\n\t\t" . $this->element( $this->formatPercentage( $fuzzy / $total ), |
160 | 160 | $this->getBackgroundColour( $fuzzy, $total, true ), |
161 | | - sprintf( '%1.3f', $fuzzy / $total ) ); |
| 161 | + sprintf( '%1.5f', $fuzzy / $total ) ); |
162 | 162 | |
163 | 163 | $out .= "\n\t" . Xml::closeElement( 'tr' ) . "\n"; |
164 | 164 | return $out; |