1
0
forked from baron/baron-sso

연동 앱(RP) 용어 개선 및 i18n 적용

This commit is contained in:
2026-02-24 15:24:15 +09:00
parent c9a364a8ba
commit 75cde56761
4 changed files with 8 additions and 5 deletions

View File

@@ -117,7 +117,7 @@ function ClientConsentsPage() {
to={`/clients/${clientId}`} to={`/clients/${clientId}`}
className="whitespace-nowrap border-b-2 border-transparent text-muted-foreground hover:text-foreground" 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")}
</Link> </Link>
<span className="whitespace-nowrap border-b-2 border-primary pb-1 text-primary"> <span className="whitespace-nowrap border-b-2 border-primary pb-1 text-primary">
{t("ui.dev.clients.details.tab.consents", "Consent & Users")} {t("ui.dev.clients.details.tab.consents", "Consent & Users")}

View File

@@ -218,7 +218,7 @@ function ClientDetailsPage() {
to={`/clients/${clientId}`} to={`/clients/${clientId}`}
className="border-b-2 border-primary pb-3 text-sm font-bold text-primary" 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")}
</Link> </Link>
<Link <Link
to={`/clients/${clientId}/consents`} to={`/clients/${clientId}/consents`}

View File

@@ -519,7 +519,10 @@ function ClientGeneralPage() {
/> />
<span className="flex items-center gap-2 text-sm font-bold uppercase text-foreground"> <span className="flex items-center gap-2 text-sm font-bold uppercase text-foreground">
<Shield className="h-4 w-4 text-primary" /> <Shield className="h-4 w-4 text-primary" />
{t("ui.dev.clients.general.security.private", "Private")} {t(
"ui.dev.clients.general.security.private",
"Server side App",
)}
</span> </span>
<span className="text-xs text-muted-foreground"> <span className="text-xs text-muted-foreground">
{t( {t(

View File

@@ -159,7 +159,7 @@ function ClientsPage() {
{t("ui.dev.clients.registry.title", "RP registry")} {t("ui.dev.clients.registry.title", "RP registry")}
</p> </p>
<CardTitle className="text-3xl font-black tracking-tight"> <CardTitle className="text-3xl font-black tracking-tight">
{t("ui.dev.clients.registry.subtitle", "Relying Parties")} {t("ui.dev.clients.registry.subtitle", "연동 앱")}
</CardTitle> </CardTitle>
<CardDescription> <CardDescription>
{t( {t(
@@ -315,7 +315,7 @@ function ClientsPage() {
variant={client.type === "private" ? "success" : "muted"} variant={client.type === "private" ? "success" : "muted"}
> >
{client.type === "private" {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")} : t("ui.dev.clients.type.pkce", "PKCE")}
</Badge> </Badge>
</TableCell> </TableCell>