Index: trunk/extensions/Translate/MessageCollection.php |
— | — | @@ -257,6 +257,7 @@ |
258 | 258 | $this->authors = array(); |
259 | 259 | |
260 | 260 | unset( $this->tags['fuzzy'] ); |
| 261 | + $this->reverseMap = null; |
261 | 262 | } |
262 | 263 | |
263 | 264 | /** |
Index: trunk/extensions/Translate/scripts/export.php |
— | — | @@ -122,7 +122,7 @@ |
123 | 123 | } |
124 | 124 | |
125 | 125 | list( $total, $translated, ) = $stats[$code]; |
126 | | - if ( $translate/$total < $threshold ) { |
| 126 | + if ( $translated/$total*100 < $threshold ) { |
127 | 127 | unset( $langs[$index] ); |
128 | 128 | } |
129 | 129 | } |