mirror of https://github.com/vector-im/riot-web
commit
e07e7cf8d2
|
@ -344,7 +344,10 @@ export function setLanguage(preferredLangs: string | string[]) {
|
||||||
counterpart.registerTranslations(langToUse, langData);
|
counterpart.registerTranslations(langToUse, langData);
|
||||||
counterpart.setLocale(langToUse);
|
counterpart.setLocale(langToUse);
|
||||||
SettingsStore.setValue("language", null, SettingLevel.DEVICE, langToUse);
|
SettingsStore.setValue("language", null, SettingLevel.DEVICE, langToUse);
|
||||||
|
// Adds a lot of noise to test runs, so disable logging there.
|
||||||
|
if (process.env.NODE_ENV !== "test") {
|
||||||
console.log("set language to " + langToUse);
|
console.log("set language to " + langToUse);
|
||||||
|
}
|
||||||
|
|
||||||
// Set 'en' as fallback language:
|
// Set 'en' as fallback language:
|
||||||
if (langToUse !== "en") {
|
if (langToUse !== "en") {
|
||||||
|
|
Loading…
Reference in New Issue