diff --git a/adminfront/src/features/tenants/routes/TenantListPage.tsx b/adminfront/src/features/tenants/routes/TenantListPage.tsx index f951e674..c1671049 100644 --- a/adminfront/src/features/tenants/routes/TenantListPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantListPage.tsx @@ -77,7 +77,7 @@ function TenantListPage() {

- {t("ui.admin.tenants.title", "테넌트 레지스트리")} + {t("ui.admin.tenants.title", "테넌트 목록")}

{t( diff --git a/adminfront/tests/tenants.spec.ts b/adminfront/tests/tenants.spec.ts index d9c567f3..e2fbb624 100644 --- a/adminfront/tests/tenants.spec.ts +++ b/adminfront/tests/tenants.spec.ts @@ -51,7 +51,7 @@ test.describe("Tenants Management", () => { }); await page.goto("/tenants"); - await expect(page.locator("h2")).toContainText("테넌트 레지스트리"); + await expect(page.locator("h2")).toContainText("테넌트 목록"); await expect(page.locator("table")).toContainText("Tenant A"); }); diff --git a/locales/ko.toml b/locales/ko.toml index 3fdab991..76c20154 100644 --- a/locales/ko.toml +++ b/locales/ko.toml @@ -807,7 +807,7 @@ tenant_member = "TENANT MEMBER" [ui.admin.tenants] add = "테넌트 추가" -title = "테넌트 레지스트리" +title = "테넌트 목록" [ui.admin.tenants.admins] add_button = "관리자 추가"