MediaWiki:Gadget-LanguageUtils.js
Kedźbu: Po składowanju dyrbiš snano pufrowak swojeho wobhladowaka wuprózdnić, zo by změny widźał.
- Firefox/Safari: Dźerž tastu Umsch tłóčenu a klikń na Znowa abo tłóč pak Strg-F5 abo Strg-R (⌘-R na Mac);
- Google Chrome: Tłóč na Strg-Umsch-R (⌘-Umsch-R na Mac)
- Internet Explorer: Dźěrź tastu Strg tłóčen a klikń na Znowa abo tłóč Strg-F5.
- Opera: Dźi k Menü → Einstellungen (Opera → Einstellungen na Mac) a potom k Datenschutz & Sicherheit → Browserdaten löschen → Gespeicherte Bilder und Dateien.
// {{documentation}}
// implicit dependencies : ext.gadget.StorageUtils
/* jshint maxerr:1048576, strict:true, undef:true, latedef:true, es5:true, sub:true */
/* global mw, $ */
// <nowiki>
// usage:
// var lutils = new LanguageUtilsAsync();
// lutils.GetWiktionaryCodeByCanonicalName("Georgian").then(langcode => console.log(langcode));
// lutils.GetCanonicalNameByWiktionaryCode("ka").then(langname => console.log(langname));
window.LanguageUtilsAsync = function(){
this.langNameToLangCode = new mw.Api().get({
"action": "expandtemplates",
"format": "json",
"text": "{{#invoke:languages/javascript-interface|AllCanonicalToCode}}",
"prop": "wikitext"
}).then(function (response) {
return JSON.parse(response.expandtemplates.wikitext);
});
this.langCodeToLangName = this.langNameToLangCode.then(function(name2code){
var code2name = {};
for (var name in name2code)
{
code2name[name2code[name]] = name;
}
return code2name;
});
this.GetWiktionaryCodeByCanonicalName = function(canonicalName){
return this.langNameToLangCode.then(function(r){ return r[canonicalName];});
};
this.GetCanonicalNameByWiktionaryCode = function(langcode) {
return this.langCodeToLangName.then(function(r){ return r[langcode];});
};
};
window.LanguageUtils = function(){
this.automaticTranslitLanguages = function(){
return new mw.Api().get({
"action": "expandtemplates",
"format": "json",
"text": "{{#invoke:languages/javascript-interface|GetLanguagesWithAutomaticTransliteration}}",
"prop": "wikitext"
}).then(function (response) {
return JSON.parse(response.expandtemplates.wikitext);
});
};
this.wiktionaryCodeToWikimediaCode = function(){
return new mw.Api().get({
"action": "expandtemplates",
"format": "json",
"text": "{{#invoke:languages/javascript-interface|AllWiktionaryCodeToWikimediaCode}}",
"prop": "wikitext"
}).then(function (response) {
return JSON.parse(response.expandtemplates.wikitext);
});
};
this.automaticTranslitCacheableStorage = new CacheableStorage("LanguageUtils-AutomaticTransliteration", this.automaticTranslitLanguages, 7, 1);
this.wikimediaCodesCacheableStorage = new CacheableStorage("LanguageUtils-WikimediaCodes", this.wiktionaryCodeToWikimediaCode, 7, 1);
this.HasAutomaticTransliteration = function(langcode) {
var langs = this.automaticTranslitCacheableStorage.GetItem();
if (langs){
return langs[langcode] || false;
}
return false;
};
this.GetWikimediaCodeByWiktionaryCode = function(langcode) {
var wikimediaCodes = this.wikimediaCodesCacheableStorage.GetItem();
if (wikimediaCodes && wikimediaCodes[langcode]){
return wikimediaCodes[langcode][0];
}
return null;
};
};
window.ScriptUtils = function(){
this.getAllDataPromise = function(){
return new mw.Api().get({
"action": "expandtemplates",
"format": "json",
"text": "{{#invoke:languages/javascript-interface|AllLangcodeToScripts}}",
"prop": "wikitext"
}).then(function(r){return JSON.parse(r.expandtemplates.wikitext);});
};
this.cacheableStorage = new CacheableStorage("ScriptUtils", this.getAllDataPromise, 7, 1);
this.GetScriptsByLangCode = function(langcode){
var allData = this.cacheableStorage.GetItem();
if (allData){
var scripts = allData[langcode];
return typeof scripts === "string" ? [scripts] : scripts;
}
return [];
};
};
// </nowiki>