mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-27 21:39:37 +00:00
Serving the language list as a JS file rather than JSON simplifies a few things: - cacheid management; - having to manually delay the UI initialization until the JSON file is loaded. static/skin/languages.js must be generated/updated manually by running the static/generate_i18n_resources_list.py script.
65 lines
698 B
JavaScript
65 lines
698 B
JavaScript
const uiLanguages = [
|
|
{
|
|
"বাংলা": "bn"
|
|
},
|
|
{
|
|
"Čeština": "cs"
|
|
},
|
|
{
|
|
"Deutsch": "de"
|
|
},
|
|
{
|
|
"English": "en"
|
|
},
|
|
{
|
|
"français": "fr"
|
|
},
|
|
{
|
|
"עברית": "he"
|
|
},
|
|
{
|
|
"Հայերեն": "hy"
|
|
},
|
|
{
|
|
"italiano": "it"
|
|
},
|
|
{
|
|
"日本語": "ja"
|
|
},
|
|
{
|
|
"한국어": "ko"
|
|
},
|
|
{
|
|
"kurdî": "ku-latn"
|
|
},
|
|
{
|
|
"македонски": "mk"
|
|
},
|
|
{
|
|
"ߒߞߏ": "nqo"
|
|
},
|
|
{
|
|
"Polski": "pl"
|
|
},
|
|
{
|
|
"русский": "ru"
|
|
},
|
|
{
|
|
"Sardu": "sc"
|
|
},
|
|
{
|
|
"slovenčina": "sk"
|
|
},
|
|
{
|
|
"Svenska": "sv"
|
|
},
|
|
{
|
|
"Türkçe": "tr"
|
|
},
|
|
{
|
|
"英语": "zh-hans"
|
|
},
|
|
{
|
|
"繁體中文": "zh-hant"
|
|
}
|
|
] |