addDescription( 'Get all messages as defined by the English language file' ); $this->localisationCache = MediaWikiServices::getInstance()->getLocalisationCache(); } public function execute() { $englishMessages = $this->localisationCache->getItem( 'en', 'messages' ); foreach ( array_keys( $englishMessages ) as $key ) { $this->output( "$key\n" ); } } } $maintClass = AllTrans::class; require_once RUN_MAINTENANCE_IF_MAIN;