* Adding a tool to find duplicate translations
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 10 Aug 2005 22:11:09 +0000 (22:11 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 10 Aug 2005 22:11:09 +0000 (22:11 +0000)
maintenance/duplicatetrans.php [new file with mode: 0644]

diff --git a/maintenance/duplicatetrans.php b/maintenance/duplicatetrans.php
new file mode 100644 (file)
index 0000000..89d9cff
--- /dev/null
@@ -0,0 +1,29 @@
+<?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";
+?>