1
0
forked from baron/baron-sso

로케일 누락 키 추가 및 lint 수정

This commit is contained in:
2026-06-16 15:41:39 +09:00
parent 79bf1c3496
commit 4b2d9c89b3
8 changed files with 43 additions and 28 deletions

View File

@@ -10,9 +10,13 @@ describe("i18n", () => {
window.localStorage.setItem("locale", "en");
expect(t("ui.dev.request.list.title", "신청 내역")).toBe("Request History");
expect(t("msg.dev.request.list.approved_count", "총 {{count}}명의 사용자가 승인되었습니다.", { count: 0 })).toBe(
"0 users have been approved.",
);
expect(
t(
"msg.dev.request.list.approved_count",
"총 {{count}}명의 사용자가 승인되었습니다.",
{ count: 0 },
),
).toBe("0 users have been approved.");
expect(t("ui.dev.grants.form.title", "직접 부여")).toBe("Direct Grant");
expect(
t(
@@ -23,7 +27,10 @@ describe("i18n", () => {
"Select a user to view their current tenant, email, and phone, then grant developer access immediately.",
);
expect(
t("msg.dev.grants.list.description", "현재 부여된 개발자 권한 목록입니다."),
t(
"msg.dev.grants.list.description",
"현재 부여된 개발자 권한 목록입니다.",
),
).toBe("Current developer access grants.");
});
});