From acac0fc562b9582d73aa8e197f2c1d8633b92792 Mon Sep 17 00:00:00 2001 From: Lee Daniel Crocker Date: Wed, 23 Apr 2003 20:17:47 +0000 Subject: [PATCH] Adding checktrans script. --- maintenance/checktrans.php | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 maintenance/checktrans.php diff --git a/maintenance/checktrans.php b/maintenance/checktrans.php new file mode 100644 index 0000000000..f390a4faf0 --- /dev/null +++ b/maintenance/checktrans.php @@ -0,0 +1,48 @@ + $msg ) { + ++$total; + + if ( ! array_key_exists( $code, $$msgarray ) ) { + print "{$code}\n"; + ++$count; + } +} +print "{$count} messages of {$total} not translated.\n"; + -- 2.20.1