From 8d66c4d82b00dc84eddd51beecb62499253979c0 Mon Sep 17 00:00:00 2001 From: Jimmy Collins Date: Wed, 4 Oct 2006 19:18:31 +0000 Subject: [PATCH] moved transstat.php to maintenance/language/ --- maintenance/{ => language}/transstat.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename maintenance/{ => language}/transstat.php (97%) diff --git a/maintenance/transstat.php b/maintenance/language/transstat.php similarity index 97% rename from maintenance/transstat.php rename to maintenance/language/transstat.php index 7bee51660a..2dd116a967 100644 --- a/maintenance/transstat.php +++ b/maintenance/language/transstat.php @@ -12,7 +12,7 @@ * http://meta.wikimedia.org/wiki/Localization_statistics */ -require_once( 'commandLine.inc' ); +require_once( 'maintenance/commandLine.inc' ); require_once( 'languages.inc' ); if ( isset( $options['help'] ) ) { @@ -64,8 +64,8 @@ class wikiStatsOutput extends statsOutput { global $IP; $version = SpecialVersion::getVersion( $IP ); echo "'''Statistics based on:''' " . $version . "\n\n"; - echo "'''Note:''' These statistics can be generated by running php maintenance/transstat.php.\n\n"; - echo "For additional information on specific languages (the message names, the actual problems, etc.), run php maintenance/checkLanguage.php --lang=foo.\n\n"; + echo "'''Note:''' These statistics can be generated by running php maintenance/language/transstat.php.\n\n"; + echo "For additional information on specific languages (the message names, the actual problems, etc.), run php maintenance/language/checkLanguage.php --lang=foo.\n\n"; echo "{| border=2 cellpadding=4 cellspacing=0 style=\"background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse;\" width=100%\n"; } function footer() { -- 2.20.1