Merge branch 'dev' into fix/16323-keyed-show-callbacks

This commit is contained in:
Shoubhit Dash 2026-03-06 18:14:07 +05:30 committed by GitHub
commit 5ec45c03d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 424 additions and 125 deletions

View file

@ -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"