Index: trunk/extensions/Translate/specials/SpecialLanguageStats.php |
— | — | @@ -231,6 +231,13 @@ |
232 | 232 | $out = wfMsgExt( 'translate-nothing-to-do', 'parse' ); |
233 | 233 | } |
234 | 234 | |
| 235 | + // @todo: Allow extra message here, once total translated volume goes |
| 236 | + // over a certain percentage? (former live hack at translatewiki) |
| 237 | + // if ( $this->totals['2'] && ( $this->totals['1'] / $this->totals['2'] ) > 0.95 ) { |
| 238 | + // global $wgOut; |
| 239 | + // $out .= $wfMessage( 'translate-somekey' ); |
| 240 | + // } |
| 241 | + |
235 | 242 | return $out; |
236 | 243 | } |
237 | 244 | |