mediawiki-extensions-Visual.../VisualEditor.i18n.php
Roan Kattouw 728077039d Put the shim from 9abad038 back (was reverted in b9bbf60f)
The shim triggers bug 58249, but that's not as bad as we thought.
It turns out LocalisationUpdate still finishes despite the scary
exception, it just skips VisualEditor and finishes the rest successfully.

I will work on making the LU error more useful, and eventually
making it support JSON blobs, but the shim isn't causing a
lot of damage for now.

Change-Id: I92f11524d891e901f1a089dd8cad1232478a5ee4
2013-12-10 11:11:10 -08:00

19 lines
531 B
PHP

<?php
$messages = array();
array_map( function ( $dir ) use ( &$messages ) {
$files = glob( __DIR__ . "/$dir/*.json" );
foreach ( $files as $file ) {
$langcode = substr( basename( $file ), 0, -5 );
$data = json_decode( file_get_contents( $file ), /* $assoc = */ true );
unset( $data['@metadata'] );
$messages[$langcode] = isset( $messages[$langcode] ) ?
array_merge( $messages[$langcode], $data ) :
$data;
}
}, array(
'modules/oojs-ui/i18n',
'modules/ve/i18n',
'modules/ve-mw/i18n',
'modules/ve-wmf/i18n'
) );