diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
commit | 183851b06bd6c52f3cae5375f433da720d410447 (patch) | |
tree | a477257decbf3360127f6739c2f9d0ec57a03d39 /maintenance/duplicatetrans.php |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'maintenance/duplicatetrans.php')
-rw-r--r-- | maintenance/duplicatetrans.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/maintenance/duplicatetrans.php b/maintenance/duplicatetrans.php new file mode 100644 index 00000000..89d9cff1 --- /dev/null +++ b/maintenance/duplicatetrans.php @@ -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"; +?> |