Index: trunk/extensions/Translate/specials/SpecialMessageGroupStats.php |
— | — | @@ -167,6 +167,10 @@ |
168 | 168 | $this->incomplete = true; |
169 | 169 | $extra = array(); |
170 | 170 | } else { |
| 171 | + if( $total === 0 ) { |
| 172 | + error_log( $groupId . ' has 0 messages.' ); |
| 173 | + } |
| 174 | + |
171 | 175 | if ( $this->noComplete && $fuzzy === 0 && $translated === $total ) { |
172 | 176 | return ''; |
173 | 177 | } |
Index: trunk/extensions/Translate/specials/SpecialLanguageStats.php |
— | — | @@ -376,6 +376,10 @@ |
377 | 377 | $this->incomplete = true; |
378 | 378 | $extra = array(); |
379 | 379 | } else { |
| 380 | + if( $total === 0 ) { |
| 381 | + error_log( $groupId . ' has 0 messages.' ); |
| 382 | + } |
| 383 | + |
380 | 384 | if ( $this->noComplete && $fuzzy === 0 && $translated === $total ) { |
381 | 385 | return ''; |
382 | 386 | } |