From 75cde56761bc2781c441731cbc41126074506da1 Mon Sep 17 00:00:00 2001
From: kyy
Date: Tue, 24 Feb 2026 15:24:15 +0900
Subject: [PATCH] =?UTF-8?q?=EC=97=B0=EB=8F=99=20=EC=95=B1(RP)=20=EC=9A=A9?=
=?UTF-8?q?=EC=96=B4=20=EA=B0=9C=EC=84=A0=20=EB=B0=8F=20i18n=20=EC=A0=81?=
=?UTF-8?q?=EC=9A=A9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
devfront/src/features/clients/ClientConsentsPage.tsx | 2 +-
devfront/src/features/clients/ClientDetailsPage.tsx | 2 +-
devfront/src/features/clients/ClientGeneralPage.tsx | 5 ++++-
devfront/src/features/clients/ClientsPage.tsx | 4 ++--
4 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/devfront/src/features/clients/ClientConsentsPage.tsx b/devfront/src/features/clients/ClientConsentsPage.tsx
index 7bacc080..e82277ca 100644
--- a/devfront/src/features/clients/ClientConsentsPage.tsx
+++ b/devfront/src/features/clients/ClientConsentsPage.tsx
@@ -117,7 +117,7 @@ function ClientConsentsPage() {
to={`/clients/${clientId}`}
className="whitespace-nowrap border-b-2 border-transparent text-muted-foreground hover:text-foreground"
>
- {t("ui.dev.clients.details.tab.connection", "Connection")}
+ {t("ui.dev.clients.details.tab.connection", "Federation")}
{t("ui.dev.clients.details.tab.consents", "Consent & Users")}
diff --git a/devfront/src/features/clients/ClientDetailsPage.tsx b/devfront/src/features/clients/ClientDetailsPage.tsx
index 1882c04a..a372fef0 100644
--- a/devfront/src/features/clients/ClientDetailsPage.tsx
+++ b/devfront/src/features/clients/ClientDetailsPage.tsx
@@ -218,7 +218,7 @@ function ClientDetailsPage() {
to={`/clients/${clientId}`}
className="border-b-2 border-primary pb-3 text-sm font-bold text-primary"
>
- {t("ui.dev.clients.details.tab.connection", "Connection")}
+ {t("ui.dev.clients.details.tab.connection", "Federation")}
- {t("ui.dev.clients.general.security.private", "Private")}
+ {t(
+ "ui.dev.clients.general.security.private",
+ "Server side App",
+ )}
{t(
diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx
index 7cd7ad2a..cb43ae6b 100644
--- a/devfront/src/features/clients/ClientsPage.tsx
+++ b/devfront/src/features/clients/ClientsPage.tsx
@@ -159,7 +159,7 @@ function ClientsPage() {
{t("ui.dev.clients.registry.title", "RP registry")}
- {t("ui.dev.clients.registry.subtitle", "Relying Parties")}
+ {t("ui.dev.clients.registry.subtitle", "연동 앱")}
{t(
@@ -315,7 +315,7 @@ function ClientsPage() {
variant={client.type === "private" ? "success" : "muted"}
>
{client.type === "private"
- ? t("ui.dev.clients.type.private", "Private")
+ ? t("ui.dev.clients.type.private", "Server side App")
: t("ui.dev.clients.type.pkce", "PKCE")}