From 7711ce98074ff8e471edffb5b293c127d0507c41 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Sun, 6 Aug 2006 14:35:57 +0000 Subject: [PATCH] In transstat.php, making the title of the duplicates clearer, and removing wrong "FIXME". --- maintenance/transstat.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) 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; } -- 2.20.1