From: Rotem Liss Date: Sun, 6 Aug 2006 14:35:57 +0000 (+0000) Subject: In transstat.php, making the title of the duplicates clearer, and removing wrong... X-Git-Tag: 1.31.0-rc.0~56049 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/rappels.php?a=commitdiff_plain;h=7711ce98074ff8e471edffb5b293c127d0507c41;p=lhc%2Fweb%2Fwiklou.git In transstat.php, making the title of the duplicates clearer, and removing wrong "FIXME". --- diff --git a/maintenance/transstat.php b/maintenance/transstat.php index 0af80b2f3b..abf8644a52 100644 --- a/maintenance/transstat.php +++ b/maintenance/transstat.php @@ -141,20 +141,15 @@ $wgOut->blockstart(); $wgOut->element( 'Language', true ); $wgOut->element( 'Translated', true ); $wgOut->element( '%', true ); -$wgOut->element( 'Possibly untranslated', true ); +$wgOut->element( 'Same to English', true ); $wgOut->element( '%', true ); $wgOut->element( 'Obsolete', true ); $wgOut->element( '%', true ); $wgOut->blockend(); foreach ( $wgLanguages->getList() as $code ) { - # Don't check English - if ( $code == 'en' ) { - continue; - } - - # FIXME - temporary hack for this non-language won't appear - if ( $code == 'enRTL' ) { + # Don't check English or RTL English + if ( $code == 'en' || $code == 'enRTL' ) { continue; }