mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-28 02:00:47 +00:00
1f6df56a60
Procedure per https://www.mediawiki.org/wiki/Manual:GenerateJsonI18n.php with shim. Add a file to .jshintignore to not make Jenkins block on something that's not related to this patch set. Change-Id: I9331d328746281a2eb7ec1317d557e8fd7931d74
21 lines
683 B
PHP
21 lines
683 B
PHP
<?php
|
|
$messages = array();
|
|
$GLOBALS['wgHooks']['LocalisationCacheRecache'][] = function ( $cache, $code, &$cachedData ) {
|
|
$codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] );
|
|
foreach ( $codeSequence as $csCode ) {
|
|
$fileName = __DIR__ . "/i18n/$csCode.json";
|
|
if ( is_readable( $fileName ) ) {
|
|
$data = FormatJson::decode( file_get_contents( $fileName ), true );
|
|
foreach ( array_keys( $data ) as $key ) {
|
|
if ( $key === '' || $key[0] === '@' ) {
|
|
unset( $data[$key] );
|
|
}
|
|
}
|
|
$cachedData['messages'] = array_merge( $data, $cachedData['messages'] );
|
|
}
|
|
|
|
$cachedData['deps'][] = new FileDependency( $fileName );
|
|
}
|
|
return true;
|
|
};
|