summaryrefslogtreecommitdiff
path: root/maintenance/duplicatetrans.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/duplicatetrans.php')
-rw-r--r--maintenance/duplicatetrans.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/maintenance/duplicatetrans.php b/maintenance/duplicatetrans.php
deleted file mode 100644
index 89d9cff1..00000000
--- a/maintenance/duplicatetrans.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-/**
- * Prints out messages that are the same as the message with the corrisponding
- * key in the Language.php file
- *
- * @package MediaWiki
- * @subpackage Maintenance
- */
-
-require_once('commandLine.inc');
-
-if ( 'en' == $wgLanguageCode ) {
- print "Current selected language is English. Cannot check translations.\n";
- exit();
-}
-
-$count = $total = 0;
-$msgarray = 'wgAllMessages' . ucfirst( $wgLanguageCode );
-
-foreach ( $$msgarray as $code => $msg ) {
- ++$total;
- if ( @$wgAllMessagesEn[$code] == $msg ) {
- echo "* $code\n";
- ++$count;
- }
-}
-
-echo "{$count} messages of {$total} are duplicates\n";
-?>