fix(app): add english to locale matchers (#16280)
This commit is contained in:
parent
eb9eb5e334
commit
f64bb91257
3 changed files with 4 additions and 0 deletions
|
|
@ -77,6 +77,7 @@ function detectLocale(): Locale {
|
|||
const languages = navigator.languages?.length ? navigator.languages : [navigator.language]
|
||||
for (const language of languages) {
|
||||
if (!language) continue
|
||||
if (language.toLowerCase().startsWith("en")) return "en"
|
||||
if (language.toLowerCase().startsWith("zh")) {
|
||||
if (language.toLowerCase().includes("hant")) return "zht"
|
||||
return "zh"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue