show locale name for language selection
This commit is contained in:
parent
a519ed2580
commit
6ab5b59f66
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit b74ee7b3ee823a820854623cc32c8522a09e9f4d
|
Subproject commit 255bd3962d268bec8f66411676049803bb29e0d3
|
|
@ -79,7 +79,11 @@ export class SettingsComponent implements OnInit {
|
||||||
|
|
||||||
const localeOptions: any[] = [];
|
const localeOptions: any[] = [];
|
||||||
i18nService.supportedTranslationLocales.forEach((locale) => {
|
i18nService.supportedTranslationLocales.forEach((locale) => {
|
||||||
localeOptions.push({ name: locale, value: locale });
|
let name = locale;
|
||||||
|
if (i18nService.localeNames.has(locale)) {
|
||||||
|
name += (' - ' + i18nService.localeNames.get(locale));
|
||||||
|
}
|
||||||
|
localeOptions.push({ name: name, value: locale });
|
||||||
});
|
});
|
||||||
localeOptions.sort(Utils.getSortFunction(i18nService, 'name'));
|
localeOptions.sort(Utils.getSortFunction(i18nService, 'name'));
|
||||||
localeOptions.splice(0, 0, { name: i18nService.t('default'), value: null });
|
localeOptions.splice(0, 0, { name: i18nService.t('default'), value: null });
|
||||||
|
|
Loading…
Reference in New Issue