Paladox has uploaded a new change for review. https://gerrit.wikimedia.org/r/214003
Change subject: Remove i18n shim ...................................................................... Remove i18n shim Change-Id: I9aceef32012ce918c0d9b11b19a4b1be0744cd44 (cherry picked from commit a034c486af698822f94791aa7dbf3949563d54de) --- D TemplateSandbox.i18n.php M extension.json 2 files changed, 0 insertions(+), 36 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/TemplateSandbox refs/changes/03/214003/1 diff --git a/TemplateSandbox.i18n.php b/TemplateSandbox.i18n.php deleted file mode 100644 index cf000f8..0000000 --- a/TemplateSandbox.i18n.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php -/** - * This is a backwards-compatibility shim, generated by: - * https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/maintenance%2FgenerateJsonI18n.php - * - * Beginning with MediaWiki 1.23, translation strings are stored in json files, - * and the EXTENSION.i18n.php file only exists to provide compatibility with - * older releases of MediaWiki. For more information about this migration, see: - * https://www.mediawiki.org/wiki/Requests_for_comment/Localisation_format - * - * This shim maintains compatibility back to MediaWiki 1.17. - */ -$messages = array(); -if ( !function_exists( 'wfJsonI18nShim21ca22783d54cf63' ) ) { - function wfJsonI18nShim21ca22783d54cf63( $cache, $code, &$cachedData ) { - $codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] ); - foreach ( $codeSequence as $csCode ) { - $fileName = dirname( __FILE__ ) . "/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; - } - - $GLOBALS['wgHooks']['LocalisationCacheRecache'][] = 'wfJsonI18nShim21ca22783d54cf63'; -} diff --git a/extension.json b/extension.json index 23eea0f..4925ece 100644 --- a/extension.json +++ b/extension.json @@ -18,7 +18,6 @@ ] }, "ExtensionMessagesFiles": { - "TemplateSandbox": "TemplateSandbox.i18n.php", "TemplateSandboxAlias": "TemplateSandbox.alias.php" }, "AutoloadClasses": { -- To view, visit https://gerrit.wikimedia.org/r/214003 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I9aceef32012ce918c0d9b11b19a4b1be0744cd44 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/TemplateSandbox Gerrit-Branch: REL1_25 Gerrit-Owner: Paladox <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
