Change default language to en-US and add US language (#6621)

This commit is contained in:
Anthony Stirling
2026-06-11 20:36:23 +01:00
committed by GitHub
parent 88adb7adad
commit 946c032fb5
41 changed files with 8578 additions and 188 deletions
@@ -625,7 +625,7 @@ export default function AdminGeneralSection() {
data={defaultLocaleOptions}
searchable
clearable
placeholder="en_GB"
placeholder="en_US"
comboboxProps={{ zIndex: Z_INDEX_CONFIG_MODAL }}
disabled={!loginEnabled}
/>
@@ -26,10 +26,10 @@ vi.mock("react-i18next", () => ({
// Mock i18n module to avoid initialization
vi.mock("@app/i18n", () => ({
updateSupportedLanguages: vi.fn(),
supportedLanguages: { "en-GB": "English" },
supportedLanguages: { "en-US": "English (US)" },
rtlLanguages: [],
default: {
language: "en-GB",
language: "en-US",
changeLanguage: vi.fn(),
options: {},
},