MediaWiki:Gadget-I18n-js.js: Difference between revisions

From Tardis Wiki, the free Doctor Who reference
(0.6.7: Adding bidirectional/multidirectional language fallback support; Separate deprecatedCodes and fallbacks; Adding documentation; Use mw:Manual:Coding_conventions/JavaScript and changed space indentation to tab; VSTF wiki => SOAP Wiki; Change history: <https://ucptest.fandom.com/zh/wiki/MediaWiki:I18n-js/code.js?action=history> oldid=14070)
(reverting recent changes, please resubmit without indentation changes (because it makes the diff impossible to review properly))
Line 6: Line 6:
  * @author OneTwoThreeFall <https://dev.fandom.com/User:OneTwoThreeFall>
  * @author OneTwoThreeFall <https://dev.fandom.com/User:OneTwoThreeFall>
  *
  *
  * @version 0.6.7
  * @version 0.6.6
  *
  *
  * @notes Also used by SOAP Wiki for their reporting forms (with a non-dev i18n.json page)
  * @notes Also used by VSTF wiki for their reporting forms (with a non-dev i18n.json page)
  * @notes This is apparently a commonly used library for a number of scripts and also
  * @notes This is apparently a commonly used library for a number of scripts and also includes
  *   includes a check to prevent double loading. This can make it painful to test from your
  *       a check to prevent double loading. This can make it painful to test from your JS
  *   JS console. To get around this, add ?usesitejs=0&useuserjs=0 to your URL.
  *       console. To get around this, add ?usesitejs=0&useuserjs=0 to your URL.
* @notes Coding convensions:
*  https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript
  */
  */


/* global mediaWiki */
/*global mediaWiki */


/* jshint bitwise:true, camelcase:true, curly:true, eqeqeq:true, es3:false,
/*jshint bitwise:true, camelcase:true, curly:true, eqeqeq:true, es3:false,
    forin:true, immed:true, indent:4, latedef:true, newcap:true,
    forin:true, immed:true, indent:4, latedef:true, newcap:true,
    noarg:true, noempty:true, nonew:true, plusplus:true, quotmark:single,
    noarg:true, noempty:true, nonew:true, plusplus:true, quotmark:single,
    undef:true, unused:true, strict:true, trailing:true,
    undef:true, unused:true, strict:true, trailing:true,
    browser:true, devel:false, jquery:true,
    browser:true, devel:false, jquery:true,
    onevar:true
    onevar:true
*/
*/
 
( function ( window, $, mw, undefined ) {
'use strict';
 
window.dev = window.dev || {};
window.dev.i18n = window.dev.i18n || {};
 
/* Prevent double loading and loss of cache */
if ( window.dev.i18n.loadMessages !== undefined ) {
return;
}
 
/*
* Cache of mw config variables.
*
* @var {object} conf Cache of mw config variables:
* - {boolean} debug
* - {string} wgContentLanguage Site language
*    Be careful to use this:
*    - In languages with variants, this will block the language conversion;
*      see <https://www.mediawiki.org/wiki/Writing_systems>.
*    - In multilingual wikis like "Feed The Beast", this will block both the
*      multilingual content providing and language conversion.
* - {string} wgPageContentLanguage Page Language or Content Modal Language
*    or Site Language or 'en'
*    Be careful to use this:
*    - In Special: pages, this will be the user language.
*    - In Module: pages, this will be the content modal language 'en'.
* - {string} wgUserLanguage
* - {(string|null)} wgUserVariant The language variant user currently using,
*    'null' when the page lannguage doesn't have language variants.
*/
var conf = mw.config.get( [
'debug',
'wgContentLanguage',
'wgPageContentLanguage',
'wgUserLanguage',
'wgUserVariant'
] ),
 
/*
* @var {number} Current time in milliseconds, used to set and check cache age.
*/
now = Date.now(),
 
/*
* @var {number} Length of one day in milliseconds, used in cache age calculations.
*/
oneDay = 1000 * 60 * 60 * 24,
 
/*
* @var {string} Prefix used for localStorage keys that contain i18n-js cache data
*/
cachePrefix = 'i18n-cache-',
 
/*
* @var {boolean} Whether a fallback loop warning been shown
*/
warnedAboutFallbackLoop = false,
 
/*
* @var {object} Cache of loaded I18n instances.
*/
cache = {},
 
/*
* Initial overrides object, initialised below with the i18n global variable.
* Allows end-users to override specific messages. See documentation for how to use.
*
* @var {(null|object)} overrides
*/
overrides = null,
 
/*
* Mapping of deprecated language codes that were used in previous
* versions of MediaWiki to up-to-date, current language codes.
*
* These codes shouldn't be used to store translations unless there are language
* changes to /includes/language/LanguageCode.php in mediawiki/core.
*
* These may or may not be valid BCP 47 codes; they are included here
* because MediaWiki renamed these particular codes at some point.
*
* Note that 'als' is actually a valid ISO 639 code (Tosk Albanian), but it
* was previously used in MediaWiki for Alsatian, which comes under 'gsw'.
*
* @var {object.<string, string>} Mapping from deprecated MediaWiki-internal language code
*  to replacement MediaWiki-internal language code.
*
* @see /includes/language/LanguageCode.php in MediaWiki core
* @see https://meta.wikimedia.org/wiki/Special_language_codes
*/
deprecatedCodes = {
'als': 'gsw', // T25215
'bat-smg': 'sgs', // T27522
'be-x-old': 'be-tarask', // T11823
'fiu-vro': 'vro', // T31186
'roa-rup': 'rup', // T17988
'zh-classical': 'lzh', // T30443
'zh-min': 'nan',
'zh-min-n': 'nan',
'zh-min-nan': 'nan', // T30442
'zh-yue': 'yue' // T30441
},
 
 
/**
* Mapping of non-standard language codes used in MediaWiki to
* standardized BCP 47 codes.
*
* @var {object.<string, string>} Mapping from nonstandard MediaWiki-internal codes to
*  BCP 47 codes
*
* @see /includes/language/LanguageCode.php in MediaWiki core
* @see https://meta.wikimedia.org/wiki/Special_language_codes
* @see https://phabricator.wikimedia.org/T125073
*/
nonStandardCodes = {
'cbk-zam': 'cbk', // T124657
'de-formal': 'de-x-formal',
'eml': 'egl', // T36217
'en-rtl': 'en-x-rtl',
'es-formal': 'es-x-formal',
'hu-formal': 'hu-x-formal',
'kk-cn': 'kk-Arab-CN',
'kk-kz': 'kk-Cyrl-KZ',
'kk-tr': 'kk-Latn-TR',
'map-bms': 'jv-x-bms', // [[wikipedia:en:Banyumasan_dialect]] T125073
'mo': 'ro-Cyrl-MD', // T125073
'nrm': 'nrf', // [[wikipedia:en:Norman_language]] T25216
'nl-informal': 'nl-x-informal',
'roa-tara': 'nap-x-tara', // [[wikipedia:en:Tarantino_dialect]]
'simple': 'en-x-simple',
'sr-ec': 'sr-Cyrl', // T117845
'sr-el': 'sr-Latn', // T117845
'zh-cn': 'zh-Hans-CN',
'zh-sg': 'zh-Hans-SG',
'zh-my': 'zh-Hans-MY',
'zh-tw': 'zh-Hant-TW',
'zh-hk': 'zh-Hant-HK',
'zh-mo': 'zh-Hant-MO'
},
 
/*
* Language fallbacks for those that don't fallback to English.
*
* Shouldn't need updating unless there're language fallback chain changes
* to /languages/messages files in mediawiki/core.
*
* To generate this, use `$ grep -R "fallback =" /path/to/messages/`,
* pipe the result to a text file and format the result.
*
* Please note that there's bidirectional/multidirectional fallback in languages,
* including cdo <=> nan, pt <=> pt-br, zh <=> zh-hans <=> zh-hant
*
* @var {object.<string, string[]>} Mapping from language codes to fallback language codes
*/
fallbacks = {
'ab': [ 'ru' ],
'abs': [ 'id' ],
'ace': [ 'id' ],
'ady': [ 'ady-cyrl' ],
'aeb': [ 'aeb-arab' ],
'aeb-arab': [ 'ar' ],
'aln': [ 'sq' ],
'alt': [ 'ru' ],
'ami': [ 'zh-tw', 'zh-hant', 'zh', 'zh-hans' ],
'an': [ 'es' ],
'anp': [ 'hi' ],
'arn': [ 'es' ],
'arq': [ 'ar' ],
'ary': [ 'ar' ],
'arz': [ 'ar' ],
'ast': [ 'es' ],
'atj': [ 'fr' ],
'av': [ 'ru' ],
'avk': [ 'fr', 'es', 'ru' ],
'awa': [ 'hi' ],
'ay': [ 'es' ],
'azb': [ 'fa' ],
'ba': [ 'ru' ],
'ban': [ 'id' ],
'ban-bali': [ 'ban' ],
'bar': [ 'de' ],
'bbc': [ 'bbc-latn' ],
'bbc-latn': [ 'id' ],
'bcc': [ 'fa' ],
'bci': [ 'fr' ],
'be-tarask': [ 'be' ],
'bgn': [ 'fa' ],
'bh': [ 'bho' ],
'bi': [ 'en' ],
'bjn': [ 'id' ],
'blk': [ 'my' ],
'bm': [ 'fr' ],
'bpy': [ 'bn' ],
'bqi': [ 'fa' ],
'br': [ 'fr' ],
'btm': [ 'id' ],
'bug': [ 'id' ],
'bxr': [ 'ru' ],
'ca': [ 'oc' ],
'cbk-zam': [ 'es' ],
'cdo': [ 'nan', 'zh-hant', 'zh', 'zh-hans' ],
'ce': [ 'ru' ],
'co': [ 'it' ],
'crh': [ 'crh-latn' ],
'crh-cyrl': [ 'ru' ],
'cs': [ 'sk' ],
'csb': [ 'pl' ],
'cv': [ 'ru' ],
'de-at': [ 'de' ],
'de-ch': [ 'de' ],
'de-formal': [ 'de' ],
'dsb': [ 'hsb', 'de' ],
'dtp': [ 'ms' ],
'dty': [ 'ne' ],
'egl': [ 'it' ],
'eml': [ 'it' ],
'es-formal': [ 'es' ],
'ext': [ 'es' ],
'ff': [ 'fr' ],
'fit': [ 'fi' ],
'fon': [ 'fr' ],
'frc': [ 'fr' ],
'frp': [ 'fr' ],
'frr': [ 'de' ],
'fur': [ 'it' ],
'gag': [ 'tr' ],
'gan': [ 'gan-hant', 'gan-hans', 'zh-hant', 'zh', 'zh-hans' ],
'gan-hans': [ 'gan', 'gan-hant', 'zh-hans', 'zh', 'zh-hant' ],
'gan-hant': [ 'gan', 'gan-hans', 'zh-hant', 'zh', 'zh-hans' ],
'gcr': [ 'fr' ],
'gl': [ 'pt' ],
'gld': [ 'ru' ],
'glk': [ 'fa' ],
'gn': [ 'es' ],
'gom': [ 'gom-deva' ],
'gom-deva': [ 'hi' ],
'gor': [ 'id' ],
'gsw': [ 'de' ],
'guc': [ 'es' ],
'hak': [ 'zh-hant', 'zh', 'zh-hans' ],
'hif': [ 'hif-latn' ],
'hrx': [ 'de' ],
'hsb': [ 'dsb', 'de' ],
'hsn': [ 'zh-cn', 'zh-hans', 'zh', 'zh-hant' ],
'ht': [ 'fr' ],
'hu-formal': [ 'hu' ],
'hyw': [ 'hy' ],
'ii': [ 'zh-cn', 'zh-hans', 'zh', 'zh-hant' ],
'inh': [ 'ru' ],
'io': [ 'eo' ],
'iu': [ 'ike-cans' ],
'jam': [ 'en' ],
'jut': [ 'da' ],
'jv': [ 'id' ],
'kaa': [ 'kk-latn', 'kk-cyrl' ],
'kab': [ 'fr' ],
'kbd': [ 'kbd-cyrl' ],
'kbp': [ 'fr' ],
'kea': [ 'pt' ],
'khw': [ 'ur' ],
'kiu': [ 'tr' ],
'kjp': [ 'my' ],
'kk': [ 'kk-cyrl' ],
'kk-arab': [ 'kk-cyrl' ],
'kk-cn': [ 'kk-arab', 'kk-cyrl' ],
'kk-kz': [ 'kk-cyrl' ],
'kk-latn': [ 'kk-cyrl' ],
'kk-tr': [ 'kk-latn', 'kk-cyrl' ],
'kl': [ 'da' ],
'koi': [ 'ru' ],
'ko-kp': [ 'ko' ],
'krc': [ 'ru' ],
'krl': [ 'fi' ],
'ks': [ 'ks-arab' ],
'ksh': [ 'de' ],
'ksw': [ 'my' ],
'ku': [ 'ku-latn' ],
'kum': [ 'ru' ],
'ku-arab': [ 'ckb' ],
'kv': [ 'ru' ],
'lad': [ 'es' ],
'lb': [ 'de' ],
'lbe': [ 'ru' ],
'lez': [ 'ru', 'az' ],
'li': [ 'nl' ],
'lij': [ 'it' ],
'liv': [ 'et' ],
'lki': [ 'fa' ],
'lld': [ 'it', 'rm', 'fur' ],
'lmo': [ 'pms', 'eml', 'lij', 'vec', 'it' ],
'ln': [ 'fr' ],
'lrc': [ 'fa' ],
'ltg': [ 'lv' ],
'luz': [ 'fa' ],
'lzh': [ 'zh-hant', 'zh', 'zh-hans' ],
'lzz': [ 'tr' ],
'mad': [ 'id' ],
'mai': [ 'hi' ],
'map-bms': [ 'jv', 'id' ],
'mdf': [ 'myv', 'ru' ],
'mg': [ 'fr' ],
'mhr': [ 'mrj', 'ru' ],
'min': [ 'id' ],
'mnw': [ 'my' ],
'mo': [ 'ro' ],
'mrj': [ 'mhr', 'ru' ],
'ms-arab': [ 'ms' ],
'mwl': [ 'pt' ],
'myv': [ 'mdf', 'ru' ],
'mzn': [ 'fa' ],
'nah': [ 'es' ],
'nan': [ 'cdo', 'zh-hant', 'zh', 'zh-hans' ],
'nap': [ 'it' ],
'nb': [ 'nn' ],
'nds': [ 'de' ],
'nds-nl': [ 'nl' ],
'nia': [ 'id' ],
'nl-informal': [ 'nl' ],
'nn': [ 'nb' ],
'nrm': [ 'nrf', 'fr' ],
'oc': [ 'ca', 'fr' ],
'olo': [ 'fi' ],
'os': [ 'ru' ],
'pcd': [ 'fr' ],
'pdc': [ 'de' ],
'pdt': [ 'de' ],
'pfl': [ 'de' ],
'pih': [ 'en' ],
'pms': [ 'it' ],
'pnt': [ 'el' ],
'pt': [ 'pt-br' ],
'pt-br': [ 'pt' ],
'pwn': [ 'zh-tw', 'zh-hant', 'zh', 'zh-hans' ],
'qu': [ 'qug', 'es' ],
'qug': [ 'qu', 'es' ],
'rgn': [ 'it' ],
'rmy': [ 'ro' ],
'roa-tara': [ 'it' ],
'rsk': [ 'sr-ec' ],
'rue': [ 'uk', 'ru' ],
'rup': [ 'ro' ],
'ruq': [ 'ruq-latn', 'ro' ],
'ruq-cyrl': [ 'mk' ],
'ruq-latn': [ 'ro' ],
'sa': [ 'hi' ],
'sah': [ 'ru' ],
'scn': [ 'it' ],
'sco': [ 'en' ],
'sdc': [ 'it' ],
'sdh': [ 'cbk', 'fa' ],
'se': [ 'nb', 'fi' ],
'ses': [ 'fr' ],
'se-fi': [ 'se', 'fi', 'sv' ],
'se-no': [ 'se', 'nb', 'nn' ],
'se-se': [ 'se', 'sv' ],
'sg': [ 'fr' ],
'sgs': [ 'lt' ],
'sh': [ 'bs', 'sr-el', 'hr' ],
'shi': [ 'fr' ],
'shy': [ 'shy-latn' ],
'shy-latn': [ 'fr' ],
'sjd': [ 'ru' ],
'sk': [ 'cs' ],
'skr': [ 'skr-arab' ],
'skr-arab': [ 'ur', 'pnb' ],
'sli': [ 'de' ],
'smn': [ 'fi' ],
'sr': [ 'sr-ec' ],
'srn': [ 'nl' ],
'stq': [ 'de' ],
'sty': [ 'ru' ],
'su': [ 'id' ],
'szl': [ 'pl' ],
'szy': [ 'zh-tw', 'zh-hant', 'zh', 'zh-hans' ],
'tay': [ 'zh-tw', 'zh-hant', 'zh', 'zh-hans' ],
'tcy': [ 'kn' ],
'tet': [ 'pt' ],
'tg': [ 'tg-cyrl' ],
'trv': [ 'zh-tw', 'zh-hant', 'zh', 'zh-hans' ],
'tt': [ 'tt-cyrl', 'ru' ],
'tt-cyrl': [ 'ru' ],
'ty': [ 'fr' ],
'tyv': [ 'ru' ],
'udm': [ 'ru' ],
'ug': [ 'ug-arab' ],
'vec': [ 'it' ],
'vep': [ 'et' ],
'vls': [ 'nl' ],
'vmf': [ 'de' ],
'vmw': [ 'pt' ],
'vot': [ 'fi' ],
'vro': [ 'et' ],
'wa': [ 'fr' ],
'wls': [ 'fr' ],
'wo': [ 'fr' ],
'wuu': [ 'zh-hans', 'zh', 'zh-hant' ],
'xal': [ 'ru' ],
'xmf': [ 'ka' ],
'yi': [ 'he' ],
'yue': [ 'zh-hk', 'zh-hant', 'zh', 'zh-hans' ],
'za': [ 'zh-hans', 'zh', 'zh-hant' ],
'zea': [ 'nl' ],
'zgh': [ 'kab' ],
'zh': [ 'zh-hans', 'zh-hant', 'zh-cn', 'zh-tw', 'zh-hk' ],
'zh-cn': [ 'zh-hans', 'zh', 'zh-hant' ],
'zh-hans': [ 'zh-cn', 'zh', 'zh-hant' ],
'zh-hant': [ 'zh-tw', 'zh-hk', 'zh', 'zh-hans' ],
'zh-hk': [ 'zh-hant', 'zh-tw', 'zh', 'zh-hans' ],
'zh-mo': [ 'zh-hk', 'zh-hant', 'zh-tw', 'zh', 'zh-hans' ],
'zh-my': [ 'zh-sg', 'zh-hans', 'zh-cn', 'zh', 'zh-hant' ],
'zh-sg': [ 'zh-hans', 'zh-cn', 'zh', 'zh-hant' ],
'zh-tw': [ 'zh-hant', 'zh-hk', 'zh', 'zh-hans' ]
};
 
/*
* Get the normalised IETF/BCP 47 language tag.
*
* mediawiki.language.bcp47 doesn't handle deprecated language codes, and
* some non-standard language codes are missed from LanguageCode.php, so
* this function is added to override the behavior.
*
* @param {string} lang The language code to convert.
* @return {string} The language code complying with BCP 47 standards.
*
* @see https://gerrit.wikimedia.org/r/c/mediawiki/core/+/376506/
* @see /resources/src/mediawiki.language/mediawiki.language.js in MediaWiki core
* @see /includes/language/LanguageCode.php in MediaWiki core
*/
function bcp47( lang ) {
if ( nonStandardCodes[ lang ] ) {
return nonStandardCodes[ lang ];
}
 
if ( deprecatedCodes[ lang ] ) {
return bcp47( deprecatedCodes[ lang ] );
}


/*
(function (window, $, mw, undefined) {
* @var {string[]} formatted
    'use strict';
* @var {boolean} isFirstSegment Whether is the first segment
* @var {boolean} isPrivate Whether the code of the segment is private use
* @var {string[]} segments The segments of language code
*/
var formatted,
isFirstSegment = true,
isPrivate = false,
segments = lang.split( '-' );


formatted = segments.map( function ( segment ) {
    window.dev = window.dev || {};
/*
    window.dev.i18n = window.dev.i18n || {};
* @var {string} newSegment The converted segment of language code
*/
var newSegment;


/* when previous segment is x, it is a private segment and should be lc */
    // prevent double loading and loss of cache
if ( isPrivate ) {
    if (window.dev.i18n.loadMessages !== undefined) {
newSegment = segment.toLowerCase();
        return;
/* ISO 3166 country code */
    }
} else if ( segment.length === 2 && !isFirstSegment ) {
newSegment = segment.toUpperCase();
/* ISO 15924 script code */
} else if ( segment.length === 4 && !isFirstSegment ) {
newSegment = segment.charAt( 0 ).toUpperCase() + segment.substring( 1 ).toLowerCase();
/* Use lowercase for other cases */
} else {
newSegment = segment.toLowerCase();
}


isPrivate = segment.toLowerCase() === 'x';
        /*
isFirstSegment = false;
        * Cache of mw config variables.
        */
    var conf = mw.config.get([
            'debug',
            'wgContentLanguage',
            'wgUserLanguage'
        ]),


return newSegment;
        /*
} );
        * Current time in milliseconds, used to set and check cache age.
        */
        now = Date.now(),


return formatted.join( '-' );
        /*
}
        * Length of one day in milliseconds, used in cache age calculations.
        */
        oneDay = 1000 * 60 * 60 * 24,


/*
        /*
* Log a warning message to the browser console if the language fallback chain is
        * Prefix used for localStorage keys that contain i18n-js cache data.
* about to start a loop. Only logs once to prevent flooding the browser console.
        */
*
        cachePrefix = 'i18n-cache-',
* @param {string} lang Language in use when loop was found.
* @param {string[]} fallbackChain Array of languages involved in the loop.
*/
function warnOnFallbackLoop( lang, fallbackChain ) {
if ( warnedAboutFallbackLoop ) {
return;
}
warnedAboutFallbackLoop = true;


fallbackChain.push( lang );
        /*
console.error( '[I18n-js] Duplicated fallback language found. Please leave a message at <https://dev.fandom.com/wiki/Talk:I18n-js> and include the following line: \nLanguage fallback chain:', fallbackChain.join( ', ' ) );
        * Has a fallback loop warning been shown?
}
        */
        warnedAboutFallbackLoop = false,


/*
        /*
* Get a translation of a message from the messages object in the
        * Cache of loaded I18n instances.
* requested language.
        */
*
        cache = {},
* @param {object} messages The message object to look translations up in.
* @param {string} msgName The name of the message to get.
* @param {string} lang The language to get the message in.
* @param {string[]} fallbackChain Array of languages that have already been checked.
* Used to detect if the fallback chain is looping.
* @return {(string|boolean)} The requested translation or `false` if no message could be found.
*/
function getMsg( messages, msgName, lang, fallbackChain ) {
if ( deprecatedCodes[ lang ] ) {
return getMsg( messages, msgName, deprecatedCodes[ lang ], fallbackChain );
}


if ( messages[ lang ] && messages[ lang ][ msgName ] ) {
        /*
return messages[ lang ][ msgName ];
        * Initial overrides object, initialised below with the i18n global variable.
}
        * Allows end-users to override specific messages. See documentation for how to use.
        */
        overrides = null,


if ( !fallbackChain ) {
        /*
fallbackChain = [];
        * Language fallbacks for those that don't fallback to English.
}
        * Shouldn't need updating unless Wikia change theirs.
        *
        * To generate this, use `$ grep -R "fallback =" /path/to/messages/`,
        * pipe the result to a text file and format the result.
        */
        fallbacks = {
            'ab': 'ru',
            'ace': 'id',
            'aln': 'sq',
            'als': 'gsw',
            'an': 'es',
            'anp': 'hi',
            'arn': 'es',
            'arz': 'ar',
            'av': 'ru',
            'ay': 'es',
            'ba': 'ru',
            'bar': 'de',
            'bat-smg': 'sgs',
            'bcc': 'fa',
            'be-x-old': 'be-tarask',
            'bh': 'bho',
            'bjn': 'id',
            'bm': 'fr',
            'bpy': 'bn',
            'bqi': 'fa',
            'bug': 'id',
            'cbk-zam': 'es',
            'ce': 'ru',
            'ckb': 'ckb-arab',
            'crh': 'crh-latn',
            'crh-cyrl': 'ru',
            'csb': 'pl',
            'cv': 'ru',
            'de-at': 'de',
            'de-ch': 'de',
            'de-formal': 'de',
            'dsb': 'de',
            'dtp': 'ms',
            'eml': 'it',
            'ff': 'fr',
            'fiu-vro': 'vro',
            'frc': 'fr',
            'frp': 'fr',
            'frr': 'de',
            'fur': 'it',
            'gag': 'tr',
            'gan': 'gan-hant',
            'gan-hans': 'zh-hans',
            'gan-hant': 'zh-hant',
            'gl': 'pt',
            'glk': 'fa',
            'gn': 'es',
            'gsw': 'de',
            'hif': 'hif-latn',
            'hsb': 'de',
            'ht': 'fr',
            'ii': 'zh-cn',
            'inh': 'ru',
            'iu': 'ike-cans',
            'jut': 'da',
            'jv': 'id',
            'kaa': 'kk-latn',
            'kbd': 'kbd-cyrl',
            'kbd-cyrl': 'ru',
            'khw': 'ur',
            'kiu': 'tr',
            'kk': 'kk-cyrl',
            'kk-arab': 'kk-cyrl',
            'kk-cn': 'kk-arab',
            'kk-kz': 'kk-cyrl',
            'kk-latn': 'kk-cyrl',
            'kk-tr': 'kk-latn',
            'kl': 'da',
            'koi': 'ru',
            'ko-kp': 'ko',
            'krc': 'ru',
            'ks': 'ks-arab',
            'ksh': 'de',
            'ku': 'ku-latn',
            'ku-arab': 'ckb',
            'kv': 'ru',
            'lad': 'es',
            'lb': 'de',
            'lbe': 'ru',
            'lez': 'ru',
            'li': 'nl',
            'lij': 'it',
            'liv': 'et',
            'lmo': 'it',
            'ln': 'fr',
            'ltg': 'lv',
            'lzz': 'tr',
            'mai': 'hi',
            'map-bms': 'jv',
            'mg': 'fr',
            'mhr': 'ru',
            'min': 'id',
            'mo': 'ro',
            'mrj': 'ru',
            'mwl': 'pt',
            'myv': 'ru',
            'mzn': 'fa',
            'nah': 'es',
            'nap': 'it',
            'nds': 'de',
            'nds-nl': 'nl',
            'nl-informal': 'nl',
            'no': 'nb',
            'os': 'ru',
            'pcd': 'fr',
            'pdc': 'de',
            'pdt': 'de',
            'pfl': 'de',
            'pms': 'it',
            // 'pt': 'pt-br',
            'pt-br': 'pt',
            'qu': 'es',
            'qug': 'qu',
            'rgn': 'it',
            'rmy': 'ro',
            'rue': 'uk',
            'ruq': 'ruq-latn',
            'ruq-cyrl': 'mk',
            'ruq-latn': 'ro',
            'sa': 'hi',
            'sah': 'ru',
            'scn': 'it',
            'sg': 'fr',
            'sgs': 'lt',
            'shi': 'ar',
            'simple': 'en',
            'sli': 'de',
            'sr': 'sr-ec',
            'srn': 'nl',
            'stq': 'de',
            'su': 'id',
            'szl': 'pl',
            'tcy': 'kn',
            'tg': 'tg-cyrl',
            'tt': 'tt-cyrl',
            'tt-cyrl': 'ru',
            'ty': 'fr',
            'udm': 'ru',
            'ug': 'ug-arab',
            'uk': 'ru',
            'vec': 'it',
            'vep': 'et',
            'vls': 'nl',
            'vmf': 'de',
            'vot': 'fi',
            'vro': 'et',
            'wa': 'fr',
            'wo': 'fr',
            'wuu': 'zh-hans',
            'xal': 'ru',
            'xmf': 'ka',
            'yi': 'he',
            'za': 'zh-hans',
            'zea': 'nl',
            'zh': 'zh-hans',
            'zh-classical': 'lzh',
            'zh-cn': 'zh-hans',
            'zh-hant': 'zh-hans',
            'zh-hk': 'zh-hant',
            'zh-min-nan': 'nan',
            'zh-mo':  'zh-hk',
            'zh-my':  'zh-sg',
            'zh-sg':  'zh-hans',
            'zh-tw':  'zh-hant',
            'zh-yue': 'yue'
        };


/*
    /*
* @var {string} fallbackLang
    * Log a warning message to the browser console if the language fallback chain is
*/
    * about to start a loop. Only logs once to prevent flooding the browser console.
for ( var fallbackLang of fallbacks[ lang ] ) {
    *
if ( messages[ fallbackLang ] && messages[ fallbackLang ][ msgName ] ) {
    * @param lang Language in use when loop was found.
return messages[ fallbackLang ][ msgName ];
    * @param fallbackChain Array of languages involved in the loop.
}
    */
    function warnOnFallbackLoop(lang, fallbackChain) {
        if (warnedAboutFallbackLoop) {
            return;
        }
        warnedAboutFallbackLoop = true;


if ( fallbackChain.indexOf( fallbackLang ) !== -1 ) {
        fallbackChain.push(lang);
/*
        console.error('[I18n-js] Language fallback loop found. Please leave a message at <https://dev.fandom.com/wiki/Talk:I18n-js> and include the following line: \nLanguage fallback chain:', fallbackChain.join(', '));
* Duplicated language code in fallback list
    }
* Try to find next fallback language from list
*/
warnOnFallbackLoop( fallbackLang, fallbackChain );
continue;
}
fallbackChain.push( fallbackLang );
}


/* No more languages in fallback list - switch to English */
    /*
if ( messages.en && messages.en[ msgName ] ) {
    * Get a translation of a message from the messages object in the
return messages.en[ msgName ];
    * requested language.
}
    *
    * @param messages The message object to look translations up in.
    * @param msgName The name of the message to get.
    * @param lang The language to get the message in.
    * @param fallbackChain Array of languages that have already been checked.
    *    Used to detect if the fallback chain is looping.
    *
    * @return The requested translation or `false` if no message could be found.
    */
    function getMsg(messages, msgName, lang, fallbackChain) {
        if (messages[lang] && messages[lang][msgName]) {
            return messages[lang][msgName];
        }


return false;
        if (lang === 'en') {
}
            return false;
        }


/*
        if (!fallbackChain) {
* Substitute arguments into the string, where arguments are represented
            fallbackChain = [];
* as $n where n > 0.
        }
*
        fallbackChain.push(lang);
* @param {string} message The message to substitute arguments into
* @param {array} arguments The arguments to substitute in.
* @return {string} The resulting message.
*/
function handleArgs( message, args ) {
args.forEach( function ( elem, index ) {
/*
* @var {RegExp} rgx
*/
var rgx = new RegExp( '\\$' + ( index + 1 ), 'g' );
message = message.replace( rgx, elem );
} );


return message;
        lang = fallbacks[lang] || 'en';
}


/*
        if (fallbackChain.indexOf(lang) !== -1) {
* Generate a HTML link using the supplied parameters.
            // about to enter an infinite loop - switch to English
*
            warnOnFallbackLoop(lang, fallbackChain);
* @param {string} href The href of the link which will be converted to
            lang = 'en';
* '/wiki/href'.
        }
* @param {string} text The text and title of the link. If this is not supplied, it
* will default to href.
* @param {boolean} hasProtocol True if the href parameter already includes the
* protocol (i.e. it begins with 'http://', 'https://', or '//').
* @return {string} The generated link.
*/
function makeLink( href, text, hasProtocol ) {
text = text || href;
href = hasProtocol ? href : mw.util.getUrl( href );


text = mw.html.escape( text );
        return getMsg(messages, msgName, lang, fallbackChain);
href = mw.html.escape( href );
    }


return '<a href="' + href + '" title="' + text + '">' + text + '</a>';
    /*
}
    * Substitute arguments into the string, where arguments are represented
    * as $n where n > 0.
    *
    * @param message The message to substitute arguments into
    * @param arguments The arguments to substitute in.
    *
    * @return The resulting message.
    */
    function handleArgs(message, args) {
        args.forEach(function (elem, index) {
            var rgx = new RegExp('\\$' + (index + 1), 'g');
            message = message.replace(rgx, elem);
        });


/*
        return message;
* Allow basic inline HTML tags in wikitext.does not support <a> as that's handled by the
    }
* wikitext links instead.
*
* Supports the following tags:
* - <i>
* - <b>
* - <s>
* - <br>
* - <em>
* - <strong>
* - <span>
*
* Supports the following tag attributes:
* - title
* - style
* - class
*
* @param html
* @return The sanitised HTML code.
*/
function sanitiseHtml( html ) {
/*
* @var context
*/
var context = document.implementation.createHTMLDocument( '' ),
$html = $.parseHTML( html, /* document */ context, /* keepscripts */ false ),
$div = $( '<div>', context ).append( $html ),
allowedAttrs = [
'title',
'style',
'class'
],
allowedTags = [
'i',
'b',
's',
'br',
'em',
'strong',
'span',
];


$div.find( '*' ).each( function () {
    /*
var $this = $( this ),
    * Generate a HTML link using the supplied parameters.
tagname = $this.prop( 'tagName' ).toLowerCase(),
    *
attrs,
    * @param href The href of the link which will be converted to
array,
    *    '/wiki/href'.
style;
    * @param text The text and title of the link. If this is not supplied, it
    *    will default to href.
    * @param hasProtocol True if the href parameter already includes the
    *    protocol (i.e. it begins with 'http://', 'https://', or '//').
    *
    * @return The generated link.
    */
    function makeLink(href, text, hasProtocol) {
        text = text || href;
        href = hasProtocol ? href : mw.util.getUrl(href);


if ( allowedTags.indexOf( tagname ) === -1 ) {
        text = mw.html.escape(text);
mw.log( '[I18n-js] Disallowed tag in message: ' + tagname );
        href = mw.html.escape(href);
$this.remove();
return;
}


attrs = $this.prop( 'attributes' );
        return '<a href="' + href + '" title="' + text + '">' + text + '</a>';
array = Array.prototype.slice.call( attrs );
    }


array.forEach( function ( attr ) {
    /*
if ( allowedAttrs.indexOf( attr.name ) === -1 ) {
    * Allow basic inline HTML tags in wikitext.does not support <a> as that's handled by the
mw.log( '[I18n-js] Disallowed attribute in message: ' + attr.name + ', tag: ' + tagname );
    * wikitext links instead.
$this.removeAttr( attr.name );
    *
return;
    * Supports the following tags:
}
    * - <i>
    * - <b>
    * - <s>
    * - <br>
    * - <em>
    * - <strong>
    * - <span>
    *
    * Supports the following tag attributes:
    * - title
    * - style
    * - class
    *
    * @param html
    *
    * @return The sanitised HTML code.
    */
    function sanitiseHtml(html) {
        var context = document.implementation.createHTMLDocument(''),
            $html = $.parseHTML(html, /* document */ context, /* keepscripts */ false),
            $div = $('<div>', context).append($html),
            allowedAttrs = [
                'title',
                'style',
                'class'
            ],
            allowedTags = [
                'i',
                'b',
                's',
                'br',
                'em',
                'strong',
                'span',
            ];


/* Make sure there's nothing nasty in style attributes */
        $div.find('*').each(function () {
if ( attr.name === 'style' ) {
            var $this = $(this),
style = $this.attr( 'style' );
                tagname = $this.prop('tagName').toLowerCase(),
                attrs,
                array,
                style;


if ( style.indexOf( 'url(' ) > -1 ) {
            if (allowedTags.indexOf(tagname) === -1) {
mw.log( '[I18n-js] Disallowed url() in style attribute' );
                mw.log('[I18n-js] Disallowed tag in message: ' + tagname);
$this.removeAttr( 'style' );
                $this.remove();
                return;
            }


/* https://phabricator.wikimedia.org/T208881 */
            attrs = $this.prop('attributes');
} else if ( style.indexOf( 'var(' ) > -1 ) {
            array = Array.prototype.slice.call(attrs);
mw.log( '[I18n-js] Disallowed var() in style attribute' );
$this.removeAttr( 'style' );
}
}
} );
} );


return $div.prop( 'innerHTML' );
            array.forEach(function (attr) {
}
                if (allowedAttrs.indexOf(attr.name) === -1) {
                    mw.log('[I18n-js] Disallowed attribute in message: ' + attr.name + ', tag: ' + tagname);
                    $this.removeAttr(attr.name);
                    return;
                }


/*
                // make sure there's nothing nasty in style attributes
* Parse some basic wikitext into HTML. Also supports basic inline HTML tags.
                if (attr.name === 'style') {
*
                    style = $this.attr('style');
* Will process:
* - [url text]
* - [[pagename]]
* - [[pagename|text]]
* - {{PLURAL:count|singular|plural}}
* - {{GENDER:gender|masculine|feminine|neutral}}
*
* @param {string} message The message to process.
* @return {string} The resulting string.
*/
function parse( message ) {
/* [url text] -> [$1 $2] */
var urlRgx = /\[((?:https?:)?\/\/.+?) (.+?)\]/g,
/* [[pagename]] -> [[$1]] */
simplePageRgx = /\[\[([^|]*?)\]\]/g,
/* [[pagename|text]] -> [[$1|$2]] */
pageWithTextRgx = /\[\[(.+?)\|(.+?)\]\]/g,
/* {{PLURAL:count|singular|plural}} -> {{PLURAL:$1|$2}} */
pluralRgx = /\{\{PLURAL:(\d+)\|(.+?)\}\}/gi,
/* {{GENDER:gender|masculine|feminine|neutral}} -> {{GENDER:$1|$2}} */
genderRgx = /\{\{GENDER:([^|]+)\|(.+?)\}\}/gi;


if ( message.indexOf( '<' ) > -1 ) {
                    if (style.indexOf('url(') > -1) {
message = sanitiseHtml( message );
                        mw.log('[I18n-js] Disallowed url() in style attribute');
}
                        $this.removeAttr('style');


return message
                    // https://phabricator.wikimedia.org/T208881
.replace( urlRgx, function ( _match, href, text ) {
                    } else if (style.indexOf('var(') > -1) {
return makeLink( href, text, true );
                        mw.log('[I18n-js] Disallowed var() in style attribute');
} )
                        $this.removeAttr('style');
.replace( simplePageRgx, function ( _match, href ) {
                    }
return makeLink( href );
                }
} )
            });
.replace( pageWithTextRgx, function ( _match, href, text ) {
        });
return makeLink( href, text );
} )
.replace( pluralRgx, function ( _match, count, forms ) {
return mw.language.convertPlural( Number( count ), forms.split( '|' ) );
} )
.replace(genderRgx, function ( _match, gender, forms ) {
return mw.language.gender( gender, forms.split( '|' ) );
} );
}


/*
        return $div.prop('innerHTML');
* Create a new Message instance.
    }
*
* @param {object} messages The message object to look translations up in.
* @param {string} lang The language to get the message in.
* @param {array} args Any arguments to substitute into the message, [0] is message name.
* @param {string} name The name of the script the messages are for.
* @return
*/
function message( messages, lang, args, name ) {
if ( !args.length ) {
return;
}


/*
    /*
* @var msgName
    * Parse some basic wikitext into HTML. Also supports basic inline HTML tags.
* @var {string} descriptiveMsgName
    *
* @var {object} msg
    * Will process:
* @var {boolean} msgExists
    * - [url text]
*/
    * - [[pagename]]
var msgName = args.shift(),
    * - [[pagename|text]]
descriptiveMsgName = 'i18njs-' + name + '-' + msgName,
    * - {{PLURAL:count|singular|plural}}
msg = getMsg( messages, msgName, lang ),
    * - {{GENDER:gender|masculine|feminine|neutral}}
msgExists = msg !== false;
    *
    * @param message The message to process.
    *
    * @return The resulting string.
    */
    function parse(message) {
            // [url text] -> [$1 $2]
        var urlRgx = /\[((?:https?:)?\/\/.+?) (.+?)\]/g,
            // [[pagename]] -> [[$1]]
            simplePageRgx = /\[\[([^|]*?)\]\]/g,
            // [[pagename|text]] -> [[$1|$2]]
            pageWithTextRgx = /\[\[(.+?)\|(.+?)\]\]/g,
            // {{PLURAL:count|singular|plural}} -> {{PLURAL:$1|$2}}
            pluralRgx = /\{\{PLURAL:(\d+)\|(.+?)\}\}/gi,
            // {{GENDER:gender|masculine|feminine|neutral}} -> {{GENDER:$1|$2}}
            genderRgx = /\{\{GENDER:([^|]+)\|(.+?)\}\}/gi;


if ( !msgExists ) {
        if (message.indexOf('<') > -1) {
/* use name wrapped in < > for missing message, per MediaWiki convention */
            message = sanitiseHtml(message);
msg = '<' + descriptiveMsgName + '>';
        }
}


if ( conf.wgUserLanguage === 'qqx' && msgExists ) {
        return message
/* https://www.mediawiki.org/wiki/Help:System_message#Finding_messages_and_documentation */
            .replace(urlRgx, function (_match, href, text) {
msg = '(' + descriptiveMsgName + ')';
                return makeLink(href, text, true);
} else if ( overrides[ name ] && overrides[ name ][ msgName ] ) {
            })
/* if the message has been overridden, use that without checking the language */
            .replace(simplePageRgx, function (_match, href) {
msg = overrides[ name ][ msgName ];
                return makeLink(href);
msgExists = true;
            })
}
            .replace(pageWithTextRgx, function (_match, href, text) {
                return makeLink(href, text);
            })
            .replace(pluralRgx, function (_match, count, forms) {
                return mw.language.convertPlural(Number(count), forms.split('|'));
            })
            .replace(genderRgx, function (_match, gender, forms) {
                return mw.language.gender(gender, forms.split('|'));
            });
    }


if ( args.length ) {
    /*
msg = handleArgs( msg, args );
    * Create a new Message instance.
}
    *
    * @param messages The message object to look translations up in.
    * @param lang The language to get the message in.
    * @param args Any arguments to substitute into the message, [0] is message name.
    * @param name The name of the script the messages are for.
    */
    function message(messages, lang, args, name) {
        if (!args.length) {
            return;
        }


return {
        var msgName = args.shift(),
/*
            descriptiveMsgName = 'i18njs-' + name + '-' + msgName,
* @return {boolean} Representing whether the message exists.
            msg = getMsg(messages, msgName, lang),
*/
            msgExists = msg !== false;
exists: msgExists,


/*
        if (!msgExists) {
* Parse wikitext links in the message and return the result.
            // use name wrapped in < > for missing message, per MediaWiki convention
*
            msg = '<' + descriptiveMsgName + '>';
* @return {string} The resulting string.
        }
*/
parse: function () {
/*
* Skip parsing if the message wasn't found; otherwise
* the sanitisation will mess with it.
*/
if ( !this.exists ) {
return this.escape();
}


return parse( msg );
        if (conf.wgUserLanguage === 'qqx' && msgExists) {
},
            // https://www.mediawiki.org/wiki/Help:System_message#Finding_messages_and_documentation
            msg = '(' + descriptiveMsgName + ')';
        } else if (overrides[name] && overrides[name][msgName]) {
            // if the message has been overridden, use that without checking the language
            msg = overrides[name][msgName];
            msgExists = true;
        }


/*
        if (args.length) {
* Escape any HTML in the message and return the result.
            msg = handleArgs(msg, args);
*
        }
* @return {string} The resulting string.
*/
escape: function () {
return mw.html.escape( msg );
},


/*
        return {
* Return the message as is.
            /*
*
            * Boolean representing whether the message exists.
* @return {string} The resulting string.
            */
*/
            exists: msgExists,
plain: function () {
return msg;
}
};
}


/*
            /*
* Create a new i18n object.
            * Parse wikitext links in the message and return the result.
*
            *
* @param {object} messages The message object to look translations up in.
            * @return The resulting string.
* @param {string} name The name of the script the messages are for.
            */
* @param {object} options Options set by the loading script.
            parse: function () {
* @return {object}
                // skip parsing if the message wasn't found otherwise
*/
                // the sanitisation will mess with it
function i18n( messages, name, options ) {
                if (!this.exists) {
var defaultLang = options.language,
                    return this.escape();
tempLang = null;
                }


return {
                return parse(msg);
/*
            },
* Set the default language.
*
* @deprecated since v0.6 (2020-08-25), no longer supported.
*/
useLang: function () {
console.warn( '[I18n-js] “useLang()” is no longer supported by I18n-js (used in “' + name + '”) - using user language.' );
this.useUserLang();
},


/*
            /*
* Set the language for the next msg call.
            * Escape any HTML in the message and return the result.
*
            *
* @param {string} lang The language code to use for the next `msg` call.
            * @return The resulting string.
*
            */
* @return {object} The current object for use in chaining.
            escape: function () {
*/
                return mw.html.escape(msg);
inLang: function (lang) {
            },
if ( !options.cacheAll ) {
console.warn( '[I18n-js] “inLang()” is not supported without configuring `options.cacheAll` (used in “' + name + '”) - using user language.' );
lang = options.language;
}
tempLang = lang;
return this;
},


/*
            /*
* Set the default language to the content language.
            * Return the message as is.
*/
            *
useContentLang: function () {
            * @return The resulting string.
defaultLang = conf.wgContentLanguage;
            */
},
            plain: function () {
                return msg;
            }
        };
    }


/*
    /*
* Set the language for the next `msg` call to the content language.
    * Create a new i18n object.
*
    *
* @return {object} The current object for use in chaining.
    * @param messages The message object to look translations up in.
*/
    * @param name The name of the script the messages are for.
inContentLang: function () {
    * @param options Options set by the loading script.
tempLang = conf.wgContentLanguage;
    */
return this;
    function i18n(messages, name, options) {
},
        var defaultLang = options.language,
            tempLang = null;


/*
        return {
* Set the default language to the page language.
            /*
*/
            * Set the default language.
usePageLang: function () {
            *
defaultLang = conf.wgPageContentLanguage;
            * @deprecated since v0.6 (2020-08-25), no longer supported.
},
            */
            useLang: function () {
                console.warn('[I18n-js] “useLang()” is no longer supported by I18n-js (used in “' + name + '”) - using user language.');
                this.useUserLang();
            },


/*
            /*
* Set the language for the next `msg` call to the page language.
            * Set the language for the next msg call.
*
            *
* @return {object} The current object for use in chaining.
            * @param lang The language code to use for the next `msg` call.
*/
            *
inPageLang: function () {
            * @return The current object for use in chaining.
tempLang = conf.wgPageContentLanguage;
            */
return this;
            inLang: function (lang) {
},
                if (!options.cacheAll) {
                    console.warn('[I18n-js] “inLang()” is not supported without configuring `options.cacheAll` (used in “' + name + '”) - using user language.');
                    lang = options.language;
                }
                tempLang = lang;
                return this;
            },


/*
            /*
* Set the default language to the page view language.
            * Set the default language to the content language.
* This is also known as the user language variant.
            */
*/
            useContentLang: function () {
usePageViewLang: function () {
                defaultLang = conf.wgContentLanguage;
defaultLang = conf.wgUserVariant || conf.wgContentLanguage;
            },
},


/*
            /*
* Set the language for the next `msg` call to the page view language.
            * Set the language for the next `msg` call to the content language.
* This is also known as the user language variant.
            *
*
            * @return The current object for use in chaining.
* @return {object} The current object for use in chaining.
            */
*/
            inContentLang: function () {
inPageViewLang: function () {
                tempLang = conf.wgContentLanguage;
tempLang = conf.wgUserVariant || conf.wgContentLanguage;
                return this;
return this;
            },
},


/*
* Set the default language to the user's language.
*/
useUserLang: function () {
defaultLang = options.language;
},


/*
            /*
* Set the language for the next msg call to the user's language.
            * Set the default language to the user's language.
*
            */
* @return {object} The current object for use in chaining.
            useUserLang: function () {
*/
                defaultLang = options.language;
inUserLang: function () {
            },
tempLang = options.language;
return this;
},


/*
            /*
* Create a new instance of Message.
            * Set the language for the next msg call to the user's language.
*
            *
* @return {object}
            * @return The current object for use in chaining.
*/
            */
msg: function () {
            inUserLang: function () {
var args = Array.prototype.slice.call( arguments ),
                tempLang = options.language;
lang = defaultLang;
                return this;
            },


if ( tempLang !== null ) {
            /*
lang = tempLang;
            * Create a new instance of Message.
tempLang = null;
            */
}
            msg: function () {
                var args = Array.prototype.slice.call(arguments),
                    lang = defaultLang;


return message( messages, lang, args, name );
                if (tempLang !== null) {
},
                    lang = tempLang;
                    tempLang = null;
                }


/*
                return message(messages, lang, args, name);
* For accessing the raw messages.
            },
* Scripts should not rely on it or any of its properties existing.
*/
_messages: messages
};
}


/*
            /*
* Preprocess each message's fallback chain for the user and content languages.
            * For accessing the raw messages.
* This allows us to save only those messages needed to the cache.
            * Scripts should not rely on it or any of its properties existing.
*
            */
* @param {string} name The name of the script the messages are for.
            _messages: messages
* @param {object} messages The message object to look translations up in.
        };
* @param {object} options Options set by the loading script.
    }
*/
function optimiseMessages( name, messages, options ) {
var existingLangs = cache[ name ] && cache[ name ]._messages._isOptimised,
langs = [ options.language ],
msgKeys = Object.keys( messages.en || {} ),
optimised = {};


if ( !msgKeys.length ) {
    /*
/* No English messages, don't bother optimising */
    * Preprocess each message's fallback chain for the user and content languages.
return messages;
    * This allows us to save only those messages needed to the cache.
}
    *
    * @param name The name of the script the messages are for.
    * @param messages The message object to look translations up in.
    * @param options Options set by the loading script.
    */
    function optimiseMessages(name, messages, options) {
        var existingLangs = cache[name] && cache[name]._messages._isOptimised,
            langs = [options.language],
            msgKeys = Object.keys(messages.en || {}),
            optimised = {};


/*
        if (!msgKeys.length) {
* @var addMsgsForLanguage
            // no English messages, don't bother optimising
*/
            return messages;
var addMsgsForLanguage = function (lang) {
        }
if ( optimised[ lang ] ) {
/* Language already exists */
return;
}


optimised[ lang ] = {};
        var addMsgsForLanguage = function (lang) {
            if (optimised[lang]) {
                // language already exists
                return;
            }


msgKeys.forEach( function ( msgName ) {
            optimised[lang] = {};
/*
* @var msg
*/
var msg = getMsg( messages, msgName, lang );


if ( msg !== false ) {
            msgKeys.forEach(function (msgName) {
optimised[ lang ][ msgName ] = msg;
                var msg = getMsg(messages, msgName, lang);
}
} );
};


if ( langs.indexOf( conf.wgContentLanguage ) === -1 ) {
                if (msg !== false) {
langs.push( conf.wgContentLanguage );
                    optimised[lang][msgName] = msg;
}
                }
            });
        };


/*
        if (langs.indexOf(conf.wgContentLanguage) === -1) {
* If cache exists and is optimised, preserve existing languages.
            langs.push(conf.wgContentLanguage);
* This allows an optimised cache even when using different
        }
* language wikis on same domain (i.e. sharing same cache).
*/
if ( existingLangs ) {
existingLangs.forEach( function ( lang ) {
if ( langs.indexOf( lang ) === -1 ) {
langs.push( lang );
}
} );
}


langs.forEach( addMsgsForLanguage );
        // if cache exists and is optimised, preserve existing languages
        // this allows an optimised cache even when using different
        // language wikis on same domain (i.e. sharing same cache)
        if (existingLangs) {
            existingLangs.forEach(function (lang) {
                if (langs.indexOf(lang) === -1) {
                    langs.push(lang);
                }
            });
        }


/*
        langs.forEach(addMsgsForLanguage);
* `cacheAll` is an array of message names for which translations
* should not be optimised - save all translations of these messages
*/
if ( Array.isArray( options.cacheAll ) ) {
msgKeys = options.cacheAll;
Object.keys( messages ).forEach( addMsgsForLanguage );
}


optimised._isOptimised = langs;
        // `cacheAll` is an array of message names for which translations
        // should not be optimised - save all translations of these messages
        if (Array.isArray(options.cacheAll)) {
            msgKeys = options.cacheAll;
            Object.keys(messages).forEach(addMsgsForLanguage);
        }


return optimised;
        optimised._isOptimised = langs;
}


/*
        return optimised;
* Check that the cache for a script exists and, if optimised, contains the necessary languages.
    }
*
* @param {string} name The name of the script to check for.
* @param {object} options Options set by the loading script.
* @return {boolean} Whether the cache should be used.
*/
function cacheIsSuitable( name, options ) {
var messages = cache[ name ] && cache[ name ]._messages;


/* Nothing in cache */
    /*
if ( !messages ) {
    * Check that the cache for a script exists and, if optimised, contains the necessary languages.
return false;
    *
}
    * @param name The name of the script to check for.
    * @param options Options set by the loading script.
    *
    * @return Boolean whether the cache should be used.
    */
    function cacheIsSuitable(name, options) {
        var messages = cache[name] && cache[name]._messages;


/*
        // nothing in cache
* Optimised messages missing user or content language.
        if (!messages) {
* We'll need to load from server in this case.
            return false;
*/
        }
if (
messages._isOptimised &&
!( messages[ options.language ] && messages[ conf.wgContentLanguage ] )
) {
return false;
}


return true;
        // optimised messages missing user or content language
}
        // we'll need to load from server in this case
        if (
            messages._isOptimised &&
            !(messages[options.language] && messages[conf.wgContentLanguage])
        ) {
            return false;
        }


/*
        return true;
* Remove out-of-date entries in the i18n cache (those older than two days).
    }
*
* This can never be perfect: it will only work on wikis that are visited.
*/
function removeOldCacheEntries() {
var isCacheKey = new RegExp( '^(' + cachePrefix + '.+)-content$' ),
storageKeys = [];


try {
    /*
storageKeys = Object.keys( localStorage );
    * Remove out-of-date entries in the i18n cache (those older than two days).
} catch ( e ) {}
    *
    * This can never be perfect: it will only work on wikis that are visited.
    */
    function removeOldCacheEntries() {
        var isCacheKey = new RegExp('^(' + cachePrefix + '.+)-content$'),
            storageKeys = [];


storageKeys.filter( function ( key ) {
        try {
return isCacheKey.test( key );
            storageKeys = Object.keys(localStorage);
} ).forEach( function ( key ) {
        } catch (e) {}
var keyPrefix = key.match( isCacheKey )[ 1 ],
cacheTimestamp;


try {
        storageKeys.filter(function (key) {
cacheTimestamp = Number( localStorage.getItem( keyPrefix + '-timestamp' ) );
                return isCacheKey.test(key);
} catch ( e ) {}
        }).forEach(function (key) {
            var keyPrefix = key.match(isCacheKey)[1],
                cacheTimestamp;
   
            try {
                cacheTimestamp = Number(localStorage.getItem(keyPrefix + '-timestamp'));
            } catch (e) {}


if ( now - cacheTimestamp < oneDay * 2 ) {
            if (now - cacheTimestamp < oneDay * 2) {
/* Cached within last two days, keep it */
                // cached within last two days, keep it
return;
                return;
}
            }


try {
            try {
localStorage.removeItem( keyPrefix + '-content' );
                localStorage.removeItem(keyPrefix + '-content');
localStorage.removeItem( keyPrefix + '-timestamp' );
                localStorage.removeItem(keyPrefix + '-timestamp');
localStorage.removeItem( keyPrefix + '-version' );
                localStorage.removeItem(keyPrefix + '-version');
} catch ( e ) {}
            } catch (e) {}
} );
        });
}
    }


/*
    /*
* Strip block comments from a JSON string which are illegal under the JSON spec.
    * Strip block comments from a JSON string which are illegal under the JSON spec.
* This is a bit basic, so will remove comments inside strings too.
    * This is a bit basic, so will remove comments inside strings too.
*
    *
* @param {string} json The JSON string.
    * @param json The JSON string.
* @return {string} The JSON string after any comments have been removed.
    *
*/
    * @return The JSON string after any comments have been removed.
function stripComments( json ) {
    */
json = json
    function stripComments(json) {
.trim()
        json = json
.replace( /\/\*[\s\S]*?\*\//g, '' );
            .trim()
return json;
            .replace(/\/\*[\s\S]*?\*\//g, '');
}
        return json;
    }


/*
    /*
* Save messages string to local storage for caching.
    * Save messages string to local storage for caching.
*
    *
* @param {string} name The name of the script the messages are for.
    * @param name The name of the script the messages are for.
* @param {object} json The JSON object.
    * @param json The JSON object.
* @param {number} cacheVersion Cache version requested by the loading script.
    * @param cacheVersion Cache version requested by the loading script.
*/
    */
function saveToCache( name, json, cacheVersion ) {
    function saveToCache(name, json, cacheVersion) {
/*
        var keyPrefix = cachePrefix + name;
* @var {string} keyPrefix
*/
var keyPrefix = cachePrefix + name;


/* Don't cache empty JSON */
        // don't cache empty JSON
if ( Object.keys( json ).length === 0 ) {
        if (Object.keys(json).length === 0) {
return;
            return;
}
        }


try {
        try {
localStorage.setItem( keyPrefix + '-content', JSON.stringify( json ) );
            localStorage.setItem(keyPrefix + '-content', JSON.stringify(json));
localStorage.setItem( keyPrefix + '-timestamp', now );
            localStorage.setItem(keyPrefix + '-timestamp', now);
localStorage.setItem( keyPrefix + '-version', cacheVersion || 0 );
            localStorage.setItem(keyPrefix + '-version', cacheVersion || 0);
} catch ( e ) {}
        } catch (e) {}
}
    }


/*
    /*
* Parse JSON string loaded from page and create an i18n object.
    * Parse JSON string loaded from page and create an i18n object.
*
    *
* @param {string} name The name of the script the messages are for.
    * @param name The name of the script the messages are for.
* @param {string} res The JSON string.
    * @param res The JSON string.
* @param {object} options Options set by the loading script.
    * @param options Options set by the loading script.
* @return {object} The resulting i18n object.
    *
*/
    * @return The resulting i18n object.
function parseMessagesToObject( name, res, options ) {
    */
var json = {},
    function parseMessagesToObject(name, res, options) {
obj,
        var json = {},
msg;
            obj,
            msg;


/* Handle parse errors gracefully */
        // handle parse errors gracefully
try {
        try {
res = stripComments( res );
            res = stripComments(res);
json = JSON.parse( res );
            json = JSON.parse(res);
} catch ( e ) {
        } catch (e) {
msg = e.message;
            msg = e.message;


if ( msg === 'Unexpected end of JSON input' ) {
            if (msg === 'Unexpected end of JSON input') {
msg += '. This may be caused by a non-existent i18n.json page.';
                msg += '. This may be caused by a non-existent i18n.json page.';
}
            }


console.warn( '[I18n-js] SyntaxError in messages: ' + msg );
            console.warn('[I18n-js] SyntaxError in messages: ' + msg);
}
        }


if (
        if (
options.useCache &&
            options.useCache &&
!options.loadedFromCache &&
            !options.loadedFromCache &&
options.cacheAll !== true
            options.cacheAll !== true
) {
        ) {
json = optimiseMessages( name, json, options );
            json = optimiseMessages(name, json, options);
}
        }


obj = i18n( json, name, options );
        obj = i18n(json, name, options);


/* Cache the result in case it's used multiple times */
        // cache the result in case it's used multiple times
cache[ name ] = obj;
        cache[name] = obj;


if ( !options.loadedFromCache ) {
        if (!options.loadedFromCache) {
saveToCache( name, json, options.cacheVersion );
            saveToCache(name, json, options.cacheVersion);
}
        }


return obj;
        return obj;
}
    }


/*
    /*
* Load messages string from local storage cache and add to cache object.
    * Load messages string from local storage cache and add to cache object.
*
    *
* @param {string} name The name of the script the messages are for.
    * @param name The name of the script the messages are for.
* @param {object} options Options set by the loading script.
    * @param options Options set by the loading script.
*/
    */
function loadFromCache( name, options ) {
    function loadFromCache(name, options) {
var keyPrefix = cachePrefix + name,
        var keyPrefix = cachePrefix + name,
cacheContent,
            cacheContent,
cacheVersion;
            cacheVersion;


try {
        try {
cacheContent = localStorage.getItem( keyPrefix + '-content' );
            cacheContent = localStorage.getItem(keyPrefix + '-content');
cacheVersion = Number( localStorage.getItem( keyPrefix + '-version' ) );
            cacheVersion = Number(localStorage.getItem(keyPrefix + '-version'));
} catch ( e ) {}
        } catch (e) {}


/* Cache exists, and its version is greater than or equal to requested version */
        // cache exists, and its version is greater than or equal to requested version
if ( cacheContent && cacheVersion >= options.cacheVersion ) {
        if (cacheContent && cacheVersion >= options.cacheVersion) {
options.loadedFromCache = true;
            options.loadedFromCache = true;
parseMessagesToObject( name, cacheContent, options );
            parseMessagesToObject(name, cacheContent, options);
}
        }
}
    }


/*
    /*
* Load messages stored as JSON on a page.
    * Load messages stored as JSON on a page.
*
    *
* @param {string} name The name of the script the messages are for. This will be
    * @param name The name of the script the messages are for. This will be
* used to get messages from
    *     used to get messages from
* https://dev.fandom.com/wiki/MediaWiki:Custom-name/i18n.json.
    *     https://dev.fandom.com/wiki/MediaWiki:Custom-name/i18n.json.
*  Use `u:<subdomain>` or `u:<language-path>.<subdomain>` to set other Fandom
    * @param options Options set by the loading script:
*  wikis as the source.
    *    cacheAll: Either an array of message names for which translations should not be optimised, or `true` to disable the optimised cache.
* @param {object} options Options set by the loading script:
    *     cacheVersion: Minimum cache version requested by the loading script.
* - {string} apiEndpoint: Use `u:<subdomain>` or `u:<language-path>.<subdomain>`
    *     language: Set a default language for the script to use, instead of wgUserLanguage.
*    to set other sites as the API endpoint of the source. Currently only
    *     noCache: Never load i18n from cache (not recommended for general use).
*    support Fandom wikis.
    *
* - {string} page: Set other format of the full page name for the i18n JSON.
    * @return A jQuery.Deferred instance.
*    Use $1 for the placeholder of name.
    */
* - {(array|boolean)} cacheAll: Either an array of message names for which translations should not be optimised,
    function loadMessages(name, options) {
*    or `true` to disable the optimised cache.
        var deferred = $.Deferred(),
* - {number} cacheVersion: Minimum cache version requested by the loading script.
            customSource = name.match(/^u:(?:([a-z-]+)\.)?([a-z0-9-]+):/),
* - {string} language: Set a default language for the script to use, instead of wgUserLanguage.
            apiEndpoint = 'https://dev.fandom.com/api.php',
* - noCache: Never load i18n from cache (not recommended for general use).
            page = 'MediaWiki:Custom-' + name + '/i18n.json',
*
            params;
* @return {object} A jQuery.Deferred instance.
*/
function loadMessages( name, options ) {
/*
* @var {object} deferred
* @var {string} apiEndpoint
* @var {RegExp} apiEndpointRgx
* @var {string} page
* @var {object} params
*/
var deferred = $.Deferred(),
customSource = name.match( /^u:(?:([a-z-]+)\.)?([a-z0-9-]+):/ ),
apiEndpoint = 'https://dev.fandom.com/api.php',
apiEndpointRgx = new RegExp(
/* '^(https:\/\/(([a-z0-9-]+)\.fandom\.com(?:\/([a-z-]+))?|(([a-z-]+)\.wikipedia\.org\/w))\/api\.php)$' */
'^(https:\/\/(([a-z0-9-]+)\.fandom\.com(?:\/([a-z-]+))?)\/api\.php)$'
),
page = 'MediaWiki:Custom-' + name + '/i18n.json',
params;


options = options || {};
        options = options || {};
if ( options.apiEndpoint && apiEndpointRgx.test( options.apiEndpoint ) ) {
        options.cacheVersion = Number(options.cacheVersion) || 0;
options.apiEndpoint = options.apiEndpoint;
        options.language = options.language || conf.wgUserLanguage;
} else {
        options.useCache = (options.noCache || conf.debug) !== true;
options.apiEndpoint = apiEndpoint;
}
options.page = ( options.page && options.page.replace( /\$1/g, name ) ) || page;
options.cacheVersion = Number( options.cacheVersion ) || 0;
options.language = options.language || conf.wgUserLanguage;
options.useCache = ( options.noCache || conf.debug ) !== true;


if ( options.useCache ) {
        if (options.useCache) {
loadFromCache( name, options );
            loadFromCache(name, options);


if ( cacheIsSuitable( name, options ) ) {
            if (cacheIsSuitable(name, options)) {
return deferred.resolve( cache[ name ] );
                return deferred.resolve(cache[name]);
}
            }
}
        }


/* Cache isn't suitable - loading from server */
        // cache isn't suitable - loading from server
options.loadedFromCache = false;
        options.loadedFromCache = false;


/*
        // allow custom i18n pages to be specified on other wikis
* Allow custom i18n pages to be specified on other wikis.
        // mainly for VSTF wiki to keep their own JSON file
* Mainly for SOAP Wiki to keep their own JSON file.
        // note this only supports loading from wikis on fandom.com
* Note this only supports loading from wikis on fandom.com.
        if (customSource) {
*/
            apiEndpoint = apiEndpoint.replace('dev', customSource[2]);
if ( customSource ) {
            page = name.slice(customSource[0].length);
apiEndpoint = apiEndpoint.replace( 'dev', customSource[ 2 ] );
page = name.slice( customSource[ 0 ].length );


// adjust endpoint when loading from interlanguage wiki
            // adjust endpoint when loading from interlanguage wiki
if ( customSource[ 1 ] ) {
            if (customSource[1]) {
apiEndpoint = apiEndpoint.replace(
                apiEndpoint = apiEndpoint.replace(
/api\.php$/,
                    /api\.php$/,
customSource[ 1 ] + '/$&'
                    customSource[1] + '/$&'
);
                );
}
            }
}
        }


params = {
        params = {
action: 'query',
            action: 'query',
format: 'json',
            format: 'json',
prop: 'revisions',
            prop: 'revisions',
rvprop: 'content',
            rvprop: 'content',
titles: page,
            titles: page,
indexpageids: 1,
            indexpageids: 1,
origin: '*',
            origin: '*',
// Cache results for 5 minutes in CDN and browser
            // Cache results for 5 minutes in CDN and browser
maxage: 300,
            maxage: 300,
smaxage: 300
            smaxage: 300
};
        };


/*
        // site and user are dependencies so end-users can set overrides in their local JS
* 'site' and 'user' are dependencies so end-users can set overrides in their local JS
        // and have it take effect before we load the messagaes
* and have it take effect before we load the messages.
        // generally, we will implicitly depend on those anyway due to where/when this is loaded
* Generally, we will implicitly depend on those anyway due to where/when this is loaded.
        mw.loader.using(['mediawiki.language', 'mediawiki.util'/*, 'site', 'user'*/], function () {
*/
            $.ajax(apiEndpoint, {
mw.loader.using( [ 'mediawiki.language', 'mediawiki.util'/*, 'site', 'user'*/ ], function () {
                data: params,
$.ajax( apiEndpoint, {
            }).always(function (data) {
data: params,
                var res = '',
} ).always( function ( data ) {
                    revisionData = data.query && data.query.pages[data.query.pageids[0]].revisions;
var res = '',
revisionData = data.query && data.query.pages[ data.query.pageids[ 0 ] ].revisions;


if ( revisionData ) {
                if (revisionData) {
res = revisionData[ 0 ][ '*' ];
                    res = revisionData[0]['*'];
}
                }


deferred.resolve( parseMessagesToObject( name, res, options ) );
                deferred.resolve(parseMessagesToObject(name, res, options));
} );
            });
} );
        });


return deferred;
        return deferred;
}
    }


/* Expose under the dev global */
    // expose under the dev global
window.dev.i18n = $.extend( window.dev.i18n, {
    window.dev.i18n = $.extend(window.dev.i18n, {
loadMessages: loadMessages,
        loadMessages: loadMessages,


/*
        // 'hidden' functions to allow testing and debugging
* "Hidden" functions to allow testing and debugging
        // they may be changed or removed without warning
* they may be changed or removed without warning.
        // scripts should not rely on these existing or their output being in any particular format
* Scripts should not rely on these existing or their output being in any particular format.
        _stripComments: stripComments,
*/
        _saveToCache: saveToCache,
_bcp47: bcp47,
        _getMsg: getMsg,
_stripComments: stripComments,
        _handleArgs: handleArgs,
_saveToCache: saveToCache,
        _parse: parse,
_getMsg: getMsg,
        _fallbacks: fallbacks,
_handleArgs: handleArgs,
        _cache: cache
_parse: parse,
    });
_fallbacks: fallbacks,
_cache: cache
} );


/* Initialise overrides object */
    // initialise overrides object
window.dev.i18n.overrides = window.dev.i18n.overrides || {};
    window.dev.i18n.overrides = window.dev.i18n.overrides || {};
overrides = window.dev.i18n.overrides;
    overrides = window.dev.i18n.overrides;


/*
    // fire an event on load
* Fire an event on load
    mw.hook('dev.i18n').fire(window.dev.i18n);
*
    // alternatively, use $.getScript (or mw.loader)
* Alternatively, use $.getScript (or mw.loader)
    // and use the returned promise
* and use the returned promise
*/
mw.hook( 'dev.i18n' ).fire( window.dev.i18n );


/* tidy the localStorage cache of old entries */
    // tidy the localStorage cache of old entries
removeOldCacheEntries();
    removeOldCacheEntries();


} ( this, jQuery, mediaWiki ) );
}(this, jQuery, mediaWiki));

Revision as of 10:39, 23 May 2022

/* <nowiki>
 * Library for accessing i18n messages for use in Dev Wiki scripts.
 * See [[I18n-js]] for documentation.
 *
 * @author Cqm <https://dev.fandom.com/User:Cqm>
 * @author OneTwoThreeFall <https://dev.fandom.com/User:OneTwoThreeFall>
 *
 * @version 0.6.6
 *
 * @notes Also used by VSTF wiki for their reporting forms (with a non-dev i18n.json page)
 * @notes This is apparently a commonly used library for a number of scripts and also includes
 *        a check to prevent double loading. This can make it painful to test from your JS
 *        console. To get around this, add ?usesitejs=0&useuserjs=0 to your URL.
 */

/*global mediaWiki */

/*jshint bitwise:true, camelcase:true, curly:true, eqeqeq:true, es3:false,
    forin:true, immed:true, indent:4, latedef:true, newcap:true,
    noarg:true, noempty:true, nonew:true, plusplus:true, quotmark:single,
    undef:true, unused:true, strict:true, trailing:true,
    browser:true, devel:false, jquery:true,
    onevar:true
*/

(function (window, $, mw, undefined) {
    'use strict';

    window.dev = window.dev || {};
    window.dev.i18n = window.dev.i18n || {};

    // prevent double loading and loss of cache
    if (window.dev.i18n.loadMessages !== undefined) {
        return;
    }

        /*
         * Cache of mw config variables.
         */
    var conf = mw.config.get([
            'debug',
            'wgContentLanguage',
            'wgUserLanguage'
        ]),

        /*
         * Current time in milliseconds, used to set and check cache age.
         */
        now = Date.now(),

        /*
         * Length of one day in milliseconds, used in cache age calculations.
         */
        oneDay = 1000 * 60 * 60 * 24,

        /*
         * Prefix used for localStorage keys that contain i18n-js cache data.
         */
        cachePrefix = 'i18n-cache-',

        /*
         * Has a fallback loop warning been shown?
         */
        warnedAboutFallbackLoop = false,

        /*
         * Cache of loaded I18n instances.
         */
        cache = {},

        /*
         * Initial overrides object, initialised below with the i18n global variable.
         * Allows end-users to override specific messages. See documentation for how to use.
         */
        overrides = null,

        /*
         * Language fallbacks for those that don't fallback to English.
         * Shouldn't need updating unless Wikia change theirs.
         *
         * To generate this, use `$ grep -R "fallback =" /path/to/messages/`,
         * pipe the result to a text file and format the result.
         */
        fallbacks = {
            'ab': 'ru',
            'ace': 'id',
            'aln': 'sq',
            'als': 'gsw',
            'an': 'es',
            'anp': 'hi',
            'arn': 'es',
            'arz': 'ar',
            'av': 'ru',
            'ay': 'es',
            'ba': 'ru',
            'bar': 'de',
            'bat-smg': 'sgs',
            'bcc': 'fa',
            'be-x-old': 'be-tarask',
            'bh': 'bho',
            'bjn': 'id',
            'bm': 'fr',
            'bpy': 'bn',
            'bqi': 'fa',
            'bug': 'id',
            'cbk-zam': 'es',
            'ce': 'ru',
            'ckb': 'ckb-arab',
            'crh': 'crh-latn',
            'crh-cyrl': 'ru',
            'csb': 'pl',
            'cv': 'ru',
            'de-at': 'de',
            'de-ch': 'de',
            'de-formal': 'de',
            'dsb': 'de',
            'dtp': 'ms',
            'eml': 'it',
            'ff': 'fr',
            'fiu-vro': 'vro',
            'frc': 'fr',
            'frp': 'fr',
            'frr': 'de',
            'fur': 'it',
            'gag': 'tr',
            'gan': 'gan-hant',
            'gan-hans': 'zh-hans',
            'gan-hant': 'zh-hant',
            'gl': 'pt',
            'glk': 'fa',
            'gn': 'es',
            'gsw': 'de',
            'hif': 'hif-latn',
            'hsb': 'de',
            'ht': 'fr',
            'ii': 'zh-cn',
            'inh': 'ru',
            'iu': 'ike-cans',
            'jut': 'da',
            'jv': 'id',
            'kaa': 'kk-latn',
            'kbd': 'kbd-cyrl',
            'kbd-cyrl': 'ru',
            'khw': 'ur',
            'kiu': 'tr',
            'kk': 'kk-cyrl',
            'kk-arab': 'kk-cyrl',
            'kk-cn': 'kk-arab',
            'kk-kz': 'kk-cyrl',
            'kk-latn': 'kk-cyrl',
            'kk-tr': 'kk-latn',
            'kl': 'da',
            'koi': 'ru',
            'ko-kp': 'ko',
            'krc': 'ru',
            'ks': 'ks-arab',
            'ksh': 'de',
            'ku': 'ku-latn',
            'ku-arab': 'ckb',
            'kv': 'ru',
            'lad': 'es',
            'lb': 'de',
            'lbe': 'ru',
            'lez': 'ru',
            'li': 'nl',
            'lij': 'it',
            'liv': 'et',
            'lmo': 'it',
            'ln': 'fr',
            'ltg': 'lv',
            'lzz': 'tr',
            'mai': 'hi',
            'map-bms': 'jv',
            'mg': 'fr',
            'mhr': 'ru',
            'min': 'id',
            'mo': 'ro',
            'mrj': 'ru',
            'mwl': 'pt',
            'myv': 'ru',
            'mzn': 'fa',
            'nah': 'es',
            'nap': 'it',
            'nds': 'de',
            'nds-nl': 'nl',
            'nl-informal': 'nl',
            'no': 'nb',
            'os': 'ru',
            'pcd': 'fr',
            'pdc': 'de',
            'pdt': 'de',
            'pfl': 'de',
            'pms': 'it',
            // 'pt': 'pt-br',
            'pt-br': 'pt',
            'qu': 'es',
            'qug': 'qu',
            'rgn': 'it',
            'rmy': 'ro',
            'rue': 'uk',
            'ruq': 'ruq-latn',
            'ruq-cyrl': 'mk',
            'ruq-latn': 'ro',
            'sa': 'hi',
            'sah': 'ru',
            'scn': 'it',
            'sg': 'fr',
            'sgs': 'lt',
            'shi': 'ar',
            'simple': 'en',
            'sli': 'de',
            'sr': 'sr-ec',
            'srn': 'nl',
            'stq': 'de',
            'su': 'id',
            'szl': 'pl',
            'tcy': 'kn',
            'tg': 'tg-cyrl',
            'tt': 'tt-cyrl',
            'tt-cyrl': 'ru',
            'ty': 'fr',
            'udm': 'ru',
            'ug': 'ug-arab',
            'uk': 'ru',
            'vec': 'it',
            'vep': 'et',
            'vls': 'nl',
            'vmf': 'de',
            'vot': 'fi',
            'vro': 'et',
            'wa': 'fr',
            'wo': 'fr',
            'wuu': 'zh-hans',
            'xal': 'ru',
            'xmf': 'ka',
            'yi': 'he',
            'za': 'zh-hans',
            'zea': 'nl',
            'zh': 'zh-hans',
            'zh-classical': 'lzh',
            'zh-cn': 'zh-hans',
            'zh-hant': 'zh-hans',
            'zh-hk': 'zh-hant',
            'zh-min-nan': 'nan',
            'zh-mo':  'zh-hk',
            'zh-my':  'zh-sg',
            'zh-sg':  'zh-hans',
            'zh-tw':  'zh-hant',
            'zh-yue': 'yue'
        };

    /*
     * Log a warning message to the browser console if the language fallback chain is
     * about to start a loop. Only logs once to prevent flooding the browser console.
     *
     * @param lang Language in use when loop was found.
     * @param fallbackChain Array of languages involved in the loop.
     */
    function warnOnFallbackLoop(lang, fallbackChain) {
        if (warnedAboutFallbackLoop) {
            return;
        }
        warnedAboutFallbackLoop = true;

        fallbackChain.push(lang);
        console.error('[I18n-js] Language fallback loop found. Please leave a message at <https://dev.fandom.com/wiki/Talk:I18n-js> and include the following line: \nLanguage fallback chain:', fallbackChain.join(', '));
    }

    /*
     * Get a translation of a message from the messages object in the
     * requested language.
     *
     * @param messages The message object to look translations up in.
     * @param msgName The name of the message to get.
     * @param lang The language to get the message in.
     * @param fallbackChain Array of languages that have already been checked.
     *     Used to detect if the fallback chain is looping.
     *
     * @return The requested translation or `false` if no message could be found.
     */
    function getMsg(messages, msgName, lang, fallbackChain) {
        if (messages[lang] && messages[lang][msgName]) {
            return messages[lang][msgName];
        }

        if (lang === 'en') {
            return false;
        }

        if (!fallbackChain) {
            fallbackChain = [];
        }
        fallbackChain.push(lang);

        lang = fallbacks[lang] || 'en';

        if (fallbackChain.indexOf(lang) !== -1) {
            // about to enter an infinite loop - switch to English
            warnOnFallbackLoop(lang, fallbackChain);
            lang = 'en';
        }

        return getMsg(messages, msgName, lang, fallbackChain);
    }

    /*
     * Substitute arguments into the string, where arguments are represented
     * as $n where n > 0.
     *
     * @param message The message to substitute arguments into
     * @param arguments The arguments to substitute in.
     *
     * @return The resulting message.
     */
    function handleArgs(message, args) {
        args.forEach(function (elem, index) {
            var rgx = new RegExp('\\$' + (index + 1), 'g');
            message = message.replace(rgx, elem);
        });

        return message;
    }

    /*
     * Generate a HTML link using the supplied parameters.
     *
     * @param href The href of the link which will be converted to
     *     '/wiki/href'.
     * @param text The text and title of the link. If this is not supplied, it
     *     will default to href.
     * @param hasProtocol True if the href parameter already includes the
     *     protocol (i.e. it begins with 'http://', 'https://', or '//').
     *
     * @return The generated link.
     */
    function makeLink(href, text, hasProtocol) {
        text = text || href;
        href = hasProtocol ? href : mw.util.getUrl(href);

        text = mw.html.escape(text);
        href = mw.html.escape(href);

        return '<a href="' + href + '" title="' + text + '">' + text + '</a>';
    }

    /*
     * Allow basic inline HTML tags in wikitext.does not support <a> as that's handled by the
     * wikitext links instead.
     *
     * Supports the following tags:
     * - <i>
     * - <b>
     * - <s>
     * - <br>
     * - <em>
     * - <strong>
     * - <span>
     *
     * Supports the following tag attributes:
     * - title
     * - style
     * - class
     *
     * @param html
     *
     * @return The sanitised HTML code.
     */
    function sanitiseHtml(html) {
        var context = document.implementation.createHTMLDocument(''),
            $html = $.parseHTML(html, /* document */ context, /* keepscripts */ false),
            $div = $('<div>', context).append($html),
            allowedAttrs = [
                'title',
                'style',
                'class'
            ],
            allowedTags = [
                'i',
                'b',
                's',
                'br',
                'em',
                'strong',
                'span',
            ];

        $div.find('*').each(function () {
            var $this = $(this),
                tagname = $this.prop('tagName').toLowerCase(),
                attrs,
                array,
                style;

            if (allowedTags.indexOf(tagname) === -1) {
                mw.log('[I18n-js] Disallowed tag in message: ' + tagname);
                $this.remove();
                return;
            }

            attrs = $this.prop('attributes');
            array = Array.prototype.slice.call(attrs);

            array.forEach(function (attr) {
                if (allowedAttrs.indexOf(attr.name) === -1) {
                    mw.log('[I18n-js] Disallowed attribute in message: ' + attr.name + ', tag: ' + tagname);
                    $this.removeAttr(attr.name);
                    return;
                }

                // make sure there's nothing nasty in style attributes
                if (attr.name === 'style') {
                    style = $this.attr('style');

                    if (style.indexOf('url(') > -1) {
                        mw.log('[I18n-js] Disallowed url() in style attribute');
                        $this.removeAttr('style');

                    // https://phabricator.wikimedia.org/T208881
                    } else if (style.indexOf('var(') > -1) {
                        mw.log('[I18n-js] Disallowed var() in style attribute');
                        $this.removeAttr('style');
                    }
                }
            });
        });

        return $div.prop('innerHTML');
    }

    /*
     * Parse some basic wikitext into HTML. Also supports basic inline HTML tags.
     *
     * Will process:
     * - [url text]
     * - [[pagename]]
     * - [[pagename|text]]
     * - {{PLURAL:count|singular|plural}}
     * - {{GENDER:gender|masculine|feminine|neutral}}
     *
     * @param message The message to process.
     *
     * @return The resulting string.
     */
    function parse(message) {
            // [url text] -> [$1 $2]
        var urlRgx = /\[((?:https?:)?\/\/.+?) (.+?)\]/g,
            // [[pagename]] -> [[$1]]
            simplePageRgx = /\[\[([^|]*?)\]\]/g,
            // [[pagename|text]] -> [[$1|$2]]
            pageWithTextRgx = /\[\[(.+?)\|(.+?)\]\]/g,
            // {{PLURAL:count|singular|plural}} -> {{PLURAL:$1|$2}}
            pluralRgx = /\{\{PLURAL:(\d+)\|(.+?)\}\}/gi,
            // {{GENDER:gender|masculine|feminine|neutral}} -> {{GENDER:$1|$2}}
            genderRgx = /\{\{GENDER:([^|]+)\|(.+?)\}\}/gi;

        if (message.indexOf('<') > -1) {
            message = sanitiseHtml(message);
        }

        return message
            .replace(urlRgx, function (_match, href, text) {
                return makeLink(href, text, true);
            })
            .replace(simplePageRgx, function (_match, href) {
                return makeLink(href);
            })
            .replace(pageWithTextRgx, function (_match, href, text) {
                return makeLink(href, text);
            })
            .replace(pluralRgx, function (_match, count, forms) {
                return mw.language.convertPlural(Number(count), forms.split('|'));
            })
            .replace(genderRgx, function (_match, gender, forms) {
                return mw.language.gender(gender, forms.split('|'));
            });
    }

    /*
     * Create a new Message instance.
     *
     * @param messages The message object to look translations up in.
     * @param lang The language to get the message in.
     * @param args Any arguments to substitute into the message, [0] is message name.
     * @param name The name of the script the messages are for.
     */
    function message(messages, lang, args, name) {
        if (!args.length) {
            return;
        }

        var msgName = args.shift(),
            descriptiveMsgName = 'i18njs-' + name + '-' + msgName,
            msg = getMsg(messages, msgName, lang),
            msgExists = msg !== false;

        if (!msgExists) {
            // use name wrapped in < > for missing message, per MediaWiki convention
            msg = '<' + descriptiveMsgName + '>';
        }

        if (conf.wgUserLanguage === 'qqx' && msgExists) {
            // https://www.mediawiki.org/wiki/Help:System_message#Finding_messages_and_documentation
            msg = '(' + descriptiveMsgName + ')';
        } else if (overrides[name] && overrides[name][msgName]) {
            // if the message has been overridden, use that without checking the language
            msg = overrides[name][msgName];
            msgExists = true;
        }

        if (args.length) {
            msg = handleArgs(msg, args);
        }

        return {
            /*
             * Boolean representing whether the message exists.
             */
            exists: msgExists,

            /*
             * Parse wikitext links in the message and return the result.
             *
             * @return The resulting string.
             */
            parse: function () {
                // skip parsing if the message wasn't found otherwise
                // the sanitisation will mess with it
                if (!this.exists) {
                    return this.escape();
                }

                return parse(msg);
            },

            /*
             * Escape any HTML in the message and return the result.
             *
             * @return The resulting string.
             */
            escape: function () {
                return mw.html.escape(msg);
            },

            /*
             * Return the message as is.
             *
             * @return The resulting string.
             */
            plain: function () {
                return msg;
            }
        };
    }

    /*
     * Create a new i18n object.
     *
     * @param messages The message object to look translations up in.
     * @param name The name of the script the messages are for.
     * @param options Options set by the loading script.
     */
    function i18n(messages, name, options) {
        var defaultLang = options.language,
            tempLang = null;

        return {
            /*
             * Set the default language.
             *
             * @deprecated since v0.6 (2020-08-25), no longer supported.
             */
            useLang: function () {
                console.warn('[I18n-js] “useLang()” is no longer supported by I18n-js (used in “' + name + '”) - using user language.');
                this.useUserLang();
            },

            /*
             * Set the language for the next msg call.
             *
             * @param lang The language code to use for the next `msg` call.
             *
             * @return The current object for use in chaining.
             */
            inLang: function (lang) {
                if (!options.cacheAll) {
                    console.warn('[I18n-js] “inLang()” is not supported without configuring `options.cacheAll` (used in “' + name + '”) - using user language.');
                    lang = options.language;
                }
                tempLang = lang;
                return this;
            },

            /*
             * Set the default language to the content language.
             */
            useContentLang: function () {
                defaultLang = conf.wgContentLanguage;
            },

            /*
             * Set the language for the next `msg` call to the content language.
             *
             * @return The current object for use in chaining.
             */
            inContentLang: function () {
                tempLang = conf.wgContentLanguage;
                return this;
            },


            /*
             * Set the default language to the user's language.
             */
            useUserLang: function () {
                defaultLang = options.language;
            },

            /*
             * Set the language for the next msg call to the user's language.
             *
             * @return The current object for use in chaining.
             */
            inUserLang: function () {
                tempLang = options.language;
                return this;
            },

            /*
             * Create a new instance of Message.
             */
            msg: function () {
                var args = Array.prototype.slice.call(arguments),
                    lang = defaultLang;

                if (tempLang !== null) {
                    lang = tempLang;
                    tempLang = null;
                }

                return message(messages, lang, args, name);
            },

            /*
             * For accessing the raw messages.
             * Scripts should not rely on it or any of its properties existing.
             */
            _messages: messages
        };
    }

    /*
     * Preprocess each message's fallback chain for the user and content languages.
     * This allows us to save only those messages needed to the cache.
     *
     * @param name The name of the script the messages are for.
     * @param messages The message object to look translations up in.
     * @param options Options set by the loading script.
     */
    function optimiseMessages(name, messages, options) {
        var existingLangs = cache[name] && cache[name]._messages._isOptimised,
            langs = [options.language],
            msgKeys = Object.keys(messages.en || {}),
            optimised = {};

        if (!msgKeys.length) {
            // no English messages, don't bother optimising
            return messages;
        }

        var addMsgsForLanguage = function (lang) {
            if (optimised[lang]) {
                // language already exists
                return;
            }

            optimised[lang] = {};

            msgKeys.forEach(function (msgName) {
                var msg = getMsg(messages, msgName, lang);

                if (msg !== false) {
                    optimised[lang][msgName] = msg;
                }
            });
        };

        if (langs.indexOf(conf.wgContentLanguage) === -1) {
            langs.push(conf.wgContentLanguage);
        }

        // if cache exists and is optimised, preserve existing languages
        // this allows an optimised cache even when using different
        // language wikis on same domain (i.e. sharing same cache)
        if (existingLangs) {
            existingLangs.forEach(function (lang) {
                if (langs.indexOf(lang) === -1) {
                    langs.push(lang);
                }
            });
        }

        langs.forEach(addMsgsForLanguage);

        // `cacheAll` is an array of message names for which translations
        // should not be optimised - save all translations of these messages
        if (Array.isArray(options.cacheAll)) {
            msgKeys = options.cacheAll;
            Object.keys(messages).forEach(addMsgsForLanguage);
        }

        optimised._isOptimised = langs;

        return optimised;
    }

    /*
     * Check that the cache for a script exists and, if optimised, contains the necessary languages.
     *
     * @param name The name of the script to check for.
     * @param options Options set by the loading script.
     *
     * @return Boolean whether the cache should be used.
     */
    function cacheIsSuitable(name, options) {
        var messages = cache[name] && cache[name]._messages;

        // nothing in cache
        if (!messages) {
            return false;
        }

        // optimised messages missing user or content language
        // we'll need to load from server in this case
        if (
            messages._isOptimised &&
            !(messages[options.language] && messages[conf.wgContentLanguage])
        ) {
            return false;
        }

        return true;
    }

    /*
     * Remove out-of-date entries in the i18n cache (those older than two days).
     *
     * This can never be perfect: it will only work on wikis that are visited.
     */
    function removeOldCacheEntries() {
        var isCacheKey = new RegExp('^(' + cachePrefix + '.+)-content$'),
            storageKeys = [];

        try {
            storageKeys = Object.keys(localStorage);
        } catch (e) {}

        storageKeys.filter(function (key) {
                return isCacheKey.test(key);
        }).forEach(function (key) {
            var keyPrefix = key.match(isCacheKey)[1],
                cacheTimestamp;
    
            try {
                cacheTimestamp = Number(localStorage.getItem(keyPrefix + '-timestamp'));
            } catch (e) {}

            if (now - cacheTimestamp < oneDay * 2) {
                // cached within last two days, keep it
                return;
            }

            try {
                localStorage.removeItem(keyPrefix + '-content');
                localStorage.removeItem(keyPrefix + '-timestamp');
                localStorage.removeItem(keyPrefix + '-version');
            } catch (e) {}
        });
    }

    /*
     * Strip block comments from a JSON string which are illegal under the JSON spec.
     * This is a bit basic, so will remove comments inside strings too.
     *
     * @param json The JSON string.
     *
     * @return The JSON string after any comments have been removed.
     */
    function stripComments(json) {
        json = json
            .trim()
            .replace(/\/\*[\s\S]*?\*\//g, '');
        return json;
    }

    /*
     * Save messages string to local storage for caching.
     *
     * @param name The name of the script the messages are for.
     * @param json The JSON object.
     * @param cacheVersion Cache version requested by the loading script.
     */
    function saveToCache(name, json, cacheVersion) {
        var keyPrefix = cachePrefix + name;

        // don't cache empty JSON
        if (Object.keys(json).length === 0) {
            return;
        }

        try {
            localStorage.setItem(keyPrefix + '-content', JSON.stringify(json));
            localStorage.setItem(keyPrefix + '-timestamp', now);
            localStorage.setItem(keyPrefix + '-version', cacheVersion || 0);
        } catch (e) {}
    }

    /*
     * Parse JSON string loaded from page and create an i18n object.
     *
     * @param name The name of the script the messages are for.
     * @param res The JSON string.
     * @param options Options set by the loading script.
     *
     * @return The resulting i18n object.
     */
    function parseMessagesToObject(name, res, options) {
        var json = {},
            obj,
            msg;

        // handle parse errors gracefully
        try {
            res = stripComments(res);
            json = JSON.parse(res);
        } catch (e) {
            msg = e.message;

            if (msg === 'Unexpected end of JSON input') {
                msg += '. This may be caused by a non-existent i18n.json page.';
            }

            console.warn('[I18n-js] SyntaxError in messages: ' + msg);
        }

        if (
            options.useCache &&
            !options.loadedFromCache &&
            options.cacheAll !== true
        ) {
            json = optimiseMessages(name, json, options);
        }

        obj = i18n(json, name, options);

        // cache the result in case it's used multiple times
        cache[name] = obj;

        if (!options.loadedFromCache) {
            saveToCache(name, json, options.cacheVersion);
        }

        return obj;
    }

    /*
     * Load messages string from local storage cache and add to cache object.
     *
     * @param name The name of the script the messages are for.
     * @param options Options set by the loading script.
     */
    function loadFromCache(name, options) {
        var keyPrefix = cachePrefix + name,
            cacheContent,
            cacheVersion;

        try {
            cacheContent = localStorage.getItem(keyPrefix + '-content');
            cacheVersion = Number(localStorage.getItem(keyPrefix + '-version'));
        } catch (e) {}

        // cache exists, and its version is greater than or equal to requested version
        if (cacheContent && cacheVersion >= options.cacheVersion) {
            options.loadedFromCache = true;
            parseMessagesToObject(name, cacheContent, options);
        }
    }

    /*
     * Load messages stored as JSON on a page.
     *
     * @param name The name of the script the messages are for. This will be
     *     used to get messages from
     *     https://dev.fandom.com/wiki/MediaWiki:Custom-name/i18n.json.
     * @param options Options set by the loading script:
     *     cacheAll: Either an array of message names for which translations should not be optimised, or `true` to disable the optimised cache.
     *     cacheVersion: Minimum cache version requested by the loading script.
     *     language: Set a default language for the script to use, instead of wgUserLanguage.
     *     noCache: Never load i18n from cache (not recommended for general use).
     *
     * @return A jQuery.Deferred instance.
     */
    function loadMessages(name, options) {
        var deferred = $.Deferred(),
            customSource = name.match(/^u:(?:([a-z-]+)\.)?([a-z0-9-]+):/),
            apiEndpoint = 'https://dev.fandom.com/api.php',
            page = 'MediaWiki:Custom-' + name + '/i18n.json',
            params;

        options = options || {};
        options.cacheVersion = Number(options.cacheVersion) || 0;
        options.language = options.language || conf.wgUserLanguage;
        options.useCache = (options.noCache || conf.debug) !== true;

        if (options.useCache) {
            loadFromCache(name, options);

            if (cacheIsSuitable(name, options)) {
                return deferred.resolve(cache[name]);
            }
        }

        // cache isn't suitable - loading from server
        options.loadedFromCache = false;

        // allow custom i18n pages to be specified on other wikis
        // mainly for VSTF wiki to keep their own JSON file
        // note this only supports loading from wikis on fandom.com
        if (customSource) {
            apiEndpoint = apiEndpoint.replace('dev', customSource[2]);
            page = name.slice(customSource[0].length);

            // adjust endpoint when loading from interlanguage wiki
            if (customSource[1]) {
                apiEndpoint = apiEndpoint.replace(
                    /api\.php$/,
                    customSource[1] + '/$&'
                );
            }
        }

        params = {
            action: 'query',
            format: 'json',
            prop: 'revisions',
            rvprop: 'content',
            titles: page,
            indexpageids: 1,
            origin: '*',
            // Cache results for 5 minutes in CDN and browser
            maxage: 300,
            smaxage: 300
        };

        // site and user are dependencies so end-users can set overrides in their local JS
        // and have it take effect before we load the messagaes
        // generally, we will implicitly depend on those anyway due to where/when this is loaded
        mw.loader.using(['mediawiki.language', 'mediawiki.util'/*, 'site', 'user'*/], function () {
            $.ajax(apiEndpoint, {
                data: params,
            }).always(function (data) {
                var res = '',
                    revisionData = data.query && data.query.pages[data.query.pageids[0]].revisions;

                if (revisionData) {
                    res = revisionData[0]['*'];
                }

                deferred.resolve(parseMessagesToObject(name, res, options));
            });
        });

        return deferred;
    }

    // expose under the dev global
    window.dev.i18n = $.extend(window.dev.i18n, {
        loadMessages: loadMessages,

        // 'hidden' functions to allow testing and debugging
        // they may be changed or removed without warning
        // scripts should not rely on these existing or their output being in any particular format
        _stripComments: stripComments,
        _saveToCache: saveToCache,
        _getMsg: getMsg,
        _handleArgs: handleArgs,
        _parse: parse,
        _fallbacks: fallbacks,
        _cache: cache
    });

    // initialise overrides object
    window.dev.i18n.overrides = window.dev.i18n.overrides || {};
    overrides = window.dev.i18n.overrides;

    // fire an event on load
    mw.hook('dev.i18n').fire(window.dev.i18n);
    // alternatively, use $.getScript (or mw.loader)
    // and use the returned promise

    // tidy the localStorage cache of old entries
    removeOldCacheEntries();

}(this, jQuery, mediaWiki));