Paladox has uploaded a new change for review. https://gerrit.wikimedia.org/r/213957
Change subject: Remove i18n shim ...................................................................... Remove i18n shim Change-Id: I9aceef32012ce918c0d9b11b19a4b1be0744cd44 --- D TemplateSandbox.i18n.php M extension.json M i18n/pt-br.json A i18n/sa.json 4 files changed, 14 insertions(+), 37 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/TemplateSandbox refs/changes/57/213957/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 a3bf777..380971e 100644 --- a/extension.json +++ b/extension.json @@ -15,7 +15,6 @@ ] }, "ExtensionMessagesFiles": { - "TemplateSandbox": "TemplateSandbox.i18n.php", "TemplateSandboxAlias": "TemplateSandbox.alias.php" }, "AutoloadClasses": { diff --git a/i18n/pt-br.json b/i18n/pt-br.json index 08facbc..86d577d 100644 --- a/i18n/pt-br.json +++ b/i18n/pt-br.json @@ -10,5 +10,8 @@ "templatesandbox-submit": "Ver", "templatesandbox-editform-legend": "Mostrar previsão da página com esta predefinição", "templatesandbox-editform-page-label": "Título da página:", - "templatesandbox-editform-view-label": "Prever" + "templatesandbox-editform-view-label": "Prever", + "templatesandbox-editform-invalid-template": "O nome do modelo que você especificou é inválido.", + "templatesandbox-editform-invalid-title": "O título que você especificou para a pré-visualização é inválido.", + "templatesandbox-editform-title-not-exists": "O título que você especificou para a pré-visualização não existe." } diff --git a/i18n/sa.json b/i18n/sa.json new file mode 100644 index 0000000..b518508 --- /dev/null +++ b/i18n/sa.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "NehalDaveND" + ] + }, + "templatesandbox-suffix": "प्रयोगपृष्ठम्", + "templatesandbox-legend": "फलकस्य प्रयोगपृष्ठम्", + "templatesandbox-submit": "दृश्यताम्" +} -- To view, visit https://gerrit.wikimedia.org/r/213957 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: master Gerrit-Owner: Paladox <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
