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