From d1184613d844b4438febef5d64b43dd2223ab618 Mon Sep 17 00:00:00 2001 From: kyy Date: Mon, 18 May 2026 13:32:50 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=9C=EB=B8=8C=20=ED=83=80=EC=9D=B4?= =?UTF-8?q?=ED=8B=80=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EB=A0=8C=EB=8D=94?= =?UTF-8?q?=EB=A7=81=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/integrity/DataIntegrityPage.test.tsx | 10 ++++++++++ .../src/features/integrity/DataIntegrityPage.tsx | 6 ++++++ .../projections/UserProjectionPage.test.tsx | 8 ++++++++ .../features/projections/UserProjectionPage.tsx | 6 ++++++ adminfront/src/locales/en.toml | 9 ++++++--- adminfront/src/locales/ko.toml | 4 ++++ adminfront/src/locales/template.toml | 4 ++++ adminfront/src/test/i18nMock.ts | 14 ++++++++++++++ locales/en.toml | 3 +++ locales/ko.toml | 4 ++++ locales/template.toml | 4 ++++ 11 files changed, 69 insertions(+), 3 deletions(-) diff --git a/adminfront/src/features/integrity/DataIntegrityPage.test.tsx b/adminfront/src/features/integrity/DataIntegrityPage.test.tsx index e7da2193..f6c31bed 100644 --- a/adminfront/src/features/integrity/DataIntegrityPage.test.tsx +++ b/adminfront/src/features/integrity/DataIntegrityPage.test.tsx @@ -102,6 +102,11 @@ describe("DataIntegrityPage", () => { renderPage(); expect(await screen.findByText("데이터 정합성 검증")).toBeInTheDocument(); + expect( + await screen.findByText( + "정합성 상태를 확인하고 데이터 모델 전반의 검증 결과를 살펴봅니다.", + ), + ).toBeInTheDocument(); expect(await screen.findByText("테넌트 정합성")).toBeInTheDocument(); expect(screen.getByText("중복 테넌트 slug")).toBeInTheDocument(); expect(screen.getAllByText("1").length).toBeGreaterThan(0); @@ -173,6 +178,11 @@ describe("DataIntegrityPage", () => { expect( await screen.findByText("Data Integrity Check"), ).toBeInTheDocument(); + expect( + await screen.findByText( + "Review integrity status and inspect checks across the admin data model.", + ), + ).toBeInTheDocument(); expect(await screen.findByText("Tenant integrity")).toBeInTheDocument(); expect(await screen.findByText("Duplicate tenant slug")).toBeInTheDocument(); expect( diff --git a/adminfront/src/features/integrity/DataIntegrityPage.tsx b/adminfront/src/features/integrity/DataIntegrityPage.tsx index abed94d5..b13e83eb 100644 --- a/adminfront/src/features/integrity/DataIntegrityPage.tsx +++ b/adminfront/src/features/integrity/DataIntegrityPage.tsx @@ -331,6 +331,12 @@ function DataIntegrityContent() {

{t("ui.admin.integrity.title", "데이터 정합성 검증")}

+

+ {t( + "msg.admin.integrity.subtitle", + "Review integrity status and inspect checks across the admin data model.", + )} +