openclaw/src/i18n/registry.test.ts
2026-03-02 04:29:18 +00:00

43 lines
1.5 KiB
TypeScript

import { describe, expect, it } from "vitest";
import {
DEFAULT_LOCALE,
SUPPORTED_LOCALES,
loadLazyLocaleTranslation,
resolveNavigatorLocale,
} from "../../ui/src/i18n/lib/registry.ts";
import type { TranslationMap } from "../../ui/src/i18n/lib/types.ts";
function getNestedTranslation(map: TranslationMap | null, ...path: string[]): string | undefined {
let value: string | TranslationMap | undefined = map ?? undefined;
for (const key of path) {
if (value === undefined || typeof value === "string") {
return undefined;
}
value = value[key];
}
return typeof value === "string" ? value : undefined;
}
describe("ui i18n locale registry", () => {
it("lists supported locales", () => {
expect(SUPPORTED_LOCALES).toEqual(["en", "zh-CN", "zh-TW", "pt-BR", "de"]);
expect(DEFAULT_LOCALE).toBe("en");
});
it("resolves browser locale fallbacks", () => {
expect(resolveNavigatorLocale("de-DE")).toBe("de");
expect(resolveNavigatorLocale("pt-PT")).toBe("pt-BR");
expect(resolveNavigatorLocale("zh-HK")).toBe("zh-TW");
expect(resolveNavigatorLocale("en-US")).toBe("en");
});
it("loads lazy locale translations from the registry", async () => {
const de = await loadLazyLocaleTranslation("de");
const zhCN = await loadLazyLocaleTranslation("zh-CN");
expect(getNestedTranslation(de, "common", "health")).toBe("Status");
expect(getNestedTranslation(zhCN, "common", "health")).toBe("健康状况");
expect(await loadLazyLocaleTranslation("en")).toBeNull();
});
});