switch to posix strings for language internal

This commit is contained in:
Matt Hill
2026-01-16 16:25:08 -07:00
parent 8ca3d56aa9
commit fee03ef407
8 changed files with 71 additions and 58 deletions

View File

@@ -122,13 +122,13 @@ export default class LanguagePage {
constructor() {
if (this.selected) {
this.i18nService.setLanguage(this.selected.name)
this.i18nService.setLang(this.selected.name)
}
}
onLanguageChange(language: Language) {
if (language) {
this.i18nService.setLanguage(language.name)
this.i18nService.setLang(language.name)
}
}