Update.
[lhc/web/wiklou.git] / maintenance / language / alltrans.php
1 <?php
2 /**
3 * @addtogroup Maintenance
4 *
5 * Get all the translations messages, as defined in the English language file.
6 */
7
8 require_once( dirname(__FILE__).'/../commandLine.inc' );
9
10 $wgEnglishMessages = array_keys( Language::getMessagesFor( 'en' ) );
11 foreach( $wgEnglishMessages as $key ) {
12 echo "$key\n";
13 }
14
15