mirror of https://github.com/vector-im/riot-web
Add language picker labels (#4141)
* fix after rebase * add string to translate in messagecontextmenu * add labels for language pickerpull/4143/head
parent
81ea3845a0
commit
33cf39e9a0
|
@ -9,17 +9,16 @@
|
||||||
// This could readily be automated, but it's nice to explicitly
|
// This could readily be automated, but it's nice to explicitly
|
||||||
// control when we languages are available.
|
// control when we languages are available.
|
||||||
const INCLUDE_LANGS = [
|
const INCLUDE_LANGS = [
|
||||||
//'be' Omitted because no translations in react-sdk
|
{'value': 'en_EN', 'label': 'English'},
|
||||||
'en_EN',
|
{'value': 'da', 'label': 'Dansk'},
|
||||||
'da',
|
{'value': 'nl', 'label': 'Nederlands'},
|
||||||
'de_DE',
|
{'value': 'de_DE', 'label': 'Deutsch'},
|
||||||
'es',
|
{'value': 'fr', 'label': 'Français'},
|
||||||
'fr',
|
{'value': 'pt', 'label': 'Português'},
|
||||||
'be',
|
{'value': 'pt_BR', 'label': 'Português do Brasil'},
|
||||||
'nl',
|
{'value': 'ru', 'label': 'Русский'},
|
||||||
'pt',
|
{'value': 'es', 'label': 'Español'},
|
||||||
'pt_BR',
|
{'value': 'zh_Hans', 'label': '中文'}
|
||||||
'ru',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// cpx includes globbed parts of the filename in the destination, but excludes
|
// cpx includes globbed parts of the filename in the destination, but excludes
|
||||||
|
@ -37,7 +36,7 @@ const COPY_LIST = [
|
||||||
|
|
||||||
INCLUDE_LANGS.forEach(function(l) {
|
INCLUDE_LANGS.forEach(function(l) {
|
||||||
COPY_LIST.push([
|
COPY_LIST.push([
|
||||||
l, "webapp/i18n/", { lang: 1 },
|
l.value, "webapp/i18n/", { lang: 1 },
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -159,12 +158,12 @@ function genLangFile(lang, dest) {
|
||||||
function genLangList() {
|
function genLangList() {
|
||||||
const languages = {};
|
const languages = {};
|
||||||
INCLUDE_LANGS.forEach(function(lang) {
|
INCLUDE_LANGS.forEach(function(lang) {
|
||||||
const normalizedLanguage = lang.toLowerCase().replace("_", "-");
|
const normalizedLanguage = lang.value.toLowerCase().replace("_", "-");
|
||||||
const languageParts = normalizedLanguage.split('-');
|
const languageParts = normalizedLanguage.split('-');
|
||||||
if (languageParts.length == 2 && languageParts[0] == languageParts[1]) {
|
if (languageParts.length == 2 && languageParts[0] == languageParts[1]) {
|
||||||
languages[languageParts[0]] = lang + '.json';
|
languages[languageParts[0]] = {'fileName': lang.value + '.json', 'label': lang.label};
|
||||||
} else {
|
} else {
|
||||||
languages[normalizedLanguage] = lang + '.json';
|
languages[normalizedLanguage] = {'fileName': lang.value + '.json', 'label': lang.label};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
fs.writeFile('webapp/i18n/languages.json', JSON.stringify(languages, null, 4));
|
fs.writeFile('webapp/i18n/languages.json', JSON.stringify(languages, null, 4));
|
||||||
|
|
Loading…
Reference in New Issue