fix(i18n): default app language to English on first launch

This commit is contained in:
webadderall
2026-03-16 22:49:29 +11:00
parent 529e9c1d1b
commit ba1d1a0431
+3 -1
View File
@@ -123,7 +123,9 @@ function getInitialLocale(): AppLocale {
return storedLocale
}
return normalizeLocale(window.navigator.language)
// Product default must be English on first launch unless user explicitly
// selected another locale and we persisted it in localStorage.
return DEFAULT_LOCALE
}
function getMessageValue(source: unknown, key: string): string | undefined {