summaryrefslogtreecommitdiff
path: root/maintenance/redundanttrans.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2006-10-11 18:12:39 +0000
committerPierre Schmitz <pierre@archlinux.de>2006-10-11 18:12:39 +0000
commit183851b06bd6c52f3cae5375f433da720d410447 (patch)
treea477257decbf3360127f6739c2f9d0ec57a03d39 /maintenance/redundanttrans.php
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'maintenance/redundanttrans.php')
-rw-r--r--maintenance/redundanttrans.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/maintenance/redundanttrans.php b/maintenance/redundanttrans.php
new file mode 100644
index 00000000..de096863
--- /dev/null
+++ b/maintenance/redundanttrans.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Prints out messages that are no longer used.
+ *
+ * @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 ( ! array_key_exists( $code, $wgAllMessagesEn ) ) {
+ print "* $code\n";
+ ++$count;
+ }
+}
+
+print "{$count} messages of {$total} are redundant\n";
+?>